[
  {
    "path": ".gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# .idea\n.idea\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n.hypothesis/\n.pytest_cache/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints/\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n.python-version\n\n# celery beat schedule file\ncelerybeat-schedule\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.jsoni\n\n# picture\n*.png\n\n# data file\ndata/\n*.csv\n*.DS_Store\n\n# models\n*.pt\n*ubyte.gz\n*ubyte\n*.model\n*.th\n*.pth\n\n\n"
  },
  {
    "path": "LSTM_crf/torch_crf.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Bi-LSTM Conditional Random Field Discussion\\n\",\n    \"- https://pytorch.org/tutorials/beginner/nlp/advanced_tutorial.html\\n\",\n    \"- https://pytorch.apachecn.org/docs/0.3/nlp_advanced_tutorial.html\\n\",\n    \"- 《Log-Linear Models, MEMMs, and CRFs》\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 69,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.autograd as autograd\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.optim as optim\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<torch._C.Generator at 0x7f05500945d0>\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.manual_seed(1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 71,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def argmax(vec):\\n\",\n    \"    # 返回最大概率对应的类别\\n\",\n    \"    _, idx = torch.max(vec, 1)\\n\",\n    \"    return idx.item()\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def prepare_sequence(seq, to_ix):\\n\",\n    \"    idxs = [to_ix[w] for w in seq]\\n\",\n    \"    return torch.tensor(idxs, dtype=torch.long)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# 使用数值上稳定的方法为前向算法计算指数和的对数\\n\",\n    \"def log_sum_exp(vec):\\n\",\n    \"    # 等于torch.log(torch.sum(torch.exp(vec)))\\n\",\n    \"    max_score = vec[0, argmax(vec)]\\n\",\n    \"    max_score_broadcast = max_score.view(1, -1).expand(1, vec.size()[1])\\n\",\n    \"    return max_score + \\\\\\n\",\n    \"        torch.log(torch.sum(torch.exp(vec - max_score_broadcast)))\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 83,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class BiLSTM_CRF(nn.Module):\\n\",\n    \"\\n\",\n    \"    def __init__(self, vocab_size, tag_to_ix, embedding_dim, hidden_dim):\\n\",\n    \"        super(BiLSTM_CRF, self).__init__()\\n\",\n    \"        self.embedding_dim = embedding_dim\\n\",\n    \"        self.hidden_dim = hidden_dim\\n\",\n    \"        self.vocab_size = vocab_size\\n\",\n    \"        self.tag_to_ix = tag_to_ix\\n\",\n    \"        self.tagset_size = len(tag_to_ix)\\n\",\n    \"\\n\",\n    \"        self.word_embeds = nn.Embedding(vocab_size, embedding_dim)\\n\",\n    \"        self.lstm = nn.LSTM(embedding_dim, hidden_dim // 2,\\n\",\n    \"                            num_layers=1, bidirectional=True)\\n\",\n    \"\\n\",\n    \"        # 将LSTM的输出映射到标记空间\\n\",\n    \"        self.hidden2tag = nn.Linear(hidden_dim, self.tagset_size)\\n\",\n    \"\\n\",\n    \"        # 过渡参数矩阵. 条目 i,j 是 *从* j *到* i 的过渡的分数\\n\",\n    \"        self.transitions = nn.Parameter(\\n\",\n    \"            torch.randn(self.tagset_size, self.tagset_size))\\n\",\n    \"        \\n\",\n    \"        print(\\\"self.transitions:\\\", self.transitions)\\n\",\n    \"        \\n\",\n    \"        # 这两句声明强制约束了我们不能向开始标记标注传递和从结束标注传递\\n\",\n    \"        self.transitions.data[tag_to_ix[START_TAG], :] = -10000\\n\",\n    \"        self.transitions.data[:, tag_to_ix[STOP_TAG]] = -10000\\n\",\n    \"        print(\\\"self.transitions ------>:\\\", self.transitions)\\n\",\n    \"        self.hidden = self.init_hidden()\\n\",\n    \"\\n\",\n    \"    def init_hidden(self):\\n\",\n    \"        return (torch.randn(2, 1, self.hidden_dim // 2),\\n\",\n    \"                torch.randn(2, 1, self.hidden_dim // 2))\\n\",\n    \"\\n\",\n    \"    def _forward_alg(self, feats):\\n\",\n    \"        # 2  feats (seq, tag_nums)\\n\",\n    \"        # 执行前向算法来计算分割函数\\n\",\n    \"        init_alphas = torch.full((1, self.tagset_size), -10000.)\\n\",\n    \"        print(\\\"init_alphas:\\\", init_alphas.size())\\n\",\n    \"        # START_TAG 包含所有的分数\\n\",\n    \"        init_alphas[0][self.tag_to_ix[START_TAG]] = 0.\\n\",\n    \"\\n\",\n    \"        # 将其包在一个变量类型中继而得到自动的反向传播\\n\",\n    \"        forward_var = init_alphas\\n\",\n    \"\\n\",\n    \"        # 在句子中迭代\\n\",\n    \"        # 第一个词的(1, score)\\n\",\n    \"        for feat in feats:\\n\",\n    \"            print(\\\" one feat:\\\", feat.size())\\n\",\n    \"            alphas_t = []  # 当前时间步的前向变量\\n\",\n    \"            print(\\\"-\\\" * 50)\\n\",\n    \"            for next_tag in range(self.tagset_size):\\n\",\n    \"                print(\\\"next_tag::\\\", next_tag)\\n\",\n    \"                # 对 emission 得分执行广播机制: 它总是相同的,\\n\",\n    \"                # 不论前一个标注如何\\n\",\n    \"                emit_score = feat[next_tag].view(1, -1).expand(1, self.tagset_size)\\n\",\n    \"                print(\\\"emit_score:\\\", emit_score, emit_score.size())\\n\",\n    \"                # trans_score 第 i 个条目是从i过渡到 next_tag 的分数（转移到当前标签）\\n\",\n    \"                trans_score = self.transitions[next_tag].view(1, -1)\\n\",\n    \"                print(\\\"trans_score:\\\", trans_score, trans_score.size())\\n\",\n    \"                # next_tag_var 第 i 个条目是在我们执行 对数-求和-指数 前\\n\",\n    \"                # 边缘的值 (i -> next_tag)\\n\",\n    \"                print(\\\"forward_var:\\\", forward_var, forward_var.size())\\n\",\n    \"                next_tag_var = forward_var + trans_score + emit_score\\n\",\n    \"                print(\\\"next_tag_var:\\\", next_tag_var, next_tag_var.size())\\n\",\n    \"                # 这个标注的前向变量是对所有的分数执行 对数-求和-指数\\n\",\n    \"                alphas_t.append(log_sum_exp(next_tag_var).view(1))\\n\",\n    \"                print(\\\"alphas_t:\\\", alphas_t, len(alphas_t))\\n\",\n    \"            forward_var = torch.cat(alphas_t).view(1, -1)\\n\",\n    \"            print(\\\"forward_var:\\\", forward_var, forward_var.size())\\n\",\n    \"        terminal_var = forward_var + self.transitions[self.tag_to_ix[STOP_TAG]]\\n\",\n    \"        print(\\\"self.transitions[self.tag_to_ix[STOP_TAG]\\\", self.tag_to_ix[STOP_TAG], self.transitions[self.tag_to_ix[STOP_TAG]])\\n\",\n    \"        alpha = log_sum_exp(terminal_var)\\n\",\n    \"        return alpha\\n\",\n    \"\\n\",\n    \"    def _get_lstm_features(self, sentence):\\n\",\n    \"        # 1\\n\",\n    \"        self.hidden = self.init_hidden()\\n\",\n    \"        embeds = self.word_embeds(sentence).view(len(sentence), 1, -1)\\n\",\n    \"        # (batch_size, seq_len, hidden_dim//2*2)\\n\",\n    \"        lstm_out, self.hidden = self.lstm(embeds, self.hidden)\\n\",\n    \"        # 去掉中间的\\n\",\n    \"        print(\\\"lstm_out:\\\", lstm_out.size())\\n\",\n    \"        lstm_out = lstm_out.view(len(sentence), self.hidden_dim)\\n\",\n    \"        lstm_feats = self.hidden2tag(lstm_out)\\n\",\n    \"        print(\\\"lstm_feats:\\\", lstm_feats.size())\\n\",\n    \"        # (seq, tag_nums)\\n\",\n    \"        return lstm_feats\\n\",\n    \"\\n\",\n    \"    def _score_sentence(self, feats, tags):\\n\",\n    \"        # 给出标记序列的分数\\n\",\n    \"        score = torch.zeros(1)\\n\",\n    \"        tags = torch.cat([torch.tensor([self.tag_to_ix[START_TAG]], dtype=torch.long), tags])\\n\",\n    \"        for i, feat in enumerate(feats):\\n\",\n    \"            score = score + \\\\\\n\",\n    \"                self.transitions[tags[i + 1], tags[i]] + feat[tags[i + 1]]\\n\",\n    \"        score = score + self.transitions[self.tag_to_ix[STOP_TAG], tags[-1]]\\n\",\n    \"        return score\\n\",\n    \"\\n\",\n    \"    def _viterbi_decode(self, feats):\\n\",\n    \"        backpointers = []\\n\",\n    \"\\n\",\n    \"        # 在对数空间中初始化维特比变量\\n\",\n    \"        init_vvars = torch.full((1, self.tagset_size), -10000.)\\n\",\n    \"        init_vvars[0][self.tag_to_ix[START_TAG]] = 0\\n\",\n    \"\\n\",\n    \"        # 在第 i 步的 forward_var 存放第 i-1 步的维特比变量\\n\",\n    \"        forward_var = init_vvars\\n\",\n    \"        for feat in feats:\\n\",\n    \"            bptrs_t = []        # 存放这一步的后指针\\n\",\n    \"            viterbivars_t = []  # 存放这一步的维特比变量\\n\",\n    \"\\n\",\n    \"            for next_tag in range(self.tagset_size):\\n\",\n    \"                # next_tag_var[i] 存放先前一步标注i的\\n\",\n    \"                # 维特比变量, 加上了从标注 i 到 next_tag 的过渡的分数\\n\",\n    \"                # 我们在这里并没有将 emission 分数包含进来, 因为\\n\",\n    \"                # 最大值并不依赖于它们(我们在下面对它们进行的是相加)\\n\",\n    \"                next_tag_var = forward_var + self.transitions[next_tag]\\n\",\n    \"                best_tag_id = argmax(next_tag_var)\\n\",\n    \"                bptrs_t.append(best_tag_id)\\n\",\n    \"                viterbivars_t.append(next_tag_var[0][best_tag_id].view(1))\\n\",\n    \"            # 现在将所有 emission 得分相加, 将 forward_var\\n\",\n    \"            # 赋值到我们刚刚计算出来的维特比变量集合\\n\",\n    \"            forward_var = (torch.cat(viterbivars_t) + feat).view(1, -1)\\n\",\n    \"            backpointers.append(bptrs_t)\\n\",\n    \"\\n\",\n    \"        # 过渡到 STOP_TAG\\n\",\n    \"        terminal_var = forward_var + self.transitions[self.tag_to_ix[STOP_TAG]]\\n\",\n    \"        best_tag_id = argmax(terminal_var)\\n\",\n    \"        path_score = terminal_var[0][best_tag_id]\\n\",\n    \"\\n\",\n    \"        # 跟着后指针去解码最佳路径\\n\",\n    \"        best_path = [best_tag_id]\\n\",\n    \"        for bptrs_t in reversed(backpointers):\\n\",\n    \"            best_tag_id = bptrs_t[best_tag_id]\\n\",\n    \"            best_path.append(best_tag_id)\\n\",\n    \"        # 弹出开始的标签 (我们并不希望把这个返回到调用函数)\\n\",\n    \"        start = best_path.pop()\\n\",\n    \"        assert start == self.tag_to_ix[START_TAG]  # 健全性检查\\n\",\n    \"        best_path.reverse()\\n\",\n    \"        return path_score, best_path\\n\",\n    \"\\n\",\n    \"    def neg_log_likelihood(self, sentence, tags):\\n\",\n    \"        #(seq_len, tag_size)\\n\",\n    \"        feats = self._get_lstm_features(sentence)\\n\",\n    \"        # 所有可能tag链分数总和\\n\",\n    \"        forward_score = self._forward_alg(feats)\\n\",\n    \"        # 真实句子分数\\n\",\n    \"        gold_score = self._score_sentence(feats, tags)\\n\",\n    \"        return forward_score - gold_score\\n\",\n    \"\\n\",\n    \"    def forward(self, sentence):  # 不要把这和上面的 _forward_alg 混淆\\n\",\n    \"        # 得到 BiLSTM 输出分数\\n\",\n    \"        lstm_feats = self._get_lstm_features(sentence)\\n\",\n    \"\\n\",\n    \"        # 给定特征, 找到最好的路径\\n\",\n    \"        score, tag_seq = self._viterbi_decode(lstm_feats)\\n\",\n    \"        return score, tag_seq\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 84,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"START_TAG = \\\"<START>\\\"\\n\",\n    \"STOP_TAG = \\\"<STOP>\\\"\\n\",\n    \"EMBEDDING_DIM = 5\\n\",\n    \"HIDDEN_DIM = 4\\n\",\n    \"\\n\",\n    \"# 制造训练数据\\n\",\n    \"training_data = [(\\n\",\n    \"    \\\"长 城 位 于 北 京 市 延 庆 县\\\".split(),\\n\",\n    \"    \\\"B I O O B I I B I I\\\".split()\\n\",\n    \"), (\\n\",\n    \"    \\\"中 国 最 好 的 大 学 是 清 华 大 学\\\".split(),\\n\",\n    \"    \\\"B I O O O B I O B I I I\\\".split()\\n\",\n    \")]\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"word_to_ix = {}\\n\",\n    \"for sentence, tags in training_data:\\n\",\n    \"    for word in sentence:\\n\",\n    \"        if word not in word_to_ix:\\n\",\n    \"            word_to_ix[word] = len(word_to_ix)\\n\",\n    \"\\n\",\n    \"tag_to_ix = {\\\"B\\\": 0, \\\"I\\\": 1, \\\"O\\\": 2, START_TAG: 3, STOP_TAG: 4}\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 85,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"{'长': 0, '城': 1, '位': 2, '于': 3, '北': 4, '京': 5, '市': 6, '延': 7, '庆': 8, '县': 9, '中': 10, '国': 11, '最': 12, '好': 13, '的': 14, '大': 15, '学': 16, '是': 17, '清': 18, '华': 19}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(word_to_ix)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 86,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"self.transitions: Parameter containing:\\n\",\n      \"tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02,  1.1781e+00],\\n\",\n      \"        [-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.2827e+00],\\n\",\n      \"        [-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0897e+00],\\n\",\n      \"        [-9.1565e-04,  5.6519e-01,  1.2051e+00, -6.8299e-02, -4.8749e-01],\\n\",\n      \"        [-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -9.1309e-01]],\\n\",\n      \"       requires_grad=True)\\n\",\n      \"self.transitions ------>: Parameter containing:\\n\",\n      \"tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04],\\n\",\n      \"        [-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04],\\n\",\n      \"        [-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04],\\n\",\n      \"        [-1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04],\\n\",\n      \"        [-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       requires_grad=True)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = BiLSTM_CRF(len(word_to_ix), tag_to_ix, EMBEDDING_DIM, HIDDEN_DIM)\\n\",\n    \"optimizer = optim.SGD(model.parameters(), lr=0.01, weight_decay=1e-4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 87,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"lstm_out: torch.Size([10, 1, 4])\\n\",\n      \"lstm_feats: torch.Size([10, 5])\\n\",\n      \"训练前： ['长', '城', '位', '于', '北', '京', '市', '延', '庆', '县'] (tensor(5.0105), [2, 1, 2, 1, 2, 1, 2, 1, 2, 1])\\n\",\n      \"tensor([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])\\n\",\n      \"lstm_out: torch.Size([10, 1, 4])\\n\",\n      \"lstm_feats: torch.Size([10, 5])\\n\",\n      \"init_alphas: torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.4104, 0.4104, 0.4104, 0.4104, 0.4104]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[-10000., -10000., -10000.,      0., -10000.]]) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-1.0001e+04, -9.9986e+03, -9.9992e+03,  3.4595e-01, -2.0000e+04]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([0.3459], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2503, 0.2503, 0.2503, 0.2503, 0.2503]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[-10000., -10000., -10000.,      0., -10000.]]) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-1.0001e+04, -1.0002e+04, -9.9991e+03,  8.2302e-01, -2.0000e+04]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([0.3459], grad_fn=<ViewBackward>), tensor([0.8230], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.4697, -0.4697, -0.4697, -0.4697, -0.4697]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[-10000., -10000., -10000.,      0., -10000.]]) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-1.0002e+04, -1.0001e+04, -1.0001e+04,  1.1466e+00, -2.0000e+04]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([0.3459], grad_fn=<ViewBackward>), tensor([0.8230], grad_fn=<ViewBackward>), tensor([1.1466], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[-0.0036, -0.0036, -0.0036, -0.0036, -0.0036]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[-10000., -10000., -10000.,      0., -10000.]]) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-20000.0039, -20000.0039, -20000.0039, -10000.0039, -20000.0039]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([0.3459], grad_fn=<ViewBackward>), tensor([0.8230], grad_fn=<ViewBackward>), tensor([1.1466], grad_fn=<ViewBackward>), tensor([-10000.0039], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.3023, -0.3023, -0.3023, -0.3023, -0.3023]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[-10000., -10000., -10000.,      0., -10000.]]) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-1.0001e+04, -9.9988e+03, -1.0000e+04, -2.3649e-01, -2.0000e+04]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([0.3459], grad_fn=<ViewBackward>), tensor([0.8230], grad_fn=<ViewBackward>), tensor([1.1466], grad_fn=<ViewBackward>), tensor([-10000.0039], grad_fn=<ViewBackward>), tensor([-0.2365], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 3.4595e-01,  8.2302e-01,  1.1466e+00, -1.0000e+04, -2.3649e-01]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.3177, 0.3177, 0.3177, 0.3177, 0.3177]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.4595e-01,  8.2302e-01,  1.1466e+00, -1.0000e+04, -2.3649e-01]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-2.5370e-01,  2.1270e+00,  1.9019e+00, -9.9998e+03, -9.9999e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([2.7640], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2904, 0.2904, 0.2904, 0.2904, 0.2904]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.4595e-01,  8.2302e-01,  1.1466e+00, -1.0000e+04, -2.3649e-01]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-1.0323e+00, -1.2989e+00,  2.0854e+00, -9.9991e+03, -9.9999e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([2.7640], grad_fn=<ViewBackward>), tensor([2.1607], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.4401, -0.4401, -0.4401, -0.4401, -0.4401]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.4595e-01,  8.2302e-01,  1.1466e+00, -1.0000e+04, -2.3649e-01]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-1.5343e+00,  2.5536e-01,  5.1831e-01, -9.9988e+03, -1.0001e+04]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([2.7640], grad_fn=<ViewBackward>), tensor([2.1607], grad_fn=<ViewBackward>), tensor([1.1587], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.0854, 0.0854, 0.0854, 0.0854, 0.0854]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.4595e-01,  8.2302e-01,  1.1466e+00, -1.0000e+04, -2.3649e-01]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9999.5693,  -9999.0918,  -9998.7686, -19999.9180, -10000.1514]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([2.7640], grad_fn=<ViewBackward>), tensor([2.1607], grad_fn=<ViewBackward>), tensor([1.1587], grad_fn=<ViewBackward>), tensor([-9997.8828], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.2287, -0.2287, -0.2287, -0.2287, -0.2287]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.4595e-01,  8.2302e-01,  1.1466e+00, -1.0000e+04, -2.3649e-01]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[-3.7982e-01,  2.0634e+00,  9.5547e-01, -1.0000e+04, -1.0000e+04]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([2.7640], grad_fn=<ViewBackward>), tensor([2.1607], grad_fn=<ViewBackward>), tensor([1.1587], grad_fn=<ViewBackward>), tensor([-9997.8828], grad_fn=<ViewBackward>), tensor([2.4120], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 2.7640e+00,  2.1607e+00,  1.1587e+00, -9.9979e+03,  2.4120e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.1949, 0.1949, 0.1949, 0.1949, 0.1949]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 2.7640e+00,  2.1607e+00,  1.1587e+00, -9.9979e+03,  2.4120e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 2.0416e+00,  3.3418e+00,  1.7911e+00, -9.9978e+03, -9.9974e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([3.7369], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2991, 0.2991, 0.2991, 0.2991, 0.2991]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 2.7640e+00,  2.1607e+00,  1.1587e+00, -9.9979e+03,  2.4120e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 1.3945e+00,  4.7397e-02,  2.1061e+00, -9.9970e+03, -9.9973e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([3.7369], grad_fn=<ViewBackward>), tensor([2.5876], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.3622, -0.3622, -0.3622, -0.3622, -0.3622]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 2.7640e+00,  2.1607e+00,  1.1587e+00, -9.9979e+03,  2.4120e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 9.6160e-01,  1.6708e+00,  6.0821e-01, -9.9966e+03, -9.9980e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([3.7369], grad_fn=<ViewBackward>), tensor([2.5876], grad_fn=<ViewBackward>), tensor([2.2793], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.1018, 0.1018, 0.1018, 0.1018, 0.1018]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 2.7640e+00,  2.1607e+00,  1.1587e+00, -9.9979e+03,  2.4120e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9997.1348,  -9997.7373,  -9998.7402, -19997.7812,  -9997.4863]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([3.7369], grad_fn=<ViewBackward>), tensor([2.5876], grad_fn=<ViewBackward>), tensor([2.2793], grad_fn=<ViewBackward>), tensor([-9996.2383], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.3620, -0.3620, -0.3620, -0.3620, -0.3620]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 2.7640e+00,  2.1607e+00,  1.1587e+00, -9.9979e+03,  2.4120e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 1.9049e+00,  3.2677e+00,  8.3419e-01, -9.9982e+03, -9.9980e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([3.7369], grad_fn=<ViewBackward>), tensor([2.5876], grad_fn=<ViewBackward>), tensor([2.2793], grad_fn=<ViewBackward>), tensor([-9996.2383], grad_fn=<ViewBackward>), tensor([3.5631], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 3.7369e+00,  2.5876e+00,  2.2793e+00, -9.9962e+03,  3.5631e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.1523, 0.1523, 0.1523, 0.1523, 0.1523]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.7369e+00,  2.5876e+00,  2.2793e+00, -9.9962e+03,  3.5631e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 2.9718e+00,  3.7261e+00,  2.8692e+00, -9.9962e+03, -9.9963e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([4.3652], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2306, 0.2306, 0.2306, 0.2306, 0.2306]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.7369e+00,  2.5876e+00,  2.2793e+00, -9.9962e+03,  3.5631e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 2.2988e+00,  4.0584e-01,  3.1583e+00, -9.9954e+03, -9.9962e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([4.3652], grad_fn=<ViewBackward>), tensor([3.5551], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.3525, -0.3525, -0.3525, -0.3525, -0.3525]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.7369e+00,  2.5876e+00,  2.2793e+00, -9.9962e+03,  3.5631e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 1.9442e+00,  2.1075e+00,  1.7386e+00, -9.9950e+03, -9.9968e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([4.3652], grad_fn=<ViewBackward>), tensor([3.5551], grad_fn=<ViewBackward>), tensor([3.0400], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.0509, 0.0509, 0.0509, 0.0509, 0.0509]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.7369e+00,  2.5876e+00,  2.2793e+00, -9.9962e+03,  3.5631e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9996.2119,  -9997.3613,  -9997.6699, -19996.1875,  -9996.3857]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([4.3652], grad_fn=<ViewBackward>), tensor([3.5551], grad_fn=<ViewBackward>), tensor([3.0400], grad_fn=<ViewBackward>), tensor([-9995.3408], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.4251, -0.4251, -0.4251, -0.4251, -0.4251]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 3.7369e+00,  2.5876e+00,  2.2793e+00, -9.9962e+03,  3.5631e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 2.8147e+00,  3.6315e+00,  1.8917e+00, -9.9966e+03, -9.9969e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([4.3652], grad_fn=<ViewBackward>), tensor([3.5551], grad_fn=<ViewBackward>), tensor([3.0400], grad_fn=<ViewBackward>), tensor([-9995.3408], grad_fn=<ViewBackward>), tensor([4.1123], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 4.3652e+00,  3.5551e+00,  3.0400e+00, -9.9953e+03,  4.1123e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.0359, 0.0359, 0.0359, 0.0359, 0.0359]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 4.3652e+00,  3.5551e+00,  3.0400e+00, -9.9953e+03,  4.1123e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 3.4838e+00,  4.5772e+00,  3.5135e+00, -9.9954e+03, -9.9959e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.0962], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2854, 0.2854, 0.2854, 0.2854, 0.2854]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 4.3652e+00,  3.5551e+00,  3.0400e+00, -9.9953e+03,  4.1123e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 2.9820e+00,  1.4282e+00,  3.9738e+00, -9.9945e+03, -9.9956e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.0962], grad_fn=<ViewBackward>), tensor([4.3449], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.4203, -0.4203, -0.4203, -0.4203, -0.4203]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 4.3652e+00,  3.5551e+00,  3.0400e+00, -9.9953e+03,  4.1123e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 2.5047e+00,  3.0073e+00,  2.4315e+00, -9.9941e+03, -9.9963e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.0962], grad_fn=<ViewBackward>), tensor([4.3449], grad_fn=<ViewBackward>), tensor([3.7807], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.1320, 0.1320, 0.1320, 0.1320, 0.1320]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 4.3652e+00,  3.5551e+00,  3.0400e+00, -9.9953e+03,  4.1123e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9995.5029,  -9996.3135,  -9996.8281, -19995.2070,  -9995.7559]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.0962], grad_fn=<ViewBackward>), tensor([4.3449], grad_fn=<ViewBackward>), tensor([3.7807], grad_fn=<ViewBackward>), tensor([-9994.5918], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.4417, -0.4417, -0.4417, -0.4417, -0.4417]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 4.3652e+00,  3.5551e+00,  3.0400e+00, -9.9953e+03,  4.1123e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 3.4264e+00,  4.5824e+00,  2.6358e+00, -9.9957e+03, -9.9963e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.0962], grad_fn=<ViewBackward>), tensor([4.3449], grad_fn=<ViewBackward>), tensor([3.7807], grad_fn=<ViewBackward>), tensor([-9994.5918], grad_fn=<ViewBackward>), tensor([4.9592], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 5.0962e+00,  4.3449e+00,  3.7807e+00, -9.9946e+03,  4.9592e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.0857, 0.0857, 0.0857, 0.0857, 0.0857]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.0962e+00,  4.3449e+00,  3.7807e+00, -9.9946e+03,  4.9592e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 4.2645e+00,  5.4168e+00,  4.3040e+00, -9.9946e+03, -9.9950e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.9143], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2034, 0.2034, 0.2034, 0.2034, 0.2034]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.0962e+00,  4.3449e+00,  3.7807e+00, -9.9946e+03,  4.9592e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 3.6309e+00,  2.1359e+00,  4.6325e+00, -9.9938e+03, -9.9948e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.9143], grad_fn=<ViewBackward>), tensor([5.0038], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.4373, -0.4373, -0.4373, -0.4373, -0.4373]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.0962e+00,  4.3449e+00,  3.7807e+00, -9.9946e+03,  4.9592e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 3.2187e+00,  3.7800e+00,  3.1552e+00, -9.9934e+03, -9.9955e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.9143], grad_fn=<ViewBackward>), tensor([5.0038], grad_fn=<ViewBackward>), tensor([4.5247], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.0575, 0.0575, 0.0575, 0.0575, 0.0575]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.0962e+00,  4.3449e+00,  3.7807e+00, -9.9946e+03,  4.9592e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9994.8467,  -9995.5977,  -9996.1621, -19994.5352,  -9994.9834]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.9143], grad_fn=<ViewBackward>), tensor([5.0038], grad_fn=<ViewBackward>), tensor([4.5247], grad_fn=<ViewBackward>), tensor([-9993.8867], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.4256, -0.4256, -0.4256, -0.4256, -0.4256]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.0962e+00,  4.3449e+00,  3.7807e+00, -9.9946e+03,  4.9592e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 4.1734e+00,  5.3883e+00,  3.3926e+00, -9.9950e+03, -9.9955e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([5.9143], grad_fn=<ViewBackward>), tensor([5.0038], grad_fn=<ViewBackward>), tensor([4.5247], grad_fn=<ViewBackward>), tensor([-9993.8867], grad_fn=<ViewBackward>), tensor([5.7478], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 5.9143e+00,  5.0038e+00,  4.5247e+00, -9.9939e+03,  5.7478e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.0251, 0.0251, 0.0251, 0.0251, 0.0251]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.9143e+00,  5.0038e+00,  4.5247e+00, -9.9939e+03,  5.7478e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 5.0220e+00,  6.0151e+00,  4.9874e+00, -9.9939e+03, -9.9942e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([6.5622], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2328, 0.2328, 0.2328, 0.2328, 0.2328]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.9143e+00,  5.0038e+00,  4.5247e+00, -9.9939e+03,  5.7478e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 4.4784e+00,  2.8243e+00,  5.4060e+00, -9.9931e+03, -9.9940e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([6.5622], grad_fn=<ViewBackward>), tensor([5.7920], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.4197, -0.4197, -0.4197, -0.4197, -0.4197]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.9143e+00,  5.0038e+00,  4.5247e+00, -9.9939e+03,  5.7478e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 4.0544e+00,  4.4565e+00,  3.9168e+00, -9.9927e+03, -9.9947e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([6.5622], grad_fn=<ViewBackward>), tensor([5.7920], grad_fn=<ViewBackward>), tensor([5.2683], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.1857, 0.1857, 0.1857, 0.1857, 0.1857]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.9143e+00,  5.0038e+00,  4.5247e+00, -9.9939e+03,  5.7478e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9993.9004,  -9994.8105,  -9995.2900, -19993.7012,  -9994.0664]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([6.5622], grad_fn=<ViewBackward>), tensor([5.7920], grad_fn=<ViewBackward>), tensor([5.2683], grad_fn=<ViewBackward>), tensor([-9992.9844], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.1530, -0.1530, -0.1530, -0.1530, -0.1530]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 5.9143e+00,  5.0038e+00,  4.5247e+00, -9.9939e+03,  5.7478e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 5.2642e+00,  6.3199e+00,  4.4093e+00, -9.9940e+03, -9.9944e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([6.5622], grad_fn=<ViewBackward>), tensor([5.7920], grad_fn=<ViewBackward>), tensor([5.2683], grad_fn=<ViewBackward>), tensor([-9992.9844], grad_fn=<ViewBackward>), tensor([6.7226], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 6.5622e+00,  5.7920e+00,  5.2683e+00, -9.9930e+03,  6.7226e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.4723, 0.4723, 0.4723, 0.4723, 0.4723]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 6.5622e+00,  5.7920e+00,  5.2683e+00, -9.9930e+03,  6.7226e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 6.1171e+00,  7.2505e+00,  6.1781e+00, -9.9926e+03, -9.9928e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([7.7598], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2881, 0.2881, 0.2881, 0.2881, 0.2881]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 6.5622e+00,  5.7920e+00,  5.2683e+00, -9.9930e+03,  6.7226e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 5.1816e+00,  3.6678e+00,  6.2048e+00, -9.9921e+03, -9.9930e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([7.7598], grad_fn=<ViewBackward>), tensor([6.5684], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.5325, -0.5325, -0.5325, -0.5325, -0.5325]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 6.5622e+00,  5.7920e+00,  5.2683e+00, -9.9930e+03,  6.7226e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 4.5895e+00,  5.1319e+00,  4.5475e+00, -9.9919e+03, -9.9938e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([7.7598], grad_fn=<ViewBackward>), tensor([6.5684], grad_fn=<ViewBackward>), tensor([5.8922], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[5.0604e-05, 5.0604e-05, 5.0604e-05, 5.0604e-05, 5.0604e-05]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 6.5622e+00,  5.7920e+00,  5.2683e+00, -9.9930e+03,  6.7226e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9993.4375,  -9994.2080,  -9994.7314, -19992.9844,  -9993.2773]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([7.7598], grad_fn=<ViewBackward>), tensor([6.5684], grad_fn=<ViewBackward>), tensor([5.8922], grad_fn=<ViewBackward>), tensor([-9992.3691], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.2954, -0.2954, -0.2954, -0.2954, -0.2954]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 6.5622e+00,  5.7920e+00,  5.2683e+00, -9.9930e+03,  6.7226e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 5.7697e+00,  6.9656e+00,  5.0104e+00, -9.9932e+03, -9.9936e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([7.7598], grad_fn=<ViewBackward>), tensor([6.5684], grad_fn=<ViewBackward>), tensor([5.8922], grad_fn=<ViewBackward>), tensor([-9992.3691], grad_fn=<ViewBackward>), tensor([7.3330], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 7.7598e+00,  6.5684e+00,  5.8922e+00, -9.9924e+03,  7.3330e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.4129, 0.4129, 0.4129, 0.4129, 0.4129]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 7.7598e+00,  6.5684e+00,  5.8922e+00, -9.9924e+03,  7.3330e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 7.2553e+00,  7.9676e+00,  6.7427e+00, -9.9920e+03, -9.9923e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([8.5466], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.2848, 0.2848, 0.2848, 0.2848, 0.2848]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 7.7598e+00,  6.5684e+00,  5.8922e+00, -9.9924e+03,  7.3330e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 6.3759e+00,  4.4408e+00,  6.8253e+00, -9.9915e+03, -9.9924e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([8.5466], grad_fn=<ViewBackward>), tensor([7.3735], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.4398, -0.4398, -0.4398, -0.4398, -0.4398]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 7.7598e+00,  6.5684e+00,  5.8922e+00, -9.9924e+03,  7.3330e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 5.8798e+00,  6.0010e+00,  5.2641e+00, -9.9912e+03, -9.9931e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([8.5466], grad_fn=<ViewBackward>), tensor([7.3735], grad_fn=<ViewBackward>), tensor([6.8616], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.0043, 0.0043, 0.0043, 0.0043, 0.0043]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 7.7598e+00,  6.5684e+00,  5.8922e+00, -9.9924e+03,  7.3330e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9992.2363,  -9993.4277,  -9994.1035, -19992.3652,  -9992.6631]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([8.5466], grad_fn=<ViewBackward>), tensor([7.3735], grad_fn=<ViewBackward>), tensor([6.8616], grad_fn=<ViewBackward>), tensor([-9991.4893], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.3557, -0.3557, -0.3557, -0.3557, -0.3557]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 7.7598e+00,  6.5684e+00,  5.8922e+00, -9.9924e+03,  7.3330e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 6.9069e+00,  7.6817e+00,  5.5740e+00, -9.9927e+03, -9.9930e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([8.5466], grad_fn=<ViewBackward>), tensor([7.3735], grad_fn=<ViewBackward>), tensor([6.8616], grad_fn=<ViewBackward>), tensor([-9991.4893], grad_fn=<ViewBackward>), tensor([8.1406], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 8.5466e+00,  7.3735e+00,  6.8616e+00, -9.9915e+03,  8.1406e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \" one feat: torch.Size([5])\\n\",\n      \"--------------------------------------------------\\n\",\n      \"next_tag:: 0\\n\",\n      \"emit_score: tensor([[0.0517, 0.0517, 0.0517, 0.0517, 0.0517]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-9.1739e-01,  9.8618e-01,  4.3756e-01, -6.4480e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 8.5466e+00,  7.3735e+00,  6.8616e+00, -9.9915e+03,  8.1406e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 7.6809e+00,  8.4114e+00,  7.3508e+00, -9.9915e+03, -9.9918e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([9.0146], grad_fn=<ViewBackward>)] 1\\n\",\n      \"next_tag:: 1\\n\",\n      \"emit_score: tensor([[0.3364, 0.3364, 0.3364, 0.3364, 0.3364]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.6687e+00, -2.4124e+00,  6.4837e-01,  5.7270e-01, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 8.5466e+00,  7.3735e+00,  6.8616e+00, -9.9915e+03,  8.1406e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 7.2143e+00,  5.2976e+00,  7.8464e+00, -9.9906e+03, -9.9915e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([9.0146], grad_fn=<ViewBackward>), tensor([8.3224], grad_fn=<ViewBackward>)] 2\\n\",\n      \"next_tag:: 2\\n\",\n      \"emit_score: tensor([[-0.4075, -0.4075, -0.4075, -0.4075, -0.4075]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-1.4402e+00, -1.2760e-01, -1.8822e-01,  1.6163e+00, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 8.5466e+00,  7.3735e+00,  6.8616e+00, -9.9915e+03,  8.1406e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 6.6989e+00,  6.8384e+00,  6.2658e+00, -9.9903e+03, -9.9923e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([9.0146], grad_fn=<ViewBackward>), tensor([8.3224], grad_fn=<ViewBackward>), tensor([7.7279], grad_fn=<ViewBackward>)] 3\\n\",\n      \"next_tag:: 3\\n\",\n      \"emit_score: tensor([[0.1421, 0.1421, 0.1421, 0.1421, 0.1421]], grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-10000., -10000., -10000., -10000., -10000.]], grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 8.5466e+00,  7.3735e+00,  6.8616e+00, -9.9915e+03,  8.1406e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ -9991.3115,  -9992.4854,  -9992.9971, -19991.3457,  -9991.7178]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([9.0146], grad_fn=<ViewBackward>), tensor([8.3224], grad_fn=<ViewBackward>), tensor([7.7279], grad_fn=<ViewBackward>), tensor([-9990.5410], grad_fn=<ViewBackward>)] 4\\n\",\n      \"next_tag:: 4\\n\",\n      \"emit_score: tensor([[-0.5091, -0.5091, -0.5091, -0.5091, -0.5091]],\\n\",\n      \"       grad_fn=<ExpandBackward>) torch.Size([1, 5])\\n\",\n      \"trans_score: tensor([[-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"forward_var: tensor([[ 8.5466e+00,  7.3735e+00,  6.8616e+00, -9.9915e+03,  8.1406e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"next_tag_var: tensor([[ 7.5404e+00,  8.3334e+00,  6.3899e+00, -9.9919e+03, -9.9924e+03]],\\n\",\n      \"       grad_fn=<AddBackward0>) torch.Size([1, 5])\\n\",\n      \"alphas_t: [tensor([9.0146], grad_fn=<ViewBackward>), tensor([8.3224], grad_fn=<ViewBackward>), tensor([7.7279], grad_fn=<ViewBackward>), tensor([-9990.5410], grad_fn=<ViewBackward>), tensor([8.8007], grad_fn=<ViewBackward>)] 5\\n\",\n      \"forward_var: tensor([[ 9.0146e+00,  8.3224e+00,  7.7279e+00, -9.9905e+03,  8.8007e+00]],\\n\",\n      \"       grad_fn=<ViewBackward>) torch.Size([1, 5])\\n\",\n      \"self.transitions[self.tag_to_ix[STOP_TAG] 4 tensor([-4.9711e-01,  1.4690e+00,  3.7535e-02,  6.5826e-02, -1.0000e+04],\\n\",\n      \"       grad_fn=<SelectBackward>)\\n\",\n      \"loss: tensor([15.9027], grad_fn=<SubBackward0>)\\n\",\n      \"lstm_out: torch.Size([10, 1, 4])\\n\",\n      \"lstm_feats: torch.Size([10, 5])\\n\",\n      \"训练后： ['长', '城', '位', '于', '北', '京', '市', '延', '庆', '县'] (tensor(5.0174), [2, 1, 2, 1, 2, 1, 2, 1, 2, 1])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 训练前检查预测结果\\n\",\n    \"with torch.no_grad():\\n\",\n    \"    precheck_sent = prepare_sequence(training_data[0][0], word_to_ix)\\n\",\n    \"    precheck_tags = torch.tensor([tag_to_ix[t] for t in training_data[0][1]], dtype=torch.long)\\n\",\n    \"    print(\\\"训练前：\\\", training_data[0][0], model(precheck_sent))\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# 通常不会训这么多epochs， 这是demo数据\\n\",\n    \"# for epoch in range(300):  \\n\",\n    \"for sentence, tags in training_data:\\n\",\n    \"    # 第一步: 需要记住的是Pytorch会累积梯度\\n\",\n    \"    # 我们需要在每次实例之前把它们清除\\n\",\n    \"    # ['the', 'wall', 'street', 'journal', 'reported', 'today', 'that', 'apple', 'corporation', 'made', 'money'] \\n\",\n    \"    # ['B', 'I', 'I', 'I', 'O', 'O', 'O', 'B', 'I', 'O', 'O']\\n\",\n    \"    model.zero_grad()\\n\",\n    \"\\n\",\n    \"    # 第二步: 为我们的网络准备好输入, 即把它们转变成单词索引变量 (Variables)\\n\",\n    \"    sentence_in = prepare_sequence(sentence, word_to_ix)\\n\",\n    \"    targets = torch.tensor([tag_to_ix[t] for t in tags], dtype=torch.long)\\n\",\n    \"    print(sentence_in)\\n\",\n    \"    # 第三步: 运行前向传递\\n\",\n    \"    # 负对数似然\\n\",\n    \"    loss = model.neg_log_likelihood(sentence_in, targets)\\n\",\n    \"    print(\\\"loss:\\\", loss)\\n\",\n    \"    break\\n\",\n    \"    # 第四步: 计算损失, 梯度以及使用 optimizer.step() 来更新参数\\n\",\n    \"    loss.backward()\\n\",\n    \"    optimizer.step()\\n\",\n    \"\\n\",\n    \"# 在训练之后检查预测结果\\n\",\n    \"with torch.no_grad():\\n\",\n    \"    precheck_sent = prepare_sequence(training_data[0][0], word_to_ix)\\n\",\n    \"    print(\\\"训练后：\\\", training_data[0][0], model(precheck_sent))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([0.1903, 0.9510, 0.7418, 0.6104, 0.4461])\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"feat = torch.rand(5)\\n\",\n    \"feat\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.7418, 0.7418, 0.7418, 0.7418, 0.7418]])\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"feat[2].view(1, -1).expand(1, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"ename\": \"TypeError\",\n     \"evalue\": \"expected Tensor as element 0 in argument 0, but got int\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mTypeError\\u001b[0m                                 Traceback (most recent call last)\",\n      \"\\u001b[0;32m<ipython-input-47-b7e543b238ee>\\u001b[0m in \\u001b[0;36m<module>\\u001b[0;34m\\u001b[0m\\n\\u001b[0;32m----> 1\\u001b[0;31m \\u001b[0mtorch\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mcat\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m[\\u001b[0m\\u001b[0;36m1\\u001b[0m\\u001b[0;34m,\\u001b[0m\\u001b[0;36m2\\u001b[0m\\u001b[0;34m,\\u001b[0m\\u001b[0;36m3\\u001b[0m\\u001b[0;34m]\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\",\n      \"\\u001b[0;31mTypeError\\u001b[0m: expected Tensor as element 0 in argument 0, but got int\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 使用数值上稳定的方法为前向算法计算指数和的对数\\n\",\n    \"\\n\",\n    \"def log_sum_exp(vec):\\n\",\n    \"    max_score = vec[0, argmax(vec)]\\n\",\n    \"    max_score_broadcast = max_score.view(1, -1).expand(1, vec.size()[1])\\n\",\n    \"    return max_score + \\\\\\n\",\n    \"        torch.log(torch.sum(torch.exp(vec - max_score_broadcast)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 102,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.9307, 0.8109, 0.4847, 0.2767, 0.5331]])\"\n      ]\n     },\n     \"execution_count\": 102,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vec = torch.rand(1,5)\\n\",\n    \"vec\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 103,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(0.9307)\"\n      ]\n     },\n     \"execution_count\": 103,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"max_score = vec[0, argmax(vec)]\\n\",\n    \"max_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 104,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.9307, 0.9307, 0.9307, 0.9307, 0.9307]])\"\n      ]\n     },\n     \"execution_count\": 104,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"max_score_broadcast  = max_score.view(1, -1).expand(1, vec.size()[1])\\n\",\n    \"max_score_broadcast\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 105,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[ 0.0000, -0.1198, -0.4460, -0.6540, -0.3975]])\"\n      ]\n     },\n     \"execution_count\": 105,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"vec - max_score_broadcast\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 106,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(1.3135)\"\n      ]\n     },\n     \"execution_count\": 106,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x_ = torch.log(torch.sum(torch.exp(vec - max_score_broadcast)))\\n\",\n    \"x_\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 107,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(2.2442)\"\n      ]\n     },\n     \"execution_count\": 107,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"max_score + x_\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 108,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(2.2442)\"\n      ]\n     },\n     \"execution_count\": 108,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.log(torch.sum(torch.exp(vec)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 109,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.8894, 0.8167, 0.2974, 0.3956, 0.6985]])\"\n      ]\n     },\n     \"execution_count\": 109,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x_t = torch.rand(1,5)\\n\",\n    \"x_t\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 98,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor(2.1582) tensor(2.1582)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(log_sum_exp(x_t), torch.log(torch.sum(torch.exp(x_t))))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 68,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[2.1000, 2.2000]])\"\n      ]\n     },\n     \"execution_count\": 68,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.cat([torch.tensor(2.1).view(1), torch.tensor(2.2).view(1)]).view(1, -1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"_, y = torch.max(x, 1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0, 1, 1, 0],\\n\",\n       \"        [2, 0, 0, 1]])\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"ename\": \"RuntimeError\",\n     \"evalue\": \"The expanded size of the tensor (3) must match the existing size (32) at non-singleton dimension 1.  Target sizes: [1, 3].  Tensor sizes: [1, 32]\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mRuntimeError\\u001b[0m                              Traceback (most recent call last)\",\n      \"\\u001b[0;32m<ipython-input-30-7e48ce564efd>\\u001b[0m in \\u001b[0;36m<module>\\u001b[0;34m\\u001b[0m\\n\\u001b[0;32m----> 1\\u001b[0;31m \\u001b[0mx\\u001b[0m\\u001b[0;34m[\\u001b[0m\\u001b[0;36m0\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0my\\u001b[0m\\u001b[0;34m]\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mview\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;36m1\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;34m-\\u001b[0m\\u001b[0;36m1\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mexpand\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;36m1\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mx\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0msize\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m[\\u001b[0m\\u001b[0;36m1\\u001b[0m\\u001b[0;34m]\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\",\n      \"\\u001b[0;31mRuntimeError\\u001b[0m: The expanded size of the tensor (3) must match the existing size (32) at non-singleton dimension 1.  Target sizes: [1, 3].  Tensor sizes: [1, 32]\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"x[0, y].view(1, -1).expand(1, x.size()[1])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"self.transitions: Parameter containing:\\n\",\n      \"tensor([[-2.0531,  0.1550, -0.7984, -0.7743,  1.3765],\\n\",\n      \"        [ 0.3320,  0.0276, -1.6227,  0.3256, -0.3506],\\n\",\n      \"        [-0.1191, -0.0183,  0.9328, -1.5924,  1.8704],\\n\",\n      \"        [ 0.0952, -0.8484,  0.4585, -0.6996,  0.0129],\\n\",\n      \"        [ 0.1481,  0.7436, -0.9027, -1.5715, -0.9465]], requires_grad=True)\\n\",\n      \"self.transitions ------>: Parameter containing:\\n\",\n      \"tensor([[-2.0531e+00,  1.5505e-01, -7.9837e-01, -7.7434e-01, -1.0000e+04],\\n\",\n      \"        [ 3.3201e-01,  2.7574e-02, -1.6227e+00,  3.2563e-01, -1.0000e+04],\\n\",\n      \"        [-1.1905e-01, -1.8328e-02,  9.3275e-01, -1.5924e+00, -1.0000e+04],\\n\",\n      \"        [-1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04, -1.0000e+04],\\n\",\n      \"        [ 1.4810e-01,  7.4357e-01, -9.0270e-01, -1.5715e+00, -1.0000e+04]],\\n\",\n      \"       requires_grad=True)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"transitions = nn.Parameter(torch.randn(5, 5))\\n\",\n    \"        \\n\",\n    \"print(\\\"self.transitions:\\\", transitions)\\n\",\n    \"\\n\",\n    \"# These two statements enforce the constraint that we never transfer\\n\",\n    \"# to the start tag and we never transfer from the stop tag\\n\",\n    \"transitions.data[3, :] = -10000\\n\",\n    \"transitions.data[:, 4] = -10000\\n\",\n    \"print(\\\"self.transitions ------>:\\\", transitions)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-10000., -10000., -10000., -10000., -10000.]])\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.full((1, 5), -10000.)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"lstm_out.view(len(sentence), self.hidden_dim)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"x1 = torch.randn(10, 1, 4)\\n\",\n    \"x2 = torch.randn(2, 1, 2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(torch.Size([10, 1, 4]), torch.Size([2, 1, 2]))\"\n      ]\n     },\n     \"execution_count\": 36,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x1.size(), x2.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([10, 4])\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x1.view(10, 4).size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"x_one = torch.tensor(0.2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(0.2000)\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x_one\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.2000, 0.2000, 0.2000, 0.2000, 0.2000]])\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x_one.view(1, -1).expand(1, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/Matrix_multiplication.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(2, 3)\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = np.array([[0,1,0],\\n\",\n    \"              [0,0,1]])\\n\",\n    \"x.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(3, 4)\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"W = np.array([[1,2,3,4],\\n\",\n    \"              [2,2,2,2],\\n\",\n    \"              [5,5,5,5]])\\n\",\n    \"W.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[2, 2, 2, 2],\\n\",\n       \"       [5, 5, 5, 5]])\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x.dot(W)  # 第r行乘以c列得到新矩阵的r行，c列。行乘每列。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.10\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/Untitled.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"?torch.Tensor.scatter_add_\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"x = torch.rand(2, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.5788, 0.9383, 0.4485, 0.3223, 0.4562],\\n\",\n       \"        [0.1863, 0.9070, 0.9751, 0.5211, 0.4711]])\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"b = torch.ones(3, 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1., 1., 1., 1., 1.],\\n\",\n       \"        [1., 1., 1., 1., 1.],\\n\",\n       \"        [1., 1., 1., 1., 1.]])\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"b\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1.5788, 1.9070, 1.9751, 1.3223, 1.4562],\\n\",\n       \"        [1.0000, 1.9383, 1.0000, 1.5211, 1.0000],\\n\",\n       \"        [1.1863, 1.0000, 1.4485, 1.0000, 1.4711]])\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"b.scatter_add(0, torch.tensor([[0, 1, 2, 0, 0], [2, 0, 0, 1, 2]]), x)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1.5788, 1.9070, 1.9751, 1.3223, 1.4562],\\n\",\n       \"        [1.0000, 1.9383, 1.0000, 1.5211, 1.0000],\\n\",\n       \"        [1.1863, 1.0000, 1.4485, 1.0000, 1.4711]])\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"b.scatter_add(0, torch.tensor([[0, 1, 2, 0, 0], [2, 0, 0, 1, 2]]), x)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/pack_padded_and_pad_packed.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## pack_padded_sequence\\n\",\n    \"- https://pytorch.org/docs/1.0.1/nn.html#torch.nn.utils.rnn.pack_padded_sequence\\n\",\n    \"- 在使用深度学习特别是LSTM进行文本分析时，经常会遇到文本长度不一样的情况，此时就需要对同一个batch中的不同文本使用padding的方式进行文本长度对齐，方便将训练数据输入到LSTM模型进行训练，同时为了保证模型训练的精度，应该同时告诉LSTM相关padding的情况，此时，pytorch中的pack_padded_sequence就有了用武之地。\\n\",\n    \"- 通常pading的位置向量都是0，我们需要使用pack_padded_sequence() 把数据压紧，即去掉pading的部分，减少冗余。然后再输入网络中，如lstm等。通过网络后的结果也是压紧的，需要通过pad_packed_sequence()还原。\\n\",\n    \"- torch.nn.utils.rnn.pack_padded_sequence(input, lengths, batch_first=False)\\n\",\n    \"```\\n\",\n    \"input (Tensor) – padded batch of variable length sequences.\\n\",\n    \"lengths (Tensor) – list of sequences lengths of each batch element.\\n\",\n    \"batch_first (bool, optional) – if True, the input is expected in B x T x * format.\\n\",\n    \"```\\n\",\n    \"- pad_packed_sequence 解压\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.nn.utils as utils\\n\",\n    \"from torch.nn.utils.rnn import pack_padded_sequence, pad_packed_sequence\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"1.0.1\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(torch.__version__)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 定义一个双向lstm网络层\\n\",\n    \"lstm = nn.LSTM(4, 100, num_layers=1, batch_first=True, bidirectional=True)  \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([4, 3, 4])\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 定义一个有padding的序列数据，也就是有冗余的0\\n\",\n    \"x = torch.tensor([[[1,2,3,4],\\n\",\n    \"                   [2,3,4,5],\\n\",\n    \"                   [2,5,6,0]],\\n\",\n    \"                  [[1,2,1,1],\\n\",\n    \"                   [1,6,7,9],\\n\",\n    \"                   [0,0,0,0]],\\n\",\n    \"                  [[1,2,3,4],\\n\",\n    \"                   [1,1,1,1],\\n\",\n    \"                   [0,0,0,0]],\\n\",\n    \"                  [[1,2,3,4],\\n\",\n    \"                   [0,0,0,0],\\n\",\n    \"                   [0,0,0,0]],\\n\",\n    \"                 ])\\n\",\n    \"x = x.float()\\n\",\n    \"x.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"PackedSequence(data=tensor([[1., 2., 3., 4.],\\n\",\n       \"        [1., 2., 1., 1.],\\n\",\n       \"        [1., 2., 3., 4.],\\n\",\n       \"        [1., 2., 3., 4.],\\n\",\n       \"        [2., 3., 4., 5.],\\n\",\n       \"        [1., 6., 7., 9.],\\n\",\n       \"        [1., 1., 1., 1.],\\n\",\n       \"        [2., 5., 6., 0.]]), batch_sizes=tensor([4, 3, 1]))\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 压紧数据，去掉冗余\\n\",\n    \"packed = pack_padded_sequence(x, torch.tensor([3, 2, 2,1]), batch_first=True)   # 打包，压缩\\n\",\n    \"packed\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"PackedSequence(data=tensor([[-0.1277, -0.0269, -0.0070,  ..., -0.0997,  0.0827,  0.0156],\\n\",\n       \"        [-0.0272, -0.0503, -0.0239,  ..., -0.0778,  0.0617, -0.0288],\\n\",\n       \"        [-0.1277, -0.0269, -0.0070,  ..., -0.0498,  0.0694,  0.0405],\\n\",\n       \"        ...,\\n\",\n       \"        [-0.2541, -0.0296, -0.0304,  ..., -0.0526,  0.0918,  0.0056],\\n\",\n       \"        [-0.0754, -0.0565, -0.0133,  ..., -0.0139,  0.0202,  0.0313],\\n\",\n       \"        [-0.2212, -0.0844, -0.0038,  ..., -0.0590, -0.0370,  0.0686]],\\n\",\n       \"       grad_fn=<CatBackward>), batch_sizes=tensor([4, 3, 1]))\"\n      ]\n     },\n     \"execution_count\": 49,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 通过lstm进行计算\\n\",\n    \"output, hidden = lstm(packed)\\n\",\n    \"# 得到的结果也是压紧的\\n\",\n    \"output\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 解压\\n\",\n    \"encoder_outputs, lenghts = pad_packed_sequence(output, batch_first=True)   # 解包\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[-0.1277, -0.0269, -0.0070,  ..., -0.0997,  0.0827,  0.0156],\\n\",\n       \"         [-0.1971, -0.0458, -0.0240,  ..., -0.0674,  0.0357,  0.0496],\\n\",\n       \"         [-0.2212, -0.0844, -0.0038,  ..., -0.0590, -0.0370,  0.0686]],\\n\",\n       \"\\n\",\n       \"        [[-0.0272, -0.0503, -0.0239,  ..., -0.0778,  0.0617, -0.0288],\\n\",\n       \"         [-0.2541, -0.0296, -0.0304,  ..., -0.0526,  0.0918,  0.0056],\\n\",\n       \"         [ 0.0000,  0.0000,  0.0000,  ...,  0.0000,  0.0000,  0.0000]],\\n\",\n       \"\\n\",\n       \"        [[-0.1277, -0.0269, -0.0070,  ..., -0.0498,  0.0694,  0.0405],\\n\",\n       \"         [-0.0754, -0.0565, -0.0133,  ..., -0.0139,  0.0202,  0.0313],\\n\",\n       \"         [ 0.0000,  0.0000,  0.0000,  ...,  0.0000,  0.0000,  0.0000]],\\n\",\n       \"\\n\",\n       \"        [[-0.1277, -0.0269, -0.0070,  ..., -0.0408,  0.0545,  0.0386],\\n\",\n       \"         [ 0.0000,  0.0000,  0.0000,  ...,  0.0000,  0.0000,  0.0000],\\n\",\n       \"         [ 0.0000,  0.0000,  0.0000,  ...,  0.0000,  0.0000,  0.0000]]],\\n\",\n       \"       grad_fn=<TransposeBackward0>)\"\n      ]\n     },\n     \"execution_count\": 51,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"encoder_outputs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 52,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([4, 3, 200])\"\n      ]\n     },\n     \"execution_count\": 52,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"encoder_outputs.size()   # size: [3, 3, 200] 双向的，所以是200维度\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 53,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([4, 3, 200])\"\n      ]\n     },\n     \"execution_count\": 53,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"encoder_outputs = encoder_outputs.contiguous()\\n\",\n    \"encoder_outputs.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([12, 200])\"\n      ]\n     },\n     \"execution_count\": 54,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"feature = encoder_outputs.view(-1, 200)\\n\",\n    \"feature.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([12, 200])\"\n      ]\n     },\n     \"execution_count\": 55,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"line = nn.Linear(200,200, bias=False)\\n\",\n    \"y = line(feature)\\n\",\n    \"y.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 56,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([3, 2, 2, 1])\"\n      ]\n     },\n     \"execution_count\": 56,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"lenghts\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"## 来看下双向lstm的输出\\n\",\n    \"len(hidden) # 双向lstm 结果是2  \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 65,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([2, 4, 100])\"\n      ]\n     },\n     \"execution_count\": 65,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"h, c  = hidden\\n\",\n    \"h.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 66,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([2, 4, 100])\"\n      ]\n     },\n     \"execution_count\": 66,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"c.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([4, 200])\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"inp = h.transpose(0, 1).contiguous().view(-1, 200)  # view就是reshape\\n\",\n    \"inp.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 定义一个单向lstm网络层\\n\",\n    \"lstm2 = nn.LSTM(4, 100, num_layers=1, batch_first=True) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 62,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"out, hid = lstm2(x)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 63,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"2\"\n      ]\n     },\n     \"execution_count\": 63,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"len(hid)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([1, 4, 100])\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"hid[0].size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"## 有必要了解一下lstm的输出结果\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/posEmbeding.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import math\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([5000, 512])\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"max_len = 5000\\n\",\n    \"d_model = 512\\n\",\n    \"pe = torch.zeros(max_len, d_model)\\n\",\n    \"pe.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0., 0., 0.,  ..., 0., 0., 0.],\\n\",\n       \"        [0., 0., 0.,  ..., 0., 0., 0.],\\n\",\n       \"        [0., 0., 0.,  ..., 0., 0., 0.],\\n\",\n       \"        ...,\\n\",\n       \"        [0., 0., 0.,  ..., 0., 0., 0.],\\n\",\n       \"        [0., 0., 0.,  ..., 0., 0., 0.],\\n\",\n       \"        [0., 0., 0.,  ..., 0., 0., 0.]])\"\n      ]\n     },\n     \"execution_count\": 18,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pe[:,0::2]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"position = torch.arange(0, max_len, 1.).unsqueeze(1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'torch.FloatTensor'\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"div_term = torch.exp(torch.arange(0, d_model, 2.0) * -(math.log(10000.0) / d_model))\\n\",\n    \"div_term.type()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'torch.FloatTensor'\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"position.type()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([5000, 512])\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pe[:, 0::2] = torch.sin(position * div_term)\\n\",\n    \"pe[:, 1::2] = torch.cos(position * div_term)\\n\",\n    \"pe.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([1, 5000, 512])\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"pe = pe.unsqueeze(0)\\n\",\n    \"pe.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/py-rouge.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import rouge\\n\",\n    \"from rouge import Rouge\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"a = [\\\"i am a student from xx school\\\"]  # 预测摘要 （可以是列表也可以是句子）\\n\",\n    \"b = [\\\"i am a student from school on china\\\"] #真实摘要\\n\",\n    \"\\n\",\n    \"rouge_obj = Rouge()\\n\",\n    \"rouge_score = rouge_obj.get_scores(a, b)\\n\",\n    \"# print(rouge_score[0][\\\"rouge-1\\\"])\\n\",\n    \"# print(rouge_score[0][\\\"rouge-2\\\"])\\n\",\n    \"# print(rouge_score[0][\\\"rouge-l\\\"])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"{}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(rouge_score)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def prepare_results(p, r, f):\\n\",\n    \"    return '\\\\t{}:\\\\t{}: {:5.2f}\\\\t{}: {:5.2f}\\\\t{}: {:5.2f}'.format(metric, 'P', 100.0 * p, 'R', 100.0 * r, 'F1', 100.0 * f)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Evaluation with Avg\\n\",\n      \"\\trouge-1:\\tP: 15.05\\tR: 13.59\\tF1: 14.29\\n\",\n      \"\\trouge-2:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\trouge-3:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\trouge-4:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\trouge-l:\\tP: 16.88\\tR: 15.50\\tF1: 16.16\\n\",\n      \"\\trouge-w:\\tP:  8.29\\tR:  4.04\\tF1:  5.43\\n\",\n      \"\\n\",\n      \"Evaluation with Best\\n\",\n      \"\\trouge-1:\\tP: 15.05\\tR: 13.59\\tF1: 14.29\\n\",\n      \"\\trouge-2:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\trouge-3:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\trouge-4:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\trouge-l:\\tP: 16.88\\tR: 15.50\\tF1: 16.16\\n\",\n      \"\\trouge-w:\\tP:  8.29\\tR:  4.04\\tF1:  5.43\\n\",\n      \"\\n\",\n      \"Evaluation with Individual\\n\",\n      \"\\tHypothesis #0 & Reference #0: \\n\",\n      \"\\t\\trouge-1:\\tP: 15.05\\tR: 13.59\\tF1: 14.29\\n\",\n      \"\\n\",\n      \"\\tHypothesis #0 & Reference #0: \\n\",\n      \"\\t\\trouge-2:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\n\",\n      \"\\tHypothesis #0 & Reference #0: \\n\",\n      \"\\t\\trouge-3:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\n\",\n      \"\\tHypothesis #0 & Reference #0: \\n\",\n      \"\\t\\trouge-4:\\tP:  0.00\\tR:  0.00\\tF1:  0.00\\n\",\n      \"\\n\",\n      \"\\tHypothesis #0 & Reference #0: \\n\",\n      \"\\t\\trouge-l:\\tP: 16.88\\tR: 15.50\\tF1: 16.16\\n\",\n      \"\\n\",\n      \"\\tHypothesis #0 & Reference #0: \\n\",\n      \"\\t\\trouge-w:\\tP:  8.29\\tR:  4.04\\tF1:  5.43\\n\",\n      \"\\n\",\n      \"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for aggregator in ['Avg', 'Best', 'Individual']:\\n\",\n    \"    print('Evaluation with {}'.format(aggregator))\\n\",\n    \"    apply_avg = aggregator == 'Avg'\\n\",\n    \"    apply_best = aggregator == 'Best'\\n\",\n    \"\\n\",\n    \"    evaluator = rouge.Rouge(metrics=['rouge-n', 'rouge-l', 'rouge-w'],\\n\",\n    \"                           max_n=4,\\n\",\n    \"                           limit_length=True,\\n\",\n    \"                           length_limit=100,\\n\",\n    \"                           length_limit_type='words',\\n\",\n    \"                           apply_avg=apply_avg,\\n\",\n    \"                           apply_best=apply_best,\\n\",\n    \"                           alpha=0.5, # Default F1_score\\n\",\n    \"                           weight_factor=1.2,\\n\",\n    \"                           stemming=True)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"#     hypothesis_1 = \\\"我 是 中国人。\\\\n我 来自 中国 北京。\\\\n\\\"\\n\",\n    \"#     references_1 = [\\\"我 来自 北京。\\\\n\\\", \\\"我 是 中国人。\\\\n\\\",\\n\",\n    \"#                     ]\\n\",\n    \"\\n\",\n    \"    hypothesis_2 = \\\"China 's government said Thursday that two prominent dissidents arrested this week are suspected of endangering national security _ the clearest sign yet Chinese leaders plan to quash a would-be opposition party .\\\\nOne leader of a suppressed new political party will be tried on Dec. 17 on a charge of colluding with foreign enemies of China '' to incite the subversion of state power , '' according to court documents given to his wife on Monday .\\\\nWith attorneys locked up , harassed or plain scared , two prominent dissidents will defend themselves against charges of subversion Thursday in China 's highest-profile dissident trials in two years .\\\\n\\\"\\n\",\n    \"    references_2 = \\\"Hurricane Mitch, category 5 hurricane, brought widespread death and destruction to Central American.\\\\nEspecially hard hit was Honduras where an estimated 6,076 people lost their lives.\\\\nThe hurricane, which lingered off the coast of Honduras for 3 days before moving off, flooded large areas, destroying crops and property.\\\\nThe U.S. and European Union were joined by Pope John Paul II in a call for money and workers to help the stricken area.\\\\nPresident Clinton sent Tipper Gore, wife of Vice President Gore to the area to deliver much needed supplies to the area, demonstrating U.S. commitment to the recovery of the region.\\\\n\\\"\\n\",\n    \"#     hypothesis_2 = \\\"我 爱 中国。\\\\n\\\"\\n\",\n    \"#     references_2 = \\\"我 爱 你 中国。\\\\n\\\"\\n\",\n    \"    all_hypothesis = [hypothesis_2]\\n\",\n    \"    all_references = [references_2]\\n\",\n    \"\\n\",\n    \"    scores = evaluator.get_scores(all_hypothesis, all_references)\\n\",\n    \"\\n\",\n    \"    for metric, results in sorted(scores.items(), key=lambda x: x[0]):\\n\",\n    \"        if not apply_avg and not apply_best: # value is a type of list as we evaluate each summary vs each reference\\n\",\n    \"            for hypothesis_id, results_per_ref in enumerate(results):\\n\",\n    \"                nb_references = len(results_per_ref['p'])\\n\",\n    \"                for reference_id in range(nb_references):\\n\",\n    \"                    print('\\\\tHypothesis #{} & Reference #{}: '.format(hypothesis_id, reference_id))\\n\",\n    \"                    print('\\\\t' + prepare_results(results_per_ref['p'][reference_id], results_per_ref['r'][reference_id], results_per_ref['f'][reference_id]))\\n\",\n    \"            print()\\n\",\n    \"        else:\\n\",\n    \"            print(prepare_results(results['p'], results['r'], results['f']))\\n\",\n    \"    print()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 好像只能计算英文啊\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/pytorch_nn_cheat_sheet.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"from torch.autograd import Variable\\n\",\n    \"import torch.nn.functional as F\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## nn.Embedding介绍\\n\",\n    \"- [https://pytorch.org/docs/stable/nn.html](https://pytorch.org/docs/stable/nn.html)\\n\",\n    \"----\\n\",\n    \"- pytorch里面实现word embedding是通过一个函数来实现的:nn.Embedding。Embedding的作用就是将词语向量化，通常会将词语表示为一个连续箱梁。\\n\",\n    \"- 官方介绍\\n\",\n    \"    - 一个简单的查找表，用于存储固定字典和大小的嵌入。\\n\",\n    \"    - 此模块通常用于存储单词嵌入并使用索引检索它们。模块的输入是索引列表，输出是相应的字嵌入。\\n\",\n    \"    \\n\",\n    \"- CLASS torch.nn.Embedding(num_embeddings, embedding_dim, padding_idx=None, max_norm=None, norm_type=2.0, scale_grad_by_freq=False, sparse=False, _weight=None)\\n\",\n    \"\\n\",\n    \"- 参数：\\n\",\n    \"    - num_embeddings (int) – 词典的大小，也就是词典有多少个词。比如你有一个30000的词典，这里就是30000.\\n\",\n    \"\\n\",\n    \"    - embedding_dim (int) – the size of each embedding vector。将词语表示成embedding_dim维的向量。指定向量的维度。\\n\",\n    \"\\n\",\n    \"    - padding_idx (int, optional) – If given, pads the output with the embedding vector at padding_idx (initialized to zeros) whenever it encounters the index.设置padding_idx后，padding_idx中的嵌入向量将初始化为全零。但是，请注意，之后可以修改该向量，例如，使用定制的初始化方法，从而改变用于填充输出的向量。嵌入中此向量的渐变始终为零。\\n\",\n    \"\\n\",\n    \"    - max_norm (float, optional) – If given, each embedding vector with norm larger than max_norm is renormalized to have norm max_norm.\\n\",\n    \"    - norm_type (float, optional) – The p of the p-norm to compute for the max_norm option. Default 2.\\n\",\n    \"    - scale_grad_by_freq (boolean, optional) – If given, this will scale gradients by the inverse of frequency of the words in the mini-batch. Default False.\\n\",\n    \"    - sparse (bool, optional) – If True, gradient w.r.t. weight matrix will be a sparse tensor. See Notes for more details regarding sparse gradients.\\n\",\n    \"- 看个例子吧\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor([[ 0.3746, -1.0797, -0.6317, -0.6281, -0.4120]],\\n\",\n      \"       grad_fn=<EmbeddingBackward>)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 定义一个词典：word2idx = {'hello': 0, 'world': 1, '!':2}，每个单词我们需要用一个数字去表示它，这里对于hello这个词，用0来表示它。\\n\",\n    \"word2idx = {'hello': 0, 'world': 1, '!':2}\\n\",\n    \"\\n\",\n    \"# 定义Embedding层，这里的3表示词典共有3个词，5表示5维度，其实也就是一个3x5的矩阵.\\n\",\n    \"# 如果你有1000个词，每个词希望是100维，你就可以这样建立一个word embedding，nn.Embedding(1000, 100)。\\n\",\n    \"# 这就相当于词语和表示词语的向量建立了一张表，想知道一个词的向量表示可以通过这张表去查。\\n\",\n    \"embeds = nn.Embedding(3, 5)\\n\",\n    \"\\n\",\n    \"# 如何查询hello这个词的向量表示呢？\\n\",\n    \"\\n\",\n    \"# 通过词语在原来字典中的索引查词向量，hello的索引是0\\n\",\n    \"hello_idx = torch.LongTensor([word2idx['hello']])\\n\",\n    \"\\n\",\n    \"# 特别注意这里需要一个Variable，因为我们需要访问nn.Embedding里面定义的元素，且word embeding算是神经网络里面的参数，所以我们需要定义Variable\\n\",\n    \"hello_idx = Variable(hello_idx)\\n\",\n    \"# 现在输入Variable格式的索引就可以查看词向量了\\n\",\n    \"hello_embed = embeds(hello_idx)\\n\",\n    \"\\n\",\n    \"# 输出hello这个词的<初始词向量>\\n\",\n    \"print(hello_embed)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 注意\\n\",\n    \"- 注意这里的词向量的建立只是**初始的词向量**，并没有经过任何修改优化，我们需要建立神经网络通过learning修改word embedding里面的参数使得word embedding每一个词向量能够表示每一个不同的词。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## nn.LSTM\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"rnn = nn.LSTM(10, 20)     \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"input_data = torch.randn(5, 3, 10)  # seq_len, batch, input_size\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# h0 = torch.randn(1, 3, 20)   # 初始化\\n\",\n    \"# h0\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# c0 = torch.randn(1, 3, 20)\\n\",\n    \"# c0\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"output, (hn, cn) = rnn(input_data)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([5, 3, 20])\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"output.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-0.1023, -0.2195, -0.3629, -0.0977, -0.1240, -0.1357, -0.2260, -0.0529,\\n\",\n       \"          0.0173,  0.0663,  0.0418, -0.0313, -0.1414,  0.1390,  0.0395, -0.2833,\\n\",\n       \"          0.0786, -0.0190,  0.0141, -0.0871],\\n\",\n       \"        [-0.0481, -0.1797, -0.0957, -0.0579,  0.0646, -0.1703,  0.0248, -0.1381,\\n\",\n       \"         -0.1028,  0.1341,  0.1645,  0.0634, -0.1689,  0.0230, -0.0375, -0.1674,\\n\",\n       \"         -0.0029, -0.0914,  0.0958, -0.0738],\\n\",\n       \"        [-0.0141, -0.0795,  0.0149,  0.0237,  0.0830, -0.2079,  0.2409, -0.0418,\\n\",\n       \"         -0.0247,  0.2118,  0.1507, -0.0559, -0.1114, -0.0887, -0.2693, -0.0222,\\n\",\n       \"          0.0394, -0.0820, -0.0806, -0.0231]], grad_fn=<SelectBackward>)\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"output[4]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[-0.1023, -0.2195, -0.3629, -0.0977, -0.1240, -0.1357, -0.2260,\\n\",\n       \"          -0.0529,  0.0173,  0.0663,  0.0418, -0.0313, -0.1414,  0.1390,\\n\",\n       \"           0.0395, -0.2833,  0.0786, -0.0190,  0.0141, -0.0871],\\n\",\n       \"         [-0.0481, -0.1797, -0.0957, -0.0579,  0.0646, -0.1703,  0.0248,\\n\",\n       \"          -0.1381, -0.1028,  0.1341,  0.1645,  0.0634, -0.1689,  0.0230,\\n\",\n       \"          -0.0375, -0.1674, -0.0029, -0.0914,  0.0958, -0.0738],\\n\",\n       \"         [-0.0141, -0.0795,  0.0149,  0.0237,  0.0830, -0.2079,  0.2409,\\n\",\n       \"          -0.0418, -0.0247,  0.2118,  0.1507, -0.0559, -0.1114, -0.0887,\\n\",\n       \"          -0.2693, -0.0222,  0.0394, -0.0820, -0.0806, -0.0231]]],\\n\",\n       \"       grad_fn=<StackBackward>)\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"hn\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 结论\\n\",\n    \"- 我们可以看到hn是最后一次输出，output是所有输出。因此output的最后一个元素和hn是一样的。\\n\",\n    \"- cn是细胞状态tensor\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([1, 3, 20])\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"hn.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([1, 3, 20])\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cn.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[-0.2094, -0.5293, -0.7267, -0.1446, -0.1959, -0.2274, -0.4356,\\n\",\n       \"          -0.1363,  0.0553,  0.1174,  0.1804, -0.1037, -0.3693,  0.3561,\\n\",\n       \"           0.0795, -0.5906,  0.2023, -0.0374,  0.0280, -0.2041],\\n\",\n       \"         [-0.1044, -0.4315, -0.1768, -0.1072,  0.1064, -0.3795,  0.0522,\\n\",\n       \"          -0.3305, -0.2329,  0.2719,  0.3601,  0.1317, -0.4066,  0.0497,\\n\",\n       \"          -0.0728, -0.4711, -0.0061, -0.1587,  0.1639, -0.1596],\\n\",\n       \"         [-0.0240, -0.2553,  0.0266,  0.0601,  0.1633, -0.5237,  0.4116,\\n\",\n       \"          -0.0992, -0.0575,  0.3210,  0.2774, -0.1068, -0.2709, -0.1610,\\n\",\n       \"          -0.4528, -0.0570,  0.0676, -0.1944, -0.1193, -0.0365]]],\\n\",\n       \"       grad_fn=<StackBackward>)\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cn\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"fc = nn.Linear(20, 20)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"out = fc(output)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([5, 3, 20])\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"out.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([ 0.0896, -0.0571, -0.0152, -0.0691, -0.0199, -0.0406,  0.2308, -0.2142,\\n\",\n       \"        -0.1767, -0.0639, -0.0081,  0.1343, -0.1078, -0.2064, -0.1733, -0.1182,\\n\",\n       \"         0.1361, -0.2758,  0.1620,  0.1076], grad_fn=<SelectBackward>)\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"out[0][0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"rnn2 = nn.LSTM(10, 20, batch_first=True) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# bacth,seq_len, word_vec_dim\\n\",\n    \"input_data2 = torch.randn(32, 5, 10)  # hc层size(layer_num, bacth, out_dim)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"out, (hn, cn) = rnn2(input_data2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"torch.Size([32, 5, 20]) torch.Size([1, 32, 20]) torch.Size([1, 32, 20])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(out.size(), hn.size(), cn.size())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"a = torch.randn(2).unsqueeze(0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-0.4607, -0.4461]])\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 两个形状相同的tonsor相乘\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"a = torch.tensor([[1,2,3], \\n\",\n    \"                  [2,3,4]])\\n\",\n    \"b = torch.tensor([[2,2,2], \\n\",\n    \"                  [2,2,1]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[2, 4, 6],\\n\",\n       \"        [4, 6, 4]])\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"c = a*b\\n\",\n    \"c\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 1.0323,  0.1239,  1.1077,  0.2164,  0.4767,  0.4025,  0.2399,\\n\",\n       \"          -0.1330,  0.5671,  0.1008],\\n\",\n       \"         [ 0.0843,  0.7463,  0.6705,  0.1488,  0.6736, -0.2464, -0.5746,\\n\",\n       \"           0.6086,  0.9737,  0.0711],\\n\",\n       \"         [ 1.8035,  0.8987, -0.6655, -1.0680, -0.5026,  0.5141,  1.4208,\\n\",\n       \"           0.2101,  0.4502,  1.3422],\\n\",\n       \"         [ 1.0504,  1.3057,  0.2206, -1.7455, -1.2488, -0.4145,  0.8532,\\n\",\n       \"           0.8481,  0.6439,  0.8128],\\n\",\n       \"         [ 0.7198,  0.6862,  0.3618,  0.1609, -0.0922, -0.3626,  0.5601,\\n\",\n       \"          -0.0230, -1.4171, -0.9066]],\\n\",\n       \"\\n\",\n       \"        [[ 1.2316,  0.4093, -0.0454, -0.0887, -0.0333, -0.4516,  0.8812,\\n\",\n       \"           0.6673, -2.0286,  0.5245],\\n\",\n       \"         [-0.6719, -1.0660,  1.0303, -2.0076, -0.1587, -0.7049, -0.4192,\\n\",\n       \"          -1.6840, -0.0913, -0.8211],\\n\",\n       \"         [-0.0361,  1.6295, -0.2098, -0.5681,  0.6524,  0.3682, -1.0326,\\n\",\n       \"           0.8690, -0.8374, -0.7785],\\n\",\n       \"         [-1.1685, -0.4528,  0.8089, -0.6248, -1.4823,  1.7067,  0.0343,\\n\",\n       \"          -0.1233, -0.4694,  0.7405],\\n\",\n       \"         [ 1.4695, -0.7846,  1.3884,  1.2469,  0.4381, -0.4211,  1.2470,\\n\",\n       \"           1.1484, -1.1954,  1.2651]]])\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a = torch.randn(2, 5, 10)\\n\",\n    \"a\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([2, 5])\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"c = a.sum(2)\\n\",\n    \"c.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[-0.1212, -1.1875, -0.8154, -0.2603,  0.1208],\\n\",\n       \"         [-1.7234,  0.9401,  0.5191, -1.1418,  0.0485],\\n\",\n       \"         [-0.5145,  0.5186,  0.4932,  0.5364, -0.8625]],\\n\",\n       \"\\n\",\n       \"        [[-0.2743, -0.4564,  1.8824,  0.5533,  2.1877],\\n\",\n       \"         [-0.9605,  1.0729,  0.4791, -0.9585, -0.0132],\\n\",\n       \"         [-1.3529, -0.8772,  0.2921, -0.8205, -0.1080]]])\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = torch.randn([2,3,5])\\n\",\n    \"x \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[0, 0, 0, 0, 1],\\n\",\n       \"         [0, 1, 1, 0, 1],\\n\",\n       \"         [0, 1, 1, 1, 0]],\\n\",\n       \"\\n\",\n       \"        [[0, 0, 1, 1, 1],\\n\",\n       \"         [0, 1, 1, 0, 0],\\n\",\n       \"         [0, 0, 1, 0, 0]]], dtype=torch.uint8)\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"mask = (x>0)\\n\",\n    \"mask\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([0.1208, 0.9401, 0.5191, 0.0485, 0.5186, 0.4932, 0.5364, 1.8824, 0.5533,\\n\",\n       \"        2.1877, 1.0729, 0.4791, 0.2921])\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"d = x[mask]    # 压扁成一个列表\\n\",\n    \"d\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch.nn.functional as F\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"s = F.logsigmoid(d)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(-0.4262)\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"s.mean()   # 得到一个数字\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(-1.1681)\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.log(1 - torch.sigmoid(d)).mean()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## nn.Parameter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"?nn.Parameter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([10])\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"embed_dim = 10\\n\",\n    \"data = torch.randn(embed_dim)\\n\",\n    \"data.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"u = nn.Parameter(data)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Parameter containing:\\n\",\n       \"tensor([-0.6100,  0.1809,  0.7675, -0.5735,  0.1123,  0.4894, -0.8654, -1.0640,\\n\",\n       \"        -1.2618, -0.8684], requires_grad=True)\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"u\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 0.5720, -0.4873, -0.1925, -0.1972, -0.0626,  1.5768,  1.0680,\\n\",\n       \"           1.2321, -0.4564, -0.0703],\\n\",\n       \"         [ 0.5284, -0.7402,  0.4011,  0.0832, -1.9947, -0.9723,  0.9434,\\n\",\n       \"           0.4962,  0.3930,  0.5200],\\n\",\n       \"         [ 0.2165,  0.9300,  1.4055, -0.9435, -0.1495, -0.5030,  0.3633,\\n\",\n       \"           0.9413,  1.4385, -0.7606],\\n\",\n       \"         [ 0.2950,  0.9037, -0.9711,  0.0556, -1.5093, -1.8391, -0.6188,\\n\",\n       \"          -1.2471, -0.8059, -0.6884],\\n\",\n       \"         [ 1.0337, -0.6484,  2.1221,  0.9859,  2.1802, -2.2094, -0.0289,\\n\",\n       \"           0.8381,  0.3553,  0.2861],\\n\",\n       \"         [-0.1302,  1.4063,  0.4567, -1.1085,  1.9764, -0.1228,  0.9814,\\n\",\n       \"           0.9537, -0.6450,  0.7175],\\n\",\n       \"         [-0.1446, -0.1117,  0.0594, -1.7827, -0.4155, -0.0715,  0.0213,\\n\",\n       \"           0.7226,  0.6909,  1.2786],\\n\",\n       \"         [ 0.6332,  0.4564, -0.1636,  0.3665,  0.6061, -0.0314, -1.5227,\\n\",\n       \"           0.0369,  1.3917, -0.5979]],\\n\",\n       \"\\n\",\n       \"        [[-1.3836, -0.8652, -1.3644, -0.8995, -0.2949,  1.2752,  0.1303,\\n\",\n       \"          -0.1627, -0.0075,  0.5403],\\n\",\n       \"         [-0.6614,  0.1664, -1.5498,  0.5317,  0.2322, -1.9863, -1.3148,\\n\",\n       \"           1.4275,  0.2129, -0.4953],\\n\",\n       \"         [ 0.8388,  1.4253,  0.0090, -0.3771,  0.9039, -0.7850,  1.3202,\\n\",\n       \"          -0.2476, -0.6281, -0.1383],\\n\",\n       \"         [ 0.6462, -1.8107, -1.2915, -2.1775, -0.3828,  1.3362, -2.3330,\\n\",\n       \"          -0.5165, -1.5412,  0.8136],\\n\",\n       \"         [ 0.2981, -1.2633, -0.5012, -0.6578, -1.3874, -0.8003,  0.6939,\\n\",\n       \"          -0.1877, -0.8000,  0.0059],\\n\",\n       \"         [ 1.6177, -0.0819, -1.4117,  0.1513, -0.7835, -0.4023, -0.5751,\\n\",\n       \"           0.6236,  0.5185, -0.3257],\\n\",\n       \"         [-0.1068, -0.0104, -0.2874,  1.0380,  0.3855,  0.3236, -1.3724,\\n\",\n       \"           1.6858,  0.5404,  0.6867],\\n\",\n       \"         [-1.1484,  0.4463, -0.0490,  0.8154, -1.3611, -1.0358, -1.0115,\\n\",\n       \"          -1.4956, -2.3987, -0.7667]],\\n\",\n       \"\\n\",\n       \"        [[-0.7427,  0.3397,  1.4941, -0.3975,  0.6718,  1.2874,  0.5164,\\n\",\n       \"           0.7475,  1.2911, -0.7312],\\n\",\n       \"         [ 0.5112,  0.2203, -0.3803, -0.5714,  1.2393,  0.8208, -0.9187,\\n\",\n       \"          -0.0765,  0.6135, -0.7404],\\n\",\n       \"         [ 1.2199,  0.1526,  0.9363,  1.3509, -0.4017,  0.6033,  1.9226,\\n\",\n       \"           0.7188,  1.0180, -0.3175],\\n\",\n       \"         [-0.2175,  0.4603, -0.3155, -0.1717, -0.4508, -1.5037, -0.1207,\\n\",\n       \"           0.4838,  0.7382,  1.0409],\\n\",\n       \"         [-0.9812,  0.3711,  0.3704, -0.9340,  0.1421, -1.5631, -1.3793,\\n\",\n       \"          -0.6578, -1.3985, -0.4181],\\n\",\n       \"         [-0.3646, -1.0626,  0.4232,  0.9070, -2.3748,  0.1342, -0.0346,\\n\",\n       \"           0.3152,  0.8232, -1.2286],\\n\",\n       \"         [-0.4408, -0.4749, -0.8820, -0.4570,  0.7494, -0.8769, -0.9241,\\n\",\n       \"          -0.4344,  0.7485, -0.6219],\\n\",\n       \"         [ 1.4999, -0.0245, -0.8926, -0.4930, -0.1407, -1.3070,  1.9463,\\n\",\n       \"          -0.8084,  0.0198, -0.4131]],\\n\",\n       \"\\n\",\n       \"        [[ 1.6712,  0.5194,  0.8257, -1.2828, -1.3533,  0.5400,  1.3997,\\n\",\n       \"           2.2241,  0.3703,  0.0891],\\n\",\n       \"         [-0.1004,  0.3773,  2.5188,  0.2890,  0.9379,  0.7492,  0.9603,\\n\",\n       \"          -1.4914,  0.8701, -0.2691],\\n\",\n       \"         [ 0.0435, -0.1540,  0.3223, -1.1497, -0.4520,  0.3094,  0.3129,\\n\",\n       \"           0.4398, -0.1206,  0.2182],\\n\",\n       \"         [-1.1895, -3.0451,  1.2849, -0.6265, -0.7783,  1.2033, -0.3295,\\n\",\n       \"          -1.4985, -1.9538, -0.5790],\\n\",\n       \"         [-1.2533, -1.2236, -0.6427, -0.5228, -0.6071, -1.0755, -0.3622,\\n\",\n       \"          -1.4241, -1.7820,  0.3037],\\n\",\n       \"         [-1.5930, -0.3212, -1.1160, -0.5363, -1.2299, -0.6331, -0.4287,\\n\",\n       \"          -0.5349,  0.2315,  0.8747],\\n\",\n       \"         [-0.2205, -0.3187, -0.6099,  1.1537, -0.7896,  0.6231,  0.2791,\\n\",\n       \"          -1.3267, -1.3005,  0.5643],\\n\",\n       \"         [ 1.7372,  0.3188,  0.6492, -0.5857, -0.2604, -0.4235, -1.3535,\\n\",\n       \"           1.3899,  1.4772,  0.6812]]])\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"embed = torch.randn(4, 8, 10)  #[batch, seq_len, embed]\\n\",\n    \"embed\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([4, 8, 10])\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = u.repeat(embed.size(0), embed.size(1), 1)\\n\",\n    \"x.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 70,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-0.2212, -0.4839, -0.1610,  0.2061, -0.2068, -0.0250, -0.2900, -0.0944],\\n\",\n       \"        [ 0.0531, -0.2761, -0.0455,  0.3600, -0.0608, -0.4872, -0.3845,  0.6251],\\n\",\n       \"        [ 0.0520,  0.1996, -0.5176, -0.5650,  0.6570, -0.0836,  0.0536, -0.3301],\\n\",\n       \"        [-0.3879,  0.2709,  0.0507,  0.6181,  0.4528, -0.0298,  0.2379, -0.4050]],\\n\",\n       \"       grad_fn=<DivBackward0>)\"\n      ]\n     },\n     \"execution_count\": 70,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"cos = F.cosine_similarity(embed, x, dim=2)\\n\",\n    \"cos\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 77,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.1154, 0.0888, 0.1226, 0.1769, 0.1171, 0.1404, 0.1077, 0.1310],\\n\",\n       \"        [0.1270, 0.0913, 0.1150, 0.1725, 0.1133, 0.0740, 0.0820, 0.2249],\\n\",\n       \"        [0.1307, 0.1515, 0.0739, 0.0705, 0.2393, 0.1141, 0.1309, 0.0892],\\n\",\n       \"        [0.0724, 0.1398, 0.1122, 0.1979, 0.1677, 0.1035, 0.1353, 0.0711]],\\n\",\n       \"       grad_fn=<SoftmaxBackward>)\"\n      ]\n     },\n     \"execution_count\": 77,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"alpha = F.softmax(cos, dim=1)  # 每个序列一行，每每行的每个元素代表对应的单词的权重\\n\",\n    \"alpha\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 113,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor(0.0660, grad_fn=<MulBackward0>) tensor(-0.0562, grad_fn=<MulBackward0>)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"d = alpha.unsqueeze(2)\\n\",\n    \"print(embed[0][0][0]*d[0][0][0],embed[0][0][1]*d[0][0][0])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 110,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 0.0660, -0.0562, -0.0222, -0.0228, -0.0072,  0.1820,  0.1233,\\n\",\n       \"           0.1422, -0.0527, -0.0081],\\n\",\n       \"         [ 0.0469, -0.0657,  0.0356,  0.0074, -0.1770, -0.0863,  0.0837,\\n\",\n       \"           0.0440,  0.0349,  0.0462],\\n\",\n       \"         [ 0.0265,  0.1140,  0.1723, -0.1157, -0.0183, -0.0617,  0.0445,\\n\",\n       \"           0.1154,  0.1763, -0.0932],\\n\",\n       \"         [ 0.0522,  0.1599, -0.1718,  0.0098, -0.2671, -0.3254, -0.1095,\\n\",\n       \"          -0.2207, -0.1426, -0.1218],\\n\",\n       \"         [ 0.1210, -0.0759,  0.2485,  0.1154,  0.2553, -0.2587, -0.0034,\\n\",\n       \"           0.0981,  0.0416,  0.0335],\\n\",\n       \"         [-0.0183,  0.1975,  0.0641, -0.1557,  0.2776, -0.0173,  0.1378,\\n\",\n       \"           0.1339, -0.0906,  0.1008],\\n\",\n       \"         [-0.0156, -0.0120,  0.0064, -0.1921, -0.0448, -0.0077,  0.0023,\\n\",\n       \"           0.0779,  0.0744,  0.1378],\\n\",\n       \"         [ 0.0830,  0.0598, -0.0214,  0.0480,  0.0794, -0.0041, -0.1995,\\n\",\n       \"           0.0048,  0.1823, -0.0783]],\\n\",\n       \"\\n\",\n       \"        [[-0.1756, -0.1098, -0.1732, -0.1142, -0.0374,  0.1619,  0.0165,\\n\",\n       \"          -0.0207, -0.0010,  0.0686],\\n\",\n       \"         [-0.0604,  0.0152, -0.1416,  0.0486,  0.0212, -0.1814, -0.1201,\\n\",\n       \"           0.1304,  0.0194, -0.0452],\\n\",\n       \"         [ 0.0965,  0.1640,  0.0010, -0.0434,  0.1040, -0.0903,  0.1519,\\n\",\n       \"          -0.0285, -0.0723, -0.0159],\\n\",\n       \"         [ 0.1115, -0.3124, -0.2228, -0.3757, -0.0661,  0.2306, -0.4025,\\n\",\n       \"          -0.0891, -0.2659,  0.1404],\\n\",\n       \"         [ 0.0338, -0.1431, -0.0568, -0.0745, -0.1572, -0.0907,  0.0786,\\n\",\n       \"          -0.0213, -0.0906,  0.0007],\\n\",\n       \"         [ 0.1196, -0.0061, -0.1044,  0.0112, -0.0580, -0.0298, -0.0425,\\n\",\n       \"           0.0461,  0.0383, -0.0241],\\n\",\n       \"         [-0.0087, -0.0009, -0.0236,  0.0851,  0.0316,  0.0265, -0.1125,\\n\",\n       \"           0.1382,  0.0443,  0.0563],\\n\",\n       \"         [-0.2583,  0.1004, -0.0110,  0.1834, -0.3062, -0.2330, -0.2275,\\n\",\n       \"          -0.3364, -0.5395, -0.1725]],\\n\",\n       \"\\n\",\n       \"        [[-0.0970,  0.0444,  0.1952, -0.0519,  0.0878,  0.1682,  0.0675,\\n\",\n       \"           0.0977,  0.1687, -0.0955],\\n\",\n       \"         [ 0.0774,  0.0334, -0.0576, -0.0866,  0.1877,  0.1243, -0.1392,\\n\",\n       \"          -0.0116,  0.0929, -0.1121],\\n\",\n       \"         [ 0.0902,  0.0113,  0.0692,  0.0999, -0.0297,  0.0446,  0.1421,\\n\",\n       \"           0.0531,  0.0753, -0.0235],\\n\",\n       \"         [-0.0153,  0.0325, -0.0222, -0.0121, -0.0318, -0.1060, -0.0085,\\n\",\n       \"           0.0341,  0.0520,  0.0734],\\n\",\n       \"         [-0.2348,  0.0888,  0.0886, -0.2235,  0.0340, -0.3740, -0.3301,\\n\",\n       \"          -0.1574, -0.3346, -0.1000],\\n\",\n       \"         [-0.0416, -0.1212,  0.0483,  0.1035, -0.2710,  0.0153, -0.0039,\\n\",\n       \"           0.0360,  0.0939, -0.1402],\\n\",\n       \"         [-0.0577, -0.0622, -0.1154, -0.0598,  0.0981, -0.1148, -0.1209,\\n\",\n       \"          -0.0569,  0.0980, -0.0814],\\n\",\n       \"         [ 0.1338, -0.0022, -0.0796, -0.0440, -0.0125, -0.1166,  0.1736,\\n\",\n       \"          -0.0721,  0.0018, -0.0368]],\\n\",\n       \"\\n\",\n       \"        [[ 0.1209,  0.0376,  0.0598, -0.0928, -0.0979,  0.0391,  0.1013,\\n\",\n       \"           0.1609,  0.0268,  0.0064],\\n\",\n       \"         [-0.0140,  0.0528,  0.3522,  0.0404,  0.1312,  0.1048,  0.1343,\\n\",\n       \"          -0.2086,  0.1217, -0.0376],\\n\",\n       \"         [ 0.0049, -0.0173,  0.0362, -0.1290, -0.0507,  0.0347,  0.0351,\\n\",\n       \"           0.0493, -0.0135,  0.0245],\\n\",\n       \"         [-0.2354, -0.6026,  0.2543, -0.1240, -0.1540,  0.2381, -0.0652,\\n\",\n       \"          -0.2965, -0.3866, -0.1146],\\n\",\n       \"         [-0.2102, -0.2052, -0.1078, -0.0877, -0.1018, -0.1804, -0.0608,\\n\",\n       \"          -0.2389, -0.2989,  0.0509],\\n\",\n       \"         [-0.1649, -0.0332, -0.1155, -0.0555, -0.1273, -0.0655, -0.0444,\\n\",\n       \"          -0.0554,  0.0240,  0.0906],\\n\",\n       \"         [-0.0298, -0.0431, -0.0825,  0.1561, -0.1068,  0.0843,  0.0378,\\n\",\n       \"          -0.1795, -0.1760,  0.0763],\\n\",\n       \"         [ 0.1236,  0.0227,  0.0462, -0.0417, -0.0185, -0.0301, -0.0963,\\n\",\n       \"           0.0989,  0.1051,  0.0485]]], grad_fn=<MulBackward0>)\"\n      ]\n     },\n     \"execution_count\": 110,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"embed*alpha.unsqueeze(2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 90,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[ 0.3618,  0.3213,  0.3114, -0.3055,  0.0978, -0.5791,  0.0793,  0.3957,\\n\",\n       \"          0.2237,  0.0167],\\n\",\n       \"        [-0.1417, -0.2927, -0.7323, -0.2796, -0.4680, -0.2061, -0.6581, -0.1812,\\n\",\n       \"         -0.8672,  0.0082],\\n\",\n       \"        [-0.1451,  0.0247,  0.1265, -0.2745,  0.0626, -0.3589, -0.2194, -0.0770,\\n\",\n       \"          0.2479, -0.5162],\\n\",\n       \"        [-0.4050, -0.7885,  0.4427, -0.3342, -0.5260,  0.2249,  0.0418, -0.6697,\\n\",\n       \"         -0.5975,  0.1450]], grad_fn=<SumBackward2>)\"\n      ]\n     },\n     \"execution_count\": 90,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y = torch.sum(embed*alpha.unsqueeze(2), dim=1)\\n\",\n    \"y\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 91,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([4, 10])\"\n      ]\n     },\n     \"execution_count\": 91,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 92,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[ 0.3618,  0.3213,  0.3114, -0.3055,  0.0978, -0.5791,  0.0793,  0.3957,\\n\",\n       \"          0.2237,  0.0167],\\n\",\n       \"        [-0.1417, -0.2927, -0.7323, -0.2796, -0.4680, -0.2061, -0.6581, -0.1812,\\n\",\n       \"         -0.8672,  0.0082],\\n\",\n       \"        [-0.1451,  0.0247,  0.1265, -0.2745,  0.0626, -0.3589, -0.2194, -0.0770,\\n\",\n       \"          0.2479, -0.5162],\\n\",\n       \"        [-0.4050, -0.7885,  0.4427, -0.3342, -0.5260,  0.2249,  0.0418, -0.6697,\\n\",\n       \"         -0.5975,  0.1450]], grad_fn=<SqueezeBackward1>)\"\n      ]\n     },\n     \"execution_count\": 92,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y.squeeze(1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 97,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.4853],\\n\",\n       \"        [0.5154],\\n\",\n       \"        [0.4474],\\n\",\n       \"        [0.1978]], grad_fn=<AddmmBackward>)\"\n      ]\n     },\n     \"execution_count\": 97,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"fx = nn.Linear(10,1)(y)\\n\",\n    \"fx\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 101,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.6190],\\n\",\n       \"        [0.6261],\\n\",\n       \"        [0.6100],\\n\",\n       \"        [0.5493]], grad_fn=<SigmoidBackward>)\"\n      ]\n     },\n     \"execution_count\": 101,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"score = torch.sigmoid(fx) # 0-1之间的数\\n\",\n    \"score\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 106,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1.],\\n\",\n       \"        [1.],\\n\",\n       \"        [1.],\\n\",\n       \"        [1.]], grad_fn=<RoundBackward>)\"\n      ]\n     },\n     \"execution_count\": 106,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.round(score) #返回相邻最近的整数，四舍五入\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## torch.nn.functional.cosine_similarity计算方法\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor([[ 0.3437,  0.3895,  1.4366],\\n\",\n      \"        [-3.1125, -0.4749, -0.6235]]) tensor([[-0.9672,  0.4503, -0.3470],\\n\",\n      \"        [ 0.2393,  1.8958, -1.3947]])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"x1 = torch.randn(2,3)\\n\",\n    \"x2 = torch.randn(2,3)\\n\",\n    \"print(x1, x2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([-0.3825, -0.1021])\"\n      ]\n     },\n     \"execution_count\": 49,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"F.cosine_similarity(x1, x2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 64,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(-0.3825)\"\n      ]\n     },\n     \"execution_count\": 64,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# cosine_similarity的计算公式\\n\",\n    \"sum(x1[0]*x2[0]) / (torch.norm(x1[0])*torch.norm(x2[0])+1e-8)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 截断函数\\n\",\n    \"----\\n\",\n    \"- torch.ceil(input, out=None)   #返回向正方向取得最小整数\\n\",\n    \"- torch.floor(input, out=None)  #返回向负方向取得最大整数\\n\",\n    \"\\n\",\n    \"- torch.round(input, out=None)  #返回相邻最近的整数，四舍五入\\n\",\n    \"\\n\",\n    \"- torch.trunc(input, out=None)  #返回整数部分数值\\n\",\n    \"- torch.frac(tensor, out=None)  #返回小数部分数值\\n\",\n    \"\\n\",\n    \"- torch.fmod(input, divisor, out=None)  #返回input/divisor的余数\\n\",\n    \"- torch.remainder(input, divisor, out=None)  #同上\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## torch.matmul\\n\",\n    \"- mm只能进行矩阵乘法,也就是输入的两个tensor维度只能是(n×m)(n\\\\times m)(n×m)和(m×p)(m\\\\times p)(m×p)\\n\",\n    \"- bmm是两个三维张量相乘, 两个tensor维度是(b×n×m)和(b×m×p)得到 (b×n×p), 第一维b代表batch_size。\\n\",\n    \"- matmul可以进行张量乘法, 输入可以是高维。\\n\",\n    \"\\n\",\n    \"- scores = torch.matmul(x, x.transpose(-2, -1)) / math.sqrt(d_k)\\n\",\n    \"\\n\",\n    \"- [torch.transpose](https://pytorch.org/docs/stable/torch.html#torch.transpose) # tonser的转置\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 0.0608, -0.1447, -0.3057,  0.9118, -0.3778,  1.2587, -1.7109,\\n\",\n       \"          -1.0704,  0.4352, -2.0029],\\n\",\n       \"         [ 0.9735,  1.0512, -1.4398, -0.6600,  0.3955,  0.3646,  0.0474,\\n\",\n       \"          -1.5265,  0.0718,  0.4676],\\n\",\n       \"         [-0.5715, -1.2914,  0.1073, -0.3753,  0.5765, -0.9402, -1.1904,\\n\",\n       \"           0.5456,  0.1140, -0.1685],\\n\",\n       \"         [ 0.4498,  0.7682,  0.2298,  0.6669, -1.0050,  1.4804,  0.5312,\\n\",\n       \"           1.0791, -0.7552, -0.3538],\\n\",\n       \"         [-0.8476, -0.7348, -0.9190,  0.1542,  0.4850, -0.5129,  3.2134,\\n\",\n       \"           1.1763,  0.1987,  1.1999]],\\n\",\n       \"\\n\",\n       \"        [[ 1.1443,  0.6204,  0.6688, -0.7729,  0.1621,  0.0467,  0.8106,\\n\",\n       \"           1.8824, -0.2517,  1.4625],\\n\",\n       \"         [ 0.7914,  0.0971,  0.2454,  0.2563,  1.5868, -0.2585, -0.5065,\\n\",\n       \"          -1.3138, -0.2943,  0.3584],\\n\",\n       \"         [ 1.2666,  0.3284,  1.6281,  0.7337, -1.0108,  0.1650, -0.0435,\\n\",\n       \"           0.9840, -0.8043,  0.7147],\\n\",\n       \"         [-1.0370,  0.2351, -1.2820,  0.9013,  1.2597, -1.7748, -2.1565,\\n\",\n       \"           0.6012,  2.0741, -0.4460],\\n\",\n       \"         [ 1.0765, -0.1866, -1.2976, -0.2885,  0.0313, -0.0154,  1.1737,\\n\",\n       \"          -1.2480,  1.9115,  1.0470]]])\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x1 = torch.randn(2, 5, 10)\\n\",\n    \"x1\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 0.0608,  0.9735, -0.5715,  0.4498, -0.8476],\\n\",\n       \"         [-0.1447,  1.0512, -1.2914,  0.7682, -0.7348],\\n\",\n       \"         [-0.3057, -1.4398,  0.1073,  0.2298, -0.9190],\\n\",\n       \"         [ 0.9118, -0.6600, -0.3753,  0.6669,  0.1542],\\n\",\n       \"         [-0.3778,  0.3955,  0.5765, -1.0050,  0.4850],\\n\",\n       \"         [ 1.2587,  0.3646, -0.9402,  1.4804, -0.5129],\\n\",\n       \"         [-1.7109,  0.0474, -1.1904,  0.5312,  3.2134],\\n\",\n       \"         [-1.0704, -1.5265,  0.5456,  1.0791,  1.1763],\\n\",\n       \"         [ 0.4352,  0.0718,  0.1140, -0.7552,  0.1987],\\n\",\n       \"         [-2.0029,  0.4676, -0.1685, -0.3538,  1.1999]],\\n\",\n       \"\\n\",\n       \"        [[ 1.1443,  0.7914,  1.2666, -1.0370,  1.0765],\\n\",\n       \"         [ 0.6204,  0.0971,  0.3284,  0.2351, -0.1866],\\n\",\n       \"         [ 0.6688,  0.2454,  1.6281, -1.2820, -1.2976],\\n\",\n       \"         [-0.7729,  0.2563,  0.7337,  0.9013, -0.2885],\\n\",\n       \"         [ 0.1621,  1.5868, -1.0108,  1.2597,  0.0313],\\n\",\n       \"         [ 0.0467, -0.2585,  0.1650, -1.7748, -0.0154],\\n\",\n       \"         [ 0.8106, -0.5065, -0.0435, -2.1565,  1.1737],\\n\",\n       \"         [ 1.8824, -1.3138,  0.9840,  0.6012, -1.2480],\\n\",\n       \"         [-0.2517, -0.2943, -0.8043,  2.0741,  1.9115],\\n\",\n       \"         [ 1.4625,  0.3584,  0.7147, -0.4460,  1.0470]]])\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x2 = x1.transpose(-2, -1)\\n\",\n    \"x2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[10.9509,  0.7026,  0.2158,  1.0130, -9.4263],\\n\",\n       \"         [ 0.7026,  7.4071, -2.8955, -1.2250, -1.4394],\\n\",\n       \"         [ 0.2158, -2.8955,  5.1194, -3.5163, -1.3244],\\n\",\n       \"         [ 1.0130, -1.2250, -3.5163,  6.6340,  0.1013],\\n\",\n       \"         [-9.4263, -1.4394, -1.3244,  0.1013, 15.8137]],\\n\",\n       \"\\n\",\n       \"        [[ 9.1703, -1.1083,  5.0835, -4.2642,  0.1277],\\n\",\n       \"         [-1.1083,  5.5442, -0.8025,  1.1083,  1.3530],\\n\",\n       \"         [ 5.0835, -0.8025,  8.0778, -5.5296, -3.1245],\\n\",\n       \"         [-4.2642,  1.1083, -5.5296, 17.8355,  0.5264],\\n\",\n       \"         [ 0.1277,  1.3530, -3.1245,  0.5264, 10.6467]]])\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y = torch.matmul(x1, x2) #2, 5,10 * 2, 10, 5\\n\",\n    \"y\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([2, 5, 5])\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 5.4754,  0.3513,  0.1079,  0.5065, -4.7131],\\n\",\n       \"         [ 0.3513,  3.7035, -1.4478, -0.6125, -0.7197],\\n\",\n       \"         [ 0.1079, -1.4478,  2.5597, -1.7581, -0.6622],\\n\",\n       \"         [ 0.5065, -0.6125, -1.7581,  3.3170,  0.0506],\\n\",\n       \"         [-4.7131, -0.7197, -0.6622,  0.0506,  7.9068]],\\n\",\n       \"\\n\",\n       \"        [[ 4.5851, -0.5541,  2.5418, -2.1321,  0.0639],\\n\",\n       \"         [-0.5541,  2.7721, -0.4012,  0.5542,  0.6765],\\n\",\n       \"         [ 2.5418, -0.4012,  4.0389, -2.7648, -1.5622],\\n\",\n       \"         [-2.1321,  0.5542, -2.7648,  8.9177,  0.2632],\\n\",\n       \"         [ 0.0639,  0.6765, -1.5622,  0.2632,  5.3234]]])\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y / 2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"a = '微信 是否 会 收费 ？ 近日 工信部 和 腾讯 公司 的 不同 回应 让 微信 的 未来 显得 扑朔迷离 。 随着 3G 网络 的 普及 ， 许多 国家 和 地区 都 有 像 “ 微信 ” 这样 能够 实现 即时通讯 、 通话 的 手机 应用 。 “ 微信 ” 在 国外 什么样 ？ 它们 收费 吗 ？ 一张 图带 你 了解 海外 “ 微信 ” 。 ____ ____ '  \\n\",\n    \"b = '“ 微信 ” 在 海外'\\n\",\n    \"c = '[ 话筒 ] “ 微信 ” 在 国外 什么样 ？ 它们 收费 吗 ？ [ 话筒 ] [ 思考 ] [ 吃惊 ] [ 吃惊 ]'\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------------------------------------\\n\",\n      \"原   文:  \\u001b[01;34m 微信 是否 会 收费 ？ 近日 工信部 和 腾讯 公司 的 不同 回应 让 微信 的 未来 显得 扑朔迷离 。 随着 3G 网络 的 普及 ， 许多 国家 和 地区 都 有 像 “ 微信 ” 这样 能够 实现 即时通讯 、 通话 的 手机 应用 。 “ 微信 ” 在 国外 什么样 ？ 它们 收费 吗 ？ 一张 图带 你 了解 海外 “ 微信 ” 。 ____ ____  \\u001b[0m\\n\",\n      \"\\n\",\n      \"参考摘要: \\u001b[01;35m “ 微信 ” 在 海外 \\u001b[0m\\n\",\n      \"\\n\",\n      \"生成摘要: \\u001b[01;36m [ 话筒 ] “ 微信 ” 在 国外 什么样 ？ 它们 收费 吗 ？ [ 话筒 ] [ 思考 ] [ 吃惊 ] [ 吃惊 ] \\u001b[0m\\n\",\n      \"\\n\",\n      \"--------------------------------------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('-' * 110)\\n\",\n    \"print('{}  \\\\033[01;34m {} \\\\033[0m\\\\n'.format('原   文:', a))\\n\",\n    \"print('{} \\\\033[01;35m {} \\\\033[0m\\\\n'.format('参考摘要:', b))\\n\",\n    \"print('{} \\\\033[01;36m {} \\\\033[0m\\\\n'.format('生成摘要:', c))\\n\",\n    \"print('-' * 110)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"\\n\",\n    \"a = '日前 ， 教育部 公布 2012 年度 普通 高等学校 本科专业 设置 备案 或 审批 结果 。 全国 高校 258 个 专业 未 通过 审批 ， 且 很多 是 当下 热门 专业 ， 如 法学 、 会计 、 工商管理 等 ， 有些 专业 已经 被 列入 教育部 的 预警 专业 。 教育界 人士 分析 ， 人才 市场 的 需求 已 开始 出现 “ 供大于求 ” 现象 。'  \\n\",\n    \"b = '258 个 专业 被 否决 !!____!! !!____!! 部分 热门 专业 遭 “ 预警 ”'\\n\",\n    \"c = '教育部 ： 全国 高校 258 个 专业 未 通过 审批 ， 且 很多 是 当下 热门 专业 ， 如 法学 、 会计 、 工商管理 等 专业 已经 审批 结果'\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"--------------------------------------------------------------------------------------------------------------\\n\",\n      \"原   文:  \\u001b[01;34m 日前 ， 教育部 公布 2012 年度 普通 高等学校 本科专业 设置 备案 或 审批 结果 。 全国 高校 258 个 专业 未 通过 审批 ， 且 很多 是 当下 热门 专业 ， 如 法学 、 会计 、 工商管理 等 ， 有些 专业 已经 被 列入 教育部 的 预警 专业 。 教育界 人士 分析 ， 人才 市场 的 需求 已 开始 出现 “ 供大于求 ” 现象 。 \\u001b[0m\\n\",\n      \"\\n\",\n      \"参考摘要: \\u001b[01;35m 258 个 专业 被 否决 !!____!! !!____!! 部分 热门 专业 遭 “ 预警 ” \\u001b[0m\\n\",\n      \"\\n\",\n      \"生成摘要: \\u001b[01;36m 教育部 ： 全国 高校 258 个 专业 未 通过 审批 ， 且 很多 是 当下 热门 专业 ， 如 法学 、 会计 、 工商管理 等 专业 已经 审批 结果 \\u001b[0m\\n\",\n      \"\\n\",\n      \"--------------------------------------------------------------------------------------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('-' * 110)\\n\",\n    \"print('{}  \\\\033[01;34m {} \\\\033[0m\\\\n'.format('原   文:', a))\\n\",\n    \"print('{} \\\\033[01;35m {} \\\\033[0m\\\\n'.format('参考摘要:', b))\\n\",\n    \"print('{} \\\\033[01;36m {} \\\\033[0m\\\\n'.format('生成摘要:', c))\\n\",\n    \"print('-' * 110)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/struct_tf.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## tf.example\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import glob\\n\",\n    \"import random\\n\",\n    \"import struct\\n\",\n    \"import csv\\n\",\n    \"from tensorflow.core.example import example_pb2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_bin_files = \\\"../P007PytorchPointerGeneratorNetwork/cnn-dailymail/finished_files/chunked/train_*\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"filelists = glob.glob(train_bin_files)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'../P007PytorchPointerGeneratorNetwork/cnn-dailymail/finished_files/chunked/train_000.bin'\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"filelists[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"len_bytes: b'\\\\xd9\\\\x11\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00'\\n\",\n      \"str_len: 4569\\n\",\n      \"example_str: b\\\"\\\\n\\\\xd6#\\\\n\\\\xdf\\\\x02\\\\n\\\\x08abstract\\\\x12\\\\xd2\\\\x02\\\\n\\\\xcf\\\\x02\\\\n\\\\xcc\\\\x02<s> mentally ill inmates in miami are housed on the `` forgotten floor '' </s> <s> judge steven leifman says most are there as a result of `` avoidable felonies '' </s> <s> while cnn tours facility , patient shouts : `` i am the son of the president '' </s> <s> leifman says the system is unjust and he 's fighting for change . </s>\\\\n\\\\xf1 \\\\n\\\\x07article\\\\x12\\\\xe5 \\\\n\\\\xe2 \\\\n\\\\xdf editor 's note : in our behind the scenes series , cnn correspondents share their experiences in covering news and analyze the stories behind the events . here , soledad o'brien takes users inside a jail where many of the inmates are mentally ill . an inmate housed on the `` forgotten floor , '' where many mentally ill inmates are housed in miami before trial . miami , florida -lrb- cnn -rrb- -- the ninth floor of the miami-dade pretrial detention facility is dubbed the `` forgotten floor . '' here , inmates with the most severe mental illnesses are incarcerated until they 're ready to appear in court . most often , they face drug charges or charges of assaulting an officer -- charges that judge steven leifman says are usually `` avoidable felonies . '' he says the arrests often result from confrontations with police . mentally ill people often wo n't do what they 're told when police arrive on the scene -- confrontation seems to exacerbate their illness and they become more paranoid , delusional , and less likely to follow directions , according to leifman . so , they end up on the ninth floor severely mentally disturbed , but not getting any real help because they 're in jail . we toured the jail with leifman . he is well known in miami as an advocate for justice and the mentally ill . even though we were not exactly welcomed with open arms by the guards , we were given permission to shoot videotape and tour the floor . go inside the ` forgotten floor ' '' at first , it 's hard to determine where the people are . the prisoners are wearing sleeveless robes . imagine cutting holes for arms and feet in a heavy wool sleeping bag -- that 's kind of what they look like . they 're designed to keep the mentally ill patients from injuring themselves . that 's also why they have no shoes , laces or mattresses . leifman says about one-third of all people in miami-dade county jails are mentally ill . so , he says , the sheer volume is overwhelming the system , and the result is what we see on the ninth floor . of course , it is a jail , so it 's not supposed to be warm and comforting , but the lights glare , the cells are tiny and it 's loud . we see two , sometimes three men -- sometimes in the robes , sometimes naked , lying or sitting in their cells . `` i am the son of the president . you need to get me out of here ! '' one man shouts at me . he is absolutely serious , convinced that help is on the way -- if only he could reach the white house . leifman tells me that these prisoner-patients will often circulate through the system , occasionally stabilizing in a mental hospital , only to return to jail to face their charges . it 's brutally unjust , in his mind , and he has become a strong advocate for changing things in miami . over a meal later , we talk about how things got this way for mental patients . leifman says 200 years ago people were considered `` lunatics '' and they were locked up in jails even if they had no charges against them . they were just considered unfit to be in society . over the years , he says , there was some public outcry , and the mentally ill were moved out of jails and into hospitals . but leifman says many of these mental hospitals were so horrible they were shut down . where did the patients go ? nowhere . the streets . they became , in many cases , the homeless , he says . they never got treatment . leifman says in 1955 there were more than half a million people in state mental hospitals , and today that number has been reduced 90 percent , and 40,000 to 50,000 people are in mental hospitals . the judge says he 's working to change this . starting in 2008 , many inmates who would otherwise have been brought to the `` forgotten floor '' will instead be sent to a new mental health facility -- the first step on a journey toward long-term treatment , not just punishment . leifman says it 's not the complete answer , but it 's a start . leifman says the best part is that it 's a win-win solution . the patients win , the families are relieved , and the state saves money by simply not cycling these prisoners through again and again . and , for leifman , justice is served . e-mail to a friend .\\\"\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"f = filelists[0]\\n\",\n    \"reader = open(f, 'rb')\\n\",\n    \"while True:\\n\",\n    \"    len_bytes = reader.read(8)\\n\",\n    \"    print(\\\"len_bytes:\\\", len_bytes)\\n\",\n    \"    if not len_bytes:\\n\",\n    \"        break # finished reading this file\\n\",\n    \"    str_len = struct.unpack('q', len_bytes)[0]\\n\",\n    \"    print(\\\"str_len:\\\", str_len)\\n\",\n    \"    example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0]\\n\",\n    \"    print(\\\"example_str:\\\", example_str)\\n\",\n    \"    break\\n\",\n    \"    #yield example_pb2.Example.FromString(example_str)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# example_str = b\\\"I love you\\\"\\n\",\n    \"example = example_pb2.Example.FromString(example_str)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"features {\\n\",\n       \"  feature {\\n\",\n       \"    key: \\\"abstract\\\"\\n\",\n       \"    value {\\n\",\n       \"      bytes_list {\\n\",\n       \"        value: \\\"<s> mentally ill inmates in miami are housed on the `` forgotten floor \\\\'\\\\' </s> <s> judge steven leifman says most are there as a result of `` avoidable felonies \\\\'\\\\' </s> <s> while cnn tours facility , patient shouts : `` i am the son of the president \\\\'\\\\' </s> <s> leifman says the system is unjust and he \\\\'s fighting for change . </s>\\\"\\n\",\n       \"      }\\n\",\n       \"    }\\n\",\n       \"  }\\n\",\n       \"  feature {\\n\",\n       \"    key: \\\"article\\\"\\n\",\n       \"    value {\\n\",\n       \"      bytes_list {\\n\",\n       \"        value: \\\"editor \\\\'s note : in our behind the scenes series , cnn correspondents share their experiences in covering news and analyze the stories behind the events . here , soledad o\\\\'brien takes users inside a jail where many of the inmates are mentally ill . an inmate housed on the `` forgotten floor , \\\\'\\\\' where many mentally ill inmates are housed in miami before trial . miami , florida -lrb- cnn -rrb- -- the ninth floor of the miami-dade pretrial detention facility is dubbed the `` forgotten floor . \\\\'\\\\' here , inmates with the most severe mental illnesses are incarcerated until they \\\\'re ready to appear in court . most often , they face drug charges or charges of assaulting an officer -- charges that judge steven leifman says are usually `` avoidable felonies . \\\\'\\\\' he says the arrests often result from confrontations with police . mentally ill people often wo n\\\\'t do what they \\\\'re told when police arrive on the scene -- confrontation seems to exacerbate their illness and they become more paranoid , delusional , and less likely to follow directions , according to leifman . so , they end up on the ninth floor severely mentally disturbed , but not getting any real help because they \\\\'re in jail . we toured the jail with leifman . he is well known in miami as an advocate for justice and the mentally ill . even though we were not exactly welcomed with open arms by the guards , we were given permission to shoot videotape and tour the floor . go inside the ` forgotten floor \\\\' \\\\'\\\\' at first , it \\\\'s hard to determine where the people are . the prisoners are wearing sleeveless robes . imagine cutting holes for arms and feet in a heavy wool sleeping bag -- that \\\\'s kind of what they look like . they \\\\'re designed to keep the mentally ill patients from injuring themselves . that \\\\'s also why they have no shoes , laces or mattresses . leifman says about one-third of all people in miami-dade county jails are mentally ill . so , he says , the sheer volume is overwhelming the system , and the result is what we see on the ninth floor . of course , it is a jail , so it \\\\'s not supposed to be warm and comforting , but the lights glare , the cells are tiny and it \\\\'s loud . we see two , sometimes three men -- sometimes in the robes , sometimes naked , lying or sitting in their cells . `` i am the son of the president . you need to get me out of here ! \\\\'\\\\' one man shouts at me . he is absolutely serious , convinced that help is on the way -- if only he could reach the white house . leifman tells me that these prisoner-patients will often circulate through the system , occasionally stabilizing in a mental hospital , only to return to jail to face their charges . it \\\\'s brutally unjust , in his mind , and he has become a strong advocate for changing things in miami . over a meal later , we talk about how things got this way for mental patients . leifman says 200 years ago people were considered `` lunatics \\\\'\\\\' and they were locked up in jails even if they had no charges against them . they were just considered unfit to be in society . over the years , he says , there was some public outcry , and the mentally ill were moved out of jails and into hospitals . but leifman says many of these mental hospitals were so horrible they were shut down . where did the patients go ? nowhere . the streets . they became , in many cases , the homeless , he says . they never got treatment . leifman says in 1955 there were more than half a million people in state mental hospitals , and today that number has been reduced 90 percent , and 40,000 to 50,000 people are in mental hospitals . the judge says he \\\\'s working to change this . starting in 2008 , many inmates who would otherwise have been brought to the `` forgotten floor \\\\'\\\\' will instead be sent to a new mental health facility -- the first step on a journey toward long-term treatment , not just punishment . leifman says it \\\\'s not the complete answer , but it \\\\'s a start . leifman says the best part is that it \\\\'s a win-win solution . the patients win , the families are relieved , and the state saves money by simply not cycling these prisoners through again and again . and , for leifman , justice is served . e-mail to a friend .\\\"\\n\",\n       \"      }\\n\",\n       \"    }\\n\",\n       \"  }\\n\",\n       \"}\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"example\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"’\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(u'\\\\u2019')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"”\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(u'\\\\u201d')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"b'\\\\x08\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00'\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"st = \\\"I love NLP\\\"\\n\",\n    \"struct.pack('q', 8)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P000CheatSheet/torch_gather.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[2],\\n\",\n       \"        [3],\\n\",\n       \"        [4]])\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"b = torch.tensor([2,3,4])\\n\",\n    \"b.size()\\n\",\n    \"b.unsqueeze(1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([3, 5])\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a = torch.tensor([[0.1,0.1,0.3,0.2,0.3],\\n\",\n    \"                  [0.4,0.4,0.1,0.05,0.05],\\n\",\n    \"                  [0.1,0.1,0.1,0.2,0.5]])\\n\",\n    \"a.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.3000],\\n\",\n       \"        [0.0500],\\n\",\n       \"        [0.5000]])\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"c = torch.gather(a, 1, b.unsqueeze(1))\\n\",\n    \"c\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-1.2040],\\n\",\n       \"        [-2.9957],\\n\",\n       \"        [-0.6931]])\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.log(c)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import math\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"-0.6931471805599453\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"math.log(0.5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 如何计算多分类的交叉熵损失？\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"y_true = ['1', '4', '5'] # 样本的真实标签\\n\",\n    \"\\n\",\n    \"y_pred = [\\n\",\n    \"    [0.1, 0.6, 0.3, 0, 0, 0, 0, 0, 0, 0],\\n\",\n    \"    [0, 0.3, 0.2, 0, 0.5, 0, 0, 0, 0, 0],\\n\",\n    \"    [0.6, 0.3, 0, 0, 0, 0.1, 0, 0, 0, 0]\\n\",\n    \"]            \\n\",\n    \"# 样本的预测概率\\n\",\n    \"labels = ['0','1','2','3','4','5','6','7','8','9'] # 所有标签\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.metrics import log_loss\\n\",\n    \"from sklearn.preprocessing import LabelBinarizer\\n\",\n    \"from math import log\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Loss by sklearn is:1.1688526324400008.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 利用sklearn中的log_loss()函数计算交叉熵\\n\",\n    \"sk_log_loss = log_loss(y_true, y_pred, labels=labels)\\n\",\n    \"print(\\\"Loss by sklearn is:%s.\\\" %sk_log_loss)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[[0 1 0 0 0 0 0 0 0 0]\\n\",\n      \" [0 0 0 0 1 0 0 0 0 0]\\n\",\n      \" [0 0 0 0 0 1 0 0 0 0]]\\n\",\n      \"0\\n\",\n      \"0.1\\n\",\n      \"---\\n\",\n      \"1\\n\",\n      \"0.6\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"0.3\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"0.3\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"0.2\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"1\\n\",\n      \"0.5\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"0.6\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"0.3\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"1\\n\",\n      \"0.1\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"0\\n\",\n      \"1e-15\\n\",\n      \"---\\n\",\n      \"Loss by equation is:1.1688526324399937.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 对样本的真实标签进行标签二值化\\n\",\n    \"lb = LabelBinarizer()\\n\",\n    \"lb.fit(labels)\\n\",\n    \"transformed_labels = lb.transform(y_true)\\n\",\n    \"print(transformed_labels)\\n\",\n    \"\\n\",\n    \"N = len(y_true)  # 样本个数\\n\",\n    \"K = len(labels)  # 标签个数\\n\",\n    \"\\n\",\n    \"eps = 1e-15      # 预测概率的控制值\\n\",\n    \"Loss = 0         # 损失值初始化\\n\",\n    \"\\n\",\n    \"for i in range(N):\\n\",\n    \"    for k in range(K):\\n\",\n    \"        # 控制预测概率在[eps, 1-eps]内，避免求对数时出现问题\\n\",\n    \"        if y_pred[i][k] < eps:\\n\",\n    \"            y_pred[i][k] = eps\\n\",\n    \"        if y_pred[i][k] > 1-eps:\\n\",\n    \"            y_pred[i][k] = 1-eps\\n\",\n    \"        # 多分类问题的交叉熵计算公式\\n\",\n    \"        print(transformed_labels[i][k])\\n\",\n    \"        \\n\",\n    \"        print(y_pred[i][k])\\n\",\n    \"        print(\\\"---\\\")\\n\",\n    \"        Loss -= transformed_labels[i][k]*log(y_pred[i][k])\\n\",\n    \"\\n\",\n    \"Loss /= N\\n\",\n    \"print(\\\"Loss by equation is:%s.\\\" % Loss)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"d = torch.gather(torch.tensor(y_pred), 1, torch.tensor([int(i) for i in y_true], dtype=torch.long).unsqueeze(1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.5108],\\n\",\n       \"        [0.6931],\\n\",\n       \"        [2.3026]])\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"-torch.log(d)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"3.5065\"\n      ]\n     },\n     \"execution_count\": 29,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"2.3026+0.5108+0.6931\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/ClassList.txt",
    "content": "C000008\t财经\r\nC000010\tIT\r\nC000013\t健康\r\nC000014\t体育\r\nC000016\t旅游\r\nC000020\t教育\r\nC000022\t招聘\r\nC000023\t文化\r\nC000024\t军事\r\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/10.txt",
    "content": "　　本报记者陈雪频实习记者唐翔发自上海\r\n　　一家刚刚成立两年的网络支付公司，它的目标是成为市值100亿美元的上市公司。\r\n　　这家公司叫做快钱，说这句话的是快钱的CEO关国光。他之前曾任网易的高级副总裁，负责过网易的上市工作。对于为什么选择第三方支付作为创业方向，他曾经对媒体这样说：“我能看到这个胡同对面是什么，别人只能看到这个胡同。”自信与狂妄只有一步之遥——这几乎是所有创业者的共同特征，是自信还是狂妄也许需要留待时间来考证。\r\n　　对于市值100亿美元的上市公司，他是这样算这笔账的，“百度上市时广告客户数量只有4万,而且它所做的只是把客户吸引过来，就可以支撑起现有的庞大市值；而我们几年后的客户数量是几千万，而且这些客户都是能直接带来利润的，说市值100亿美元一点都不夸张。”\r\n　　这家公司2005年年底注册用户达到400万，计划今年注册用户突破1000万，号称是国内最大的第三方网络支付平台。“在美国跟支付相关的收入已经超过了所有商业银行本身利差收入的总和，我所查到的数据是3000亿美元，其中超过70％是个人消费者带来的收入。”关国光喜欢借用美国支付产业的现状与中国的情况进行比较。虽然美国和中国差异显著，但他坚信中国的第三方支付市场前景非常广阔。\r\n　　便利和安全挑战网络支付\r\n　　“你只需要一个手机号码或者一个邮件地址就可以网络支付。”在快钱的户外广告中这样写道，这和传统的需要银行账户才能进行网络支付的习惯形成了鲜明的对比。\r\n　　然而这种支付模式和传统的网络支付并无本质的区别，因为每一个手机号码和邮件地址背后都会对应着一个账户——这个账户可以是信用卡账户、借记卡账户，也包括邮局汇款、手机代收、电话代收、预付费卡和点卡等多种形式。\r\n　　“快钱的功能其实就相当于融合了很多交易工具的VISA卡，所以又被称为网络VISA。”关国光说，“从本质上讲，我们和VISA等采用的底层技术是没有差别的，我们和它的区别在于VISA卡面对的交易工具比较单一，而快钱面对的是多种分散的交易工具。”\r\n　　因为“信用缺位”，网络支付一直是困扰中国电子商务发展的瓶颈之一。网络支付平台相当于“信用缺位”条件下的“补位产物”，它把众多的银行卡整合到一个页面端口，以支付公司作为信用中介，在买家确认收到商品前，代替买卖双方暂时保管货款。\r\n　　目前最知名的网络支付平台包括阿里巴巴的支付宝和eBay的Paypal（贝宝）。关国光表示，快钱最大的特点是第三方的支付平台，主要客户为那些中小公司。这些网络支付平台的主要业务是针对母公司的，不太可能被其母公司同行使用。\r\n　　“而用户可以选择使用从银行卡、邮政汇款到点卡、预付费卡的各种支付方式，快钱平台对人口和支付工具的覆盖都非常广泛，这是我们创新的地方。”关国光告诉《第一财经日报》。\r\n　　交易的安全性是网上支付平台最大的问题。关国光说：“快钱采用了各种机制来保证用户资金的安全性，例如回款机制等，可以在用户付款过程由于各种意外因素中止或未完成时，系统将用户账户自动回复到交易开始时的原始状态。”除此之外，快钱也建立了一系列监控机制，有问题的交易系统会被强制暂停两天以供审查。内部财务方面则遵守相互监督的原则，不会让任何一个人参与主导交易全程。在交易的识别方面，快钱有一套交易过滤引擎，可以识别出较明显的问题交易行为。\r\n　　增值服务：网络支付的撒手锏\r\n　　在关国光看来，快钱平台可以提供详细的用户行为记录，进而方便商户掌握用户的喜好和需要。这种增值服务对于支付平台至关重要。\r\n　　在市场推广方面，快钱公司市场推广的目标就是让用户知道快钱这个品牌，然后将精力集中在核心应用上。“快钱的策略就是同主流应用相捆绑，致力同大厂商合作，因为目前大型门户所掌握的用户资源是相当多的。”\r\n　　“我们不必去强迫用户使用快钱，因为网络支付只是交易过程中的一个附加品，单推一个支付平台是没有效果的。”关国光表示，“快钱的策略就是要找准交易，捆绑和依托在上面，用户在进行电子交易时，自然而然就会用到我们的支付平台。”\r\n　　除此之外，快钱的策略是先稳定一批活跃用户后，再将目光放到普通用户上。关国光把快钱的营销模式称为非线型营销，“一个注册用户在支付交易中往往会带入一个未注册用户，用户之间的互动会形成网络效应。”\r\n　　从创业开始，快钱的商业模式就没有变化过。“快钱的后端绝不做应用。”关国光信誓旦旦地表示。他认为一旦快钱做了应用，将面临更多的竞争对手，同时也违背了自己独立的第三方支付平台的市场定位。\r\n　　快钱未来的梦想是：首先，将所有的支付工具整合为一个接口，随着流量的增加，给商户带来的价值是一样的，但成本更低。其次，快钱拥有用户的详细数据资料，可以实现数据库营销，为客户提供增值服务，例如支持客户的促销、推广等，或者为客户创造商业机会。\r\n　　2005年8月，快钱公司获得美国DCM和半岛基金的首批风险投资，第二轮目前还在评估之中。关国光表示，对快钱来说，融资是一件水到渠成的事情，是最后考虑的问题。快钱挑选风投的条件只有两个，一是必须在中国有过投资；二是在中国的投资必须取得过成功。\r\n　　“电子支付行业是一个入行容易、生存难的行业，”关国光说，“任何企业要在这个领域取得成功，就必须脚踏实地地认真去做，绝不能抱着投机的心理。”"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/11.txt",
    "content": "　　焦点个股：苏宁电器（002024），该股早市涨停开盘，其后虽在获利盘的抛压下略有回落但在强大买盘的推动下该股已经再次封于涨停，可见主力资金积极拉升的意愿相当强烈。\r\n　　盘面解析：1.技术层面上，早市指数小幅探低后迅速回升，在中石化强势上扬的带动下指数已经成功翻红，多头实力之强令人瞠目结舌。不过在市场高度繁荣的情形下投资者也需谨慎操作，必竟持续的上攻已经消耗了大量的多头动能。\r\n　　2.盘中热点来看，相比周二略有退温。但依然可以看到目前热点效应向外扩散的迹象相当明显。高度活跌的板块已经从前期的有色金属、金融地产股向外扩大至军工概念、航天航空等。\r\n　　操作思路：短线依然需规避一下技术性回调风险，盘中切记不可追高。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/12.txt",
    "content": "　　智威汤逊全球CEO：大众传媒依然是品牌传播的好选择\r\n　　本报记者康健发自上海\r\n　　“想让品牌更快、更广地进入消费者，大众传媒仍然是很好的选择。”智威汤逊全球CEO Michael Maedel近日在上海的办公室告诉《第一财经(相关:理财 证券)日报》。他对有些人“电视、平面媒体失去意义”的观点不以为然。\r\n　　智威汤逊是美国最大的广告公司之一，与奥美广告一起隶属于WPP集团，3月底刚刚收购了中国本土的上海奥维思市场营销服务公司。\r\n　　大众媒体和互动媒体对半\r\n　　针对新的媒体方式日益涌现，企业广告主投放广告越来越无所适从的情景，Michael认为，广告主应该进行定性定量的分析，使任何投放都有清晰的出发点：消费者。要让媒介触及消费者，使他们更愿意来倾听公司。\r\n　　当然，在媒介越来越多的情形下，意味着传播方式的变化。过去主流的是大众传播，现在互动性和定制性带来了新的挑战——如何让品牌与消费者更加互动。\r\n　　智威汤逊东北亚区域总监兼大中国区CEO唐锐涛则认为，中国面临两个挑战：品牌主张明确化和如何深化与消费者的关系。\r\n　　他认为，大众品牌并未失去其价值，借助大众媒体可以清楚地传达品牌的真实含义。而在此基础上，还需要更新的形式使产品和消费者的关系进一步深化。通过互动媒体，可以将以往被动的关系变成主动对话的消费者关系。\r\n　　唐锐涛的经验法则是，在进行投放的时候，大众媒体和新媒体“对半开”，前者致力于建立品牌，后者用于深化与消费者关系。\r\n　　同时，产品根据消费者参与的程度也分为高消费者参与度产品和低消费者参与度产品。使用媒介取决于产品本身的复杂度。如饼干等不假思索就购买的产品，大众媒体作用比较大。汽车等奢侈品需要增加对话和互动，让消费者深入这个品牌。\r\n　　全球品牌，本土特色\r\n　　Michael特别强调品牌的全球定位和本地表述。他提到，即便广告主是洗衣机，在各个市场，洗衣机的价格跟消费者的工资比例不一样，有些市场用2天的工资就可以买一台，而有些市场，消费者需要用自己三个月的工资才能购买到。这样的情况下，消费者的参与度就完全不一样了。那些用三个月工资才能买得起洗衣机的人会花更多时间去了解产品的性能是否耐用，这跟成熟市场完全不同。\r\n　　“本地化并不意味着把全球广告翻译成中文，这是一种拙劣的方式。”Michael 称。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/13.txt",
    "content": "　　　新华网上海5月10日电 中国石化集团上海工程有限公司最近与中石化第二建设公司、荷兰AK公司组成联合体，一举成为沙特延布年产40万吨聚乙烯和40万吨聚丙烯生产装置项目的总承包商，总承包金额7.5亿美元，其中上海工程公司承包金额4.65亿美元。\r\n　　 据《解放日报》报道，目前，沙特石化项目的基础设计工作已接近尾声，其中上海工程公司派出20多人赴荷兰参与设计。项目详细设计工作将于年底结束。明年年初施工开始，直至2008年4月竣工。这期间，大批中国设备、材料将运往红海岸边，四五百名中国技术、管理和施工人员将奋战在异国土地上。\r\n　　两年前，上海工程公司得知沙特基础工业公司决定在红海西岸的延布建设大型石化联合企业，而AK公司正参与其中部分装置的竞标。权衡利弊，上海工程公司决定放弃单打独斗而与AK公司携手，提出三方组成联合体参与竞标的设想。中外三方过去在其他项目上多次合作，相互知根知底，因此一拍即合，很快签订合作协议参与竞标。如此优势互补，果然在竞标时将所有对手远远地抛在了身后。\r\n　　根据总承包合同，荷兰AK公司负责项目基础设计，上海工程公司派人参与；项目详细设计由上海工程公司负责完成，AK公司给予支持。项目主要设备、仪表、主要电气设备，由AK公司负责采购，其余设备和大宗材料由上海工程公司负责采购，项目施工由第二建设公司负责实施。\r\n　　上海工程公司是一家具有53年历史的国内大型工程设计承包企业，先后成功完成了上海化工区总体规划设计，上海石化、扬子石化、杜邦纤维等国内外4000多项设计和承包工程。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/14.txt",
    "content": "　　根据艾瑞市场咨询有限公司发布的2005年《中国网上支付研究》报告，中国网上支付的市场规模在2001 年为9 亿元，2004 年就达到了75亿元，年均复合增长率为102.7%。艾瑞预测2007年我国网上支付市场规模将达到人民币605亿元。\r\n　　应该说在超过4亿个手机用户和1亿多网民支撑下，网上支付市场的想象空间无疑是巨大的。\r\n　　对此，北京YeePay公司首席执行官唐彬甚至认为，支付需求现在已经是国内未被满足的最大需求。但2005年以前，作为结算支付主体的商业银行在面对大量低端商户支付业务时显然是一种不在乎、视而不见的态度。在这种情况下，商业银行选择向支付公司提供支付网关接口，将网上支付业务外包给支付公司，正如eNet硅谷动力商务运营部总监张磊所说的那样，支付公司成为商业银行支付业务的总代理商。\r\n　　面对网上支付公司的崛起，商业银行开始觉醒起来，采取措施应对威胁；另一方面，网上支付公司也暴露出它监管上的弊病。原6688商城拖欠挪用商户结算款就是明例。\r\n　　这个时候传出央行要在2006年出台《电子支付指引（第二号）》文件，即《支付清算组织管理办法》的消息，主要内容被认为是“关系到第三方支付公司的牌照发放”，据了解，在电子支付领域，牌照数量不会超过10张；对于清算体系，央行的原则是“以央行作为主导，商业银行作为主体，社会组织作为补充”，而以快钱公司为代表的第三方支付公司就属于“社会组织”。另一家第三方支付商好购公司总经理何明攀在接受《第一财经(相关:理财 证券)日报》采访时表示央行之所以要出台管理办法就是为了防止网上金融欺诈和无序竞争，规范网上支付市场。\r\n　　易观国际认为，随着今年底金融业全面开放的大限临近，中国第三方支付市场的重组与洗牌将在所难免，在目前国内40家左右的第三方支付服务商中，至少有一半会出局。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/15.txt",
    "content": "　　本报讯 （记者李英辉）已经退出北京市场两年多的车贷险业务重现市场。记者昨天获悉，安邦财险将在本月启动车贷险业务。\r\n　　购买车贷险后，一旦贷款人不能还贷款，保险公司要负责赔偿银行贷款。该险种面市后，曾极大地促进了银行车贷业务的发展。由于车贷险的赔付率竟然超过100%，保险公司不堪重负，两年前全面退出市场。\r\n　　新车贷险做了重大调整。原来只要被保险人逾期还款，保险公司就须代其还款。新条款中，保险公司的履约责任由第一位降到第二位，如出现被保险人逾期还款的现象，先由银行和汽车公司追偿，然后进入保险公司赔偿程序。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/16.txt",
    "content": "　　　本报北京５月９日讯 记者潘跃今天从中国红十字会总会举办的“博爱论坛”上获悉：目前，全国已有６４１个县（市、区）开展试点工作，有１．６３亿农民参加了合作医疗。试点地区农民的医疗负担有所减轻，因病致贫、因病返贫的情况有所缓解。\r\n　　据有关资料显示，我国医疗资源分配极不均衡，占全国人口２０％的城市人口占有我国卫生资源的８０％，而占全国人口８０％的农村人口仅占有２０％的卫生资源。近年来，由于医疗服务保障的城乡差异，大城市的人均寿命比农村高１２年，而贫困地区儿童死亡率则是大城市的９倍。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/17.txt",
    "content": "　　设想一下，如果某家银行花了大力气进行品牌建设，可顾客每每面对的是铁栅栏后面一张冷冰冰的脸，敷衍推诿，甚至恶语相向，他们自然很难相信这家银行所作的品牌承诺，也会动摇对银行的信任\r\n　　本报记者范松璐发自上海\r\n　　在一个金融服务品牌提升研讨会上，扬特品牌欧洲的董事长TerryTyrrell饶有兴趣地展示了一些别出心裁的银行标志，从图案的设计中很容易发现为人们所熟悉的知名公司品牌的影子，比如麦当劳那个醒目的“m”和苹果电脑缺了口的苹果，而类似可口可乐的标志下，索性写着“CocaCash”，看到这些易于识别和引发联想的标志，台下观众发出一阵阵会心的笑声。\r\n　　“当然，这些银行标志只是我的想象，不过，目前在金融服务业领域，有没有像这几家企业那样影响深远的品牌呢？恐怕还没有。”Terry说。在激烈的竞争环境中，弱势品牌可能会被猎食，不过，只知道掏钱购买弱势品牌、而并不能建立一个强大品牌的猎食者也未必能得到良好的投资回报。对现有的银行而言，建立自身的强势品牌适逢其时，而且相当重要。\r\n　　应求与众不同\r\n　　国内金融服务业暗流汹涌。2006年是中国进入WTO,承诺开放金融市场的关键一年，外资银行即将进入，竞争格局正发生变化，市场内部也萌生诸多影响零售银行业务成长的因素——高强度的经济发展、政府收缩对社会福利的补助、房屋私有率提高、人口日益老龄化、个人消费成为经济发展的关键动力，而且企业银行业务要利用总体性平衡来管理中小型企业贷款、开发收费产品。\r\n　　讲到银行现存的症结，人们的第一反应往往是不良贷款比率偏高、风险评估实战经验不足、消费性金融产品缺失、企业管理标准不够完备等等。但另一方面，不容忽视的是，国内银行的品牌建设也存在某种滞后——鲜有差异化的品牌定位、品牌经营思维和以客户为本的鲜明形象，顾客感受到的环境和服务面目雷同，甚至干脆一模一样。扬特中国区创意总监黄鼎杰展示了一页图片，是某家知名商业银行的营业厅，“能看出来这是哪一家银行吗？”的确，对多数人来说，只能感觉似曾相识，却基本无从分辨究竟是哪一家。\r\n　　再看银行的图标，如果把具体的图案及字体隐去，会发现图标的颜色和形状极其接近，比如四大国有商业银行的图标都是圆形图案加上银行名字。“圆形，应该是钱币的意思，不过是否可以改换一下视觉形象，让自己更醒目些，区分性会带来更多机会。”黄鼎杰还展示了某家美国银行的营业厅照片，乍一看去，难以想象这居然会是银行，而更像一家前卫酒吧——设计活泼明快，各种独特有趣的细节点缀夺人眼球，还有咖啡台和上网的电脑，“在这样的银行里，等待也似乎不那么让人心焦了——不过这种风格在国内还是有些超前，可能很多人会不放心把钱放进去。”黄鼎杰觉得，毕竟大多数顾客对银行的期望还是以“专业、安全、权威”为主，在此基础上，如果适当加入更多“友善、亲切”的元素，会进一步提升银行在顾客心中的形象。比如在香港，大多数银行的保安并不穿制服，这些细节往往能拉近顾客的心理距离。\r\n　　对银行来说，通过识别系统、广告活动等方式来建立品牌构造是远远不够的，必须有更高标准，还要更多地从感情上联结顾客，建立强烈的认同感。银行业正在掀起一场争取客户心智的战役。\r\n　　别让冰山倾覆\r\n　　Terry展示了一幅冰山的图片，在他看来，人们从外面感受一家企业，就如同看到露出海面的冰山，其中包括品牌的定位、个性、表述等方面，而水面以下深藏不露的更大部分则是企业自身对内的战略、愿景、价值和激励，这些是令品牌长久保持活力的源泉，作用更为关键，正所谓“吸引人的真实”（com p e llin g tru th）。露出水面的冰山可以吸引外界注意，但倘若缺少真实的根基，冰山终究难逃倾覆的命运。\r\n　　很多企业在努力建立和管理品牌的时候，不觉间会犯一个错误，只把注意力聚焦在顾客身上，而忽略了对员工的沟通、了解和重视。\r\n　　“如果不能把员工培养成忠实的内部品牌拥护者，那就太可惜了。”扬特中国区董事总经理Debora Chatwin 认为，前线员工应该成为真正的品牌大使，发挥独特能力，和顾客建立良好关系，给公司带来利润，自己也得到更大的满足。\r\n　　员工投入度对公司的回报影响不可忽视，《星期日泰晤士报》在2002年一项“最佳雇主”调查中也指出，获得雇员好评的公司股价和股息收益增幅达25％，远高于同期英国全股指数6.3%的上涨幅度。再回到国内，盖勒普2004年进行了一项调查，将工作的人们分为“投入型”、“不投入型”、“积极投入型”三种类型，结果显示，有68%的人属于“不投入型”，对工作没有激情，觉得工作与自己个人关系不大，工作时几乎形同梦游。粗暴、冷漠、不满足的员工会伤及客户和公司自身，身处服务业的银行更是如此。\r\n　　设想一下，如果某家银行花了大力气进行品牌建设，可顾客每每面对的是铁栅栏后面一张冷冰冰的脸，敷衍推诿，甚至恶语相向，他们自然很难相信这家银行所作的品牌承诺，也会动摇对银行的信任。许多国有商业银行在此方面可能需要多一些反思。“领导层的重视是使得员工与品牌紧密联结在一起的重要因素。”Terry表示。\r\n　　“员工联结”修固品牌根基\r\n　　银行的顾客细分、产品开发、风险管理都需要高水平的管理者和职员，有些人才要从外部市场引进并整合到银行的运营和文化中，这一点上，超越金钱奖励而创造积极向上的企业文化可能更为长远。\r\n　　渣打银行在员工联结方面的努力产生了一定的效果，面对资源收缩、员工士气开始低落的现象，银行开展了名为“树立典范”（TaketheLead）的内部沟通计划，希望将所有人力资源和传播活动加以整合，清晰传递管理层的承诺，对员工进行积极有效的奖励，使他们重获工作的信心和自豪感，表现自己的领导才能。\r\n　　计划的代言人是一个活泼的卡通人物“StarMan”（星仔），它的各种形象代表了各种“树立典范”的行动，力求将抽象鼓励变成具体榜样。渣打银行向高级经理们发放一套介绍计划的录像带和新的员工通讯录，贯彻名为“JustSayThankYou”（说句谢谢您）的员工表扬计划，用有“星”形象的卡片给努力工作的同事写谢谢，公司刊物也更名为“TheLeader”（典范）。另外，银行在对外的信息传递中也采用很多“星仔”标志，这一切都使员工对整个计划的印象不断深化，并逐步加强认同感。最终，顾客满意度显著上升，员工流失减少，对品牌内涵的理解更深。\r\n　　“员工联结”不只是让大伙儿了解正在发生的事情，更要得到他们的投入和参与，与品牌之间产生一种紧密的情感。这样不仅能使冰山露出水面的部分看上去很美，深埋在水下、不易为人所见的真实根基也会更加牢固，做到这些，依靠银行自身长久的修为。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/18.txt",
    "content": "\r\n　　如果你周围的不少人都晋升了，那就该好好反省自己了。看看以下种种晋升“绝症”，是否有自己的身影呢？\r\n　　职位成功晋级，事业更上层楼，这是不少经理人的职业目标。然而，很多经理人努力打拼却依旧还在原地徘徊。\r\n　　在竞争社会，当你不能升职的时候，要先考虑是企业体制的问题，还是你自己的问题。如果是体制问题，你可能根本就没有机会，完全可以选择主动离开。如果你周围的不少人都晋升了，那就该好好反省自己了。看看以下种种晋升“绝症”，是否有自己的身影呢？\r\n　　失语症——上司换了8个，我还是当绿叶\r\n　　邓珉在一家知名房地产物业公司做行政人事主管，从2001年到现在，公司先后换了两任老总，换了8个项目经理，每个项目经理升职调走了，而她却一直在原地不动。让邓珉困惑的是，她要不停地适应新领导的管理风格，而且自己的发展空间有限。物业公司的行政人事工作并不复杂，她只要用30％的精力就足够应付得了。公司也一直认为邓珉是个老同志，比较稳定塌实，哪里需要就让邓珉过去。\r\n　　“失语”诊断：邓珉一直在做默默无闻的“失语”绿叶，整整陪衬了8位上司。行政支持工作并不是最“抢眼”的红花，企业很容易把你定性。虽然你在公司给大家留下了不错的印象，但企业往往是哪里需要你，就把你往哪里搬。\r\n　　药方：生意就是生意，经理人要更多地考虑自身的利益，衡量自己的投入和产出，千万别做赔本的买卖。想要晋升，就要勇于表现出来，要捅破这层窗户纸。第一，想要。第二，要做。第三，要让老板知道。一定要向老板提出你的想法，你可以结合企业的资源和现状来分析，要让老板意识到，你的确想要承担更大的责任。另外，表明你现有工作做得不错，你也有这样的能力。在企业环境相对稳定时，企业在重用一个人的时候，看重的不是能力，而是信任。这方面你有优势。\r\n　　自闭症——就盯着自己的一亩三分地\r\n　　一年前，业绩出色的路平被破格提升为企划经理，但他还是走业务路线，手底下没兵，只有一个助理协助他。他一直对市场企划总监这个职位心仪已久，没想到最后却被能力、业绩远不如自己的同事PK下来。\r\n　　原来，一向喜欢单打独斗的路平总是有点各色，他只愿意盯准自己那一亩三分地。例会时，部门讨论其他市场活动方案，他总是一言不发。等到询问起他的意见时，他便说，“不好意思，我没来得及看。”平日的团队活动或是聚会，也难见他的身影。老板用人所长，结果导向，对路平也是睁一只眼闭一只眼。但同事们不免背后嘀咕，说路平小农意识。\r\n　　“自闭”诊断：各色的路平眼里只有自己那一摊。在结果导向、业绩为王的公司，这样也许没错。但在晋升路上，过分的“自闭”会让上司有所顾虑，同事的反作用力也会断送你的晋升良机。\r\n　　药方：职场中人人都是生意伙伴，上司、同事都是价值链上的客户和资源。只盘算着自己的眼前利益，往往会失去更多“商机”。路平要积极和同事们主动交往，能者多劳，既然你点子多，不妨多给同事们出一些好创意，而你在支持同事的同时，不仅获得了一个好人缘，进而也熟悉其他业务线，增强了自身的实力。如果其他业务线你也能轻松玩转的话，上司一定会给你更多机会的。\r\n　　狂妄症——“我就愿意让别人听我的”\r\n　　安妮是一家呼叫中心项目部的客服经理，她刚上任不久，就引起了下属的极度不满，而且被投诉到公司总部。\r\n　　原来，安妮个性强势，上任后就进行了一系列改革，重新排班，规范服务，整顿流程等等。改革取得了一定成效，以前忙乱的客服工作逐渐变得有序，但安妮自己却引起了一片倒伐之声。当下属在外面忙得团团转时，她却在自己的单间里会客聊天，而且经常不来上班。而自由散漫的安妮对下属却是实施高压手段，用她的话来说，“我就愿意管人，让别人听我的。”她安排自己的亲信任职，监视其他下属言行，搞得员工怨声载道。几个月后，项目高管调整，其他几个项目的中层都获得了提升，惟独安妮没有新的发展空间，最终辞职而去。\r\n　　“狂妄”诊断：安妮有着强烈的领导欲望，管理风格泼辣强悍，但她却忽略了接受方的感受。改革虽然初见成效，但她自己却难为表率，严人宽己的领导风格必然难以服众。\r\n　　药方：狂妄的强权不是万灵药，身为管理者，安妮既是规则的制定者，也是规则的裁判，如果自己都处处破坏规则，一时的业绩也只能是短期效应。而下属员工是经理的供应商，水能载舟，也能覆舟，业绩是需要大家一起努力做出来的。安妮如果早些努力调试自己，采取一些柔性管理手段，避免激进改革，以身作则让员工口服心服，也不至于在项目调整时弄得丢盔卸甲。\r\n　　多动症——不开心就跳，越跳越迷茫\r\n　　30出头的汪力已经换了6家企业，现在一家IT企业任数码产品经理。年轻时为了薪水而跳，把跳槽当成涨薪的跳板，往往是这家企业还没彻底了断，就已经在下家开始领薪水。近一年来，汪力倒还算得上稳定，一直没什么非分之想。但上个月，公司的产品总监换成了一个台湾老板，对汪力似乎有些看不顺眼，重要业务会议不让他参加，一些产品的推广预算也卡得很紧。汪力感觉自己不被信任，正逐渐被边缘化，他又动了大不了走人的念头。\r\n　　汪力把自己的简历给了一家猎头，没想到猎头却称，他跳槽频率过快，如果要晋升高职，希望并不大。如果平级跳，汪力又不甘心。\r\n　　“多动”诊断：通常，猎头非常不喜欢频繁跳槽的人，因为频繁跳槽说明此人目标不清晰，对公司的忠诚度值得怀疑。汪力一直对自己期望较高，如果现实稍不如意，便有“弃暗投明”的念头。但频频转换，跳成了习惯，在每一个职位上都不能积累较多的资本，更谈不上为晋升打下坚实根基了。\r\n　　药方：在猎头眼中，在一家公司中高层职位上干满3年的候选人是比较理想的。汪力如果认准了行业，就要努力埋头做下去，没有完美的企业和上司，你在这家企业被边缘化，如果不能咸鱼翻生的话，再换一家也同样如此。只有想清楚自己的目标，稳扎稳打，步步为营，用实在的业绩说话，下一个晋升机会才不会擦肩而过。\r\n　　其他非典型晋升“绝症”\r\n　　1.“红眼病”，容不得他人比自己能干，喜欢背后冷嘲热讽。\r\n　　2.“营养不良”，知识和能力总是跟不上企业步伐。\r\n　　3.“骨质疏松”，没有主见，人云亦云，就会做老好人。\r\n　　……\r\n　　第N种：“抑郁症”，非黑即白，抱怨连连却缺乏行动力。\r\n　　(文章出自：前程无忧〈人力资本〉杂志)"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000008/19.txt",
    "content": "　　本报讯 （记者段志敏）中国移动北京地区手机资费刚刚下调，零售终端迅速作出反应。昨天下午，北京苏宁电器宣布本周末起手机大降价。包括诺基亚、摩托罗拉、索爱、三星等主流品牌在内的手机降幅将超过20%。\r\n　　北京苏宁电器市场部经理徐正飞说，此次降价外资手机是主力，诺基亚降价机型多达10款，摩托罗拉和索尼爱立信降价机型也分别达到8款和6款。不少外资品牌新机型降幅超过20%。\r\n　　苏宁电器华北地区管理总部执行总裁范志军认为，北京移动资费首次大幅调低，必将刺激北京手机市场消费，带来新增长，预计市场增幅应在30%以上。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/10.txt",
    "content": "\r\n　　本报讯 (记者 王京) 联想THINKPAD近期几乎全系列笔记本电脑降价促销，最高降幅达到800美元，降幅达到42%。这是记者昨天从联想美国官方网站发现的。\r\n　　联想相关人士表示，这是为纪念新联想成立1周年而在美国市场推出的促销，产品包括THINKPAD \r\nT、X以及Z系列笔记本。促销不是打价格战，THINK品牌走高端商务路线方向不会改变。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/11.txt",
    "content": "　　本报讯 全球最大个人电脑制造商戴尔公司８日说，由于市场竞争激烈，以及定价策略不当，该公司今年第一季度盈利预计有所下降。消息发布之后，戴尔股价一度下跌近６％，创下一年来的新低。\r\n　　戴尔公司估计，其第一季度收入约为１４２亿美元，每股收益３３美分。此前公司预测当季收入为１４２亿至１４６亿美元，每股收益３６至３８美分，而分析师平均预测戴尔同期收入为１４５．２亿美元，每股收益３８美分。\r\n　　为抢夺失去的市场份额，戴尔公司一些产品打折力度很大。戴尔公司首席执行官凯文·罗林斯在一份声明中说，公司在售后服务和产品质量方面一直在投资，同时不断下调价格。戴尔公司将于５月１８日公布第一季度的财报。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/12.txt",
    "content": "　　本报讯（记者 陆一波）售价8.5万港元的《文渊阁四库全书电子版》在易趣网上竟以60元的价格拍卖。为此，拥有该电子出版物版权的迪志文化出版有限公司将共同经营易趣网的上海易趣贸易有限公司和亿贝易趣网络信息服务（上海）有限公司告进法院。昨天，市二中院开庭审理此案。\r\n　　去年11月，迪志公司发现易趣网未经其许可，允许并配合其用户在网上公开拍卖该电子出版物，且这17张光盘均属盗版。迪志公司将易趣网的经营公司告进法院，要求立即停止侵权，赔偿经济损失人民币50万元并刊登致歉声明等。\r\n　　易趣网的代理律师辩称，易趣网仅是网络交易的专用平台，未直接实施侵权交易，且网上已设知识产权查询系统，供权利人举报。该公司已尽合理范围内的注意义务，没有责任。\r\n　　庭审中，法院发现《文渊阁四库全书电子版》的版权由迪志公司和上海人民出版社共同所有，故宣布该案将在上海人民出版社参加诉讼后继续开庭审理。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/13.txt",
    "content": "　　关键字：裁员　美国在线　呼叫中心\r\n　　标题：美国在线计划裁员1300人占全球员工总数7%\r\n　　时间：美国东部时间5月9日上午10时30分消息\r\n　　来源：英文雅虎\r\n　　内容摘要：美国在线计划裁员1300人，约占其全球员工总数的7%，位于费罗里达州杰克逊维尔呼叫中心将被关闭，此外，位于犹他州奥格登美国亚利桑那州图森的呼叫中心也被列入此次裁员的范围。这是自去年秋天美国在线裁员700人以来最大规模的一次人员精简行动。去年10月份，面对拨号上网用户数量持续下跌，美国在线关闭奥兰多的呼叫中心，位于杰克逊维尔和总部杜勒斯的呼叫中心有部分职位被削减，总共裁员700人，约占其全球员工总数的4%，尽管美国在线的用户流失现象严重，但该公司的发言人尼古拉斯－格拉汉姆将这一结果归咎于用户对电脑的日益了解以及更多工具的出现，他表示：“与1996年美国在线建立会员中心相比，2006年的英特网世界是一个完全不同的世界，美国在线的会员们头脑更加灵活，具备更加丰富的电脑知识，他们几乎都是电脑通，一般的故障都能自己排除，呼叫中心的功能日趋减弱。”一项数据显示，自2004年以来，美国在线的呼叫量下降了近一半。\r\n　　关键字：手机销售　排名　瑞典\r\n　　标题：4月份Telia商店手机销售排名前10位\r\n　　时间：美国东部时间5月9日上午11时35分消息\r\n　　来源：法新社\r\n　　内容摘要：瑞典最大的通信产品零售店Telia今天公布2006年4月份手机销售排行榜，进入销售前十的手机中索爱占5款，诺基亚占3款，三星占2款，其中有两款是3G手机（诺基亚6280和三星Z140），六款有照相功能，六款有MP3播放功能，具体的排名为：排名前十位的手机为：（1）索爱K750i（上月排名第四）、（2）诺基亚3120（上月排名第三）、（3）诺基亚5140i（上月排名第一）、（4）索爱Z300i（上月排名第五）、（5）诺基亚6280（与上月的排名一致）、（6）索爱W810i（与上月的排名一致）、（7）三星X660（与上月的排名一致）、（8）索爱Z520i（上月排名第二）、（9）索爱W800i（上月排名第六）、（10）三星Z140（上月排名第九）。Telia是瑞典最大的移动电话零售店，拥有78个商店，该排名就是依据各商店的销售数据得出的结果，Telia市场部的负责人指出，“照相以及MP3播放功能已经成为许多客户对手机的基本要求，手机用户对于移动电视的需求也在不断增加。”\r\n　　关键字：业内合作　下载　电视连续剧\r\n　　标题：苹果公司提供福克斯娱乐集团出品的电视连续剧的下载\r\n　　时间：美国东部时间5月9日上午11时20分消息\r\n　　来源：英文雅虎\r\n　　内容摘要：苹果公司日前宣布，iTunes音乐商店（Music Store）已经开始销售福克斯娱乐集团出品的电视连续剧，例如此前风靡全球的《24》。苹果公司介绍称，每部电视连续剧的下载费用为1.99美元，除了《24》之外，《盾牌》、《越狱》、《吸血鬼猎人巴菲》也在下载之列。此前，iTunes音乐商店提供来自ABC、CBS以及NBC的节目下载服务。\r\n　　关键字：民意测验　电子游戏　美国\r\n　　标题：40%美国成年男子玩电子游戏\r\n　　时间：美国东部时间5月9日上午10时20分消息\r\n　　来源：英文雅虎\r\n　　内容摘要：美联社与美国在线近期开展的一项民意测验显示，十个成年美国男人当中有四人通过电脑或者游戏机玩电子游戏，其中有45%的人通过因特网玩电子游戏，多于三分之一的人2005年花费在网络游戏上的资金达到两百美元，42%的人每周玩电子游戏的时间超过了四个小时，26%的人通过游戏机玩电子游戏，六分之一的人每周在线玩游戏的时间为十个小时。关于游戏的内容，战略游戏最受欢迎，其次为体育游戏，冒险游戏还有射击游戏以及仿真游戏。\r\n　　关键字：打击盗版　下载　华纳兄弟\r\n　　标题：华纳兄弟计划通过BitTorrent提供影片下载服务\r\n　　时间：美国东部时间5月9日上午11时55分消息\r\n　　来源：英文雅虎\r\n　　内容摘要：美国娱乐业巨头华纳兄弟公司（Warner Brothers）将成为第一家向BitTorrent用户提供电影内容下载服务的公司，该公司希望通过此举打击盗版行为。华纳兄弟家庭娱乐公司总裁Tsujihara表示：“盗版的问题变得越来越严重，我们的这种作法是将这一问题变成一种机会，如果我们能够将5%，10%甚至是15%的这些用户转化成合法的用户，其影响力将会十分的重大。”华纳兄弟公司指出，用户可以租用或者下载那些可以被制作成DVD的拷贝，但是此项服务推出日期以及具体的定价目前还不得而知。此前，华纳兄弟准备将电影如《蝙蝠侠》、电视连续剧《玩酷世代》等影片通过P2P网络在网路上销售。该公司一负责人指出，成功打败目前线上剽窃行为最有效的武器之一就是向用户提供合法且容易使用的替代性选择。In2Movies服务使观众能够合法下载华纳旗下百视达的电影、地区性节目。\r\n　　关键字：业绩　荷兰电讯公司　净收入\r\n　　标题：荷兰电讯公司Royal KPN NV周二表示其第一季度净收入达到3.83亿美元\r\n　　时间：美国东部时间5月9日上午11时20分消息\r\n　　来源：道琼斯新闻\r\n　　内容摘要：荷兰电讯公司Royal KPN NV周二表示其第一季度净收入达到3.83亿美元，比去年同期的2.74亿美元增长了40%，销售收入也达到了37.2亿美元。在固定电话部门收入下降2.3%达到21.4亿美元的情况下，移动收入增长了15%，达到了19亿美元。此外，该公司在德国新增加用户70万。\r\n　　关键字：新举措　漫游费　沃达丰\r\n　　标题：沃达丰表示将在明年降低手机漫游资费\r\n　　时间：美国东部时间5月9日上午10时25分消息\r\n　　来源：道琼斯新闻\r\n　　内容摘要：迫于欧洲委员会的压力，英国电信巨头沃达丰公司（Vodafone）近日表示将在明年降低手机漫游资费，其低价幅度将达到40%。欧洲委员会此前的建议称，当欧洲用户出国后，他们不应该被收取漫游费，不能因为他们出国旅行而缴纳更高的费用。\r\n　　关键字：新产品　超薄手机　三星\r\n　　标题：三星公司在莫斯科电信展推出两款超薄手机\r\n　　时间：美国东部时间5月9日上午10时40分消息\r\n　　来源：英文雅虎\r\n　　内容摘要：在莫斯科的Sviaz ExpoComm 2006电信展上，三星公司推出两款超薄手机，其中一款为SGH-X820，厚6.9毫米，重66克，内置200万像素摄像头和MP3播放器，容量80MB，支持视频录制、蓝牙和电视输出。另外一款为滑盖式手机SGH-D900，厚度及重量比SGH-X820稍大一些，内置300万像素摄像头，支持Quad-band GSM网络，但三星公司并没有透露这两款手机的价格。\r\n　　关键字：服务 高清晰 数字广播\r\n　　标题：英国广播公司（BBC）首次推出免费的数字广播服务\r\n　　时间：美国东部时间5月9日上午7时10分消息\r\n　　来源：路透社\r\n　　内容摘要：英国广播公司（BBC）本周内首次推出了使用电视格式的高清晰数字广播，这项服务将进行为期一年的试验。根据此前英国广播公司所作的调查显示，了解高清晰数字广播的听众都期待着BBC尽早开通高清晰数字广播服务，并希望在任何频道都能收到该广播。据报道，该项广播将从5月11日正式开通，开通之初仅限于拥有高清晰设备的用户。BBC公司同时还证实了在世界杯期间，在某些地区数字广播能用电缆进行传播。从6月9日开始，BBC公司将对世界杯进行高清晰无线电和电视的同时联播。这种联播还将应用于温布尔登主要的赛事。BBC电视部门总监加纳?贝内特(Jana Bennett)说：“高清晰数字广播是BBC公司计划在未来向全世界提供高清晰服务的而迈出的第一步，虽然步幅小，但是是激动人心的。”\r\n　　关键字：电脑黑客 审判 服刑\r\n　　标题：美国电脑黑客安契塔被判入狱57个月\r\n　　时间：美国东部时间5月9日上午10时35分消息\r\n　　来源：法新社\r\n　　内容摘要：美国电脑黑客安契塔被判入狱57个月。检方指出，安契塔，20岁，是知名秘密骇客网络“地下蠕虫大师”的要员，于去年十一月被捕，这是第一起遭起诉的相关案件。他被控侵入四十万余部电脑（或称僵尸网路，bot nets）损害其系统，并促使受害电脑大量寄发垃圾邮件。遭安契塔入侵的，还包括美国军方的服务器。 在洛杉矶的联邦法庭上，面对17项指控，安契塔承认密谋违反电脑诈欺滥用法、反垃圾邮件法，和损及美国军方电脑。他并坦承散播能促使电脑发送垃圾邮件、广告以及对网站发动瘫痪性攻击的恶意软体。 检方发言人莫柴克说：“安契塔尤其对这一连串的秘密犯行负有责任，他入侵加州近五十万部电脑系统，受波及的电脑并不限于家用电脑，这也让他与他人得以发动大规模的攻击。” 安契塔在庭上同意赔偿军事单位一万五千美元，他的不法获益也遭没收，其中包括逾六万美元现金、一辆ＢＭＷ汽车与一些电脑设备。（章田编译）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/14.txt",
    "content": "\r\n　　本报讯（记者 马海邻）记者昨天得到确切消息，新浪公司今天将宣布由曹国伟接替汪延担任CEO，汪延则任董事会重要职位。\r\n　　曹国伟此前是新浪总裁兼CFO（首席财务官）。他于1999年加入新浪，任主管财务的副总，之后任职CFO、CFO兼COO（首席运营官）。曹国伟先后获得复旦大学新闻学学士、美国奥克拉荷马大学新闻学硕士学位，1993年获德国奥斯町大学商业管理学院财务专业硕士学位后，任职普华永道。其人被外界评价为强势的鹰派管理风格，曾获《首席财务官》杂志和IDG中国共同评选的“2005年度杰出CFO”。\r\n　　外界认为，由曹国伟主导的2003年1月收购讯龙、2004年3月收购深圳网兴科技，这两笔收购不仅奠定了新浪此后在无线增值业务上的地位，同时也增加了新浪经营模式的多样性与稳定性，对新浪意义非凡。新浪董事会对公司2005年以来业绩的滑坡、非广告业务收入下滑感到忧虑，希望曹国伟能够力挽狂澜，加强新业务的拓展。\r\n　　汪延于2003年5月取代茅道临出任新浪CEO。有关新浪再次换帅的传闻，起于去年下半年。昨晚新浪内部一名高层人士证实，今天在发布财务季报的同时，宣布人事变动."
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/15.txt",
    "content": "　　全国25个入围项目 北京考古项目遗憾落选\r\n　　十大考古新发现揭晓\r\n　　本报记者黄涛报道 经过两天的专家评审，由中国文物报社和中国考古学会主办的“2005年度全国十大考古新发现”昨天晚上7点正式揭晓。25个参与评选的入围项目中，浙江嵊州小黄山遗址、湖南洪江高庙遗址等10个考古项目最终成功入选,北京门头沟东胡林遗址遗憾落选。\r\n　　评选已延续16年\r\n　　主持此次评选的中国考古学会理事长徐苹芳介绍，十大考古新发现开评至今已经是第16年，此次考古新发现评选从今年1月启动。与去年由各地申报不同的是，今年采取专家根据中国文物报发表资料遴选的办法，由有关专家联合推荐入围项目。\r\n　　入围项目的推荐充分考虑学术价值、是否推进学科发展、社会影响、发掘中的 文物保护意识等因素，同时综合时代和区域考古成果等，从2005年1—12月期间国家文物局批准发掘的100余项考古发现中，召集专家会议筛选出24项，涵盖旧 石器时代至宋元时期各个类型的文化遗存。只有 福建东海平潭“碗礁1号”清代沉船遗址是经两位以上专家推荐，直接申请参评的。\r\n　　参评须经国家批准\r\n　　“在16年的评选中，评选的标准至今没有改变。”徐苹芳介绍说，评选标准总结来说就是“三个价值”和“一个新”。\r\n　　参评项目必须是经过国家批准，发掘过程也符合国家的考古发掘规程。而这些考古发现的项目必须在全国范围内具有突出的历史价值、艺术价值和科学价值。而“新”则是指在中国考古学科中增添了新的内容和发现，这些标准缺一不可。\r\n　　评委“忍痛割爱”\r\n　　此次入选的项目中多数属于年代较远的遗址，徐苹芳解释说，18名评委们并没有“厚古薄今”的意思，完全根据考古的价值来评判。但是由于2005年是中国考古的“丰收年”，参选的项目水平都相当高，因此评委们最终也不得不“忍痛割爱”。\r\n　　希望社会关注文保\r\n　　在评选过程中，许多参评项目的代表都对记者表示，参加评选是否能最终入选并不是最重要的，而只是希望以此引起社会对文物保护的关注。\r\n　　考古专家张忠培表示，随着目前全国建设速度的加快，许多考古项目都是被迫“抢救”发掘出来的。因此，希望以评选的方式推动社会和政府关注文物古迹的保护，为国人留下更多的“遗产”。\r\n　　十大考古新发现入选项目\r\n　　1.浙江嵊州小黄山遗址\r\n　　浙江省文物考古研究所\r\n　　2.湖南洪江高庙遗址\r\n　　湖南省文物考古研究所\r\n　　3.贵州威宁中水遗址\r\n　　贵州省文物考古研究所\r\n　　4.河南鹤壁刘庄遗址\r\n　　河南省文物考古研究所、鹤壁市文物工作队\r\n　　5.福建浦城猫耳弄山商代窑群\r\n　　福建省文物管理委员会考古队、福建省博物院考古研究所等\r\n　　6.山西绛县横水西周墓地\r\n　　山西省考古研究所等\r\n　　7.陕西韩城梁带村两周遗址\r\n　　陕西省考古研究所\r\n　　8.江苏句容、金坛周代土墩墓\r\n　　南京博物院考古研究所\r\n　　9.河南内黄杨庄汉代聚落遗址\r\n　　河南省文物考古研究所\r\n　　10.山西大同沙岭北魏壁画墓"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/16.txt",
    "content": "\r\n　　□本报记者 陆琼琼\r\n　　记者昨日从新浪获悉，汪延已经正式辞去CEO一职，曹国伟将接替汪延升任CEO，正式掌舵新浪。短时间内，从CFO到COO，到CEO，曹国伟的工作能力得到多方认可，出任新浪第四任掌门似乎并不出人意外。\r\n　　著名网络评论人方兴东认为，对于本来就已经失去灵魂人物的新浪来说，曹国伟的当家很可能会走向一条更稳健、更务实的发展道路。但另有分析人士指出，即使曹国伟的务实作风有益于新浪，如果董事长段永基不离开，新浪仍然难逃厄运。以上分析人士解释说，作为新浪董事长的段永基却把主要精力花在了新浪之外的公司。\r\n　　日前传闻中的新浪＋TOM模式将弥补新浪无线增值方面的不足。记者从可靠渠道了解到，曹国伟接任CEO后还将继续带领新浪与TOM集团洽谈。“其实双方的谈判没有停止过，只是在有些细节上的分歧致使双方迟迟没有谈成。”该人士透露。\r\n　　新浪将在美国当地时间5月9日公布第一季度财报，分析师预计新浪第一季度营收为4590万美元，每股收益为0.15美元，同比下滑25%%。在所有研究新浪股票的分析师中，有五位对新浪的评级为“买入”，有八位的评级为“持有”，有两位的评级为“卖出”。\r\n　　新浪5月8日收盘于28.52美元，比上一交易日上涨0.07%%。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/17.txt",
    "content": "　　新华社电 美国宇航局官员近日说，宇航局已决定设立一项总奖金为２５０万美元的大奖赛，希望用这种方式选出未来登陆月球的飞行器设计方案。\r\n　　美宇航局副局长戴尔5月5日在加利福尼亚州举行的一次航天会议上说，宇航局已选定“Ｘ大奖”基金会管理这项竞赛，宇航局除了出奖金外，也将在未来的月球登陆计划中应用获奖方案。\r\n　　这项大奖赛要求参赛者设计出能在月球上飞行、着陆的飞行器原型。“Ｘ大奖”基金会说，它将比赛分成两个级别，在地球上模拟月球飞行。第一阶段，参赛飞行器要求从地球上的发射点发射到５０米高度，盘旋飞行９０秒钟，并在距发射点１００米处的指定地点着陆，比赛的第一名将获得３５万美元奖金。\r\n　　而第二级别的难度高得多。参赛飞行器要求从发射点发射至５０米高度，盘旋飞行１８０秒，并在１００米外类似月球表面的一处崎岖地点精确着陆。这项比赛的第一名将获得１２５万美元的奖金，其方案很可能被宇航局采纳，作为未来登陆月球的飞行器的原型。\r\n　　“Ｘ大奖”基金会因举办私人设计航天器大奖赛而著名，著名航天设计师伯特·鲁坦设计的“宇宙飞船一号”于２００４年成功地飞入亚轨道，成为全世界第一个私人设计建造的航天器，并赢得了１０００万美元的“Ｘ大奖”。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/18.txt",
    "content": "　　日前，据联想相关负责人表示，为了纪念新联想成立一周年，联想在美国市场将ThinkPad T，X以及Z系列笔记本进行一次降价促销活动。\r\n　　据了解，此次降价最高达到了800美元，降幅也达到了42%。但联想方面表示，此次降价仅仅是针对该活动，ThinkPad品牌今后的路线仍是以高端为主."
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000010/19.txt",
    "content": "　　科龙德勤案又有新进展：已有多位科龙H股股东到律师处咨询、登记，所涉股份达200余万股。而这些投资者正在为等待提起民事赔偿所需的前置条件焦急等待。\r\n　　4月29日，上海新望闻达律师事务所律师宋一欣、秦桢凯在中国证券网上发表了《向境内外科龙H股投资者征集民事赔偿诉讼代理的启事》，全面接受科龙电器流通H股及A股投资者的诉讼及仲裁委托代理事项。宋一欣律师告诉《上海证券报》记者，“《启事》刊登当天，就有H股股东前来咨询登记，由于五一长假，事务所休息，许多H股股东想方设法找到我的电子信箱同我联系。截至今天，已有七八位H股股东前来咨询、登记，所涉及股份己达50余万股，损失金额有待统计。这些H股股东中有境外居民。他们正焦急等待此案前置程序的满足。”\r\n　　首位代表科龙股东状告德勤的上海市光明律师事务所南京分所律师涂勇则向记者透露：“多位科龙H股股东前来向我咨询起诉事宜。其中一位就持有150万股科龙H股，持股成本高达300多万元。他非常渴望前置程序能尽快满足，以便诉上公堂。”\r\n　　据宋一欣介绍，“根据最高人民法院司法解释的规定，提起虚假陈述民事赔偿诉讼必须满足前置条件，即中国证监会或财政部的行政处罚决定，或有关法院认定有罪并生效的刑事判决书，两者以先出台者为准。”\r\n　　“在科龙案中，中国证监会已经对科龙电器与德勤会计师事务所进行了行政处罚前的听证程序，如果没有意外，估计今年上半年内行政处罚决定将出台；而顾雏军编制虚假财务报告罪案已经被广东省佛山市人民检察院立案、即将提起公诉，刑事审判在即。因此，包括H股股东在内的科龙电器权益受损的投资者提起民事赔偿应该不成问题，只是需要等待，万事俱备、只欠东风。”宋一欣进一步解释道。\r\n　　谈及此案的被告，宋一欣表示，“科龙电器虚假陈述可涉及很多被告，如科龙电器公司；顾雏军等原董事、高管人员及直接责任人员；存在失职的原监事会成员和独立董事；进行审计的会计师事务所（会计师行）及其承担责任的合伙人、相关注册会计师；由于虚假陈述而获益的关联企业、控股股东等。但主要被告有三，即科龙电器公司、顾雏军、德勤华永会计师事务所（A股股东）或德勤·关黄陈会计师行（H股股东）。”\r\n　　宋一欣称，“证券民事赔偿诉讼应当采取目前《民事诉讼法》规定的共同诉讼方式，科龙案也是如此。以共同诉讼提起的原告由于合并后按比例计算诉讼费，故其支出的诉讼费要比单独诉讼提起的原告所支付的诉讼费要少。所以，作为代理律师，从投资者的角度考虑，我需要筹集到一定数量投资者委托后才安排起诉。”（本报记者 岳敬飞 何军）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/10.txt",
    "content": "　　专仿竞争共存\r\n　　近日，美国医药保健管理协会（ＰＣＭＡ）的一份评估报告指出，专利药厂家就老年人经常使用的专利药出台了一系列措施，试图限制仿制药厂商产销该类产品，通过诉讼、游说立法和专利成分陷阱等手段，力求最大程度延缓仿制药上市或进入联邦医疗保险体系。\r\n　　ＰＣＭＡ代表医药管理公司如医疗保险业的利益。该协会会长ＭａｒｋＭｅｒｒｉｔｔ表示，专利药厂家正努力在未来5年内阻止若干仿制药上市，从而换回高达230亿美元的专利药销售额。据该协会的统计，到2010年有大约14支老年人常用药的专利将到期，如果仿制药如期面市，仅通过仿制降胆固醇药舒降之和普拉固、抗抑郁药左洛复、前列腺药保列治就可能为美国联邦医疗保险节约130亿美元。\r\n　　代表美国专利药制造商利益的美国药品研究与制造商协会（ＰｈＲＭＡ）反驳了Ｍｅｒｒｉｔｔ的指责，指出联邦医疗保险预算正在逐年下降，而且仿制药的使用率非常高，处方药中有一半以上是仿制药，证明专利药厂家没有操纵市场，限制仿制药出台。\r\n　　代表不同利益的两家行会组织都在表达一个共同的意思就是——专利药厂家和仿制药厂家针锋相对。而实际上，专利药厂家和仿制药厂家私下里也有同盟之时。\r\n　　4月24日，美国ＦＤＡ表示，近期将开展一项市场舞弊行为的调查。ＦＤＡ指出，专利药厂家和仿制药厂家通过签定赔偿协议，主动延迟仿制药的上市时间，或控制面市药物数量，以商业合同的形式钻法律的空子，使专利药厂家继续获得高额利润，而仿制药企业则从专利药厂家手中获得现金回报。\r\n　　专利药和仿制药之间的法律斗争由来已久，专利药厂家和仿制药厂家都逐渐意识到这是一场制药工业的内耗。1999年，诞生了第一份由专利药厂家向仿制药厂家“购买”推迟仿制药物上市承诺的赔偿协议。专利药厂家可以因此维持销售额和利润，仿制药企业一方面可以获得稳定的收入，一方面可借机压缩仿制药领域内竞争对手的市场空间。\r\n　　美国联邦贸易委员会披露，去年9月先后有3份赔偿协议生效，之后又至少签订了6份类似的赔偿协议。最近发生的两起判决更是催化了制药企业签订类似协议的热情。\r\n　　其中一宗涉及年销售额38亿美元的赛诺菲－安万特公司产品波立维，该产品在美国市场上由百时美施贵宝公司销售。赛诺菲－安万特公司和百时美施贵宝公司与仿制药公司Ａｐｏｔｅｘ签定了赔偿协议。根据协议，Ａｐｏｔｅｘ公司将所研制的波立维仿制药上市时间延后至2011年，同时得到一笔赔偿金，赔偿金额没有披露。这份协议的签订意味着，美国纳税人还要继续支付高额药费长达5年。第一只仿制药上市将平均导致原专利药价格缩水40％，市场独享期后，其他仿制药上市将使原专利药价格平均再缩水20％～40％。联邦贸易委员会正在考虑如何对这一协议作出反应。另一起协议涉及先灵葆雅公司，联邦贸易委员会已经要求最高法院巡回法庭给予驳回。联邦贸易委员会表示，如果巡回法庭没有驳回该协议，将导致专利药厂家和仿制药厂家随意限制竞争，操纵市场，分享暴利。\r\n　　联邦贸易委员会已经向白宫管理与预算办公室提交报告，希望获准对多达200家制药企业发出传票，彻底调查类似的赔偿协议是否触犯了反竞争法。但就目前各制药企业强大的游说力量而言，落实反竞争调查的难度相当大。\r\n　　仿制药增长势不可挡\r\n　　在未来5年里，仿制药市场的成长趋势不可抵挡。ＩＭＳ的分析数据显示，在未来5年中，仿制药的销售额将以14％～17％的速度递增，比整个医药行业的销售预期多9％。Ｂａｉｎ＆Ｃｏｍｐａｎｙ公司认为，仅2008年就将有价值780亿美元的处方药受到仿制药的冲击，而2005年这个数字为200亿美元。\r\n　　仿制药获得发展的另一个原因是政府的青睐。美国联邦医疗保健和医疗补助服务中心（ＣＭＭＳ）降低了2006年的医疗开支预算，从381亿美元减缩至305美元。在经济发展不畅的时候，美国政府格外希望看到更多便宜的仿制药上市，以缓解联邦预算压力。\r\n　　这个夏天，辉瑞公司年销售额达33亿美元的抗抑郁畅销药左洛复将失去专利保护，受到仿制药冲击后，年销售额预计为4．7亿美元。仿制药大户泰华公司更愿意自己掌握市场，而不是通过赔偿协议获得利润。泰华美国公司发言人ＫｅｖｉｎＭａｎｎｉｘ说，泰华公司已经获准第一个推出左洛复的仿制药，泰华公司将有6个月的市场独享期。\r\n　　生物制药领域可能成为新的仿制药冲击市场。美国没有批准生物仿制药，但在美国以外生物仿制药有较为显著的发展。\r\n　　美国不得不正视生物仿制药市场的前景。首先，生物制药市场庞大，2005年销售总额大约310亿美元，市场空间相当可观。其次，生物制剂复杂程度远高于化学制剂，仿制成本和难度相当高，因而对美国主要生物制药企业的冲击不至于非常严重，也就不会动摇美国在全球的生物领先地位。据统计，生物仿制药的对原药物的价格影响只有10％～20％，而化学制剂则高达80％。此外，如果不及时拓展生物仿制药市场，那么欧洲生物制药行业将快速发展，赶超美国，并通过对美国生物制剂的仿制，分流美国制药企业的利润。\r\n　　或成寡头垄断局面\r\n　　经过几年的发展，仿制药市场有可能从市场竞争阶段进入寡头垄断阶段。在未来几年出现大量专利药到期的情况下，这一现象有可能加剧。\r\n　　咨询公司ＴｈｏｍｓｏｎＩＢＥＳ的分析资料显示，泰华公司在未来3～5年中可能保持20％的惊人年收入增幅，2006年的市营率预期为21，接近理想状态的20，而同行业平均市营率是24。泰华公司目前拥有多达160个左右的简化申请新药备案，其中也包括若干生物药物的仿制药报批内容。2006年度，泰华公司有望把持美国仿制药市场20％的份额。泰华公司的目标集中在未来5年内几乎所有制药行业将要失去专利、目前市场价值高达1000亿美元的药物，这些药物的仿制药市场价值至少为200亿美元。\r\n　　其他有望成为寡头的仿制药企业中，Ａｎｄｒｘ公司2006年的市营率预期为24，每股收益增幅预期为19％，销售额预期为11．03亿美元，公司的市场价值为17．5亿美元；Ｂａｒｒ公司2006年的市营率预期为19，每股收益增幅预期为16％，销售额预期为12．81亿美元，公司的市场价值为64．47亿美元；Ｍｙｌａｎ公司2006年的市营率预期为18，每股收益增幅预期为19％，销售额预期为12．46亿美元，公司的市场价值为46．31亿美元；Ｐｅｒｒｉｇｏ公司2006年的市营率预期为22，每股收益增幅预期为10％，销售额预期为14．61亿美元，公司的市场价值为15．55亿美元；华生公司2006年的市营率预期为20，每股收益增幅预期为10％，销售额预期为18．71亿美元，公司的市场价值为30．98亿美元。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/11.txt",
    "content": "　　万络给止痛药市场带来的阴霾久久仍未散去，但这丝毫不能说明该市场的需求在减少。在既定的需求现实下，ＣＯＸ－２抑制剂的衰落，必然引来趁虚而入者。不久前我国河南帅克制药和贵州益佰先后宣称将倚靠新的止痛药进入该领域，一场“分羹”之战显然已经急促展开。\r\n　　潜力巨大的镇痛药市场一直是跨国公司的天下，而最近它们的优势地位正经受挑战，其缘由是２００４年８月份王牌止痛药万络爆出安全性问题引发了市场对新型非甾体止痛药的不信任感。\r\n　　去年９月万络自动撤出我国后腾出了巨大的市场空间，引起了众多企业的觊觎，去年５月１３日，中美史克曾经发起“霞光行动”，试图从困境中挽救其ＯＴＣ王牌药芬必得，但更多的国内企业则尽量避开身处安全性危机旋涡中的ＣＯＸ－２抑制剂领域，希望从新的镇痛领域入手找到征战止痛药市场的新武器。\r\n　　不久前我国河南帅克制药和贵州益佰先后宣称将倚靠新的止痛药进入这个潜力仅次于感冒药的新领域，据帅克制药董事长张克军透露，帅克开发的止痛新药氨酚曲马多片即将上市。据记者了解，该产品也是今年西安杨森力推的重点产品。而贵州益佰方面则透露，该公司将凭借一种止痛中药来分切国内巨大的止痛药市场。\r\n　　显然，一场新的止痛药市场“分羹”大战已经打响。\r\n　　止痛药市场依然是金矿\r\n　　分析人士指出，尽管目前使用最多的ＣＯＸ－２抑制剂正遭遇安全性危机，但对于整个止痛药并不构成影响，此事件的最大可能是各大类止痛药由此进行一轮市场替代，而与此同时，整个市场还在继续增长。\r\n　　中国已经步入老龄化社会，中老年人口约有５亿。风湿和类风湿关节炎、肩周炎、颈椎病、骨质增生等疾病在老年甚至中年人群中属于常见病、多发病，各类疼痛病症患者约占中老年群体的６５％，而且这一群体数量还在不断的增加。\r\n　　另外，随着我国制造业大国地位的不断提升，产业工人数量急剧膨胀，长期的劳作容易导致各种机体劳损和关节疼痛，因此，该群体已经成为疼痛药物消费的另一个大群体。由于电脑等工具的引入，人们的工作和生活方式已经发生了根本的改变，长期的静坐催生了这一人群各种疼痛的出现，这是导致疼痛人群增长的又一个重要因素。\r\n　　据ＩＭＳ国际咨询公司预测，２００５年，全球止痛剂市场总量达８００亿美元以上。目前，美国、欧洲和日本是全球最大的止痛药市场，过去３０年来止痛药市场销售额一直在稳步上升。国内的资料也显示：我国非处方药市场上止痛药增长迅速，其销售仅次于感冒药，大约占到了２０％的比例。\r\n　　与此同时，目前医学更加注重病人的生活质量，对患各种疾病引起的疼痛的治疗也催生了新的止痛药市场。以癌症疼痛为例，\r\n　　据我国卫生部统计数据显示，２０世纪９０年代我国肿瘤发病率已上升为１２７例／１０万人。近年来我国每年新增肿瘤患者１６０万～１７０万人，死于恶性肿瘤人数达１４０万人，肿瘤患者总数估计在４５０万人左右。肿瘤患者中至少有１／３存在着不同程度的疼痛，其中晚期患者占６０％～９０％。\r\n　　市场加速洗牌\r\n　　由于止痛药使用领域及其广泛，所以各类药物的使用不能一概而论，但就医院处方板块分析，目前主要有四大类镇痛药，分别为阿片类镇痛药、非甾体类镇痛药、植物类镇痛药以及抗偏头痛制剂。非甾体类镇痛药原本是被寄予了厚望，在万络以及西乐葆等一批新型药物的带动下整个市场发展趋势非常喜人。１９９８年，全国１４个典型城市入网医院的非甾体抗炎药购药金额为９９０３．３万元，到２００２年已经增长至１４０２２．３万元（见表１）。\r\n　　不过由于非甾体类镇痛药的安全性问题，其市场有逐渐下滑的趋势，而阿片类药物则有上升的势头，相互市场取代现象比较明显。以使用较多的癌症镇痛为例，在２００２～２００４年样本医院镇痛类药物使用情况（见表２）中，阿片类镇痛药的市场分额由２００２年的６２．４％上升到２００４年的６８．４％。而非甾体类镇痛药的份额却从２００２年的３４．４％下跌至２００４年的２９．２％。\r\n　　在阿片类镇痛药中，目前主要由曲马多、芬太尼和吗啡３大品种领衔，这三大品种占整个阿片类药品使用金额的７０％以上（见附图）。\r\n　　芬太尼为人工合成的非衍生物类阿片药片，属于强阿片类镇痛药，ＷＨＯ将它归入第三阶梯镇痛药，其主要通过激动阿片类受体（μ受体）而发挥镇痛作用，止痛作用为相同剂量吗啡的５０～１００倍。吗啡主要用于晚期癌症患者第三阶梯止痛。从市场趋势来看，曲马多增长后劲十足，该产品是胺苯环醇类人工合成弱阿片类药物，镇痛强度在同等剂量时，相当于吗啡的１／５，但明显强于其他非类固醇抗炎药，适用于中、重度癌性疼痛，被ＷＨＯ列为癌痛三阶梯止痛治疗的第二阶梯推荐药物。该药与阿片受体的亲和力比吗啡弱６０００倍，基本不存在成瘾性，可以长期使用，因此在治疗剂量下，不产生呼吸抑制，不影响心血管功能，也不产生便秘、排尿困难等不良反应。由于该药的管制相对较松，除可以用于癌症疼痛的治疗外，还可以在骨关节炎、腰椎间盘突出症、肩关节周围炎、创伤、手术后疼痛和骨质疏松症所致的腰腿痛中使用。该类药在医保目录中属乙类药物，目前癌痛临床应用中多为缓释片。\r\n　　复合使用药物增长势头明显\r\n　　目前镇痛药市场还有一个明显的趋势就是越来越强调联合用药，根据２００５年前三季度典型医院用药情况显示，一些复合使用的药物增长势头明显，像氨基比林＋安替比林＋巴比妥，克痛宁＋曲马多＋布洛芬，羟考酮＋对乙酰氨基酚等。\r\n　　张克军也认为，鉴于止痛新药不断遭受安全性问题，复方用药将是镇痛药今后新产品开发的一个重要方向，一些新型的复方产品正显示良好的市场前景，目前选择的重点就是将一些原来在临床使用多年，疗效确切，安全性高的药组合在一起。像最近上市的氨酚曲马多片就是由阿片类和非甾体类使用最久的盐酸曲马多和对乙酰氨基酚组合在一起的复方产品，临床研究证实该药主要用于缓解中度及重度疼痛，起效迅速，镇痛效果明显，无成瘾性，不良反应相比其单方制剂和其他参比制剂明显更低，该产品２００１年８月在美国由ＦＤＡ批准上市。西安杨森在去年将该药引进我国，目前正在力拓市场。鉴于该产品在我国无相关产权保护，河南帅克制药在国内企业中抢先仿制了这个产品。张克军透露，该产品目前已经上市，有望培养成为一个镇痛药的大品种，或许依靠新型复方制剂可以参与重新划分止痛药市场的格局。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/12.txt",
    "content": "　　三九医药（000999）和三九生化（000403）今日同时发布公告，三九医药转让三九生化38.11％股权事宜获得国资委批准，三九医药将所持有的三九生化6162.1064万股和1906.0936万股国有法人股分别转让给振兴集团有限公司和山西恒源煤业有限公司。\r\n　　协议签订一年后，股权转让终于取得重大进展，也为三九集团的重组工作打下更坚实的基础。但在这一年中，三九生化却发生了大变化。\r\n　　根据年报，三九生化2005年度亏损5.21亿元，而2004年亏损额为1.98亿元，同时，每股净资产由2004年的2.55元变为－0.05元，净利润和净资产发生大幅变动。但在双方签订的协议中，收购价格为每股2.55元。\r\n　　某券商投行人士认为，由于当时双方所签的协议价格是以2004年的审计报告为依据的，时隔一年，公司的审计结果发生重大变化，如果仍然用2004年的审计结果来进行交易似乎并不合适。\r\n　　也有业内人士认为，签订的协议具有法律效力，国资委的批准是协议生效的前提。如今既然已经获准，就应该按照协议的价格执行。\r\n　　此前三九生化发布的2005年度报告被审计机构出具了非标意见，14位公司高管也对年报表示质疑。围绕股权转让，相关各方不知是否还会发生争议。但业内人士评价，对公司而言，股权顺利转让，让公司步入正常发展的轨道，这才是最重要的。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/13.txt",
    "content": "　　国家食品药品监督管理局南方医药经济研究所主办的首届“中国制药工业百强年会暨第三终端高峰论坛”将于5月15日-17日在成都举行。会议由《医药经济报》、广州标点医药信息有限公司承办。\r\n　　据主办方透露，年会将发布2005年医药产业的各项运行数据，包括2005年医药销售领先品种，2005年中药销售领先的企业、化学药销售领先的企业排名等。会上即将发布的制药工业百强排名，其数据采集和分析方法与往年不同。2004年的统计数据分别依照化学制剂生产企业、中成药生产企业、医药商业来统计，2005年则是将那些既有工业生产也有商业经营的企业集团作为一个单位来统计，以便彰显这些“医药巨头”在我国医药产业中的重要地位。\r\n　　会议主要议程还包括“2005中国最具影响力药企发布”、“第三终端高峰论坛等”。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/14.txt",
    "content": "　　一场史无前例的非典让股骨头坏死走进了人们的视线。据推测，我国每年的股骨头坏死新发病例在15万～20万之间，累积需治疗的病例在500万～750万之间。\r\n　　治疗股骨头坏死最理想的方法是保存患者自身股骨头，而达到此目的应早期诊断，早期治疗。\r\n　　目前股骨头坏死的早期诊断和治疗的有效方法仍是世界性难题。\r\n　　搜狐健康特邀北亚医院肖正权院长做客专家在线访谈间，与网友们谈股骨头坏死治疗方面的问题。\r\n　　　　访谈主题：股骨头坏死\r\n　　　　访谈时间：5月12日15:00-16:00\r\n　　　　访谈地点：搜狐健康专家在线访谈间（地址稍后公布）\r\n&lt;预先提问&gt;\r\n　　专家介绍\r\n　　院长简介：肖正权&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 　　主任医师，医学硕士&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 　　出身于著名中医世家，肖氏医学第九代传人，国家指定全国百名名老中医肖贯一教授的学术继承人，尽得其祖父真传。就读于黑龙江省中医药大学，是基础医学院院长李冀导师的硕士研究生。先后从师于世界骨伤联合会副主席、中国中医研究院博士生导师董福慧教授，中国工程院院士博士生导师程莘农教授。北京大学医院院长EMBA毕业。\r\n\r\n\r\n\r\n肖正权院长\r\n&nbsp;&nbsp;&nbsp; "
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/15.txt",
    "content": "　　全国治理医药购销领域商业贿赂专项工作正在轰轰烈烈地展开，却有骗子趁机诈骗医务人员。日前，广东省卫生厅向全省医务人员发出了“谨防有人利用打击商业贿赂诈骗”的提示。\r\n　　治理医药购销领域商业贿赂专项工作于3月底在全国拉开帷幕之后，各地卫生行政部门积极贯彻中央精神，部署专项治理工作。近来，广东省许多医务人员突然收到手机短信或者信件，被告知希望其认真自查自纠，将收受的红包和回扣款项主动上缴汇入某个指定账号，争取宽大处理。然而广东省卫生行政部门还没有设立回扣款上缴账户，更没有向医务人员发出过上缴款项的通知。为此，广东省卫生厅向全省的医疗机构和医务人员下发紧急通知，提醒谨防受骗上当。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/16.txt",
    "content": "　　深圳一家医院近日与当地银行合作，推出大额医疗“免息分期付款”的服务项目。患者只要在银行办理一张信用卡，在医院就部分项目治疗时可享受分期付款的优待，利息则由院方支付。\r\n　　目前享有“免息分期付款”的对象被限定在有稳定经济来源的市民，而且医疗项目较窄。市民认为，大额医疗“免息分期付款”也应向困难市民推广，这样或可解决不能一次交足医疗费患者的一时之急，将付款压力分解，避免延误治疗。\r\n　　医院替患者掏利息\r\n　　对于在深圳工作不久的张先生来说，虽然每月有近7000元的稳定收入，但由于买房、买车实行的都是按揭贷款，每月的进账在支付银行贷款后虽有节余，但要一次性支付儿子两万多元的近视矫正手术费用，还存在资金不足的困难。\r\n　　不过，张先生已经决定在儿子高考结束后，通过“免息分期付款”的方式，在某医院为儿子实行手术。根据医院新近推出的“免息分期付款”医疗服务项目，他只要在银行开个信用卡，银行先替他“埋单”，他今后只要在约定的期限内把银行的钱还上就行。\r\n　　据率先在深圳市推出“免息分期付款”医疗服务项目的深圳某民营医院有关负责人介绍，近年来，在他们接诊的患者中，总有一些因为暂时费用问题不得不延缓治疗。因此他们一直在寻找一种能够解决这一问题的办法。当他们把这一想法与深圳市银联沟通时，立即得到了他们的支持，并决定联手推出“免息分期付款”服务。\r\n　　仅两项医疗服务可享此待遇\r\n　　与其他“按揭消费”不同的是，“免息分期付款”医疗服务手续极为简单，患者的诊疗费用只要在1500元至3万元之间，能支付首期600元的诊疗费，无需进行审批，刷一下约定银行的信用卡就可完成“贷款”过程。\r\n　　医院推出的“免息分期付款”服务，近期还暂时限定在眼科的准分子近视矫正手术和口腔科的治疗项目上。该院有关负责人介绍说，这样做除了基于积累经验，为今后推广做准备，并最大限度地控制风险考虑外，主要是考虑到这两个项目的费用相对较高，不能一次性付款者相对较多。\r\n　　无稳定收入难享“免息分期付款”\r\n　　作为一种新的医疗服务方式，“免息分期付款”一推出就引起部分市民的兴趣，尽管服务项目目前还比较狭窄，市民认为将来完全可以向其他医疗服务项目推广。\r\n　　记者了解到，目前能享有该项服务的还只是符合取得信用卡条件的患者。一般要有稳定的收入，收入低、真正困难的市民则因为不符合取得信用卡的条件，其大额手术暂难享此待遇。\r\n　　院方表示，这样做主要是避免医院承担收款风险。\r\n　　市民建议“穷人”治大病也可“分期付款”\r\n　　市民王先生认为，最需要“免息分期付款”服务的是家庭困难而又不幸患大病、急病的患者。现实生活中，医院经常碰到一些本来可以治愈的病人，病治到一半，因为费用问题，只好请求出院回家。对这样的病人，出于对自身经济利益的考虑，大多数医院多采取听之任之的态度。\r\n　　由于目前推行“免息分期付款”仅仅是民营医院，其“宣传”的意图还比较明显。希望国有医院也能考虑创新收费方式，真正让困难户也能看得起病。\r\n　　王先生建议，医院与银行可以考虑让贫困户提供担保，如房产担保、亲友担保、社会团体担保等方式获得救急款项，再“分期付款”还款。通过这种付款方式，将付款压力分解，避免延误治疗。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/17.txt",
    "content": "　　牙防组事件再起风波，此次争议的核心是，口腔用品认证办法的管理对象应该是“保健”品还是“护理”品。\r\n　　本报独家获悉，4月24日，中国口腔清洁护理用品工业协会（原牙膏工业协会，下称“牙膏协会”）以书面形式向国家认证认可监督管理委员会（下称“认监委”）递交了一份文件，称如果把牙膏纳入认证，将不利于企业的发展。\r\n　　文件陈述了数条理由，诸如牙膏企业的每个产品都必须认证将会影响到生产和销售的效率等等。\r\n　　文件还称，即便必须认证，也应该是认证“口腔护理”用品，而不是“口腔保健”用品。\r\n　　4月13日，认监委发布了《口腔保健用品认证管理办法（征求意见稿）》。\r\n　　自发布之日以来，围绕这两个词的拉锯始终没有停止。而在意见征求期过后，卫生部法规司将根据程序将这个办法发布成为部颁标准。\r\n　　“如不采用‘保健’，而采用‘护理’，那么办法将失去意义。”江苏雪豹日化有限公司的董事长童渝于昨日向认监委提交了一份针锋相对的建议。\r\n　　据知情人士透露，牙膏协会如此激烈反对的原因是，一旦“保健”认证推行，将会由具备专业团队的相关单位来担当。而牙膏协会属于原轻工系统，缺乏这些资源。\r\n　　“所以他们更倾向于用‘护理’一词，可以名正言顺地把认证权纳入自己的管理范畴。”\r\n　　相对于强调牙膏功能性的“保健”，“护理”一词在字面的意义更倾向于清洁。前者的主管部门是卫生部门，后者则是牙膏协会。\r\n　　有消息人士称，现在已有数百家单位开始申请成为合法的牙膏认证机构。\r\n　　“最后的认证机构已经基本成型。”有关人士透露说，这个即将浮出水面的机构与卫生系统下属的全国牙防组有着紧密的“血缘”关系。\r\n　　在此之前的牙防组事件中，没有认证资格的全国牙防组违规认证十多年，被北京律师李纲告上法庭。此后，认监委紧急启动认证程序，目前最后的用词尚不明朗。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/18.txt",
    "content": "&nbsp;中国人为啥没有西方人高? \r\n　　饮食人类学家发现，旧石器时代的先祖们茹毛饮血，食肉和生食，身材比我们高大30％左右。今天的西方人，仍然喜欢吃带血丝的肉和生菜色拉，身材也仍旧比吃米面和爱烹调的亚洲人“大一号”。特别是阿尔卑斯山以北的日耳曼民族，分布在德国、荷兰和北欧等地，冬天长，睡眠久，喝鲜奶，食生肉，男人平均身高1.8米以上。其中，荷兰人又酷爱鲜奶和乳制品，人均身高为世界之最。 \r\n\r\n\r\n\r\n\r\n\r\n　　营养学家发现，谷物和薯类含凝聚素，影响蛋白的吸收和多胺的数量，会使生长缓慢，身材矮小。肉食比素食含有更丰富的营养和性激素原料，生食比熟食含有更多的生长激素原料。人的发育在12岁前主要靠生长激素，12~25岁主要靠性激素。营养和激素水平可以影响当代人身高，持续到四代以后可以显著改变遗传基因。\r\n　　在百万年漫长的冬夜里，北欧人世世代代长时间睡眠，分泌了充足的生长激素。同时大量的动物性生食提供了丰富的营养和性激素原料，这使得他们能够昂首全人类。在动物性食品中，牛奶含大量激素，它可以使小牛在数月里长高，也可以帮助乳糖酶充足的小孩在数年内长高。喝奶最多、乳糖酶充足的荷兰人，平均身高成为人类的“珠峰”。\r\n　　以下的最佳营养、睡眠和运动方式，会使你的孩子长得高：\r\n　　第一、最佳营养。\r\n\r\n\r\n\r\n\r\n　　多吃10类食品，包括鱼类、海鲜、海藻、肉类、蛋类、菌类、坚果、种子、蔬菜、水果，有些可生吃；多吃母乳，多喝鲜奶(如果乳糖酶充足)，不加热，以保证营养素和激素原料的摄入。\r\n　　早、晚是喝奶的最佳时机，早餐时喝奶，给一天的活力提供充分的营养保证；晚上喝牛奶，不但有助于睡眠，而且有助于人体对其营养成份的吸收。最佳营养 \r\n\r\n\r\n　　据美英两国医学专家研究发现，牛奶中含有两种过去人们未知的催眠物质，其中一种是能够促进睡眠的以血清素合成的色氨酸，由于它的作用，往往只需要一杯牛奶就可以使人入睡；另外一种则是具有类似麻醉镇静作用的天然吗啡类的物质。所以，如果在早晨饮奶，就必然会使人的大脑皮层受到抑制，影响白天的工作和学习。此外，早晨饮奶也不利于消化和吸收，这是因为牛奶的蛋白质要经过胃和小肠的分解形成氨基酸后才能被人体吸收，而早晨空腹状态下，胃、肠的排空是很快的，因此牛奶还来不及消化就被排到了大肠。再有，食物当中被吸收的蛋白质只有在热量充足的基础上才能构成人体组织的一部分，倘若热量不足，吸收的蛋白质就很快变成热量而被消耗掉了，这无疑是一种大材小用的浪费。 \r\n　　因此营养专家们认为，牛奶最好在傍晚或临睡之前半小时饮用。　　喝牛奶应当避误区　　牛奶含有丰富的营养，其中不但包括必需氨基酸，还有含量高且易吸收的钙，长期饮用对身体非常有好处。不过，饮用牛奶一定要讲究方式，以下是喝牛奶常见的误区，你一定要注意避免——— \r\n　　空腹喝牛奶　　空腹饮用牛奶会使肠蠕动增加，牛奶在胃内停留时间缩短，使内部的营养素不能被充分吸收利用。喝牛奶最好与一些淀粉类的食物，如馒头、面包、玉米粥、豆类等同食，有利于消化和吸收。 \r\n　　食物搭配不当　　牛奶不宜与含鞣酸的食物同吃，如浓茶、柿子等，这些食物易与牛奶反应结块成团，影响消化。 \r\n　　偏爱高度加工的牛奶　　高度加工后的牛奶，其营养价值不一定比鲜牛奶好。这是因为经过多次加工后，牛奶中大多加入了微量元素或无机盐，但这些成分并非每个人都需要补充，所以也就不一定适合每一个人。\r\n　　第二、睡眠充足。\r\n\r\n\r\n\r\n\r\n　　12岁以下睡眠8小时以上，以保证生长激素的分泌。最佳睡眠 \r\n\r\n　　睡眠或觉醒是正常的生理过程，但它不是人为能完全自主控制的活动，而是一个被动过程。它不像人体某些活动可按人的意志，说来就来，要止则止。失眠的人常常难以诱导师自己进入睡眠而苦恼。其实早期的轻度失眠，经过自我调理的办法就常可得益，具体归纳如下： \r\n　　平常而自然的心态。出现失眠不必过分担心，越是紧张，越是强行入睡，结果适得其反。有些人对连续多天出现失眠更是紧张不安，认为这样下去大脑得不到休息，不是短寿，也会生病。这类担心所致的过分焦虑，对睡眠本身及其健康的危害更大。 \r\n　　寻求并消除失眠的原因。造成失眠的因素颇多，前已提及，只要稍加注意，不难发现。原因消除，失眠自愈，对因疾病引起的失眠症状，要及时求医。不能认为：失眠不过是小问题，算不了病而延误治疗。 \r\n　　身心松驰，有益睡眠。睡前到户外散步一会儿，放松一下精神，上床前或洗个沐浴，或热水泡脚，然后就寝，对顺利入眠有百利而无一害。诱导人体进入睡眠状态，有许多具体方法，例如：放松功，已在民间流传，可以借助。此外，再介绍两种简而易行之法： \r\n　　闭目入静法。上床之后，先合上双眼，然后把眼睛微微张开一条缝，保持与外界有些接触，虽然，精神活动仍在运作，然而，交感神经活动的张力已大大下降，诱导人体渐渐进入睡意蒙胧状态。 \r\n　　鸣天鼓法。上床后，仰卧闭目，左掌掩左耳，右掌掩右耳，用指头弹击后脑勺，使之听到呼呼的响声。弹击的次数到自觉微累为止。停止弹击后，头慢慢靠近睡枕，两后自然安放于身之两侧，便会很快入睡了。 \r\n　　睡眠诱导。聆听平淡而有节律的音响，例如：火车运行声、蟋蟀叫、滴水声以及春雨淅沥淅沥声音的磁带，或音乐催眠音带，有助睡眠，还可以此建立诱导睡眠的条件反射。 \r\n　　饮热牛奶法。睡前饮一杯加糖的热牛奶，据研究表明，能增加人体胰岛素的分泌，增加氨酸进入脑细胞，促使人脑分泌睡眠的血清素；同时牛奶中含有微量吗啡样式物质，具有镇定安神作用，从而促使人体安稳入睡。 \r\n　　合适的睡姿。睡眠姿势当然以舒适为宜，且可因人而异。但睡眠以侧卧为佳，养生家曹慈山在《睡诀》中指出：“左侧卧屈左足，屈左臂，以手上承头，伸右足，以右手置于右股间。右侧卧位反是。”这种睡眠姿势有利于全身放松，睡得安稳。 \r\n　　若疲劳而难以入睡者，不妨食用苹果、香蕉、橘、橙、梨等一类水果。因为，这类水果的芳香味，对神经系统有镇静作用；水果中的糖分，能使大脑皮质抑制而易进入睡眠状态。 \r\n　　若因出差在外，不适应环境而致失眠时，应先有思想准备，主动调适，有备无患，不致因紧张担心睡不好。同时还可采用以上助眠之法，则可避免失眠。最佳运动 \r\n\r\n　　第三、足量运动。\r\n\r\n\r\n\r\n\r\n　　尽量在户外，每天运动几个小时以上，以增加各种营养物质，包括维生素D、钙和“太阳能”的形成和吸收，促进骨骼和肌肉的快速生长。\r\n　　身高能否如意，取决于几个因素，首先是遗传因素，占70％，此外，取决于其他条件，包括运动、营养、环境和社会因素等。为了让孩子长得更高一点，家长应注意以下几点：　　一、莫错过生长快速期　　在儿童少年青春发育过程中，何时身高长得最快呢?研究证实，绝大多数中国汉族儿童的身高突增高峰为女童12岁左右、男童14岁左右；90％以上女童身高增长最快的年龄在11～13岁之间，男童为13～15岁之间。为了让孩子长得高一些，家长尤其应注意孩子在生长快速期的营养、运动等问题。}&nbsp;　　二、应注重营养补充　　营养是儿童体格生长的关键。体格正常生长所需的能量、蛋白质和氨基酸，必须由食物供给，主要是肉、蛋、豆及豆类食物。骨的形成还需要足够量的钙、磷及微量的锰和铁。钙的摄入不足及维生素D缺乏时，会造成骨矿化不足，维生素A缺乏会使骨变短变厚，维生素C缺乏会使骨细胞间质形成缺陷而变脆，这些都会影响骨的生长。&nbsp;　　目前一般家庭在有荤有素的饮食中，营养应该是全面及足量的，家长应该注意不要让孩子养成偏食的习惯，更不要让孩子过多地吃零食而影响重要营养物质的摄入。　　三、莫忽视运动锻炼　　体育运动可加强机体新陈代谢过程，加速血液循环，促进生长激素分泌，加快骨组织生长，有益于人体长高。以下几种运动对增高有一定效果，不妨一试。　　1."
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000013/19.txt",
    "content": "　　9日在京举行的世界卫生组织慢性病全球报告中文版首发式上，卫生部公布了中国慢性病情况。其中一个令人瞠目的数字是，目前全国约有3．5亿吸烟者，2000年由吸烟导致的死亡人数近100万人，超过艾滋病、结核、交通事故以及自杀死亡人数的总和，占全部死亡人数的12％。\r\n　　卫生部警告说，如不采取控制措施，预计到2020年时这个比例将上升至33％，死亡人数将达到200万人，其中有一半人将在35－64岁之间死亡。\r\n　　2002年我国男性吸烟率为66．0％，女性吸烟率为3．08％，与1996年比，尽管吸烟率略有下降，随着总人口的增加，吸烟人数仍然增加了3000万人。\r\n　　吸烟对青年十分有害，因此，应尽早戒烟。戒烟方法很多，下面十二种戒烟法，可供少年吸烟者试一试：　　(1)特意在一二天内超量吸烟（每天吸两包左右），使人体对香烟的味道产生反感，从而戒烟；或在患伤风感冒没有吸烟欲望时戒烟。　　(2)想象自己在吸烟，同时想象令人作呕的事情（比如你手中烟盒或香烟上有痰渍等等）。　　(3)将戒烟的原因写在纸上，经常阅读；如能可能，尽量补充新内容。　　(4)将想购买的物品写下来，按其价格计算可购买香烟的包数。逐日将用来购买香烟的钱储存在“聚宝盆”内。每过一个月，清点一次钱数。　　(5)同朋友打“赌”，保证戒烟。当然这要用自己的烟钱作为 “赌注”。　　(6)不整条买烟。\r\n&nbsp;&nbsp;&nbsp; 相关事件:\r\n&nbsp;&nbsp;&nbsp; 卫生部：我国青少年吸烟人数高达5000万\r\n&nbsp;&nbsp;&nbsp; 9日在京举行的世界卫生组织慢性病全球报告中文版首发式上，卫生部公布的中国慢性病情况表明，目前中国青少年吸烟人数高达5000万人。&gt;&gt;&gt;全文\r\n&nbsp;&nbsp;&nbsp; 与潜意识对话 临床催眠治疗能帮助戒烟\r\n&nbsp;&nbsp;&nbsp; 美国科学家最近经研究发现，在正规的临床催眠师帮助下接受催眠治疗，有可能帮助吸烟者成功戒烟且长时间保持戒烟状态。&gt;&gt;&gt;全文\r\n&nbsp;&nbsp;&nbsp; 生活习惯影响烟瘾 晚睡早起的人烟瘾更大\r\n&nbsp;&nbsp;&nbsp; 据最新一期《国际生物钟学》期刊研究显示，德国科学家发现，早晨起床时间在5点之前、晚上11点之后睡觉的人更容易吸烟！&gt;&gt;&gt;全文"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/10.txt",
    "content": "&nbsp;足彩06032期王智意甲解盘 \r\n　　1.卡利亚里VS国际米兰：杯赛对国米的吸引力更大，目前平赔较低，本场在“0”的基础上需适当补“1”。\r\n　　2.切沃VS佛罗伦萨：主队近来状态出现下滑，客队为冠军杯名额则到了不容有失的阶段，然而澳彩却为本场开出主队低水的平手初盘，看来“紫百合”是不会轻松拿到3分。\r\n　　3.恩波利VS阿斯科利：庄家仅为主场5连胜的恩波利开出平半浅盘，分明是对该队取胜信心不足的表现。\r\n　　4.拉齐奥VS帕尔马：主队在球半盘下的赢盘能力并不突出，而且初盘存在刻意看低帕尔马的嫌疑，本场补“1”稳妥。\r\n　　5.AC米兰VS罗马：米兰很少在对手身上发生连续输盘的事情，首回合米兰输盘，本场可对他们看高半线。\r\n　　6.帕勒莫VS梅西纳：此战已经无关紧要，初盘显示本场是“3/1”格局。\r\n　　7.雷吉纳VS尤文图斯：初盘显示了客队的强大，且本场关系到客队夺冠问题，此时尤文图斯可任胆选。\r\n　　8.特雷维索VS乌迪内斯：乌迪内斯在客场已连续拿下3盘，在状态正佳的时候，澳彩只为其开出平手初盘，想必“乌鸡”的势头会就此中断。足彩06032期王智德甲解盘 \r\n　　9.科隆VS比勒菲尔德：初盘高开意图明显，庄家引筹码去上盘的嫌疑极大，本场科隆有望不败。\r\n　　10.拜仁慕尼黑VS多特蒙德：多特蒙德客场至多连赢两盘，本场已到其盘路极限，而且澳彩初盘也有意在冷落主队。\r\n　　11.汉堡VS不莱梅：半球盘下两队在本赛季尚无平局记录，本场适合选择“3/0”。\r\n　　12.杜伊斯堡VS美因兹：初盘与欧赔极为不符，庄家有利用主队已经降级的题材诱下美因兹的嫌疑。\r\n　　13.沙尔克04VS斯图加特：初盘主队水位偏高，目前斯图加特客场盘路有反弹迹象，本场不排除客队抢分可能。\r\n　　14.沃尔夫斯堡VS凯泽斯劳滕：命悬一线的战役，庄家为本场开出了较高的平局赔率，想必两队有望分出胜负。\r\n　　栏目心水(256元)\r\n　　0 03 1 31 3 31 31 1 3 3 30 3 30 30\r\n　　栏目心水(2048元)\r\n　　01 10 1 31 30 31 31 1 3 3 30 31 31 302&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/11.txt",
    "content": "　　这是一次跨越世纪的重逢，这是一次弥补历史的棋坛盛事。5月23日至27日，在美丽的沈阳世博园，来自中国、日本和韩国三国的九位当年叱咤世界棋坛的围棋元老，将上演一次对决。昨天，本次元老赛的参赛者之一、中国围棋协会主席陈祖德表示，他对即将在沈阳揭幕的2006年中、日、韩三国围棋元老赛非常期待：“这是一次弥补历史的比赛！”　　三国元老首次聚首　　本次三国元老赛由国家体育总局棋牌运动管理中心、中国围棋协会主办、由沈阳市体育局、沈阳市体育总会、沈阳晚报、沈阳市围棋协会、沈阳电视台协办。比赛地点设在沈阳世界园艺博览会，是2006年沈阳市承办的级别最高的比赛，也是2006年国内外广泛关注的重要体育赛事之一。　　参加比赛的中日韩围棋元老都是二十世纪世界最著名的围棋代表人物，他们分别是中国队的陈祖德、王汝南和聂卫平；日本队的林海峰、宫本直毅和羽根泰正；韩国队的金寅、河灿锡和尹琦铉。除了中国的三位元老赫赫有名外，日本的林海峰是一代围棋巨人吴清源的弟子，曾三连霸名人战，五获本因坊，被日本《棋道》杂志敬称为棋界“阿信”；宫本直毅九段师从于关西棋院创始人桥本宇太郎九段，他在1974年率团访华，对聂卫平一生的命运发挥过至关重要的影响。中国棋迷相对陌生的金寅更是韩国著名的超一流九段棋手。相当于韩国的“陈祖德”，从1965年开始，韩国进入了名副其实的“金寅时代”，曾影响韩国围棋界十多年，七十年代后期，由于曹薰铉、徐奉洙等新人的崛起，金寅渐渐地退出了棋战的第一线。但正是他将韩国围棋引上了现代之路。陈祖德：这是弥补历史的比赛　　中国围棋协会主席、原中国棋院院长陈祖德先生，昨天在接受本报记者采访时对这次比赛给予了很高的评价，“这是世界第一次！”陈老说，“以前我们只是分别搞过中日和中韩的元老比赛，我们这批三个国家的棋手聚会还是第一次，因此这次比赛让人感到很兴奋。”　　陈祖德介绍说，因为各种历史原因，他和那个时代的韩日两国的高手们在各自棋力达到顶峰的时候没有交过手，这可以算是一个历史的遗憾，而这次三国元老赛正是弥补了他那个时代的选手的一个遗憾，填补世界围棋的一次历史空白，同时也将对中国围棋产生深远的影响。　　当陈祖德听说比赛要在美丽的沈阳世博园举行时，显得非常的高兴：“那太好了，我早就听说那里非常美，我想在那里比赛将是一次享受！这次聚会太令人期待了！”　　世博园将书写世界围棋佳话　　美丽的沈阳世博园已迎来八方游客，而这次九位中日韩围棋元老的跨世纪聚会，将为这美丽的地方书写一段佳话。据了解，本次比赛将在25和26日两天举行交叉比赛，到时候，当年未能一决雌雄的围棋元老们将亮出各自的绝活，留下一个个经典的对局。　　棋盘山，流传着传说与故事，凝聚着历史与现实融合的美丽，这里，将迎来一代宗师们的笑语；世博园，汇聚着鲜花与绿草，传递着人与自然和谐共生的理念，这里，还将留下世界围棋的一段佳话……　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/12.txt",
    "content": "\r\n　　皇帝“金口”吓走奇才\r\n　　詹姆斯绝对全能，能突破、能投篮、能运球、能传球，还能……用嘴赢得比赛。在骑士队114比113战胜奇才队以总比分4比2晋级东区半决赛的比赛中，詹姆斯就施展了一回他的嘴上功夫，仅只言片语就说得阿里纳斯罚输了比赛。刚刚在联盟里混了三年的詹姆斯，已经开始向伯德、米勒等“口技”出众的老前辈看齐了。\r\n　　现场 一张嘴战败一双手\r\n　　阿里纳斯有一双投手的手，这双手可以让他投中三分线两米开外的三分球，可以让他在对骑士队的生死大战上独得36分。然而阿里纳斯没有想到，当这双可以把罚球命中率控制在80％以上的手遭遇詹姆斯宽而厚的双唇时，竟然抖得连一个球也罚不进。\r\n　　是阿里纳斯的手葬送了奇才队，还是从詹姆斯唇间吐出的只言片语成就了骑士？\r\n　　一切应该从比赛最后两秒说起。当时，得到球的阿里纳斯没有选择地在三分线两米开外起跳投篮。球出手后，阿里纳斯的双眼一直盯着皮球在空中飞行的轨迹，当球进筐的一刹那，阿里纳斯几乎和全场观众的惊呼声同步举起双手。这是他对这双手的感谢，是它们让奇才队出现了一丝生的希望。或许，当时的阿里纳斯已经开始认为胜利女神在这一天是站在他们这边的。\r\n　　可一切并不顺利，阿里纳斯的最后一投好像耗尽了他的神奇。在加时赛里，骑士队的防守让他一分未得。直到比赛还剩15秒，休斯对阿里纳斯犯规，后者才获得了两次轻易得分的罚球机会。而这时，奇才队领先一分。\r\n　　本赛季罚球命中率高达82%的阿里纳斯走上了罚球线，在习惯性的将球绕身三周之后，他的第一罚并没有罚中。手感还没有恢复，阿里纳斯深吸了一口气。\r\n　　就在这时，詹姆斯走到阿里纳斯身边，拍着对方的胸口，低着头轻轻地说道：“如果你连第二罚也错失了，你知道谁会来终结比赛。”在之前第三场和第五场的较量中，骑士队均以一分优势险胜，而且都是由詹姆斯在最后时刻强攻上篮投中制胜球。\r\n　　阿里纳斯的表情变得很凝重，而他的罚篮准备动作也发生了改变。他第二次罚球前，并没有在腰间绕球，而是直接罚篮。这是平时的阿里纳斯绝不会做的事情。阿里纳斯心急了，方寸大乱！结果，第二罚球偏得比第一罚时还离谱。骑士队反攻的机会来了。\r\n　　战术 皇帝发话 小兵下手\r\n　　詹姆斯真的履行了对阿里纳斯的“诺言”，在接下来的进攻中对奇才队进行了绝杀吗？没有。完成绝杀的是阿里纳斯根本想不到的达蒙·琼斯。应该说，詹姆斯的话完全是一次攻心战术。\r\n　　在阿里纳斯罚失两球后，骑士队随即叫了暂停。主帅布朗布置了他这场比赛的最后一个战术：詹姆斯主攻，休斯接应，如果休斯还没有机会，球就交给琼斯投。\r\n　　比赛再次开始，詹姆斯一接到球，阿里纳斯和丹尼尔斯马上跟出三分线，对詹姆斯进行包夹，奇才队显然不希望再重蹈前几场的覆辙，因此立刻对其采取包夹战术。已经知道如何应对的“小皇帝”将球传给休斯，而在一旁防守琼斯的巴特勒立刻选择了放弃对琼斯的防守，去盯防休斯。而此时琼斯在底线无人防守，休斯立即传球，琼斯一击命中。\r\n　　 \r\n“很显然，胜利女神今晚并没有站在我们这边。你能想象吗？一个罚球命中率在80%的投手，在最后时刻竟然两罚不中。我只能说，今晚太糟糕了。”比赛已经结束，阿里纳斯还在想着刚才发生的事情。\r\n　　历史 “邮差周日不送信”\r\n　　詹姆斯并不是第一个使用攻心战术帮助球队获胜的人。这其中最经典的莫过于原公牛队著名球星皮蓬对马龙说的那句“邮差周日不送信”，简直就是詹姆斯对阿里纳斯的翻版。\r\n　　1996-97赛季公牛与爵士总决赛第六场，那是一个星期天。两支球队杀得难解难分，终场前35秒战成82比82平。马龙在最后关头获得罚球机会，但站在一边的皮蓬对绰号“邮差”的马龙说：“星期天邮差不送信。”一句话让马龙“心惊胆战”，结果终场前9.2秒居然两次关键罚球砸筐而出。\r\n　　而此后“飞人”乔丹在下一回合进攻时，一个胯下运球，突然急停并向后撤步，一记稳稳的跳投随着终场哨响飞入篮筐，公牛队84比82两分险胜。这一球也是近20年来NBA总决赛中惟一一个真正的压哨绝杀球。\r\n　　“口技大师” 各有绝活\r\n　　用言语干扰对手心态，从精神上击败对手的情况在NBA的赛场上很普遍，包括伯德、乔丹、米勒在内的一批天皇巨星都会利用这招来打击对手的自信心。然而每位巨星运用“口技”的特点却各不相同。\r\n　　伯德 先知型\r\n　　伯德喜欢对某个事件进行“预测”，再把他“预测”的结果告诉对手，最后用自己的实力将他的“预言”实现。\r\n　　“我要在这里进三分送你们回家。”——伯德在一场比赛的最后一次进攻前指着三分线外的一块地板对对手说，当时拥有进攻权的凯尔特人队与对手平分。结果界外球开出后，伯德真的在那里接球投进压哨三分，赢下比赛。\r\n　　“你们决定谁要拿第二名了吗?”——1986年全明星三分球大赛前，伯德一进休息室就问所有参赛者。伯德最终夺得了那届三分大赛的冠军。\r\n　　乔丹 显摆型\r\n　　乔丹喜欢向所有人炫耀自己的超人实力，因此，使用“口技”也就变成了他向对手显摆的工具。在他使用这招时，完全是一副上帝对凡人训诫的模样。\r\n　　“你投呀，我让你投……投呀！”——乔丹在防守时最常说的话，通常情况下对手都会投篮不中。\r\n　　“加油，你差点就守住我了。”——乔丹在进攻得手之后最常说的话。\r\n　　姚明 \r\n努力型\r\n　　别以为母语是汉语的姚明不会使用“口技”。在NBA征战了三个赛季的姚明融入NBA是全方位的，在口技方面虽然不比之前几位大师，但也有上乘之作。\r\n　　“我要打得你把护齿都吞下去。”——2005年2月10日，在火箭队105比92战胜公牛队的比赛中，姚明对公牛队中锋钱德勒说。在说完这句话后，姚明在对手头上连得6分。是役，他10投9中砍下21分。\r\n　　“口技对决”米勒太嫩\r\n　　使用“口技”攻击对手，并不是百分之百能成功的。在NBA的历史中，经常使用“口技”的雷杰·米勒就碰到过使用“口技”得到反效果的事情，因为他攻击的对象是心理素质超强且更擅长“口技”的伯德。\r\n　　在米勒的新秀赛季，年轻的米勒在步行者队的主场第一次碰到伯德。当时步行者队落后两分，伯德获得罚球机会。米勒随即向伯德发出“嘿！嘿！”的干扰声。“你没开玩笑吧，菜鸟？”伯德对米勒说，然后从容地罚进一球。当伯德再次得到球时，他又说：“菜鸟,我告诉你，我是现在联盟里最顶尖的投手，全NBA！知道吗？你还有什么想说的吗？”接着，伯德又罚进一球。“我当时真是蠢到十八层地狱去了。”米勒在自己的回忆录中提到这段往事时，评价自己当时的表现说。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/13.txt",
    "content": "\r\n　　有江湖的地方，就有恩怨。一个远离辽足视线很久的人物———马林，突然和三轮不胜的辽足扯上了关系。“下岗的马林接替战绩不佳的唐尧东？”一件原本也许是捕风捉影的事，引来当事人完全不同的反应：马林一笑置之，唐尧东则咆哮如雷。而辽宁队队长肇俊哲则说：“辽宁队现在遇到很多困难，希望外界的炒作不要再给辽足添乱了。”\r\n　　马林笑言：我下岗还能给别人造成威胁？\r\n　　昨天下午，马林刚办理完辞去中甲江苏舜天俱乐部主教练一职的后续事务，由南京飞回大连，被几个好友拉着接风，正推杯换盏之际，一则辽足主帅的消息却让他哑然失笑。\r\n　　昨日一则报道称，辽宁队近期战绩不佳，逼近降级区，如果辽宁队持续不胜，俱乐部将考虑换帅，而辽足旧帅马林，刚刚从江苏下岗，又有张曙光和辽宁队队员的支持，极有可能接替唐尧东。而在今年年初的辽足主帅竞聘时，马林恰恰是唐尧东的竞争对手。\r\n　　“我刚刚从南京回来，刚下飞机，如果你不说，我还不知道这事。”马林似乎无事一身轻，还陶醉在与舜天“甜蜜”的分手中，“舜天集团董事长、俱乐部老总对我的工作都给予了肯定，通过几个月的相处，我们相互了解，彼此信任支持，我走的时候，俱乐部老总特地送到机场，我们还抹了眼泪。”\r\n　　不在其位，不谋其政。马林说他对辽宁队的感情从来都是割舍不下，但在带舜天期间，他只关注自己队伍和对手的情况，对辽宁队的情况一无所知，毕竟是两个级别的联赛，现在他又刚刚下岗，正想休息几天。至于将来的事，他也不好说。\r\n　　唐尧东咆哮：谁能带好辽宁队你就找谁去！\r\n　　记者昨日连线唐尧东时，原本是想请他介绍一下辽宁队今日主场迎战西安国际的备战情况，国际上轮战胜实德后，士气正旺，欲在辽宁主场取得两连胜。不料唐尧东没好气地说：“这怎么能说，这是机密。我都说了，明天的比赛还怎么打。”\r\n　　记者随后问到唐指导是否感受到压力，有媒体称俱乐部正在酝酿换帅，当听到马林这个名字时，唐尧东顿时怒了：“谁能带好辽宁队你就找谁去，这事你找我干吗。”记者请其心平气和一些，还未等记者说完，唐尧东极其严肃地把话一字字蹦道：“我———挂———电———话———了。”\r\n　　辽足俱乐部董事长陈加松正在北京商谈招商事宜，在被问到换帅的问题上时，陈加松表示到目前为止还没有考虑过，而张曙光的电话则一直无人接听。\r\n　　队长肇俊哲：外界声音导致辽足不团结更可怕\r\n　　小肇在谈到今天对国际的比赛时，表示力争3分，国际虽然赢了实德，但毕竟是在辽足主场，辽宁队定当全力以赴。在谈到换帅的传闻时，小肇十分反感：“辽宁队输球并不可怕，外部的声音导致辽宁队内部不团结才更可怕。”\r\n　　小肇说：“在辽宁队最困难的时候，全队上下都在尽力打好每一场比赛，希望外界的炒作不要给辽宁队添乱了。唐导非常不容易，队里人手本来就缺，再加上伤病，上轮客场输给天津，也是实力摆在那儿。输球是大家的责任，不能让一个人背。当然，作为教练，责任会更大些，压力也大。现在全队上下都十分支持唐导，我们现在最需要的就是团结一致，共渡难关。”\r\n　　小肇最后说道：“谁都不容易，大家互相理解吧！”\r\n　　本报记者黄进报道"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/14.txt",
    "content": "　　北京、莫斯科、美国 三次看升旗感受不同　　大郅：北京这次最难忘　　《体育天地·mvp》记者朱冲报道　　“起来，不愿做奴隶的人们……”5月8日凌晨5点，王治郅随中国男篮一起在天安门广场参加了升旗仪式。当国歌响起的时候，王治郅两眼紧盯五星红旗，轻声唱着国歌。这是王治郅四年以来第一次在自己祖国的土地上听到国歌响起，看到国旗升起。所以，王治郅说：“这是我最难忘的一次看升旗。”　　国旗让我感到责任　　在谈到升旗的感受时，王治郅说：“所有热爱祖国的人在看到五星红旗冉冉升起的时候都会有同一种感受，那就是作为一名中国人的骄傲和自豪。我一共在天安门广场参加过两次升旗，第一次是上初中的时候，虽然时间过去十几年了，但这种感情是不变的，而且只会继续加深。”　　的确，这一次升旗对于王治郅来说很特别，因为这是他在经历了“滞美不归”事件之后第一次看到升旗，这是他四年以来第一次回到自己的祖国看到升旗。“四年来祖国的发展日新月异，升旗的时候，我脑子里想了很多，浮现了很多场景。我想起了回国后我父母带我逛漂亮的四环、五环路，想起了看到的雄伟建筑，想起了随处可见的‘新北京、新奥运、同一个世界、同一个梦想’的宣传牌。”王治郅严肃地说，“当时我就感受到一种责任，我希望在2008年的北京奥运会上站在领奖台上再次看到国旗升起，听到国歌响起。”　　在莫斯科看升旗很激动　　说到北京奥运会，王治郅又自然而然地想起了2001年7月13日的莫斯科，北京申奥现场。当时，王治郅是申奥的形象大使。　　“作为北京申奥代表团的成员，当我在莫斯科亲眼看到萨马兰奇宣布北京获胜的那个时刻，我真的感到心潮澎湃。”王治郅说，“在申奥现场没有升旗仪式，没有奏国歌，但当宣布我们获胜的时候，我们全部拿出了早就准备好的国旗。等回到大使馆，看到国旗升起、国歌响起的时候我们所有人都感到无比的激动和自豪。”　　看到姚明就能看到国旗　　除了奥运会以外，这次升旗还让王治郅想起了他在美国的生活。在美国的四年是大郅最为孤独的经历，也是最想念祖国的时候。“在美国，只有到中国大使馆去才能看到国旗，听到国歌。”王治郅说。　　当王治郅还在NBA时，他和姚明在赛场上的每一次相遇都被称为移动长城的对接。“我记得，无论我遇到姚明还是巴特尔，球馆里都会有很多华人球迷来加油，看台上也会看到国旗，那时候我们就感到一种身处国外的民族自豪感。”王治郅说，“但我和姚明在场上的相遇机会很少，更多的只能是在场下匆匆聊几句，所以我特别能理解姚明所说的，在NBA就感到中国人太少，我真的希望看到越来越多的中国人能够出现在世界最高水平的联盟中证明我们中国人的实力。所以对于姚明成为状元秀，对于姚明在NBA取得的成就和成功，我由衷地替他感到高兴，这是所有中国人的骄傲。”"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/15.txt",
    "content": "\r\n\r\n　　本期足彩做为意德联赛的收官之战，仍保留了三大悬念，即意甲的冠军归属、欧冠资格之争及德甲的最后一场保级大战。相信很多理性彩民也会在选择上不敢轻易来把这三场比赛做稳胆来选择。下面，本人就本期足彩做以剖析，仅供大家参考。\r\n　　随着五大联赛即将全面结束，有四国联赛已经提前产生了本国联赛冠军，本周末的尤文图斯和AC米兰将把这个悬念留到最后。首先分析一下对阵形势：主场王A米对阵的球队是对欧冠联赛虎视眈眈的“红狼”罗马，而客场王尤文将对阵早已安全上岸的自己的嫡系雷吉纳队，尤文更有三分领先优势。不考虑联赛冠军，A米也不可能允许自己一年内两次栽倒在“红狼“脚下，而尤文则更不会允许小弟坏了自己的夺冠美梦。可以说，两队绝对不允许自己有任何失误。“红狼”的奇迹要看竞争死敌佛罗伦萨败或平切沃，而自己则必须战胜A米才能搭上欧冠末班车，当然，这种理论上的可能会使任何人产生幻想。但要记住，这场比赛是“红狼”客场与国米死拼意大利杯后的第三天进行，夺杯与否的心理及体力将直接影响它的发挥。综合种种数据表明，A米将有95%的可能在圣罗西球场击败罗马（尽管有消息说罗马王子托蒂将复出登场）。而尤文将最可能在雷吉纳象征性的进攻下如愿以一个小比分顺利拿下，最大的奇迹则是尤文以一分的优势顺利夺冠。\r\n　　第二悬念是佛罗伦萨和罗马的冠军联赛资格之争。本赛季佛罗伦萨在重金投入下终于有了最好的回报，在“重炮”托尼的率领下，主客场发挥极为稳定，积分始终处于前列，而能够跻身冠军联赛是其队上下的最大目标，此翻客场挑战“飞驴”切沃，是其能否保住联赛第四的关键之战。但佛罗伦萨面对的对手是已经踏入联盟杯赛场的已经没有任何追求的切沃，这一战就看切沃的战意了，但不论怎样，指望罗马客场翻盘A米的希望毕竟不是很大。所以，无论佛罗伦萨输赢，其出现的机会还是最大的，以切沃的特点，又鉴于其客场曾输给过切沃，似乎好象不会轻易让佛罗伦萨过关的，但最大的可能是各取一分，互不伤了和气。不过指望佛罗伦萨客场战胜切沃似乎不大可能。\r\n　　第三悬念是相差一分的沃尔夫斯堡和凯泽谁能最后保级成功。这两支昔日的德甲油条终于在本轮迎来了决定命运的生死大战。本赛季“狼堡”主场的防守一直处于德甲的榜眼位置，进攻则处在榜尾。昔日顾头不顾尾的毛病终于以只加强防守不会进攻换取到了濒临降级的厄运。本赛季凯泽主场轻松拿下“狼堡”，但这回客场作战，尽管达到了只许胜不许输的境地，但面对整个赛季主场只失了十四个球的“狼堡”，恐怕再次取胜的可能性几乎就不存在了。生死一线间，决定命运的比赛，“狼堡”人是不会把优势转化为劣势的。如果凯泽选择狂轰乱炸式的进攻，或许输的更惨，本人估计，最有可能的结果是：战平占60%，“狼堡”胜40%。\r\n　　其它场次比赛，要侧重于赛季最后一个主场为基准，注意已掉级的几支球队可能会打出取悦球迷的进功足球，意甲倾向于二到三场平局，德甲几支强队之战主要考虑各参加世界杯国球员的战意。估计本期足彩奖金会有一定程度的提高。\r\n　　本人心水：\r\n　　1：31\r\n　　2：1\r\n　　3：31\r\n　　4：3\r\n　　5：3\r\n　　6：3\r\n　　7：10\r\n　　8：30\r\n　　9：3\r\n　　10：31\r\n　　11：30\r\n　　12：30\r\n　　13：3\r\n　　14：31\r\n　　\r\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/16.txt",
    "content": "\r\n　　刚刚在上周六以0比2惨败在长春队脚下的沈足，今天下午将在客场挑战升班马厦门蓝狮，尽管在此前，沈足曾在换帅之后创造了三连胜和四轮不败的骄人战绩，但随着上一轮主场失利，使得沈足刚刚赢来的保级优势顿时化为乌有，对此，沈足俱乐部总经理何兵表示：“过去的胜利已经成为过去，我们现在必须要冷静地面对现实，从现在开始，我们打的每一场比赛都是保级战，特别是跟厦门这样的保级球队作战，我们更是要全力争胜。”\r\n　　为了提前适应厦门当地的天气和场地，沈足在本周一就抵达厦门，开始了赛前备战，尽管在上一轮遭遇惨败，但沈足将士却并没有因此灰心丧气，相反，随着许博、普科两名绝对主力的回归，全队对本轮挑战厦门蓝狮充满了必胜的信心，场上队长汪强告诉记者：“我们上一轮输给长春其实很正常，一方面我们缺少了两名主力队员，另一方面今年长春队非常强，他们现在排名第二就足以说明他们非常有实力。不过，本轮和厦门队比赛，我们还是非常有信心拿下来，今年厦门队的实力并不是很强，虽然客场比赛有些困难，但我们全队的目标非常明确，就是全取3分，最坏也要带着1分回来。”\r\n　　许博和普科的回归也令主教练库夫曼感到非常高兴，因为他又可以派出他最满意的主力阵容出战。对于今天的比赛，库夫曼表示：“厦门队已经几轮没有赢球了，我想他们对这场比赛也会虎视眈眈，但中国有句俗话是狭路相逢勇者胜，到时候就看我们谁更顽强吧。”\r\n　　本报记者刘淼报道"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/17.txt",
    "content": "\r\n　　中新网5月10日电今日出版的辽沈晚报刊载了中国球员李铁从英国利物浦发回来的文章，详细阐述了他和老东家埃弗顿队解约的内幕。文章全文如下：\r\n　　今天我必须要在这里纠正一个概念上的错误。国内媒体昨天都用了“埃弗顿与李铁解约”这样的标题来报道我的留洋现状，其实这个说法是不正确的。\r\n　　我与埃弗顿队的工作合同在今年6月30日正式到期，埃弗顿目前只是初步决定“不再与我续约”，这与“解约”完全是两个概念。其实，我将离开埃弗顿早已经不是什么秘密，否则我也不会主动与其他一些球会进行积极的接触。最近两年，我因为伤病的原因一直没有替埃弗顿打过比赛，埃弗顿也在去年买进了大批前卫队员，人员储备方面显得很充足，所以可能教练感觉不再需要我了。\r\n　　这是再正常不过的游戏规则了，我非常理解埃弗顿的想法。事实上，是我主动找到埃弗顿决策层，先表明去意的。与我一起与俱乐部谈过话的还有邓肯·弗格森，他是因为年龄实在太大，明年就36岁了，没办法适应埃弗顿激烈的竞争，这才心生离意。而我，则是希望能换个地方得到新的发展机会。\r\n　　“不再续约埃弗顿”意味着我从7月份开始就成为自由球员，实际上这对我寻找新工作是非常有利的一个筹码，毕竟能不花一分钱就能得到一个身价100多万英镑的球员，对任何俱乐部都是一件很实惠的事情。也许大家还不知道，其实我在今年1月份的赛季中转会期里，就有过租借到别队的机会，但当时我就是考虑到那时我会有一笔不菲的转会费，这势必会影响到我的去向。所以，我才决定等到赛季结束，这无疑会帮助我找到更理想的新东家。\r\n　　再具体解释一下，基恩与曼联的那种分手形式叫“解约”。当时曼联在基恩的合同还有6个月到期的时候表态不再留用他，这样基恩就领得了一笔曼联支付的违约金，这才远投他乡的。如果埃弗顿队在我合同未到期之际与我“解约”，他们是得付违约金的。(李铁）\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/18.txt",
    "content": "\r\n\r\n\r\n　　第4场位：从第06020期胜负彩起，在第4场位上，最近11期足彩出现的数字序列为“31111331331”，已经连续11轮不出“0”，而此前“0”还是比较受欢迎的，这就意味着在连续11轮不出“0”后，本轮第4场位出“0”的几率很大，此外本场位目前连续出“1”的动力不是很强，如此看来，此场位拉齐奥VS帕尔马的比赛，彩路表明两队有望分出胜负。投注建议：3/0\r\n　　第6场位：从第06025期胜负彩起，在第6场位上，最近6期足彩出现的数字序列为“330300”，已经连续6轮不出“1”。而此前本场位连续出“1”的次数极多，这就意味着在连续6轮不出“1”后，本轮第6场位出“1”的几率已经大大增强，如此看来此场位帕勒莫VS梅西纳的比赛，彩路表明两队有望和平收场。投注建议：1\r\n　　第8场位：从第06024期胜负彩起，在第12场位上，最近7期足彩出现的数字序列为“3133313”，已经连续7轮不出“0”，而此前“0”还是比较受欢迎的，这就意味着在连续7轮不出“0”后，本轮第12场位出“0”的几率很大，此外本场位最近连续出“3”的动力过强，本场很可能出现回落，如此看来，此场位杜伊斯堡VS美因茨的比赛，彩路表明主队无望取胜。投注建议：1/0"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000014/19.txt",
    "content": "\r\n\r\n\r\n　　场次 对阵&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;时间&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;推介（128元）&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 推介（512元）\r\n　　1 卡利亚VS国　米&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n0/1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;0/3\r\n　　2 切　沃VS佛罗伦&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n0/3\r\n　　3 恩波利VS阿斯科&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n1/0\r\n　　4 拉齐奥VS帕尔马&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/1\r\n　　5 AC米兰VS罗　马&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/0\r\n　　6 巴勒莫VS梅西纳&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;3\r\n　　7 雷吉纳VS尤　文&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n0\r\n　　8 特雷维VS乌迪内&nbsp; \r\n14日21时&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;1\r\n　　9 科　隆VS比勒菲&nbsp; 13日21时30分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3\r\n　　10 拜　仁VS多　特 13日21时30分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;3\r\n　　11 汉　堡VS不莱梅 13日21时30分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/0\r\n　　12 杜伊斯VS美因兹 13日21时30分&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;3/1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n1\r\n　　13 沙尔克VS斯图加 13日21时30分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n&nbsp;3/1\r\n　　14 沃尔夫VS凯泽斯 13日21时30分&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n3/0\r\n　　上期成绩 11 10"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/10.txt",
    "content": "&nbsp;\r\n\r\n&nbsp; 中国游客在马来西亚 \r\n&nbsp;&nbsp;&nbsp; 中国“旅游休闲”商机，正从东南亚向东北亚“扇形展开” \r\n&nbsp;&nbsp;&nbsp;&nbsp;新华网北京5月6日电(记者钱春弦)5月2日，从事服装设计的胡明明第四次飞往泰国普吉岛度假。黄金周对她而言，就是躺在普吉岛沙滩上，晒一周太阳。作为中国公民最早的旅游目的地代表景点，普吉岛代表了东南亚国家在中国消费者心目中的独特地位：回头客越来越多。 \r\n中国游客涌至，“标志”泰国从海啸中复苏 \r\n&nbsp;&nbsp;&nbsp;&nbsp;泰国国家旅游局的数据显示，2005年前往普吉的中国旅游者达10万人次左右，预计2006年这个数字将突破15万，从而成为泰国南部旅游业在印度洋海啸后全面恢复的“重要标志”。 \r\n&nbsp;&nbsp;&nbsp;&nbsp;中国国家旅游局等权威部门的数据显示，“五一”期间，除港澳特区游外，中国公民出境旅游的主要目的地仍然是周边国家，而东南亚国家是首选之地。目前，中国游客已经成为新加坡观光、饭店、百货、餐饮业提高利润，增加就业的支柱。 \r\n&nbsp;&nbsp;&nbsp;&nbsp;新加坡雄心勃勃要成为中国旅游者中转站。世界旅游组织预测，未来10年中国将成为世界主要旅游强国，成千上万前往非洲、印度洋国家的中国游客，将是使新加坡成为世界航运中心的重要因素。 \r\n&nbsp;&nbsp;&nbsp;&nbsp;与喜爱“老地方”的胡明明不同，喜欢新奇的安新“五一”去了柬埔寨。在中国政府帮助维护当地文化古迹同时，这些古迹又吸引了中国旅游者，他们的消费，正成为这个中国邻邦的收入来源之一。 \r\n\r\n5月4日，一名小朋友乘坐摩托艇在海上兜风。新华社发 \r\n俄罗斯、蒙古游成为今年新亮点 \r\n&nbsp;&nbsp;&nbsp;&nbsp;东南亚国家打出“山水相连”牌，韩国和日本旅游界则希望以“文化渊源”赢得中国“休闲商机”。在《大长今》、“韩流”等文化因素刺激之下，中韩两国之间的航线变得越来越繁忙。就在“五一”前，大韩航空宣布计划5年内将韩中航线增至50条。而中韩日三国各自的经济中心上海、釜山、大阪开始致力于发展旅游业“黄金大三角”，并计划在“五一”后以“三驾马车”联袂去欧洲营销。 \r\n&nbsp;&nbsp;&nbsp;&nbsp;旅游交通经济分析师刘斌说，2006年“五一”黄金周，中国周边旅游的新亮点是俄罗斯、蒙古国。随着夏季到来，北亚风光呈现出独特的吸引力。俄、蒙两国也已开始设法“分享”中国的“休闲商机”了。目前，俄罗斯专门为中国旅游者成立的“无国界世界”协会正全力以赴利用中俄两国互办“国家年”的机遇，吸引更多中国游客“北上消费”。 \r\n&nbsp;&nbsp;&nbsp;&nbsp;旅游观察家指出，中国“旅游休闲”商机，正从东南亚向东北亚“扇形展开”，并惠及越来越多的邻邦。 \r\n&nbsp;&nbsp;&nbsp;&nbsp;“五一”前后，中国南方航空股份有限公司开通北京至伊尔库兹克航线，这是南航开辟的第五条中俄国际航线。海南[图库]航空也宣布要开通圣彼得堡航线。中国公民周边旅游从东南亚向东北亚“扇形展开”，航空业界则“春江水暖鸭先知”。 \r\n&nbsp;&nbsp;&nbsp;&nbsp;刘斌认为，目前东南亚抢得中国“休闲潮”之先，可以为中国东盟经济贸易一体化“推波助澜”。东北亚地区作为中国主要客源市场，“双向流动”将催生“东北亚旅游圈”，从而与东南亚旅游圈南北呼应。可以预测，这一扇形最终将由东北向西北，经中亚、南亚在中国的大西南地区实现东南旅游圈与南亚旅游圈的接合。这样，中国人的休闲不仅将成为所有周边国家的商机，而且将成为中国与这些国家睦邻友好的“休闲纽带”。 "
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/11.txt",
    "content": "　　　【据新华社北京5月6日电】2006年“五一”黄金周，以新马泰为主的东南亚地区继续成为中国公民出境旅游休闲的主要目的地，与此同时韩国、日本观光界大力推动“东北亚旅游圈”以吸引中国游客；俄罗斯、蒙古国也加入争抢中国游客的行列。中国国家旅游局的数据显示，“五一”期间，除港澳特区游外，中国公民出境旅游的主要目的地仍然是周边国家，而东南亚国家是首选之地。(编辑小娜)\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/12.txt",
    "content": "　　2006年3月底至4月初，在中国最大的出境旅游展——上海世界旅游资源博览会上，日本有关机构在进行宣传。伴随着“五一”黄金周的到来，许多中国游客走出国门，开始了他们的海外之旅。中国的黄金周不仅使国内旅游市场出现高潮，也为国外旅游业创造了商机。西班牙埃菲社日前报道说，一年3次的黄金周给国内外旅游者带来了良机。2005年，中国人外出旅行达到12亿人次，出境旅游达3200万人次。这个“亚洲巨人”已经是世界上最大的国内旅游市场。到2020年，中国将成为全球第四大旅游客源输出国。与世界其他旅游国家一样，西\r\n　　班牙希望来自中国的游客能大量增加。但要实现这一目标，必须具备拥有接待中国游客的专门人才和开通到中国的直通航线等条件。\r\n　　中国游客的足迹遍布全球\r\n　　埃及的金字塔、尼罗河及南方卢克索的帝王谷、王后谷等，都是中国游客的必游之地，有着无穷的神秘感和吸引力。记者在采访中了解到，“五一”黄金周期间到埃及的中国游客人数比较平稳。因为现在埃及天气逐渐变得炎热，不是旅游的最佳时节。在金字塔前，一对年轻中国夫妇激动地告诉记者，他们从小就对金字塔心驰神往，现在终于如愿以偿，感觉就像在做梦。一名在外企工作的中国男子说：“新马泰我都去过了，也常去欧洲出差，但感觉还是埃及比较神秘，令人向往，以后有机会还想再来。”\r\n　　由于今年三四月份泰国政局动荡，许多游客都取消了原定计划。所以，今年“五一”黄金周期间来泰国的中国游客不是特别多。泰国旅游局局长朱塔玛·丝瑞婉在“五一”前专门带着新线路和各种优惠折扣到上海搞活动，吸引中国游客。记者4月30日返回泰国前特地到中国银行北京分行打听了泰铢的兑换情况。平时泰铢是冷门币种，但这几天换的人特别多。与记者同机的一对香港夫妇说：“上次来，1港元能换5铢，现在只能换4铢多。”\r\n　　就像外国人到中国不能不逛故宫一样，地处曼谷老城区的大王宫，是来泰国的外国游客的必去景点。“五一”黄金周第二天，记者来到大王宫，一位名叫帕拉提的讲解员谈到中国游客时很兴奋，他用不怎么流利的汉语笑着说：“中国游客最多，是No.1，其次才是日本和韩国的游客。我是个英语讲解员，但中国游客太多了，我不得不学习汉语。”\r\n　　印度时代旅游有限公司的总经理瑞佳·纳亚尔介绍说，中国游客到印度旅游一般有3条线路：第一条就是北部印度金三角游；第二条是佛教圣地游；第三条是南部印度水乡游。她说，该公司近几年平均每年要接待不下30个中国旅行团，中国游客最想看的是印度神秘而多样的文化，然后是自然的风光。高72.56米的库塔布塔是印度最高古塔，是印度教文化和伊斯兰教文化交融的建筑。在该景区，记者遇到了一个来自上海的旅游团。领队吴女士告诉记者，近几年，来印度的中国游客特别多，尤其是在春节和国庆节前，报名来印度旅游的电话整天响个不停。“五一”期间，印度的天气特别热，泰姬陵里不让穿鞋，人们走在大理[图库]石地面上就好像踩在火盆上，所以游客并不多。尽管如此，来印度旅游的中国人还是比以前多了不少，据中国东方航空公司驻印度办事处的朱先生介绍，3年前在“五一”期间从北京飞往新德里的航班有一半座位是空的，现在，还不到“五一”航班就满员了，其中绝大部分乘客都是来旅游的。\r\n　　各国准备迎接更多中国游客\r\n　　中国正式开办公民出境旅游开始于1997年，当年的出境人数为532万人次，而2005年已达3100多万人次。面对中国游客人数的迅猛增长，各国都表现出了极大的热情，千方百计吸引中国游客。\r\n　　法国旅游业和服务业非常了解中国的节假日，每逢黄金周，都会提前做好准备。新年时，埃菲尔铁塔上有专人向登塔的中国游客赠送印有“恭喜发财”和“新春愉快”等字样的纪念品。“五一”期间，中国游客获赠的则是法国的五一节鲜花——玲兰花。不仅国家旅游机构对中国游客十分关注，地方上也是如此。为提供更好的旅游环境，鲁昂专门开设了中文网站，伊勒－维莱讷省政府也准备设立办公室专门负责与中国游客有关的事务。\r\n　　自从2004年欧洲向中国游客敞开大门以来，中国游客的人数与日俱增。据法国政府机构的统计，目前中国游客不仅在人数上已超过日本和美国，成为欧洲最大的外国游客群，消费能力也已超过了这两个国家的游客。2005年，来法国的中国游客达到60万人次，预计到2008年，将达到100万人次。埃菲尔铁塔、卢浮宫、香榭丽舍大街、巴黎圣母院、凯旋门和红磨坊等地都是中国游客的必去之处。巴黎的一些街道现在基本变成了中国人的免税店，那里很多店铺都是华人经营的，如果是法国人开的店铺，十有八九都有华人售货员。\r\n　　埃及对接待中国游客很重视，在金字塔等主要景点，不但配有中文版的导游册，而且说中文的埃及导游也越来越多。埃及人认识到，欧洲、美国是他们的主要游客源，但这些国家的旅游市场基本都饱和了。正是看中了中国客源的巨大潜能，埃及才加大了吸引中国游客的力度。\r\n　　日本政府提出“观光立国”战略，将中国列为最重要的游客来源国，并采取各种措施吸引中国游客。去年，日本全面开放了中国游客团体游。2006年春节，日本方面在位于富士山麓的“富士乐园”为中国游客举行了专场活动，与游客一起庆祝新春佳节。日本的许多旅游景点都设置了中文标志，并附有中文解说和广播，一些面向外国游客的免税商店或购物中心还聘请了能讲普通话的服务员和导购小姐。尽管日本的地名基本上都用汉字标写，但东京等主要城市的地铁车站还是增添了简体中文标志。此外，日本的金融机构还积极同中国银行业合作，有银联标志的中国银行卡目前可以在日本主要饭店和商店刷卡消费。\r\n　　印度旅游部一名官员说，去年到印度来的中国游客有5万多人，尽管这个数字和10多亿人口相比实在是不值一提，但还是比前几年增长了很多倍。印度旅游部长乔杜里最近常说这样一句话：“中国是印度旅游业一个潜在的巨大市场，我们要想方设法把中国游客吸引过来。”印度旅游部最近在中国举办了“印度道路展”和“印度旅游研讨会”，在中国媒体上投巨资做旅游广告，向各旅行社发放旅游手册，并正努力在北京设立代表处。\r\n　　外国人心目中的中国游客\r\n　　埃及“三角洲”旅行社副总经理艾哈迈德告诉记者，中国人给他们留下了温文尔雅的印象，表现出了东方人的气质。不过，也有人认为中国游客“太小气了”，小费给得少，有的人甚至都不给。日本人对中国游客的总体印象还不错，认为他们很有购买力，能够促进日本的消费，但对部分中国游客在公共场所大声喧哗以及个别游客乱扔垃圾、随地吐痰等不文明行为也有一些看法。\r\n　　由于出境游价格不菲，所以出境旅游的中国公民绝大部分属于高消费群体。他们的消费能力让“时尚之都”巴黎的人们感到震惊，巴黎市中心一家酒店的经理说：“中国游客来法国，是我们的一大商机，但旅游时间安排得太仓促，我们也失掉了不少机会。中国游客上车睡觉，下车拍照，一点都不挑剔，但他们买起奢侈品的阔气劲让我们十分惊讶。”有人专门编了个顺口溜：中国游客身体真棒，刚下飞机就来照相，早起晚睡吃住不挑，高档商品卖得脱销。7天游10国，2小时游完卢浮宫，其他景点半天搞定，晚饭后自费去红磨坊，一天就可以游遍巴黎，这在外国人听来简直难以置信。一对来欧洲旅行结婚的年轻人告诉记者：“这次就当锻炼身体，下次再也不跟团来了。”\r\n　　埃及“星星”旅行社的负责人说：“去年到埃及的中国游客大约有近万人，虽然人数不是很多，但增长迅猛。中国游客喜欢边旅游边购物，许多人都购买大量的纸草画、金字塔模型、铜盘以及金银首饰等，这极大地拉动了当地的消费。“三角洲”旅行社的副总经理艾哈迈德说：“中国游客，尤其是公费组团来的，常常入住高档酒店，十分讲究排场，可以说对埃及的旅游业发展做出了不小贡献，景点附近埃及人家的生活因此大有改善。”\r\n　　印度工业联合会的一份报告显示，中国游客的增多使印度五星级宾馆的入住率大大提高，中国游客喜欢大量购买印度的工艺品，对印度的经济是一种巨大的拉动。▲\r\n　　本报驻泰国、埃及、印度特派记者 任建民 黄培昭 任 彦　本报驻日本、法国特约记者 张莉霞 唐惠颖 本报特约记者 汪 析"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/13.txt",
    "content": "　　　世界的旅游业越来越熟悉一个新名词——中国的黄金周。每到这个时候，中国都会迎来一次旅游高潮，一直席卷周边甚至更为遥远的一些国家和地区，使他们也跟随着这种固定的周期迎来一个个旅游、消费旺季。\r\n　　尽管出入境管理部门尚未公布具体数字，全国假日办负责人预测说，今年“五一”黄金周，出境旅游规模很可能超过去年“五一”黄金周1000多万人次的水平。\r\n　　中国游客涌来\r\n　　“标志”泰国从海啸中复苏\r\n　　5月2日，从事服装设计的胡明明第四次飞往泰国普吉岛度假。黄金周对她而言，就是躺在普吉岛沙滩上，晒一周太阳。作为中国公民最早的旅游目的地代表景点，普吉岛代表了东南亚国家在中国消费者心目中的独特地位：回头客越来越多。\r\n　　泰国国家旅游局的数据显示，2005年前往普吉的中国旅游者达10万人次左右，预计2006年将突破15万，从而成为泰国南部旅游业在印度洋海啸后全面恢复的“重要标志”。\r\n　　目前中国人出境游基本都是第一次出国，因此更看重价格。“中国人喜欢出访大城市，且往往都是走马观花，到哪里都要先照相。”一旅行社总经理助理郭明告诉记者。出境爱购物可能是中国人出境游的又一大特色。\r\n　　俄罗斯、蒙古游\r\n　　国人今年出游“新亮点”\r\n　　东南亚国家打出“山水相连”牌，韩国和日本旅游界则希望以“文化渊源”赢得中国“休闲商机”。在《大长今》、“韩流”等文化因素刺激之下，中韩两国之间的航线变得越来越繁忙。就在“五一”前，大韩航空宣布计划5年内将韩中航线增至50条。\r\n　　旅游交通经济分析师刘斌说，2006年“五一”黄金周，中国周边旅游的新亮点是俄罗斯、蒙古国。随着夏季到来，北亚风光呈现出独特的吸引力。目前，俄罗斯专门为中国旅游者成立的“无国界世界”协会正全力以赴利用中俄两国互办“国家年”的机遇，吸引更多中国游客“北上消费”。\r\n　　羡慕黄金周\r\n　　印度日本都“心动”了\r\n　　旅游观察家指出，中国“旅游休闲”商机，正从东南亚向东北亚“扇形展开”，并惠及越来越多的邻邦。\r\n　　刘斌认为，目前东南亚抢得中国“休闲潮”之先，可以为中国东盟经济贸易一体化“推波助澜”。东北亚地区作为中国主要客源市场，“双向流动”将催生“东北亚旅游圈”，从而与东南亚旅游圈南北呼应。这样，中国人的休闲不仅将成为所有周边国家的商机，而且将成为中国与这些国家睦邻友好的“休闲纽带”。\r\n　　从发展旅游经济的角度来说，中国的黄金周无疑让各国羡慕。印度的一家报纸曾对中国政府“聪明并且执行有力的黄金周政策”大加赞赏，认为印度政府应当向中国学习。而日本为了促进旅游、拉动内需，也修改了“节日法”，人为地制造出更多的长假，方便人们外出旅游或安排各种休闲活动。（新华每日电讯）\r\n　　新闻链接\r\n　　悉尼\r\n　　“处处是中国人，还以为回国了”\r\n　　“到悉尼来旅游，到处都能看到中国人的面孔。要不是看到外国人多点，还以为又回到了中国呢！”一位来自北京的张姓游客说。\r\n　　这也是不少中国游客初到澳大利亚时的感觉。去年，有28万中国游客赴澳旅游，占来澳游客总数的5.2%。\r\n　　在去年12月澳大利亚联邦政府发布的旅游战略中，中国被认为是澳旅游业增长最快的市场。据澳旅游业预测委员会预计，中国到澳大利亚旅游的人数将以每年16.5%的速度增长，到2014年，将会有110万中国游客来澳旅游，澳大利亚每7名游客中就有1名中国公民。届时，中国将有望成为澳大利亚最大的客源国，中国游客每年将为澳旅游业贡献60亿澳元。\r\n　　巴黎\r\n　　中国人不再“上车睡觉下车拍照”\r\n　　四五月份本是中国人赴法旅游的淡季，但“五一”长假却是淡季中的旺季，法国各大华人旅行社在此期间接待的中国游客数量几乎是平时的两倍。而中国人对赴法国乃至欧洲旅游的观念也发生改变。\r\n　　据法国文华旅行社总经理陈超英介绍，过去，中国游客总想在最短时间内以最少费用游览到最多数量的法国及其周边国家景点。一时间，“上车睡觉，下车拍照，一问什么都不知道”这段顺口溜成了此类贪多求全的旅游方式的生动写照。\r\n　　几年过去，随着出境游机会增加，越来越多的中国游客迷上了欧美游客所青睐的休闲游和主题游。陈超英说，以文华旅行社为例，参加休闲游和主题游的中国游客三年前只占中国游客总数的5%，现在已占到了30%，预计三年后将达到50%左右。他说，这不仅说明中国游客的消费能力提高，也说明他们的消费心理趋于成熟。\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/14.txt",
    "content": "　　时报讯 昨天是五一黄金周的最后一天，游客们纷纷踏上了回家的旅程，宁波各大景区全面“退烧”。而此时，宁波的各大餐饮商场负责人却喜笑颜开。\r\n　　宁波市假日办统计数据显示，7天时间内，宁波市共接待游客216．3万人次，创历年五一黄金周新高。全市旅游总收入达12．9亿元人民币，同比增长12．5%。也就是说，游客在宁波的人均旅游单项消费近600元。\r\n　　随着人们旅游需求层次的提高，旅游正从观光时代转向休闲时代，这个特点在今年更为明显。“吃农家饭、住农家屋、学农家活、享农家乐”，乡村旅游景区成为了热点。\r\n　　从宁波市接待的游客分布情况分析，大部分来自省内周边地区和上海、江苏等地，景区内各地牌照的私家车成为亮点和看点，特别是随着高速公路网络的完善，来自长三角地区、福建、江西等地的私家车明显增多，宁波市已成为长三角地区一个重要的旅游目的地。\r\n　　今年的五一黄金周，宁波游客的出游观念趋于理性。和去年相比，出境游人数下降，国内游人数增长，但长线游的人数增长幅度不大，短线游和休闲度假线人气旺盛。宁波市民长线游主要集中在北京、海南、桂林[图库]、西安[图库]、大连[图库]、香港等地，长三角周边景点成为短线游的热点。甬金高速开通以后，往金华、江西方向的游客数量也呈快速增长态势。\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/15.txt",
    "content": "　　　新华报业网讯 “五一”黄金周昨天结束。从南京[图库]市旅游局和统计局的统计数据来看，今年“五一”黄金周旅游的主要指标再次创下新高。七天里，南京共接待旅游者274万人次，较上年同期增长22.3%；实现旅游收入18.95亿元，较上年同比增长25.2%，多收入3.8亿元。全市旅游接待人次及旅游收入双双刷新了南京历届黄金周的最高纪录。\r\n　　黄金周里，记者截取不同时间段、针对不同采访对象进行了调查，对整个黄金周的旅游进行了全方位的盘点。\r\n　　周边短线游客数量明显增加\r\n　　数据：七天长假里，南京外出旅游度假的人数在百万以上，其中周边景点接待人数已经出炉：溧水傅家边农业科技观光园每天接待游客在千人以上，江心洲七天吸引了4万游客，浦口帅旗农庄每天接待游客人数同比增长30%，八卦洲接待游客2万人次，是去年同期的1.5倍，金牛湖接待游客2.1万人次，浦口珍珠泉旅游度假区接待游客12万人次，老山森林公园接待游客近2万人次，高淳瑶池山庄及迎湖桃园接待量超过5万人次。\r\n　　解析：今年“五一”，出境游、国内游的人数都比去年同期增长，特别是南京周边的景点由于交通、服务设施逐步完善，把很多游客都留在了本地。另一方面，现代人休闲度假方式趋向多元化，花一两天用于本地游或短途旅游，其他时间还可参加健身、看碟、上网等其他活动，比整个假期都在外旅游的方式更加丰富。\r\n　　随着今年“农家乐”快速兴起，市民流向城郊乡村成为“五一”黄金周旅游新热点。\r\n　　景区接待游客数量再攀高点\r\n　　数据：“五一”七天，南京主要旅游景区点共接待游园人次425万，较上年同期增长24%。一些新景区点也迎来了如潮的客流，绿博园“五一”期间接待游客突破14万人次，奥体中心每日的人流量在1.5万人次左右，阅江楼接待游客5.6万人次。\r\n　　解析：大批游客蜂拥各大景区，景区门票收入大赚了一把，每天接近饱和的客流量对服务水准也提出更高要求，各景点基本能让游客满意而归。尽管如此，一些热门景点还是人满为患，游玩质量下降在所难免。从统计数据看，长假里主要景区的外地游客占8成以上，20％的本地游客其实完全也可以选择近郊的其他景点度过假期。\r\n　　跟旅游团出游比例再次减少\r\n　　数据：全市旅行社组团出游5.4万人次，接团6.8万人次，均较去年同期有了显著的增长。\r\n　　解析：因为各景点为游客提供的服务设施更加到位，交通、住宿、餐饮更加便捷，游客不跟随团队同样可以轻松出游，不会有太多不便；走马观花的玩法使每个景点都不能细细观赏体会，这与现代人喜爱无拘无束、追求轻松舒适的旅游偏好已经不相适应。\r\n　　经济型酒店成自助游客首选\r\n　　数据：“五一”期间，南京旅游星级饭店平均客房入住率在80％以上，客房的周转次数和利用率达到最大化，除了节前的团队预订，宾馆适度预留的散客房间与市场需求基本吻合，旅游宾馆基本处于最佳接待状况。\r\n　　解析：随着旅游市场走旺，游客对旅游舒适度要求更高，高端游客和豪华旅游团越来越多，于是星级酒店也能分得黄金周旅游的一杯羹。而100多元的价位，服务标准化的经济型酒店，近年来成为大量自助游客的首选。\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/16.txt",
    "content": "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n黄金周里，哈尔滨[图库]市中央大街俄罗斯文化节盛装开幕。文化节历时5个月，期间将举办中俄艺术作品展、俄罗斯绘画作品展、俄罗斯民乐巡展等6大主题活动。　王世义本报记者杜怀宇 摄 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n　　“五一”黄金周，游人在镜泊湖畔欣赏到了漫山遍野的映山红。　　张克非 摄 \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n“五一”黄金周,五大连池[图库]风景区迎来旅游高峰。\r\n　　接待人数比去年同期翻了一番。\r\n　　本报记者 司汉科 摄\r\n　　春回大地,花草初绽，黑龙江涌动着勃勃生机。据省假日办统计，“五一”黄金周我省接待国内游客179.6万人次，国内旅游收入8.08亿元人民币，分别比去年同期增长6.02％和9.2％；接待入境游客1.85万人次，旅游外汇收入552万美元，分别比去年同期增长12％和15％。黄金周期间无重大旅游安全事故和旅游投诉，各重点旅游城市和各大景区景点欢声笑语，秩序井然，今年“五一”黄金周旅游呈现出以下几大特点:\r\n　　黄金周热提前\r\n　　黄金周热的提前出现是今年“五一”黄金周最突出的特点。\r\n　　\r\n　　虽然今年我省气温低于往年，但由于省内各级旅游部门提前进行市场预热和宣传，黄金周旅游市场非但没受到影响，反而更胜往年，且提前火了起来。\r\n　　为充分享受春回大地的休闲惬意，各地市民纷纷避开黄金周高峰提前出游。4月中旬以来，进出我省的游客明显增多，五大连池、扎龙自然保护区[图库]、牡丹江镜泊湖等地都提前迎来了省外大型旅游团队。哈尔滨太平国际机场运送旅客8000余人次，比去年同期增长35％。\r\n　　黄金周的火热趋势在“五一”期间得以延续且更加火爆。据省旅游局行业管理处处长王洪国介绍，“五一”期间，省内多家旅行社分别组织了百余人的团队来我省旅游，游客以俄罗斯、韩国、东南亚以及台湾、湖北、辽宁、四川、重庆等地为主。今年黄金周旅行社出游组团量与去年同期持平。北京、沈阳、千山、大连、华东五市等短线旅游较为火爆，因电视剧热播而闻名国内的山西乔家大院旅游线路异军突起，游客报名踊跃；长线游以海南、四川、云南三线为主，出境游以港澳、韩国、日本、东南亚四线增幅明显。\r\n　　省内游成主旋律\r\n　　今年“五一”期间我省春光明媚，各地草木返绿，处处洋溢着生机与活力。许多避开出行高峰的旅游者，选择一半时间在家休息，一半时间踏上经济实惠、轻松温馨的省内游。长假期间，80％的龙江旅游者选择到省内著名旅游景区及居住地附近的景区观光休闲，“龙江人游龙江”成为今年我省黄金周旅游的主旋律。\r\n　　黄金周期间，省内著名旅游景区（点）纷纷举办特色活动，游客接待量均创历史最好水平。太阳岛风景区的俄罗斯歌舞风情表演、当代顶级艺术家代表作品展、俄罗斯商品展销等主题活动截至5月6日引来游客5.52万人次，门票收入127.8万元，分别比去年同期增长76.9％和413.3％。哈尔滨极地馆新编排的白鲸、海狮等动物表演，吸引游客日均万余人，其中绝大多数为省内游客，俄罗斯团队比春节黄金周有大幅增长。龙珠二龙山举办的“首届哈市大学生千人登山大赛”，吸引游客1.66万人次，同比增长8.5％。五大连池达子香旅游节吸引游客1.2万人次，门票收入30.76万元。截至5月6日，哈尔滨游乐园接待游客17万人次，门票收入154万元，同比增长209％和42.5％；扎龙自然保护区接待游客1.41万人次，门票收入28.2万元；兴凯湖接待游客1.35万人次；虎头经济开发区接待游客2.5万人次；大庆油田乐园接待游客1.29万人次。\r\n　　乡村游备受青睐\r\n　　龙江乡村“五一”不寂寞。在我省乡间公路上车来车往，尽是乡村旅游者，有自驾车友朋相邀的，也有乘大客车全家出行的。我省18家农业旅游示范点风格各异，哈尔滨市郊、齐齐哈尔、牡丹江、伊春等地的清新朴实的山野民舍、北方少数民族风情小屋、大湿地休闲别墅，吸引了众多省内外游客。他们或登山踏青，或采摘野菜，或徜徉水边，或赏民族歌舞，品味农家炖菜，尽情享受世外桃源的悠闲与恬静，体会与都市生活不一样的村野情趣。香炉山、帽儿山、松峰山、兴十四村、牡丹江朝鲜屯、铁力年丰朝鲜民族自治乡、同江街津口赫哲村等地“五一”七天宾客盈门。许多游客自主设计乡村旅游线路，一路游览多处乡村，给当地农民带来了可观的经济效益。\r\n　　黄金周期间，哈尔滨市几家大的汽车租赁公司生意火爆，面包车、越野车等车型被抢订一空。玉泉狩猎场、长寿山、横道河子、五营森林公园、街津口赫哲族渔村等景区接待自驾车游客平均比去年同期增长了10％。\r\n　　（黑龙江日报）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/17.txt",
    "content": "　　本报讯（见习记者 张昱）5月8日，记者从银川市旅游局获悉，该市列入2006年五一黄金周数据统计范围的21家旅游景区，共接待游客17.6万人次，门票收入454.18万元，分别比上年同期增长14%和24%。\r\n　　记者了解到，银川市今年五一期间，接待外来游客13.76万人次，旅游收入4180.34万元，比上年同期增长了21.24%和32.5%。其中，过夜旅游者5.78万人次，旅游收入2987.97万元，比上年同期增长21.4%和30.7%；一日游游客7.98万人次，旅游收入1192.37万元，比上年同期增长21%和37%；旅行社累计接团321个，累计接待人数1.21万人次，比上年同期增长7%和4%。\r\n　　五一黄金周，银川市各旅行社累计组团310个，出游7734人次，主要出游目的地有山东、河南、北京、广州[图库]、四川、山西、陕西、青海、海南、云南、桂林[图库]等地。有来自北京、四川、安徽、大连[图库]等地的4个旅游包机和6个旅游专列抵达银川。出境游有港澳、日本、韩国、新马泰等地。黄金周期间，银川接待海外游客63人，分别来自泰国、日本、荷兰、美国、德国等国家。\r\n　　来源：宁夏网"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/18.txt",
    "content": "　　【今日商报报道】 （通讯员　吕中　记者　赵文）据统计，“五一”黄金周期间，全省共接待游客992.49万人次，比2005年同期增长19.4%；实现旅游总收入70.93亿元，同比增长24.1%。\r\n　　与以往“五一”黄金周相比，我省旅游市场呈现了以下特点：一是假日旅游协调机制有效发挥。经过前16个黄金周的考验，我省已经形成了一套较为完善的信息反馈和预警机制，假日旅游协调机制更加完善。领导重视程度高。随着我省投诉网络的不断完善和投诉渠道的不断增多，游客维权意识的进一步提高，今年“五一”黄金周7天全省共收到游客投诉81起，同比增长了一倍，其中投诉旅行社23起，占投诉总量的28.4%，所占比例同比下降16.7%。目前各类投诉达成处理意见的100%，协商处理完毕95%。\r\n　　二是城市旅游服务功能日益完善。随着“城市即旅游，旅游即城市”理念的进一步深入推广，我省各市加紧建设景区间道路，加快完善旅游标识，相继建立旅游集散中心、咨询中心等，城市旅游服务设施更加完善，并在“五一”黄金周期间充分显现，游客满意率进一步提高。南京在地铁、内外秦淮河整治和新火车站等诸多城市配套工程相继完成基础上，充分发挥旅游集散中心的功能，将绿博园、奥体中心等一批新景点包装策划，受到市场的欢迎。\r\n　　三是乡村旅游备受青睐。农业旅游正作为提高农民收入、提升农民素质、改善农村面貌的一项新的旅游产品，不断受到市场的青睐。南京根据对监测点的测算，节日前4天共有30万市民和游客体验了乡村休闲旅游活动，其中溧水傅家边农业科技观光园、江心洲景区、浦口帅旗农庄和迎湖桃园等全国农业旅游示范点接待量均较平时有了显著的增长，其中傅家边每天接待团队游客数千人，江心洲节日七天吸引了4万游客上岛，每天接待游客同比增长30%。\r\n　　四是旅游活动丰富多彩。主要体现在：旅游节庆好戏连台。南京各大公园开展了各类主题活动，如玄武湖[图库]的《梦想中国》江苏选拔赛、夫子庙祭孔乐舞表演、明孝陵《大明华章》文化展演等，都吸引了不少游客参与。据对纳入统计范围的229个旅游区（点）的统计，节日期间共接待海内外旅游者1914.5万人次，同比增长22.8%；实现门票收入2.08亿元，同比增长24.3%。\r\n　　五是休闲旅游将成为主流。主要表现在：自驾车游增长迅速。南京对夫子庙、中山陵[图库]等主要景点的自驾车游客进行了统计，这部分游客占到了13%以上。据对全省旅行社的统计，全省旅行社共接待游客41.28万人次，同比增长37%，其中本省游客24.68万人次，占59.8%；组团22.83万人次，同比增长28.9%；组织公民出境游6935人次，增长27.3%。\r\n　　六是旅游拉动消费作用明显。“五一”旅游的火爆为住宿、餐饮、购物和交通等相关行业带来了商机。节日餐饮和旅游购物也是红红火火。南京、苏州、无锡、常州、镇江、扬州、徐州、连云港[图库]八市39家纳入“五一”黄金周监测的商业企业，共实现销售零售额7.12亿元，同比增长30.9%。\r\n　　\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000016/19.txt",
    "content": "　　中广网5月9日广州图库消息（记者何伟奇 通讯员仇文确）据广东肇庆图库旅游部门统计，“五一”黄金周到肇庆各地主要旅游景区的游客人数达106万人次，与去年同期相比增长16%，其中城市接待旅游者人数为55.95万人次，同比增长10.2%，旅游收入2.09亿元，同比增长12.4%。\r\n　　 \r\n\r\n\r\n\r\n\r\n\r\n\r\n　　　“五一”黄金周肇庆鼎湖山举行“山泉泼水节”\r\n　　“五一”黄金周期间，七星岩图库推出的“十里走单骑”自行车环湖游、鼎湖山“山泉泼水节”、德庆醇正岭面古迹游、封开萝筐节、梦多奇溶洞、怀集燕峰峡温泉漂流、广宁竹海美食、四会造纸村访古、高要生态园寻梦等活动让游客感受到肇庆千里旅游走廊旅游“天天有新意、日日景不同”的休闲旅游新体验。\r\n　　\r\n\r\n　　　　肇庆千里旅游走廊如诗如画\r\n　　今年肇庆市不断完善旅游配套设施建设，在千里旅游走廊上新增设了多个一目了然的景区指引牌，为自驾车旅游人士提供了清晰的指引。此外还加强了旅游安全生产管理和规范旅游服务质量管理，推出了旅游志愿者服务，为到达景区的游客免费提供方便指引，受到众多中外旅游者的欢迎。\r\n　　来源：中国广播网"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/10.txt",
    "content": "\r\n　　【来源：你来我网】 【作者：蝴蝶飞飞】\r\n　　如果有一天，我们不在关心什么是关键问题，而是把关键性思考融入我们的思维习惯中，那么这良好的思维习惯，就会成为我们战胜一切问题的利器，为我们提供应对一切问题的真正关键的路径。\r\n　　为了爱----我考研\r\n　　初恋多少都有些骗局的味道，可是我竟迷恋的那么持久，或许正是那场无情的游戏，才使我的考研如此顺利。执手相看已不再有往日的情感，却难挥去那份刻骨铭心的记忆。从此后漂泊的心在何处栖息，还会不会有浓情酿就的泪滴？高山流水依然是我永远的寻觅，不再苛求爱恨随缘聚散两相依。\r\n　　他大我八岁，又在攻读博士学位。他说他博士毕业已经整整三十岁，那时的他更需要一个家，他说像我这样年轻的女孩，离开了校园，走进生活，会很快忘记他。为了爱，也为了满足我天生的虚荣，跟他拉近距离，我决定了考研。直到现在我依然认为我的成功一半的原因在于他的督促，另外的一半原因是因为我自己的努力。在这里，我把自己成功的考研历程展示给大家，希望能给匆忙备考的你提供些许借鉴。\r\n　　关于报考院校----选择我喜欢的\r\n　　一般来说，选择专业比选择学校更重要，一旦你选择了自己喜爱的专业，再根据自己的实际情况选择颇有名气的学校，这样的选择才是明智的。切记，不要为了上名校而盲目的选择自己并不喜欢的专业，而又不得不去学习那些课程，为考试而学习，为毕业证而学习，这样不但折磨自己，而且很难学有所成。因为即使你腰缠万贯，享有很高的声誉，但是，你所从事的不是自己喜欢的工作，日子对你来说过的会很痛苦的。我之所以选择陕西师范大学，是因为我考虑到了自己的爱好和实力，加上他严谨的治学态度。运筹帷幄方能决胜千里，我终于可以如愿以偿的研究自己喜爱的先秦文学了。\r\n　　备考秘笈\r\n　　在准备考研的过程中，就我个人经验，十分关键的是:\r\n　　（一）时间的安排，今天做什么，明天做什么，一定要心中有数，要周密安排自己的作息时间，制定学习计划，并认真的去执行，决不能散漫无序的混日子。\r\n　　（二）有效的利用时间，提高单位时间的学习效率。每个人要根据自己的“生物钟”和学习环境对时间做出科学的安排，利用大脑最清醒、记忆力最强的时间去学习，这样可以收到事半功倍的效果。我喜欢白天看书，晚上入睡之前再回忆这一天所看的内容，以加深记忆。\r\n　　（三）注意锻炼身体。“身体是革命的本钱”，无论到什么时候，身体对于我们来说都是最重要的，我那时候和舍友约定好每天6:00起床然后去操场沿每圈400米的跑道跑三圈，之后背一个小时的单词。当时我用的是人民日报出版社的黑博士8100快速突破然后再吃饭。这时的晨跑作用在于清醒大脑和避免赖床不起，产生一种清新舒适的学习心情。冬天的时候，我将锻炼的时间安排在下午5:00左右，这时刚好经过一整天的复习，以少量的身体锻炼来减少些许疲劳，调节枯燥的学习生活，之后再去洗澡、吃饭、上晚自习，会轻松许多的。\r\n　　（四）坚持不懈的精神。既然选择了考研，就应该承受得起他的枯燥与艰辛，或许你要为过分的闷热和严酷的冰冻而打退堂鼓，或许你要为教室----宿舍----饭堂三点一线的单调倍感乏味，或许你会因为整日不见心中的他或她而产生孤寂之感，面对这些你一定要坚定信念，要始终相信阳光总在风雨后，所有的付出都是对你顽强意志的考验，而这正是能否成功的一个关键，所以，面临如此的意志测试，你一定要坚持！\r\n　　虽然我的成功并未换来自己所要得幸福，但是，没有他的鼓励，我知道我是不可能这么容易成功的，整个复习过程中，他无时无刻不在悉心鼓励我，他的一个激励，一个眼神，都能够促发我心中无尽的力量，在见不到他的今天，我同样感谢他对我的鼓励，但愿处于甜蜜爱情生活之中的考研者们能够互相理解，互相鼓励，让你们的爱情也为考研加油！\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/11.txt",
    "content": "\r\n　　【来源：你来我网】 【作者：kiidy】\r\n　　“花落繁枝千万片，犹自多情，学雪随风转”，2006年的春天，这种莺飞草长、树绿花香的常景，在我眼中变得特别的美丽。一年的时间，在许多人的生活中都不会有什么特别、不会产生多大变化，但在同样的时空中，在与别人一样的收获之外，我完成了考研的复习，是这种成功使我体会到了风景与心情的不同。我不是聪明人，也不太笨。\r\n　　做每件事要想成的都挺不容易的，所以我干什么事情，只要认准了都特使劲。考研是大事，从一开始就没想过不考，原因很多：父母的期望，逃避工作及喜欢校园生活。\r\n　　考研，真的爱你吗?\r\n　　我想并不是每个同学都想考研，还有许多不考研的友人们对我们考研大军不屑一顾，事实是考上了也并不一定就前程似锦，要知道两三年后依然是面临很大的就业压力，而工作的同学已经是经验丰富，在职场上有所作为了!这要看个人的追求、家庭经济状况，要综合来衡量自己是否需要考研，是否有必要再拼一次。如果知道了自己下一步该干什么，并且目标明确，那就只管拼了。早期气馁的，中途放弃的，上了考场还没考完的大有人在，所以下了决心就要坚持到底，俗话说“坚持到底就是胜利”用在考研上是最恰当不过的了。\r\n　　跨专业，做我想做的\r\n　　我没考化学类的，而是选择了管理类，原因依然很多，主要是我对化学不来电，高中学得就不好，大学成绩也不好，我很了解我自己，考上了我还会像读本科那样痛苦，混日子，浪费青春，我是不会在这一领域有什么建树的。活了这么大有太多的迫不得已，想让自己的想法和意愿做一次主，于是我选择跨专业考研。大家都知道相对来讲，理转文易，文转理难。对于理工类的同学来说，只要英语比较不错，选择文科中的经济，管理类的考数三、数四的是比较有优势的；要是选择心理学或是法学这样的专业，就要求你有浓厚的兴趣和良好的记忆力来支撑，要有比较好的英语基础，这样胜出的机会才大一些。\r\n　　在选择院校方面要依人而定了，跨专业的同学选择34所(截至笔者报名，全国有34所院校独立招收研究生，划分数线，提前复试)还是会明智一些，由于34所复试比较早，若不幸被刷那还可以调剂，还有复试的机会。若报考很强学校的热门专业，风险必然很大。我经过再三考虑还是决定考旅游管理专业的最知名学校之一——北京第二外国语学院(中国旅游学院)，这样便开始了我快乐的考研日子。\r\n　　复习，持久战\r\n　　当时我自视英语还行，数学不好，于是上了两个数学辅导班，别的班没上。现在回头看我有许多复习中失误的地方，在这里可以说一下，大家引以为戒。我是题海战术型选手，由于采纳一位研友的建议，我在后期很少做模拟题，只顾钻历年真题，分析出题的大方向，而去年的考题是多而不难，要求计算能力强，我是会做而做不对，那题错得太垃圾了。前期的努力大半都在后期折腾没了。考完后有许多同学说有原题啊，做过之类的话，我是听得一头雾水，那题我可是从来也没见过，还有，我保证题也没见过我。数学是难点，但不是不可战胜的，我总结，要考好数学，基本功是必不可少的，一味钻高难度的题是得不偿失的。因此，要宏观、微观一起抓，两手都要硬!\r\n　　专业课我是下了很大的功夫的，书看了十几遍吧，记不清了，还做了读书笔记，把所有可能考的全都列了出来。没办法，谁叫我跨专业考呢，于是早上背晚上背，一遍一遍，像个精神病人。\r\n　　英语的复习是全程的，每天都要练习听力，背背单词，阅读复习资料也看了许多，英语关键是培养语感，黑博士的120篇，220篇，240篇，我连着都做完了。历年考题，反反复复也看了好多遍，要知道我所报考的二外(北京第二外国语学院)对英语要求可都不低，对手都是很牛的人啊，英语都得七八十分。现在多做些题，分析几百篇阅读，最起码考完我不后悔。所以奉劝英语过了六级的同学不要大意啊!\r\n　　坚持，给我力量\r\n　　到了后期心里想的就这么一句“坚持到底就是胜利”。那时身体不是很疲惫，但心里很是疲惫。很多同志到后期依然天天坐镇，但究竟效率如何，学了什么，也只有他自己最清楚。我那时隔一段时间就放纵一下，打打排球或是和研友们定期侃侃，总之要学会自我调节。走出考场的那一刹那我想的不是考得怎样，而是以后我做什么都不怕了。因为我为了自己的理想坚持奋斗了十个月，那可是三百多个日日夜夜啊，容易吗我!\r\n　　我们寝室有四姐妹，每天相互鼓励，共同学习，有哪个想偷懒了，其他三个会同时谴责她。无疑，这样的氛围是考研路上最可贵的，可惜的是最后只有三姐妹上了考场，还有一个月就考试的时候，另一个美眉说什么也不学了，任我们百般劝说。后来我们三个都考上了(她俩分别被北京化工大学、长春理工大学录取了)，美眉把肠子都悔青了。还是那句话：考研路上早期气馁的，中途放弃的，上了考场还没考完的大有人在，所以下了决心就要坚持到底。坚持到底就是胜利。\r\n　　调剂，恨你然后爱你\r\n　　成绩出来了，335分，差额复试要排在48名左右，我的排在50名左右，因为我报的专业方向太热(旅游企业管理)，心想是没戏了，而且二外不是34所自主招生的院校，复试比较晚。我便像个无头苍蝇一样到处搜索联系调剂学校，很快档案就被湘潭大学调走了。当我在湖南复试时，二外才出复试线，呵呵!除了我报的方向是339分左右，其他的方向都是320分左右，我还想调剂到二外的其他方向，可档案已经调走了，这时想回也回不去了。二外的学长和我说：“你丫就安心在湖南复试吧!其他方向你也调不了啊!二外350分的复试都不一定上呢，调剂是正确。”这样也给我了很多安慰。幸运的是我调剂到南方一所比较有名的重点大学，学校环境很好，让我欣喜。更幸运的是，我跟了一位好导师——阎友兵教授，他不但是我学术研究上的带头人，更是我做人处事的好榜样。在老师和朋友的支持下，我已经下定决心考博，圆我二外的梦!\r\n　　这就是我的考研之路，辛酸苦辣，冷暖自知。\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/12.txt",
    "content": "　　话题多、题材广、时间紧、要求高的议论文写作一直是雅思写作中的难点，思维狭窄、词汇不足也一直是中国考生的通病，如何在议论文写作中拓宽思路？怎样背诵8000个雅思词汇？备考雅思写作的误区和应对方法又是什么？上周末，启德教育吴建业老师在广州图书馆给广大考生上了一堂生动的雅思议论文写作课。\r\n　　开拓思维的十大原则\r\n　　据统计，近年来雅思议论文写作共有265个话题，常考的涉及环保、经济、社会、教育、犯罪等题材，十分广泛。鉴于很多考生写作时感觉无话可说，吴建业提醒考生从经济、时间、健康、情感、教育、心理、权利、文化、环保和道德十大原则来思考话题的意义。他以养狗为例：经济上要花很多钱；情感上亲近狗就会在一定程度上疏远家人；遛狗、给狗冲凉等浪费时间；狗传播疾病会影响健康；养狗会影响学习；狗很忠诚，养狗会让人从心理上疏远狡诈的人类；侵犯邻居的权利；狗到处排泄会破坏环境等。“这样大家碰到任何一个话题都不用心虚了。”但是他同时提醒广大考生不必面面俱到，只要挑出十大原则中的两三点来自圆其说就绰绰有余了。\r\n　　记住800个核心词汇\r\n　　“垃圾怎么说？可回收垃圾？可降解的垃圾？……”课堂上，吴建业关于垃圾的几个提问难倒了很多在场的英语专业的学生。吴建业老师表示，中国学生在学校学习的词汇在很多场合用不上，比如英语专业八级侧重于文学名著，商务英语则侧重谈判、商业词汇。雅思需要8000词汇，但相当一部分考生疯狂地从A背到Z，还存在想说却说不出来，即使说得出来也衔接不来的问题。怎么办？\r\n　　“分类背诵，联想记忆。”吴建业告诉广大考生，只要掌握了800个词汇，就可轻松应对雅思写作。“当然这些词汇是剔除了dog、pig之类的核心词汇。”那什么词才叫核心词汇呢？吴建业举了一个例子，如由奢侈→贫穷→救助→难民→……，就这样把相关联的词汇串通起来背诵，既掌握了词汇，而这些词汇往往是一篇文章中可能涉及的内容。\r\n　　写个性化的八股文\r\n　　吴老师还指出了考生的备考误区和应对方法。针对很多人希望通过学习外文名著来提高写作水平的想法，吴老师认为外国名著对大多数中国考生而言是可望而不可及的。“外国人学汉语要学习汉语说得好的大山和大牛，而不可能让他们学习鲁迅先生的《药》、《孔乙己》等名篇。”同样，中国考生要学习英语学得优秀的中国人，他认为真正优秀的教材其实是中国考生的优秀范文。\r\n　　提到一些辅导老师教育学生写作文一定要真情流露，想到什么就说什么，吴老师认为这是不现实的，因为对大多数中国考生来说，做到挥洒自如、下笔自若、真情流露很难。而很多人争相背诵名师的范文又搞得千人一面，味同嚼蜡。鉴于此，他认为既要学习范文的格式，又要有所改装，加入自己的东西，凸显个性，“写个性化的八股文”。\r\n　　讲座上，吴老师还提醒考生写作时不要想着标新立异、旁征博引，只要能够自圆其说，多用权威、翔实的数据事例来说明观点就好，否则会画蛇添足。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/13.txt",
    "content": "\r\n　　一番周折后终于在多伦多考完了新托福考试，整个考试持续了近8个小时。为什么呢， \r\n因为考完了第二部分听力后，美国ETS考试中心的Server出了故障，让所有当天的考 生苦苦等了3个小时，而且中间不许离开。笔者所在的考场有耐心坚持到最后的考生 \r\n连一半都不到。这3个小时让我有机会把考试中心的情况了解得更清楚一些：考场布 置成一个开放式的办公室，每个考生都有自己的cube，但不隔音，由于口语考试考场 \r\n内到处能听到说话的声音。笔者所在的楼层能容纳16人，当天有3个欧洲移民（看上 \r\n去都四五十岁了)，5个印度人，2个南韩人，2个香港女孩，一个从Kingston来的亚裔 \r\n男孩，还有一个就是我了，是唯一一个中国大陆来的(很显然中国同学都被吓住了)。\r\n　　考前我原以为新托福当场能像机考TOEFL一样给我一个成绩范围，好歹安慰一下我8个小时 \r\n下来疲惫的心灵，结果没有，最后考场工作人员告诉我要等3-4周后我才能收到成绩，所以 \r\n大家要注意了这是和以前很大的一个不同。由于不知道考试结果，我只能和大家分享一下 考试体会。新托福决无想象中和各种广告中宣传的那么难，但要考好，必须有综合的考试 \r\n技巧，一定的英文能力和较快的反应速度。\r\n　　一．考试技巧分成2个方面：一是考生必须要相当熟悉新托福的考试形式和内容。 考试总共有4大部分。\r\n　　1.阅读: \r\n过程中不可作笔记，共3篇文章40个问题，要求60分钟内答完。这3篇文章又分成两个独立计时部分，前一部分只有1篇文章14个问题，20分钟内解答，其间可以返回；第二个部分是另外2篇文章40分钟，之间也可以返回。\r\n　　2.听力：按ETS的介绍，听力应该只有2个独立的计时部分，每部分中有1个长对话和 2个long lectures, \r\n每个部分的答题时间是10分钟。但我当天却遇到了3个独立计时部分，后来才明白其中一个部分是实验题，但考试时是不知道那个部分的。（听力完毕后，考生有10分钟休息时间，我建议带点吃的喝的。）\r\n　　3. 口语：共6个问题。第1，2 个问题是大家熟悉的话题，各给15秒准备，用45 秒对着耳机上的麦克风回答，由电脑严格记时，有点像对着answer \r\nmachine留言的样子。第3，4 个问题先给45秒读一段文章，然后听一段话，再让你口头总结和概括，给30 秒准备，60秒回答，前者主要是关于student \r\nlife, 后者是 academic 方面的。第5， 6题是让你听一个对话和一个academic方面的段子，然后20秒准备，60秒回答。\r\n　　4. \r\n写作：2篇文章。第一篇是先3分钟内读一段文字，再听关于这段文字的一段评论，然后在20分钟内写出一篇150-225个词的文章。写文章时，所读的文章会出现在屏幕的左侧，并且电脑会显示你所写的字数。第二篇文章是在30分钟内写300个词的文章，题目显然仍然是从原机考TOEFL作文题库中选的。现在的写作部分均只能打字，不再有手写这一选择。\r\n　　考生在熟悉了考试内容后，就必须熟练掌握各种题的解题技巧。阅读部分应学会 对文章本身的处理，10大题型尤其是插句子题，组织信息和总结题的解法。听力 \r\n部分现在变得更长更臭，究竟什么地方是考点必须会预测和记笔记，尤其是针对 2选题和排序题。口语部分仅靠现场临时发挥是不够的，必须背一些模版和常用 \r\n句子，这样才能尽可能表达清楚和连贯。写作的2篇文章要求考生熟练掌握驳论 文和议论文的写法：第一篇一定是让你写出说话者是如何反驳阅读文章的内容的， \r\n这种文章的写法套路非常固定；而另一篇的8类写法考生也必须熟悉并在考前勤加 练习。\r\n　　二．英文能力\r\n　　从阅读开始就要求考生具备一定的词汇量，不用太多，6000就可以了。有些书 建议大家每天背60个单词，这是不够的，我建议大家每天至少要看300个单词。 \r\n在打下词汇基础后还需一定的阅读能力，阅读中有三种题均在考能力，一道问 下面那句话是原文的改写；一道是句子插入题；一道是总结文章内容题。\r\n　　听力部分也是一样，满脑子技巧就是听不懂，上去考试肯定没戏。建议大家 从精听着手，辅以泛听，2个月内一定能有质的提高，但前提是每天至少听上 \r\n2个小时。\r\n　　口语部分。各位中国考生应该感谢ETS给我们提供了一个提高英语口语的机会。 \r\n不少人总想不通新托福为什么要加考口语，一提到这个问题就怨声载道。我建 议大家调整一下心态，有这个埋怨的时间还不如多练习练习，课堂上练，课后 \r\n练，对着老师练，对录音机练，口语很快就会提高了。毕竟口语除了考试要用， 也是日常生活中最practical的，我们已经听说过多少因为口语不好和自己喜 \r\n欢的工作失之交臂的故事了。\r\n　　写作部分要求掌握文章的结构和遣词造句能力，否则很难拿到高分。\r\n　　三．速度\r\n　　考生需要阅读速度快，听力反应速度快，口语部分表达快，写作部分键盘速度快。 \r\n&nbsp;&nbsp;&nbsp; （来源：搜狐教育社区）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/14.txt",
    "content": "　　50余名沈阳市职业学校校长近日走进清华园，在沈阳市教育局与清华大学共同举办的首期沈阳市职业学校校长高级研修班上为自己，更为沈阳的职业教育而“充电”。\r\n　　沈阳市中等职业学校重组于上世纪80年代，绝大部分学校是由薄弱学校改造而成。近年来，随着国家、省、市各级政府对职业教育的重视，沈阳市职业教育\r\n　　有了较大发展。目前，沈阳市已有中等职业学校131所，中等职业学校教师9500人，专业教师4800人，在校生9万余人,年毕业生3万余人。\r\n　　2006年，为了让职业教育有一个更大的发展，沈阳市决定不仅在硬件上加大投入，按照国家级示范校的标准建6所万人规模的中等职业学校，同时，还要在在软件建设上有一个新突破，按照国家职业教育教学质量评估标准，全面提升沈阳市中等职业学校教育教学质量。为此，沈阳市教育局借助清华大学这样一个高层次的培训平台，举办各种层次的共10期研修班，对分管各项工作的副校长和专业教师约500人进行培训，通过国家教育部职业与成人教育司有关领导、国内优秀企业家、教育专家、知名学者和国内重点职业院校校长的讲座及经验交流，使参加研修人员政策水平、理论知识、教学管理能力及个人学养得到提高，从而全面提升沈阳市职业院校的内涵建设，进一步培养、打造出一支高水平的职业院校优秀的管理者和“双师型”教师队伍。\r\n　　沈阳市副市长王玲、沈阳市教育局局长李梦玲、教育部职成司副司长刘占山、清华大学副校长陈吉宁参加了首期研修班的开班仪式。他们表示，清华大学和沈阳市的这种合作，必将促进沈阳市职业教育的跨越式发展，双方在市、校人才合作培养模式上的有益探索，不仅会加深和扩大双方在各个领域的合作，也会对全国的职业教育提供有益的经验。\r\n　　来源：光明日报"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/15.txt",
    "content": "　　每小时付费过百元 孩子压力大不领情\r\n　　请家教不为辅导功课，而是帮孩子填报志愿。昨天（9日），北京高考填报志愿网站刚一开通，不少家长就开始雇用大学生当起了“志愿家教”。北师大家教中心的负责人说，目前已有数十位家长来登记。而在其他一些家教中心也出现了类似需求。“志愿家教”主要由大三、大四和研一的学生担任，费用一般为每小时100元至200元不等。\r\n　　家长\r\n　　向大学生打听高校情况\r\n　　家住六里桥的许女士正读高三的儿子就要报志愿了。昨天（9日），她专门请了半天假到北师大家教中心打听“报志愿家教”的事儿。“家里人都不熟悉大学情况，问学校老师又怕老师忙不过来，因此想找个大学生当报志愿家教，给孩子讲一些大学的情况，比如学校风气呀、生活条件什么的，让我们心里有数。”许女士说，希望能找个大三、大四的学生当家教，对大学比较了解，和孩子年龄又相差得不太大，比较容易沟通。\r\n　　家教\r\n　　“过来人”经验有助抉择\r\n　　北京师范大学大三学生葛庆已经和一位家长签好了合同，从昨天起，他将连续5天到考生家中辅导报志愿。葛庆说，自己去年就辅导过家里亲戚的孩子报志愿。“上了大学之后，才知道大学到底怎么样。考生光看一些介绍是不够的，就是应该多听听‘过来人’的说法。以我对大学的了解，我会给他我的建议。我在考生家里首先多和他聊，看他的兴趣，然后根据我的资源和经验帮他了解这个学校的情况，食堂的条件、宿舍的情况、考研的比例、某专业就业情况等。”葛庆笑着说，还有学校里男女生比例多少、女生是否漂亮什么的。这些信息对考生作出选择应该很有帮助的。\r\n　　考生\r\n　　被过多干涉感觉压力大\r\n　　尽管家长乐此不疲，但高三学生小峰对妈妈请来的“志愿家教”并不喜欢。小峰说，“报志愿有这么难吗？要想了解学校的情况，上网查查不就行了，干吗非要花钱雇人呢？本来是我自己的事情，这么多人为我作主，让我反倒没了主意，也让我觉得压力特别大。”\r\n　　专家提醒\r\n　　不宜增加考生心理负担\r\n　　“利用‘大朋友’的经验来帮助孩子，这是国外一种常见的做法。但这么做一定要有个‘度’，不要过多地给孩子增加心理负担。”北京青少年法律与心理咨询中心主任宗春山说，采取各种方式更多地关注孩子，实际上是家长内心焦虑的一种表现。高考在即，适当地“忽视孩子”是必要的，应该给孩子创造一个轻松的应考环境。也有专家指出，大学生们对大学的认识是否客观正确？是否会因为自身的局限给考生误导？专家建议，“志愿辅导”只是辅导，考生应有自己的选择，家长也应该尊重考生的意见。 \r\n编辑:苏琳\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/16.txt",
    "content": "　　【来源： 太奇MBA】\r\n　　英语各项复习及对策\r\n　　英语试卷满分为100分，考试时间为180分钟，试题分为五部分：词汇知识，综合填空，阅读理解，英译汉和写作。\r\n　　词汇和语法是语言能力的基础，没有丰富的词汇和对语法知识的掌握，一个人的英语水平不可能真正得到提高，部分考生认为词汇、语法所占分值不大，就以为词汇和语法不重要，放松甚至放弃对语法和词汇的复习，这是舍本逐末的做法，是极其错误的。除了单项选择外，其它部分考题也与语法、词汇密切相关，如完形填空，既要考词汇，又要考语法。阅读理解，、翻译、写作等题型的考试，也需要考生对词汇和语法的熟练运用。\r\n　　词汇的复习是英语备考的基础，但单纯的词汇记忆费时而收效慢，大家一定要结合阅读、翻译等练习来记忆单词。建议大家在复习前期集中一段时间，如每日2~3小时，进行词汇的密集记忆，目标是对大纲内词汇、习惯用法有大概但全面的了解。在备考中期，考生主要借助阅读与翻译来巩固词汇，这一阶段要注意方法，先做阅读与翻译，然后再查询并记录印象模糊的单词与词组(这部分词汇要抽空经常复习)，大学一定要注意，一边阅读一边翻词汇手册是最糟糕的复习方式。备考后期，特别是考前，考生一定要重新过几遍词汇，力求留下清晰印象，避免因词汇的不熟练而影响阅读速度。\r\n　　在备考过程中，最好准备一本附有例句和常用搭配的MBA词汇手册。\r\n　　阅读理解这一题型占了英语总分的40%，是MBA中的重头戏。阅读理解能力的强弱从总体上反映了一个考生的语言运用能力，考生要提高阅读能力，就必须进行大量的阅读。在阅读中精读和快读相结合，是提高阅读水平的有效途径。许多考生说自己做了很多题，看了很多文章，但水平还是老样子，其中的主要原因在于他们没有对文章进行精读。我们应该明白，只有精读才能打好我们的语言基础，如果一味求快，老是快读，英语水平是很难实现质的飞跃的。\r\n　　我建议那些英语基础比较差的考生平时练习要以精读为主，每天看两三篇文章，注意文章的主题、段落大意、核心句、关键词，对一些长句难句进行透彻的分析，遇到生词要用小本子记下来，必要时回过头来查字典，一些好的例句和好的表达方式要背下来，打好语言知识的基础，这样对短文写作也有好处。在这个基础上再适当安排一些快读，一般精读和快读的比例为1：3，当然这不是绝对的，大家可以根据自身的情况进行调整。只有在做了大量精读的基础上，大家才能快读，才能快速从短文中获取有用的信息，在考试中取得好的成绩。\r\n　　英译汉考题主要测试考生根据上下文用汉语准确表达原文意思的能力。这方面能力的提高可以从两方面的着手。\r\n　　一方面要对阅读理解时遇到的长难句进行深入的分析，搞清句子的结构，词汇的含义，有些词汇的意思字典中都没有，大家还得根据上下文的意思进行词义的引申。\r\n　　另一方面，要坚持做一些单项的英译汉的练习，选择的训练材料最好是英汉对照的。训练时要争取不看答案，尽量根据上下文的意思来翻译，然后再对照原文进行比较、思考、推敲，找到自己的不足和弱点，如果是句子结构上翻译的错误，就必须在训练中加强对句子结构的分析。\r\n　　在翻译技巧上，现在很多考研指导书都有所涉及，大家可以选择一本好好研读。翻译讲求的是“信、达、雅”，信就是要忠实于原文，达要求的是翻译出来的句子必须准确表达原句的主旨和大意，雅指翻译的句子生动流畅，而不是生硬涩口。大家做到了这一点，自然就能在考试中得到自己理想的分数。\r\n　　突破英语写作难关首先需要掌握一些固定的句式。把平时自己喜欢的句子用汉语写出来，固定下来，之后就套用英语句式。比如It’s + adj. + that / to 就是比较典型的一种句型，可以经常套用。这其实就是一项“汉译英”的工作，考生在作文时，很难临场即兴写出那些正确而优美的句子，只能靠平时积累下来。\r\n　　其次可以把自己写的句子“炫示”于人。为什么要让别人看自己的“弱点”呢？原因就是，考生根本无法判别自己造出来的英语句子是否正确。而在阅卷时，句子错误或不通是很大的一个失分点。在高手的修正指点下，受益的还是你自己。\r\n　　此外，注意学习动词，尤其是动词词组的用法。英语句子的构造以动词为主，写出地道的英语句子也以动词或动词词组的妙用为本。如有这样一句经常出现在作文中的话，“许多恼人的问题仍然悬而未决。”很多考生会这样写：Many puzzling questions are still suspending. 转换一下动词：Many puzzling questioned remain unanswered. 效果就大不一样了。\r\n　　当然，提高笔头表达能力才是真正的关键。1 多读范文；多读范文能使考生了解写作方法，写作的常用词汇，记住其中一些比较好的用法。2 多写作文；第二轮复习应该坚持每周写一篇作文并且要把每一篇写好，不要在一个水平上反复重复，要力争写好每一篇，这样写几篇后就会有收获。临近考试，可以按照规定时间写作，此时写作的题目要广泛，各种话题都要写一些，以增强适应性。3 写作时可以多查字典，不看范文；写作时遇到不会写的词句要多查字典，还要看该词的用法，这样才能保证正确使用；写前不要看范文，看了范文会影响自己的思路，写完后再参看范文。4 注意书写整齐；平时写作就要注意书写整齐，规范，要在平时养成良好习惯，在考场上才能发挥得好。\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/17.txt",
    "content": "\r\n　　【来源： 太奇MBA】\r\n　　数学各门课的特点及复习对策\r\n　　从考生总结一句话：得数学者得天下。在复习的过程中，要针对不同的课程复习特点进行复习。初数部分知识点少(主要就是绝对值，不等式和方程，数列，)，概念简单(大部分都是在高中学过的)，技巧性强(同样一种题可以用很多种方法去分析)，题型变换性强(同一个知识点可以引申出很多题型)，所以这部分考试容易失分，做题的时候一定要细心。每年考试往往不是最难的部分如微积分失分最多，而是初等数学部分失分最多，稍微一不留神就会少考虑一个条件。初数部分的复习对策就是抓重点，也就是抓必考题型(如绝对值、不等式和方程、数列每年必考)，然后以点带面，复习其它次重点的部分(比如二项式定理、比和比例)。在平时做这部分练习的时候，大家一定要开阔自己的思路，千万不要一上来就按传统的方法求解。比如有一道题是这样的：用绳子量井深，把绳子折于三折，井外余绳 \r\n4 尺，把绳子折于四折，井外余绳 1 \r\n尺，求井深？很多同学在做这道题的时候，一上来就设两个未知变量，列方程组，然后费了很长时间才把答案解出来。其实你考虑一下，当三折量井的时候，相当于余绳 3×4 ＝ \r\n12 尺，当四折量井的时候，相当于余绳 4×1 ＝ 4 尺，然后口算出井深为 12 - 4 ＝ 8 \r\n尺。初数中类似这样的题很多，常见的还有甲乙两人围绕跑道相向而行的相遇追及问题等等。通过这个简单的例子说明，大家在学初数的时候，一定要“灵活”，透过试题表面找到等量关系。\r\n　　微积分这部分知识点很多，占整个数学知识点的三分之一以上，概念抽象，需要很强的抽象思维能力，并且重逆向思维(尤其体现在极值的充分性和必要性)，技巧性较强，题型变幻莫测，是数学中最难的一部分，所以容易失分。建议大家在复习这一部分的时候，多做一些充分性判断题，因为一定要训练自己的逆向思维能力，只有这样才能在有限的时间内分析问题的时候做到游刃有余。还一点是要注意微积分知识点之间的相互联系，比如连续、可导、微分之间的关系，以及驻点、极值点、最值点之间的关系等。关于微积分的复习，可以按照我总结的几句话为方向进行复习，这就是：\r\n　　极限是基础 ( 是建立连续、导数的基础 )\r\n　　连续是条线 ( 联系了导数与积分 )\r\n　　导数是关键 ( 概念必考，导数的应用考计算 )\r\n　　积分考计算 ( 广义积分判收敛、定积分求面积 )\r\n　　线性代数这门课知识点连贯(所有知识点都是围绕着向量的相关性展开的)，概念易理解(因为这些概念都可以通过简单的例子进行说明)，技巧性差(不管怎么出题，方法都是固定的)，题型有核心(我们可以将每个知识点的出题形式进行归纳总结，翻来覆去就这么几种题型)，所以说比较容易得分。针对线性代数的特点，我们可以这样准备复习：首先要将线性代数的知识点进行条理化，可以参看下面列的方框图(此处省略)：\r\n　　线性代数从内容上看纵横交错，前后联系紧密，环环相扣，相互渗透，因此解题方法灵活多变，复习时应当不断地归纳总结，努力搞清内在联系，使所学知识融会贯通，接口与切入点多了，熟悉了，思路自然就开阔了。例如：设 \r\nA 是 m×n 矩阵， B 是 n×s 矩阵，且 AB ＝ 0 ，那么用分块矩阵可知 B 的列向量都是齐次方程组 Ax ＝ 0 \r\n的解，再根据基础解系的理论以及矩阵的秩与向量组秩的关系，可以有 r(B)≤n-r(A) 即 r(A) ＋ r(B)≤n 进而可求矩阵 A 或 B \r\n中的某些参数。又如，对于 n 阶行列式我们知道：若｜ A ｜＝ 0 ，则 Ax ＝ 0 必有非零解，而 Ax ＝ b 没有惟一解 ( 可能有无穷多解，也可能无解 \r\n) ，而当｜ A ｜ ≠0 时，可用克莱姆法则求 Ax ＝ b 的惟一解；对于 n 个 n 维向量 α 1 ， α2 ， …αn 可以利用行列式 A \r\n的数值是否为零｜ A ｜＝｜ α1 α2 …αn ｜来判断向量组的线性相关性；矩阵 A 的秩 r(A) 是用 A 中非零子式的最高阶数来定义的，若 r(A) ＜ \r\nr ，则 A 中 r 阶子式全为 0 \r\n。凡此种种，正是因为线性代数各知识点之间有着千丝万缕的联系，代数题的综合性与灵活性就较大，大家整理归纳时要注重串联、衔接与转换。应当搞清公式、定理成立的条件，不能张冠李戴，同时还应注重逻辑性以及语言的叙述表达应准确、简明。 \r\n最后应注意几个概念间矩阵运算，比如矩阵的逆、伴随、转置等，这些关系一般出现在计算矩阵方程中。\r\n　　对于概率这门课，知识点分散，知识点相互间联系较少，但公式多(可以说，概率的考试就是公式应用的考试)，所以做题基本无技巧，题型相对稳定，这部分是大家最容易稳拿分的。对于概率的复习，首先要理解公式，知道公式什么时候用，用在什么地方，怎么用。在随机事件部分重点掌握条件概率公式与乘法公式、全概与贝叶斯公式，尤其对于完备事件组的概念一定要好好把握。概率的考试重点在随机变量，这部分在考分中占有相当大的比重。在随即变量中，一定要对随机变量的独立性要着重关注，因为它是很多公式成立的前提基础，如 \r\nD(X + Y) ＝ DX+DY ， E(XY)=EXEY \r\n等。还有一个需要注意的是随机变量的分布函数和密度函数，对于这两个函数一般不会出概念题，而会出问题求解题。所以大家一定要掌握它们最重要的性质：分布函数最重要的性质是极限性质，密度函数最重要的性质是归一性质，利用这些性质可以求得题干中的参数。对于考纲上规定的要掌握的 \r\n6 个常见随机变量，为方便记忆，可列表记忆：\r\n　　{图片1显示}\r\n　　总之，要加强综合解题能力的训练，力求在解题思路上有所突破。 MBA \r\n试题与教科书上的习题的不同点在于，前者是在对基本概念、基本定理、基本方法充分理解的基础上的综合应用，有较大的灵活性，往往一个命题覆盖多个内容，涉及到概念、直观背景、推理和计算。许多考生往往难以适应，其突出感觉是没有思路，这正是考生考前准备应解决的突破口。考虑到数学学科的特点，要求考生自己将所有的解题思路都琢磨出来是十分困难的，这方面通常可以通过求教有经验的老师，参加有较好信誉的辅导班，或者阅读有关的辅导书解决。必须强调的是，辅导班或辅导书只是学习的一种手段，最终解决问题还要靠自己动手动脑。要充分利用一切学习机会，力求对常见的考题类型、题型、思路、特点有一个系统的把握，并在此基础上自己动手做一定数量的综合性练习题，温故而知新，不断提高自己的分析解题能力。\r\n　　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/18.txt",
    "content": "&nbsp;关于辅导班　　【来源： 太奇MBA】\r\n　　一、关于辅导班\r\n　　为什么参加辅导班？\r\n　　作为考研热潮的衍生物，考前辅导班一直备受关注，态度也是褒贬不一。但是和普研相比，MBA考前辅导班却显得格外重要。这是因为：\r\n　　参加MBA入学考试的考生至少已工作3年，学过的知识已经忘了很多，或者已经过时。大部分考生是在职备考，没有充足的时间系统的复习，参加辅导班是迅速提高应试能力的必要手段；备考生中，很多人是非管理专业的学生，参加辅导班，在有经验的老师的指导下可迅速解惑。\r\n　　如何选择辅导班？\r\n　　辅导班的选择是很重要的，但由于目前社会上辅导班数目众多，鱼龙混杂，如果考友稍有不慎选择不当，不但造成财力的损失，还会影响正常的备考复习。对如何选择辅导班给出一点建议：\r\n　　师资力量：辅导班的主体是老师，一个高水平的老师往往能深入浅出的讲解基础知识使学员迅速解惑；从不同的角度分析题型开拓学员思路，帮助学员顺利完成备考生活。\r\n　　课程安排：有了好的老师，也要有系统合理的课程的安排。考生的基础和备考时间都是千差万别的，针对不同学员的特点进行课程设置也是对学员负责的表现之一。\r\n　　办学经验：作为资深考前辅导班，它的经验也是学员们的宝贵财富。历年积累的强大学习资料库，对MBA联考走势的准确把握以及对各校招生情况的了解，对考生考入满意的学校是有极大的意义。\r\n　　管理水平：一个辅导班的管理对于学员的学习也是很关键的。辅导班有义务给学员创造一种积极活跃的学习交流氛围，象太奇组织倡导的学习小组就能使学员更好的相互学习和鼓励。\r\n　　口碑：目前的状况是广告满天飞，各种各样的承诺也是不觉于耳，多听听往年师兄师姐的亲身体会，对选到合适的辅导班是有更大的指导意义的。\r\n　　如何发挥辅导班的作用？\r\n　　选好辅导班是考生的第一步，目前MBA考前辅导班林立，使得许多人无所适从。但一条重要的参考标准是师资力量和管理服务水平。首先考生应明确这样的观念：辅导班不是万能的，它只是外部辅助条件，永远取代不了自身的努力；再就是备考期间注意做到以下几点：\r\n　　提前准备。参加辅导班之前，最好能够完成一次全面的复习，尤其是数学和管理，这样才能有的放矢，带着问题去，才能达到最好的听课效果。每次上课之前，最好也能作好该课的课前预习。\r\n　　不轻易缺课，认真听讲，作好笔记。辅导班的课程安排是非常紧凑的，每堂课的知识量很大，缺课之后是很难弥补的。上课尽量跟上进度，不懂的地方也要作好笔记，课后也好再思考或问老师、同学。\r\n　　作好笔记整理，定期回顾。笔记的整理决不是重抄一遍，而是要根据老师的讲课脉络，理清知识架构；分析体会老师的解题思路，整理好典型例题的解题方法；并对疑难问题做进一步思考。\r\n　　结合教材，作好练习。这也是非常重要的一环，可以帮助你进一步理解概念并提高实际动手能力。\r\n　　如何上好MBA考试英语辅导班\r\n　　众所周知，MBA联考科目中英语可谓是一只拦路虎。它既需要我们有背功，也要求我们要有足够的耐心去训练做题套路。因此，考生一般多选择英语基础、强化辅导班，一是通过听课可以督促自己学习，强压训练；二是有的考生觉得自己底子薄、基础差，希望早点动手准备，提高英语水平；三是还有部分考生出于跟风心理，认为别人都上辅导班，如果自己不上，总觉得心里没底。\r\n　　尽管上辅导班的考生心态各异，但目标却是一致的：通过考试。为了能达到这一目标，我们有必要先了解辅导班的性质及作用。与常规英语课的教学不同，它是一种强化训练：时间短，信息量大，针对性强。通过上辅导班，考生可以明确考点与往年相比较大的变动：淡化语法，加强读写运用。同时，辅导老师还根据当年特点，有效的突出复习重点，训练针对性强的复习方法及做题技巧。\r\n　　既然辅导班的重点在强化训练上，那么就要求广大考生在上辅导班之前做到有备而来，这样才能充分发挥听课的作用。\r\n　　首先，储备一定的词汇量。考生在听课之前应量熟悉它们。这是关系上辅导班是否有良好效果的重要因素这一，否则边听课边背单词，不仅跟不上老师的进度，还会影响到自己的信心。当然这几千个单词在上课之前不一定要求全部会认会写，只要求能够盾到它就想起它的词义就可以了，对于那些重点的常考词，老师在课上会专门强调的。背单词是一个漫长的过程，绝非在一段时间就可以解决的，它应贯穿整个备考的始终。\r\n　　其次，巩固基础语法知识，加强语法在析句方面的应用。在英语言中，单词就像棋子，而语法则如下棋规则。中国人从来就不畏语法考试，因为以前的英语考试中我们多是背规则，练规则，考规则。出题人不考类似“像棋中马应该怎么走“的规则问题，而是把整个棋局摆在考生面前，让考生自己按照规则走。它不仅要求考生对基础语法知识的全面掌握，更加注重语法在句子、文章中的运用。因此，考生在全面了解语法基础知识之后，重点应放在长、难句的结构分析上，长、难名既然是阅读理解的基础，也是英语泽汉考查的实质性内容。\r\n　　如果你已经做好了上面几项准备工作，那么再来上辅导班无疑是有备而来，有的放矢了，这样听课的收获远远超过了那些毫无准备的考生。但是由于辅导班时间集中、强度大，致使许多考生容易产生松懈的情绪，或是不能坚持听课或是完全被动地跟随着老师走，把这段时间的学习完全交到了老师手中，这些作法都直接影响到听课的效果。此外，课后的巩固是备考中不容忽视的环节。听课期间由于上课占用大部分的时间与精力，因此总要注意少而精的原则：不要马上开始大量做试题，复习重点应放在听课笔记上。下课要趁热打铁，及时复习课堂笔记，体会老师上课的做题技巧，并且利用真题进行个别专项操练。例如，课上老师讲到阅读理解中选项的分类：主旨题与细节题及它们分别有哪些标志词，那么在课后复习中，我们就可以拿出一、两套真题单独分析选项，而无须多花时间去读原文、做题，这样复习训练，目的更明确，花费时间也不会太多，而又能达到事半功倍的效果。辅导书的选择　　二、辅导书的选择：\r\n　　参考书的选择——与其博览群书，不如精读一本\r\n　　在MBA的参考书市场上，每科都有几本由名师编写的“经典”。这在有关MBA的网站上都可以看到，网站还有网上售书业务。参考书用这些通用版就可以。其实，只要是有一定名望的参考书，基本上都可以涵盖全部知识点，在所选题目、答案解析方面都可以满足要求。参考书的选择是复习前要做的重要准备工作，它不仅关系到复习进度的快慢和掌握的效率，更重要的是对你的解题思路的影响，因为在数学做题中，技巧很关键，在MBA考试中，应该在75分钟左右完成25道题目。问题求解14道题，每题3.5分钟，49分钟；充分性判断11道题，每题2.5分钟，27分钟。根据多年测算经验，如果不能保证2.5与3.5这个数学“黄金时间点”综合考试肯定完不成(其中包括了运算过程中“意外出错”的改正时间)。所以说“挤时间”成为重中之重，如何挤时间只能靠熟练的基本概念掌握与纯熟的解题技巧。所以大家在平时做题中，一定要养成良好的解题习惯，提高解题速度。下面就大家不同的数学基础层次来推荐不同的参考书目。\r\n　　(1)基础较差，没学过数学，或者工龄很长，学过的知识大部分遗忘了的考生。对于这种零基础的情况，数学要分科复习，一科一科的突破。数学包括四科，即初等数学、线性代数、微积分和概率。对于初数，可参看高等教育出版社出的高中代数书，它分为上下册，大家可以参看里面的针对MBA考试的不等式和方程，绝对值和数列部分。这些部分讲的比较浅显易懂，适合大家建立初数基础。建议大家在看书的时候，一定要把课后的习题做一下，千万不要一看自己会做了就不去做了，切记眼高手低是复习的致命陷阱。线性代数和概率可以参看大学本科文科专业的通用教材，比如参看人大或高等教育出版社出的教材，重点要把向量(组)的线性关系看透，否则后面的齐次和非齐次线性方程组解的结构就不易理解。微积分大家可参看同济大学出版社出的高等数学上下册，这也是大学本科的通用教材，主要把上册内容好好看看，因为下册讲的都是多元函数，多元函数不是考试重点，其中把与MBA相关的知识点好好看看，对复习很有帮助。概率的复习难点在于古典概型，其中涉及概念一定要好好理解，复习重点和考试重点在于随机变量，这部分公式很多，所以大家在复习的时候一定要在理解的基础上把公式记熟练。\r\n　　(2)基础一般的考生。这类考生占大多数，大家在复习的时候可参看机械工业出版社出的MBA 数学辅导书，这也是按照考试指导委员会制定的大纲进行编排的。这本书知识点归纳清晰，例题讲解详细，练习面面俱到，难度与真实考题难度基本一致，很适合有初步基础的考生提高成绩。这本书最后附有模拟题，大家在复习完后可以检验一下自己复习掌握的程度。当你把这本书看完后，你接下来可以看看奇迹230分这本书，这本书的习题综合性比较强，适合大家考前强化冲刺使用。这两本书大多数书店都有销售，这也是所有备考MBA必备的辅导书，因为每年的考题都能从其中找到出题的影子。\r\n　　(3)基础很好，想取高分的考生。对于这类好生，既然复习的很扎实，掌握的很牢固，可以参看一下普研的参考书，普研的数学四与MBA考试接近，大家可以将与MBA相关的题做一下，这对数学复习是大有裨益的。但也没有必要追求太深太难的题目，MBA数学还是侧重对基础的考察。\r\n　　总之大家在复习的时候一定要围绕一个原则：一定要始终以机工版教材为核心，因为这本教材为MBA指导委员会唯一指定的全国统编教材，在本书中都能够找到历年真题的“影子”，这本书的难度与考试难度相当吻合，且重点突出，思路清晰，例题典型，建议考生做2-3遍。大家在复习中要注意，关键在于如何用这些书。参考书不能贪多，我觉得，每科有一至两本即可。选定了这主要的一两本书后，就要充分利用，把书读透；如果时间充裕，看两三遍最好。每本书都有自己的体系，与其博览群书，不如精读一本。往年的考题是最好的复习资料，当你将知识点都复习完的时候，可以做做历年真题，从中可以把握命题思路和答案的组织方式。\r\n　　但是，从许多考生经验来看，只复习这一套书还是远远不够的，恰当的选择其他的辅导书还是很有必要的。\r\n　　2&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000020/19.txt",
    "content": "　　1.考生填报志愿采取网上填报方式，考生须在规定时间内登录北京教育考试院网站填报志愿，网址为www.jeea.cn/ 或gk.bbn.com.cn/ 。同时提供电话填报方式，考生可通过拨打声讯电话1606790填报志愿或查询志愿。\r\n　　2.考生填报志愿，要严格按照《2006年全国普通高等学校在京招生专业目录》填写信息。\r\n　　3.考生填报志愿时，宜先草拟一份志愿表，内容包括考生的考生号和要填报的院校代码及名称、专业代码及名称，以保证填报志愿的准确和填报过程的顺利。\r\n　　4.考生在网上报名阶段设定的密码作为网上填报志愿的初始密码。在第一次填报志愿之前将开通系统供考生修改密码，考生必须修改密码才能进行志愿填报，考生需牢记修改后的密码，凭此密码进行第一次志愿填报、第二次志愿填报和各批次志愿补报。如考生忘记密码，须在系统开通的日期内携带本人身份证到本报名单位登记申请恢复密码。\r\n　　5.在第一次志愿填报时同时采集考生特征，考生特征的主要内容为照顾对象，具备相关特征的考生须参加第一次填报。考生在选中相应选项后必须向报名单位提供相关证明材料方为有效。\r\n　　6.第一次填报提前批、本科一批、本科二批、本科三批的志愿及艺术类高职录取院校的志愿，提前录取院校可选报两个志愿学校，第一批、第二批、第三批录取院校可在本批内各选报三个志愿学校，艺术类高职可选报两个志愿学校，每个志愿学校可选报五个专业。\r\n　　7.第二次填报专科录取批次的志愿，可选报四个志愿学校, 每个志愿学校可选报五个专业。\r\n　　8.今年继续实行公布批次未完成计划重新征集志愿再行录取的方式。在本科一批、本科二批、本科三批和专科批次的正式志愿录取结束后，如高等学校计划未完成，将公布未完成计划，重新征集考生志愿再行录取。\r\n　　在每个批次的志愿补报期间，达到相应批次录取控制分数线且未被录取的考生可补报相应批次未完成招生计划的院校和专业志愿。录取期间各批次未完成计划的院校和专业信息请参照北京教育考试院网站或媒体宣传。\r\n　　本科各批次补报志愿可选报三个志愿学校, 每个志愿学校可选报三个专业。专科批次补报志愿可选报四个志愿学校, 每个志愿学校可选报三个专业。\r\n　　补报志愿在录取时按照“分数优先，从高分到低分，按志愿顺序”一次性向招生学校投档，由招生学校审查录取。\r\n　　9.电话填报必须使用北京市固定电话操作，且务必使用音频电话。\r\n　　10.志愿填报日程安排\r\n　　5月 9日 8:00—5月12日 8:00\r\n　　系统开通供考生修改密码\r\n　　5月12日8:00—5月17日18:00\r\n　　第一次志愿填报\r\n　　7月31日8:00—8月 2日18:00\r\n　　第二次志愿填报\r\n　　预计7月14日(以录取期间公布的为准)\r\n　　本科一批志愿补报\r\n　　预计7月21日(以录取期间公布的为准)\r\n　　本科二批志愿补报\r\n　　预计7月27日(以录取期间公布的为准)\r\n　　本科三批志愿补报\r\n　　预计8月 7日(以录取期间公布的为准)\r\n　　专科批次志愿补报\r\n　　网上填报志愿步骤\r\n　　通过浏览器登录www.bjeea.cn/ ，点击“网上报名”，然后点击“2006年北京市普通高等学校招生网上志愿填报”进入系统，或者直接登录gk.bbn.com.cn/ 进入系统；\r\n　　点击“修改密码”修改自己的密码；\r\n　　点击“提交志愿信息”，输入考生号、密码和校验码，点击“确定”进行登录进入志愿填报页；\r\n　　有关考生填报考生特征；\r\n　　填报院校志愿和专业志愿，在院校框中输入3位院校代码，在专业框中输入2位专业代码(输入代码后会显示相应院校名称和专业名称)，并选报是否服从专业调剂和是否愿意走读；\r\n　　点击“提交”完成志愿填报。\r\n　　声讯电话填报流程\r\n\r\n\r\n\r\n\r\n　　编辑:苏琳"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/10.txt",
    "content": "　　新华网深圳3月3日电（记者贾文军）全国拳击锦标赛3日在深圳市龙岗体育中心拉开战幕，在接下来的一周里，来自全国各地的200多名拳击健儿将在这里展开角逐。\r\n\r\n　　本次锦标赛由国家体育总局拳击跆拳道运动管理中心主办。比赛设置了51公斤、57公斤、64公斤、75公斤和91公斤5个级别，全国各地共有45支代表队参赛。\r\n\r\n　　此前，中国拳击队已经在深圳进行了3个月的冬训。国家体育总局拳击跆拳道运动管理中心副主任崔富国表示，要通过这次比赛来检验冬训的成果，也要根据比赛成绩为2008年北京奥运会选拔优秀人才。\r\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/11.txt",
    "content": "　　《看今天》两会特别报道已经开始启动，两会和我们每个人的生活息息相关，让我们一同关注两会。您最想跟两会的代表委员说些什么？您有什么问题和建议想告诉他们？您可以拨打《看今天》的热线电话：010-51005100，也可以在搜狐网的两会专题上留言，《看今天》栏目组将搭起你和两会代表委员之间的桥梁。（注：以下问题主要面对北京网民，如果您是外地网友，请注明你所在的地域）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/12.txt",
    "content": "　　2006年2月25日北京，香港利苑饮食集团在京开办的第一家食府—北京利苑酒家,在位于王府井金宝街的金宝大厦内隆重开业，此次开业标志着香港利苑饮食集团首次将目光聚焦北京。\r\n　　利苑酒家是近年来进驻北京历史最悠久的粤菜食府之一。自1973年在香港九龙开办第一家店以来, 利苑集团在饮食界已拚搏近30余年，旗下拥有13所酒家, 遍布香港、中国大陆、新加坡, 凭借着雄厚的实力, 各家店均屡获殊荣。1992年至2006年，新加坡利苑酒家连续24年荣获《Singapore Tatler》新加坡最佳食府之一；而香港利苑酒家则荣获《Hong Kong Tatler》2006年度香港最佳食府称号；2005年，利苑酒家被评为香港资本杰出行政品牌。\r\n　　此次进驻北京，利苑在酒家的装潢与菜品烹制上煞费苦心。投资三千五百万元，特地邀请了的著名意大利裔设计师Hernan . Zanghellini为北京利苑进行设计，他曾经为香港多个著名的高级餐厅及会所提供设计。北京利苑囊括了中、西方传统与现代特色，充分满足顾客的各种需要。而独具利苑特色的16间贵宾厅房设有配餐间与洗手间，它们的独立设计也是十分精巧，既保证了菜品最大程度的鲜美又为宾客提供最便捷的服务。酒家的装饰也是匠心别具，每一个小小的饰物都是酒家费心竭力挑选、订做的。餐桌上每一盆花都是邀请香港著名插花大师，绿芷花艺公司（Green Finger）的陈庆让先生到京专程花费数天时间制作而成；酒家中每一件陈设都是费尽心思，四处搜罗精选而来；就连小小的餐具衬盘也是按照每一贵宾室不同的风格量身定做, 设计精美, 身价不斐。\r\n　　此外，素有香港“饮食界少林寺”之称的利苑集团，在陈主席“先教做人，后教做事”的经营理念下，坚持以健康的原料、精湛的烹饪方法为顾客提供高贵、正宗的精美粤式菜品; 将食物最自然的颜色、最鲜美的味道搭配在一起，充分将食物最鲜美的一面展现在顾客面前，并不断对菜式进行创新，三十年来创出上千款菜式，将中国及世界各地食物的精华，融入传统粤菜之中，菜式千变万化，成为新派粤菜的佼佼者。北京利苑更是潜心研究“南菜北做”，坚持使用来自原产地的原料，保持食物最正宗的味道，使菜品既有传统粤菜的鲜美又更加符合北方顾客的口味；并且专程从香港、广州等老店调配经验丰富的优秀服务人员为北京店近200名员工进行培训；更是将高端科技运用到酒家经营当中，每个贵宾室均配有无线上网设施，最大限度地为客人提供方便，而点餐所用的电脑系统更是容纳了1万余种不同选择，满足每一位客人对菜品的特殊要求；尽力为顾客打造一个优雅、舒适的高品质的用餐空间。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/13.txt",
    "content": "　　留守人士自我安慰：在北京过春节的十理由\r\n　　www.XINHUANET.com2006年02月01日 20:00:35来源：新华网\r\n　　【字号：大 中 小】 【背景色 】 【留言】 【评论】\r\n　　过年留守北京这个决定英明 在北京过年的十大理由\r\n　　难道真的是“非副刊”前不久那期“有钱没钱咱都回家过年”造的孽吗？这几天，当汹涌人潮涌向首都国际机场、北京站、北京西站、北京南站、北京北站(请问北京还有别的站吗)时，我们感到了一丝恐慌。\r\n　　一想到瘦小的我将于今晚被装进那个绿皮儿临时加车里并将颠簸14个小时，一种强烈的愿望纠缠了我：真想不走了，留在北京过年！\r\n　　是的，如果你不回家过年，那你可能会变成一个不孝子，因为老爹老娘正盼着你常回家看看。但是，你已经没法回去了，那就别折磨自己了，春节到来前一天，“非副刊”推出十大理由，帮助留在北京过年的你做到心安理得。\r\n　　理由一，省旅途劳顿。这些劳顿包括——半夜三更去火车站搏票的麻烦；和讨厌的同事赔笑脸以便说服人家替你值班的麻烦；坐完飞机坐火车、坐完火车坐汽车、坐完汽车坐牛车的麻烦。省去这些麻烦后，你只需猫在自己的小窝里，坐看窗外风生水起、风云变幻就可以了。\r\n　　理由二，省钱。科技意味着花很多钱让事情变得简单，然而回家却意味着花很多钱让事情变得麻烦。我的同事苏三去西站的人潮人海中花了700多块钱买了一张高价硬卧票；我的领导花2000元买到一张去长沙的飞机票，他将有生以来第一次坐头等舱，因为售票员说，这是年前最后一张飞长沙的机票，你要不要；诚然，我的火车票只花了33块(我说过是加车)，但这并不意味着我不需要为回家而肉痛，我有四个亲侄子三个亲外甥，我两个表嫂一个表姐也都赶在我回家前生了孩子。你知道，这年头，红包里不装个百八十块，根本拿不出手。\r\n　　理由三，感受北京的交通畅通！你知道，这是你做梦都在企盼的情景啊。当百万雄师过大江的时候，江的这边立马清静了下来。所以，当百万外地人返乡过年的时候，整个北京城也会刷地清静下来。那时，北京有极为宽阔的马路，想想看，那么宽的路上只有你等少数几个或者几辆车在溜达，多气派啊。\r\n　　理由四，睡觉。如果不回家，你完全可以关掉手机大睡七天没人干涉！\r\n　　理由五，为了你的牵挂——你的花，你的鸟，你的猫，你的狗，甚至为了你厨房里的小强。如果回家过年，你会像我一样忍受与爱犬分别的痛苦，你厨房里的小强也会因为找不到充足的口粮饥饿而死。想给它们打个慰问电话吧，可人家又不会说话。如果在北京过年，就可以和它们长相厮守了。\r\n　　理由六，为了小偷。当然，我不是指和小偷长相厮守，我指的是避免小偷在你回家过年的时候光顾你的小窝。即使你像我一样穷吧，想想看，小偷先生坐在你的马桶上，看着别人写给你的情书，吃着你积攒的零食，肯定会让你很不爽的。\r\n　　理由七，为了你的健康。你不用被爹娘拽着给你大姑去拜年，也不用被同学拽去通宵搓麻，他们不知道你颈椎不好，医生说过汽车急刹车的话，别人没事，你的脖子就有可能断掉。你也不必被拉着去和N年不见的中学同学应酬，听人家吹牛你不爽，看人家带着漂亮的女友你不爽。\r\n　　理由八，真正感受一把北京这个和你息息相关的城市。你知道，春节期间，北京大大小小的庙会很多的。老北京的民俗集中展示在你眼前(有关这项，请看B06-B09的庙会专版)。想想看，上午到商场积分凑返券，下午逛庙会看燕子李三、大刀王五们表演，时而来串糖葫芦，时而来坨棉花糖，很有味道呢。\r\n　　理由九，省去离愁别绪。你知道这样说很不孝，但是你娘总是这样说：“不回来也罢了，回来后又走掉，娘心里头难受啊。”为了让娘少些离愁，干脆把路费钱省出来寄给你娘吧。\r\n　　理由十，没有理由，因为你是北京人。如果你是北京人，干吗不舒舒坦坦地呆在北京呢？啥时候外出旅游不行啊，偏偏赶这个挤死人不偿命的春运高峰？！何况，北京也可以放鞭炮了，你还可以去京郊农家小院小住几天，你可以去延庆泡温泉，可以去密云滑雪……\r\n　　最后，无论你因为哪种理由留在北京过年，你都是值得羡慕的。那些正在火车上颠簸的人，他们此刻所渴望的幸福，正是你现在所拥有的。所以，珍惜吧，兄弟。至于你对家的思念，他们会帮你带到的。 \r\n来源：华夏时报"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/14.txt",
    "content": "　　大学生小袁网上投简历求职，一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知，他们没有在广东设立分公司，也没有在广东进行招聘。警方提醒，这很可能是个骗局。\r\n　　小袁是在一知名人才网站上发出电子简历的，令小袁意外的是，简历没投几天，就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他，公司现在正要\r\n　　引进一批毕业生，年前就到岗培训，询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日，对方煞有介事地给小袁进行了电话招聘面试。三天后，小袁接到电话通知面试通过了，于1月22日到广东东莞体检、复试。\r\n　　据小袁所知，这家半导体公司好像是在上海，而对方让去东莞复试，他有点纳闷。曹女士解释说，公司要在东莞设立分点，亟待一批相关专业的大学生加盟。随后，她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。\r\n　　小袁动心了，1月17日他来到火车站，准备预订到东莞的车票。由于没有直达车，到广州的票也没有了，他只好又回到了学校。此时，冷静下来的小袁才感觉事情有点不对劲。随后，他上网搜索了这家公司的详细资料，发现只有上海总部在发布招聘启事，其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。\r\n　　随后，小袁拨打了东莞110报警电话，当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生，被不法分子骗进传销窝点。\r\n　　（来源：北京人才市场报）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/15.txt",
    "content": "　　讲述：我网上求职险遭名企骗局\r\n　　http://www.sina.com.cn 2006年01月28日10:31\r\n　　大学生小袁网上投简历求职，一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知，他们没有在广东设立分公司，也没有在广东进行招聘。警方提醒，这很可能是个骗局。\r\n　　小袁是在一知名人才网站上发出电子简历的，令小袁意外的是，简历没投几天，就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他，公司现在正要\r\n　　引进一批毕业生，年前就到岗培训，询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日，对方煞有介事地给小袁进行了电话招聘面试。三天后，小袁接到电话通知面试通过了，于1月22日到广东东莞体检、复试。\r\n　　据小袁所知，这家半导体公司好像是在上海，而对方让去东莞复试，他有点纳闷。曹女士解释说，公司要在东莞设立分点，亟待一批相关专业的大学生加盟。随后，她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。\r\n　　小袁动心了，1月17日他来到火车站，准备预订到东莞的车票。由于没有直达车，到广州的票也没有了，他只好又回到了学校。此时，冷静下来的小袁才感觉事情有点不对劲。随后，他上网搜索了这家公司的详细资料，发现只有上海总部在发布招聘启事，其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。\r\n　　随后，小袁拨打了东莞110报警电话，当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生，被不法分子骗进传销窝点。(文/)\r\n　　（来源：北京人才市场报）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/16.txt",
    "content": "　　大学生求职供求不匹配凸显\r\n　　2006年，大学毕业生求职面临的最大障碍是供求不匹配。前程无忧最新发布的调查显示：月薪1000元已成为毕业生的求职底线；七成以上企业认为2005届毕业生在工作中表现平平，缺乏责任感、不愿吃苦和环境适应能力差成为毕业生的致命伤。\r\n　　本次调查覆盖国内27个省市40所重点大学的5.8万名应届毕业生，访问涉及33大行业的5800家企业。在受访企业中，3515家计划今年再次招聘毕业生。其中3108家提出明确招聘人数，提供空缺职位6——6.5万个，比上年增加了三分之一。但大量招聘毕业生的企业并不多，计划招聘超过100人的企业只有148家，不足5%。\r\n　　调查还发现，民营企业已成为就业机会的最大提供者，提供的收入水平已接近外资企业。1169家民营企业计划招聘2.8——3万名毕业生，超出了外企2.2——2.3万名的人才需求。\r\n　　2006应届毕业生最愿意工作的地区是上海、北京和广东，其次为浙江省和江苏省。毕业生都把“经济发达、机会多、平均收入比较高”，作为选择工作地区的第一标准。\r\n　　热门行业供求不对称\r\n　　大学生求职中的供需矛盾，不只体现在数量和排行上，由于知识、能力不匹配，企业对能否招到合适的大学生表示“不乐观”。\r\n　　调查显示，计划招聘毕业生最多的五大行业分别是：计算机、电子技术、快速消费品、生物制药和房地产，需要人数3.8——3.9万个。而毕业生愿意投身的前五大行业依次为：通讯电信、金融证券、计算机、互联网和贸易。\r\n　　在通讯电信行业，招聘规模和收入增长都在收缩，人才需求数位列第13位。传统的固网运营人才比重已经偏高，新兴的3G、NGN、IPTV等方面的技术人才稀缺，企业更愿意招聘硕士和博士毕业生。\r\n　　在计算机和电子技术行业，企业招聘毕业生主要从事技术研发和技术应用，对知识专业度要求很高。如Intel计划全国招聘500人，主要考虑硕士以上应届毕业生，本科生求职之路并不乐观。\r\n　　金融证券人才一直是人才市场的热门。但金融证券行业目前主要急缺业务人员和高层次的经营管理人才，企业通常只招两三名应届毕业生作为人才储备。\r\n　　而需求旺盛的快速消费品和批发零售行业，在毕业生愿意从事的行业排名中分列第15和第24位，生物制药行业列第19位，愿意在保险业工作的学生仅有721人，列倒数第三。\r\n　　大量销售职位无人问津\r\n　　销售是企业收入最为倚重的职能，可是满腔抱负的学生多数不愿从事。据说有保险公司到一家重点大学联系校园招聘会，就业指导办公室的老师直接劝企业放弃，没有毕业生愿意做保险业务代表。\r\n　　调查发现，企业最缺销售人才，提供空缺职位2.96——3.03万个；其次是技术研发和应用8770——9480人；再次是生产制造和工程、工艺设计和市场广告等方面的人才。3515家计划招聘2006应届毕业生的企业中，2866家有意让毕业生做销售工作；148家招聘规模超过100人的企业，95%以上招聘毕业生担任营销职能。\r\n　　但毕业生愿意从事的工作职能前五位分别是：技术研发、市场广告、人力资源管理、贸易采购和行政后勤，愿意从事销售的人数排在第八位。\r\n　　调查分析，很多毕业生认为销售工作要看人脸色，刚毕业没有社会关系和销售渠道，往往累得半死还赚不到钱。也有学生认为，做销售技术含量低，不稳定也不体面。有意思的是，不少学生愿意从事外贸工作，认为它和一般销售不同，不仅收入可以较快提高，还可以接触到国际公司。\r\n　　最为尴尬的可能要属生物制药行业。很多跨国企业都想招聘大学毕业生，培养和储备销售人才。但很多医学院的毕业生表示宁愿在小医院拿低工资，也不想到跨国公司任医药代表。\r\n　　对此专家表示，没有比销售工作更能培养人的意志品质和沟通交往能力了。中国服务业需要一大批兼具专业知识和技能的营销人才，一个汽车高级销售经理的年薪约50万元，优秀的保险业务代表年薪可达百万元，但这样的人才往往有价无市。\r\n&nbsp;&nbsp; \r\n\r\n\r\n\r\n\r\n\r\n计划招聘应届毕业生最多的前八大行业\r\n\r\n应届毕业生愿意从事的前八大行业\r\n\r\n\r\n毕业生收入预期（上）和企业给付水平（下）的比较\r\n&nbsp;&nbsp;&nbsp; \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/17.txt",
    "content": "　　大学生小袁网上投简历求职，一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知，他们没有在广东设立分公司，也没有在广东进行招聘。警方提醒，这很可能是个骗局。\r\n　　小袁是在一知名人才网站上发出电子简历的，令小袁意外的是，简历没投几天，就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他，公司现在正要\r\n　　引进一批毕业生，年前就到岗培训，询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日，对方煞有介事地给小袁进行了电话招聘面试。三天后，小袁接到电话通知面试通过了，于1月22日到广东东莞体检、复试。\r\n　　据小袁所知，这家半导体公司好像是在上海，而对方让去东莞复试，他有点纳闷。曹女士解释说，公司要在东莞设立分点，亟待一批相关专业的大学生加盟。随后，她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。\r\n　　小袁动心了，1月17日他来到火车站，准备预订到东莞的车票。由于没有直达车，到广州的票也没有了，他只好又回到了学校。此时，冷静下来的小袁才感觉事情有点不对劲。随后，他上网搜索了这家公司的详细资料，发现只有上海总部在发布招聘启事，其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。\r\n　　随后，小袁拨打了东莞110报警电话，当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生，被不法分子骗进传销窝点。\r\n　　（来源：北京人才市场报）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/18.txt",
    "content": "　　大学生小袁网上投简历求职，一家自称设在广东的跨国公司分公司很快就打来电话进行“面试”。然而小袁查询该公司在上海的总部得知，他们没有在广东设立分公司，也没有在广东进行招聘。警方提醒，这很可能是个骗局。\r\n　　小袁是在一知名人才网站上发出电子简历的，令小袁意外的是，简历没投几天，就有一家比较知名的半导体跨国公司给自己打来电话。一位姓曹的女士告诉他，公司现在正要\r\n　　引进一批毕业生，年前就到岗培训，询问小袁有没有去的意向。欣喜若狂的小袁当即就同意了。1月15日，对方煞有介事地给小袁进行了电话招聘面试。三天后，小袁接到电话通知面试通过了，于1月22日到广东东莞体检、复试。\r\n　　据小袁所知，这家半导体公司好像是在上海，而对方让去东莞复试，他有点纳闷。曹女士解释说，公司要在东莞设立分点，亟待一批相关专业的大学生加盟。随后，她又把公司丰厚的工资、住房待遇向小袁作了一番介绍。\r\n　　小袁动心了，1月17日他来到火车站，准备预订到东莞的车票。由于没有直达车，到广州的票也没有了，他只好又回到了学校。此时，冷静下来的小袁才感觉事情有点不对劲。随后，他上网搜索了这家公司的详细资料，发现只有上海总部在发布招聘启事，其他地方根本就没有设立分公司。东莞的114也根本查不到这家公司的电话。\r\n　　随后，小袁拨打了东莞110报警电话，当地民警告知这很可能是个骗局。此前就有不少急于找工作的大学生，被不法分子骗进传销窝点。\r\n　　（来源：北京人才市场报）"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000022/19.txt",
    "content": "　　20位网友领到免费回家机票\r\n　　自从Qunar与搜狐、天益游网站合办“夺宝奇兵”的活动以来，已经有好多人中得免费机票，其中有二十位已经定好回家的机票，时间就在临近春节之前。为了让大家能够轻松愉快的领到机票，Qunar和天益游决定把领票地点放在咖啡店，让大家既可领到免费机票，又可以享受到咖啡的浓香，让活动至始至终有个完美的诠释。\r\n　　上周五晚上六点多钟，中奖人陆陆续续来到领奖现场，在Qunar几个工作人员的组织下，由去哪儿旅游搜索引擎合伙人庄臣超和天益游总经理谭治国把机票发到每位中奖人手中。先来的惊诧，后来的惊讶，大家都没想到有这么多中得大奖的人可以拿到年前的免费机票。其中有好几位家离北京都很远，家在贵阳、兰州、重庆、广州的都有，每次都挺害怕过年，而今年他们不再为此而担心了。当大家听到还有到机场的免费接送时，不由得发出欢乐的笑声。\r\n　　活动很快结束了，大家留下合影，也回去了。对某些人来说这一刻已经在记忆中消失，而对于某些人来说，这一刻刻骨铭心！"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/10.txt",
    "content": "&nbsp;　　从今天的影响来看，2004年创立的\"数字炼金馆\"无疑是\"数独\"兴起历程中一个标志性事件，尽管它当初不过是数独天才们互相诘难的产物。　　随着不断有更多的数独爱好者向他们提问，\"数字炼金馆\"认为有必要精炼\"数独\"题的篇目，以原创的经典题目让更多数独迷得到打开数字迷宫的快乐，而不是被垃圾题目弄得晕头转向。　　现在，68%的数独迷只做《疯狂数独》的题目，因为，它意味着更多的原创、更多的经典、更多的快乐、更多的疯狂。　　数独（Sudoku）是目前风靡全球的一种数字游戏，其概念源自两百年前盲眼的瑞士数学家欧拉发明的\"拉丁方格\"的游戏。但数独一词来自日文（すうどく），是由\"数\"和\"独\"两个词组成，这一游戏完全适合当今这个以游戏为乐事的时代，而且数独游戏无需翻译就能跨越一切国界。　　这种游戏令很多人为之痴狂，而且同步席卷了整个世界。英国几乎所有的报纸都刊登了数独游戏，甚至还进了黄金时间的电视节目里；从澳大利亚到克罗地亚，从法国到美国，各家报纸杂志纷纷刊登这种填数游戏，日本人每月购买的数独杂志超过60万份，《纽约时报》甚至考虑将数独与其备受推崇的纵横字谜一同纳入在周日刊上；网络上的数独游戏数不胜数，人们甚至可以将它下载到手机上。有人预言，数独可能会重演20世纪80年代全球人手一个\"魔方\"的盛况。　　人们在推究数独热的原因时，首先想到的是很多国家的人本来就喜爱玩拼图游戏；再者，数字具有神奇的属性，数的性质让无数数学大师痴迷，很多举世闻名的数学难题都是数论问题。　　当然，数独的流行还有深层次的原因，在3D游戏、网游等各种高级游戏越来越华丽、玩法越来越复杂的今天，如同其他很多越来越复杂的新事物一样，新游戏已经丧失了简单游戏的很多优点。然而，数独由于规则简单，却变化无穷，在推敲之中完全不必用到数学计算，只需运用逻辑推理能力，所以受到老少男女的喜爱。　　数独也许算不上刺激，但非常有趣，似乎思路被卡住了，却突然之间推敲出某个数字，从而成功地解出答案，由此而生的满足感棒极了。这是一个从混乱中理出头绪的游戏，能够在不确定的生活里，随时拥有如此简单且立即的\"惊喜\"，总是令人心情愉快的。　　在中国，《疯狂数独》作为数字炼金馆的原创经典，引领了数独爱好者的疯狂，数独在中国即将掀起一阵数字游戏的狂风，迅速中小学生手中风靡起来，随之成为众多青少年和都市白领为之痴迷的智力、娱乐游戏。人手一册《疯狂数独》，考验和你智力和能力，挑战数独的极限境界。　　出版社：中国三峡出版社　　出版时间：2005年10月　　定价：20元　　     共找到20,159,004\n个相关网页. "
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/11.txt",
    "content": "&nbsp;　　由文物出版社出版的《中国大史记·传世邮币珍藏》26日在故宫太庙举行了首发式。据出版方介绍，这套图书创造了中国出版界的六个第一，一问世便吸引了足够的眼球。　　据介绍，《中国大史记·传世邮币珍藏》共收藏了100枚中国古代钱币珍品和722枚邮票真品，根据不同历史朝代的更替，分为八卷。每卷 图书除收录相对应时期的邮票与古币外，还设有“历史故事”、“中国大事记”、“世界大事记”、“历史小百科”四大文字版块，使五千年中华历史风云更加立体、深入地呈现在读者面前。这样厚重的安排使得本书创造了多项中国出版史上的六个第一，一出世而惊四座，成为今年出版界最引人瞩目的图书之一。　　这六项第一是：　　——最全，是第一部不断代的以中国古钱币和邮票实物佐证历史的大全；　　——最多，收藏的古钱币和邮票珍品总数多达800多枚，任何其他同类图书都难望其项背；　　——最早，古代钱币从4000多年前我国最早的原始货币“贝币”开始，到骨贝、“蚁鼻钱”、秦半两、“一化”、刀币等珍稀古币一路沿承，直至清朝最后一枚方孔圆钱——宣统通宝，邮票则包括中国1888年出品的第二枚邮票“小龙票”；　　　  ——材质最丰富，除金币外的所有钱币材质，如天然贝、骨、铜、铁、铅锡、银、镍均有收藏；　　——最珍稀，如远古的贝币、刀币、布币，中国第二枚邮票“小龙票”、数十枚“文革”时期邮票和老纪特票等；　　——最少，全国仅发行2000册，决不再版，也不可能再版。　　《中国大史记》是翰墨林公司酝酿、筹备多年、积钱币学专家、历史学家、设计大师、策划大师之力，经过三年准备、一年制作之功所得。书中收录的所有钱币和邮票均经相关权威部门鉴定为真品。　　当目睹这些锈迹斑驳、饱经历史沧桑的古钱币，中国5000年来的文明进程、社会兴衰、王朝更迭乃至经济的起落跃然于眼前。从秦皇汉武到唐宗宋祖，从春秋战国到隋唐明清，直至光绪民国。历史不再是尘封的典籍，从此鲜活生动起来；当七百余枚邮票成为中国上下五千年历史的形象载体，就获得了前所未有的冲击力，讲述着中国数千年的历史，展示着中华灿烂文化，直观地表现了中华文明前进的脚步。　　正是由于这六个出版界第一，该书策划人饶声勇在首发式上自豪地说，文明的脉搏、文化的回声、文物的绝唱，薪火相传，百世一系，尽汇《中国大史记》。　　原人大常会副委员长布赫，文化部副部长郑欣淼，国家文物局博物馆专家组组长、中国博物馆学会理事长、国际博协中国国家委员会主席、北京市人民政府专家顾问团顾问吕济民，中华全国集邮联合会秘书长盛名环，收藏协会副会长杜耀西等出席了北京秀世传播机构承办的首发式，全国政协副主席张克辉为首发式撰写了贺信。      共找到985,015\n个相关网页. "
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/14.txt",
    "content": "\r\n\r\n\r\n\r\n《大长今》调查\r\n\r\n1、你看《大长今》吗？\r\n\r\n不看\r\n\r\n赶上就看\r\n\r\n正在追着看\r\n\r\n看过n遍  \r\n\r\n2、《大长今》吸引你的是\r\n\r\n情节曲折，悬念迭起\r\n\r\n俊男靓女美食\r\n\r\n爱情亲情友情感人，台词经典\r\n\r\n励志向上，善和美打动人心  \r\n\r\n3、你认为日韩剧成功在哪里\r\n\r\n细节取胜，平淡中见真情\r\n\r\n情节设计合理，戏剧性强\r\n\r\n人物立体丰满，贴近生活，比较真实\r\n\r\n演员表演分寸适当，不夸张\r\n\r\n包含很多时尚元素，画面唯美  \r\n\r\n     \r\nvar NewWin = null; function WinOpen(url) {if(!NewWin || NewWin.closed) {NewWin=LoadWin(url,'win_poll',418,300);}else{NewWin.focus();}} function LoadWin(url, name, width, height) {var str='scrollbars,resizable,location,height='+height+',innerHeight='+height+',width='+width+',innerWidth='+width; if(window.screen) {var ah=screen.availHeight-30; var aw=screen.availWidth-10; var xc=(aw-width)/2; var yc=(ah-height)/2; str +=',left='+xc+',screenX='+xc; str +=',top='+yc+',screenY='+yc;} return window.open(url,name,str); }搜狗(www.sogou.com)搜索:“人物”,共找到28,456,427\n个相关网页."
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/15.txt",
    "content": "\r\n【哀乐中年】 1949年文华影业公司出品\r\n哀乐中年\r\n&nbsp;&nbsp;&nbsp; 原著：张爱玲编剧：桑弧导演：桑弧片长：100分钟色彩：黑白主演：石&nbsp; 挥&nbsp; 饰&nbsp; 陈绍常&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 韩&nbsp; 非&nbsp; 饰&nbsp; 陈建中&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 李浣青&nbsp; 饰&nbsp; 经理女儿&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 朱嘉琛&nbsp; 饰&nbsp; 敏华\r\n【剧情简介】\r\n&nbsp;&nbsp;&nbsp; 陈绍常创办小学多年，自任校长。其妻英年早逝，留下三个孩子赖他照料。别人每每劝他续弦，但他目睹挚友刘之权的女儿敏华备受后母虐待之苦，便打消了续娶之念。后来，刘之权全家迁居外地，多年音讯杳然。某日，敏华突然前来叩见，谋求职业。绍常同情她的遭遇，便留她在校任教。此时，绍常的孩子也都成人。长子建中在一家银行供职，与银行经理的女儿结婚，社会地位也日益提高。他力劝绍常退休，在家颐养晚年。绍常被勉强说服而向学校提出辞呈，并推荐敏华继任校长。建中为了表示支持，恳请岳父捐款给学校并担任学校的董事长。绍常赋闲在家，孩子们成家后，与他往来日疏。只有敏华，为了工作常来和他谈心，她深知他的事业心很强，生命力也还旺盛，应该工作。经敏华热情、诚挚的邀请，绍常又回到学校。不久，学校里一个同事托他向敏华求婚，他忽然感到一种异样的心情，开始觉察到自己已爱上敏华。同时，他发现敏华也一直爱着他。于是，他告诉建中，自己准备结婚，却遭到建中与家里所有人的坚决反对。建中并宣称，他代表岳父以学校董事长的名义，将敏华撤职。绍常为维护他和敏华的感情，也毅然离开学校。他俩结婚后，共同创办另一所小学。在新学校开学之日，也正是敏华的婴儿呱呱坠地之时，他们都感到“生命无处不在”的喜悦。上一页&nbsp;[1]&nbsp;[2]&nbsp;[3]&nbsp;[4]&nbsp;[5]&nbsp;[6]&nbsp;[7]&nbsp;[8]&nbsp;[9]&nbsp;下一页&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/16.txt",
    "content": "\r\n【倾城之恋】&nbsp;&nbsp;&nbsp;&nbsp; 1984年香港邵氏公司出品\r\n倾城之恋\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 到处都是传奇，可不见得有这么圆满的收场。胡琴咿咿呀呀拉着，在万盏灯火的夜晚，拉过来又拉过去，说不尽的苍凉的故事——不问也罢！---【倾城之恋】\r\n出品：邵逸夫原著：张爱玲改编：蓬草美术：区丁平摄影：何东尼作曲：林敏怡作词：林敏聪演唱：汪明荃片长：95min语言：粤语/普通话外文别名：Love in a FallenCity(1984)副导演：关锦鹏、曹建南导演：许鞍华主演：周润发&nbsp; 饰&nbsp; 范柳原&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 缪骞人&nbsp; 饰&nbsp; 白流苏获奖：第25届金马奖最佳服装设计 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 第4届香港电影金像奖最佳音乐\r\n【剧情简介】&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 本片改编自张爱玲的同名原著小说，是一部具有相当怀旧色彩的爱情故事，讲述一个城市（香港）的陷落，是为了成全范柳原（周润发）和白流苏（缪骞人）的爱情。导演许鞍华捕捉到了男女之间那种似假还真的微妙感情，但对白有所拘紧，局限在原著小说中，有欠挥洒自如。本片的情节发展为前后二部分，前半部描写离婚多年的白流苏在上海的娘家饱爱兄嫂的讽刺欺凌，后半部白流苏到了香港，跟风流浪子周润发展开了拉锯式的爱情。缪演得相当敏感而细腻，把一个不错的上海女子塑造得相当有味道，而周也卖弄了他的俊雅潇洒。幸而导演掌握了对白独有的尖刻嘲讽，重现了香港四十年代的风情。上一页&nbsp;[1]&nbsp;[2]&nbsp;[3]&nbsp;[4]&nbsp;[5]&nbsp;[6]&nbsp;[7]&nbsp;[8]&nbsp;[9]&nbsp;下一页&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/17.txt",
    "content": "\r\n【红玫瑰与白玫瑰】 1994年第一机构有限公司出品\r\n红玫瑰白玫瑰\r\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 也许每一个男子全都有过这样的两个女人，至少两个．娶了红玫瑰，久而久之，红的变了墙上的一抹蚊子血，白的还是“床前明月光”；娶了白玫瑰，白的便是衣服上的一粒饭粘子，红的却是心口上的一颗朱砂痣。&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --【红玫瑰与白玫瑰】\r\n原著：&nbsp;&nbsp;&nbsp; 张爱玲编剧：&nbsp;&nbsp;&nbsp; 刘恒林 亦华导演：&nbsp;&nbsp;&nbsp; 关锦鹏摄影：&nbsp;&nbsp;&nbsp; 杜可风美术指导：朴若木色彩：&nbsp;&nbsp;&nbsp; 彩色片长：&nbsp;&nbsp;&nbsp; 110min分级：&nbsp;&nbsp;&nbsp; 芬兰/K-16语言：&nbsp;&nbsp;&nbsp; 粤语外文别名：Red Rose White Rose(1994)主演：&nbsp;&nbsp;&nbsp; 赵文宣&nbsp; 饰&nbsp; 佟振保&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 陈&nbsp; 冲&nbsp; 饰&nbsp; 王娇蕊&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 叶玉卿&nbsp; 饰&nbsp; 孟烟郦获奖：&nbsp;&nbsp; 台湾电影金马奖最佳女主角、最佳剧本、最佳美术设计、最佳造型设计、最佳电影音乐\r\n【剧情简介】&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 振保的生命里就有两个女人，他说一个是他的白玫瑰，一个是他的红玫瑰。一个是圣洁的妻，一个是热烈的情妇……留洋回来的振保(赵文瑄饰)在一家外商公司谋了个高职。为了交通方便，他租了老同学王士洪的屋子。振保留学期间，有一个叫玫瑰的初恋情人。他曾因拒绝过玫瑰的求欢而获取了“柳下惠”的好名声。王士洪有一位风情万种的太太，她总令振保想入非非。有一次，士洪去新加坡做生意了，经过几番灵与肉的斗争，在一个乍暖还寒的雨日，振保被这位叫娇蕊(陈冲饰)的太太“囚住”了。令振保所料不及的是娇蕊这次是付出了真爱的。当她提出把真相告诉了王士洪时，振保病倒了。在病房，振保把真实的一面告诉了娇蕊——他不想为此情而承受太多责难。娇蕊收拾她纷乱的泪珠，出奇的冷静起来，从此走出了他的生命。　　在母亲撮合下，振保带着点悲凉的牺牲感，娶了身材单薄、静如止水的孟烟鹂(叶玉卿饰)。新娘给人的感觉只是笼统的白净，她无法唤起振保的性欲。振保开始在外边嫖妓。可是有一天，他竟发现了他的阴影里没有任何光泽的白玫瑰烟鹂，居然和一个形象猬狎的裁缝关系暧昧。从此，振保在外边公开玩女人，一味地放浪形骸起来。有一天，他在公共汽车上巧遇了他生命中的“红玫瑰”娇蕊，她已是一种中年人的俗艳了。岁月无情，花开花落，在泪光中，振保的红玫瑰与白玫瑰已是一种现实中的幻影。旧日的善良一点一点地逼近振保。回到家，在一番歇斯底里的发作后，振保又重新变成了一个好人。 上一页&nbsp;[1]&nbsp;[2]&nbsp;[3]&nbsp;[4]&nbsp;[5]&nbsp;[6]&nbsp;[7]&nbsp;[8]&nbsp;[9]&nbsp;下一页&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/18.txt",
    "content": "\r\n【半生缘】 1997年香港东方影业公司出品\r\n半生缘\r\n&nbsp;&nbsp;&nbsp; 他一旦想起曼桢，就觉得他从来也没有停止想念她过。就是自己以为已经忘记她的时候，她也还是在那里的，在他一切思想的背后。&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \r\n原著：张爱玲编剧：陈健忠色彩：彩色片长：125min语言：普通话外文别名：Eighteen Springs(1997)&nbsp;&nbsp;&nbsp; Half Life Fate(1997)导演：许鞍华主演：吴倩莲&nbsp; 饰&nbsp; 顾曼桢&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黎&nbsp; 明&nbsp; 饰&nbsp; 沈世均&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 黄&nbsp; 磊&nbsp; 饰&nbsp; 许叔惠&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 吴辰君&nbsp; 饰&nbsp; 石翠芝&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 梅艳芳&nbsp; 饰&nbsp; 顾曼璐&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 葛&nbsp; 优&nbsp; 饰&nbsp;&nbsp; 祝鸿才&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 王志文&nbsp; 饰&nbsp;&nbsp; 张豫槿获奖：1998年香港电影协会最佳女主角奖&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1998年香港电影金像最佳女配角奖\r\n【剧情简介】&nbsp;&nbsp;&nbsp; 30年代的上海。世钧和曼桢是同一工厂做工的恋人。曼桢早年丧父，家庭生活靠姐姐曼璐当舞女维持，后来曼璐又当了妓女，最终嫁给了有妇之夫祝鸿才。为了保全自已的地位，不能生育的曼璐以一种怨毒的心态与其夫合谋，令祝强奸了曼桢。曼桢为姐姐、姐夫生下一子，葬送了自已的恋情。姐姐死后，她也嫁给了祝鸿才。多年后，曼桢与世钧重逢，两人发现，前情虽在，后缘难续。 上一页&nbsp;[1]&nbsp;[2]&nbsp;[3]&nbsp;[4]&nbsp;[5]&nbsp;[6]&nbsp;[7]&nbsp;[8]&nbsp;[9]&nbsp;下一页&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000023/19.txt",
    "content": "\r\n《金锁记》\r\n金锁记\r\n　　 根据张爱玲同名小说改编，“张爱玲名著中的名著”，继《大宅门》《橘子红了》之后又一部唯美、豪华的家族大戏。清末民初，小镇上天真烂漫的少女曹七巧（刘欣饰）和京城大户姜家的三少爷季泽（邵峰饰）一见钟情，可七巧的哥哥曹大年（刘永生饰）贪图钱财要把妹妹嫁给患有软骨病的老二钟泽（气壳饰），七巧为了接近季泽，答应这门婚事。失望至极的季泽在仲泽的婚宴上喝得酩酊大醉，令七巧心痛欲裂。此后，季泽越来越沉沦，常常夜宿妓院，七巧冒险到妓院劝阻，与酒醉的季泽同居了一晚，并因此怀孕，生下一子，由此招致众人的诸多非议。仲泽为保护妻子，临终时，坚定地声称自己是这孩子的亲生父亲，姜老太太（奚美娟饰）亦为维护自家的名声，痛斥众人对七巧的攻击。老大伯泽（程前饰）夫妇为了倾吞家产，利用七巧对季泽的感情，设下一个个圈套，造成七巧和季泽误会重重，使得她们本来纯洁的情感在金钱和岁月的摧残下渐渐消逝。于是七巧的人格开始扭曲，性情变得冷酷，她甚至亲手毁掉了儿女的婚姻和幸福，变成一个刻薄自私、终日靠鸦片麻痹灵魂的女人。 上一页&nbsp;[1]&nbsp;[2]&nbsp;[3]&nbsp;[4]&nbsp;[5]&nbsp;[6]&nbsp;[7]&nbsp;[8]&nbsp;[9]&nbsp;下一页&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/10.txt",
    "content": "\r\n　　本报北京5月9日电 \r\n董宾、高立英报道：北空某导弹团今天传出喜讯，营参谋长谭正提出的兵器改进方案，使困扰该团和兵器设计厂家三载的兵器重大隐患迎刃而解，赢得了官兵和有关专家的赞扬。\r\n　　几年前，该团列装新型防空导弹，在检验性实弹打靶中，几次出现故障，影响了该新型武器系统战斗力的发挥。为彻底查找兵器问题隐患，有关兵器研发厂家多次派专家组进行伴随保障和跟踪观察。然而，由于故障症结难被察觉，问题始终久拖未决。\r\n　　在该团前不久的实弹演练时，营参谋长谭正在调试兵器参数过程中，敏锐地察觉到这一问题再次出现。经过分析论证，他果断推定：战车某项计算机程序编排不当，是造成系统作战程序相互冲突和影响的主要原因。为此，他大胆提出了改进方案。有关专家对近百样程序进行抽样检测后，肯定了他的看法。针对他的建议，该团随后采取了应急措施，清除了故障隐患，打出了全面列装后的“满堂红”，长期困扰兵器故障终于得以解决。\r\n　　看似偶然却艰辛。据了解，为彻底查找出武器系统隐患，谭正经过大量实践，对兵器性能了然于心，记下了几大本操作心得，先后对几十种可能的原因逐一进行推测、判断和排除，对上万组计算机数据进行统计、采样、筛选和分析，最终使问题顺利得以解决。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/11.txt",
    "content": "\r\n　　张连军　熊言春　本报特约通讯员　韩光　张旭航\r\n　　【主人公小传】耿大勇，沈阳军区某装甲团四连连长。任连长以来，他带领连队多次完成新装备试训任务，先后荣立一等功一次，二等功一次，三等功两次。去年，他被沈阳军区树为“优秀指挥员”。\r\n　　精通我国某新型坦克三大专业；对百余项常用技术性能参数和百余个常用部件“一口清”；百余种常见故障都能手到病除；创造了该型坦克实装操作的多项第一……沈阳军区某装甲团四连连长耿大勇，以顽强的拼搏精神，创造了一个又一个佳绩。这位貌不惊人的中尉军官，身上究竟蕴藏着怎样的能量？“千方百计地让新装备尽早发挥出最大效能，这是我责无旁贷的使命，也是我战胜一切困难的力量源泉。”耿大勇自豪地说。\r\n　　勇担重任——不负众望练精兵\r\n　　深夜，某陌生地域，“红”、“蓝”两军狭路相逢，展开殊死搏杀。战斗陷入胶着状态时，一路奇兵从“天”而降，以雷霆万钧之势直插“蓝军”腹地，一举端掉了“蓝军”指挥所。\r\n　　“陆战之王”果然厉害！演练结束后，导演部的指挥和参谋人员对连长耿大勇倍加赞赏。\r\n　　2004年7月，时任某装甲团八连连长的耿大勇蜜月仅仅过了7天就离开新婚的妻子，心急火燎地赶回部队。因为他听说部队刚刚列装了某新型坦克，新装备训练即将拉开帷幕。\r\n　　该型坦克是全军首次列装，谁来当新型坦克连连长？师团党委研究决定：谁有本事谁登台，连长人选由比武打擂产生。\r\n　　理论考核、实装操作。在一双双眼睛的注视下，功底扎实的耿大勇一路过关斩将，在20多名候选人中脱颖而出，被任命为新坦克连的第一任连长。\r\n　　没有教材，他带领官兵从最基本的知识学起，先从长达2600多页的说明书开始研究。仅一个月时间，他就掌握了新坦克的部件构造、工作原理、操作规程等基础知识，并向团领导建言，请设计监造该型坦克的专家来连队现场教学。\r\n　　27位专家住进了团队，耿大勇白天请专家授课，晚上带着全连官兵挑灯夜战消化吸收。他们谦虚好学的作风深深感染了专家，原计划只有半个月的专家指导活动，一直持续了二十几天。期间，耿大勇将专家讲课的录像资料、文字资料整理后刻入26张光盘，做成了新型坦克训练的辅导教材。\r\n　　3个月后，他通过专家授课、对照说明书与实车摸索，在没有训练教材的情况下，达到对新装备构造、原理、性能的“一口清”，成为全连问不倒、专家考不住的“多面手”。师团两级常委学习新装备，耿大勇首当其冲成为教练员；坦克出了故障，他又成了维修员。\r\n　　勇于探路——敢为人先铸辉煌\r\n　　2004年10月，师受领了参加军区组织的实兵演习任务。耿大勇主动请缨：“新型坦克是我军陆地作战的主战装备，如不能尽早通过实兵演习将其练实练精，怎能在未来战场上克敌制胜？”\r\n　　铁路输送、千里机动、百公里奔袭，列装仅3个月的新装备全程参加实兵演练，无一掉队，充分展示了优异性能。\r\n　　“新型坦克不能跟在后面跑龙套，必须成为勇闯敌阵的尖刀利刃。”为了在恶劣自然条件下检验新型坦克的战斗性能，让新装备真正形成战斗力，耿大勇在实弹演习中再次请求当尖刀连。\r\n　　炮弹运过来了，这是耿大勇第一次见到新型坦克的实弹。启封炮管、校正火炮，战斗发起前的两个小时转瞬即逝，而按操作规程，实弹射击前还应进行实弹校炮。然而此时，出发命令已经下达。\r\n　　耿大勇拉开坚持要求实弹校炮的专家，坚定地钻入铁甲战车，承担起打第一炮的重任。\r\n　　“轰！”高速前进的坦克怒吼着打出了第一炮。这是该型坦克列装后打出的第一炮，高速出膛的穿甲弹准确击中了远距离靶标。\r\n　　首发命中！演习场沸腾了，到场观摩的坦克设计专家啧啧称奇，现场指挥的军区首长交口称赞。\r\n　　军区导演部经评定后得出结论，该型坦克列装3个月已初步形成战斗力。耿大勇用他敢为天下先的果敢精神、时不我待的危机意识，在我军某新型坦克的发展史上写下了浓重的一笔。\r\n　　在平时训练中，耿大勇严格要求，大胆尝试。压制观瞄系统仪器昂贵，一块小小的热成像仪接收玻璃就4万多元。有的同志提出，有关训练课目风险太大，还是不要训为好。耿大勇却认为，决不能用消极保安全来降低训练标准。在制定出详实训练和警戒预案后，他第一个上车进行训练。结果全连无一漏训，全部达到优秀标准。\r\n　　勇于创新——实现装备新跨越\r\n　　初冬的科尔沁草原，滴水成冰。耿大勇率新型坦克连在营编成内千里奔袭，直插敌阵。突然，“蓝军”对我实施大功率电子干扰，友邻连队与指挥所失去联系，若失去友邻支援孤军奋战，战斗很可能会以失败告终。\r\n　　危急关头，耿大勇急中生智，他利用简易记号通知友邻：“收缩队形，向我靠拢！”而后，他引导全营继续发起冲击。\r\n　　“战斗”胜利后，导演部对耿大勇灵活处置“敌”情赢得战斗胜利的举措大为赞赏。但耿大勇深知，某新型坦克毕竟只是少量列装，实现新老装备的完美结合，才能真正推动战斗力跨越式发展。\r\n　　从此，耿大勇开始了新一轮的刻苦攻关。整整两个月，他把自己“泡”在各种资料里，啃下了《装甲战》、《坦克作战理论》等许多大部头的著作，并对两代主战坦克的战技术性能进行定量分析，总结出“新装备靠前观察定位、射击诸元传老装备”等10余种战法，有效地提升了部队整体作战能力。\r\n　　高素质催生战斗力。在耿大勇的建议下，前年10月份连队建成全师规模最大的连队网络学习室，每周拿出两个晚上组织官兵学习培训，每月组织一次考核比武，现在连队干部全部通过国家计算机二级考试，战士人人都能独立制作多媒体课件。连队还开展了“一专多能”训练，连队整体作战能力显著提升，全连行进间对固定目标射击，取得114发炮弹命中107发的好成绩。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/12.txt",
    "content": "\r\n　　周维华　田宁　本报特约通讯员　侯国荣\r\n　　4月16日凌晨，一阵急促的报警铃声骤然响起。刚刚在上级组织的军事训练考核中夺得桂冠、被誉为“陆地铁拳”的兰州军区某装甲团，组织千人百车挺进腾格里沙漠腹地，拉开了综合演练的帷幕。\r\n　　紧急出动风驰电掣\r\n　　［演练实录］作战时间4月16日凌晨4时50分。上级命令装甲团务必于当日13时前到达预定作战地域。\r\n　　5时13分。团长张永明通过无线电台下达命令：“迅速进入一级战备！”顷刻之间，寂静的营区就像开足马达的机器高速运转起来，各种车辆在短短几分钟内开到了指定位置。“前沿攻击群准备完毕！”、“纵深攻击群准备完毕！”通信、工兵、防化、侦察等分队打破建制，按战斗要素迅速补充到各攻击群（队），后装保障群正在紧张地为各作战群（队）补充弹药、油料、器材等。\r\n　　“向作战地域开进！”5时18分，团长一声令下，上百辆坦克、步兵战车排成三条长龙飞奔作战地域。\r\n　　［相关链接］几年前，装甲团进行紧急拉动演练，全团集合就用了50多分钟。今年，该团从首长、机关到营连分队，都制定了一整套紧急出动、战备等级转换、抢险救灾等战备行动预案，并坚持不定期组织实兵、实装拉动演练。在此基础上，团里研制了一批便携式野战箱、柜，实现了战备器材装箱化、弹药补给精确化、紧急出动程序化，使部队远程机动能力明显提高。\r\n　　网上鏖战虚拟对抗\r\n　　［演练实录］作战时间4月16日6时许。突然，信息传输员报告：“团指挥系统受到‘敌方’破坏干扰，通信指挥中断。”\r\n　　“立即启动信息化作战单元指挥平台，对‘敌’干扰雷达、破袭分队进行搜索，实施电磁压制和火力打击。”无线电台传来“红军”指挥员沉着冷静的命令。很快，“红军”就将“蓝军”目标逐一锁定。“红军”信息化作战单元指挥屏幕上显示：“敌”一个加强坦克连正借助强电子干扰和烟雾遮障快速穿插，企图利用正面火力突袭的间隙，对“红军”指挥所实施偷袭。\r\n　　面对“蓝军”的电磁干扰和突然袭击，“红军”沉着应战，利用“蓝军”电磁压制的间隙，巧妙地通过自动化作战指挥局域网源源不断地将敌情通报、作战命令传输到演练一线。\r\n　　［相关链接］面对新军事变革的挑战，装甲团确立了“以现有装备为平台，以无线数据网为载体，以作战指挥流程为主线，以指挥控制为重点”的信息化建设总体规划，构建起团、营、连、排、班（车）五位一体的信息化作战模块，实现了团指挥网络一体化。\r\n　　铁拳突击攻如猛虎\r\n　　［演练实录］作战时间4月17日凌晨3时许，牛首山某山谷。“嗖，嗖，嗖！”“红军”数枚车载导弹喷射出橘黄色的火舌，呼啸着扑向“蓝军”阵地，对进攻之“敌”进行了猛烈打击。\r\n　　随着战场态势的变化。各作战群（队）长下达了火力打击的命令。“轰！轰！轰！”榴弹炮、坦克炮、车载导弹大显神威，各种火力呼啸着向“敌”目标飞去……\r\n　　铁拳突击，攻如猛虎。一时间，一发发愤怒的炮弹砸在“蓝军”阵地上，“蓝军”的防线开始土崩瓦解。“红军”一举攻克“蓝军”阵地。\r\n　　随着3发绿色信号弹升空，演练落下帷幕。此刻，“陆地铁拳”的旗帜高高飘扬在“蓝军”6号高地上。\r\n　　［相关链接］这次综合演练，装甲团整建制挺进腾格里沙漠和高山峡谷等复杂地域，进行了实兵实装对抗演练。他们采取全要素之间练协同、模块之间练集成的方法，探索模块整合训练的具体内容、方法手段，探索实战背景下的作战编组、指挥模式、基本战法等，实现了单一作战模块内各个作战要素的有机整合。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/13.txt",
    "content": "\r\n　　本报特约通讯员 刘一代 本报特约记者 王永孝\r\n　　阳春时节，记者来到第二炮兵指挥学院作战实验室，浓浓的信息化气息扑面而来。作战实验室主任甄明安告诉记者：“我们的目标是‘出了实验室，就能上战场’，如今已有近2000名学员在这里接受过对抗模拟演练。”\r\n　　“模拟战争”学打仗\r\n　　未来战场是什么样子？这是军事专家和各级指挥员共同关注和深入研究的一个重要问题。\r\n　　战争年代，可以在战争中学会打仗，而和平时期，可以通过“模拟战争”学打仗。那么，“模拟战争”如何实现呢？\r\n　　战斗精神和技能的培育，离不开战场环境的熏陶。只有把官兵投入到逼真的“战场”环境当中，才能在“实战”中锤炼出过硬的战斗胆识和技能。\r\n　　解决这些严峻的现实问题，都离不开一个逼真的“战场”！然而，要建设一个这样的平台又谈何容易！对于素有“百人一杆枪”之称的战略导弹部队来说，开展实战背景下的导弹发射训练，所需的导弹武器装备、协同要素、操作号手相对较多，设置战场环境，简直困难重重。\r\n　　打造适应未来战争需要高素质人才的紧迫感牵动着学院的上上下下。院长李体林亲自挂帅，跑机关、下部队，协调有关业务部门充分调研论证。他们以自身的科技力量为依托，经过多年努力，终于建成了集“导调指挥、战场仿真、监测评估、训练管理、综合保障”等多功能为一体的作战实验室。.\r\n　　激烈对抗练真功\r\n　　作战实验室的功能到底有多大？4月上旬，记者在这个实验室目睹了一场“某型导弹部队作战演习”。只见“红”、“蓝”指挥所双方指挥员根据战场发展的态势，正在果断地下达各种作战命令。电子显示屏上，战场态势瞬息万变。“蓝军”第一波次导弹猛烈地突击后，“红军”阵地硝烟弥漫。“红”“蓝”两军在虚拟战场上斗智斗勇，时而“红军”阵地被袭，时而“蓝军”战场网络陷入瘫痪。担任各种角色的学员完全将自己置身到战斗之中，在面临强敌进攻时，有的运筹帷幄，有的手忙脚乱。\r\n　　好一个真实的战斗场面！据介绍，这是作战实验室的三维视景仿真系统，它由战场观察模块、视景仿真实体、视景数据库等组成，用于三维战场场景的生成。有了它，人员、装备的真实性和地形的立体感大大增强，学员在这里学习训练，如同身临其境。\r\n　　“实验室就是战场。”这是深深根植于该院师生心中的一个观念。利用实验室对抗演练，该院要求每一名参演学员一进入“战场”，必须进入“战斗”状态，每一批学员都要结合新装备使用、新战法攻关和新课目试训，将理论和实践、技术和战术、战法和训法有机地结合起来，拿出自己的对策，在“炮火硝烟”中砥砺打赢本领。\r\n　　七个学科撑起一个“平台”\r\n　　更让人惊喜的是，作战实验室的建成，把军种战役学、作战指挥学等7个学科群有机地融合在一起。7个学科群专业有别，又互有联系，一体化的教学功能大大增强。\r\n　　加强软件开发，拓展作战实验室功能。该院集中力量研制并开发出用于作战指挥、战法训练和作战实验研究的各型导弹训练模拟系统，以及一体化联合作战指挥训练系统等10多套软件系统，这些系统基本满足了第二炮兵部队各级指挥员提高作战指挥能力的培训和信息化作战功能、作战指挥效能的实验研究需要，从而使作战实验室成为多学科知识的交会点。\r\n　　突出集团意识，建设作战实验室群。该院以作战实验室为核心，将作战指挥学、军种战役学、合同战术学等学科的专业实验室，第二炮兵作战模拟实验中心，装备指挥自动化实验室等重点教学场所与作战实验室联为一体，通过网上互通，构建起了一个庞大的作战实验室群，实现了跨学科建设资源的综合利用。\r\n　　注重课题牵引，培养学科学术带头人。围绕作战实验室的建设，学院先后投资700多万元，遴选60多个课题，吸纳10多个教研室的教员参与课题研究，培养出一大批在全军有影响的中青年导弹专家。\r\n　　作战实验室的功能不断拓展，并发展成为全军重点建设项目。如今，作战实验室已成为学院信息技术的聚焦地和信息交流中心，多学科专业知识在这里交会融合，促进了学科建设整体水平的提高。在实验室建设的推动下，该学院第二炮兵战役学科被评为全军重点学科，战役学博士后科研流动站在该院正式挂牌。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/14.txt",
    "content": "&nbsp;台湾布导弹　威胁闽江口\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军现役的203毫米口径巨炮，该炮可将96公斤重的弹丸倾泻到对方阵地，造成可怕的破坏效果。\r\n　　台湾布导弹　威胁闽江口\r\n　　5月6日，台湾东森新闻台独家披露称，台湾军方正在离大陆仅约60公里的东引岛配置“雄风二型”反舰导弹，这是台军方首次在台湾最北端的小岛配置反舰导弹。分析家认为，台军此举极具有挑衅性。\r\n　　台湾东森电视台5月6日独家透露，台湾“国防部”、“海军司令部”已经正式决定：在距离大陆只有60公里左右的台湾最北端的小岛——东引岛配置射程可达150公里的岸射型“雄风二型”反舰导弹。一旦完成部署，台军就可以有效扼制大陆闽江口，占有制海的军事优势。\r\n　　有台湾军方高官放话说，部署在东引的“雄风二型”导弹，对解放军自北而下的东海舰队有“吓阻作用”。通过在东引岛上部署各种尖端武器，以长短渐进的层次，形成有效防御，增加战略纵深，东引岛还与基隆的两处“天弓”导弹阵地呼应，借此确保台澎金马的空域安全，从而构成“捍卫台湾空防的第一道防线”和“对大陆进行反击的前沿阵地”，实现台湾当局所谓的“决战境外”的战略构想。\r\n　　事实上，台军在东引岛上部署导弹并非新鲜事，两年前英国《简氏防务周刊》就报道，台湾军队在东引岛上兴建了大型导弹和雷达基地，以“遏制”大陆海空军越过台海攻击。\r\n　　台军官员曾表示：“东引岛部署‘天弓’导弹，打击面可覆盖大陆沿海各主要机场。”“天弓”导弹分为阵地部署或机动部署。以东引岛的地形特质，“天弓”导弹应以阵地部署，并以垂直发射担任战备。另外，东引岛还部署有担任低空防御的美国“毒刺”导弹。因此，有评论认为，台军在马祖建导弹和雷达基地，目的是限制大陆海空军在台湾海峡北端的机动能力。\r\n　　两年前已经部署的两类防空导弹，现在加上“雄风”二型导弹，小小的东引岛上部署了台军三类最核心的导弹群。\r\n　　台湾当局为达成其“以武拒统”的图谋，近年来一直在加强金门、马祖、乌丘和东引四岛的军事力量，企图将金马二岛变为台军实施防卫作战的第一道防御线。其实这道防线，只能给自己壮壮胆。东引岛所在马祖诸岛距福建沿海最近只有16公里，就在大陆的眼皮底下——不管部署在这些岛屿上的台军火力有多强，都抵挡不住远程大炮的“饱和轰击”。\r\n　　台军弹药库有大约300个，从分布情况来看，不仅数量不多，而且过于集中，易于摧毁。台军高层评估说，如果台海战事爆发，台军半数以上的军火库可能遭到摧毁。这些外岛会成为一座座孤岛。台湾军方想激怒大陆？\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器\r\n　　台湾军方想激怒大陆？\r\n　　台湾军方和当局在东引岛的军事部署其实别有用心。\r\n　　当前中美关系升温，并且布什政府对陈水扁的不满越来越强烈。在这种情况下，台湾当局很想通过主动挑衅来激怒大陆回应，然后换得美国对台湾的支持，以达到分离中美关系的目的。\r\n　　同时，这种部署，是对“汉光演习”暴露弱点的修复。5月4日，台“国防部”公布“汉光22号”演习结果，计算机裁定显示，在敌方无人遥控飞机、导弹及空中首波攻击下，三军主战战力尚能保存，但导弹阵地、机场、雷达站等固定设施，在预警与反导弹能力不足之下会严重受损，只能勉强保存战力。台军并非首度高唱自己的导弹与反导能力不足，台军的根本目的，其实就是换取外界对其研发导弹，增强军力的支持。\r\n　　参考词典\r\n　　东引岛\r\n　　东引岛是马祖列岛最东端的一个小岛。长期以来，东引岛一直是台军马祖防区的一个重要据点，从上世纪50年代到70年代，台湾所谓“反共救国军指挥部”就设在这里。\r\n　　东引岛上有一个可停泊5000吨船舰的中柱港，和一座直升机机场。东引岛属于山岳型岛屿，岛上地质为花岗岩，四周都是悬崖峭壁，完全没有沙滩，海边水深最浅处都有2米，是一个完全不可能进行两栖登陆的岛屿，若想占领此岛，惟有利用直升机实施空降。所以，台军认为，他们可以在这个小岛上“同大陆打持久战”。台军在岛上部署了“毒刺”防空导弹，就是为了预防解放军实施直升机空降突袭。\r\n　　“雄风”二型反舰导弹\r\n　　“雄风”2是台湾中山科学研究院仿照美国“捕鲸叉”，研制的第二代亚音速中程反舰导弹。\r\n　　它与美国的“捕鲸叉”相似，采用Ｘ型配置的正常式气动布局，弹长3．9米，直径0．35米，采用可折叠式弹翼，翼展0．9米。导弹的发射重量为500公斤，所带大量燃料使其具有超视距攻击能力。导弹的巡航速度为0．9马赫，巡航高度低于15米导弹的命中率达到了90％。台军在距离大陆沿海16——60公里的岛屿部署了大批导弹\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器台军部署了大批导弹是一种对大陆的挑衅\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器从军事角度讲，这也是一种自寻死路的表现\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军各型远程压制武器解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用\r\n\r\n\r\n\r\n文章认为，台军在距离大陆沿海16——60公里的岛屿部署了大批导弹，这不但是一种对大陆的挑衅，从军事角度讲，这也是一种自寻死路的表现。据此前的分析认为，大陆远程火炮技术世界领先，解放军几乎拥有各种型号各种射程的火炮，一旦开战，台军那些金贵的导弹将完全置于大陆海量的火炮射程之内，解放军不用费多大力气就能用相对廉价的火炮彻底摧毁台军导弹阵地。资料图：解放军短程战术导弹，可作为远程压制火力的补充，起点穴作用2&nbsp; &nbsp;&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/15.txt",
    "content": "\r\n　　中新网5月9日电 \r\n据共同社报道，围绕导弹防御系统(MD)问题，日本海上自卫队9日宣布，将派海上自卫队“宙斯盾”舰参加美国即将于6月在夏威夷近海实施的海基型拦截导弹(SM3)的拦截试验，对目标进行雷达跟踪。\r\n　　“宙斯盾”护卫舰是首次参加此类拦截演习。海上自卫队幕僚长(相当于参谋长)斋藤隆表示，“将力争提高双方在海上的相互协调性”，由此可见，日美在MD方面共享信息等合作体制将进一步得到确立。\r\n　　据海上自卫队透露，预定参加此次演习的是曾经根据《反恐特别措施法》在阿拉伯海上进行过海上燃油补给活动的“雾岛(KIRISHIMA)”号(7250吨)。美国海军的“宙斯盾”舰计划用SM3对模拟弹道导弹进行拦截,而“雾岛”号将跟踪模拟弹道导弹的轨迹。\r\n　　“雾岛”号计划于本月从位于神奈川县的横须贺基地出发，在参加拦截试验结束后还将参加环太平洋联合演习。\r\n　　美国迄今为止曾6次成功地进行了SM3拦截试验。日本政府将于2007年度年底开始为海上自卫队的”宙斯盾”护卫舰装备SM3。"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/16.txt",
    "content": "　　“猎鹰”展翅——中国L15新型高级教练机研制成功\r\n　　\"猎鹰\"的首飞成功，对于完善中国初、中、高级教练机的研制生产体系，满足第三代和新型飞机飞行员的训练需要，竞争国际教练机市场都具有重要的意义。\r\n　　伊朗全面备战防突袭\r\n　　伊朗加紧更新武器装备、扩大弹道导弹生产与储存，本着“放进来打”的原则，发挥自身本土作战的优势，使侵略者意识到，与伊朗的战争将是一场得不偿失之仗。\r\n　　台军重视烟幕装备\r\n　　美国新驻华武官打过仗\r\n　　英国海军的希望——45型导弹驱逐舰\r\n　　目标：伊朗核设施——以色列F-16I战斗机\r\n　　二战中的德国直升机\r\n　　坦克与直升机之争\r\n　　PzH2000自行榴弹炮行销欧洲\r\n　　美国的反恐适应性训练基地\r\n　　美军士兵在基地几可乱真的模拟环境中练战术、练协同，也练习如何与占领区居民打交道。为期两周左右的高强度培训，让士兵更从容地开赴反恐前线。\r\n　　铁甲的圣地——中国坦克博物馆行记\r\n　　中国唯一一座以坦克装甲兵为主题的专题博物馆，其中不乏珍贵的馆藏文物，作为军事爱好者，这是不容错过的好去处。\r\n　　可预知的屠戮——老虎峰血战沉思\r\n　　老虎峰是印巴军事对峙的锡亚琴冰川地区的重要咽喉要地。1999年的卡吉尔之战中，印巴双方曾在这里展开了一场殊死的厮杀。\r\n　　X-23突击步枪\r\n　　X-23是读者设计的一款突击步枪，集成了G36和SCAR的部分优点，用3DMax软件制作完成。&nbsp;&nbsp;"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/17.txt",
    "content": "\r\n\r\n\r\n\r\n　　“猎鹰”试翼——我国第三代高级教练机开始试飞\r\n　　Chinese Third Generation Training Plane \r\nBegins Flight Test\r\n　　L-15总设计师对若干问题的解答\r\n　　An Interview with the Chief-Designer of L-15\r\n　　崎岖的“太行”之路——我国新型大推力涡扇发动机的研制历程\r\n　　Chinese Home Made New High Thrust Turbofan Engine Fielded\r\n　　伊朗：孤独的圣战\r\n　　Iran Focus: Will Iran Be the Next Iraq\r\n　　核萌芽的保护伞——伊朗常规武装力量评介\r\n　　An Assessment: The Conventional Armed Forces of Iran\r\n　　专题：军用机器人技术\r\n　　Military Robots Technology\r\n　　科学而非幻想——美国军用机器人走向战场\r\n　　It's Not Fiction: U.S Military Robots Go To War\r\n　　机器人技术及其军事应用——访北京航空航天大学ITM实验室\r\n　　Robotics Technology and Its Military Applications\r\n　　维护公众安全的机器人卫士——武警装备专家谈反恐机器人\r\n　　On the Anti-Terror Robots: An Interview with the Researcher from Chinese \r\nPeople's Armed Police Force\r\n　　以创新性思维发展中国的拐弯枪\r\n　　An Innovation: Chinese-Made Corner Shot Weapon System\r\n　　“探戈杀手”演绎美国未来潜艇技术\r\n　　Tango Bravo Brings Fundamental Changes to U.S Next Generation Submarine\r\n　　展望未来的军用无线局域网\r\n　　Future Military Wireless LAN: Wi-Fi or WAPI, WiMAX or McWILL?\r\n　　突破生理耐受极限——欧美飞行员生命保障系统评介\r\n　　The Development of Pilots Life Support System in the U.S and Europe\r\n　　不走别人走过的弯路——外军信息化建设中的几点教训\r\n　　Some Lessons Taken from Informationization Construction of Foreign Armed \r\nForces\r\n　　飞速扩展的美国陆军无人机训练\r\n　　The Training for U.S Army UAV Rapidly Expanded\r\n　　美空军培养专职无人机飞行员\r\n　　A Career Flying UAVs\r\n　　评析美国两份防务评审报告\r\n　　An Contrast: U.S Government 06'QDR Report and A Non-Government One\r\n　　美国人看日本国防工业发展\r\n　　An U.S Point of View: The Development of Japanese Defense Industry\r\n　　台湾岛及周边海区的地理与气候\r\n　　Geographical and Climatic Survey of Taiwan Island and Its Circumjacent Sea \r\nArea&nbsp;&nbsp; "
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/18.txt",
    "content": "　　新华网北京5月9日电题：强军兴军的科学方略——科学发展观引领人民军队阔步前进\r\n\r\n　　记者贾永、曹智\r\n\r\n　　处在新的历史发展时期的人民军队，军事斗争准备和改革、建设、发展的任务十分繁重。如何推动国防和军队建设又快又好发展，有效履行新世纪新阶段我军历史使命？\r\n\r\n　　中央军委主席胡锦涛指出：要自觉把科学发展观贯彻落实到国防和军队建设的各个领域和全过程，实现国防和军队建设全面协调可持续发展。\r\n\r\n　　潮平两岸阔，风正一帆悬。前进在科学发展轨道上的人民军队，正在发生着日新月异的变化。\r\n\r\n　　科学发展观：加强国防和军队建设的重要指导方针\r\n\r\n　　党的旗帜就是军队的旗帜。全军和武警部队着眼于在军队建设中把科学发展观这一重要指导方针牢固确立起来，不断有新的举措、新的进展——\r\n\r\n　　军委、总部作出一系列部署，下发《关于全军部队深入学习宣传贯彻科学发展观的意见》，委托国防大学举办新世纪新阶段我军历史使命理论研讨班，编印《树立和落实科学发展观理论学习读本》，发全军团以上领导干部。各级把科学发展观纳入党委中心组学习和干部轮训内容，纳入部队思想政治教育，纳入院校教育教学，全军团以上领导干部普遍轮训一遍。\r\n\r\n　　全军部队开展忠实履行新世纪新阶段我军历史使命教育活动，突出学习贯彻科学发展观这个主题。各级党委及时对学习贯彻科学发展观进行研究部署，并结合部队实际制定具体落实措施。军师级单位普遍编写学习辅导材料。各单位通过重点抓团以上领导干部，促进和带动部队的学习贯彻。\r\n\r\n　　军队理论工作者深入研究阐释科学发展观，取得了一批高质量的研究成果，新闻、出版、文艺等单位推出了一批优秀作品和图书、音像读物。由总政治部向全军推荐的《八荣八耻人人须知》等歌曲，已唱响座座军营。全军先后召开学习贯彻江泽民国防和军队建设思想研讨会，在国防和军队建设中贯彻落实科学发展观座谈会。各部队制定建设发展规划，研究出台政策制度，破解重点难点问题等，都自觉做到谋划发展以科学发展观为依据，指导工作以科学发展观为遵循，检查成效以科学发展观为准绳。\r\n\r\n　　2005年9月，中央军委转发北京军区某防空旅按照科学发展观要求全面加强部队建设的基本经验，号召全军部队坚持瞄着信息化，主动有作为，科学搞建设，实干求发展……\r\n\r\n　　在科学发展观的指引下，我军革命化现代化正规化建设取得长足进展。裁减军队员额20万，规模基本适度。我军官兵思想政治觉悟不断提高，高素质新型军事人才成批涌现……科学发展观的基本观点和要求，正在转化为三军将士推进国防和军队建设的巨大动力。\r\n\r\n　　贴近实战：演兵场劲吹求真务实之风\r\n\r\n　　战机、装甲车纵横驰骋，看得见的导弹、炮弹，看不见的无线电波往复穿梭……2005年金秋时节，一场代号“北剑－2005”的对抗性军事演习在内蒙古草原深处举行。\r\n\r\n　　这场实兵演习不设预案，战斗行动完全由对抗双方指挥员自主决定。24个国家的军事观察员现地观摩。中国军队开放与务实的作风，透过秋日里的硝烟战火展示给了世界。\r\n\r\n　　回眸一年来演兵场出现的新变化，《军事学术》杂志总编辑胡文龙感慨道：“紧贴实战，从难从严训练，求真务实之风劲吹演兵场。”\r\n\r\n　　2006年年初，解放军四总部向全军发出年度军事训练考核结果通报。在以往一贯以表彰为主的通报中首次出现了3个由军事训练一级降为二级单位的名单。这次考核首次运用“部队演习评估系统”，从指挥控制、远程机动、火力打击、整体防护和综合保障5个方面对陆军部队整体作战能力进行了全面检验。\r\n\r\n　　着眼于增强我军信息化条件下的威慑和实战能力，仗怎么打、兵就怎么练——\r\n\r\n　　联合指挥所里，不同来源的陆海空天电系统打通了信息壁垒；实兵训练场上，蓝天的战机与地面的战车保持着“对话”；空地联合火力突击，直升机携轻型机械化分队纵深攻击……经过两年多的探索，成都军区陆空一体化训练令人耳目一新。\r\n\r\n　　成都军区参谋长吕登明对此评价说，“陆空一体化训练，使空中地面各种力量在行动中形成了一个完整的整体。”\r\n\r\n　　与此同时，各部队还把未来的战场搬进了虚拟的网络空间——用计算机网络构成的“战争实验室”。从装甲车驾驶到战机、战舰操作，仿真模拟器材已成为提高官兵军事素质和训练水平的重要手段。\r\n\r\n　　与国家信息化建设相同步，2005年，全军各部队共举办信息化讲座和高新技术知识培训班7000余场次。一年中，全军部队普遍进行了信息化条件下的拉动、演练……\r\n\r\n　　我军的军事训练进一步走上全面、协调和可持续发展轨道，在复杂形势下有效应对危机、维护和平、遏制战争、打赢战争的能力不断增强。\r\n\r\n　　以人为本：激发出前所未有的创造活力\r\n\r\n　　“从抗菌内裤、抗菌袜到温寒区棉衣、士兵皮鞋，”有着4年兵龄的武警总部一级士官王君，指着今年“五一”前刚刚下发的新夏常服说，“从里到外，这几年换发的新品种加起来有十六七件。”\r\n\r\n　　透视全军和武警部队历年来十余次换装不难发现，以人为本，正体现在诸如换发军服这样的一处处细节中——\r\n\r\n　　根据军事训练强度和营养素供给制定科学食谱，基层官兵的饮食结构正在从温饱型转向营养型；边海防一线，昔日的木制、铁塔式哨楼，已被永久式砖木、钢筋混凝土结构的哨楼所代替；远程医疗会诊系统把全军各级医院连在了一起，患病官兵不论身处何方，都能在第一时间内得到专家诊断；入党、提干、考学、选取士官等过去被认为是敏感的问题，战士们可以通过局域网公开评议；士官文化补习学校和各种专业技术培训班遍布军营……\r\n\r\n　　点点滴滴，体现了人民军队以人为本的治军理念。\r\n\r\n　　来玉楔环扳手、亚平模拟燃油开启活门……走进南海舰队军械技术保障大队荣誉室，用士官名字命名的技术和革新成果引人注目。在北京军区某防空旅和济南军区某摩步师，普通士兵参与了全军性训练大纲的编修；在沈阳军区、兰州军区，来自士兵的建设性意见写入了军区年度工作计划……以人为本，激发出官兵前所未有的创造活力。\r\n\r\n　　而人才战略工程的实施，则更加有力地推进了部队建设水平的提高。2005年7月，我军首期中青年领导干部培训班毕业，一群平均年龄只有42．5岁的师职干部经过深造后从国防大学走向演兵场。这一年的金桂飘香时节，全军在110多所普通高校招收的1．2万余名国防生，又陆续走进地方大学校园。与此同时，我军招收的第八批女飞行员也进入空军航空大学，她们将成为选拔培养中国女航天员的储备力量……\r\n\r\n　　目前，我军作战部队军师团领导95％以上具有大专以上文化程度，空军一线飞行员全部具有大学学历，海军一线舰长100％毕业于专业院校，第二炮兵部队的技术军官几乎都具有学士以上学位。\r\n\r\n　　科学管理：后勤和装备建设在创新中频添活力\r\n\r\n　　公交车开进部队大院，地方的饮食公司取代部队的自办食堂，越来越多的军人住上了地方经济适用房。随着军队后勤保障日益市场化、社会化，全军部队目前集中采购的规模已达到150亿元，资金节约率在7％左右。\r\n\r\n　　“我们基地通过竞争机制，与4家地方公司签订了生活物资供应协议，食品配送、煤气供应、粮油保障全部交由他们办理，不但提高了效率，而且经费节约率达1／3左右。”驻澳门部队珠海基地物资采购供应站管理员方仁迎说。\r\n\r\n　　2004年7月1日，中央军委在济南战区实施的大联勤改革试点正式启动，我军后勤体制改革开始了历史性跨越。\r\n\r\n　　我军正处于由机械化半机械化向信息化跨越式发展的重要战略机遇期，需要很大的投入。把有限的军费管好用好，用在刀刃上，用出效益来，既是贯彻落实科学发展观的必然要求，也是一个紧迫而重大的现实课题。\r\n\r\n　　全军和武警部队采取有力措施，确保有限财力最大限度地转化为保障力、战斗力——\r\n\r\n　　推行预算编制改革，建设军队财务管理信息系统，严格执行财经法规制度，目前军以下部队标准经费收支平衡率已稳定在95％以上，旅团部队生活费规范化管理达标率为85％以上。\r\n\r\n　　2005年8月，中央军委批转了《总后勤部关于大力加强军队资源节约工作的意见》，建设节约型军营蔚然成风。\r\n\r\n　　我军武器装备建设注重顶层设计，坚持走以信息化为主导、机械化信息化复合发展的道路，几年间，建成一批武器装备科研生产基地，武器装备的研发、试验验证、集成、制造能力进一步提升，一批新型信息化作战平台、精确制导弹药、电子对抗装备陆续装备部队，武器装备的综合保障水平有了新的提高，逐步向全系统、全寿命管理的方向发展。\r\n\r\n　　2006年刚刚开始，我军陆军装备采购向市场化改革迈出坚实步伐——20余家优秀高科技民营企业经过遴选，逐步进入试点单位武汉军代局所承担任务的配套市场，10余家实力雄厚的非军工国有企业加入到军品市场竞争行列。这些企业生产的20多种陆军装备配套产品，合格率达99．1％……\r\n\r\n　　解放思想、开拓创新，积极转变管理领导方式，为我军建设的科学发展提供了更具活力的体制机制保证。\r\n\r\n　　统筹兼顾：大局下行动谱写出军民团结新篇章\r\n\r\n　　这是中俄联合军事演习期间发生在山东半岛的一幕——\r\n\r\n　　为确保海上实兵演练按时展开，胶南市组织群众清理附近海域，7个村庄近5000名群众秩序井然地疏散，近百艘渔船静静泊进港湾，开阔迷人的旅游海滩空无一人……\r\n\r\n　　在经济发展的基础上推进国防建设，把国防建设融入经济社会发展体系之中，如今已成为全社会的共识——\r\n\r\n　　在广东，3次获得“全国双拥模范城”的江门市，帮助驻军建成了“驻军信息化指挥网”“国防教育网”；在西部，各地利用西部大开发的有利时机，新增、改扩建国防公路和边防公路16条。而过去一年，全国上千所大专院校和科研院所就为部队举办高技术知识讲座2万余次，帮助轮训官兵5万多人次……\r\n\r\n　　在各级政府和人民群众的支援下，过去交通不便、信息闭塞的万里边防，如今都通上了公路。无论是全军海拔最高的神仙湾哨所，还是帕米尔高原之巅的红其拉甫前哨班，各部队都已开通了局域网……\r\n\r\n　　人民子弟兵也把参加和支援地方经济建设，作为自己义不容辞的职责，谱写出一曲曲拥政爱民的新乐章。\r\n\r\n　　川藏公路——西藏繁荣与稳定的生命线。担负进藏物资运输任务的成都军区川藏兵站部的汽车兵们，沿线援建的46个文明村、小康村，成了雪域高原的一道人文景观。\r\n\r\n　　在海南岛，部队参与建设的125个生态文明村已初具规模。在新疆、在内蒙古，在广大少数民族地区，5000多个军民共建点成为促进民族团结和社会发展的重要基地。\r\n\r\n　　传播法律知识，开展移风易俗，创建和谐社区，建设生态家园，遍及全国的5万多个军民共建点，正在被广大军民不断赋予科学发展观的时代内涵。\r\n\r\n　　浦寨——几年前，广西中越边境15号界碑旁一个只有13户人家的小村落，随着边境排雷的结束，已经发展成为一座商贾云集的现代化边城。\r\n\r\n　　“看着边寨群众一天天富起来，我们由衷地高兴啊！”驻守在中越边境的广西边防某团哨长魏远航说。\r\n\r\n　　国防建设与经济建设协调发展，正和谐统一在亿万军民富国强兵的不懈追求中。\r\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/Database/SogouC/Sample/C000024/19.txt",
    "content": "\r\n　　以禁止女兵穿低腰裤\r\n　　已有120名女兵因违规被关禁闭\r\n　　据新华社电　以军日前正在开展一场“全方位作战行动”。这次作战的目标可不是巴勒斯坦，而是女兵的低腰裤。\r\n　　以军一位发言人7日说：“根据以色列国防军军纪，北方司令部决定实施更加严格的政策，使士兵的穿着符合纪律规定。”以色列女兵纷纷抱怨说，军装不能很好地展示她们的身材。为了追赶时尚潮流，这些女兵们经常重新设计自己的军装，有些人甚至把它们改成了低腰裤。然而，女兵们爱美的天性并没有获得军队指挥官的同情，他们认为，低腰裤严重威胁着以军的纪律基础。\r\n　　以军要求女兵们把那些改过的低腰裤交到军需商店，以换回符合规定的军裤。此外，目前已经约有120名女兵因穿着违规低腰裤而被关禁闭。　"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/NaiveBayes-TextClassifier.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 朴素贝叶斯算法原理与搜狗新闻分类实战\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 贝叶斯公式\\n\",\n    \"贝叶斯公式就一行：\\n\",\n    \"\\n\",\n    \"$$P(Y|X)=P(X|Y)P(Y)/P(X)$$\\n\",\n    \"而它其实是由以下的联合概率公式推导出来：\\n\",\n    \"\\n\",\n    \"$$P(Y,X)=P(Y|X)P(X)=P(X|Y)P(Y)$$\\n\",\n    \"其中$P(Y)$叫做先验概率， $P(Y|X)$叫做后验概率，$P(Y,X)$叫做联合概率。\\n\",\n    \"\\n\",\n    \"没了，贝叶斯最核心的公式就这么些。\\n\",\n    \"\\n\",\n    \"## 机器学习的视角理解贝叶斯公式\\n\",\n    \"在机器学习的视角下，我们把 X 理解成“具有某特征”，把 Y 理解成“类别标签”(一般机器学习为题中都是X=>特征, Y=>结果对吧)。在最简单的二分类问题(是与否判定)下，我们将 Y 理解成“属于某类”的标签。于是贝叶斯公式就变形成了下面的样子:\\n\",\n    \"\\n\",\n    \"$$P(“属于某类”|“具有某特征”)=P(“具有某特征”|“属于某类”)P(“属于某类”)P(“具有某特征”)$$ \\n\",\n    \"我们简化解释一下上述公式：\\n\",\n    \"\\n\",\n    \"- $P(“属于某类”|“具有某特征”)=$在已知某样本“具有某特征”的条件下，该样本“属于某类”的概率。所以叫做『后验概率』。\\n\",\n    \"- $P(“具有某特征”|“属于某类”)$= 在已知某样本“属于某类”的条件下，该样本“具有某特征”的概率。 \\n\",\n    \"- $P(“属于某类”)$= （在未知某样本具有该“具有某特征”的条件下，）该样本“属于某类”的概率。所以叫做『先验概率』。\\n\",\n    \"- $P(“具有某特征”)$= (在未知某样本“属于某类”的条件下，)该样本“具有某特征”的概率。\\n\",\n    \"\\n\",\n    \"而我们二分类问题的最终目的就是要判断$P(“属于某类”|“具有某特征”)$是否大于1/2就够了。贝叶斯方法把计算**\\\"具有某特征的条件下属于某类\\\"**的概率转换成需要计算“属于某类的条件下具有某特征”的概率，而后者获取方法就简单多了，我们只需要找到一些包含已知特征标签的样本，即可进行训练。而样本的类别标签都是明确的，所以贝叶斯方法在机器学习里属于有监督学习方法。\\n\",\n    \"\\n\",\n    \"这里再补充一下，一般『先验概率』、『后验概率』是相对出现的，比如 P(Y) 与 P(Y|X) 是关于 Y 的先验概率与后验概率， P(X) 与 P(X|Y) 是关于 X 的先验概率与后验概率。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 搜狗新闻主题分类\\n\",\n    \"- 这是一个文本分类问题，经典的新闻主题分类，下面用朴素贝叶斯来做\\n\",\n    \"- 数据集可百度网盘下载：链接:https://pan.baidu.com/s/14yMZNWrrgO7FVlGw4vLS3A  密码:wg90\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import os\\n\",\n    \"import time\\n\",\n    \"import random\\n\",\n    \"import jieba  # 处理中文\\n\",\n    \"import nltk   # 处理英文\\n\",\n    \"import sklearn\\n\",\n    \"from sklearn.naive_bayes import MultinomialNB\\n\",\n    \"import numpy as np\\n\",\n    \"import pylab as pl\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from collections import Counter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def text_processing(folder_path, test_rate=0.2):\\n\",\n    \"    data_list = []\\n\",\n    \"    label_list = []\\n\",\n    \"\\n\",\n    \"    folder_list = os.listdir(folder_path)\\n\",\n    \"    for folder in folder_list:\\n\",\n    \"        text_folder_path = os.path.join(folder_path, folder)\\n\",\n    \"        text_files = os.listdir(text_folder_path)\\n\",\n    \"\\n\",\n    \"        # 读取每个文件\\n\",\n    \"        n = 1\\n\",\n    \"        for file in text_files:\\n\",\n    \"            if n > 100:\\n\",\n    \"                # 怕内存爆掉，只取100个样本文件，后期可以注释掉\\n\",\n    \"                print(\\\"n>100\\\")\\n\",\n    \"                break\\n\",\n    \"            with open(os.path.join(text_folder_path, file), \\\"r\\\") as f:\\n\",\n    \"                text = f.read()\\n\",\n    \"                # read() 返回值为str，每次读取整个文件，将文件所有内容放到一个字符串变量中\\n\",\n    \"                # readline() 返回值为str，每次只读取一行,每行的内容放在一个字符串变量中\\n\",\n    \"                # readlines() 返回值为list，一次读取整个文件，每行的内容放在一个字符串变量中作为列表的一个元素。\\n\",\n    \"\\n\",\n    \"            # 使用jieba分词\\n\",\n    \"            # 开启并行分词,参数为并行进程数\\n\",\n    \"            jieba.enable_parallel()\\n\",\n    \"            word_cut = jieba.cut(text, cut_all=False) # 精确模式，返回的结构是一个可迭代的genertor\\n\",\n    \"            word_list = list(word_cut)\\n\",\n    \"            jieba.disable_parallel() # 关闭并行分词模式\\n\",\n    \"\\n\",\n    \"            data_list.append(word_list) # 训练集list\\n\",\n    \"            label_list.append(folder)  # 训练集标签分类\\n\",\n    \"            n += 1\\n\",\n    \"\\n\",\n    \"    # 划分数据集和测试集\\n\",\n    \"    data_label_list = list(zip(data_list, label_list))\\n\",\n    \"    random.shuffle(data_label_list)\\n\",\n    \"\\n\",\n    \"    idx = int(len(data_label_list)*test_rate)+1\\n\",\n    \"    print(\\\"总样本数：\\\", len(data_label_list))\\n\",\n    \"    train_list = data_label_list[idx:]\\n\",\n    \"    test_list = data_label_list[:idx]\\n\",\n    \"    # print(train_list)\\n\",\n    \"    \\n\",\n    \"    # 这里返回包含一组列表的元祖（[]）\\n\",\n    \"    train_data_li, train_label_li = zip(*train_list)\\n\",\n    \"    test_data_li, test_label_li = zip(*test_list)\\n\",\n    \"\\n\",\n    \"    # 统计词频，得到词频逆序字典?为什么不用总的样本来统计词频而是用训练集\\n\",\n    \"    vocab_dict = dict(Counter([w for li in train_data_li for w in li]))\\n\",\n    \"    vocab_list = sorted(vocab_dict.items(), key=lambda f: f[1], reverse=True)\\n\",\n    \"\\n\",\n    \"    vocab_list, _ = zip(*vocab_list)\\n\",\n    \"    vocab_list = list(vocab_list)\\n\",\n    \"    return vocab_list, train_data_li, train_label_li, test_data_li, test_label_li\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Building prefix dict from the default dictionary ...\\n\",\n      \"Loading model from cache /tmp/jieba.cache\\n\",\n      \"Loading model cost 1.009 seconds.\\n\",\n      \"Prefix dict has been built succesfully.\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"总样本数： 90\\n\",\n      \"词汇个数： 9875\\n\",\n      \"训练集样本个数： 71\\n\",\n      \"测试集样本个数： 19\\n\",\n      \"训练集标签： 71\\n\",\n      \"测试集标签： 19\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"random.seed(2019)\\n\",\n    \"folder_path = \\\"Database/SogouC/Sample\\\"\\n\",\n    \"vocab_list, train_data_list, train_label_list, test_data_list, test_label_list = text_processing(folder_path, test_rate=0.2)\\n\",\n    \"print(\\\"词汇个数：\\\", len(vocab_list))   \\n\",\n    \"print(\\\"训练集样本个数：\\\", len(train_data_list)) \\n\",\n    \"print(\\\"测试集样本个数：\\\", len(test_data_list)) \\n\",\n    \"print(\\\"训练集标签：\\\", len(train_label_list)) \\n\",\n    \"print(\\\"测试集标签：\\\", len(test_label_list)) \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 停用词去重\\n\",\n    \"- 清洗停用词\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 词去重\\n\",\n    \"def make_word_set(words_file):\\n\",\n    \"    words_set = set()\\n\",\n    \"    with open(words_file, \\\"r\\\") as f:\\n\",\n    \"        for line in f:\\n\",\n    \"            word = line.strip()\\n\",\n    \"            if len(word) > 0 and word not in words_set:\\n\",\n    \"                words_set.add(word)\\n\",\n    \"    return words_set\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"停用词个数： 428\\n\",\n      \"stopwords_set: {'甚至于', '仍旧', '并不', '此次', '全体', '所', '依照', '沿着', '嘛', '否则', '才是', '何处', '万一', '可以', '曾', '但', '且', '您', '那样', '嗡', '或是', '下', '鉴于', '而外', '还是', '另外', '吧', '既然', '说来', '尔', '当地', '这会', '被', '他们', '然而', '本地', '那时', '甚至', '一', '或者说', '或', '受到', '别处', '了', '哟', '诸', '不论', '哪些', '其余', '凡', '只消', '上', '彼此', '哪', '这', '即', '何况', '进而', '果然', '由于', '不尽', '因而', '不单', '距', '之', '多会', '与', '及至', '就是说', '则', '与否', '这里', '例如', '此外', '多么', '朝着', '只有', '简言之', '来自', '这么', '随', '由此', '这边', '后者', '所在', '往', '哪怕', '此处', '既往', '唯有', '不只', '仍', '比如', '以来', '许多', '致', '就是', '是', '若是', '去', '又及', '趁', '又', '同', '除外', '个人', '至今', '宁可', '它们', '由', '使', '得', '在于', '此', '向着', '我', '而已', '个', '全部', '如上', '不然', '比', '两者', '跟', '另', '你', '个别', '自己', '为了', '此间', '那儿', '介于', '诸位', '无', '就算', '一切', '嘻嘻', '有的', '对比', '接着', '倘若', '呵呵', '一些', '只', '一旦', '儿', '前者', '那些', '本着', '譬如', '只限于', '再有', '啦', '而是', '出来', '除非', '怎么办', '所有', '连带', '别的', '不仅', '何以', '自从', '或者', '从', '某些', '当然', '虽然', '正巧', '即便', '至', '即使', '让', '什么', '小', '于', '继而', '还要', '关于', '么', '经过', '和', '那里', '虽说', '怎样', '以免', '本人', '值此', '按照', '截至', '为此', '沿', '据此', '另一方面', '可见', '其', '连同', '我们', '各位', '与其', '也', '而后', '既', '不料', '况且', '来说', '某某', '嘿嘿', '格里斯', '故而', '尽管如此', '人', '很', '替代', '什么的', '假如', '及', '以至', '再', '一来', '不是', '正是', '较之', '这般', '从而', '其它', '给', '对待', '怎么样', '今', '起', '自', '既是', '这儿', '来', '自身', '啥', '因之', '根据', '每', '看', '只需', '并且', '正值', '只限', '如是', '基于', '到', '她们', '各', '为', '以', '着', '遵照', '对方', '以为', '只因', '不管', '最', '首先', '并非', '除了', '他', '任何', '依据', '随着', '总之', '同时', '如果说', '们', '某个', '凭借', '不如', '于是', '用来', '拿', '那么', '不外乎', '这些', '彼时', '几', '以及', '据', '那', '打', '要不', '处在', '那边', '等等', '再则', '从此', '哪个', '随后', '在', '可是', '你们', '除此', '反而', '的', '遵循', '别', '至于', '别人', '的确', '为止', '作为', '靠', '随时', '人们', '尽管', '已', '不仅仅', '怎', '如同下', '只怕', '有时', '就要', '后', '本身', '其次', '此地', '咱们', '以上', '这个', '对于', '如若', '为什么', '这样', '才能', '有些', '各自', '因', '要不然', '因为', '那个', '咱', '此时', '凭', '何', '该', '的话', '加之', '便于', '哪儿', '似的', '其中', '诸如', '若非', '其他', '多少', '不', '它', '直到', '大家', '谁人', '得了', '为何', '非但', '别说', '以致', '她', '如此', '分别', '甚而', '正如', '用', '每当', '可', '要么', '虽', '开外', '固然', '加以', '但是', '若', '却', '还有', '而且', '何时', '他人', '不过', '要是', '逐步', '以便', '如何', '然后', '为着', '不光', '如', '有关', '乃至', '某', '趁着', '只要', '只是', '凡是', '哇', '反之', '针对', '照着', '无论', '那般', '不但', '向', '乃', '还', '把', '并', '因此', '亦', '有', '当', '什么样', '如果', '谁', '出于', '如下', '而', '怎么', '赖以', '些', '不至于', '所以', '毋宁', '不尽然', '之所以', '光是', '好'}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"stopwords_file = \\\"./stopwords_cn.txt\\\"\\n\",\n    \"stopwords_set = make_word_set(stopwords_file)  # 去重后的停用词\\n\",\n    \"print(\\\"停用词个数：\\\", len(stopwords_set))\\n\",\n    \"print(\\\"stopwords_set:\\\", stopwords_set)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 从词袋中选取有代表的特征词\\n\",\n    \"- 第一步生成的词袋里有很多通用的、无意义的词语，需要去掉。  \\n\",\n    \"- 有代表性的词语很大概率是一些对最终类别区分有作用的词语。并且后面这些词语会作为特征作为模型的输入。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def vocab_select(vocab_list, deleteN, stopwords_set=set()):\\n\",\n    \"    # 选取特征词\\n\",\n    \"    feature_words = []\\n\",\n    \"    n = 1\\n\",\n    \"    # 从deleteN 开始，舍弃前从deleteN个单词\\n\",\n    \"    # 因为越前面的词词频越高，在所有类别中都可能出现很多次\\n\",\n    \"    for t in range(deleteN, len(vocab_list), 1):\\n\",\n    \"        if n > 1000:\\n\",\n    \"            # 选取1000个词汇，也就是特征词是1000\\n\",\n    \"            break\\n\",\n    \"        # 满足三个条件：不是数字；不在停用词表；长度2～4就添加到特征词列表\\n\",\n    \"        if not vocab_list[t].isdigit() and \\\\\\n\",\n    \"            vocab_list[t] not in stopwords_set and \\\\\\n\",\n    \"            1<len(vocab_list[t])<5:\\n\",\n    \"                feature_words.append(vocab_list[t])\\n\",\n    \"                n += 1\\n\",\n    \"    return feature_words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"['公司', '一个', '游客', '旅游', '导弹', '考生', '大陆', '认为', '火炮', '台军', '进行', '时间', '一种', '解放军', '各种', '美国', '没有', '北京', '市场', '作战', '支付', '志愿', '成为', '已经', '仿制', '发展', '复习', '远程', '工作', '很多', '建设', '主要', '可能', '目前', '通过', '企业', '五一', '问题', '品牌', '学习', '黄金周', '射程', '银行', '技术', '一定', '部分', '基础', '增长', '部署', '分析', '上海', '亿美元', '学校', '考试', '词汇', '选择', '辅导班', '期间', '完全', '能力', '记者', '文章', '时候', '表示', '训练', '专业', '毕业生', '部队', '需要', '重要', '专家', '收入', '提高', '填报', '今年', '军事', '阵地', '计划', '必须', '达到', '坦克', '影响', '用户', '电话', '管理', '科学', '开始', '拥有', '表现', '资料', '万人次', '几乎', '来源', '发现', '相关', '准备', '服务', '提供', '要求', '销售']\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"deleteN = 20 \\n\",\n    \"# 删除前词频高的top20个词语,可以调整这个数值\\n\",\n    \"feature_words = vocab_select(vocab_list, deleteN, stopwords_set)\\n\",\n    \"print(feature_words[:100])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 训练和测试集生成固定长度的词向量特征\\n\",\n    \"- 这步为后面数据输入进贝叶斯模型训练做准备。\\n\",\n    \"- 因为文本长度不一，所以每个样本需要固定好维度，才能喂给模型训练。\\n\",\n    \"- nltk 与sklearn中的训练数据类型不一样，应该分别处理\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def text_features(train_data_list, test_data_list, feature_words, flag=\\\"nltk\\\"):\\n\",\n    \"    def text_features(text, feature_words):\\n\",\n    \"        text_words = set(text) # 样本去重\\n\",\n    \"        if flag == \\\"nltk\\\":\\n\",\n    \"            # 遍历每个样本词语，凡是样本的词语出现在1000个特征词里，就记录下来，\\n\",\n    \"            # 由于nltk特征 dict, 需要将特征保存为字典格式，键为词语，值为1，否则值为0。\\n\",\n    \"            features = {word:1 if word in text_words else 0 for word in feature_words}\\n\",\n    \"        elif flag == \\\"sklearn\\\":\\n\",\n    \"            # sklearn输入是列表\\n\",\n    \"            # 遍历每个样本词语，出现即为1，不出现为0，返回一个列表\\n\",\n    \"            features = [1 if word in text_words else 0 for word in feature_words]\\n\",\n    \"        else:\\n\",\n    \"            features = []\\n\",\n    \"        return features\\n\",\n    \"    # 训练样本 二维列表 \\n\",\n    \"    train_feature_list = [text_features(text, feature_words) for text in train_data_list]\\n\",\n    \"    # 测试样本 二维列表\\n\",\n    \"    test_feature_list = [text_features(text, feature_words) for text in test_data_list]        \\n\",\n    \"    return train_feature_list, test_feature_list              \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"训练样本个数： 71\\n\",\n      \"测试样本个数： 19\\n\",\n      \"样本特征维度： 1000\\n\",\n      \"测试集的第6个样本的前100个值： [1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"flag = 'sklearn'\\n\",\n    \"train_feature_list, test_feature_list = \\\\\\n\",\n    \"    text_features(train_data_list, test_data_list, feature_words, flag)\\n\",\n    \"print(\\\"训练样本个数：\\\", len(train_feature_list)) \\n\",\n    \"print(\\\"测试样本个数：\\\", len(test_feature_list))   \\n\",\n    \"print(\\\"样本特征维度：\\\", len(test_feature_list[5]))  \\n\",\n    \"print(\\\"测试集的第6个样本的前100个值：\\\",test_feature_list[5][0:100]) \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 用贝叶斯模型进行训练和预测\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 分类，输出准确率\\n\",\n    \"def text_classifier(train_feature_list, test_feature_list, \\n\",\n    \"                    train_label_list, test_label_list, flag=\\\"nltk\\\"):\\n\",\n    \"    if flag == 'nltk':\\n\",\n    \"        ## 使用nltk分类器\\n\",\n    \"        train_flist = zip(train_feature_list, train_label_list)\\n\",\n    \"        train_flist = list(train_flist) \\n\",\n    \"        test_flist = zip(test_feature_list, test_label_list)\\n\",\n    \"        train_flist = list(test_flist) \\n\",\n    \"        classifier = nltk.classify.NaiveBayesClassifier.train(train_flist)\\n\",\n    \"        test_accuracy = nltk.classify.accuracy(classifier, test_flist)\\n\",\n    \"        \\n\",\n    \"    elif flag == 'sklearn':\\n\",\n    \"        ## sklearn分类器\\n\",\n    \"        classifier = MultinomialNB().fit(train_feature_list, train_label_list)\\n\",\n    \"        # MultinomialNB()的使用方法和参数见：https://www.cnblogs.com/pinard/p/6074222.html\\n\",\n    \"        # https://scikit-learn.org/stable/modules/naive_bayes.html#complement-naive-bayes\\n\",\n    \"        test_accuracy = classifier.score(test_feature_list, test_label_list)\\n\",\n    \"    else:\\n\",\n    \"        test_accuracy = []\\n\",\n    \"    return test_accuracy\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"测试准确率： 0.7368421052631579\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"flag='sklearn'\\n\",\n    \"test_accuracy = text_classifier(train_feature_list, test_feature_list, \\n\",\n    \"                                    train_label_list, test_label_list, flag)\\n\",\n    \"print(\\\"测试准确率：\\\", test_accuracy)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 调参与可视化\\n\",\n    \"这步调参，查看不同的deleteNs对模型效果的影响\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"start\\n\",\n      \"总样本数： 90\\n\",\n      \"[0.6842105263157895, 0.6842105263157895, 0.6842105263157895, 0.6842105263157895, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.6842105263157895, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.6842105263157895, 0.7368421052631579, 0.7368421052631579, 0.6842105263157895, 0.7368421052631579, 0.6842105263157895, 0.631578947368421, 0.6842105263157895, 0.6842105263157895, 0.5263157894736842, 0.5789473684210527, 0.5789473684210527, 0.631578947368421, 0.5789473684210527, 0.5789473684210527, 0.5789473684210527, 0.5789473684210527, 0.631578947368421, 0.631578947368421, 0.5789473684210527, 0.5789473684210527, 0.5789473684210527, 0.5789473684210527, 0.5789473684210527, 0.631578947368421, 0.631578947368421, 0.631578947368421, 0.631578947368421, 0.631578947368421, 0.631578947368421, 0.631578947368421, 0.631578947368421, 0.631578947368421, 0.5789473684210527, 0.5789473684210527, 0.5263157894736842, 0.5263157894736842]\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAYwAAAEWCAYAAAB1xKBvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3Xl8JHWd+P/XO30k3ZnMpDMHzEwHhhtFv4DOT0D57noCsl9Fdz3AXRVFXFf96R76FdddUfT7XXVXxd1FxQPPRVR0lVUUFa8VBRncERcEGQ5Jz8FkJp2ZSbpzv79/VFWn0umjOl3VnXTez8cjj6Srqqs+Vd2pd31uUVWMMcaYerranQBjjDErgwUMY4wxgVjAMMYYE4gFDGOMMYFYwDDGGBOIBQxjjDGBWMBY5kTk6SKSa+L9HxeRvw8zTRWOoSJyYpV1fyoi34vouH8hIo+JyJiIrA+w/SMi8uwA221zzykeTkpXBhH5sYi8pt3pMMuXBYwWcG9URffGtk9EPisiayI4zqUi8jP/MlV9naq+J+xjBaWq/6aq54W9XxFJAB8CzlPVNap6MOxjBEzHomteZ/unu8HomrLlPxORS0NPYEhE5F0i8sWQ9lX1AcMsbxYwWud5qroGOAM4E3h7m9Oz0h0F9AD3tDshSzAOvEJEtrU5HaaG1ZbDDMICRoup6j7gFpzAAYCIdIvIP4nIo24Ry8dFJFXp/SJyhYg8KCJHROReEXmhu/xxwMeBc9yczKi7/LMi8l7f+y8XkV0iMiIiN4nIFt86FZHXicgDIpIXkWtERNx1J4rIT0TkkIgcEJEvlyXt2VXet+AJ3D3Gm0TkIXc//ygiFb+H7nW5WkT2uD9Xu8tOBu53NxsVkR9Wef/LReT3InJQRN5Rtq7Ldy0PishXRGSgyn7WicinRWSviOwWkfeKSKzGNa/3eY4CnwWurHK8etfav+1X3VzrIRH5qYic5lv3Wfez+Lb7fblDRE7wrX+OiNznvvdfAalyjAuAvwVe6p7nr2tdl1rnICI/dXf7a3dfL61xbhkR+ZaIDLvfq2+JSNa3fkBEPuN+N/Ii8g3fuotEZKeIHHY/4wvc5QuKJcWXc5L5osjLRORR4IcBrnFKRD7ofs8OiZNTTLnX/P8vO5+7ReQF1c53RVBV+4n4B3gEeLb7dxb4DfAR3/qrgZuAAaAP+A/gH9x1Twdyvm1fDGzBCfYvxXla3eyuuxT4WdmxPwu81/37mcAB4ElAN/AvwE992yrwLaAfOAYYBi5w130JeId73B7g3IDvW5Amd9sfued6DPA74DVVrttVwO3AJmAj8HPgPe66be6+4lXe+3hgDPgD91w/BMz4Poe/dPeddddfC3yp0r6Bb7jre920/BL48xrXvO7nCRwNHAZOcZf/DLi03rWucJ6vdo/R7R53Z9lnPwI8BYgD/wbc4K7b4B7/RUAC+Cv3+lT7LN4FfLFsWa3rUu/7cmKA/5v1wJ8Aafccvwp8w7f+28CXgYx7Dn/oLn8KcAh4jnv8rcCp5f+L5efl+9w/755TKsA1vgb4sXuMGPBUd7uXAHf4tjsdOAgk230/aupe1u4ErIYf90s6Bhxxv5C3Av3uOsG56Z/g2/4c4GH376fjCxgV9r0TuMj9+1JqB4xPAx/wrVsDTAPb3Nda9o/9FeAK9+/PA58AshXSUOt9C9LkbnuB7/XrgVurnNuDwIW+1+cDj7h/e//c1QLGO3Fvju7rXmCK+YDxW+BZvvWb3WsR9+8bp+hr0rt5uNteAvyoyvkF/jyBDwBfdv/2B4yq17rO96zfTfc632f/Kd/6C4H73L9fAdxelu4cAQNGgOtS7/tSN2BUeN8ZQN73ec0BmQrbXQt8uMb/Yr2AcXyQa4wTjIrA6RW268YJ1ie5r/8J+Gij57zcfqxIqnVeoKp9ODeMU3Ge8MB5ck4Dd4nIqFus8V13+SIi8go3q+1t+wTfvurZAvzee6GqYzhPPVt92+zz/V3ACSoA/xvnpvJLEblHRF5dtu9q76tkyPf379101U1vnW0rvbd0HFUdxzlXz7HAv/uu42+BWZwbIWXbJYC9vm2vxXmirqSRz/P9wPkicnrZ8nrXGgC3WOx9bpHLYZybISz8PlT7XMqvj7Lwc6mn3nUJdA61iEhaRK51i3sOAz8F+t1ir0FgRFXzFd46iPOwsVSl61DnGm/AyT0tOpaqTuI8OP2ZOEWulwBfaCJNy4JV6rSYqv5ERD6L88TxApwioiJwmqrurvVeETkW+CTwLOAXqjorIjuZL3uuN/TwHpx/dG9/vTjZ/prHddO9D7jcfd+5wA9E5KequqveeysYZL6y+hg3XbXSG2TbcnuBx3kvRCSNc66eIeDVqnpb+RtlYWX0EM6T9AZVnalwnPJrHvjzVNWDInI18J6y5UGv9cuAi4Bn49zI1gF5qtRFlNmL8zngHkf8ryslt+x1zesS0vflb4BTgLNUdZ+InAH8F875DQEDItKvqqMV0nYClY3jBHTP0RW28Z9rrWt8AJhwj/XrCvv5HE6Q+BlQUNVfVEnTimE5jPa4GniOiJyhqnM4QeDDIrIJQES2isj5Fd7Xi/NlHna3exVODsPzGJAVkWSV414PvEpEzhCRbuD/4pSzPlIvwSLyYl+FY95Nx2y991XxVrdCcxB4M045dCVfAv5ORDaKyAacYqagTTtvBP6XiJzrXo+rWPh9/zjwf9wgjHuMi8p3oqp7ge8BHxSRteJUlp8gIn/obrLgmjf4eYJTt/JUFga3oNe6D+emfRDnJvh/a1+SBb4NnCYifyxOa6A3Ufnm6XkM2OY+Lde9LnXO4THg+ABp7MMJvqPiNEi40lvhHv87wEfd71JCRP7AXf1pnO/5s9x0bRWRU911O4GL3e2349Th1EtDxWvsftbXAR8SkS1ubuQc938LN0DMAR+kA3IXYAGjLVR1GKeM1+tQ9zZgF3C7m+39Ac6TVfn77sX58v0C55/uiYD/CfmHOE/j+0TkQIX33+oe82s4T5gnABcHTPb/B9whImM4FbpvVtWHA7633DeBu3D+eb+N8w9eyXuBHcDdOA0FfuUuq0tV7wHegBMk9+LctPwdID+Ccx7fE5EjOBXgZ1XZ3SuAJHCvu58bccrQofI1D/R5uuk8jFOX4W+hFfRafx6nmG63m7bbq6S/0nEP4DSgeB/OzfAkFn6Xyn3V/X1QRH7l/l3rutQ6h3cBn3OLsl5S45hXAymcJ/nbcYr2/F6OU+90H7AfpyEDqvpL4FXAh3Eqv3/CfM7673G+93ng3Tjfj1rqXeO34Hw378Sps3g/C++rn8f5Pw2lD0u7iVshY0xLiIjiVAQupSjLmBVFRF4BvFZVz213WsJgOQxjjImAW2/2epzWYh3BAoYxpm1E5G/F6cBX/vOddqetGW6d1TBO0XG9Yq8Vw4qkjDHGBGI5DGOMMYF0VD+MDRs26LZt29qdDGOMWVHuuuuuA6pasbOwX0cFjG3btrFjx452J8MYY1YUEfl9/a2sSMoYY0xAFjCMMcYEYgHDGGNMIBYwjDHGBGIBwxhjTCAWMIwxxgRiAcMYY0wgHdUPYzn76e+G2fHISCj76k7EuPSp2+jtDvbx3f7QQX6+a9Fo50uSjHfx8rO3sS6dCLT9rx7N8+P79ldcd9zGXl54Zrbiukq+uXM3f3jyRvrT1ab7MMZEyQJGi7zjG79haKSIBJkLrQZv6K9jBtI87/Rgs5Ve9R/3cu/ew6Ede6C3m5eddUyg97z/O/dxx8Mji47t7euC0zaTSsbq7mf3aJE337CTv73wVF77B9UmUzPGRMkCRgvMzM6xZ3SCNz7jRN5yfsV5dAIbn5zhtCtvYShfCPyeoXyBV55zLO++6An1N65hdk455e++Q66BY+fyRf74SVv50EvOWLD8mzt38+YbdrJ7tMCJm/rq7mdopOD+LjaWaGNMaKwOowX2HZ5gdk7JZlJN76u3O85Ab5JcPtiN81BxmiMTM2Qz6fob1xHrErb0pwIfe3p2jr2HihWP7V2LoYD78o7ZSLAyxoTLAkYLeDe7MG7azn6C37S9G2wYwWr+2MFu2vsOTTCnlY/tXYtGzyPo9saY8FnAaAGvOCXUm/ZIsJu2V4QTZrAKmiuodd4b13STjHU1fB65fBGbw8WY9rCA0QK5vFPZvbm/J5T9ZTNpcqNF5ubq3zjDz2GkGT4yycT0bIBjOzf5wQrBqqtL2LqEnFJxepaD41MNpNgYExYLGC2Qyxc5em0P3fH6rYGCGMykmJqZ48DYZKBjr+mO0x+wGWzdYw84gWf3aP0bfS5fINYlbF5XOVA2UryVyxdZ2xMv/W2MaT0LGC2QyxdCe8KH+eKlIEVDuXyRbCaFNNumtuzYQW7aXqCMxyp/zbKZdKD9zMzOse/wBGcdv97dr1V8G9MOFjBawLlph1OHAPPFS0FunOEHq0aOXax57GwmxcHxKQpTMzX3s/eQ08rs7FLAsByGMe1gASNi3tNxmDftraWbdu0bp6qGHqw29fWQiEmg/hBD+ULNY3vXZHed8/D6nJx6dB+ZdMJyGMa0iQWMiHlPx2EGjHQyzvoAfTEOFacZm5wJ9djzfTFq37SnZuoHyqDFW/PNklNkM2nrvGdMm1jAiJj3dFyppVAzsgPpujftsPt/eAYD1D3sPVREFQYHqh/bq0Cv12u91MpsXaqhinJjTLgsYEQsqpt2kM57YTepbezY87mCajau6aY73hXoPI5e20My3lU6tvXFMKb1LGBELJcv0iVwdJWmpUuVzaTYna/dF6NWP4hmj31grHZfjCDBSsTri1E/h+GdQzaTZnJmjgNj1hfDmFazgBEx/9NxmLKZNFOzcwzX6IuRyxfp646zNhXuGJNB6h5y+SKxLuHotbUDZZCmtbt9ra28YiwrljKm9SxgRCw3Em4rJU+Q5q1DIwW2htgHo/zYteoehkYKbF5XvQ+Gf1+1Asb8AIYpd/vgfVCMMeGygBGxsPtBeAYDNK0Nu0mtJ2gOI8h5ZzMpRsanGJ+s3Bdj76g3gKFzzK39lsMwpl0sYESo1LS0RkuhpSo9aVcZvM/pg1EoFeGEaVOfO3BgjZu2v96hlsE6wae8LqTR4d2NMeGxgBGhWsN7N6snEWPDmu6qN87RwjTjU7OR5DDqDRw4OTPLY0cmAh27XtFapVZmjQzvbowJjwWMCEXVrNVT68YZpFlrVMfeOzqBBgyU9Yq3cvkCXWUj/VpfDGPawwJGhKJq1uqpdeMcakWwqlIc1sixN6xJun0xqu2ryOZ1KRK+yvPBTJrd1hfDmJazgBGhIffpOOw+GJ5sJs3uKvNizOduogpW6aoDB5ZyNwHqbkSkTk6pUBo7a/7YKSZn5hg+Un94d2NMeCxgRChX4ek4TNlMiulZZX+FG2cuX6SvJ866VDjzYFQ6NlQeODCXLxAP0Adjfl/V+2JUam1lTWuNaQ8LGBGKqkmtxxunqVJ/iKCtlJaqVt1DLl9kS3+KWFew/h+DA6mK5zA/gOHC82hkiHVjTHgsYEQoqn4Qnlo3zsiDVc1jB+uD4clm0owWpjkyMb1geWkAw7J9BR3e3RgTLgsYEQkyvHezSp3Yyob7VlWGIuph7tmwpptkvKtisdDQSGPBqlS8VTbtqzeMefl5BB3e3RgTLgsYEfGejqMMGD2JGBv7FvfFGBmfojg9G+mxu7qEbIV5MSamZ9l/ZLKhYFUq3ioLfLWaJVvTWmNazwJGRKo9HYctm0mRG11444y6D4anUue9PaONH7ta0Zo3gOHmCq3MnPlALIdhTCtZwIiId/OLYmgOv0qTGZX6f0QwJMmCY1e4aS/l2Ot7k6QSsQr7ckb6rTSAYZDh3Y0x4bKAEZGgw3s3K5tJsWe0yKzvxukFq/L+C1Ecu3zgwKXkbry+GOUtpWpVngcZ3t0YEy4LGBHJ5YMN792sbCbN9Kzy2OEJ37GLrEslWNsTTR8M/7FhYWV1Ll8gERM29TUWKCt13svli1VzKta01pjWs4ARkUabli5VtkIT06GIm9SWH9s/Yu5Qg30w5ve1sHhrfgDDyucRZHh3Y0y4Ig0YInKBiNwvIrtE5IoK6z8sIjvdn9+JyKhv3StF5AH355VRpjMKzk072joEqPyk3c5gtdT+H9lMikPFaQ67fTH2lAYwrHwNt/bXn5PDGBOuyAKGiMSAa4DnAo8HLhGRx/u3UdW/UtUzVPUM4F+Ar7vvHQCuBM4CngJcKSKZqNIatsmZWR47PNmSm/aW/oU3bW8ejFYEq41ruhcNHJjLF8n2N37sUvGWex71RvpNJZ3h3avNB2KMCV+UOYynALtU9SFVnQJuAC6qsf0lwJfcv88Hvq+qI6qaB74PXBBhWkO1Z9SpT4hyaA5PTyLGUWu7SzfYg+NTTEzPLeodHYXygQMnpmcZPjK5pJZh83N1Fxf8rhV0bV4MY1oryoCxFRjyvc65yxYRkWOB44AfLuG9rxWRHSKyY3h4uOlEhyHqeTDKZTPpUr+PShMORX1s75i7R5d+7PIZBIMMYGid94xprSgDRqVaz2qN5i8GblTV2Ubfq6qfUNXtqrp948aNS0hm+BoZ3jsM/s573g03G3H/D/+xveawpWMvIVBm0gnSyfm+GEMjRTb3125lVmt4d2NM+KIMGDlg0Pc6C+ypsu3FzBdHNfreZcd7Oj6qr7slx8tmUuwdnWBmdq50w/XGmYr+2PMDBzaTu5kv3prPYdSrC6k1vLsxJnxRBow7gZNE5DgRSeIEhZvKNxKRU4AM8Avf4luA80Qk41Z2n+cuWxGCPB2HKZtJMzOnPHZkkly+QH86QV/EfTDmjz0/cGAuX3T7YCwtUPqLt4K09Co167ViKWNaIrI7mqrOAG/EudH/FviKqt4jIleJyPN9m14C3KC++TZVdQR4D07QuRO4yl22IgR5Og5TqXnrSKFlTWoXH7vozI7Xn6KrwT4Y/n3l8oXAAxh6nfqsHsOY1ohHuXNVvRm4uWzZO8tev6vKe68DrosscRHK5Ys8/ZTW1acM+iYzyuULnHxUX+uO7btp1+qZHWhfmTSHJ2a4b98Rd9+1A1+14d2NMdGwnt4hW8rw3s3a3N+DiFM00+ocxvreJD2JLjdYNXds7713PHTQfV37GlYb3t0YEw0LGCFbyvDezeqOxziqr4edQ6NMzsy1NFg5ldVpHtg/xoGx5gKl995flAJG/WtYaXh3Y0w0LGCEbKjF/SA82UyKOx8eKf3d6mPveKT5Y3vvvfPhEaeVWYCRfsvHoDLGRMcCRsha3WnPk82kGJ+adf9ufbCaP/bSz7s/naA3GWN8ajbwAIaVhnc3xkTDAkbIvKalQZ6Ow+SvbG51sPIPgdLMcCgiUjqPoOcwWGF4d2NMNCxghCy3xOG9m+XdYAd6k/R2R9r4rcKxnZt8Mt7FhjXNdVb0ziNo4Kk0Yq4xJhoWMEK21OG9m+XdtNtzbOeY2Sb6YMzvq7HzsImUjGmd1j6KLlOHitNMzcyFsq+hkSLPOnVTKPtqROmm3caAEcaUsKXzCDgWVvnw7kHlx6eYqVDv0Z3oinymQmNWKgsYwNtuvJvv3rMvtP0ds761lc4Am9elSMa6OHZ9b8uPPdCbpK8nzrYQju2lP+h59CRibOprbF6Mf/+vHH/15V9XXNcl8O03/U8et3lt4P0Zs1pYwAAuOesYnnbShlD2Fe8SLnzC5lD21YhkvIvrLz+L4zeuafmxRYQvXHYWW/qbr+h/5qmbuO7S7Zw52B/4PY3Oi3F37hA9iS7e8UcL5vNi72iRj/74QXbnixYwjKnAAgbwhycvj2HRm7V920Dbjn1GAzf4WmJdwjNPPaqh9wwOpPnVo/nA2+fyRY4ZSPPys49dsHzX/iN89McPUpierfJOY1Y3q/Q2K55/ePcgcvlixVZYqaTz/FScmgk1fcZ0CgsYZsXzD+8eRLWWbKlEDIDilOUwjKnEAoZZ8fzDu9dzqDjNkYmZir3h00knYFiRlDGVWcAwK15pPvAAFd+1hm7pjnchYjkMY6qxgGFWvC3u8O5BOu8NjVQfHFJESCViFCxgGFORBQyz4nnDuwdpWusFlWqTM6WTMYpWJGVMRRYwTEfwpnetJ5cvsqY7zrpU5d7cqWTMiqSMqcIChukIQTvvebMCilQe8yqdiFOwZrXGVGQBw3SEbCbN3kP1+2LUGxyyJxmjOB3OuGLGdBoLGKYjZDMpZueUvYeqz4uhquzOF2tOMJVOxKzjnjFVWMAwHcGbeKlWsdSh4jRHJmdq5jDSSWslZUw1FjBMRwgyL0YuwHzrPVbpbUxVFjBMR9i8LuX2xaiewwgy33o6Yc1qjanGAobpCMl4F0evrd0Xw1tXa/pXK5IypjoLGKZjZDMphuoUSfV1x1mbqj6qfyoZtyIpY6qwgGE6RjaTZnedIqmtNfpggDNi7dTsXOCh0o1ZTeoGDBHZISJvEJFMKxJkzFINZlLsPVRkusrNfmikdpNamB+x1uoxjFksSA7jYmALcKeI3CAi50utRzRj2iSbSTOnsK9CXwxVJZcvVB1DypNK2pwYxlRTN2Co6i5VfQdwMnA9cB3wqIi8W0TaNyeoMWW81k+V6jFGC9OMT80GzmFYxbcxiwWqwxCR/wF8EPhH4GvAi4DDwA+jS5oxjfGCQW5kcT3GfB+MOjmMhBVJGVNN9eYiLhG5CxgFPg1coarePJh3iMjTokycMY04el0PXVXmxQjSBwPmi6Qsh2HMYnUDBvBiVX2o0gpV/eOQ02PMktXqixGklzdAOun8S1gdhjGLBSmSeo2I9HsvRCQjIu+NME3GLFl2IF0lYBRY21N9HgyPVyRlQ5wbs1iQgPFcVR31XqhqHrgwuiQZs3TVJlIaqjNKrSdlzWqNqSpIwIiJSLf3QkRSQHeN7Y1pm2wmzb7DE0zNLOyLUW8eDE/amtUaU1WQgPFF4FYRuUxEXg18H/hctMkyZmmymRRzCnsPzRdLOX0wguUwrFmtMdXVrfRW1Q+IyG+AZwECvEdVb4k8ZcYswfww50WOXd8LQL4wTWFqNlAOo8ea1RpTVZBWUqjqd4DvNLpzEbkA+AgQAz6lqu+rsM1LgHcBCvxaVV/mLp8FfuNu9qiqPr/R45vVxxuJ1l+PEbRJLUB3vIsusSIpYyoJ0g/jbOBfgMcBSZyb/7iqrq3zvhhwDfAcIIcztMhNqnqvb5uTgLcDT1PVvIhs8u2iqKpnNHpCZnXbvK6HWJcsaClVGtZ8oH6RlIiQTsatSMqYCoLUYfwrcAnwAJACXoMTQOp5CrBLVR9S1SngBuCism0uB65xW16hqvuDJtyYSuKxxX0xhkacHMbWADkMcFpKFaetWa0x5QINDaKqu4CYqs6q6meAZwR421ZgyPc65y7zOxk4WURuE5Hb3SIsT487Uu7tIvKCagcRkde62+0YHh4Ocjqmw2UzqVKQACeHsS6VYG1P7T4YnlTCpmk1ppIgdRgFEUkCO0XkA8BeoDfA+yqNaKsVjn8S8HQgC/yniDzB7fdxjKruEZHjgR+KyG9U9cFFO1T9BPAJgO3bt5fv36xC2Uya23YdKL0O2qTWY7PuGVNZkBzGy93t3giMA4PAnwR4X87d1pMF9lTY5puqOq2qDwP34wQQVHWP+/sh4MfAmQGOaQzZTIrHjkwwOePc9J0mtcEDhlMkZQHDmHI1A4Zbcf1/VHVCVQ+r6rtV9a/dIqp67gROEpHj3BzKxcBNZdt8A7d4S0Q24BRRPeQOP9LtW/404F6MCWBwII0q7B2daKgPhieVsByGMZXULJJS1VkR2SgiSbfiOjBVnRGRNwK34LSsuk5V7xGRq4AdqnqTu+48EbkXmAXeqqoHReSpwLUiMocT1N7nb11lTC3+vhh9PXGK07MMNlgkNVqYjip5xqxYQeowHgFuE5GbcIqkAFDVD9V7o6reDNxctuydvr8V+Gv3x7/Nz4EnBkibMYvMB4wCa3ri7rIGchjJuBVJGVNBkICxx/3pAvqiTY4xzTt6rdMXY8gfMOpMzeqXTsRstFpjKggyNMi7W5EQY8ISj3WxeV2PWyTlNKXd2t9gpbfVYRizSJCe3j9icXNYVPWZkaTImBA4w5w7dRj96UQpcARhraSMqSxIkdRbfH/34DSptfy6WdYGM2l++sAwfT3x0vhSQaUTMaZnlenZORKxQH1bjVkVghRJ3VW26DYR+UlE6TEmFNlMmscOT9IdH+e0LTWHPVvEP6/3upQFDGM8df8bRGTA97NBRM4Hjm5B2oxZMq+l1KMjjfXyhvmAMWHFUsYsEKRI6i6cOgzBKYp6GLgsykQZ0yx/kGikSS3YJErGVBOkSOq4ViTEmDBlfUOZN5zDSDj/Fta01piFghRJvUFE+n2vMyLy+miTZUxzjl7bQ7zLGf+y0RxGyub1NqaiIDV6l7ujxwLgzl1xeXRJMqZ5sS5hi9v3otEchlckZU1rjVkoSB1Gl4iIO4yHNyBhMtpkGdO8bCbF2OQMvd2BZiIuSSWiq8PYM1rkC7f/nrecdwqxrkozAETnscMT/MPNv2VyZm7RukSsi7eef0qgWQlb5fO/eIRfPHiw3cloWjLexRXPPZXN6xp7cFmOgvwn3QJ8RUQ+jlP5/Trgu5GmypgQvPDMrfz+YKH+hmXSERZJffvuvXzsxw/ywjO3cvJRrR1p50f37ecbO/dw/MbeUnEdgCo8sH+M0wf7uezc5VNl+c+3PsDMnLKpr7vdSVmy2TnlweFxzjpuPS8765h2J6dpQQLG24DXAn+B01Lqe8CnokyUMWF48fbB+htVkIqwSCqXL5R+tzpg5PJFYl3C9/7yD4j7OiSqKk+48pZS2paD4tQsB8ameOv5p/CGZ5zY7uQs2eyccsrffWdZXdtmBAkYKeCTqvpxKBVJdQOdcQWMKZMutZKKImAUF/xupVy+wOZ1PQuCBYCIkM2k25KmanaPOreXRuuflhuvLm05XdtmBKn0vhUnaHhSwA+iSY4x7TffSir8ZrVD7pOmf87xVhmqMfNg+Tzo7TY04txgV3rAAPfadkgOI0jA6FHVMe+F+/fyqRkzJmSJmBDrktBzGN7sf9C+HEa1cbUGB9Lszhdx27a0nVeE0+g4YMvR4DKk9+HXAAAZZElEQVTLvTUjSMAYF5EneS9E5MlAZ5y9MRWICOlE+CPW5gvTpSDU6hvI5Mwsjx2erNonJZtJcWRyhsPF5dFZMZcvkox3sWHNyq3w9mQzKYaPTHbEUDNB6jD+EviqiOxxX28GXhpdkoxpvyjmxPCemjf1dbe8EnTP6ARQvYjHWz6UL7Auva5l6aomly+S7U/R1eKmx1HwJu/aPVrkhI1r2pya5tTNYajqncCpOK2kXg88rsIItsZ0lHQyFnqRlJerOOeE9eQL04xNtu5p3gtQ1QNG2t1ueRQe5PIFtnZA/QUsv2vbjKBjN58CPB44E7hERF4RXZKMab+eRBQBw7lpn3XcegB2t/AG4t2sslU65vnnQV8Ocvliw0O6LFfL7do2I8hYUlcC/+L+PAP4APD8iNNlTFulk7HQy5yHRoqs7YnzeHd+jla2ShoaKRDvEo5e21Nx/bpUgjXd8WXxFDw+OcPB8amOaCEFsKmvh0RMSi2/VrIgOYwXAc8C9qnqq4DTcfphGNOx0sl46KPV5vIFspl0W544c/kiW/pTVYcjcfpipJbFU/DuUefGupyGKWlGrEvY2r88rm2zggSMoqrOATMishbYDxwfbbKMaa9oiqScfhDre5P0JLpa+jTvBKvaT+zLpfNevfqWlWi5XNtmBQkYO9zhzT+JM5nSr4BfRpoqY9os7CIprw/G4EC6LT2rczU67XmcHEb7+2KU6ls6KmB0Rm/vIBMoeXNffFxEvgusVdW7vfUicpqq3hNVAo1ph7BbSY2MT1Gcni3dBAczKXKjrSmimJieZf+R6n0wPN7ovoeK0/Sn2zcgdS5fpDvexcYO6IPhyWZSHBhz+mL0uKMhr0QNzXCvqo/4g4XrCyGmx5hlIex+GEOlp+Z06XerKkG9OoEgRVJA2ytnh0acJrUiK78Phme+ae3KrsdoKGBU0TmfqjGuVCJGYXo2tOKZ8nL5bCbFoeI0hyemQ9l/7WMHq0QeHFgezT9z+WJHDAni513boRVeLBVGwFgeg88YE6J0MsbsnDI9G1bAWPiU7z1xtqIvRtBK5OXSwSxIBf1Ks1yubbPCCBjGdJxU0qneC6tYKpcv0J9O0NeTAPyduVoRMIokYsKmvsp9MDzrUgn6euJtzWGMTc6QL0x3TKc9z8Y13SRjXW3PvTUrjIAxFcI+jFlWvFn3CtPh9MUob6XUyr4Y9fpg+LW7+efuDmwhBdDVJWztgJZSQXp631prmaqeHXaijGm3sOf1dgbTm39qHuhNkk7GWpTDCF7E0+7mn53YB8PT7msbhqoBQ0R6RGQA2CAiGREZcH+2AVtalUBj2iEV4rzeTh+MhTdtr2d1K4YHGRpZGKxq8Sb7aVdfDO96dFqRFLgBYxlNUrUUtfph/DnO0OZbcDrsefnZw8A1EafLmLZKhziv94GxKSam5xY9Nbei+GdiepYDY5OlVjr1DGbSFKZmyRemGehtfV+MXL5IT6KLDWva1w8kKtlMmoPjUxSmZkgng8wssfxUzWGo6kdU9TjgLap6vKoe5/6crqr/2sI0GtNyYRZJzRezLHxqbsXYTbmy/h/1tHtkVW+U2k7qg+Hxrm0rRykOW5BK730i0gcgIn8nIl/3z8BnTCcKs0iqWj+IbCbF4QmnZ3VUGq0TaHfzz9xo5zWp9bT72oYhSMD4e1U9IiLnAucDnwM+Fm2yjGkvr8igGEIrKe8GUT4hUCv6YjSaw9i6LHIYnRkwBjtgXowgAcN7xPoj4GOq+k2g8woYjfEpNasNqUgqk3bmm/AbbMFwEfN9MIKNy7QulWBtT3vmxTgyMc1oB/bB8GxY000y3tpRisMWJGDsFpFrgZcAN4tId8D3GbNieQPEhVEkNVRl9rj5ebSju4EM5QtsbXBubGecq9Y/BXfiKLV+XV1Ctt9phbZSBbnxvwS4BbhAVUeBAeCtQXYuIheIyP0isktErqiyzUtE5F4RuUdErvctf6WIPOD+vDLI8YwJSzrUOozK5fL96QS9yVjkOYxGJyIaHGhPf4FSXU+H5jDAmSK3o3MYqlrAmTTpXHfRDPBAvfeJSAyn+e1zceYDv0REHl+2zUnA24GnqeppOM14cft/XAmcBTwFuFJEMgHPyZimJWJdJGJCoclmtarK7io37VbMi7F7CeMyeWlqdV+MTu6051npnfeCzun9NpwbO0AC+GKAfT8F2KWqD6nqFHADcFHZNpcD16hqHkBV97vLzwe+r6oj7rrvAxcEOKYxoelJND/E+fDYJJMzi/tgeKK8gRSnZjkwNtVwnUA2k6I4PcvIeGtH/cnli6QSsbb0/2iVbCbFyPgU45PhTv/bKkGKpF4IPB8YB1DVPUBfgPdtBYZ8r3PuMr+TgZNF5DYRuV1ELmjgvQCIyGtFZIeI7BgeHg6QLGOCcSZRau4fu165fJR9MXaPLu2JvV3NP72iu07sg+EptYwbXZm5jCABY0qdvKkCiEhvwH1X+tTL87hx4CTg6cAlwKfc6WCDvNdZqPoJVd2uqts3btwYMGnG1JdOxilOzzW1j3pDXQwOpDkyMcOhQvh9MbyJkBoPGF5lfGsrZ4dGOrdJrad0bVfoECFBAsZX3FZS/SJyOfADnPm968kBg77XWWBPhW2+qarTqvowcD9OAAnyXmMilUrEKIaUw9jaXz2HAdHcnL2cS6OVyK0cet0vly80XEG/0gyu8M57QQLGRuBG4GvAKcA7cW7g9dwJnCQix4lIErgYuKlsm28AzwAQkQ04RVQP4bTKOs8d9DADnOcuM6ZlUiHM653LF1nfm6S3u/LYQVEW/+TyRZLxLjY0ODd2X0+C/nSipR3MnNkHZzo+h7FhTZLu+MqdFyPICFjPUdW34VQ8AyAiH8SpCK9KVWdE5I04N/oYcJ2q3iMiVwE7VPUm5gPDvTgdBN+qqgfdY7wHJ+gAXKWqIw2emzFNSSdjjDVZOVlvaPEox25yhlRvrA+Gp9WteXY32CN9pfJGKV6pOYyqAUNE/gJ4PXC8iNztW9UH3BZk56p6M3Bz2bJ3+v5W4K/dn/L3XgdcF+Q4xkQhlYgxfGSyqX3szhd53Oa1VdevSzk9wKPJYRQWDUcSVLY/za7hsZBTVN1qaFLrafckVc2oVSR1PfA8nGKk5/l+nqyqf9aCtBnTVukmi6Tm5pTcaO2K3CifOHNVepgH4bXealVfjEbHvFrJWjFKcVSq5jBU9RBwCKf1kjGrTrN1GMNjk0zV6IPhcZ44w72BjE/OcHB8aslP7NlMionpOQ6MTbEx4DhUzRjKF0gnY2TSiciP1W7ZTJp8YZqxyZlF44stdzYmlDFVpBJxJpro6V1tHoxyXg4jzKd5r53/Ulsdee9r1ZNwLl9ksEPnwSjnTWa1EnMZFjCMqcLruLfUG/n8PBj1chgpxibDnRej2TqBVnfe6+RhzcuVru3IyqvHsIBhTBWpZIw5hcmZpXXem++DUS+HEf7NudmRX7e2uC9GvdZknaTdsxo2wwKGMVV407QutVgqly+wYU2yNHtfNVHcQHL5It3xLjY22AfDs6Y7TqZFfTEOFac5MjGzKiq8Adb3JulJrMx5MSxgGFNFs5Mo5fJFtga4CUbR+9drUttMnUCrmn+upia10JpRiqNiAcOYKlJNBoyhkWDFLOvSCfp64qGOL+SMy9TcE3s205rJfubHvFodOQxo3bUNmwUMY6pINTHr3tycsnu0GHgcp7CfOHP5QmkO6aUaHEizuwXzYpTGvKrTOKCTDFoOw5jOkk46beSLS6jD2H9kkulZDVzMEmbnvbHJGfIhzI2dzaSYnJljeKy53u715PJF1nTHWZfq/D4Ynmwm5Y6fFf4oxVGygGFMFfNFUo2PJ9VouXyYPat3N9lCyp8miL6llNekdjX0wfCU5sVYYbkMCxjGVNFMkVSjQ11kM2nGp2YZDWFejLAqkVvVF2M1Nan1tGsI+WatrH7pxrRQkFZS+w9P8ODw+KLldzx8EGgshwFwyz37OHZ90DnKKvv5g96xmyuS8ubwuP2hg0tunhtELl/k7OPXR7b/5cj7vH/+4IGKw4OcdNSahoelbwULGMZU4QWMWnUYl3/hLn49NFpx3db+FD2J2n0wPCduWgPAFV//TYOprGxdKsGGNc3Njd3bHWfLuh6uv+NRrr/j0VDSVc0J7vmvFgO9STLpBJ+57RE+c9sji9Y/9YT1XH/52a1PWB0WMIypwqvDqFYkpao8uH+MC594NC8/e9ui9cesD/6Ef8LGNXz7TedyuNjc/Buerf3h1Al85XXnlJq9RiUeE84Y7I/0GMuNiHDTG8+tWCT1yf98iHv2HGpDquqzgGFMFV4dRrUiqUNFZ8TRJx2T4ZwTmi9SOW3Luqb3EbZsJr2q+ke00uBAuuLgkL98eIQf3refyZlZuuPBcqitYpXexlQRj3WRjHVVLZJaTXM4mNbx6jf2jE60OSWLWcAwpoZUMkaxSrPa1TakhWmN5Tw4oQUMY2qoNeueV7YftDe3MUFkB1o7tHwjLGAYU0MqEaNQtUiqQF93nLUpqwo04Tl6bQ/xLgl1bLGwWMAwpoZUMsZElRxGLl8kO7A6ZokzrRPrErb0RzPPe7MsYBhTQ60iqdU0S5xpLW+omOXGAoYxNfRUKZJS1VU5pIVpjTAHowyTBQxjakhXaSU1WphmfGrWmtSaSGQzafYfmVzybI9RsYBhTA3pZLxiP4wha1JrIuR9r3aPLq9chgUMY2pw+mEsDhi5kIYQN6aSVo0U3CgLGMbUkEpUrvSe77RnRVImfN7sg8ut4tsChjE1pJMxitOziyY2yuWLrO1ZXbPEmdbZ1NdDIiaWwzBmJUklY6jC5MzcguVOk1rLXZhoLNe+GBYwjKmh2oi1QyPWpNZEazn2xbCAYUwN6Qrzejt9MCyHYaKV7U9HPhdJoyxgGFNDKumME+VvDz8yPkVxetZyGCZS2UyKA2PLqy+GBQxjakhXKJLyypUrTX5jTFgGl+GotRYwjKkhlaweMCyHYaK0HOfFsIBhTA2V5vX2/oG3WsAwEVqOnfcsYBhTg1fp7R8eZChfYF0qwdoe64NhorOpr3vZ9cWwgGFMDemEU+ldXiRlxVEmal1dwtb+VGncsuXAAoYxNfQknX8R/4i1uXzRpmU1LTE4kF49OQwRuUBE7heRXSJyRYX1l4rIsIjsdH9e41s361t+U5TpNKaatNus1iuSsnkwTCtlMyl2L6McRmSTEYtIDLgGeA6QA+4UkZtU9d6yTb+sqm+ssIuiqp4RVfqMCaK8p/fB8SkmpucsYJiWyGbSHBibojg1W2qA0U5R5jCeAuxS1YdUdQq4AbgowuMZE7pYl5CMd5VaSQ2N2Ci1pnXm58VYHrmMKAPGVmDI9zrnLiv3JyJyt4jcKCKDvuU9IrJDRG4XkRdUO4iIvNbdbsfw8HBISTdmnn9e71IfjAHLYZjoeQFjuQwREmXAkArLtOz1fwDbVPV/AD8APudbd4yqbgdeBlwtIidUOoiqfkJVt6vq9o0bN4aRbmMWSCdipTqM+U57lsMw0Zvvi9H5OYwc4M8xZIE9/g1U9aCqTrovPwk82bduj/v7IeDHwJkRptWYqvyz7uXyBTLpBGu6I6v+M6Zk45pukvGuZdNSKsqAcSdwkogcJyJJ4GJgQWsnEdnse/l84Lfu8oyIdLt/bwCeBpRXlhvTEqlkrDRarY1Sa1qpq0vILqN5MSJ7TFLVGRF5I3ALEAOuU9V7ROQqYIeq3gS8SUSeD8wAI8Cl7tsfB1wrInM4Qe19FVpXGdMS6UTcVyRV4OSj+tqcIrOabF1G82JEmq9W1ZuBm8uWvdP399uBt1d438+BJ0aZNmOCSiVjjBamSvNgPPPUTe1OkllFspk039uzr93JAKyntzF1pRJOK6nhsUkmZ+asSMq0VDaT4uD4FOOTM/U3jpgFDGPq8JrV2rDmph3m+2K0vx7DAoYxdaSSMSamZ23iJNMW8xMptb8ewwKGMXXM5zDceTD6LYdhWmd+IiXLYRiz7KXcjntDIwUGepP0Wh8M00Ib13TTvUz6YljAMKaOlDti7QOPjVn9hWk5EWFrJlUax6ydLGAYU4c3694D+y1gmPbIZpbHvBgWMIypwxtW+lBx2iZOMm0xuEw671nAMKYOb04MsCa1pj2ymTT5wjRjbe6LYQHDmDrSSX/AsByGab1SX4w2F0tZwDCmjlTSchimveab1ra3WMoChjF1+IuktlrAMG3g5Wzb3VLKAoYxdaTdZrXre5Olv41ppQ1rkvQk2t8XwwKGMXV4dRhZGxLEtImILIumtRYwjKnDq8Ow+gvTTtlMitxoe4ukLH9tTB1eHYYFDNNO2UyKnz1wgOd86CcV13/sz57MiZvWRJoGCxjG1NHbHeet55/C+acd1e6kmFXsxU8eJF+YRlUrru+OR19gJNUOvhJt375dd+zY0e5kGGPMiiIid6nq9nrbWR2GMcaYQCxgGGOMCcQChjHGmEAsYBhjjAnEAoYxxphALGAYY4wJxAKGMcaYQCxgGGOMCaSjOu6JyDDw+yW+fQNwIMTkrBR23qvLaj1vWL3nHuS8j1XVjfV21FEBoxkisiNIT8dOY+e9uqzW84bVe+5hnrcVSRljjAnEAoYxxphALGDM+0S7E9Amdt6ry2o9b1i95x7aeVsdhjHGmEAsh2GMMSYQCxjGGGMCsYABiMgFInK/iOwSkSvanZ4wicigiPxIRH4rIveIyJvd5QMi8n0RecD9nXGXi4j8s3st7haRJ7X3DJZORGIi8l8i8i339XEicod7zl8WkaS7vNt9vctdv62d6W6WiPSLyI0icp/7uZ+zSj7vv3K/4/8tIl8SkZ5O/MxF5DoR2S8i/+1b1vDnKyKvdLd/QEReGeTYqz5giEgMuAZ4LvB44BIReXx7UxWqGeBvVPVxwNnAG9zzuwK4VVVPAm51X4NzHU5yf14LfKz1SQ7Nm4Hf+l6/H/iwe8554DJ3+WVAXlVPBD7sbreSfQT4rqqeCpyOcw06+vMWka3Am4DtqvoEIAZcTGd+5p8FLihb1tDnKyIDwJXAWcBTgCu9IFOTqq7qH+Ac4Bbf67cDb293uiI8328CzwHuBza7yzYD97t/Xwtc4tu+tN1K+gGy7j/OM4FvAYLT2zVe/rkDtwDnuH/H3e2k3eewxPNeCzxcnv5V8HlvBYaAAfcz/BZwfqd+5sA24L+X+vkClwDX+pYv2K7az6rPYTD/RfPk3GUdx812nwncARylqnsB3N+b3M065XpcDfxvYM59vR4YVdUZ97X/vErn7K4/5G6/Eh0PDAOfcYvjPiUivXT4562qu4F/Ah4F9uJ8hnexOj5zaPzzXdLnbgHDefIs13FtjUVkDfA14C9V9XCtTSssW1HXQ0T+F7BfVe/yL66wqQZYt9LEgScBH1PVM4Fx5osnKumIc3eLUy4CjgO2AL04xTHlOvEzr6XaeS7p/C1gOJF10Pc6C+xpU1oiISIJnGDxb6r6dXfxYyKy2V2/GdjvLu+E6/E04Pki8ghwA06x1NVAv4jE3W3851U6Z3f9OmCklQkOUQ7Iqeod7usbcQJIJ3/eAM8GHlbVYVWdBr4OPJXV8ZlD45/vkj53CxhwJ3CS25oiiVNRdlOb0xQaERHg08BvVfVDvlU3AV7LiFfi1G14y1/htq44GzjkZXVXClV9u6pmVXUbzuf5Q1X9U+BHwIvczcrP2bsWL3K3X5FPm6q6DxgSkVPcRc8C7qWDP2/Xo8DZIpJ2v/PeeXf8Z+5q9PO9BThPRDJu7uw8d1lt7a68WQ4/wIXA74AHgXe0Oz0hn9u5OFnNu4Gd7s+FOOW1twIPuL8H3O0Fp9XYg8BvcFqdtP08mjj/pwPfcv8+HvglsAv4KtDtLu9xX+9y1x/f7nQ3ec5nADvcz/wbQGY1fN7Au4H7gP8GvgB0d+JnDnwJp55mGiencNlSPl/g1e757wJeFeTYNjSIMcaYQKxIyhhjTCAWMIwxxgRiAcMYY0wgFjCMMcYEYgHDGGNMIBYwjKlDRN4lIm9Z6np3mxcEGdTS3VdBRDb5lo01lmJjomEBw5jWeAHOaMhBHAD+JsK0GLMkFjCMqUBE3iHOHCk/AE5xl50gIt8VkbtE5D9F5NQK71u0jYg8FXg+8I8istPdpta+rgNe6g5B7d93r4h8W0R+7c758NIIL4Exi8Trb2LM6iIiT8YZUuRMnP+RX+GMfPoJ4HWq+oCInAV8FGecKr9F26jqM0XkJpwe5ze6x7i1xr7GcILGm3HmLPBcAOxR1T9y97Eu7HM3phYLGMYs9j+Bf1fVAoB7s+/BGczuq85QRYAz9ESJOyJwzW0a2O6fgZ0i8kHfst8A/yQi78cJPv+5pLMzZoksYBhTWfmYOV04cyucUeM9QbYJtJ2qjorI9cDrfct+5+Z+LgT+QUS+p6pX1TmWMaGxOgxjFvsp8EIRSYlIH/A8oAA8LCIvhtJcyaf736TOPCPVtjkC9AXYzu9DwJ/jPtiJyBagoKpfxJksaMXOv21WJgsYxpRR1V8BX8YZ2fdrgFf086fAZSLya+AenAl7ylXb5gbgre4seCcE2ZeqHgD+nfniqicCvxSRncA7gPc2e67GNMJGqzXGGBOI5TCMMcYEYgHDGGNMIBYwjDHGBGIBwxhjTCAWMIwxxgRiAcMYY0wgFjCMMcYE8v8AT6nGSPrX3Q0AAAAASUVORK5CYII=\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"finished\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print (\\\"start\\\")\\n\",\n    \"\\n\",\n    \"# 文本预处理\\n\",\n    \"folder_path = './Database/SogouC/Sample'\\n\",\n    \"\\n\",\n    \"all_words_list, train_data_list, train_class_list, test_data_list, test_class_list = text_processing(folder_path, test_rate=0.2)\\n\",\n    \"\\n\",\n    \"# 生成stopwords_set\\n\",\n    \"stopwords_file = './stopwords_cn.txt'\\n\",\n    \"stopwords_set = make_word_set(stopwords_file)\\n\",\n    \"\\n\",\n    \"# 文本特征提取和分类\\n\",\n    \"flag = 'sklearn'\\n\",\n    \"deleteNs = range(0, 1000, 20)\\n\",\n    \"test_accuracy_list = []\\n\",\n    \"for deleteN in deleteNs:\\n\",\n    \"    feature_words = vocab_select(all_words_list, deleteN, stopwords_set)\\n\",\n    \"    train_feature_list, test_feature_list = text_features(train_data_list, test_data_list, feature_words, flag)\\n\",\n    \"    test_accuracy = text_classifier(train_feature_list, test_feature_list, train_class_list, test_class_list, flag)\\n\",\n    \"    test_accuracy_list.append(test_accuracy)\\n\",\n    \"print(test_accuracy_list)\\n\",\n    \"\\n\",\n    \"# 结果评价\\n\",\n    \"plt.figure()\\n\",\n    \"plt.plot(deleteNs, test_accuracy_list)\\n\",\n    \"plt.title('Relationship of deleteNs and test_accuracy')\\n\",\n    \"plt.xlabel('deleteNs')\\n\",\n    \"plt.ylabel('test_accuracy')\\n\",\n    \"plt.show()\\n\",\n    \"#plt.savefig('result.png')\\n\",\n    \"\\n\",\n    \"print (\\\"finished\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.naive_bayes import ComplementNB, GaussianNB, BernoulliNB\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"start\\n\",\n      \"总样本数： 90\\n\",\n      \"[0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7368421052631579, 0.7894736842105263, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.7894736842105263, 0.7894736842105263, 0.8947368421052632, 0.8947368421052632, 0.8947368421052632, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8947368421052632, 0.8947368421052632, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.7894736842105263, 0.7894736842105263, 0.7894736842105263, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8421052631578947, 0.8947368421052632, 0.8947368421052632, 0.8947368421052632]\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAYwAAAEWCAYAAAB1xKBvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzt3XmcZHV97//Xu7fqmZ6etXsQGJYBRwRXdC6KYjQqMpIb0EQjE41BCWgUYnygEa5GEfVGjYomwQU3XCKIJJpRETRI9MoPdQZZdEB0RIRh6xpmq+6eruqq/vz+OOf01NRUd52qrlPr5/l49KOrzlbfU8v5nO8uM8M555yrpKfZCXDOOdcePGA455yLxQOGc865WDxgOOeci8UDhnPOuVg8YDjnnIvFA0aLk/QCSdsXsP+nJf1jPdNU5jVM0uPnWPdqSd9P6HX/VtKjksYlrYqx/X2SXhxju6PDc+qrT0rbg6T/kfQ3zU6Ha10eMBogvFDtCy9sj0i6UtKSBF7nbEk/KV5mZm80s/fV+7XiMrN/N7OX1Pu4kvqBjwEvMbMlZvZYvV8jZjoOes8rbP+CMBhdXrL8J5LOrnsC60TSJZK+WqdjzXmD4VqbB4zG+VMzWwI8HTgRuLjJ6Wl3hwCDwNZmJ6QGE8BrJR3d5HS4eXRbDjMODxgNZmaPADcQBA4AJKUkfUTS/WERy6clLSq3v6SLJP1OUkbSXZJeHi4/Hvg0cHKYk9kdLr9S0vuL9j9X0jZJOyVtknRY0TqT9EZJv5W0S9LlkhSue7ykH0naI2mHpK+XJO3Fc+x3wB14+Bp/J+ne8Dj/LKns9zB8Xz4u6aHw7+PhsicA94Sb7Zb0wzn2/ytJf5D0mKR3lqzrKXovH5N0jaSVcxxnmaTPS3pY0oOS3i+pd573vNLnuRu4EnjPHK9X6b0u3vYbYa51j6QfS3pS0borw8/iu+H35WeSji1af6qkX4f7/hugOV5jA/B/gFeF53nHfO/LfOcg6cfhYe8Ij/Wqec5thaTvSEqH36vvSFpTtH6lpC+G341dkr5VtO5MSbdL2ht+xhvC5QcUS6oo56T9RZHnSLof+GGM93iRpI+G37M9CnKKi8L3/IKS87lT0svmOt+2YGb+l/AfcB/w4vDxGuCXwCeK1n8c2ASsBIaBbwP/FK57AbC9aNtXAocRBPtXEdytHhquOxv4SclrXwm8P3z8QmAH8AwgBfwr8OOibQ34DrAcOBJIAxvCdVcB7wxfdxA4JeZ+B6Qp3Pam8FyPBH4D/M0c79ulwE+B1cAo8P8B7wvXHR0eq2+OfU8AxoE/Cs/1Y0C+6HP4+/DYa8L1nwGuKnds4Fvh+qEwLT8H3jDPe17x8wQeB+wFjguX/wQ4u9J7XeY8Xx++Rip83dtLPvudwElAH/DvwNXhupHw9V8B9ANvDd+fuT6LS4Cvliyb732p9H15fIzfzSrgz4HF4Tl+A/hW0frvAl8HVoTn8Pxw+UnAHuDU8PUPB55Y+lssPa+iz/3L4TktivEeXw78T/gavcBzwu3+AvhZ0XZPAx4DBpp9PVrQtazZCeiGv/BLOg5kwi/kjcDycJ0ILvrHFm1/MvD78PELKAoYZY59O3Bm+Phs5g8Ynwc+XLRuCTANHB0+t5If9jXAReHjLwNXAGvKpGG+/Q5IU7jthqLnbwJunOPcfgecXvT8NOC+8HH0454rYLyb8OIYPh8CcuwPGHcDLypaf2j4XvQVH5ug6CsbXTzCbTcCN81xfrE/T+DDwNfDx8UBY873usL3bHmY7mVFn/3nitafDvw6fPxa4Kcl6d5OzIAR432p9H2pGDDK7Pd0YFfR5zUDrCiz3WeAy+b5LVYKGMfEeY8JgtE+4GlltksRBOt14fOPAJ+s9pxb7c+LpBrnZWY2THDBeCLBHR4Ed86LgVsl7Q6LNa4Plx9E0mvDrHa07ZOLjlXJYcAfoidmNk5w13N40TaPFD2eJAgqAP9AcFH5uaStkl5fcuy59ivngaLHfwjTVTG9FbYtt+/s65jZBMG5Ro4Cvln0Pt4NFAguhJRs1w88XLTtZwjuqMup5vP8EHCapKeVLK/0XgMQFot9MCxy2UtwMYQDvw9zfS6l749x4OdSSaX3JdY5zEfSYkmfCYt79gI/BpaHxV5HADvNbFeZXY8guNmo1ez7UOE9HiHIPR30WmaWJbhxeo2CIteNwFcWkKaW4JU6DWZmP5J0JcEdx8sIioj2AU8yswfn21fSUcBngRcBt5hZQdLt7C97rjT08EMEP/ToeEME2f55XzdM9yPAueF+pwD/LenHZrat0r5lHMH+yuojw3TNl94425Z6GDg+eiJpMcG5Rh4AXm9mN5fuqAMrox8guJMeMbN8mdcpfc9jf55m9pikjwPvK1ke973+S+BM4MUEF7JlwC7mqIso8TDB50D4Oip+Xi65Jc/nfV/q9H25EDgOeJaZPSLp6cBtBOf3ALBS0nIz210mbcdS3gRBQI88rsw2xec633u8A5gKX+uOMsf5EkGQ+AkwaWa3zJGmtuE5jOb4OHCqpKeb2QxBELhM0moASYdLOq3MfkMEX+Z0uN3rCHIYkUeBNZIG5njdrwGvk/R0SSng/xKUs95XKcGSXllU4bgrTEeh0n5zeHtYoXkE8BaCcuhyrgLeJWlU0ghBMVPcpp3XAv9b0inh+3EpB37fPw18IAzChK9xZulBzOxh4PvARyUtVVBZfqyk54ebHPCeV/l5QlC38hwODG5x3+thgov2YwQXwf87/1tygO8CT5L0ZwpaA/0d5S+ekUeBo8O75YrvS4VzeBQ4JkYahwmC724FDRLeE60IX/97wCfD71K/pD8KV3+e4Hv+ojBdh0t6YrjuduCscPv1BHU4ldJQ9j0OP+svAB+TdFiYGzk5/G0RBogZ4KN0QO4CPGA0hZmlCcp4ow517wC2AT8Ns73/TXBnVbrfXQRfvlsIfnRPAYrvkH9IcDf+iKQdZfa/MXzN/yC4wzwWOCtmsv8X8DNJ4wQVum8xs9/H3LfUfwG3Evx4v0vwAy/n/cAW4E6ChgK/CJdVZGZbgTcTBMmHCS5axR0gP0FwHt+XlCGoAH/WHId7LTAA3BUe51qCMnQo/57H+jzDdO4lqMsobqEV973+MkEx3YNh2n46R/rLve4OggYUHyS4GK7jwO9SqW+E/x+T9Ivw8Xzvy3zncAnwpbAo6y/mec2PA4sI7uR/SlC0V+yvCOqdfg2METRkwMx+DrwOuIyg8vtH7M9Z/yPB934X8F6C78d8Kr3HbyP4bm4mqLP4EAdeV79M8DutSx+WZlNYIeNcQ0gygorAWoqynGsrkl4LnGdmpzQ7LfXgOQznnEtAWG/2JoLWYh3BA4Zzrmkk/R8FHfhK/77X7LQtRFhnlSYoOq5U7NU2vEjKOedcLJ7DcM45F0ui/TAUjN/yCYIu858zsw+WrD+KoFnaKEELg9eY2fZw3V8D7wo3fb+ZfanS642MjNjRRx9dvxNwzrkucOutt+4ws7KdhYslViQV9sb8DcF4LtsJmp1tDJuGRtt8A/iOmX1J0guB15nZX4VtrrcA6wnab98KPHOOXp2z1q9fb1u2bEnkfJxzrlNJutXM1lfaLskiqZOAbWZ2r5nlgKsJekwWO4FgXCUIBqSL1p8G/MDMoq7/PwA2JJhW55xzFSQZMA7nwLFptnPgmEUQdKf/8/Dxy4FhBTOnxdnXOedcAyUZMMqNZ1Na/vU24PmSbgOeT9CbMh9z3+BFpPMkbZG0JZ1OLyS9zjnn5pFkwNjOgYOZraFk4Dgze8jM/szMTiQYOx8z2xNn36JjXGFm681s/ehoxTob55xzNUoyYGwG1klaGw7MdhbBmDKzJI1o/2xrFxO0mIJgRrqXhIOKrQBeEi5zzjnXJIkFjHDI4/MJLvR3A9eY2VZJl0o6I9zsBcA9kn5DMA/BB8J9dxIM+bw5/Ls0XOacc65JOqqntzerdc656sVtVusTKDnX4r59x0P89tFMVfusO2SYP31a3MkJkzc1XeCLN9/HvtzBc1D19vSw8VlHsHp4sAkpaz23/mEnP7qn+gY8r3n2Uaxemux76AHDuRZmZlx4zR3kCjMozjx6gBkM9PbwJ085lJ6emDsl7OZtO/jQ9b8GOOg8zGCwv4c3PH+uSfK6y4e+dw8/v29n7M87ctqTH+cBw7lulivMkCvM8PbTjuPNf/z4WPt88ebf895v38XufdOsHJpr8sXGenRvFoBbLn4hhy5bdMC6J7/nhtn1Dh7NTHHG0w7jXzae2OykHMQHH3SuhU1mg1lNhwZ6Y+8zOpwCIJ1pnYtwlJZVQ6mD1o0Op0iPt05amy2dyc5+hq3GA4ZzLWwiLPNfnIpfGDC6pAUDxvgUKxb3M9B38CVndEmKdGaqCalqPRPZPJO5ggcM51z1JnNRDqOKgBHlMMZb5yI8313z6HCqpYJbM0XvQxT0W40HDOda2EQ2ymG0f5GUB4zKoqI5z2E456pWSw5jSaqPwf6elroIp8ezc941jw6n2DuVZ2q60OBUtZ7ZHIYHDOdctcajHEYVld6SWD082DIBw8xIZ7JzNvmMAskOr/ie/cxWe8BwzlVrMqz0Hqqi0huCO9SxFgkYmWyeqemZuXMYS4PlrZLeZhrLTNHbI1Ysbo3m0KU8YDjXwiZqaFYLUcuj1rgAVypmacVWXc2SzmQZWTLQMh0uS3nAcK6FTdbQrBZaq29DpYCxugUr6ZullftggAcM51palMNY1F9lDmM4xe7JabL55lckVwoYK4cGkDxgwPyNA1qBBwznWthkLs+i/l56qyyiiC7Oj43nkkhWVSr1Lejr7WHV0EDL5IiayXMYzrmaTeQKDFXRByPSSvUC6fEs/b1i2aL+ObcZaaE6l2aZmTF2jOc8YDjnajOZzbO4ij4YkVbqvBdU5Kbmrcj1znuwazJHYca8SMo5V5uJXKGqPhiR1S3UVHUsk63Yr8ADxv7PKukhyhci0YAhaYOkeyRtk3RRmfVHSrpJ0m2S7pR0eri8X9KXJP1S0t2SLk4ync61qslcniVVtpCC/aPCtsJFOE65fNTRsJNmAK1Wq/fyhgQDhqRe4HLgpcAJwEZJJ5Rs9i6Cub5PBM4CPhkufyWQMrOnAM8E3iDp6KTS6lyrmsgWqm5SCzDQ18OKxf0tMQBhnIAxOpwiV5hh776DZ+TrFq0+8CAkm8M4CdhmZveaWQ64GjizZBsDloaPlwEPFS0fktQHLAJywN4E0+pcS5rM5avutBdphWKewoyxc6JyU9FWHGG30Vp94EFINmAcDjxQ9Hx7uKzYJcBrJG0HrgMuCJdfC0wADwP3Ax8xs53lXkTSeZK2SNqSTlc/D65zrWwiW6ip0htaI2A8NpFlxipfBKOA0gp1Ls2SzmRZPNBb9TAwjZRkwCjXJKK0gHIjcKWZrQFOB74iqYcgd1IADgPWAhdKOqbci5jZFWa23szWj46O1i/1zrWAyVy+pma1EA4P0uS+DXHL5VupVVeztHofDEg2YGwHjih6vob9RU6Rc4BrAMzsFmAQGAH+ErjezKbNbAy4GVifYFqda0lBK6mF5TCaWZHsASO+dKa1e3lDsgFjM7BO0lpJAwSV2ptKtrkfeBGApOMJAkY6XP5CBYaAZwO/TjCtzrWc6cIMufxMzXUYq4cHmZqeIZNtXkXybFPR4fmbii4d7GOgr7Xm8Gi0sczUbHPoVpVYwDCzPHA+cANwN0FrqK2SLpV0RrjZhcC5ku4ArgLOtuB26HJgCfArgsDzRTO7M6m0OteKosmTamklBa1x1x699kiFO2dJLTXCbjO0Qw4j0doVM7uOoDK7eNm7ix7fBTy3zH7jBE1rneta0fSsC2klBcGF6NjRJXVLVzXSmSzDqT4WxTiHVhpht9Gmpgvsncp3dR2Gc24Bah3aPNISOYzx+BW5q1ugVVez7GiDJrXgAcO5llXr5EmRVhiAMJ3JMhLzItgKzYCbpR16eYMHDOda1kSUw6ixldSyRf3096qpxTw7qmgqOjqcYudkjunCTMKpaj37e3m37jhS4AHDuZY1GeUwauyH0dOjpg8bXk1F7uhwCjPYOdH8OTwarR16eYMHDOda1kJzGNDceoF9uQKZbD52U9FWKEJrlnQmiwSrlgw0Oynz8oDhXIuKmtXWmsOA4I61WcNtVDuYXnR3PZbpvvGkxjJZVi4eoL+3tS/JrZ0657pY1Kx2ITmMZlYkRwMJVlOHAd2bw2j14ijwgOFcy5rNYdTYSgqCu/udE1kKM40fHqTalj8jXV4k5QHDOVeziVyeVF8PfQsophgdTjFjwaixjVZtwBjs72XZov7uDRgt3ssbPGA417Ims4UFD3XdzGKedCZLj/bP/hdHN/b2NrOqOjg2kwcM51rURC5f03zexZoaMMazrBxK0dtTbqaD8rpxPKm9U3ly+RkPGM652k1mCwwtoMIb9ncEa1YOo9qLYDf29m6XXt7gAcO5ljWRy7N4AU1qobipauMvwmOZLKtrCBjdNute1IzYA4ZzrmaTuYXnMBYN9DKc6murHMZkrjDbpLgbRJ9NtcG1GTxgONeiJrILr8OA5lQkz8wYO2qoyO3G3t7tMo4UeMBwrmVN5PILbiUFMNKEeoE9+6aZLljVTUVnK+m7qKVUejzLQG8PSxclOj1RXSQaMCRtkHSPpG2SLiqz/khJN0m6TdKdkk4vWvdUSbdI2irpl5JaP/w6V0eT2ULdchg7Ghwwah1MLxp3qttyGKPDKaT4rcmaJbGAIamXYKrVlwInABslnVCy2bsIpm49kWDO70+G+/YBXwXeaGZPAl4ATCeVVudaUb1yGM1oqlpry59uLZKKO2dIsyWZwzgJ2GZm95pZDrgaOLNkGwOWho+XAQ+Fj18C3GlmdwCY2WNmVkgwrc61lMKMMTU9U7ccRiabZ1+ucT+hWgPGisUD9Pao6wJGO/TyhmQDxuHAA0XPt4fLil0CvEbSdoK5vy8Ilz8BMEk3SPqFpH+Y60UknSdpi6Qt6XS6fql3romi6VkX2koK9re+aeRFOGoqWm3Ln2AOj4GuGrE2ncnGHgK+2ZIMGOUK5EpHQNsIXGlma4DTga9I6gH6gFOAV4f/Xy7pReVexMyuMLP1ZrZ+dHS0fql3romigQcX2g8DiiuSG3cRTmeyDPb3sKSGIrVu6rw3XZhh52TOcxgEOYojip6vYX+RU+Qc4BoAM7sFGARGwn1/ZGY7zGySIPfxjATT6lxLifoh1COH0YzhQRZSkTu6pHvGk9o5kcOsPTrtQbIBYzOwTtJaSQMEldqbSra5H3gRgKTjCQJGGrgBeKqkxWEF+POBuxJMq3MtZTaHUac6DGhwwBivvVy+m3IY7TQsCCQYMMwsD5xPcPG/m6A11FZJl0o6I9zsQuBcSXcAVwFnW2AX8DGCoHM78Asz+25SaXWu1UQ5jFqKdEqtGkrRo+bkMGoxOpxix3iOmSbM4dFo7RYwEu0pYmbXERQnFS97d9Hju4DnzrHvVwma1jrXdfbXYSz8J9rbI1YONbaYJ53JctLalTXtu3p4kMKMsWsyx6o2KduvVbXT2Dab9/R2rgVNzLaSWniRFDS2mCeXn2HX5HTNQ110U2/vWjs4NosHDOda0GS2fjkMCJq3NipgRLP71dpUtJvm9k5nsiwd7GOwvz43BknzgOFcC0oih9GoYcPH9i6smCXaLzpOJxvLTLVN7gI8YDjXkva3kqpPDiOoSM42pCJ5oRW5XVUktYDGAc3gAcO5FjSRzdPfKwb66vMTHV2SYrpg7NmX/JBsCy2XH0r1sXigt2uKpEaH22dcVQ8YzrWgyVyhbrkLaOxde3ShX7VkoOZjdEtfjHYaRwo8YDjXksaz+brVX0BjK5LTmSzLF/eT6qs9/c0YYbfRJrJ5JnIFL5Jyzi3MZC5ftxZS0PiAsdC75tVLO394kB1t1qQWPGA415ImsoW65jAaOWJtenzho692Qw6jnebyjnjAcK4FTebyda3DWJLqY7C/pyHDho9lphacwxgdTrFn3zRT0507Dc5Ymw0LAh4wnGtJE9kCQ3UY2jwiqSEVyWZWl6ai0f47OrhYqt3GkQIPGM61pHrnMKAxw4aPZ/NMTc/ULWB0crFUOpOlt0esWFx7a7JG84DhXAuayNU3hwGNaapar7vmaByqTg8Yq4aCKWnbhQcM51rQZDaBHEYjA0aNAw9GuqG3d3q8vXp5gwcM51rOzIwxOV1gqI7NaiG4iO+anCaXn6nrcYvVa/TVqNNfp+cw2i1gJDofhnPV2jM5zUd/cA/7cu3fOubpRy7n1c86qur9pvIFzOo38GAkujhd+I07GKzTkCOlfpceP+C1atXf28PKoQG+c+fDPLhrX+z9Dl02yFtPfUJNU8PGcfsDu/naz/6A1WFIrnvT4zzxcYcu/EANlGjAkLQB+ATQC3zOzD5Ysv5I4EvA8nCbi8JJl4rX3wVcYmYfSTKtrjX8ZNsOvnzLHxgdTtHfRmW7pfZO5bn+V4/UFDAm6jy0eeSZR61g7cgQt963s67HLfWcY1exfFH/go9z2pMex4/uGePmbTtibT85XWD35DRnnXQkhy1ftODXL+erP/0D37ztQQ6pQ85g+eIB/ugJo3VIVeMkFjAk9QKXA6cC24HNkjaFs+xF3kUwdeunJJ1AMDvf0UXrLwO+l1QaXetJh/0Ern/L89p6trXLb9rGP99wD1PTharnOpis89DmkeMeN8xNb3tBXY+ZpH/6s6dUtf0P7nqUc7+8hR3j2cQCRjqT5UmHLWXT+ackcvxWVzFfKmmLpDdLWlHlsU8CtpnZvWaWA64GzizZxoCl4eNlwENFr/sy4F5ga5Wv69pYejxLX5s1NSwn6rhWSxn8bA6jzpXena4RTXHbbbDAeotTkHkWcBhBDuFqSacpXgHh4cADRc+3h8uKXQK8RtJ2gtzFBQCShoB3AO+t9CKSzguD2pZ0Oh0jWa6Vje3NMrIkRU8bF0cBjC6tvZXPbA6jzs1qO100xEaSE0WNZRY+7Ek7qxgwzGybmb0TeALwNeALwP2S3itpvlney/3iS6uKNgJXmtka4HTgK5J6CALFZWY2HiN9V5jZejNbPzraXuWB7mDt2NSwnIXMGjdR58mTukXSLasKM8bOie7OYcT6Rkp6KvA6gov6fwD/DpwC/BB4+hy7bQeOKHq+hqIip9A5wAYAM7tF0iAwAjwLeIWkDxNUiM9ImjKzf4uTXte+0pkshyxtnwll5rJ6Af0IJrOew6hFqq+X5Yv7EwsYj01kmbH2Gsqj3ioGDEm3AruBzxO0Yoo+jZ9Jeu48u24G1klaCzxIULT1lyXb3A+8CLhS0vHAIJA2s+cVvf4lwLgHi+6QzmR58mHLmp2MBVs5NIBU293ueBQwPIdRtSRHuW3HsZ/qLc438pVmdm+5FWb2Z3PtZGZ5SecDNxA0mf2CmW2VdCmwxcw2ARcCn5X0VoLiqrPN6tHC2bWjwozx2ESuI36Qfb09rBoaqOnitX8+b89hVGt0OLnxsjxgxAsYfyPpw2a2GyBsLXWhmb2r0o5hn4rrSpa9u+jxXcB8uRTM7JIYaXQdYNdkjsKMdcwPcqTGu92J2Upvz2FUa3Q4xW33707k2PUa9qSdxWkl9dIoWACY2S6Cugzn6qrT7uBqvdudzBboEaQS6o3dyaIiqSQKKuo17Ek7i/ON7JU0+w5JWgR07zvmEtOOM5DNZ/XwIDtqzGEMDfQlNrxFJ1u9NMW+6cJsS7N6SmeyDKf6WNTFRYVx8rxfBW6U9EWCeobXEwzn4VxdteMMZPOJRoc1s6ou/pPZAou9hVRNou/O2N4plowuqeuxx9pwsMB6qxgwzOzDkn5J0JpJwPvM7IbEU+a6TpTDGOmQdu6jwylyhRn27JtmeRU916Mchqte8Twax9Q5YKQzWUY8YFRmZt/Dx3RyCUtnsgwN9HZMZW/xUBXVBIzJnOcwapXkPBo7MlmOP2xp5Q07WJyxpJ4tabOkcUk5SQVJexuRONddOqWXd6TW8aQmsp7DqFWS40l1+zhSEK/S+98IhvD4LbAI+BvgX5NMlOtO6cxUZwWMGu92J3P1nzypWyxf1E9fj+oeMPblCmSy+Y76ftYiVrs9M9sG9JpZwcy+CPxxssly3agdZyCbT613uxO5vHfaq1FPj2ru/zKfHd6kFohXhzEpaQC4PRzb6WFgKNlkuW6UzmQ55fEjzU5G3Swd7GOgr6fqi9dktuBFUguQRG/vTmvBV6s4OYy/Crc7H5ggGFDwz5NMlOs+U9MF9k7lWd0BAw9GJLF6uPq73Ylc3iu9F2D1cKqmUYLnE03s1Sl9hGo1721MOGveB8zsNcAUMeancK4W+4dd6KwfZLV3u2YW1GF4DqNmo8Mp7nxwT12P2WmjENRq3hyGmRWA0bBIyrnEdOqwC6NLqrvbzeZnKMyY5zAWYHQ4xWPjWQoz9RseJJ3J0iNYNdRZ389qxbmNuQ+4WdImgiIpAMzsY0klynWfTr2DGx1OseUPu2JvH41U6zmM2o0Op5gx2FnHkY/T41lWDqXobfOZIBcqzrfyofCvBxhONjmuW3VywNg5kWO6MEN/b+Uqw4lwLgxvJVW74v4vdQsYHdaCr1ZxhgbxeguXuHQmixRMPNRJoovMY+M5HrescoW+D22+cEn09vaAEYgz495NHDwXN2b2wkRS5LpSejzLysUDse7C20nx3W6sgJH1yZMWKone3ulMlsev9gKWOLcxbyt6PEjQpDYf5+CSNgCfIJhx73Nm9sGS9UcSjHy7PNzmIjO7TtKpwAeBASAHvN3MfhjnNV176tQ7uKiZcHp8Cqg89eyk5zAWbHbE2rAp7EKZGenxLKuXdt73s1pxiqRuLVl0s6QfVdovbJJ7OXAqsB3YLGlTOMte5F3ANWb2KUknEMzOdzSwA/hTM3tI0pMJpnk9PM4JufbUqUNHV3u36zmMhVs80MeSVF/dchi7J6eZLljHNfmuRZwiqZVFT3uAZwKPi3Hsk4Bt0Xzgkq4GzgSKA4YB0fCPywgq1zGz24q22QoMSkqZWTKT9bqm25HJcuxo5w0gMLIkqJOJe/GazWF4K6kFGa2hw+RcOrXJdy3ifCvWnhjCAAAX9ElEQVRvJbiwi6Ao6vfAOTH2Oxx4oOj5duBZJdtcAnxf0gUEw428uMxx/hy4ba5gIek84DyAI488MkayXKsxs44tkkr19bJsUX/8HEbYrNb7YSzMaB3Hk+rUFny1iFMktbbGY5drsFxaeb4RuNLMPirpZOArkp5sZjMAkp4EfAh4yTzpuwK4AmD9+vX1n8jXJW7vvjy5wkzHZvlHh1OzYxFVMpn1HEY9jA6nuPuR+szC4AFjvzjzYbxZ0vKi5yskvSnGsbcTjDsVWUNY5FTkHOAaADO7haBSfSR8nTXAN4HXmtnvYryea1NBhXDn/iCrududyBWQYFG/5zAWoq5FUh4wZsVpw3iume2OnpjZLuDcGPttBtZJWhsOLXIWsKlkm/sJpn5F0vEEASMdBqjvAheb2c0xXsu1sU4fCbSa8aQms3kW9/fS0+U9ihdqdDhFZirP1HRhwcdKj2dJ9fUw7C3XYgWMHhXNYB+2fqrYu8rM8gQj3N4A3E3QGmqrpEslnRFudiFwrqQ7gKuAs83Mwv0eD/yjpNvDv9VVnZlrG9Ed3Orhzhmptlg1I9ZO5Aos9gvTgtWzL0Y6EzSpLboMdq0438wbgGskfZqgDuKNwPVxDm5m1xE0lS1e9u6ix3cBzy2z3/uB98d5Ddf+Oj3LPzqcYjJXCKZerRAMJnN5hrxJ7YLt74uR5YiVixd0rLHMVMfWr1UrTsB4B0ErpL8lqMj+PvC5JBPluks6k2Wgr4elg515Z118t1spYExkCyz2Cu8Fq3U+9XLSmSxrRzqvyXct4nwzFwGfNbNPw2yRVAqYTDJhrnukM1lGl3Rulr94bKOjK1x4JnN5hrxJ7YKtruN4UulMlpPWrqy8YReIU4dxI0HQiCwC/juZ5LhulB7vzD4YkWrK0ydynsOoh5VDA0gLz2Hk8jPsmpxmdEln1q9VK07AGDSz8ehJ+HhhhYLOFenUTnuRqHhkbG/lsY0ms57DqIe+3h5WDQ0sOGA8NtHZ9WvVihMwJiQ9I3oi6ZnAvuSS5LpNpweMFYsH6O1RrOKRiWzecxh1MlKH3t6d3iCjWnG+mX8PfENS1OnuUOBVySXJdZPpwgw7J3Md3Qqlp0eMLIl3tzuRK3grqTqpdj71cjxgHCjO0CCbJT0ROI6gldSvzWw68ZS5rrBzIocZHT909OrhwVgBYzKX934YdbJ6eJDfje1Y0DHGZvsIdfb3M66438zjgBMIemKfKAkz+3JyyXLdYvYOroNzGBCNJzV/HUYuP8N0wTyHUSdRDsPMam6BF30/Vy3prJkgaxVnLKn3AP8a/v0x8GHgjHl3ci6m6CLa6Vn+OONJRUObex1GfYwOp5guGHv21V4gks5kWb64n1SfB3GIV+n9CoLxnh4xs9cBTyPoh+HcgnVLGfHocIod4zlmZuYeUDka2txbSdVHPYYHifoIuUCcgLEvHG48L2kpMAYck2yyXLeIfswjHf6jHB1OUZgxdk3m5twmGtrccxj1UY/e3p3eR6hacQLGlnD02M8STKb0C+DniabKdY10JsvSwT4GO3w47+KxjebiOYz6Gq1Db+9Ob/JdrTitpKK5Lz4t6XpgqZndGa2X9CQz25pUAl1n65Y7uOLikeMPLb+NT55UXwstkpqdCbLDc7/ViJPDmGVm9xUHi9BX6pge12XSmWzHDmtebHWMi9f+HIYHjHpYOthHqq8n9myHpcazefZNFzq+yXc1qgoYc+jMEeNcQ3RLlj+qo5mveGR/KykvkqoHSQuaea9bGmRUox4Bw+fRdjUb65KAMZTqY2igd/4cRtZzGPVWl4DhAw/OqkfAmJOkDZLukbRN0kVl1h8p6SZJt0m6U9LpResuDve7R9JpSabTNcdENs9krtAVAQMqX7w8h1F/1cynXirKDXbL9zOOegSMsu0Ew3kzLgdeStBLfKOkE0o2exfB1K0nEsz5/clw3xPC508CNgCfDI/nOki39PKOVAoYUQ7Dm9XWz0LGk/IiqYPF6el943zLzOzZc+x6ErDNzO41sxxwNXBmyTYGLA0fLwOiAQ7PBK42s6yZ/R7YFh7PdZBuu4OrdPGazOUZ7O+ht8erBetldDjFzokc04WZqvdNZ7L09Yjli/oTSFl7mjNgSBqUtBIYkbRC0srw72jgsBjHPhx4oOj59nBZsUuA10jaTjD39wVV7Bul8zxJWyRtSafTMZLlWkW33cFVKh6ZyOW9SW2dRd+tx8bn7jA5l3Qmy8iSFD0ewGfNl8N4A0FHvSeG/6O//yIoaqqk3LtcWkG+EbjSzNYApwNfkdQTc99godkVZrbezNaPjo7GSJZrFdHFs1tGAl29dJA9+6aZmi6UXT+RLbDYO+3VVdRku5Z6jPR41pvUlpjzdsbMPgF8QtIFZvavNRx7O3BE0fM17C9yipxDUEeBmd0iaRAYibmva3PpTJbeHrFicXeMBBrV1ewYz7JmxcGTVk5kPYdRb/t72E8RlHrHN7Y3y6HLvIVUsTiV3o9IGgaQ9C5J/1k8A988NgPrJK2VNEBQib2pZJv7CQY2RNLxBMOnp8PtzpKUkrQWWIcPR9Jxgiz/QNdk+Sv1PJ7MFbyFVJ0tpLd3t4xCUI04AeMfzSwj6RTgNOBLwKcq7WRmeeB84AbgboLWUFslXSopGh79QuBcSXcAVwFnW2ArcA1wF3A98GYzK5+Pd21rLDPVVT/ISheviVze+2DU2Ug4j0W1AaMwYzzmAeMgcb6d0YX6T4BPmdl/SbokzsHN7DqCyuziZe8uenwX8Nw59v0A8IE4r+PaU3q8u8bpqTQY3mS20DX1OY2S6utl2aL+qpvW7pzIMWPd0yAjrjg5jAclfQb4C+A6SamY+zk3r24ZFiSycmgAqUIOw+sw6q6W3t7d1kcorjgX/r8gKFbaYGa7gZXA2xNNlet4MzPGjvFcVwWM/t4eVi4emL8Ow1tJ1V0tvb27rY9QXBUDhplNEkyadEq4KA/8NslEuc63azJHYca67g5uvrtdbyWVjFp6e3dbH6G44s7p/Q7g4nBRP/DVJBPlOl/0A169tLuaLY4Op8oOt50vzJDNz/iwIAlYPZxibG8Ws/jjpHbLXPPVilMk9XLgDGACwMweAoaTTJTrfN16BzdXDmNy2mfbS8rocIp904XZ+UbiSGeyLEn1eQAvESdg5CwIzQYgaSjZJLluMLa3OysVo+KR0rvdSR/aPDG19MXotgYZccX5dl4TtpJaLulc4PUE83s7V7NurVQcXZIil5/hNZ//GT3a32ExGi7EO+7VX/Qde+vXb2d4MF5A/tWDe1i32gtSSsV590aBa4G9wHHAu4EXJ5ko1/nSmSyL+nu77o76eetGOWnto0yWKR45+ZhVPOPIFU1IVWd76uHLed66EcazecbDedMrOXpkiJc/o+x4p10tzq/1VDN7B/CDaIGkjxJUhDtXk3SmOwd2O+5xw1zzhpObnYyusmxxP18551nNTkZHmDNgSPpb4E3AMZLuLFo1DNycdMJcZ0tnuquXt3OdYL4cxteA7wH/BBRPr5oxs52Jpsp1vPR4liccsqTZyXDOVWG+4c33AHsI5qxwrq7SmSzPPXZVs5PhnKuCjwnlGi6bL7Bn33TXtZByrt15wHAN162d9pxrdx4wXMN5wHCuPXnAcA23f+jo7hpHyrl2l2jAkLRB0j2Stkm6qMz6yyTdHv79RtLuonUflrRV0t2S/kVSd8zj2QW6tZe3c+0usW62knqBy4FTge3AZkmbwln2ADCztxZtfwFwYvj4OQQz8T01XP0T4PnA/ySVXtc46UwWCVaF02c659pDkjmMk4BtZnavmeWAq4Ez59l+I8G83hAMdDgIDAApgiHVH00wra6B0pksKxcP0N/rJaLOtZMkf7GHAw8UPd8eLjuIpKOAtcAPAczsFuAm4OHw7wYzu3uOfc+TtEXSlnQ6Xcfku6T4SKDOtackA0a5Ooe5ZjA5C7jWzAoAkh4PHA+sIQgyL5T0R+V2NLMrzGy9ma0fHR2tQ7Jd0sY8YDjXlpIMGNuBI4qerwEemmPbs9hfHAXBpE0/NbNxMxsnGKLk2Ymk0jWcjyPlXHtKMmBsBtZJWitpgCAobCrdSNJxwArglqLF9wPPl9QnqZ+gwrtskZRrL2ZGetxzGM61o8QChpnlgfOBGwgu9teY2VZJl0o6o2jTjcDVduAUZNcCvwN+CdwB3GFm304qra5x9k7lyeVnPGA414YSnb3GzK4DritZ9u6S55eU2a8AvCHJtLnm8F7ezrUvb9foGmp/L28PGM61Gw8YrqGiXt7dONuec+3OA4ZrKB9Hyrn25QHDNdRYZoqB3h6WLkq0+sw5lwAPGK6hol7ePpakc+3HA4ZrqHQmy4i3kHKuLXnAcA3lvbyda18eMFxD7fBe3s61LQ8YrmHyhRkem8ix2gOGc23JA4ZrmJ0TOcy8l7dz7coDhmuYMR8WxLm25gHDNYyPI+Vce/OA4RrGx5Fyrr15wHANE40j5TkM59qTBwzXMOlMluHBPgb7e5udFOdcDTxguIZJ+1zezrW1RAOGpA2S7pG0TdJFZdZfJun28O83knYXrTtS0vcl3S3pLklHJ5lWl7x0Jut9MJxrY4kNGSqpF7gcOBXYDmyWtMnM7oq2MbO3Fm1/AXBi0SG+DHzAzH4gaQkwk1RaXWOMZaZ4yprlzU6Gc65GSeYwTgK2mdm9ZpYDrgbOnGf7jcBVAJJOAPrM7AcAZjZuZpMJptU1gI8j5Vx7SzJgHA48UPR8e7jsIJKOAtYCPwwXPQHYLek/Jd0m6Z/DHEu5fc+TtEXSlnQ6Xcfku3qayOaZyBW8DsO5NpZkwCg34YHNse1ZwLVmVgif9wHPA94G/C/gGODscjua2RVmtt7M1o+Oji4sxS4xO7xJrXNtL8mAsR04ouj5GuChObY9i7A4qmjf28LirDzwLeAZiaTSNYT38nau/SUZMDYD6yStlTRAEBQ2lW4k6ThgBXBLyb4rJEVZhhcCd5Xu69qH9/J2rv0lFjDCnMH5wA3A3cA1ZrZV0qWSzijadCNwtZlZ0b4FguKoGyX9kqB467NJpdUlL+rlvXqpBwzn2lVizWoBzOw64LqSZe8ueX7JHPv+AHhqYolzDZXOZOntESsWDzQ7Kc65GnlPb9cQY3uzrBoaoLenXFsI51w78IDhGiLtU7M61/Y8YLiG8HGknGt/HjBcQ3gvb+fanwcMl7iZGWOHF0k51/Y8YLjE7d43TX7GPGA41+Y8YLjERZ32Vg8PNjklzrmF8IDhEjeWmQJ8WBDn2p0HDJc4H0fKuc7gAcMlzgOGc53BA4ZLXDqTZVF/L0MDZac0cc61CQ8YLnFRL2/JhwVxrp15wHCJ817eznUGDxgucd7L27nO4AHDJS49nvV5MJzrAB4wXKKy+QK7J6c9h+FcB0g0YEjaIOkeSdskXVRm/WWSbg//fiNpd8n6pZIelPRvSabTJWfHeA7wJrXOdYLEZtyT1AtcDpwKbAc2S9pkZrNzc5vZW4u2vwA4seQw7wN+lFQaXfK8D4ZznSPJHMZJwDYzu9fMcsDVwJnzbL8RuCp6IumZwCHA9xNMo0uYBwznOkeSAeNw4IGi59vDZQeRdBSwFvhh+LwH+Cjw9kovIuk8SVskbUmn0wtOtKsvDxjOdY4kA0a5Xlo2x7ZnAdeaWSF8/ibgOjN7YI7t9x/Q7AozW29m60dHR2tMqktKFDBWDXnAcK7dJVaHQZCjOKLo+RrgoTm2PQt4c9Hzk4HnSXoTsAQYkDRuZgdVnLvWlh6fYuXQAAN93iDPuXaXZMDYDKyTtBZ4kCAo/GXpRpKOA1YAt0TLzOzVRevPBtYnGSze++2t/OS3O5I6fFd7ZM8Uhy73eTCc6wSJBQwzy0s6H7gB6AW+YGZbJV0KbDGzTeGmG4GrzWyu4qrEHbpskHWHLGnWy3e0dYcs4UVPPKTZyXDO1YGaeJ2uu/Xr19uWLVuanQznnGsrkm41s/WVtvOCZeecc7F4wHDOOReLBwznnHOxeMBwzjkXiwcM55xzsXjAcM45F4sHDOecc7F4wHDOORdLR3Xck5QG/lDj7iNAN44P4ufdXbr1vKF7zz3OeR9lZhVHb+2ogLEQkrbE6enYafy8u0u3njd077nX87y9SMo551wsHjCcc87F4gFjvyuanYAm8fPuLt163tC951638/Y6DOecc7F4DsM551wsHjCcc87F4gEDkLRB0j2StknqqHnDJR0h6SZJd0vaKukt4fKVkn4g6bfh/xXhckn6l/C9uFPSM5p7BrWT1CvpNknfCZ+vlfSz8Jy/LmkgXJ4Kn28L1x/dzHQvlKTlkq6V9Ovwcz+5Sz7vt4bf8V9JukrSYCd+5pK+IGlM0q+KllX9+Ur663D730r66ziv3fUBQ1IvcDnwUuAEYKOkE5qbqrrKAxea2fHAs4E3h+d3EXCjma0DbgyfQ/A+rAv/zgM+1fgk181bgLuLnn8IuCw8513AOeHyc4BdZvZ44LJwu3b2CeB6M3si8DSC96CjP29JhwN/B6w3sycTTAt9Fp35mV8JbChZVtXnK2kl8B7gWcBJwHuiIDMvM+vqP+Bk4Iai5xcDFzc7XQme738BpwL3AIeGyw4F7gkffwbYWLT97Hbt9AesCX84LwS+A4igt2tf6edOMO/8yeHjvnA7NfscajzvpcDvS9PfBZ/34cADwMrwM/wOcFqnfubA0cCvav18gY3AZ4qWH7DdXH9dn8Ng/xctsj1c1nHCbPeJwM+AQ8zsYYDw/+pws055Pz4O/AMwEz5fBew2s3z4vPi8Zs85XL8n3L4dHQOkgS+GxXGfkzREh3/eZvYg8BHgfuBhgs/wVrrjM4fqP9+aPncPGMGdZ6mOa2ssaQnwH8Dfm9ne+TYts6yt3g9J/xsYM7NbixeX2dRirGs3fcAzgE+Z2YnABPuLJ8rpiHMPi1POBNYChwFDBMUxpTrxM5/PXOdZ0/l7wAgi6xFFz9cADzUpLYmQ1E8QLP7dzP4zXPyopEPD9YcCY+HyTng/ngucIek+4GqCYqmPA8sl9YXbFJ/X7DmH65cBOxuZ4DraDmw3s5+Fz68lCCCd/HkDvBj4vZmlzWwa+E/gOXTHZw7Vf741fe4eMGAzsC5sTTFAUFG2qclpqhtJAj4P3G1mHytatQmIWkb8NUHdRrT8tWHrimcDe6Ksbrsws4vNbI2ZHU3wef7QzF4N3AS8Itys9Jyj9+IV4fZtebdpZo8AD0g6Llz0IuAuOvjzDt0PPFvS4vA7H513x3/moWo/3xuAl0haEebOXhIum1+zK29a4Q84HfgN8Dvgnc1OT53P7RSCrOadwO3h3+kE5bU3Ar8N/68MtxdBq7HfAb8kaHXS9PNYwPm/APhO+PgY4OfANuAbQCpcPhg+3xauP6bZ6V7gOT8d2BJ+5t8CVnTD5w28F/g18CvgK0CqEz9z4CqCepppgpzCObV8vsDrw/PfBrwuzmv70CDOOedi8SIp55xzsXjAcM45F4sHDOecc7F4wHDOOReLBwznnHOxeMBwrgJJl0h6W63rw21eFmdQy/BYk5JWFy0bry7FziXDA4ZzjfEygtGQ49gBXJhgWpyriQcM58qQ9E4Fc6T8N3BcuOxYSddLulXS/5P0xDL7HbSNpOcAZwD/LOn2cJv5jvUF4FXhENTFxx6S9F1Jd4RzPrwqwbfAuYP0Vd7Eue4i6ZkEQ4qcSPAb+QXByKdXAG80s99KehbwSYJxqoodtI2ZvVDSJoIe59eGr3HjPMcaJwgabyGYsyCyAXjIzP4kPMayep+7c/PxgOHcwZ4HfNPMJgHCi/0gwWB23wiGKgKCoSdmhSMCz7tNFdv9C3C7pI8WLfsl8BFJHyIIPv+vprNzrkYeMJwrr3TMnB6CuRWePs8+cbaJtZ2Z7Zb0NeBNRct+E+Z+Tgf+SdL3zezSCq/lXN14HYZzB/sx8HJJiyQNA38KTAK/l/RKmJ0r+WnFO1kwz8hc22SA4RjbFfsY8AbCGztJhwGTZvZVgsmC2nb+bdeePGA4V8LMfgF8nWBk3/8AoqKfVwPnSLoD2EowYU+puba5Gnh7OAvesXGOZWY7gG+yv7jqKcDPJd0OvBN4/0LP1blq+Gi1zjnnYvEchnPOuVg8YDjnnIvFA4ZzzrlYPGA455yLxQOGc865WDxgOOeci8UDhnPOuVj+f3qgZOlCdym+AAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"finished\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print (\\\"start\\\")\\n\",\n    \"\\n\",\n    \"# 文本预处理\\n\",\n    \"folder_path = './Database/SogouC/Sample'\\n\",\n    \"\\n\",\n    \"all_words_list, train_data_list, train_class_list, test_data_list, test_class_list = text_processing(folder_path, test_rate=0.2)\\n\",\n    \"\\n\",\n    \"# 生成stopwords_set\\n\",\n    \"stopwords_file = './stopwords_cn.txt'\\n\",\n    \"stopwords_set = make_word_set(stopwords_file)\\n\",\n    \"\\n\",\n    \"# 文本特征提取和分类\\n\",\n    \"flag = 'sklearn'\\n\",\n    \"deleteNs = range(0, 1000, 20)\\n\",\n    \"test_accuracy_list = []\\n\",\n    \"for deleteN in deleteNs:\\n\",\n    \"    feature_words = vocab_select(all_words_list, deleteN, stopwords_set)\\n\",\n    \"    train_feature_list, test_feature_list = text_features(train_data_list, test_data_list, feature_words, flag)\\n\",\n    \"    test_accuracy = text_classifier(train_feature_list, test_feature_list, train_class_list, test_class_list, flag)\\n\",\n    \"    test_accuracy_list.append(test_accuracy)\\n\",\n    \"print(test_accuracy_list)\\n\",\n    \"\\n\",\n    \"# 结果评价\\n\",\n    \"plt.figure()\\n\",\n    \"plt.plot(deleteNs, test_accuracy_list)\\n\",\n    \"plt.title('Relationship of deleteNs and test_accuracy')\\n\",\n    \"plt.xlabel('deleteNs')\\n\",\n    \"plt.ylabel('test_accuracy')\\n\",\n    \"plt.show()\\n\",\n    \"#plt.savefig('result.png')\\n\",\n    \"\\n\",\n    \"print (\\\"finished\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 不同贝叶斯分类的对比\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 分类\\n\",\n    \"def text_classifier_by_sklearn(train_feature_list, test_feature_list, \\n\",\n    \"                    train_label_list, test_label_list, sklearn_class_func=MultinomialNB):\\n\",\n    \"    # sklearn分类器\\n\",\n    \"    classifier = sklearn_class_func().fit(train_feature_list, train_label_list)\\n\",\n    \"    # MultinomialNB()的使用方法和参数见：https://www.cnblogs.com/pinard/p/6074222.html\\n\",\n    \"    test_accuracy = classifier.score(test_feature_list, test_label_list)\\n\",\n    \"    return test_accuracy\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"总样本数： 90\\n\",\n      \"MultinomialNB Accu: 0.6842105263157895\\n\",\n      \"GaussianNB Accu: 0.631578947368421\\n\",\n      \"ComplementNB Accu: 0.6842105263157895\\n\",\n      \"BernoulliNB Accu: 0.6842105263157895\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"\\n\",\n    \"# 文本预处理\\n\",\n    \"folder_path = './Database/SogouC/Sample'\\n\",\n    \"\\n\",\n    \"all_words_list, train_data_list, train_class_list, test_data_list, test_class_list = text_processing(folder_path, test_rate=0.2)\\n\",\n    \"\\n\",\n    \"# 生成stopwords_set\\n\",\n    \"stopwords_file = './stopwords_cn.txt'\\n\",\n    \"stopwords_set = make_word_set(stopwords_file)\\n\",\n    \"\\n\",\n    \"deleteN = 20\\n\",\n    \"feature_words = vocab_select(all_words_list, deleteN, stopwords_set)\\n\",\n    \"train_feature_list, test_feature_list = text_features(train_data_list, test_data_list, feature_words, flag)\\n\",\n    \"\\n\",\n    \"name_func_dict = {\\n\",\n    \"    \\\"MultinomialNB\\\": MultinomialNB,\\n\",\n    \"    \\\"GaussianNB\\\": GaussianNB, \\n\",\n    \"    \\\"ComplementNB\\\": ComplementNB, \\n\",\n    \"    \\\"BernoulliNB\\\": ComplementNB,\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"for func_name, func in name_func_dict.items():\\n\",\n    \"    test_accuracy = text_classifier_by_sklearn(train_feature_list, test_feature_list, \\n\",\n    \"                                train_class_list, test_class_list, sklearn_class_func=func)\\n\",\n    \"    print(\\\"{} Accu: {}\\\".format(func_name, test_accuracy))   \\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/stopwords_cn.txt",
    "content": "的\r\n一\r\n不\r\n在\r\n人\r\n有\r\n是\r\n为\r\n以\r\n于\r\n上\r\n他\r\n而\r\n后\r\n之\r\n来\r\n及\r\n了\r\n因\r\n下\r\n可\r\n到\r\n由\r\n这\r\n与\r\n也\r\n此\r\n但\r\n并\r\n个\r\n其\r\n已\r\n无\r\n小\r\n我\r\n们\r\n起\r\n最\r\n再\r\n今\r\n去\r\n好\r\n只\r\n又\r\n或\r\n很\r\n亦\r\n某\r\n把\r\n那\r\n你\r\n乃\r\n它\r\n怎么\r\n任何\r\n连同\r\n开外\r\n再有\r\n哪些\r\n甚至于\r\n又及\r\n当然\r\n就是\r\n遵照\r\n以来\r\n赖以\r\n否则\r\n此间\r\n后者\r\n按照\r\n才是\r\n自身\r\n再则\r\n就算\r\n即便\r\n有些\r\n例如\r\n它们\r\n虽然\r\n为此\r\n以免\r\n别处\r\n我们\r\n依据\r\n趁着\r\n就要\r\n各位\r\n别的\r\n前者\r\n不外乎\r\n虽说\r\n除此\r\n个别\r\n的话\r\n甚而\r\n那般\r\n譬如\r\n作为\r\n谁人\r\n进而\r\n那边\r\n首先\r\n因此\r\n怎么样\r\n果然\r\n除非\r\n以上\r\n为何\r\n要么\r\n随时\r\n如果说\r\n诸如\r\n还是\r\n一旦\r\n基于\r\n本人\r\n因而\r\n继而\r\n不单\r\n此时\r\n等等\r\n截至\r\n不但\r\n故而\r\n全体\r\n从此\r\n对于\r\n朝着\r\n怎样\r\n以为\r\n那儿\r\n或是\r\n本身\r\n况且\r\n处在\r\n吧\r\n不至于\r\n那个\r\n被\r\n诸位\r\n从而\r\n比\r\n各自\r\n针对\r\n此外\r\n何处\r\n为了\r\n这般\r\n别\r\n仍旧\r\n既然\r\n反而\r\n关于\r\n较之\r\n不管\r\n趁\r\n彼时\r\n这边\r\n不光\r\n宁可\r\n要是\r\n其他\r\n其它\r\n由于\r\n还要\r\n经过\r\n不过\r\n来说\r\n当\r\n从\r\n除了\r\n到\r\n既是\r\n的确\r\n得\r\n说来\r\n打\r\n据此\r\n只限于\r\n什么的\r\n还有\r\n只怕\r\n不尽\r\n多会\r\n正巧\r\n凡\r\n为什么\r\n以至\r\n以致\r\n某个\r\n与否\r\n凭借\r\n儿\r\n不仅\r\n尔\r\n两者\r\n该\r\n另外\r\n一来\r\n正如\r\n那里\r\n不尽然\r\n毋宁\r\n这儿\r\n嘿嘿\r\n就是说\r\n正是\r\n既往\r\n随着\r\n于是\r\n各\r\n给\r\n跟\r\n那么\r\n而后\r\n和\r\n何\r\n似的\r\n不料\r\n其余\r\n或者\r\n介于\r\n别人\r\n还\r\n这个\r\n受到\r\n只是\r\n即使\r\n即\r\n几\r\n不论\r\n本着\r\n既\r\n及至\r\n加以\r\n多么\r\n其中\r\n别说\r\n这会\r\n依照\r\n人们\r\n如此\r\n个人\r\n出来\r\n看\r\n另一方面\r\n唯有\r\n据\r\n距\r\n靠\r\n接着\r\n何况\r\n啦\r\n加之\r\n至今\r\n凡是\r\n他们\r\n一切\r\n那时\r\n只限\r\n不然\r\n许多\r\n在于\r\n了\r\n某某\r\n除外\r\n来自\r\n便于\r\n同时\r\n只消\r\n只需\r\n不如\r\n只要\r\n另\r\n并不\r\n不仅仅\r\n这里\r\n么\r\n总之\r\n因为\r\n每\r\n固然\r\n们\r\n不是\r\n嘛\r\n或者说\r\n然而\r\n假如\r\n如何\r\n这么\r\n可见\r\n如果\r\n拿\r\n简言之\r\n多少\r\n哪\r\n那\r\n光是\r\n非但\r\n呵呵\r\n只有\r\n只因\r\n连带\r\n正值\r\n沿着\r\n哪儿\r\n他人\r\n若非\r\n怎么办\r\n她们\r\n您\r\n凭\r\n而且\r\n与其\r\n如同下\r\n有的\r\n那些\r\n甚至\r\n为止\r\n无论\r\n鉴于\r\n嘻嘻\r\n哪个\r\n然后\r\n直到\r\n且\r\n却\r\n并非\r\n对比\r\n为着\r\n一些\r\n让\r\n何时\r\n仍\r\n啥\r\n而是\r\n自从\r\n比如\r\n之所以\r\n如\r\n你们\r\n若\r\n使\r\n那样\r\n所以\r\n得了\r\n谁\r\n当地\r\n有关\r\n所有\r\n因之\r\n用来\r\n虽\r\n随\r\n所在\r\n同\r\n对待\r\n而外\r\n分别\r\n所\r\n她\r\n某些\r\n对方\r\n哇\r\n嗡\r\n往\r\n哪\r\n不只\r\n但是\r\n全部\r\n尽管\r\n些\r\n大家\r\n以便\r\n自己\r\n可是\r\n反之\r\n这些\r\n向\r\n什么\r\n由此\r\n万一\r\n而已\r\n何以\r\n咱们\r\n沿\r\n值此\r\n向着\r\n哪怕\r\n倘若\r\n出于\r\n哟\r\n如上\r\n如若\r\n替代\r\n用\r\n什么样\r\n如是\r\n照着\r\n此处\r\n于\r\n这样\r\n每当\r\n咱\r\n此次\r\n至于\r\n则\r\n怎\r\n曾\r\n至\r\n致\r\n此地\r\n要不然\r\n逐步\r\n格里斯\r\n本地\r\n着\r\n诸\r\n要不\r\n自\r\n其次\r\n尽管如此\r\n遵循\r\n乃至\r\n若是\r\n并且\r\n如下\r\n可以\r\n才能\r\n以及\r\n彼此\r\n根据\r\n随后\r\n有时\r\n"
  },
  {
    "path": "P001-Naive-Bayes-Text-Classifier/朴素贝叶斯新闻分类.html",
    "content": "<!DOCTYPE html>\n<html>\n<head><meta charset=\"utf-8\" />\n<title>朴素贝叶斯新闻分类</title>\n\n<script src=\"https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js\"></script>\n<script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js\"></script>\n\n<style type=\"text/css\">\n    /*!\n*\n* Twitter Bootstrap\n*\n*/\n/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -ms-text-size-adjust: 100%;\n  -webkit-text-size-adjust: 100%;\n}\nbody {\n  margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n[hidden],\ntemplate {\n  display: none;\n}\na {\n  background-color: transparent;\n}\na:active,\na:hover {\n  outline: 0;\n}\nabbr[title] {\n  border-bottom: 1px dotted;\n}\nb,\nstrong {\n  font-weight: bold;\n}\ndfn {\n  font-style: italic;\n}\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\nmark {\n  background: #ff0;\n  color: #000;\n}\nsmall {\n  font-size: 80%;\n}\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\nsup {\n  top: -0.5em;\n}\nsub {\n  bottom: -0.25em;\n}\nimg {\n  border: 0;\n}\nsvg:not(:root) {\n  overflow: hidden;\n}\nfigure {\n  margin: 1em 40px;\n}\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\npre {\n  overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit;\n  font: inherit;\n  margin: 0;\n}\nbutton {\n  overflow: visible;\n}\nbutton,\nselect {\n  text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\ninput {\n  line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box;\n  padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: textfield;\n  box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n  border: 0;\n  padding: 0;\n}\ntextarea {\n  overflow: auto;\n}\noptgroup {\n  font-weight: bold;\n}\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\ntd,\nth {\n  padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n  *,\n  *:before,\n  *:after {\n    background: transparent !important;\n    color: #000 !important;\n    box-shadow: none !important;\n    text-shadow: none !important;\n  }\n  a,\n  a:visited {\n    text-decoration: underline;\n  }\n  a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n  a[href^=\"#\"]:after,\n  a[href^=\"javascript:\"]:after {\n    content: \"\";\n  }\n  pre,\n  blockquote {\n    border: 1px solid #999;\n    page-break-inside: avoid;\n  }\n  thead {\n    display: table-header-group;\n  }\n  tr,\n  img {\n    page-break-inside: avoid;\n  }\n  img {\n    max-width: 100% !important;\n  }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3;\n  }\n  h2,\n  h3 {\n    page-break-after: avoid;\n  }\n  .navbar {\n    display: none;\n  }\n  .btn > .caret,\n  .dropup > .btn > .caret {\n    border-top-color: #000 !important;\n  }\n  .label {\n    border: 1px solid #000;\n  }\n  .table {\n    border-collapse: collapse !important;\n  }\n  .table td,\n  .table th {\n    background-color: #fff !important;\n  }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #ddd !important;\n  }\n}\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');\n  src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n  content: \"\\002a\";\n}\n.glyphicon-plus:before {\n  content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n  content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n  content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n  content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n  content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n  content: \"\\270f\";\n}\n.glyphicon-glass:before {\n  content: \"\\e001\";\n}\n.glyphicon-music:before {\n  content: \"\\e002\";\n}\n.glyphicon-search:before {\n  content: \"\\e003\";\n}\n.glyphicon-heart:before {\n  content: \"\\e005\";\n}\n.glyphicon-star:before {\n  content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n  content: \"\\e007\";\n}\n.glyphicon-user:before {\n  content: \"\\e008\";\n}\n.glyphicon-film:before {\n  content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n  content: \"\\e010\";\n}\n.glyphicon-th:before {\n  content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n  content: \"\\e012\";\n}\n.glyphicon-ok:before {\n  content: \"\\e013\";\n}\n.glyphicon-remove:before {\n  content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n  content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n  content: \"\\e016\";\n}\n.glyphicon-off:before {\n  content: \"\\e017\";\n}\n.glyphicon-signal:before {\n  content: \"\\e018\";\n}\n.glyphicon-cog:before {\n  content: \"\\e019\";\n}\n.glyphicon-trash:before {\n  content: \"\\e020\";\n}\n.glyphicon-home:before {\n  content: \"\\e021\";\n}\n.glyphicon-file:before {\n  content: \"\\e022\";\n}\n.glyphicon-time:before {\n  content: \"\\e023\";\n}\n.glyphicon-road:before {\n  content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n  content: \"\\e025\";\n}\n.glyphicon-download:before {\n  content: \"\\e026\";\n}\n.glyphicon-upload:before {\n  content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n  content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n  content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n  content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n  content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n  content: \"\\e032\";\n}\n.glyphicon-lock:before {\n  content: \"\\e033\";\n}\n.glyphicon-flag:before {\n  content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n  content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n  content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n  content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n  content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n  content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n  content: \"\\e040\";\n}\n.glyphicon-tag:before {\n  content: \"\\e041\";\n}\n.glyphicon-tags:before {\n  content: \"\\e042\";\n}\n.glyphicon-book:before {\n  content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n  content: \"\\e044\";\n}\n.glyphicon-print:before {\n  content: \"\\e045\";\n}\n.glyphicon-camera:before {\n  content: \"\\e046\";\n}\n.glyphicon-font:before {\n  content: \"\\e047\";\n}\n.glyphicon-bold:before {\n  content: \"\\e048\";\n}\n.glyphicon-italic:before {\n  content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n  content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n  content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n  content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n  content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n  content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n  content: \"\\e055\";\n}\n.glyphicon-list:before {\n  content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n  content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n  content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n  content: \"\\e059\";\n}\n.glyphicon-picture:before {\n  content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n  content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n  content: \"\\e063\";\n}\n.glyphicon-tint:before {\n  content: \"\\e064\";\n}\n.glyphicon-edit:before {\n  content: \"\\e065\";\n}\n.glyphicon-share:before {\n  content: \"\\e066\";\n}\n.glyphicon-check:before {\n  content: \"\\e067\";\n}\n.glyphicon-move:before {\n  content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n  content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n  content: \"\\e070\";\n}\n.glyphicon-backward:before {\n  content: \"\\e071\";\n}\n.glyphicon-play:before {\n  content: \"\\e072\";\n}\n.glyphicon-pause:before {\n  content: \"\\e073\";\n}\n.glyphicon-stop:before {\n  content: \"\\e074\";\n}\n.glyphicon-forward:before {\n  content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n  content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n  content: \"\\e077\";\n}\n.glyphicon-eject:before {\n  content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n  content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n  content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n  content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n  content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n  content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n  content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n  content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n  content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n  content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n  content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n  content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n  content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n  content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n  content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n  content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n  content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n  content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n  content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n  content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n  content: \"\\e101\";\n}\n.glyphicon-gift:before {\n  content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n  content: \"\\e103\";\n}\n.glyphicon-fire:before {\n  content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n  content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n  content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n  content: \"\\e107\";\n}\n.glyphicon-plane:before {\n  content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n  content: \"\\e109\";\n}\n.glyphicon-random:before {\n  content: \"\\e110\";\n}\n.glyphicon-comment:before {\n  content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n  content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n  content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n  content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n  content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n  content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n  content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n  content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n  content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n  content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n  content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n  content: \"\\e122\";\n}\n.glyphicon-bell:before {\n  content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n  content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n  content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n  content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n  content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n  content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n  content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n  content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n  content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n  content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n  content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n  content: \"\\e134\";\n}\n.glyphicon-globe:before {\n  content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n  content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n  content: \"\\e137\";\n}\n.glyphicon-filter:before {\n  content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n  content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n  content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n  content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n  content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n  content: \"\\e143\";\n}\n.glyphicon-link:before {\n  content: \"\\e144\";\n}\n.glyphicon-phone:before {\n  content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n  content: \"\\e146\";\n}\n.glyphicon-usd:before {\n  content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n  content: \"\\e149\";\n}\n.glyphicon-sort:before {\n  content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n  content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n  content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n  content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n  content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n  content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n  content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n  content: \"\\e157\";\n}\n.glyphicon-expand:before {\n  content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n  content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n  content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n  content: \"\\e161\";\n}\n.glyphicon-flash:before {\n  content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n  content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n  content: \"\\e164\";\n}\n.glyphicon-record:before {\n  content: \"\\e165\";\n}\n.glyphicon-save:before {\n  content: \"\\e166\";\n}\n.glyphicon-open:before {\n  content: \"\\e167\";\n}\n.glyphicon-saved:before {\n  content: \"\\e168\";\n}\n.glyphicon-import:before {\n  content: \"\\e169\";\n}\n.glyphicon-export:before {\n  content: \"\\e170\";\n}\n.glyphicon-send:before {\n  content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n  content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n  content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n  content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n  content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n  content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n  content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n  content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n  content: \"\\e179\";\n}\n.glyphicon-header:before {\n  content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n  content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n  content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n  content: \"\\e183\";\n}\n.glyphicon-tower:before {\n  content: \"\\e184\";\n}\n.glyphicon-stats:before {\n  content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n  content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n  content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n  content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n  content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n  content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n  content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n  content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n  content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n  content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n  content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n  content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n  content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n  content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n  content: \"\\e200\";\n}\n.glyphicon-cd:before {\n  content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n  content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n  content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n  content: \"\\e204\";\n}\n.glyphicon-copy:before {\n  content: \"\\e205\";\n}\n.glyphicon-paste:before {\n  content: \"\\e206\";\n}\n.glyphicon-alert:before {\n  content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n  content: \"\\e210\";\n}\n.glyphicon-king:before {\n  content: \"\\e211\";\n}\n.glyphicon-queen:before {\n  content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n  content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n  content: \"\\e214\";\n}\n.glyphicon-knight:before {\n  content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n  content: \"\\e216\";\n}\n.glyphicon-tent:before {\n  content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n  content: \"\\e218\";\n}\n.glyphicon-bed:before {\n  content: \"\\e219\";\n}\n.glyphicon-apple:before {\n  content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n  content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n  content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n  content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n  content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n  content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n  content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n  content: \"\\e227\";\n}\n.glyphicon-btc:before {\n  content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n  content: \"\\e227\";\n}\n.glyphicon-yen:before {\n  content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n  content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n  content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n  content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n  content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n  content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n  content: \"\\e232\";\n}\n.glyphicon-education:before {\n  content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n  content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n  content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n  content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n  content: \"\\e237\";\n}\n.glyphicon-oil:before {\n  content: \"\\e238\";\n}\n.glyphicon-grain:before {\n  content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n  content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n  content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n  content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n  content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n  content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n  content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n  content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n  content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n  content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n  content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n  content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n  content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n  content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n  content: \"\\e253\";\n}\n.glyphicon-console:before {\n  content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n  content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n  content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n  content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n  content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n  content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n  content: \"\\e260\";\n}\n* {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\n*:before,\n*:after {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #000;\n  background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\na {\n  color: #337ab7;\n  text-decoration: none;\n}\na:hover,\na:focus {\n  color: #23527c;\n  text-decoration: underline;\n}\na:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\nfigure {\n  margin: 0;\n}\nimg {\n  vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.img-rounded {\n  border-radius: 3px;\n}\n.img-thumbnail {\n  padding: 4px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n  -webkit-transition: all 0.2s ease-in-out;\n  -o-transition: all 0.2s ease-in-out;\n  transition: all 0.2s ease-in-out;\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n}\n.img-circle {\n  border-radius: 50%;\n}\nhr {\n  margin-top: 18px;\n  margin-bottom: 18px;\n  border: 0;\n  border-top: 1px solid #eeeeee;\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n[role=\"button\"] {\n  cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n  font-family: inherit;\n  font-weight: 500;\n  line-height: 1.1;\n  color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n  font-weight: normal;\n  line-height: 1;\n  color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n  margin-top: 18px;\n  margin-bottom: 9px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n  font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n  margin-top: 9px;\n  margin-bottom: 9px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n  font-size: 75%;\n}\nh1,\n.h1 {\n  font-size: 33px;\n}\nh2,\n.h2 {\n  font-size: 27px;\n}\nh3,\n.h3 {\n  font-size: 23px;\n}\nh4,\n.h4 {\n  font-size: 17px;\n}\nh5,\n.h5 {\n  font-size: 13px;\n}\nh6,\n.h6 {\n  font-size: 12px;\n}\np {\n  margin: 0 0 9px;\n}\n.lead {\n  margin-bottom: 18px;\n  font-size: 14px;\n  font-weight: 300;\n  line-height: 1.4;\n}\n@media (min-width: 768px) {\n  .lead {\n    font-size: 19.5px;\n  }\n}\nsmall,\n.small {\n  font-size: 92%;\n}\nmark,\n.mark {\n  background-color: #fcf8e3;\n  padding: .2em;\n}\n.text-left {\n  text-align: left;\n}\n.text-right {\n  text-align: right;\n}\n.text-center {\n  text-align: center;\n}\n.text-justify {\n  text-align: justify;\n}\n.text-nowrap {\n  white-space: nowrap;\n}\n.text-lowercase {\n  text-transform: lowercase;\n}\n.text-uppercase {\n  text-transform: uppercase;\n}\n.text-capitalize {\n  text-transform: capitalize;\n}\n.text-muted {\n  color: #777777;\n}\n.text-primary {\n  color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n  color: #286090;\n}\n.text-success {\n  color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n  color: #2b542c;\n}\n.text-info {\n  color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n  color: #245269;\n}\n.text-warning {\n  color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n  color: #66512c;\n}\n.text-danger {\n  color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n  color: #843534;\n}\n.bg-primary {\n  color: #fff;\n  background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n  background-color: #286090;\n}\n.bg-success {\n  background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n  background-color: #c1e2b3;\n}\n.bg-info {\n  background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n  background-color: #afd9ee;\n}\n.bg-warning {\n  background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n  background-color: #f7ecb5;\n}\n.bg-danger {\n  background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n  background-color: #e4b9b9;\n}\n.page-header {\n  padding-bottom: 8px;\n  margin: 36px 0 18px;\n  border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n  margin-top: 0;\n  margin-bottom: 9px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n  margin-bottom: 0;\n}\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n.list-inline {\n  padding-left: 0;\n  list-style: none;\n  margin-left: -5px;\n}\n.list-inline > li {\n  display: inline-block;\n  padding-left: 5px;\n  padding-right: 5px;\n}\ndl {\n  margin-top: 0;\n  margin-bottom: 18px;\n}\ndt,\ndd {\n  line-height: 1.42857143;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0;\n}\n@media (min-width: 541px) {\n  .dl-horizontal dt {\n    float: left;\n    width: 160px;\n    clear: left;\n    text-align: right;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nabbr[title],\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted #777777;\n}\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\nblockquote {\n  padding: 9px 18px;\n  margin: 0 0 18px;\n  font-size: inherit;\n  border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n  margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n  display: block;\n  font-size: 80%;\n  line-height: 1.42857143;\n  color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n  content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid #eeeeee;\n  border-left: 0;\n  text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n  content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n  content: '\\00A0 \\2014';\n}\naddress {\n  margin-bottom: 18px;\n  font-style: normal;\n  line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace;\n}\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 2px;\n}\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #888;\n  background-color: transparent;\n  border-radius: 1px;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n  padding: 0;\n  font-size: 100%;\n  font-weight: bold;\n  box-shadow: none;\n}\npre {\n  display: block;\n  padding: 8.5px;\n  margin: 0 0 9px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: #333333;\n  background-color: #f5f5f5;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n}\npre code {\n  padding: 0;\n  font-size: inherit;\n  color: inherit;\n  white-space: pre-wrap;\n  background-color: transparent;\n  border-radius: 0;\n}\n.pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll;\n}\n.container {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n@media (min-width: 768px) {\n  .container {\n    width: 768px;\n  }\n}\n@media (min-width: 992px) {\n  .container {\n    width: 940px;\n  }\n}\n@media (min-width: 1200px) {\n  .container {\n    width: 1140px;\n  }\n}\n.container-fluid {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n.row {\n  margin-left: 0px;\n  margin-right: 0px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n  float: left;\n}\n.col-xs-12 {\n  width: 100%;\n}\n.col-xs-11 {\n  width: 91.66666667%;\n}\n.col-xs-10 {\n  width: 83.33333333%;\n}\n.col-xs-9 {\n  width: 75%;\n}\n.col-xs-8 {\n  width: 66.66666667%;\n}\n.col-xs-7 {\n  width: 58.33333333%;\n}\n.col-xs-6 {\n  width: 50%;\n}\n.col-xs-5 {\n  width: 41.66666667%;\n}\n.col-xs-4 {\n  width: 33.33333333%;\n}\n.col-xs-3 {\n  width: 25%;\n}\n.col-xs-2 {\n  width: 16.66666667%;\n}\n.col-xs-1 {\n  width: 8.33333333%;\n}\n.col-xs-pull-12 {\n  right: 100%;\n}\n.col-xs-pull-11 {\n  right: 91.66666667%;\n}\n.col-xs-pull-10 {\n  right: 83.33333333%;\n}\n.col-xs-pull-9 {\n  right: 75%;\n}\n.col-xs-pull-8 {\n  right: 66.66666667%;\n}\n.col-xs-pull-7 {\n  right: 58.33333333%;\n}\n.col-xs-pull-6 {\n  right: 50%;\n}\n.col-xs-pull-5 {\n  right: 41.66666667%;\n}\n.col-xs-pull-4 {\n  right: 33.33333333%;\n}\n.col-xs-pull-3 {\n  right: 25%;\n}\n.col-xs-pull-2 {\n  right: 16.66666667%;\n}\n.col-xs-pull-1 {\n  right: 8.33333333%;\n}\n.col-xs-pull-0 {\n  right: auto;\n}\n.col-xs-push-12 {\n  left: 100%;\n}\n.col-xs-push-11 {\n  left: 91.66666667%;\n}\n.col-xs-push-10 {\n  left: 83.33333333%;\n}\n.col-xs-push-9 {\n  left: 75%;\n}\n.col-xs-push-8 {\n  left: 66.66666667%;\n}\n.col-xs-push-7 {\n  left: 58.33333333%;\n}\n.col-xs-push-6 {\n  left: 50%;\n}\n.col-xs-push-5 {\n  left: 41.66666667%;\n}\n.col-xs-push-4 {\n  left: 33.33333333%;\n}\n.col-xs-push-3 {\n  left: 25%;\n}\n.col-xs-push-2 {\n  left: 16.66666667%;\n}\n.col-xs-push-1 {\n  left: 8.33333333%;\n}\n.col-xs-push-0 {\n  left: auto;\n}\n.col-xs-offset-12 {\n  margin-left: 100%;\n}\n.col-xs-offset-11 {\n  margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n  margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n  margin-left: 75%;\n}\n.col-xs-offset-8 {\n  margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n  margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n  margin-left: 50%;\n}\n.col-xs-offset-5 {\n  margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n  margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n  margin-left: 25%;\n}\n.col-xs-offset-2 {\n  margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n  margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n  margin-left: 0%;\n}\n@media (min-width: 768px) {\n  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n    float: left;\n  }\n  .col-sm-12 {\n    width: 100%;\n  }\n  .col-sm-11 {\n    width: 91.66666667%;\n  }\n  .col-sm-10 {\n    width: 83.33333333%;\n  }\n  .col-sm-9 {\n    width: 75%;\n  }\n  .col-sm-8 {\n    width: 66.66666667%;\n  }\n  .col-sm-7 {\n    width: 58.33333333%;\n  }\n  .col-sm-6 {\n    width: 50%;\n  }\n  .col-sm-5 {\n    width: 41.66666667%;\n  }\n  .col-sm-4 {\n    width: 33.33333333%;\n  }\n  .col-sm-3 {\n    width: 25%;\n  }\n  .col-sm-2 {\n    width: 16.66666667%;\n  }\n  .col-sm-1 {\n    width: 8.33333333%;\n  }\n  .col-sm-pull-12 {\n    right: 100%;\n  }\n  .col-sm-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-sm-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-sm-pull-9 {\n    right: 75%;\n  }\n  .col-sm-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-sm-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-sm-pull-6 {\n    right: 50%;\n  }\n  .col-sm-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-sm-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-sm-pull-3 {\n    right: 25%;\n  }\n  .col-sm-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-sm-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-sm-pull-0 {\n    right: auto;\n  }\n  .col-sm-push-12 {\n    left: 100%;\n  }\n  .col-sm-push-11 {\n    left: 91.66666667%;\n  }\n  .col-sm-push-10 {\n    left: 83.33333333%;\n  }\n  .col-sm-push-9 {\n    left: 75%;\n  }\n  .col-sm-push-8 {\n    left: 66.66666667%;\n  }\n  .col-sm-push-7 {\n    left: 58.33333333%;\n  }\n  .col-sm-push-6 {\n    left: 50%;\n  }\n  .col-sm-push-5 {\n    left: 41.66666667%;\n  }\n  .col-sm-push-4 {\n    left: 33.33333333%;\n  }\n  .col-sm-push-3 {\n    left: 25%;\n  }\n  .col-sm-push-2 {\n    left: 16.66666667%;\n  }\n  .col-sm-push-1 {\n    left: 8.33333333%;\n  }\n  .col-sm-push-0 {\n    left: auto;\n  }\n  .col-sm-offset-12 {\n    margin-left: 100%;\n  }\n  .col-sm-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-sm-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-sm-offset-9 {\n    margin-left: 75%;\n  }\n  .col-sm-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-sm-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-sm-offset-6 {\n    margin-left: 50%;\n  }\n  .col-sm-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-sm-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-sm-offset-3 {\n    margin-left: 25%;\n  }\n  .col-sm-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-sm-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-sm-offset-0 {\n    margin-left: 0%;\n  }\n}\n@media (min-width: 992px) {\n  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n    float: left;\n  }\n  .col-md-12 {\n    width: 100%;\n  }\n  .col-md-11 {\n    width: 91.66666667%;\n  }\n  .col-md-10 {\n    width: 83.33333333%;\n  }\n  .col-md-9 {\n    width: 75%;\n  }\n  .col-md-8 {\n    width: 66.66666667%;\n  }\n  .col-md-7 {\n    width: 58.33333333%;\n  }\n  .col-md-6 {\n    width: 50%;\n  }\n  .col-md-5 {\n    width: 41.66666667%;\n  }\n  .col-md-4 {\n    width: 33.33333333%;\n  }\n  .col-md-3 {\n    width: 25%;\n  }\n  .col-md-2 {\n    width: 16.66666667%;\n  }\n  .col-md-1 {\n    width: 8.33333333%;\n  }\n  .col-md-pull-12 {\n    right: 100%;\n  }\n  .col-md-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-md-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-md-pull-9 {\n    right: 75%;\n  }\n  .col-md-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-md-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-md-pull-6 {\n    right: 50%;\n  }\n  .col-md-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-md-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-md-pull-3 {\n    right: 25%;\n  }\n  .col-md-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-md-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-md-pull-0 {\n    right: auto;\n  }\n  .col-md-push-12 {\n    left: 100%;\n  }\n  .col-md-push-11 {\n    left: 91.66666667%;\n  }\n  .col-md-push-10 {\n    left: 83.33333333%;\n  }\n  .col-md-push-9 {\n    left: 75%;\n  }\n  .col-md-push-8 {\n    left: 66.66666667%;\n  }\n  .col-md-push-7 {\n    left: 58.33333333%;\n  }\n  .col-md-push-6 {\n    left: 50%;\n  }\n  .col-md-push-5 {\n    left: 41.66666667%;\n  }\n  .col-md-push-4 {\n    left: 33.33333333%;\n  }\n  .col-md-push-3 {\n    left: 25%;\n  }\n  .col-md-push-2 {\n    left: 16.66666667%;\n  }\n  .col-md-push-1 {\n    left: 8.33333333%;\n  }\n  .col-md-push-0 {\n    left: auto;\n  }\n  .col-md-offset-12 {\n    margin-left: 100%;\n  }\n  .col-md-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-md-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-md-offset-9 {\n    margin-left: 75%;\n  }\n  .col-md-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-md-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-md-offset-6 {\n    margin-left: 50%;\n  }\n  .col-md-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-md-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-md-offset-3 {\n    margin-left: 25%;\n  }\n  .col-md-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-md-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-md-offset-0 {\n    margin-left: 0%;\n  }\n}\n@media (min-width: 1200px) {\n  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n    float: left;\n  }\n  .col-lg-12 {\n    width: 100%;\n  }\n  .col-lg-11 {\n    width: 91.66666667%;\n  }\n  .col-lg-10 {\n    width: 83.33333333%;\n  }\n  .col-lg-9 {\n    width: 75%;\n  }\n  .col-lg-8 {\n    width: 66.66666667%;\n  }\n  .col-lg-7 {\n    width: 58.33333333%;\n  }\n  .col-lg-6 {\n    width: 50%;\n  }\n  .col-lg-5 {\n    width: 41.66666667%;\n  }\n  .col-lg-4 {\n    width: 33.33333333%;\n  }\n  .col-lg-3 {\n    width: 25%;\n  }\n  .col-lg-2 {\n    width: 16.66666667%;\n  }\n  .col-lg-1 {\n    width: 8.33333333%;\n  }\n  .col-lg-pull-12 {\n    right: 100%;\n  }\n  .col-lg-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-lg-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-lg-pull-9 {\n    right: 75%;\n  }\n  .col-lg-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-lg-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-lg-pull-6 {\n    right: 50%;\n  }\n  .col-lg-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-lg-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-lg-pull-3 {\n    right: 25%;\n  }\n  .col-lg-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-lg-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-lg-pull-0 {\n    right: auto;\n  }\n  .col-lg-push-12 {\n    left: 100%;\n  }\n  .col-lg-push-11 {\n    left: 91.66666667%;\n  }\n  .col-lg-push-10 {\n    left: 83.33333333%;\n  }\n  .col-lg-push-9 {\n    left: 75%;\n  }\n  .col-lg-push-8 {\n    left: 66.66666667%;\n  }\n  .col-lg-push-7 {\n    left: 58.33333333%;\n  }\n  .col-lg-push-6 {\n    left: 50%;\n  }\n  .col-lg-push-5 {\n    left: 41.66666667%;\n  }\n  .col-lg-push-4 {\n    left: 33.33333333%;\n  }\n  .col-lg-push-3 {\n    left: 25%;\n  }\n  .col-lg-push-2 {\n    left: 16.66666667%;\n  }\n  .col-lg-push-1 {\n    left: 8.33333333%;\n  }\n  .col-lg-push-0 {\n    left: auto;\n  }\n  .col-lg-offset-12 {\n    margin-left: 100%;\n  }\n  .col-lg-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-lg-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-lg-offset-9 {\n    margin-left: 75%;\n  }\n  .col-lg-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-lg-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-lg-offset-6 {\n    margin-left: 50%;\n  }\n  .col-lg-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-lg-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-lg-offset-3 {\n    margin-left: 25%;\n  }\n  .col-lg-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-lg-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-lg-offset-0 {\n    margin-left: 0%;\n  }\n}\ntable {\n  background-color: transparent;\n}\ncaption {\n  padding-top: 8px;\n  padding-bottom: 8px;\n  color: #777777;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: 18px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n  padding: 8px;\n  line-height: 1.42857143;\n  vertical-align: top;\n  border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n  vertical-align: bottom;\n  border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n  border-top: 0;\n}\n.table > tbody + tbody {\n  border-top: 2px solid #ddd;\n}\n.table .table {\n  background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n  padding: 5px;\n}\n.table-bordered {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n  border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n  background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n  background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n  position: static;\n  float: none;\n  display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n  position: static;\n  float: none;\n  display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n  background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n  background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n  background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n  background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n  background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n  background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n  background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n  background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n  background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n  background-color: #ebcccc;\n}\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n  .table-responsive {\n    width: 100%;\n    margin-bottom: 13.5px;\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid #ddd;\n  }\n  .table-responsive > .table {\n    margin-bottom: 0;\n  }\n  .table-responsive > .table > thead > tr > th,\n  .table-responsive > .table > tbody > tr > th,\n  .table-responsive > .table > tfoot > tr > th,\n  .table-responsive > .table > thead > tr > td,\n  .table-responsive > .table > tbody > tr > td,\n  .table-responsive > .table > tfoot > tr > td {\n    white-space: nowrap;\n  }\n  .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-left: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-right: 0;\n  }\n  .table-responsive > .table-bordered > tbody > tr:last-child > th,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n  .table-responsive > .table-bordered > tbody > tr:last-child > td,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n    border-bottom: 0;\n  }\n}\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  min-width: 0;\n}\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: 18px;\n  font-size: 19.5px;\n  line-height: inherit;\n  color: #333333;\n  border: 0;\n  border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n  display: inline-block;\n  max-width: 100%;\n  margin-bottom: 5px;\n  font-weight: bold;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9;\n  line-height: normal;\n}\ninput[type=\"file\"] {\n  display: block;\n}\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\nselect[multiple],\nselect[size] {\n  height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\noutput {\n  display: block;\n  padding-top: 7px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #555555;\n}\n.form-control {\n  display: block;\n  width: 100%;\n  height: 32px;\n  padding: 6px 12px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #555555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n  color: #999;\n}\n.form-control::-webkit-input-placeholder {\n  color: #999;\n}\n.form-control::-ms-expand {\n  border: 0;\n  background-color: transparent;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n  background-color: #eeeeee;\n  opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n  cursor: not-allowed;\n}\ntextarea.form-control {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"].form-control,\n  input[type=\"time\"].form-control,\n  input[type=\"datetime-local\"].form-control,\n  input[type=\"month\"].form-control {\n    line-height: 32px;\n  }\n  input[type=\"date\"].input-sm,\n  input[type=\"time\"].input-sm,\n  input[type=\"datetime-local\"].input-sm,\n  input[type=\"month\"].input-sm,\n  .input-group-sm input[type=\"date\"],\n  .input-group-sm input[type=\"time\"],\n  .input-group-sm input[type=\"datetime-local\"],\n  .input-group-sm input[type=\"month\"] {\n    line-height: 30px;\n  }\n  input[type=\"date\"].input-lg,\n  input[type=\"time\"].input-lg,\n  input[type=\"datetime-local\"].input-lg,\n  input[type=\"month\"].input-lg,\n  .input-group-lg input[type=\"date\"],\n  .input-group-lg input[type=\"time\"],\n  .input-group-lg input[type=\"datetime-local\"],\n  .input-group-lg input[type=\"month\"] {\n    line-height: 45px;\n  }\n}\n.form-group {\n  margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n  min-height: 18px;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n  cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n  cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n  cursor: not-allowed;\n}\n.form-control-static {\n  padding-top: 7px;\n  padding-bottom: 7px;\n  margin-bottom: 0;\n  min-height: 31px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n  padding-left: 0;\n  padding-right: 0;\n}\n.input-sm {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\nselect.input-sm {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n  height: auto;\n}\n.form-group-sm .form-control {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\n.form-group-sm select.form-control {\n  height: 30px;\n  line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n  height: auto;\n}\n.form-group-sm .form-control-static {\n  height: 30px;\n  min-height: 30px;\n  padding: 6px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.input-lg {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\nselect.input-lg {\n  height: 45px;\n  line-height: 45px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n  height: auto;\n}\n.form-group-lg .form-control {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\n.form-group-lg select.form-control {\n  height: 45px;\n  line-height: 45px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n  height: auto;\n}\n.form-group-lg .form-control-static {\n  height: 45px;\n  min-height: 35px;\n  padding: 11px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n}\n.has-feedback {\n  position: relative;\n}\n.has-feedback .form-control {\n  padding-right: 40px;\n}\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2;\n  display: block;\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: 45px;\n  height: 45px;\n  line-height: 45px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: 30px;\n  height: 30px;\n  line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n  color: #3c763d;\n}\n.has-success .form-control {\n  border-color: #3c763d;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n  border-color: #2b542c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n  color: #3c763d;\n  border-color: #3c763d;\n  background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n  color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n  color: #8a6d3b;\n}\n.has-warning .form-control {\n  border-color: #8a6d3b;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n  border-color: #66512c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n  color: #8a6d3b;\n  border-color: #8a6d3b;\n  background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n  color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n  color: #a94442;\n}\n.has-error .form-control {\n  border-color: #a94442;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n  border-color: #843534;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n  color: #a94442;\n  border-color: #a94442;\n  background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n  color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n  top: 23px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n  top: 0;\n}\n.help-block {\n  display: block;\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: #404040;\n}\n@media (min-width: 768px) {\n  .form-inline .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .form-inline .form-control-static {\n    display: inline-block;\n  }\n  .form-inline .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .form-inline .input-group .input-group-addon,\n  .form-inline .input-group .input-group-btn,\n  .form-inline .input-group .form-control {\n    width: auto;\n  }\n  .form-inline .input-group > .form-control {\n    width: 100%;\n  }\n  .form-inline .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio,\n  .form-inline .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio label,\n  .form-inline .checkbox label {\n    padding-left: 0;\n  }\n  .form-inline .radio input[type=\"radio\"],\n  .form-inline .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .form-inline .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n  min-height: 25px;\n}\n.form-horizontal .form-group {\n  margin-left: 0px;\n  margin-right: 0px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .control-label {\n    text-align: right;\n    margin-bottom: 0;\n    padding-top: 7px;\n  }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n  right: 0px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-lg .control-label {\n    padding-top: 11px;\n    font-size: 17px;\n  }\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-sm .control-label {\n    padding-top: 6px;\n    font-size: 12px;\n  }\n}\n.btn {\n  display: inline-block;\n  margin-bottom: 0;\n  font-weight: normal;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none;\n  border: 1px solid transparent;\n  white-space: nowrap;\n  padding: 6px 12px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  border-radius: 2px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n  color: #333;\n  text-decoration: none;\n}\n.btn:active,\n.btn.active {\n  outline: 0;\n  background-image: none;\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n  cursor: not-allowed;\n  opacity: 0.65;\n  filter: alpha(opacity=65);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n  pointer-events: none;\n}\n.btn-default {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\n.btn-default:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default .badge {\n  color: #fff;\n  background-color: #333;\n}\n.btn-primary {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n  color: #fff;\n  background-color: #286090;\n  border-color: #122b40;\n}\n.btn-primary:hover {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  color: #fff;\n  background-color: #286090;\n  border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n  color: #fff;\n  background-color: #204d74;\n  border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n  background-color: #337ab7;\n  border-color: #2e6da4;\n}\n.btn-primary .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.btn-success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #255625;\n}\n.btn-success:hover {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n  color: #fff;\n  background-color: #398439;\n  border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.btn-info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #1b6d85;\n}\n.btn-info:hover {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n  color: #fff;\n  background-color: #269abc;\n  border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.btn-warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #985f0d;\n}\n.btn-warning:hover {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n  color: #fff;\n  background-color: #d58512;\n  border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.btn-danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #761c19;\n}\n.btn-danger:hover {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n  color: #fff;\n  background-color: #ac2925;\n  border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\n.btn-link {\n  color: #337ab7;\n  font-weight: normal;\n  border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n  background-color: transparent;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n  border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n  color: #23527c;\n  text-decoration: underline;\n  background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n  color: #777777;\n  text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n  padding: 1px 5px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\n.btn-block {\n  display: block;\n  width: 100%;\n}\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n  width: 100%;\n}\n.fade {\n  opacity: 0;\n  -webkit-transition: opacity 0.15s linear;\n  -o-transition: opacity 0.15s linear;\n  transition: opacity 0.15s linear;\n}\n.fade.in {\n  opacity: 1;\n}\n.collapse {\n  display: none;\n}\n.collapse.in {\n  display: block;\n}\ntr.collapse.in {\n  display: table-row;\n}\ntbody.collapse.in {\n  display: table-row-group;\n}\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition-property: height, visibility;\n  transition-property: height, visibility;\n  -webkit-transition-duration: 0.35s;\n  transition-duration: 0.35s;\n  -webkit-transition-timing-function: ease;\n  transition-timing-function: ease;\n}\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top: 4px dashed;\n  border-top: 4px solid \\9;\n  border-right: 4px solid transparent;\n  border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n  position: relative;\n}\n.dropdown-toggle:focus {\n  outline: 0;\n}\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0;\n  list-style: none;\n  font-size: 13px;\n  text-align: left;\n  background-color: #fff;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, 0.15);\n  border-radius: 2px;\n  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu .divider {\n  height: 1px;\n  margin: 8px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n  display: block;\n  padding: 3px 20px;\n  clear: both;\n  font-weight: normal;\n  line-height: 1.42857143;\n  color: #333333;\n  white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  text-decoration: none;\n  color: #262626;\n  background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  color: #fff;\n  text-decoration: none;\n  outline: 0;\n  background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  text-decoration: none;\n  background-color: transparent;\n  background-image: none;\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  cursor: not-allowed;\n}\n.open > .dropdown-menu {\n  display: block;\n}\n.open > a {\n  outline: 0;\n}\n.dropdown-menu-right {\n  left: auto;\n  right: 0;\n}\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  color: #777777;\n  white-space: nowrap;\n}\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: 990;\n}\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n  border-top: 0;\n  border-bottom: 4px dashed;\n  border-bottom: 4px solid \\9;\n  content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-bottom: 2px;\n}\n@media (min-width: 541px) {\n  .navbar-right .dropdown-menu {\n    left: auto;\n    right: 0;\n  }\n  .navbar-right .dropdown-menu-left {\n    left: 0;\n    right: auto;\n  }\n}\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n  position: relative;\n  float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n  z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n  margin-left: -1px;\n}\n.btn-toolbar {\n  margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n  float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n  margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n.btn-group > .btn:first-child {\n  margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.btn .caret {\n  margin-left: 0;\n}\n.btn-lg .caret {\n  border-width: 5px 5px 0;\n  border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n  border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n  float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n  border-top-right-radius: 2px;\n  border-top-left-radius: 2px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n  border-bottom-right-radius: 2px;\n  border-bottom-left-radius: 2px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n  float: none;\n  display: table-cell;\n  width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n  width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n  left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n  position: absolute;\n  clip: rect(0, 0, 0, 0);\n  pointer-events: none;\n}\n.input-group {\n  position: relative;\n  display: table;\n  border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n  float: none;\n  padding-left: 0;\n  padding-right: 0;\n}\n.input-group .form-control {\n  position: relative;\n  z-index: 2;\n  float: left;\n  width: 100%;\n  margin-bottom: 0;\n}\n.input-group .form-control:focus {\n  z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n  border-radius: 3px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n  height: 45px;\n  line-height: 45px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle;\n}\n.input-group-addon {\n  padding: 6px 12px;\n  font-size: 13px;\n  font-weight: normal;\n  line-height: 1;\n  color: #555555;\n  text-align: center;\n  background-color: #eeeeee;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n}\n.input-group-addon.input-sm {\n  padding: 5px 10px;\n  font-size: 12px;\n  border-radius: 1px;\n}\n.input-group-addon.input-lg {\n  padding: 10px 16px;\n  font-size: 17px;\n  border-radius: 3px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n  margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n.input-group-btn {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n}\n.input-group-btn > .btn {\n  position: relative;\n}\n.input-group-btn > .btn + .btn {\n  margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n  z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n  margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n  z-index: 2;\n  margin-left: -1px;\n}\n.nav {\n  margin-bottom: 0;\n  padding-left: 0;\n  list-style: none;\n}\n.nav > li {\n  position: relative;\n  display: block;\n}\n.nav > li > a {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n  color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n  color: #777777;\n  text-decoration: none;\n  background-color: transparent;\n  cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n  background-color: #eeeeee;\n  border-color: #337ab7;\n}\n.nav .nav-divider {\n  height: 1px;\n  margin: 8px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.nav > li > a > img {\n  max-width: none;\n}\n.nav-tabs {\n  border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n  float: left;\n  margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n  margin-right: 2px;\n  line-height: 1.42857143;\n  border: 1px solid transparent;\n  border-radius: 2px 2px 0 0;\n}\n.nav-tabs > li > a:hover {\n  border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n  color: #555555;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-bottom-color: transparent;\n  cursor: default;\n}\n.nav-tabs.nav-justified {\n  width: 100%;\n  border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n  float: none;\n}\n.nav-tabs.nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-tabs.nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs.nav-justified > li > a {\n  margin-right: 0;\n  border-radius: 2px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 2px 2px 0 0;\n  }\n  .nav-tabs.nav-justified > .active > a,\n  .nav-tabs.nav-justified > .active > a:hover,\n  .nav-tabs.nav-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.nav-pills > li {\n  float: left;\n}\n.nav-pills > li > a {\n  border-radius: 2px;\n}\n.nav-pills > li + li {\n  margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n  color: #fff;\n  background-color: #337ab7;\n}\n.nav-stacked > li {\n  float: none;\n}\n.nav-stacked > li + li {\n  margin-top: 2px;\n  margin-left: 0;\n}\n.nav-justified {\n  width: 100%;\n}\n.nav-justified > li {\n  float: none;\n}\n.nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs-justified {\n  border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n  margin-right: 0;\n  border-radius: 2px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 2px 2px 0 0;\n  }\n  .nav-tabs-justified > .active > a,\n  .nav-tabs-justified > .active > a:hover,\n  .nav-tabs-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.tab-content > .tab-pane {\n  display: none;\n}\n.tab-content > .active {\n  display: block;\n}\n.nav-tabs .dropdown-menu {\n  margin-top: -1px;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.navbar {\n  position: relative;\n  min-height: 30px;\n  margin-bottom: 18px;\n  border: 1px solid transparent;\n}\n@media (min-width: 541px) {\n  .navbar {\n    border-radius: 2px;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-header {\n    float: left;\n  }\n}\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: 0px;\n  padding-left: 0px;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n  -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n  overflow-y: auto;\n}\n@media (min-width: 541px) {\n  .navbar-collapse {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n  }\n  .navbar-collapse.collapse {\n    display: block !important;\n    height: auto !important;\n    padding-bottom: 0;\n    overflow: visible !important;\n  }\n  .navbar-collapse.in {\n    overflow-y: visible;\n  }\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-static-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n  max-height: 340px;\n}\n@media (max-device-width: 540px) and (orientation: landscape) {\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    max-height: 200px;\n  }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n  margin-right: 0px;\n  margin-left: 0px;\n}\n@media (min-width: 541px) {\n  .container > .navbar-header,\n  .container-fluid > .navbar-header,\n  .container > .navbar-collapse,\n  .container-fluid > .navbar-collapse {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n.navbar-static-top {\n  z-index: 1000;\n  border-width: 0 0 1px;\n}\n@media (min-width: 541px) {\n  .navbar-static-top {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 1030;\n}\n@media (min-width: 541px) {\n  .navbar-fixed-top,\n  .navbar-fixed-bottom {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0;\n  border-width: 1px 0 0;\n}\n.navbar-brand {\n  float: left;\n  padding: 6px 0px;\n  font-size: 17px;\n  line-height: 18px;\n  height: 30px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n  text-decoration: none;\n}\n.navbar-brand > img {\n  display: block;\n}\n@media (min-width: 541px) {\n  .navbar > .container .navbar-brand,\n  .navbar > .container-fluid .navbar-brand {\n    margin-left: 0px;\n  }\n}\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: 0px;\n  padding: 9px 10px;\n  margin-top: -2px;\n  margin-bottom: -2px;\n  background-color: transparent;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 2px;\n}\n.navbar-toggle:focus {\n  outline: 0;\n}\n.navbar-toggle .icon-bar {\n  display: block;\n  width: 22px;\n  height: 2px;\n  border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n  margin-top: 4px;\n}\n@media (min-width: 541px) {\n  .navbar-toggle {\n    display: none;\n  }\n}\n.navbar-nav {\n  margin: 3px 0px;\n}\n.navbar-nav > li > a {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  line-height: 18px;\n}\n@media (max-width: 540px) {\n  .navbar-nav .open .dropdown-menu {\n    position: static;\n    float: none;\n    width: auto;\n    margin-top: 0;\n    background-color: transparent;\n    border: 0;\n    box-shadow: none;\n  }\n  .navbar-nav .open .dropdown-menu > li > a,\n  .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 15px 5px 25px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a {\n    line-height: 18px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-nav .open .dropdown-menu > li > a:focus {\n    background-image: none;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-nav {\n    float: left;\n    margin: 0;\n  }\n  .navbar-nav > li {\n    float: left;\n  }\n  .navbar-nav > li > a {\n    padding-top: 6px;\n    padding-bottom: 6px;\n  }\n}\n.navbar-form {\n  margin-left: 0px;\n  margin-right: 0px;\n  padding: 10px 0px;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  margin-top: -1px;\n  margin-bottom: -1px;\n}\n@media (min-width: 768px) {\n  .navbar-form .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control-static {\n    display: inline-block;\n  }\n  .navbar-form .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .navbar-form .input-group .input-group-addon,\n  .navbar-form .input-group .input-group-btn,\n  .navbar-form .input-group .form-control {\n    width: auto;\n  }\n  .navbar-form .input-group > .form-control {\n    width: 100%;\n  }\n  .navbar-form .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio,\n  .navbar-form .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio label,\n  .navbar-form .checkbox label {\n    padding-left: 0;\n  }\n  .navbar-form .radio input[type=\"radio\"],\n  .navbar-form .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .navbar-form .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n@media (max-width: 540px) {\n  .navbar-form .form-group {\n    margin-bottom: 5px;\n  }\n  .navbar-form .form-group:last-child {\n    margin-bottom: 0;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-form {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    -webkit-box-shadow: none;\n    box-shadow: none;\n  }\n}\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  border-top-right-radius: 2px;\n  border-top-left-radius: 2px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.navbar-btn {\n  margin-top: -1px;\n  margin-bottom: -1px;\n}\n.navbar-btn.btn-sm {\n  margin-top: 0px;\n  margin-bottom: 0px;\n}\n.navbar-btn.btn-xs {\n  margin-top: 4px;\n  margin-bottom: 4px;\n}\n.navbar-text {\n  margin-top: 6px;\n  margin-bottom: 6px;\n}\n@media (min-width: 541px) {\n  .navbar-text {\n    float: left;\n    margin-left: 0px;\n    margin-right: 0px;\n  }\n}\n@media (min-width: 541px) {\n  .navbar-left {\n    float: left !important;\n    float: left;\n  }\n  .navbar-right {\n    float: right !important;\n    float: right;\n    margin-right: 0px;\n  }\n  .navbar-right ~ .navbar-right {\n    margin-right: 0;\n  }\n}\n.navbar-default {\n  background-color: #f8f8f8;\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n  color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n  color: #5e5e5e;\n  background-color: transparent;\n}\n.navbar-default .navbar-text {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n  color: #333;\n  background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n  color: #ccc;\n  background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n  border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n  background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n  background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n  background-color: #e7e7e7;\n  color: #555;\n}\n@media (max-width: 540px) {\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n    color: #777;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #333;\n    background-color: transparent;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #555;\n    background-color: #e7e7e7;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #ccc;\n    background-color: transparent;\n  }\n}\n.navbar-default .navbar-link {\n  color: #777;\n}\n.navbar-default .navbar-link:hover {\n  color: #333;\n}\n.navbar-default .btn-link {\n  color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n  color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n  color: #ccc;\n}\n.navbar-inverse {\n  background-color: #222;\n  border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n  color: #444;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n  border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n  background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n  background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n  border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n  background-color: #080808;\n  color: #fff;\n}\n@media (max-width: 540px) {\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n    border-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n    color: #9d9d9d;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #fff;\n    background-color: transparent;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #444;\n    background-color: transparent;\n  }\n}\n.navbar-inverse .navbar-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n  color: #fff;\n}\n.navbar-inverse .btn-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n  color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n  color: #444;\n}\n.breadcrumb {\n  padding: 8px 15px;\n  margin-bottom: 18px;\n  list-style: none;\n  background-color: #f5f5f5;\n  border-radius: 2px;\n}\n.breadcrumb > li {\n  display: inline-block;\n}\n.breadcrumb > li + li:before {\n  content: \"/\\00a0\";\n  padding: 0 5px;\n  color: #5e5e5e;\n}\n.breadcrumb > .active {\n  color: #777777;\n}\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: 18px 0;\n  border-radius: 2px;\n}\n.pagination > li {\n  display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n  position: relative;\n  float: left;\n  padding: 6px 12px;\n  line-height: 1.42857143;\n  text-decoration: none;\n  color: #337ab7;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n  margin-left: 0;\n  border-bottom-left-radius: 2px;\n  border-top-left-radius: 2px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n  border-bottom-right-radius: 2px;\n  border-top-right-radius: 2px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n  z-index: 2;\n  color: #23527c;\n  background-color: #eeeeee;\n  border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n  z-index: 3;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n  cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n  color: #777777;\n  background-color: #fff;\n  border-color: #ddd;\n  cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n  padding: 10px 16px;\n  font-size: 17px;\n  line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n  border-bottom-left-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n  border-bottom-right-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n  border-bottom-left-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n  border-bottom-right-radius: 1px;\n  border-top-right-radius: 1px;\n}\n.pager {\n  padding-left: 0;\n  margin: 18px 0;\n  list-style: none;\n  text-align: center;\n}\n.pager li {\n  display: inline;\n}\n.pager li > a,\n.pager li > span {\n  display: inline-block;\n  padding: 5px 14px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n  float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n  float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n  color: #777777;\n  background-color: #fff;\n  cursor: not-allowed;\n}\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.label:empty {\n  display: none;\n}\n.btn .label {\n  position: relative;\n  top: -1px;\n}\n.label-default {\n  background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n  background-color: #5e5e5e;\n}\n.label-primary {\n  background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n  background-color: #286090;\n}\n.label-success {\n  background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n  background-color: #449d44;\n}\n.label-info {\n  background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n  background-color: #31b0d5;\n}\n.label-warning {\n  background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n  background-color: #ec971f;\n}\n.label-danger {\n  background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n  background-color: #c9302c;\n}\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: 12px;\n  font-weight: bold;\n  color: #fff;\n  line-height: 1;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: #777777;\n  border-radius: 10px;\n}\n.badge:empty {\n  display: none;\n}\n.btn .badge {\n  position: relative;\n  top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n  top: 0;\n  padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.list-group-item > .badge {\n  float: right;\n}\n.list-group-item > .badge + .badge {\n  margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n  margin-left: 3px;\n}\n.jumbotron {\n  padding-top: 30px;\n  padding-bottom: 30px;\n  margin-bottom: 30px;\n  color: inherit;\n  background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n  color: inherit;\n}\n.jumbotron p {\n  margin-bottom: 15px;\n  font-size: 20px;\n  font-weight: 200;\n}\n.jumbotron > hr {\n  border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n  border-radius: 3px;\n  padding-left: 0px;\n  padding-right: 0px;\n}\n.jumbotron .container {\n  max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n  .jumbotron {\n    padding-top: 48px;\n    padding-bottom: 48px;\n  }\n  .container .jumbotron,\n  .container-fluid .jumbotron {\n    padding-left: 60px;\n    padding-right: 60px;\n  }\n  .jumbotron h1,\n  .jumbotron .h1 {\n    font-size: 59px;\n  }\n}\n.thumbnail {\n  display: block;\n  padding: 4px;\n  margin-bottom: 18px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n  -webkit-transition: border 0.2s ease-in-out;\n  -o-transition: border 0.2s ease-in-out;\n  transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n  margin-left: auto;\n  margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n  border-color: #337ab7;\n}\n.thumbnail .caption {\n  padding: 9px;\n  color: #000;\n}\n.alert {\n  padding: 15px;\n  margin-bottom: 18px;\n  border: 1px solid transparent;\n  border-radius: 2px;\n}\n.alert h4 {\n  margin-top: 0;\n  color: inherit;\n}\n.alert .alert-link {\n  font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n  margin-bottom: 0;\n}\n.alert > p + p {\n  margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n  padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n  position: relative;\n  top: -2px;\n  right: -21px;\n  color: inherit;\n}\n.alert-success {\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n  color: #3c763d;\n}\n.alert-success hr {\n  border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n  color: #2b542c;\n}\n.alert-info {\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n  color: #31708f;\n}\n.alert-info hr {\n  border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n  color: #245269;\n}\n.alert-warning {\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n  color: #8a6d3b;\n}\n.alert-warning hr {\n  border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n  color: #66512c;\n}\n.alert-danger {\n  background-color: #f2dede;\n  border-color: #ebccd1;\n  color: #a94442;\n}\n.alert-danger hr {\n  border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n  color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n.progress {\n  overflow: hidden;\n  height: 18px;\n  margin-bottom: 18px;\n  background-color: #f5f5f5;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: 12px;\n  line-height: 18px;\n  color: #fff;\n  text-align: center;\n  background-color: #337ab7;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  -webkit-transition: width 0.6s ease;\n  -o-transition: width 0.6s ease;\n  transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n  -webkit-animation: progress-bar-stripes 2s linear infinite;\n  -o-animation: progress-bar-stripes 2s linear infinite;\n  animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n  background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n  background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n  background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n  background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n  margin-top: 15px;\n}\n.media:first-child {\n  margin-top: 0;\n}\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n.media-body {\n  width: 10000px;\n}\n.media-object {\n  display: block;\n}\n.media-object.img-thumbnail {\n  max-width: none;\n}\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n.media-middle {\n  vertical-align: middle;\n}\n.media-bottom {\n  vertical-align: bottom;\n}\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n.list-group {\n  margin-bottom: 20px;\n  padding-left: 0;\n}\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n  border-top-right-radius: 2px;\n  border-top-left-radius: 2px;\n}\n.list-group-item:last-child {\n  margin-bottom: 0;\n  border-bottom-right-radius: 2px;\n  border-bottom-left-radius: 2px;\n}\na.list-group-item,\nbutton.list-group-item {\n  color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n  color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n  text-decoration: none;\n  color: #555;\n  background-color: #f5f5f5;\n}\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n  background-color: #eeeeee;\n  color: #777777;\n  cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n  color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n  color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  z-index: 2;\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n  color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n  color: #c7ddef;\n}\n.list-group-item-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n  color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n  color: #3c763d;\n  background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n  color: #fff;\n  background-color: #3c763d;\n  border-color: #3c763d;\n}\n.list-group-item-info {\n  color: #31708f;\n  background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n  color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n  color: #31708f;\n  background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n  color: #fff;\n  background-color: #31708f;\n  border-color: #31708f;\n}\n.list-group-item-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n  color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n  color: #8a6d3b;\n  background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n  color: #fff;\n  background-color: #8a6d3b;\n  border-color: #8a6d3b;\n}\n.list-group-item-danger {\n  color: #a94442;\n  background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n  color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n  color: #a94442;\n  background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n  color: #fff;\n  background-color: #a94442;\n  border-color: #a94442;\n}\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n.panel {\n  margin-bottom: 18px;\n  background-color: #fff;\n  border: 1px solid transparent;\n  border-radius: 2px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n  padding: 15px;\n}\n.panel-heading {\n  padding: 10px 15px;\n  border-bottom: 1px solid transparent;\n  border-top-right-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n  color: inherit;\n}\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: 15px;\n  color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n  color: inherit;\n}\n.panel-footer {\n  padding: 10px 15px;\n  background-color: #f5f5f5;\n  border-top: 1px solid #ddd;\n  border-bottom-right-radius: 1px;\n  border-bottom-left-radius: 1px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n  margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n  border-width: 1px 0;\n  border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n  border-top: 0;\n  border-top-right-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n  border-bottom: 0;\n  border-bottom-right-radius: 1px;\n  border-bottom-left-radius: 1px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n  border-top-width: 0;\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n  margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n  border-top-right-radius: 1px;\n  border-top-left-radius: 1px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n  border-top-left-radius: 1px;\n  border-top-right-radius: 1px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n  border-top-left-radius: 1px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n  border-top-right-radius: 1px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n  border-bottom-right-radius: 1px;\n  border-bottom-left-radius: 1px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n  border-bottom-left-radius: 1px;\n  border-bottom-right-radius: 1px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n  border-bottom-left-radius: 1px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n  border-bottom-right-radius: 1px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n  border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n  border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n  border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n  border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n  border-bottom: 0;\n}\n.panel > .table-responsive {\n  border: 0;\n  margin-bottom: 0;\n}\n.panel-group {\n  margin-bottom: 18px;\n}\n.panel-group .panel {\n  margin-bottom: 0;\n  border-radius: 2px;\n}\n.panel-group .panel + .panel {\n  margin-top: 5px;\n}\n.panel-group .panel-heading {\n  border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n  border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n  border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n  border-bottom: 1px solid #ddd;\n}\n.panel-default {\n  border-color: #ddd;\n}\n.panel-default > .panel-heading {\n  color: #333333;\n  background-color: #f5f5f5;\n  border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n  color: #f5f5f5;\n  background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ddd;\n}\n.panel-primary {\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n  color: #fff;\n  background-color: #337ab7;\n  border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n  color: #337ab7;\n  background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #337ab7;\n}\n.panel-success {\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n  color: #dff0d8;\n  background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #d6e9c6;\n}\n.panel-info {\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n  color: #d9edf7;\n  background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #bce8f1;\n}\n.panel-warning {\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n  color: #fcf8e3;\n  background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #faebcc;\n}\n.panel-danger {\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n  color: #f2dede;\n  background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  height: 100%;\n  width: 100%;\n  border: 0;\n}\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n  border-color: #ddd;\n  border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n  padding: 24px;\n  border-radius: 3px;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: 1px;\n}\n.close {\n  float: right;\n  font-size: 19.5px;\n  font-weight: bold;\n  line-height: 1;\n  color: #000;\n  text-shadow: 0 1px 0 #fff;\n  opacity: 0.2;\n  filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n  color: #000;\n  text-decoration: none;\n  cursor: pointer;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\nbutton.close {\n  padding: 0;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n  -webkit-appearance: none;\n}\n.modal-open {\n  overflow: hidden;\n}\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1050;\n  -webkit-overflow-scrolling: touch;\n  outline: 0;\n}\n.modal.fade .modal-dialog {\n  -webkit-transform: translate(0, -25%);\n  -ms-transform: translate(0, -25%);\n  -o-transform: translate(0, -25%);\n  transform: translate(0, -25%);\n  -webkit-transition: -webkit-transform 0.3s ease-out;\n  -moz-transition: -moz-transform 0.3s ease-out;\n  -o-transition: -o-transform 0.3s ease-out;\n  transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n  -webkit-transform: translate(0, 0);\n  -ms-transform: translate(0, 0);\n  -o-transform: translate(0, 0);\n  transform: translate(0, 0);\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n.modal-content {\n  position: relative;\n  background-color: #fff;\n  border: 1px solid #999;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 3px;\n  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  background-clip: padding-box;\n  outline: 0;\n}\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n  background-color: #000;\n}\n.modal-backdrop.fade {\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\n.modal-header {\n  padding: 15px;\n  border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n  margin-top: -2px;\n}\n.modal-title {\n  margin: 0;\n  line-height: 1.42857143;\n}\n.modal-body {\n  position: relative;\n  padding: 15px;\n}\n.modal-footer {\n  padding: 15px;\n  text-align: right;\n  border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n  margin-left: 5px;\n  margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-left: 0;\n}\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n@media (min-width: 768px) {\n  .modal-dialog {\n    width: 600px;\n    margin: 30px auto;\n  }\n  .modal-content {\n    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n  }\n  .modal-sm {\n    width: 300px;\n  }\n}\n@media (min-width: 992px) {\n  .modal-lg {\n    width: 900px;\n  }\n}\n.tooltip {\n  position: absolute;\n  z-index: 1070;\n  display: block;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  font-size: 12px;\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.tooltip.in {\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.tooltip.top {\n  margin-top: -3px;\n  padding: 5px 0;\n}\n.tooltip.right {\n  margin-left: 3px;\n  padding: 0 5px;\n}\n.tooltip.bottom {\n  margin-top: 3px;\n  padding: 5px 0;\n}\n.tooltip.left {\n  margin-left: -3px;\n  padding: 0 5px;\n}\n.tooltip-inner {\n  max-width: 200px;\n  padding: 3px 8px;\n  color: #fff;\n  text-align: center;\n  background-color: #000;\n  border-radius: 2px;\n}\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n  bottom: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n  bottom: 0;\n  right: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n  bottom: 0;\n  left: 5px;\n  margin-bottom: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n  top: 50%;\n  left: 0;\n  margin-top: -5px;\n  border-width: 5px 5px 5px 0;\n  border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n  top: 50%;\n  right: 0;\n  margin-top: -5px;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n  top: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n  top: 0;\n  right: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n  top: 0;\n  left: 5px;\n  margin-top: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1060;\n  display: none;\n  max-width: 276px;\n  padding: 1px;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: 1.42857143;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n  font-size: 13px;\n  background-color: #fff;\n  background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 3px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n  margin-top: -10px;\n}\n.popover.right {\n  margin-left: 10px;\n}\n.popover.bottom {\n  margin-top: 10px;\n}\n.popover.left {\n  margin-left: -10px;\n}\n.popover-title {\n  margin: 0;\n  padding: 8px 14px;\n  font-size: 13px;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-radius: 2px 2px 0 0;\n}\n.popover-content {\n  padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n  position: absolute;\n  display: block;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.popover > .arrow {\n  border-width: 11px;\n}\n.popover > .arrow:after {\n  border-width: 10px;\n  content: \"\";\n}\n.popover.top > .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-bottom-width: 0;\n  border-top-color: #999999;\n  border-top-color: rgba(0, 0, 0, 0.25);\n  bottom: -11px;\n}\n.popover.top > .arrow:after {\n  content: \" \";\n  bottom: 1px;\n  margin-left: -10px;\n  border-bottom-width: 0;\n  border-top-color: #fff;\n}\n.popover.right > .arrow {\n  top: 50%;\n  left: -11px;\n  margin-top: -11px;\n  border-left-width: 0;\n  border-right-color: #999999;\n  border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n  content: \" \";\n  left: 1px;\n  bottom: -10px;\n  border-left-width: 0;\n  border-right-color: #fff;\n}\n.popover.bottom > .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-top-width: 0;\n  border-bottom-color: #999999;\n  border-bottom-color: rgba(0, 0, 0, 0.25);\n  top: -11px;\n}\n.popover.bottom > .arrow:after {\n  content: \" \";\n  top: 1px;\n  margin-left: -10px;\n  border-top-width: 0;\n  border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n  top: 50%;\n  right: -11px;\n  margin-top: -11px;\n  border-right-width: 0;\n  border-left-color: #999999;\n  border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n  content: \" \";\n  right: 1px;\n  border-right-width: 0;\n  border-left-color: #fff;\n  bottom: -10px;\n}\n.carousel {\n  position: relative;\n}\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n}\n.carousel-inner > .item {\n  display: none;\n  position: relative;\n  -webkit-transition: 0.6s ease-in-out left;\n  -o-transition: 0.6s ease-in-out left;\n  transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n  .carousel-inner > .item {\n    -webkit-transition: -webkit-transform 0.6s ease-in-out;\n    -moz-transition: -moz-transform 0.6s ease-in-out;\n    -o-transition: -o-transform 0.6s ease-in-out;\n    transition: transform 0.6s ease-in-out;\n    -webkit-backface-visibility: hidden;\n    -moz-backface-visibility: hidden;\n    backface-visibility: hidden;\n    -webkit-perspective: 1000px;\n    -moz-perspective: 1000px;\n    perspective: 1000px;\n  }\n  .carousel-inner > .item.next,\n  .carousel-inner > .item.active.right {\n    -webkit-transform: translate3d(100%, 0, 0);\n    transform: translate3d(100%, 0, 0);\n    left: 0;\n  }\n  .carousel-inner > .item.prev,\n  .carousel-inner > .item.active.left {\n    -webkit-transform: translate3d(-100%, 0, 0);\n    transform: translate3d(-100%, 0, 0);\n    left: 0;\n  }\n  .carousel-inner > .item.next.left,\n  .carousel-inner > .item.prev.right,\n  .carousel-inner > .item.active {\n    -webkit-transform: translate3d(0, 0, 0);\n    transform: translate3d(0, 0, 0);\n    left: 0;\n  }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  display: block;\n}\n.carousel-inner > .active {\n  left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  position: absolute;\n  top: 0;\n  width: 100%;\n}\n.carousel-inner > .next {\n  left: 100%;\n}\n.carousel-inner > .prev {\n  left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n  left: 0;\n}\n.carousel-inner > .active.left {\n  left: -100%;\n}\n.carousel-inner > .active.right {\n  left: 100%;\n}\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: 15%;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n  font-size: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n  background-color: rgba(0, 0, 0, 0);\n}\n.carousel-control.left {\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n  left: auto;\n  right: 0;\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n  outline: 0;\n  color: #fff;\n  text-decoration: none;\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n  position: absolute;\n  top: 50%;\n  margin-top: -10px;\n  z-index: 5;\n  display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n  margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n  margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n  width: 20px;\n  height: 20px;\n  line-height: 1;\n  font-family: serif;\n}\n.carousel-control .icon-prev:before {\n  content: '\\2039';\n}\n.carousel-control .icon-next:before {\n  content: '\\203a';\n}\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n}\n.carousel-indicators li {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin: 1px;\n  text-indent: -999px;\n  border: 1px solid #fff;\n  border-radius: 10px;\n  cursor: pointer;\n  background-color: #000 \\9;\n  background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n  margin: 0;\n  width: 12px;\n  height: 12px;\n  background-color: #fff;\n}\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n  text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-prev,\n  .carousel-control .icon-next {\n    width: 30px;\n    height: 30px;\n    margin-top: -10px;\n    font-size: 30px;\n  }\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .icon-prev {\n    margin-left: -10px;\n  }\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-next {\n    margin-right: -10px;\n  }\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after,\n.item_buttons:before,\n.item_buttons:after {\n  content: \" \";\n  display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after,\n.item_buttons:after {\n  clear: both;\n}\n.center-block {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n.hidden {\n  display: none !important;\n}\n.affix {\n  position: fixed;\n}\n@-ms-viewport {\n  width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-xs {\n    display: block !important;\n  }\n  table.visible-xs {\n    display: table !important;\n  }\n  tr.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-xs,\n  td.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-block {\n    display: block !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline {\n    display: inline !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm {\n    display: block !important;\n  }\n  table.visible-sm {\n    display: table !important;\n  }\n  tr.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-sm,\n  td.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-block {\n    display: block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md {\n    display: block !important;\n  }\n  table.visible-md {\n    display: table !important;\n  }\n  tr.visible-md {\n    display: table-row !important;\n  }\n  th.visible-md,\n  td.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-block {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg {\n    display: block !important;\n  }\n  table.visible-lg {\n    display: table !important;\n  }\n  tr.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-lg,\n  td.visible-lg {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-block {\n    display: block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (max-width: 767px) {\n  .hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-lg {\n    display: none !important;\n  }\n}\n.visible-print {\n  display: none !important;\n}\n@media print {\n  .visible-print {\n    display: block !important;\n  }\n  table.visible-print {\n    display: table !important;\n  }\n  tr.visible-print {\n    display: table-row !important;\n  }\n  th.visible-print,\n  td.visible-print {\n    display: table-cell !important;\n  }\n}\n.visible-print-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-block {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline-block {\n    display: inline-block !important;\n  }\n}\n@media print {\n  .hidden-print {\n    display: none !important;\n  }\n}\n/*!\n*\n* Font Awesome\n*\n*/\n/*!\n *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');\n  src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n.fa {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n  font-size: 1.33333333em;\n  line-height: 0.75em;\n  vertical-align: -15%;\n}\n.fa-2x {\n  font-size: 2em;\n}\n.fa-3x {\n  font-size: 3em;\n}\n.fa-4x {\n  font-size: 4em;\n}\n.fa-5x {\n  font-size: 5em;\n}\n.fa-fw {\n  width: 1.28571429em;\n  text-align: center;\n}\n.fa-ul {\n  padding-left: 0;\n  margin-left: 2.14285714em;\n  list-style-type: none;\n}\n.fa-ul > li {\n  position: relative;\n}\n.fa-li {\n  position: absolute;\n  left: -2.14285714em;\n  width: 2.14285714em;\n  top: 0.14285714em;\n  text-align: center;\n}\n.fa-li.fa-lg {\n  left: -1.85714286em;\n}\n.fa-border {\n  padding: .2em .25em .15em;\n  border: solid 0.08em #eee;\n  border-radius: .1em;\n}\n.pull-right {\n  float: right;\n}\n.pull-left {\n  float: left;\n}\n.fa.pull-left {\n  margin-right: .3em;\n}\n.fa.pull-right {\n  margin-left: .3em;\n}\n.fa-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n  animation: fa-spin 2s infinite linear;\n}\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n.fa-rotate-90 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n  -webkit-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n.fa-rotate-180 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n  -webkit-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n.fa-rotate-270 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n  -webkit-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n  -webkit-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n  -webkit-transform: scale(1, -1);\n  -ms-transform: scale(1, -1);\n  transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n  filter: none;\n}\n.fa-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.fa-stack-1x {\n  line-height: inherit;\n}\n.fa-stack-2x {\n  font-size: 2em;\n}\n.fa-inverse {\n  color: #fff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.fa-glass:before {\n  content: \"\\f000\";\n}\n.fa-music:before {\n  content: \"\\f001\";\n}\n.fa-search:before {\n  content: \"\\f002\";\n}\n.fa-envelope-o:before {\n  content: \"\\f003\";\n}\n.fa-heart:before {\n  content: \"\\f004\";\n}\n.fa-star:before {\n  content: \"\\f005\";\n}\n.fa-star-o:before {\n  content: \"\\f006\";\n}\n.fa-user:before {\n  content: \"\\f007\";\n}\n.fa-film:before {\n  content: \"\\f008\";\n}\n.fa-th-large:before {\n  content: \"\\f009\";\n}\n.fa-th:before {\n  content: \"\\f00a\";\n}\n.fa-th-list:before {\n  content: \"\\f00b\";\n}\n.fa-check:before {\n  content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n  content: \"\\f00d\";\n}\n.fa-search-plus:before {\n  content: \"\\f00e\";\n}\n.fa-search-minus:before {\n  content: \"\\f010\";\n}\n.fa-power-off:before {\n  content: \"\\f011\";\n}\n.fa-signal:before {\n  content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n  content: \"\\f013\";\n}\n.fa-trash-o:before {\n  content: \"\\f014\";\n}\n.fa-home:before {\n  content: \"\\f015\";\n}\n.fa-file-o:before {\n  content: \"\\f016\";\n}\n.fa-clock-o:before {\n  content: \"\\f017\";\n}\n.fa-road:before {\n  content: \"\\f018\";\n}\n.fa-download:before {\n  content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n  content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n  content: \"\\f01b\";\n}\n.fa-inbox:before {\n  content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n  content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n  content: \"\\f01e\";\n}\n.fa-refresh:before {\n  content: \"\\f021\";\n}\n.fa-list-alt:before {\n  content: \"\\f022\";\n}\n.fa-lock:before {\n  content: \"\\f023\";\n}\n.fa-flag:before {\n  content: \"\\f024\";\n}\n.fa-headphones:before {\n  content: \"\\f025\";\n}\n.fa-volume-off:before {\n  content: \"\\f026\";\n}\n.fa-volume-down:before {\n  content: \"\\f027\";\n}\n.fa-volume-up:before {\n  content: \"\\f028\";\n}\n.fa-qrcode:before {\n  content: \"\\f029\";\n}\n.fa-barcode:before {\n  content: \"\\f02a\";\n}\n.fa-tag:before {\n  content: \"\\f02b\";\n}\n.fa-tags:before {\n  content: \"\\f02c\";\n}\n.fa-book:before {\n  content: \"\\f02d\";\n}\n.fa-bookmark:before {\n  content: \"\\f02e\";\n}\n.fa-print:before {\n  content: \"\\f02f\";\n}\n.fa-camera:before {\n  content: \"\\f030\";\n}\n.fa-font:before {\n  content: \"\\f031\";\n}\n.fa-bold:before {\n  content: \"\\f032\";\n}\n.fa-italic:before {\n  content: \"\\f033\";\n}\n.fa-text-height:before {\n  content: \"\\f034\";\n}\n.fa-text-width:before {\n  content: \"\\f035\";\n}\n.fa-align-left:before {\n  content: \"\\f036\";\n}\n.fa-align-center:before {\n  content: \"\\f037\";\n}\n.fa-align-right:before {\n  content: \"\\f038\";\n}\n.fa-align-justify:before {\n  content: \"\\f039\";\n}\n.fa-list:before {\n  content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n  content: \"\\f03b\";\n}\n.fa-indent:before {\n  content: \"\\f03c\";\n}\n.fa-video-camera:before {\n  content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n  content: \"\\f03e\";\n}\n.fa-pencil:before {\n  content: \"\\f040\";\n}\n.fa-map-marker:before {\n  content: \"\\f041\";\n}\n.fa-adjust:before {\n  content: \"\\f042\";\n}\n.fa-tint:before {\n  content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n  content: \"\\f044\";\n}\n.fa-share-square-o:before {\n  content: \"\\f045\";\n}\n.fa-check-square-o:before {\n  content: \"\\f046\";\n}\n.fa-arrows:before {\n  content: \"\\f047\";\n}\n.fa-step-backward:before {\n  content: \"\\f048\";\n}\n.fa-fast-backward:before {\n  content: \"\\f049\";\n}\n.fa-backward:before {\n  content: \"\\f04a\";\n}\n.fa-play:before {\n  content: \"\\f04b\";\n}\n.fa-pause:before {\n  content: \"\\f04c\";\n}\n.fa-stop:before {\n  content: \"\\f04d\";\n}\n.fa-forward:before {\n  content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n  content: \"\\f050\";\n}\n.fa-step-forward:before {\n  content: \"\\f051\";\n}\n.fa-eject:before {\n  content: \"\\f052\";\n}\n.fa-chevron-left:before {\n  content: \"\\f053\";\n}\n.fa-chevron-right:before {\n  content: \"\\f054\";\n}\n.fa-plus-circle:before {\n  content: \"\\f055\";\n}\n.fa-minus-circle:before {\n  content: \"\\f056\";\n}\n.fa-times-circle:before {\n  content: \"\\f057\";\n}\n.fa-check-circle:before {\n  content: \"\\f058\";\n}\n.fa-question-circle:before {\n  content: \"\\f059\";\n}\n.fa-info-circle:before {\n  content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n  content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n  content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n  content: \"\\f05d\";\n}\n.fa-ban:before {\n  content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n  content: \"\\f060\";\n}\n.fa-arrow-right:before {\n  content: \"\\f061\";\n}\n.fa-arrow-up:before {\n  content: \"\\f062\";\n}\n.fa-arrow-down:before {\n  content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n  content: \"\\f064\";\n}\n.fa-expand:before {\n  content: \"\\f065\";\n}\n.fa-compress:before {\n  content: \"\\f066\";\n}\n.fa-plus:before {\n  content: \"\\f067\";\n}\n.fa-minus:before {\n  content: \"\\f068\";\n}\n.fa-asterisk:before {\n  content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n  content: \"\\f06a\";\n}\n.fa-gift:before {\n  content: \"\\f06b\";\n}\n.fa-leaf:before {\n  content: \"\\f06c\";\n}\n.fa-fire:before {\n  content: \"\\f06d\";\n}\n.fa-eye:before {\n  content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n  content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n  content: \"\\f071\";\n}\n.fa-plane:before {\n  content: \"\\f072\";\n}\n.fa-calendar:before {\n  content: \"\\f073\";\n}\n.fa-random:before {\n  content: \"\\f074\";\n}\n.fa-comment:before {\n  content: \"\\f075\";\n}\n.fa-magnet:before {\n  content: \"\\f076\";\n}\n.fa-chevron-up:before {\n  content: \"\\f077\";\n}\n.fa-chevron-down:before {\n  content: \"\\f078\";\n}\n.fa-retweet:before {\n  content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n  content: \"\\f07a\";\n}\n.fa-folder:before {\n  content: \"\\f07b\";\n}\n.fa-folder-open:before {\n  content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n  content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n  content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n  content: \"\\f080\";\n}\n.fa-twitter-square:before {\n  content: \"\\f081\";\n}\n.fa-facebook-square:before {\n  content: \"\\f082\";\n}\n.fa-camera-retro:before {\n  content: \"\\f083\";\n}\n.fa-key:before {\n  content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n  content: \"\\f085\";\n}\n.fa-comments:before {\n  content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n  content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n  content: \"\\f088\";\n}\n.fa-star-half:before {\n  content: \"\\f089\";\n}\n.fa-heart-o:before {\n  content: \"\\f08a\";\n}\n.fa-sign-out:before {\n  content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n  content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n  content: \"\\f08d\";\n}\n.fa-external-link:before {\n  content: \"\\f08e\";\n}\n.fa-sign-in:before {\n  content: \"\\f090\";\n}\n.fa-trophy:before {\n  content: \"\\f091\";\n}\n.fa-github-square:before {\n  content: \"\\f092\";\n}\n.fa-upload:before {\n  content: \"\\f093\";\n}\n.fa-lemon-o:before {\n  content: \"\\f094\";\n}\n.fa-phone:before {\n  content: \"\\f095\";\n}\n.fa-square-o:before {\n  content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n  content: \"\\f097\";\n}\n.fa-phone-square:before {\n  content: \"\\f098\";\n}\n.fa-twitter:before {\n  content: \"\\f099\";\n}\n.fa-facebook:before {\n  content: \"\\f09a\";\n}\n.fa-github:before {\n  content: \"\\f09b\";\n}\n.fa-unlock:before {\n  content: \"\\f09c\";\n}\n.fa-credit-card:before {\n  content: \"\\f09d\";\n}\n.fa-rss:before {\n  content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n  content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n  content: \"\\f0a1\";\n}\n.fa-bell:before {\n  content: \"\\f0f3\";\n}\n.fa-certificate:before {\n  content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n  content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n  content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n  content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n  content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n  content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n  content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n  content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n  content: \"\\f0ab\";\n}\n.fa-globe:before {\n  content: \"\\f0ac\";\n}\n.fa-wrench:before {\n  content: \"\\f0ad\";\n}\n.fa-tasks:before {\n  content: \"\\f0ae\";\n}\n.fa-filter:before {\n  content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n  content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n  content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n  content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n  content: \"\\f0c1\";\n}\n.fa-cloud:before {\n  content: \"\\f0c2\";\n}\n.fa-flask:before {\n  content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n  content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n  content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n  content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n  content: \"\\f0c7\";\n}\n.fa-square:before {\n  content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n  content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n  content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n  content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n  content: \"\\f0cc\";\n}\n.fa-underline:before {\n  content: \"\\f0cd\";\n}\n.fa-table:before {\n  content: \"\\f0ce\";\n}\n.fa-magic:before {\n  content: \"\\f0d0\";\n}\n.fa-truck:before {\n  content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n  content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n  content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n  content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n  content: \"\\f0d5\";\n}\n.fa-money:before {\n  content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n  content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n  content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n  content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n  content: \"\\f0da\";\n}\n.fa-columns:before {\n  content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n  content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n  content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n  content: \"\\f0de\";\n}\n.fa-envelope:before {\n  content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n  content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n  content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n  content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n  content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n  content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n  content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n  content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n  content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n  content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n  content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n  content: \"\\f0eb\";\n}\n.fa-exchange:before {\n  content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n  content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n  content: \"\\f0ee\";\n}\n.fa-user-md:before {\n  content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n  content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n  content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n  content: \"\\f0a2\";\n}\n.fa-coffee:before {\n  content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n  content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n  content: \"\\f0f6\";\n}\n.fa-building-o:before {\n  content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n  content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n  content: \"\\f0f9\";\n}\n.fa-medkit:before {\n  content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n  content: \"\\f0fb\";\n}\n.fa-beer:before {\n  content: \"\\f0fc\";\n}\n.fa-h-square:before {\n  content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n  content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n  content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n  content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n  content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n  content: \"\\f103\";\n}\n.fa-angle-left:before {\n  content: \"\\f104\";\n}\n.fa-angle-right:before {\n  content: \"\\f105\";\n}\n.fa-angle-up:before {\n  content: \"\\f106\";\n}\n.fa-angle-down:before {\n  content: \"\\f107\";\n}\n.fa-desktop:before {\n  content: \"\\f108\";\n}\n.fa-laptop:before {\n  content: \"\\f109\";\n}\n.fa-tablet:before {\n  content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n  content: \"\\f10b\";\n}\n.fa-circle-o:before {\n  content: \"\\f10c\";\n}\n.fa-quote-left:before {\n  content: \"\\f10d\";\n}\n.fa-quote-right:before {\n  content: \"\\f10e\";\n}\n.fa-spinner:before {\n  content: \"\\f110\";\n}\n.fa-circle:before {\n  content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n  content: \"\\f112\";\n}\n.fa-github-alt:before {\n  content: \"\\f113\";\n}\n.fa-folder-o:before {\n  content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n  content: \"\\f115\";\n}\n.fa-smile-o:before {\n  content: \"\\f118\";\n}\n.fa-frown-o:before {\n  content: \"\\f119\";\n}\n.fa-meh-o:before {\n  content: \"\\f11a\";\n}\n.fa-gamepad:before {\n  content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n  content: \"\\f11c\";\n}\n.fa-flag-o:before {\n  content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n  content: \"\\f11e\";\n}\n.fa-terminal:before {\n  content: \"\\f120\";\n}\n.fa-code:before {\n  content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n  content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n  content: \"\\f123\";\n}\n.fa-location-arrow:before {\n  content: \"\\f124\";\n}\n.fa-crop:before {\n  content: \"\\f125\";\n}\n.fa-code-fork:before {\n  content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n  content: \"\\f127\";\n}\n.fa-question:before {\n  content: \"\\f128\";\n}\n.fa-info:before {\n  content: \"\\f129\";\n}\n.fa-exclamation:before {\n  content: \"\\f12a\";\n}\n.fa-superscript:before {\n  content: \"\\f12b\";\n}\n.fa-subscript:before {\n  content: \"\\f12c\";\n}\n.fa-eraser:before {\n  content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n  content: \"\\f12e\";\n}\n.fa-microphone:before {\n  content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n  content: \"\\f131\";\n}\n.fa-shield:before {\n  content: \"\\f132\";\n}\n.fa-calendar-o:before {\n  content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n  content: \"\\f134\";\n}\n.fa-rocket:before {\n  content: \"\\f135\";\n}\n.fa-maxcdn:before {\n  content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n  content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n  content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n  content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n  content: \"\\f13a\";\n}\n.fa-html5:before {\n  content: \"\\f13b\";\n}\n.fa-css3:before {\n  content: \"\\f13c\";\n}\n.fa-anchor:before {\n  content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n  content: \"\\f13e\";\n}\n.fa-bullseye:before {\n  content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n  content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n  content: \"\\f142\";\n}\n.fa-rss-square:before {\n  content: \"\\f143\";\n}\n.fa-play-circle:before {\n  content: \"\\f144\";\n}\n.fa-ticket:before {\n  content: \"\\f145\";\n}\n.fa-minus-square:before {\n  content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n  content: \"\\f147\";\n}\n.fa-level-up:before {\n  content: \"\\f148\";\n}\n.fa-level-down:before {\n  content: \"\\f149\";\n}\n.fa-check-square:before {\n  content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n  content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n  content: \"\\f14c\";\n}\n.fa-share-square:before {\n  content: \"\\f14d\";\n}\n.fa-compass:before {\n  content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n  content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n  content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n  content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n  content: \"\\f153\";\n}\n.fa-gbp:before {\n  content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n  content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n  content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n  content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n  content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n  content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n  content: \"\\f15a\";\n}\n.fa-file:before {\n  content: \"\\f15b\";\n}\n.fa-file-text:before {\n  content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n  content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n  content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n  content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n  content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n  content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n  content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n  content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n  content: \"\\f165\";\n}\n.fa-youtube-square:before {\n  content: \"\\f166\";\n}\n.fa-youtube:before {\n  content: \"\\f167\";\n}\n.fa-xing:before {\n  content: \"\\f168\";\n}\n.fa-xing-square:before {\n  content: \"\\f169\";\n}\n.fa-youtube-play:before {\n  content: \"\\f16a\";\n}\n.fa-dropbox:before {\n  content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n  content: \"\\f16c\";\n}\n.fa-instagram:before {\n  content: \"\\f16d\";\n}\n.fa-flickr:before {\n  content: \"\\f16e\";\n}\n.fa-adn:before {\n  content: \"\\f170\";\n}\n.fa-bitbucket:before {\n  content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n  content: \"\\f172\";\n}\n.fa-tumblr:before {\n  content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n  content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n  content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n  content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n  content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n  content: \"\\f178\";\n}\n.fa-apple:before {\n  content: \"\\f179\";\n}\n.fa-windows:before {\n  content: \"\\f17a\";\n}\n.fa-android:before {\n  content: \"\\f17b\";\n}\n.fa-linux:before {\n  content: \"\\f17c\";\n}\n.fa-dribbble:before {\n  content: \"\\f17d\";\n}\n.fa-skype:before {\n  content: \"\\f17e\";\n}\n.fa-foursquare:before {\n  content: \"\\f180\";\n}\n.fa-trello:before {\n  content: \"\\f181\";\n}\n.fa-female:before {\n  content: \"\\f182\";\n}\n.fa-male:before {\n  content: \"\\f183\";\n}\n.fa-gittip:before {\n  content: \"\\f184\";\n}\n.fa-sun-o:before {\n  content: \"\\f185\";\n}\n.fa-moon-o:before {\n  content: \"\\f186\";\n}\n.fa-archive:before {\n  content: \"\\f187\";\n}\n.fa-bug:before {\n  content: \"\\f188\";\n}\n.fa-vk:before {\n  content: \"\\f189\";\n}\n.fa-weibo:before {\n  content: \"\\f18a\";\n}\n.fa-renren:before {\n  content: \"\\f18b\";\n}\n.fa-pagelines:before {\n  content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n  content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n  content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n  content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n  content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n  content: \"\\f192\";\n}\n.fa-wheelchair:before {\n  content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n  content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n  content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n  content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n  content: \"\\f197\";\n}\n.fa-slack:before {\n  content: \"\\f198\";\n}\n.fa-envelope-square:before {\n  content: \"\\f199\";\n}\n.fa-wordpress:before {\n  content: \"\\f19a\";\n}\n.fa-openid:before {\n  content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n  content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n  content: \"\\f19d\";\n}\n.fa-yahoo:before {\n  content: \"\\f19e\";\n}\n.fa-google:before {\n  content: \"\\f1a0\";\n}\n.fa-reddit:before {\n  content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n  content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n  content: \"\\f1a4\";\n}\n.fa-delicious:before {\n  content: \"\\f1a5\";\n}\n.fa-digg:before {\n  content: \"\\f1a6\";\n}\n.fa-pied-piper:before {\n  content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\";\n}\n.fa-drupal:before {\n  content: \"\\f1a9\";\n}\n.fa-joomla:before {\n  content: \"\\f1aa\";\n}\n.fa-language:before {\n  content: \"\\f1ab\";\n}\n.fa-fax:before {\n  content: \"\\f1ac\";\n}\n.fa-building:before {\n  content: \"\\f1ad\";\n}\n.fa-child:before {\n  content: \"\\f1ae\";\n}\n.fa-paw:before {\n  content: \"\\f1b0\";\n}\n.fa-spoon:before {\n  content: \"\\f1b1\";\n}\n.fa-cube:before {\n  content: \"\\f1b2\";\n}\n.fa-cubes:before {\n  content: \"\\f1b3\";\n}\n.fa-behance:before {\n  content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n  content: \"\\f1b5\";\n}\n.fa-steam:before {\n  content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n  content: \"\\f1b7\";\n}\n.fa-recycle:before {\n  content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n  content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n  content: \"\\f1ba\";\n}\n.fa-tree:before {\n  content: \"\\f1bb\";\n}\n.fa-spotify:before {\n  content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n  content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n  content: \"\\f1be\";\n}\n.fa-database:before {\n  content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n  content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n  content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n  content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n  content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n  content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n  content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n  content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n  content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n  content: \"\\f1c9\";\n}\n.fa-vine:before {\n  content: \"\\f1ca\";\n}\n.fa-codepen:before {\n  content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n  content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n  content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n  content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-rebel:before {\n  content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n  content: \"\\f1d1\";\n}\n.fa-git-square:before {\n  content: \"\\f1d2\";\n}\n.fa-git:before {\n  content: \"\\f1d3\";\n}\n.fa-hacker-news:before {\n  content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\";\n}\n.fa-qq:before {\n  content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n  content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n  content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n  content: \"\\f1d9\";\n}\n.fa-history:before {\n  content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n  content: \"\\f1db\";\n}\n.fa-header:before {\n  content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n  content: \"\\f1dd\";\n}\n.fa-sliders:before {\n  content: \"\\f1de\";\n}\n.fa-share-alt:before {\n  content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n  content: \"\\f1e1\";\n}\n.fa-bomb:before {\n  content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n  content: \"\\f1e3\";\n}\n.fa-tty:before {\n  content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n  content: \"\\f1e5\";\n}\n.fa-plug:before {\n  content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n  content: \"\\f1e7\";\n}\n.fa-twitch:before {\n  content: \"\\f1e8\";\n}\n.fa-yelp:before {\n  content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n  content: \"\\f1ea\";\n}\n.fa-wifi:before {\n  content: \"\\f1eb\";\n}\n.fa-calculator:before {\n  content: \"\\f1ec\";\n}\n.fa-paypal:before {\n  content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n  content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n  content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n  content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n  content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n  content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n  content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n  content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n  content: \"\\f1f7\";\n}\n.fa-trash:before {\n  content: \"\\f1f8\";\n}\n.fa-copyright:before {\n  content: \"\\f1f9\";\n}\n.fa-at:before {\n  content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n  content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n  content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n  content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n  content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n  content: \"\\f200\";\n}\n.fa-line-chart:before {\n  content: \"\\f201\";\n}\n.fa-lastfm:before {\n  content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n  content: \"\\f203\";\n}\n.fa-toggle-off:before {\n  content: \"\\f204\";\n}\n.fa-toggle-on:before {\n  content: \"\\f205\";\n}\n.fa-bicycle:before {\n  content: \"\\f206\";\n}\n.fa-bus:before {\n  content: \"\\f207\";\n}\n.fa-ioxhost:before {\n  content: \"\\f208\";\n}\n.fa-angellist:before {\n  content: \"\\f209\";\n}\n.fa-cc:before {\n  content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n  content: \"\\f20b\";\n}\n.fa-meanpath:before {\n  content: \"\\f20c\";\n}\n/*!\n*\n* IPython base\n*\n*/\n.modal.fade .modal-dialog {\n  -webkit-transform: translate(0, 0);\n  -ms-transform: translate(0, 0);\n  -o-transform: translate(0, 0);\n  transform: translate(0, 0);\n}\ncode {\n  color: #000;\n}\npre {\n  font-size: inherit;\n  line-height: inherit;\n}\nlabel {\n  font-weight: normal;\n}\n/* Make the page background atleast 100% the height of the view port */\n/* Make the page itself atleast 70% the height of the view port */\n.border-box-sizing {\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\n.corner-all {\n  border-radius: 2px;\n}\n.no-padding {\n  padding: 0px;\n}\n/* Flexible box model classes */\n/* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */\n/* This file is a compatability layer.  It allows the usage of flexible box \nmodel layouts accross multiple browsers, including older browsers.  The newest,\nuniversal implementation of the flexible box model is used when available (see\n`Modern browsers` comments below).  Browsers that are known to implement this \nnew spec completely include:\n\n    Firefox 28.0+\n    Chrome 29.0+\n    Internet Explorer 11+ \n    Opera 17.0+\n\nBrowsers not listed, including Safari, are supported via the styling under the\n`Old browsers` comments below.\n*/\n.hbox {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\n.hbox > * {\n  /* Old browsers */\n  -webkit-box-flex: 0;\n  -moz-box-flex: 0;\n  box-flex: 0;\n  /* Modern browsers */\n  flex: none;\n}\n.vbox {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n}\n.vbox > * {\n  /* Old browsers */\n  -webkit-box-flex: 0;\n  -moz-box-flex: 0;\n  box-flex: 0;\n  /* Modern browsers */\n  flex: none;\n}\n.hbox.reverse,\n.vbox.reverse,\n.reverse {\n  /* Old browsers */\n  -webkit-box-direction: reverse;\n  -moz-box-direction: reverse;\n  box-direction: reverse;\n  /* Modern browsers */\n  flex-direction: row-reverse;\n}\n.hbox.box-flex0,\n.vbox.box-flex0,\n.box-flex0 {\n  /* Old browsers */\n  -webkit-box-flex: 0;\n  -moz-box-flex: 0;\n  box-flex: 0;\n  /* Modern browsers */\n  flex: none;\n  width: auto;\n}\n.hbox.box-flex1,\n.vbox.box-flex1,\n.box-flex1 {\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\n.hbox.box-flex,\n.vbox.box-flex,\n.box-flex {\n  /* Old browsers */\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\n.hbox.box-flex2,\n.vbox.box-flex2,\n.box-flex2 {\n  /* Old browsers */\n  -webkit-box-flex: 2;\n  -moz-box-flex: 2;\n  box-flex: 2;\n  /* Modern browsers */\n  flex: 2;\n}\n.box-group1 {\n  /*  Deprecated */\n  -webkit-box-flex-group: 1;\n  -moz-box-flex-group: 1;\n  box-flex-group: 1;\n}\n.box-group2 {\n  /* Deprecated */\n  -webkit-box-flex-group: 2;\n  -moz-box-flex-group: 2;\n  box-flex-group: 2;\n}\n.hbox.start,\n.vbox.start,\n.start {\n  /* Old browsers */\n  -webkit-box-pack: start;\n  -moz-box-pack: start;\n  box-pack: start;\n  /* Modern browsers */\n  justify-content: flex-start;\n}\n.hbox.end,\n.vbox.end,\n.end {\n  /* Old browsers */\n  -webkit-box-pack: end;\n  -moz-box-pack: end;\n  box-pack: end;\n  /* Modern browsers */\n  justify-content: flex-end;\n}\n.hbox.center,\n.vbox.center,\n.center {\n  /* Old browsers */\n  -webkit-box-pack: center;\n  -moz-box-pack: center;\n  box-pack: center;\n  /* Modern browsers */\n  justify-content: center;\n}\n.hbox.baseline,\n.vbox.baseline,\n.baseline {\n  /* Old browsers */\n  -webkit-box-pack: baseline;\n  -moz-box-pack: baseline;\n  box-pack: baseline;\n  /* Modern browsers */\n  justify-content: baseline;\n}\n.hbox.stretch,\n.vbox.stretch,\n.stretch {\n  /* Old browsers */\n  -webkit-box-pack: stretch;\n  -moz-box-pack: stretch;\n  box-pack: stretch;\n  /* Modern browsers */\n  justify-content: stretch;\n}\n.hbox.align-start,\n.vbox.align-start,\n.align-start {\n  /* Old browsers */\n  -webkit-box-align: start;\n  -moz-box-align: start;\n  box-align: start;\n  /* Modern browsers */\n  align-items: flex-start;\n}\n.hbox.align-end,\n.vbox.align-end,\n.align-end {\n  /* Old browsers */\n  -webkit-box-align: end;\n  -moz-box-align: end;\n  box-align: end;\n  /* Modern browsers */\n  align-items: flex-end;\n}\n.hbox.align-center,\n.vbox.align-center,\n.align-center {\n  /* Old browsers */\n  -webkit-box-align: center;\n  -moz-box-align: center;\n  box-align: center;\n  /* Modern browsers */\n  align-items: center;\n}\n.hbox.align-baseline,\n.vbox.align-baseline,\n.align-baseline {\n  /* Old browsers */\n  -webkit-box-align: baseline;\n  -moz-box-align: baseline;\n  box-align: baseline;\n  /* Modern browsers */\n  align-items: baseline;\n}\n.hbox.align-stretch,\n.vbox.align-stretch,\n.align-stretch {\n  /* Old browsers */\n  -webkit-box-align: stretch;\n  -moz-box-align: stretch;\n  box-align: stretch;\n  /* Modern browsers */\n  align-items: stretch;\n}\ndiv.error {\n  margin: 2em;\n  text-align: center;\n}\ndiv.error > h1 {\n  font-size: 500%;\n  line-height: normal;\n}\ndiv.error > p {\n  font-size: 200%;\n  line-height: normal;\n}\ndiv.traceback-wrapper {\n  text-align: left;\n  max-width: 800px;\n  margin: auto;\n}\n/**\n * Primary styles\n *\n * Author: Jupyter Development Team\n */\nbody {\n  background-color: #fff;\n  /* This makes sure that the body covers the entire window and needs to\n       be in a different element than the display: box in wrapper below */\n  position: absolute;\n  left: 0px;\n  right: 0px;\n  top: 0px;\n  bottom: 0px;\n  overflow: visible;\n}\nbody > #header {\n  /* Initially hidden to prevent FLOUC */\n  display: none;\n  background-color: #fff;\n  /* Display over codemirror */\n  position: relative;\n  z-index: 100;\n}\nbody > #header #header-container {\n  padding-bottom: 5px;\n  padding-top: 5px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\nbody > #header .header-bar {\n  width: 100%;\n  height: 1px;\n  background: #e7e7e7;\n  margin-bottom: -1px;\n}\n@media print {\n  body > #header {\n    display: none !important;\n  }\n}\n#header-spacer {\n  width: 100%;\n  visibility: hidden;\n}\n@media print {\n  #header-spacer {\n    display: none;\n  }\n}\n#ipython_notebook {\n  padding-left: 0px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n@media (max-width: 991px) {\n  #ipython_notebook {\n    margin-left: 10px;\n  }\n}\n#noscript {\n  width: auto;\n  padding-top: 16px;\n  padding-bottom: 16px;\n  text-align: center;\n  font-size: 22px;\n  color: red;\n  font-weight: bold;\n}\n#ipython_notebook img {\n  height: 28px;\n}\n#site {\n  width: 100%;\n  display: none;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  overflow: auto;\n}\n@media print {\n  #site {\n    height: auto !important;\n  }\n}\n/* Smaller buttons */\n.ui-button .ui-button-text {\n  padding: 0.2em 0.8em;\n  font-size: 77%;\n}\ninput.ui-button {\n  padding: 0.3em 0.9em;\n}\nspan#login_widget {\n  float: right;\n}\nspan#login_widget > .button,\n#logout {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\nspan#login_widget > .button:focus,\n#logout:focus,\nspan#login_widget > .button.focus,\n#logout.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\nspan#login_widget > .button:hover,\n#logout:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\nspan#login_widget > .button:active,\n#logout:active,\nspan#login_widget > .button.active,\n#logout.active,\n.open > .dropdown-togglespan#login_widget > .button,\n.open > .dropdown-toggle#logout {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\nspan#login_widget > .button:active:hover,\n#logout:active:hover,\nspan#login_widget > .button.active:hover,\n#logout.active:hover,\n.open > .dropdown-togglespan#login_widget > .button:hover,\n.open > .dropdown-toggle#logout:hover,\nspan#login_widget > .button:active:focus,\n#logout:active:focus,\nspan#login_widget > .button.active:focus,\n#logout.active:focus,\n.open > .dropdown-togglespan#login_widget > .button:focus,\n.open > .dropdown-toggle#logout:focus,\nspan#login_widget > .button:active.focus,\n#logout:active.focus,\nspan#login_widget > .button.active.focus,\n#logout.active.focus,\n.open > .dropdown-togglespan#login_widget > .button.focus,\n.open > .dropdown-toggle#logout.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\nspan#login_widget > .button:active,\n#logout:active,\nspan#login_widget > .button.active,\n#logout.active,\n.open > .dropdown-togglespan#login_widget > .button,\n.open > .dropdown-toggle#logout {\n  background-image: none;\n}\nspan#login_widget > .button.disabled:hover,\n#logout.disabled:hover,\nspan#login_widget > .button[disabled]:hover,\n#logout[disabled]:hover,\nfieldset[disabled] span#login_widget > .button:hover,\nfieldset[disabled] #logout:hover,\nspan#login_widget > .button.disabled:focus,\n#logout.disabled:focus,\nspan#login_widget > .button[disabled]:focus,\n#logout[disabled]:focus,\nfieldset[disabled] span#login_widget > .button:focus,\nfieldset[disabled] #logout:focus,\nspan#login_widget > .button.disabled.focus,\n#logout.disabled.focus,\nspan#login_widget > .button[disabled].focus,\n#logout[disabled].focus,\nfieldset[disabled] span#login_widget > .button.focus,\nfieldset[disabled] #logout.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\nspan#login_widget > .button .badge,\n#logout .badge {\n  color: #fff;\n  background-color: #333;\n}\n.nav-header {\n  text-transform: none;\n}\n#header > span {\n  margin-top: 10px;\n}\n.modal_stretch .modal-dialog {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  min-height: 80vh;\n}\n.modal_stretch .modal-dialog .modal-body {\n  max-height: calc(100vh - 200px);\n  overflow: auto;\n  flex: 1;\n}\n@media (min-width: 768px) {\n  .modal .modal-dialog {\n    width: 700px;\n  }\n}\n@media (min-width: 768px) {\n  select.form-control {\n    margin-left: 12px;\n    margin-right: 12px;\n  }\n}\n/*!\n*\n* IPython auth\n*\n*/\n.center-nav {\n  display: inline-block;\n  margin-bottom: -4px;\n}\n/*!\n*\n* IPython tree view\n*\n*/\n/* We need an invisible input field on top of the sentense*/\n/* \"Drag file onto the list ...\" */\n.alternate_upload {\n  background-color: none;\n  display: inline;\n}\n.alternate_upload.form {\n  padding: 0;\n  margin: 0;\n}\n.alternate_upload input.fileinput {\n  text-align: center;\n  vertical-align: middle;\n  display: inline;\n  opacity: 0;\n  z-index: 2;\n  width: 12ex;\n  margin-right: -12ex;\n}\n.alternate_upload .btn-upload {\n  height: 22px;\n}\n/**\n * Primary styles\n *\n * Author: Jupyter Development Team\n */\nul#tabs {\n  margin-bottom: 4px;\n}\nul#tabs a {\n  padding-top: 6px;\n  padding-bottom: 4px;\n}\nul.breadcrumb a:focus,\nul.breadcrumb a:hover {\n  text-decoration: none;\n}\nul.breadcrumb i.icon-home {\n  font-size: 16px;\n  margin-right: 4px;\n}\nul.breadcrumb span {\n  color: #5e5e5e;\n}\n.list_toolbar {\n  padding: 4px 0 4px 0;\n  vertical-align: middle;\n}\n.list_toolbar .tree-buttons {\n  padding-top: 1px;\n}\n.dynamic-buttons {\n  padding-top: 3px;\n  display: inline-block;\n}\n.list_toolbar [class*=\"span\"] {\n  min-height: 24px;\n}\n.list_header {\n  font-weight: bold;\n  background-color: #EEE;\n}\n.list_placeholder {\n  font-weight: bold;\n  padding-top: 4px;\n  padding-bottom: 4px;\n  padding-left: 7px;\n  padding-right: 7px;\n}\n.list_container {\n  margin-top: 4px;\n  margin-bottom: 20px;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n}\n.list_container > div {\n  border-bottom: 1px solid #ddd;\n}\n.list_container > div:hover .list-item {\n  background-color: red;\n}\n.list_container > div:last-child {\n  border: none;\n}\n.list_item:hover .list_item {\n  background-color: #ddd;\n}\n.list_item a {\n  text-decoration: none;\n}\n.list_item:hover {\n  background-color: #fafafa;\n}\n.list_header > div,\n.list_item > div {\n  padding-top: 4px;\n  padding-bottom: 4px;\n  padding-left: 7px;\n  padding-right: 7px;\n  line-height: 22px;\n}\n.list_header > div input,\n.list_item > div input {\n  margin-right: 7px;\n  margin-left: 14px;\n  vertical-align: baseline;\n  line-height: 22px;\n  position: relative;\n  top: -1px;\n}\n.list_header > div .item_link,\n.list_item > div .item_link {\n  margin-left: -1px;\n  vertical-align: baseline;\n  line-height: 22px;\n}\n.new-file input[type=checkbox] {\n  visibility: hidden;\n}\n.item_name {\n  line-height: 22px;\n  height: 24px;\n}\n.item_icon {\n  font-size: 14px;\n  color: #5e5e5e;\n  margin-right: 7px;\n  margin-left: 7px;\n  line-height: 22px;\n  vertical-align: baseline;\n}\n.item_buttons {\n  line-height: 1em;\n  margin-left: -5px;\n}\n.item_buttons .btn,\n.item_buttons .btn-group,\n.item_buttons .input-group {\n  float: left;\n}\n.item_buttons > .btn,\n.item_buttons > .btn-group,\n.item_buttons > .input-group {\n  margin-left: 5px;\n}\n.item_buttons .btn {\n  min-width: 13ex;\n}\n.item_buttons .running-indicator {\n  padding-top: 4px;\n  color: #5cb85c;\n}\n.item_buttons .kernel-name {\n  padding-top: 4px;\n  color: #5bc0de;\n  margin-right: 7px;\n  float: left;\n}\n.toolbar_info {\n  height: 24px;\n  line-height: 24px;\n}\n.list_item input:not([type=checkbox]) {\n  padding-top: 3px;\n  padding-bottom: 3px;\n  height: 22px;\n  line-height: 14px;\n  margin: 0px;\n}\n.highlight_text {\n  color: blue;\n}\n#project_name {\n  display: inline-block;\n  padding-left: 7px;\n  margin-left: -2px;\n}\n#project_name > .breadcrumb {\n  padding: 0px;\n  margin-bottom: 0px;\n  background-color: transparent;\n  font-weight: bold;\n}\n#tree-selector {\n  padding-right: 0px;\n}\n#button-select-all {\n  min-width: 50px;\n}\n#select-all {\n  margin-left: 7px;\n  margin-right: 2px;\n}\n.menu_icon {\n  margin-right: 2px;\n}\n.tab-content .row {\n  margin-left: 0px;\n  margin-right: 0px;\n}\n.folder_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f114\";\n}\n.folder_icon:before.pull-left {\n  margin-right: .3em;\n}\n.folder_icon:before.pull-right {\n  margin-left: .3em;\n}\n.notebook_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f02d\";\n  position: relative;\n  top: -1px;\n}\n.notebook_icon:before.pull-left {\n  margin-right: .3em;\n}\n.notebook_icon:before.pull-right {\n  margin-left: .3em;\n}\n.running_notebook_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f02d\";\n  position: relative;\n  top: -1px;\n  color: #5cb85c;\n}\n.running_notebook_icon:before.pull-left {\n  margin-right: .3em;\n}\n.running_notebook_icon:before.pull-right {\n  margin-left: .3em;\n}\n.file_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f016\";\n  position: relative;\n  top: -2px;\n}\n.file_icon:before.pull-left {\n  margin-right: .3em;\n}\n.file_icon:before.pull-right {\n  margin-left: .3em;\n}\n#notebook_toolbar .pull-right {\n  padding-top: 0px;\n  margin-right: -1px;\n}\nul#new-menu {\n  left: auto;\n  right: 0;\n}\n.kernel-menu-icon {\n  padding-right: 12px;\n  width: 24px;\n  content: \"\\f096\";\n}\n.kernel-menu-icon:before {\n  content: \"\\f096\";\n}\n.kernel-menu-icon-current:before {\n  content: \"\\f00c\";\n}\n#tab_content {\n  padding-top: 20px;\n}\n#running .panel-group .panel {\n  margin-top: 3px;\n  margin-bottom: 1em;\n}\n#running .panel-group .panel .panel-heading {\n  background-color: #EEE;\n  padding-top: 4px;\n  padding-bottom: 4px;\n  padding-left: 7px;\n  padding-right: 7px;\n  line-height: 22px;\n}\n#running .panel-group .panel .panel-heading a:focus,\n#running .panel-group .panel .panel-heading a:hover {\n  text-decoration: none;\n}\n#running .panel-group .panel .panel-body {\n  padding: 0px;\n}\n#running .panel-group .panel .panel-body .list_container {\n  margin-top: 0px;\n  margin-bottom: 0px;\n  border: 0px;\n  border-radius: 0px;\n}\n#running .panel-group .panel .panel-body .list_container .list_item {\n  border-bottom: 1px solid #ddd;\n}\n#running .panel-group .panel .panel-body .list_container .list_item:last-child {\n  border-bottom: 0px;\n}\n.delete-button {\n  display: none;\n}\n.duplicate-button {\n  display: none;\n}\n.rename-button {\n  display: none;\n}\n.shutdown-button {\n  display: none;\n}\n.dynamic-instructions {\n  display: inline-block;\n  padding-top: 4px;\n}\n/*!\n*\n* IPython text editor webapp\n*\n*/\n.selected-keymap i.fa {\n  padding: 0px 5px;\n}\n.selected-keymap i.fa:before {\n  content: \"\\f00c\";\n}\n#mode-menu {\n  overflow: auto;\n  max-height: 20em;\n}\n.edit_app #header {\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n}\n.edit_app #menubar .navbar {\n  /* Use a negative 1 bottom margin, so the border overlaps the border of the\n    header */\n  margin-bottom: -1px;\n}\n.dirty-indicator {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  width: 20px;\n}\n.dirty-indicator.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator.pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-dirty {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  width: 20px;\n}\n.dirty-indicator-dirty.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-dirty.pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-clean {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  width: 20px;\n}\n.dirty-indicator-clean.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-clean.pull-right {\n  margin-left: .3em;\n}\n.dirty-indicator-clean:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f00c\";\n}\n.dirty-indicator-clean:before.pull-left {\n  margin-right: .3em;\n}\n.dirty-indicator-clean:before.pull-right {\n  margin-left: .3em;\n}\n#filename {\n  font-size: 16pt;\n  display: table;\n  padding: 0px 5px;\n}\n#current-mode {\n  padding-left: 5px;\n  padding-right: 5px;\n}\n#texteditor-backdrop {\n  padding-top: 20px;\n  padding-bottom: 20px;\n}\n@media not print {\n  #texteditor-backdrop {\n    background-color: #EEE;\n  }\n}\n@media print {\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutter,\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutters {\n    background-color: #fff;\n  }\n}\n@media not print {\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutter,\n  #texteditor-backdrop #texteditor-container .CodeMirror-gutters {\n    background-color: #fff;\n  }\n}\n@media not print {\n  #texteditor-backdrop #texteditor-container {\n    padding: 0px;\n    background-color: #fff;\n    -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n    box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  }\n}\n/*!\n*\n* IPython notebook\n*\n*/\n/* CSS font colors for translated ANSI colors. */\n.ansibold {\n  font-weight: bold;\n}\n/* use dark versions for foreground, to improve visibility */\n.ansiblack {\n  color: black;\n}\n.ansired {\n  color: darkred;\n}\n.ansigreen {\n  color: darkgreen;\n}\n.ansiyellow {\n  color: #c4a000;\n}\n.ansiblue {\n  color: darkblue;\n}\n.ansipurple {\n  color: darkviolet;\n}\n.ansicyan {\n  color: steelblue;\n}\n.ansigray {\n  color: gray;\n}\n/* and light for background, for the same reason */\n.ansibgblack {\n  background-color: black;\n}\n.ansibgred {\n  background-color: red;\n}\n.ansibggreen {\n  background-color: green;\n}\n.ansibgyellow {\n  background-color: yellow;\n}\n.ansibgblue {\n  background-color: blue;\n}\n.ansibgpurple {\n  background-color: magenta;\n}\n.ansibgcyan {\n  background-color: cyan;\n}\n.ansibggray {\n  background-color: gray;\n}\ndiv.cell {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  border-radius: 2px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  border-width: 1px;\n  border-style: solid;\n  border-color: transparent;\n  width: 100%;\n  padding: 5px;\n  /* This acts as a spacer between cells, that is outside the border */\n  margin: 0px;\n  outline: none;\n  border-left-width: 1px;\n  padding-left: 5px;\n  background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%);\n}\ndiv.cell.jupyter-soft-selected {\n  border-left-color: #90CAF9;\n  border-left-color: #E3F2FD;\n  border-left-width: 1px;\n  padding-left: 5px;\n  border-right-color: #E3F2FD;\n  border-right-width: 1px;\n  background: #E3F2FD;\n}\n@media print {\n  div.cell.jupyter-soft-selected {\n    border-color: transparent;\n  }\n}\ndiv.cell.selected {\n  border-color: #ababab;\n  border-left-width: 0px;\n  padding-left: 6px;\n  background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%);\n}\n@media print {\n  div.cell.selected {\n    border-color: transparent;\n  }\n}\ndiv.cell.selected.jupyter-soft-selected {\n  border-left-width: 0;\n  padding-left: 6px;\n  background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%);\n}\n.edit_mode div.cell.selected {\n  border-color: #66BB6A;\n  border-left-width: 0px;\n  padding-left: 6px;\n  background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%);\n}\n@media print {\n  .edit_mode div.cell.selected {\n    border-color: transparent;\n  }\n}\n.prompt {\n  /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */\n  min-width: 14ex;\n  /* This padding is tuned to match the padding on the CodeMirror editor. */\n  padding: 0.4em;\n  margin: 0px;\n  font-family: monospace;\n  text-align: right;\n  /* This has to match that of the the CodeMirror class line-height below */\n  line-height: 1.21429em;\n  /* Don't highlight prompt number selection */\n  -webkit-touch-callout: none;\n  -webkit-user-select: none;\n  -khtml-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n  /* Use default cursor */\n  cursor: default;\n}\n@media (max-width: 540px) {\n  .prompt {\n    text-align: left;\n  }\n}\ndiv.inner_cell {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\n@-moz-document url-prefix() {\n  div.inner_cell {\n    overflow-x: hidden;\n  }\n}\n/* input_area and input_prompt must match in top border and margin for alignment */\ndiv.input_area {\n  border: 1px solid #cfcfcf;\n  border-radius: 2px;\n  background: #f7f7f7;\n  line-height: 1.21429em;\n}\n/* This is needed so that empty prompt areas can collapse to zero height when there\n   is no content in the output_subarea and the prompt. The main purpose of this is\n   to make sure that empty JavaScript output_subareas have no height. */\ndiv.prompt:empty {\n  padding-top: 0;\n  padding-bottom: 0;\n}\ndiv.unrecognized_cell {\n  padding: 5px 5px 5px 0px;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\ndiv.unrecognized_cell .inner_cell {\n  border-radius: 2px;\n  padding: 5px;\n  font-weight: bold;\n  color: red;\n  border: 1px solid #cfcfcf;\n  background: #eaeaea;\n}\ndiv.unrecognized_cell .inner_cell a {\n  color: inherit;\n  text-decoration: none;\n}\ndiv.unrecognized_cell .inner_cell a:hover {\n  color: inherit;\n  text-decoration: none;\n}\n@media (max-width: 540px) {\n  div.unrecognized_cell > div.prompt {\n    display: none;\n  }\n}\ndiv.code_cell {\n  /* avoid page breaking on code cells when printing */\n}\n@media print {\n  div.code_cell {\n    page-break-inside: avoid;\n  }\n}\n/* any special styling for code cells that are currently running goes here */\ndiv.input {\n  page-break-inside: avoid;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\n@media (max-width: 540px) {\n  div.input {\n    /* Old browsers */\n    display: -webkit-box;\n    -webkit-box-orient: vertical;\n    -webkit-box-align: stretch;\n    display: -moz-box;\n    -moz-box-orient: vertical;\n    -moz-box-align: stretch;\n    display: box;\n    box-orient: vertical;\n    box-align: stretch;\n    /* Modern browsers */\n    display: flex;\n    flex-direction: column;\n    align-items: stretch;\n  }\n}\n/* input_area and input_prompt must match in top border and margin for alignment */\ndiv.input_prompt {\n  color: #303F9F;\n  border-top: 1px solid transparent;\n}\ndiv.input_area > div.highlight {\n  margin: 0.4em;\n  border: none;\n  padding: 0px;\n  background-color: transparent;\n}\ndiv.input_area > div.highlight > pre {\n  margin: 0px;\n  border: none;\n  padding: 0px;\n  background-color: transparent;\n}\n/* The following gets added to the <head> if it is detected that the user has a\n * monospace font with inconsistent normal/bold/italic height.  See\n * notebookmain.js.  Such fonts will have keywords vertically offset with\n * respect to the rest of the text.  The user should select a better font.\n * See: https://github.com/ipython/ipython/issues/1503\n *\n * .CodeMirror span {\n *      vertical-align: bottom;\n * }\n */\n.CodeMirror {\n  line-height: 1.21429em;\n  /* Changed from 1em to our global default */\n  font-size: 14px;\n  height: auto;\n  /* Changed to auto to autogrow */\n  background: none;\n  /* Changed from white to allow our bg to show through */\n}\n.CodeMirror-scroll {\n  /*  The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/\n  /*  We have found that if it is visible, vertical scrollbars appear with font size changes.*/\n  overflow-y: hidden;\n  overflow-x: auto;\n}\n.CodeMirror-lines {\n  /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */\n  /* we have set a different line-height and want this to scale with that. */\n  padding: 0.4em;\n}\n.CodeMirror-linenumber {\n  padding: 0 8px 0 4px;\n}\n.CodeMirror-gutters {\n  border-bottom-left-radius: 2px;\n  border-top-left-radius: 2px;\n}\n.CodeMirror pre {\n  /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */\n  /* .CodeMirror-lines */\n  padding: 0;\n  border: 0;\n  border-radius: 0;\n}\n/*\n\nOriginal style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>\nAdapted from GitHub theme\n\n*/\n.highlight-base {\n  color: #000;\n}\n.highlight-variable {\n  color: #000;\n}\n.highlight-variable-2 {\n  color: #1a1a1a;\n}\n.highlight-variable-3 {\n  color: #333333;\n}\n.highlight-string {\n  color: #BA2121;\n}\n.highlight-comment {\n  color: #408080;\n  font-style: italic;\n}\n.highlight-number {\n  color: #080;\n}\n.highlight-atom {\n  color: #88F;\n}\n.highlight-keyword {\n  color: #008000;\n  font-weight: bold;\n}\n.highlight-builtin {\n  color: #008000;\n}\n.highlight-error {\n  color: #f00;\n}\n.highlight-operator {\n  color: #AA22FF;\n  font-weight: bold;\n}\n.highlight-meta {\n  color: #AA22FF;\n}\n/* previously not defined, copying from default codemirror */\n.highlight-def {\n  color: #00f;\n}\n.highlight-string-2 {\n  color: #f50;\n}\n.highlight-qualifier {\n  color: #555;\n}\n.highlight-bracket {\n  color: #997;\n}\n.highlight-tag {\n  color: #170;\n}\n.highlight-attribute {\n  color: #00c;\n}\n.highlight-header {\n  color: blue;\n}\n.highlight-quote {\n  color: #090;\n}\n.highlight-link {\n  color: #00c;\n}\n/* apply the same style to codemirror */\n.cm-s-ipython span.cm-keyword {\n  color: #008000;\n  font-weight: bold;\n}\n.cm-s-ipython span.cm-atom {\n  color: #88F;\n}\n.cm-s-ipython span.cm-number {\n  color: #080;\n}\n.cm-s-ipython span.cm-def {\n  color: #00f;\n}\n.cm-s-ipython span.cm-variable {\n  color: #000;\n}\n.cm-s-ipython span.cm-operator {\n  color: #AA22FF;\n  font-weight: bold;\n}\n.cm-s-ipython span.cm-variable-2 {\n  color: #1a1a1a;\n}\n.cm-s-ipython span.cm-variable-3 {\n  color: #333333;\n}\n.cm-s-ipython span.cm-comment {\n  color: #408080;\n  font-style: italic;\n}\n.cm-s-ipython span.cm-string {\n  color: #BA2121;\n}\n.cm-s-ipython span.cm-string-2 {\n  color: #f50;\n}\n.cm-s-ipython span.cm-meta {\n  color: #AA22FF;\n}\n.cm-s-ipython span.cm-qualifier {\n  color: #555;\n}\n.cm-s-ipython span.cm-builtin {\n  color: #008000;\n}\n.cm-s-ipython span.cm-bracket {\n  color: #997;\n}\n.cm-s-ipython span.cm-tag {\n  color: #170;\n}\n.cm-s-ipython span.cm-attribute {\n  color: #00c;\n}\n.cm-s-ipython span.cm-header {\n  color: blue;\n}\n.cm-s-ipython span.cm-quote {\n  color: #090;\n}\n.cm-s-ipython span.cm-link {\n  color: #00c;\n}\n.cm-s-ipython span.cm-error {\n  color: #f00;\n}\n.cm-s-ipython span.cm-tab {\n  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);\n  background-position: right;\n  background-repeat: no-repeat;\n}\ndiv.output_wrapper {\n  /* this position must be relative to enable descendents to be absolute within it */\n  position: relative;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n  z-index: 1;\n}\n/* class for the output area when it should be height-limited */\ndiv.output_scroll {\n  /* ideally, this would be max-height, but FF barfs all over that */\n  height: 24em;\n  /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */\n  width: 100%;\n  overflow: auto;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);\n  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);\n  display: block;\n}\n/* output div while it is collapsed */\ndiv.output_collapsed {\n  margin: 0px;\n  padding: 0px;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n}\ndiv.out_prompt_overlay {\n  height: 100%;\n  padding: 0px 0.4em;\n  position: absolute;\n  border-radius: 2px;\n}\ndiv.out_prompt_overlay:hover {\n  /* use inner shadow to get border that is computed the same on WebKit/FF */\n  -webkit-box-shadow: inset 0 0 1px #000;\n  box-shadow: inset 0 0 1px #000;\n  background: rgba(240, 240, 240, 0.5);\n}\ndiv.output_prompt {\n  color: #D84315;\n}\n/* This class is the outer container of all output sections. */\ndiv.output_area {\n  padding: 0px;\n  page-break-inside: avoid;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\ndiv.output_area .MathJax_Display {\n  text-align: left !important;\n}\ndiv.output_area .rendered_html table {\n  margin-left: 0;\n  margin-right: 0;\n}\ndiv.output_area .rendered_html img {\n  margin-left: 0;\n  margin-right: 0;\n}\ndiv.output_area img,\ndiv.output_area svg {\n  max-width: 100%;\n  height: auto;\n}\ndiv.output_area img.unconfined,\ndiv.output_area svg.unconfined {\n  max-width: none;\n}\n/* This is needed to protect the pre formating from global settings such\n   as that of bootstrap */\n.output {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: vertical;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: vertical;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: vertical;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: column;\n  align-items: stretch;\n}\n@media (max-width: 540px) {\n  div.output_area {\n    /* Old browsers */\n    display: -webkit-box;\n    -webkit-box-orient: vertical;\n    -webkit-box-align: stretch;\n    display: -moz-box;\n    -moz-box-orient: vertical;\n    -moz-box-align: stretch;\n    display: box;\n    box-orient: vertical;\n    box-align: stretch;\n    /* Modern browsers */\n    display: flex;\n    flex-direction: column;\n    align-items: stretch;\n  }\n}\ndiv.output_area pre {\n  margin: 0;\n  padding: 0;\n  border: 0;\n  vertical-align: baseline;\n  color: black;\n  background-color: transparent;\n  border-radius: 0;\n}\n/* This class is for the output subarea inside the output_area and after\n   the prompt div. */\ndiv.output_subarea {\n  overflow-x: auto;\n  padding: 0.4em;\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n  max-width: calc(100% - 14ex);\n}\ndiv.output_scroll div.output_subarea {\n  overflow-x: visible;\n}\n/* The rest of the output_* classes are for special styling of the different\n   output types */\n/* all text output has this class: */\ndiv.output_text {\n  text-align: left;\n  color: #000;\n  /* This has to match that of the the CodeMirror class line-height below */\n  line-height: 1.21429em;\n}\n/* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */\ndiv.output_stderr {\n  background: #fdd;\n  /* very light red background for stderr */\n}\ndiv.output_latex {\n  text-align: left;\n}\n/* Empty output_javascript divs should have no height */\ndiv.output_javascript:empty {\n  padding: 0;\n}\n.js-error {\n  color: darkred;\n}\n/* raw_input styles */\ndiv.raw_input_container {\n  line-height: 1.21429em;\n  padding-top: 5px;\n}\npre.raw_input_prompt {\n  /* nothing needed here. */\n}\ninput.raw_input {\n  font-family: monospace;\n  font-size: inherit;\n  color: inherit;\n  width: auto;\n  /* make sure input baseline aligns with prompt */\n  vertical-align: baseline;\n  /* padding + margin = 0.5em between prompt and cursor */\n  padding: 0em 0.25em;\n  margin: 0em 0.25em;\n}\ninput.raw_input:focus {\n  box-shadow: none;\n}\np.p-space {\n  margin-bottom: 10px;\n}\ndiv.output_unrecognized {\n  padding: 5px;\n  font-weight: bold;\n  color: red;\n}\ndiv.output_unrecognized a {\n  color: inherit;\n  text-decoration: none;\n}\ndiv.output_unrecognized a:hover {\n  color: inherit;\n  text-decoration: none;\n}\n.rendered_html {\n  color: #000;\n  /* any extras will just be numbers: */\n}\n.rendered_html em {\n  font-style: italic;\n}\n.rendered_html strong {\n  font-weight: bold;\n}\n.rendered_html u {\n  text-decoration: underline;\n}\n.rendered_html :link {\n  text-decoration: underline;\n}\n.rendered_html :visited {\n  text-decoration: underline;\n}\n.rendered_html h1 {\n  font-size: 185.7%;\n  margin: 1.08em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h2 {\n  font-size: 157.1%;\n  margin: 1.27em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h3 {\n  font-size: 128.6%;\n  margin: 1.55em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h4 {\n  font-size: 100%;\n  margin: 2em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n}\n.rendered_html h5 {\n  font-size: 100%;\n  margin: 2em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n  font-style: italic;\n}\n.rendered_html h6 {\n  font-size: 100%;\n  margin: 2em 0 0 0;\n  font-weight: bold;\n  line-height: 1.0;\n  font-style: italic;\n}\n.rendered_html h1:first-child {\n  margin-top: 0.538em;\n}\n.rendered_html h2:first-child {\n  margin-top: 0.636em;\n}\n.rendered_html h3:first-child {\n  margin-top: 0.777em;\n}\n.rendered_html h4:first-child {\n  margin-top: 1em;\n}\n.rendered_html h5:first-child {\n  margin-top: 1em;\n}\n.rendered_html h6:first-child {\n  margin-top: 1em;\n}\n.rendered_html ul {\n  list-style: disc;\n  margin: 0em 2em;\n  padding-left: 0px;\n}\n.rendered_html ul ul {\n  list-style: square;\n  margin: 0em 2em;\n}\n.rendered_html ul ul ul {\n  list-style: circle;\n  margin: 0em 2em;\n}\n.rendered_html ol {\n  list-style: decimal;\n  margin: 0em 2em;\n  padding-left: 0px;\n}\n.rendered_html ol ol {\n  list-style: upper-alpha;\n  margin: 0em 2em;\n}\n.rendered_html ol ol ol {\n  list-style: lower-alpha;\n  margin: 0em 2em;\n}\n.rendered_html ol ol ol ol {\n  list-style: lower-roman;\n  margin: 0em 2em;\n}\n.rendered_html ol ol ol ol ol {\n  list-style: decimal;\n  margin: 0em 2em;\n}\n.rendered_html * + ul {\n  margin-top: 1em;\n}\n.rendered_html * + ol {\n  margin-top: 1em;\n}\n.rendered_html hr {\n  color: black;\n  background-color: black;\n}\n.rendered_html pre {\n  margin: 1em 2em;\n}\n.rendered_html pre,\n.rendered_html code {\n  border: 0;\n  background-color: #fff;\n  color: #000;\n  font-size: 100%;\n  padding: 0px;\n}\n.rendered_html blockquote {\n  margin: 1em 2em;\n}\n.rendered_html table {\n  margin-left: auto;\n  margin-right: auto;\n  border: 1px solid black;\n  border-collapse: collapse;\n}\n.rendered_html tr,\n.rendered_html th,\n.rendered_html td {\n  border: 1px solid black;\n  border-collapse: collapse;\n  margin: 1em 2em;\n}\n.rendered_html td,\n.rendered_html th {\n  text-align: left;\n  vertical-align: middle;\n  padding: 4px;\n}\n.rendered_html th {\n  font-weight: bold;\n}\n.rendered_html * + table {\n  margin-top: 1em;\n}\n.rendered_html p {\n  text-align: left;\n}\n.rendered_html * + p {\n  margin-top: 1em;\n}\n.rendered_html img {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n.rendered_html * + img {\n  margin-top: 1em;\n}\n.rendered_html img,\n.rendered_html svg {\n  max-width: 100%;\n  height: auto;\n}\n.rendered_html img.unconfined,\n.rendered_html svg.unconfined {\n  max-width: none;\n}\ndiv.text_cell {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n}\n@media (max-width: 540px) {\n  div.text_cell > div.prompt {\n    display: none;\n  }\n}\ndiv.text_cell_render {\n  /*font-family: \"Helvetica Neue\", Arial, Helvetica, Geneva, sans-serif;*/\n  outline: none;\n  resize: none;\n  width: inherit;\n  border-style: none;\n  padding: 0.5em 0.5em 0.5em 0.4em;\n  color: #000;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\na.anchor-link:link {\n  text-decoration: none;\n  padding: 0px 20px;\n  visibility: hidden;\n}\nh1:hover .anchor-link,\nh2:hover .anchor-link,\nh3:hover .anchor-link,\nh4:hover .anchor-link,\nh5:hover .anchor-link,\nh6:hover .anchor-link {\n  visibility: visible;\n}\n.text_cell.rendered .input_area {\n  display: none;\n}\n.text_cell.rendered .rendered_html {\n  overflow-x: auto;\n  overflow-y: hidden;\n}\n.text_cell.unrendered .text_cell_render {\n  display: none;\n}\n.cm-header-1,\n.cm-header-2,\n.cm-header-3,\n.cm-header-4,\n.cm-header-5,\n.cm-header-6 {\n  font-weight: bold;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n}\n.cm-header-1 {\n  font-size: 185.7%;\n}\n.cm-header-2 {\n  font-size: 157.1%;\n}\n.cm-header-3 {\n  font-size: 128.6%;\n}\n.cm-header-4 {\n  font-size: 110%;\n}\n.cm-header-5 {\n  font-size: 100%;\n  font-style: italic;\n}\n.cm-header-6 {\n  font-size: 100%;\n  font-style: italic;\n}\n/*!\n*\n* IPython notebook webapp\n*\n*/\n@media (max-width: 767px) {\n  .notebook_app {\n    padding-left: 0px;\n    padding-right: 0px;\n  }\n}\n#ipython-main-app {\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  height: 100%;\n}\ndiv#notebook_panel {\n  margin: 0px;\n  padding: 0px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  height: 100%;\n}\ndiv#notebook {\n  font-size: 14px;\n  line-height: 20px;\n  overflow-y: hidden;\n  overflow-x: auto;\n  width: 100%;\n  /* This spaces the page away from the edge of the notebook area */\n  padding-top: 20px;\n  margin: 0px;\n  outline: none;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  min-height: 100%;\n}\n@media not print {\n  #notebook-container {\n    padding: 15px;\n    background-color: #fff;\n    min-height: 0;\n    -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n    box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  }\n}\n@media print {\n  #notebook-container {\n    width: 100%;\n  }\n}\ndiv.ui-widget-content {\n  border: 1px solid #ababab;\n  outline: none;\n}\npre.dialog {\n  background-color: #f7f7f7;\n  border: 1px solid #ddd;\n  border-radius: 2px;\n  padding: 0.4em;\n  padding-left: 2em;\n}\np.dialog {\n  padding: 0.2em;\n}\n/* Word-wrap output correctly.  This is the CSS3 spelling, though Firefox seems\n   to not honor it correctly.  Webkit browsers (Chrome, rekonq, Safari) do.\n */\npre,\ncode,\nkbd,\nsamp {\n  white-space: pre-wrap;\n}\n#fonttest {\n  font-family: monospace;\n}\np {\n  margin-bottom: 0;\n}\n.end_space {\n  min-height: 100px;\n  transition: height .2s ease;\n}\n.notebook_app > #header {\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n}\n@media not print {\n  .notebook_app {\n    background-color: #EEE;\n  }\n}\nkbd {\n  border-style: solid;\n  border-width: 1px;\n  box-shadow: none;\n  margin: 2px;\n  padding-left: 2px;\n  padding-right: 2px;\n  padding-top: 1px;\n  padding-bottom: 1px;\n}\n/* CSS for the cell toolbar */\n.celltoolbar {\n  border: thin solid #CFCFCF;\n  border-bottom: none;\n  background: #EEE;\n  border-radius: 2px 2px 0px 0px;\n  width: 100%;\n  height: 29px;\n  padding-right: 4px;\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n  /* Old browsers */\n  -webkit-box-pack: end;\n  -moz-box-pack: end;\n  box-pack: end;\n  /* Modern browsers */\n  justify-content: flex-end;\n  display: -webkit-flex;\n}\n@media print {\n  .celltoolbar {\n    display: none;\n  }\n}\n.ctb_hideshow {\n  display: none;\n  vertical-align: bottom;\n}\n/* ctb_show is added to the ctb_hideshow div to show the cell toolbar.\n   Cell toolbars are only shown when the ctb_global_show class is also set.\n*/\n.ctb_global_show .ctb_show.ctb_hideshow {\n  display: block;\n}\n.ctb_global_show .ctb_show + .input_area,\n.ctb_global_show .ctb_show + div.text_cell_input,\n.ctb_global_show .ctb_show ~ div.text_cell_render {\n  border-top-right-radius: 0px;\n  border-top-left-radius: 0px;\n}\n.ctb_global_show .ctb_show ~ div.text_cell_render {\n  border: 1px solid #cfcfcf;\n}\n.celltoolbar {\n  font-size: 87%;\n  padding-top: 3px;\n}\n.celltoolbar select {\n  display: block;\n  width: 100%;\n  height: 32px;\n  padding: 6px 12px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #555555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 1px;\n  width: inherit;\n  font-size: inherit;\n  height: 22px;\n  padding: 0px;\n  display: inline-block;\n}\n.celltoolbar select:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.celltoolbar select::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.celltoolbar select:-ms-input-placeholder {\n  color: #999;\n}\n.celltoolbar select::-webkit-input-placeholder {\n  color: #999;\n}\n.celltoolbar select::-ms-expand {\n  border: 0;\n  background-color: transparent;\n}\n.celltoolbar select[disabled],\n.celltoolbar select[readonly],\nfieldset[disabled] .celltoolbar select {\n  background-color: #eeeeee;\n  opacity: 1;\n}\n.celltoolbar select[disabled],\nfieldset[disabled] .celltoolbar select {\n  cursor: not-allowed;\n}\ntextarea.celltoolbar select {\n  height: auto;\n}\nselect.celltoolbar select {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.celltoolbar select,\nselect[multiple].celltoolbar select {\n  height: auto;\n}\n.celltoolbar label {\n  margin-left: 5px;\n  margin-right: 5px;\n}\n.completions {\n  position: absolute;\n  z-index: 110;\n  overflow: hidden;\n  border: 1px solid #ababab;\n  border-radius: 2px;\n  -webkit-box-shadow: 0px 6px 10px -1px #adadad;\n  box-shadow: 0px 6px 10px -1px #adadad;\n  line-height: 1;\n}\n.completions select {\n  background: white;\n  outline: none;\n  border: none;\n  padding: 0px;\n  margin: 0px;\n  overflow: auto;\n  font-family: monospace;\n  font-size: 110%;\n  color: #000;\n  width: auto;\n}\n.completions select option.context {\n  color: #286090;\n}\n#kernel_logo_widget {\n  float: right !important;\n  float: right;\n}\n#kernel_logo_widget .current_kernel_logo {\n  display: none;\n  margin-top: -1px;\n  margin-bottom: -1px;\n  width: 32px;\n  height: 32px;\n}\n#menubar {\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  margin-top: 1px;\n}\n#menubar .navbar {\n  border-top: 1px;\n  border-radius: 0px 0px 2px 2px;\n  margin-bottom: 0px;\n}\n#menubar .navbar-toggle {\n  float: left;\n  padding-top: 7px;\n  padding-bottom: 7px;\n  border: none;\n}\n#menubar .navbar-collapse {\n  clear: left;\n}\n.nav-wrapper {\n  border-bottom: 1px solid #e7e7e7;\n}\ni.menu-icon {\n  padding-top: 4px;\n}\nul#help_menu li a {\n  overflow: hidden;\n  padding-right: 2.2em;\n}\nul#help_menu li a i {\n  margin-right: -1.2em;\n}\n.dropdown-submenu {\n  position: relative;\n}\n.dropdown-submenu > .dropdown-menu {\n  top: 0;\n  left: 100%;\n  margin-top: -6px;\n  margin-left: -1px;\n}\n.dropdown-submenu:hover > .dropdown-menu {\n  display: block;\n}\n.dropdown-submenu > a:after {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  display: block;\n  content: \"\\f0da\";\n  float: right;\n  color: #333333;\n  margin-top: 2px;\n  margin-right: -10px;\n}\n.dropdown-submenu > a:after.pull-left {\n  margin-right: .3em;\n}\n.dropdown-submenu > a:after.pull-right {\n  margin-left: .3em;\n}\n.dropdown-submenu:hover > a:after {\n  color: #262626;\n}\n.dropdown-submenu.pull-left {\n  float: none;\n}\n.dropdown-submenu.pull-left > .dropdown-menu {\n  left: -100%;\n  margin-left: 10px;\n}\n#notification_area {\n  float: right !important;\n  float: right;\n  z-index: 10;\n}\n.indicator_area {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n}\n#kernel_indicator {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n  border-left: 1px solid;\n}\n#kernel_indicator .kernel_indicator_name {\n  padding-left: 5px;\n  padding-right: 5px;\n}\n#modal_indicator {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n}\n#readonly-indicator {\n  float: right !important;\n  float: right;\n  color: #777;\n  margin-left: 5px;\n  margin-right: 5px;\n  width: 11px;\n  z-index: 10;\n  text-align: center;\n  width: auto;\n  margin-top: 2px;\n  margin-bottom: 0px;\n  margin-left: 0px;\n  margin-right: 0px;\n  display: none;\n}\n.modal_indicator:before {\n  width: 1.28571429em;\n  text-align: center;\n}\n.edit_mode .modal_indicator:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f040\";\n}\n.edit_mode .modal_indicator:before.pull-left {\n  margin-right: .3em;\n}\n.edit_mode .modal_indicator:before.pull-right {\n  margin-left: .3em;\n}\n.command_mode .modal_indicator:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: ' ';\n}\n.command_mode .modal_indicator:before.pull-left {\n  margin-right: .3em;\n}\n.command_mode .modal_indicator:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_idle_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f10c\";\n}\n.kernel_idle_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_idle_icon:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_busy_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f111\";\n}\n.kernel_busy_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_busy_icon:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_dead_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f1e2\";\n}\n.kernel_dead_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_dead_icon:before.pull-right {\n  margin-left: .3em;\n}\n.kernel_disconnected_icon:before {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  content: \"\\f127\";\n}\n.kernel_disconnected_icon:before.pull-left {\n  margin-right: .3em;\n}\n.kernel_disconnected_icon:before.pull-right {\n  margin-left: .3em;\n}\n.notification_widget {\n  color: #777;\n  z-index: 10;\n  background: rgba(240, 240, 240, 0.5);\n  margin-right: 4px;\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.notification_widget:focus,\n.notification_widget.focus {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #8c8c8c;\n}\n.notification_widget:hover {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.notification_widget:active,\n.notification_widget.active,\n.open > .dropdown-toggle.notification_widget {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.notification_widget:active:hover,\n.notification_widget.active:hover,\n.open > .dropdown-toggle.notification_widget:hover,\n.notification_widget:active:focus,\n.notification_widget.active:focus,\n.open > .dropdown-toggle.notification_widget:focus,\n.notification_widget:active.focus,\n.notification_widget.active.focus,\n.open > .dropdown-toggle.notification_widget.focus {\n  color: #333;\n  background-color: #d4d4d4;\n  border-color: #8c8c8c;\n}\n.notification_widget:active,\n.notification_widget.active,\n.open > .dropdown-toggle.notification_widget {\n  background-image: none;\n}\n.notification_widget.disabled:hover,\n.notification_widget[disabled]:hover,\nfieldset[disabled] .notification_widget:hover,\n.notification_widget.disabled:focus,\n.notification_widget[disabled]:focus,\nfieldset[disabled] .notification_widget:focus,\n.notification_widget.disabled.focus,\n.notification_widget[disabled].focus,\nfieldset[disabled] .notification_widget.focus {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.notification_widget .badge {\n  color: #fff;\n  background-color: #333;\n}\n.notification_widget.warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.notification_widget.warning:focus,\n.notification_widget.warning.focus {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #985f0d;\n}\n.notification_widget.warning:hover {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.notification_widget.warning:active,\n.notification_widget.warning.active,\n.open > .dropdown-toggle.notification_widget.warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.notification_widget.warning:active:hover,\n.notification_widget.warning.active:hover,\n.open > .dropdown-toggle.notification_widget.warning:hover,\n.notification_widget.warning:active:focus,\n.notification_widget.warning.active:focus,\n.open > .dropdown-toggle.notification_widget.warning:focus,\n.notification_widget.warning:active.focus,\n.notification_widget.warning.active.focus,\n.open > .dropdown-toggle.notification_widget.warning.focus {\n  color: #fff;\n  background-color: #d58512;\n  border-color: #985f0d;\n}\n.notification_widget.warning:active,\n.notification_widget.warning.active,\n.open > .dropdown-toggle.notification_widget.warning {\n  background-image: none;\n}\n.notification_widget.warning.disabled:hover,\n.notification_widget.warning[disabled]:hover,\nfieldset[disabled] .notification_widget.warning:hover,\n.notification_widget.warning.disabled:focus,\n.notification_widget.warning[disabled]:focus,\nfieldset[disabled] .notification_widget.warning:focus,\n.notification_widget.warning.disabled.focus,\n.notification_widget.warning[disabled].focus,\nfieldset[disabled] .notification_widget.warning.focus {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.notification_widget.warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.notification_widget.success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.notification_widget.success:focus,\n.notification_widget.success.focus {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #255625;\n}\n.notification_widget.success:hover {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.notification_widget.success:active,\n.notification_widget.success.active,\n.open > .dropdown-toggle.notification_widget.success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.notification_widget.success:active:hover,\n.notification_widget.success.active:hover,\n.open > .dropdown-toggle.notification_widget.success:hover,\n.notification_widget.success:active:focus,\n.notification_widget.success.active:focus,\n.open > .dropdown-toggle.notification_widget.success:focus,\n.notification_widget.success:active.focus,\n.notification_widget.success.active.focus,\n.open > .dropdown-toggle.notification_widget.success.focus {\n  color: #fff;\n  background-color: #398439;\n  border-color: #255625;\n}\n.notification_widget.success:active,\n.notification_widget.success.active,\n.open > .dropdown-toggle.notification_widget.success {\n  background-image: none;\n}\n.notification_widget.success.disabled:hover,\n.notification_widget.success[disabled]:hover,\nfieldset[disabled] .notification_widget.success:hover,\n.notification_widget.success.disabled:focus,\n.notification_widget.success[disabled]:focus,\nfieldset[disabled] .notification_widget.success:focus,\n.notification_widget.success.disabled.focus,\n.notification_widget.success[disabled].focus,\nfieldset[disabled] .notification_widget.success.focus {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.notification_widget.success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.notification_widget.info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.notification_widget.info:focus,\n.notification_widget.info.focus {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #1b6d85;\n}\n.notification_widget.info:hover {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.notification_widget.info:active,\n.notification_widget.info.active,\n.open > .dropdown-toggle.notification_widget.info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.notification_widget.info:active:hover,\n.notification_widget.info.active:hover,\n.open > .dropdown-toggle.notification_widget.info:hover,\n.notification_widget.info:active:focus,\n.notification_widget.info.active:focus,\n.open > .dropdown-toggle.notification_widget.info:focus,\n.notification_widget.info:active.focus,\n.notification_widget.info.active.focus,\n.open > .dropdown-toggle.notification_widget.info.focus {\n  color: #fff;\n  background-color: #269abc;\n  border-color: #1b6d85;\n}\n.notification_widget.info:active,\n.notification_widget.info.active,\n.open > .dropdown-toggle.notification_widget.info {\n  background-image: none;\n}\n.notification_widget.info.disabled:hover,\n.notification_widget.info[disabled]:hover,\nfieldset[disabled] .notification_widget.info:hover,\n.notification_widget.info.disabled:focus,\n.notification_widget.info[disabled]:focus,\nfieldset[disabled] .notification_widget.info:focus,\n.notification_widget.info.disabled.focus,\n.notification_widget.info[disabled].focus,\nfieldset[disabled] .notification_widget.info.focus {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.notification_widget.info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.notification_widget.danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.notification_widget.danger:focus,\n.notification_widget.danger.focus {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #761c19;\n}\n.notification_widget.danger:hover {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.notification_widget.danger:active,\n.notification_widget.danger.active,\n.open > .dropdown-toggle.notification_widget.danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.notification_widget.danger:active:hover,\n.notification_widget.danger.active:hover,\n.open > .dropdown-toggle.notification_widget.danger:hover,\n.notification_widget.danger:active:focus,\n.notification_widget.danger.active:focus,\n.open > .dropdown-toggle.notification_widget.danger:focus,\n.notification_widget.danger:active.focus,\n.notification_widget.danger.active.focus,\n.open > .dropdown-toggle.notification_widget.danger.focus {\n  color: #fff;\n  background-color: #ac2925;\n  border-color: #761c19;\n}\n.notification_widget.danger:active,\n.notification_widget.danger.active,\n.open > .dropdown-toggle.notification_widget.danger {\n  background-image: none;\n}\n.notification_widget.danger.disabled:hover,\n.notification_widget.danger[disabled]:hover,\nfieldset[disabled] .notification_widget.danger:hover,\n.notification_widget.danger.disabled:focus,\n.notification_widget.danger[disabled]:focus,\nfieldset[disabled] .notification_widget.danger:focus,\n.notification_widget.danger.disabled.focus,\n.notification_widget.danger[disabled].focus,\nfieldset[disabled] .notification_widget.danger.focus {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.notification_widget.danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\ndiv#pager {\n  background-color: #fff;\n  font-size: 14px;\n  line-height: 20px;\n  overflow: hidden;\n  display: none;\n  position: fixed;\n  bottom: 0px;\n  width: 100%;\n  max-height: 50%;\n  padding-top: 8px;\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  /* Display over codemirror */\n  z-index: 100;\n  /* Hack which prevents jquery ui resizable from changing top. */\n  top: auto !important;\n}\ndiv#pager pre {\n  line-height: 1.21429em;\n  color: #000;\n  background-color: #f7f7f7;\n  padding: 0.4em;\n}\ndiv#pager #pager-button-area {\n  position: absolute;\n  top: 8px;\n  right: 20px;\n}\ndiv#pager #pager-contents {\n  position: relative;\n  overflow: auto;\n  width: 100%;\n  height: 100%;\n}\ndiv#pager #pager-contents #pager-container {\n  position: relative;\n  padding: 15px 0px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\ndiv#pager .ui-resizable-handle {\n  top: 0px;\n  height: 8px;\n  background: #f7f7f7;\n  border-top: 1px solid #cfcfcf;\n  border-bottom: 1px solid #cfcfcf;\n  /* This injects handle bars (a short, wide = symbol) for \n        the resize handle. */\n}\ndiv#pager .ui-resizable-handle::after {\n  content: '';\n  top: 2px;\n  left: 50%;\n  height: 3px;\n  width: 30px;\n  margin-left: -15px;\n  position: absolute;\n  border-top: 1px solid #cfcfcf;\n}\n.quickhelp {\n  /* Old browsers */\n  display: -webkit-box;\n  -webkit-box-orient: horizontal;\n  -webkit-box-align: stretch;\n  display: -moz-box;\n  -moz-box-orient: horizontal;\n  -moz-box-align: stretch;\n  display: box;\n  box-orient: horizontal;\n  box-align: stretch;\n  /* Modern browsers */\n  display: flex;\n  flex-direction: row;\n  align-items: stretch;\n  line-height: 1.8em;\n}\n.shortcut_key {\n  display: inline-block;\n  width: 20ex;\n  text-align: right;\n  font-family: monospace;\n}\n.shortcut_descr {\n  display: inline-block;\n  /* Old browsers */\n  -webkit-box-flex: 1;\n  -moz-box-flex: 1;\n  box-flex: 1;\n  /* Modern browsers */\n  flex: 1;\n}\nspan.save_widget {\n  margin-top: 6px;\n}\nspan.save_widget span.filename {\n  height: 1em;\n  line-height: 1em;\n  padding: 3px;\n  margin-left: 16px;\n  border: none;\n  font-size: 146.5%;\n  border-radius: 2px;\n}\nspan.save_widget span.filename:hover {\n  background-color: #e6e6e6;\n}\nspan.checkpoint_status,\nspan.autosave_status {\n  font-size: small;\n}\n@media (max-width: 767px) {\n  span.save_widget {\n    font-size: small;\n  }\n  span.checkpoint_status,\n  span.autosave_status {\n    display: none;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  span.checkpoint_status {\n    display: none;\n  }\n  span.autosave_status {\n    font-size: x-small;\n  }\n}\n.toolbar {\n  padding: 0px;\n  margin-left: -5px;\n  margin-top: 2px;\n  margin-bottom: 5px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n}\n.toolbar select,\n.toolbar label {\n  width: auto;\n  vertical-align: middle;\n  margin-right: 2px;\n  margin-bottom: 0px;\n  display: inline;\n  font-size: 92%;\n  margin-left: 0.3em;\n  margin-right: 0.3em;\n  padding: 0px;\n  padding-top: 3px;\n}\n.toolbar .btn {\n  padding: 2px 8px;\n}\n.toolbar .btn-group {\n  margin-top: 0px;\n  margin-left: 5px;\n}\n#maintoolbar {\n  margin-bottom: -3px;\n  margin-top: -8px;\n  border: 0px;\n  min-height: 27px;\n  margin-left: 0px;\n  padding-top: 11px;\n  padding-bottom: 3px;\n}\n#maintoolbar .navbar-text {\n  float: none;\n  vertical-align: middle;\n  text-align: right;\n  margin-left: 5px;\n  margin-right: 0px;\n  margin-top: 0px;\n}\n.select-xs {\n  height: 24px;\n}\n.pulse,\n.dropdown-menu > li > a.pulse,\nli.pulse > a.dropdown-toggle,\nli.pulse.open > a.dropdown-toggle {\n  background-color: #F37626;\n  color: white;\n}\n/**\n * Primary styles\n *\n * Author: Jupyter Development Team\n */\n/** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot\n * of chance of beeing generated from the ../less/[samename].less file, you can\n * try to get back the less file by reverting somme commit in history\n **/\n/*\n * We'll try to get something pretty, so we\n * have some strange css to have the scroll bar on\n * the left with fix button on the top right of the tooltip\n */\n@-moz-keyframes fadeOut {\n  from {\n    opacity: 1;\n  }\n  to {\n    opacity: 0;\n  }\n}\n@-webkit-keyframes fadeOut {\n  from {\n    opacity: 1;\n  }\n  to {\n    opacity: 0;\n  }\n}\n@-moz-keyframes fadeIn {\n  from {\n    opacity: 0;\n  }\n  to {\n    opacity: 1;\n  }\n}\n@-webkit-keyframes fadeIn {\n  from {\n    opacity: 0;\n  }\n  to {\n    opacity: 1;\n  }\n}\n/*properties of tooltip after \"expand\"*/\n.bigtooltip {\n  overflow: auto;\n  height: 200px;\n  -webkit-transition-property: height;\n  -webkit-transition-duration: 500ms;\n  -moz-transition-property: height;\n  -moz-transition-duration: 500ms;\n  transition-property: height;\n  transition-duration: 500ms;\n}\n/*properties of tooltip before \"expand\"*/\n.smalltooltip {\n  -webkit-transition-property: height;\n  -webkit-transition-duration: 500ms;\n  -moz-transition-property: height;\n  -moz-transition-duration: 500ms;\n  transition-property: height;\n  transition-duration: 500ms;\n  text-overflow: ellipsis;\n  overflow: hidden;\n  height: 80px;\n}\n.tooltipbuttons {\n  position: absolute;\n  padding-right: 15px;\n  top: 0px;\n  right: 0px;\n}\n.tooltiptext {\n  /*avoid the button to overlap on some docstring*/\n  padding-right: 30px;\n}\n.ipython_tooltip {\n  max-width: 700px;\n  /*fade-in animation when inserted*/\n  -webkit-animation: fadeOut 400ms;\n  -moz-animation: fadeOut 400ms;\n  animation: fadeOut 400ms;\n  -webkit-animation: fadeIn 400ms;\n  -moz-animation: fadeIn 400ms;\n  animation: fadeIn 400ms;\n  vertical-align: middle;\n  background-color: #f7f7f7;\n  overflow: visible;\n  border: #ababab 1px solid;\n  outline: none;\n  padding: 3px;\n  margin: 0px;\n  padding-left: 7px;\n  font-family: monospace;\n  min-height: 50px;\n  -moz-box-shadow: 0px 6px 10px -1px #adadad;\n  -webkit-box-shadow: 0px 6px 10px -1px #adadad;\n  box-shadow: 0px 6px 10px -1px #adadad;\n  border-radius: 2px;\n  position: absolute;\n  z-index: 1000;\n}\n.ipython_tooltip a {\n  float: right;\n}\n.ipython_tooltip .tooltiptext pre {\n  border: 0;\n  border-radius: 0;\n  font-size: 100%;\n  background-color: #f7f7f7;\n}\n.pretooltiparrow {\n  left: 0px;\n  margin: 0px;\n  top: -16px;\n  width: 40px;\n  height: 16px;\n  overflow: hidden;\n  position: absolute;\n}\n.pretooltiparrow:before {\n  background-color: #f7f7f7;\n  border: 1px #ababab solid;\n  z-index: 11;\n  content: \"\";\n  position: absolute;\n  left: 15px;\n  top: 10px;\n  width: 25px;\n  height: 25px;\n  -webkit-transform: rotate(45deg);\n  -moz-transform: rotate(45deg);\n  -ms-transform: rotate(45deg);\n  -o-transform: rotate(45deg);\n}\nul.typeahead-list i {\n  margin-left: -10px;\n  width: 18px;\n}\nul.typeahead-list {\n  max-height: 80vh;\n  overflow: auto;\n}\nul.typeahead-list > li > a {\n  /** Firefox bug **/\n  /* see https://github.com/jupyter/notebook/issues/559 */\n  white-space: normal;\n}\n.cmd-palette .modal-body {\n  padding: 7px;\n}\n.cmd-palette form {\n  background: white;\n}\n.cmd-palette input {\n  outline: none;\n}\n.no-shortcut {\n  display: none;\n}\n.command-shortcut:before {\n  content: \"(command)\";\n  padding-right: 3px;\n  color: #777777;\n}\n.edit-shortcut:before {\n  content: \"(edit)\";\n  padding-right: 3px;\n  color: #777777;\n}\n#find-and-replace #replace-preview .match,\n#find-and-replace #replace-preview .insert {\n  background-color: #BBDEFB;\n  border-color: #90CAF9;\n  border-style: solid;\n  border-width: 1px;\n  border-radius: 0px;\n}\n#find-and-replace #replace-preview .replace .match {\n  background-color: #FFCDD2;\n  border-color: #EF9A9A;\n  border-radius: 0px;\n}\n#find-and-replace #replace-preview .replace .insert {\n  background-color: #C8E6C9;\n  border-color: #A5D6A7;\n  border-radius: 0px;\n}\n#find-and-replace #replace-preview {\n  max-height: 60vh;\n  overflow: auto;\n}\n#find-and-replace #replace-preview pre {\n  padding: 5px 10px;\n}\n.terminal-app {\n  background: #EEE;\n}\n.terminal-app #header {\n  background: #fff;\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);\n}\n.terminal-app .terminal {\n  float: left;\n  font-family: monospace;\n  color: white;\n  background: black;\n  padding: 0.4em;\n  border-radius: 2px;\n  -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);\n  box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);\n}\n.terminal-app .terminal,\n.terminal-app .terminal dummy-screen {\n  line-height: 1em;\n  font-size: 14px;\n}\n.terminal-app .terminal-cursor {\n  color: black;\n  background: white;\n}\n.terminal-app #terminado-container {\n  margin-top: 20px;\n}\n/*# sourceMappingURL=style.min.css.map */\n    </style>\n<style type=\"text/css\">\n    .highlight .hll { background-color: #ffffcc }\n.highlight  { background: #f8f8f8; }\n.highlight .c { color: #408080; font-style: italic } /* Comment */\n.highlight .err { border: 1px solid #FF0000 } /* Error */\n.highlight .k { color: #008000; font-weight: bold } /* Keyword */\n.highlight .o { color: #666666 } /* Operator */\n.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */\n.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */\n.highlight .cp { color: #BC7A00 } /* Comment.Preproc */\n.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */\n.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */\n.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */\n.highlight .gd { color: #A00000 } /* Generic.Deleted */\n.highlight .ge { font-style: italic } /* Generic.Emph */\n.highlight .gr { color: #FF0000 } /* Generic.Error */\n.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */\n.highlight .gi { color: #00A000 } /* Generic.Inserted */\n.highlight .go { color: #888888 } /* Generic.Output */\n.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */\n.highlight .gs { font-weight: bold } /* Generic.Strong */\n.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */\n.highlight .gt { color: #0044DD } /* Generic.Traceback */\n.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */\n.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */\n.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */\n.highlight .kp { color: #008000 } /* Keyword.Pseudo */\n.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */\n.highlight .kt { color: #B00040 } /* Keyword.Type */\n.highlight .m { color: #666666 } /* Literal.Number */\n.highlight .s { color: #BA2121 } /* Literal.String */\n.highlight .na { color: #7D9029 } /* Name.Attribute */\n.highlight .nb { color: #008000 } /* Name.Builtin */\n.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */\n.highlight .no { color: #880000 } /* Name.Constant */\n.highlight .nd { color: #AA22FF } /* Name.Decorator */\n.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */\n.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */\n.highlight .nf { color: #0000FF } /* Name.Function */\n.highlight .nl { color: #A0A000 } /* Name.Label */\n.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */\n.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */\n.highlight .nv { color: #19177C } /* Name.Variable */\n.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */\n.highlight .w { color: #bbbbbb } /* Text.Whitespace */\n.highlight .mb { color: #666666 } /* Literal.Number.Bin */\n.highlight .mf { color: #666666 } /* Literal.Number.Float */\n.highlight .mh { color: #666666 } /* Literal.Number.Hex */\n.highlight .mi { color: #666666 } /* Literal.Number.Integer */\n.highlight .mo { color: #666666 } /* Literal.Number.Oct */\n.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */\n.highlight .sc { color: #BA2121 } /* Literal.String.Char */\n.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */\n.highlight .s2 { color: #BA2121 } /* Literal.String.Double */\n.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */\n.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */\n.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */\n.highlight .sx { color: #008000 } /* Literal.String.Other */\n.highlight .sr { color: #BB6688 } /* Literal.String.Regex */\n.highlight .s1 { color: #BA2121 } /* Literal.String.Single */\n.highlight .ss { color: #19177C } /* Literal.String.Symbol */\n.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */\n.highlight .vc { color: #19177C } /* Name.Variable.Class */\n.highlight .vg { color: #19177C } /* Name.Variable.Global */\n.highlight .vi { color: #19177C } /* Name.Variable.Instance */\n.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */\n    </style>\n<style type=\"text/css\">\n    \n/* Temporary definitions which will become obsolete with Notebook release 5.0 */\n.ansi-black-fg { color: #3E424D; }\n.ansi-black-bg { background-color: #3E424D; }\n.ansi-black-intense-fg { color: #282C36; }\n.ansi-black-intense-bg { background-color: #282C36; }\n.ansi-red-fg { color: #E75C58; }\n.ansi-red-bg { background-color: #E75C58; }\n.ansi-red-intense-fg { color: #B22B31; }\n.ansi-red-intense-bg { background-color: #B22B31; }\n.ansi-green-fg { color: #00A250; }\n.ansi-green-bg { background-color: #00A250; }\n.ansi-green-intense-fg { color: #007427; }\n.ansi-green-intense-bg { background-color: #007427; }\n.ansi-yellow-fg { color: #DDB62B; }\n.ansi-yellow-bg { background-color: #DDB62B; }\n.ansi-yellow-intense-fg { color: #B27D12; }\n.ansi-yellow-intense-bg { background-color: #B27D12; }\n.ansi-blue-fg { color: #208FFB; }\n.ansi-blue-bg { background-color: #208FFB; }\n.ansi-blue-intense-fg { color: #0065CA; }\n.ansi-blue-intense-bg { background-color: #0065CA; }\n.ansi-magenta-fg { color: #D160C4; }\n.ansi-magenta-bg { background-color: #D160C4; }\n.ansi-magenta-intense-fg { color: #A03196; }\n.ansi-magenta-intense-bg { background-color: #A03196; }\n.ansi-cyan-fg { color: #60C6C8; }\n.ansi-cyan-bg { background-color: #60C6C8; }\n.ansi-cyan-intense-fg { color: #258F8F; }\n.ansi-cyan-intense-bg { background-color: #258F8F; }\n.ansi-white-fg { color: #C5C1B4; }\n.ansi-white-bg { background-color: #C5C1B4; }\n.ansi-white-intense-fg { color: #A1A6B2; }\n.ansi-white-intense-bg { background-color: #A1A6B2; }\n\n.ansi-bold { font-weight: bold; }\n\n    </style>\n\n\n<style type=\"text/css\">\n/* Overrides of notebook CSS for static HTML export */\nbody {\n  overflow: visible;\n  padding: 8px;\n}\n\ndiv#notebook {\n  overflow: visible;\n  border-top: none;\n}\n\n@media print {\n  div.cell {\n    display: block;\n    page-break-inside: avoid;\n  } \n  div.output_wrapper { \n    display: block;\n    page-break-inside: avoid; \n  }\n  div.output { \n    display: block;\n    page-break-inside: avoid; \n  }\n}\n</style>\n\n<!-- Custom stylesheet, it must be in the same directory as the html file -->\n<link rel=\"stylesheet\" href=\"custom.css\">\n\n<!-- Loading mathjax macro -->\n<!-- Load mathjax -->\n    <script src=\"https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML\"></script>\n    <!-- MathJax configuration -->\n    <script type=\"text/x-mathjax-config\">\n    MathJax.Hub.Config({\n        tex2jax: {\n            inlineMath: [ ['$','$'], [\"\\\\(\",\"\\\\)\"] ],\n            displayMath: [ ['$$','$$'], [\"\\\\[\",\"\\\\]\"] ],\n            processEscapes: true,\n            processEnvironments: true\n        },\n        // Center justify equations in code and markdown cells. Elsewhere\n        // we use CSS to left justify single line equations in code cells.\n        displayAlign: 'center',\n        \"HTML-CSS\": {\n            styles: {'.MathJax_Display': {\"margin\": 0}},\n            linebreaks: { automatic: true }\n        }\n    });\n    </script>\n    <!-- End of mathjax configuration --></head>\n<body>\n  <div tabindex=\"-1\" id=\"notebook\" class=\"border-box-sizing\">\n    <div class=\"container\" id=\"notebook-container\">\n\n<div class=\"cell border-box-sizing text_cell rendered\">\n<div class=\"prompt input_prompt\">\n</div>\n<div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h2 id=\"&#26420;&#32032;&#36125;&#21494;&#26031;&#19982;&#24212;&#29992;\">&#26420;&#32032;&#36125;&#21494;&#26031;&#19982;&#24212;&#29992;<a class=\"anchor-link\" href=\"#&#26420;&#32032;&#36125;&#21494;&#26031;&#19982;&#24212;&#29992;\">&#182;</a></h2><p>by 寒小阳(hanxiaoyang.ml@gmail.com)</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\">\n<div class=\"prompt input_prompt\">\n</div>\n<div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h3 id=\"&#36125;&#21494;&#26031;&#29702;&#35770;&#31616;&#21333;&#22238;&#39038;\">&#36125;&#21494;&#26031;&#29702;&#35770;&#31616;&#21333;&#22238;&#39038;<a class=\"anchor-link\" href=\"#&#36125;&#21494;&#26031;&#29702;&#35770;&#31616;&#21333;&#22238;&#39038;\">&#182;</a></h3><p>在我们有一大堆样本（包含<strong>特征</strong>和<strong>类别</strong>）的时候，我们非常容易通过统计得到 $p(特征|类别)$.</p>\n<p>大家又都很熟悉下述公式：</p>\n$$p(x)p(y|x) = p(y)p(x|y)$$<p>所以做一个小小的变换</p>\n$$p(特征)p(类别|特征) = p(类别)p(特征|类别)$$$$p(类别|特征) = \\frac{p(类别)p(特征|类别)}{p(特征)}$$\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\">\n<div class=\"prompt input_prompt\">\n</div>\n<div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h3 id=\"&#29420;&#31435;&#20551;&#35774;\">&#29420;&#31435;&#20551;&#35774;<a class=\"anchor-link\" href=\"#&#29420;&#31435;&#20551;&#35774;\">&#182;</a></h3><p>看起来很简单，但实际上，你的特征可能是很多维的</p>\n$$p(features|class) = p({f_0, f_1, \\ldots ,f_n}|c)$$<p>就算是2个维度吧，可以简单写成</p>\n$$p({f_0, f_1}|c) = p(f_1|c, f_0)p(f_0|c)$$<p>这时候我们加一个特别牛逼的假设：特征之间是独立的。这样就得到了</p>\n$$p({f_0, f_1}|c) = p(f_1|c)p(f_0|c)$$<p>其实也就是：</p>\n$$p({f_0, f_1, \\ldots, f_n}|c) = \\Pi^n_i p(f_i|c)$$\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\">\n<div class=\"prompt input_prompt\">\n</div>\n<div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h3 id=\"&#36125;&#21494;&#26031;&#20998;&#31867;&#22120;\">&#36125;&#21494;&#26031;&#20998;&#31867;&#22120;<a class=\"anchor-link\" href=\"#&#36125;&#21494;&#26031;&#20998;&#31867;&#22120;\">&#182;</a></h3><p>OK，回到机器学习，其实我们就是对每个类别计算一个概率$p(c_i)$，然后再计算所有特征的条件概率$p(f_j|c_i)$，那么分类的时候我们就是依据贝叶斯找一个最可能的类别：</p>\n$$p(class_i|{f_0, f_1, \\ldots, f_n})= \\frac{p(class_i)}{p({f_0, f_1, \\ldots, f_n})} \\Pi^n_j p(f_j|c_i)$$\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing text_cell rendered\">\n<div class=\"prompt input_prompt\">\n</div>\n<div class=\"inner_cell\">\n<div class=\"text_cell_render border-box-sizing rendered_html\">\n<h3 id=\"&#25991;&#26412;&#20998;&#31867;&#38382;&#39064;\">&#25991;&#26412;&#20998;&#31867;&#38382;&#39064;<a class=\"anchor-link\" href=\"#&#25991;&#26412;&#20998;&#31867;&#38382;&#39064;\">&#182;</a></h3><p>下面我们来看一个文本分类问题，经典的新闻主题分类，用朴素贝叶斯怎么做。</p>\n\n</div>\n</div>\n</div>\n<div class=\"cell border-box-sizing code_cell rendered\">\n<div class=\"input\">\n<div class=\"prompt input_prompt\">In&nbsp;[2]:</div>\n<div class=\"inner_cell\">\n    <div class=\"input_area\">\n<div class=\" highlight hl-ipython2\"><pre><span></span><span class=\"c1\">#coding: utf-8</span>\n<span class=\"kn\">import</span> <span class=\"nn\">os</span>\n<span class=\"kn\">import</span> <span class=\"nn\">time</span>\n<span class=\"kn\">import</span> <span class=\"nn\">random</span>\n<span class=\"kn\">import</span> <span class=\"nn\">jieba</span>  <span class=\"c1\">#处理中文</span>\n<span class=\"c1\">#import nltk  #处理英文</span>\n<span class=\"kn\">import</span> <span class=\"nn\">sklearn</span>\n<span class=\"kn\">from</span> <span class=\"nn\">sklearn.naive_bayes</span> <span class=\"kn\">import</span> <span class=\"n\">MultinomialNB</span>\n<span class=\"kn\">import</span> <span class=\"nn\">numpy</span> <span class=\"kn\">as</span> <span class=\"nn\">np</span>\n<span class=\"kn\">import</span> <span class=\"nn\">pylab</span> <span class=\"kn\">as</span> <span class=\"nn\">pl</span>\n<span class=\"kn\">import</span> <span class=\"nn\">matplotlib.pyplot</span> <span class=\"kn\">as</span> <span class=\"nn\">plt</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"cell border-box-sizing code_cell rendered\">\n<div class=\"input\">\n<div class=\"prompt input_prompt\">In&nbsp;[4]:</div>\n<div class=\"inner_cell\">\n    <div class=\"input_area\">\n<div class=\" highlight hl-ipython2\"><pre><span></span><span class=\"c1\">#粗暴的词去重</span>\n<span class=\"k\">def</span> <span class=\"nf\">make_word_set</span><span class=\"p\">(</span><span class=\"n\">words_file</span><span class=\"p\">):</span>\n    <span class=\"n\">words_set</span> <span class=\"o\">=</span> <span class=\"nb\">set</span><span class=\"p\">()</span>\n    <span class=\"k\">with</span> <span class=\"nb\">open</span><span class=\"p\">(</span><span class=\"n\">words_file</span><span class=\"p\">,</span> <span class=\"s1\">&#39;r&#39;</span><span class=\"p\">)</span> <span class=\"k\">as</span> <span class=\"n\">fp</span><span class=\"p\">:</span>\n        <span class=\"k\">for</span> <span class=\"n\">line</span> <span class=\"ow\">in</span> <span class=\"n\">fp</span><span class=\"o\">.</span><span class=\"n\">readlines</span><span class=\"p\">():</span>\n            <span class=\"n\">word</span> <span class=\"o\">=</span> <span class=\"n\">line</span><span class=\"o\">.</span><span class=\"n\">strip</span><span class=\"p\">()</span><span class=\"o\">.</span><span class=\"n\">decode</span><span class=\"p\">(</span><span class=\"s2\">&quot;utf-8&quot;</span><span class=\"p\">)</span>\n            <span class=\"k\">if</span> <span class=\"nb\">len</span><span class=\"p\">(</span><span class=\"n\">word</span><span class=\"p\">)</span><span class=\"o\">&gt;</span><span class=\"mi\">0</span> <span class=\"ow\">and</span> <span class=\"n\">word</span> <span class=\"ow\">not</span> <span class=\"ow\">in</span> <span class=\"n\">words_set</span><span class=\"p\">:</span> <span class=\"c1\"># 去重</span>\n                <span class=\"n\">words_set</span><span class=\"o\">.</span><span class=\"n\">add</span><span class=\"p\">(</span><span class=\"n\">word</span><span class=\"p\">)</span>\n    <span class=\"k\">return</span> <span class=\"n\">words_set</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"cell border-box-sizing code_cell rendered\">\n<div class=\"input\">\n<div class=\"prompt input_prompt\">In&nbsp;[5]:</div>\n<div class=\"inner_cell\">\n    <div class=\"input_area\">\n<div class=\" highlight hl-ipython2\"><pre><span></span><span class=\"c1\"># 文本处理，也就是样本生成过程</span>\n<span class=\"k\">def</span> <span class=\"nf\">text_processing</span><span class=\"p\">(</span><span class=\"n\">folder_path</span><span class=\"p\">,</span> <span class=\"n\">test_size</span><span class=\"o\">=</span><span class=\"mf\">0.2</span><span class=\"p\">):</span>\n    <span class=\"n\">folder_list</span> <span class=\"o\">=</span> <span class=\"n\">os</span><span class=\"o\">.</span><span class=\"n\">listdir</span><span class=\"p\">(</span><span class=\"n\">folder_path</span><span class=\"p\">)</span>\n    <span class=\"n\">data_list</span> <span class=\"o\">=</span> <span class=\"p\">[]</span>\n    <span class=\"n\">class_list</span> <span class=\"o\">=</span> <span class=\"p\">[]</span>\n\n    <span class=\"c1\"># 遍历文件夹</span>\n    <span class=\"k\">for</span> <span class=\"n\">folder</span> <span class=\"ow\">in</span> <span class=\"n\">folder_list</span><span class=\"p\">:</span>\n        <span class=\"n\">new_folder_path</span> <span class=\"o\">=</span> <span class=\"n\">os</span><span class=\"o\">.</span><span class=\"n\">path</span><span class=\"o\">.</span><span class=\"n\">join</span><span class=\"p\">(</span><span class=\"n\">folder_path</span><span class=\"p\">,</span> <span class=\"n\">folder</span><span class=\"p\">)</span>\n        <span class=\"n\">files</span> <span class=\"o\">=</span> <span class=\"n\">os</span><span class=\"o\">.</span><span class=\"n\">listdir</span><span class=\"p\">(</span><span class=\"n\">new_folder_path</span><span class=\"p\">)</span>\n        <span class=\"c1\"># 读取文件</span>\n        <span class=\"n\">j</span> <span class=\"o\">=</span> <span class=\"mi\">1</span>\n        <span class=\"k\">for</span> <span class=\"nb\">file</span> <span class=\"ow\">in</span> <span class=\"n\">files</span><span class=\"p\">:</span>\n            <span class=\"k\">if</span> <span class=\"n\">j</span> <span class=\"o\">&gt;</span> <span class=\"mi\">100</span><span class=\"p\">:</span> <span class=\"c1\"># 怕内存爆掉，只取100个样本文件，你可以注释掉取完</span>\n                <span class=\"k\">break</span>\n            <span class=\"k\">with</span> <span class=\"nb\">open</span><span class=\"p\">(</span><span class=\"n\">os</span><span class=\"o\">.</span><span class=\"n\">path</span><span class=\"o\">.</span><span class=\"n\">join</span><span class=\"p\">(</span><span class=\"n\">new_folder_path</span><span class=\"p\">,</span> <span class=\"nb\">file</span><span class=\"p\">),</span> <span class=\"s1\">&#39;r&#39;</span><span class=\"p\">)</span> <span class=\"k\">as</span> <span class=\"n\">fp</span><span class=\"p\">:</span>\n               <span class=\"n\">raw</span> <span class=\"o\">=</span> <span class=\"n\">fp</span><span class=\"o\">.</span><span class=\"n\">read</span><span class=\"p\">()</span>\n            <span class=\"c1\">## 是的，随处可见的jieba中文分词</span>\n            <span class=\"n\">jieba</span><span class=\"o\">.</span><span class=\"n\">enable_parallel</span><span class=\"p\">(</span><span class=\"mi\">4</span><span class=\"p\">)</span> <span class=\"c1\"># 开启并行分词模式，参数为并行进程数，不支持windows</span>\n            <span class=\"n\">word_cut</span> <span class=\"o\">=</span> <span class=\"n\">jieba</span><span class=\"o\">.</span><span class=\"n\">cut</span><span class=\"p\">(</span><span class=\"n\">raw</span><span class=\"p\">,</span> <span class=\"n\">cut_all</span><span class=\"o\">=</span><span class=\"bp\">False</span><span class=\"p\">)</span> <span class=\"c1\"># 精确模式，返回的结构是一个可迭代的genertor</span>\n            <span class=\"n\">word_list</span> <span class=\"o\">=</span> <span class=\"nb\">list</span><span class=\"p\">(</span><span class=\"n\">word_cut</span><span class=\"p\">)</span> <span class=\"c1\"># genertor转化为list，每个词unicode格式</span>\n            <span class=\"n\">jieba</span><span class=\"o\">.</span><span class=\"n\">disable_parallel</span><span class=\"p\">()</span> <span class=\"c1\"># 关闭并行分词模式</span>\n            \n            <span class=\"n\">data_list</span><span class=\"o\">.</span><span class=\"n\">append</span><span class=\"p\">(</span><span class=\"n\">word_list</span><span class=\"p\">)</span> <span class=\"c1\">#训练集list</span>\n            <span class=\"n\">class_list</span><span class=\"o\">.</span><span class=\"n\">append</span><span class=\"p\">(</span><span class=\"n\">folder</span><span class=\"o\">.</span><span class=\"n\">decode</span><span class=\"p\">(</span><span class=\"s1\">&#39;utf-8&#39;</span><span class=\"p\">))</span> <span class=\"c1\">#类别</span>\n            <span class=\"n\">j</span> <span class=\"o\">+=</span> <span class=\"mi\">1</span>\n    \n    <span class=\"c1\">## 粗暴地划分训练集和测试集</span>\n    <span class=\"n\">data_class_list</span> <span class=\"o\">=</span> <span class=\"nb\">zip</span><span class=\"p\">(</span><span class=\"n\">data_list</span><span class=\"p\">,</span> <span class=\"n\">class_list</span><span class=\"p\">)</span>\n    <span class=\"n\">random</span><span class=\"o\">.</span><span class=\"n\">shuffle</span><span class=\"p\">(</span><span class=\"n\">data_class_list</span><span class=\"p\">)</span>\n    <span class=\"n\">index</span> <span class=\"o\">=</span> <span class=\"nb\">int</span><span class=\"p\">(</span><span class=\"nb\">len</span><span class=\"p\">(</span><span class=\"n\">data_class_list</span><span class=\"p\">)</span><span class=\"o\">*</span><span class=\"n\">test_size</span><span class=\"p\">)</span><span class=\"o\">+</span><span class=\"mi\">1</span>\n    <span class=\"n\">train_list</span> <span class=\"o\">=</span> <span class=\"n\">data_class_list</span><span class=\"p\">[</span><span class=\"n\">index</span><span class=\"p\">:]</span>\n    <span class=\"n\">test_list</span> <span class=\"o\">=</span> <span class=\"n\">data_class_list</span><span class=\"p\">[:</span><span class=\"n\">index</span><span class=\"p\">]</span>\n    <span class=\"n\">train_data_list</span><span class=\"p\">,</span> <span class=\"n\">train_class_list</span> <span class=\"o\">=</span> <span class=\"nb\">zip</span><span class=\"p\">(</span><span class=\"o\">*</span><span class=\"n\">train_list</span><span class=\"p\">)</span>\n    <span class=\"n\">test_data_list</span><span class=\"p\">,</span> <span class=\"n\">test_class_list</span> <span class=\"o\">=</span> <span class=\"nb\">zip</span><span class=\"p\">(</span><span class=\"o\">*</span><span class=\"n\">test_list</span><span class=\"p\">)</span>\n    \n    <span class=\"c1\">#其实可以用sklearn自带的部分做</span>\n    <span class=\"c1\">#train_data_list, test_data_list, train_class_list, test_class_list = sklearn.cross_validation.train_test_split(data_list, class_list, test_size=test_size)</span>\n    \n\n    <span class=\"c1\"># 统计词频放入all_words_dict</span>\n    <span class=\"n\">all_words_dict</span> <span class=\"o\">=</span> <span class=\"p\">{}</span>\n    <span class=\"k\">for</span> <span class=\"n\">word_list</span> <span class=\"ow\">in</span> <span class=\"n\">train_data_list</span><span class=\"p\">:</span>\n        <span class=\"k\">for</span> <span class=\"n\">word</span> <span class=\"ow\">in</span> <span class=\"n\">word_list</span><span class=\"p\">:</span>\n            <span class=\"k\">if</span> <span class=\"n\">all_words_dict</span><span class=\"o\">.</span><span class=\"n\">has_key</span><span class=\"p\">(</span><span class=\"n\">word</span><span class=\"p\">):</span>\n                <span class=\"n\">all_words_dict</span><span class=\"p\">[</span><span class=\"n\">word</span><span class=\"p\">]</span> <span class=\"o\">+=</span> <span class=\"mi\">1</span>\n            <span class=\"k\">else</span><span class=\"p\">:</span>\n                <span class=\"n\">all_words_dict</span><span class=\"p\">[</span><span class=\"n\">word</span><span class=\"p\">]</span> <span class=\"o\">=</span> <span class=\"mi\">1</span>\n\n    <span class=\"c1\"># key函数利用词频进行降序排序</span>\n    <span class=\"n\">all_words_tuple_list</span> <span class=\"o\">=</span> <span class=\"nb\">sorted</span><span class=\"p\">(</span><span class=\"n\">all_words_dict</span><span class=\"o\">.</span><span class=\"n\">items</span><span class=\"p\">(),</span> <span class=\"n\">key</span><span class=\"o\">=</span><span class=\"k\">lambda</span> <span class=\"n\">f</span><span class=\"p\">:</span><span class=\"n\">f</span><span class=\"p\">[</span><span class=\"mi\">1</span><span class=\"p\">],</span> <span class=\"n\">reverse</span><span class=\"o\">=</span><span class=\"bp\">True</span><span class=\"p\">)</span> <span class=\"c1\"># 内建函数sorted参数需为list</span>\n    <span class=\"n\">all_words_list</span> <span class=\"o\">=</span> <span class=\"nb\">list</span><span class=\"p\">(</span><span class=\"nb\">zip</span><span class=\"p\">(</span><span class=\"o\">*</span><span class=\"n\">all_words_tuple_list</span><span class=\"p\">)[</span><span class=\"mi\">0</span><span class=\"p\">])</span>\n\n    <span class=\"k\">return</span> <span class=\"n\">all_words_list</span><span class=\"p\">,</span> <span class=\"n\">train_data_list</span><span class=\"p\">,</span> <span class=\"n\">test_data_list</span><span class=\"p\">,</span> <span class=\"n\">train_class_list</span><span class=\"p\">,</span> <span class=\"n\">test_class_list</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"cell border-box-sizing code_cell rendered\">\n<div class=\"input\">\n<div class=\"prompt input_prompt\">In&nbsp;[6]:</div>\n<div class=\"inner_cell\">\n    <div class=\"input_area\">\n<div class=\" highlight hl-ipython2\"><pre><span></span><span class=\"k\">def</span> <span class=\"nf\">words_dict</span><span class=\"p\">(</span><span class=\"n\">all_words_list</span><span class=\"p\">,</span> <span class=\"n\">deleteN</span><span class=\"p\">,</span> <span class=\"n\">stopwords_set</span><span class=\"o\">=</span><span class=\"nb\">set</span><span class=\"p\">()):</span>\n    <span class=\"c1\"># 选取特征词</span>\n    <span class=\"n\">feature_words</span> <span class=\"o\">=</span> <span class=\"p\">[]</span>\n    <span class=\"n\">n</span> <span class=\"o\">=</span> <span class=\"mi\">1</span>\n    <span class=\"k\">for</span> <span class=\"n\">t</span> <span class=\"ow\">in</span> <span class=\"nb\">range</span><span class=\"p\">(</span><span class=\"n\">deleteN</span><span class=\"p\">,</span> <span class=\"nb\">len</span><span class=\"p\">(</span><span class=\"n\">all_words_list</span><span class=\"p\">),</span> <span class=\"mi\">1</span><span class=\"p\">):</span>\n        <span class=\"k\">if</span> <span class=\"n\">n</span> <span class=\"o\">&gt;</span> <span class=\"mi\">1000</span><span class=\"p\">:</span> <span class=\"c1\"># feature_words的维度1000</span>\n            <span class=\"k\">break</span>\n            \n        <span class=\"k\">if</span> <span class=\"ow\">not</span> <span class=\"n\">all_words_list</span><span class=\"p\">[</span><span class=\"n\">t</span><span class=\"p\">]</span><span class=\"o\">.</span><span class=\"n\">isdigit</span><span class=\"p\">()</span> <span class=\"ow\">and</span> <span class=\"n\">all_words_list</span><span class=\"p\">[</span><span class=\"n\">t</span><span class=\"p\">]</span> <span class=\"ow\">not</span> <span class=\"ow\">in</span> <span class=\"n\">stopwords_set</span> <span class=\"ow\">and</span> <span class=\"mi\">1</span><span class=\"o\">&lt;</span><span class=\"nb\">len</span><span class=\"p\">(</span><span class=\"n\">all_words_list</span><span class=\"p\">[</span><span class=\"n\">t</span><span class=\"p\">])</span><span class=\"o\">&lt;</span><span class=\"mi\">5</span><span class=\"p\">:</span>\n            <span class=\"n\">feature_words</span><span class=\"o\">.</span><span class=\"n\">append</span><span class=\"p\">(</span><span class=\"n\">all_words_list</span><span class=\"p\">[</span><span class=\"n\">t</span><span class=\"p\">])</span>\n            <span class=\"n\">n</span> <span class=\"o\">+=</span> <span class=\"mi\">1</span>\n    <span class=\"k\">return</span> <span class=\"n\">feature_words</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"cell border-box-sizing code_cell rendered\">\n<div class=\"input\">\n<div class=\"prompt input_prompt\">In&nbsp;[7]:</div>\n<div class=\"inner_cell\">\n    <div class=\"input_area\">\n<div class=\" highlight hl-ipython2\"><pre><span></span><span class=\"c1\"># 文本特征</span>\n<span class=\"k\">def</span> <span class=\"nf\">text_features</span><span class=\"p\">(</span><span class=\"n\">train_data_list</span><span class=\"p\">,</span> <span class=\"n\">test_data_list</span><span class=\"p\">,</span> <span class=\"n\">feature_words</span><span class=\"p\">,</span> <span class=\"n\">flag</span><span class=\"o\">=</span><span class=\"s1\">&#39;nltk&#39;</span><span class=\"p\">):</span>\n    <span class=\"k\">def</span> <span class=\"nf\">text_features</span><span class=\"p\">(</span><span class=\"n\">text</span><span class=\"p\">,</span> <span class=\"n\">feature_words</span><span class=\"p\">):</span>\n        <span class=\"n\">text_words</span> <span class=\"o\">=</span> <span class=\"nb\">set</span><span class=\"p\">(</span><span class=\"n\">text</span><span class=\"p\">)</span>\n        <span class=\"c1\">## -----------------------------------------------------------------------------------</span>\n        <span class=\"k\">if</span> <span class=\"n\">flag</span> <span class=\"o\">==</span> <span class=\"s1\">&#39;nltk&#39;</span><span class=\"p\">:</span>\n            <span class=\"c1\">## nltk特征 dict</span>\n            <span class=\"n\">features</span> <span class=\"o\">=</span> <span class=\"p\">{</span><span class=\"n\">word</span><span class=\"p\">:</span><span class=\"mi\">1</span> <span class=\"k\">if</span> <span class=\"n\">word</span> <span class=\"ow\">in</span> <span class=\"n\">text_words</span> <span class=\"k\">else</span> <span class=\"mi\">0</span> <span class=\"k\">for</span> <span class=\"n\">word</span> <span class=\"ow\">in</span> <span class=\"n\">feature_words</span><span class=\"p\">}</span>\n        <span class=\"k\">elif</span> <span class=\"n\">flag</span> <span class=\"o\">==</span> <span class=\"s1\">&#39;sklearn&#39;</span><span class=\"p\">:</span>\n            <span class=\"c1\">## sklearn特征 list</span>\n            <span class=\"n\">features</span> <span class=\"o\">=</span> <span class=\"p\">[</span><span class=\"mi\">1</span> <span class=\"k\">if</span> <span class=\"n\">word</span> <span class=\"ow\">in</span> <span class=\"n\">text_words</span> <span class=\"k\">else</span> <span class=\"mi\">0</span> <span class=\"k\">for</span> <span class=\"n\">word</span> <span class=\"ow\">in</span> <span class=\"n\">feature_words</span><span class=\"p\">]</span>\n        <span class=\"k\">else</span><span class=\"p\">:</span>\n            <span class=\"n\">features</span> <span class=\"o\">=</span> <span class=\"p\">[]</span>\n        <span class=\"c1\">## -----------------------------------------------------------------------------------</span>\n        <span class=\"k\">return</span> <span class=\"n\">features</span>\n    <span class=\"n\">train_feature_list</span> <span class=\"o\">=</span> <span class=\"p\">[</span><span class=\"n\">text_features</span><span class=\"p\">(</span><span class=\"n\">text</span><span class=\"p\">,</span> <span class=\"n\">feature_words</span><span class=\"p\">)</span> <span class=\"k\">for</span> <span class=\"n\">text</span> <span class=\"ow\">in</span> <span class=\"n\">train_data_list</span><span class=\"p\">]</span>\n    <span class=\"n\">test_feature_list</span> <span class=\"o\">=</span> <span class=\"p\">[</span><span class=\"n\">text_features</span><span class=\"p\">(</span><span class=\"n\">text</span><span class=\"p\">,</span> <span class=\"n\">feature_words</span><span class=\"p\">)</span> <span class=\"k\">for</span> <span class=\"n\">text</span> <span class=\"ow\">in</span> <span class=\"n\">test_data_list</span><span class=\"p\">]</span>\n    <span class=\"k\">return</span> <span class=\"n\">train_feature_list</span><span class=\"p\">,</span> <span class=\"n\">test_feature_list</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"cell border-box-sizing code_cell rendered\">\n<div class=\"input\">\n<div class=\"prompt input_prompt\">In&nbsp;[8]:</div>\n<div class=\"inner_cell\">\n    <div class=\"input_area\">\n<div class=\" highlight hl-ipython2\"><pre><span></span><span class=\"c1\"># 分类，同时输出准确率等</span>\n<span class=\"k\">def</span> <span class=\"nf\">text_classifier</span><span class=\"p\">(</span><span class=\"n\">train_feature_list</span><span class=\"p\">,</span> <span class=\"n\">test_feature_list</span><span class=\"p\">,</span> <span class=\"n\">train_class_list</span><span class=\"p\">,</span> <span class=\"n\">test_class_list</span><span class=\"p\">,</span> <span class=\"n\">flag</span><span class=\"o\">=</span><span class=\"s1\">&#39;nltk&#39;</span><span class=\"p\">):</span>\n    <span class=\"c1\">## -----------------------------------------------------------------------------------</span>\n    <span class=\"k\">if</span> <span class=\"n\">flag</span> <span class=\"o\">==</span> <span class=\"s1\">&#39;nltk&#39;</span><span class=\"p\">:</span>\n        <span class=\"c1\">## 使用nltk分类器</span>\n        <span class=\"n\">train_flist</span> <span class=\"o\">=</span> <span class=\"nb\">zip</span><span class=\"p\">(</span><span class=\"n\">train_feature_list</span><span class=\"p\">,</span> <span class=\"n\">train_class_list</span><span class=\"p\">)</span>\n        <span class=\"n\">test_flist</span> <span class=\"o\">=</span> <span class=\"nb\">zip</span><span class=\"p\">(</span><span class=\"n\">test_feature_list</span><span class=\"p\">,</span> <span class=\"n\">test_class_list</span><span class=\"p\">)</span>\n        <span class=\"n\">classifier</span> <span class=\"o\">=</span> <span class=\"n\">nltk</span><span class=\"o\">.</span><span class=\"n\">classify</span><span class=\"o\">.</span><span class=\"n\">NaiveBayesClassifier</span><span class=\"o\">.</span><span class=\"n\">train</span><span class=\"p\">(</span><span class=\"n\">train_flist</span><span class=\"p\">)</span>\n        <span class=\"n\">test_accuracy</span> <span class=\"o\">=</span> <span class=\"n\">nltk</span><span class=\"o\">.</span><span class=\"n\">classify</span><span class=\"o\">.</span><span class=\"n\">accuracy</span><span class=\"p\">(</span><span class=\"n\">classifier</span><span class=\"p\">,</span> <span class=\"n\">test_flist</span><span class=\"p\">)</span>\n    <span class=\"k\">elif</span> <span class=\"n\">flag</span> <span class=\"o\">==</span> <span class=\"s1\">&#39;sklearn&#39;</span><span class=\"p\">:</span>\n        <span class=\"c1\">## sklearn分类器</span>\n        <span class=\"n\">classifier</span> <span class=\"o\">=</span> <span class=\"n\">MultinomialNB</span><span class=\"p\">()</span><span class=\"o\">.</span><span class=\"n\">fit</span><span class=\"p\">(</span><span class=\"n\">train_feature_list</span><span class=\"p\">,</span> <span class=\"n\">train_class_list</span><span class=\"p\">)</span>\n        <span class=\"n\">test_accuracy</span> <span class=\"o\">=</span> <span class=\"n\">classifier</span><span class=\"o\">.</span><span class=\"n\">score</span><span class=\"p\">(</span><span class=\"n\">test_feature_list</span><span class=\"p\">,</span> <span class=\"n\">test_class_list</span><span class=\"p\">)</span>\n    <span class=\"k\">else</span><span class=\"p\">:</span>\n        <span class=\"n\">test_accuracy</span> <span class=\"o\">=</span> <span class=\"p\">[]</span>\n    <span class=\"k\">return</span> <span class=\"n\">test_accuracy</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n\n</div>\n<div class=\"cell border-box-sizing code_cell rendered\">\n<div class=\"input\">\n<div class=\"prompt input_prompt\">In&nbsp;[13]:</div>\n<div class=\"inner_cell\">\n    <div class=\"input_area\">\n<div class=\" highlight hl-ipython2\"><pre><span></span><span class=\"k\">print</span> <span class=\"s2\">&quot;start&quot;</span>\n\n<span class=\"c1\">## 文本预处理</span>\n<span class=\"n\">folder_path</span> <span class=\"o\">=</span> <span class=\"s1\">&#39;./Database/SogouC/Sample&#39;</span>\n<span class=\"n\">all_words_list</span><span class=\"p\">,</span> <span class=\"n\">train_data_list</span><span class=\"p\">,</span> <span class=\"n\">test_data_list</span><span class=\"p\">,</span> <span class=\"n\">train_class_list</span><span class=\"p\">,</span> <span class=\"n\">test_class_list</span> <span class=\"o\">=</span> <span class=\"n\">text_processing</span><span class=\"p\">(</span><span class=\"n\">folder_path</span><span class=\"p\">,</span> <span class=\"n\">test_size</span><span class=\"o\">=</span><span class=\"mf\">0.2</span><span class=\"p\">)</span>\n\n<span class=\"c1\"># 生成stopwords_set</span>\n<span class=\"n\">stopwords_file</span> <span class=\"o\">=</span> <span class=\"s1\">&#39;./stopwords_cn.txt&#39;</span>\n<span class=\"n\">stopwords_set</span> <span class=\"o\">=</span> <span class=\"n\">make_word_set</span><span class=\"p\">(</span><span class=\"n\">stopwords_file</span><span class=\"p\">)</span>\n\n<span class=\"c1\">## 文本特征提取和分类</span>\n<span class=\"c1\"># flag = &#39;nltk&#39;</span>\n<span class=\"n\">flag</span> <span class=\"o\">=</span> <span class=\"s1\">&#39;sklearn&#39;</span>\n<span class=\"n\">deleteNs</span> <span class=\"o\">=</span> <span class=\"nb\">range</span><span class=\"p\">(</span><span class=\"mi\">0</span><span class=\"p\">,</span> <span class=\"mi\">1000</span><span class=\"p\">,</span> <span class=\"mi\">20</span><span class=\"p\">)</span>\n<span class=\"n\">test_accuracy_list</span> <span class=\"o\">=</span> <span class=\"p\">[]</span>\n<span class=\"k\">for</span> <span class=\"n\">deleteN</span> <span class=\"ow\">in</span> <span class=\"n\">deleteNs</span><span class=\"p\">:</span>\n    <span class=\"c1\"># feature_words = words_dict(all_words_list, deleteN)</span>\n    <span class=\"n\">feature_words</span> <span class=\"o\">=</span> <span class=\"n\">words_dict</span><span class=\"p\">(</span><span class=\"n\">all_words_list</span><span class=\"p\">,</span> <span class=\"n\">deleteN</span><span class=\"p\">,</span> <span class=\"n\">stopwords_set</span><span class=\"p\">)</span>\n    <span class=\"n\">train_feature_list</span><span class=\"p\">,</span> <span class=\"n\">test_feature_list</span> <span class=\"o\">=</span> <span class=\"n\">text_features</span><span class=\"p\">(</span><span class=\"n\">train_data_list</span><span class=\"p\">,</span> <span class=\"n\">test_data_list</span><span class=\"p\">,</span> <span class=\"n\">feature_words</span><span class=\"p\">,</span> <span class=\"n\">flag</span><span class=\"p\">)</span>\n    <span class=\"n\">test_accuracy</span> <span class=\"o\">=</span> <span class=\"n\">text_classifier</span><span class=\"p\">(</span><span class=\"n\">train_feature_list</span><span class=\"p\">,</span> <span class=\"n\">test_feature_list</span><span class=\"p\">,</span> <span class=\"n\">train_class_list</span><span class=\"p\">,</span> <span class=\"n\">test_class_list</span><span class=\"p\">,</span> <span class=\"n\">flag</span><span class=\"p\">)</span>\n    <span class=\"n\">test_accuracy_list</span><span class=\"o\">.</span><span class=\"n\">append</span><span class=\"p\">(</span><span class=\"n\">test_accuracy</span><span class=\"p\">)</span>\n<span class=\"k\">print</span> <span class=\"n\">test_accuracy_list</span>\n\n<span class=\"c1\"># 结果评价</span>\n<span class=\"c1\">#plt.figure()</span>\n<span class=\"n\">plt</span><span class=\"o\">.</span><span class=\"n\">plot</span><span class=\"p\">(</span><span class=\"n\">deleteNs</span><span class=\"p\">,</span> <span class=\"n\">test_accuracy_list</span><span class=\"p\">)</span>\n<span class=\"n\">plt</span><span class=\"o\">.</span><span class=\"n\">title</span><span class=\"p\">(</span><span class=\"s1\">&#39;Relationship of deleteNs and test_accuracy&#39;</span><span class=\"p\">)</span>\n<span class=\"n\">plt</span><span class=\"o\">.</span><span class=\"n\">xlabel</span><span class=\"p\">(</span><span class=\"s1\">&#39;deleteNs&#39;</span><span class=\"p\">)</span>\n<span class=\"n\">plt</span><span class=\"o\">.</span><span class=\"n\">ylabel</span><span class=\"p\">(</span><span class=\"s1\">&#39;test_accuracy&#39;</span><span class=\"p\">)</span>\n<span class=\"n\">plt</span><span class=\"o\">.</span><span class=\"n\">show</span><span class=\"p\">()</span>\n<span class=\"c1\">#plt.savefig(&#39;result.png&#39;)</span>\n\n<span class=\"k\">print</span> <span class=\"s2\">&quot;finished&quot;</span>\n</pre></div>\n\n</div>\n</div>\n</div>\n\n<div class=\"output_wrapper\">\n<div class=\"output\">\n\n\n<div class=\"output_area\"><div class=\"prompt\"></div>\n<div class=\"output_subarea output_stream output_stdout output_text\">\n<pre>start\n[0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.68421052631578949, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.52631578947368418, 0.63157894736842102, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.57894736842105265, 0.68421052631578949, 0.57894736842105265, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102, 0.68421052631578949, 0.63157894736842102, 0.57894736842105265, 0.57894736842105265, 0.57894736842105265, 0.63157894736842102, 0.63157894736842102, 0.63157894736842102]\nfinished\n</pre>\n</div>\n</div>\n\n</div>\n</div>\n\n</div>\n    </div>\n  </div>\n</body>\n</html>\n"
  },
  {
    "path": "P002-Pytorch-Two-Layers-Neural-Net/two_layer_neural_net.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## pytorch实现两层神经网络\\n\",\n    \"- 文档：https://pytorch.org/docs/torch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'1.0.1'\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.__version__\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 用numpy实现两层神经网络\\n\",\n    \"一个全连接ReLU神经网络，一个隐藏层，没有bias。用来从x预测y，使用L2 Loss。\\n\",\n    \"- $h = W_1X$\\n\",\n    \"- $a = max(0, h)$\\n\",\n    \"- $y_{hat} = W_2a$\\n\",\n    \"\\n\",\n    \"这一实现完全使用numpy来计算前向神经网络，loss，和反向传播。\\n\",\n    \"- forward pass\\n\",\n    \"- loss\\n\",\n    \"- backward pass\\n\",\n    \"\\n\",\n    \"numpy ndarray是一个普通的n维array。它不知道任何关于深度学习或者梯度(gradient)的知识，也不知道计算图(computation graph)，只是一种用来计算数学运算的数据结构。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"训练集维度： 1000\\n\",\n      \"itor: 0 | loss:36379916.30562085\\n\",\n      \"itor: 50 | loss:11522.84048949815\\n\",\n      \"itor: 100 | loss:312.54151381266536\\n\",\n      \"itor: 150 | loss:13.699522200570192\\n\",\n      \"itor: 200 | loss:0.7797040963869617\\n\",\n      \"itor: 250 | loss:0.05274861775962181\\n\",\n      \"itor: 300 | loss:0.004007803190526088\\n\",\n      \"itor: 350 | loss:0.00032858051495920253\\n\",\n      \"itor: 400 | loss:2.82897568570412e-05\\n\",\n      \"itor: 450 | loss:2.5142220375801123e-06\\n\",\n      \"itor: 500 | loss:2.2822002515655443e-07\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 样本个数，输入维度，hinton, 输出维度\\n\",\n    \"N, D_in, H, D_out = 64, 1000, 100, 10\\n\",\n    \"\\n\",\n    \"# 随机创建一些训练数据\\n\",\n    \"x = np.random.randn(N, D_in)\\n\",\n    \"y = np.random.randn(N, D_out)\\n\",\n    \"print(\\\"训练集维度：\\\", len(x[1]))\\n\",\n    \"\\n\",\n    \"w1 = np.random.randn(D_in, H)\\n\",\n    \"w2 = np.random.randn(H, D_out)\\n\",\n    \"\\n\",\n    \"learning_rate = 1e-6\\n\",\n    \"for it in range(501):\\n\",\n    \"    # 向前传播\\n\",\n    \"    h = x.dot(w1)   # N * H\\n\",\n    \"    # X 与 Y 逐位比较取其大者, 至少接收两个参数\\n\",\n    \"    h_relu = np.maximum(h, 0)  # N * H\\n\",\n    \"    y_pred = h_relu.dot(w2)  # N * D_out\\n\",\n    \"    \\n\",\n    \"    # 计算损失\\n\",\n    \"    loss = np.square(y_pred - y).sum()\\n\",\n    \"    # print(it, loss)\\n\",\n    \"    \\n\",\n    \"    # 反向传播\\n\",\n    \"    # 计算梯度\\n\",\n    \"    grad_y_pred = 2.0 * (y_pred - y)  # N * D_out\\n\",\n    \"    grad_w2 = h_relu.T.dot(grad_y_pred)\\n\",\n    \"    grad_h_relu = grad_y_pred.dot(w2.T)\\n\",\n    \"    grad_h = grad_h_relu.copy()\\n\",\n    \"    grad_h[h<0] = 0\\n\",\n    \"    grad_w1 = x.T.dot(grad_h)\\n\",\n    \"    \\n\",\n    \"    # update weights of w1 and w2\\n\",\n    \"    w1 -= learning_rate * grad_w1\\n\",\n    \"    w2 -= learning_rate * grad_w2\\n\",\n    \"    if it % 50 == 0:\\n\",\n    \"        print(\\\"itor: {} | loss:{}\\\".format(it, loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## PyTorch: Tensors\\n\",\n    \"- 使用PyTorch tensors来创建前向神经网络，计算损失，以及反向传播。\\n\",\n    \"- 一个PyTorch Tensor很像一个numpy的ndarray。但是它和numpy ndarray最大的区别是，PyTorch Tensor可以在CPU或者GPU上运算。如果想要在GPU上运算，就需要把Tensor换成cuda类型。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"itor: 0 | loss:26421104.0\\n\",\n      \"itor: 50 | loss:8897.6162109375\\n\",\n      \"itor: 100 | loss:248.85116577148438\\n\",\n      \"itor: 150 | loss:12.546610832214355\\n\",\n      \"itor: 200 | loss:0.842868447303772\\n\",\n      \"itor: 250 | loss:0.06756731867790222\\n\",\n      \"itor: 300 | loss:0.006269404664635658\\n\",\n      \"itor: 350 | loss:0.0008211490930989385\\n\",\n      \"itor: 400 | loss:0.0001843837380874902\\n\",\n      \"itor: 450 | loss:6.254202889977023e-05\\n\",\n      \"itor: 500 | loss:2.910074545070529e-05\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"N, D_in, H, D_out = 64, 1000, 100, 10\\n\",\n    \"\\n\",\n    \"# 随机创建一些训练数据\\n\",\n    \"x = torch.randn(N, D_in)\\n\",\n    \"y = torch.randn(N, D_out)\\n\",\n    \"\\n\",\n    \"w1 = torch.randn(D_in, H)\\n\",\n    \"w2 = torch.randn(H, D_out)\\n\",\n    \"\\n\",\n    \"learning_rate = 1e-6\\n\",\n    \"for it in range(501):\\n\",\n    \"    # Forward pass\\n\",\n    \"    h = x.mm(w1) # N * H\\n\",\n    \"    # clamp(min=x)小于x的等于x，＞x等于本身\\n\",\n    \"    h_relu = h.clamp(min=0) # N * H\\n\",\n    \"    y_pred = h_relu.mm(w2) # N * D_out\\n\",\n    \"    \\n\",\n    \"    # compute loss\\n\",\n    \"    loss = (y_pred - y).pow(2).sum().item()\\n\",\n    \"    \\n\",\n    \"    # Backward pass\\n\",\n    \"    # compute the gradient\\n\",\n    \"    grad_y_pred = 2.0 * (y_pred - y)\\n\",\n    \"    ## mm是点乘\\n\",\n    \"    grad_w2 = h_relu.t().mm(grad_y_pred)\\n\",\n    \"    grad_h_relu = grad_y_pred.mm(w2.t())\\n\",\n    \"    grad_h = grad_h_relu.clone()\\n\",\n    \"    grad_h[h<0] = 0\\n\",\n    \"    grad_w1 = x.t().mm(grad_h)\\n\",\n    \"    \\n\",\n    \"    # update weights of w1 and w2\\n\",\n    \"    w1 -= learning_rate * grad_w1\\n\",\n    \"    w2 -= learning_rate * grad_w2\\n\",\n    \"    if it % 50 == 0:\\n\",\n    \"        print(\\\"itor: {} | loss:{}\\\".format(it, loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-1,  2,  3]])\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a = torch.tensor([[-1,2,3]])\\n\",\n    \"a\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0, 2, 3]])\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"h_relu = a.clamp(min=0)\\n\",\n    \"h_relu\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## PyTorch: nn\\n\",\n    \"\\n\",\n    \"- 这次我们使用PyTorch中nn这个库来构建网络。\\n\",\n    \"- 用PyTorch autograd来构建计算图和计算gradients，\\n\",\n    \"- 然后PyTorch会帮我们自动计算gradient。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"itor: 0 | loss:34639348.0\\n\",\n      \"itor: 50 | loss:14032.80859375\\n\",\n      \"itor: 100 | loss:599.4075927734375\\n\",\n      \"itor: 150 | loss:46.61559295654297\\n\",\n      \"itor: 200 | loss:4.714935302734375\\n\",\n      \"itor: 250 | loss:0.5426292419433594\\n\",\n      \"itor: 300 | loss:0.06672129034996033\\n\",\n      \"itor: 350 | loss:0.00874057225883007\\n\",\n      \"itor: 400 | loss:0.0014095803489908576\\n\",\n      \"itor: 450 | loss:0.00035330350510776043\\n\",\n      \"itor: 500 | loss:0.0001314057590207085\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import torch.nn as nn\\n\",\n    \"\\n\",\n    \"N, D_in, H, D_out = 64, 1000, 100, 10\\n\",\n    \"\\n\",\n    \"# 随机创建一些训练数据\\n\",\n    \"x = torch.randn(N, D_in)\\n\",\n    \"y = torch.randn(N, D_out)\\n\",\n    \"\\n\",\n    \"model = torch.nn.Sequential(\\n\",\n    \"    torch.nn.Linear(D_in, H, bias=False), # w_1 * x + b_1\\n\",\n    \"    torch.nn.ReLU(),\\n\",\n    \"    torch.nn.Linear(H, D_out, bias=False),\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"torch.nn.init.normal_(model[0].weight)\\n\",\n    \"torch.nn.init.normal_(model[2].weight)\\n\",\n    \"\\n\",\n    \"# model = model.cuda()\\n\",\n    \"\\n\",\n    \"loss_fn = nn.MSELoss(reduction='sum')\\n\",\n    \"\\n\",\n    \"learning_rate = 1e-6\\n\",\n    \"for it in range(501):\\n\",\n    \"    # Forward pass\\n\",\n    \"    y_pred = model(x) # model.forward() \\n\",\n    \"    \\n\",\n    \"    # compute loss\\n\",\n    \"    loss = loss_fn(y_pred, y) # computation graph\\n\",\n    \"#     print(it, loss.item())\\n\",\n    \"    \\n\",\n    \"    # Backward pass\\n\",\n    \"    loss.backward()\\n\",\n    \"    \\n\",\n    \"    # update weights of w1 and w2\\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for param in model.parameters(): # param (tensor, grad)\\n\",\n    \"            param -= learning_rate * param.grad\\n\",\n    \"            \\n\",\n    \"    model.zero_grad()\\n\",\n    \"    if it % 50 == 0:\\n\",\n    \"        print(\\\"itor: {} | loss:{}\\\".format(it, loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## PyTorch: optim\\n\",\n    \"\\n\",\n    \"- 这一次我们不再手动更新模型的weights,而是使用optim这个包来帮助我们更新参数。\\n\",\n    \"- optim这个package提供了各种不同的模型优化方法，包括SGD+momentum, RMSProp, Adam等等。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"itor: 0 | loss:25604472.0\\n\",\n      \"itor: 50 | loss:13182.306640625\\n\",\n      \"itor: 100 | loss:355.7388916015625\\n\",\n      \"itor: 150 | loss:17.296062469482422\\n\",\n      \"itor: 200 | loss:1.1180250644683838\\n\",\n      \"itor: 250 | loss:0.08529026061296463\\n\",\n      \"itor: 300 | loss:0.0075076608918607235\\n\",\n      \"itor: 350 | loss:0.0009207671391777694\\n\",\n      \"itor: 400 | loss:0.0002065193111775443\\n\",\n      \"itor: 450 | loss:7.471397111658007e-05\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import torch.nn as nn\\n\",\n    \"\\n\",\n    \"N, D_in, H, D_out = 64, 1000, 100, 10\\n\",\n    \"\\n\",\n    \"# 随机创建一些训练数据\\n\",\n    \"x = torch.randn(N, D_in)\\n\",\n    \"y = torch.randn(N, D_out)\\n\",\n    \"\\n\",\n    \"model = torch.nn.Sequential(\\n\",\n    \"    torch.nn.Linear(D_in, H, bias=False), # w_1 * x + b_1\\n\",\n    \"    torch.nn.ReLU(),\\n\",\n    \"    torch.nn.Linear(H, D_out, bias=False),\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"torch.nn.init.normal_(model[0].weight)\\n\",\n    \"torch.nn.init.normal_(model[2].weight)\\n\",\n    \"\\n\",\n    \"# model = model.cuda()\\n\",\n    \"\\n\",\n    \"loss_fn = nn.MSELoss(reduction='sum')\\n\",\n    \"# learning_rate = 1e-4\\n\",\n    \"# optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\\n\",\n    \"\\n\",\n    \"learning_rate = 1e-6\\n\",\n    \"optimizer = torch.optim.SGD(model.parameters(), lr=learning_rate)\\n\",\n    \"\\n\",\n    \"for it in range(500):\\n\",\n    \"    # Forward pass\\n\",\n    \"    y_pred = model(x) # model.forward() \\n\",\n    \"    \\n\",\n    \"    # compute loss\\n\",\n    \"    loss = loss_fn(y_pred, y) # computation graph\\n\",\n    \"#     print(it, loss.item())\\n\",\n    \"\\n\",\n    \"    optimizer.zero_grad()\\n\",\n    \"    # Backward pass\\n\",\n    \"    loss.backward()\\n\",\n    \"    \\n\",\n    \"    # update model parameters\\n\",\n    \"    optimizer.step()\\n\",\n    \"    if it % 50 == 0:\\n\",\n    \"        print(\\\"itor: {} | loss:{}\\\".format(it, loss))\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"PyTorch: 自定义 nn Modules\\n\",\n    \"--------------------------\\n\",\n    \"\\n\",\n    \"我们可以定义一个模型，这个模型继承自nn.Module类。如果需要定义一个比Sequential模型更加复杂的模型，就需要定义nn.Module模型。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"0 733.0379028320312\\n\",\n      \"itor: 0 | loss:733.0379028320312\\n\",\n      \"1 715.0055541992188\\n\",\n      \"2 697.4888916015625\\n\",\n      \"3 680.5151977539062\\n\",\n      \"4 664.1006469726562\\n\",\n      \"5 648.2057495117188\\n\",\n      \"6 632.8078002929688\\n\",\n      \"7 617.8178100585938\\n\",\n      \"8 603.2796020507812\\n\",\n      \"9 589.1598510742188\\n\",\n      \"10 575.4701538085938\\n\",\n      \"11 562.09765625\\n\",\n      \"12 549.1077270507812\\n\",\n      \"13 536.4368286132812\\n\",\n      \"14 524.1356201171875\\n\",\n      \"15 512.1729736328125\\n\",\n      \"16 500.55474853515625\\n\",\n      \"17 489.3145446777344\\n\",\n      \"18 478.4518127441406\\n\",\n      \"19 467.8425598144531\\n\",\n      \"20 457.54962158203125\\n\",\n      \"21 447.5525817871094\\n\",\n      \"22 437.77862548828125\\n\",\n      \"23 428.2828674316406\\n\",\n      \"24 419.04010009765625\\n\",\n      \"25 410.01165771484375\\n\",\n      \"26 401.2219543457031\\n\",\n      \"27 392.6513977050781\\n\",\n      \"28 384.2953796386719\\n\",\n      \"29 376.14251708984375\\n\",\n      \"30 368.1478576660156\\n\",\n      \"31 360.3475036621094\\n\",\n      \"32 352.6905517578125\\n\",\n      \"33 345.2397766113281\\n\",\n      \"34 337.96453857421875\\n\",\n      \"35 330.8605041503906\\n\",\n      \"36 323.9277648925781\\n\",\n      \"37 317.14654541015625\\n\",\n      \"38 310.4918212890625\\n\",\n      \"39 303.96148681640625\\n\",\n      \"40 297.5679016113281\\n\",\n      \"41 291.3141174316406\\n\",\n      \"42 285.1827087402344\\n\",\n      \"43 279.1679992675781\\n\",\n      \"44 273.2625732421875\\n\",\n      \"45 267.4571228027344\\n\",\n      \"46 261.7709655761719\\n\",\n      \"47 256.1896667480469\\n\",\n      \"48 250.71438598632812\\n\",\n      \"49 245.3334503173828\\n\",\n      \"50 240.03909301757812\\n\",\n      \"itor: 50 | loss:240.03909301757812\\n\",\n      \"51 234.8412322998047\\n\",\n      \"52 229.7264404296875\\n\",\n      \"53 224.70428466796875\\n\",\n      \"54 219.77076721191406\\n\",\n      \"55 214.94232177734375\\n\",\n      \"56 210.19667053222656\\n\",\n      \"57 205.53404235839844\\n\",\n      \"58 200.95599365234375\\n\",\n      \"59 196.4488067626953\\n\",\n      \"60 192.01954650878906\\n\",\n      \"61 187.6593780517578\\n\",\n      \"62 183.37176513671875\\n\",\n      \"63 179.15797424316406\\n\",\n      \"64 175.02517700195312\\n\",\n      \"65 170.9685516357422\\n\",\n      \"66 166.99330139160156\\n\",\n      \"67 163.08091735839844\\n\",\n      \"68 159.24078369140625\\n\",\n      \"69 155.4721221923828\\n\",\n      \"70 151.7720184326172\\n\",\n      \"71 148.15354919433594\\n\",\n      \"72 144.6126251220703\\n\",\n      \"73 141.1290283203125\\n\",\n      \"74 137.70669555664062\\n\",\n      \"75 134.35499572753906\\n\",\n      \"76 131.06094360351562\\n\",\n      \"77 127.82689666748047\\n\",\n      \"78 124.64949035644531\\n\",\n      \"79 121.52757263183594\\n\",\n      \"80 118.46273040771484\\n\",\n      \"81 115.45610809326172\\n\",\n      \"82 112.50567626953125\\n\",\n      \"83 109.60916137695312\\n\",\n      \"84 106.76937866210938\\n\",\n      \"85 103.97940826416016\\n\",\n      \"86 101.2391128540039\\n\",\n      \"87 98.5517578125\\n\",\n      \"88 95.91950988769531\\n\",\n      \"89 93.336181640625\\n\",\n      \"90 90.8083267211914\\n\",\n      \"91 88.32605743408203\\n\",\n      \"92 85.8914566040039\\n\",\n      \"93 83.5086669921875\\n\",\n      \"94 81.17327117919922\\n\",\n      \"95 78.8879623413086\\n\",\n      \"96 76.6518783569336\\n\",\n      \"97 74.46295166015625\\n\",\n      \"98 72.324951171875\\n\",\n      \"99 70.23460388183594\\n\",\n      \"100 68.19005584716797\\n\",\n      \"itor: 100 | loss:68.19005584716797\\n\",\n      \"101 66.19355773925781\\n\",\n      \"102 64.2402572631836\\n\",\n      \"103 62.33251953125\\n\",\n      \"104 60.46738815307617\\n\",\n      \"105 58.646697998046875\\n\",\n      \"106 56.868186950683594\\n\",\n      \"107 55.13227844238281\\n\",\n      \"108 53.44150924682617\\n\",\n      \"109 51.79106140136719\\n\",\n      \"110 50.182125091552734\\n\",\n      \"111 48.614463806152344\\n\",\n      \"112 47.08914566040039\\n\",\n      \"113 45.599822998046875\\n\",\n      \"114 44.148719787597656\\n\",\n      \"115 42.73536682128906\\n\",\n      \"116 41.35887908935547\\n\",\n      \"117 40.017032623291016\\n\",\n      \"118 38.711524963378906\\n\",\n      \"119 37.4423828125\\n\",\n      \"120 36.207462310791016\\n\",\n      \"121 35.00621795654297\\n\",\n      \"122 33.836585998535156\\n\",\n      \"123 32.700279235839844\\n\",\n      \"124 31.596023559570312\\n\",\n      \"125 30.52574348449707\\n\",\n      \"126 29.485641479492188\\n\",\n      \"127 28.475622177124023\\n\",\n      \"128 27.494762420654297\\n\",\n      \"129 26.542402267456055\\n\",\n      \"130 25.618410110473633\\n\",\n      \"131 24.72108268737793\\n\",\n      \"132 23.8505802154541\\n\",\n      \"133 23.007007598876953\\n\",\n      \"134 22.188146591186523\\n\",\n      \"135 21.395854949951172\\n\",\n      \"136 20.62778091430664\\n\",\n      \"137 19.88361358642578\\n\",\n      \"138 19.163785934448242\\n\",\n      \"139 18.465486526489258\\n\",\n      \"140 17.789155960083008\\n\",\n      \"141 17.13450050354004\\n\",\n      \"142 16.501205444335938\\n\",\n      \"143 15.88807201385498\\n\",\n      \"144 15.295546531677246\\n\",\n      \"145 14.722426414489746\\n\",\n      \"146 14.168596267700195\\n\",\n      \"147 13.63260555267334\\n\",\n      \"148 13.114553451538086\\n\",\n      \"149 12.614130020141602\\n\",\n      \"150 12.131239891052246\\n\",\n      \"itor: 150 | loss:12.131239891052246\\n\",\n      \"151 11.66529655456543\\n\",\n      \"152 11.215197563171387\\n\",\n      \"153 10.780630111694336\\n\",\n      \"154 10.361506462097168\\n\",\n      \"155 9.956844329833984\\n\",\n      \"156 9.566601753234863\\n\",\n      \"157 9.1907320022583\\n\",\n      \"158 8.828181266784668\\n\",\n      \"159 8.478806495666504\\n\",\n      \"160 8.142232894897461\\n\",\n      \"161 7.8181891441345215\\n\",\n      \"162 7.506022930145264\\n\",\n      \"163 7.2052321434021\\n\",\n      \"164 6.91557502746582\\n\",\n      \"165 6.636617660522461\\n\",\n      \"166 6.368254661560059\\n\",\n      \"167 6.110063552856445\\n\",\n      \"168 5.8614606857299805\\n\",\n      \"169 5.622430801391602\\n\",\n      \"170 5.392721176147461\\n\",\n      \"171 5.171601295471191\\n\",\n      \"172 4.959075927734375\\n\",\n      \"173 4.7549896240234375\\n\",\n      \"174 4.559126853942871\\n\",\n      \"175 4.3705878257751465\\n\",\n      \"176 4.189553260803223\\n\",\n      \"177 4.015899658203125\\n\",\n      \"178 3.8490376472473145\\n\",\n      \"179 3.689058780670166\\n\",\n      \"180 3.5353012084960938\\n\",\n      \"181 3.387801170349121\\n\",\n      \"182 3.2462048530578613\\n\",\n      \"183 3.110319137573242\\n\",\n      \"184 2.97992205619812\\n\",\n      \"185 2.854776382446289\\n\",\n      \"186 2.734652280807495\\n\",\n      \"187 2.6196062564849854\\n\",\n      \"188 2.509150743484497\\n\",\n      \"189 2.4034101963043213\\n\",\n      \"190 2.301755905151367\\n\",\n      \"191 2.2043099403381348\\n\",\n      \"192 2.110752820968628\\n\",\n      \"193 2.021108388900757\\n\",\n      \"194 1.9352127313613892\\n\",\n      \"195 1.852871060371399\\n\",\n      \"196 1.7738977670669556\\n\",\n      \"197 1.6982849836349487\\n\",\n      \"198 1.625936508178711\\n\",\n      \"199 1.5565831661224365\\n\",\n      \"200 1.4901046752929688\\n\",\n      \"itor: 200 | loss:1.4901046752929688\\n\",\n      \"201 1.426509141921997\\n\",\n      \"202 1.3656851053237915\\n\",\n      \"203 1.307332158088684\\n\",\n      \"204 1.2515028715133667\\n\",\n      \"205 1.1980562210083008\\n\",\n      \"206 1.14688241481781\\n\",\n      \"207 1.0978437662124634\\n\",\n      \"208 1.0508701801300049\\n\",\n      \"209 1.0059775114059448\\n\",\n      \"210 0.9629369974136353\\n\",\n      \"211 0.921754002571106\\n\",\n      \"212 0.882357656955719\\n\",\n      \"213 0.8445923924446106\\n\",\n      \"214 0.8084595799446106\\n\",\n      \"215 0.7739132642745972\\n\",\n      \"216 0.740837812423706\\n\",\n      \"217 0.7091805338859558\\n\",\n      \"218 0.6788672804832458\\n\",\n      \"219 0.6498571038246155\\n\",\n      \"220 0.6220843195915222\\n\",\n      \"221 0.5954957008361816\\n\",\n      \"222 0.5700555443763733\\n\",\n      \"223 0.5457085371017456\\n\",\n      \"224 0.5224031805992126\\n\",\n      \"225 0.5000970363616943\\n\",\n      \"226 0.47873106598854065\\n\",\n      \"227 0.45830944180488586\\n\",\n      \"228 0.4387199580669403\\n\",\n      \"229 0.4199889600276947\\n\",\n      \"230 0.40207639336586\\n\",\n      \"231 0.38491538166999817\\n\",\n      \"232 0.36848723888397217\\n\",\n      \"233 0.3527631163597107\\n\",\n      \"234 0.33773520588874817\\n\",\n      \"235 0.3233593702316284\\n\",\n      \"236 0.3095877170562744\\n\",\n      \"237 0.2964196503162384\\n\",\n      \"238 0.28382357954978943\\n\",\n      \"239 0.2717515230178833\\n\",\n      \"240 0.26019781827926636\\n\",\n      \"241 0.24913620948791504\\n\",\n      \"242 0.2385556846857071\\n\",\n      \"243 0.22840794920921326\\n\",\n      \"244 0.21870805323123932\\n\",\n      \"245 0.20940563082695007\\n\",\n      \"246 0.20050184428691864\\n\",\n      \"247 0.19198377430438995\\n\",\n      \"248 0.1838187426328659\\n\",\n      \"249 0.17600645124912262\\n\",\n      \"250 0.16852475702762604\\n\",\n      \"itor: 250 | loss:0.16852475702762604\\n\",\n      \"251 0.16135680675506592\\n\",\n      \"252 0.15449529886245728\\n\",\n      \"253 0.14792171120643616\\n\",\n      \"254 0.14162664115428925\\n\",\n      \"255 0.13559795916080475\\n\",\n      \"256 0.12982532382011414\\n\",\n      \"257 0.12429676204919815\\n\",\n      \"258 0.11900199949741364\\n\",\n      \"259 0.11392949521541595\\n\",\n      \"260 0.10907794535160065\\n\",\n      \"261 0.10443369299173355\\n\",\n      \"262 0.09998496621847153\\n\",\n      \"263 0.0957256481051445\\n\",\n      \"264 0.09164328873157501\\n\",\n      \"265 0.087736114859581\\n\",\n      \"266 0.08399540185928345\\n\",\n      \"267 0.08040788024663925\\n\",\n      \"268 0.07697564363479614\\n\",\n      \"269 0.07368747144937515\\n\",\n      \"270 0.07053933292627335\\n\",\n      \"271 0.06752251833677292\\n\",\n      \"272 0.06463374197483063\\n\",\n      \"273 0.061865806579589844\\n\",\n      \"274 0.05921589583158493\\n\",\n      \"275 0.05668210983276367\\n\",\n      \"276 0.0542558878660202\\n\",\n      \"277 0.05193295702338219\\n\",\n      \"278 0.04970851540565491\\n\",\n      \"279 0.0475761853158474\\n\",\n      \"280 0.04553404077887535\\n\",\n      \"281 0.04357927292585373\\n\",\n      \"282 0.041706398129463196\\n\",\n      \"283 0.0399136021733284\\n\",\n      \"284 0.03819454833865166\\n\",\n      \"285 0.036549121141433716\\n\",\n      \"286 0.03497181087732315\\n\",\n      \"287 0.0334622897207737\\n\",\n      \"288 0.032016571611166\\n\",\n      \"289 0.030631322413682938\\n\",\n      \"290 0.02930576354265213\\n\",\n      \"291 0.02803533524274826\\n\",\n      \"292 0.026819124817848206\\n\",\n      \"293 0.025654619559645653\\n\",\n      \"294 0.024539165198802948\\n\",\n      \"295 0.02347114495933056\\n\",\n      \"296 0.022448502480983734\\n\",\n      \"297 0.02146925777196884\\n\",\n      \"298 0.020531175658106804\\n\",\n      \"299 0.01963333785533905\\n\",\n      \"300 0.01877356879413128\\n\",\n      \"itor: 300 | loss:0.01877356879413128\\n\",\n      \"301 0.017950711771845818\\n\",\n      \"302 0.01716262847185135\\n\",\n      \"303 0.016408631578087807\\n\",\n      \"304 0.01568690501153469\\n\",\n      \"305 0.01499559823423624\\n\",\n      \"306 0.014334158971905708\\n\",\n      \"307 0.013700740411877632\\n\",\n      \"308 0.013094576075673103\\n\",\n      \"309 0.012514401227235794\\n\",\n      \"310 0.011959209106862545\\n\",\n      \"311 0.011427808552980423\\n\",\n      \"312 0.010919475927948952\\n\",\n      \"313 0.010433000512421131\\n\",\n      \"314 0.009967455640435219\\n\",\n      \"315 0.00952212419360876\\n\",\n      \"316 0.009096047841012478\\n\",\n      \"317 0.008688473142683506\\n\",\n      \"318 0.008298458531498909\\n\",\n      \"319 0.007925556041300297\\n\",\n      \"320 0.00756881246343255\\n\",\n      \"321 0.007227570749819279\\n\",\n      \"322 0.006901302374899387\\n\",\n      \"323 0.00658924225717783\\n\",\n      \"324 0.00629085348919034\\n\",\n      \"325 0.006005675531923771\\n\",\n      \"326 0.005732644349336624\\n\",\n      \"327 0.005471854005008936\\n\",\n      \"328 0.005222533363848925\\n\",\n      \"329 0.004984118975698948\\n\",\n      \"330 0.0047562927938997746\\n\",\n      \"331 0.004538547247648239\\n\",\n      \"332 0.004330404102802277\\n\",\n      \"333 0.004131576512008905\\n\",\n      \"334 0.003941478207707405\\n\",\n      \"335 0.0037598349153995514\\n\",\n      \"336 0.0035863355733454227\\n\",\n      \"337 0.0034205319825559855\\n\",\n      \"338 0.0032621929422020912\\n\",\n      \"339 0.003110914258286357\\n\",\n      \"340 0.0029663697350770235\\n\",\n      \"341 0.0028283866122365\\n\",\n      \"342 0.0026965574361383915\\n\",\n      \"343 0.0025706575252115726\\n\",\n      \"344 0.0024504426401108503\\n\",\n      \"345 0.002335740951821208\\n\",\n      \"346 0.002226143376901746\\n\",\n      \"347 0.002121537923812866\\n\",\n      \"348 0.0020216854754835367\\n\",\n      \"349 0.0019263827707618475\\n\",\n      \"350 0.0018354194471612573\\n\",\n      \"itor: 350 | loss:0.0018354194471612573\\n\",\n      \"351 0.0017486372962594032\\n\",\n      \"352 0.0016657868400216103\\n\",\n      \"353 0.0015867657493799925\\n\",\n      \"354 0.0015113611007109284\\n\",\n      \"355 0.0014393865130841732\\n\",\n      \"356 0.0013707540929317474\\n\",\n      \"357 0.00130530446767807\\n\",\n      \"358 0.0012428824556991458\\n\",\n      \"359 0.0011833207681775093\\n\",\n      \"360 0.001126525574363768\\n\",\n      \"361 0.0010723703308030963\\n\",\n      \"362 0.0010207598097622395\\n\",\n      \"363 0.000971512752585113\\n\",\n      \"364 0.0009245909750461578\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"365 0.0008798656053841114\\n\",\n      \"366 0.0008372166194021702\\n\",\n      \"367 0.0007965742261148989\\n\",\n      \"368 0.0007578626973554492\\n\",\n      \"369 0.0007209571776911616\\n\",\n      \"370 0.0006857806001789868\\n\",\n      \"371 0.000652278249617666\\n\",\n      \"372 0.0006203744560480118\\n\",\n      \"373 0.0005900075775571167\\n\",\n      \"374 0.0005610770895145833\\n\",\n      \"375 0.0005335356690920889\\n\",\n      \"376 0.0005072933272458613\\n\",\n      \"377 0.0004823018389288336\\n\",\n      \"378 0.00045850162860006094\\n\",\n      \"379 0.0004358526784926653\\n\",\n      \"380 0.00041428091935813427\\n\",\n      \"381 0.00039375151391141117\\n\",\n      \"382 0.00037419970612972975\\n\",\n      \"383 0.0003555973235052079\\n\",\n      \"384 0.00033788266591727734\\n\",\n      \"385 0.0003210420545656234\\n\",\n      \"386 0.0003050037776120007\\n\",\n      \"387 0.00028973701409995556\\n\",\n      \"388 0.0002752211585175246\\n\",\n      \"389 0.0002614006807561964\\n\",\n      \"390 0.0002482580894138664\\n\",\n      \"391 0.00023575864906888455\\n\",\n      \"392 0.0002238633023807779\\n\",\n      \"393 0.00021254907187540084\\n\",\n      \"394 0.000201794522581622\\n\",\n      \"395 0.0001915686298161745\\n\",\n      \"396 0.00018184821237809956\\n\",\n      \"397 0.00017260605818592012\\n\",\n      \"398 0.0001638112444197759\\n\",\n      \"399 0.00015545614587608725\\n\",\n      \"400 0.0001475143217248842\\n\",\n      \"itor: 400 | loss:0.0001475143217248842\\n\",\n      \"401 0.0001399632601533085\\n\",\n      \"402 0.00013278757978696376\\n\",\n      \"403 0.00012597277236636728\\n\",\n      \"404 0.00011950647603953257\\n\",\n      \"405 0.0001133719488279894\\n\",\n      \"406 0.00010754159302450716\\n\",\n      \"407 0.00010200327960774302\\n\",\n      \"408 9.674495231593028e-05\\n\",\n      \"409 9.175214654533193e-05\\n\",\n      \"410 8.700854959897697e-05\\n\",\n      \"411 8.250032260548323e-05\\n\",\n      \"412 7.822456245776266e-05\\n\",\n      \"413 7.416475273203105e-05\\n\",\n      \"414 7.030786946415901e-05\\n\",\n      \"415 6.664611282758415e-05\\n\",\n      \"416 6.317067163763568e-05\\n\",\n      \"417 5.987334589008242e-05\\n\",\n      \"418 5.673985288012773e-05\\n\",\n      \"419 5.376888293540105e-05\\n\",\n      \"420 5.094870357424952e-05\\n\",\n      \"421 4.82736541016493e-05\\n\",\n      \"422 4.5731492718914524e-05\\n\",\n      \"423 4.33214008808136e-05\\n\",\n      \"424 4.1036022594198585e-05\\n\",\n      \"425 3.886507329298183e-05\\n\",\n      \"426 3.680891313706525e-05\\n\",\n      \"427 3.485591150820255e-05\\n\",\n      \"428 3.300643220427446e-05\\n\",\n      \"429 3.124899376416579e-05\\n\",\n      \"430 2.958733239211142e-05\\n\",\n      \"431 2.800888250931166e-05\\n\",\n      \"432 2.6511224859859794e-05\\n\",\n      \"433 2.509452315280214e-05\\n\",\n      \"434 2.3747425075271167e-05\\n\",\n      \"435 2.2474763682112098e-05\\n\",\n      \"436 2.126479557773564e-05\\n\",\n      \"437 2.012101685977541e-05\\n\",\n      \"438 1.9035418517887592e-05\\n\",\n      \"439 1.8007665858021937e-05\\n\",\n      \"440 1.7034471966326237e-05\\n\",\n      \"441 1.6110379874589853e-05\\n\",\n      \"442 1.5236693798215128e-05\\n\",\n      \"443 1.440924188500503e-05\\n\",\n      \"444 1.362529019388603e-05\\n\",\n      \"445 1.2881573638878763e-05\\n\",\n      \"446 1.2177484677522443e-05\\n\",\n      \"447 1.151292963186279e-05\\n\",\n      \"448 1.0881620255531743e-05\\n\",\n      \"449 1.0284459676768165e-05\\n\",\n      \"450 9.72040925262263e-06\\n\",\n      \"itor: 450 | loss:9.72040925262263e-06\\n\",\n      \"451 9.185148883261718e-06\\n\",\n      \"452 8.679205166117754e-06\\n\",\n      \"453 8.199809599318542e-06\\n\",\n      \"454 7.74587897467427e-06\\n\",\n      \"455 7.317171366594266e-06\\n\",\n      \"456 6.912358458066592e-06\\n\",\n      \"457 6.5278377405775245e-06\\n\",\n      \"458 6.164257683849428e-06\\n\",\n      \"459 5.820666501676897e-06\\n\",\n      \"460 5.496231551660458e-06\\n\",\n      \"461 5.188785962673137e-06\\n\",\n      \"462 4.89842977913213e-06\\n\",\n      \"463 4.624025223165518e-06\\n\",\n      \"464 4.36335540143773e-06\\n\",\n      \"465 4.118970082345186e-06\\n\",\n      \"466 3.886555987264728e-06\\n\",\n      \"467 3.6669953260570765e-06\\n\",\n      \"468 3.4603658605192322e-06\\n\",\n      \"469 3.2640502922731685e-06\\n\",\n      \"470 3.079132966377074e-06\\n\",\n      \"471 2.9048217129457043e-06\\n\",\n      \"472 2.7397129542805487e-06\\n\",\n      \"473 2.582770321168937e-06\\n\",\n      \"474 2.436055183352437e-06\\n\",\n      \"475 2.297183073096676e-06\\n\",\n      \"476 2.1656144326698268e-06\\n\",\n      \"477 2.040970230154926e-06\\n\",\n      \"478 1.9233864350098884e-06\\n\",\n      \"479 1.812603727557871e-06\\n\",\n      \"480 1.7083531247408246e-06\\n\",\n      \"481 1.6101266737678088e-06\\n\",\n      \"482 1.5170415963439154e-06\\n\",\n      \"483 1.4289674936662777e-06\\n\",\n      \"484 1.3461143453241675e-06\\n\",\n      \"485 1.2679073506660643e-06\\n\",\n      \"486 1.194136189042183e-06\\n\",\n      \"487 1.124579057432129e-06\\n\",\n      \"488 1.05921310478152e-06\\n\",\n      \"489 9.969859320335672e-07\\n\",\n      \"490 9.3883414820084e-07\\n\",\n      \"491 8.835854146127531e-07\\n\",\n      \"492 8.318909294757759e-07\\n\",\n      \"493 7.828302841517143e-07\\n\",\n      \"494 7.369587819994194e-07\\n\",\n      \"495 6.932365295142517e-07\\n\",\n      \"496 6.522329840663588e-07\\n\",\n      \"497 6.13299448559701e-07\\n\",\n      \"498 5.771529458797886e-07\\n\",\n      \"499 5.429189400274481e-07\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import torch.nn as nn\\n\",\n    \"\\n\",\n    \"N, D_in, H, D_out = 64, 1000, 100, 10\\n\",\n    \"\\n\",\n    \"# 随机创建一些训练数据\\n\",\n    \"x = torch.randn(N, D_in)\\n\",\n    \"y = torch.randn(N, D_out)\\n\",\n    \"\\n\",\n    \"class TwoLayerNet(torch.nn.Module):\\n\",\n    \"    def __init__(self, D_in, H, D_out):\\n\",\n    \"        super(TwoLayerNet, self).__init__()\\n\",\n    \"        # define the model architecture\\n\",\n    \"        self.linear1 = torch.nn.Linear(D_in, H, bias=False)\\n\",\n    \"        self.linear2 = torch.nn.Linear(H, D_out, bias=False)\\n\",\n    \"    \\n\",\n    \"    def forward(self, x):\\n\",\n    \"        y_pred = self.linear2(self.linear1(x).clamp(min=0))\\n\",\n    \"        return y_pred\\n\",\n    \"\\n\",\n    \"model = TwoLayerNet(D_in, H, D_out)\\n\",\n    \"loss_fn = nn.MSELoss(reduction='sum')\\n\",\n    \"learning_rate = 1e-4\\n\",\n    \"optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\\n\",\n    \"\\n\",\n    \"for it in range(500):\\n\",\n    \"    # Forward pass\\n\",\n    \"    y_pred = model(x) # model.forward() \\n\",\n    \"    \\n\",\n    \"    # compute loss\\n\",\n    \"    loss = loss_fn(y_pred, y) # computation graph\\n\",\n    \"    print(it, loss.item())\\n\",\n    \"\\n\",\n    \"    optimizer.zero_grad()\\n\",\n    \"    # Backward pass\\n\",\n    \"    loss.backward()\\n\",\n    \"    \\n\",\n    \"    # update model parameters\\n\",\n    \"    optimizer.step()\\n\",\n    \"    if it % 50 == 0:\\n\",\n    \"        print(\\\"itor: {} | loss:{}\\\".format(it, loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.10\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P003-pytorch-Language-Model/_1_lm_lstm.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 语言模型\\n\",\n    \"------\\n\",\n    \"## 1 简介\\n\",\n    \"- pytorch实现LSTM训练语言模型\\n\",\n    \"- 使用的数据集：\\n\",\n    \"    - bobsue.lm.train.txt：语言模型训练数据（LMTRAIN）\\n\",\n    \"    - bobsue.lm.dev.txt：语言模型验证数据（LMDEV）\\n\",\n    \"    - bobsue.lm.test.txt：语言模型测试数据（LMTEST）\\n\",\n    \"    - bobsue.prevsent.train.tsv：基于上文的语言模型训练数据（PREVSENTTRAIN）\\n\",\n    \"    - bobsue.prevsent.dev.tsv：基于上文的上文语言模型验证数据（PREVSENTDEV）\\n\",\n    \"    - bobsue.prevsent.test.tsv：基于上文的上文语言模型测试数据（PREVSENTTEST）\\n\",\n    \"    - bobsue.voc.txt：词汇表文件，每行是一个单词\\n\",\n    \"    - lm文件中的每一行都包含一个故事中的句子。prev文件中的每一行都包含一故事中的一个句子，tab，然后是故事中的下一个句子。注意：prevsent文件中每一行的第二个字段与相应的lm文件中的对应行相同。( 也就是说：cut -f 2 bobsue.prevsent.x.tsv与bobsue.lm.x.txt相同）完整的词汇表包含在文件bobsue.voc.txt中，每一行是一个单词。在这个任务中不会出现未知单词。\\n\",\n    \"- 评估\\n\",\n    \"    - 我们使用单词预测准确率作为主要评估指标而非困惑度(perplexity)。因为当你试图比较某些损失函数时，perplexity不太好用。\\n\",\n    \"\\n\",\n    \"-----\\n\",\n    \"## 2 具体内容\\n\",\n    \"### 用Log Loss训练LSTM模型\\n\",\n    \"- 实现一个基于LSTM的语言模型。具体为：\\n\",\n    \"    - 对每个当前的hidden state做一个线性变化和softmax处理，预测下一个单词。\\n\",\n    \"    - 使用Log Loss (Cross Entropy Loss)来训练该模型。使用**EVALLM**的步骤来评估模型。\\n\",\n    \"    - 汇报模型训练结果和代码。你的单词预测准确率应该能够达到30%以上。\\n\",\n    \"- 要求\\n\",\n    \"    - 至少训练10个epoch\\n\",\n    \"    - 可以使用不同的模型参数。建议使用一层LSTM，200 hidden dimension作为词向量和LSTM hidden state的大小。\\n\",\n    \"    - 模型参数的初始值可以随机设定\\n\",\n    \"    - 输入和输出层的word embedding参数可以不一样，当然你也可以尝试把他们设置成一样。\\n\",\n    \"    - 使用Adam或者SGD等optimizer来优化模型。\\n\",\n    \"    - 在提交报告的时候请尽可能详细描述你的所有模型参数。\\n\",\n    \"----\\n\",\n    \"### 错误分析\\n\",\n    \"- 请在你的代码中添加一项功能，可以展示出你模型预测错误的单词，将标准答案单词和模型预测的单词分别打印出来。\\n\",\n    \"- 请写下你的模型最常见的35个预测错误(正确答案是a，模型预测了b)。\\n\",\n    \"- 通过观察这些常见的错误，将错误分类。你不需要将每个错误都分类，不过建议同学们花点时间观察自己模型的错误，看看他们是否有一定的相关性。大家可以尝试从以下角度思考错误类型：\\n\",\n    \"    - 为什么你的模型会预测出这个单词？\\n\",\n    \"    - 模型怎么样才能做得更好？这个模型犯的错误是很接近正确答案的吗？如果是的话，这个错误答案与正确答案有何相似之处？\\n\",\n    \"    - 把这35个预测错误归类成你定义的错误类别。讨论一下你的模型在哪些方面做得比较好，哪些方面做的不好。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"import torch.optim as optim\\n\",\n    \"\\n\",\n    \"from collections import Counter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 数据文件\\n\",\n    \"word_file = './data/bobsue.voc.txt'\\n\",\n    \"train_file = './data/bobsue.lm.train.txt'\\n\",\n    \"test_file = './data/bobsue.lm.test.txt'\\n\",\n    \"dev_file = './data/bobsue.lm.dev.txt'\\n\",\n    \"\\n\",\n    \"BATCH_SIZE = 32       # 批次大小\\n\",\n    \"EMBEDDING_DIM = 200   # 词向量维度\\n\",\n    \"HIDDEN_DIM = 200      # 隐含层\\n\",\n    \"GRAD_CLIP = 5.        # 梯度截断值\\n\",\n    \"EPOCHS = 20 \\n\",\n    \"LEARN_RATE = 0.01     # 初始学习率\\n\",\n    \"\\n\",\n    \"BEST_VALID_ACC = 0.     # 初始验证集上的损失值，设为最大\\n\",\n    \"MODEL_PATH = \\\"lm-best-dim{}.pth\\\"   # 模型名称\\n\",\n    \"USE_CUDA = torch.cuda.is_available()    # 是否使用GPU\\n\",\n    \"NUM_CUDA = torch.cuda.device_count()    # GPU数量\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 1 数据预处理\\n\",\n    \"### 1.1 读取数据文件，构建词汇集、word2idx、idx2word。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_word_set(filename):\\n\",\n    \"    with open(filename, \\\"r\\\", encoding=\\\"utf-8\\\") as f:\\n\",\n    \"        word_set = set([line.strip() for line in f])\\n\",\n    \"    return word_set\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"word_set = load_word_set(word_file)\\n\",\n    \"word2idx = {w:i for i, w in enumerate(word_set, 1)}\\n\",\n    \"idx2word = {i:w for i, w in enumerate(word_set, 1)}\\n\",\n    \"\\n\",\n    \"# 将pad的索引设置为0并添加到词表\\n\",\n    \"PAD_IDX = 0\\n\",\n    \"word2idx[\\\"<pad>\\\"] = PAD_IDX\\n\",\n    \"idx2word[PAD_IDX] = \\\"<pad>\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 1.2 训练、验证、测试数据准备\\n\",\n    \"- 将数据处理成模型可以接收的格式\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_corpus(filename):\\n\",\n    \"    \\\"\\\"\\\"读取数据集，返回句子列表\\\"\\\"\\\"\\n\",\n    \"    with open(filename, \\\"r\\\", encoding=\\\"utf-8\\\") as f:\\n\",\n    \"        sentences = [line.strip() for line in f]\\n\",\n    \"    return sentences\\n\",\n    \"\\n\",\n    \"def sentences2words(sentences):\\n\",\n    \"    \\\"\\\"\\\"将句子列表转换成单词列表\\\"\\\"\\\"\\n\",\n    \"    return [w for s in sentences for w in s.split()]\\n\",\n    \"\\n\",\n    \"def max_sentence_num(sentences):\\n\",\n    \"    \\\"\\\"\\\"返回最长句子单词数量\\\"\\\"\\\"\\n\",\n    \"    return max([len(s.split()) for s in sentences ])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 各数据集的句子列表\\n\",\n    \"train_sentences = load_corpus(train_file)\\n\",\n    \"dev_sentences = load_corpus(dev_file)\\n\",\n    \"test_sentences = load_corpus(test_file)\\n\",\n    \"\\n\",\n    \"# 各数据集的单词列表\\n\",\n    \"train_words = sentences2words(train_sentences)\\n\",\n    \"dev_words = sentences2words(dev_sentences)\\n\",\n    \"test_words = sentences2words(test_sentences)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"训练集句子数: 6036, 单词数: 71367.\\n\",\n      \"验证集句子数: 750, 单词数: 8707.\\n\",\n      \"测试集句子数: 750, 单词数: 8809.\\n\",\n      \"--------------------------------------------------\\n\",\n      \"训练集最长句子单词个数： 21\\n\",\n      \"验证集最长句子单词个数： 20\\n\",\n      \"测试集最长句子单词个数： 21\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 查看处理后训练集、验证集、测试集的基本情况\\n\",\n    \"s = \\\"{}句子数: {}, 单词数: {}.\\\"\\n\",\n    \"print(s.format(\\\"训练集\\\", len(train_sentences), len(train_words)))\\n\",\n    \"print(s.format(\\\"验证集\\\", len(dev_sentences), len(dev_words)))\\n\",\n    \"print(s.format(\\\"测试集\\\", len(test_sentences), len(test_words)))\\n\",\n    \"\\n\",\n    \"print(\\\"-\\\"*50)\\n\",\n    \"\\n\",\n    \"# 这里需要知道各数据集上最长句子的单词📚，以便后面构造单词索引向量的时候设置一个恰当的维度\\n\",\n    \"print(\\\"训练集最长句子单词个数：\\\", max_sentence_num(train_sentences))\\n\",\n    \"print(\\\"验证集最长句子单词个数：\\\", max_sentence_num(dev_sentences))\\n\",\n    \"print(\\\"测试集最长句子单词个数：\\\", max_sentence_num(test_sentences))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def build_x_y(corpus, word2idx, seq_len=21):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    构造输入模型的特征以及标签。\\n\",\n    \"    输入：\\n\",\n    \"        corpus： 列表，每个元素是一个句子。\\n\",\n    \"        word2idx： 字典，key是单词，value是单词的索引。\\n\",\n    \"        seq_len：int, 句子切分后的单词序列的长度。\\n\",\n    \"    返回：\\n\",\n    \"        sentences：二维列表，每一行是一个句子切分后单词的索引列表（不包括句子的最后一个单词）。输入模型的x。\\n\",\n    \"        labels：二维列表，每一行是一个句子切分后单词的索引列表（不包括句子的第一个单词）。y。\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    sentences = []\\n\",\n    \"    labels = []\\n\",\n    \"    for sentence in corpus:\\n\",\n    \"        words = sentence.split()\\n\",\n    \"        sentence_vec = [0]*seq_len\\n\",\n    \"        for i, w in enumerate(words[:-1]):\\n\",\n    \"            sentence_vec[i] = word2idx[w]\\n\",\n    \"        sentences.append(sentence_vec)\\n\",\n    \"        \\n\",\n    \"        label_vec = [0] * seq_len\\n\",\n    \"        for i, w in enumerate(words[1:]):\\n\",\n    \"            label_vec[i] = word2idx[w]\\n\",\n    \"        labels.append(label_vec)\\n\",\n    \"    return sentences, labels\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_data, train_label = build_x_y(train_sentences, word2idx)\\n\",\n    \"dev_data, dev_label = build_x_y(dev_sentences, word2idx)\\n\",\n    \"test_data, test_label = build_x_y(test_sentences, word2idx)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[1079, 1029, 717, 122, 1259, 413, 1224, 944, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\\n\",\n      \"      [1029, 717, 122, 1259, 413, 1224, 944, 1308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 查看处理后的训练集第一个样本及标签\\n\",\n    \"print(train_data[1])\\n\",\n    \"print(\\\" \\\"*5, train_label[1])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"<s> The girl broke up with Bob . <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad>\\n\",\n      \"    The girl broke up with Bob . </s> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad>\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"idx = 1\\n\",\n    \"print(\\\" \\\".join([idx2word[i] for i in train_data[idx]]))\\n\",\n    \"\\n\",\n    \"print(\\\" \\\"*3, \\\" \\\".join([idx2word[i] for i in train_label[idx]]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 构造批次数据\\n\",\n    \"def build_batch_data(data, label, batch_size=32):\\n\",\n    \"    \\\"\\\"\\\"构建 batch tensor，返回 batch 列表，每个batch为二元组包含data和label\\\"\\\"\\\"\\n\",\n    \"    batch_data = []\\n\",\n    \"    data_tensor = torch.tensor(data, dtype=torch.long)\\n\",\n    \"    label_tensor = torch.tensor(label, dtype=torch.long)\\n\",\n    \"    n, dim = data_tensor.size()\\n\",\n    \"    for start in range(0, n, batch_size):\\n\",\n    \"        end = start + batch_size\\n\",\n    \"        if end > n:\\n\",\n    \"            dbatch = data_tensor[start: ]\\n\",\n    \"            lbatch = label_tensor[start: ]\\n\",\n    \"            print(\\\"最后一个batch size:\\\", dbatch.size())\\n\",\n    \"            break\\n\",\n    \"        else:\\n\",\n    \"            dbatch = data_tensor[start: end]\\n\",\n    \"            lbatch = label_tensor[start: end]\\n\",\n    \"        batch_data.append((dbatch, lbatch))\\n\",\n    \"    return batch_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"最后一个batch size: torch.Size([20, 21])\\n\",\n      \"最后一个batch size: torch.Size([14, 21])\\n\",\n      \"最后一个batch size: torch.Size([14, 21])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"train_batch = build_batch_data(train_data, train_label, batch_size=BATCH_SIZE)\\n\",\n    \"dev_batch = build_batch_data(dev_data, dev_label, batch_size=BATCH_SIZE)\\n\",\n    \"test_batch = build_batch_data(test_data, test_label, batch_size=BATCH_SIZE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"188 23 23\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 查看各数据集有多少个batch\\n\",\n    \"print(len(train_batch), len(dev_batch), len(test_batch))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 2 定义模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 定义模型\\n\",\n    \"class MyLSTM(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embedding_dim, hidden_dim):\\n\",\n    \"        super(MyLSTM, self).__init__()\\n\",\n    \"        self.vocab_size = vocab_size\\n\",\n    \"        self.hidden_dim = hidden_dim\\n\",\n    \"        self.word_embeddings = nn.Embedding(self.vocab_size, embedding_dim)\\n\",\n    \"        # batch_first=True 意味着输入是(batch, seq, feature)\\n\",\n    \"        self.lstm = nn.LSTM(embedding_dim, hidden_dim, batch_first=True)\\n\",\n    \"        self.hidden2word = nn.Linear(hidden_dim, self.vocab_size)\\n\",\n    \"        \\n\",\n    \"    def forward(self, x):\\n\",\n    \"        embeds = self.word_embeddings(x)\\n\",\n    \"        lstm_out, (h_n, c_n) = self.lstm(embeds)\\n\",\n    \"        target_space = self.hidden2word(lstm_out.contiguous().view(-1, self.hidden_dim))\\n\",\n    \"        mask = (x != PAD_IDX).view(-1)\\n\",\n    \"        mask_target = target_space[mask]\\n\",\n    \"        \\n\",\n    \"        target_scores = F.log_softmax(mask_target, dim=1)\\n\",\n    \"        return target_scores\\n\",\n    \"\\n\",\n    \"    \\n\",\n    \"# 计算准确率\\n\",\n    \"def acc_score(pred_score, y):\\n\",\n    \"    # 返回最大的概率的索引\\n\",\n    \"    y_pred = pred_score.argmax(dim=1)\\n\",\n    \"    # print(y.view(-1))\\n\",\n    \"    acc_count = torch.eq(y_pred, y.view(-1))\\n\",\n    \"    score = acc_count.sum().item() / acc_count.size()[0]\\n\",\n    \"    return score\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# 训练函数\\n\",\n    \"def train(model, device, iterator, optimizer, criterion, grad_clip):\\n\",\n    \"    epoch_loss = 0  # 积累变量\\n\",\n    \"    epoch_acc = 0   # 积累变量\\n\",\n    \"    model.train()   # 该函数表示PHASE=Train\\n\",\n    \"    \\n\",\n    \"    for x, y in iterator:  # 拿每一个minibatch\\n\",\n    \"        x = x.to(device)\\n\",\n    \"        y = y.to(device)\\n\",\n    \"        \\n\",\n    \"        optimizer.zero_grad()\\n\",\n    \"        mask = y != PAD_IDX\\n\",\n    \"        pure_y = y[mask]\\n\",\n    \"        \\n\",\n    \"        fx = model(x)                 # 进行forward\\n\",\n    \"        loss = criterion(fx, pure_y)  # 计算loss\\n\",\n    \"        acc = acc_score(fx, pure_y)   # 计算准确率\\n\",\n    \"        loss.backward()               # 进行BP\\n\",\n    \"        \\n\",\n    \"        # 梯度裁剪\\n\",\n    \"        torch.nn.utils.clip_grad_norm_(model.parameters(), grad_clip)\\n\",\n    \"        optimizer.step()  # 更新参数\\n\",\n    \"        \\n\",\n    \"        epoch_loss += loss\\n\",\n    \"        epoch_acc += acc\\n\",\n    \"        \\n\",\n    \"    return epoch_loss/len(iterator),epoch_acc/len(iterator)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# 验证函数，验证集和测试集用，不更新梯度\\n\",\n    \"def evaluate(model, device, iterator, criterion):\\n\",\n    \"    model.eval()  # 不更新参数，预测模式\\n\",\n    \"    epoch_loss=0  # 积累变量\\n\",\n    \"    epoch_acc=0   # 积累变量\\n\",\n    \"    \\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for x, y in iterator:\\n\",\n    \"            x = x.to(device)\\n\",\n    \"            y = y.to(device)\\n\",\n    \"            mask = y != PAD_IDX\\n\",\n    \"            pure_y = y[mask]\\n\",\n    \"            \\n\",\n    \"            fx = model(x)\\n\",\n    \"            loss = criterion(fx, pure_y)\\n\",\n    \"            acc = acc_score(fx, pure_y)\\n\",\n    \"            epoch_loss += loss\\n\",\n    \"            epoch_acc += acc\\n\",\n    \"    return epoch_loss/len(iterator), epoch_acc/len(iterator)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 3 模型训练与评价\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[0, 1, 2, 3]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"VOCAB_SIZE = len(word2idx)     # 词汇表长度\\n\",\n    \"\\n\",\n    \"model = MyLSTM(VOCAB_SIZE, EMBEDDING_DIM, HIDDEN_DIM)\\n\",\n    \"\\n\",\n    \"DEVICE = torch.device(\\\"cuda\\\" if USE_CUDA else 'cpu')\\n\",\n    \"model = model.to(DEVICE)\\n\",\n    \"\\n\",\n    \"# 使用多块GPU\\n\",\n    \"if NUM_CUDA > 1:\\n\",\n    \"    device_ids = list(range(NUM_CUDA))\\n\",\n    \"    print(device_ids)\\n\",\n    \"    model = nn.DataParallel(model, device_ids=device_ids)\\n\",\n    \"    # model = nn.parallel.DistributedDataParallel(model, device_ids=device_ids)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- 保存最优模型的逻辑是，每一个epoch之后再对比验证集损失值，验证集损失降低才认为模型更优。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/nn/modules/rnn.py:179: RuntimeWarning: RNN module weights are not part of single contiguous chunk of memory. This means they need to be compacted at every call, possibly greatly increasing memory usage. To compact weights again call flatten_parameters().\\n\",\n      \"  self.dropout, self.training, self.bidirectional, self.batch_first)\\n\",\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type MyLSTM. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"save best model: lm-best-dim200.pth\\n\",\n      \"Epoch:1|Train Loss:3.9867|Train Acc:0.284045|Val Loss:3.54076|Val Acc:0.322146\\n\",\n      \"Epoch:1|Train Loss:3.9867|Train Acc:0.284045|Val Loss:3.54076|Val Acc:0.322146\\n\",\n      \"save best model: lm-best-dim200.pth\\n\",\n      \"Epoch:2|Train Loss:3.28995|Train Acc:0.32511|Val Loss:3.49253|Val Acc:0.325996\\n\",\n      \"Epoch:2|Train Loss:3.28995|Train Acc:0.32511|Val Loss:3.49253|Val Acc:0.325996\\n\",\n      \"Epoch:3|Train Loss:2.96528|Train Acc:0.348784|Val Loss:3.55743|Val Acc:0.325569\\n\",\n      \"Epoch:4|Train Loss:2.71137|Train Acc:0.374167|Val Loss:3.66872|Val Acc:0.316473\\n\",\n      \"Current lr: 0.01\\n\",\n      \"Epoch:5|Train Loss:2.50227|Train Acc:0.404593|Val Loss:3.74011|Val Acc:0.320505\\n\",\n      \"Epoch:6|Train Loss:2.32764|Train Acc:0.431737|Val Loss:3.86074|Val Acc:0.314687\\n\",\n      \"Epoch:7|Train Loss:2.17701|Train Acc:0.460746|Val Loss:3.96021|Val Acc:0.309366\\n\",\n      \"Current lr: 0.005\\n\",\n      \"Epoch:8|Train Loss:2.05596|Train Acc:0.485682|Val Loss:4.06588|Val Acc:0.305292\\n\",\n      \"Early stop!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"criterion = nn.NLLLoss()                                             # 指定损失函数\\n\",\n    \"optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE)            # 指定优化器\\n\",\n    \"scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5)   # 学习率缩减\\n\",\n    \"\\n\",\n    \"model_name = MODEL_PATH.format(EMBEDDING_DIM)\\n\",\n    \"LOG_INFO = 'Epoch:{}|Train Loss:{:.6}|Train Acc:{:.6}|Val Loss:{:.6}|Val Acc:{:.6}'\\n\",\n    \"\\n\",\n    \"SCHED_NUM = 0\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    train_loss, train_acc = train(model, DEVICE, train_batch, optimizer, criterion, GRAD_CLIP)\\n\",\n    \"    valid_loss, valid_acc = evaluate(model, DEVICE, dev_batch, criterion)\\n\",\n    \"    if valid_acc > BEST_VALID_ACC: # 如果是最好的模型就保存到文件夹\\n\",\n    \"        BEST_VALID_ACC = valid_acc\\n\",\n    \"        torch.save(model, model_name)\\n\",\n    \"        print(\\\"save best model:\\\", model_name)\\n\",\n    \"        print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))\\n\",\n    \"        SCHED_NUM = 0\\n\",\n    \"    else:\\n\",\n    \"        SCHED_NUM += 1\\n\",\n    \"        if SCHED_NUM % 3 == 0:\\n\",\n    \"            scheduler.step()\\n\",\n    \"            print(\\\"Current lr:\\\", optimizer.param_groups[0]['lr'])\\n\",\n    \"        if SCHED_NUM == 7:\\n\",\n    \"            print(\\\"Early stop!\\\")\\n\",\n    \"            break\\n\",\n    \"    print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 3.5174615383148193 | Test Acc: 0.3169802856441505 |\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"test_loss, test_acc = evaluate(model, DEVICE, test_batch, criterion)\\n\",\n    \"print('Test Loss: {0} | Test Acc: {1} |'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 4 打印错误单词\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 答应预测错误的单词\\n\",\n    \"def print_pred_error_words(model,device,data_batch):\\n\",\n    \"    model.eval()\\n\",\n    \"    error_words = []\\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for x, y in data_batch:\\n\",\n    \"            x = x.to(device)\\n\",\n    \"            y = y.to(device)\\n\",\n    \"            \\n\",\n    \"            mask = (y!=PAD_IDX)\\n\",\n    \"            fx = model(x)\\n\",\n    \"            \\n\",\n    \"            pred_idx = fx.argmax(dim=1)\\n\",\n    \"            ground_truth_idx = y[mask]\\n\",\n    \"            for p, g in zip(pred_idx.tolist(), ground_truth_idx.tolist()):\\n\",\n    \"                if p != g:\\n\",\n    \"                    error_words.append(\\\" | \\\".join([idx2word[g], idx2word[p]]))\\n\",\n    \"    return error_words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = torch.load(MODEL_PATH.format(EMBEDDING_DIM))\\n\",\n    \"error_words = print_pred_error_words(model, DEVICE, test_batch)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"真实值 | 预测值 | 预测错误次数\\n\",\n      \"('Bob | He', 137)\\n\",\n      \"('She | He', 109)\\n\",\n      \"('Sue | He', 89)\\n\",\n      \"('to | .', 43)\\n\",\n      \"('and | .', 41)\\n\",\n      \"('had | was', 40)\\n\",\n      \"('his | the', 37)\\n\",\n      \"('decided | was', 37)\\n\",\n      \"('for | .', 31)\\n\",\n      \"('her | the', 30)\\n\",\n      \"(', | .', 28)\\n\",\n      \"('His | He', 26)\\n\",\n      \"('. | to', 25)\\n\",\n      \"('in | .', 25)\\n\",\n      \"('One | He', 25)\\n\",\n      \"('a | the', 24)\\n\",\n      \"('. | the', 23)\\n\",\n      \"('and | to', 23)\\n\",\n      \"('went | was', 21)\\n\",\n      \"('But | He', 21)\\n\",\n      \"('Her | He', 21)\\n\",\n      \"('The | He', 21)\\n\",\n      \"('got | was', 19)\\n\",\n      \"('When | He', 19)\\n\",\n      \"('They | He', 19)\\n\",\n      \"('it | the', 18)\\n\",\n      \"('a | to', 17)\\n\",\n      \"('! | .', 17)\\n\",\n      \"('wanted | was', 17)\\n\",\n      \"('she | he', 15)\\n\",\n      \"('he | Bob', 15)\\n\",\n      \"('her | a', 15)\\n\",\n      \"('the | her', 15)\\n\",\n      \"('the | .', 15)\\n\",\n      \"('he | to', 15)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"words_counter = Counter(error_words)\\n\",\n    \"TopN = 35\\n\",\n    \"topn_words = words_counter.most_common(TopN)\\n\",\n    \"print(\\\"真实值 | 预测值 | 预测错误次数\\\")\\n\",\n    \"for w in topn_words:\\n\",\n    \"    print(w)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P003-pytorch-Language-Model/_2_lm_lstm_bll.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Binary Log Loss实验\\n\",\n    \"- 尝试一个不同的损失函数: binary log loss + 负例采样\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"import torch.optim as optim\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"from collections import Counter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 数据文件\\n\",\n    \"word_file = './data/bobsue.voc.txt'\\n\",\n    \"train_file = './data/bobsue.lm.train.txt'\\n\",\n    \"test_file = './data/bobsue.lm.test.txt'\\n\",\n    \"dev_file = './data/bobsue.lm.dev.txt'\\n\",\n    \"\\n\",\n    \"BATCH_SIZE = 32       # 批次大小\\n\",\n    \"EMBEDDING_DIM = 200   # 词向量维度\\n\",\n    \"EMBEDDING_OUT = 100   # 输出层词向量维度\\n\",\n    \"HIDDEN_DIM = 200      # 隐含层\\n\",\n    \"GRAD_CLIP = 5.        # 梯度截断值\\n\",\n    \"EPOCHS = 20\\n\",\n    \"LEARN_RATE = 0.001    # 初始学习率\\n\",\n    \"SAMPLE_NUM = 20       # 负例采样数目\\n\",\n    \"\\n\",\n    \"BEST_VALID_LOSS = float('inf')          # 初始验证集上的损失值，设为最大\\n\",\n    \"MODEL_PATH = \\\"lm-bll-samp-{}.pth\\\"       # 模型名称\\n\",\n    \"USE_CUDA = torch.cuda.is_available()    # 是否使用GPU\\n\",\n    \"NUM_CUDA = torch.cuda.device_count()    # GPU数量\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_word_set(filename):\\n\",\n    \"    with open(filename, \\\"r\\\", encoding=\\\"utf-8\\\") as f:\\n\",\n    \"        word_set = set([line.strip() for line in f])\\n\",\n    \"    return word_set\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def create_word_set(*paths, power=1):\\n\",\n    \"    text = []\\n\",\n    \"    for path in paths:\\n\",\n    \"        with open(path, 'r', encoding='utf-8') as f:\\n\",\n    \"            for line in f:\\n\",\n    \"                text.extend(line.split())\\n\",\n    \"    word_set = set(text)\\n\",\n    \"    word2idx = {w:i for i, w in enumerate(word_set, 1)}\\n\",\n    \"    idx2word = {i:w for i, w in enumerate(word_set, 1)}\\n\",\n    \"    vocab = Counter(text)\\n\",\n    \"    word_counts = torch.tensor([vocab[w] for w in word_set], dtype=torch.float32)\\n\",\n    \"    \\n\",\n    \"    word_freqs = word_counts / word_counts.sum()\\n\",\n    \"    return word_set, word2idx, idx2word, word_freqs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_corpus(filename):\\n\",\n    \"    \\\"\\\"\\\"读取数据集，返回句子列表\\\"\\\"\\\"\\n\",\n    \"    with open(filename, \\\"r\\\", encoding=\\\"utf-8\\\") as f:\\n\",\n    \"        sentences = [line.strip() for line in f]\\n\",\n    \"    return sentences\\n\",\n    \"\\n\",\n    \"def sentences2words(sentences):\\n\",\n    \"    return [w for s in sentences for w in s.split()]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"word_set, word2idx, idx2word, word_freqs = create_word_set(train_file, dev_file, test_file, power=1)\\n\",\n    \"\\n\",\n    \"# 设置 <pad> 值为 0\\n\",\n    \"PAD_IDX = 0\\n\",\n    \"idx2word[PAD_IDX] = '<pad>'\\n\",\n    \"word2idx['<pad>'] = PAD_IDX\\n\",\n    \"\\n\",\n    \"VOCAB_SIZE = len(word_set)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"1492\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"VOCAB_SIZE\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_sentences = load_corpus(train_file)\\n\",\n    \"dev_sentences = load_corpus(dev_file)\\n\",\n    \"test_sentences = load_corpus(test_file)\\n\",\n    \"\\n\",\n    \"train_words = sentences2words(train_sentences)\\n\",\n    \"dev_words = sentences2words(dev_sentences)\\n\",\n    \"test_words = sentences2words(test_sentences)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"训练集句子数: 6036，单词数: 71367.\\n\",\n      \"验证集句子数: 750，单词数: 8707.\\n\",\n      \"测试集句子数: 750，单词数: 8809.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"s = \\\"{}句子数: {}，单词数: {}.\\\"\\n\",\n    \"print(s.format(\\\"训练集\\\", len(train_sentences), len(train_words)))\\n\",\n    \"print(s.format(\\\"验证集\\\", len(dev_sentences), len(dev_words)))\\n\",\n    \"print(s.format(\\\"测试集\\\", len(test_sentences), len(test_words)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def max_sentence_num(sentences):\\n\",\n    \"    \\\"\\\"\\\"返回最长句子单词数量\\\"\\\"\\\"\\n\",\n    \"    return max([len(s.split()) for s in sentences ])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"训练集最长句子单词个数： 21\\n\",\n      \"验证集最长句子单词个数： 20\\n\",\n      \"测试集最长句子单词个数： 21\\n\",\n      \"训练集最短句子单词个数： 5\\n\",\n      \"验证集最短句子单词个数： 5\\n\",\n      \"测试集最短句子单词个数： 6\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"训练集最长句子单词个数：\\\", max([len(s.split()) for s in train_sentences ]))\\n\",\n    \"print(\\\"验证集最长句子单词个数：\\\", max([len(s.split()) for s in dev_sentences ]))\\n\",\n    \"print(\\\"测试集最长句子单词个数：\\\", max([len(s.split()) for s in test_sentences ]))\\n\",\n    \"\\n\",\n    \"print(\\\"训练集最短句子单词个数：\\\", min([len(s.split()) for s in train_sentences ]))\\n\",\n    \"print(\\\"验证集最短句子单词个数：\\\", min([len(s.split()) for s in dev_sentences ]))\\n\",\n    \"print(\\\"测试集最短句子单词个数：\\\", min([len(s.split()) for s in test_sentences ]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def model_sequence(corpus, word2idx, word_freqs, sample_num=20, seq_len=21):\\n\",\n    \"    \\\"\\\"\\\"输入语料句子列表，返回模型输入序列的idx\\\"\\\"\\\"\\n\",\n    \"    labels = []\\n\",\n    \"    sentences = []\\n\",\n    \"    neg_words = []\\n\",\n    \"    for sentence in corpus:\\n\",\n    \"        words = sentence.split()\\n\",\n    \"        sentence_tample = [0] * seq_len\\n\",\n    \"        for i, w in enumerate(words[:-1]):\\n\",\n    \"            sentence_tample[i] = word2idx[w]\\n\",\n    \"        target_tample = [0] * seq_len\\n\",\n    \"        for i, w in enumerate(words[1:]):\\n\",\n    \"            target_tample[i] = word2idx[w]\\n\",\n    \"        sentences.append(sentence_tample)\\n\",\n    \"        labels.append(target_tample)\\n\",\n    \"        # 负例采样\\n\",\n    \"        neg_words.append(torch.multinomial(word_freqs, seq_len * sample_num, True))\\n\",\n    \"    return (sentences, labels, neg_words)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_data, train_label, train_neg = model_sequence(train_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"dev_data, dev_label, dev_neg = model_sequence(dev_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"test_data, test_label, test_neg = model_sequence(test_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[272, 44, 627, 297, 1042, 577, 673, 1389, 1131, 146, 1171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\\n\",\n      \"<s> She ate quickly and asked to be taken home . <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> ----------------------------------------\\n\",\n      \"She ate quickly and asked to be taken home . </s> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> <pad> ----------------------------------------\\n\",\n      \"tensor([ 273,  584,  848,  832,  736, 1170,  854,  539,   78,  271,  635,  436,\\n\",\n      \"         672,  397,  271,  457,   92, 1429,  381, 1439,  774,  214,  271,  736,\\n\",\n      \"         823,  322,  194, 1240,  976,  736, 1488, 1041, 1170, 1332, 1200,   12,\\n\",\n      \"        1170, 1487,  963, 1470,  501, 1182,  825,  630,  637,  669,  510, 1047,\\n\",\n      \"         271,  291,  952,  920,  164, 1240, 1250,  736, 1426,  630, 1240, 1070,\\n\",\n      \"        1150,   97,  736, 1038,  736,   61,  450,  514,  271,  109,  630,  732,\\n\",\n      \"        1170,  455,  672,  271,  672, 1240,  736, 1066,  362,  596,  273,  617,\\n\",\n      \"        1436,  672,  164,  799,  909, 1170, 1170,  247,  370,  227,  325, 1187,\\n\",\n      \"        1381,  247,  779,  971,  927,  277,  271,  664,  736,  271,  864,  672,\\n\",\n      \"        1078,  982, 1170,  271,  821, 1126,  834,  204,   36, 1170, 1186,  920,\\n\",\n      \"         252,   19, 1170,  636, 1170,  271,  736,  909,  676,  392, 1170, 1170,\\n\",\n      \"         736, 1170, 1439,  672, 1170, 1433,  736,  972, 1168,  271,  608,   72,\\n\",\n      \"         271, 1170,  652,  472,  322,  923,    2, 1126, 1101,  920, 1041,  358,\\n\",\n      \"         736,  809, 1052,   78,  450, 1403, 1240,  736, 1286,  736,  588,  800,\\n\",\n      \"         823,  637,   78,  457,  911,  385,   36,  662, 1040,  736, 1405, 1041,\\n\",\n      \"         736,  895,  253,  271,  239,  736,  457, 1020, 1242,   36,  325,  271,\\n\",\n      \"        1433, 1405,  851, 1439,  367,   52, 1170, 1170,  321,   78, 1240, 1403,\\n\",\n      \"        1439,  322,   86,   71,  750,  322,  271,  877,  672,  736, 1205,  271,\\n\",\n      \"         508, 1072, 1041,  736, 1170, 1439,  355,  770, 1170,  736, 1041, 1047,\\n\",\n      \"         139,   72,  271,  920,   42,  831,   43,  271, 1047,  271, 1403,  813,\\n\",\n      \"         920,  596,  637,  770,  273, 1439, 1448, 1215,  457,  271,  589,  920,\\n\",\n      \"         736, 1170, 1041,  450,  197,  395,  325,  291,  911,  780,   31, 1099,\\n\",\n      \"         247, 1170,   31, 1164, 1363, 1170,  736,  204,  247, 1170,  164, 1203,\\n\",\n      \"         836,  204,  271,  736,  672,  971,  844,   30,    8,  243,  973,  736,\\n\",\n      \"        1013, 1170,  457,  164,  963,  864,  271,  736,  736, 1396,  316,   43,\\n\",\n      \"          43,  931,   31,   43,  325, 1170, 1403, 1312,  501,  381,  218,  736,\\n\",\n      \"         271,  637,  322,  799,  417, 1347,  770,  457,  221,  271,  273, 1170,\\n\",\n      \"         939,  271, 1290,  301,   96, 1101,  327, 1446,  736,  799,  187,  672,\\n\",\n      \"         271,  247,   84,  217,   78,  932, 1170,  864,  372,  920,  271, 1170,\\n\",\n      \"          78, 1413,  931,  271, 1102, 1240,  952,  920, 1170,   78,  815, 1240,\\n\",\n      \"         271,  247, 1209,  782,   52, 1151,  413,  365,  247,  247, 1189, 1183,\\n\",\n      \"         271,  494, 1403,  699,  271, 1240, 1240, 1112,  164,  963, 1170,  920,\\n\",\n      \"        1391,  459,  736, 1477, 1170, 1292,  920,  271,   43,  468,  664, 1170,\\n\",\n      \"         371,  597,  588,  920,  291,  962, 1047, 1170,  271, 1170, 1189, 1439,\\n\",\n      \"          78,  557, 1209, 1240,  273,  194,   72,  630, 1188,  576,  630,  322])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"a = train_data[0]\\n\",\n    \"print(a)\\n\",\n    \"for i in a:\\n\",\n    \"    print(idx2word[i], end=' ')\\n\",\n    \"print(\\\"--\\\"*20)\\n\",\n    \"b = train_label[0]\\n\",\n    \"for i in b:\\n\",\n    \"    print(idx2word[i], end=' ')\\n\",\n    \"print(\\\"--\\\"*20)\\n\",\n    \"print(train_neg[0])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([420])\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"n = train_neg[0]\\n\",\n    \"n.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def gene_batch_data(data, label, neg, batch_size=32):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    构建 batch tensor，返回 batch 列表，每个batch为三元组包含data和label、neg_word\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    batch_data = []\\n\",\n    \"    data_tensor = torch.tensor(data, dtype=torch.long)\\n\",\n    \"    label_tensor = torch.tensor(label, dtype=torch.long)\\n\",\n    \"    neg_tensor = torch.stack(neg)\\n\",\n    \"    n, dim = data_tensor.size()\\n\",\n    \"    for start in range(0, n, batch_size):\\n\",\n    \"        end = start + batch_size\\n\",\n    \"        if end > n:\\n\",\n    \"            break\\n\",\n    \"            dbatch = data_tensor[start: ]\\n\",\n    \"            lbatch = label_tensor[start: ]\\n\",\n    \"            nbatch = neg_tensor[start: ]\\n\",\n    \"            print(\\\"最后一个batch size:\\\", dbatch.size())\\n\",\n    \"#             break\\n\",\n    \"        else:\\n\",\n    \"            dbatch = data_tensor[start: end]\\n\",\n    \"            lbatch = label_tensor[start: end]\\n\",\n    \"            nbatch = neg_tensor[start: end]\\n\",\n    \"        batch_data.append((dbatch, lbatch, nbatch))\\n\",\n    \"    return batch_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_batch = gene_batch_data(train_data, train_label, train_neg, batch_size=BATCH_SIZE)\\n\",\n    \"dev_batch = gene_batch_data(dev_data, dev_label, dev_neg, batch_size=BATCH_SIZE)\\n\",\n    \"test_batch = gene_batch_data(test_data, test_label, test_neg, batch_size=BATCH_SIZE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class LSTMNegModel(nn.Module):\\n\",\n    \"    def __init__(self, embedding_dim, embedding_out, hidden_dim, vocab_size, sample_num):\\n\",\n    \"        super(LSTMNegModel, self).__init__()\\n\",\n    \"        self.sample_num = sample_num\\n\",\n    \"        self.embedding_dim = embedding_dim\\n\",\n    \"        self.hidden_dim = hidden_dim\\n\",\n    \"        self.in_embed = nn.Embedding(vocab_size, embedding_dim)\\n\",\n    \"        self.out_embed = nn.Embedding(vocab_size, embedding_out)\\n\",\n    \"        self.lstm = nn.LSTM(embedding_dim, hidden_dim, batch_first=True)\\n\",\n    \"        self.linear = nn.Linear(hidden_dim, embedding_out)\\n\",\n    \"        \\n\",\n    \"    def forward(self, data):\\n\",\n    \"        text, label, neg = data\\n\",\n    \"        # print(\\\"-\\\"*20)\\n\",\n    \"        # print(text.size())\\n\",\n    \"        # print(label.size())\\n\",\n    \"        # print(neg.size())   # (bacth, SAMPLE_NUM*seq_len)\\n\",\n    \"        # (torch.tensor([1,2,3,1]) != 1) ==>[0,1,1, 0]\\n\",\n    \"        mask = (text != PAD_IDX)     # (batch, seq_len)\\n\",\n    \"        # print(\\\"mask:\\\", mask.size())\\n\",\n    \"        # (batch, seq_len)-->(batch, 1, seq_len)-->(batch,SAMPLE_NUM,seq_len)-->（batch, SAMPLE_NUM*seq_len)\\n\",\n    \"        neg_mask = mask.unsqueeze(1).expand(text.size(0), SAMPLE_NUM, text.size(1)).contiguous().view(neg.size(0), neg.size(1))\\n\",\n    \"        # 当调用contiguous()时，会强制拷贝一份tensor\\n\",\n    \"\\n\",\n    \"        # print(\\\"neg_mask:\\\", neg_mask.size(), neg_mask.sum())  # (batch, seq_len*sample_num)\\n\",\n    \"        \\n\",\n    \"        embed = self.in_embed(text)   # (bacth,seq_len) --> (bacth, seq_len, in_emd_dim)\\n\",\n    \"        \\n\",\n    \"        # (batch, seq_len) -> (batch, seq_len, out_emb_dim)\\n\",\n    \"        label_embed = self.out_embed(label)\\n\",\n    \"        # (batch, seq_len*sample_num)-> (batch, seq_len*sample_num, out_emb_dim)\\n\",\n    \"        neg_embed = self.out_embed(neg)\\n\",\n    \"        \\n\",\n    \"        # (batch, seq_len, in_emb_dim) -> (batch, seq_len, out_emb_dim(hn_dim))\\n\",\n    \"        lstm_out, (h_n, c_n) = self.lstm(embed)\\n\",\n    \"        # (batch, seq_len, out_emb_dim) -> (batch, seq_len, out_emb_dim) 即形状不变\\n\",\n    \"        out = self.linear(lstm_out)\\n\",\n    \"        \\n\",\n    \"        # 计算损失\\n\",\n    \"        # (batch, seq_len, out_emb_dim) * (batch, seq_len, out_emb_dim) -> sum(2)-(batch, seq_len)\\n\",\n    \"        # 对应元素相乘，2维度上求和\\n\",\n    \"        label_score = (out * label_embed).sum(2)\\n\",\n    \"        # label_score = torch.mm(label_embed.squeeze(1), out.squeeze(1).permute(1, 0))\\n\",\n    \"        # (batch, seq_len*sample_num, out_emb_dim) * (batch, seq_len*sample_num, out_emb_dim) \\n\",\n    \"        out_expand = out.unsqueeze(1).expand(out.size(0), SAMPLE_NUM, out.size(1), \\n\",\n    \"                                             out.size(2)).contiguous().view(\\n\",\n    \"                                             neg_embed.size(0), neg_embed.size(1), neg_embed.size(2))\\n\",\n    \"        # (batch, seq_len*sample_num, out_emb_dim) -> (batch, seq_len*sample_num)\\n\",\n    \"        # 词向量合成一个数的意义是什么？\\n\",\n    \"        neg_score = (out_expand * neg_embed).sum(2)\\n\",\n    \"\\n\",\n    \"        label_score = label_score[mask]    # 这个操作会压缩成一行\\n\",\n    \"        neg_score = neg_score[neg_mask]\\n\",\n    \"        \\n\",\n    \"        log_label = F.logsigmoid(label_score).mean()   # 一个常数，这里取平均的意义是什么？\\n\",\n    \"        log_neg = torch.log(1 - torch.sigmoid(neg_score)).mean()\\n\",\n    \"\\n\",\n    \"        loss = log_label + log_neg\\n\",\n    \"        \\n\",\n    \"        return -loss\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"VOCAB_SIZE = len(word2idx)\\n\",\n    \"model = LSTMNegModel(EMBEDDING_DIM, EMBEDDING_OUT, HIDDEN_DIM, VOCAB_SIZE, SAMPLE_NUM)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# DEVICE = torch.device(\\\"cuda\\\" if USE_CUDA else 'cpu')\\n\",\n    \"DEVICE = torch.device(\\\"cpu\\\")\\n\",\n    \"model = model.to(DEVICE)\\n\",\n    \"# if NUM_CUDA > 1:\\n\",\n    \"#     device_ids = list(range(NUM_CUDA))\\n\",\n    \"#     print(device_ids)\\n\",\n    \"#     model = nn.DataParallel(model, device_ids=device_ids)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def acc_score(y_hat, y):\\n\",\n    \"    # 返回最大的概率的索引\\n\",\n    \"    pred = y_hat.argmax(dim=1)\\n\",\n    \"    # print(y.view(-1))\\n\",\n    \"    acc_count = torch.eq(pred, y.view(-1))\\n\",\n    \"    score = acc_count.sum().item() / acc_count.size()[0]\\n\",\n    \"    return score\\n\",\n    \"\\n\",\n    \"def evaluate(model, device, iterator):\\n\",\n    \"    epoch_loss = 0  # 积累变量\\n\",\n    \"    model.eval()  # 不更新参数，预测模式\\n\",\n    \"    \\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for x, y, z in iterator:\\n\",\n    \"            x = x.to(device)\\n\",\n    \"            y = y.to(device)\\n\",\n    \"            z = z.to(device)\\n\",\n    \"            \\n\",\n    \"            loss = model((x,y,z))\\n\",\n    \"            epoch_loss += loss.item()\\n\",\n    \"            \\n\",\n    \"    return epoch_loss/len(iterator)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def train(model, device, iterator, optimizer, grad_clip):\\n\",\n    \"    epoch_loss = 0  # 积累变量\\n\",\n    \"    model.train()   # 该函数表示PHASE=Train\\n\",\n    \"    \\n\",\n    \"    for x, y, z in iterator:  # 拿每一个minibatch\\n\",\n    \"        x = x.to(device)\\n\",\n    \"        y = y.to(device)\\n\",\n    \"        z = z.to(device)\\n\",\n    \"        \\n\",\n    \"        optimizer.zero_grad()\\n\",\n    \"    \\n\",\n    \"        loss = model((x,y,z))  # loss\\n\",\n    \"        loss.backward()        # 进行BP\\n\",\n    \"        # 梯度裁剪\\n\",\n    \"        torch.nn.utils.clip_grad_norm_(model.parameters(), grad_clip)\\n\",\n    \"        optimizer.step()  # 更新参数\\n\",\n    \"        epoch_loss += loss.item()\\n\",\n    \"\\n\",\n    \"    return epoch_loss/len(iterator)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type LSTMNegModel. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Save model path:lm-bll-samp-20.pth| train loss 0.6933950247599724| valid loss 0.4913798246694648\\n\",\n      \"Epoch:1|Train Loss:0.6933950247599724|Val Loss:0.4913798246694648\\n\",\n      \"Save model path:lm-bll-samp-20.pth| train loss 0.4101916064924382| valid loss 0.40508265080659284\\n\",\n      \"Epoch:2|Train Loss:0.4101916064924382|Val Loss:0.40508265080659284\\n\",\n      \"Save model path:lm-bll-samp-20.pth| train loss 0.3178675065332271| valid loss 0.3808679373367973\\n\",\n      \"Epoch:3|Train Loss:0.3178675065332271|Val Loss:0.3808679373367973\\n\",\n      \"Epoch:4|Train Loss:0.25422142271665815|Val Loss:0.385563172723936\\n\",\n      \"Epoch:5|Train Loss:0.20191996536673384|Val Loss:0.4142624761747277\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.15997874011543203|Val Loss:0.45911684243575385\\n\",\n      \"Epoch:7|Train Loss:0.12928659540224582|Val Loss:0.497904518376226\\n\",\n      \"Epoch:8|Train Loss:0.1091923418038703|Val Loss:0.5218355098496312\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:nan|Val Loss:nan\\n\",\n      \"Early stop!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE)  # 指定优化器\\n\",\n    \"scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5)   # 学习率缩减？\\n\",\n    \"\\n\",\n    \"SCHED_NUM = 0\\n\",\n    \"model_name = MODEL_PATH.format(SAMPLE_NUM)\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    train_loss = train(model, DEVICE, train_batch, optimizer, GRAD_CLIP)\\n\",\n    \"    valid_loss = evaluate(model, DEVICE, dev_batch)\\n\",\n    \"    if valid_loss < BEST_VALID_LOSS: # 如果是最好的模型就保存到文件夹\\n\",\n    \"        BEST_VALID_LOSS = valid_loss\\n\",\n    \"        torch.save(model, model_name)\\n\",\n    \"        print(\\\"Save model path:{}| train loss {}| valid loss {}\\\".format(model_name, train_loss, valid_loss))\\n\",\n    \"        SCHED_NUM = 0\\n\",\n    \"    else:\\n\",\n    \"        SCHED_NUM += 1\\n\",\n    \"        if SCHED_NUM % 3 == 0:\\n\",\n    \"            scheduler.step()\\n\",\n    \"            print(\\\"Current lr:\\\", optimizer.param_groups[0]['lr'])\\n\",\n    \"        if SCHED_NUM == 7:\\n\",\n    \"            print(\\\"Early stop!\\\")\\n\",\n    \"            break\\n\",\n    \"    print('Epoch:{}|Train Loss:{}|Val Loss:{}'.format(epoch, train_loss, valid_loss))\\n\",\n    \"        \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.3985916440901549\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"test_loss = evaluate(model, DEVICE, test_batch)\\n\",\n    \"print('Test Loss: {}'.format(test_loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 问题\\n\",\n    \"- 在使用binary log loss 的情况下，如何评价模型？\\n\",\n    \"- 梯度截断的情况下依然会存在loss nan?\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 不同负采样数量\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***负采样数量20***\\n\",\n      \"Save model path:lm-bll-samp-20.pth| train loss 0.6850260819526429| valid loss 0.48111668617829034\\n\",\n      \"Epoch:1|Train Loss:0.6850260819526429|Val Loss:0.48111668617829034\\n\",\n      \"Save model path:lm-bll-samp-20.pth| train loss 0.4033044838207833| valid loss 0.4045242161854454\\n\",\n      \"Epoch:2|Train Loss:0.4033044838207833|Val Loss:0.4045242161854454\\n\",\n      \"Save model path:lm-bll-samp-20.pth| train loss 0.317084124430697| valid loss 0.38859081268310547\\n\",\n      \"Epoch:3|Train Loss:0.317084124430697|Val Loss:0.38859081268310547\\n\",\n      \"Epoch:4|Train Loss:0.25521340173609713|Val Loss:0.3989918193091517\\n\",\n      \"Epoch:5|Train Loss:0.20302926701434115|Val Loss:0.4337702691555023\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.1606861978690041|Val Loss:0.4862003248670827\\n\",\n      \"Epoch:7|Train Loss:0.12954443748644057|Val Loss:0.5440482626790586\\n\",\n      \"Epoch:8|Train Loss:0.10722808088076875|Val Loss:0.601476040871247\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.09415154880348672|Val Loss:0.6661981914354407\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-samp-20.pth\\n\",\n      \"Test Loss: 0.4130882659684057\\n\",\n      \"***负采样数量100***\\n\",\n      \"Save model path:lm-bll-samp-100.pth| train loss 0.6820947372532905| valid loss 0.48492626003597095\\n\",\n      \"Epoch:1|Train Loss:0.6820947372532905|Val Loss:0.48492626003597095\\n\",\n      \"Save model path:lm-bll-samp-100.pth| train loss 0.3994534594264436| valid loss 0.3995167561199354\\n\",\n      \"Epoch:2|Train Loss:0.3994534594264436|Val Loss:0.3995167561199354\\n\",\n      \"Save model path:lm-bll-samp-100.pth| train loss 0.3109292778721515| valid loss 0.37747382728949835\\n\",\n      \"Epoch:3|Train Loss:0.3109292778721515|Val Loss:0.37747382728949835\\n\",\n      \"Epoch:4|Train Loss:0.2507707264195097|Val Loss:0.38404754063357477\\n\",\n      \"Epoch:5|Train Loss:0.20165716135438452|Val Loss:0.4151491781939631\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.16272602127270497|Val Loss:0.46648676369501196\\n\",\n      \"Epoch:7|Train Loss:nan|Val Loss:nan\\n\",\n      \"Epoch:8|Train Loss:nan|Val Loss:nan\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:nan|Val Loss:nan\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-samp-100.pth\\n\",\n      \"Test Loss: 0.40173600160557293\\n\",\n      \"***负采样数量500***\\n\",\n      \"Save model path:lm-bll-samp-500.pth| train loss 0.6668317427343511| valid loss 0.47362106779347296\\n\",\n      \"Epoch:1|Train Loss:0.6668317427343511|Val Loss:0.47362106779347296\\n\",\n      \"Save model path:lm-bll-samp-500.pth| train loss 0.3925739087639971| valid loss 0.40046126816583716\\n\",\n      \"Epoch:2|Train Loss:0.3925739087639971|Val Loss:0.40046126816583716\\n\",\n      \"Save model path:lm-bll-samp-500.pth| train loss 0.30847049036875684| valid loss 0.3803785054580025\\n\",\n      \"Epoch:3|Train Loss:0.30847049036875684|Val Loss:0.3803785054580025\\n\",\n      \"Epoch:4|Train Loss:0.24861439689993858|Val Loss:0.3855181465978208\\n\",\n      \"Epoch:5|Train Loss:nan|Val Loss:nan\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:nan|Val Loss:nan\\n\",\n      \"Epoch:7|Train Loss:nan|Val Loss:nan\\n\",\n      \"Epoch:8|Train Loss:nan|Val Loss:nan\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:nan|Val Loss:nan\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-samp-500.pth\\n\",\n      \"Test Loss: 0.40358193283495697\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"sample_num = [20, 100, 500]\\n\",\n    \"for n in sample_num:\\n\",\n    \"    print(\\\"***负采样数量{}***\\\".format(n))\\n\",\n    \"    model_name = 'lm-bll-samp-{}.pth'.format(n)\\n\",\n    \"    SAMPLE_NUM = n\\n\",\n    \"    BEST_VALID_LOSS = float('inf')\\n\",\n    \"    train_data, train_label, train_neg = model_sequence(train_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"    dev_data, dev_label, dev_neg = model_sequence(dev_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"    test_data, test_label, test_neg = model_sequence(test_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"    \\n\",\n    \"    \\n\",\n    \"    train_batch = gene_batch_data(train_data, train_label, train_neg, batch_size=BATCH_SIZE)\\n\",\n    \"    dev_batch = gene_batch_data(dev_data, dev_label, dev_neg, batch_size=BATCH_SIZE)\\n\",\n    \"    test_batch = gene_batch_data(test_data, test_label, test_neg, batch_size=BATCH_SIZE)\\n\",\n    \"    \\n\",\n    \"    model = LSTMNegModel(EMBEDDING_DIM, EMBEDDING_OUT, HIDDEN_DIM, VOCAB_SIZE, SAMPLE_NUM)\\n\",\n    \"    DEVICE = torch.device(\\\"cpu\\\")\\n\",\n    \"    model = model.to(DEVICE)\\n\",\n    \"    \\n\",\n    \"    \\n\",\n    \"    optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE)  # 指定优化器\\n\",\n    \"    scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5)   # 学习率缩减？\\n\",\n    \"\\n\",\n    \"    SCHED_NUM = 0\\n\",\n    \"    for epoch in range(1, EPOCHS+1):\\n\",\n    \"        train_loss = train(model, DEVICE, train_batch, optimizer, GRAD_CLIP)\\n\",\n    \"        valid_loss = evaluate(model, DEVICE, dev_batch)\\n\",\n    \"        if valid_loss < BEST_VALID_LOSS: # 如果是最好的模型就保存到文件夹\\n\",\n    \"            BEST_VALID_LOSS = valid_loss\\n\",\n    \"            torch.save(model, model_name)\\n\",\n    \"            print(\\\"Save model path:{}| train loss {}| valid loss {}\\\".format(model_name, train_loss, valid_loss))\\n\",\n    \"            SCHED_NUM = 0\\n\",\n    \"        else:\\n\",\n    \"            SCHED_NUM += 1\\n\",\n    \"            if SCHED_NUM % 3 == 0:\\n\",\n    \"                scheduler.step()\\n\",\n    \"                print(\\\"Current lr:\\\", optimizer.param_groups[0]['lr'])\\n\",\n    \"            if SCHED_NUM == 7:\\n\",\n    \"                print(\\\"Early stop!\\\")\\n\",\n    \"                break\\n\",\n    \"        print('Epoch:{}|Train Loss:{}|Val Loss:{}'.format(epoch, train_loss, valid_loss))\\n\",\n    \"    print(\\\"Start test model:\\\", model_name)\\n\",\n    \"    model = torch.load(model_name)\\n\",\n    \"    test_loss = evaluate(model, DEVICE, test_batch)\\n\",\n    \"    print('Test Loss: {}'.format(test_loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.41382545232772827\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load('lm-bll-samp-20.pth')\\n\",\n    \"test_loss = evaluate(model, DEVICE, test_batch)\\n\",\n    \"print('Test Loss: {}'.format(test_loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.3996773258499477\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load('lm-bll-samp-100.pth')\\n\",\n    \"test_loss = evaluate(model, DEVICE, test_batch)\\n\",\n    \"print('Test Loss: {}'.format(test_loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.40358193283495697\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load('lm-bll-samp-500.pth')\\n\",\n    \"test_loss = evaluate(model, DEVICE, test_batch)\\n\",\n    \"print('Test Loss: {}'.format(test_loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 不同采样频率\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def create_word_set(*paths, power=1):\\n\",\n    \"    text = []\\n\",\n    \"    for path in paths:\\n\",\n    \"        with open(path, 'r', encoding='utf-8') as f:\\n\",\n    \"            for line in f:\\n\",\n    \"                text.extend(line.split())\\n\",\n    \"    word_set = set(text)\\n\",\n    \"    word2idx = {w:i for i, w in enumerate(word_set, 1)}\\n\",\n    \"    idx2word = {i:w for i, w in enumerate(word_set, 1)}\\n\",\n    \"    vocab = Counter(text)\\n\",\n    \"    word_counts = torch.tensor([vocab[w] for w in word_set], dtype=torch.float32)\\n\",\n    \"    \\n\",\n    \"    word_freqs = word_counts / word_counts.sum()\\n\",\n    \"    word_freqs = word_freqs ** power\\n\",\n    \"    word_freqs = word_freqs / word_freqs.sum()\\n\",\n    \"    return word_set, word2idx, idx2word, word_freqs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***负采样评率0.1***\\n\",\n      \"Save model path:lm-bll-power-10.0.pth| train loss 0.9948989587261322| valid loss 0.7935010117033253\\n\",\n      \"Epoch:1|Train Loss:0.9948989587261322|Val Loss:0.7935010117033253\\n\",\n      \"Save model path:lm-bll-power-10.0.pth| train loss 0.6510189051957841| valid loss 0.6306528008502462\\n\",\n      \"Epoch:2|Train Loss:0.6510189051957841|Val Loss:0.6306528008502462\\n\",\n      \"Save model path:lm-bll-power-10.0.pth| train loss 0.50438765388854| valid loss 0.5974134932393613\\n\",\n      \"Epoch:3|Train Loss:0.50438765388854|Val Loss:0.5974134932393613\\n\",\n      \"Epoch:4|Train Loss:0.40621826670905375|Val Loss:0.6067650797574416\\n\",\n      \"Epoch:5|Train Loss:0.32600710128850124|Val Loss:0.6531567625377489\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.2615356782966472|Val Loss:0.7258318662643433\\n\",\n      \"Epoch:7|Train Loss:0.2128219671864459|Val Loss:0.8177054602166881\\n\",\n      \"Epoch:8|Train Loss:0.1776645783572755|Val Loss:0.9252345847046893\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.15405175513885122|Val Loss:1.0920288873755413\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-10.0.pth\\n\",\n      \"Test Loss: 0.6086942449859951\\n\",\n      \"***负采样评率0.2***\\n\",\n      \"Save model path:lm-bll-power-20.0.pth| train loss 0.9748336850328648| valid loss 0.7547413758609606\\n\",\n      \"Epoch:1|Train Loss:0.9748336850328648|Val Loss:0.7547413758609606\\n\",\n      \"Save model path:lm-bll-power-20.0.pth| train loss 0.6323788933297421| valid loss 0.6168249871419824\\n\",\n      \"Epoch:2|Train Loss:0.6323788933297421|Val Loss:0.6168249871419824\\n\",\n      \"Save model path:lm-bll-power-20.0.pth| train loss 0.49545912064136344| valid loss 0.5861824880475583\\n\",\n      \"Epoch:3|Train Loss:0.49545912064136344|Val Loss:0.5861824880475583\\n\",\n      \"Epoch:4|Train Loss:0.4001466446417443|Val Loss:0.596151370069255\\n\",\n      \"Epoch:5|Train Loss:0.3228167788462436|Val Loss:0.642710136330646\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.2610978181374834|Val Loss:0.7307759652967039\\n\",\n      \"Epoch:7|Train Loss:0.21398929641284842|Val Loss:0.8385945662208225\\n\",\n      \"Epoch:8|Train Loss:0.17975101477288186|Val Loss:1.004443163457124\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.15831324410565356|Val Loss:0.9026282792506011\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-20.0.pth\\n\",\n      \"Test Loss: 0.6021935447402622\\n\",\n      \"***负采样评率0.30000000000000004***\\n\",\n      \"Save model path:lm-bll-power-30.000000000000004.pth| train loss 0.9867634741549797| valid loss 0.7650853395462036\\n\",\n      \"Epoch:1|Train Loss:0.9867634741549797|Val Loss:0.7650853395462036\\n\",\n      \"Save model path:lm-bll-power-30.000000000000004.pth| train loss 0.626170499210662| valid loss 0.6223440610844156\\n\",\n      \"Epoch:2|Train Loss:0.626170499210662|Val Loss:0.6223440610844156\\n\",\n      \"Save model path:lm-bll-power-30.000000000000004.pth| train loss 0.4874343772200828| valid loss 0.5943890810012817\\n\",\n      \"Epoch:3|Train Loss:0.4874343772200828|Val Loss:0.5943890810012817\\n\",\n      \"Epoch:4|Train Loss:0.3933774288347427|Val Loss:0.6066625170085741\\n\",\n      \"Epoch:5|Train Loss:0.3164727397738619|Val Loss:0.6591577426246975\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.25485571735399837|Val Loss:0.746193616286568\\n\",\n      \"Epoch:7|Train Loss:0.2084565154732542|Val Loss:0.8437900776448457\\n\",\n      \"Epoch:8|Train Loss:0.17540406427801924|Val Loss:0.863612755485203\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.15683165810843733|Val Loss:1.003725712713988\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-30.000000000000004.pth\\n\",\n      \"Test Loss: 0.6106626650561457\\n\",\n      \"***负采样评率0.4***\\n\",\n      \"Save model path:lm-bll-power-40.0.pth| train loss 0.958821158776892| valid loss 0.7331090128940084\\n\",\n      \"Epoch:1|Train Loss:0.958821158776892|Val Loss:0.7331090128940084\\n\",\n      \"Save model path:lm-bll-power-40.0.pth| train loss 0.6107472032308578| valid loss 0.6006786901017894\\n\",\n      \"Epoch:2|Train Loss:0.6107472032308578|Val Loss:0.6006786901017894\\n\",\n      \"Save model path:lm-bll-power-40.0.pth| train loss 0.48071020381881835| valid loss 0.5776361797166907\\n\",\n      \"Epoch:3|Train Loss:0.48071020381881835|Val Loss:0.5776361797166907\\n\",\n      \"Epoch:4|Train Loss:0.38891044940720215|Val Loss:0.5957515913507213\\n\",\n      \"Epoch:5|Train Loss:0.31141142134970806|Val Loss:0.6544018750605376\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.24939557156981307|Val Loss:0.7439283702684485\\n\",\n      \"Epoch:7|Train Loss:0.20372031050476622|Val Loss:0.8144047649010367\\n\",\n      \"Epoch:8|Train Loss:0.17533108195725908|Val Loss:0.823820103769717\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.15775305611339022|Val Loss:0.9542471403660981\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-40.0.pth\\n\",\n      \"Test Loss: 0.5966390539770541\\n\",\n      \"***负采样评率0.5***\\n\",\n      \"Save model path:lm-bll-power-50.0.pth| train loss 0.9435701893365129| valid loss 0.7158774007921633\\n\",\n      \"Epoch:1|Train Loss:0.9435701893365129|Val Loss:0.7158774007921633\\n\",\n      \"Save model path:lm-bll-power-50.0.pth| train loss 0.5931281227063625| valid loss 0.5870136437208756\\n\",\n      \"Epoch:2|Train Loss:0.5931281227063625|Val Loss:0.5870136437208756\\n\",\n      \"Save model path:lm-bll-power-50.0.pth| train loss 0.46800439947463096| valid loss 0.5646290286727573\\n\",\n      \"Epoch:3|Train Loss:0.46800439947463096|Val Loss:0.5646290286727573\\n\",\n      \"Epoch:4|Train Loss:0.3798060012941665|Val Loss:0.5805345747781836\\n\",\n      \"Epoch:5|Train Loss:0.30568357564984483|Val Loss:0.62824373141579\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.24523917720355887|Val Loss:0.7107136223627173\\n\",\n      \"Epoch:7|Train Loss:0.1996127222763731|Val Loss:0.8021654020185056\\n\",\n      \"Epoch:8|Train Loss:0.1671095055310016|Val Loss:0.8597482520601024\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.15087596774893872|Val Loss:0.8610861327337183\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-50.0.pth\\n\",\n      \"Test Loss: 0.5790753831034121\\n\",\n      \"***负采样评率0.6000000000000001***\\n\",\n      \"Save model path:lm-bll-power-60.00000000000001.pth| train loss 0.9017548186981932| valid loss 0.6799185172371243\\n\",\n      \"Epoch:1|Train Loss:0.9017548186981932|Val Loss:0.6799185172371243\\n\",\n      \"Save model path:lm-bll-power-60.00000000000001.pth| train loss 0.5692631783003502| valid loss 0.5619786070740741\\n\",\n      \"Epoch:2|Train Loss:0.5692631783003502|Val Loss:0.5619786070740741\\n\",\n      \"Save model path:lm-bll-power-60.00000000000001.pth| train loss 0.4475860703498759| valid loss 0.5372326749822368\\n\",\n      \"Epoch:3|Train Loss:0.4475860703498759|Val Loss:0.5372326749822368\\n\",\n      \"Epoch:4|Train Loss:0.36160829314526094|Val Loss:0.5483119708040486\\n\",\n      \"Epoch:5|Train Loss:0.28881952483603296|Val Loss:0.5967876664970232\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.22951148006510227|Val Loss:0.676640132199163\\n\",\n      \"Epoch:7|Train Loss:nan|Val Loss:nan\\n\",\n      \"Epoch:8|Train Loss:nan|Val Loss:nan\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:nan|Val Loss:nan\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-60.00000000000001.pth\\n\",\n      \"Test Loss: 0.5482260558916174\\n\",\n      \"***负采样评率0.7000000000000001***\\n\",\n      \"Save model path:lm-bll-power-70.0.pth| train loss 0.8648699962712348| valid loss 0.6393718849057737\\n\",\n      \"Epoch:1|Train Loss:0.8648699962712348|Val Loss:0.6393718849057737\\n\",\n      \"Save model path:lm-bll-power-70.0.pth| train loss 0.537889005814461| valid loss 0.5257362218006797\\n\",\n      \"Epoch:2|Train Loss:0.537889005814461|Val Loss:0.5257362218006797\\n\",\n      \"Save model path:lm-bll-power-70.0.pth| train loss 0.42365823353224613| valid loss 0.4987663678500963\\n\",\n      \"Epoch:3|Train Loss:0.42365823353224613|Val Loss:0.4987663678500963\\n\",\n      \"Epoch:4|Train Loss:0.34248341810196004|Val Loss:0.5069697680680648\\n\",\n      \"Epoch:5|Train Loss:0.2736330385854904|Val Loss:0.5483671076919722\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.21770472816647368|Val Loss:0.6155142512010492\\n\",\n      \"Epoch:7|Train Loss:0.175786009890602|Val Loss:0.6884120028951893\\n\",\n      \"Epoch:8|Train Loss:0.14760311391759426|Val Loss:0.7698867321014404\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.1315900529239406|Val Loss:0.7835414772448333\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-70.0.pth\\n\",\n      \"Test Loss: 0.5211785280186197\\n\",\n      \"***负采样评率0.8***\\n\",\n      \"Save model path:lm-bll-power-80.0.pth| train loss 0.8012913681091146| valid loss 0.5941181701162587\\n\",\n      \"Epoch:1|Train Loss:0.8012913681091146|Val Loss:0.5941181701162587\\n\",\n      \"Save model path:lm-bll-power-80.0.pth| train loss 0.4963791089806151| valid loss 0.48974250321802887\\n\",\n      \"Epoch:2|Train Loss:0.4963791089806151|Val Loss:0.48974250321802887\\n\",\n      \"Save model path:lm-bll-power-80.0.pth| train loss 0.38738526134414875| valid loss 0.46564420539399853\\n\",\n      \"Epoch:3|Train Loss:0.38738526134414875|Val Loss:0.46564420539399853\\n\",\n      \"Epoch:4|Train Loss:0.3097085648394646|Val Loss:0.4749450255995211\\n\",\n      \"Epoch:5|Train Loss:0.24491260787273975|Val Loss:0.5136380921239438\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.19346652766491504|Val Loss:0.5805068029009778\\n\",\n      \"Epoch:7|Train Loss:0.15600876759816992|Val Loss:0.6635569048964459\\n\",\n      \"Epoch:8|Train Loss:0.12969337978420106|Val Loss:0.7160062427106111\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:0.11285069826594059|Val Loss:0.7800557846608369\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-80.0.pth\\n\",\n      \"Test Loss: 0.48981772298398224\\n\",\n      \"***负采样评率0.9***\\n\",\n      \"Save model path:lm-bll-power-90.0.pth| train loss 0.7386503298865988| valid loss 0.5410839500634567\\n\",\n      \"Epoch:1|Train Loss:0.7386503298865988|Val Loss:0.5410839500634567\\n\",\n      \"Save model path:lm-bll-power-90.0.pth| train loss 0.4514954851028767| valid loss 0.45555459546006244\\n\",\n      \"Epoch:2|Train Loss:0.4514954851028767|Val Loss:0.45555459546006244\\n\",\n      \"Save model path:lm-bll-power-90.0.pth| train loss 0.3583537828414998| valid loss 0.4365962821504344\\n\",\n      \"Epoch:3|Train Loss:0.3583537828414998|Val Loss:0.4365962821504344\\n\",\n      \"Epoch:4|Train Loss:0.2898053713142872|Val Loss:0.4457312926002171\\n\",\n      \"Epoch:5|Train Loss:0.2302773582174423|Val Loss:0.4818404653797979\\n\",\n      \"Current lr: 0.001\\n\",\n      \"Epoch:6|Train Loss:0.18138453071104718|Val Loss:0.5416174245917279\\n\",\n      \"Epoch:7|Train Loss:0.14555465786698016|Val Loss:0.5979200472002444\\n\",\n      \"Epoch:8|Train Loss:0.120943028876122|Val Loss:0.6374243718126545\\n\",\n      \"Current lr: 0.0005\\n\",\n      \"Epoch:9|Train Loss:nan|Val Loss:nan\\n\",\n      \"Early stop!\\n\",\n      \"Start test model: lm-bll-power-90.0.pth\\n\",\n      \"Test Loss: 0.45819183795348456\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"SAMPLE_NUM = 20\\n\",\n    \"\\n\",\n    \"for p in range(1, 10):\\n\",\n    \"    BEST_VALID_LOSS = float('inf')\\n\",\n    \"    power = 0.1*p \\n\",\n    \"    print(\\\"***负采样评率{}***\\\".format(power))\\n\",\n    \"    model_name = 'lm-bll-power-{}.pth'.format(power*100)\\n\",\n    \"    word_set, word2idx, idx2word, word_freqs = create_word_set(train_file, dev_file, test_file, power=power)\\n\",\n    \"\\n\",\n    \"    # 设置 <pad> 值为 0\\n\",\n    \"    PAD_IDX = 0\\n\",\n    \"    idx2word[PAD_IDX] = '<pad>'\\n\",\n    \"    word2idx['<pad>'] = PAD_IDX\\n\",\n    \"    \\n\",\n    \"    train_sentences = load_corpus(train_file)\\n\",\n    \"    dev_sentences = load_corpus(dev_file)\\n\",\n    \"    test_sentences = load_corpus(test_file)\\n\",\n    \"\\n\",\n    \"    train_words = sentences2words(train_sentences)\\n\",\n    \"    dev_words = sentences2words(dev_sentences)\\n\",\n    \"    test_words = sentences2words(test_sentences)\\n\",\n    \"    train_data, train_label, train_neg = model_sequence(train_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"    dev_data, dev_label, dev_neg = model_sequence(dev_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"    test_data, test_label, test_neg = model_sequence(test_sentences, word2idx, word_freqs, sample_num=SAMPLE_NUM)\\n\",\n    \"    \\n\",\n    \"    \\n\",\n    \"    train_batch = gene_batch_data(train_data, train_label, train_neg, batch_size=BATCH_SIZE)\\n\",\n    \"    dev_batch = gene_batch_data(dev_data, dev_label, dev_neg, batch_size=BATCH_SIZE)\\n\",\n    \"    test_batch = gene_batch_data(test_data, test_label, test_neg, batch_size=BATCH_SIZE)\\n\",\n    \"    \\n\",\n    \"    model = LSTMNegModel(EMBEDDING_DIM, EMBEDDING_OUT, HIDDEN_DIM, VOCAB_SIZE, SAMPLE_NUM)\\n\",\n    \"    DEVICE = torch.device(\\\"cpu\\\")\\n\",\n    \"    model = model.to(DEVICE)\\n\",\n    \"    \\n\",\n    \"    \\n\",\n    \"    optimizer = optim.Adam(model.parameters(), lr=LEARN_RATE)  # 指定优化器\\n\",\n    \"    scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5)   # 学习率缩减？\\n\",\n    \"\\n\",\n    \"    SCHED_NUM = 0\\n\",\n    \"    for epoch in range(1, EPOCHS+1):\\n\",\n    \"        train_loss = train(model, DEVICE, train_batch, optimizer, GRAD_CLIP)\\n\",\n    \"        valid_loss = evaluate(model, DEVICE, dev_batch)\\n\",\n    \"        if valid_loss < BEST_VALID_LOSS: # 如果是最好的模型就保存到文件夹\\n\",\n    \"            BEST_VALID_LOSS = valid_loss\\n\",\n    \"            torch.save(model, model_name)\\n\",\n    \"            print(\\\"Save model path:{}| train loss {}| valid loss {}\\\".format(model_name, train_loss, valid_loss))\\n\",\n    \"            SCHED_NUM = 0\\n\",\n    \"        else:\\n\",\n    \"            SCHED_NUM += 1\\n\",\n    \"            if SCHED_NUM % 3 == 0:\\n\",\n    \"                scheduler.step()\\n\",\n    \"                print(\\\"Current lr:\\\", optimizer.param_groups[0]['lr'])\\n\",\n    \"            if SCHED_NUM == 7:\\n\",\n    \"                print(\\\"Early stop!\\\")\\n\",\n    \"                break\\n\",\n    \"        print('Epoch:{}|Train Loss:{}|Val Loss:{}'.format(epoch, train_loss, valid_loss))\\n\",\n    \"    print(\\\"Start test model:\\\", model_name)\\n\",\n    \"    model = torch.load(model_name)\\n\",\n    \"    test_loss = evaluate(model, DEVICE, test_batch)\\n\",\n    \"    print('Test Loss: {}'.format(test_loss))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P003-pytorch-Language-Model/_3_lm_lstm_lc.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 更大的context\\n\",\n    \"- 使用额外的context（语境/上下文）训练我们的语言模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"import torch.optim as optim\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"from collections import Counter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_file = './data/bobsue.prevsent.train.tsv'\\n\",\n    \"dev_file = './data/bobsue.prevsent.dev.tsv'\\n\",\n    \"test_file = './data/bobsue.prevsent.test.tsv'\\n\",\n    \"word_file = './data/bobsue.voc.txt'\\n\",\n    \"\\n\",\n    \"BATCH_SIZE = 32       # 批次大小\\n\",\n    \"EMBEDDING_DIM = 200   # 词向量维度\\n\",\n    \"HIDDEN_DIM = 200      # 隐含层\\n\",\n    \"GRAD_CLIP = 5.        # 梯度截断值\\n\",\n    \"EPOCHS = 20\\n\",\n    \"LEARNING_RATE = 0.01     # 初始学习率\\n\",\n    \"\\n\",\n    \"BEST_VALID_ACC = 0.           # 初始验证集上的损失值，设为0\\n\",\n    \"MODEL_PATH = \\\"lm-large-cont-dim{}.pth\\\"   # 模型名称\\n\",\n    \"USE_CUDA = torch.cuda.is_available()     # 是否使用GPU\\n\",\n    \"NUM_CUDA = torch.cuda.device_count()     # GPU数量\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def read_word_set(path):\\n\",\n    \"    with open(path, 'r', encoding='utf-8') as f:\\n\",\n    \"        text = f.readlines()\\n\",\n    \"    words = [w.strip() for w in text]\\n\",\n    \"    return words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"words_set = read_word_set(word_file)\\n\",\n    \"word2idx = {w:i for i, w in enumerate(words_set, 1)}\\n\",\n    \"idx2word = {i:w for i, w in enumerate(words_set, 1)}\\n\",\n    \"# 设置 <pad> 值为 0\\n\",\n    \"PAD_IDX = 0\\n\",\n    \"idx2word[PAD_IDX] = '<pad>'\\n\",\n    \"word2idx['<pad>'] = PAD_IDX\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def read_corpus(path):\\n\",\n    \"    \\\"\\\"\\\"读取数据集，返回句子列表\\\"\\\"\\\"\\n\",\n    \"    contexts = []\\n\",\n    \"    target_sentences = []\\n\",\n    \"    with open(path, 'r', encoding='utf-8') as f:\\n\",\n    \"        for sentence in f.readlines():\\n\",\n    \"            sentence = sentence.strip()\\n\",\n    \"            context, target_sentence = sentence.split('\\\\t')\\n\",\n    \"            contexts.append(context)\\n\",\n    \"            target_sentences.append(target_sentence)\\n\",\n    \"    \\n\",\n    \"    return (contexts, target_sentences)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_context, train_target = read_corpus(train_file)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(6036, 6036)\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"len(train_context), len(train_target)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"('<s> Sue realized she was really bored . </s>',\\n\",\n       \" '<s> She ate quickly and asked to be taken home . </s>')\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train_context[0], train_target[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_context, train_target = read_corpus(train_file)\\n\",\n    \"dev_context, dev_target = read_corpus(dev_file)\\n\",\n    \"test_context, test_target = read_corpus(test_file)\\n\",\n    \"\\n\",\n    \"train_words = [w for s in train_context+train_target for w in s.split()]\\n\",\n    \"dev_words = [w for s in dev_context+dev_target for w in s.split()]\\n\",\n    \"test_words = [w for s in test_context+test_target for w in s.split()]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"训练集集句子个数：750\\n\",\n      \"验证集句子个数：750\\n\",\n      \"测试集句子个数：750\\n\",\n      \"训练集集单词个数：139045\\n\",\n      \"验证集单词个数：16984\\n\",\n      \"测试集单词个数：17233\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"训练集集句子个数：{}\\\".format(len(test_context)))\\n\",\n    \"print(\\\"验证集句子个数：{}\\\".format(len(dev_context)))\\n\",\n    \"print(\\\"测试集句子个数：{}\\\".format(len(test_context)))\\n\",\n    \"\\n\",\n    \"print(\\\"训练集集单词个数：{}\\\".format(len(train_words)))\\n\",\n    \"print(\\\"验证集单词个数：{}\\\".format(len(dev_words)))\\n\",\n    \"print(\\\"测试集单词个数：{}\\\".format(len(test_words)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"训练集第二句最长句子长度为：21\\n\",\n      \"验证集第二句最长句子长度为：20\\n\",\n      \"测试集第二句最长句子长度为：21\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"训练集第二句最长句子长度为：{}\\\".format(max([len(s.split()) for s in train_target])))\\n\",\n    \"print(\\\"验证集第二句最长句子长度为：{}\\\".format(max([len(s.split()) for s in dev_target])))\\n\",\n    \"print(\\\"测试集第二句最长句子长度为：{}\\\".format(max([len(s.split()) for s in test_target])))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def prepare_sequence(context, target, word2idx, seq_len=21):\\n\",\n    \"    \\\"\\\"\\\"输入语料句子列表，返回模型输入序列的idx\\\"\\\"\\\"\\n\",\n    \"    contexts = []\\n\",\n    \"    sentences = []\\n\",\n    \"    labels = []\\n\",\n    \"    \\n\",\n    \"    for c, t in zip(context,target):\\n\",\n    \"        c_words = c.split()\\n\",\n    \"        c_tample = [0] * seq_len\\n\",\n    \"        for i, w in enumerate(c_words):\\n\",\n    \"            c_tample[i] = word2idx[w]\\n\",\n    \"        contexts.append(c_tample)\\n\",\n    \"        \\n\",\n    \"            \\n\",\n    \"        t_words = t.split()\\n\",\n    \"        sentence_tample = [0] * seq_len\\n\",\n    \"        for i, w in enumerate(t_words[:-1]):\\n\",\n    \"            sentence_tample[i] = word2idx[w]\\n\",\n    \"        sentences.append(sentence_tample)\\n\",\n    \"        \\n\",\n    \"        target_tample = [0] * seq_len\\n\",\n    \"        for i, w in enumerate(t_words[1:]):\\n\",\n    \"            target_tample[i] = word2idx[w]\\n\",\n    \"        labels.append(target_tample)\\n\",\n    \"        \\n\",\n    \"    return contexts, sentences, labels\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_context, train_data, train_label = prepare_sequence(train_context, train_target, word2idx)\\n\",\n    \"dev_context, dev_data, dev_label = prepare_sequence(dev_context, dev_target, word2idx)\\n\",\n    \"test_context, test_data, test_label = prepare_sequence(test_context, test_target, word2idx)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"<s> Sue realized she was really bored . </s> \\n\",\n      \"<s> She ate quickly and asked to be taken home . \\n\",\n      \"She ate quickly and asked to be taken home . </s> \\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"idx = 0\\n\",\n    \"for i in train_context[idx]:\\n\",\n    \"    if i==0:\\n\",\n    \"        print()\\n\",\n    \"        break\\n\",\n    \"    print(idx2word[i], end=' ')\\n\",\n    \"    \\n\",\n    \"for i in train_data[idx]:\\n\",\n    \"    if i==0:\\n\",\n    \"        print()\\n\",\n    \"        break\\n\",\n    \"    print(idx2word[i], end=' ')\\n\",\n    \"    \\n\",\n    \"for i in train_label[idx]:\\n\",\n    \"    if i==0:\\n\",\n    \"        print()\\n\",\n    \"        break\\n\",\n    \"    print(idx2word[i], end=' ')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_batch(context, data, label, batch_size=32):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    构建 batch tensor，返回 batch 列表，每个batch为二元组包含data和label\\n\",\n    \"   \\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    batch_data = []\\n\",\n    \"    context_tensor = torch.tensor(context, dtype=torch.long)\\n\",\n    \"    data_tensor = torch.tensor(data, dtype=torch.long)\\n\",\n    \"    label_tensor = torch.tensor(label, dtype=torch.long)\\n\",\n    \"    n, dim = data_tensor.size()\\n\",\n    \"    for start in range(0, n, batch_size):\\n\",\n    \"        end = start + batch_size\\n\",\n    \"        if end > n:\\n\",\n    \"            print(\\\"data not eq batch size.\\\")\\n\",\n    \"            break\\n\",\n    \"            cbatch = context_tensor[start: ]\\n\",\n    \"            dbatch = data_tensor[start: ]\\n\",\n    \"            lbatch = label_tensor[start: ]\\n\",\n    \"            print(batch.size())\\n\",\n    \"        else:\\n\",\n    \"            cbatch = context_tensor[start: end]\\n\",\n    \"            dbatch = data_tensor[start: end]\\n\",\n    \"            lbatch = label_tensor[start: end]\\n\",\n    \"        batch_data.append((cbatch, dbatch, lbatch))\\n\",\n    \"    return batch_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"data not eq batch size.\\n\",\n      \"data not eq batch size.\\n\",\n      \"data not eq batch size.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"train_batch = get_batch(train_context, train_data, train_label, batch_size=BATCH_SIZE)\\n\",\n    \"dev_batch = get_batch(dev_context, dev_data, dev_label, batch_size=BATCH_SIZE)\\n\",\n    \"test_batch = get_batch(test_context, test_data, test_label, batch_size=BATCH_SIZE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class LSTMLM(nn.Module):\\n\",\n    \"    def __init__(self, embedding_dim, hidden_dim, vocab_size):\\n\",\n    \"        super(LSTMLM, self).__init__()\\n\",\n    \"        self.hidden_dim = hidden_dim\\n\",\n    \"        self.word_embeddings = nn.Embedding(vocab_size, embedding_dim)\\n\",\n    \"        self.lstm = nn.LSTM(embedding_dim, hidden_dim, batch_first=True)\\n\",\n    \"        self.hidden2word = nn.Linear(hidden_dim, vocab_size)\\n\",\n    \"        \\n\",\n    \"    def forward(self, context, data):\\n\",\n    \"        \\n\",\n    \"        # [batch_size, seq_len] ==> [batch_size, seq_len, embedding_dim]\\n\",\n    \"        context_embed = self.word_embeddings(context)\\n\",\n    \"        embeds = self.word_embeddings(data)\\n\",\n    \"        # [batch, seq_len, imput_size] ==> [batch, seq_len, hidden_size]\\n\",\n    \"        lstm_out, hidden = self.lstm(context_embed)\\n\",\n    \"        lstm_out, (h_n, c_n) = self.lstm(embeds, hidden)\\n\",\n    \"        # [batch, seq_len, hidden_size] ==> [batch*seq_len, vocab_size]\\n\",\n    \"        target_space = self.hidden2word(lstm_out.contiguous().view(-1, self.hidden_dim))\\n\",\n    \"        # 添加mask\\n\",\n    \"        mask = (data != PAD_IDX).view(-1)\\n\",\n    \"        # 获取 非pad 数据\\n\",\n    \"        mask_target = target_space[mask]\\n\",\n    \"        \\n\",\n    \"        target_scores = F.log_softmax(mask_target, dim=1)\\n\",\n    \"        return target_scores\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def acc_score(y_hat, y):\\n\",\n    \"    # 返回最大的概率的索引\\n\",\n    \"    pred = y_hat.argmax(dim=1)\\n\",\n    \"    # print(y.view(-1))\\n\",\n    \"    acc_count = torch.eq(pred, y.view(-1))\\n\",\n    \"    score = acc_count.sum().item() / acc_count.size()[0]\\n\",\n    \"    return score\\n\",\n    \"\\n\",\n    \"def train(model, device, iterator, optimizer, criterion, grad_clip):\\n\",\n    \"    epoch_loss = 0  # 积累变量\\n\",\n    \"    epoch_acc = 0   # 积累变量\\n\",\n    \"    model.train()   # 该函数表示PHASE=Train\\n\",\n    \"    \\n\",\n    \"    for c, x, y in iterator:  # 拿每一个minibatch\\n\",\n    \"        c = c.to(device)\\n\",\n    \"        x = x.to(device)\\n\",\n    \"        y = y.to(device)\\n\",\n    \"        \\n\",\n    \"        optimizer.zero_grad()\\n\",\n    \"        mask = y != PAD_IDX\\n\",\n    \"        pure_y = y[mask]\\n\",\n    \"        \\n\",\n    \"        fx = model(c, x)                 # 进行forward\\n\",\n    \"        loss = criterion(fx, pure_y)  # 计算loss\\n\",\n    \"        acc = acc_score(fx, pure_y)   # 计算准确率\\n\",\n    \"        loss.backward()               # 进行BP\\n\",\n    \"        \\n\",\n    \"        # 梯度裁剪\\n\",\n    \"        torch.nn.utils.clip_grad_norm_(model.parameters(), grad_clip)\\n\",\n    \"        optimizer.step()  # 更新参数\\n\",\n    \"        \\n\",\n    \"        epoch_loss += loss\\n\",\n    \"        epoch_acc += acc\\n\",\n    \"        \\n\",\n    \"    return epoch_loss/len(iterator),epoch_acc/len(iterator)\\n\",\n    \"\\n\",\n    \"def evaluate(model, device, iterator, criterion):\\n\",\n    \"    model.eval()  # 不更新参数，预测模式\\n\",\n    \"    epoch_loss=0  # 积累变量\\n\",\n    \"    epoch_acc=0   # 积累变量\\n\",\n    \"    \\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for c, x, y in iterator:\\n\",\n    \"            c = c.to(device)\\n\",\n    \"            x = x.to(device)\\n\",\n    \"            y = y.to(device)\\n\",\n    \"            mask = y != PAD_IDX\\n\",\n    \"            pure_y = y[mask]\\n\",\n    \"            \\n\",\n    \"            fx = model(c, x)\\n\",\n    \"            loss = criterion(fx, pure_y)\\n\",\n    \"            acc = acc_score(fx, pure_y)\\n\",\n    \"            epoch_loss += loss\\n\",\n    \"            epoch_acc += acc\\n\",\n    \"    return epoch_loss/len(iterator), epoch_acc/len(iterator)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[0, 1, 2, 3]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = LSTMLM(EMBEDDING_DIM, HIDDEN_DIM, len(word2idx))\\n\",\n    \"# 使用GPU\\n\",\n    \"DEVICE = torch.device(\\\"cuda\\\" if USE_CUDA else 'cpu')\\n\",\n    \"model = model.to(DEVICE)\\n\",\n    \"if NUM_CUDA > 1:\\n\",\n    \"    device_ids = list(range(NUM_CUDA))\\n\",\n    \"    print(device_ids)\\n\",\n    \"    model = nn.DataParallel(model, device_ids=device_ids)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/nn/modules/rnn.py:179: RuntimeWarning: RNN module weights are not part of single contiguous chunk of memory. This means they need to be compacted at every call, possibly greatly increasing memory usage. To compact weights again call flatten_parameters().\\n\",\n      \"  self.dropout, self.training, self.bidirectional, self.batch_first)\\n\",\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type LSTMLM. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:1|Train Loss:3.98225|Train Acc:0.279988|Val Loss:3.53932|Val Acc:0.318935\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:2|Train Loss:3.29483|Train Acc:0.325456|Val Loss:3.50593|Val Acc:0.322937\\n\",\n      \"Current lr: 0.01\\n\",\n      \"Epoch:3|Train Loss:2.9768|Train Acc:0.346684|Val Loss:3.55512|Val Acc:0.320301\\n\",\n      \"Current lr: 0.005\\n\",\n      \"Epoch:4|Train Loss:2.73913|Train Acc:0.369789|Val Loss:3.65205|Val Acc:0.318491\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:5|Train Loss:2.33257|Train Acc:0.438309|Val Loss:3.66164|Val Acc:0.324247\\n\",\n      \"Current lr: 0.0025\\n\",\n      \"Epoch:6|Train Loss:2.07493|Train Acc:0.490698|Val Loss:3.74153|Val Acc:0.319476\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:7|Train Loss:1.81699|Train Acc:0.552415|Val Loss:3.76917|Val Acc:0.326346\\n\",\n      \"Current lr: 0.00125\\n\",\n      \"Epoch:8|Train Loss:1.69411|Train Acc:0.582961|Val Loss:3.82684|Val Acc:0.325274\\n\",\n      \"Current lr: 0.000625\\n\",\n      \"Epoch:9|Train Loss:1.56808|Train Acc:0.616432|Val Loss:3.85215|Val Acc:0.3233\\n\",\n      \"Current lr: 0.0003125\\n\",\n      \"Epoch:10|Train Loss:1.49412|Train Acc:0.637624|Val Loss:3.87085|Val Acc:0.323787\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:11|Train Loss:1.45339|Train Acc:0.649028|Val Loss:3.88107|Val Acc:0.326846\\n\",\n      \"Current lr: 0.00015625\\n\",\n      \"Epoch:12|Train Loss:1.43826|Train Acc:0.652809|Val Loss:3.88965|Val Acc:0.32667\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:13|Train Loss:1.41802|Train Acc:0.659076|Val Loss:3.89433|Val Acc:0.329787\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:14|Train Loss:1.41019|Train Acc:0.664199|Val Loss:3.89817|Val Acc:0.330222\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:15|Train Loss:1.4018|Train Acc:0.668941|Val Loss:3.90172|Val Acc:0.331231\\n\",\n      \"Save model:  lm-large-cont-dim200.pth\\n\",\n      \"Epoch:16|Train Loss:1.39323|Train Acc:0.67114|Val Loss:3.90542|Val Acc:0.331238\\n\",\n      \"Current lr: 7.8125e-05\\n\",\n      \"Epoch:17|Train Loss:1.3845|Train Acc:0.674491|Val Loss:3.90938|Val Acc:0.330333\\n\",\n      \"Current lr: 3.90625e-05\\n\",\n      \"Epoch:18|Train Loss:1.37252|Train Acc:0.678065|Val Loss:3.91194|Val Acc:0.331097\\n\",\n      \"Current lr: 1.953125e-05\\n\",\n      \"Epoch:19|Train Loss:1.36638|Train Acc:0.680176|Val Loss:3.91317|Val Acc:0.33096\\n\",\n      \"Current lr: 9.765625e-06\\n\",\n      \"Epoch:20|Train Loss:1.36329|Train Acc:0.681004|Val Loss:3.91378|Val Acc:0.330965\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"criterion = nn.NLLLoss()            # 指定损失函数\\n\",\n    \"optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE)  # 指定优化器\\n\",\n    \"scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, 0.5)   # 学习率缩减？\\n\",\n    \"\\n\",\n    \"model_name = MODEL_PATH.format(EMBEDDING_DIM)\\n\",\n    \"LOG_INFO = 'Epoch:{}|Train Loss:{:.6}|Train Acc:{:.6}|Val Loss:{:.6}|Val Acc:{:.6}'\\n\",\n    \"\\n\",\n    \"SCHED_NUM = 0\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    train_loss, train_acc = train(model, DEVICE, train_batch, optimizer, criterion, GRAD_CLIP)\\n\",\n    \"    valid_loss, valid_acc = evaluate(model, DEVICE, dev_batch, criterion)\\n\",\n    \"    # 如果是测试集准确率有提升\\n\",\n    \"    if valid_acc > BEST_VALID_ACC: \\n\",\n    \"        BEST_VALID_ACC = valid_acc\\n\",\n    \"        torch.save(model, model_name)\\n\",\n    \"        print(\\\"Save model: \\\", model_name)\\n\",\n    \"        SCHED_NUM = 0\\n\",\n    \"    else:\\n\",\n    \"        SCHED_NUM += 1\\n\",\n    \"        scheduler.step()\\n\",\n    \"        print(\\\"Current lr:\\\", optimizer.param_groups[0]['lr'])\\n\",\n    \"        if SCHED_NUM == 7:\\n\",\n    \"            print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))\\n\",\n    \"            print(\\\"Early stop!\\\")\\n\",\n    \"            break\\n\",\n    \"    print(LOG_INFO.format(epoch, train_loss, train_acc, valid_loss, valid_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 3.91726 | Test Acc: 0.333578 |\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"model = model.to(DEVICE)\\n\",\n    \"test_loss, test_acc = evaluate(model, DEVICE, test_batch, criterion)\\n\",\n    \"print('Test Loss: {:.6} | Test Acc: {:.6} |'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def print_pred_error_words(model,device,data_batch):\\n\",\n    \"    model.eval()\\n\",\n    \"    error_words = []\\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for c, x, y in data_batch:\\n\",\n    \"            c = c.to(device)\\n\",\n    \"            x = x.to(device)\\n\",\n    \"            y = y.to(device)\\n\",\n    \"            \\n\",\n    \"            mask = (y!=PAD_IDX)\\n\",\n    \"            fx = model(c, x)\\n\",\n    \"            \\n\",\n    \"            pred_idx = fx.argmax(dim=1)\\n\",\n    \"            ground_truth_idx = y[mask]\\n\",\n    \"            for p, g in zip(pred_idx.tolist(), ground_truth_idx.tolist()):\\n\",\n    \"                if p != g:\\n\",\n    \"                    error_words.append(\\\" | \\\".join([idx2word[g], idx2word[p]]))\\n\",\n    \"    return error_words\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"error_words = print_pred_error_words(model, DEVICE, test_batch)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"真实值 | 预测值 | 预测错误次数\\n\",\n      \"('Bob | He', 88)\\n\",\n      \"('Sue | She', 54)\\n\",\n      \"('to | .', 44)\\n\",\n      \"('had | was', 38)\\n\",\n      \"('decided | was', 37)\\n\",\n      \"('Bob | She', 33)\\n\",\n      \"('and | .', 30)\\n\",\n      \"('. | to', 26)\\n\",\n      \"('her | the', 24)\\n\",\n      \"('in | .', 24)\\n\",\n      \"('Sue | He', 24)\\n\",\n      \"('for | .', 24)\\n\",\n      \"('his | the', 22)\\n\",\n      \"('She | He', 21)\\n\",\n      \"('He | She', 20)\\n\",\n      \"(', | .', 20)\\n\",\n      \"('the | his', 20)\\n\",\n      \"('. | and', 20)\\n\",\n      \"('the | .', 19)\\n\",\n      \"('His | He', 17)\\n\",\n      \"('a | the', 17)\\n\",\n      \"('went | was', 17)\\n\",\n      \"('the | her', 16)\\n\",\n      \"('Her | She', 16)\\n\",\n      \"('and | to', 16)\\n\",\n      \"(\\\"'s | was\\\", 15)\\n\",\n      \"('got | was', 15)\\n\",\n      \"('Sue | Bob', 15)\\n\",\n      \"('she | he', 14)\\n\",\n      \"('a | to', 14)\\n\",\n      \"('the | a', 14)\\n\",\n      \"('They | She', 14)\\n\",\n      \"('One | She', 14)\\n\",\n      \"('wanted | was', 14)\\n\",\n      \"('he | to', 14)\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"words_counter = Counter(error_words)\\n\",\n    \"TopN = 35\\n\",\n    \"topn_words = words_counter.most_common(TopN)\\n\",\n    \"print(\\\"真实值 | 预测值 | 预测错误次数\\\")\\n\",\n    \"for w in topn_words:\\n\",\n    \"    print(w)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P004-Pytorch-Word2Vec/PytorchWord2Vec.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 词向量\\n\",\n    \"#### 学习目标\\n\",\n    \"\\n\",\n    \"- 学习词向量的概念\\n\",\n    \"- 用Skip-thought模型训练词向量\\n\",\n    \"- 学习使用PyTorch dataset和dataloader\\n\",\n    \"- 学习定义PyTorch模型\\n\",\n    \"- 学习torch.nn中常见的Module\\n\",\n    \"    - Embedding\\n\",\n    \"- 学习常见的PyTorch operations\\n\",\n    \"    - bmm\\n\",\n    \"    - logsigmoid\\n\",\n    \"- 保存和读取PyTorch模型\\n\",\n    \"\\n\",\n    \"- 第二课使用的训练数据可以从以下链接下载到。\\n\",\n    \"    - 链接:https://pan.baidu.com/s/1tFeK3mXuVXEy3EMarfeWvg 密码:v2z5\\n\",\n    \"\\n\",\n    \"#### 内容\\n\",\n    \"\\n\",\n    \"- 在这一份notebook中，我们会（尽可能）尝试复现论文[Distributed Representations of Words and Phrases and their Compositionality](http://papers.nips.cc/paper/5021-distributed-representations-of-words-and-phrases-and-their-compositionality.pdf)中训练词向量的方法. 我们会实现Skip-gram模型，并且使用论文中noice contrastive sampling的目标函数。\\n\",\n    \"\\n\",\n    \"- 这篇论文有很多模型实现的细节，这些细节对于词向量的好坏至关重要。我们虽然无法完全复现论文中的实验结果，主要是由于计算资源等各种细节原因，但是我们还是可以大致展示如何训练词向量。\\n\",\n    \"\\n\",\n    \"- 以下是一些我们没有实现的细节\\n\",\n    \"    - subsampling：参考论文section 2.3\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"import torch.utils.data as tud\\n\",\n    \"from torch.nn.parameter import Parameter\\n\",\n    \"\\n\",\n    \"from collections import Counter\\n\",\n    \"import numpy as np\\n\",\n    \"import random\\n\",\n    \"import math\\n\",\n    \"\\n\",\n    \"import pandas as pd\\n\",\n    \"import scipy\\n\",\n    \"import sklearn\\n\",\n    \"from sklearn.metrics.pairwise import cosine_similarity\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"device = torch.device(\\\"cuda\\\" if torch.cuda.is_available() else \\\"cpu\\\")\\n\",\n    \"\\n\",\n    \"# 为保证实验结果可以复现，我们经常会把各种random seed固定在某一个值\\n\",\n    \"SEED = 2019\\n\",\n    \"random.seed(SEED)\\n\",\n    \"np.random.seed(SEED)\\n\",\n    \"torch.manual_seed(SEED)\\n\",\n    \"if torch.cuda.is_available():\\n\",\n    \"    torch.cuda.manual_seed(SEED)\\n\",\n    \"    \\n\",\n    \"# 设定一些超参数\\n\",\n    \"K = 100         # 负样本数量\\n\",\n    \"C = 3           # word2vec窗口大小（半径）\\n\",\n    \"EPOCHS = 2      # 跑完一次全量数据为一次EPOCHS\\n\",\n    \"MAX_VOCAB_SIZE = 30000    # 词典容量，即有3万个单词\\n\",\n    \"BATCH_SIZE = 128          # 每批次数据大小\\n\",\n    \"LEARNING_RATE = 0.2       # 初始学习率\\n\",\n    \"EMBEDDING_SIZE = 100      # 词向量维度\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"TRAIN_FILE = \\\"data/text8/text8.train.txt\\\"\\n\",\n    \"EVAL_FILE = \\\"data/text8/text8.dev.txt\\\"\\n\",\n    \"TEST_FILE = \\\"data/text8/text8.test.txt\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# tokenize函数，把一篇文本转化成一个个单词\\n\",\n    \"def word_tockenize(text):\\n\",\n    \"    return text.split()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 数据预处理（文本处理）\\n\",\n    \"- 从文本文件中读取所有的文字，通过这些文本创建一个vocabulary\\n\",\n    \"- 由于单词数量可能太大，我们只选取最常见的MAX_VOCAB_SIZE个单词\\n\",\n    \"- 我们添加一个UNK单词表示所有不常见的单词\\n\",\n    \"- 我们需要记录单词到index的mapping，以及index到单词的mapping，单词的count，单词的(normalized) frequency，以及单词总数。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def text_preprocess(txt_file):\\n\",\n    \"    with open(txt_file, \\\"r\\\") as f:\\n\",\n    \"        text = f.read()\\n\",\n    \"    text = [w for w in word_tockenize(text.lower())]\\n\",\n    \"    # 词频最大的MAX_VOCAB_SIZE-1个单词，剩下一个留给”<unk>\\\"\\n\",\n    \"    vocab = dict(Counter(text).most_common(MAX_VOCAB_SIZE-1)) \\n\",\n    \"    # 其他未在vocab中的单词用<unk>代替，并计算unk的词频，添加到vocab字典中\\n\",\n    \"    vocab[\\\"<unk>\\\"] = len(text) - np.sum(list(vocab.values()))\\n\",\n    \"    \\n\",\n    \"    idx2word = [word for word in vocab.keys()]  \\n\",\n    \"    word2idx = {word: i for i, word in enumerate(idx2word)}\\n\",\n    \"    \\n\",\n    \"    # 负样本采样\\n\",\n    \"    # 每个单词出现的数量列表\\n\",\n    \"    word_counts = np.array([count for count in vocab.values()], \\n\",\n    \"                           dtype=np.float32)\\n\",\n    \"    word_freqs = word_counts / np.sum(word_counts)\\n\",\n    \"    word_freqs = word_freqs ** (3./4.)\\n\",\n    \"    word_freqs = word_freqs / np.sum(word_freqs)\\n\",\n    \"    vocab_size = len(idx2word)\\n\",\n    \"    print(vocab_size)\\n\",\n    \"    return text, idx2word, word2idx, word_freqs, word_counts, vocab_size\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"30000\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"text, idx2word, word2idx, word_freqs, word_counts, VOCAB_SIZE = text_preprocess(TRAIN_FILE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['the', 'of', 'and', 'one', 'in', 'a', 'to', 'zero', 'nine', 'two']\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"idx2word[:10]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 实现DataLoader\\n\",\n    \"一个dataloader需要以下内容：\\n\",\n    \"\\n\",\n    \"- 把所有text编码成数字，然后用subsampling预处理这些文字。\\n\",\n    \"- 保存vocabulary，单词count，normalized word frequency\\n\",\n    \"- 每个iteration sample一个中心词\\n\",\n    \"- 根据当前的中心词返回context单词\\n\",\n    \"- 根据中心词sample一些negative单词\\n\",\n    \"- 返回单词的counts\\n\",\n    \"\\n\",\n    \"这里有一个好的tutorial介绍如何使用[PyTorch dataloader](https://pytorch.org/tutorials/beginner/data_loading_tutorial.html).\\n\",\n    \"为了使用dataloader，我们需要定义以下两个function:\\n\",\n    \"\\n\",\n    \"- ```__len__``` function需要返回整个数据集中有多少个item\\n\",\n    \"- ```__get__``` 根据给定的index返回一个item\\n\",\n    \"\\n\",\n    \"有了dataloader之后，我们可以轻松随机打乱整个数据集，拿到一个batch的数据等等。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 理解torch.multinomial 采样函数\\n\",\n    \"--------------\\n\",\n    \"- torch.multinomial(input, num_samples, replacement=False, out=None) → LongTensor\\n\",\n    \"    - 作用是对input的每一行做num_samples次取值，输出的张量是每一次取值时input张量对应行的**下标**。\\n\",\n    \"    - 输入是一个input张量，一个取样数量可以是列表，和一个布尔值replacement。\\n\",\n    \"    - input张量可以看成一个权重张量，每一个元素代表其在该行中的权重。如果有元素为0，那么在其他不为0的元素\\n\",\n    \"    - 被取干净之前，这个元素是不会被取到的。\\n\",\n    \"    - num_samples是每一行的取值次数，该值不能大于每一样的元素数，否则会报错。\\n\",\n    \"    - replacement指的是取样时是否是有放回的取样，True是有放回，False无放回。\\n\",\n    \"----\\n\",\n    \"- 官方例子\\n\",\n    \"```python\\n\",\n    \"weights = torch.tensor([0, 0.8, 2, 0], dtype=torch.float) # create a tensor of weights\\n\",\n    \"print(torch.multinomial(weights, 2))\\n\",\n    \"# tensor([2, 1])\\n\",\n    \"print(torch.multinomial(weights, 4, replacement=True))\\n\",\n    \"# tensor([2, 2, 1, 2])\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class WordEmbeddingDataset(tud.Dataset):\\n\",\n    \"    def __init__(self, text, word2idx, idx2word, word_freqs, word_counts):\\n\",\n    \"        super(WordEmbeddingDataset, self).__init__()\\n\",\n    \"        # 文档编码\\n\",\n    \"        self.text_encoded = [word2idx.get(t, VOCAB_SIZE-1) for t in text]\\n\",\n    \"        self.text_encoded = torch.Tensor(self.text_encoded).long()\\n\",\n    \"\\n\",\n    \"        self.word2idx = word2idx\\n\",\n    \"        self.idx2word = idx2word\\n\",\n    \"        self.word_freqs = torch.Tensor(word_freqs)\\n\",\n    \"        self.word_counts = torch.Tensor(word_counts)\\n\",\n    \"        \\n\",\n    \"    def __len__(self):\\n\",\n    \"        ''' \\n\",\n    \"        返回整个数据集（所有单词）的长度\\n\",\n    \"        '''\\n\",\n    \"        return len(self.text_encoded)\\n\",\n    \"    \\n\",\n    \"    def __getitem__(self, idx):\\n\",\n    \"        ''' \\n\",\n    \"        这个function返回以下数据用于训练\\n\",\n    \"            - 中心词\\n\",\n    \"            - 这个单词附近的(positive)单词\\n\",\n    \"            - 随机采样的K个单词作为negative sample\\n\",\n    \"        '''\\n\",\n    \"        center_word = self.text_encoded[idx]\\n\",\n    \"        pos_indices = list(range(idx-C, idx))+list(range(idx+1, idx+C+1))\\n\",\n    \"        # 返回除中心词之外的附近的单词的索引\\n\",\n    \"        pos_indices = [i % len(self.text_encoded) for i in pos_indices]\\n\",\n    \"        # 周围词编码列表\\n\",\n    \"        pos_words = self.text_encoded[pos_indices]\\n\",\n    \"        # 多项式分布采样\\n\",\n    \"        neg_words = torch.multinomial(self.word_freqs, K * pos_words.shape[0], True)\\n\",\n    \"        \\n\",\n    \"        return center_word, pos_words, neg_words \"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 创建Dataset与Dataloader\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"dataset = WordEmbeddingDataset(text, word2idx, idx2word, word_freqs, word_counts)\\n\",\n    \"dataloader = tud.DataLoader(dataset, batch_size=BATCH_SIZE, shuffle=True, num_workers=4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor(428) torch.Size([128])\\n\",\n      \"tensor([13053,   267,   314,     1,     0,   113]) torch.Size([128])\\n\",\n      \"tensor([ 9576,  2082,   279, 21829,  2247,   953,  3666, 23787,  1562,   465,\\n\",\n      \"          408, 11302,  1286,     7,   546,     1,    39,  2556,    16,  6145,\\n\",\n      \"         6253,    25,   476,   271,    16,  1830,    28,    12,  1607,    23,\\n\",\n      \"         7888,     0,  7863,   331,   521,   406,  6392, 12881,  5695,  5322,\\n\",\n      \"         2289,   697, 26196,  1396, 13726,  7781,    19, 21110,    60,    90,\\n\",\n      \"           15,   776, 18314,  2433,    19, 12410,  9995, 16336, 29999,  1439,\\n\",\n      \"         2480, 17925,    14,     2,  3978,  1225,   349,  1537,  2450,  1053,\\n\",\n      \"        26771,  2577,     0,  4777,  1503,  6077,   601,   241,  1621,  8592,\\n\",\n      \"           11, 24580,   103,   557,  9434,  9990,    15,     6, 27198,    32,\\n\",\n      \"          926,  2860,   251,  2720,   196,    19, 10197,  3980,  5902,   117,\\n\",\n      \"            1, 11078,  1063,   912,    26,    25,  7395,    43,  1201,   368,\\n\",\n      \"          645,   761,    59, 26620, 25032,  6552, 29999,  5468, 14295,     0,\\n\",\n      \"         2328,   817,    30,    37, 16986,   184,    31, 17739,  4321, 18647,\\n\",\n      \"          626,   162, 16649,  4789,  1180,     1, 16826,   140,   224,  7348,\\n\",\n      \"         4979, 11255,  7222, 21236,  3563,  1613,  1126,  4796,  1260,  1266,\\n\",\n      \"           83, 15459,  1384, 23111,    12,  2882,  3453, 21782,   326,     1,\\n\",\n      \"        24668,    10,  4514,   177,  1547, 28461,    60,   571,   329,     4,\\n\",\n      \"        15079,  5239,  7424,  5960,  1576, 17409,  1876, 11498,  1212,   554,\\n\",\n      \"          417,  2810, 28861,   463,  2178,     0,    21,  3636,  1575,   892,\\n\",\n      \"         1427, 29811,  1267,   462,   244,    22,  6712,     6,   903,  1686,\\n\",\n      \"         2368,    38,  4260, 27994,    18, 13272,   503,     1, 12269,  1584,\\n\",\n      \"          124,     0, 10804,  3146,  8851,  2009,  7989,  9000,    30, 11973,\\n\",\n      \"            5,  1957,   126,  2184,     2,    54,  9716, 26132,    14,    12,\\n\",\n      \"          670, 18220,    49,     5,     6,  8363,  2053, 11037,  5077,    20,\\n\",\n      \"         2469, 15912,   748,  4698,   191,    58,  5142,  8578,  7576,   236,\\n\",\n      \"         5860,     4,    15, 25395,  3211,    54,   869,     1,   728,     5,\\n\",\n      \"         5996,    76,  1113,  2347,  1564,  8866,  6272,    73, 15429,    45,\\n\",\n      \"            1,   582,    51, 11152,   873,   153,   338,  7185,    44,    69,\\n\",\n      \"          738,  6127, 29999, 24991,  1025,    17,  3745,  2386,  9295, 10882,\\n\",\n      \"           59,  9255,   738, 12219,   822,   886,    53,   103,   572,   215,\\n\",\n      \"        29999,  2578,  2486,   385,   964,  3356,  3757,  7669,    90,  1982,\\n\",\n      \"          891,   236,  4075, 28148,  3235,  8384,    18, 11066,  3144,  2273,\\n\",\n      \"           23, 19070, 18571,  9719,    78,  4364,  4607,   999,     1,   291,\\n\",\n      \"           35,  4820, 21795,  1066, 22590,  2197,   664,  7210,    29,  1039,\\n\",\n      \"        23990,  5002,   508,   860,   242, 27623, 29999,    11, 12204,  2171,\\n\",\n      \"         4983,  1646,  1928,     9,   243,   496,    56,   335, 10833,     2,\\n\",\n      \"         3567,  1767,   135,  3903,   372,    25,     0,   903,  8868,   444,\\n\",\n      \"         2430,  8395,  2152, 10763,    23,  3246,    10, 14784,  2661, 17631,\\n\",\n      \"         2893,  1268,  7852,  4110,  2050, 23244,  7547,  4588,  4102,  6179,\\n\",\n      \"         9784,  1303,  3242,     9,    92, 13216, 29048,  5437, 20718,   660,\\n\",\n      \"          260, 20686,   487,  8095,   342,  7475,  2452,   120, 15514,  8295,\\n\",\n      \"           26,   130,  2568, 16588, 15441,  1661,    94,    54,  3798,  4073,\\n\",\n      \"        14964,  4568,  3092,   379,  1101, 28703,    24, 22072,  9952, 25327,\\n\",\n      \"        12018,  2463,    23,    18,  1454,    25,    89,  1265,  4005, 27452,\\n\",\n      \"         4242,    11,   210, 15166, 23341,  1768,    17,    48,   675,  7678,\\n\",\n      \"          404,  1432,  6750,  4227,   232, 21635, 16438,     3,     4, 17153,\\n\",\n      \"         1275,  1419,  1541,  1904,  4337,  6846,  1808,  2432,  8223, 13159,\\n\",\n      \"         1908,  6174,  2304,   986,     2,    15,  3460, 11839,   431,   248,\\n\",\n      \"        24557,   101,     1, 13539,  3088, 25414, 17546,  4321,   512,  1326,\\n\",\n      \"         2425,   188,  1193,   500,    20,   762,  3018,  9416,   363,    19,\\n\",\n      \"         5139, 15786,  4415,     2,  1486,   927,  2003,    44,   107,    72,\\n\",\n      \"         1645,  6218,     7,   782, 15815,    16,    61,  6174,    18,    90,\\n\",\n      \"        18594,  1550, 15072,  8540,   120,    22, 12451,  5243,  1923,  1293,\\n\",\n      \"          305,  1267,  1434,  6581,  2168,    22, 24760,   658,  1668,   738,\\n\",\n      \"         2959,    10,  3704, 25956,   382,  4705,    31,  7013,    32,     3,\\n\",\n      \"           20, 22645, 22722, 14006,  6683,   288,    74,  3766,  8361,  8454,\\n\",\n      \"          117,  3125,    35, 13420,     4,  7523, 13239,    16,  4794,  3857,\\n\",\n      \"           39, 29999, 12271,  3992,   320, 18459, 20338,   173,  6212,  2051,\\n\",\n      \"         5214,  4421, 28549,   730,    48,   470,  2131,  1405,   383,  1205,\\n\",\n      \"          274, 19799,   359, 29999,  3112,  9795, 11527,  5090,  7965, 24565]) torch.Size([128])\\n\",\n      \"--------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"i = 0\\n\",\n    \"for center_word, pos_words, neg_words in dataloader:\\n\",\n    \"    print(center_word[0], center_word.size())\\n\",\n    \"    print(pos_words[0], center_word.size())\\n\",\n    \"    print(neg_words[0], center_word.size())\\n\",\n    \"    print(\\\"-\\\"*20)\\n\",\n    \"    i += 1\\n\",\n    \"    if i == 1:\\n\",\n    \"        break\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 定义pytorch 模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class EmbeddingModel(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_size):\\n\",\n    \"        ''' \\n\",\n    \"        初始化输入和输出embedding\\n\",\n    \"        '''\\n\",\n    \"        super(EmbeddingModel, self).__init__()\\n\",\n    \"        self.vocab_size = vocab_size\\n\",\n    \"        self.embed_size = embed_size\\n\",\n    \"        \\n\",\n    \"        # 两个都初始化的好处？\\n\",\n    \"        initrange = 0.5 / self.embed_size\\n\",\n    \"        self.in_embed = nn.Embedding(self.vocab_size, self.embed_size, sparse=False)\\n\",\n    \"        self.in_embed.weight.data.uniform_(-initrange, initrange)\\n\",\n    \"        \\n\",\n    \"        self.out_embed = nn.Embedding(self.vocab_size, self.embed_size, sparse=False)\\n\",\n    \"        self.out_embed.weight.data.uniform_(-initrange, initrange)\\n\",\n    \"        \\n\",\n    \"    def forward(self, input_labels, pos_labels, neg_labels):\\n\",\n    \"        '''\\n\",\n    \"        input_labels: 中心词, [batch_size]\\n\",\n    \"        pos_labels: 中心词周围 context window 出现过的单词 [batch_size * (window_size * 2)]\\n\",\n    \"        neg_labelss: 中心词周围没有出现过的单词，从 negative sampling 得到 \\n\",\n    \"                    [batch_size, (window_size * 2 * K)]\\n\",\n    \"        \\n\",\n    \"        return: loss, [batch_size]\\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"        batch_size = input_labels.size(0)\\n\",\n    \"        \\n\",\n    \"        input_embedding = self.in_embed(input_labels) # B * embed_size\\n\",\n    \"        pos_embedding = self.out_embed(pos_labels) # B * (2*C) * embed_size\\n\",\n    \"        neg_embedding = self.out_embed(neg_labels) # B * (2*C * K) * embed_size\\n\",\n    \"      \\n\",\n    \"        log_pos = torch.bmm(pos_embedding, input_embedding.unsqueeze(2)).squeeze() # B * (2*C)\\n\",\n    \"        log_neg = torch.bmm(neg_embedding, -input_embedding.unsqueeze(2)).squeeze() # B * (2*C*K)\\n\",\n    \"\\n\",\n    \"        log_pos = F.logsigmoid(log_pos).sum(1)\\n\",\n    \"        log_neg = F.logsigmoid(log_neg).sum(1) # batch_size\\n\",\n    \"       \\n\",\n    \"        loss = log_pos + log_neg\\n\",\n    \"        \\n\",\n    \"        return -loss\\n\",\n    \"    \\n\",\n    \"    def input_embeddings(self):\\n\",\n    \"        return self.in_embed.weight.data.cpu().numpy()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = EmbeddingModel(VOCAB_SIZE, EMBEDDING_SIZE)\\n\",\n    \"model = model.to(device)\\n\",\n    \"optimizer = torch.optim.SGD(model.parameters(), lr=LEARNING_RATE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def evaluate(filename, embedding_weights): \\n\",\n    \"    if filename.endswith(\\\".csv\\\"):\\n\",\n    \"        data = pd.read_csv(filename, sep=\\\",\\\")\\n\",\n    \"    else:\\n\",\n    \"        data = pd.read_csv(filename, sep=\\\"\\\\t\\\")\\n\",\n    \"    human_similarity = []\\n\",\n    \"    model_similarity = []\\n\",\n    \"    for i in data.iloc[:, 0:2].index:\\n\",\n    \"        word1, word2 = data.iloc[i, 0], data.iloc[i, 1]\\n\",\n    \"        if word1 not in word_to_idx or word2 not in word_to_idx:\\n\",\n    \"            continue\\n\",\n    \"        else:\\n\",\n    \"            word1_idx, word2_idx = word_to_idx[word1], word_to_idx[word2]\\n\",\n    \"            word1_embed, word2_embed = embedding_weights[[word1_idx]], embedding_weights[[word2_idx]]\\n\",\n    \"            model_similarity.append(float(sklearn.metrics.pairwise.cosine_similarity(word1_embed, word2_embed)))\\n\",\n    \"            human_similarity.append(float(data.iloc[i, 2]))\\n\",\n    \"\\n\",\n    \"    return scipy.stats.spearmanr(human_similarity, model_similarity)# , model_similarity\\n\",\n    \"\\n\",\n    \"def find_nearest(word):\\n\",\n    \"    index = word_to_idx[word]\\n\",\n    \"    embedding = embedding_weights[index]\\n\",\n    \"    cos_dis = np.array([scipy.spatial.distance.cosine(e, embedding) for e in embedding_weights])\\n\",\n    \"    return [idx_to_word[i] for i in cos_dis.argsort()[:10]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 训练模型\\n\",\n    \"-----\\n\",\n    \"- 模型一般需要训练若干个epoch\\n\",\n    \"- 每个epoch我们都把所有的数据分成若干个batch\\n\",\n    \"- 把每个batch的输入和输出都包装成cuda tensor\\n\",\n    \"- forward pass，通过输入的句子预测每个单词的下一个单词\\n\",\n    \"- 用模型的预测和正确的下一个单词计算cross entropy loss\\n\",\n    \"- 清空模型当前gradient\\n\",\n    \"- backward pass\\n\",\n    \"- 更新模型参数\\n\",\n    \"- 每隔一定的iteration输出模型在当前iteration的loss，以及在验证数据集上做模型的评估\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"epoch: 0, iter: 0, loss: 420.0472106933594\\n\",\n      \"epoch: 0, iter: 1000, loss: 110.64915466308594\\n\",\n      \"epoch: 0, iter: 2000, loss: 63.69944763183594\\n\",\n      \"epoch: 0, iter: 3000, loss: 55.475433349609375\\n\",\n      \"epoch: 0, iter: 4000, loss: 45.3078498840332\\n\",\n      \"epoch: 0, iter: 5000, loss: 41.215545654296875\\n\",\n      \"epoch: 0, iter: 6000, loss: 37.93198776245117\\n\",\n      \"epoch: 0, iter: 7000, loss: 35.823787689208984\\n\",\n      \"epoch: 0, iter: 8000, loss: 35.2523193359375\\n\",\n      \"epoch: 0, iter: 9000, loss: 35.85188674926758\\n\",\n      \"epoch: 0, iter: 10000, loss: 35.528446197509766\\n\",\n      \"epoch: 0, iter: 11000, loss: 34.1132698059082\\n\",\n      \"epoch: 0, iter: 12000, loss: 34.4886474609375\\n\",\n      \"epoch: 0, iter: 13000, loss: 33.55486297607422\\n\",\n      \"epoch: 0, iter: 14000, loss: 33.06645202636719\\n\",\n      \"epoch: 0, iter: 15000, loss: 35.073768615722656\\n\",\n      \"epoch: 0, iter: 16000, loss: 33.03211212158203\\n\",\n      \"epoch: 0, iter: 17000, loss: 32.87288284301758\\n\",\n      \"epoch: 0, iter: 18000, loss: 32.25053024291992\\n\",\n      \"epoch: 0, iter: 19000, loss: 33.15672302246094\\n\",\n      \"epoch: 0, iter: 20000, loss: 33.965084075927734\\n\",\n      \"epoch: 0, iter: 21000, loss: 31.78493881225586\\n\",\n      \"epoch: 0, iter: 22000, loss: 31.21977996826172\\n\",\n      \"epoch: 0, iter: 23000, loss: 31.222129821777344\\n\",\n      \"epoch: 0, iter: 24000, loss: 32.180294036865234\\n\",\n      \"epoch: 0, iter: 25000, loss: 32.11918640136719\\n\",\n      \"epoch: 0, iter: 26000, loss: 32.410438537597656\\n\",\n      \"epoch: 0, iter: 27000, loss: 31.191852569580078\\n\",\n      \"epoch: 0, iter: 28000, loss: 31.6796817779541\\n\",\n      \"epoch: 0, iter: 29000, loss: 32.07501220703125\\n\",\n      \"epoch: 0, iter: 30000, loss: 31.589771270751953\\n\",\n      \"epoch: 0, iter: 31000, loss: 30.55971908569336\\n\",\n      \"epoch: 0, iter: 32000, loss: 31.50411605834961\\n\",\n      \"epoch: 0, iter: 33000, loss: 32.12269592285156\\n\",\n      \"epoch: 0, iter: 34000, loss: 31.799057006835938\\n\",\n      \"epoch: 0, iter: 35000, loss: 31.488569259643555\\n\",\n      \"epoch: 0, iter: 36000, loss: 32.0762939453125\\n\",\n      \"epoch: 0, iter: 37000, loss: 31.718448638916016\\n\",\n      \"epoch: 0, iter: 38000, loss: 31.836288452148438\\n\",\n      \"epoch: 0, iter: 39000, loss: 30.796913146972656\\n\",\n      \"epoch: 0, iter: 40000, loss: 31.26019287109375\\n\",\n      \"epoch: 0, iter: 41000, loss: 31.18332290649414\\n\",\n      \"epoch: 0, iter: 42000, loss: 31.035846710205078\\n\",\n      \"epoch: 0, iter: 43000, loss: 31.67388153076172\\n\",\n      \"epoch: 0, iter: 44000, loss: 30.95718002319336\\n\",\n      \"epoch: 0, iter: 45000, loss: 31.227718353271484\\n\",\n      \"epoch: 0, iter: 46000, loss: 30.958019256591797\\n\",\n      \"epoch: 0, iter: 47000, loss: 30.802886962890625\\n\",\n      \"epoch: 0, iter: 48000, loss: 31.316438674926758\\n\",\n      \"epoch: 0, iter: 49000, loss: 31.068218231201172\\n\",\n      \"epoch: 0, iter: 50000, loss: 30.90799331665039\\n\",\n      \"epoch: 0, iter: 51000, loss: 30.834815979003906\\n\",\n      \"epoch: 0, iter: 52000, loss: 30.801921844482422\\n\",\n      \"epoch: 0, iter: 53000, loss: 31.455249786376953\\n\",\n      \"epoch: 0, iter: 54000, loss: 31.085723876953125\\n\",\n      \"epoch: 0, iter: 55000, loss: 31.31935691833496\\n\",\n      \"epoch: 0, iter: 56000, loss: 31.21722412109375\\n\",\n      \"epoch: 0, iter: 57000, loss: 31.02591323852539\\n\",\n      \"epoch: 0, iter: 58000, loss: 30.76601791381836\\n\",\n      \"epoch: 0, iter: 59000, loss: 30.669824600219727\\n\",\n      \"epoch: 0, iter: 60000, loss: 31.46889305114746\\n\",\n      \"epoch: 0, iter: 61000, loss: 30.514265060424805\\n\",\n      \"epoch: 0, iter: 62000, loss: 30.749996185302734\\n\",\n      \"epoch: 0, iter: 63000, loss: 31.39304542541504\\n\",\n      \"epoch: 0, iter: 64000, loss: 31.034055709838867\\n\",\n      \"epoch: 0, iter: 65000, loss: 30.75653839111328\\n\",\n      \"epoch: 0, iter: 66000, loss: 31.44009780883789\\n\",\n      \"epoch: 0, iter: 67000, loss: 30.631933212280273\\n\",\n      \"epoch: 0, iter: 68000, loss: 30.852642059326172\\n\",\n      \"epoch: 0, iter: 69000, loss: 30.440444946289062\\n\",\n      \"epoch: 0, iter: 70000, loss: 30.89693260192871\\n\",\n      \"epoch: 0, iter: 71000, loss: 30.34482192993164\\n\",\n      \"epoch: 0, iter: 72000, loss: 30.580995559692383\\n\",\n      \"epoch: 0, iter: 73000, loss: 30.62125015258789\\n\",\n      \"epoch: 0, iter: 74000, loss: 31.25283432006836\\n\",\n      \"epoch: 0, iter: 75000, loss: 31.340688705444336\\n\",\n      \"epoch: 0, iter: 76000, loss: 31.031070709228516\\n\",\n      \"epoch: 0, iter: 77000, loss: 30.721107482910156\\n\",\n      \"epoch: 0, iter: 78000, loss: 31.15871238708496\\n\",\n      \"epoch: 0, iter: 79000, loss: 30.72861099243164\\n\",\n      \"epoch: 0, iter: 80000, loss: 30.686187744140625\\n\",\n      \"epoch: 0, iter: 81000, loss: 30.96906280517578\\n\",\n      \"epoch: 0, iter: 82000, loss: 30.64755630493164\\n\",\n      \"epoch: 0, iter: 83000, loss: 30.86237907409668\\n\",\n      \"epoch: 0, iter: 84000, loss: 31.073986053466797\\n\",\n      \"epoch: 0, iter: 85000, loss: 30.927490234375\\n\",\n      \"epoch: 0, iter: 86000, loss: 30.70050048828125\\n\",\n      \"epoch: 0, iter: 87000, loss: 31.14577865600586\\n\",\n      \"epoch: 0, iter: 88000, loss: 30.773733139038086\\n\",\n      \"epoch: 0, iter: 89000, loss: 30.837783813476562\\n\",\n      \"epoch: 0, iter: 90000, loss: 30.594697952270508\\n\",\n      \"epoch: 0, iter: 91000, loss: 30.5462646484375\\n\",\n      \"epoch: 0, iter: 92000, loss: 31.061866760253906\\n\",\n      \"epoch: 0, iter: 93000, loss: 30.809398651123047\\n\",\n      \"epoch: 0, iter: 94000, loss: 30.77594757080078\\n\",\n      \"epoch: 0, iter: 95000, loss: 30.586809158325195\\n\",\n      \"epoch: 0, iter: 96000, loss: 30.77543830871582\\n\",\n      \"epoch: 0, iter: 97000, loss: 30.87103271484375\\n\",\n      \"epoch: 0, iter: 98000, loss: 30.16326141357422\\n\",\n      \"epoch: 0, iter: 99000, loss: 30.258590698242188\\n\",\n      \"epoch: 0, iter: 100000, loss: 30.997915267944336\\n\",\n      \"epoch: 0, iter: 101000, loss: 30.836084365844727\\n\",\n      \"epoch: 0, iter: 102000, loss: 30.87259292602539\\n\",\n      \"epoch: 0, iter: 103000, loss: 30.514392852783203\\n\",\n      \"epoch: 0, iter: 104000, loss: 30.22088050842285\\n\",\n      \"epoch: 0, iter: 105000, loss: 30.869644165039062\\n\",\n      \"epoch: 0, iter: 106000, loss: 30.51873016357422\\n\",\n      \"epoch: 0, iter: 107000, loss: 30.863828659057617\\n\",\n      \"epoch: 0, iter: 108000, loss: 30.66390609741211\\n\",\n      \"epoch: 0, iter: 109000, loss: 30.905582427978516\\n\",\n      \"epoch: 0, iter: 110000, loss: 31.3685302734375\\n\",\n      \"epoch: 0, iter: 111000, loss: 30.87140655517578\\n\",\n      \"epoch: 0, iter: 112000, loss: 30.823673248291016\\n\",\n      \"epoch: 0, iter: 113000, loss: 31.092639923095703\\n\",\n      \"epoch: 0, iter: 114000, loss: 30.361209869384766\\n\",\n      \"epoch: 0, iter: 115000, loss: 30.724641799926758\\n\",\n      \"epoch: 0, iter: 116000, loss: 30.91895866394043\\n\",\n      \"epoch: 0, iter: 117000, loss: 30.906103134155273\\n\",\n      \"epoch: 0, iter: 118000, loss: 30.354206085205078\\n\",\n      \"epoch: 0, iter: 119000, loss: 30.33993911743164\\n\",\n      \"epoch: 1, iter: 0, loss: 30.718202590942383\\n\",\n      \"epoch: 1, iter: 1000, loss: 30.54977035522461\\n\",\n      \"epoch: 1, iter: 2000, loss: 30.735172271728516\\n\",\n      \"epoch: 1, iter: 3000, loss: 30.505659103393555\\n\",\n      \"epoch: 1, iter: 4000, loss: 30.68982696533203\\n\",\n      \"epoch: 1, iter: 5000, loss: 30.236034393310547\\n\",\n      \"epoch: 1, iter: 6000, loss: 30.450191497802734\\n\",\n      \"epoch: 1, iter: 7000, loss: 30.46800994873047\\n\",\n      \"epoch: 1, iter: 8000, loss: 30.587671279907227\\n\",\n      \"epoch: 1, iter: 9000, loss: 30.89776039123535\\n\",\n      \"epoch: 1, iter: 10000, loss: 30.453964233398438\\n\",\n      \"epoch: 1, iter: 11000, loss: 30.340309143066406\\n\",\n      \"epoch: 1, iter: 12000, loss: 30.579856872558594\\n\",\n      \"epoch: 1, iter: 13000, loss: 30.941007614135742\\n\",\n      \"epoch: 1, iter: 14000, loss: 30.401355743408203\\n\",\n      \"epoch: 1, iter: 15000, loss: 30.470251083374023\\n\",\n      \"epoch: 1, iter: 16000, loss: 30.4851131439209\\n\",\n      \"epoch: 1, iter: 17000, loss: 31.073944091796875\\n\",\n      \"epoch: 1, iter: 18000, loss: 30.842205047607422\\n\",\n      \"epoch: 1, iter: 19000, loss: 30.65728759765625\\n\",\n      \"epoch: 1, iter: 20000, loss: 30.513702392578125\\n\",\n      \"epoch: 1, iter: 21000, loss: 30.401121139526367\\n\",\n      \"epoch: 1, iter: 22000, loss: 30.139076232910156\\n\",\n      \"epoch: 1, iter: 23000, loss: 30.591323852539062\\n\",\n      \"epoch: 1, iter: 24000, loss: 30.598430633544922\\n\",\n      \"epoch: 1, iter: 25000, loss: 30.648696899414062\\n\",\n      \"epoch: 1, iter: 26000, loss: 31.000125885009766\\n\",\n      \"epoch: 1, iter: 27000, loss: 30.409883499145508\\n\",\n      \"epoch: 1, iter: 28000, loss: 30.217910766601562\\n\",\n      \"epoch: 1, iter: 29000, loss: 30.617969512939453\\n\",\n      \"epoch: 1, iter: 30000, loss: 30.025922775268555\\n\",\n      \"epoch: 1, iter: 31000, loss: 30.6910457611084\\n\",\n      \"epoch: 1, iter: 32000, loss: 30.752849578857422\\n\",\n      \"epoch: 1, iter: 33000, loss: 30.63628578186035\\n\",\n      \"epoch: 1, iter: 34000, loss: 30.728408813476562\\n\",\n      \"epoch: 1, iter: 35000, loss: 30.473583221435547\\n\",\n      \"epoch: 1, iter: 36000, loss: 30.26988410949707\\n\",\n      \"epoch: 1, iter: 37000, loss: 30.499309539794922\\n\",\n      \"epoch: 1, iter: 38000, loss: 30.24459457397461\\n\",\n      \"epoch: 1, iter: 39000, loss: 30.781661987304688\\n\",\n      \"epoch: 1, iter: 40000, loss: 30.572044372558594\\n\",\n      \"epoch: 1, iter: 41000, loss: 30.40477752685547\\n\",\n      \"epoch: 1, iter: 42000, loss: 29.991519927978516\\n\",\n      \"epoch: 1, iter: 43000, loss: 30.25002098083496\\n\",\n      \"epoch: 1, iter: 44000, loss: 30.90960693359375\\n\",\n      \"epoch: 1, iter: 45000, loss: 30.67990493774414\\n\",\n      \"epoch: 1, iter: 46000, loss: 30.910268783569336\\n\",\n      \"epoch: 1, iter: 47000, loss: 30.526987075805664\\n\",\n      \"epoch: 1, iter: 48000, loss: 29.802139282226562\\n\",\n      \"epoch: 1, iter: 49000, loss: 30.346729278564453\\n\",\n      \"epoch: 1, iter: 50000, loss: 30.558292388916016\\n\",\n      \"epoch: 1, iter: 51000, loss: 30.506786346435547\\n\",\n      \"epoch: 1, iter: 52000, loss: 30.17622947692871\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"epoch: 1, iter: 53000, loss: 30.422870635986328\\n\",\n      \"epoch: 1, iter: 54000, loss: 30.511688232421875\\n\",\n      \"epoch: 1, iter: 55000, loss: 30.220746994018555\\n\",\n      \"epoch: 1, iter: 56000, loss: 30.517898559570312\\n\",\n      \"epoch: 1, iter: 57000, loss: 30.228534698486328\\n\",\n      \"epoch: 1, iter: 58000, loss: 29.6726016998291\\n\",\n      \"epoch: 1, iter: 59000, loss: 30.818809509277344\\n\",\n      \"epoch: 1, iter: 60000, loss: 30.15318489074707\\n\",\n      \"epoch: 1, iter: 61000, loss: 30.516082763671875\\n\",\n      \"epoch: 1, iter: 62000, loss: 30.354167938232422\\n\",\n      \"epoch: 1, iter: 63000, loss: 30.65067481994629\\n\",\n      \"epoch: 1, iter: 64000, loss: 30.16307830810547\\n\",\n      \"epoch: 1, iter: 65000, loss: 30.29519271850586\\n\",\n      \"epoch: 1, iter: 66000, loss: 30.450511932373047\\n\",\n      \"epoch: 1, iter: 67000, loss: 30.45915985107422\\n\",\n      \"epoch: 1, iter: 68000, loss: 30.23889923095703\\n\",\n      \"epoch: 1, iter: 69000, loss: 30.60623550415039\\n\",\n      \"epoch: 1, iter: 70000, loss: 30.522491455078125\\n\",\n      \"epoch: 1, iter: 71000, loss: 30.621078491210938\\n\",\n      \"epoch: 1, iter: 72000, loss: 30.627422332763672\\n\",\n      \"epoch: 1, iter: 73000, loss: 30.85080337524414\\n\",\n      \"epoch: 1, iter: 74000, loss: 30.2876033782959\\n\",\n      \"epoch: 1, iter: 75000, loss: 30.20944595336914\\n\",\n      \"epoch: 1, iter: 76000, loss: 30.489473342895508\\n\",\n      \"epoch: 1, iter: 77000, loss: 30.41691017150879\\n\",\n      \"epoch: 1, iter: 78000, loss: 30.45703887939453\\n\",\n      \"epoch: 1, iter: 79000, loss: 30.2554874420166\\n\",\n      \"epoch: 1, iter: 80000, loss: 30.326425552368164\\n\",\n      \"epoch: 1, iter: 81000, loss: 30.35062599182129\\n\",\n      \"epoch: 1, iter: 82000, loss: 31.12557029724121\\n\",\n      \"epoch: 1, iter: 83000, loss: 30.172191619873047\\n\",\n      \"epoch: 1, iter: 84000, loss: 30.336368560791016\\n\",\n      \"epoch: 1, iter: 85000, loss: 30.32604217529297\\n\",\n      \"epoch: 1, iter: 86000, loss: 30.477481842041016\\n\",\n      \"epoch: 1, iter: 87000, loss: 30.725988388061523\\n\",\n      \"epoch: 1, iter: 88000, loss: 30.35128402709961\\n\",\n      \"epoch: 1, iter: 89000, loss: 31.01091766357422\\n\",\n      \"epoch: 1, iter: 90000, loss: 30.491222381591797\\n\",\n      \"epoch: 1, iter: 91000, loss: 30.21773910522461\\n\",\n      \"epoch: 1, iter: 92000, loss: 29.86251449584961\\n\",\n      \"epoch: 1, iter: 93000, loss: 29.85382652282715\\n\",\n      \"epoch: 1, iter: 94000, loss: 30.321523666381836\\n\",\n      \"epoch: 1, iter: 95000, loss: 29.814773559570312\\n\",\n      \"epoch: 1, iter: 96000, loss: 30.574665069580078\\n\",\n      \"epoch: 1, iter: 97000, loss: 30.14328956604004\\n\",\n      \"epoch: 1, iter: 98000, loss: 29.90842056274414\\n\",\n      \"epoch: 1, iter: 99000, loss: 30.273555755615234\\n\",\n      \"epoch: 1, iter: 100000, loss: 29.937362670898438\\n\",\n      \"epoch: 1, iter: 101000, loss: 30.375999450683594\\n\",\n      \"epoch: 1, iter: 102000, loss: 30.64742660522461\\n\",\n      \"epoch: 1, iter: 103000, loss: 30.526161193847656\\n\",\n      \"epoch: 1, iter: 104000, loss: 30.345212936401367\\n\",\n      \"epoch: 1, iter: 105000, loss: 30.510639190673828\\n\",\n      \"epoch: 1, iter: 106000, loss: 30.42151641845703\\n\",\n      \"epoch: 1, iter: 107000, loss: 30.565765380859375\\n\",\n      \"epoch: 1, iter: 108000, loss: 29.951072692871094\\n\",\n      \"epoch: 1, iter: 109000, loss: 30.22141456604004\\n\",\n      \"epoch: 1, iter: 110000, loss: 30.723838806152344\\n\",\n      \"epoch: 1, iter: 111000, loss: 30.395931243896484\\n\",\n      \"epoch: 1, iter: 112000, loss: 30.433988571166992\\n\",\n      \"epoch: 1, iter: 113000, loss: 30.041824340820312\\n\",\n      \"epoch: 1, iter: 114000, loss: 30.053401947021484\\n\",\n      \"epoch: 1, iter: 115000, loss: 30.419116973876953\\n\",\n      \"epoch: 1, iter: 116000, loss: 30.211109161376953\\n\",\n      \"epoch: 1, iter: 117000, loss: 30.66413116455078\\n\",\n      \"epoch: 1, iter: 118000, loss: 29.81429672241211\\n\",\n      \"epoch: 1, iter: 119000, loss: 30.27712059020996\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"\\n\",\n    \"for e in range(EPOCHS):\\n\",\n    \"    for i, (input_labels, pos_labels, neg_labels) in enumerate(dataloader):\\n\",\n    \"        # TODO\\n\",\n    \"        input_labels = input_labels.long()\\n\",\n    \"        pos_labels = pos_labels.long()\\n\",\n    \"        neg_labels = neg_labels.long()\\n\",\n    \"\\n\",\n    \"        input_labels = input_labels.to(device)\\n\",\n    \"        pos_labels = pos_labels.to(device)\\n\",\n    \"        neg_labels = neg_labels.to(device)\\n\",\n    \"            \\n\",\n    \"        optimizer.zero_grad()\\n\",\n    \"        loss = model(input_labels, pos_labels, neg_labels).mean()\\n\",\n    \"        loss.backward()\\n\",\n    \"        optimizer.step()\\n\",\n    \"\\n\",\n    \"        if i % 1000 == 0:\\n\",\n    \"            print(\\\"epoch: {}, iter: {}, loss: {}\\\".format(e, i, loss.item()))\\n\",\n    \"            \\n\",\n    \"        \\n\",\n    \"#         if i % 2000 == 0:\\n\",\n    \"#             embedding_weights = model.input_embeddings()\\n\",\n    \"#             sim_simlex = evaluate(\\\"simlex-999.txt\\\", embedding_weights)\\n\",\n    \"#             sim_men = evaluate(\\\"men.txt\\\", embedding_weights)\\n\",\n    \"#             sim_353 = evaluate(\\\"wordsim353.csv\\\", embedding_weights)\\n\",\n    \"#             with open(LOG_FILE, \\\"a\\\") as fout:\\n\",\n    \"#                 print(\\\"epoch: {}, iteration: {}, simlex-999: {}, men: {}, sim353: {}, nearest to monster: {}\\\\n\\\".format(\\n\",\n    \"#                     e, i, sim_simlex, sim_men, sim_353, find_nearest(\\\"monster\\\")))\\n\",\n    \"#                 fout.write(\\\"epoch: {}, iteration: {}, simlex-999: {}, men: {}, sim353: {}, nearest to monster: {}\\\\n\\\".format(\\n\",\n    \"#                     e, i, sim_simlex, sim_men, sim_353, find_nearest(\\\"monster\\\")))\\n\",\n    \"                \\n\",\n    \"    embedding_weights = model.input_embeddings()\\n\",\n    \"    np.save(\\\"embedding-{}\\\".format(EMBEDDING_SIZE), embedding_weights)\\n\",\n    \"    torch.save(model.state_dict(), \\\"embedding-{}.th\\\".format(EMBEDDING_SIZE))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"## 未完待续\\n\",\n    \" 需要明白的点：\\n\",\n    \"    采样\\n\",\n    \"    输入输出的embedding是分开的？\\n\",\n    \"    后面的验证是什么鬼？\\n\",\n    \"    如何评价？\\n\",\n    \" \"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P005-Pytorch-Text-Classifer/_0_情感分类_词向量平均.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Sentiment Classfication By Word Averaging\\n\",\n    \"- 情感分类（2分类）示例\\n\",\n    \"- 采用词向量平均\\n\",\n    \"- 数据集-链接: https://pan.baidu.com/s/10iR2LvO_T_vp0eetMa6awQ  密码: tp29\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import time\\n\",\n    \"import random\\n\",\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"import torch.optim as optim\\n\",\n    \"from collections import Counter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"random.seed(2019)\\n\",\n    \"# 使用benchmark以启动CUDNN_FIND自动寻找最快的操作，\\n\",\n    \"# 当计算图不会改变的时候（每次输入形状相同，模型不改变）的情况下可以提高性能，反之则降低性能。\\n\",\n    \"# torch.backends.cudnn.deterministic = True\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"VOCAB_SIZE = 14_828\\n\",\n    \"\\n\",\n    \"EPOCHS = 5\\n\",\n    \"BATCH_SIZE = 32\\n\",\n    \"LEARNING_RATE = 0.01\\n\",\n    \"BEST_VALID_LOSS = float('inf')\\n\",\n    \"\\n\",\n    \"EMBEDDING_DIM = 100\\n\",\n    \"OUTPUT_DIM = 1\\n\",\n    \"\\n\",\n    \"train_file = \\\"data/senti.train.tsv\\\"\\n\",\n    \"eval_file = \\\"data/senti.dev.tsv\\\"\\n\",\n    \"test_file = \\\"data/senti.test.tsv\\\"\\n\",\n    \"\\n\",\n    \"USE_CUDA = torch.cuda.is_available()\\n\",\n    \"DEVICE = torch.device('cuda:0' if USE_CUDA else 'cpu')\\n\",\n    \"NUM_CUDA = torch.cuda.device_count()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_text_file(filename):\\n\",\n    \"    \\\"\\\"\\\"将样本的特征与标签分开，并将样本特征分词\\\"\\\"\\\"\\n\",\n    \"    sentences = []\\n\",\n    \"    label = []\\n\",\n    \"    with open(filename, \\\"r\\\") as f:\\n\",\n    \"        sent_list  = [line.strip().split('\\\\t') for line in f]\\n\",\n    \"    for sample in sent_list:\\n\",\n    \"        sentences.append(sample[0].lower().split(\\\" \\\"))\\n\",\n    \"        label.append(int(sample[-1]))\\n\",\n    \"    return sentences, label\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_word_dic(sentences_list, vocab_size=20_000):\\n\",\n    \"    \\\"\\\"\\\"构建words_set, word2idx, idx2word\\\"\\\"\\\"\\n\",\n    \"    words_list = [w for line in sentences_list for w in line]\\n\",\n    \"    counter = Counter(words_list)\\n\",\n    \"    words_topn = counter.most_common(vocab_size)\\n\",\n    \"    words_set = [item[0] for item in words_topn]\\n\",\n    \"    words_set = ['<pad>', \\\"<unk>\\\"] + words_set\\n\",\n    \"    word2idx = {w:i for i, w in enumerate(words_set)}\\n\",\n    \"    idx2word = {i:w for i, w in enumerate(words_set)}\\n\",\n    \"    return words_topn, word2idx, idx2word\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_x_y(word2idx, sentences_list, label_list, sent_len=30):\\n\",\n    \"    \\\"\\\"\\\"构建输入模型的数据，对每个单词编码，每个句子通过添加pading保持一样长\\\"\\\"\\\"\\n\",\n    \"    x = []\\n\",\n    \"    y = []\\n\",\n    \"    for sent, label in zip(sentences_list, label_list):\\n\",\n    \"        word_x = [0]*sent_len\\n\",\n    \"        if len(sent) > sent_len:\\n\",\n    \"            sent = sent[:sent_len]\\n\",\n    \"        for i, w in enumerate(sent):\\n\",\n    \"            if w in word2idx:\\n\",\n    \"                word_x[i] = word2idx[w]\\n\",\n    \"            else:\\n\",\n    \"                word_x[i] = word2idx['<unk>']\\n\",\n    \"        x.append(word_x)\\n\",\n    \"        y.append(label)\\n\",\n    \"    return x, y\\n\",\n    \"\\n\",\n    \"# 构造批次数据\\n\",\n    \"def build_batch_data(data, label, batch_size=32):\\n\",\n    \"    \\\"\\\"\\\"构建 batch tensor，返回 batch 列表，每个batch为二元组包含data和label\\\"\\\"\\\"\\n\",\n    \"    batch_data = []\\n\",\n    \"    data_tensor = torch.tensor(data, dtype=torch.long)\\n\",\n    \"    label_tensor = torch.tensor(label, dtype=torch.float)\\n\",\n    \"    n, dim = data_tensor.size()\\n\",\n    \"    for start in range(0, n, batch_size):\\n\",\n    \"        end = start + batch_size\\n\",\n    \"        if end > n:\\n\",\n    \"            break\\n\",\n    \"            dbatch = data_tensor[start: ]\\n\",\n    \"            lbatch = label_tensor[start: ]\\n\",\n    \"            print(\\\"最后一个batch size:\\\", dbatch.size())\\n\",\n    \"        else:\\n\",\n    \"            dbatch = data_tensor[start: end]\\n\",\n    \"            lbatch = label_tensor[start: end]\\n\",\n    \"        batch_data.append((dbatch, lbatch))\\n\",\n    \"    return batch_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_sentences, train_label = load_text_file(train_file)\\n\",\n    \"eval_sentences, eval_label = load_text_file(eval_file)\\n\",\n    \"test_sentences, test_label = load_text_file(test_file)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"处理后的样本与标签： ['hide', 'new', 'secretions', 'from', 'the', 'parental', 'units'] 0\\n\",\n      \"各个数据集样本数量：\\n\",\n      \"67349 67349\\n\",\n      \"872 872\\n\",\n      \"1821 1821\\n\",\n      \"各数据集最长最短句子单词数：\\n\",\n      \"52 1\\n\",\n      \"47 2\\n\",\n      \"56 2\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"处理后的样本与标签：\\\", train_sentences[0], train_label[0])\\n\",\n    \"print(\\\"各个数据集样本数量：\\\")\\n\",\n    \"print(len(train_sentences), len(train_label))\\n\",\n    \"print(len(eval_sentences), len(eval_label))\\n\",\n    \"print(len(test_sentences), len(test_label))\\n\",\n    \"\\n\",\n    \"print(\\\"各数据集最长最短句子单词数：\\\")\\n\",\n    \"print(max([len(s) for s in train_sentences]), min([len(s) for s in train_sentences]))\\n\",\n    \"print(max([len(s) for s in eval_sentences]), min([len(s) for s in eval_sentences]))\\n\",\n    \"print(max([len(s) for s in test_sentences]), min([len(s) for s in test_sentences]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"max_seq_len = 56\\n\",\n    \"words_set, word2idx, idx2word = build_word_dic(train_sentences, vocab_size=VOCAB_SIZE)\\n\",\n    \"train_x, train_y = build_x_y(word2idx, train_sentences, train_label,sent_len=max_seq_len)\\n\",\n    \"eval_x, eval_y = build_x_y(word2idx, eval_sentences, eval_label,sent_len=max_seq_len)\\n\",\n    \"test_x, test_y = build_x_y(word2idx, test_sentences, test_label,sent_len=max_seq_len)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"词典长度: 14828 14830 14830\\n\",\n      \"训练集样本数量: 67349 67349\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"词典长度:\\\", len(words_set), len(word2idx), len(idx2word))\\n\",\n    \"print(\\\"训练集样本数量:\\\", len(train_x), len(train_y))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_data = build_batch_data(train_x, train_y, batch_size=BATCH_SIZE)\\n\",\n    \"eval_data = build_batch_data(eval_x, eval_y, batch_size=BATCH_SIZE)\\n\",\n    \"test_data = build_batch_data(test_x, test_y, batch_size=BATCH_SIZE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(torch.Size([32, 56]), torch.Size([32]))\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train_data[0][0].size(), train_data[0][1].size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([0., 0., 1., 0., 0., 0., 1., 1., 0., 1., 0., 0., 0., 0., 0., 1., 0., 1.,\\n\",\n       \"        0., 1., 1., 1., 1., 1., 0., 1., 0., 1., 1., 0., 0., 1.])\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train_data[0][1]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Word Averaging Model\\n\",\n    \"class WordAVGModel(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embedding_dim, output_dim, pad_idx):\\n\",\n    \"        super(WordAVGModel, self).__init__()\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embedding_dim, padding_idx=pad_idx)\\n\",\n    \"        self.fc = nn.Linear(embedding_dim, output_dim)\\n\",\n    \"        \\n\",\n    \"    def forward(self, data):\\n\",\n    \"        # print(\\\"data\\\", data.size())\\n\",\n    \"        embedded = self.embedding(data) # [sent len, batch size, emb dim]\\n\",\n    \"        # print(\\\"embdded\\\", embedded.size())\\n\",\n    \"        # embedded = embedded.permute(1, 0, 2) # [batch size, sent len, emb dim]\\n\",\n    \"        # print(\\\"embdded2:\\\", embedded.size())\\n\",\n    \"        pooled = F.avg_pool2d(embedded, (embedded.shape[1], 1)).squeeze(1) # [batch size, embedding_dim]\\n\",\n    \"        # print(\\\"poold:\\\", pooled.size())\\n\",\n    \"        score = self.fc(pooled)\\n\",\n    \"        return score\\n\",\n    \"    \\n\",\n    \"def binary_accuracy(preds, y):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    计算准确率\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    rounded_preds = torch.round(torch.sigmoid(preds))\\n\",\n    \"    correct = (rounded_preds == y).float()  \\n\",\n    \"    acc = correct.sum() / len(correct)\\n\",\n    \"    return acc\\n\",\n    \"\\n\",\n    \"def train(model, device, iterator, optimizer, criterion):\\n\",\n    \"    \\\"\\\"\\\"训练函数\\\"\\\"\\\"\\n\",\n    \"    \\n\",\n    \"    epoch_loss = 0\\n\",\n    \"    epoch_acc = 0\\n\",\n    \"    model.train()\\n\",\n    \"    \\n\",\n    \"    for x, y in iterator:\\n\",\n    \"        x, y = x.to(device), y.to(device) # torch.int64\\n\",\n    \"        optimizer.zero_grad()\\n\",\n    \"        predictions = model(x).squeeze(1)  # torch.float32 \\n\",\n    \"        \\n\",\n    \"        loss = criterion(predictions, y)\\n\",\n    \"        acc = binary_accuracy(predictions, y)\\n\",\n    \"        loss.backward()\\n\",\n    \"        optimizer.step()\\n\",\n    \"        \\n\",\n    \"        epoch_loss += loss.item()\\n\",\n    \"        epoch_acc += acc.item()\\n\",\n    \"        \\n\",\n    \"    return epoch_loss / len(iterator), epoch_acc / len(iterator)\\n\",\n    \"\\n\",\n    \"def evaluate(model, device, iterator, criterion):\\n\",\n    \"    \\\"\\\"\\\"验证函数\\\"\\\"\\\"\\n\",\n    \"    epoch_loss = 0\\n\",\n    \"    epoch_acc = 0\\n\",\n    \"    model.eval()\\n\",\n    \"    \\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for x, y in iterator:\\n\",\n    \"            x, y = x.to(device), y.to(device)\\n\",\n    \"            predictions = model(x).squeeze(1)\\n\",\n    \"            loss = criterion(predictions, y)\\n\",\n    \"            acc = binary_accuracy(predictions, y)\\n\",\n    \"            epoch_loss += loss.item()\\n\",\n    \"            epoch_acc += acc.item()\\n\",\n    \"        \\n\",\n    \"    return epoch_loss / len(iterator), epoch_acc / len(iterator)\\n\",\n    \"\\n\",\n    \"def count_parameters(model):\\n\",\n    \"    \\\"\\\"\\\"统计模型的参数量\\\"\\\"\\\"\\n\",\n    \"    return sum(p.numel() for p in model.parameters() if p.requires_grad)\\n\",\n    \"\\n\",\n    \"def epoch_time(start_time, end_time):\\n\",\n    \"    \\\"\\\"\\\"计算时间差，单位秒\\\"\\\"\\\"\\n\",\n    \"    elapsed_time = end_time - start_time\\n\",\n    \"    elapsed_mins = int(elapsed_time / 60)\\n\",\n    \"    elapsed_secs = int(elapsed_time - (elapsed_mins * 60))\\n\",\n    \"    return elapsed_mins, elapsed_secs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"模型有1,483,101个可调节参数, 大约5.657581329345703 M.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"INPUT_DIM = len(words_set) + 2\\n\",\n    \"PAD_IDX = word2idx['<pad>']\\n\",\n    \"\\n\",\n    \"model = WordAVGModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\\n\",\n    \"print(f'模型有{count_parameters(model):,}个可调节参数, 大约{count_parameters(model)*4/1024/1024} M.')\\n\",\n    \"\\n\",\n    \"model = model.to(DEVICE)\\n\",\n    \"\\n\",\n    \"# 使用多块GPU\\n\",\n    \"# if NUM_CUDA > 1:\\n\",\n    \"#     device_ids = list(range(NUM_CUDA))\\n\",\n    \"#     print(device_ids)\\n\",\n    \"#     model = nn.DataParallel(model, device_ids=device_ids)\\n\",\n    \"optimizer = optim.Adam(model.parameters(),lr=LEARNING_RATE)\\n\",\n    \"criterion = nn.BCEWithLogitsLoss()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 训练模型\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/serialization.py:292: UserWarning: Couldn't retrieve source code for container of type WordAVGModel. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\",\n      \"/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/serialization.py:292: UserWarning: Couldn't retrieve source code for container of type Embedding. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\",\n      \"/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/serialization.py:292: UserWarning: Couldn't retrieve source code for container of type Linear. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***Save Best Model wordavg-model.pth***\\n\",\n      \"Epoch: 01 | Epoch Time: 0m 2s\\n\",\n      \"\\tTrain Loss: 0.370 | Train Acc: 83.19%\\n\",\n      \"\\t Val. Loss: 0.562 |  Val. Acc: 81.13%\\n\",\n      \"Epoch: 02 | Epoch Time: 0m 2s\\n\",\n      \"\\tTrain Loss: 0.226 | Train Acc: 91.20%\\n\",\n      \"\\t Val. Loss: 0.681 |  Val. Acc: 82.06%\\n\",\n      \"Epoch: 03 | Epoch Time: 0m 2s\\n\",\n      \"\\tTrain Loss: 0.191 | Train Acc: 92.70%\\n\",\n      \"\\t Val. Loss: 0.788 |  Val. Acc: 82.41%\\n\",\n      \"Epoch: 04 | Epoch Time: 0m 2s\\n\",\n      \"\\tTrain Loss: 0.171 | Train Acc: 93.52%\\n\",\n      \"\\t Val. Loss: 0.888 |  Val. Acc: 81.48%\\n\",\n      \"Epoch: 05 | Epoch Time: 0m 2s\\n\",\n      \"\\tTrain Loss: 0.157 | Train Acc: 94.11%\\n\",\n      \"\\t Val. Loss: 0.993 |  Val. Acc: 80.67%\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model_name = 'wordavg-model.pth'\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    start_time = time.time()\\n\",\n    \"    train_loss, train_acc = train(model, DEVICE, train_data, optimizer, criterion)\\n\",\n    \"    valid_loss, valid_acc = evaluate(model, DEVICE, eval_data, criterion)\\n\",\n    \"    end_time = time.time()\\n\",\n    \"\\n\",\n    \"    epoch_mins, epoch_secs = epoch_time(start_time, end_time)\\n\",\n    \"    if valid_loss < BEST_VALID_LOSS:\\n\",\n    \"        BEST_VALID_LOSS = valid_loss\\n\",\n    \"        torch.save(model, model_name)\\n\",\n    \"        print(f'***Save Best Model {model_name}***')\\n\",\n    \"    \\n\",\n    \"    print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\\n\",\n    \"    print(f'\\\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\\n\",\n    \"    print(f'\\\\t Val. Loss: {valid_loss:.3f} |  Val. Acc: {valid_acc*100:.2f}%')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 测试集上的表现\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.5002752636958446 | Test Acc: 0.8097098214285714 |\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"test_loss, test_acc = evaluate(model, DEVICE, test_data, criterion)\\n\",\n    \"print('Test Loss: {0} | Test Acc: {1} |'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 计算词向量L2 Norm\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Embed size: torch.Size([14830, 100])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"embed = model.embedding.weight.data\\n\",\n    \"print(\\\"Embed size:\\\", embed.size())\\n\",\n    \"word_l2norm = torch.norm(embed,  dim=1)\\n\",\n    \"embed_l2norm, embed_l2normnorm_idx = word_l2norm.sort()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"L2 norm 最小的 15 个单词：\\n\",\n      \"<pad> 0.11879125237464905\\n\",\n      \"times 7.761016845703125\\n\",\n      \"expeditious 7.798865795135498\\n\",\n      \"nights 7.943765163421631\\n\",\n      \"fallible 7.999438285827637\\n\",\n      \"cheering 8.00982666015625\\n\",\n      \"freak-outs 8.024674415588379\\n\",\n      \"ol' 8.026588439941406\\n\",\n      \"steeped 8.085253715515137\\n\",\n      \"prophet 8.100972175598145\\n\",\n      \"ennui 8.163886070251465\\n\",\n      \"besides 8.185270309448242\\n\",\n      \"independent 8.185609817504883\\n\",\n      \"showing 8.20890998840332\\n\",\n      \"loquacious 8.211852073669434\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('L2 norm 最小的 15 个单词：')\\n\",\n    \"for i,s in zip(embed_l2normnorm_idx[:15].tolist(), embed_l2norm[:15].tolist()):\\n\",\n    \"    print(idx2word[i], s)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"L2 norm 最大的 15 个单词：\\n\",\n      \"annoying 22.8407039642334\\n\",\n      \"wonderfully 23.056434631347656\\n\",\n      \"touching 23.10053062438965\\n\",\n      \"pointless 23.324430465698242\\n\",\n      \"pretentious 23.505430221557617\\n\",\n      \"terrific 23.599756240844727\\n\",\n      \"devoid 23.609289169311523\\n\",\n      \"lousy 24.04730987548828\\n\",\n      \"hilarious 24.437118530273438\\n\",\n      \"failure 24.47695541381836\\n\",\n      \"stupid 24.875703811645508\\n\",\n      \"worst 25.027503967285156\\n\",\n      \"lacking 25.51972007751465\\n\",\n      \"remarkable 25.560626983642578\\n\",\n      \"mess 26.684070587158203\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('L2 norm 最大的 15 个单词：')\\n\",\n    \"for i,s in zip(embed_l2normnorm_idx[-15:].tolist(), embed_l2norm[-15:].tolist()):\\n\",\n    \"    print(idx2word[i],s)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P005-Pytorch-Text-Classifer/_1_attention_wordavg.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Attention Weighted word averaging\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import time\\n\",\n    \"import random\\n\",\n    \"import numpy as np\\n\",\n    \"from collections import Counter\\n\",\n    \"\\n\",\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.optim as optim\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"\\n\",\n    \"random.seed(2019)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"VOCAB_SIZE = 14_828\\n\",\n    \"\\n\",\n    \"EPOCHS = 5\\n\",\n    \"BATCH_SIZE = 32\\n\",\n    \"LEARNING_RATE = 0.01\\n\",\n    \"BEST_VALID_LOSS = float('inf')\\n\",\n    \"\\n\",\n    \"EMBEDDING_DIM = 100\\n\",\n    \"OUTPUT_DIM = 1\\n\",\n    \"\\n\",\n    \"train_file = \\\"data/senti.train.tsv\\\"\\n\",\n    \"eval_file = \\\"data/senti.dev.tsv\\\"\\n\",\n    \"test_file = \\\"data/senti.test.tsv\\\"\\n\",\n    \"\\n\",\n    \"USE_CUDA = torch.cuda.is_available()\\n\",\n    \"DEVICE = torch.device('cuda:1' if USE_CUDA else 'cpu')\\n\",\n    \"NUM_CUDA = torch.cuda.device_count()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_text_file(filename):\\n\",\n    \"    \\\"\\\"\\\"将样本的特征与标签分开，并将样本特征分词\\\"\\\"\\\"\\n\",\n    \"    sentences = []\\n\",\n    \"    label = []\\n\",\n    \"    with open(filename, \\\"r\\\") as f:\\n\",\n    \"        sent_list  = [line.strip().split('\\\\t') for line in f]\\n\",\n    \"    for sample in sent_list:\\n\",\n    \"        sentences.append(sample[0].lower().split(\\\" \\\"))\\n\",\n    \"        label.append(int(sample[-1]))\\n\",\n    \"    return sentences, label\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_word_dic(sentences_list, vocab_size=20_000):\\n\",\n    \"    \\\"\\\"\\\"构建words_set, word2idx, idx2word\\\"\\\"\\\"\\n\",\n    \"    words_list = [w for line in sentences_list for w in line]\\n\",\n    \"    counter = Counter(words_list)\\n\",\n    \"    words_topn = counter.most_common(vocab_size)\\n\",\n    \"    words_set = [item[0] for item in words_topn]\\n\",\n    \"    words_set = ['<pad>', \\\"<unk>\\\"] + words_set\\n\",\n    \"    word2idx = {w:i for i, w in enumerate(words_set)}\\n\",\n    \"    idx2word = {i:w for i, w in enumerate(words_set)}\\n\",\n    \"    return words_topn, word2idx, idx2word\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_x_y(word2idx, sentences_list, label_list, sent_len=30):\\n\",\n    \"    \\\"\\\"\\\"构建输入模型的数据，对每个单词编码，每个句子通过添加pading保持一样长\\\"\\\"\\\"\\n\",\n    \"    x = []\\n\",\n    \"    y = []\\n\",\n    \"    for sent, label in zip(sentences_list, label_list):\\n\",\n    \"        word_x = [0]*sent_len\\n\",\n    \"        if len(sent) > sent_len:\\n\",\n    \"            sent = sent[:sent_len]\\n\",\n    \"        for i, w in enumerate(sent):\\n\",\n    \"            if w in word2idx:\\n\",\n    \"                word_x[i] = word2idx[w]\\n\",\n    \"            else:\\n\",\n    \"                word_x[i] = word2idx['<unk>']\\n\",\n    \"        x.append(word_x)\\n\",\n    \"        y.append(label)\\n\",\n    \"    return x, y\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_batch_data(data, label, batch_size=32):\\n\",\n    \"    \\\"\\\"\\\"构建tensor格式的批次数据，返回batch列表，每个batch为二元组包含feature和label\\\"\\\"\\\"\\n\",\n    \"    batch_data = []\\n\",\n    \"    # 打乱顺序\\n\",\n    \"    data_labels = [[x, y] for x, y in zip(data, label)]\\n\",\n    \"    random.shuffle(data_labels)\\n\",\n    \"    xlist = [item[0] for item in data_labels]\\n\",\n    \"    ylist = [item[1] for item in data_labels]\\n\",\n    \"    \\n\",\n    \"    x_tensor = torch.tensor(xlist, dtype=torch.long)\\n\",\n    \"    y_tensor = torch.tensor(ylist, dtype=torch.float)\\n\",\n    \"    n, dim = x_tensor.size()\\n\",\n    \"    for start in range(0, n, batch_size):\\n\",\n    \"        end = start + batch_size\\n\",\n    \"        if end > n:\\n\",\n    \"            break\\n\",\n    \"            xbatch = x_tensor[start: ]\\n\",\n    \"            ybatch = y_tensor[start: ]\\n\",\n    \"            print(\\\"最后一个batch size:\\\", dbatch.size())\\n\",\n    \"        else:\\n\",\n    \"            xbatch = x_tensor[start: end]\\n\",\n    \"            ybatch = y_tensor[start: end]\\n\",\n    \"        batch_data.append((xbatch, ybatch))\\n\",\n    \"    return batch_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_sentences, train_label = load_text_file(train_file)\\n\",\n    \"eval_sentences, eval_label = load_text_file(eval_file)\\n\",\n    \"test_sentences, test_label = load_text_file(test_file)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"处理后的样本与标签： ['hide', 'new', 'secretions', 'from', 'the', 'parental', 'units'] 0\\n\",\n      \"各个数据集样本数量：\\n\",\n      \"67349 67349\\n\",\n      \"872 872\\n\",\n      \"1821 1821\\n\",\n      \"各数据集最长最短句子单词数：\\n\",\n      \"52 1\\n\",\n      \"47 2\\n\",\n      \"56 2\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"处理后的样本与标签：\\\", train_sentences[0], train_label[0])\\n\",\n    \"print(\\\"各个数据集样本数量：\\\")\\n\",\n    \"print(len(train_sentences), len(train_label))\\n\",\n    \"print(len(eval_sentences), len(eval_label))\\n\",\n    \"print(len(test_sentences), len(test_label))\\n\",\n    \"\\n\",\n    \"print(\\\"各数据集最长最短句子单词数：\\\")\\n\",\n    \"print(max([len(s) for s in train_sentences]), min([len(s) for s in train_sentences]))\\n\",\n    \"print(max([len(s) for s in eval_sentences]), min([len(s) for s in eval_sentences]))\\n\",\n    \"print(max([len(s) for s in test_sentences]), min([len(s) for s in test_sentences]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"max_seq_len = 56\\n\",\n    \"words_set, word2idx, idx2word = build_word_dic(train_sentences, vocab_size=VOCAB_SIZE)\\n\",\n    \"train_x, train_y = build_x_y(word2idx, train_sentences, train_label,sent_len=max_seq_len)\\n\",\n    \"eval_x, eval_y = build_x_y(word2idx, eval_sentences, eval_label,sent_len=max_seq_len)\\n\",\n    \"test_x, test_y = build_x_y(word2idx, test_sentences, test_label,sent_len=max_seq_len)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"词典长度: 14828 14830 14830\\n\",\n      \"训练集样本数量: 67349 67349\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"词典长度:\\\", len(words_set), len(word2idx), len(idx2word))\\n\",\n    \"print(\\\"训练集样本数量:\\\", len(train_x), len(train_y))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train_data = build_batch_data(train_x, train_y, batch_size=BATCH_SIZE)\\n\",\n    \"eval_data = build_batch_data(eval_x, eval_y, batch_size=BATCH_SIZE)\\n\",\n    \"test_data = build_batch_data(test_x, test_y, batch_size=BATCH_SIZE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class AttAvgModel(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\\n\",\n    \"        super(AttAvgModel, self).__init__()\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\\n\",\n    \"        initrange = 0.1\\n\",\n    \"        self.embedding.weight.data.uniform_(-initrange, initrange)\\n\",\n    \"        # 计算 Attention 向量\\n\",\n    \"        self.u = nn.Parameter(torch.randn(embed_dim))\\n\",\n    \"        self.fc = nn.Linear(embed_dim, output_size, bias=False)\\n\",\n    \"        \\n\",\n    \"    def forward(self, text):\\n\",\n    \"        # [batch, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        embed = self.embedding(text)\\n\",\n    \"        \\n\",\n    \"        # 扩展u这组参数，为的是计算和词向量的相似度，最后得到权重\\n\",\n    \"        # [emb_dim] -> [batch, seq_len, emb_dim]\\n\",\n    \"        u = self.u.repeat(embed.size(0), embed.size(1), 1)  # 在最后一个参数上重复自己\\n\",\n    \"        \\n\",\n    \"        # 计算余弦相似度\\n\",\n    \"        cos = F.cosine_similarity(embed, u, dim=2)   # [batch, seq_len] 计算每个词向量和对应的u向量的余弦相似度\\n\",\n    \"        \\n\",\n    \"        # 计算权重 \\n\",\n    \"        alpha = F.softmax(cos, dim=1)   # [bacth, seq_len]  softmax的作用是使得每个序列的个单词权重之和为1\\n\",\n    \"        alpha = alpha.unsqueeze(2)      # [bacth, seq_len, 1]\\n\",\n    \"        \\n\",\n    \"        # embed*alpha => [bacth, seq_len, emb_dim] 相当于每个词向量（的每个元素）都乘上一个权重\\n\",\n    \"        h_attn = torch.sum(embed*alpha, dim=1).squeeze(1)  # 在1维度上sum 相当于把序列（句子）求和[batch, emb_dim]\\n\",\n    \"        \\n\",\n    \"        # [batch, emb_dim] -> [batch, output_size]即[batch, 1]\\n\",\n    \"        out = self.fc(h_attn) \\n\",\n    \"      \\n\",\n    \"        return out\\n\",\n    \"    \\n\",\n    \"    def get_embed_weight(self):\\n\",\n    \"        \\\"\\\"\\\"获取embedding层参数\\\"\\\"\\\"\\n\",\n    \"        return self.embedding.weight.data\\n\",\n    \"    \\n\",\n    \"    def get_u(self):\\n\",\n    \"        \\\"\\\"\\\"attention向量\\\"\\\"\\\"\\n\",\n    \"        return self.u\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def binary_accuracy(preds, y):\\n\",\n    \"    \\\"\\\"\\\"计算准确率\\\"\\\"\\\"\\n\",\n    \"    rounded_preds = torch.round(torch.sigmoid(preds))\\n\",\n    \"    correct = (rounded_preds == y).float()  \\n\",\n    \"    acc = correct.sum()/len(correct)\\n\",\n    \"    return acc\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def train(model, device, iterator, optimizer, criterion):\\n\",\n    \"    \\\"\\\"\\\"训练函数\\\"\\\"\\\"\\n\",\n    \"    \\n\",\n    \"    epoch_loss = 0\\n\",\n    \"    epoch_acc = 0\\n\",\n    \"    model.train()\\n\",\n    \"    \\n\",\n    \"    for x, y in iterator:\\n\",\n    \"        x, y = x.to(device), y.to(device) # torch.int64\\n\",\n    \"        optimizer.zero_grad()\\n\",\n    \"        predictions = model(x).squeeze(1)  # torch.float32 \\n\",\n    \"        \\n\",\n    \"        loss = criterion(predictions, y)\\n\",\n    \"        acc = binary_accuracy(predictions, y)\\n\",\n    \"        loss.backward()\\n\",\n    \"        optimizer.step()\\n\",\n    \"        \\n\",\n    \"        epoch_loss += loss.item()\\n\",\n    \"        epoch_acc += acc.item()\\n\",\n    \"        \\n\",\n    \"    return epoch_loss / len(iterator), epoch_acc / len(iterator)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def evaluate(model, device, iterator, criterion):\\n\",\n    \"    \\\"\\\"\\\"验证函数\\\"\\\"\\\"\\n\",\n    \"    epoch_loss = 0\\n\",\n    \"    epoch_acc = 0\\n\",\n    \"    model.eval()\\n\",\n    \"    \\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for x, y in iterator:\\n\",\n    \"            x, y = x.to(device), y.to(device)\\n\",\n    \"            predictions = model(x).squeeze(1)\\n\",\n    \"            loss = criterion(predictions, y)\\n\",\n    \"            acc = binary_accuracy(predictions, y)\\n\",\n    \"            epoch_loss += loss.item()\\n\",\n    \"            epoch_acc += acc.item()\\n\",\n    \"        \\n\",\n    \"    return epoch_loss / len(iterator), epoch_acc / len(iterator)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def count_parameters(model):\\n\",\n    \"    \\\"\\\"\\\"统计模型的参数量\\\"\\\"\\\"\\n\",\n    \"    return sum(p.numel() for p in model.parameters() if p.requires_grad)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def epoch_time(start_time, end_time):\\n\",\n    \"    \\\"\\\"\\\"计算时间差，返回分钟, 秒钟\\\"\\\"\\\"\\n\",\n    \"    elapsed_time = end_time - start_time\\n\",\n    \"    elapsed_mins = int(elapsed_time / 60)\\n\",\n    \"    elapsed_secs = int(elapsed_time - (elapsed_mins * 60))\\n\",\n    \"    return elapsed_mins, elapsed_secs\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"INPUT_DIM 14830\\n\",\n      \"模型有1,483,200个可调节参数, 大约5.657958984375 M.\\n\",\n      \"device: cuda:1\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"INPUT_DIM = len(words_set) + 2\\n\",\n    \"print(\\\"INPUT_DIM\\\", INPUT_DIM)\\n\",\n    \"PAD_IDX = word2idx['<pad>']\\n\",\n    \"\\n\",\n    \"model = AttAvgModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\\n\",\n    \"print(f'模型有{count_parameters(model):,}个可调节参数, 大约{count_parameters(model)*4/1024/1024} M.')\\n\",\n    \"\\n\",\n    \"model = model.to(DEVICE)\\n\",\n    \"print(\\\"device:\\\", DEVICE)\\n\",\n    \"\\n\",\n    \"    \\n\",\n    \"optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE)\\n\",\n    \"criterion = nn.BCEWithLogitsLoss()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type AttAvgModel. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***Save Best Model attention-wavg-model.pth***\\n\",\n      \"Epoch: 01 | Epoch Time: 0m 9s\\n\",\n      \"\\tTrain Loss: 0.327 | Train Acc: 85.78%\\n\",\n      \"\\t Val. Loss: 0.493 |  Val. Acc: 81.25%\\n\",\n      \"Epoch: 02 | Epoch Time: 0m 10s\\n\",\n      \"\\tTrain Loss: 0.194 | Train Acc: 92.50%\\n\",\n      \"\\t Val. Loss: 0.588 |  Val. Acc: 79.86%\\n\",\n      \"Epoch: 03 | Epoch Time: 0m 10s\\n\",\n      \"\\tTrain Loss: 0.163 | Train Acc: 93.81%\\n\",\n      \"\\t Val. Loss: 0.685 |  Val. Acc: 80.09%\\n\",\n      \"Epoch: 04 | Epoch Time: 0m 9s\\n\",\n      \"\\tTrain Loss: 0.138 | Train Acc: 94.90%\\n\",\n      \"\\t Val. Loss: 0.813 |  Val. Acc: 79.86%\\n\",\n      \"Epoch: 05 | Epoch Time: 0m 9s\\n\",\n      \"\\tTrain Loss: 0.117 | Train Acc: 95.70%\\n\",\n      \"\\t Val. Loss: 0.955 |  Val. Acc: 80.44%\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model_name = 'attention-wavg-model.pth'\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    start_time = time.time()\\n\",\n    \"    train_loss, train_acc = train(model, DEVICE, train_data, optimizer, criterion)\\n\",\n    \"    valid_loss, valid_acc = evaluate(model, DEVICE, eval_data, criterion)\\n\",\n    \"    end_time = time.time()\\n\",\n    \"\\n\",\n    \"    epoch_mins, epoch_secs = epoch_time(start_time, end_time)\\n\",\n    \"    if valid_loss < BEST_VALID_LOSS:\\n\",\n    \"        BEST_VALID_LOSS = valid_loss\\n\",\n    \"        torch.save(model, model_name)\\n\",\n    \"        print(f'***Save Best Model {model_name}***')\\n\",\n    \"    \\n\",\n    \"    print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\\n\",\n    \"    print(f'\\\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\\n\",\n    \"    print(f'\\\\t Val. Loss: {valid_loss:.3f} |  Val. Acc: {valid_acc*100:.2f}%')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.4549624267965555 | Test Acc: 0.8141741071428571 |\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"test_loss, test_acc = evaluate(model, DEVICE, test_data, criterion)\\n\",\n    \"print('Test Loss: {0} | Test Acc: {1} |'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 分析词向量和Attention向量\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = torch.load(model_name)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"word_embedding = model.get_embed_weight()  # 注意多GPU的时候是这样\\n\",\n    \"u = model.get_u()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"torch.Size([14830, 100]) torch.Size([100])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(word_embedding.size(), u.size())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"torch.Size([14830, 100])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"u_repeat = u.repeat(word_embedding.size()[0], 1)\\n\",\n    \"print(u_repeat.size())\\n\",\n    \"cos_sim = torch.cosine_similarity(word_embedding, u_repeat, dim=1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"cos_score, cos_idx = cos_sim.sort()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Cosine similarity最高的15个单词：\\n\",\n      \"nose : 0.8122435808181763\\n\",\n      \"soccer : 0.819983184337616\\n\",\n      \"telanovela : 0.8228465914726257\\n\",\n      \"tank : 0.8235946297645569\\n\",\n      \"hopelessly : 0.823834240436554\\n\",\n      \"connected : 0.828292965888977\\n\",\n      \"rises : 0.8358004689216614\\n\",\n      \"n't : 0.8396202921867371\\n\",\n      \"down : 0.8575065732002258\\n\",\n      \"induces : 0.8670101165771484\\n\",\n      \"seems : 0.8749212026596069\\n\",\n      \"not : 0.8817094564437866\\n\",\n      \"wrong : 0.885643720626831\\n\",\n      \"minutes : 0.9224189519882202\\n\",\n      \"or : 0.9354701042175293\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"Cosine similarity最高的15个单词：\\\")\\n\",\n    \"for i, s in zip(cos_idx[-15:], cos_score[-15: ]):\\n\",\n    \"    print(f\\\"{idx2word[i.item()]} : {s.item()}\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Cosine similarity最低的15个单词：\\n\",\n      \"caine : -0.9839131236076355\\n\",\n      \"boys : -0.9837092161178589\\n\",\n      \"stardom : -0.9834532141685486\\n\",\n      \"player : -0.9832771420478821\\n\",\n      \"roots : -0.9796615839004517\\n\",\n      \"sometimes : -0.9795486927032471\\n\",\n      \"contrivances : -0.9772619605064392\\n\",\n      \"describe : -0.9753174185752869\\n\",\n      \"words : -0.9740455746650696\\n\",\n      \"purpose : -0.9728651642799377\\n\",\n      \"italian : -0.9713523387908936\\n\",\n      \"actually : -0.9706254601478577\\n\",\n      \"quite : -0.9703256487846375\\n\",\n      \"delivery : -0.9696605205535889\\n\",\n      \"enervating : -0.9686934351921082\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(\\\"Cosine similarity最低的15个单词：\\\")\\n\",\n    \"for i, s in zip(cos_idx[: 15], cos_score[: 15]):\\n\",\n    \"    print(f\\\"{idx2word[i.item()]} : {s.item()}\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 相同单词在不同语境下attention的变化\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"661\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"words_freq = []\\n\",\n    \"for w in words_set:\\n\",\n    \"    if w[-1] >100:\\n\",\n    \"        words_freq.append(w[0])\\n\",\n    \"print(len(words_freq))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"\\\"the , a and of . to 's is that in it as with an film its for movie this you but be on n't by more -- one at than has not about his from are like so or all have most story ' good ... into out too who -rrb- up characters i funny -lrb- comedy if just no does much what can even ` your their will time some bad `` little '' very way which best any love been life make work enough there only he makes us new movies never something do they through was well action great would own made director humor many we really performances plot drama her how could films sense see such better other fun audience people every off two without cast nothing feel both when being look character may should entertaining acting real ever often performance them long : while still world because script also interesting another heart kind 're those hollywood dialogue watch minutes first screen down few get big over far thriller might less hard human moments actors tale compelling romantic rather cinema had year family almost material end watching seen - worth 've seem itself picture original take before my seems were documentary emotional our quite after find old these visual comes man things back fascinating moving sweet right works between feels here scenes full come piece direction care yet ; music go dull me going takes years special ultimately young ca keep making anything laughs 'll times why american worst smart give experience comic enjoyable least cinematic lot part where beautiful entertainment history style sometimes though thing art clever kids away gives again him together bit she intelligence dark idea gets amusing engaging same powerful once women genre intelligent star energy subject did charming surprisingly actually summer anyone charm want screenplay point filmmaking short place narrative solid pretty flick around feeling nearly feature silly simply whose manages strong face predictable wit think enjoy war truly offers show say deeply goes perfect know satisfying then power fans whole theater need effort always becomes done spirit fresh beautifully true trying premise half quirky three since filmmakers suspense tone dramatic portrait hilarious horror under last interest fine flat effects rare high rich series hours probably children everyone romance ideas touching ? familiar looking remarkable modern study 'd especially imagination wonderful pleasure classic boring small easy everything set exercise leave title level instead stuff honest culture past dumb intriguing tv wo video filmmaker light turn already actor audiences storytelling sad lack matter recent stories obvious mind written put despite talent ending terrific images french memorable project visually serious woman completely adventure become opera beauty talented gentle camera likely looks mess emotionally fails ride day slow sure cold having reason himself head cliches gorgeous directed beyond inside mr. jokes left men bland proves melodrama shot ways low impossible easily run above stupid thoughtful hour contrived excellent must simple ugly eyes different debut complex tired else fairly lacks viewer otherwise de believe shows brilliant viewers comedies each sort warmth passion black certainly writing turns particularly attempt play welcome wrong violence lost formula social cheap themselves genuine soap personal role delightful thoroughly crime either book sequences animation plays line hero version sex historical impressive barely home seeing appealing nor fact gags along quality clichés worse change got adults old-fashioned found lives middle surprising engrossing death running girl ambitious next message important creative fantasy able now live pretentious worthy ! sequel 'm decent psychological warm ends tragedy nice imagine entirely none perfectly michael waste creepy act remains sit deep concept unfunny laugh rock pictures job unsettling journey inventive usual try insight winning painful cool vision john unique attention convincing bring neither moral mystery stylish satire nature thin leaves master knows success side against believable artist lacking awful elements tedious lead reality seat working shallow mood situations view epic considerable appeal period provocative falls moment create days sentimental political scene sensitive watchable endearing cinematography road hackneyed\\\"\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"\\\" \\\".join(words_freq)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def word2sentences(sent_list, words_set, word2idx, freq=100):\\n\",\n    \"    words_freq = []\\n\",\n    \"    for w in words_set:\\n\",\n    \"        if w[-1] >100:\\n\",\n    \"            words_freq.append(w[0])\\n\",\n    \"    print(len(words_freq), words_freq[0])\\n\",\n    \"    w2sents = {}\\n\",\n    \"    w2sentnums = {}\\n\",\n    \"    for w in words_freq:\\n\",\n    \"        w2sents[w] = []\\n\",\n    \"        w2sentnums[w] = []\\n\",\n    \"        for s in sent_list:\\n\",\n    \"            if w in s:\\n\",\n    \"                w2sents[w].append(s)\\n\",\n    \"                w2sentnums[w].append([word2idx[word] for word in s])\\n\",\n    \"    return words_freq, w2sents, w2sentnums        \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"661 the\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"words_freq, w2sents, w2sentnums= word2sentences(train_sentences, words_set, word2idx, freq=100) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"19892\"\n      ]\n     },\n     \"execution_count\": 26,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"len(w2sents['the'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"19892\"\n      ]\n     },\n     \"execution_count\": 27,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"len(w2sentnums['the'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_attentions(sentence, word_embedding, u, word2idx):\\n\",\n    \"    \\\"\\\"\\\"计算一个句子中每个单词在句子中的Attention，返回单词与Attention值的字典\\\"\\\"\\\"\\n\",\n    \"    num_sentence = [word2idx[w] for w in sentence]\\n\",\n    \"    s_embed = word_embedding[num_sentence]\\n\",\n    \"    u = u.repeat(s_embed.size(0), 1)\\n\",\n    \"    score = torch.cosine_similarity(s_embed, u, dim=1)\\n\",\n    \"    attn = torch.softmax(score, dim=0)\\n\",\n    \"    return {w:a for w,a in zip(sentence, attn.tolist()) }\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"word_embedding = model.get_embed_weight()   # 注意多GPU的时候中间加上module\\n\",\n    \"u = model.get_u()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def get_word_sentens_attn_dic(w2sents, word_embedding, u, word2idx):\\n\",\n    \"    word_sentens_attn_dic = {}\\n\",\n    \"    word_attention_li = {}\\n\",\n    \"    for word, sent_list in w2sents.items():\\n\",\n    \"        word_sentens_attn_dic[word] = []\\n\",\n    \"        word_attention_li[word] = []\\n\",\n    \"        for sentence in sent_list:\\n\",\n    \"            dic = get_attentions(sentence, word_embedding, u, word2idx)\\n\",\n    \"            word_sentens_attn_dic[word].append(dic)\\n\",\n    \"            word_attention_li[word].append(dic[word])\\n\",\n    \"    return word_sentens_attn_dic, word_attention_li\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"word_sentens_attn_dic, word_attention_li = get_word_sentens_attn_dic(w2sents, word_embedding, u, word2idx)  # 这步很慢\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def meam_std_list(word_attention_li):\\n\",\n    \"    \\\"\\\"\\\"计算Attentions的平均值和标准差，并按标准差排序\\\"\\\"\\\"\\n\",\n    \"    word_mean_std_li = []\\n\",\n    \"    for w in word_attention_li:\\n\",\n    \"        arr = np.array(word_attention_li[w])\\n\",\n    \"        word_mean_std_li.append((w, arr.mean(), arr.std()))\\n\",\n    \"    word_mean_std_li = sorted(word_mean_std_li, key=lambda x:x[2], reverse=True)\\n\",\n    \"    return word_mean_std_li\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[0.1190217062830925,\\n\",\n       \" 0.0888654813170433,\\n\",\n       \" 0.06562710553407669,\\n\",\n       \" 0.04432917386293411,\\n\",\n       \" 0.10898833721876144,\\n\",\n       \" 0.2384878396987915,\\n\",\n       \" 0.10173339396715164,\\n\",\n       \" 0.10063987225294113,\\n\",\n       \" 0.03695022687315941,\\n\",\n       \" 0.05876564234495163,\\n\",\n       \" 0.1934322565793991,\\n\",\n       \" 0.10889307409524918,\\n\",\n       \" 0.03232577070593834,\\n\",\n       \" 0.11339320987462997,\\n\",\n       \" 0.03404928743839264,\\n\",\n       \" 0.11830116808414459,\\n\",\n       \" 0.2688466012477875,\\n\",\n       \" 0.06260889768600464,\\n\",\n       \" 0.02309643104672432,\\n\",\n       \" 0.06964331865310669,\\n\",\n       \" 0.03861911594867706,\\n\",\n       \" 0.13636240363121033,\\n\",\n       \" 0.12204936146736145,\\n\",\n       \" 0.06669215857982635,\\n\",\n       \" 0.024942168965935707,\\n\",\n       \" 0.03721117228269577,\\n\",\n       \" 0.03583051636815071,\\n\",\n       \" 0.03584276884794235,\\n\",\n       \" 0.030492568388581276,\\n\",\n       \" 0.049663230776786804,\\n\",\n       \" 0.05735832452774048,\\n\",\n       \" 0.017051974311470985,\\n\",\n       \" 0.03523822873830795,\\n\",\n       \" 0.03202565386891365,\\n\",\n       \" 0.04725823923945427,\\n\",\n       \" 0.12893228232860565,\\n\",\n       \" 0.05369587987661362,\\n\",\n       \" 0.059402815997600555,\\n\",\n       \" 0.03468054160475731,\\n\",\n       \" 0.05395803973078728,\\n\",\n       \" 0.03539625182747841,\\n\",\n       \" 0.2015077769756317,\\n\",\n       \" 0.09085898846387863,\\n\",\n       \" 0.028005624189972878,\\n\",\n       \" 0.0667819231748581,\\n\",\n       \" 0.04037237539887428,\\n\",\n       \" 0.18131670355796814,\\n\",\n       \" 0.05987803265452385,\\n\",\n       \" 0.05780469998717308,\\n\",\n       \" 0.02719230204820633,\\n\",\n       \" 0.030423060059547424,\\n\",\n       \" 0.05053051561117172,\\n\",\n       \" 0.06877638399600983,\\n\",\n       \" 0.05907575041055679,\\n\",\n       \" 0.021351618692278862,\\n\",\n       \" 0.11394309997558594,\\n\",\n       \" 0.053594399243593216,\\n\",\n       \" 0.10110218822956085,\\n\",\n       \" 0.13501515984535217,\\n\",\n       \" 0.050411127507686615,\\n\",\n       \" 0.03422318026423454,\\n\",\n       \" 0.2536636292934418,\\n\",\n       \" 0.061379726976156235,\\n\",\n       \" 0.09928023815155029,\\n\",\n       \" 0.04747406020760536,\\n\",\n       \" 0.10411464422941208,\\n\",\n       \" 0.5169481039047241,\\n\",\n       \" 0.06736201047897339,\\n\",\n       \" 0.15860888361930847,\\n\",\n       \" 0.05372478440403938,\\n\",\n       \" 0.11371945589780807,\\n\",\n       \" 0.03602738305926323,\\n\",\n       \" 0.18691308796405792,\\n\",\n       \" 0.10293374955654144,\\n\",\n       \" 0.06345084309577942,\\n\",\n       \" 0.06563040614128113,\\n\",\n       \" 0.04486239701509476,\\n\",\n       \" 0.02011091262102127,\\n\",\n       \" 0.10817983746528625,\\n\",\n       \" 0.07393988221883774,\\n\",\n       \" 0.17515778541564941,\\n\",\n       \" 0.07506236433982849,\\n\",\n       \" 0.12377643585205078,\\n\",\n       \" 0.06288991868495941,\\n\",\n       \" 0.052632614970207214,\\n\",\n       \" 0.11619420349597931,\\n\",\n       \" 0.03847669064998627,\\n\",\n       \" 0.07587035745382309,\\n\",\n       \" 0.311026930809021,\\n\",\n       \" 0.08157555013895035,\\n\",\n       \" 0.16591787338256836,\\n\",\n       \" 0.02459457516670227,\\n\",\n       \" 0.1466558277606964,\\n\",\n       \" 0.02945157326757908,\\n\",\n       \" 0.03548036888241768,\\n\",\n       \" 0.03053637407720089,\\n\",\n       \" 0.06344855576753616,\\n\",\n       \" 0.0557742603123188,\\n\",\n       \" 0.03470824286341667,\\n\",\n       \" 0.13192571699619293,\\n\",\n       \" 0.037928856909275055,\\n\",\n       \" 0.044478949159383774,\\n\",\n       \" 0.06271667778491974,\\n\",\n       \" 0.07074806839227676,\\n\",\n       \" 0.03992407023906708,\\n\",\n       \" 0.10563419759273529,\\n\",\n       \" 0.16265082359313965,\\n\",\n       \" 0.030746934935450554,\\n\",\n       \" 0.06765319406986237,\\n\",\n       \" 0.18624959886074066,\\n\",\n       \" 0.03647158667445183,\\n\",\n       \" 0.05157794430851936,\\n\",\n       \" 0.07289182394742966,\\n\",\n       \" 0.08590467274188995,\\n\",\n       \" 0.037205882370471954,\\n\",\n       \" 0.0257713682949543,\\n\",\n       \" 0.05212021619081497,\\n\",\n       \" 0.21074552834033966,\\n\",\n       \" 0.06060027331113815,\\n\",\n       \" 0.19964373111724854,\\n\",\n       \" 0.16401366889476776,\\n\",\n       \" 0.028099291026592255,\\n\",\n       \" 0.09699218720197678,\\n\",\n       \" 0.1128750592470169,\\n\",\n       \" 0.153528094291687,\\n\",\n       \" 0.11045274883508682,\\n\",\n       \" 0.09178707748651505,\\n\",\n       \" 0.055407024919986725,\\n\",\n       \" 0.04496483877301216,\\n\",\n       \" 0.03719280660152435,\\n\",\n       \" 0.09319733083248138,\\n\",\n       \" 0.07012350112199783,\\n\",\n       \" 0.03973418101668358,\\n\",\n       \" 0.04156848043203354,\\n\",\n       \" 0.1707957535982132,\\n\",\n       \" 0.03374147415161133,\\n\",\n       \" 0.1648533046245575,\\n\",\n       \" 0.06694913655519485,\\n\",\n       \" 0.04881034791469574,\\n\",\n       \" 0.044650476425886154,\\n\",\n       \" 0.1442776620388031,\\n\",\n       \" 0.09604538232088089,\\n\",\n       \" 0.06381257623434067,\\n\",\n       \" 0.26622605323791504,\\n\",\n       \" 0.030317753553390503,\\n\",\n       \" 0.22371108829975128,\\n\",\n       \" 0.08151829242706299,\\n\",\n       \" 0.23407316207885742,\\n\",\n       \" 0.029585257172584534,\\n\",\n       \" 0.06266219913959503,\\n\",\n       \" 0.26549261808395386,\\n\",\n       \" 0.06774194538593292,\\n\",\n       \" 0.02396443672478199,\\n\",\n       \" 0.03396550565958023,\\n\",\n       \" 0.0450105257332325,\\n\",\n       \" 0.04149557277560234,\\n\",\n       \" 0.04695688188076019,\\n\",\n       \" 0.05122069641947746,\\n\",\n       \" 0.02033059298992157,\\n\",\n       \" 0.08892922848463058,\\n\",\n       \" 0.03899766132235527,\\n\",\n       \" 0.06255039572715759,\\n\",\n       \" 0.0334644615650177,\\n\",\n       \" 0.2850794494152069,\\n\",\n       \" 0.04772552102804184,\\n\",\n       \" 0.1060880646109581,\\n\",\n       \" 0.088255375623703,\\n\",\n       \" 0.06618666648864746,\\n\",\n       \" 0.061119891703128815,\\n\",\n       \" 0.03122597560286522,\\n\",\n       \" 0.03851215913891792,\\n\",\n       \" 0.045152127742767334,\\n\",\n       \" 0.04264447093009949,\\n\",\n       \" 0.0540623739361763,\\n\",\n       \" 0.06660711020231247,\\n\",\n       \" 0.04495788365602493,\\n\",\n       \" 0.03237925469875336,\\n\",\n       \" 0.052003130316734314,\\n\",\n       \" 0.04870743304491043,\\n\",\n       \" 0.03287087008357048,\\n\",\n       \" 0.1530287265777588,\\n\",\n       \" 0.06592223048210144,\\n\",\n       \" 0.11171049624681473,\\n\",\n       \" 0.0700758621096611,\\n\",\n       \" 0.09055113047361374,\\n\",\n       \" 0.14344580471515656,\\n\",\n       \" 0.02901759371161461,\\n\",\n       \" 0.04834083467721939,\\n\",\n       \" 0.037656188011169434,\\n\",\n       \" 0.10242567211389542,\\n\",\n       \" 0.1825432926416397,\\n\",\n       \" 0.19612830877304077,\\n\",\n       \" 0.06464529037475586,\\n\",\n       \" 0.09119366854429245,\\n\",\n       \" 0.028015658259391785,\\n\",\n       \" 0.07851945608854294,\\n\",\n       \" 0.10461153090000153,\\n\",\n       \" 0.14327417314052582,\\n\",\n       \" 0.049767717719078064,\\n\",\n       \" 0.09648337215185165,\\n\",\n       \" 0.015945641323924065,\\n\",\n       \" 0.024270113557577133,\\n\",\n       \" 0.07491869479417801,\\n\",\n       \" 0.04213240370154381,\\n\",\n       \" 0.04413394257426262,\\n\",\n       \" 0.039152756333351135,\\n\",\n       \" 0.05446626991033554,\\n\",\n       \" 0.019847305491566658,\\n\",\n       \" 0.05792763829231262,\\n\",\n       \" 0.024212120100855827,\\n\",\n       \" 0.03902474045753479,\\n\",\n       \" 0.06913848966360092,\\n\",\n       \" 0.029697084799408913,\\n\",\n       \" 0.026168061420321465,\\n\",\n       \" 0.08621005713939667,\\n\",\n       \" 0.07626429200172424,\\n\",\n       \" 0.031165048480033875,\\n\",\n       \" 0.06632594019174576,\\n\",\n       \" 0.24267765879631042,\\n\",\n       \" 0.1918545812368393,\\n\",\n       \" 0.10814889520406723,\\n\",\n       \" 0.10232631117105484,\\n\",\n       \" 0.07839473336935043,\\n\",\n       \" 0.02742159366607666,\\n\",\n       \" 0.15463294088840485,\\n\",\n       \" 0.023295704275369644,\\n\",\n       \" 0.02080385573208332,\\n\",\n       \" 0.02996056340634823,\\n\",\n       \" 0.04610548913478851,\\n\",\n       \" 0.09957515448331833,\\n\",\n       \" 0.04806463047862053,\\n\",\n       \" 0.08573813736438751,\\n\",\n       \" 0.04728425294160843,\\n\",\n       \" 0.18879355490207672,\\n\",\n       \" 0.033618222922086716,\\n\",\n       \" 0.07075203955173492,\\n\",\n       \" 0.1164277046918869,\\n\",\n       \" 0.3264194130897522,\\n\",\n       \" 0.1723061501979828,\\n\",\n       \" 0.10902751237154007,\\n\",\n       \" 0.19211715459823608,\\n\",\n       \" 0.09303739666938782,\\n\",\n       \" 0.04016238823533058,\\n\",\n       \" 0.049924347549676895,\\n\",\n       \" 0.25351372361183167,\\n\",\n       \" 0.09723994135856628,\\n\",\n       \" 0.04845902696251869,\\n\",\n       \" 0.07687260955572128,\\n\",\n       \" 0.2092534452676773,\\n\",\n       \" 0.05441931262612343,\\n\",\n       \" 0.04299810156226158,\\n\",\n       \" 0.2191939651966095,\\n\",\n       \" 0.040391575545072556,\\n\",\n       \" 0.03540709614753723,\\n\",\n       \" 0.0642881914973259,\\n\",\n       \" 0.05204727128148079,\\n\",\n       \" 0.10873828828334808,\\n\",\n       \" 0.07282879948616028,\\n\",\n       \" 0.09578656405210495,\\n\",\n       \" 0.03383275493979454,\\n\",\n       \" 0.05712180212140083,\\n\",\n       \" 0.039114102721214294,\\n\",\n       \" 0.033581968396902084,\\n\",\n       \" 0.1568588763475418,\\n\",\n       \" 0.06475626677274704,\\n\",\n       \" 0.02475585602223873,\\n\",\n       \" 0.41876330971717834,\\n\",\n       \" 0.03612890839576721,\\n\",\n       \" 0.11657785624265671,\\n\",\n       \" 0.05431724339723587,\\n\",\n       \" 0.16770441830158234,\\n\",\n       \" 0.030350498855113983,\\n\",\n       \" 0.13726596534252167,\\n\",\n       \" 0.06324649602174759,\\n\",\n       \" 0.07860378175973892,\\n\",\n       \" 0.12398781627416611,\\n\",\n       \" 0.021274574100971222,\\n\",\n       \" 0.022703271359205246,\\n\",\n       \" 0.048349566757678986,\\n\",\n       \" 0.11050061881542206,\\n\",\n       \" 0.06524597853422165,\\n\",\n       \" 0.0734436884522438,\\n\",\n       \" 0.149702787399292,\\n\",\n       \" 0.03898262977600098,\\n\",\n       \" 0.06958620995283127,\\n\",\n       \" 0.024460135027766228,\\n\",\n       \" 0.027979765087366104,\\n\",\n       \" 0.127155140042305,\\n\",\n       \" 0.03166554495692253,\\n\",\n       \" 0.13801684975624084,\\n\",\n       \" 0.038323547691106796,\\n\",\n       \" 0.06787386536598206,\\n\",\n       \" 0.035622257739305496,\\n\",\n       \" 0.10033565759658813,\\n\",\n       \" 0.0311440359801054,\\n\",\n       \" 0.02600337564945221,\\n\",\n       \" 0.10641063749790192,\\n\",\n       \" 0.03634757176041603,\\n\",\n       \" 0.04158780351281166,\\n\",\n       \" 0.037957508116960526,\\n\",\n       \" 0.03828288987278938,\\n\",\n       \" 0.030446473509073257,\\n\",\n       \" 0.05256654694676399,\\n\",\n       \" 0.103183314204216,\\n\",\n       \" 0.07303179055452347,\\n\",\n       \" 0.0567825585603714,\\n\",\n       \" 0.04656092822551727,\\n\",\n       \" 0.17782475054264069,\\n\",\n       \" 0.05894114822149277,\\n\",\n       \" 0.037706296890974045,\\n\",\n       \" 0.05997772887349129,\\n\",\n       \" 0.09483397006988525,\\n\",\n       \" 0.09648361057043076,\\n\",\n       \" 0.058775644749403,\\n\",\n       \" 0.025263430550694466,\\n\",\n       \" 0.03559737652540207,\\n\",\n       \" 0.03718835487961769,\\n\",\n       \" 0.037433210760354996,\\n\",\n       \" 0.08024080842733383,\\n\",\n       \" 0.0329367034137249,\\n\",\n       \" 0.03249708190560341,\\n\",\n       \" 0.10160797089338303,\\n\",\n       \" 0.07969211041927338,\\n\",\n       \" 0.06215725839138031,\\n\",\n       \" 0.17166589200496674,\\n\",\n       \" 0.14642252027988434,\\n\",\n       \" 0.10035371780395508,\\n\",\n       \" 0.05296153202652931,\\n\",\n       \" 0.056795310229063034,\\n\",\n       \" 0.612654983997345,\\n\",\n       \" 0.09611662477254868,\\n\",\n       \" 0.06100054457783699,\\n\",\n       \" 0.031606439501047134,\\n\",\n       \" 0.02365294098854065,\\n\",\n       \" 0.022931382060050964,\\n\",\n       \" 0.06888768076896667,\\n\",\n       \" 0.08355206996202469,\\n\",\n       \" 0.08406144380569458,\\n\",\n       \" 0.042591702193021774,\\n\",\n       \" 0.05930786579847336,\\n\",\n       \" 0.05367044359445572,\\n\",\n       \" 0.06695730984210968,\\n\",\n       \" 0.14204104244709015,\\n\",\n       \" 0.06348727643489838,\\n\",\n       \" 0.05567392706871033,\\n\",\n       \" 0.06174761801958084,\\n\",\n       \" 0.033453695476055145,\\n\",\n       \" 0.03891436755657196,\\n\",\n       \" 0.020075727254152298,\\n\",\n       \" 0.0414951890707016,\\n\",\n       \" 0.032506175339221954,\\n\",\n       \" 0.06736794114112854,\\n\",\n       \" 0.10158678144216537,\\n\",\n       \" 0.09006553888320923,\\n\",\n       \" 0.04150666669011116,\\n\",\n       \" 0.02684030868113041,\\n\",\n       \" 0.025398092344403267,\\n\",\n       \" 0.1797437220811844,\\n\",\n       \" 0.04471973702311516,\\n\",\n       \" 0.021255958825349808,\\n\",\n       \" 0.03510395810008049,\\n\",\n       \" 0.03382451832294464,\\n\",\n       \" 0.10007128119468689,\\n\",\n       \" 0.04526577144861221,\\n\",\n       \" 0.026842957362532616,\\n\",\n       \" 0.08270543068647385,\\n\",\n       \" 0.10471946746110916,\\n\",\n       \" 0.057283055037260056,\\n\",\n       \" 0.07271410524845123,\\n\",\n       \" 0.04449273645877838,\\n\",\n       \" 0.13745062053203583,\\n\",\n       \" 0.12911921739578247,\\n\",\n       \" 0.14784403145313263,\\n\",\n       \" 0.09329920262098312,\\n\",\n       \" 0.1216944083571434,\\n\",\n       \" 0.027337318286299706,\\n\",\n       \" 0.02396107278764248,\\n\",\n       \" 0.042377181351184845,\\n\",\n       \" 0.062158361077308655,\\n\",\n       \" 0.04446171969175339,\\n\",\n       \" 0.04728274047374725,\\n\",\n       \" 0.05980304628610611,\\n\",\n       \" 0.02914244867861271,\\n\",\n       \" 0.06978300213813782,\\n\",\n       \" 0.04375814273953438,\\n\",\n       \" 0.20036965608596802,\\n\",\n       \" 0.07997465878725052,\\n\",\n       \" 0.06835726648569107,\\n\",\n       \" 0.041683170944452286,\\n\",\n       \" 0.030514631420373917,\\n\",\n       \" 0.026652103289961815,\\n\",\n       \" 0.17441785335540771,\\n\",\n       \" 0.05094584450125694,\\n\",\n       \" 0.021957408636808395,\\n\",\n       \" 0.2710874676704407,\\n\",\n       \" 0.24634550511837006,\\n\",\n       \" 0.07649432867765427,\\n\",\n       \" 0.2960168421268463,\\n\",\n       \" 0.10140511393547058,\\n\",\n       \" 0.14266598224639893,\\n\",\n       \" 0.05118827149271965,\\n\",\n       \" 0.08693334460258484,\\n\",\n       \" 0.06925912201404572,\\n\",\n       \" 0.029692446812987328,\\n\",\n       \" 0.10609026998281479,\\n\",\n       \" 0.08814039081335068,\\n\",\n       \" 0.026836788281798363,\\n\",\n       \" 0.05979667603969574,\\n\",\n       \" 0.12237458676099777,\\n\",\n       \" 0.06713636964559555,\\n\",\n       \" 0.05575822293758392,\\n\",\n       \" 0.0751352459192276,\\n\",\n       \" 0.05496926233172417,\\n\",\n       \" 0.13758447766304016,\\n\",\n       \" 0.046654775738716125,\\n\",\n       \" 0.03589659184217453,\\n\",\n       \" 0.11613260954618454,\\n\",\n       \" 0.06733033806085587,\\n\",\n       \" 0.03474242240190506,\\n\",\n       \" 0.029289567843079567,\\n\",\n       \" 0.11257215589284897,\\n\",\n       \" 0.034357309341430664,\\n\",\n       \" 0.037685949355363846,\\n\",\n       \" 0.0689353346824646,\\n\",\n       \" 0.1257118135690689,\\n\",\n       \" 0.04883013293147087,\\n\",\n       \" 0.08084968477487564,\\n\",\n       \" 0.04231289029121399,\\n\",\n       \" 0.09856132417917252,\\n\",\n       \" 0.12087294459342957,\\n\",\n       \" 0.10143931210041046,\\n\",\n       \" 0.04290332645177841,\\n\",\n       \" 0.062068067491054535,\\n\",\n       \" 0.10409357398748398,\\n\",\n       \" 0.052931539714336395,\\n\",\n       \" 0.07590798288583755,\\n\",\n       \" 0.09673279523849487,\\n\",\n       \" 0.03474681079387665,\\n\",\n       \" 0.05684053152799606,\\n\",\n       \" 0.20651596784591675,\\n\",\n       \" 0.05751960352063179,\\n\",\n       \" 0.0388704277575016,\\n\",\n       \" 0.052278485149145126,\\n\",\n       \" 0.21900348365306854,\\n\",\n       \" 0.10898563265800476,\\n\",\n       \" 0.06644424796104431,\\n\",\n       \" 0.024152887985110283,\\n\",\n       \" 0.024472199380397797,\\n\",\n       \" 0.14489804208278656,\\n\",\n       \" 0.11115849763154984,\\n\",\n       \" 0.16496263444423676,\\n\",\n       \" 0.054227616637945175,\\n\",\n       \" 0.038841359317302704,\\n\",\n       \" 0.050011854618787766,\\n\",\n       \" 0.07934903353452682,\\n\",\n       \" 0.045532867312431335,\\n\",\n       \" 0.03091382049024105,\\n\",\n       \" 0.04723147675395012,\\n\",\n       \" 0.02147972211241722,\\n\",\n       \" 0.1578952819108963,\\n\",\n       \" 0.05623535439372063,\\n\",\n       \" 0.08519773930311203,\\n\",\n       \" 0.09720073640346527,\\n\",\n       \" 0.05237424001097679,\\n\",\n       \" 0.042325709015131,\\n\",\n       \" 0.027779225260019302,\\n\",\n       \" 0.02864629216492176,\\n\",\n       \" 0.02926797792315483,\\n\",\n       \" 0.048948630690574646,\\n\",\n       \" 0.053239062428474426,\\n\",\n       \" 0.1079203188419342,\\n\",\n       \" 0.029218783602118492,\\n\",\n       \" 0.07322125136852264,\\n\",\n       \" 0.10054854303598404,\\n\",\n       \" 0.0599575899541378,\\n\",\n       \" 0.09058400243520737,\\n\",\n       \" 0.08807015419006348,\\n\",\n       \" 0.12061145901679993,\\n\",\n       \" 0.04694662243127823,\\n\",\n       \" 0.08164673298597336,\\n\",\n       \" 0.06242657080292702,\\n\",\n       \" 0.039607975631952286,\\n\",\n       \" 0.07213323563337326,\\n\",\n       \" 0.08763103932142258,\\n\",\n       \" 0.36704784631729126,\\n\",\n       \" 0.19707000255584717,\\n\",\n       \" 0.050492268055677414,\\n\",\n       \" 0.07695997506380081,\\n\",\n       \" 0.03952956944704056,\\n\",\n       \" 0.017810743302106857,\\n\",\n       \" 0.06521592289209366,\\n\",\n       \" 0.02978295460343361,\\n\",\n       \" 0.055338699370622635,\\n\",\n       \" 0.06651680916547775,\\n\",\n       \" 0.43312087655067444,\\n\",\n       \" 0.0465678796172142,\\n\",\n       \" 0.11148732900619507,\\n\",\n       \" 0.10537445545196533,\\n\",\n       \" 0.12400811910629272,\\n\",\n       \" 0.03807182237505913,\\n\",\n       \" 0.036441538482904434,\\n\",\n       \" 0.05027085170149803,\\n\",\n       \" 0.06196950003504753,\\n\",\n       \" 0.04203026741743088,\\n\",\n       \" 0.1277773231267929,\\n\",\n       \" 0.03500267118215561,\\n\",\n       \" 0.05122890695929527,\\n\",\n       \" 0.0615219920873642,\\n\",\n       \" 0.06823304295539856,\\n\",\n       \" 0.10229797661304474,\\n\",\n       \" 0.05532129108905792,\\n\",\n       \" 0.16119715571403503,\\n\",\n       \" 0.04524514824151993,\\n\",\n       \" 0.04730745032429695,\\n\",\n       \" 0.037781454622745514,\\n\",\n       \" 0.0650399923324585,\\n\",\n       \" 0.07493326812982559,\\n\",\n       \" 0.024397533386945724,\\n\",\n       \" 0.06201842054724693,\\n\",\n       \" 0.05733151733875275,\\n\",\n       \" 0.02287258766591549,\\n\",\n       \" 0.029992271214723587,\\n\",\n       \" 0.0939626395702362,\\n\",\n       \" 0.032379694283008575,\\n\",\n       \" 0.06151549890637398,\\n\",\n       \" 0.23052428662776947,\\n\",\n       \" 0.06615308672189713,\\n\",\n       \" 0.04075095057487488,\\n\",\n       \" 0.06179390475153923,\\n\",\n       \" 0.04788685962557793,\\n\",\n       \" 0.1022413820028305,\\n\",\n       \" 0.056595299392938614,\\n\",\n       \" 0.10720273107290268,\\n\",\n       \" 0.14514988660812378,\\n\",\n       \" 0.057095155119895935,\\n\",\n       \" 0.18891212344169617,\\n\",\n       \" 0.06199021637439728,\\n\",\n       \" 0.17338153719902039,\\n\",\n       \" 0.27672380208969116,\\n\",\n       \" 0.07017537951469421,\\n\",\n       \" 0.037071358412504196,\\n\",\n       \" 0.08029317110776901,\\n\",\n       \" 0.046313583850860596,\\n\",\n       \" 0.03629003092646599,\\n\",\n       \" 0.13619562983512878,\\n\",\n       \" 0.07153468579053879,\\n\",\n       \" 0.028945429250597954,\\n\",\n       \" 0.05423334613442421,\\n\",\n       \" 0.09934449195861816,\\n\",\n       \" 0.061402883380651474,\\n\",\n       \" 0.04495488479733467,\\n\",\n       \" 0.020015913993120193,\\n\",\n       \" 0.08921083062887192,\\n\",\n       \" 0.03637588396668434,\\n\",\n       \" 0.16574226319789886,\\n\",\n       \" 0.03518042340874672,\\n\",\n       \" 0.1232433021068573,\\n\",\n       \" 0.05054579675197601,\\n\",\n       \" 0.05714532732963562,\\n\",\n       \" 0.12758584320545197,\\n\",\n       \" 0.05928238108754158,\\n\",\n       \" 0.09040574729442596,\\n\",\n       \" 0.045560263097286224,\\n\",\n       \" 0.06065494939684868,\\n\",\n       \" 0.0639016181230545,\\n\",\n       \" 0.06216944754123688,\\n\",\n       \" 0.051946718245744705,\\n\",\n       \" 0.07809852063655853,\\n\",\n       \" 0.08668864518404007,\\n\",\n       \" 0.059763938188552856,\\n\",\n       \" 0.11776655167341232,\\n\",\n       \" 0.02165316604077816,\\n\",\n       \" 0.04879682883620262,\\n\",\n       \" 0.1077425479888916,\\n\",\n       \" 0.04762463644146919,\\n\",\n       \" 0.03258078172802925,\\n\",\n       \" 0.2842461168766022,\\n\",\n       \" 0.15722881257534027,\\n\",\n       \" 0.08321468532085419,\\n\",\n       \" 0.08282601833343506,\\n\",\n       \" 0.11945679038763046,\\n\",\n       \" 0.05725580081343651,\\n\",\n       \" 0.09673463553190231,\\n\",\n       \" 0.09139511734247208,\\n\",\n       \" 0.06647444516420364,\\n\",\n       \" 0.021132294088602066,\\n\",\n       \" 0.02373507246375084,\\n\",\n       \" 0.03873834386467934,\\n\",\n       \" 0.03577394783496857,\\n\",\n       \" 0.10084836930036545,\\n\",\n       \" 0.09320175647735596,\\n\",\n       \" 0.03343222662806511,\\n\",\n       \" 0.09565657377243042,\\n\",\n       \" 0.055659353733062744,\\n\",\n       \" 0.13756383955478668,\\n\",\n       \" 0.04973261430859566,\\n\",\n       \" 0.07952773571014404,\\n\",\n       \" 0.0373360700905323,\\n\",\n       \" 0.06799793243408203,\\n\",\n       \" 0.18782731890678406,\\n\",\n       \" 0.12481880187988281,\\n\",\n       \" 0.08948549628257751,\\n\",\n       \" 0.07691624760627747,\\n\",\n       \" 0.2143297642469406,\\n\",\n       \" 0.24471847712993622,\\n\",\n       \" 0.13806290924549103,\\n\",\n       \" 0.08955729007720947,\\n\",\n       \" 0.04822927713394165,\\n\",\n       \" 0.05488996207714081,\\n\",\n       \" 0.05147157981991768,\\n\",\n       \" 0.11493594944477081,\\n\",\n       \" 0.27329903841018677,\\n\",\n       \" 0.038257185369729996,\\n\",\n       \" 0.1911698281764984,\\n\",\n       \" 0.0374474823474884,\\n\",\n       \" 0.42283785343170166,\\n\",\n       \" 0.18635936081409454,\\n\",\n       \" 0.07980402559041977,\\n\",\n       \" 0.04040278121829033,\\n\",\n       \" 0.17801012098789215,\\n\",\n       \" 0.021549591794610023,\\n\",\n       \" 0.047216035425662994,\\n\",\n       \" 0.036992285400629044,\\n\",\n       \" 0.02616749331355095,\\n\",\n       \" 0.20294639468193054,\\n\",\n       \" 0.05861371010541916,\\n\",\n       \" 0.042352236807346344,\\n\",\n       \" 0.04433530569076538,\\n\",\n       \" 0.07780134677886963,\\n\",\n       \" 0.1884113997220993,\\n\",\n       \" 0.039914168417453766,\\n\",\n       \" 0.0670749768614769,\\n\",\n       \" 0.043691087514162064,\\n\",\n       \" 0.05375536158680916,\\n\",\n       \" 0.11839774250984192,\\n\",\n       \" 0.13607870042324066,\\n\",\n       \" 0.13213743269443512,\\n\",\n       \" 0.06453520804643631,\\n\",\n       \" 0.07444753497838974,\\n\",\n       \" 0.04670301824808121,\\n\",\n       \" 0.07157900184392929,\\n\",\n       \" 0.338763952255249,\\n\",\n       \" 0.0301892701536417,\\n\",\n       \" 0.11264295130968094,\\n\",\n       \" 0.04852312058210373,\\n\",\n       \" 0.028430629521608353,\\n\",\n       \" 0.058528438210487366,\\n\",\n       \" 0.11265045404434204,\\n\",\n       \" 0.1392105519771576,\\n\",\n       \" 0.030259858816862106,\\n\",\n       \" 0.059427566826343536,\\n\",\n       \" 0.02608046866953373,\\n\",\n       \" 0.02269883267581463,\\n\",\n       \" 0.08451254665851593,\\n\",\n       \" 0.045840464532375336,\\n\",\n       \" 0.2491520643234253,\\n\",\n       \" 0.08189588785171509,\\n\",\n       \" 0.12396872788667679,\\n\",\n       \" 0.04240015894174576,\\n\",\n       \" 0.0513860359787941,\\n\",\n       \" 0.12833380699157715,\\n\",\n       \" 0.028289228677749634,\\n\",\n       \" 0.05517812818288803,\\n\",\n       \" 0.08532628417015076,\\n\",\n       \" 0.06375166028738022,\\n\",\n       \" 0.10383864492177963,\\n\",\n       \" 0.03583001345396042,\\n\",\n       \" 0.2652103304862976,\\n\",\n       \" 0.11617652326822281,\\n\",\n       \" 0.18399181962013245,\\n\",\n       \" 0.032059602439403534,\\n\",\n       \" 0.031177954748272896,\\n\",\n       \" 0.09739363938570023,\\n\",\n       \" 0.03539005666971207,\\n\",\n       \" 0.018924688920378685,\\n\",\n       \" 0.02270606905221939,\\n\",\n       \" 0.13008300960063934,\\n\",\n       \" 0.12139811366796494,\\n\",\n       \" 0.046806588768959045,\\n\",\n       \" 0.07612582296133041,\\n\",\n       \" 0.13960519433021545,\\n\",\n       \" 0.03722599148750305,\\n\",\n       \" 0.07501398772001266,\\n\",\n       \" 0.08636559545993805,\\n\",\n       \" 0.11962509900331497,\\n\",\n       \" 0.1232992559671402,\\n\",\n       \" 0.040459275245666504,\\n\",\n       \" 0.11167016625404358,\\n\",\n       \" 0.050891440361738205,\\n\",\n       \" 0.08285205811262131,\\n\",\n       \" 0.0449562706053257,\\n\",\n       \" 0.07763224840164185,\\n\",\n       \" 0.14657843112945557,\\n\",\n       \" 0.03163966163992882,\\n\",\n       \" 0.09385009855031967,\\n\",\n       \" 0.05724480748176575,\\n\",\n       \" 0.12611329555511475,\\n\",\n       \" 0.024767419323325157,\\n\",\n       \" 0.06178374961018562,\\n\",\n       \" 0.03997806832194328,\\n\",\n       \" 0.027165589854121208,\\n\",\n       \" 0.06513053923845291,\\n\",\n       \" 0.050190653651952744,\\n\",\n       \" 0.04496728628873825,\\n\",\n       \" 0.05325282737612724,\\n\",\n       \" 0.019831562414765358,\\n\",\n       \" 0.03136029466986656,\\n\",\n       \" 0.03060004860162735,\\n\",\n       \" 0.09297516196966171,\\n\",\n       \" 0.04592094197869301,\\n\",\n       \" 0.024548077955842018,\\n\",\n       \" 0.14033615589141846,\\n\",\n       \" 0.045503392815589905,\\n\",\n       \" 0.07301647216081619,\\n\",\n       \" 0.05543583258986473,\\n\",\n       \" 0.0221114419400692,\\n\",\n       \" 0.6265426874160767,\\n\",\n       \" 0.03140518441796303,\\n\",\n       \" 0.12650227546691895,\\n\",\n       \" 0.06702972948551178,\\n\",\n       \" 0.16972941160202026,\\n\",\n       \" 0.15718790888786316,\\n\",\n       \" 0.03349948301911354,\\n\",\n       \" 0.08135166019201279,\\n\",\n       \" 0.055221278220415115,\\n\",\n       \" 0.14982888102531433,\\n\",\n       \" 0.03489070013165474,\\n\",\n       \" 0.03052414022386074,\\n\",\n       \" 0.03753295913338661,\\n\",\n       \" 0.02294224500656128,\\n\",\n       \" 0.06025979667901993,\\n\",\n       \" 0.18139444291591644,\\n\",\n       \" 0.1279875636100769,\\n\",\n       \" 0.019069697707891464,\\n\",\n       \" 0.0267944373190403,\\n\",\n       \" 0.1770668476819992,\\n\",\n       \" 0.1793706715106964,\\n\",\n       \" 0.09214803576469421,\\n\",\n       \" 0.04147719964385033,\\n\",\n       \" 0.09642037749290466,\\n\",\n       \" 0.0588296540081501,\\n\",\n       \" 0.07551804184913635,\\n\",\n       \" 0.02806948311626911,\\n\",\n       \" 0.03908955305814743,\\n\",\n       \" 0.040883976966142654,\\n\",\n       \" 0.045370109379291534,\\n\",\n       \" 0.053778745234012604,\\n\",\n       \" 0.037208572030067444,\\n\",\n       \" 0.03763310983777046,\\n\",\n       \" 0.05172067880630493,\\n\",\n       \" 0.11758095771074295,\\n\",\n       \" 0.03661714494228363,\\n\",\n       \" 0.041850004345178604,\\n\",\n       \" 0.17033270001411438,\\n\",\n       \" 0.5737029910087585,\\n\",\n       \" 0.053698260337114334,\\n\",\n       \" 0.12936334311962128,\\n\",\n       \" 0.061049021780490875,\\n\",\n       \" 0.028339093551039696,\\n\",\n       \" 0.07561339437961578,\\n\",\n       \" 0.033847272396087646,\\n\",\n       \" 0.05946680158376694,\\n\",\n       \" 0.10608530044555664,\\n\",\n       \" 0.057932980358600616,\\n\",\n       \" 0.07907281816005707,\\n\",\n       \" 0.06371144205331802,\\n\",\n       \" 0.06025350093841553,\\n\",\n       \" 0.09854678809642792,\\n\",\n       \" 0.02916502021253109,\\n\",\n       \" 0.13957583904266357,\\n\",\n       \" 0.11364433169364929,\\n\",\n       \" 0.039870355278253555,\\n\",\n       \" 0.07696317881345749,\\n\",\n       \" 0.03643231838941574,\\n\",\n       \" 0.06038641929626465,\\n\",\n       \" 0.04953371360898018,\\n\",\n       \" 0.1655670553445816,\\n\",\n       \" 0.08648756891489029,\\n\",\n       \" 0.0566597543656826,\\n\",\n       \" 0.10527636855840683,\\n\",\n       \" 0.16847766935825348,\\n\",\n       \" 0.06840163469314575,\\n\",\n       \" 0.02945428527891636,\\n\",\n       \" 0.06192723289132118,\\n\",\n       \" 0.1478622704744339,\\n\",\n       \" 0.0722048208117485,\\n\",\n       \" 0.06298573315143585,\\n\",\n       \" 0.07516064494848251,\\n\",\n       \" 0.2604660093784332,\\n\",\n       \" 0.30824390053749084,\\n\",\n       \" 0.033967070281505585,\\n\",\n       \" 0.0966741070151329,\\n\",\n       \" 0.042531151324510574,\\n\",\n       \" 0.029532575979828835,\\n\",\n       \" 0.058474794030189514,\\n\",\n       \" 0.021080605685710907,\\n\",\n       \" 0.07856316864490509,\\n\",\n       \" 0.09532849490642548,\\n\",\n       \" 0.22755971550941467,\\n\",\n       \" 0.034103792160749435,\\n\",\n       \" 0.1438179612159729,\\n\",\n       \" 0.024848632514476776,\\n\",\n       \" 0.037472158670425415,\\n\",\n       \" 0.018815329298377037,\\n\",\n       \" 0.0568460114300251,\\n\",\n       \" 0.05384759604930878,\\n\",\n       \" 0.12004279345273972,\\n\",\n       \" 0.032671503722667694,\\n\",\n       \" 0.08404472470283508,\\n\",\n       \" 0.024228142574429512,\\n\",\n       \" 0.05024796351790428,\\n\",\n       \" 0.06648421287536621,\\n\",\n       \" 0.08278580009937286,\\n\",\n       \" 0.06827743351459503,\\n\",\n       \" 0.04952514171600342,\\n\",\n       \" 0.4017587900161743,\\n\",\n       \" 0.03897494450211525,\\n\",\n       \" 0.09109407663345337,\\n\",\n       \" 0.3763371706008911,\\n\",\n       \" 0.21625541150569916,\\n\",\n       \" 0.5029148459434509,\\n\",\n       \" 0.19662372767925262,\\n\",\n       \" 0.1347530633211136,\\n\",\n       \" 0.06841906905174255,\\n\",\n       \" 0.0971040353178978,\\n\",\n       \" 0.03509891405701637,\\n\",\n       \" 0.1628592312335968,\\n\",\n       \" 0.06142311915755272,\\n\",\n       \" 0.06586005538702011,\\n\",\n       \" 0.04480540007352829,\\n\",\n       \" 0.05868183821439743,\\n\",\n       \" 0.0419393815100193,\\n\",\n       \" 0.03379281610250473,\\n\",\n       \" 0.13919095695018768,\\n\",\n       \" 0.02525876834988594,\\n\",\n       \" 0.11987438052892685,\\n\",\n       \" 0.08026784658432007,\\n\",\n       \" 0.13593152165412903,\\n\",\n       \" 0.36814039945602417,\\n\",\n       \" 0.09495224058628082,\\n\",\n       \" 0.05721588805317879,\\n\",\n       \" 0.05046723783016205,\\n\",\n       \" 0.10939318686723709,\\n\",\n       \" 0.049867983907461166,\\n\",\n       \" 0.038386426866054535,\\n\",\n       \" 0.06744446605443954,\\n\",\n       \" 0.09973515570163727,\\n\",\n       \" 0.03663421422243118,\\n\",\n       \" 0.13550259172916412,\\n\",\n       \" 0.018425723537802696,\\n\",\n       \" 0.15455536544322968,\\n\",\n       \" 0.06755463778972626,\\n\",\n       \" 0.020557375624775887,\\n\",\n       \" 0.04286770150065422,\\n\",\n       \" 0.08751440793275833,\\n\",\n       \" 0.05411035194993019,\\n\",\n       \" 0.2547513544559479,\\n\",\n       \" 0.10548006743192673,\\n\",\n       \" 0.0553574338555336,\\n\",\n       \" 0.037535957992076874,\\n\",\n       \" 0.041605666279792786,\\n\",\n       \" 0.10682918131351471,\\n\",\n       \" 0.1383773684501648,\\n\",\n       \" 0.03680591285228729,\\n\",\n       \" 0.07151277363300323,\\n\",\n       \" 0.14258208870887756,\\n\",\n       \" 0.03216893970966339,\\n\",\n       \" 0.036895815283060074,\\n\",\n       \" 0.020616913214325905,\\n\",\n       \" 0.06479767709970474,\\n\",\n       \" 0.09668432921171188,\\n\",\n       \" 0.044976625591516495,\\n\",\n       \" 0.05411948263645172,\\n\",\n       \" 0.018028339371085167,\\n\",\n       \" 0.03899696469306946,\\n\",\n       \" 0.04694199562072754,\\n\",\n       \" 0.02461916022002697,\\n\",\n       \" 0.03189811110496521,\\n\",\n       \" 0.08907338976860046,\\n\",\n       \" 0.1375758796930313,\\n\",\n       \" 0.12521083652973175,\\n\",\n       \" 0.11718465387821198,\\n\",\n       \" 0.2725251019001007,\\n\",\n       \" 0.058143630623817444,\\n\",\n       \" 0.12151399254798889,\\n\",\n       \" 0.1284765899181366,\\n\",\n       \" 0.13175520300865173,\\n\",\n       \" 0.08789083361625671,\\n\",\n       \" 0.02928311377763748,\\n\",\n       \" 0.09605032950639725,\\n\",\n       \" 0.05553583800792694,\\n\",\n       \" 0.05359324440360069,\\n\",\n       \" 0.17190039157867432,\\n\",\n       \" 0.043378885835409164,\\n\",\n       \" 0.05734424665570259,\\n\",\n       \" 0.13160184025764465,\\n\",\n       \" 0.07879728078842163,\\n\",\n       \" 0.05319330096244812,\\n\",\n       \" 0.09009312093257904,\\n\",\n       \" 0.03154662996530533,\\n\",\n       \" 0.04068861901760101,\\n\",\n       \" 0.2433079034090042,\\n\",\n       \" 0.08300592750310898,\\n\",\n       \" 0.038297057151794434,\\n\",\n       \" 0.031096117570996284,\\n\",\n       \" 0.09350099414587021,\\n\",\n       \" 0.05104351416230202,\\n\",\n       \" 0.3151170611381531,\\n\",\n       \" 0.05532943457365036,\\n\",\n       \" 0.03205609321594238,\\n\",\n       \" 0.0830257311463356,\\n\",\n       \" 0.023052101954817772,\\n\",\n       \" 0.0322871059179306,\\n\",\n       \" 0.04687163233757019,\\n\",\n       \" 0.040724292397499084,\\n\",\n       \" 0.05738189443945885,\\n\",\n       \" 0.1914212554693222,\\n\",\n       \" 0.05997275188565254,\\n\",\n       \" 0.02160460688173771,\\n\",\n       \" 0.08172950893640518,\\n\",\n       \" 0.176561176776886,\\n\",\n       \" 0.10342389345169067,\\n\",\n       \" 0.03590356186032295,\\n\",\n       \" 0.028980424627661705,\\n\",\n       \" 0.08463802188634872,\\n\",\n       \" 0.03462473675608635,\\n\",\n       \" 0.09696123003959656,\\n\",\n       \" 0.0948820561170578,\\n\",\n       \" 0.030164236202836037,\\n\",\n       \" 0.08163236081600189,\\n\",\n       \" 0.09079662710428238,\\n\",\n       \" 0.08527382463216782,\\n\",\n       \" 0.03231038525700569,\\n\",\n       \" 0.1413751095533371,\\n\",\n       \" 0.05265148729085922,\\n\",\n       \" 0.04552474990487099,\\n\",\n       \" 0.04973987117409706,\\n\",\n       \" 0.14013969898223877,\\n\",\n       \" 0.031088031828403473,\\n\",\n       \" 0.19475050270557404,\\n\",\n       \" 0.16975688934326172,\\n\",\n       \" 0.16272719204425812,\\n\",\n       \" 0.04928617924451828,\\n\",\n       \" 0.051445577293634415,\\n\",\n       \" 0.06299855560064316,\\n\",\n       \" 0.07096774876117706,\\n\",\n       \" 0.0978393629193306,\\n\",\n       \" 0.02766236662864685,\\n\",\n       \" 0.12742745876312256,\\n\",\n       \" 0.020139947533607483,\\n\",\n       \" 0.1681257039308548,\\n\",\n       \" 0.06954234093427658,\\n\",\n       \" 0.04525081068277359,\\n\",\n       \" 0.6642180681228638,\\n\",\n       \" 0.37605851888656616,\\n\",\n       \" 0.08714096248149872,\\n\",\n       \" 0.05549418553709984,\\n\",\n       \" 0.08315110206604004,\\n\",\n       \" 0.036607809364795685,\\n\",\n       \" 0.13532887399196625,\\n\",\n       \" 0.05552152171730995,\\n\",\n       \" 0.15510864555835724,\\n\",\n       \" 0.03938803821802139,\\n\",\n       \" 0.17317302525043488,\\n\",\n       \" 0.04052438214421272,\\n\",\n       \" 0.04465610533952713,\\n\",\n       \" 0.2384616583585739,\\n\",\n       \" 0.05964722856879234,\\n\",\n       \" 0.21297132968902588,\\n\",\n       \" 0.0394112691283226,\\n\",\n       \" 0.03628295660018921,\\n\",\n       \" 0.05524817854166031,\\n\",\n       \" 0.06795297563076019,\\n\",\n       \" 0.027968518435955048,\\n\",\n       \" 0.09682062268257141,\\n\",\n       \" 0.0484076552093029,\\n\",\n       \" 0.12839503586292267,\\n\",\n       \" 0.019582655280828476,\\n\",\n       \" 0.09756653010845184,\\n\",\n       \" 0.08792352676391602,\\n\",\n       \" 0.046953123062849045,\\n\",\n       \" 0.08002877980470657,\\n\",\n       \" 0.03534771874547005,\\n\",\n       \" 0.03409164026379585,\\n\",\n       \" 0.06404507905244827,\\n\",\n       \" 0.15466471016407013,\\n\",\n       \" 0.05313846096396446,\\n\",\n       \" 0.06594367325305939,\\n\",\n       \" 0.09293480962514877,\\n\",\n       \" 0.02737482264637947,\\n\",\n       \" 0.04459265619516373,\\n\",\n       \" 0.02688700333237648,\\n\",\n       \" 0.03877761587500572,\\n\",\n       \" 0.030191695317626,\\n\",\n       \" 0.07304501533508301,\\n\",\n       \" 0.06893777847290039,\\n\",\n       \" 0.07463103532791138,\\n\",\n       \" 0.22722698748111725,\\n\",\n       \" 0.058241937309503555,\\n\",\n       \" 0.05778706818819046,\\n\",\n       \" ...]\"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"## 出现大于100次的单词在句子中的权重，句子需要是等长的吗？\\n\",\n    \"word_attention_li['the']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 35,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"word_mean_std_li = meam_std_list(word_attention_li)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"30个标准差最大的单词: \\n\",\n      \"awful | std：0.2445\\n\",\n      \"stupid | std：0.2341\\n\",\n      \"tedious | std：0.2339\\n\",\n      \"terrific | std：0.2335\\n\",\n      \"watchable | std：0.2332\\n\",\n      \"excellent | std：0.225\\n\",\n      \"painful | std：0.2246\\n\",\n      \"brilliant | std：0.2244\\n\",\n      \"impressive | std：0.2235\\n\",\n      \"appealing | std：0.2233\\n\",\n      \"inventive | std：0.2226\\n\",\n      \"waste | std：0.2218\\n\",\n      \"beautifully | std：0.2206\\n\",\n      \"flat | std：0.218\\n\",\n      \"bland | std：0.2173\\n\",\n      \"worthy | std：0.2161\\n\",\n      \"remarkable | std：0.2155\\n\",\n      \"provocative | std：0.2146\\n\",\n      \"intriguing | std：0.2144\\n\",\n      \"cool | std：0.2143\\n\",\n      \"fine | std：0.2141\\n\",\n      \"boring | std：0.2137\\n\",\n      \"unfunny | std：0.2135\\n\",\n      \"mess | std：0.2135\\n\",\n      \"hackneyed | std：0.2115\\n\",\n      \"engrossing | std：0.2104\\n\",\n      \"gorgeous | std：0.2103\\n\",\n      \"lacking | std：0.2083\\n\",\n      \"delightful | std：0.2069\\n\",\n      \"stylish | std：0.2067\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print('30个标准差最大的单词: ')\\n\",\n    \"for word, amean, astd in word_mean_std_li[:30]:\\n\",\n    \"    print('{} | std：{:.4}'.format(word, astd))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 37,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[{'inane': 0.4294554591178894,\\n\",\n       \"  'and': 0.1071346178650856,\\n\",\n       \"  'awful': 0.4634098410606384},\\n\",\n       \" {'a': 0.14175325632095337,\\n\",\n       \"  'thoroughly': 0.14105528593063354,\\n\",\n       \"  'awful': 0.580115556716919,\\n\",\n       \"  'movie': 0.13707591593265533},\\n\",\n       \" {'is': 0.13191638886928558,\\n\",\n       \"  'awful': 0.6552016139030457,\\n\",\n       \"  '.': 0.21288198232650757},\\n\",\n       \" {'this': 0.034046296030282974,\\n\",\n       \"  'wretchedly': 0.16158755123615265,\\n\",\n       \"  'unfunny': 0.1627073585987091,\\n\",\n       \"  'wannabe': 0.16242194175720215,\\n\",\n       \"  'comedy': 0.05273708328604698,\\n\",\n       \"  'is': 0.03338056057691574,\\n\",\n       \"  'inane': 0.1536465287208557,\\n\",\n       \"  'and': 0.03832961246371269,\\n\",\n       \"  'awful': 0.16579440236091614,\\n\",\n       \"  '-': 0.035348568111658096},\\n\",\n       \" {'if': 0.06239921972155571,\\n\",\n       \"  'oscar': 0.0761847272515297,\\n\",\n       \"  'had': 0.02653614804148674,\\n\",\n       \"  'a': 0.022323040291666985,\\n\",\n       \"  'category': 0.02682187594473362,\\n\",\n       \"  'called': 0.0599784180521965,\\n\",\n       \"  'best': 0.06136414036154747,\\n\",\n       \"  'bad': 0.09426537156105042,\\n\",\n       \"  'film': 0.028234658762812614,\\n\",\n       \"  'you': 0.03237655386328697,\\n\",\n       \"  'thought': 0.03296743333339691,\\n\",\n       \"  'was': 0.053605612367391586,\\n\",\n       \"  'going': 0.030031228438019753,\\n\",\n       \"  'to': 0.04958777129650116,\\n\",\n       \"  'be': 0.022541198879480362,\\n\",\n       \"  'really': 0.020105689764022827,\\n\",\n       \"  'awful': 0.09135551750659943,\\n\",\n       \"  'but': 0.05589110404253006,\\n\",\n       \"  \\\"n't\\\": 0.09982476383447647},\\n\",\n       \" {'the': 0.09079662710428238,\\n\",\n       \"  'master': 0.1595860719680786,\\n\",\n       \"  'of': 0.13098527491092682,\\n\",\n       \"  'disguise': 0.24217694997787476,\\n\",\n       \"  'is': 0.049660585820674896,\\n\",\n       \"  'awful': 0.2466539442539215,\\n\",\n       \"  '.': 0.08014049381017685},\\n\",\n       \" {'laughably': 0.13230930268764496,\\n\",\n       \"  ',': 0.2168578803539276,\\n\",\n       \"  'irredeemably': 0.2219807654619217,\\n\",\n       \"  'awful': 0.3236837685108185,\\n\",\n       \"  '.': 0.10516829788684845},\\n\",\n       \" {'thoroughly': 0.19559204578399658, 'awful': 0.8044079542160034},\\n\",\n       \" {'a': 0.019940337166190147,\\n\",\n       \"  'thoroughly': 0.019842153415083885,\\n\",\n       \"  'awful': 0.0816044807434082,\\n\",\n       \"  'movie': 0.019282380118966103,\\n\",\n       \"  '--': 0.017907172441482544,\\n\",\n       \"  'dumb': 0.08333073556423187,\\n\",\n       \"  ',': 0.054672423750162125,\\n\",\n       \"  'narratively': 0.021039120852947235,\\n\",\n       \"  'chaotic': 0.07769117504358292,\\n\",\n       \"  'visually': 0.021352296695113182,\\n\",\n       \"  'sloppy': 0.0803229808807373,\\n\",\n       \"  '...': 0.0183599554002285,\\n\",\n       \"  'weird': 0.06036731228232384,\\n\",\n       \"  'amalgam': 0.07513318955898285,\\n\",\n       \"  'of': 0.043335966765880585,\\n\",\n       \"  '`': 0.04615305736660957,\\n\",\n       \"  'the': 0.030039703473448753,\\n\",\n       \"  'thing': 0.06902974098920822,\\n\",\n       \"  \\\"'\\\": 0.021290428936481476,\\n\",\n       \"  'and': 0.01886594481766224,\\n\",\n       \"  'geriatric': 0.025886304676532745},\\n\",\n       \" {'leaves': 0.065589539706707,\\n\",\n       \"  'an': 0.08327170461416245,\\n\",\n       \"  'awful': 0.35922572016716003,\\n\",\n       \"  'sour': 0.35161733627319336,\\n\",\n       \"  'taste': 0.14029574394226074},\\n\",\n       \" {'explores': 0.20533469319343567,\\n\",\n       \"  'the': 0.09154585748910904,\\n\",\n       \"  'awful': 0.24868926405906677,\\n\",\n       \"  'complications': 0.12292340397834778,\\n\",\n       \"  'of': 0.13206613063812256,\\n\",\n       \"  'one': 0.054083701223134995,\\n\",\n       \"  'terrifying': 0.05196862667798996,\\n\",\n       \"  'day': 0.09338836371898651},\\n\",\n       \" {'most': 0.13492874801158905,\\n\",\n       \"  'awful': 0.7256471514701843,\\n\",\n       \"  'acts': 0.139424130320549},\\n\",\n       \" {'awful': 0.6692163348197937, 'complications': 0.3307836949825287},\\n\",\n       \" {'an': 0.08911683410406113,\\n\",\n       \"  'awful': 0.38444098830223083,\\n\",\n       \"  'sour': 0.37629854679107666,\\n\",\n       \"  'taste': 0.1501435935497284},\\n\",\n       \" {'after': 0.09156420081853867,\\n\",\n       \"  'the': 0.13955366611480713,\\n\",\n       \"  'most': 0.07049179822206497,\\n\",\n       \"  'awful': 0.3791050612926483,\\n\",\n       \"  'acts': 0.07284035533666611,\\n\",\n       \"  'are': 0.07767992466688156,\\n\",\n       \"  'committed': 0.16876499354839325},\\n\",\n       \" {\\\"'s\\\": 0.1126924604177475,\\n\",\n       \"  'pauly': 0.2691709101200104,\\n\",\n       \"  'shore': 0.28010356426239014,\\n\",\n       \"  'awful': 0.3380330502986908},\\n\",\n       \" {'awful': 0.8088712692260742, 'movie': 0.19112874567508698},\\n\",\n       \" {'so': 0.06524837017059326,\\n\",\n       \"  'insanely': 0.05868121609091759,\\n\",\n       \"  'stupid': 0.21289615333080292,\\n\",\n       \"  ',': 0.14679308235645294,\\n\",\n       \"  'awful': 0.21910451352596283,\\n\",\n       \"  'in': 0.051732514053583145,\\n\",\n       \"  'many': 0.05644390359520912,\\n\",\n       \"  'ways': 0.05860355496406555},\\n\",\n       \" {\\\"'s\\\": 0.032297469675540924,\\n\",\n       \"  'truly': 0.022847717627882957,\\n\",\n       \"  'awful': 0.09687971323728561,\\n\",\n       \"  'and': 0.022397389635443687,\\n\",\n       \"  'heartbreaking': 0.07621611654758453,\\n\",\n       \"  'subject': 0.06262871623039246,\\n\",\n       \"  'matter': 0.02416684292256832,\\n\",\n       \"  ',': 0.06490634381771088,\\n\",\n       \"  'but': 0.059270795434713364,\\n\",\n       \"  'one': 0.021068915724754333,\\n\",\n       \"  'whose': 0.024620911106467247,\\n\",\n       \"  'lessons': 0.06716205924749374,\\n\",\n       \"  'are': 0.01985098421573639,\\n\",\n       \"  'well': 0.04671965539455414,\\n\",\n       \"  'worth': 0.05730024725198746,\\n\",\n       \"  'revisiting': 0.07806351035833359,\\n\",\n       \"  'as': 0.06219511479139328,\\n\",\n       \"  'many': 0.024957355111837387,\\n\",\n       \"  'times': 0.019390465691685677,\\n\",\n       \"  'possible': 0.023387199267745018,\\n\",\n       \"  '.': 0.031477250158786774},\\n\",\n       \" {'merely': 0.11045300215482712,\\n\",\n       \"  'bad': 0.23517031967639923,\\n\",\n       \"  'rather': 0.1533563882112503,\\n\",\n       \"  'than': 0.057572513818740845,\\n\",\n       \"  'painfully': 0.21553681790828705,\\n\",\n       \"  'awful': 0.22791090607643127},\\n\",\n       \" {'bad': 0.20714429020881653,\\n\",\n       \"  'film': 0.06204450502991676,\\n\",\n       \"  'you': 0.0711461529135704,\\n\",\n       \"  'thought': 0.07244458049535751,\\n\",\n       \"  'was': 0.1177961453795433,\\n\",\n       \"  'going': 0.06599240005016327,\\n\",\n       \"  'to': 0.10896710306406021,\\n\",\n       \"  'be': 0.049533359706401825,\\n\",\n       \"  'really': 0.04418142884969711,\\n\",\n       \"  'awful': 0.20075000822544098},\\n\",\n       \" {'mind-numbingly': 0.08115215599536896,\\n\",\n       \"  'awful': 0.09863696992397308,\\n\",\n       \"  'that': 0.032588474452495575,\\n\",\n       \"  'you': 0.03495711088180542,\\n\",\n       \"  'hope': 0.0504283607006073,\\n\",\n       \"  'britney': 0.09704826027154922,\\n\",\n       \"  'wo': 0.09770813584327698,\\n\",\n       \"  \\\"n't\\\": 0.10778125375509262,\\n\",\n       \"  'do': 0.07122764736413956,\\n\",\n       \"  'it': 0.04121299833059311,\\n\",\n       \"  'one': 0.02145107463002205,\\n\",\n       \"  'more': 0.021068723872303963,\\n\",\n       \"  'time': 0.025203166529536247,\\n\",\n       \"  ',': 0.06608365476131439,\\n\",\n       \"  'as': 0.0633232444524765,\\n\",\n       \"  'far': 0.02680554986000061},\\n\",\n       \" {'the': 0.15361973643302917,\\n\",\n       \"  'most': 0.07759689539670944,\\n\",\n       \"  'awful': 0.4173163175582886,\\n\",\n       \"  'acts': 0.08018217235803604,\\n\",\n       \"  'are': 0.0855095386505127,\\n\",\n       \"  'committed': 0.18577536940574646},\\n\",\n       \" {'as': 0.11850421130657196,\\n\",\n       \"  'awful': 0.18459093570709229,\\n\",\n       \"  'some': 0.04163077473640442,\\n\",\n       \"  'of': 0.09802678972482681,\\n\",\n       \"  'the': 0.06795040518045425,\\n\",\n       \"  'recent': 0.10908572375774384,\\n\",\n       \"  'hollywood': 0.045708801597356796,\\n\",\n       \"  'trip': 0.03681496903300285,\\n\",\n       \"  'tripe': 0.17918314039707184},\\n\",\n       \" {',': 0.08382131904363632,\\n\",\n       \"  'it': 0.05227508395910263,\\n\",\n       \"  'eventually': 0.028522614389657974,\\n\",\n       \"  'works': 0.09486135095357895,\\n\",\n       \"  'its': 0.026132509112358093,\\n\",\n       \"  'way': 0.029977288097143173,\\n\",\n       \"  'up': 0.026895593851804733,\\n\",\n       \"  'to': 0.06791098415851593,\\n\",\n       \"  'merely': 0.060633499175310135,\\n\",\n       \"  'bad': 0.12909743189811707,\\n\",\n       \"  'rather': 0.08418543636798859,\\n\",\n       \"  'than': 0.031604599207639694,\\n\",\n       \"  'painfully': 0.1183195635676384,\\n\",\n       \"  'awful': 0.1251123547554016,\\n\",\n       \"  '.': 0.04065033048391342},\\n\",\n       \" {'awful': 0.4220530390739441,\\n\",\n       \"  'sour': 0.41311395168304443,\\n\",\n       \"  'taste': 0.1648329794406891},\\n\",\n       \" {\\\"'s\\\": 0.033347148448228836,\\n\",\n       \"  'truly': 0.023590276017785072,\\n\",\n       \"  'awful': 0.10002832859754562,\\n\",\n       \"  'and': 0.023125311359763145,\\n\",\n       \"  'heartbreaking': 0.07869316637516022,\\n\",\n       \"  'subject': 0.06466417014598846,\\n\",\n       \"  'matter': 0.024952273815870285,\\n\",\n       \"  ',': 0.06701581925153732,\\n\",\n       \"  'but': 0.06119711324572563,\\n\",\n       \"  'one': 0.021753663197159767,\\n\",\n       \"  'whose': 0.02542109787464142,\\n\",\n       \"  'lessons': 0.06934484839439392,\\n\",\n       \"  'are': 0.020496148616075516,\\n\",\n       \"  'well': 0.048238057643175125,\\n\",\n       \"  'worth': 0.05916252359747887,\\n\",\n       \"  'revisiting': 0.08060060441493988,\\n\",\n       \"  'as': 0.06421647220849991,\\n\",\n       \"  'many': 0.025768477469682693,\\n\",\n       \"  'times': 0.020020661875605583,\\n\",\n       \"  'possible': 0.024147290736436844},\\n\",\n       \" {'completely': 0.049199871718883514,\\n\",\n       \"  'awful': 0.1276017129421234,\\n\",\n       \"  'iranian': 0.03834697976708412,\\n\",\n       \"  'drama': 0.030272113159298897,\\n\",\n       \"  '...': 0.02870873734354973,\\n\",\n       \"  'as': 0.08191811293363571,\\n\",\n       \"  'much': 0.02512318640947342,\\n\",\n       \"  'fun': 0.10083401948213577,\\n\",\n       \"  'a': 0.031179923564195633,\\n\",\n       \"  'grouchy': 0.09717969596385956,\\n\",\n       \"  'ayatollah': 0.023847129195928574,\\n\",\n       \"  'in': 0.03012789599597454,\\n\",\n       \"  'cold': 0.12421756237745285,\\n\",\n       \"  'mosque': 0.09834505617618561},\\n\",\n       \" {'is': 0.02889944054186344,\\n\",\n       \"  'so': 0.042744871228933334,\\n\",\n       \"  'insanely': 0.038442663848400116,\\n\",\n       \"  'stupid': 0.1394704282283783,\\n\",\n       \"  ',': 0.09616564959287643,\\n\",\n       \"  'awful': 0.14353759586811066,\\n\",\n       \"  'in': 0.0338904969394207,\\n\",\n       \"  'many': 0.036976974457502365,\\n\",\n       \"  'ways': 0.03839178755879402,\\n\",\n       \"  'that': 0.047423105686903,\\n\",\n       \"  'watching': 0.03678854554891586,\\n\",\n       \"  'it': 0.05997360497713089,\\n\",\n       \"  'leaves': 0.02620793879032135,\\n\",\n       \"  'you': 0.05086996778845787,\\n\",\n       \"  'giddy': 0.09472718089818954},\\n\",\n       \" {'it': 0.09412791579961777,\\n\",\n       \"  'explores': 0.18600699305534363,\\n\",\n       \"  'the': 0.0829288437962532,\\n\",\n       \"  'awful': 0.22528067231178284,\\n\",\n       \"  'complications': 0.11135289072990417,\\n\",\n       \"  'of': 0.11963502317667007,\\n\",\n       \"  'one': 0.04899291694164276,\\n\",\n       \"  'terrifying': 0.047076933085918427,\\n\",\n       \"  'day': 0.08459792286157608},\\n\",\n       \" {'what': 0.01864301599562168,\\n\",\n       \"  'one': 0.016994623467326164,\\n\",\n       \"  'is': 0.015733523294329643,\\n\",\n       \"  'left': 0.060892459005117416,\\n\",\n       \"  'with': 0.023125046864151955,\\n\",\n       \"  ',': 0.05235479772090912,\\n\",\n       \"  'even': 0.022429782897233963,\\n\",\n       \"  'after': 0.018874188885092735,\\n\",\n       \"  'the': 0.028766289353370667,\\n\",\n       \"  'most': 0.014530520886182785,\\n\",\n       \"  'awful': 0.07814517617225647,\\n\",\n       \"  'acts': 0.015014630742371082,\\n\",\n       \"  'are': 0.01601221412420273,\\n\",\n       \"  'committed': 0.03478763997554779,\\n\",\n       \"  'an': 0.018114745616912842,\\n\",\n       \"  'overwhelming': 0.020814383402466774,\\n\",\n       \"  'sadness': 0.02933056280016899,\\n\",\n       \"  'that': 0.02581823244690895,\\n\",\n       \"  'feels': 0.07203766703605652,\\n\",\n       \"  'as': 0.05016786605119705,\\n\",\n       \"  'if': 0.05337607115507126,\\n\",\n       \"  'it': 0.032651014626026154,\\n\",\n       \"  'has': 0.02361379750072956,\\n\",\n       \"  'made': 0.016102956607937813,\\n\",\n       \"  'its': 0.016322365030646324,\\n\",\n       \"  'way': 0.01872381381690502,\\n\",\n       \"  'into': 0.021546926349401474,\\n\",\n       \"  'your': 0.014629960991442204,\\n\",\n       \"  'very': 0.01732904091477394,\\n\",\n       \"  'bloodstream': 0.05963826924562454,\\n\",\n       \"  '.': 0.025390200316905975},\\n\",\n       \" {'awful': 0.4288741946220398,\\n\",\n       \"  'snooze': 0.43178004026412964,\\n\",\n       \"  '.': 0.13934578001499176},\\n\",\n       \" {'mind-numbingly': 0.07909561693668365,\\n\",\n       \"  'awful': 0.09613732993602753,\\n\",\n       \"  'that': 0.03176262229681015,\\n\",\n       \"  'you': 0.03407123684883118,\\n\",\n       \"  'hope': 0.049150414764881134,\\n\",\n       \"  'britney': 0.09458888322114944,\\n\",\n       \"  'wo': 0.0952320396900177,\\n\",\n       \"  \\\"n't\\\": 0.10504988580942154,\\n\",\n       \"  'do': 0.06942261755466461,\\n\",\n       \"  'it': 0.04016858711838722,\\n\",\n       \"  'one': 0.020907465368509293,\\n\",\n       \"  'more': 0.020534805953502655,\\n\",\n       \"  'time': 0.02456447295844555,\\n\",\n       \"  ',': 0.06440897285938263,\\n\",\n       \"  'as': 0.061718519777059555,\\n\",\n       \"  'far': 0.026126248762011528,\\n\",\n       \"  'movies': 0.02534175105392933},\\n\",\n       \" {'thoroughly': 0.15506432950496674,\\n\",\n       \"  'awful': 0.6377303004264832,\\n\",\n       \"  '.': 0.20720535516738892},\\n\",\n       \" {'you': 0.09735230356454849,\\n\",\n       \"  'thought': 0.09912901371717453,\\n\",\n       \"  'was': 0.16118547320365906,\\n\",\n       \"  'going': 0.09030020236968994,\\n\",\n       \"  'to': 0.14910432696342468,\\n\",\n       \"  'be': 0.06777860969305038,\\n\",\n       \"  'really': 0.060455333441495895,\\n\",\n       \"  'awful': 0.2746948003768921},\\n\",\n       \" {',': 0.060552988201379776,\\n\",\n       \"  'even': 0.025942042469978333,\\n\",\n       \"  'after': 0.02182968147099018,\\n\",\n       \"  'the': 0.03327077627182007,\\n\",\n       \"  'most': 0.01680584065616131,\\n\",\n       \"  'awful': 0.09038186073303223,\\n\",\n       \"  'acts': 0.01736575737595558,\\n\",\n       \"  'are': 0.018519552424550056,\\n\",\n       \"  'committed': 0.0402350015938282,\\n\",\n       \"  'is': 0.01819721981883049,\\n\",\n       \"  'an': 0.020951317623257637,\\n\",\n       \"  'overwhelming': 0.024073688313364983,\\n\",\n       \"  'sadness': 0.03392340987920761,\\n\",\n       \"  'that': 0.02986108511686325,\\n\",\n       \"  'feels': 0.08331798017024994,\\n\",\n       \"  'as': 0.0580236054956913,\\n\",\n       \"  'if': 0.06173418089747429,\\n\",\n       \"  'it': 0.0377638079226017,\\n\",\n       \"  'has': 0.02731146104633808,\\n\",\n       \"  'made': 0.018624503165483475,\\n\",\n       \"  'its': 0.01887826807796955,\\n\",\n       \"  'way': 0.02165575884282589,\\n\",\n       \"  'into': 0.024920940399169922,\\n\",\n       \"  'your': 0.016920853406190872,\\n\",\n       \"  'very': 0.020042579621076584,\\n\",\n       \"  'bloodstream': 0.0689769759774208,\\n\",\n       \"  '.': 0.02936602756381035},\\n\",\n       \" {'a': 0.01755085587501526,\\n\",\n       \"  'thoroughly': 0.01746443659067154,\\n\",\n       \"  'awful': 0.07182569056749344,\\n\",\n       \"  'movie': 0.01697174273431301,\\n\",\n       \"  '--': 0.015761328861117363,\\n\",\n       \"  'dumb': 0.07334508001804352,\\n\",\n       \"  ',': 0.04812094196677208,\\n\",\n       \"  'narratively': 0.01851796917617321,\\n\",\n       \"  'chaotic': 0.06838131695985794,\\n\",\n       \"  'visually': 0.018793616443872452,\\n\",\n       \"  'sloppy': 0.07069775462150574,\\n\",\n       \"  '...': 0.01615985296666622,\\n\",\n       \"  'weird': 0.05313340201973915,\\n\",\n       \"  'amalgam': 0.06612985581159592,\\n\",\n       \"  'of': 0.03814294934272766,\\n\",\n       \"  '`': 0.04062246158719063,\\n\",\n       \"  'the': 0.026439998298883438,\\n\",\n       \"  'thing': 0.060757800936698914,\\n\",\n       \"  \\\"'\\\": 0.018739163875579834,\\n\",\n       \"  'and': 0.016605209559202194,\\n\",\n       \"  'geriatric': 0.022784307599067688,\\n\",\n       \"  'scream': 0.03713303059339523,\\n\",\n       \"  '.': 0.023336926475167274},\\n\",\n       \" {'comes': 0.03924285247921944,\\n\",\n       \"  'along': 0.024345073848962784,\\n\",\n       \"  'that': 0.040589697659015656,\\n\",\n       \"  'is': 0.024735191836953163,\\n\",\n       \"  'so': 0.036585573107004166,\\n\",\n       \"  'insanely': 0.032903287559747696,\\n\",\n       \"  'stupid': 0.11937351524829865,\\n\",\n       \"  ',': 0.08230870962142944,\\n\",\n       \"  'awful': 0.12285462021827698,\\n\",\n       \"  'in': 0.029007064178586006,\\n\",\n       \"  'many': 0.031648799777030945,\\n\",\n       \"  'ways': 0.032859742641448975,\\n\",\n       \"  'watching': 0.03148752078413963,\\n\",\n       \"  'it': 0.051331743597984314,\\n\",\n       \"  'leaves': 0.022431518882513046,\\n\",\n       \"  'you': 0.04353988915681839,\\n\",\n       \"  'giddy': 0.08107752352952957,\\n\",\n       \"  '.': 0.03991677239537239},\\n\",\n       \" {'that': 0.0452759750187397,\\n\",\n       \"  'is': 0.02759099006652832,\\n\",\n       \"  'so': 0.04080955684185028,\\n\",\n       \"  'insanely': 0.03670213371515274,\\n\",\n       \"  'stupid': 0.13315577805042267,\\n\",\n       \"  ',': 0.0918116569519043,\\n\",\n       \"  'awful': 0.13703878223896027,\\n\",\n       \"  'in': 0.03235607221722603,\\n\",\n       \"  'many': 0.03530280664563179,\\n\",\n       \"  'ways': 0.036653559654951096,\\n\",\n       \"  'watching': 0.035122908651828766,\\n\",\n       \"  'it': 0.057258240878582,\\n\",\n       \"  'leaves': 0.025021348148584366,\\n\",\n       \"  'you': 0.0485667809844017,\\n\",\n       \"  'giddy': 0.09043832123279572},\\n\",\n       \" {'the': 0.21080905199050903,\\n\",\n       \"  'most': 0.1064845472574234,\\n\",\n       \"  'awful': 0.5726741552352905,\\n\",\n       \"  'acts': 0.11003226786851883},\\n\",\n       \" {'irredeemably': 0.34107184410095215,\\n\",\n       \"  'awful': 0.4973377585411072,\\n\",\n       \"  '.': 0.1615903377532959},\\n\",\n       \" {'to': 0.1100907251238823,\\n\",\n       \"  'merely': 0.09829316288232803,\\n\",\n       \"  'bad': 0.20928026735782623,\\n\",\n       \"  'rather': 0.13647329807281494,\\n\",\n       \"  'than': 0.051234323531389236,\\n\",\n       \"  'painfully': 0.19180823862552643,\\n\",\n       \"  'awful': 0.2028200477361679},\\n\",\n       \" {'every': 0.024657193571329117,\\n\",\n       \"  'so': 0.03111940436065197,\\n\",\n       \"  'often': 0.035799600183963776,\\n\",\n       \"  'a': 0.02553473971784115,\\n\",\n       \"  'film': 0.032296888530254364,\\n\",\n       \"  'comes': 0.03337966278195381,\\n\",\n       \"  'along': 0.020707732066512108,\\n\",\n       \"  'that': 0.03452528268098831,\\n\",\n       \"  'is': 0.021039562299847603,\\n\",\n       \"  'insanely': 0.02798728086054325,\\n\",\n       \"  'stupid': 0.10153818875551224,\\n\",\n       \"  ',': 0.07001115381717682,\\n\",\n       \"  'awful': 0.10449919104576111,\\n\",\n       \"  'in': 0.024673184379935265,\\n\",\n       \"  'many': 0.026920221745967865,\\n\",\n       \"  'ways': 0.027950242161750793,\\n\",\n       \"  'watching': 0.026783039793372154,\\n\",\n       \"  'it': 0.043662380427122116,\\n\",\n       \"  'leaves': 0.01908007636666298,\\n\",\n       \"  'you': 0.037034690380096436,\\n\",\n       \"  'giddy': 0.0689639076590538,\\n\",\n       \"  '.': 0.033952899277210236},\\n\",\n       \" {'of': 0.054488372057676315,\\n\",\n       \"  'advocacy': 0.05052750185132027,\\n\",\n       \"  'cinema': 0.03530295938253403,\\n\",\n       \"  'that': 0.03389953449368477,\\n\",\n       \"  'carries': 0.05737563967704773,\\n\",\n       \"  'you': 0.03636346012353897,\\n\",\n       \"  'along': 0.020332418382167816,\\n\",\n       \"  'in': 0.024225998669862747,\\n\",\n       \"  'a': 0.025071939453482628,\\n\",\n       \"  'torrent': 0.05437120422720909,\\n\",\n       \"  'emotion': 0.03222670778632164,\\n\",\n       \"  'as': 0.06587078422307968,\\n\",\n       \"  'it': 0.04287102818489075,\\n\",\n       \"  'explores': 0.08471781015396118,\\n\",\n       \"  'the': 0.037770356982946396,\\n\",\n       \"  'awful': 0.10260520875453949,\\n\",\n       \"  'complications': 0.050716228783130646,\\n\",\n       \"  'one': 0.02231406979262829,\\n\",\n       \"  'terrifying': 0.021441424265503883,\\n\",\n       \"  'day': 0.03853054717183113},\\n\",\n       \" {'irredeemably': 0.40680813789367676, 'awful': 0.5931918621063232},\\n\",\n       \" {'that': 0.03943268209695816,\\n\",\n       \"  'carries': 0.06674060225486755,\\n\",\n       \"  'you': 0.04229877516627312,\\n\",\n       \"  'along': 0.023651113733649254,\\n\",\n       \"  'in': 0.028180213645100594,\\n\",\n       \"  'a': 0.029164230450987816,\\n\",\n       \"  'torrent': 0.06324578076601028,\\n\",\n       \"  'of': 0.06338206678628922,\\n\",\n       \"  'emotion': 0.037486810237169266,\\n\",\n       \"  'as': 0.07662234455347061,\\n\",\n       \"  'it': 0.049868520349264145,\\n\",\n       \"  'explores': 0.0985456183552742,\\n\",\n       \"  'the': 0.04393530637025833,\\n\",\n       \"  'awful': 0.11935263127088547,\\n\",\n       \"  'complications': 0.05899422988295555,\\n\",\n       \"  'one': 0.02595621533691883,\\n\",\n       \"  'terrifying': 0.024941135197877884,\\n\",\n       \"  'day': 0.04481957480311394},\\n\",\n       \" {'be': 0.16821488738059998,\\n\",\n       \"  'really': 0.15003976225852966,\\n\",\n       \"  'awful': 0.6817453503608704},\\n\",\n       \" {'this': 0.01767290197312832,\\n\",\n       \"  'wretchedly': 0.08387758582830429,\\n\",\n       \"  'unfunny': 0.0844588503241539,\\n\",\n       \"  'wannabe': 0.08431070297956467,\\n\",\n       \"  'comedy': 0.02737499587237835,\\n\",\n       \"  'is': 0.017327329143881798,\\n\",\n       \"  'inane': 0.0797555148601532,\\n\",\n       \"  'and': 0.019896306097507477,\\n\",\n       \"  'awful': 0.08606129139661789,\\n\",\n       \"  '-': 0.018348893150687218,\\n\",\n       \"  'no': 0.08899621665477753,\\n\",\n       \"  'doubt': 0.01768343150615692,\\n\",\n       \"  ',': 0.05765834450721741,\\n\",\n       \"  'it': 0.03595856577157974,\\n\",\n       \"  \\\"'s\\\": 0.02869085967540741,\\n\",\n       \"  'the': 0.03168031573295593,\\n\",\n       \"  'worst': 0.08597561717033386,\\n\",\n       \"  'movie': 0.0203354824334383,\\n\",\n       \"  'i': 0.01874994859099388,\\n\",\n       \"  \\\"'ve\\\": 0.030085841193795204,\\n\",\n       \"  'seen': 0.0184037946164608,\\n\",\n       \"  'summer': 0.029024161398410797},\\n\",\n       \" {'an': 0.1288910061120987,\\n\",\n       \"  'awful': 0.5560227036476135,\\n\",\n       \"  'movie': 0.1313829869031906,\\n\",\n       \"  'that': 0.1837032586336136},\\n\",\n       \" {'awful': 0.20940649509429932,\\n\",\n       \"  'as': 0.13443537056446075,\\n\",\n       \"  'some': 0.04722742736339569,\\n\",\n       \"  'of': 0.11120506376028061,\\n\",\n       \"  'the': 0.07708533853292465,\\n\",\n       \"  'recent': 0.123750701546669,\\n\",\n       \"  'hollywood': 0.05185368284583092,\\n\",\n       \"  'trip': 0.04176420345902443,\\n\",\n       \"  'tripe': 0.20327170193195343},\\n\",\n       \" {'going': 0.14058153331279755,\\n\",\n       \"  'to': 0.23212923109531403,\\n\",\n       \"  'be': 0.1055193841457367,\\n\",\n       \"  'really': 0.09411832690238953,\\n\",\n       \"  'awful': 0.4276514947414398},\\n\",\n       \" {'it': 0.057057738304138184,\\n\",\n       \"  'eventually': 0.031132152304053307,\\n\",\n       \"  'works': 0.10354022681713104,\\n\",\n       \"  'its': 0.02852337621152401,\\n\",\n       \"  'way': 0.03271991387009621,\\n\",\n       \"  'up': 0.029356274753808975,\\n\",\n       \"  'to': 0.07412417232990265,\\n\",\n       \"  'merely': 0.06618086248636246,\\n\",\n       \"  'bad': 0.14090856909751892,\\n\",\n       \"  'rather': 0.09188757836818695,\\n\",\n       \"  'than': 0.034496109932661057,\\n\",\n       \"  'painfully': 0.12914463877677917,\\n\",\n       \"  'awful': 0.1365589052438736,\\n\",\n       \"  '.': 0.04436943680047989},\\n\",\n       \" {'called': 0.10405448824167252,\\n\",\n       \"  'best': 0.10645852982997894,\\n\",\n       \"  'bad': 0.16353774070739746,\\n\",\n       \"  'film': 0.04898333176970482,\\n\",\n       \"  'you': 0.05616896599531174,\\n\",\n       \"  'thought': 0.0571940615773201,\\n\",\n       \"  'was': 0.09299853444099426,\\n\",\n       \"  'going': 0.05210014432668686,\\n\",\n       \"  'to': 0.08602811396121979,\\n\",\n       \"  'be': 0.03910594806075096,\\n\",\n       \"  'really': 0.03488066792488098,\\n\",\n       \"  'awful': 0.15848952531814575},\\n\",\n       \" {'a': 0.019911793991923332,\\n\",\n       \"  'compelling': 0.05103621631860733,\\n\",\n       \"  ',': 0.05459415540099144,\\n\",\n       \"  'gut-clutching': 0.058459702879190445,\\n\",\n       \"  'piece': 0.021811790764331818,\\n\",\n       \"  'of': 0.0432739220559597,\\n\",\n       \"  'advocacy': 0.040128253400325775,\\n\",\n       \"  'cinema': 0.02803712897002697,\\n\",\n       \"  'that': 0.026922550052404404,\\n\",\n       \"  'carries': 0.04556695371866226,\\n\",\n       \"  'you': 0.02887936681509018,\\n\",\n       \"  'along': 0.016147729009389877,\\n\",\n       \"  'in': 0.019239958375692368,\\n\",\n       \"  'torrent': 0.04318087175488472,\\n\",\n       \"  'emotion': 0.025594012811779976,\\n\",\n       \"  'as': 0.052313681691884995,\\n\",\n       \"  'it': 0.03404758870601654,\\n\",\n       \"  'explores': 0.06728173792362213,\\n\",\n       \"  'the': 0.029996702447533607,\\n\",\n       \"  'awful': 0.08148766309022903,\\n\",\n       \"  'complications': 0.04027814045548439,\\n\",\n       \"  'one': 0.01772153005003929,\\n\",\n       \"  'terrifying': 0.017028488218784332,\\n\",\n       \"  'day': 0.03060043603181839},\\n\",\n       \" {'pauly': 0.30335694551467896,\\n\",\n       \"  'shore': 0.31567811965942383,\\n\",\n       \"  'awful': 0.3809649348258972},\\n\",\n       \" {'is': 0.16759416460990906, 'awful': 0.8324058055877686},\\n\",\n       \" {'called': 0.09485683590173721,\\n\",\n       \"  'best': 0.09704837203025818,\\n\",\n       \"  'bad': 0.14908219873905182,\\n\",\n       \"  'film': 0.04465356469154358,\\n\",\n       \"  'you': 0.05120404437184334,\\n\",\n       \"  'thought': 0.05213852599263191,\\n\",\n       \"  'was': 0.08477814495563507,\\n\",\n       \"  'going': 0.04749487340450287,\\n\",\n       \"  'to': 0.0784238651394844,\\n\",\n       \"  'be': 0.035649266093969345,\\n\",\n       \"  'really': 0.03179747238755226,\\n\",\n       \"  'awful': 0.14448021352291107,\\n\",\n       \"  'but': 0.08839268237352371},\\n\",\n       \" {',': 0.24992533028125763,\\n\",\n       \"  'irredeemably': 0.255829393863678,\\n\",\n       \"  'awful': 0.37304049730300903,\\n\",\n       \"  '.': 0.12120483070611954},\\n\",\n       \" {'is': 0.08533930033445358,\\n\",\n       \"  'inane': 0.3928060829639435,\\n\",\n       \"  'and': 0.09799183160066605,\\n\",\n       \"  'awful': 0.4238628149032593},\\n\",\n       \" {'the': 0.08053579181432724,\\n\",\n       \"  'sweetest': 0.05428140237927437,\\n\",\n       \"  'thing': 0.18506722152233124,\\n\",\n       \"  'leaves': 0.03994610533118248,\\n\",\n       \"  'an': 0.05071510374546051,\\n\",\n       \"  'awful': 0.2187798172235489,\\n\",\n       \"  'sour': 0.21414606273174286,\\n\",\n       \"  'taste': 0.08544454723596573,\\n\",\n       \"  '.': 0.07108388841152191},\\n\",\n       \" {'this': 0.035293884575366974,\\n\",\n       \"  'wretchedly': 0.16750875115394592,\\n\",\n       \"  'unfunny': 0.16866959631443024,\\n\",\n       \"  'wannabe': 0.1683737188577652,\\n\",\n       \"  'comedy': 0.0546695739030838,\\n\",\n       \"  'is': 0.03460375592112541,\\n\",\n       \"  'inane': 0.15927672386169434,\\n\",\n       \"  'and': 0.03973415866494179,\\n\",\n       \"  'awful': 0.17186975479125977},\\n\",\n       \" {'eventually': 0.03464622050523758,\\n\",\n       \"  'works': 0.11522741615772247,\\n\",\n       \"  'its': 0.03174297511577606,\\n\",\n       \"  'way': 0.036413200199604034,\\n\",\n       \"  'up': 0.03266988694667816,\\n\",\n       \"  'to': 0.08249099552631378,\\n\",\n       \"  'merely': 0.07365108281373978,\\n\",\n       \"  'bad': 0.15681374073028564,\\n\",\n       \"  'rather': 0.10225945711135864,\\n\",\n       \"  'than': 0.03838988393545151,\\n\",\n       \"  'painfully': 0.14372193813323975,\\n\",\n       \"  'awful': 0.15197309851646423},\\n\",\n       \" {'an': 0.1578972339630127,\\n\",\n       \"  'awful': 0.6811527013778687,\\n\",\n       \"  'movie': 0.16095004975795746},\\n\",\n       \" {'mind-numbingly': 0.07395108044147491,\\n\",\n       \"  'awful': 0.08988437056541443,\\n\",\n       \"  'that': 0.029696719720959663,\\n\",\n       \"  'you': 0.031855177134275436,\\n\",\n       \"  'hope': 0.045953575521707535,\\n\",\n       \"  'britney': 0.08843664079904556,\\n\",\n       \"  'wo': 0.0890379548072815,\\n\",\n       \"  \\\"n't\\\": 0.09821723401546478,\\n\",\n       \"  'do': 0.06490723043680191,\\n\",\n       \"  'it': 0.03755594417452812,\\n\",\n       \"  'one': 0.0195476021617651,\\n\",\n       \"  'more': 0.019199181348085403,\\n\",\n       \"  'time': 0.02296675182878971,\\n\",\n       \"  ',': 0.06021968647837639,\\n\",\n       \"  'as': 0.057704225182533264,\\n\",\n       \"  'far': 0.02442694641649723,\\n\",\n       \"  'movies': 0.023693474009633064,\\n\",\n       \"  'are': 0.018417613580822945,\\n\",\n       \"  'concerned': 0.01741994358599186,\\n\",\n       \"  '.': 0.029204385355114937},\\n\",\n       \" {'was': 0.2005995213985443,\\n\",\n       \"  'going': 0.11238095164299011,\\n\",\n       \"  'to': 0.18556423485279083,\\n\",\n       \"  'be': 0.08435225486755371,\\n\",\n       \"  'really': 0.07523823529481888,\\n\",\n       \"  'awful': 0.34186482429504395},\\n\",\n       \" {'this': 0.017192170023918152,\\n\",\n       \"  'wretchedly': 0.08159597963094711,\\n\",\n       \"  'unfunny': 0.08216143399477005,\\n\",\n       \"  'wannabe': 0.08201731741428375,\\n\",\n       \"  'comedy': 0.026630351319909096,\\n\",\n       \"  'is': 0.0168559979647398,\\n\",\n       \"  'inane': 0.07758603990077972,\\n\",\n       \"  'and': 0.01935509406030178,\\n\",\n       \"  'awful': 0.08372028917074203,\\n\",\n       \"  '-': 0.017849775031208992,\\n\",\n       \"  'no': 0.08657537400722504,\\n\",\n       \"  'doubt': 0.017202414572238922,\\n\",\n       \"  ',': 0.05608994513750076,\\n\",\n       \"  'it': 0.03498043492436409,\\n\",\n       \"  \\\"'s\\\": 0.027910422533750534,\\n\",\n       \"  'the': 0.03081856109201908,\\n\",\n       \"  'worst': 0.08363693952560425,\\n\",\n       \"  'movie': 0.019782325252890587,\\n\",\n       \"  'i': 0.01823991909623146,\\n\",\n       \"  \\\"'ve\\\": 0.029267458245158195,\\n\",\n       \"  'seen': 0.01790318265557289,\\n\",\n       \"  'summer': 0.028234656900167465,\\n\",\n       \"  '.': 0.027201607823371887},\\n\",\n       \" {'an': 0.03571278601884842,\\n\",\n       \"  'awful': 0.15406134724617004,\\n\",\n       \"  'movie': 0.036403264850378036,\\n\",\n       \"  'that': 0.05090002715587616,\\n\",\n       \"  'will': 0.07559400051832199,\\n\",\n       \"  'only': 0.15750566124916077,\\n\",\n       \"  'satisfy': 0.04559914395213127,\\n\",\n       \"  'the': 0.056712038815021515,\\n\",\n       \"  'most': 0.028646567836403847,\\n\",\n       \"  'emotionally': 0.02979300171136856,\\n\",\n       \"  'malleable': 0.1515154391527176,\\n\",\n       \"  'of': 0.08181409537792206,\\n\",\n       \"  'filmgoers': 0.04568655416369438,\\n\",\n       \"  '.': 0.050056155771017075},\\n\",\n       \" {'is': 0.042250048369169235,\\n\",\n       \"  'so': 0.06249161809682846,\\n\",\n       \"  'insanely': 0.05620192736387253,\\n\",\n       \"  'stupid': 0.2039012610912323,\\n\",\n       \"  ',': 0.1405910700559616,\\n\",\n       \"  'awful': 0.2098473161458969,\\n\",\n       \"  'in': 0.04954681172966957,\\n\",\n       \"  'many': 0.054059140384197235,\\n\",\n       \"  'ways': 0.056127551943063736},\\n\",\n       \" {\\\"'s\\\": 0.04838254675269127,\\n\",\n       \"  'not': 0.16540004312992096,\\n\",\n       \"  'as': 0.09317008405923843,\\n\",\n       \"  'awful': 0.14512860774993896,\\n\",\n       \"  'some': 0.032730840146541595,\\n\",\n       \"  'of': 0.07707036286592484,\\n\",\n       \"  'the': 0.05342378839850426,\\n\",\n       \"  'recent': 0.08576508611440659,\\n\",\n       \"  'hollywood': 0.03593705594539642,\\n\",\n       \"  'trip': 0.02894457057118416,\\n\",\n       \"  'tripe': 0.1408768892288208},\\n\",\n       \" {'as': 0.1263524293899536,\\n\",\n       \"  'it': 0.08223462104797363,\\n\",\n       \"  'explores': 0.16250453889369965,\\n\",\n       \"  'the': 0.07245057821273804,\\n\",\n       \"  'awful': 0.19681590795516968,\\n\",\n       \"  'complications': 0.09728317707777023,\\n\",\n       \"  'of': 0.1045188456773758,\\n\",\n       \"  'one': 0.04280254244804382,\\n\",\n       \"  'terrifying': 0.041128646582365036,\\n\",\n       \"  'day': 0.07390876114368439},\\n\",\n       \" {'a': 0.12574584782123566,\\n\",\n       \"  'thoroughly': 0.1251266896724701,\\n\",\n       \"  'awful': 0.5146062970161438,\\n\",\n       \"  'movie': 0.12159668654203415,\\n\",\n       \"  '--': 0.1129244789481163},\\n\",\n       \" {'an': 0.09042688459157944,\\n\",\n       \"  'awful': 0.3900924324989319,\\n\",\n       \"  'snooze': 0.3927355408668518,\\n\",\n       \"  '.': 0.12674517929553986},\\n\",\n       \" {'so': 0.229462668299675, 'awful': 0.7705373167991638},\\n\",\n       \" {'completely': 0.27827730774879456, 'awful': 0.7217226624488831},\\n\",\n       \" {'completely': 0.1794768124818802,\\n\",\n       \"  'awful': 0.46547985076904297,\\n\",\n       \"  'iranian': 0.13988640904426575,\\n\",\n       \"  'drama': 0.11043000221252441,\\n\",\n       \"  '...': 0.10472694784402847},\\n\",\n       \" {'thoroughly': 0.16435283422470093,\\n\",\n       \"  'awful': 0.6759309768676758,\\n\",\n       \"  'movie': 0.1597161889076233},\\n\",\n       \" {'even': 0.027614161372184753,\\n\",\n       \"  'after': 0.023236732929944992,\\n\",\n       \"  'the': 0.035415273159742355,\\n\",\n       \"  'most': 0.017889076843857765,\\n\",\n       \"  'awful': 0.09620750695466995,\\n\",\n       \"  'acts': 0.018485084176063538,\\n\",\n       \"  'are': 0.019713247194886208,\\n\",\n       \"  'committed': 0.04282838851213455,\\n\",\n       \"  ',': 0.06445598602294922,\\n\",\n       \"  'is': 0.01937013864517212,\\n\",\n       \"  'an': 0.022301753982901573,\\n\",\n       \"  'overwhelming': 0.025625379756093025,\\n\",\n       \"  'sadness': 0.03610997274518013,\\n\",\n       \"  'that': 0.03178580850362778,\\n\",\n       \"  'feels': 0.08868832141160965,\\n\",\n       \"  'as': 0.061763569712638855,\\n\",\n       \"  'if': 0.0657133162021637,\\n\",\n       \"  'it': 0.040197908878326416,\\n\",\n       \"  'has': 0.02907184511423111,\\n\",\n       \"  'made': 0.019824963063001633,\\n\",\n       \"  'its': 0.020095085725188255,\\n\",\n       \"  'way': 0.02305159904062748,\\n\",\n       \"  'into': 0.026527242735028267,\\n\",\n       \"  'your': 0.01801150292158127,\\n\",\n       \"  'very': 0.021334441378712654,\\n\",\n       \"  'bloodstream': 0.07342294603586197,\\n\",\n       \"  '.': 0.03125884383916855},\\n\",\n       \" {'to': 0.27010035514831543,\\n\",\n       \"  'be': 0.122779980301857,\\n\",\n       \"  'really': 0.10951396077871323,\\n\",\n       \"  'awful': 0.49760565161705017},\\n\",\n       \" {'completely': 0.04724128916859627,\\n\",\n       \"  'awful': 0.12252205610275269,\\n\",\n       \"  'iranian': 0.0368204340338707,\\n\",\n       \"  'drama': 0.029067019000649452,\\n\",\n       \"  '...': 0.027565879747271538,\\n\",\n       \"  'as': 0.07865706086158752,\\n\",\n       \"  'much': 0.024123065173625946,\\n\",\n       \"  'fun': 0.09681994467973709,\\n\",\n       \"  'a': 0.02993869036436081,\\n\",\n       \"  'grouchy': 0.09331109374761581,\\n\",\n       \"  'ayatollah': 0.022897804155945778,\\n\",\n       \"  'in': 0.028928542509675026,\\n\",\n       \"  'cold': 0.1192726194858551,\\n\",\n       \"  'mosque': 0.09443005919456482,\\n\",\n       \"  '.': 0.0398087203502655},\\n\",\n       \" {'advocacy': 0.05343932285904884,\\n\",\n       \"  'cinema': 0.03733741119503975,\\n\",\n       \"  'that': 0.03585311025381088,\\n\",\n       \"  'carries': 0.060682110488414764,\\n\",\n       \"  'you': 0.03845903277397156,\\n\",\n       \"  'along': 0.021504143252968788,\\n\",\n       \"  'in': 0.025622105225920677,\\n\",\n       \"  'a': 0.02651679702103138,\\n\",\n       \"  'torrent': 0.05750453472137451,\\n\",\n       \"  'of': 0.05762845277786255,\\n\",\n       \"  'emotion': 0.034083880484104156,\\n\",\n       \"  'as': 0.06966681778430939,\\n\",\n       \"  'it': 0.045341622084379196,\\n\",\n       \"  'explores': 0.08959996700286865,\\n\",\n       \"  'the': 0.03994700312614441,\\n\",\n       \"  'awful': 0.10851819068193436,\\n\",\n       \"  'complications': 0.05363892763853073,\\n\",\n       \"  'one': 0.02359999530017376,\\n\",\n       \"  'terrifying': 0.022677060216665268,\\n\",\n       \"  'day': 0.040751002728939056},\\n\",\n       \" {'it': 0.11289438605308533,\\n\",\n       \"  \\\"'s\\\": 0.09007691591978073,\\n\",\n       \"  'pauly': 0.21515269577503204,\\n\",\n       \"  'shore': 0.22389134764671326,\\n\",\n       \"  'awful': 0.270195335149765,\\n\",\n       \"  '.': 0.08778934180736542},\\n\",\n       \" {'eventually': 0.03301596641540527,\\n\",\n       \"  'works': 0.10980547964572906,\\n\",\n       \"  'its': 0.03024933487176895,\\n\",\n       \"  'way': 0.034699805080890656,\\n\",\n       \"  'up': 0.031132632866501808,\\n\",\n       \"  'to': 0.07860944420099258,\\n\",\n       \"  'merely': 0.07018548995256424,\\n\",\n       \"  'bad': 0.14943499863147736,\\n\",\n       \"  'rather': 0.0974477231502533,\\n\",\n       \"  'than': 0.03658347949385643,\\n\",\n       \"  'painfully': 0.13695921003818512,\\n\",\n       \"  'awful': 0.1448221206665039,\\n\",\n       \"  '.': 0.047054242342710495},\\n\",\n       \" {'really': 0.1803828477859497, 'awful': 0.8196171522140503},\\n\",\n       \" {'so': 0.02606937475502491,\\n\",\n       \"  'mind-numbingly': 0.07202322781085968,\\n\",\n       \"  'awful': 0.08754114806652069,\\n\",\n       \"  'that': 0.02892254665493965,\\n\",\n       \"  'you': 0.031024733558297157,\\n\",\n       \"  'hope': 0.04475559666752815,\\n\",\n       \"  'britney': 0.08613115549087524,\\n\",\n       \"  'wo': 0.08671680092811584,\\n\",\n       \"  \\\"n't\\\": 0.09565677493810654,\\n\",\n       \"  'do': 0.06321514397859573,\\n\",\n       \"  'it': 0.03657688573002815,\\n\",\n       \"  'one': 0.019038010388612747,\\n\",\n       \"  'more': 0.018698671832680702,\\n\",\n       \"  'time': 0.02236802503466606,\\n\",\n       \"  ',': 0.058649804443120956,\\n\",\n       \"  'as': 0.05619991570711136,\\n\",\n       \"  'far': 0.023790152743458748,\\n\",\n       \"  'movies': 0.023075800389051437,\\n\",\n       \"  'are': 0.01793747954070568,\\n\",\n       \"  'concerned': 0.016965817660093307,\\n\",\n       \"  '.': 0.028443047776818275},\\n\",\n       \" {'an': 0.012256614863872528,\\n\",\n       \"  'awful': 0.05287380516529083,\\n\",\n       \"  'lot': 0.014167326502501965,\\n\",\n       \"  'like': 0.016992343589663506,\\n\",\n       \"  'one': 0.01149873249232769,\\n\",\n       \"  'of': 0.02807857096195221,\\n\",\n       \"  '-lrb-': 0.010325021110475063,\\n\",\n       \"  'spears': 0.0493493527173996,\\n\",\n       \"  \\\"'\\\": 0.01379465777426958,\\n\",\n       \"  '-rrb-': 0.010896394960582256,\\n\",\n       \"  'music': 0.01663294993340969,\\n\",\n       \"  'videos': 0.01268409937620163,\\n\",\n       \"  'in': 0.012483972124755383,\\n\",\n       \"  'content': 0.01668781228363514,\\n\",\n       \"  '--': 0.011602552607655525,\\n\",\n       \"  'except': 0.05367470160126686,\\n\",\n       \"  'that': 0.017468871548771858,\\n\",\n       \"  'it': 0.022092001512646675,\\n\",\n       \"  'goes': 0.010555661283433437,\\n\",\n       \"  'on': 0.01727188564836979,\\n\",\n       \"  'for': 0.014979766681790352,\\n\",\n       \"  'at': 0.01128324680030346,\\n\",\n       \"  'least': 0.01294358167797327,\\n\",\n       \"  '90': 0.044871747493743896,\\n\",\n       \"  'more': 0.011293776333332062,\\n\",\n       \"  'minutes': 0.06276290863752365,\\n\",\n       \"  'and': 0.012223768047988415,\\n\",\n       \"  ',': 0.035423774272203445,\\n\",\n       \"  'worse': 0.049986835569143295,\\n\",\n       \"  'you': 0.01873856596648693,\\n\",\n       \"  'have': 0.011632970534265041,\\n\",\n       \"  'to': 0.028699900954961777,\\n\",\n       \"  'pay': 0.052366018295288086,\\n\",\n       \"  'if': 0.036114782094955444,\\n\",\n       \"  'want': 0.010469161905348301,\\n\",\n       \"  'see': 0.035219598561525345,\\n\",\n       \"  '.': 0.017179260030388832},\\n\",\n       \" {'works': 0.11936289072036743,\\n\",\n       \"  'its': 0.032882221043109894,\\n\",\n       \"  'way': 0.03772005811333656,\\n\",\n       \"  'up': 0.03384239971637726,\\n\",\n       \"  'to': 0.08545156568288803,\\n\",\n       \"  'merely': 0.07629439234733582,\\n\",\n       \"  'bad': 0.16244173049926758,\\n\",\n       \"  'rather': 0.10592951625585556,\\n\",\n       \"  'than': 0.039767686277627945,\\n\",\n       \"  'painfully': 0.14888006448745728,\\n\",\n       \"  'awful': 0.1574273556470871},\\n\",\n       \" {'so': 0.08496195077896118,\\n\",\n       \"  'insanely': 0.07641065120697021,\\n\",\n       \"  'stupid': 0.277218759059906,\\n\",\n       \"  ',': 0.19114388525485992,\\n\",\n       \"  'awful': 0.2853028476238251},\\n\",\n       \" {'painfully': 0.4860478639602661, 'awful': 0.5139521360397339},\\n\",\n       \" {'thoroughly': 0.19559204578399658, 'awful': 0.8044079542160034},\\n\",\n       \" {'the': 0.1976555585861206,\\n\",\n       \"  'awful': 0.5369420051574707,\\n\",\n       \"  'complications': 0.2654024660587311},\\n\",\n       \" {'it': 0.04119160398840904,\\n\",\n       \"  \\\"'s\\\": 0.032866232097148895,\\n\",\n       \"  'not': 0.11235613375902176,\\n\",\n       \"  'as': 0.06329037249088287,\\n\",\n       \"  'awful': 0.09858576208353043,\\n\",\n       \"  'some': 0.022234037518501282,\\n\",\n       \"  'of': 0.05235384777188301,\\n\",\n       \"  'the': 0.036290742456912994,\\n\",\n       \"  'recent': 0.05826016142964363,\\n\",\n       \"  'hollywood': 0.024412015452980995,\\n\",\n       \"  'trip': 0.019662026315927505,\\n\",\n       \"  'tripe': 0.09569757431745529,\\n\",\n       \"  '...': 0.022180521860718727,\\n\",\n       \"  'but': 0.06031455099582672,\\n\",\n       \"  'far': 0.026791632175445557,\\n\",\n       \"  'from': 0.023752855136990547,\\n\",\n       \"  'a': 0.024089770391583443,\\n\",\n       \"  'groundbreaking': 0.022507349029183388,\\n\",\n       \"  'endeavor': 0.025814786553382874},\\n\",\n       \" {'a': 0.026738017797470093,\\n\",\n       \"  'category': 0.032126620411872864,\\n\",\n       \"  'called': 0.07184075564146042,\\n\",\n       \"  'best': 0.07350054383277893,\\n\",\n       \"  'bad': 0.11290886998176575,\\n\",\n       \"  'film': 0.033818818628787994,\\n\",\n       \"  'you': 0.038779884576797485,\\n\",\n       \"  'thought': 0.039487626403570175,\\n\",\n       \"  'was': 0.06420756131410599,\\n\",\n       \"  'going': 0.03597070649266243,\\n\",\n       \"  'to': 0.05939508229494095,\\n\",\n       \"  'be': 0.026999324560165405,\\n\",\n       \"  'really': 0.024082129821181297,\\n\",\n       \"  'awful': 0.10942351818084717,\\n\",\n       \"  'but': 0.06694506853818893,\\n\",\n       \"  \\\"n't\\\": 0.11956778913736343},\\n\",\n       \" {'truly': 0.1607581228017807,\\n\",\n       \"  'awful': 0.6816523671150208,\\n\",\n       \"  'and': 0.15758958458900452},\\n\",\n       \" {'mind-numbingly': 0.4513740837574005, 'awful': 0.5486258864402771},\\n\",\n       \" {'it': 0.0399131253361702,\\n\",\n       \"  \\\"'s\\\": 0.03184615075588226,\\n\",\n       \"  'not': 0.10886889696121216,\\n\",\n       \"  'as': 0.061326008290052414,\\n\",\n       \"  'awful': 0.09552591294050217,\\n\",\n       \"  'some': 0.021543949842453003,\\n\",\n       \"  'of': 0.050728920847177505,\\n\",\n       \"  'the': 0.03516437113285065,\\n\",\n       \"  'recent': 0.05645192041993141,\\n\",\n       \"  'hollywood': 0.023654330521821976,\\n\",\n       \"  'trip': 0.019051769748330116,\\n\",\n       \"  'tripe': 0.09272737056016922,\\n\",\n       \"  '...': 0.021492095664143562,\\n\",\n       \"  'but': 0.05844254419207573,\\n\",\n       \"  'far': 0.02596009150147438,\\n\",\n       \"  'from': 0.02301562950015068,\\n\",\n       \"  'a': 0.023342087864875793,\\n\",\n       \"  'groundbreaking': 0.02180878072977066,\\n\",\n       \"  'endeavor': 0.02501356229186058,\\n\",\n       \"  '.': 0.031037384644150734},\\n\",\n       \" {\\\"'s\\\": 0.10154023766517639,\\n\",\n       \"  'pauly': 0.242533341050148,\\n\",\n       \"  'shore': 0.25238409638404846,\\n\",\n       \"  'awful': 0.30458077788352966,\\n\",\n       \"  '.': 0.09896153956651688},\\n\",\n       \" {'thought': 0.10982026159763336,\\n\",\n       \"  'was': 0.17856962978839874,\\n\",\n       \"  'going': 0.10003925114870071,\\n\",\n       \"  'to': 0.16518551111221313,\\n\",\n       \"  'be': 0.07508866488933563,\\n\",\n       \"  'really': 0.06697555631399155,\\n\",\n       \"  'awful': 0.30432114005088806},\\n\",\n       \" {'comes': 0.0408744290471077,\\n\",\n       \"  'along': 0.025357255712151527,\\n\",\n       \"  'that': 0.042277272790670395,\\n\",\n       \"  'is': 0.02576359175145626,\\n\",\n       \"  'so': 0.03810666874051094,\\n\",\n       \"  'insanely': 0.03427128866314888,\\n\",\n       \"  'stupid': 0.12433664500713348,\\n\",\n       \"  ',': 0.08573081344366074,\\n\",\n       \"  'awful': 0.12796248495578766,\\n\",\n       \"  'in': 0.030213074758648872,\\n\",\n       \"  'many': 0.032964643090963364,\\n\",\n       \"  'ways': 0.034225933253765106,\\n\",\n       \"  'watching': 0.03279665857553482,\\n\",\n       \"  'it': 0.05346593260765076,\\n\",\n       \"  'leaves': 0.023364141583442688,\\n\",\n       \"  'you': 0.045350123196840286,\\n\",\n       \"  'giddy': 0.0844484344124794},\\n\",\n       \" {'although': 0.019331051036715508,\\n\",\n       \"  'it': 0.029590152204036713,\\n\",\n       \"  'starts': 0.032078590244054794,\\n\",\n       \"  'off': 0.04576343297958374,\\n\",\n       \"  'so': 0.02108973264694214,\\n\",\n       \"  'bad': 0.07307521253824234,\\n\",\n       \"  'that': 0.023397907614707947,\\n\",\n       \"  'you': 0.025098543614149094,\\n\",\n       \"  'feel': 0.014395937323570251,\\n\",\n       \"  'like': 0.022759640589356422,\\n\",\n       \"  'running': 0.040691301226615906,\\n\",\n       \"  'out': 0.018779227510094643,\\n\",\n       \"  'screaming': 0.06790227442979813,\\n\",\n       \"  ',': 0.047446805983781815,\\n\",\n       \"  'eventually': 0.016145139932632446,\\n\",\n       \"  'works': 0.053695980459451675,\\n\",\n       \"  'its': 0.014792228117585182,\\n\",\n       \"  'way': 0.016968553885817528,\\n\",\n       \"  'up': 0.015224169939756393,\\n\",\n       \"  'to': 0.03844080865383148,\\n\",\n       \"  'merely': 0.03432140871882439,\\n\",\n       \"  'rather': 0.04765291139483452,\\n\",\n       \"  'than': 0.017889687791466713,\\n\",\n       \"  'painfully': 0.06697443127632141,\\n\",\n       \"  'awful': 0.07081946730613708,\\n\",\n       \"  '.': 0.023009996861219406},\\n\",\n       \" {'it': 0.03890398517251015,\\n\",\n       \"  \\\"'s\\\": 0.031040968373417854,\\n\",\n       \"  'truly': 0.02195884846150875,\\n\",\n       \"  'awful': 0.09311069548130035,\\n\",\n       \"  'and': 0.021526040509343147,\\n\",\n       \"  'heartbreaking': 0.07325100153684616,\\n\",\n       \"  'subject': 0.060192208737134933,\\n\",\n       \"  'matter': 0.023226654157042503,\\n\",\n       \"  ',': 0.06238122284412384,\\n\",\n       \"  'but': 0.056964922696352005,\\n\",\n       \"  'one': 0.020249249413609505,\\n\",\n       \"  'whose': 0.023663057014346123,\\n\",\n       \"  'lessons': 0.06454918533563614,\\n\",\n       \"  'are': 0.019078701734542847,\\n\",\n       \"  'well': 0.044902071356773376,\\n\",\n       \"  'worth': 0.055071037262678146,\\n\",\n       \"  'revisiting': 0.07502652704715729,\\n\",\n       \"  'as': 0.059775471687316895,\\n\",\n       \"  'many': 0.023986412212252617,\\n\",\n       \"  'times': 0.018636098131537437,\\n\",\n       \"  'possible': 0.022477341815829277,\\n\",\n       \"  '.': 0.03025265596807003},\\n\",\n       \" {'completely': 0.20047158002853394,\\n\",\n       \"  'awful': 0.5199306011199951,\\n\",\n       \"  'iranian': 0.1562499850988388,\\n\",\n       \"  'drama': 0.12334784865379333},\\n\",\n       \" {'if': 0.03654563054442406,\\n\",\n       \"  'oscar': 0.044619448482990265,\\n\",\n       \"  'had': 0.015541545115411282,\\n\",\n       \"  'a': 0.013074034824967384,\\n\",\n       \"  'category': 0.015708889812231064,\\n\",\n       \"  'called': 0.035127829760313034,\\n\",\n       \"  'best': 0.03593941405415535,\\n\",\n       \"  'bad': 0.05520882457494736,\\n\",\n       \"  'film': 0.016536319628357887,\\n\",\n       \"  'you': 0.01896212063729763,\\n\",\n       \"  'thought': 0.01930818520486355,\\n\",\n       \"  'was': 0.03139543905854225,\\n\",\n       \"  'going': 0.017588524147868156,\\n\",\n       \"  'to': 0.02904229424893856,\\n\",\n       \"  'be': 0.013201804831624031,\\n\",\n       \"  'really': 0.01177539024502039,\\n\",\n       \"  'awful': 0.05350459739565849,\\n\",\n       \"  'but': 0.03273399546742439,\\n\",\n       \"  \\\"n't\\\": 0.05846481770277023,\\n\",\n       \"  ',': 0.03584638983011246,\\n\",\n       \"  'guys': 0.016738202422857285,\\n\",\n       \"  'would': 0.03610474243760109,\\n\",\n       \"  'probably': 0.028177771717309952,\\n\",\n       \"  'duking': 0.014753163792192936,\\n\",\n       \"  'it': 0.022355562075972557,\\n\",\n       \"  'out': 0.014187832362949848,\\n\",\n       \"  'with': 0.015833303332328796,\\n\",\n       \"  'the': 0.019695760682225227,\\n\",\n       \"  'queen': 0.04930589348077774,\\n\",\n       \"  'of': 0.028413550928235054,\\n\",\n       \"  'damned': 0.010090086609125137,\\n\",\n       \"  'for': 0.015158477239310741,\\n\",\n       \"  'honor': 0.03768705949187279,\\n\",\n       \"  '.': 0.017384212464094162},\\n\",\n       \" {'truly': 0.19083110988140106, 'awful': 0.8091689348220825},\\n\",\n       \" {'awful': 0.8388293385505676, 'acts': 0.16117069125175476},\\n\",\n       \" {'a': 0.019398203119635582,\\n\",\n       \"  'compelling': 0.04971982538700104,\\n\",\n       \"  ',': 0.053185995668172836,\\n\",\n       \"  'gut-clutching': 0.05695183575153351,\\n\",\n       \"  'piece': 0.0212491936981678,\\n\",\n       \"  'of': 0.042157746851444244,\\n\",\n       \"  'advocacy': 0.03909321501851082,\\n\",\n       \"  'cinema': 0.02731396071612835,\\n\",\n       \"  'that': 0.026228129863739014,\\n\",\n       \"  'carries': 0.044391632080078125,\\n\",\n       \"  'you': 0.028134474530816078,\\n\",\n       \"  'along': 0.01573122665286064,\\n\",\n       \"  'in': 0.018743697553873062,\\n\",\n       \"  'torrent': 0.04206709563732147,\\n\",\n       \"  'emotion': 0.024933859705924988,\\n\",\n       \"  'as': 0.050964340567588806,\\n\",\n       \"  'it': 0.03316938877105713,\\n\",\n       \"  'explores': 0.06554631888866425,\\n\",\n       \"  'the': 0.029222989454865456,\\n\",\n       \"  'awful': 0.07938583195209503,\\n\",\n       \"  'complications': 0.03923923522233963,\\n\",\n       \"  'one': 0.017264435067772865,\\n\",\n       \"  'terrifying': 0.016589267179369926,\\n\",\n       \"  'day': 0.029811151325702667,\\n\",\n       \"  '.': 0.025793300941586494},\\n\",\n       \" {'awful': 1.0}]\"\n      ]\n     },\n     \"execution_count\": 37,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"word_sentens_attn_dic['awful']\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2 | 0.7551351189613342 | ['a', 'beautifully'] [0.24486486613750458, 0.7551351189613342]\\n\",\n      \"24 | 0.07511750608682632 | ['beautifully', 'acted', 'and', 'directed', ',', 'it', \\\"'s\\\", 'clear', 'that', 'washington', 'most', 'certainly', 'has', 'a', 'new', 'career', 'ahead', 'of', 'him', 'if', 'he', 'so', 'chooses', '.'] [0.07511750608682632, 0.030896199867129326, 0.023045657202601433, 0.019230667501688004, 0.06678497791290283, 0.04165038466453552, 0.03323228657245636, 0.020300572738051414, 0.03293433040380478, 0.07515758275985718, 0.018535463139414787, 0.07497537136077881, 0.0301223024725914, 0.024358076974749565, 0.024615293368697166, 0.019183138385415077, 0.07763700187206268, 0.05293694883584976, 0.019979232922196388, 0.06808774173259735, 0.038470346480607986, 0.029685400426387787, 0.07067517191171646, 0.032388318330049515]\\n\",\n      \"10 | 0.21474631130695343 | ['should', 'have', 'a', 'stirring', 'time', 'at', 'this', 'beautifully', 'drawn', 'movie'] [0.11354087293148041, 0.06269878894090652, 0.06963498890399933, 0.2227986752986908, 0.07281559705734253, 0.06081385910511017, 0.05852064490318298, 0.21474631130695343, 0.0570930540561676, 0.0673372894525528]\\n\",\n      \"11 | 0.13601675629615784 | ['predictable', 'in', 'the', 'reassuring', 'manner', 'of', 'a', 'beautifully', 'sung', 'holiday', 'carol'] [0.17895862460136414, 0.04261750355362892, 0.06644424796104431, 0.12401089072227478, 0.09619412571191788, 0.09585398435592651, 0.0441056527197361, 0.13601675629615784, 0.12152737379074097, 0.04045074060559273, 0.053820036351680756]\\n\",\n      \"14 | 0.10898467898368835 | ['vibrantly', 'colored', 'and', 'beautifully', 'designed', ',', 'metropolis', 'is', 'a', 'feast', 'for', 'the', 'eyes', '.'] [0.11117106676101685, 0.03151916339993477, 0.03343592584133148, 0.10898467898368835, 0.06449607759714127, 0.09689537435770035, 0.12197745591402054, 0.029118737205863, 0.03534005954861641, 0.10853494703769684, 0.040974460542201996, 0.053239062428474426, 0.1173221692442894, 0.0469907782971859]\\n\",\n      \"2 | 0.7674763798713684 | ['beautifully', 'filmed'] [0.7674763798713684, 0.2325236052274704]\\n\",\n      \"3 | 0.4354516267776489 | ['reflective', 'and', 'beautifully'] [0.43095412850379944, 0.13359425961971283, 0.4354516267776489]\\n\",\n      \"4 | 0.4356611669063568 | ['daring', 'and', 'beautifully', 'made'] [0.31154629588127136, 0.13365855813026428, 0.4356611669063568, 0.11913397163152695]\\n\",\n      \"2 | 0.49846163392066956 | ['works', 'beautifully'] [0.5015383958816528, 0.49846163392066956]\\n\",\n      \"3 | 0.46065783500671387 | [',', 'beautifully', 'realized'] [0.4095586836338043, 0.46065783500671387, 0.1297835111618042]\\n\",\n      \"11 | 0.1552007496356964 | ['...', 'begins', 'on', 'a', 'high', 'note', 'and', 'sustains', 'it', 'beautifully', '.'] [0.04633772745728493, 0.12143895775079727, 0.06727851182222366, 0.05032637342810631, 0.0468563474714756, 0.1565658301115036, 0.047614771872758865, 0.15540897846221924, 0.08605411648750305, 0.1552007496356964, 0.06691770255565643]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"word = \\\"beautifully\\\"\\n\",\n    \"i = 0\\n\",\n    \"for dic in word_sentens_attn_dic[word]:\\n\",\n    \"    word_score = dic[word]\\n\",\n    \"    sentence = []\\n\",\n    \"    sentence_scores = []\\n\",\n    \"    for k, v in dic.items():\\n\",\n    \"        sentence.append(k)\\n\",\n    \"        sentence_scores.append(v)\\n\",\n    \"    print(len(sentence), \\\"|\\\", word_score, \\\"|\\\", sentence, sentence_scores)\\n\",\n    \"    i+=1\\n\",\n    \"    if i > 10:\\n\",\n    \"        break\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P005-Pytorch-Text-Classifer/_2_self_attention_wordavg.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## self attention\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import math\\n\",\n    \"import time\\n\",\n    \"import random\\n\",\n    \"import numpy as np\\n\",\n    \"from collections import Counter\\n\",\n    \"\\n\",\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.optim as optim\\n\",\n    \"import torch.nn.functional as F\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"VOCAB_SIZE = 14_828\\n\",\n    \"\\n\",\n    \"EPOCHS = 5\\n\",\n    \"BATCH_SIZE = 32\\n\",\n    \"LEARNING_RATE = 0.01\\n\",\n    \"BEST_VALID_LOSS = float('inf')\\n\",\n    \"\\n\",\n    \"EMBEDDING_DIM = 100\\n\",\n    \"OUTPUT_DIM = 1\\n\",\n    \"\\n\",\n    \"train_file = \\\"data/senti.train.tsv\\\"\\n\",\n    \"eval_file = \\\"data/senti.dev.tsv\\\"\\n\",\n    \"test_file = \\\"data/senti.test.tsv\\\"\\n\",\n    \"\\n\",\n    \"USE_CUDA = torch.cuda.is_available()\\n\",\n    \"DEVICE = torch.device('cuda:1' if USE_CUDA else 'cpu')\\n\",\n    \"NUM_CUDA = torch.cuda.device_count()\\n\",\n    \"\\n\",\n    \"random.seed(2019)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_text_file(filename):\\n\",\n    \"    \\\"\\\"\\\"将样本的特征与标签分开，并将样本特征分词\\\"\\\"\\\"\\n\",\n    \"    sentences = []\\n\",\n    \"    label = []\\n\",\n    \"    with open(filename, \\\"r\\\") as f:\\n\",\n    \"        sent_list  = [line.strip().split('\\\\t') for line in f]\\n\",\n    \"    for sample in sent_list:\\n\",\n    \"        sentences.append(sample[0].lower().split(\\\" \\\"))\\n\",\n    \"        label.append(int(sample[-1]))\\n\",\n    \"    return sentences, label\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_word_dic(sentences_list, vocab_size=20_000):\\n\",\n    \"    \\\"\\\"\\\"构建words_set, word2idx, idx2word\\\"\\\"\\\"\\n\",\n    \"    words_list = [w for line in sentences_list for w in line]\\n\",\n    \"    counter = Counter(words_list)\\n\",\n    \"    words_topn = counter.most_common(vocab_size)\\n\",\n    \"    words_set = [item[0] for item in words_topn]\\n\",\n    \"    words_set = ['<pad>', \\\"<unk>\\\"] + words_set\\n\",\n    \"    word2idx = {w:i for i, w in enumerate(words_set)}\\n\",\n    \"    idx2word = {i:w for i, w in enumerate(words_set)}\\n\",\n    \"    return words_topn, word2idx, idx2word\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_x_y(word2idx, sentences_list, label_list, seq_len=60):\\n\",\n    \"    \\\"\\\"\\\"构建输入模型的数据，对每个单词编码，每个句子通过添加pading保持一样长\\\"\\\"\\\"\\n\",\n    \"    x = []\\n\",\n    \"    y = []\\n\",\n    \"    for sent, label in zip(sentences_list, label_list):\\n\",\n    \"        word_x = [0]* seq_len\\n\",\n    \"        for i, w in enumerate(sent):\\n\",\n    \"            if w in word2idx:\\n\",\n    \"                word_x[i] = word2idx[w]\\n\",\n    \"            else:\\n\",\n    \"                word_x[i] = word2idx['<unk>']\\n\",\n    \"        x.append(word_x)\\n\",\n    \"        y.append(label)\\n\",\n    \"    return x, y\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def build_batch_data(data, label, batch_size=32):\\n\",\n    \"    \\\"\\\"\\\"构建tensor格式的批次数据，返回batch列表，每个batch为二元组包含feature和label\\\"\\\"\\\"\\n\",\n    \"    batch_data = []\\n\",\n    \"    # 打乱顺序\\n\",\n    \"    data_labels = [[x, y] for x, y in zip(data, label)]\\n\",\n    \"    random.shuffle(data_labels)\\n\",\n    \"    xlist = [item[0] for item in data_labels]\\n\",\n    \"    ylist = [item[1] for item in data_labels]\\n\",\n    \"    \\n\",\n    \"    x_tensor = torch.tensor(xlist, dtype=torch.long)\\n\",\n    \"    y_tensor = torch.tensor(ylist, dtype=torch.float)\\n\",\n    \"    n, dim = x_tensor.size()\\n\",\n    \"    for start in range(0, n, batch_size):\\n\",\n    \"        end = start + batch_size\\n\",\n    \"        if end > n:\\n\",\n    \"            xbatch = x_tensor[start: ]\\n\",\n    \"            ybatch = y_tensor[start: ]\\n\",\n    \"            print(\\\"最后一个batch size:\\\", ybatch.size())\\n\",\n    \"        else:\\n\",\n    \"            xbatch = x_tensor[start: end]\\n\",\n    \"            ybatch = y_tensor[start: end]\\n\",\n    \"        batch_data.append((xbatch, ybatch))\\n\",\n    \"    return batch_data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class SelfAttModel(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\\n\",\n    \"        super(SelfAttModel, self).__init__()\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\\n\",\n    \"        initrange = 0.1\\n\",\n    \"        self.embedding.weight.data.uniform_(-initrange, initrange)\\n\",\n    \"        # 计算 Attention 向量\\n\",\n    \"        self.qkv = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.fc = nn.Linear(embed_dim, output_size, bias=False)\\n\",\n    \"        \\n\",\n    \"    def forward(self, text):\\n\",\n    \"        # [batch, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        embed = self.embedding(text)\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\\n\",\n    \"        x = self.qkv(embed)     # 用emeding层产生？\\n\",\n    \"        # 算句子Attention平均值\\n\",\n    \"        h_attn = self.attention(x)   # [batch, seq_len, emb_dim]\\n\",\n    \"        # 平均值\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, emb_dim]  # 每个句子求平均值得到一个词向量\\n\",\n    \"        h_attn = torch.sum(h_attn, dim=1).squeeze()\\n\",\n    \"        # [batch, emb_dim] --> [batch, output_size]\\n\",\n    \"        out = self.fc(h_attn)\\n\",\n    \"        return out\\n\",\n    \"    \\n\",\n    \"    def attention(self, x):\\n\",\n    \"        \\\"\\\"\\\"计算attention权重\\\"\\\"\\\"\\n\",\n    \"        d_k = x.size(-1)    # embed_dim\\n\",\n    \"        # x.transpose(-2, -1) 后两维度的转置 [batch, seq_len, emb_dim] --> [batch, emb_dim, seq_len]\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\\n\",\n    \"        scores = torch.matmul(x, x.transpose(-2, -1)) / math.sqrt(d_k)\\n\",\n    \"        # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\\n\",\n    \"        attn = F.softmax(scores, dim=-1)\\n\",\n    \"        # 计算context值 \\n\",\n    \"        # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        attn_x = torch.matmul(attn, x)\\n\",\n    \"        return attn_x\\n\",\n    \"    \\n\",\n    \"    def get_embed_weight(self):\\n\",\n    \"        \\\"\\\"\\\"获取embedding层参数\\\"\\\"\\\"\\n\",\n    \"        return self.embedding.weight.data\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def binary_accuracy(preds, y):\\n\",\n    \"    \\\"\\\"\\\"计算准确率\\\"\\\"\\\"\\n\",\n    \"    rounded_preds = torch.round(torch.sigmoid(preds))\\n\",\n    \"    correct = (rounded_preds == y).float()  \\n\",\n    \"    acc = correct.sum()/len(correct)\\n\",\n    \"    return acc\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def train(model, device, iterator, optimizer, criterion):\\n\",\n    \"    \\\"\\\"\\\"训练函数\\\"\\\"\\\"\\n\",\n    \"    \\n\",\n    \"    epoch_loss = 0\\n\",\n    \"    epoch_acc = 0\\n\",\n    \"    model.train()\\n\",\n    \"    \\n\",\n    \"    for x, y in iterator:\\n\",\n    \"        x, y = x.to(device), y.to(device) # torch.int64\\n\",\n    \"        optimizer.zero_grad()\\n\",\n    \"        predictions = model(x).squeeze(1)  # torch.float32 \\n\",\n    \"        \\n\",\n    \"        loss = criterion(predictions, y)\\n\",\n    \"        acc = binary_accuracy(predictions, y)\\n\",\n    \"        loss.backward()\\n\",\n    \"        optimizer.step()\\n\",\n    \"        \\n\",\n    \"        epoch_loss += loss.item()\\n\",\n    \"        epoch_acc += acc.item()\\n\",\n    \"        \\n\",\n    \"    return epoch_loss / len(iterator), epoch_acc / len(iterator)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def evaluate(model, device, iterator, criterion):\\n\",\n    \"    \\\"\\\"\\\"验证函数\\\"\\\"\\\"\\n\",\n    \"    epoch_loss = 0\\n\",\n    \"    epoch_acc = 0\\n\",\n    \"    model.eval()\\n\",\n    \"    \\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for x, y in iterator:\\n\",\n    \"            x, y = x.to(device), y.to(device)\\n\",\n    \"            predictions = model(x).squeeze(1)\\n\",\n    \"            loss = criterion(predictions, y)\\n\",\n    \"            acc = binary_accuracy(predictions, y)\\n\",\n    \"            epoch_loss += loss.item()\\n\",\n    \"            epoch_acc += acc.item()\\n\",\n    \"        \\n\",\n    \"    return epoch_loss / len(iterator), epoch_acc / len(iterator)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def count_parameters(model):\\n\",\n    \"    \\\"\\\"\\\"统计模型的参数量\\\"\\\"\\\"\\n\",\n    \"    return sum(p.numel() for p in model.parameters() if p.requires_grad)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def epoch_time(start_time, end_time):\\n\",\n    \"    \\\"\\\"\\\"计算时间差，返回分钟, 秒钟\\\"\\\"\\\"\\n\",\n    \"    elapsed_time = end_time - start_time\\n\",\n    \"    elapsed_mins = int(elapsed_time / 60)\\n\",\n    \"    elapsed_secs = int(elapsed_time - (elapsed_mins * 60))\\n\",\n    \"    return elapsed_mins, elapsed_secs\\n\",\n    \"\\n\",\n    \"def max_seq_len(data_list):\\n\",\n    \"    \\\"\\\"\\\"获取句子最大长度\\\"\\\"\\\"\\n\",\n    \"    li = [len(s) for data in data_list for s in data]\\n\",\n    \"    return max(li)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"max_len: 56\\n\",\n      \"词典长度: 14828 14830 14830\\n\",\n      \"训练集样本数量: 67349 67349\\n\",\n      \"最后一个batch size: torch.Size([21])\\n\",\n      \"最后一个batch size: torch.Size([8])\\n\",\n      \"最后一个batch size: torch.Size([29])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"train_sentences, train_label = load_text_file(train_file)\\n\",\n    \"eval_sentences, eval_label = load_text_file(eval_file)\\n\",\n    \"test_sentences, test_label = load_text_file(test_file)\\n\",\n    \"\\n\",\n    \"max_len = max_seq_len([train_sentences, eval_sentences, test_sentences])\\n\",\n    \"print(\\\"max_len:\\\", max_len)\\n\",\n    \"words_set, word2idx, idx2word = build_word_dic(train_sentences, vocab_size=VOCAB_SIZE)\\n\",\n    \"train_x, train_y = build_x_y(word2idx, train_sentences, train_label, seq_len=max_len)\\n\",\n    \"eval_x, eval_y = build_x_y(word2idx, eval_sentences, eval_label, seq_len=max_len)\\n\",\n    \"test_x, test_y = build_x_y(word2idx, test_sentences, test_label, seq_len=max_len)\\n\",\n    \"\\n\",\n    \"print(\\\"词典长度:\\\", len(words_set), len(word2idx), len(idx2word))\\n\",\n    \"print(\\\"训练集样本数量:\\\", len(train_x), len(train_y))\\n\",\n    \"\\n\",\n    \"train_data = build_batch_data(train_x, train_y, batch_size=BATCH_SIZE)\\n\",\n    \"eval_data = build_batch_data(eval_x, eval_y, batch_size=BATCH_SIZE)\\n\",\n    \"test_data = build_batch_data(test_x, test_y, batch_size=BATCH_SIZE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"模型有1,493,100个可调节参数, 大约5.6957244873046875 M.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"INPUT_DIM = len(words_set) + 2\\n\",\n    \"PAD_IDX = word2idx['<pad>']\\n\",\n    \"\\n\",\n    \"model = SelfAttModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\\n\",\n    \"print(f'模型有{count_parameters(model):,}个可调节参数, 大约{count_parameters(model)*4/1024/1024} M.')\\n\",\n    \"\\n\",\n    \"model = model.to(DEVICE)\\n\",\n    \"    \\n\",\n    \"optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE)\\n\",\n    \"criterion = nn.BCEWithLogitsLoss()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type SelfAttModel. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***Save Best Model self-attention-wordavg.pth***\\n\",\n      \"Epoch: 01 | Epoch Time: 0m 8s\\n\",\n      \"\\tTrain Loss: 0.391 | Train Acc: 83.59%\\n\",\n      \"\\t Val. Loss: 0.630 |  Val. Acc: 80.36%\\n\",\n      \"Epoch: 02 | Epoch Time: 0m 8s\\n\",\n      \"\\tTrain Loss: 0.380 | Train Acc: 89.68%\\n\",\n      \"\\t Val. Loss: 1.530 |  Val. Acc: 76.34%\\n\",\n      \"Epoch: 03 | Epoch Time: 0m 8s\\n\",\n      \"\\tTrain Loss: 0.466 | Train Acc: 91.57%\\n\",\n      \"\\t Val. Loss: 2.797 |  Val. Acc: 78.24%\\n\",\n      \"Epoch: 04 | Epoch Time: 0m 8s\\n\",\n      \"\\tTrain Loss: 0.446 | Train Acc: 93.12%\\n\",\n      \"\\t Val. Loss: 5.711 |  Val. Acc: 77.01%\\n\",\n      \"Epoch: 05 | Epoch Time: 0m 8s\\n\",\n      \"\\tTrain Loss: 0.379 | Train Acc: 94.06%\\n\",\n      \"\\t Val. Loss: 5.046 |  Val. Acc: 79.13%\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model_name = 'self-attention-wordavg.pth'\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    start_time = time.time()\\n\",\n    \"    train_loss, train_acc = train(model, DEVICE, train_data, optimizer, criterion)\\n\",\n    \"    valid_loss, valid_acc = evaluate(model, DEVICE, eval_data, criterion)\\n\",\n    \"    end_time = time.time()\\n\",\n    \"\\n\",\n    \"    epoch_mins, epoch_secs = epoch_time(start_time, end_time)\\n\",\n    \"    if valid_loss < BEST_VALID_LOSS:\\n\",\n    \"        BEST_VALID_LOSS = valid_loss\\n\",\n    \"        torch.save(model, model_name)\\n\",\n    \"        print(f'***Save Best Model {model_name}***')\\n\",\n    \"    \\n\",\n    \"    print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\\n\",\n    \"    print(f'\\\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\\n\",\n    \"    print(f'\\\\t Val. Loss: {valid_loss:.3f} |  Val. Acc: {valid_acc*100:.2f}%')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.5601791255829627 | Test Acc: 0.8189088022499754\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"model = torch.load(model_name)\\n\",\n    \"test_loss, test_acc = evaluate(model, DEVICE, test_data, criterion)\\n\",\n    \"print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Add residual残差\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class AttentionResidualModel(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\\n\",\n    \"        super(AttentionResidualModel, self).__init__()\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\\n\",\n    \"        initrange = 0.1\\n\",\n    \"        self.embedding.weight.data.uniform_(-initrange, initrange)\\n\",\n    \"        self.qkv = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.fc = nn.Linear(embed_dim, output_size, bias=False)\\n\",\n    \"        self.dropout = nn.Dropout(0.2)\\n\",\n    \"        \\n\",\n    \"    def forward(self, text):\\n\",\n    \"        # [batch, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        embed = self.embedding(text)\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\\n\",\n    \"        x = self.qkv(embed)     # 用emeding层产生？\\n\",\n    \"        # 算句子Attention平均值\\n\",\n    \"        h_attn = self.attention(x)   # [batch, seq_len, emb_dim]\\n\",\n    \"        h_attn += embed\\n\",\n    \"        # 平均值\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, emb_dim]  # 每个句子求平均值得到一个词向量\\n\",\n    \"        h_attn = torch.sum(h_attn, dim=1).squeeze()\\n\",\n    \"        # [batch, emb_dim] --> [batch, output_size]\\n\",\n    \"        out = self.fc(self.dropout(h_attn))\\n\",\n    \"        return out\\n\",\n    \"    \\n\",\n    \"    def attention(self, x):\\n\",\n    \"        \\\"\\\"\\\"计算attention权重\\\"\\\"\\\"\\n\",\n    \"        d_k = x.size(-1)    # embed_dim\\n\",\n    \"        # x.transpose(-2, -1) 后两维度的转置 [batch, seq_len, emb_dim] --> [batch, emb_dim, seq_len]\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\\n\",\n    \"        scores = torch.matmul(x, x.transpose(-2, -1)) / math.sqrt(d_k)\\n\",\n    \"        # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\\n\",\n    \"        attn = F.softmax(scores, dim=-1)\\n\",\n    \"        # 计算context值 \\n\",\n    \"        # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        attn_x = torch.matmul(attn, x)\\n\",\n    \"        return attn_x\\n\",\n    \"    \\n\",\n    \"    def get_embed_weight(self):\\n\",\n    \"        \\\"\\\"\\\"获取embedding层参数\\\"\\\"\\\"\\n\",\n    \"        return self.embedding.weight.data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"模型有1,493,100个可调节参数, 大约5.6957244873046875 M.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"res_model = AttentionResidualModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\\n\",\n    \"print(f'模型有{count_parameters(res_model):,}个可调节参数, 大约{count_parameters(res_model)*4/1024/1024} M.')\\n\",\n    \"\\n\",\n    \"res_model = res_model.to(DEVICE)\\n\",\n    \"\\n\",\n    \"optimizer = optim.Adam(res_model.parameters(), lr=LEARNING_RATE)\\n\",\n    \"criterion = nn.BCEWithLogitsLoss()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type AttentionResidualModel. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***Save Best Model attention-residual-wordavg.pth***\\n\",\n      \"Epoch: 01 | Epoch Time: 0m 8s\\n\",\n      \"\\tTrain Loss: 0.411 | Train Acc: 82.54%\\n\",\n      \"\\t Val. Loss: 0.680 |  Val. Acc: 80.25%\\n\",\n      \"Epoch: 02 | Epoch Time: 0m 9s\\n\",\n      \"\\tTrain Loss: 0.423 | Train Acc: 89.12%\\n\",\n      \"\\t Val. Loss: 1.333 |  Val. Acc: 78.68%\\n\",\n      \"Epoch: 03 | Epoch Time: 0m 9s\\n\",\n      \"\\tTrain Loss: 0.450 | Train Acc: 91.44%\\n\",\n      \"\\t Val. Loss: 4.090 |  Val. Acc: 79.13%\\n\",\n      \"Epoch: 04 | Epoch Time: 0m 8s\\n\",\n      \"\\tTrain Loss: 1.355 | Train Acc: 92.43%\\n\",\n      \"\\t Val. Loss: 2.013 |  Val. Acc: 78.91%\\n\",\n      \"Epoch: 05 | Epoch Time: 0m 9s\\n\",\n      \"\\tTrain Loss: 0.232 | Train Acc: 94.51%\\n\",\n      \"\\t Val. Loss: 3.674 |  Val. Acc: 77.68%\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"res_model_name = 'attention-residual-wordavg.pth'\\n\",\n    \"BEST_VALID_LOSS = float('inf')\\n\",\n    \"\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    start_time = time.time()\\n\",\n    \"    train_loss, train_acc = train(res_model, DEVICE, train_data, optimizer, criterion)\\n\",\n    \"    valid_loss, valid_acc = evaluate(res_model, DEVICE, eval_data, criterion)\\n\",\n    \"    end_time = time.time()\\n\",\n    \"\\n\",\n    \"    epoch_mins, epoch_secs = epoch_time(start_time, end_time)\\n\",\n    \"    if valid_loss < BEST_VALID_LOSS:\\n\",\n    \"        BEST_VALID_LOSS = valid_loss\\n\",\n    \"        torch.save(res_model, res_model_name)\\n\",\n    \"        print(f'***Save Best Model {res_model_name}***')\\n\",\n    \"    \\n\",\n    \"    print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\\n\",\n    \"    print(f'\\\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\\n\",\n    \"    print(f'\\\\t Val. Loss: {valid_loss:.3f} |  Val. Acc: {valid_acc*100:.2f}%')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.6042031730737603 | Test Acc: 0.8194570478640104\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"res_model = torch.load(res_model_name)\\n\",\n    \"test_loss, test_acc = evaluate(res_model, DEVICE, test_data, criterion)\\n\",\n    \"print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 自己设置attention函数\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyAttentionModel(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\\n\",\n    \"        super(MyAttentionModel, self).__init__()\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\\n\",\n    \"        initrange = 0.1\\n\",\n    \"        self.embedding.weight.data.uniform_(-initrange, initrange)\\n\",\n    \"        # 权重计算 q, v, k\\n\",\n    \"        self.q = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.k = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.v = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.fc = nn.Linear(embed_dim, output_size, bias=False)\\n\",\n    \"        self.dropout = nn.Dropout(0.2)\\n\",\n    \"        \\n\",\n    \"    def forward(self, text):\\n\",\n    \"        # [batch, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        embed = self.embedding(text)\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\\n\",\n    \"        q_vec = self.q(embed) \\n\",\n    \"        k_vec = self.k(embed)\\n\",\n    \"        v_vec = self.v(embed)\\n\",\n    \"        # 算句子Attention平均值\\n\",\n    \"        h_attn = self.attention(q_vec, k_vec, v_vec)   # [batch, seq_len, emb_dim]\\n\",\n    \"        h_attn += embed\\n\",\n    \"        # 平均值\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, emb_dim]  # 每个句子求平均值得到一个词向量\\n\",\n    \"        h_attn = torch.sum(h_attn, dim=1).squeeze()\\n\",\n    \"        # [batch, emb_dim] --> [batch, output_size]\\n\",\n    \"        out = self.fc(self.dropout(h_attn))\\n\",\n    \"        return out\\n\",\n    \"    \\n\",\n    \"    def attention(self, q, k, v):\\n\",\n    \"        \\\"\\\"\\\"计算attention权重\\\"\\\"\\\"\\n\",\n    \"        d_k = k.size(-1)    # embed_dim\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\\n\",\n    \"        scores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k)\\n\",\n    \"        # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\\n\",\n    \"        attn = F.softmax(scores, dim=-1)\\n\",\n    \"        # 计算context值 \\n\",\n    \"        # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        attn_x = torch.matmul(attn, v)\\n\",\n    \"        return attn_x\\n\",\n    \"    \\n\",\n    \"    def get_embed_weight(self):\\n\",\n    \"        \\\"\\\"\\\"获取embedding层参数\\\"\\\"\\\"\\n\",\n    \"        return self.embedding.weight.data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"模型有1,513,100个可调节参数, 大约5.7720184326171875 M.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"att_model = MyAttentionModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\\n\",\n    \"print(f'模型有{count_parameters(att_model):,}个可调节参数, 大约{count_parameters(att_model)*4/1024/1024} M.')\\n\",\n    \"\\n\",\n    \"att_model = att_model.to(DEVICE)\\n\",\n    \"\\n\",\n    \"optimizer = optim.Adam(att_model.parameters(), lr=LEARNING_RATE)\\n\",\n    \"criterion = nn.BCEWithLogitsLoss()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/root/anaconda3/lib/python3.6/site-packages/torch/serialization.py:251: UserWarning: Couldn't retrieve source code for container of type MyAttentionModel. It won't be checked for correctness upon loading.\\n\",\n      \"  \\\"type \\\" + obj.__name__ + \\\". It won't be checked \\\"\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***Save Best Model my-attention-wordavg.pth***\\n\",\n      \"Epoch: 01 | Epoch Time: 0m 10s\\n\",\n      \"\\tTrain Loss: 0.461 | Train Acc: 82.26%\\n\",\n      \"\\t Val. Loss: 0.669 |  Val. Acc: 78.12%\\n\",\n      \"Epoch: 02 | Epoch Time: 0m 10s\\n\",\n      \"\\tTrain Loss: 0.453 | Train Acc: 88.23%\\n\",\n      \"\\t Val. Loss: 1.575 |  Val. Acc: 76.79%\\n\",\n      \"Epoch: 03 | Epoch Time: 0m 11s\\n\",\n      \"\\tTrain Loss: 0.599 | Train Acc: 88.79%\\n\",\n      \"\\t Val. Loss: 2.247 |  Val. Acc: 76.45%\\n\",\n      \"Epoch: 04 | Epoch Time: 0m 11s\\n\",\n      \"\\tTrain Loss: 0.655 | Train Acc: 90.28%\\n\",\n      \"\\t Val. Loss: 3.758 |  Val. Acc: 79.24%\\n\",\n      \"Epoch: 05 | Epoch Time: 0m 10s\\n\",\n      \"\\tTrain Loss: 3.910 | Train Acc: 87.12%\\n\",\n      \"\\t Val. Loss: 9.320 |  Val. Acc: 74.11%\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"att_model_name = 'my-attention-wordavg.pth'\\n\",\n    \"BEST_VALID_LOSS = float('inf')\\n\",\n    \"\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    start_time = time.time()\\n\",\n    \"    train_loss, train_acc = train(att_model, DEVICE, train_data, optimizer, criterion)\\n\",\n    \"    valid_loss, valid_acc = evaluate(att_model, DEVICE, eval_data, criterion)\\n\",\n    \"    end_time = time.time()\\n\",\n    \"\\n\",\n    \"    epoch_mins, epoch_secs = epoch_time(start_time, end_time)\\n\",\n    \"    if valid_loss < BEST_VALID_LOSS:\\n\",\n    \"        BEST_VALID_LOSS = valid_loss\\n\",\n    \"        torch.save(att_model, att_model_name)\\n\",\n    \"        print(f'***Save Best Model {att_model_name}***')\\n\",\n    \"    \\n\",\n    \"    print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\\n\",\n    \"    print(f'\\\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\\n\",\n    \"    print(f'\\\\t Val. Loss: {valid_loss:.3f} |  Val. Acc: {valid_acc*100:.2f}%')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 0.5882109670262587 | Test Acc: 0.8019131882148877\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"att_model = torch.load(att_model_name)\\n\",\n    \"test_loss, test_acc = evaluate(att_model, DEVICE, test_data, criterion)\\n\",\n    \"print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Deploy\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"MyAttentionModel(\\n\",\n       \"  (embedding): Embedding(16000, 100, padding_idx=0)\\n\",\n       \"  (q): Linear(in_features=100, out_features=100, bias=False)\\n\",\n       \"  (k): Linear(in_features=100, out_features=100, bias=False)\\n\",\n       \"  (v): Linear(in_features=100, out_features=100, bias=False)\\n\",\n       \"  (fc): Linear(in_features=100, out_features=1, bias=False)\\n\",\n       \"  (dropout): Dropout(p=0.2)\\n\",\n       \")\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"att_model.eval()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def predict(model, device, x):\\n\",\n    \"    model.eval()\\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        x = x.to(device)\\n\",\n    \"        y = model(x)\\n\",\n    \"        print(y)\\n\",\n    \"    return y\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 33,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([1, 56])\"\n      ]\n     },\n     \"execution_count\": 33,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = test_data[0][0][0].unsqueeze(0)\\n\",\n    \"x.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 34,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor(0.)\"\n      ]\n     },\n     \"execution_count\": 34,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"gt = test_data[0][-1][0]\\n\",\n    \"gt\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 36,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor([-10.3408], device='cuda:1')\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"y = predict(att_model, DEVICE, x)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"p_y = torch.sigmoid(y)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 41,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([1], device='cuda:1', dtype=torch.uint8)\"\n      ]\n     },\n     \"execution_count\": 41,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"p_y < 0.5\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## add positional encodings\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from torch.autograd import Variable\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class PosAttentionModel(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_dim, output_size, pad_idx):\\n\",\n    \"        super(PosAttentionModel, self).__init__()\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embed_dim, padding_idx=pad_idx)\\n\",\n    \"        initrange = 0.1\\n\",\n    \"        self.embedding.weight.data.uniform_(-initrange, initrange)\\n\",\n    \"        # 权重计算 q, v, k\\n\",\n    \"        self.q = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.k = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.v = nn.Linear(embed_dim, embed_dim, bias=False)\\n\",\n    \"        self.fc = nn.Linear(embed_dim, output_size, bias=False)\\n\",\n    \"        self.dropout = nn.Dropout(0.2)\\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"    def forward(self, text):\\n\",\n    \"        # [batch, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        embed = self.embedding(text)\\n\",\n    \"        max_len, embed_dim = embed.size()[1], embed.size(2)\\n\",\n    \"        pe = self.get_pe(max_len, embed_dim)\\n\",\n    \"        # embed += Variable(self.pe[:, :x.size(1)],requires_grad=False)\\n\",\n    \"        embed += pe\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, embed_dim]?\\n\",\n    \"        q_vec = self.q(embed) \\n\",\n    \"        k_vec = self.k(embed)\\n\",\n    \"        v_vec = self.v(embed)\\n\",\n    \"        # 算句子Attention平均值\\n\",\n    \"        h_attn = self.attention(q_vec, k_vec, v_vec)   # [batch, seq_len, emb_dim]\\n\",\n    \"        h_attn += embed\\n\",\n    \"        # 平均值\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, emb_dim]  # 每个句子求平均值得到一个词向量\\n\",\n    \"        h_attn = torch.sum(h_attn, dim=1).squeeze()\\n\",\n    \"        # [batch, emb_dim] --> [batch, output_size]\\n\",\n    \"        out = self.fc(self.dropout(h_attn))\\n\",\n    \"        return out\\n\",\n    \"    \\n\",\n    \"    def attention(self, q, k, v):\\n\",\n    \"        \\\"\\\"\\\"计算attention权重\\\"\\\"\\\"\\n\",\n    \"        d_k = k.size(-1)    # embed_dim\\n\",\n    \"        # [batch, seq_len, emb_dim] -> [batch, seq_len, seq_len]\\n\",\n    \"        scores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k)\\n\",\n    \"        # [batch, seq_len, seq_len] ->[batch, seq_len, seq_len]\\n\",\n    \"        attn = F.softmax(scores, dim=-1)\\n\",\n    \"        # 计算context值 \\n\",\n    \"        # [batch, seq_len, seq_len] -> [batch, seq_len, emb_dim]\\n\",\n    \"        attn_x = torch.matmul(attn, v)\\n\",\n    \"        return attn_x \\n\",\n    \"    \\n\",\n    \"    @property\\n\",\n    \"    def get_pe(self, max_len, embed_dim):\\n\",\n    \"        pe = torch.zeros(max_len, embed_dim)\\n\",\n    \"        position = torch.arange(0, max_len).unsqueeze(1)\\n\",\n    \"        div_term = torch.exp(torch.arange(0, embed_dim, 2) *\\n\",\n    \"                             -(math.log(10000.0) / embed_dim))\\n\",\n    \"        pe[:, 0::2] = torch.sin(position * div_term)\\n\",\n    \"        pe[:, 1::2] = torch.cos(position * div_term)\\n\",\n    \"        pe = pe.unsqueeze(0)\\n\",\n    \"        return pe\\n\",\n    \"    \\n\",\n    \"    def get_embed_weight(self):\\n\",\n    \"        \\\"\\\"\\\"获取embedding层参数\\\"\\\"\\\"\\n\",\n    \"        return self.embedding.weight.data\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"模型有1,513,100个可调节参数, 大约5.7720184326171875 M.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"pos_model = MyAttentionModel(INPUT_DIM, EMBEDDING_DIM, OUTPUT_DIM, PAD_IDX)\\n\",\n    \"print(f'模型有{count_parameters(pos_model):,}个可调节参数, 大约{count_parameters(pos_model)*4/1024/1024} M.')\\n\",\n    \"\\n\",\n    \"pos_model = pos_model.to(DEVICE)\\n\",\n    \"\\n\",\n    \"optimizer = optim.Adam(pos_model.parameters(), lr=LEARNING_RATE)\\n\",\n    \"criterion = nn.BCEWithLogitsLoss()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"***Save Best Model pos-attention-wordavg.pth***\\n\",\n      \"Epoch: 01 | Epoch Time: 0m 11s\\n\",\n      \"\\tTrain Loss: 0.424 | Train Acc: 82.91%\\n\",\n      \"\\t Val. Loss: 0.982 |  Val. Acc: 78.24%\\n\",\n      \"Epoch: 02 | Epoch Time: 0m 11s\\n\",\n      \"\\tTrain Loss: 0.520 | Train Acc: 86.70%\\n\",\n      \"\\t Val. Loss: 1.653 |  Val. Acc: 80.36%\\n\",\n      \"Epoch: 03 | Epoch Time: 0m 11s\\n\",\n      \"\\tTrain Loss: 2.995 | Train Acc: 83.55%\\n\",\n      \"\\t Val. Loss: 3.424 |  Val. Acc: 72.43%\\n\",\n      \"Epoch: 04 | Epoch Time: 0m 10s\\n\",\n      \"\\tTrain Loss: 0.534 | Train Acc: 89.54%\\n\",\n      \"\\t Val. Loss: 1.370 |  Val. Acc: 78.57%\\n\",\n      \"Epoch: 05 | Epoch Time: 0m 12s\\n\",\n      \"\\tTrain Loss: 0.427 | Train Acc: 91.87%\\n\",\n      \"\\t Val. Loss: 2.589 |  Val. Acc: 72.21%\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"pos_model_name = 'pos-attention-wordavg.pth'\\n\",\n    \"BEST_VALID_LOSS = float('inf')\\n\",\n    \"EPOCHS = 5\\n\",\n    \"\\n\",\n    \"for epoch in range(1, EPOCHS+1):\\n\",\n    \"    start_time = time.time()\\n\",\n    \"    train_loss, train_acc = train(pos_model, DEVICE, train_data, optimizer, criterion)\\n\",\n    \"    valid_loss, valid_acc = evaluate(pos_model, DEVICE, eval_data, criterion)\\n\",\n    \"    end_time = time.time()\\n\",\n    \"\\n\",\n    \"    epoch_mins, epoch_secs = epoch_time(start_time, end_time)\\n\",\n    \"    if valid_loss < BEST_VALID_LOSS:\\n\",\n    \"        BEST_VALID_LOSS = valid_loss\\n\",\n    \"        torch.save(pos_model, pos_model_name)\\n\",\n    \"        print(f'***Save Best Model {pos_model_name}***')\\n\",\n    \"    \\n\",\n    \"    print(f'Epoch: {epoch :02} | Epoch Time: {epoch_mins}m {epoch_secs}s')\\n\",\n    \"    print(f'\\\\tTrain Loss: {train_loss:.3f} | Train Acc: {train_acc*100:.2f}%')\\n\",\n    \"    print(f'\\\\t Val. Loss: {valid_loss:.3f} |  Val. Acc: {valid_acc*100:.2f}%')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Test Loss: 1.033877345030768 | Test Acc: 0.7567869027455648\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"pos_model = torch.load(pos_model_name)\\n\",\n    \"test_loss, test_acc = evaluate(pos_model, DEVICE, test_data, criterion)\\n\",\n    \"print('Test Loss: {0} | Test Acc: {1}'.format(test_loss, test_acc))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P006TheAnnotatedTransformer/model_transformer.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import copy\\n\",\n    \"import math\\n\",\n    \"import time\\n\",\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"import pdb\\n\",\n    \"import pickle\\n\",\n    \"\\n\",\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"from torch.autograd import Variable\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class EncoderDecoder(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"标准的Encoder-Decoder架构\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, encoder, decoder, src_embed, tgt_embed, generator):\\n\",\n    \"        super(EncoderDecoder, self).__init__()\\n\",\n    \"        self.encoder = encoder\\n\",\n    \"        self.decoder = decoder\\n\",\n    \"        self.src_embed = src_embed   # 源序列embedding\\n\",\n    \"        self.tgt_embed = tgt_embed   # 目标序列embedding\\n\",\n    \"        self.generator = generator   # 生成目标单词的概率\\n\",\n    \"        \\n\",\n    \"    def forward(self, src, tgt, src_mask, tgt_mask):\\n\",\n    \"        \\\"接收和处理原序列,目标序列,以及他们的mask\\\"\\n\",\n    \"        return self.decode(self.encode(src, src_mask), src_mask,\\n\",\n    \"                            tgt, tgt_mask)\\n\",\n    \"    \\n\",\n    \"    def encode(self, src, src_mask):\\n\",\n    \"        return self.encoder(self.src_embed(src), src_mask)\\n\",\n    \"    \\n\",\n    \"    def decode(self, memory, src_mask, tgt, tgt_mask):\\n\",\n    \"        return self.decoder(self.tgt_embed(tgt), memory, src_mask, tgt_mask)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class Generator(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"定义标准的linear+softmax生成步骤\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, d_model, vocab):\\n\",\n    \"        super(Generator, self).__init__()\\n\",\n    \"        self.proj = nn.Linear(d_model, vocab)\\n\",\n    \"\\n\",\n    \"    def forward(self, x):\\n\",\n    \"        return F.log_softmax(self.proj(x), dim=-1)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Encoder部分\\n\",\n    \"def clones(module, N):\\n\",\n    \"    \\\"产生N个相同的层\\\"\\n\",\n    \"    return nn.ModuleList([copy.deepcopy(module) for _ in range(N)])\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class Encoder(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"N层堆叠的Encoder\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, layer, N):\\n\",\n    \"        super(Encoder, self).__init__()\\n\",\n    \"        self.layers = clones(layer, N)\\n\",\n    \"        self.norm = LayerNorm(layer.size)\\n\",\n    \"        \\n\",\n    \"    def forward(self, x, mask):\\n\",\n    \"        \\\"每层layer依次通过输入序列与mask\\\"\\n\",\n    \"        for layer in self.layers:\\n\",\n    \"            x = layer(x, mask)\\n\",\n    \"        return self.norm(x)\\n\",\n    \"\\n\",\n    \"class LayerNorm(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"构造一个layernorm模块\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, features, eps=1e-6):\\n\",\n    \"        super(LayerNorm, self).__init__()\\n\",\n    \"        self.a_2 = nn.Parameter(torch.ones(features))\\n\",\n    \"        self.b_2 = nn.Parameter(torch.zeros(features))\\n\",\n    \"        self.eps = eps\\n\",\n    \"\\n\",\n    \"    def forward(self, x):\\n\",\n    \"        \\\"Norm\\\"\\n\",\n    \"        mean = x.mean(-1, keepdim=True)\\n\",\n    \"        std = x.std(-1, keepdim=True)\\n\",\n    \"        return self.a_2 * (x - mean) / (std + self.eps) + self.b_2\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class SublayerConnection(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"Add+Norm\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, size, dropout):\\n\",\n    \"        super(SublayerConnection, self).__init__()\\n\",\n    \"        self.norm = LayerNorm(size)\\n\",\n    \"        self.dropout = nn.Dropout(dropout)\\n\",\n    \"\\n\",\n    \"    def forward(self, x, sublayer):\\n\",\n    \"        \\\"add norm\\\"\\n\",\n    \"        return x + self.dropout(sublayer(self.norm(x)))\\n\",\n    \"\\n\",\n    \"class EncoderLayer(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"Encoder分为两层Self-Attn和Feed Forward\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, size, self_attn, feed_forward, dropout):\\n\",\n    \"        super(EncoderLayer, self).__init__()\\n\",\n    \"        self.self_attn = self_attn\\n\",\n    \"        self.feed_forward = feed_forward\\n\",\n    \"        self.sublayer = clones(SublayerConnection(size, dropout), 2)\\n\",\n    \"        self.size = size\\n\",\n    \"\\n\",\n    \"    def forward(self, x, mask):\\n\",\n    \"        \\\"Self-Attn和Feed Forward\\\"\\n\",\n    \"        x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, mask))\\n\",\n    \"        return self.sublayer[1](x, self.feed_forward)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Decoder部分\\n\",\n    \"class Decoder(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"带mask功能的通用Decoder结构\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, layer, N):\\n\",\n    \"        super(Decoder, self).__init__()\\n\",\n    \"        self.layers = clones(layer, N)\\n\",\n    \"        self.norm = LayerNorm(layer.size)\\n\",\n    \"        \\n\",\n    \"    def forward(self, x, memory, src_mask, tgt_mask):\\n\",\n    \"        for layer in self.layers:\\n\",\n    \"            x = layer(x, memory, src_mask, tgt_mask)\\n\",\n    \"        return self.norm(x)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class DecoderLayer(nn.Module):\\n\",\n    \"    \\\"\\\"\\\"Decoder is made of self-attn, src-attn, and feed forward\\\"\\\"\\\"\\n\",\n    \"    def __init__(self, size, self_attn, src_attn, feed_forward, dropout):\\n\",\n    \"        super(DecoderLayer, self).__init__()\\n\",\n    \"        self.size = size\\n\",\n    \"        self.self_attn = self_attn\\n\",\n    \"        self.src_attn = src_attn\\n\",\n    \"        self.feed_forward = feed_forward\\n\",\n    \"        self.sublayer = clones(SublayerConnection(size, dropout), 3)\\n\",\n    \" \\n\",\n    \"    def forward(self, x, memory, src_mask, tgt_mask):\\n\",\n    \"        \\\"将decoder的三个Sublayer串联起来\\\"\\n\",\n    \"        m = memory\\n\",\n    \"        x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, tgt_mask))\\n\",\n    \"        x = self.sublayer[1](x, lambda x: self.src_attn(x, m, m, src_mask))\\n\",\n    \"        return self.sublayer[2](x, self.feed_forward)\\n\",\n    \"\\n\",\n    \"def subsequent_mask(size):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    mask后续的位置，返回[size, size]尺寸下三角Tensor\\n\",\n    \"    对角线及其左下角全是1，右上角全是0\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    attn_shape = (1, size, size)\\n\",\n    \"    subsequent_mask = np.triu(np.ones(attn_shape), k=1).astype('uint8')\\n\",\n    \"    return torch.from_numpy(subsequent_mask) == 0\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Attention\\n\",\n    \"def attention(query, key, value, mask=None, dropout=None):\\n\",\n    \"    \\\"计算Attention即点乘V\\\"\\n\",\n    \"    d_k = query.size(-1)\\n\",\n    \"    # [B, h, L, L]\\n\",\n    \"    scores = torch.matmul(query, key.transpose(-2, -1)) \\\\\\n\",\n    \"             / math.sqrt(d_k)\\n\",\n    \"    if mask is not None:\\n\",\n    \"        scores = scores.masked_fill(mask == 0, -1e9)\\n\",\n    \"    p_attn = F.softmax(scores, dim = -1)\\n\",\n    \"    if dropout is not None:\\n\",\n    \"        p_attn = dropout(p_attn)\\n\",\n    \"    return torch.matmul(p_attn, value), p_attn\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class MultiHeadedAttention(nn.Module):\\n\",\n    \"    def __init__(self, h, d_model, dropout=0.1):\\n\",\n    \"        \\\"Take in model size and number of heads.\\\"\\n\",\n    \"        super(MultiHeadedAttention, self).__init__()\\n\",\n    \"        assert d_model % h == 0\\n\",\n    \"        self.d_k = d_model // h\\n\",\n    \"        self.h = h\\n\",\n    \"        self.linears = clones(nn.Linear(d_model, d_model), 4)\\n\",\n    \"        self.attn = None\\n\",\n    \"        self.dropout = nn.Dropout(p=dropout)\\n\",\n    \"        \\n\",\n    \"    def forward(self, query, key, value, mask=None):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        实现MultiHeadedAttention。\\n\",\n    \"           输入的q，k，v是形状 [batch, L, d_model]。\\n\",\n    \"           输出的x 的形状同上。\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        if mask is not None:\\n\",\n    \"            # Same mask applied to all h heads.\\n\",\n    \"            mask = mask.unsqueeze(1)\\n\",\n    \"        nbatches = query.size(0)\\n\",\n    \"        \\n\",\n    \"        # 1) 这一步qkv变化:[batch, L, d_model] ->[batch, h, L, d_model/h] \\n\",\n    \"        query, key, value = \\\\\\n\",\n    \"            [l(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2)\\n\",\n    \"                   for l, x in zip(self.linears, (query, key, value))]\\n\",\n    \"        \\n\",\n    \"        # 2) 计算注意力attn 得到attn*v 与attn\\n\",\n    \"        # qkv :[batch, h, L, d_model/h] -->x:[b, h, L, d_model/h], attn[b, h, L, L]\\n\",\n    \"        x, self.attn = attention(query, key, value, mask=mask, dropout=self.dropout)\\n\",\n    \"        # 3) 上一步的结果合并在一起还原成原始输入序列的形状\\n\",\n    \"        x = x.transpose(1, 2).contiguous().view(nbatches, -1, self.h * self.d_k)\\n\",\n    \"        # 最后再过一个线性层\\n\",\n    \"        return self.linears[-1](x)\\n\",\n    \"\\n\",\n    \"    \\n\",\n    \"# Position-wise Feed-Forward Networks\\n\",\n    \"class PositionwiseFeedForward(nn.Module):\\n\",\n    \"    \\\"实现FFN函数\\\"\\n\",\n    \"    def __init__(self, d_model, d_ff, dropout=0.1):\\n\",\n    \"        super(PositionwiseFeedForward, self).__init__()\\n\",\n    \"        self.w_1 = nn.Linear(d_model, d_ff)\\n\",\n    \"        self.w_2 = nn.Linear(d_ff, d_model)\\n\",\n    \"        self.dropout = nn.Dropout(dropout)\\n\",\n    \"\\n\",\n    \"    def forward(self, x):\\n\",\n    \"        return self.w_2(self.dropout(F.relu(self.w_1(x))))\\n\",\n    \"\\n\",\n    \"# Embeddings\\n\",\n    \"class Embeddings(nn.Module):\\n\",\n    \"    def __init__(self, d_model, vocab):\\n\",\n    \"        super(Embeddings, self).__init__()\\n\",\n    \"        self.lut = nn.Embedding(vocab, d_model)\\n\",\n    \"        self.d_model = d_model  #表示embedding的维度\\n\",\n    \"\\n\",\n    \"    def forward(self, x):\\n\",\n    \"        return self.lut(x) * math.sqrt(self.d_model)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Positional Encoding\\n\",\n    \"class PositionalEncoding(nn.Module):\\n\",\n    \"    \\\"实现PE功能\\\"\\n\",\n    \"    def __init__(self, d_model, dropout, max_len=5000):\\n\",\n    \"        super(PositionalEncoding, self).__init__()\\n\",\n    \"        self.dropout = nn.Dropout(p=dropout)\\n\",\n    \"        \\n\",\n    \"        pe = torch.zeros(max_len, d_model)\\n\",\n    \"        position = torch.arange(0., max_len).unsqueeze(1)\\n\",\n    \"        div_term = torch.exp(torch.arange(0., d_model, 2) *\\n\",\n    \"                             -(math.log(10000.0) / d_model))\\n\",\n    \"        \\n\",\n    \"        pe[:, 0::2] = torch.sin(position * div_term)    # 偶数列\\n\",\n    \"        pe[:, 1::2] = torch.cos(position * div_term)    # 奇数列\\n\",\n    \"        pe = pe.unsqueeze(0)           # [1, max_len, d_model]\\n\",\n    \"        self.register_buffer('pe', pe)\\n\",\n    \"        \\n\",\n    \"    def forward(self, x):\\n\",\n    \"        x = x + Variable(self.pe[:, :x.size(1)], requires_grad=False)\\n\",\n    \"        return self.dropout(x)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# 定义一个接受超参数并生成完整模型的函数\\n\",\n    \"def make_model(src_vocab, tgt_vocab, N=6, d_model=512, d_ff=2048, h=8, dropout=0.1):\\n\",\n    \"    \\\"根据输入的超参数构建一个模型\\\"\\n\",\n    \"    c = copy.deepcopy\\n\",\n    \"    attn = MultiHeadedAttention(h, d_model)\\n\",\n    \"    ff = PositionwiseFeedForward(d_model, d_ff, dropout)\\n\",\n    \"    \\n\",\n    \"    position = PositionalEncoding(d_model, dropout)\\n\",\n    \"    model = EncoderDecoder(\\n\",\n    \"        Encoder(EncoderLayer(d_model, c(attn), c(ff), dropout), N),\\n\",\n    \"        Decoder(DecoderLayer(d_model, c(attn), c(attn), \\n\",\n    \"                             c(ff), dropout), N),\\n\",\n    \"        nn.Sequential(Embeddings(d_model, src_vocab), c(position)),\\n\",\n    \"        nn.Sequential(Embeddings(d_model, tgt_vocab), c(position)),\\n\",\n    \"        Generator(d_model, tgt_vocab))\\n\",\n    \"     \\n\",\n    \"    # 使用xavier初始化参数，这个很重要\\n\",\n    \"    for p in model.parameters():\\n\",\n    \"        if p.dim() > 1:\\n\",\n    \"            nn.init.xavier_uniform_(p)\\n\",\n    \"    return model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([16, 50, 512])\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 测试MultiHeadedAttention的过程\\n\",\n    \"batch_size=16\\n\",\n    \"L = 50         # 序列长度\\n\",\n    \"d_model = 512  # 词向量维度\\n\",\n    \"h = 8\\n\",\n    \"x = torch.randn(batch_size, L, d_model)  # 生层一个测试序列x\\n\",\n    \"x.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 测试MultiHeadedAttention的过程\\n\",\n    \"obj = MultiHeadedAttention(8, 512)\\n\",\n    \"q = torch.randn(2,10, 512)  # 序列输入x\\n\",\n    \"line_net = clones(nn.Linear(512, 512), 4)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"linear: Linear(in_features=512, out_features=512, bias=True)\\n\",\n      \"x torch.Size([2, 10, 512])\\n\",\n      \"torch.Size([2, 10, 512])\\n\",\n      \"torch.Size([2, 10, 8, 64])\\n\",\n      \"torch.Size([2, 8, 10, 64])\\n\",\n      \"----------\\n\",\n      \"linear: Linear(in_features=512, out_features=512, bias=True)\\n\",\n      \"x torch.Size([2, 10, 512])\\n\",\n      \"torch.Size([2, 10, 512])\\n\",\n      \"torch.Size([2, 10, 8, 64])\\n\",\n      \"torch.Size([2, 8, 10, 64])\\n\",\n      \"----------\\n\",\n      \"linear: Linear(in_features=512, out_features=512, bias=True)\\n\",\n      \"x torch.Size([2, 10, 512])\\n\",\n      \"torch.Size([2, 10, 512])\\n\",\n      \"torch.Size([2, 10, 8, 64])\\n\",\n      \"torch.Size([2, 8, 10, 64])\\n\",\n      \"----------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for l,x in zip(line_net, (q, q, q)):\\n\",\n    \"    print(\\\"linear:\\\", l)\\n\",\n    \"    print(\\\"x\\\", x.size())\\n\",\n    \"    out = l(x)\\n\",\n    \"    print(out.size())\\n\",\n    \"    print(out.view(2, -1, 8, 64).size())\\n\",\n    \"    print(out.view(2, -1, 8, 64).transpose(1,2).size())\\n\",\n    \"    print(\\\"--\\\" * 5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"torch.Size([2, 8, 10, 64]) torch.Size([2, 8, 64, 10])\\n\",\n      \"d_k: 64\\n\",\n      \"soc: torch.Size([2, 8, 10, 10])\\n\",\n      \"attn size:  torch.Size([2, 8, 10, 10])\\n\",\n      \"torch.Size([2, 8, 10, 64])\\n\",\n      \"torch.Size([2, 10, 512])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"q, k, v = [l(x).view(2, -1, 8, 64).transpose(1,2) for l,x in zip(line_net, (q, q, q))]\\n\",\n    \"print(k.size(), k.transpose(-2, -1).size())\\n\",\n    \"d_k = d_model//h\\n\",\n    \"print(\\\"d_k:\\\", d_k)\\n\",\n    \"scores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k)\\n\",\n    \"print(\\\"soc:\\\", scores.size())\\n\",\n    \"attn = F.softmax(scores, dim = -1)\\n\",\n    \"print(\\\"attn size: \\\", attn.size())\\n\",\n    \"r_x = torch.matmul(attn, v)\\n\",\n    \"print(r_x.size())\\n\",\n    \"\\n\",\n    \"out = r_x.transpose(1, 2).contiguous().view(2, -1, 8 * 64)\\n\",\n    \"print(out.size())  # [2, 10, 512]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# obj.forward(x,x,x,mask=None)\\n\",\n    \"# X是一个序列，X的Embedding + posEmbedding 输入Encoder，这个输入我们称为 X_emb_pos\\n\",\n    \"# Encoder有6个子结构串行，第一个的输出结果，作为第二个的输入，以此类推得到最后一个子结构的输出。\\n\",\n    \"# 第一个子结构接受输入X_emb_pos 后，按照维度平均拆分成8个，比如如果X_emb_pos的维度是512 ，拆分后的维度就是512/8=64维。\\n\",\n    \"# 这8个tensor 分别做self-attention，这个部分是8个一起并行的 ，然后得到8个结果再合并在一起，进行Norm ，norm之后再输入FFN，之后再经过norm之后输入下一个子结构。\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.legend.Legend at 0x7f5ab293c9b0>\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAA3wAAAEyCAYAAACh2dIXAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3XV0FefWwOHfnLh7QoiQBHd3t+LuDqWFFiq3XqqUW6hQ2lKseCktbsUpVtwtSIC4AnG3I/P9MZSP3iIBjiW8z1pZCTlzZnZCcjL7lb0lWZYRBEEQBEEQBEEQyh6VqQMQBEEQBEEQBEEQDEMkfIIgCIIgCIIgCGWUSPgEQRAEQRAEQRDKKJHwCYIgCIIgCIIglFEi4RMEQRAEQRAEQSijRMInCIIgCIIgCIJQRomETxAEQRAEQRAEoYwSCZ8gCIIgCIIgCEIZJRI+QRAEQRAEQRCEMsrS1AE8DU9PTzkoKMjUYQiCIAiCIAiCIJjEuXPnUmVZ9nrccaUy4QsKCuLs2bOmDkMQBEEQBEEQBMEkJEmKLclxYkmnIAiCIAiCIAhCGSUSPkEQBEEQBEEQhDJKJHyCIAiCIAiCIAhllEj4BEEQBEEQBEEQyiiR8AmCIAiCIAiCIJRRIuETBEEQBEEQBEEoo0TCJwiCIAiCIAiCUEbpJeGTJGmZJEnJkiRdecjjkiRJP0mSFCFJUqgkSQ3ue2yMJEnhd9/G6CMeQRAEQRAEQRAEQX8zfL8AXR/xeDeg8t23CcACAEmS3IHPgaZAE+BzSZLc9BSTIAiCIAiCIAjCc81SHyeRZfmwJElBjzikD/CrLMsycFKSJFdJknyBdsBeWZbTASRJ2ouSOK7WR1zGlDXvY2SVLZJ3ZVQunkg2NkjWNqhsrJWPbW2xdHdH5eyMJEmmDtekCoq1RKbkEpWah5+rLbX9XLG2FKuLzVW+Op+0wjSyi7Ip0hah1qlR69QUa4vvvdfoNADYWdpha2mrvFnY/v+/LWxxs3XD2sLaxF+N8ECyDOp8KMyGomxQWYJ7CDznr1WPotXJqLW6u28y9tYW2FpZmDosQXi+ZMRCzi2w9wQHT7B1Ea9bj6DW6rgQl0mhWoufmx1+rnbidesB5OJitNnZaLOy7r1Z+flhW6WKqUN7anpJ+ErAD4i/798Jdz/3sM//iyRJE1BmBwkMDDRMlE9LlklethFN3uNfZCRrayw9PbH08sLS2wuLux9b+ZTDOiQYm5AQLFxcjBC04RVrdNy4ncPNOzmEJ+cSfvd9fEY+svz/x9lYqqgX4EqTYHcaB7nToIIbjjbG+tF8vuWr84nOjiYmK4a47DiSC5JJL0gnrTCNtII00grTKNAU6O16bjZueNl74W3vjbe9N152ysflHMoR7ByMn5MfKkkk/waj08KNnXD+V+Um6e8ErygH7ibt93hWhVoDlDfPSqaJ1wxEpuSy8kQsOy/fIr9Yey/J08n/PM7WSkW3Wr4MauhPsxAPVCpx0ykIeifLkHwNwrZB2Ha4c/mfj6uslMTPwRMcvJS3qt2hem9QPZ9/WxIy8jl0M4VDN1I4HplGbtE/X+s9Ha3xc7W7lwAGutvTvbYvHo42JorYsLS5eagTE1DHx1Mcf/d9Qjya5JR7yZ2cn/+v53m8NB7bd981QcT6Icmy/PijSnIiZYZvuyzLtR7w2A7gK1mWj979937gfaADYCPL8pd3P/8pkC/L8qxHXatRo0by2bNn9RK3vmgSo9HFX0JOvIycdBX51nV0GYnIOglZK6Gz9kJTrjUa22C0aWloUlLuvqWizcz8x7ksPD2xCQnBumIINsHKe9tq1bD08DDRV/dkdDqZbaFJfLPrOklZhQBYWUgEezpQ2ceJyt6OVPZ2ItjTgbj0PE5HZ3AmJp2rSVnoZFBJUKO8My0qejKhTQieZfRFx5hyi3O5knaFiIwIYrJjiM5SkrzkguR7x0hIuNm64W7rjoedBx62HnjYeSj/tvW4N0NnpbLCSmV17+O/3+tkHUXaIgo1hRRoCijUFlKkKaJAW0C+Op/0wnRS8lNIzk8muSCZlPwU0grT0Mm6ezHYWtgS7BJMiGsIlVwrEeKivPdz9MNCJUYhn5q6EC6thhNzIS0CXALBpwbYOIOt8/+8d4H8dLi2BWKPAzL41lUSv5r9wTXA1F+NwWl1MgevJ7PiRAxHwlOxspB4oUY5fJxtsbKUsLZQYalS3fexRHhyLlsvJZFTqMHfzY4BDfwZ2NCfAHd7U385glC66XSQcAau303yMqIBCQKaQvVe4F1Nec3KS7nvLVV5nxkPecnKAFbrd5TXMYuyPaCs1uo4EZnGoZsp/HUjmciUPAD8XO1oW9WLNpW9cLO3IjGzgMSMAuX9fR8XaXTYW1swvlUwL7UOwcXOysRf0dPRFRVRdPMmhVevUXjtGkU3blAcH482Pf0fx6mcnLAOCMDSxwcLV1csXFywcHFG5eJy92NXLFycsfL1xdLT00RfzcNJknROluVGjz3OSAnfQuAvWZZX3/33DZTlnO2AdrIsT3zQcQ9jjgnfAxVmwa1LkHRRGVWPO6HcOPX4Hvz///9GV1yM5tYtiqKiKI6KUt5HKu912dn3jrMKDMSubl3s6tXFrl49bKtWRbI0rxeuszHp/HdHGJfiM6nl58yENhWp4etEBQ8HrCwePbqWW6ThQlwGZ6LTOROTwdnYdBxsLPm4e3UGNvR/7pfClpRGpyEyM5LQ1FAup1wmNCWUqKwoZJTfdSdrJ4KdgwlyCSLIOYhgl2CCnIMIcA7AxsK4ybVGpyGtII1bebeIyooiMjNSecuK5Hbe7XvH2VvaU8erDvW961PPqx51vOrgaO1o1FhLpfx0OLsUTi1Sbnp860HLN5XR7pLc9GQlKonflY2QeE75XEBTaDpRuXEqYzLzi1l3Np6VJ2OJTy/Ax9mGkU0rMLRJIF5Oj//dKFRr2XP1NuvPJnAsMhVZhhYVPRjUyJ9utXzF0ilBeBKyDBdXwf5pkHtbmb0LaQvVeiqzdk4+jz+HTqu8hh3+TpkZdAuG1m9DnaFgWfa2GITdyuaddZe4disba0sVzUI8aFvFi7ZVvKjo5fDY+yhZlglPzmX2/nB2hN7Cxc6KiW1DGNsiCHtr87rfvJ+sVlN49SoFV65SeO0ahVevUhQZCRplNlPl4oJttWpYV6iAVYA/1gEBWPkHYB3gX+pX1ZlbwtcDeA3ojlKg5SdZlpvcLdpyDvi7aud5oOHfe/oeptQkfPeTZeWm6c9PlKVU9UdBp6nKsoOHPkVGm5ZGUUSk8oN88SIFFy+iSUkBQLKzw65WLezq18eheTPsGjZEZW2aF7D49Hy+3n2dHaG38HG24b0u1ehf3++ZljVFJOcwZdNlzsRk0DzEgxn9axPs6aDHqMsGrU7L5dTLHE86zpnbZ7iadvXeMkxXG1dqe9amtldt6njWoap7VTxsPUpF8pxbnHsvCbyadpWLyRcJzwxHJ+uQkKjsVllJAL3r0bRcU7zsvUwdsvnISoDjc5Wlm+o8qNRJSfSCWj/9/pb0aLi6CULXQcp1qDscus8Em9KfeBeqtXy96zprzsRRqNbRJNidMc2DeKGmz2MHqh4mMbOAjecS2HAugbj0fKr4OLJgZEMqepX+75cgGFx+Omx/S0nWAptDo/FQ5QVlBcLT0Ong5i449C3cugjO/tDqP8q9mJWtfmM3AY1Wx8LDUfy47yYudtZ81qsGnav7YGf99INMV5OymPXnTQ5cT8bT0YbJ7SsyvGkgNpamH7iSdTqKrl8n7+Qp8k6dpODMWXR3l2FauLtjW7MmtjVrYFujBrY1amLlV75U3Pc8DaMmfJIkrUaZrfME7qBU3rQCkGX5Z0n5Ls9FKciSD4yTZfns3ee+CHx091TTZVle/rjrlcqE729FOXDoGzi5AKwdoeOn0HAclHC5mizLaJKSyL94kYKLlyi4eJHCsDDQaJDs7XFo1gzH1q1waN0Ga/8HbofUq5xCNfMORrLsWDQqCSa2qcjEtiF6GwnS6WTWnInnq11hFGl0vNmxMhPahDz1TVhZcTvvNscSj3Es6Rgnb50kpzgHCYkaHjWo61X3XoIX4BRQpl7kcotzCU0N5VLyJS4kXyA0NZQ8tbJcpbp7dVr7t6a1X2tqe9Z+fpeARh6EdWOURK/WQGjxOpT71zjc09Nq4PC3yo2TRyUYtBzK1dbf+Y3sVlYBE1eeIzQhi8GN/BnbIpga5Z31dn6dTubA9WTe3xhKkVrLzEF16V7bV2/nF4QyJ/owbH4Fcu9Ah0+V1zB9vZ7LMkTsV17D4k+Bky8MWgGBTfVzfhOISM7lnfWXuBSfSc86vkzrUwt3B/0N/p+LTWfmnhucjErHz9WOtzpXYUADP6PfWxTHxZF79Cj5J0+Rf+oU2qwsAKyDg3Fo3gz7Jk2xq18PS2/vMnXf8zhGn+EzplKd8P0t+Trsek95YXvAMs8nocvLI+/UaXKPHCbv8BHUiYmA8kvg2KY1jm3bYt+kid6Xfx4JT+E/ay6SlldM/wZ+vNelKr4udnq9xt+SswuZuu0qOy/fpqqPE18NqE2DwOeng4dO1hGaEsre2L0cTTxKVFYUAN523rTwa0HL8i1p5tsMV1tXE0dqXFqdlvDMcI4mHuVIwhEupVxCK2txtXGlpV9LWvu1pmX5ls/P9+XcL7D9bfCqCkN/VyptGkr0Ydj4MhRkQJfp0PilUlcd71xsOhNXnqegWMOPQ+vTuUYJlog9paTMAiavOs+FuExebBnMlO7VnvuBK0H4B00xHJwOx2aDR0UYsATK1zfMtWQZYo7AtjeVpesDFkONPoa5loFodTLLj0Uzc88N7K0t+G/fWvSsU94g15JlmWMRacz88waX4jMZ2yKIz3rWMGhxKlmWKbp5k5y9+8jZu5eiGzcAsCzvi0Oz5jg0a4p906ZY+Rjudbs0EAlfaSDLyhKpPR8rm4sHLIWafZ/xlDLF0THkHTlM7uEj5J85g1xcjIWbG05du+DSvTt2DRsiPWO1qt1XbvPG6guEeDnw7cA61PE3zg313mt3+OyPK9zOLmRC6xA+6FqtzFbDk2WZq2lX2R29mz2xe7iddxsrlRWNfBrR0q8lLcq3oJJrpedqJOtxsoqyOJF0giOJRziaeJT0wnQsJAua+Taje0h3OgR0KJt7/3Ra2PuZUpSlUicYuFwpwmJouSmw5RWI2KcUT+g9B+xKx0DMujPxfLLlCr6utiwe3YgqPk4Gv2axRseMnWH8cjyGRhXcmDu8AeVcSv9yMkF4ZqnhsHG8Uveg4VjoMgOsjbCFIy8N1gyD+NPKwFWzSaVi4Co2LY9311/iTEwGnar7MKN/LbydDP9aotPJfLkjjGXHoulVtzyzBtXVa1stWaejMDSU7L17ydm7D3VcHEgSdg0b4Ny5M47t22MVULZWLj0rkfCVJoVZ8PtgpQrVgMV6LYagKygg9+hRsnfuJPfgX8iFhVj6+ODcrRvOPbpjW6vWE//ibL6QwLvrQ6nt58KKcU1wsTduBaecQjUzdl5n9ek4RjWrwLQ+NcvML78sy1xPv87umN3sidlDYm4ilipLWpZvSZegLrQPaF82ExYD0Mk6rqZe5UD8AXZF7yIxNxEbCxva+LehR3APWvm3MnqRGoMoyoVNLyuFoZpMgC5fGbcKnU6nJJr7vwCn8jBwKQQ0Md71n5Baq2P6DiXpal3ZkznD6uNqb9y9z1svJfHhxlDsrS34aVh9WlQ0v8pvgmA051bA7g/B0lYZNKre07jXVxfApgkQthWaTISuX+lvCakBHI9M5aUVZ7FQSUztVZP+Rl5eKcsyPx+K4pvd12lVyZOfRzV85lZaReHhZG7aTPaOHWiSk8HKCodmzXDq3AmnDh3MsjqmuRAJX2lTlAurBiuVPPsthDqD9X4JXV4eOQf/UpK/I0dArcYqIACX3r1xHTgAK9/H7yv5/VQsn2y5QrNgDxaPaWSyfnmyLPP1russPBzF2BZBfN6rRqlO+jIKM9gauZWN4RuJzorGUrKkafmmdA3qSvuA9rjYlO4qUqYmyzKXUi6xM3one2L2kF6YjpOVE50qdKJXxV408mlUOn9+shJh9RC4cxW6fq1UzzSVhLOwYZwSU7+fDfIa9qwy8oqZvOo8xyPTGN8qmCndqmFpomWV4XdyeOW3c0Sn5vFul6q82rZi6fwZFIRncfJn2P0BhLSDvj+Ds4n2t+p0sPdTZfCqag9lOam1+bVUOR+Xwcglp/B3s2PFi00Mto2mJNadjWfKpsvULO/MsrGNn7iFljY7m+ydO8ncuInCy5fB0hLHtm1x7toFx7ZtsXA2wiqVMkAkfKVRcR6sGgIxR6HvfKg33GCX0mZlkbNvH9k7dpB34iRIEo7t2uE2ZDAOrVohWfx7dGvx4Sim7wyjQzVv5o9oYPIS47KsLC1YejSa8a2C+aRH9VJ1wyTLMmfvnGX9zfXsi92HWqemnlc9+lTqQ6fATs/PvjMj0+g0nLp1ip3RO9kXu498TT7BLsEMrjKY3pV642xdSv7IJF2A1cOUwaKBy5QKdqZWkAlrRyoDV8PXKstLzcTNOzmMX3GGO9lFzOhXm4EN/U0dErlFGj7YGMqO0Fu82q4iH3StZuqQBMF4QtcpqxOq91IKp5jDrNqphbDrA/BrAMPWgqP5VH8Ou5XNkIUncHOwZv3E5ng7m345+P6wO0xedR5fFzt+fbHJY/uOyjodeSdOkLVpMzn79iEXFWFTpQou/fvh0qtXqek3bU5EwldaFecr68mjDkHvn6DBaMNfMiGBzHXrydy4EW1aGlbly+M6eDCuA/pj6eWFLMv8uC+c2fvD6VHblx+G1NPrmu1nIcsyX2y7xi/HY5jYJoQPu1Uz+6QvvTCdrRFb2RC+gdjsWJysnehdsTcDKg+gsltlU4f3XCnUFPJn7J+svb6W0NRQbC1s6RbcjSFVh1DTs6apw3u4yAOwZgTYeyiJlY8ZxVqYDcu7Q3oUjN2u3DiZ2K2sAvrMPYYMLBrVkPpmVPBJlmU+2nyF1afjmNGvNsObBpo6JEEwvJt/Kvc6gc1hxAbzao1wfQdsGA+O3jByI3ia/u9yZEouQxaewMpCxfpXmuPvZj6zj+di03nxl7NYW6pYMa7JA6sca7OyyNywgYzfV6FOSkLl7IxLzx649B+Abc3SvULL1ETCV5qpC5RR8oh90PMHaPSiUS4rFxeTc+AAGWvXkn/iJFha4tSxA9sqteGbRFsGNfTn6wF1sDCzIimyLPPZH1dZeTKWSe0q8l6Xqmb54nEj/QYrrq5gV8wuNDoNDbwbMLDKQDpX6IytpRn9sXtOhaWFsfbGWnZG76RAU0BNj5oMqTqEbsHdzOv/J+UmLOkIroEwclPJmg8bW85tWNpZGcAa/6dScc9E8oo0DPr5BHHp+Wx8tQVVyxm+OMuT0mh1vPzrWQ6Hp7JkdCPaV/M2dUiCYDhxJ+HXvuBVBcZsN06BqSeVcFZZcSWpYMJf4GL4NlcPDSUjn0E/n0Ct1bFuYnNCzLCXZ/idHEYvO01uoYYlYxrRNESZqSuKiibjt5Vkbt6CXFCAfePGuA0bimPHjqhsysAeejMgEr7STl0I60ZD+B7o/h00edmoly+OiSFj3TpurV6PTUEuqRWqUufd13Du2OGZK3wagk4n88kfV1h1Ko43OlTi7ReqmjokQElGT9w6wYqrKziedBw7Szv6V+7PoCqDqOhquptg4eFyinPYFrmNdTfWEZkVibutOyOqj2BI1SGm30tZkAGLO0JRNrx8EFwDTBvPo6RGwLIXlH6j4/eaJDHV6WQm/naO/WF3WDqmsVknUnlFGgYvPEF0ah7rJjanlp/YtyuUQXeuwvJu4OAF43ab1ZLJf0kOgyWdwLMKjNtlklnI5OxCBi08QUZeMWsmNNdrj1B9S8osYNTSU6RkF7KluTVWm9eRe+gQkpUVzj174j56FLbVq5s6zDJHJHxlgaYI1o+DGzugxyylz5URLT4cxXdbLzHNJpqGJ3eiTkzEOjgYj/Ev4ty7Nypr41a2exydTmbKpsusPRvPW52q8GYn0y3DUOvU7InZw4qrK7iefh1PO09GVB/BoCqDTJ80CCXy9x7L5VeWcyTxCPaW9gyqMohRNUbh42CCWTWtBn4fADHHlKWSgc2MH8OTSjgLK3opDdrH7QQb486ufbUrjIWHovi8Vw3GtQw26rWfxp3sQvrPP06xVsfmSS3MatmWIDyzjBhY2kWZNRu/R1mlYO7CtsPaEVB3uFJbwYirhzLyihmy6AQJGQX89lJTs+89LKvVRK/eSMS8hQRk3Ubl7o778OG4DR0iqmwakEj4ygpNMawbpSzvHLcbAhob5bJnYtIZuugknav7sGBkA9Bqyd6zh7SlSym6FoallxfuY0bjOmQIFk7ms0RKp5N5f2MoG84lmOQmL1+dz4abG1gZtpLbebcJcQlhbM2x9AjpgbWFeSXIQsndSL/BsivL2B2zG5WkonfF3oytOZZgFyP+fO36EE4tgN5zocEo4133Wd38E1YPheDWMHw9WBrn92DdmXje3xjKyGaB/LfPk7efMZWbd3IYsOA45Zxt2fBqC1zsjNv2RhAMIjcZlr6grFJ4cTd4l6KZnoNfwaGvodu3RquEnFOoZsSSU1y/ncMv4xqbdesWubiYzD/+IG3hItQJCaiDKjLHvRFO3bsza0TjUvPaW1qJhK8sKciEha1BBl45bPDGxqm5RfT46Qi2VhZse70Vzrb/f8MhyzJ5x4+TvnQpecdPoHJ0xH3cWNzHjMHC0TzWlWt1Mq/8do6/biSz8dUWRmkKX6QtYt2NdSy5vIT0wnQa+jRkXM1xtPZvjUoyvyWwwtOJz4lnxdUVbInYQrG2mE4VOvFK3Veo4lbFsBc+/ytsfR2avgrdvjbstQzhwu/wxySoPQj6LQIDLws/EZnGqKWnaF7Rg2VjG2NlotYLT+t4RCpjlp+mUQV3VrzYxGyKZAnCUynMgl96QFokjN5qtIFrvdHplLoKN3fD6C0Q3Magl9NodYxaepozMeksGt2QDtXMcJ82dxO9TZtJW7QIdVIStrVq4Tl5Eo7t2jH3QASz9t5kaq8ajC0FqytKM5HwlTUJ55T9MJW7wNDfDbasQKuTGbPsNKdj0tk8qQU1yz98+WHB1aukLlhA7r79WLi64vHyS7gNH47KznR9Yf6WmV9M99lHsLZUsf2N1gbrF6jWqtkUvolFlxeRnJ9Mk3JNmFxvMg18TF+ZUDCctII0fg/7nTXX15CrzqVbcDcm15tMoLMBlijFnlCWRQa1UqrZGbOpuj4dmQX7p0Hz16DLdINdJjo1j37zj+HhYM2mSS1L7QzZpvMJvL3uEv3r+zFrcF0xSi6UTjqdshQ9+rDS5qCy+bRqeSKF2cp+vrwUpYiLWwWDXWrO/nBm7b3JzIF1GNTI/PZp64qLydq4kdRFi9HcuoVt3Tp4TZ6MQ+vW916ndDqZCSvP8teNFFZPaEbjIHcTR112iYSvLDo+F/78WGmw3OxVg1zi+703+Wl/ON8MqM2QxiW7eS24fIWU2bPJO3oUCy9PPCe+guvgQSbf43c6Op2hi07Qp54fPwypp9dzq3VqtkVuY+GlhSTlJVHfuz6v1XuNJr5N9HodwbxlFWWx/Mpyfg/7HbVOTb/K/ZhYZyLlHMrp5wKZcbCoPdi6wMv7DT67b1CyDLveh9OLlJ5bNfvq/RJZ+Wr6zT9GRn4xWya3pIKHg96vYUx/3/iZUyEqQXgifzdW7/E9NB5v6mieTWoELO4AboHw4p8Gacx+IS6DgT+foGcdX2YPra/38z8LWaMhc9MmUucvQHP7Nnb16uE5eTIOrVo+cEAqu1BNn7nHyC3SsP31VviYQd/AskgkfGWRLCuNliP2KaXO9dzf6vDNFMYsP03/+v58N6jOE48o5589S8qPs8k/exbL8r54TZ6MS58+SJamm5H4cd9NftwXzqxBdRmgh0bLOlnHzuidzL84n/iceGp51OK1+q/RonwLMQL/HEvJT2Hx5cWsv7keFSqGVhvK+Nrjcbd9hlHN4jylwEFmLLy0XylhXtpp1co+nowYmHRSr5U71VodY5ef5nR0Or+/1IwmwaV/RFmWZd7fEMr6cwmseqkpLSqZ7z4eQfiX5OuwqC0Et1X6hZaFv5Hhe+H3QVCrPwxYqtevKbdIQ4+fjqDRyux8s7XZrE6QZZncv/4iedYsiiMisatbF883XsehxePve27czqHvvGPUKO/M6pebieXpBiASvrIqPx1+bq0s65p4WBn514OkzAJ6/HQEH2dbNk9qiZ21xVOdR5Zl8o4dJ2X2bAovX8Y6OBifDz/AsW1bvcT5pLQ6mWGLT3IlMYvtr7d6pv41F5Iv8O3pb7mSdoWqblWZXG8y7QLaiURPuCcxN5EFFxewLWobtha2jKk5hrE1x2Jv9YQjwbKstGW5vh2Gr4PKnQ0TsCmk3FT2JIe0g2Fr9HbD9PfqBH0N7piLgmIt3X86QrFGx5632hhsebog6JWmGJZ2gqwEePWEefYLfVpHvof9X0DnadDyTb2d9v0Nl9hwLoE1E5qbzYBVweUrJM+cSf7p01hXqIDXO2/j1LnzE933bLuUxOurLzCmeQW+6FPLgNE+n0qa8IlUu7Sxd4eByyAzXinioIeEXa3V8dqq8xRrdMwb0eCpkz0ASZJwbNWSoHVr8Z87B3Q64ie+QtzLEyiKjHzmWJ+UhUpi9tB6WFuqeGPNBYo02ic+R2JuIu8eepfRu0aTnJ/M9FbTWddrHe0D24tkT/gHP0c/vmz1JZt7b6alX0sWXFpA7y292RG1gycaXDv3C4RthU5flK1kD5SZyo6fKwUQLvyml1NeS8pm/sEI+tf3K1PJHoCdtQXfDapDUlYBM3aGmTocQSiZQ9/ArUvQa3bZSvYAWr0FNfvBvqkQeUAvp9x5+RbrziYwqV0ls0j2ihMSSXznXWIGDaIoPByfTz8hZPs2nF944Ynve3rVLc9LrYJZcSKWTecTDBSx8Dhihq+0Ovoj7PtcL03Z/7v9GkuPRjN3eH161imvpwAVcnEx6atWkTpvPrr8fNyGDcPrtclYuBq+cub9/rw8Fjg/AAAgAElEQVR6mwkrzzG+VTCf9qxRoufkFuey5PISVl5biUpSMa7WuKebrRGeW+fvnOfr018Tlh5GPa96fNjkQ2p61nz0k7KTYF5T8K0LY7aVjWVQ/0ung197Q9JFePXYMxVAUGt19J13jDvZhex9qy1uDmWz/cmMnWEsOhzFry82oU0VM25WLQhxp2B517u96+aZOhrDKM5T9vMV5cDkU8/UY/RWVgFdfzxCkIc9G15tYdKqwtqcHFIX/EzGypWgUuE+diweL7/0zFXYNVodI5ac4mJ8Jlsmt6S6r/k2kC9txAxfWdfiDajUGfZ8pIyiPaXdV26x9Gg0Y1sE6T3ZA5CsrfEYO5aKe3bjOngQGatWEdGlK+krf0NWq/V+vYd5oWY5xjSvwNKj0Ry8nvzIY7U6LRtubqDH5h4svbKULkFd2NZvG5PqTRLJnvBEGvg0YHWP1UxrMY24nDiG7RjGp8c+JbUg9cFPkGXY8S5oi5WR8bKY7IHSlqHP3RvBLZOUBPApLTocxdWkbP7bp1aZTfYA3u5chYpeDny4MZTsQuO9dgrCEynKhc0TwMUfun5l6mgMx9pB6YmanQQHvnzq0+h0Mm+vvYRaq+PHofVNluzJskzWtm1Edu9O+vLlOPfsScU9u/F+6z96abllaaFi7vAGONla8sHGULS60jfZVNqJhK+0Uqmg30Kw94T1Y5WSwU8oI6+YKZsuU9ffhY+6G7YJqqW7O76ff07wls3Y1azBnenTierbj7wTJwx63ftN6V6dauWceHf9JZKzCx94zJXUKwzbMYwvTnxBBecKrO6xmhmtZ+iv6qLw3LFQWdCvcj929NvB2Jpj2R61nZ6be7LsyjKKtcX/PPjaH3BjB7SbAh4VTROwsbhVUG4IY4/CqZ+f6hQRyTnM3hdO99rl6FbbV88BmhdbKwu+G1SX29mFzNghlnYKZmrPR5ARq9yf2JbxWZyAxsoKq1MLIeHpVp0tPhLFiag0Pu9Vg2BP01QVLrx5k7hRo0l6732sfMoRtG4t5b+agVU5/d73eDnZ8GnPGoQmZPHbyVi9nlt4PJHwlWYOHjBwqVLx7ilGmL7dc53sQg3fDKxjtMpJtlWqELB0Kf7z5yNr1MSNe5HE999Hk5Zm+GtbWTB3eH3yi7W8te4iuvtGmHKKc5h+cjrDdwwntSCVmW1msqLrCmp5ig3Ggn44WjvydqO32dJnC419GvPDuR8YsHUAZ26fUQ7IT4ed7ylLOZu/ZtpgjaX+SKjSVSmAkHLziZ6q1SkVLO1tLPii9/Pxe1o/0I2JbSuy5kw8f9149EoFQTC6G7vg/AqlkEmFFqaOxjg6fApOvrD1DaUK8RO4kpjFd3/eoGvNcgw2Qb89bW4ed775luh+/SkKD6fcF18QtHYNdrVrG+yaveuWp3VlT2buucHtrAcPvAuGIRK+0q5CC2g0Hs4shluhJX7a+bgMVp+O58WWQVQrZ9xROEmScOrQnpCtW/GcNInsXbuJ7N6DjPXrkZ9haVdJVPJ2YmrvGhyLSGP1mThkWWZ39G56b+nNupvrGFZtGFv7bqVrcFdRkEUwiArOFZjTcQ4LOi1ArVPz4p4X+ezYZ2Tt/hDy05RlQqW1ufqTkiTo9RNY2SvLwJ7ghumX4zGcj8tkaq+aeDnZGDBI8/KfTpWp4uPIhxsvk1UglnYKZiI3RSkk51Mb2n9k6miMx9YZesyC5KtwfE6Jn1ZQrOXNNRdwd7Dmq/61jXq/IcsyWTt2ENW9O+m//IJr//6E7N6F25DBSBZPX7SvJCRJ4su+tVBrdUzbftWg1xL+SSR8ZUGHj8HOHXa+W6K9MBqtjo83X6Gcsy3/6WS63l4qGxu83nidkC2bsa1cmduffkbsqNEURUQY9LqDGwXQNNidmfuPMX7PBN47/B7e9t6s6r6KKU2n4Gj97OvVBeFxWvm1YnOfzbxY60W2RvxB78yjbK/fF7mc4UZXzZKTD/T8HpIuKOXOSyA2LY+Ze67ToZo3ferpf++xObOxVJZ2puQW8d/t10wdjiAoe4+3vQmFWdB/EVg+PwMwAFTrDtV7K5VJ00pWjfy7P28QmZLHrEH1jLr3uDg+nrgXXyTpnXex9PIiaM1qfP87DUs3N6PFUMHDgTc6Vmbn5dvsD7tjtOs+70TCVxbYuUHnLyD+FISueezhv56IJexWNp/3qoGDGfR0sqlYkcCVv+I7fTrFERFE9etP8g8/ois0zHS/RqehTq0zaHxncuHOJaY0mcKq7qseXz1REPTMztKOt2pPYG22Dj/ZkikZZ3hl3yvEZ8ebOjTjqtkPag+Cw98qid8j6HQyH2wMxUqlYnq/Ws/lTHwdf1cmtavIhnMJ4oZJML3Qtcre446fg0/JqmCXOd1ngoUNbP/PY9tlhd/J4ZfjMQxrEkiryp5GCU/WaklfsYKo3n0oDL2Mz2efErRuLXZ16xrl+v/r5dYhVPZ25LM/rpJfrDFJDM8bvSR8kiR1lSTphiRJEZIkffiAx3+QJOni3bebkiRl3veY9r7HtuojnudS3eHg3wT+/BQKMh962J3sQr7fe5O2VbzoWst8CpFIkoTrgP6E7NqJS48epC1cSFTvPuSdPq3X61xLu8aQHUNYE7GYAJtGZEe8RV2XHlioDLuMQRAe6uAMqqbFsbLDXKY0mcKllEv029qPJZeXoNY9R0v2us8EBy/44zXQPbxf5qrTcZyMSufjHtXxdbEzYoDm5fUOlalWzokpmy6TmV/8+CcIgiEU5cLez8CvITSbZOpoTMepHHSeCtGH4eKqhx4myzLTtl/D3tqCd18wzgqroshIYkeM5M5XX2PfpDEh27fhPny4wZdvPoq1pYrp/WqTmFnA7H3hJovjefLMCZ8kSRbAPKAbUAMYJknSP4Z4ZFl+S5blerIs1wPmAJvue7jg78dkWe79rPE8t1Qq6PEdFKTDwekPPey/269RrNUxrU9NsxwZt3R3p/zXXxH4yy8AxI0ew+3pM9AVFDzTedVaNfMuzmPEjhFkFGYwp8Mc1vSdj4u1J1O3Xn2yptiCoC+J5+DkfGg4FovgNgyvPpw/+vxBK79WzD4/m5E7RxKRYdglzmbDzk2p2nnnClxY+cBDEjML+GpnGC0reTCksfGLHJgTa0sV3w2qS3peMdNF1U7BVI7+ALl3oOs3yn3I86zBWAhsDn9+rOxpfIB9YckcCU/lrU5V8HA07NJXWa0m9eeFRPftR3F0NOW//YaAn3/Gytc8Kho3CXZnaOMAlhyN5lrSk1eaF56MPn47mwARsixHybJcDKwB+jzi+GHAaj1cV/hfvnWh8UtwZskDC7gcCU9he+gtJrerRAUP05T/LSmHZk0J2bIZt5EjyVi5kqi+fck/f/6pznU9/TrDdgzj50s/0y24G1v6bKFdQDtc7K14v0tVzsRk8MfFJD1/BYLwGFq1UtnN0Qc6T7v3aR8HH35s/yPft/ueW7m3GLx9MMuvLEf7iFmvMqNGXwhoplQd/p9WM7Is89Gmy+hk+Lp/HbMcsDK2Wn4ujG8VzIbzCVxNyjJ1OMLzJjNOKVRSe5DSouB5p1Ip/VOL82DPlH89XKTR8uWOa1T0cmBU8woGDaXw2jWiBw8h5ccfcezYkZAd23Hp3dvsXjc/7FYNVzsrPtp8WfTmMzB9JHx+wP0bThLufu5fJEmqAAQDB+77tK0kSWclSTopSVLfh11EkqQJd487m5Ly4JETAWj/4AIuRRotn/1xlSAPeya2DTFhgCWnsren3CcfE7hiBWi0ypKEb74t8d4+tVbN/IvzGbZ9GGmFafzU/idmtJ6Bi43LvWMGNwqgrr8LM3aGkVsk1pELRnTsR2U2q8cssHX518OdK3Rmc5/NtPFvw/fnvmfs7rHEZpfx3kWSBF1nQF6KMnNwnwPXkzl0M4V3u1QlwN3eRAGan0ntK+FqZ8X0HWFipYJgXHs/B0kFnaaaOhLz4VUVWr8Dl9dD+L5/PLT8WAyxafl81qumwRqsy2o1KT/NIXrQYDSpKfjN+Qn/H3/A0tM4ewWflKu9NZ/0rM7F+ExWnY4zdThlmj5+4h40XPCwvzpDgQ2yLN8/VB0oy3IjYDjwoyRJD+w2LMvyIlmWG8my3MjLy+vZIi7L7FyV2YL4U3Dp/ydSFx6KIjo1j2l9amFrVbr2qzk0bULwH3/gOmQw6cuXE92vPwWXLj3yOTfSbzBsxzAWXFpAl+AubOmzhfaB7f91nEolMbV3TZJzipizX6wjF4wkOwkOz1Iqu1Xr8dDDPOw8+KHdD3zV+isisyIZuHUgv4f9jk42bPsSk/JrCHWGwIl5SgNnlMrCX++6TrCnA6MNPDJe2rjYWfFmx8ocj0zjoOjNJxhL3Em4uglavgEu/qaOxry0egs8q8COt5TZPiA5u5A5+8PpVN2btlUMcw9bFB1NzPARpM6fj0vPHlTcvh3nzp0Nci196lvPj5aVPPh213WSs0VvPkPRR8KXANy/mcIfeNj6uKH8z3JOWZaT7r6PAv4C6ushpudb3WEQ0FTZSF2QQWxaHnMPRtCjji9tDPRCY2gWjg74Tp1KwNIl6AoLiRk2nORZ3yMX/7NYgU7W8cuVXxi6YyipBanMbj+br1t//Y9Zvf9VP9CNQQ39WXYsmsiUXEN/KYIAf30FOg288N/HHipJEj1DerK592YalWvE16e/5uU/XyYxN9EIgZpIx8+UmYP9XwCw4VwC4cm5vN+lqsFGxkuzEc0qEOzpwIyd19Foy/BggGAedDrY9QE4lVearAv/ZGmjLO3MjIMT8wH4ds8NirU6Pu6h/yqmsiyTsWYt0f0HUBwXh9+PP1L+m2+wcHn4fY85UXrz1aZIq2OaaDVjMPr4y3kGqCxJUrAkSdYoSd2/qm1KklQVcANO3Pc5N0mSbO5+7Am0BMT/9rNSqaC7UsBFPjCdqVuvYqWS+NQALzTG5tiyJSFb/8ClX1/SFi8mZvgIimNiALiTd4cJeycw69ws2vq3ZUufLXQI7FCi877ftRq2lhaigItgeCk34MJvyn5bt6ASP83HwYf5HecztflUrqReYcDWAWyP2m64OE3JxR9avA5XNlIYdYLv996kQaCrWVUWNidWFio+7FaNiORc1px5zlp6CMYXugZuXVSWclqbdz0Ak6nQAqr1hGOzuRwexYZzCbzYKphgT/1+vzSpqSS8OonbU6diX78+IVv/wLlrF71ewxiCPR2Y3K4S20NvcTo63dThlEnPnPDJsqwBXgP2AGHAOlmWr0qSNE2SpPurbg4D1sj/vJuuDpyVJOkScBD4WpZlkfDpg2+duwVclpJ88wxvv1CVci62po5KLyycnCg/fTp+s2dTHB9PVP8BHF8ynQFb+xOaEsrU5lP5od0PuNq6lvicXk42vNW5CkfCU/nzmuhrJRjQ/mlg5QBt3n3ip0qSxIAqA9jUZxNV3Kow5cgUPj76MXnqPAMEamIt3wTHcmRufpeUnAI+6l7d7AoOmJMXavjQJNidH/fdJKfwOWrnIRhXUS7s+0JZel17kKmjMW8dP0NW5xG1aRqejja81r6SXk+fc+CA0r7q+HF8PvqIgCWLsfLx0es1jGlCmxC8nWz4dvd1MfBuAHpZGyPL8k5ZlqvIslxRluXpdz/3mSzLW+87Zqosyx/+z/OOy7JcW5blunffL9VHPIJC2+4jMiUnvrVbwZhmgaYOR++cu7yA74ZV3AlwwO2733jjDy1r2i5lQJUBT3VjOKp5Bar4OPLf7dcoVD8HFREF44s7Bde3K8mMw9Nvovdz9GNZl2W8UvcVtkdtZ/C2wVxNvarHQM2AjSM5LadQLucKHweG0SjI3dQRmTVJkvikR3VSc4v5+VCkqcMRyqpjP0Lubej6tWjD8DheVYkN6EvX/G1MbeuMk62VXk6ry8/n1qefkTBpMpY+PgRv3ID76FFIpfz/w87agjc6VuZsbIbYj2wApfunQ3ikP67nMaN4CDV1N7AM32nqcPQuLC2MEWff5I2+Gdwc1Ijal3PRjf4P+ecvPNX5rCxUTO1dk4SMAhYeitJztMJzT5Zh3+dKG4bmz96g2FJlyeR6k1nWZRnFumJG7hzJ8ivLy1RBl+/uNOCKLogx+ctB/Wy9OJ8Hdfxd6VuvPEuORJOUKb5fgp793Yah1kAIaGLqaMxeXpGG1291QZIkeqQu18s5i8LDiR48mMwNG/B4+SWC167BpnJlvZzbHAxpHEAFD3tm7rmJTrRp0CuR8JVRaq2OH/eFc927B7JHZTg44x9tGkozWZb59eqvDN85nHx1Pou6LqHPf1cS9PtvoFIRO3IkKfPmIWuevM1Ci4qe9Kjty4JDEaTkFBkgeuG5dWMXxJ2Adh/qdd9LQ5+GbOi1gfaB7fn+3Pe8svcVUgtS9XZ+U4lKyeX30wmcqvw2VrlJStVO4bHe7VIVGfhuzw1ThyKUNfumAhJ0/sLUkZQK8/+K4HKOE+k1xyKFroHksKc+lyzLZG7YQPSgwWgzswhcugTvd95BsrbWY8SmZ2Wh4u3OVQi7lc22UNEfWZ9EwldGrTsbT1x6Pm93qYHU7kNIvqaUUC7lsouz+c/B/zDz7Exa+7VmY++NNPVtCoBdvXoEb9mMc48epM6ZS9y4F1EnP/mygHdeqEKxRsdCsSxK0BetRqk46VEJ6o/S++ldbFyY1XYWnzX/jAvJFxiwdQBHE4/q/TrGNHPPDawtVfTuO1QpfnD0B8gR+2sfx9/NnvGtgtl0IZEriaIZu6AncafgykbRhqGE4tPzWXwkmn71/SjX4yOwdlT2bz8FbW4eSe9/wK1PPsWufj1CNm/CoUULPUdsPnrVKU+1ck58v/cmalF1WG9EwlcGFaq1zNkfQcMKbrSr6gU1+4N3Dfjra+XGs5S6mnaVwdsGczjhMO83fp/Z7Wf/qzCLhaMjfjO/xferryi4fJno/gPIO3X6ia4T4uVIv/r+rDwZK3rCCPpxaTWkXFfaDVjoZx/H/5IkiUFVBrGm5xo87Tx5dd+rzLkwB62u9O1HPRebwa4rt5nYpiJeTjZKb1FNERz80tShlQqvtquIu4M1X+64JoofCM9Op4PdH4KTr2jDUEJzD0QA8H7XqmDvrnzfbuxU+hc+gcLr14kZOJDsHTvwfON1ApcswbKM96JWqSTe61KV2LR81p0VVYf1RSR8ZdBvJ2O5nV3Iuy9UVYqXqFTQ/iNIC4fL60wd3hOTZZm119cyaucoNDoNy7suZ1SNUY8szOLary9B69Zi4eRE3LhxpC5chPwES1rf6FgJjU5m/l9ilk94RuoCZUm1X0Ol0bqBVXStyO/df6dfpX4sCl3ExH0TSStIM/h19UWWZb7aGYaXkw0vtQ5WPulREZpMgPMr4fZl0wZYCjjbWvFWp8qcjEpnf5gofiA8o+vbIOm8MmAl2jA8VlxaPhvPJzC8SSC+LnbKJ5u9quzf3jdV2c/9GEpvvTXEDB6CLj+fwF+W4zVpEpKFhWGDNxMdqnnTsIIbs/eFU1Bc+gYtzZFI+MqYvCINC/6KpFUlT5pX9Pj/B6r1BN+6d2f5Sk/J7jx1Hh8c+YAvT31JU9+mrO+1nnre9Ur0XNsqVQhavx7nrl1I+eEH4l99FW1mZomeW8HDgYEN/Fl1Oo5bWaL4gfAMTi2EnCRllspIbQVsLW2Z1nIa01pM42LyRQZvH8zF5ItGufaz+vPaHc7GZvBWpyo42Fj+/wNt3wNbFyV5Fh5raJNAQrwcmLErTCyLEp6eTgeHvlWWo9cZYupoSoV5ByNQqSReaVvx/z9p7QBtP1D2cd/c88jn6/LySHrnHW5P/QL7Jk0I3rIZhybPV5EcSZJ4v0tVknOKWHEixtThlAki4Stjlh+LJi2vmHe7VP3nA5IE7T+BzFil6XMpcDPjJkO3D2VPzB7ebPAm8zrOw83W7YnOYeHoQPlZs/D59BPyjp8guv8ACkJDS/Tc1zpUQqeTmX9QzPIJTyk/HY5+D5VfgKBWRr98v8r9+K37b9hY2DBu9zh+vfqrWS/xU2t1fLPrOhW9HBjc6H/2Cdm5QfPJyrKoW5dME2ApYmWh4qNu1YlKyWPDuQRThyOUVjd2wp0r0OY9UD0fs0vP4v7ZvX/1Pm4wGtxDlP3cD1lqXxQdTfSQIWTv3oPXW28RsGghlu7PZ0uapiEetK3ixYK/IskqKD0TFeZKJHxlSFa+moWHo+hU3Yd6AQ9oOl65M/g3hsPfKfthzNj2qO2M2DGCXHUuS15Ywku1X0IlPd2PqyRJuI8YQdCq3wGIGTGS9N9+f+yNb4C7PYMbB7DmTByJosS58DSO/gCF2dDxc5OFUM29Gmt7rqVtQFtmnp3JO4feIbc412TxPMraM/FEpebxYbfqWFo84Pe9yQSwcYbDM40fXCnUsbo3dQNcmf9XhJjlE56cLMOhb5QkpdZAU0dTKsw9GI5KJfFqu4r/ftDCCjp8ohTRu7z+Xw/n7N9PzKDBaNPSCVy6BM+JE0p9b71n9V6XqmQVqFl8WLTKelbP909SGbPoSCS5RRreeaHKgw+QJGj/MWQnwLkVxg2uhDQ6Dd+c/oYpR6ZQ07Mm63utp3G5xno5t13t2gRv2ohjixbc+fJLbn34IbrCRxdlmdy+EhLSvQ3YglBimfHKcs66w6BcLZOG4mTtxA/tfuDdRu9yIO4AQ3cMJTwj3KQx/a8ijZa5ByJoHORGp+reDz7IzhWavgJh2+DONeMGWApJksTr7SsRn17A1ouixLnwhG7uhtuh0PpdsLB8/PHPOWV2L5HhTQLxcbZ98EE1+inbaw5MvzfwLmu1JM+eTcLk17AOCiJ44wYcmjc3YuTmq5afCz3r+LLsWLRolfWMRMJXRqTmFrH8WAw965Snuq/zww8MaQcVWsGR76A431jhlUh6YToT9k7gt7DfGFF9BItfWIynnader2Hh6or/gvl4vvE6WX9sJXbESNRJD78R8nO1Y2iTANafjSc+3by+X4KZOzwTkKH9FFNHAig3/2NqjmFpl6XkqfMYsXME+2P3mzqsezadT+R2diGvd6j8yIJMNHtVKXEuZvlKpGN1b6r7OjPvrwi0opGxUFKyrOz5dwuCOoNNHU2pMPdgOBYPm937m0oFnaZCVhycXYY2M5P4ia+QtuBnXAYOoMLvv2FVvryxQi4V3nmhKkUaHfMOioH3ZyESvjJi/sFIijQ63upU+dEHShJ0+Bhy78DZpcYJrgSupV1j6PahXEq+xPRW0/mwyYdYqQxUvl6lwmvSJPznz6c4NpbogYPIO/3w1g2T2lVCpZKYc8C8ZkQEM5adBBdXKT33XANNHc0/NPRpyNqea6nsWpn//PUf5l2ch0427XI/jVbHgr8iqePvQuvKjxnksXdXlnZe3Qwporn440iSxOsdKhGVksfOy7dMHY5QWoT/CbcuQut3DNZKpiwp0eze3yp2gOC2FG6eRfSAgeSfOkW5aV9Q/ssvUdnYGCfgUiTYU9nT/fupWDHw/gxEwlcGJGUW8NupWAY08CPEy/HxT6jQQnnBOfoDFOUYPsDH2Ba5jdG7RiMj82v3X+ld0fCl6wGcOrRXWje4uBD34viH7usr52LL8CaBbDyfSExqnlFiE0q543NB1ilNis2Qt703y7ouo2+lvvx86WfePPimSff1bQ+9RVx6vrKEuiSVTJtPBis7ODLL8MGVAV1rlqOStyNzD0SgE7N8wuP8vXfPNVBZki48Volm9+6TpWtHzHZL5PwsKvy2ErfBYhb1Ud7oqKz8mL1fDLw/LZHwlQFzDoQjyzJvdHzM7N792n8C+WnKHiMT+Xu/3kdHP6K2Z23W9FhDTY+aRo3BJiSEoHVrcWzVStnX9/En6Ir+vU58UruKWKokfhKzfMLj5KfDueVQe6CyHMpM2VjYMK3FNKY0mcKRhCOM2DmCmKwYo8eh08nM/yuCKj6OdK7uU7InOXhC4/FK4YM0UUX3cVQqicntK3LjTg77wu6YOhzB3EXsh8RzYnavhJ5kdk/WakmeNYukbxZjV96W4F752NWqYaRISy9fFztGNA1k84VEEjLELN/TEAlfKRefns+6s0oJYH83+5I/0b8hVOkGx3+CgpL1ptOnzMJMJu6dyG9hvzGy+kgWvbAIDzuPxz/RACycnPCfPw/PSZPI2rSJ2FGjUd/5502Rt7Mto5pVYMuFRCJTzLPCoWAmTv0M6nxo9ZapI3ksSZIYXn04i19YTEZhBsN3DOdIwhGjxrA37A437+Qyub2ydLrEWrwBFtZilq+EetUpTwUPe+YciDDr1hyCickyHPoaXAKg7nBTR1MqlHR2T5ubS8Lk10hbvATXoUMInD0Dy+IEuLzBSJGWbi+3DkEClhyJNnUopZJI+Eq5JUeiUEnwartKT/7k9h9BYRacnK//wB4hKiuK4TuHczH5ItNbTeeDJh8YbL9eSUkqFV5vvI7/3DkUR0QQPXDgv/r1TWxbERtLC34SSwqEhynKURK+aj3Bu7qpoymxxuUas6bnGvyc/Ji8fzJLLi8xSlIgyzLzDkYQ6G5Pj9q+T/ZkR29oOA4urYGMGIPEV5ZYWqiY1K4ilxOzOHQzxdThCOYq6iAknFEGrCytTR2N2Svp7F5xfDyxw4aRe+QIPp99iu/UqUjVu4FPLWV7jU60TXmc8q529K3vx5ozcaTnFZs6nFJHJHylWHpeMWvPxtO3nt+/G3yWhG8d5cb01M9QZJxZq+OJxxm5YyR56jyWdllqtP16JeXUqRNBa9egsrEldtRosnfuvPeYl5MNo1tUYOulJMLvmH7vo2CGzi5XBlFavW3qSJ5Yecfy/NrtV7oGdWX2+dl8fPRjirWG/aN6JDyV0IQsXm1X8cF99x6n5ZugsoQj3+s/uDKoX31//FztxCyf8GCyDH99A85+UH+kqaMpFeYeDMdSJTHpEbN7eadOEzNoMOrkFAKXLMZ9+N2ZU0lSEuvUG0qDey50y60AACAASURBVOGxXmkbQqFaxy/HY0wdSqkjEr5SbMXxGArVOia2DXn6k7R6S7lBPf+r/gJ7iFVhq5i0fxK+jr6s7rGaet71DH7Np2FTuTJB69ZiW7MmiW+/Q8q8efdujia2qYidlQVzRXlg4X+pC+HEXAhuqyyZLoXsLO34ps03TK43mW1R23j5z5fJKMww2PXmHoygnLMt/Rv4Pd0JnH2hwWilImpmvH6DK4OsLVW80jaEc7EZnIhKM3U4grmJPgTxJ+/O7olqkY9zb3avaSDeD5ndy1i7jrjx47Fwdyd43dp/99er0VfZ6330eyXhFh6pkrcTnWv48OuJGPKKNKYOp1QRCV8plV+s4dcTMXSq7kMlb6enP5F/IwhsoSzr1Kr1Ft/9NDoNX578kq9Of0Vrv9b82u1Xyjuad58ZS3d3An9ZjkufPqTOmUvSu++hKyzE3cGaYU0C2R56i8TMAlOHKZiTS//H3nmHR1Xlb/xzZ9I76SGZNJp0SKN3EbGtDaSHqmJby+pPd1fddXVXXXUVRUSkgxTbqosCYkGkJST0HkIy6b23yczc3x83QQQkA5mZOzO5n+fhEWfuPfd9EE/u95zved+PpbiTEfa3u3cxgiDwYP8H+ffIf3O87DjTtkwjszLT7M9JzSon5Xw594+MxdVJff0DDX9c+ufut80jzMGZlKAhyNuV935QFq0ULmHn6+AdJsXJKLRJ6+7ewlGX7+6Jej2F/3iZwhdfxHPoEKI3bcQlKuryQdRO0nnkvDTIsu75aXtl4eguVNY3szFVWeS7FpSCz0755EAuFfXNPNie3b1Whv0RqnLg+H/bP9YlVOuqWbhjIZtOb2JO7zm8PeZtPJ09zf4cS6BycSHs1X8R9OSTVG/ZQnZyMvqSEuYOjwFgxS/KwWGFFgx6+OVtCI+XdvgcgJtjbmbFhBU06BuY8c0M9uTvMev4i3/MuLCA0i58I2DgdKlLoTrfPOIcGDdnNQ+MjGXPuTLSssvllqNgK5zfBdm7pd095+s4ItLByK9s4PP0PKYmXb67Z6itJWfhQ1SsX4//3LlolixB7X2VhfkB08ErRGlNN5G4yE4kxfjz0a5MdHrl7KOpKAWfHaI3GFm2K5P4qE4kRPu3f8BuN0FgD9j9jllbCrTVWqZvmc6BogO8NPQlnkx4ErWqHSv5MiAIAoH3LyB80Ts0nT7D+cn3EVCk5bZ+YWxM0VLVYJldUQU74/jnUJkt2ZibkiNnJ/QL6sfHt35MqFcoD+14iE2nNpll3GN5Vfx0uoR5w2NwdzHDnDD8SSn3cPc77R+rAzBtUCT+ni68q+zyKbTy8+tS0RE3S24ldsGqPVmIwPwRMb/5vLmggOxp06nbs4fQf7xEyDNPI6jbmOOc3WDwQ5JhTv5By4l2IBaO7kJBVSNfHVYW+UxFKfjskC1HC8itaODBK7QRXBcqFQx9FIqOShOOGThYfJDp30ynsqmSZeOXcVe3u8wyrlz43HQTUevWgcFA1tRpLHDKp05nYEOKVm5pCnJjNEoua0E3SFEnDkZnr86snbiWYeHDeHn/y7yW8hoGo6FdYy7+MQNvNydmDrlCi9P10CkK+k+BtFVQW2yeMR0YDxcn5g2P4afTJRzNrZJbjoLcFByG8z/DkIfB2V1uNTZPTWMzG/Zrmdgn9DdxWA3Hj5M1+T6a8/PRfLiUTpMmmT5owlxw9VV2+UxkdPcgbgj15oOd5zAalbOPpqAUfHaGKIos3ZlJlyBPxt0QbL6B+00Gr1DYvajdQ23L2sb8bfPxdfVl/S3rSQhNMINA+XHv05voTzbjGh2N+oVneLT2MCt3n1daCjo6Z7ZC8Qlpl0nlmFOqp7Mni8YsYmavmaw7uY7HfnyM+ubrC7/NKK5h6/FCkodE4+NmxjiW4U+CvglSPzLfmA7MrCFR+Lg58e4PSsxMh2fvYnDxgrhkuZXYBZtSc6hp0rNgxK9Hamp++JHsmbPA2YnoDR/jNWzYtQ3q5gNJ8+Hk11Cq/D/ZFoIg5R5mFNey42RR2zcomKfgEwThZkEQTguCkCEIwrNX+H62IAglgiAcavk1/6LvkgVBONvyS5lt2mDX2VJOFFTzwMgu1xZS3BZOrjD4QWmHr+DwdQ0hiiKrjq3iTzv/RO/A3qyduJZIn3aez7ExnENCiFq7Bq8RI7hlx1pu3fsZXx3MlVuWglyIohT87RcJfe6RW41FUavUPJP4DM8Pfp5f8n5hzrY5lDaUXvM47/90Djcn9YWzsGYjoAv0mCgVfM2KoVJbeLs5M3tYDNtPFJFRrMTMdFiq8+HYZ5JRi7uf3GpsHr3ByMrdWSTF+NNfI/15la9dR+4jj+AaG0vMpk24dut2fYMPWii9iykGVCZxa98wNP7uLNl5TomZMYF2F3yCIKiBxcBEoBcwVRCEXle4dJMoigNafn3Ucq8/8CIwCEgCXhQEoVN7NTkyS38+R4iPK38YaAGXy/g50irfnnev+Va9Uc8r+1/hzbQ3uSnqJpbdtIxObo75n1Ll6UnE4vfwu28yk87+RNPf/oqhqUluWQpykLUL8g5IxkdqJ7nVWIXJPSbz7th3OV91nhnfzCCzynQHz5zyer48lH/hDJnZGfwQ1JfBEfOcNXR0Zg2JwsVJxcrdWXJLUZCL/Uul86+DH5RbiV3wzbFC8iobWDAiFtFgoPCVf1L0yit4jRlD1JrVOAUFXf/gXkHSGcrDm6Aqz3yiHRQntYr7R8RyUFtJynnFgKotzLHDlwRkiKKYKYqiDtgI/MHEeycA34miWC6KYgXwHXCzGTQ5JEdzq9idUcbcYTHtszH/Pdz9IH42HPscKk0/m1bfXM/jPz5+wYnz36P+javasTN8BCcnQv/2N4qmzCPuXCrHpiVjqKyUW5aCtdn1JngGw4COFVI8MmIkKyespEHfwMxvZpJelG7SfSt2n0cl8JtWKLMSPRxC+8He95VMKxMI9HLlzgGd+Sw9l4o6ndxyFKxNUy2krYSet0tZcApXRRRFPtqVSWygJ2OivMl99DEq1q7FPzmZiEXvoPLwaHuQthjyiFSA732v/WN1ACYlaAjwdGHJznNyS7F5zFHwhQMXh2Hktnx2KfcIgnBEEIRPBUHQXOO9CIJwvyAIBwRBOFBSUmIG2fbHBz+fw9vViamDLNgmOXih5DK4932TLi9tKGXOtjnsytvFXwb9hScTnkQlOOY5pksRBIGhf32SJSOSUZ06Tta06ehylfbODkP+Qcj8qcXooOPZmPcO7M26W9bh7+bPgu0L2Jq19arX1zQ288mBXG7r15lQXwv9eQmC9N+j9DRkfG+ZZzgYc4fH0Nhs5GPFgKrjcehjaKySigyFNkk5X86R3CoW9Pcnd+5can/8kZC//pWQ555t24nTVDpFQd9JkgFVvbJr1RZuzmrmDIvmp9MlnCyolluOTWOON/MrHSS7dGn1ayBaFMV+wA5g9TXcK30oih+KopggimJCUHu2zO2U7LI6vj1awPTBUeY1OrgU3wjoc6+UadXGZJNZmcn0LdM5X3WeRWMWMeWGKZbTZaO4OKnoOX0Sfx6ygKbiErKmTKXh6DG5ZSlYg31LpBbohDlyK5ENjbeGtRPX0juwN0/vfJrVx1f/7lmKzQdyqW3SM3eYmc/uXUrvuyUDKmWF3CRuCPVheNdA1uzNUgyoOhJGA+xbDBGJoEmSW41dsGzXebobq0l44/9oPHWK8EXv4D9juvkfNPxxaK6X2m0V2mTm4Gg8XdR8oOzyXRVzFHy5gOaif48AfhOMIYpimSiKrYeclgHxpt6rIPHRrvM4qVTMHRZt+YcNfRSa6+DA8t+95FDxIWZtnUWToYmVE1YySuMYYdPXw7RBkWR27s7m5BdQubiQPWsWtTt3yi1LwZLUFEqtzwOmg5uv3Gpkxc/Nj2U3LWN81HjeOPAGr6a8ellsg8EosmrPeRKjO9E3wsJ/Xk4uMOh+yYCq6IRln+UgzBseQ1F1E98cLZBbioK1OP0NVGQpu3smkllSy/l96bz207sYKyuIXLkCn/HjLfOw4J7QbYL0DqZX/AHawtfDmemDo/j6cD7asutzj+4ImKPgSwW6CYIQIwiCCzAF+OriCwRBCLvoX+8ATrb8fhtwkyAInVrMWm5q+UzhIkprm9h8IIe748IJ9rFC61hoH+gyDvZ/CM2Nl329M2cnC7YvwNfFl7W3SKv7HRlfd2emJEWytkCF67JVuMREk/PQw1T+979yS1OwFAdWgFEPgx6QW4lN4Kp25Y1RbzCz10w+PvUxf9r5J5oMv76o7DhZRE55g+V391qJnwNO7tIOhkKbjOoeRGyQJ8t/Oa+43XUU9i6W3IVvuE1uJXbBllVf8vqu9/FwdyV6/To84uIs+8DBD0JdibSwqNAm84bHoFYJrNh9Xm4pNku7Cz5RFPXAI0iF2klgsyiKxwVBeEkQhDtaLntMEITjgiAcBh4DZrfcWw78A6loTAVeavlM4SLW7MlCZzCyYKSFjA6uxLA/Ql0xHNn4m4+/OPsFf/zxj8T6xbJm4ho03prfGaBj0Woxv/pkDVFr1uCRlEjBs89RtnyFzMoUzE5zo1TwdZ8gRQEoAKASVDyT+AxPJzzNDu0OFu5YSI1Osvtf8ct5wv3cGd8rxDpiPPxhwDQ4slkJYjcBlUpg7rAYjuZVcSC7Qm45CpYmNw20e6UYgA7iLtwe8j75nNEr/kljYAixmzfi2rWr5R8aOwYCe8D+JYoBlQmE+LhxW7/OfJqWS01js9xybBKzuGuIoviNKIrdRVHsIoriKy2fvSCK4lctv39OFMXeoij2F0VxjCiKpy66d4Uoil1bfq00hx5HorHZwNp92dzYM4QuQV7We3DMSAjrL0U0GI2IosiyI8t4Yc8LJIUmsWLCCgLcA6ynx8YJ93Pntn5hbEjRUqt2RbN0Kd4Tb6b43/+m6LXXEY3K2RiH4dhn0srrIMXG/ErM6j2Lfw7/JweLDjJ321x+ycxk//lykodG4aS2oqHT4IfAoIPU329NV/iVe+Ii8PNwZvkuZYXc4dn7Hrj6QNxMuZXYNKIoUrZ8OdXP/4XjATEEr1iFc4iVFq0EQeogKTgMOfut80w7J3loNLVNej5LU8zzrkTHsFO0Y746nE9FfTNzrHF272IEAYY+BmUZGE79j3+l/ItFBxdxS8wtLB63GE9nT+vqsQMWjIilTmdgQ4oWlYsL4W++Safp0ylfuZL8Z59FbFZWneweUZRWXIN6QuxoudXYLLd3uZ13x71LdnU2T/6yAA+PCu5LsKC78JUI7Ardb1aC2E3E3UXNtKRItp8oJKdcOQfjsFRq4cSXEJ8Mrt5yq7FZRKOR4ldfpfjfb7AvKo4dyc/RLTas7RvNSf8p0hnxfUus+1w7ZYDGjwEaP9bszcZoVHZFL0Up+GwYURRZvSeLHiHeDImVYTet153ofCJ4JvUVNpzawKxes/jXiH/hrLagS6gd0yfcl2FdA1i5+zw6vRFBpSLkr38h6PHHqf7qa3IWPoSxrk5umQrtIXsPFB6VVl6FK5kMK7QyPHw4bwxfQr2+Fo/oJeQ1nLW+iCEPQ32p1Nqp0CazhkSjEgQliN2RaXV+TFLOH/8eYnMz+c8+S/nqNZTcdCcvDZjC3DE9rC/ExVMKYj/5NVQpu1amMGdYNJmldfx8tmPGt10NpeCzYdKyKzieX03y0GgEGV4uaw2NLAzvzHbqearHTJ5OfLrDZOxdLwtGxFJU3cSWo5LZrCAIBD74AGEv/4O6PXvInj0HfblyTNVu2b8E3DtBv/vkVmIXpJ/1pj7rQXxcPZi7bS77C6zcmhQ9AkL7wj4liN0UQn3duLVfGJsP5CjnYByRxmopcqn3XeCnnL+/EsbGRnIffYzqr74m8LHHeClqAr3C/RjSRaYjLIkLAFHqVFBok4l9wgjydmXVniy5pdgcytu7DbNyTxY+bk7cObCz1Z9d0VjB/O3zSWsq5p+lVcwuLbS6BntkZLcgYgM9WbM3+zef+917LxHvvUvTmTNkT5tOc76SPmJ3VGTDqS0QlwwuHnKrsXma9AbW7ctmdGwfNty2jjDPMBbuWMi2LCsaMQsCDH4YSk7BOSWI3RTmDY+htknPptQcuaUomJuDa6GpWtr5VrgMQ3U12vnzqd25k9C/vcixsfeQUVLHghGxsiy6A1IQe49bpCB2pTW9TVycVMwYFMVPp0vILKmVW45NoRR8NkphVSNbjxVyX6IGDxfrumgV1hWSvDWZjMoM3h7zDrfH3gqHN0JjlVV12CMqlcDMIVEc1FZyJLfyN995jx1L5Irl6MvKyJo+g6ZMxRzBrkhdBgiQtEBuJXbB14cLKK3VMXdYDCGeIay6eRV9Avvw9M6n2Xzaii2Wfe5pCWJXIhpMoV+EH4nRnVi1JwuDcg7GcTDoYd8HEDkUwi0cKWCH6EtKyJ6VTMPhI4S/9Sadpkxh+S/nCfWRdr1lZfBCaKhQWtNNZNqgSJzVwmUL7x0dpeCzUdbvz8YoiswcHG3V52ZVZTHr21kU1xez5MYljNaMlkKMm+vg0MdW1WKv3BMfgYeL+oqTjUd8PFFrViPqdGTPmEHD8eMyKFS4ZnR1UitUrzvAN0JuNTaPKIqs+OU83UO8GNZVaoXydfVl6filDA8fzj/2/YMVx6wUWeLkAknz4dwPShC7icwbHkNuRQPfnVA6OxyGU19DlVbZ3bsCutxcsqbPQJedjWbJEnwmTuRcSS2/ZJQyY3AkztZ0F74SUcMgpK90/lJpTW+TIG9XbuvXmU+U1vTfoBR8NkiTXnJ6HHdDMJEB1msdO1V+iuStyTTqG1kxYQWJoYnSF50HQkQipCwDJV6gTXzcnLk7LpyvDudTXqe77Hu3nj2JWrcWwc0VbfJs6g8ckEGlwjVxeIO0wz1oodxK7IL958s5UVDNnGExv2mFcndy550x7zAxeiL/SfsPb6e9bZ2g7/i5LUHs71v+WQ7A+F6haPzdWf6L0oXgMOz/EDpFQ4+JciuxKRpPnyF76jQMVVVErVyB1/BhAKzdm42zWuC+RCu7C1+J1oiG4uOQtUtuNXbB7KHR1OkMfKpENFxAKfhskC1HpFao5KHRVntmelE6c7bOwUXtwqqJq+gV0Ou3FyQ9AOXnIPMHq2myZ2YNiUanN7L5wJXPwbjGxBC9fj1OwcFo50lnBhRsFKNRWlntPBA0SXKrsQtW/HKeTh7O3DUw/LLvnNXO/GvEv5jUfRLLjy3n5X0vYxQtvJDkGSBZnB/9BOoV06S2UKsEZg+NITWr4rLWdAU7pOg4aPdAwjxQqeVWYzPUHzxI9syZIAhEr1uL+4ABANS1ZLnd0lcyALEJ+k4Cj4BfXVYVrkp/jR8DI/1YvSdLiWhoQSn4bJDVe7LoEuTJ8K6BVnnez7k/88B3DxDoHsiam9cQ6xt7+UW9/gCewdIqoUKbdA/xZnCsP2v3Zv/uORjnsDCi1q3FtUsXch5+hKr/bbGySgWTOPcDlJ6RdveUKIY20ZbV893JIqYNisTN+covl2qVmucHP8/cPnPZfGYzz+16jmajhVtvEueDvhEOrbfscxyEyQkReLk6Kbt8jkDqR+DkBgNnyK3EZqjbuxftvPmoO/kR9fHHuHbrduG7/x7Ko6ZJz6whUTIqvARnN4ifLRmHVWTJrcYumD00mqyyenYqEQ2AUvDZHAe1FRzOrbJaFMPW81v54w9/JMY3hlU3ryLM63cOJzu5SJPN2e1QnmlxXY5A8pBo8iob+OFU8e9e4+TvT+TqVXgMGED+009TsXGjFRUqmMT+JeAVIlmZK7TJ6r1ZqAWhzfPHgiDwRPwT/DHuj3xz/hue+PEJGvWNlhMW2gcih0DqcqU13QS83Zy5Nz6Cb44WUFrbJLccheulsQoOb5LMizz85VZjE9T88CM5DzyIS3g40evW4RLxayeCKIqs3ZtNrzAf4iI7yajyCiTOB0ElHa9RaJOJfcII9nZllZIrCigFn82xek8WXq5O3B1neWOIz89+zjM/P0P/4P4sn7CcAPc2cmYS5krtIKnLLa7NERjfK4QwXzfW7M266nVqb280Hy3Da+RICv/2d0o/VCZzm6HkDGTskFqhnFzkVmPz1Dbp2Zyaw639wgj1dTPpnvl95/P84Of5OfdnFu5YSK3OglbaifOh4ry0a6vQJjMGR9FsEH+3NV3BDji8STJdS5wvtxKboOp/W8h99FFce/Qgau0anIKCfvN9alYFpwprmDUkSr4oht/Dp7PUbZW+FpqUyIG2cHFSMWNwFDvPlHBOiWhQCj5borimkS1HC7g3XmqlsSTrT67nxT0vMjR8KEtuXIK3i3fbN/mEQc/bpSwfXZ1F9TkCTmoV0wdFsutsaZuTjcrNjYj33sXn1lspeestit+2kpmFwtVJWQpqF0iYI7cSu+C/B1tboaKv6b7JPSbz6ohXOVR8iPnb51PZaKFzYz3vAM8gJcTYRLoGezEkNoD1+7RKRIM9IrYEdneOU6IYgIrNm8l/+mk8Bg4kcuUK1H5+l12zZq+Uf/yHAZefP7YJBi+Epio4onQDmcLUpEhc1CrWKEHsSsFnS2zYn0OzQbR43/hHRz/i1ZRXGRc5jkVjFuHu5G76zUkPSC0iSh6MSUxpmWzWmpAHIzg70/n11/C99x7KPlhK8auvKkWfnDRWw6EN0Ode8AqWW43NI4oi6/a1tkJd/iLVFrfE3sLbY97mbMVZ5m6fS2lDqflFOrlAXDKc2QoVSkaTKcwcEkVeZQM/nf791nQFGyVrF5SeVrJDgbKVqyh84UU8RwxHs+xD1F5el11TXC3lH09K0ODuYqPmNhGJkoHY/qVKa7oJSBENYXyalkt1B49oUAo+G0GnN7J+fzajugcRG3T5RGQORFFkUfoi3kl/h1tjb+WNUW/gor7GNrXIwVIeTMoyJQ/GBAK9XLmlbyifpeVS26Rv83pBrSbspZfoNHMm5avXUPji3xCVSV0ejrS0QiUprVCmkK6VWqFmDL7+VqhRmlG8N+49cmtymbN1DoV1FsiBi58tme+krTL/2A7I+F4hBHu7sm6fUiDbHSnLwL1Thz5/LIoiJe++R/Frr+E9YQKa995D5X7lRe4NKTnojSIzB9uQWculCIJkIFZ6BjJ/lFuNXZDcGtFwoGNHNCgFn42w9XghxTVNzLZQFIMoiryW+hrLji7j3u738s/h/8RJdR1to4IgBbEXH4fsPeYX6oDMGhpNTZOeLw7mmXS9oFIR8ufnCLj/fio3byb/2WcR9W0XiwpmRBThwAoI6y+1Qym0ybp9WrxcnfjDgM7tGmdI5yF8cOMHlDSUMHvrbHJrzPxD2k8D3SdC+hrQK2YkbeGsVjElKZKfzpSgLauXW46CqVTnS46OA2eC8zV08TgQoihS/NrrlC5ejO9ddxH+5hsILlde5G42/LroHh3oaWWl10jvO8EjUPoZpdAm/TV+xEX6sWZvx45oUAo+G2H1niyiAzwY1T2o7YuvEYPRwN/2/o31J9czs9dMXhj8AiqhHf/p+9wLbn7S+SaFNhmo8aNvuC9r9mSZ3KIpCALBTz5B0OOPU/3V1+Q9+RSi7vIQdwULod0HxScksxZbO7hvg5TX6dhypIC748LxNMP547iQOD666SNqdDUkb03mfJWZowES50F9KZz4yrzjOihTkzSoBIH1Kcoun92QtgpEo2S21gERjUYKX3qJ8lWr6DR9OmGvvIzg9Ptz0/bjRRTXNNlWFMPv4eQqRWyc/lYq7BXaJFmJaFAKPlvgWF4VadkVzBwSjUpl3pfLZmMzz/3yHJ+f/ZwH+z/I0wlPt995ysUD4mbCyf9BlWm7Vh0ZQRCYNSSKs8W17M0su6Z7Ax98gJDnnqVm+3ZyHn0UY6MFbesVfuXAcnD1gb73yq3ELvjkQA46g5EZZmyF6hPYhxUTVqA36pm9dTZnKs6YbWxix4B/F0hVHHFNIczXnfE9Q/jkQC6NzQa55Si0haFZKvi6jQf/GLnVWB3RYKDgr89TuWEjAfPnEfLXvyCorv66u2ZvFhGd3Bndw07Oa8fPBtEgdSootMnEPmEEeLrw8X6t3FJkQyn4bIA1e7Nwd1YzKcG8UQzNhmae3vk0357/lifin+DhAQ+bz2Y4cb60eqi0FJjE7f0708nD2STzlkvxT04m9KW/U/fzLnIeeBBjneKQalHqSuHEl9B/CrjYeGuPDWA0inycoiUp2p/uISa4/V4DPfx7sPLmlTgJTszdNpfjpcfNM7BKJe3y5eyHgiPmGdPBmTE4ivI6Hd8eK5BbikJbnPwaaosgseOZtYh6Pfn/9yxVn39O4EMPEfTUU22+95wurGH/+XJmDI5CbeZFd4vhHwNdxkHaajAoRz7awsVJxeREDd+fLKKgqkFuObKgFHwyU9XQzNeHC7hzYGd83JzNNm6ToYnHf3qc77Xf81zSc8ztY+a2jk7R0P1maRVROQfTJm7OaiYnath+ooj8ymufbDpNnkzn11+n/sABtAvux1CrZMpYjIPrwKDrsK1Q18qujFKyy+qZPjjSIuPH+sayauIqvJy9mL99PoeKD5ln4AHTwMld2s1VaJOhXQKIDfS8rkUrBSuT+hH4RUHXcXIrsSqiTkfek09R/b//EfTEEwQ99qhJi9xr92VJBUGCxgoqzUjiPKjJl1yHFdpkamIkIrAxpWPmiioFn8z892AeDc0GpiWZrxWqQd/AYz88xs+5P/PCkBeY1nOa2cb+DUkLpHMwJ7+2zPgOxoxBURhF8bpbCnxvv43wt96i4cgRtPPmYaiuNrNCBYxGSFsJUcMguKfcauyCdfuyCfB04eY+oRZ7hsZbw6qbVxHgHsD9393PgcID7R/UvRP0vUeKmGmsav94Do5KJTB9cBTp2kqO5yt/XjZL0QnI3i0VAyobjRawAMamJnIf+yM127cT8tyzBD5wv0n31TQ280V6Hrf364y/OcCpRgAAIABJREFU5zW6lstNtwng3VnptDKRyAAPRnYLYmOqFr2h47mfKwWfjIgtL//9InzpG+FrljHrm+t55PtH2Ju/l5eGvsSk7pPMMu4ViR0j7fQdWGm5ZzgQGn8Pxt0QwoYULU366zsH4zPhJiIWvUPjiZNoZ8/BUGmhgOqOSuYPUJGl7O6ZSF5lA9+fLGJyogZXJ8u+XIZ6hrJywkrCPMNYuGMh+wr2tX/QxPnQXA+HlRBjU7g3LgI3ZxXr9nXcczA2T+pHoHaV3Dk7CMaGBnIfepjan34i9MUX8E9ONvnez9PzqNMZ7MOs5VLUThCfDOe+h3IzG1s5KNMHRVJU3cQPpzperqhS8MlIWnYFp4tqmJZknlaoWl0tC3cs5EDRAf454p/c1c3C2TsqlRRinP0LlJjRUMGBmTE4krI6HduPF133GN5jx6J5712aMjLITp6NvrzcjAo7OKkrJLvrnrfLrcQu2JiiRQSzzWFtEeQRxIoJK9D4aHjk+0fYnbe7fQN2Hgjh8dJLspIr2ia+Hs7c0b8z/z2Y1+FDjG2SxmopP7TPPeDhL7caq2CsqyPngQep27OHsFdeptPUqSbfK4oia/dl0z/Cl/4aPwuqtCBxs0BQS50pCm0y9oZgQn3cWN8BzVvMUvAJgnCzIAinBUHIEATh2St8/6QgCCcEQTgiCML3giBEXfSdQRCEQy2/OpRH9sf7tXi7OnF7//blVgFU66p54LsHOFJyhNdHvs5tsbeZQaEJDJwBKiclxNhERnYLIqKTe7udorxGjSJiyfvosrPJnjULfUnHtRo2G1W5cOZbyYHWyVVuNTZPs8HIxtQcxvQIRuPvYbXnBrgHsPym5cT4xvDoD4+yM2dn+wZMXCCFGJ//2TwCHZyZg6NpaDbwRbri0GxzHNkEulpImi+3EqtgqK1Fu+B+6tPS6Pz66/jdc8813b83s4yM4lpmDom2jEBr4NMZekyUzp4rfgpt4qRWMSVJw89nO16uaLsLPkEQ1MBiYCLQC5gqCEKvSy47CCSIotgP+BR4/aLvGkRRHNDy64726rEXKup0/O9oAXcObH9uVVVTFQu2L+BE+QneHP0mE6InmEmlCXgFww23weGPobljOh9dCyqVwNSkSPZmlpFZ0j7jFa9hw9AsXUpzfgHZs5JpLrr+XUMFJHtrUZTsrhXaZPvxIkpqmphhIbOWq9HJrRMf3fQR3Tt1v2BOdd30vks6z5f6kfkEOjB9I3zpH+HL2n3ZJueKKlgBUZT+DrfuWjs4hpoacubNp+HIEcLffBPf2699kXv9fi2+7s7c1i/MAgqtSOI8qC9T/BRM5L5EDQKwIbVj7fKZY4cvCcgQRTFTFEUdsBH4w8UXiKL4oyiKraX0PsC8+QN2yGfpuej0RqYNat/LUnljOfO2zSOjIoN3xrzD2MixZlJ4DSTMgYYKycpeoU0mJUTgpBLYmNp+pyjPQUlELvsQfXEx2TNn0ZyvhLBeF4Zmyd66643SuVSFNlm3L5twP3dGdZcnt8rX1ZdlNy2jV0Av/vTTn9iWte36BnJ2k847ndqihBibyIzBUWQU17IvU2kntxmy90DJKelcqoNjqK5GO28+DSdOEPH2f/C5+doXuUtrm9h+vJB74iJwc7Zzc5uY0dApBlIVx2FTCPN1Z1zPEDan5qDTdxzzFnMUfOHAxW+uuS2f/R7zgG8v+nc3QRAOCIKwTxCEO3/vJkEQ7m+57kCJnbeviaKUWxUX6UfPMJ/rHqesoYx52+aRVZ3Fu2PfZWTESDOqvAaiR0ohxop5i0kEe7txY88QPk3LvW7zlovxiI8ncvlHGCoqyJ45C12u0mp1zZz+BmoLFbMWE8kormVvZhnTBkXKmlvl7eLN0huX0i+oH8/8/AxbMrdc30AJc6Rc0bTV5hXooNzevzO+7s6s269ENNgMaSvB1Rd63y23EotiqKxEO2cujSdPEvHOO3jfeON1jfNZWi7NBpFpg+wsiuFKqFTSHKbdA8Un5VZjF0wfJPkpbDteKLcUq2GOgu9KP+2v2OchCMIMIAH490UfR4qimABMA94WBKHLle4VRfFDURQTRFFMCAoKaq9mWdmXWU5mSR3TB12/K1RpQynzts0jtyaX98a9x9DwoWZUeI2oVFIbXM4+ZbIxkWmDIimv07H1mHkmG/cBA4hcsUI60zBrFrrcXLOM22E4sAJ8IqC7Fduh7Zj1+7NxVgvclyj/y5KXixdLblxCfEg8z+16jq/PXUdbk38sdBkLB9cqIcYm4OasZlJ8BNuOFVJc3Si3HIX6cqnDpv8UcLHeeVpro6+oIHvuXJrOnCHi3UV4jx1zXeMYjSIbUrQkRfvTNdjbzCplYsAMULsoEQ0m0uqnsL4DLVqZo+DLBS7+qR8BXNYXIwjCjcBfgDtEUbxwslQUxfyWf2YCPwEDzaDJplm/Pxtfd2duvc6+8dZiL78un8XjFjM4bLCZFV4HA6a3TDbKLp8pDO8aSKS/R7vNWy7GvW8fIlcsx1BXR/asWehyOma46DVTdg4yf5IWLTpQbtX10qAz8FlaLjf3CSPQyzbMbTycPVg8bjGDwgbxl1/+wpcZ19FenjAHqvMgY4f5BTog0wdHoTeKbDJDa7pCOzm8AQw6yaLfQdGXl6OdPQddxjki3l+M9+jR1z3WvswyssrqmeoIu3uteAZArzuliBldndxqbB6VSmDaoEj2ZZaTUdw+PwV7wRwFXyrQTRCEGEEQXIApwG/cNgVBGAgsRSr2ii/6vJMgCK4tvw8EhgEnzKDJZimtbWLb8ULujgu/rr7xkvoS5mydQ0FdAYvHLSYpLMkCKq8DzwDoeUfLZNOxnI+uB5VKYEqShv3nzTvZuPfuTdTKFYh19VJ7p7ZjHUq+Lg6skJxm4zpOblV7+PpwPtWNema08/yxuXF3cufdse8yOGwwz+9+ni/OfnFtA3S/GbxCFMdhE4kJ9GRY1wA2puZgNCrmLbIhitLf2YgkCOkttxqLoC8rQ5s8G11WFhFL3sdrxIh2jbc+RTJrmdjHzs1aLiVhLjRVw7HP5FZiF0yK1+CsFsy68G7LtLvgE0VRDzwCbANOAptFUTwuCMJLgiC0um7+G/ACPrkkfqEncEAQhMPAj8Croig6dMH3yQGpb3z6dbwsFdUVMXfbXIrri1ly4xISQxMtoLAdJMyBpio4fo0vWh2USfEanFQCG1LMO9m49epF5OpViI2NUtGXlWXW8R2K5gY4tB5uuBW8Q+VWYxes359Nt2AvkmJsL+fLzcmNRWMXMaTzEF7c8yKfn/3c9JvVzlLMzNltUKWcgzWFKYmR5FU2sCujVG4pHRftXilWxEHdhfWlpWQnJ6PLyUGz9AO8hg1r13gOZdZyKZGDIbiXYt5iIkHerkzoHcqnaTk0NrffT8HWMUsOnyiK34ii2F0UxS6iKL7S8tkLoih+1fL7G0VRDLk0fkEUxT2iKPYVRbF/yz8d+m/phb7xmGvvGy+sK7xQ7H0w/gPiQ2zQdjlqGAR2VwJATaR1svksPdfsk43bDTdIRZ9OR/asZJrOnzfr+A7D8f9KDrMJ8+RWYhccz6/icG4V0wZFIgjymbVcjdaib2j4UF7c8yKfnvnU9JvjZknmLQfXWU6gA3FT7xD8PV3Y0EFWyG2StFUtZi13ya3E7OhLSshOnk1zXj6aD5fiObj9x1c+dSSzlksRBGmXr+AQ5KXLrcYumD4oiupGPf87UiC3FItjloJPwTR+yShFW15/zbt7rcVeWWMZS8cvZWCwjR5zFASInwO5qVB4VG41dsG0QZFU1jebzbzlYtx69JCKPr0e7axkmjKVou8y0lZKDrMxMjnc2hkbU3JwdVJx18CrGTHLj6valXfGvMPw8OH8fe/f+eTMJ6bd2ClaMm9JXwNGx1/xbS+uTmrujY9gx8kiimsU8xarU18uLVr1m+xwZi0Xir2CAiI/XIpnUvuPrxiNIhsdzazlUvpNBmcPOODQ+ydmY3CsP7FBnh3CvEUp+KzIx/u1+Hu6cHMf01vHCmoLmLN1DhWNFSwdv5QBwQMsqNAM9J8CalfFvMVEhsQGEBVgXvOWi3Hr3p2o1asQjUayk2fRdO6cRZ5jlxSfhJz9UiuUje5W2RL1Oj3/PZjHLX3D8PNwkVtOm7QWfSMjRvLS3pfYfHqzaTfGz4bqXMhoR5h7B2JKoga9UeTTNMUZ2Ooc3giGJuk4hQPRXFwsFXuFhUR+uBSPRPMcX9nbYtbS3vxjm8bNF/pOgqOfQUOl3GpsHkEQmD4oioPaSk7kV8stx6IoBZ+VKKpu5LuTRUyKj8DVybS+8YLaAuZum0tlUyUfjv+Q/kH9LazSDHj4S60lRzZDU8dwPmoPKpXA1KRIUrLKOVtUY5FnuHbrRtTqVSBCdvJsmjIzLfIcuyNtNaicYcA0uZXYBVuOFFDTpGdqkv28LLmoXfjP6P8wKmIU/9j3Dzae2tj2TT1uAc9gxbzFRGKDvBgc68/GFMW8xapcMGtJdCizlubiYrSz5/xa7CUkmG3sj1O0+Hk4X9Oiu10SPxv0DXDUxM6GDs49ceG4OqkcfpdPKfisxObUHAxG0eSXpdY2ztZir29QXwsrNCMJc0BXozhFmci98RGSU5SZzVsuxrVrV6noA+lMX0cv+pob4chGyazFM1BuNXbBhhQtXYI8SYzuJLeUa8JF7cJbo99itGY0r+x/hU2nNl39BrUzDJwOZ7ZC9WUJQwpXYGpSJNryevacK5NbSsdBuw9KTzuUWUtzcTHai3f2zFjsObRZy6V0HgihfSF9tbQwoHBV/DxcuK1fZ748lE9dk+PmsCoFnxUwtJi1DO8aSHSgZ5vXF9YVMmfrHPss9gA0gyCop2LeYiKBXi3mLWnmN2+5GNcuXX4t+pI7eNF38mvJrMWBXpYsyenCGtK1lUxNsl2zlqvhonbhrVFvMTpiNC/vf7nt9s64WSAa4OB66wi0cyb0DsXPw5kNqYp5i9VIWwWuPg5j1nKh2CsqInLZh2Yt9uBXs5apSQ5o1nIpggBxyZKXQv5BudXYBVOTNNQ26dniwOYtSsFnBX4+U0J+VaNJfeN2vbPXiiBIu3z5B5XJxkSmDYqkutHyk41rly5ErVrZ0t7ZgYu+tFXgFwUxo+RWYhdsSNHiolZxd1yE3FKuG2e1M2+OfvNCe+dViz7/WIgdrZi3mIibs5p74iLYfryQ0tomueU4PvXlUvxRv8ng0vYisq3TXFyMdlYy+tZiL968LuQdwqzlUvpNBid3aZdPoU3iozrRNdjLoRetlILPCmxI0RLg6cKNPUOuel1rsVfRWGG/xV4r/e6TJhvFvMUkhsQGEBvoadG2zlZcu3aVij6j2FL0dTD3ztIMyP5F2sVRKVNgWzQ2G/jiYB4T+oTi72n7Zi1Xo7W906SiL342VGnh3I9W02fPTE3S0GwQ+Uwxb7E8RzZJZi0O0KFwodgrLkZjgWIPOohZy6W4+UKfu+Hop4qfggkIgsCURA0HtZWcKnRM8xblbcfCFFc38v2pYu6Nj8DF6ff/uC8u9paOX2rfxR6Au5802Rz7TJlsTEAQJPOWtOwKThdaxrzlYi6c6TOKaDta0Ze+GgS1FLKt0CbfHiugqqGZqYmO0QrVWvSNjBjJP/b94/cjG3rcCh6BSmu6iXQN9iYxuhMbUrSIyrkhy9Fq1hKeIJ3TsmP0JSVSG6cFiz3oQGYtlxKXDLpaxU/BRO6Oi8BFrWJjSo7cUiyCUvBZmE/ScjEYRe67ysvSpcVev6B+VlRoQZTJ5pq4J16abDZYYZcPfi36RKOx4xR9eh0c+hh6TATvDvbD/zrZsD+H6AAPBscGyC3FbLS6d7ZGNlyx6HNykcxbTn8LNebPyXREpiZFklVWz95MxbzFYuTsh5JTdr+7py8tlaIXLNTG2UqHMmu5FE0SBN2gtHWaiL+nCxP6hPJ5umX9FORCKfgsiNEosik1h0Ex/sQGeV3xmqK6IuZtm+d4xR4ok801Isdk09reeaHoO+/gRd/pLVBfKi1GKLRJRnEtKVnl3JcYiUplf2YtV6O16BsRPoKX9r7Ep2c+vfyiuOQW85Z11hdoh9zSNwwfNyeHXSG3CdJWgYu31EFjp1wo9lrdOC1U7EEHM2u5lFbzlrw0KDwmtxq7YGqihupGPd8eczzzFqXgsyB7M8vQltf/bhRDcX0x87bPo6yxjA/Gf+BYxR4ok811IMdk49qt20VF32x0WVlWe7bVSVsNPhHQdZzcSuyCjSlanFQC98bbr1nL1XBRu/CfMf9hePhw/r7373x25pJuhIAuEDNSWrQyGuURaUe4Oau5Oy6CrccKKa/TyS3H8WiosHuzFn1ZGdmzZ9Ocn4/mgyVmd+O8mAtmLTEdyKzlUvpPAbWrsvBuIoNjA4gK8GCDAy5aKQWfBdmQosXX/cp94yX1JczbNo+S+hI+uPED+whVvx76TwG1i+R2p9Amck02rt26EblyBWJzM9nJs9FpHdCpqvw8ZP4IcTNB1cFae66DJr2Bz9JzGd8rhCBvV7nlWAxXtStvj3mbYeHD+Pvev/PF2S9+e0H8bKjUSn93FNpkalIkOoORz9MV8xazc3gT6Bvttp1TX16OdvZsmnPz0HzwAZ5JSRZ93r4Ws5YOubvXioc/9LpD+rujq5dbjc2jUgncl6gh5Xw550ocy39CKfgsRHmdju3Hi7hrYPhlfeOlDaXM2z6PovoiPhj/AQOCB8ik0gp4+EPPO6SQ6+YGudXYPBdPNplWnmzcuncnctUqxKYmqejLcbAVroNrQVApZi0msu14ERX1zb/boeBIuKpdeWfMOwzpPIQX97zIlxlf/vrlDbeBR4DUSqfQJj1CvYmL9ONjxbzFvFwwa4mHMPvrBpKKvTnocnLRfLAEz0GWLfYANqbm4OPmxMQ+YRZ/lk0TlwxNVXDiy7avVeDe+AicVAKbUh3rHUgp+CzE5+m56AzGy16WShtKmbdtHoV1hSy5cQkDgwfKpNCKxM2Cxio48ZXcSuyCe+MiUMs02bj16E7kqpWI9fVkJyejy82zugaLYGiWQrS7jgdfx2xPNDcbU7REdHJneNdAuaVYhdaib1DYIJ7f/Txfn/ta+sLJFQZMg9PfQE2RvCLthKlJkWSW1JGaVSG3FMchNxVKTko/T+0MfUUF2jlz0WVno1nyPp6DB1v8mRV1OrYeK+TujmjWcinRw8G/i9LWaSLB3m6M6xnMZ2m56PSO08qvFHwWQBRFNqbmMDDSjx6hv/aNlzWUsWD7AgrqClg8bjHxIZY7qGxTRI+ATjHKZGMiwT5ujLshmE9lmmzcbriByFUrMdbVo501i+Y8Byj6zmyD2kKIV8xaTOF8aR17zpUxJVHjcGYtV8PNyY1FYxeRFJrEX3f/lS2ZW6Qv4maDUQ+HP5ZVn71wW7/OeLs5Wc1xuEOQvhqcPaHPPXIruSYuFHtZWVKxN2SIVZ77+cE8dAbjVR3SOwyCIP3s0+6FktNyq7ELpiRFUlan47sTjrPIpxR8FiAtu4KM4lqmJv66u1feWM787fPJrcll8bjFJIYmyqjQyqhU0qpk9m4p9FqhTaa2TDbfn5RnsnHr2ZPIFcsx1NaSPSuZ5vx8WXSYjfTV4BUK3SbIrcQu2JiqRa0SmJTQ8V6W3J3ceXfcu8SHxPPnX/7Mt+e/hcCuEDVMOoustCm2ibuLmrsGhrPlaAGV9Yp5S7tprIZjn0Pfe8DVfsxHDJWVaOfNQ5eZScTixXgOHWqV54qiyKZULf01fvQM87HKM22e/tNA5az4KZjIyG5BhPu5szHVcRatlILPAmxIycHL1Ylb+0l94xWNFczfPp+cmhzeG/dexyr2WhkwXQq7Vnb5TGJk9yDCfN3YIGMPuXvv3kQuX46hulqy0C6wU5viyhzI2CGd3VM7ya3G5tHpjXyWlsvYG4IJ8XGTW44suDu5897Y9xgYPJDndj3H1qyt0qJVeSZk/SK3PLtgSmIkOr2RLw46QIeA3Bz7FJrrpZ1mO8FQXY123nx0ZzOIeO9dvIYPs9qz07WVnCmqZaqyu/crXkFwwy1SDq2+SW41No+04BnBrrOl5JQ7htmNUvCZmaqGZrYczef2/p3xdHWisrGSBdsXoK3W8u7YdxkUNkhuifLgHSKFXR/6WAq/Vrgqrbsru86WyDrZuPftQ+TyjzBUVFwIybU7Dq4D0Si5cyq0yY6TRZTW6jq2sx3g4ezB++Pep39Qf579+Vm2e3mBq6+yaGUivTr70C/Cl40pOYp5S3tJXwPBvSE8Tm4lJmGoqUE7bz6NZ84QvugdvEaOtOrzN6Zo8XRRc3v/zlZ9rs0TlwwN5XDya7mV2AWTEzSoBBzGvEUp+MzMV4fyaGw2MjVJQ1VTFfd/dz/nq86zaMwihnS2Tu+6zRKXLIVen/5GbiV2weQEyVzkkwPyTjbu/fpJRV9ZGdpZyTQXFcuq55owtoRmdxkLnaLlVmMXbEzNIczXjVHdg+WWIjsezh68f+P79Avqx//tfp7ve4ySzKfqy+WWZhdMSYzkdFENh3Iq5ZZivxQcgfyD0hkswfbP0xpqa8mZv4DGU6eIeOdtvMeMserzaxqb+d+RgguL7goXETsG/CKVRSsT6eznzqjuQWw+kIPeYP/mLUrBZ0ZEUWRDSg69wnyIChK4/7v7yajM4O0xbzM03Dq96zZN13FS6LXSQ24SEZ08GNEtiM0HcjEY5V0hd+/fH82yZehLSqQcpWI7KfoyvofqXGmxQaFNcsrr2XW2hEkJGtQdyKzlang6e/L+uPfpHdibP9Ue5QdXFRzZLLcsu+D2/mG4O6vZ6IAhxlYjfY0UnN13ktxK2sRQW0fOgvtpOH6c8LfexHvsWKtr+OpwPg3NBqZ0gDiZa6bVT+H8z1J7ukKbTEmKpLimiR9O2ck7z1VQCj4zcjSvihMF1dwd78/CHQs5U3GG/4z+DyMiRsgtzTZQqaVzVOd+gIpsudXYBVMTNRRWN7LzjPyTjUfcQDTLPqS5qAjtnLnoS0vlltQ26avBIxB63CK3ErugdTe5dXdZQcLLxYslNy6hZ0AvngoOYufh5Yp5iwl4uzlze/8wvj6ST22TXm459oeuXlpc6PUHKdPWhjHW1ZHzwAM0HDlC+Jtv4jN+vCw6NqbkcEOoN/0jfGV5vs0zYIbkp5Cm7PKZwtgbggnydmWjA7R1KgWfGdmQkoObi44dla9wsuwkb416i1GaUXLLsi1aQ68PrpNXh50wrmcIgV4ubLCRFXKP+Hgil35Ac34+2jlz0JeVyS3p96kphNPfwoCp4OQitxqbx2AU2XwglxHdgojo5CG3HJvD28WbD8Z/QA/3EJ5wbWDX4ZVyS7IL7kuMpF5n4OvDdu70KwcnvpQCs208TsZYX0/OAw/ScOgQ4W/8G58JN8mi41heFUfzqpiSqEGwg/ZXWfAJg+4TJD8FQ7PcamweZ7WKSfER/HS6mIKqBrnltAuzFHyCINwsCMJpQRAyBEF49grfuwqCsKnl+/2CIERf9N1zLZ+fFgTBbj3T65r0fHX4HEHd1nK6/CRvjHqDMZHW7V23C/w0UmvnwXVgUFZ828LFScU9cRH8cKqY4upGueUA4JGYiGbJEnQ5udJOX4WNhisf+hhEg9LOaSI7zxRTWN2oONtdBR8XH5bespquzQYeP/w2u/N2yy3J5omL9KN7iJdDrJBbnfQ1UmB2lPUcLq8VY0MDOQsfoj49nc6vvYbPxImyadmUmoOrk4q7BiodClclLhnqiuHMVrmV2AX3JWowirA5NVduKe2i3QWfIAhqYDEwEegFTBUEodcll80DKkRR7Ar8B3it5d5ewBSgN3Az8H7LeHbHF4cyMYYup9qYyWsjX2Nc1Di5JdkucclQky9Z5Su0yX2JGgxGkU/SbGey8Rw8CM2S99FlZ9tm0Wc0Si9LUcMgsJvcauyCjSk5BHq5MK5niNxSbBpf73A+DBxBjK6ZP/74GHvz98otyaYRBIEpiZEczqnkZEG13HLsh5IzoN0jnbmy0d0qY2MjOQ89RH1KCp1f/Re+t90qm5YGnYH/Hsrjlr5h+Ho4y6bDLuh6I3iHKW2dJhIV4MlT47szrGuA3FLahTl2+JKADFEUM0VR1AEbgT9ccs0fgNa/WZ8C4wRpv/0PwEZRFJtEUTwPZLSMZ1c06htZdPw5nNyzeXXEv7gpWp52Bruhx0TwDFbMW0wkNsiLQTH+bErNwSizecvFeA4ZQsTixegyM9HOm4ehqkpuSb+S/QtUnJdelhTapLi6ke9PFXNPXAQuTkqnf1v4JSxgWUEhkU4+PPbDY+wv2C+3JJvmroHhuKhVbExxnBBji5O+GlROMGCa3EquiLGpidyHH6F+337C/vVPfO+4Q1Y93xwtoKZRz31Kh0LbqJ2k4zUZO6DKdhaSbZlHx3UjIdq2z9G2hTl+socDF/dq5LZ8dsVrRFHUA1VAgIn3AiAIwv2CIBwQBOFASUmJGWSbDxVOhHlE84fwPzExVr52BrtB7Sz9EDuzVTpnpdAmU5Mi0ZbXszfTts7MeQ0fRsR776I7m4F27jwM1Taygp+2Gtx8JbMDhTb5JE1yglVelkwkIoFOAT34qNpIhHcEj3z/CKmFqXKrslk6ebpwc59QvjiYR2OzQW45to9eB4c3SIujXrYXj2LU6ch99FHqdu8m7OWX8bvzTrklsTFVS0ygJ4Ni7Pul3GoMbMmlVfwUOgzmKPiu1Gtw6TbE711jyr3Sh6L4oSiKCaIoJgQFBV2jRMvi4uTEl1Pe5OXxym6CycTNks5XKZONSdzcJxQfNyebPAfjNXIk4e8uovHMGbTzF2CoqZFXUH05nPwK+t0Hzu7yarEDjEaRzQdyGBTjT2yQl9xy7ANBgPhk/PMPsWzAU3T26szD3z9MWlGa3MpslimJGqob9Xx7rEBuKbbP6S1QXwZxs+VWchlGnY5MENYiAAAgAElEQVS8Rx+j7uddhP7jJfzuuVtuSWQU15CaVcF9ilmL6XSKgtjRkL5WyqtVcHjMUfDlAhcvC0cAl9pxXbhGEAQnwBcoN/FeBUckoAtEj5DaOo32H2hpadyc1dwdF8G2Y4WU1+nklnMZ3qNHE/HO2zSePEnO/AUYamvlE3NkExh0SjuniezLLCO7rJ4pScru3jXR7z5QuxB4/EuWT1hOiEcID+14iIPFB+VWZpMMjg0gKsBDyeQzhfQ14KuBLrZl/CbqdOQ9/gS1O3cS+re/0WmSbWQDbkrNwUklcE+cYtZyTcQnSzm1536UW4mCFTBHwZcKdBMEIUYQBBckE5avLrnmK6DVKu9e4AdRFMWWz6e0uHjGAN2AFDNoUrAH4pKhMhvO75RbiV0wJUmDzmDk83Tb7Ln3HjuW8LfepOH4cXIW3I+hts76IkRRaufsHAehfa3/fDtkY2oOPm5OTOwTJrcU+8LDH3reAUc2EejkyfIJywnyCGLhjoUcLjkstzqbQ6USmJygYf/5cjJLZFwQsnUqsqUX8IEzpOxaG0Fsbibvqaeo/eEHQp7/K52m3Ce3JACa9AY+S89jfK8Qgrxd5ZZjX/S4VcqpTV8ltxKb5wftD5Q3lssto120u+BrOZP3CLANOAlsFkXxuCAILwmC0HqKdzkQIAhCBvAk8GzLvceBzcAJYCvwsCiKyt5yR6Hn7eDeSTqcrtAmN4T6MEDjx8bUHEQbDX32GT+e8DffpOHIEXIeeABjnZWLvtxUKDlp87lVtkJFnY6txwq5Oy4CN2fbebm0G+KTobEKTnxFsEcwy29ajr+bPw9+9yBHS47Krc7mmBQfgVolsMkGW9NthoNrpX+2ZtbaAKJeT96fnqbmux2E/PnP+E+fLrekC3x3oojyOp1y/vh6cHKRcmpPfwu1xXKrsVm2ZG7hiZ+e4P1D78stpV2YxY5NFMVvRFHsLopiF1EUX2n57AVRFL9q+X2jKIqTRFHsKopikiiKmRfd+0rLfT1EUfzWHHoU7ARnN+g3BU7+D+pK5VZjF0xN0pBRXEtato3FIFyEz4SbCH/j3zQcOkTOgwsx1tdb7+Hpq8HZE/rcY71n2jGfH8xDZzAqL0vXS9Rw6BRzYdEqxDOEFRNW4OfqxwPfPcDx0uMyC7Qtgn3cGHdDMJ+l56LTK638l2HQw8H1km2+r220J4p6PXlPP03Ntm0E/9//4T9rptySfsOm1BzC/dwZ0c22vB3shoGzwKiHQ+vlVmKTfHv+W/78y5+JD4nnqYSn5JbTLhT/bQV5iU8GY7PkSKbQJrf164yni5qPbdze3GfiRDq/9hr1aWnkLHwIY0OD5R/aWA3HPoc+d4Ort+WfZ+eIosimVC39NX70DPORW459olJJZ0Wzd0NpBgChnqGsmLACH1cfFny3gBNlJ2QWaVtMSdJQWqvj+5NFckuxPTJ2SBm1NtKhIOr15P/fs9R8u5Xgp58mYM5suSX9Bm1ZPbvOljI5QYNapZi1XBdB3SFyqHRu1EY7h+RiW9Y2ntv1HAODB/Le2Pdwd7JvEzil4FOQl+CeoBkknbtSJps28XR14o4B4XxztICqhma55VwV39tupfOr/6I+JYXchx/G2Nho2Qce+wya6yF+tmWf4yCkays5U1TLFGV3r30MmAaC+jet6WFeYSyfsBwvZy/u/+5+TpefllGgbTGqezChPm5sUNo6Lyd9tZRR2/1muZUgGgzkP/dnqrdsIeipJwmYN1duSZex6YAWlQCTE21jN9RuiU+G8kzI+kVuJTbDd9nf8X8//x/9g/rz/rj38XD2kFtSu1EKPgX5iUuGsrOg3Su3ErtgapKGxmYjXx7Kk1tKm/jecQdh//ondXv3kfvwIxibmiz3sPTVENwLwuMt9wwHYlOqFg8XNbf37yy3FPvGO1TKSzv0sZSf1kK4VzjLJyzH3cmd+dvnK0VfC2qVwOSECHadLSG3wort3rZOdT6c2QYDp0tZtTIiGgwU/PkvVH/9NUGPP07gggWy6rkSzQYjmw/kMqZHMGG+9r3zIjs97wBXX8VPoYXvs7/nmZ3P0DewL+/f6BjFHigFn4It0PtOcPWBtFVyK7EL+ob70ivMhw0ptmvecjF+d95J2MsvU7dnD7mPPGqZoq/gCOQflBYPlBymNqlpbObrwwXc0b8zXq5Ocsuxf+KSob4UTn/zm4813hpW3LQCF7ULC7Yv4GzFWZkE2haTEqRd5c0HbNNxWBYOrpeyaWWOkxGNRgr++jxVX35J0B8fI/DBB2TV83v8cKqYkpompiRFyi3F/nHxgH6T4cRXUo5tB+ZH7Y/8aeef6BXYiyU3LsHT2VNuSWZDKfgU5MfFE/pOghNfQoPtmpHYCoIgMHVQJCcLqjmSWyW3HJPwu+duwv7xEnW7dpH72GMYdWbOEkxfA2pX6YeWQpt8dTifhmaDYtZiLrqOA5+IKy5aaXw0rJiwAmeVM/O3zyejIsP6+mwMjb8HI7oFsTk1B71BMW/BaJTmsJhR/8/efYdHUb1tHP/OpvfeIA1C75DQmyJVARtKh0AAqdJEsSGCWFGsoLTQQQT5KUqRLh1C7z2dJEBI79l5/5jgCwokIbuZ3c35XFeuQHZ25o6SzZ455zwPuFZVLYas1XJz2jRSN2zAfexY3EeNUi1LcdYcicbL0Yqna4piLToRPBgKc+H0WrWTqGZPzB4m7ZlEbbfa/NjxR+wt7dWOpFNiwCcYhuDBUJBToV9sSuP5RpWwsTBjzVHDLt5yP+devfCe8SGZe/4mbpwOB315Wcq/mzo9ld5oQrF+PhpDLW8HGvk5qx3FNGjMlJmZ67sg+cZ/Hg5wDGBRl0WYSWaE/RXGtZRrKoQ0LP2a+ZGQlsOey7fUjqK+6zshNVrV/ceyVkvC9A9JXbce99Gj8Bg7RrUsxYlLyWb35Vu8GuKHuZl4G6sT3vWhUmNlWacRrBzStb2xe5m4eyI1XWryY6cfcbA0vcJv4idFMAw+DcGnkSjeUkKO1hY818CH30/Gk5FboHacEnN59VW8p08nY88e4sZPQNbFoO/8b5CbqiyrE4p1Lj6V07Gp9G7qhySWv+pO4wEgaZSZmocIdApkUZdFaCQNYVvDuJ56/aHHVRTP1PbC3d6K1QZecbhcHFsCtm5Q6zlVLi/LMgkzZ5Kydi1ur72G+7hxquQoqbVFBX9eDRErFHSqyWBIOg+xEWonKVf74vYxYdcEqjlX46dOP+FoaZpVq8WATzAcwYMh6RzEHVM7iVHo28yPzLxCNp6KVztKqbj06Y33B9PI2LWL2ImTyj7oO75MWQYV2EY3AU3c6iPRWJlreKmxqGynU06VoXpnpZ9V4cMr6FZxqsKiLosACNsaxo3U/84GVhQWZhpeCfFl58UkbqaWQ9sWQ5WeqDS+btQPzK3K/fKyLJMwYwYpq9fgNnwYHhPGG/SNoEKtzNqIGNpW98DP1TSKaRiM+r2UPrYVqHjL/rj9jN85niDnIBZ0XoCTlZPakfRGDPgEw1GvF1jYiuItJdTE34XqnvasMcI75C59++L1/ntk7NhB3OTJyPlP2GLi1iWIPqAspzPgNymGIjO3gP+diOe5Bj442apbCdAkBYdCRiJc3vLIQ6o6VWVRl0VoZS1hW8OITI0st3iGpk9TP7QyrD1agYu3nFypNL5WYYWCLMskzpypDPaGheExaZJBD/YA9lxO4mZqDn3F/mPds3JQ+tie/RVy09VOo3cH4g7w+s7Xqepc1eQHeyAGfIIhsXasUC82ZSVJEn2a+XMqNpXz8Wlqxyk11/798Xr3XdK3bSdu8htPNug7thQ0FtBogO4DmqA/TitLgPuJynb6Ua0TOFQq9qZVkHMQizovolAuJGxrGFFpUeWTz8AEuNnRppo7Px+NplBbAZfy3yvWEtAG3KuX66WVwd5H3F21GtewoXhMnmzwgz2A1UdicLe3omMdL7WjmKYmgyE/E878onYSvToQf4DXdxUN9jqZ/mAPxIBPMDRNQotebNapncQovNS4MpbmGqMq3nI/14ED8Hp7Kul//UXcG1NKN+jLz4FTq6B2d7AXldpKYtWRGKp72hMc4KJ2FNNkZg5NBsLVHXD38YO4ai7VWNh5IfnafIZuHUp0mnH+DJdV32b+xKfm8PeVCli8JfJvuHuj3Iu1yLJM4kezuLtqFa5Dh+L5xhtGMdhLTMth58UkegX7YiGKteiHbwh41jXplVYH4w/y+s7XCXQMZEGnBThbV4ziZeInRjAsviFK8+wKtIa8LFzsLOlWz5sNJ+LIzitUO84TcR08GM+pb5G+dWvpBn332nioWNnOmJyLT+VUTAr9mvsbxZs7o9W4aLb5xIpiD63uUp2FXRaSX5jPkK1DKuSgr1MdL9zsLFl9uOJ97xxbAjYuULtHuV1SlmUSZ33M3ZUrcQ0NxXOKcQz2AH6JiKFQK9NHLOfUH0mCkCFw8xTEHVc7jc4dunmIcTvHEeAYwILOFWewB2LAJxgaSVKWFMSfUJppC8Xq09Sf9JwCNp25qXaUJ+YWGlr6Qd+xJUXFWtrpPZ8puFes5cXGldWOYtqc/aFaRzixHAqLr6Bbw6UGCzovqLCDPktzDb1CfNlxMYnEtBy145SfzNtw4Q9o2BcsrMvlkrIsk/jxJ9xdsUK50fbWm0Yz2NNqZdYcjaFVkBuB7qbTDNsgNXi1qJ5CuNpJdOrwzcOM2zEOf0d/FnZeiIt1xVrpIgZ8guFp8KrSRFvM8pVIi6quVHG3M/ry5qUa9CVdLCrWMhg04mWsOFl5RcVa6vvgbGupdhzTFxwK6Tfhyl8lOryma80KPejr09SfQq3MLxExakcpPydXgTa/3Iq1yLJM4iefcHf5clwHD8Jz6ltGM9gD2Hf1NrF3s+kj9h/rn7WTUk/hzHrIMb76AA9z5OYRxu4Yi6+Db4Uc7IEY8AmGyNYV6jyvNNPOy1I7jcGTJIneTf2IiLrLlUTjLnZT4kHf8XvFWvqXb0Aj9cepm2TkFtC3uXizVC5qdAF771LdtPr3oK8iFXKp4m5HqyA3Vh+JQVsRirfIsvJvw68FeNYqh8vJJH36KXeXLcdl0EA8p041qsEewJqj0bjYWtClrijWUi6Ch5hM8ZbDNw8zZseYfwZ7rtauakdShRjwCYYpOBRy0+Dcr2onMQovN/HFXCOx5qjx3yEvdtCXn63cHRfFWkps1ZFoqnvaEyKKtZQPMwto3F+Z4UstecuBmq41/9nTN3Tr0Ao16OvbzJ+4lGz2Xr2tdhT9i9oPd64qvWf17N7MXvLSZbgMGojX228b3WDvVnouf51L5OUmvliZm6kdp2KoHAxe9ZVlnbLx3oQ5dPPQP4O9RV0W4WbjpnYk1YgBn2CYAlqBe02IWKx2EqPg4WBF57pe/Ho8lpx84yzecr/HDvrO/w45KcodSKFY5+PTOBmTQt9molhLuWoyCGRtiYq33K+GS40KOejrXNcL14pSvOXYUrBygjov6PUy/xRoWbYc18GDjXKwB7D+eCwFWlks5yxPkgQhoZBwBuKNs3jLwfiDjN0xFn9HfxZ1WVRhZ/buEQM+wTDdqxQVd0ypFiUUq28zf+5m5bPlbILaUXTikYO+Y+FKsZYqolhLSaw+Eo2luYaXmohiLeXKJRCCOsDx5aAt3U2YijjoszI3o1ewL9svJJJkysVbspKVCsMNXgVLW71d5p/WCytWKNU4jWzP3j2yLLPmSDTNAl2p5mmvdpyKpX5R8ZYI4yveciDuwD/VOCvyMs77iQGfYLga9gFza6N8sVFD6yB3At1sWXnYdN4cPjDomzQZOe4MRB9Ulvwa4ZuX8qYUa4kTxVrUEhwKabFKX75SemDQt2UokamROo9naPo09aNAK/PLsZIvgzU6p3+Gwly9LudUmqrPVFovDB1qVNU4/+3g9TtE3smiTzPRiqHcWTtCvZfh7HrISVU7TYntj9vPuJ3jCHQMFIO9+4gBn2C4bFyUF5szv0CucRcjKQ8ajUS/5v4cjbzLpQTT+e/lFhqK1ztvk75tG7HjX0eWRbGWkvrj9E3ScwvoK5ZCqaPms2Dn+cRNjGu41GBRl0UUyAUM3TqU66nXdZvPwFT1sKdFVVfWHI02zeItsqz8W6gcDN719XMJrZaEGTO4u2o1bsPCjKrP3sOsPByNk40Fz9b3UTtKxRQyBPKzlCJ6RmBf3D5e3/k6VZyqVNhqnI8iBnyCYQsZCnkZRvNio7ZewX5YmmlYZUKzfACugwbh9fabZJxNIPZkdbQWjmpHMgqrDkdTzdOepoHil54qzCygUT+4vAXS4p/oFNVdqrOo8yIK5UKGbhnKtZRrOg5pWPo28ycmOZv910yweEvMYbh1UW+tGGStloQPZ5Cyeg1uw4fjMXmyUQ/2ktJz2Ho2gV7BvlhbiGItqqjUBLwbKDcqDLx4y764fYzfOZ6qzlVZ2HlhhWqqXhJlGvBJkuQqSdI2SZKuFH3+z7sKSZIaSZJ0UJKkc5IknZYkqfd9jy2RJOmGJEkniz4alSWPYILu3QmNMO5KUeXF1c6SZ+t78+vxODJzi2/6bExcG9ngHZxCxqUUYseNQ5ubq3YkgyaKtRiIJoNALix18Zb7VXOpRniXcCRJYujWoVy5e0WHAQ1Ll7reuNhaGH1f0Yc6ugisHKF+L52fWtZqSZj+ISk//4zbiBF4TJpo9D/3v0QoxVr6i3Yy6rlXTyHxrFJTwUD9Hfs3r+98nSDnIBZ0WiAGew9R1hm+qcAOWZarAzuK/v5vWcAgWZbrAl2BryVJuv//xBRZlhsVfZwsYx7B1EiSMsuXeAZiI9ROYxQGtAggPbeAjaeebEbBYEWE49LcB+8Pp5O5529ix4pB3+OsOVpUrKWxKNaiKrcgqPqUUpmxlMVb7lfVuSqLuyzGTDIjbGsYl5Iv6SyiIbG2MOPlJr78dS6RW+km9POdeRvO/w8a9gVLO52eWi4s5Ob775Oydi1uI1/DY+IEox/sFWplVh2OpnU1N6p6iGItqqrXCyzsDLaews7onYzfNZ7qLtVZ0FkM9h6lrAO+54F7nWWXAv+pMSzL8mVZlq8U/TkeSAJE8yyh5Oq/Apb2SnVGoVjBAS7U9HJgpSmVN0+6ADGHIDgUl9698floJpn79hE7ajTaHBOu6PeEsvMK2XA8jmfreeNiJ4q1qC4kTCnecnlrmU5TxakK4V3DsTCzIOyvMC4mX9RRQMPSp5l/UfEW4+8r+o8Ty6EwT7mBqUNyYSE333mH1PW/4j5mDB7jxxv9YA9g96Uk4lKyGdA8QO0ognXRrPTZ9ZCdonaaB2yL2sbk3ZOp7VqbBZ0X4GTlpHYkg1XWAZ+XLMs3AYo+ez7uYEmSmgGWwP2bEGYVLfWcI0mSVRnzCKbIykEpYX12PWTfVTuNwZMkif4t/DkTl8rpWMN6cX5ix5aAmeU/xVqce/XCZ9YsMg8eJGbUKLTZ2ermMzAbT8eTnltAP/FmyTDUfBYcfODowjKfKsAxgCVdlmBjbkPY1jDO3zmvg4CGpZqnUrxl1eFoCk2heItWq8yOBLQBz1o6O61cUED8m2+R+tvveIx/HY9xY01isAew4lAUng5WdKzjpXYUAZRlnQXZShE9A7Hlxham7JlCXfe6/NTpJxwtxd7+xyl2wCdJ0nZJks4+5OP50lxIkiQfYDkwRJZlbdGX3wZqAU0BV+Ctxzx/hCRJEZIkRdy6das0lxZMQfAQKMiBU2vUTmIUXmhcGRsLM1YcMoHiLfnZcGo11O4Bdm7/fNn5pRfx+eRjsg4dJua1kWgzM1UMaVhWHY4myMNOFGsxFGbmSouGazsgueyVNv0c/QjvEo69hT3D/hrG2dtny57RwAxsEUjs3Wx2X0pSO0rZXdsBKVHQVHeze3J+PnGT3yDtzz/xfGMy7qNG6ezcaotJzmL35Vv0aeqHhZmoLWgQKjUGn0YGU0/hj+t/8Nbet2jo0ZCfOv2Eg6WD2pEMXrE/SbIsd5Rlud5DPn4DEosGcvcGdA99ZZYkyRH4E3hPluVD9537pqzIBcKBZo/JMV+W5RBZlkM8PMSK0ArHpwFUDoGIxQbxYmPoHK0teKFxJX4/FU9qdr7accrm3P+UHkDBQ/7zkPMLL1Dp88/JOnaM6OEjKMzIUCGgYTkbl8rJmBT6Nw8wmbv9JqHJYJDMlNcwHfB18GVx18U4Wjoy/K/hnEwyrS3wnet64elgxXJTuGl1dKHSnqNWD52cTs7LI3biRNK3bsVz6lu4DRumk/MaitVHopFQlvYKBiQ4FJLOQexRVWP8dvU33tn7DiFeIczrOA87C93uiTVVZb118jtwr77wYOC3fx8gSZIlsAFYJsvyL/967N5gUULZ/2d6tykF3QkZCrcvQ9R+tZMYhX7NAsjJ17LhuJE3MY5YDG7VILDNQx926tGdyl9+Sfbp00QPDaMw1XgaxOrDsoOR2FiY8XKwr9pRhPs5+kDt7kq1znzdLEGubF+ZJV2X4GrtyohtIziaoO4bMV2yMNPQt5k/ey7fIuqOEc/ep0QrezebDALzsu+n1ebmEjvudTK278DrvfdwCw0te0YDklegZW1EDM/U9qKSs43acYT71e+l1FNQsXjL+svreX//+7TwacH3z3yPrYWtalmMTVkHfJ8CnSRJugJ0Kvo7kiSFSJJ0b7PCq0A7IPQh7RdWSpJ0BjgDuAMflTGPYMrqvgjWTjq7Q27q6vs60dDXiZWHo5GNdVY0/iTEHoGmw5SKrY/g2LULvt9+Q+6FC0QNGULB3Yq51zMlK4/fTsbzQuPKONlYqB1H+LeQMGUf8rn/6eyU3nbeLOm6BB87H0ZvH83B+IM6O7fa+jbzRyNJrDLmAlTHliivXcGhZT6VNieH2DFjydizB+/p03Ed0L/M5zQ0W84lcDsjT7RiMERWDkoRvXO/qlJP4eeLPzP94HRaVW7Fd898h425uCFQGmUa8MmyfEeW5WdkWa5e9Dm56OsRsiwPK/rzClmWLe5rvfBP+wVZljvIsly/aInoAFmWxXos4dEsbaFhPzj/O2SIfZwl0b9FAFeSMjgaaaQDoKMLwMJWKWVeDIcOHfCd+wN5164TPTiUgtsm2Li5GOuOxZJboGVgC1GsxSBVaQdu1SFikU5P62HrweIui/Fz9GPsjrH8Hfu3Ts+vFm8nazrX8eLniBhy8p+8pYVqCvLg+DKo3gWc/cp0Km1WFjGjRpG5fz8+sz7CpU/v4p9khFYcisLf1ZZ21cXWHYPUNEypp3BiZbledtm5ZXx0+CPa+7bn26e/xcpM1HgsLbEbVjAuIUNAmw8ny/fFxlj1aFAJB2tz4yzekpUMZ9YpFVptStZXx75tW/x+nEdedDRRgwaTn2gCBR9KSKuVWX4oipAAF+pUEtXKDJIkKW+YYo8qs9c65GbjxuLOiwlyDmL8rvHsiN6h0/OrZWCLAFKy8vnz9E21o5Tehd8h85ayQqEMCjMyiB4+gqzDR/D55GOcX35ZRwENy+XEdI7cSKZfc380GrH/2CB51wf/lsrNWK22+ON1YP7p+XwR8QWdAjox56k5WJqJVkNPQgz4BOPiUVMpbX0svNxebIyZjaXSxHjz2ZvczjCyJsYnVyp3EpsOL9XT7Fq2xH/BfAoSEogaNJD8m0b4RvEJ/H3lFlF3shjYUszuGbSGfcHcRuezfADO1s4s7LKQOq51mLx7MltubNH5NcpbyyA3qnrYGWfxlojF4BIIQR2e+BSFKSlEDxlK9qlTVP7qS5xf+E+7Y5Ox6nA0lmYaXhH7jw1bs+FwNxKubtfrZWRZ5tvj3/Ldie/oXrU7n7f7HAszsVXhSYkBn2B8QoYoLzbXd6mdxCj0b+5PfqHMumNGVLxFq1Uq2/m3BO96pX66bdOm+C1aSOGdZKIGDCQvxoQaOD/CikNRuNtb0q2ej9pRhMexcVaKH5xZp5cmxo6WjszvPJ+GHg15a+9bbLy2UefXKE+SJDGwRQAnY1I4E2tEBZmSLigFxoKHgObJ3moV3LlD1OBQci9exPfbb3Hs2lXHIQ1HVl4B64/F8mx9b9zsxXI9g1arB9h7KbN8eiLLMl9EfMGCMwt4ufrLzGozC3ONud6uVxGIAZ9gfGr3AFt3UbylhKp7OdC8itLEWGssTYyvblcG9c1KN7t3P9vGjfEPD0ebkUFU/wHkXrumu3wGJiY5ix0Xk+jT1B9Lc/GybvCaDoP8LL31FbWzsGNex3k09WrKu/veZd3ldXq5Tnl5qYmv8fUVPboIzCyh8YAnenp+YhJRAweRFxWF74/zcOjwtI4DGpbfT8aTnltAf7H/2PCZWyo3Mq5sgzu6/72qlbV8dOgjlp9fTv/a/fmg5QdoJPF7razEf0HB+JhbKb9EL22CFNOfudGF/i0CiE7OYu9VIylkcnSBcgexjH2rbOrXw3/ZMmStlqgBA8m5cEFHAQ3LysNK36p+orKdcajUCCoHK8s69VRB19bClu+f+Z42ldvw4cEPWXpuqV6uUx6cbJS+or+diiM1ywj6iuZmKIP5ui+CnXupn54fF0fUwIEUJCTgv2A+9q1b6yGk4ZBlmRWHo6jp5UBIgIvacYSSCA4Fje76it5TqC3k/f3vs/byWobWG8pbTd8S/WR1RAz4BON0bxP80YWPP04AoEtdL9zsLI3jDnnyDeXOYXCoTvpWWdesQcDyZUjW1kQNDiX7pGk1qM7JL2RtRAyd6oi+VUal6TClr2jkXr1dwtrcmm+e/oZOAZ2YHTGbeSfnGW2LlgEtlL6i64yhr+iZXyAvXWnDUUp5kZFEDhhIYUoK/uGLsW3aVA8BDcup2FTOxqUxoIW/eHNvLBx9lNVWJ5ZDXpZOTpmvzWfq3qn8fu13RjcazYQmE8S/Bx0SAz7BODn7Qa3ucHypzpoYmzIrczP6NvNn+4VEYpJ18+KsNxGLQNLopG/VPVZVqhC4YjlmLs5EDZp9GBsAACAASURBVA0j89BhnZ1bbZvO3CQ5M49BLQPVjiKURt0XwcZFWfqnRxZmFnze7nN6BvVk7qm5fBnxpVEO+upWcqKJvzMrDkUZ9tJ0WVZew7zqgV+zUj019+pVIgcORM7JIWDpEmwaNtRTSMOy8lAUtpZmvNC4stpRhNJoNgJyUpUbHGWUW5jLpF2T2BK5hUnBkxjVcJQY7OmYGPAJxqv5a0rzTx282FQEA1oEoJEklh2MVDvKo+VlwfHlyp1Dx0o6PbVF5coELF+OZeVKxLz2Ghl79uj0/GpZdjCKqh52tApyUzuKUBoWNtCoP1z8A9IT9Hopc405M1vPpE/NPiw9v5SZh2ailY2vyvHAlgHcuJ3JgWt31I7yaLFHIeEMhAxV2nCUUPaZs0QNGAhAwPJlWNeura+EBiUlK4+Np+N5vlFlHKxFBUaj4t9SubFxZEGZlqZn5mcyevtodsfu5t3m7zKk3hAdhhTuEQM+wXgFtFZebA7/pLd9MKbE28mabvW8WXM0hszcArXjPNzZ9ZCTUqZiLY9j4emJ/7JlWAUFETN2HGlbturlOuXlTGwqJ2NSGNgiQNwNNUYhQ0FboDTn1jONpOGd5u8QVi+MXy7/wjv73qFAa6CvA4/QrZ4PrnaWLD8UqXaURzu6CCztlf6hJZR55AjRoaFo7OwIXLkSq2rV9BjQsKw+EkNOvpZBop2M8ZEkZWl64hmIebJVM6m5qYz4awTHEo/xcZuP6VOrj45DCveIAZ9gvCRJmeVLPAtRB9ROYxSGtK5Cek4Bv56IUzvKf8myUqzFo7YymNcTcxcX/JcuwaZ+feImTSJlw//0di19W34oEltLM14WfauMk1uQ0qMtIhwK9T/4kiSJCcETeL3x6/x5/U8m755MXmGe3q+rK9YWZrwa4se284ncTDXApfwZt+DcBmjYB6wcSvSU9N27iRk+AnNvbwJWrcTSv+IUXioo1LL8YCStgtyo7eOodhzhSTR4Fayc4Mj8Uj/1dvZthmwdwoXkC3z11Ff0CCpbkTbh8cSATzBu9V9R9sEc/lHtJEahib8zDXydWLL/huHt44mNgJunoNmwUi2FehJmDg74L1yAXYvm3Hz7bZKX6X+GRddSsvL47WQ8LzSujKNYCmW8mg6D9Hi49Ge5XXJ4g+FMbTaVnTE7GbtjLFn5Br6v9z79m/sjA6sPR6sd5b8iFkNhLjR7rUSHp/7xJ7Fjx2FVrRoBK5Zj4eWl54CGZeu5ROJTcxjSuoraUYQnZWmnVE0//1uplqbHZcQxaPMgYtNjmdtxLh38O+gxpABiwCcYOwsbaDJY2QcjWjQUS5IkhrQO5NqtTPZeMbAWDUcXgKUDNOhdLpfT2Nri++OPOHTqROLHn3Dr228NbxD8GL9ExJJboGWg6Ftl3Gp0BWd/ODSvXC/bv3Z/ZrSaweGEwwzfNpzUXONoau7nasvTNT1ZdSSGvAID2odYkKtUja7WCTxqFHv43TU/Ez9litIvdOkSzF0qXjuCxftv4O9qS4danmpHEcqiaZiyNP1YyVq/XE+9zuDNg0nJTWF+p/m08Gmh54ACiAGfYApEi4ZSeba+D+72Viw5EKl2lP93bylUo34lXgqlCxpLSyrP+Qqnl1/i9tx5JM78CFlrQG8iH0GrVfpWNQ10EUuhjJ3GDJqPhOiDEHe8XC/9YvUX+bL9l1y4c4HQLaEkZSWV6/Wf1MCWAdzOyGXTmZtqR/l/Z3+FzCRoMarYQ+8sXEjC9OnYt2uH34L5mNnbl0NAw3I6NoVjUXcZ3CoQM43Yf2zU3IKgWseiGe7H98m8cOcCQ7YMIV+bT3iXcBp5NiqnkIIY8AnGz9kPaj0nWjSUkJW5Gf2b+7PzYhI3bmeqHUdxfCkU5v3/4L0cSebm+Hz0Ea5Dh3J31Sri33wLOd+wmzv/feUWUXeyGChaMZiGxgOV2e1ynuUD6BjQkbkd5xKfEc+gzYOITjPApZL/0r66B0Eedizcd90wZuVlGQ7NBfeayp7MRx4mkzTna5Jmf4njs8/i+/13aKytyzGo4QjfH4m9lTmvhoj9xyah6XDISFBWWz1CREIEYVvDsDSzZGnXpdR0rVmOAQUx4BNMQ/ORokVDKfRv4Y+FmcRSQ5jlKyxQilZUaV+ipVD6IEkSnlPewGPSJNL++IPYsePQZhvuzYPw/ZF4OFjRta632lEEXbB2VPbBnPsV0uLL/fItfFqwqMsiMvMzGbR5EJeSL5V7htLQaCSGtqnC2bg0jtxIVjuOUjQs4bQyu/eI/cdyYSEJH0znzk8/4dy7N5W++BzJomLuvU1Ky+GP0/H0CvYVrRhMRfVO4BygtGh4iJ3RO3lt22u42bixrOsyAp0CyzefIAZ8gokQLRpKxdPBmu4NKrHuWCzpOSrPZl3eDGmxemvFUFKSJOE+Yjje06eT8fffRA8bTmFamqqZHuZyYjp7Lt9icMsALM3FS7jJaP4aaAtVW5pez70eS7suxVxjzpAtQzieWL7LS0vrpca+ONtasGjfDbWjKLN7Ni6P3H+szc0lbsJEUtauxW3ECLynf4BkZlbOIQ3HikNRFGhlQlsFqh1F0BWNmbJCJ2o/JJ574KENVzYwcfdEarjUYFm3ZfjY+6gUsmIT7xYE0yBJ0GyEaNFQCqGtAsnILWDdsVh1gxz4XilaUaObujmKuPTpTeUvZ5N9+jRRgwZTcNuwitss2nsDawsN/ZuLYi0mxbWKsjQ9YjHkqVM1s6pzVZZ3W46bjRuvbXuNv2P/ViVHSdhYmjGgeQDbLiQSqebS9OQbcPFPCB4Clrb/ebgwI4OY4SNI37YNr3fexnPSxArdMzMnv5CVh6N5ppYnge52ascRdKnxADC3fqBFw+Kzi5l2YBrNvZuzqMsiXKwrXnEiQyEGfILpEC0aSqWhnzNN/J1ZeiASrValWdGYoxBzCFqMATNzdTI8hOOzz+I3dy55UVFE9utPXrRh7Gu6lZ7LhhNx9Ar2xcXOUu04gq61GK0sTT/9s2oRfOx9WNptKVWcqjB+53j+vF5+7SJKa1DLAMw1kroFqI4s+P/ZjX8puH2bqEGDyDp+nEpffIHroEEqBDQsG0/FcyczT7RiMEW2rkpfvlNr0GYk8WXEl8w5NoeugV354ZkfsLX47w0RofyIAZ9gOixtRYuGUgptXYXIO1nsvqxSdb6D34G1k3Jn0MDYt21DQPhitGlpRPbtR/bZc8U/Sc+WH4oiX6tlqHizZJoCWoFPQ6V4i4pL012tXVncZTGNvRozde9Ulp4rWbn18ubpaE2PhpVYGxFDarYKS9Nz0uD4MqjzAjhVfuChvJgY5WbRjUj85s3FqUf38s9nYGRZJnx/JDW9HGgV5KZ2HEEfWo4lvyCH97cMZ8m5JfSt1ZfP2n2GhZnYq6k2MeATTEvTMOVzxCJ1cxiJbvW88XK0Inx/ZPlfPPkGXNioLIWyMsyy5DaNGhGwahUaKyuiBw0iY/9+1bLk5Bey4lAUz9TyoqqHYf73EspIkpRZvtuX4OoOVaPYW9ozr+M8Ogd0ZnbEbL44+gVa2fBaloS1qUJWXiFrjqgwC39yFeSlK//P7pNz4QKRffuhTU0lYEk49m3bln82A3T4RjLnb6YR2jqwQi9rNWXZLv5MrFqH3zOvM6b+a7zd7G00khhqGALxf0EwLc7+yj6YY0tEi4YSsDDTMLBFAHuv3OZqUnr5XvzQPJDMlGIVBsyqahUCVq/Gws+PmNdGkrpxoyo5fj0eR3JmHsPbitk9k1b3JbD3VgqBqMzKzIov2n9Bv1r9WHZ+GVP3TiWvME/tWA+oW8mJllXdWHogkvzCchyQaguV7QO+zcA3+J8vZx45QtTAQUgWFgSsWolNw4bll8nAhe+/gYutBS82rlz8wYLRSclJYcRfI/hbzuS928mM1NqKgb0BEQM+wfTca9Fweq3aSYxC32b+WJpryncfTPZdOLEC6vcCx0rld90nZOHlScCK5dg2aUL8lDe5szi8XK+v1cos3Hed+pWdaFbFtVyvLZQzc0toNgyu7YCki2qnQSNpmNpsKhOaTGDzjc2M3j6ajLwMtWM9IKxNFeJTc9h8NqH8Lnp5K9y9AS3/f3YvbfNmYsKGYe7lReCqlVgFBZVfHgMXk5zFtvOJ9G3mj7VFxa1Qaqpi02MZuHkg5++cZ3b7L+jtUEMpyKYtVDuaUKRMAz5JklwlSdomSdKVos8PLb8jSVKhJEkniz5+v+/rVSRJOlz0/J8lSRJVCISyC2gN3vXh4PegNbwlSIbGzd6K5xtWYv2xuPLbBxMRDvmZ0HJs+VxPB8wcHPBbuACHrl1J+vxzEj/9DLmc/n3tupTE9VuZDGtbRdwxrQiChyrV7g6XfyP2h5EkibD6YcxqM4tjiccI3RLKraxbasf6R4danlRxt2PR3nJsxH5oLjj6Qq0eyLLMnfAlxE2chHWDBgSuXIGFjyg9f7+lByKRJImBLUV1YVNz7s45BmwaQHJOMvM7z6dzYBdoNQ6Sr8GlzWrHE4qUdYZvKrBDluXqwI6ivz9MtizLjYo+et739c+AOUXPvwuElTGPICj7YFpPgNuX4dImtdMYhdDWgWTnF7LqcDnsgynIU/olVn0avOvp/3o6pLG0pPKXs3Hp35/kJUuIf/Mt5Dz9L3FbuPcGPk7WPFtfvImsEOzclJ5up9ZA5h210/yjZ1BPvnvmO6LToxm4eSA3Ug2gBx5FjdhbB3IqNpVjUXf1f8GEMxC5F5qPQEYi8ZNPSPrsMxy6dMF/8SLMnJ31n8GIZOYW8HNEDN3qeePjZKN2HEGH9sXtY8iWIViaWbK823KCvYqWN9fuqWyxOfCdugGFf5R1wPc8cK9811LghZI+UVJuU3cA1j3J8wXhseq8AM4BsG+OaMReAnUrOdGmmjuL998gJ1/PSzDOroOMBGhlPLN795PMzPB67108Jk0i7Y8/iB4+gsLUVL1d72xcKgev32FI60AszMQq/AqjxSgoyIFji9VO8oA2ldsQ3iWc7IJsBm0exMmkk2pHAuDlYF+cbMqpEfuhH8HCFm2d3sRNnMTdZctxHTyYynO+QmNlpf/rG5n1x2NJzylgaBux/9iUbLiygbE7xhLgGMCKZ1dQ1bnq/z9oZq60W4o5BDFH1Asp/KOs7x68ZFm+CVD02fMRx1lLkhQhSdIhSZLuDercgBRZlguK/h4LiJ28gm6YmStLCuIiIEq9yorGZPRTQdxKz2X9cT02YpdlZV2/Zx0IekZ/19EzSZJwHzGcSp9/Rtbx40r59dg4vVxr0b4b2Fma0bupv17OLxgoz9oQ1AGOLFRmxQ1IXfe6LO+2HAdLB8K2hrE1cqvakbC1NKdfc3+2nksgJlmPjeszbsGZtRRU70X06ElKQ/W3p+L19lQkjbgh828FhVoW77tR1PdVNN02BbIsM+/UPKYdmEYz72aEdwnH0/Yhb/8bD1DaLolZPoNQ7KuTJEnbJUk6+5CP50txHX9ZlkOAfsDXkiQFAQ/biPLIqRhJkkYUDRojbt0ynL0DggFrPABs3WHf12onMQotg9xo6OvET3uuU6CvanfXdkLSOWXvngnsRXPq2RP/hQspuHWLyD59yD5zVqfnv5mazcZT8fRu6o+TjehjVOG0GKPMhp/boHaS//B39GfFsyuo41aHN/a8weKzi8tv/9wjDG4ZiEaS9NtmJmIReamFRC24QM65c1SeMwfXwYP1dz0jt+lsApF3shjVXhSwMQUF2gI+PPghc0/OpWdQT37o+AP2lo9oE2RlDyFhSvul5OvlG1T4j2IHfLIsd5Rlud5DPn4DEiVJ8gEo+vzQ7s2yLMcXfb4O7AYaA7cBZ0mSzIsO8wXiH5NjvizLIbIsh3h4eJTiWxQqLAsbaDESrm6DBN2+ETdFkiQx6qlqRCdn6a/a3YHvlJLz9Xvp5/wqsGvejMDVSq++qEGDSN+5U2fnXnogCq0sM6R1oM7OKRiRoA7gXgMO/WCQS9NdrV1Z2GUhXQK7MOfYHGYemkmBtqD4J+qJt5M13Rv4sDYihrQcPRSgys0g+8+fiNxVmYK0DPzDF+PYtYvur2MiZFlm7q6rVPO0p3MdL7XjCGWUkZfB2B1jWX9lPSMajOCj1h9hoSnmRmTz18DMAg6q32amoivr+oPfgXu3tgYDv/37AEmSXCRJsir6szvQGjgvK7cCdwG9Hvd8QSiTpsPA0h72i1m+kuhcx4sgDzvm7r6m+7v1CWfh+i5oPgLMTWufi1VQEIFrVmMVFETsmLEkL19R5nNm5haw6nAU3er54Odqq4OUgtHRaKDlGLh5SpkdN0BWZlZ83u5zhtYbyi+Xf2HszrFk5meqliesTVUycgtYezRG5+dOm/8eUZss0Tg4E7h6FbbBwcU/qQLbeTGJiwnpjH4qCI3G+Fd0VGTxGfEM3DyQwzcP80HLDxjXeFzJKkY7eEODV5U2TFnJ+g8qPFJZB3yfAp0kSboCdCr6O5IkhUiStLDomNpAhCRJp1AGeJ/Ksny+6LG3gEmSJF1F2dO3qIx5BOFBNi4QHApnf4W7UWqnMXgajcTI9kFcuJnGnss6Xjp98AewsIPgIbo9r4Ew9/AgYNlS7Dt0IHHWLBI/+RS58MkL4PwSEUNaTgFhotF6xdawLzhWhr9nq53kkTSShonBE/mg5Qccij/E4M2DScgsx55496nvq/SqXLzvBnkFulmaLssyt3+cR9wPW7H2siFw3QasqlYt/okVmCzLfL/rKr4uNvRoaPi9VoVHO33rNH3/7EtiZiLzOs2jV41SrtBpORYKsuHowuKPFfSmTAM+WZbvyLL8jCzL1Ys+Jxd9PUKW5WFFfz4gy3J9WZYbFn1edN/zr8uy3EyW5WqyLL8iy3Ju2b4dQXiIlmNA0ih9+YRiPd+oMj5O1szdfU13J027CWd+KdpXabqNwzW2tvh++w0uAweSvHQpsePHo80qfQGJQq3M4v2RBAe4iEIHFZ25FbQeD9EHINKwC1D1qtGLH575gdiMWPr/2Z+Lyeo0jh/9VBDxqTn8qoMCVHJeHjffe49bX3+Lo38W/nNnY+7uroOUpu3Q9WRORKfwWruqorqwEdsauZWhW4diY27DimdX0MKnRelP4lkbqndW2jHl5+g+pFAi4qdQMH2OlZSeVseXQ+ZttdMYPEtzDcPbVuXIjWSOReloCcaRn0AuVErNmzjJzAzvd9/B6523ydi5i8j+A8i/ebNU5/jzzE2ik7MYJsqYCwBNBoGdB/z9hdpJitW6cmuWdl2KJEkM3jyY3TG7yz1D+xoeNPB14ofdV8kvQwGqwpQUoocNJ3X9r7g3kaj0SnU0NY23unB5mrv7Ku72VrwS4qd2FOEJyLLMwjMLeWPPG9R2rc2q51Y92HahtFqNg6zbcHqN7kIKpSKpXVXrSYSEhMgREREPfC0/P5/Y2Fhycire3QNra2t8fX2xsBBV/B7p1iX4oTm0mwId3lU7jcHLyiug9ac7CQ5wYeHgpmU7WU4afF0Pqj4Fry7TRTyjkbFnD3GTJiPZ2OD3w/fYNGxY7HO0WpkuX/+NJMGW8e3E3hdBsf8b2DYNhu0A3xC10xQrMTOR13e9zoU7F5gQPIEhdYeUbM+Pjmw/n8iwZRHMfqUhvYJ9S/38vMhIYl4bSX58PD7Dn8UpeR70Wws1RJGW4pyOTaHn9/uZ2q0WI0V1TqOTX5jPhwc/5Ldrv9GtSjdmtp6JlVkZ993LMsxvD3lZMOaIsj9Z0AlJko4VdUJ4LPPiDjAWsbGxODg4EBgYWK6/VNQmyzJ37twhNjaWKlXEbMAjedSEWs/BkfnK8iirR5QRFgClp1VoqyrM2X6ZSwnp1PR2ePKTHfkJclKh9QTdBTQS9u3bE7hmNTGjRhM1cBA+s2bh1KP7Y5+z6exNriRl8F3fxmKwJ/y/kKGwb46yl6+f4d8l97LzYknXJby//33mHJvDtZRrTGs5rexvHEvomdqe1PFxZO6uq7zYuDJmpfhZyjx8hNjXX0fSaPBfvAjbQyPBu76yLE0o1txd13C0Nqd/c9E71Nik5KQwac8kjiYcZVTDUYxqOEo376klCVq9DuvD4PJm5f2YUK5MZoidk5ODm5tbhRrsgVJK383NrULObJZa6wmQkwLHl6qdxCgMbhWAraUZP+4pw16+nDSl0XqNrlC5ie7CGRGr6tUJ/GUtNg0aED9lCklff42sffgyM61W5tsdV6jmac+z9X3KOalg0KwcoMVo5c3SzdNqpykRG3Mbvmj3BWMajeH3a78TtjWM29nls6xekiTGdajG9duZ/HH6kR2f/uPu2rVEDxuGuZsbgWt/xtYmBu5chbaTTaJ3qL5dSUxny7kEQlsF4mAtVh0Zk8t3L9Pnzz6cTDrJx20+ZnSj0bp9T13nBXCpAns+M8g2M6bOZAZ8QIUb7N1TUb/vUvNrCgFtlGqRBXlqpzF4zraW9Gvmz++n4olJLn3hEUDZpJ2TAk9N1W04I2Pu4oL/4kU49XqZOz/+RNz4CQ8t5rLlXAKXEzMY16FaqWYkhAqi2QiwcoS9X6qdpMQkSWJkw5F82f5LLiVfou+ffblw50K5XLtLXW9qeNnz/c6raLWPf4Mp5+eTMGMGCdM+wK5ZMwLXrMbS1xf2fgVu1aF2z3LJbOzm7bmGjYUZoa3FiiNjsiN6BwM2DSCvMI8lXZfQI6iH7i9iZg7t31TazFzapPvzC49lUgM+QzJ9+nRmz1bKaE+bNo3t27eX6XyFhYU0btyY7t0fvxxMKEabCZAWp1SMFIoV1rYKGgkW7L1e+ifnpCqVUWt0g0qNdR/OyEiWlvjMnInX21NJ37GDyAEPFnO5N7sX5GFH9waijLnwEDbO0Gw4nP9N2ZdsRDoHdmZpt6XIsszgLYPZHlW234klodFIjO1QnStJGWw59+g2EQXJyUQPGcrdVatxHToUv59+xMzRES5vhcQz0HYSaMz0ntfYxSRn8dvJePo198fVzlLtOEIJaGUt807NY8KuCVRzrsaa7mto4NFAfxes/yq4BsGuT+ARK10E/RADvnIwY8YMOnbsWKZzfPPNN9SuXVtHiSqwah3Bq55SAEG82BTLx8mGlxr78vPRGG5nlLJripjd+w9JknAdPBi/H+eRHxXNjV6vkHX0KAB/nU/gYkI64zpUF7N7wqO1GA0WNsrMk5Gp41aH1c+tprpzdSbunsi8U/PQyvp9HX6uvg9VPez4budVHlakLufCBW706kX26dNU+vwzvN6cgmRuriw52zsbnP2h/it6zWgq5v99HY0Ew9uKHoXGICs/izf2vMHck3PpUbUH4V3D8bT11O9Fzcyh/VvKjZSLf+j3WsIDxIBPh2bNmkXNmjXp2LEjly79/93X0NBQ1q1bB0BgYCDvvPMOLVu2JCQkhOPHj9OlSxeCgoL48ccfH3re2NhY/vzzT4YNG1Yu34dJkyRlL9/tS3Dhd7XTGIUR7auSV6glfP+Nkj/p3uxezWehUiP9hTNS9u3aEbj2Z8wcHYkaMpQ7S5fxzfYrVHW3E02Khcezc1cKuJz5BZKfYOZdZR62HizuupjuVbsz9+RcJuyaQHpeut6uZ6aRGPNUNS7cTGP7haQHHkvbvJnIvv2gUEvAypU49bxv2eaNvyH2qFLky0zsRStOUnoOP0fE0CvYF28na7XjCMWIy4hj4OaB7IjewRshbzCrzaxyK6hE/V7KMundYpavPJlMlc77fbjxHOfj03R6zjqVHPmgR91HPn7s2DHWrFnDiRMnKCgooEmTJgQHBz/0WD8/Pw4ePMjEiRMJDQ1l//795OTkULduXUaOHPmf4ydMmMDnn39Oerr+filWKPVeUvpZ7ZoFtbord5yERwrysKdbPW+WHYxiRLsgnGxK8ObncFFlzvZv6T+gkbIKCiJw7c/EvzWVpE8+4Vm/YHxnfihm94TitRoHRxbAvq+h57dqpyk1KzMrPm7zMXXd6jI7Yjb9/uzH109/TZCzfkr4P9+oEt/suMK3O67QsbYnaLXc+uZb7syfj03jxvh++w3mHh4PPmnvbLD3hkYD9JLJ1Czad4OCQi2vtRNtGAzd0YSjTN49mQK5gLnPzKV15dblG0Bjpqz8WR8GF36Dui+W7/UrKDHDpyN79+7lxRdfxNbWFkdHR3r2fPQG73uP1a9fn+bNm+Pg4ICHhwfW1takpKQ8cOwff/yBp6fnIwePwhPQmEGH9+D2ZdEEtITGPF2N9JwC5v9dgoqd2SlFs3vPidm9Ypg5OFD5u2/Z0qwnHWKO0/CzKeTHxakdSzB0Dt5KM/aTqyAlRu00T0SSJAbUGcCCzgtIy0uj35/92Ba1TS/XMjfTMObpIM7EpbLn+HViR4/hzvz5OL/SC/+lS/472Is5oszwtRoHFmK2qjipWfmsPBTNcw0qEehup3Yc4RFkWWbpuaUM/2s4ztbOrHp2VfkP9u6p+yK414Tdn4K2UJ0MFYxJTm08biZOn0paLdPKSpk212g0//z53t8LCgoeOHb//v38/vvvbNq0iZycHNLS0hgwYAArVqzQXfCKqHYPqNREebGp/wqYl9NSBiNVt5ITPRtWYvG+SAa3DMTT8TFvgu7N7j0lZvdKYsel23xTqR2132hGlZ8+48bLvaj89RzsWrRQO5pgyFqPh2PhcOBbePYLtdM8sabeTfm5+89M3j2ZSbsnMbTeUF5v/DpmOi6S8mJjXzas3YXFqFAyslPwmvY+Ln37Pvz39t+zwcYVQoboNIOpWrT/Bhm5BYx+SszuGaqMvAymHZjGtqhtdPTvyMzWM7G3VLEf8b1ZvnVD4NwGZZmnoFdihk9H2rVrx4YNG8jOziY9PZ2NGzfq5LyffPIJsbGxREZGsmbNGjp06CAGe7ogSfDMNEiNgYjFaqcxCpM71yC/UMu3O688+qDsFKXtRa3u4NOw/MIZKVmW+WbHZQLcbOk45EWq/LIWM3c30SMAswAAIABJREFUooeGcWdx+EOLTAgCAM5+0LAvHFsK6YlqpykTbztvwruG06tGLxafXcyo7aNIyUkp/omlkPW/X3l/85do8/JJ/fg7XPv1e/hg7+YpuLJVKY5jKWaripOUnsPCvdd5roEPtX0c1Y4jPMTVu1fp+2dfdkbv5I2QN/jqqa/UHezdU+cF8Kyj9OUTs3x6JwZ8OtKkSRN69+5No0aNePnll2nbtq3akYTiVH0KAtsqd3NzM9ROY/AC3Ozo28yfNUdiiLyd+fCDDv8IuWLvXkntvJjE2bg0xjxdDXMzDZaBgQSu+RmHjh1J+vxz4sZPoFDs3RUepc1E0OYrs3xGztLMkg9afsD0ltOJSIyg9x+9OXfnXJnPq83JIf7dd7n53vvYhQQzo+dUvop/zIqObR+AjYvS/kIo1jfbr5BXoGVK55pqRxEeYtP1TfTb1I/0vHQWdF7A4LqDDad3s0ajzPLdvgxn16udxuRJxngHOSQkRI6IiHjgaxcuXKjQbQsq+vf/xGKOwqKO8PR70H6K2mkMXlJ6Du0/303HOl581/dfvfWyU+DrBlClLfRZqU5AIyLLMs//sJ+7WXnsnPwUFmaaBx5LXhxO0ldfYVGpEpW/noNNXXWWqgsG7n+jlYqdYyPAJUDtNDpx5tYZJu6eSHJOMlOaTqFPzT5P9CY1Lzqa2PETyL1wAbdRI/EYO5Ylh6L5cON51oxoQYuqbg8+4eoOWPESdPkEWo7W0Xdjuq7fyqDTnL/p39yfGc/XUzuOcJ/8wnxmR8xm1cVVNPFswhftv9B/y4UnodXCT20hPxvGHBFF9J6AJEnHZFkOKe44McMnVGx+TZXiIge+haxktdMYPE8Ha8LaVGHjqXjOxqU++OCheWJ2rxR2X7rF6dhUxj5d7YHBHij7gd3ChhKwfDlyfj5RffqSvGqVWOIp/NfT74KkgZ0z1U6iM/U96vNLj19o4dOCjw9/zOQ9k0vduiF9505uvNyL/Ph4fH+ch+f48UhmZvRt5o+ngxWfbbn44M+TthC2TQPnAGgapuPvyDR9sfUS1uYaXn+mutpRhPskZCYwZOsQVl1cxcA6A1nYZaFhDvagaJbvbUi+pty4EvRGDPgEocN7kJsO++aoncQojGhfFWdbC77Y+v+9JslOUQZ8tbqDTwP1whkJrVbm6+2X8XWx4aUmvo88zrZJY6ps+BXbli1InDGT+MmTKcwQy4+F+zhVhpZjlTdLccfUTqMzLtYufP/M90wMnsjO6J28uvHVEi3xlPPzSZo9m9jRY7D086PK+nU4PPXUP49bW5jxRueanIhO4Y/TN///iad/hsSz0PEDUcSrBI5H32Xz2QSGt6uKu73472Uo9sTs4ZWNr3D57mW+aP8FbzZ9EwuNgfeRrPUceDdQ9vIVFhR/vPBExIBPELzqQINX4ch8SLtZ/PEVnKO1BaOfCmLP5VscvHZH+eKhucrs3lNT1Q1nJH47Fcep2FQmdKzxn9m9fzN3ccHvxx/xmDSJtK1/EflyL3IuXCinpIJRaDMB7Dzgr/fBhGaBNZKGofWGEt41nHxtPgM3DWT1xdWPnOnOi4khsv8A7ixchHPv3gSsXoWl739vqLwc7EttH0c+3XyRnPxCZTnZzo+Uys11X9L3t2X0ZFnm000Xcbe3YnjbqmrHEYC8wjw+O/IZY3eOxdvOm7Xd19I1sKvasUpGkuDpd+DuDdEqS4/EgE8QQFlSoC2Avz9XO4lRGNQyEB8na2VZVGosHPgO6jwP3vXVjmbwsvIK+GzzJRr4OvFS48oleo6k0eA+YjgBS5egzc4msncf7q75WSzxFBRWDsprWNR+uLRJ7TQ619izcbFLPFP/+JMbL7xI3o0bVP56Dj4fTkdj9fCZJzONxHvP1SYuJZvw/ZHK6oS0OOj8kfLmU3isnReTOBKZzPiO1bGzEnuu1BaVFsWATQNYcWEF/Wv3Z+WzKwl0ClQ7VunU6AqVGiuzfAV5aqcxSWLAJwgArlUgOBSOL4Pk62qnMXjWFmZM6FidkzEp3Fz3lrL/pdMMtWMZhR/3XCchLYdp3eug0ZTuzaVtSIiyxLNpUxKmTyfu9dcpuHtXT0kFo9JkMLjXUPahFearnUbn7i3xnBQ86Z8lnqdunUKbmUn8O+8S/8YbWNWoQdX/bcCxa/EzG62rudOxtierdh1Hu/crqPksBKrUhNqIFGplPttykSrudvRp6qd2nApv47WNvLrxVeIz4/n26W+Z2mwqlmaWascqPUlSttekRMPheWqnMUliwCcI97SbAhoL2PWJ2kmMwstNfOnpEk2lmD/QthwHLoFqRzJ4cSnZ/LTnGj0aViIk0PWJzmHu5obfgvl4vvkm6bv3cOP5F8g8cEDHSQWjY2YOnWbCnatwbInaafRCI2kYUm8I4V3D0cpapi0ZyIkenUjdsAG3USMJWL4Mi8olmzUHePvZ2oRp1yHnZUHH6XrLbUrWH4/lcmIGU7rULHY5uqA/WflZvLvvXd7Z9w61XGuxrsc6nvZ/Wu1YZVOtozLTt+dzSE9QO43JET+tgnCPgzc0f00pfpBY9v5Pps5ckplptYx42ZUN9q+qHccofLr5IgBTu9Uq03kkjQa3oUOo8vMaNPb2RA8NI/Gzz9HmiaUwFVqNLkpv0d2fQE5q8ccbqUYejQhPf4VZSwvJSbvL8pHVyB3yEpJ56ZYXBmkSGWi2jZ8Ln+KytpKe0pqOnPxC5my7TEM/Z7rV81Y7ToV19vZZev/Rm43XNjKy4UgWdVmEt52J/P/o8jEU5in9MAWdEgM+PZk+fTqzZ88GYNq0aWzfvv2JzxUYGEj9+vVp1KgRISHFttoQyqL1eLByhB1ieWKxTqzAKeU8qxyH8eWuWKX4gfBIx6KS2XgqntfaVaWys41Ozmldpw5V1q/DpV9fksPDiXy1N7lXr+rk3IIRkiRlH1rWHZOtOpyfmEjM8BGkfvYlTm3bk7FwBrs9btNrYy82XNlQun2tO2agsbBigVlvZv0pCiEVJ3x/JDdTc3i7Wy3Dad5dgeRr85l7ci4DNg0gqyCLRV0WMabRGMw1JrSP0i0IWo1TirdEH1Y7jUkp04BPkiRXSZK2SZJ0peizy0OOeVqSpJP3feRIkvRC0WNLJEm6cd9jjcqSx1DNmDGDjh07lukcu3bt4uTJk/y74bygY7au0HYiXN4Cl7aoncZwZacog2L/lrR6fgTxqTksPxildiqDpdXKfLjxPN6O1ox8Kkin59bY2OA9bRq+8+ZSkJTEjZd7iZ59FVmlRtCgDxycCykxaqfRGVmWSf39d6736EnWsWN4TXsf37k/0KXRK6zvuZ667nWZdmAak3ZPIiUnpfgTxhyF8/9Daj2e/s80Zc/lW+y+lKT/b8RIpWTlMXf3VTrU8vxvw3pB766nXGfApgHMOzWPblW6seH5DTT1bqp2LP1oOxkcKsGmN5T6AIJOlPW2wFRghyzLn0qSNLXo7w90XZZleRfQCJQBInAV+Ou+Q6bIsryujDketHkqJJzR6Snxrg/dPn3sIbNmzWLZsmX4+fnh4eFBcHAwAKGhoXTv3p1evXoRGBhIv3792LVrF/n5+cyfP5+3336bq1evMmXKFEaOHKnb3ELptRgDp9bApilQpS1Y2qmdyPDs+VyZRej2K618PGhXw4Nvd1yhZ6NKeDlaq53O4Px6Io7TsanM6d0QW0v93I11ePppbH77H/HvvEvijJlk7NqNz8wZWHibyFIfoeQ6vAfn/6c0Y39pvtppyqwgOZmED6aTvm0bNo0bU+nTT7AMCPjncR97HxZ0WsDS80v57sR3nPr9FB+1/ohWlVs9/ISyDNveB3svaDmWQWa2rDgUxcebLtCmmjvmYm/af/yw6yoZuQW82bWm2lEqFK2sZdWFVXx9/GtszG34sv2XdA7srHYs/bK0g84zYX0YHF8KIUPVTmQSyvqq9jywtOjPS4EXijm+F7BZluWsMl7X4Bw7dow1a9Zw4sQJfv31V44ePfrIY/38/Dh48CBt27YlNDSUdevWcejQIaZNm/bQ4yVJonPnzgQHBzN/vvH/8jZ45pbQfQ6kRislgoUH3boER36CJoPApyEAH/asS26hlg83ir2P/5aZW8DnWy7S0M+Z5xuWvKDEkzD38MBv/k94vfceWRERXO/eg5R168RsX0Xj7ActRivNxONPqJ2mTNJ37OD/2rvv8Ciq9YHj37O76T0Q0gktEEJPkF5EehEIoDQLiop69QqKBf2JgpVrvxYsIApXmvSiUqWjQEIntIRAgBBCCqRnN3t+f0xAUEogm+xmcz7Psw+7k9nZd8hkdt4557wn8d7+5GzYQI3xLxD2v1nXJHuX6XV6Hm38KLP7zMbD0YMxa8fw5rY3/zF9AwCHV8Kp7dpUFk7uOBp0vNK7IUdTc5i3y35aRS0l6UIuP247yeCoECICPK0dTpWRkpPC46sfZ8rOKbQJbMPiAYvtP9m7rPFgCOsA696CvAxrR2MXynqr2V9KmQIgpUwRQtS4xfrDgI//tuwdIcREYB3wipSysIwx3bIlrjxs3ryZmJgYXF1dAejfv/8N1738syZNmpCTk4OHhwceHh44OzuTlZWFt7f3Netv3bqVoKAgzp8/T/fu3YmIiKBTp07ltzMKhLWDFg/A9i+h6VDwb2TtiGyDlPDbBHBwg65/3aCoXd2N57qG88GqI6w5lEr3SH8rBmlbpm5I4Hx2IV8/GH3b0zDcCSEEvg+MxL1TR1L+73VS/u91Lv36m9baF6QKU1QZHcZp08ysfh0eXl7p5pcrvnSJ1Hfe5eLSpTg1bEjQ99/j3KD+Ld/XsFpD5vWbx1d7v+LHgz+y+cxm3mj7Bp1CSr4zTYWw9g2o3gBaPHjlfT0b+dOqti8frz5K/2ZBeDg7lNeuVSpSSl5ZtA8ng47xPVTrXkWQUrI0YSlTdkzBLM1MajeJmHoxVWvcpBDQewp80xF+fxf6fmjtiCq9W7bwCSHWCiEOXOcx4HY+SAgRCDQBVl21eAIQAdwF+PK37qB/e/8TQohdQohdaWlpt/PRFaa0f4xOJZPB6nS6K88vvzaZTP9YP6jkIq1GjRrExMSwY8cOC0Sr3FL3t8DZC5aPBbPZ2tHYhqO/QcI6uPsVcKt+zY8e71iHBv4eTFx6gJzCfx7HVVFyRh7fbk5kYPMgomr+Y4hzuXKsWZOaP8zAf+Lr5O3eTeK9/cmcN1+19lUVzp7a32nSZohfZu1obkv2+t9J7D+AiytWUP3pp6g9b26pkr3LnA3OPB/9PD/1+QlPR0/+te5fvLr5VS4WXtS6o6cfh17valNZlBBC8HrfSNJzi/hqQ0J57FalNHdnMn8kZvBq34YEeKnu+uUtOTuZMWvG8PrW16nvU5+F/RcyKHxQ1Ur2LgtoDHc9BrumW36YVhV0y4RPStlNStn4Oo+lQGpJInc5obvZiOf7gcVSyiszwkopU6SmEJgBtLpJHN9KKVtKKVv6+fmVdv8qTKdOnVi8eDH5+flkZ2ezfPlyi2w3NzeX7OzsK89Xr15N48aNLbJt5RZcfbWKd6d3aP3IqzpToda6V70BtHr8Hz92NOh4d1ATzl0q4KPVR6wQoO15/9fD6AS81Kts0zDcKaHT4TtiBHWWLcW5SRPOvfEGyaNHU3T6jFXiUSpY9Cit2/XKFyA33drR3JLx/HlOjx3H6aefRu/hQa05s/H7978Rjnc2kXTj6o2Z128eY5qO4dcTvzJgUV/WxU2F5iO1Ob/+pkmIF4Oigpm+5QRJF3LLujuV3rmLBby7Mp42dXzVJOvlzGQ28cOBHxi0dBD7LuzjtdavMaPXDEI8QqwdmnXdPQGcveGXl7QeRsodK+sYvmXAwyXPHwaW3mTd4cCcqxdclSwKtPF/B8oYj9VERUUxdOhQmjdvzuDBg+nYsaNFtpuamkqHDh1o1qwZrVq1om/fvvTq1csi21ZKodlwbV6rtW9AThWv4PbHV5B5Anq9B/rrd3eKDvPhgdZh/LAtiT3JpaiUZ8f+TExn5f4UnuxclyALTcNwpxxDQqg543sCJk0if89eTvTvT8bMmcjr9ChQ7IjeAQZO1arq/vqitaO5IWk2kzlvPol9+5Gzfj1+Y8dSe+ECXJo2LfO2HfWOPNPiGeb0molfQTZja1RjvKeB9PzrJ8Av94rA2aBj/M97KTZX3QtMKSWvLz1AUbGZ9wc1rZotTBUkPj2eEStH8FHsR7QJbMOSAUsYFjEMnVDFg3D11YaPnNoGBxZaO5pKTZSle48QohowH6gJnALuk1JmCCFaAk9KKR8rWa8WsBUIlVKar3r/esAPEMCekvfk3OpzW7ZsKf8+PUF8fDwNGza8432p7Kr6/pertKMwtR00ioHB31k7GuvIPgefR0PtTjB8zk1XvVRgpPvHG/F1c2LZM+1xqIIV7/KKTPT97xaKTGbWPt8ZF0e9tUO6wnjmDCmTJpG7aTNODRsS+MZEXJrb5Yw4ymUbP4Df34b7Z0HkjceXW0NhYiIpEyeSvysW11atCJj0Jk61a1v+gzZMwbjhXWZ0fJypZ9fhYnDhuRbPMaT+EPS6a/8+F+8+zbh5e5nQO4IxnS07jUplsXJfCv+aHVel/w/KW74pn6l7pzLz4Ey8nbyZ0HoCPcJ6qOT678zF8F0XyEmDZ3aCk7u1I7IpQohYKeUtJ+ku05WYlDJdStlVShle8m9GyfJdl5O9ktdJUsrgq5O9kuX3SCmblHQRfaA0yZ6iVDi/+loBhP3zIeF3a0dT8aSE5c9BsVHr4noLns4OTOrfmPiUS0zfcqICArQ976yMJyk9lw/ua2pTyR6AQ3Awod98Q/Bnn1GckUHS8BGkTHyD4qyq3SJr1zqM1bp2rhgHuResHQ0A5qIi0r78khMDBlJ47DiB77xNzR9/KJ9kL/UgbPoAhyb38UTXD1nYfyGRvpG8/efbjPxlJAcvXFtdeGDzYHo28uej1Uc5mnqdKp92LjO3iDeWHaBJsBejO5TD70Nh29ltDF42mBkHZjCg3gCWDlxKz1o9VbJ3PTo99P4Ass/CZlW85U5VvVvvinInOr4AvnW0sTDGAmtHU7F2TtOKtXSfBNVKd6e3V+MAekT68+nao5xKt7tZWG5q/eFUfvrzFI91qE27utVv/QYrEELg2bMHdVauxPehh8hauJCEPn3JWrxEFXWxR5e7dhZc1CYztrKcTZs4MWAgFz7/Ao/u3am7cgXegweXz8VusQmWPA0u3tD7PwDU8arDdz2+Y0rHKaTmpTJ85XDe/uNtragL2t/HOzFN8HA28Pz8PRiLq1bRrrdXxpOVZ2TK4KZqTkILO519mrG/j2XMmjEIBNN7TGdSu0l4OXlZOzTbVrM1NH8Atn4Gp/6wdjSVkvpLVpTScHCGvh9DRgJs+fvMInbsfDys/j+twEHrJ2/rrZMGNMKg0/Hakv1VJolIzynkpQX7iQjwYHxP2y9hrnd3w3/CK9ReuADHmjVJmTCBUw8+ROGxY9YOTbE0/0Zw98twcDEcXGKVEIqSkkh+8imSnxgDZjOh335D8McfYahejjdGtv0XUvZAnw+18UAlhBD0qdOHZQOXMbLhSH4++jP9l/Rn6fGlSCmp7u7EOzFNOHDmEl+sP15+8dmYTUfTWBh3mic71yUySM25Zyn5pny+3PMlA5cOZNvZbTwX9RyLByymVeANaxUqf9frPfCuCQsfg/xMa0dT6aiET1FKq24XaHIfbPkELlSBC2JjgXZidXTXWgdu8+57oJcLL/ZswOZjF1i652w5BWk7tPmq9nMp38inw5rjZLCtrpw34xwRQdjsnwiYPImCY8dIjBnEubfexpSpvlTtSvtxENi8pGpnxXXtLM7J5fyHH5Jwb3/yduygxovjqbN8Ge7lPZ9s2hHY8B5EDoBGA6+7ioejBy+3epl5/eYR6hHK/239P0b9NoqD6Qfp1TiAQS2C+eL34+w7bf9dnnMLTUxYtJ86fm48c089a4djF6SUrE5azYAlA/h679fcU/Melg1cxmNNHsNRf2fVZ6ssZ08Y/D1kp2jDTKrIjWRLUQmfotyOnu+Cgwssetz+u3aumwSpB2DgV+Be44428UCbMJqHejN5xSEyc4ssHKBtmb8rmTWHUnmxZwMiAirfnXGh0+Fz//3U/fUXvIcMJnPOHBJ69CR9+veYi+z7d1dl6A3azZvCS1rSV86k2UzW4iUk9O5F+rTpePXtS53ffqXa6NF3PNVCqZmLYem/tBtWfW497ifCN4KZvWcyqd0kTlw8wbAVw5iweQJjuvri5+7E8/P3UmAsLt+YrezD1Uc4ezGf/wxuirND5blhZauOZx7n8dWP88LGF/Bw9GBGzxn8p9N/CHALsHZolVdINNzzf3BoKcTNtHY0lYpK+MrJm2++yYcfal8yEydOZO3atXe8raysLIYMGUJERAQNGzZk+/btlgpTuV3uNbQLprO74beXrR1N+Tm2VpuG4a7HoX7PO96MXid4f3ATLuUbGf/zXsx2Wub8ZHouk5Yfom2dapW+yIHB15fAN9+kztIluLRozvkPPiCxT18u/baqynTNtWv+kdD5ZTi0ROveWU7y4naTNHw4KRMm4BAYRK15cwl6/z0catzZzaPb9sdUOL1TG7dXyhtWOqFjUPggVg5ayejGo1mdtJqRvw2ifasdHL9wwa7nF409mckP25J4sE0YLWv53voNyg2dzzvPpO2TGLJ8CPEZ8bzW+jXm9ZtHy4BbFlJUSqPdc1Dnbvj1Za0VXykVlfBVgMmTJ9Ot2z8neS2t5557jl69enH48GH27t2rpl+wtoi+0OF5iP0B4mZZOxrLy70AS54Cv4bQ460yby4iwJOJ90ay7vB5Pl1nf11hTcVmxs3bg14n+Oj+Zuh09lFlzSk8nJrffkvotGnoXFw4M3YsJ0c+QP6+fdYOTSmr9mMhqIXWypeTZtFNFxw5QvKTT3FyxAiMZ88S+N571Jo7B5dmzSz6OTeVngDr34IGfaDJkNt+u4ejB2Ojx7IiZgXdw7qz+sxsqkV8zA8HZrMtwf7mY71YckMu0NOZl3pFWDucSutS0SU+jf2Uvov6suT4Eu5vcD8rYlYwLGIYBp3B2uHZD50OYr4BR1dY8Kj997ayEJXwWdA777xDgwYN6NatG0eO/HXXYdSoUSxYsACAWrVq8eqrr9K2bVtatmxJXFwcPXv2pG7dunz99df/2OalS5fYtGkTo0ePBsDR0RFvb++K2SHlxu75P+0O08oXtNY+eyGl1g2q4CIMnqZ1X7WAB9uEcV90CP9dd4xVB89ZZJu24uuNCcSdyuLtgY2tPsF6eXDv0J7aSxYTMHkSRadOkXT/UE6PG0dhQoK1Q1Pu1JWundmw8nmLjIUpSk7mzIsvcWJgDHmxsfiNG0e9VavwjhmI0FXgpUZRrnYRqHfSCm2VofJnoHsg73V8j7l959KoejjOAUt5asMIfk1YYzet3aZiM8/MjuN0Zh6fDmuBu5NKTG5XgamAGQdm0Hthb6YfmH5lnN6rrV/Fx9nH2uHZJ48A7RyWegDWTLR2NJWCXf5lT9kxhcMZhy26zQjfCF5udeMufLGxscydO5fdu3djMpmIiooiOjr6uuuGhoayfft2xo0bx6hRo9i6dSsFBQU0atSIJ5+8thJiYmIifn5+PPLII+zdu5fo6Gg+++wz3NzcLLp/ym3S6WHwdPimM8x7CMZsvKYCXKV1eQqGXu9DQGOLbVYIwVsDG3P0fA7Pz9vDkn+1J9zfw2Lbt5Z9p7P4dO0x7m0WxIDmwdYOp9wIvR6f++/Hs09f0qdPI+PHmWT/tgrPfv2o/vRT5TN3mlK+ajSELq/B2je0QlQdn7+jzZjS0rgwdSqZ839G6PVUe2w01UaPRm+NG5NmMyweAyl7Yfgc8Ay0yGYbVW/Ej71n8F3sCj6L+4SXtjzPjEMNebr503QO6Vyp505755d4Nh+7wJTBTWhV2w6+wyqQyWxiecJyvtzzJal5qbQPbs/YqLFE+KpW0gpRvye0fgr+nKoV1WvQ29oR2TTVwmchmzdvJiYmBldXVzw9Penfv/8N1738syZNmtC6dWs8PDzw8/PD2dmZrL9NfmwymYiLi+Opp55i9+7duLm58f7775frviil5FYdhs6EnHNaNUtzJR/Qf3kKhrpdodUYi2/e2UHP1w9E4eKo54lZsVzMN1r8MypSXpGJsfP24OfhxNsDLJcc2zK9uxs1nnuOemvXUG30o2SvXUti336cffkVik6etHZ4yu1q/5xWeXjdJNi/4LbeasrM5PzHn3C8R08y583He8hg6q5eTY0XXrBOsgfafsQv14prWfjiTwjBEy3vZWTIf8k/O4SzlzJ5dv2zDFs5jI3JGytli9+cHaeYsTWJ0R1qM/SumtYOp9Iwmo0sT1jOoGWDmLhtIjVca/B9z+/5utvXKtmraN0nQUATba7NSynWjsam2WUL381a4spTae/yOTk5AaDT6a48v/zaZDJds25ISAghISG0bt0agCFDhqiEz5YER0OfD7QSwRveh3tes3ZEd6Yo99opGMqpC1aglwtfjYxmxHd/MG7eHqY91LJSjnkrMpl58n9xJF3IZdbo1ni5Olg7pApl8PWlxvjx+I4aRfq06WTOmcPFFSvwGjiA6k89hWNIiLVDVEpDCBjwJVw8o43b9QyGsLY3fYsxJYX0GTPI+nkBMj8fzz598Pv3szjWqlUxMd9I3EzY+im0fBTaPFVuH/Nyr0acSi/kt/0tGNUjnT8z5/PM+meIrBbJ082eplNIp0rR4vdHYjqvLzlAp/p+TOitkpTSKCwuZOnxpXx/4HvO5Jyhvk99Prn7E7rW7Fopfud2yeCkTdXwbWetevpDS7UeWMo/qBY+C+nUqROLFy8mPz+f7Oxsli9fbpHtBgQEEBoaemVM4Lp164iMjLTIthULiXoYWjwAm/4DR35uFTCzAAAeaUlEQVS1djS3z1gAc4bD+UNasufhX64f16q2L2/cG8n6w+f5ZO3Rcv2s8lBsljw/fw+bjqbxbkwT2tcrx0mjbZyhenX8X3mZumtW4zNyBJeWryChV2/OvvwKBUdU9bRKweAEw34C7zCYOxwuXH+S8cLEE5x99TWtRe+n2Xj26EGdFcsJ/vgj6yd7JzbBinFQ9x6tKmc5XnzrdYJPhzXnrlrVmb0ugFebzmByu8lcLLzIM+ufYfjK4aw7uY5iG+7xkZyRx1P/i6VmNVc+H94Cg15dCt5MnjGPHw/+SO+FvXnrj7eo5lyNz+/5nAX3LqBbWDeV7FmbX33oPQWSNmtd1Ctha3tFsMsWPmuIiopi6NChNG/enLCwMDp27GixbX/++eeMHDmSoqIi6tSpw4wZMyy2bcUChNDmeTq3HxaNgSd+h2p1rR1V6ZiK4OeH4cRGLdmr36NCPvaBNmHsP3ORz9cfp1GQJ70aW2asTXmTUjJx6QFW7Evhld4RDGulukEBONSoQcCrr1Jt9GjSp00na+FCLi5dilu7dvg+8ghuHdqriyJb5uoLI3+Gad3gpyHw2FqtyzqQf/Ag6d9+R/bq1QhHR3zuv59qjz6CQ7CNjFm9cAzmPQjV6sF9P4C+/FvbnR30THvoLoZ8vY2n/7eXn5/qyvKYfqxIWME3+75h7IaxhLiH8EDkA8TUi8HVwbXcYyqt7AIjo3/ciVnC9IfvwsulavVOuB0XCy8y5/Acfor/iazCLFoFtOLdju/SOqC1Op/ZmhYPwtk9sO1zMLhU3t5W5UhUxn7nLVu2lLt27bpmWXx8fJWerqCq779NyDypdSvwCILRq8HJ3doR3Zy5WKtmd2gJ9P0I7nqsQj++wFjM0G//4FhqNkv+1Z76laCIy4erjvDF78cZ07kOE3qrv7cbKb54kcx588mcNQtTWhpO4eH4PvIInv36oivvCbeVO5e8E37sh6zRmJyaL5A5fwG527ajc3fHZ8QIfB9+CEO1ataO8i95GfDdPVq10cfXgU+tCv34M1n5DP5qGxLJoqfbE+ztgslsYv2p9cw6NIs9aXvwcPBgSP0hjGg4wuoTbhebJU/M3MWGo2n8+EgrOoRX3d4JN3Mk4whzDs9hZeJKCooL6BTSicebPE7zGs2tHZpyM2YzLP837J6lFaTq/JK1I6oQQohYKeUtJ3lUCZ+dqOr7bzOOr4Wf7tPmuBrxM7jZ0MXR1cxmWPYM7PkJur8F7f9tlTDOXSyg3+dbcHfSM29MW/w9na0SR2lM25zI2yvjGXZXKO8NaqLu8JaCLCri4spfyJgxg8KjR9H7Vcd35Ei8Bw/G4Odn7fCUvzFduEDWV2+RueRXTHl6DAEB+IwYgc/wYeg9bOyGjKkQZg6EM7EwagWEtrJKGIfPXeK+qdvx93JmwZNt8Xb964bG3rS9zDo0izUn1yAQ9AjrwUONHqJxdesUeXr/18N8vTGByQMa8VDbWlaJwVYZzUbWn1rP7PjZxJ2Pw0nvRN86fRkRMYIGvg2sHZ5SWmYzLH0a9s6Bbm9Ch3HWjqjcqYSviqnq+29TDq+Enx8BnzB4cDF42VgBCynhlxdh53fQ+RXoMsGq4cSezOCh6TvwcnHgh0db2WRL34LY04z/eS+9GwfwxYgo9JWw0Iw1SSnJ3bqNjBkzyN26FfR63Lvcjc999+HWoQNCrwbZW4uUkvzdu8mcPYdLq1aB0YhrwxB8qu3DY/BoRO93rR3iP0mpFZnZO0ebHucOJle3pG0JFxj1/U6ahXoxa3RrnB2uPZ7P5JxhdvxsFh1bRI4xh4a+DYkJj6FP7T54OXlVSIw/bkvijWUHGdm6Jm8PbKxuWJW4kH+BBUcX8PORnzmff55g92CGNRhGTHhMhf1uFAszF8OiJ+DAAq1ib9t/WTuicqUSviqmqu+/zUnaohVCcfLQkj4/G7lDKKU2qHnrZ9DuWa11zwa++A+cucgjP+yk0FjMtw+1pE0d22kZXX3wHE/9FEfbOtWYPqolTgaVnJRFYeIJshYu4OLiJRRnZGAICMB7UAxegwbjGGIj48KqAFN6Opd++ZWshQspPHwYnbs7XjEx+Awfps2rePmmUI+3oe0zNnGeALSWvZXPw+7/wd2vwt3Wqcr9d8v3nuXZObvp1SiAL0de/6ZQTlEOyxKWsfj4Yg5nHMZR50i3sG7EhMfQKqAVOmH54immYjNvr4znh21JdGtYg6kPRONQxYu0FBUXsen0JpYnLGfTmU2YzCbaBbVjRMQIOgR3QK+qPFZ+xSZY8AjEL9NqLLR63NoRlRuV8FUxVX3/bVLKPvjfYDCbYOQCCIm2dkSw8QP4/W2tdHnfj23nIg6tctyoGTtIzsjno/ubcW+zIGuHxPaEdB6esYOGgZ7Mfqw1bk6qzpWlyKIisn/fQNaCBeRu2QKAW7t2eMXE4NHlbnRublaO0P6Y8/LIXreei8uXkbt1GxQX4xQRgc+wYXjd2+/a//NiEywYpc1r13ykNs7XwcVqsQPaPFvzHoAzu6DTS9DlVZs6h03fcoK3Vhyib9NApgxuivtNzheH0g+x6Ngifkn8hWxjNsHuwQysN5ABdQcQ6G6ZIlaXCow8M3s3m46mMbpDbV7t07DK9k6QUrI3bS/LE5bzW9JvXCq6RDXnavSp04f76t9Hba/a1g5RsbRiI8x/GI6shH6fQstHrB1RuVAJXxVT1fffZmUkwqwYyEmDobOgXlfrxGE2w5aPYP3b0Gw4DPiq3ObaK4usvCKemBnLjqQMXuvTkMc61rZK1yMpJTO3n+TdX+Kp6evK/DFt8XFTxUbKi/HMGbIWLSZr0SJMKSkIJyfcO3XEo2cv3O++G727Sv7ulDSZyN2+nYvLl5O9dh0yLw9DYCBe/frheW8/nOvXv/GbzcWw8T+w8X1tcuP7Z4GvlS6Mk3doyV5hDsR8DZH9rRPHLXy9MYH//HaYsGpufDGiBY2Cbt4tsMBUwLpT61h8bDF/nvsTgKZ+TeleszvdwroR4nFnQwJOpecx+sednLiQy1sDGzO8ilYUPnXpFCsTV7I8cTnJ2ck46525p+Y93Fv3XtoEtsGgUzfx7JqpUKvie2wV9P8Coh60dkQWpxK+Kqaq779Nyz4H/xsCaYe1C5WKHm+SkQhLn4GTW6HxYIj5FvS2+yVXYCzmhfl7Wbk/hVHtavF6v8gKvSt9/lIBLy7Yx8ajaXRp4McH9zWjurtThX1+VSaLi8mPi+PSb6vIXr0aU1oawskJt44d8OzVWyV/pVSck0vutq3kbNhIzoYNFGdkoPP0xLNnT7z634tLdDTidm74HF2lTWqMgEHfVdj0LVfE/ggrXwCvYBg2B/xtey7aPxPT+ffc3WTmGXm9XyQPtK5ZqhtXydnJ/HbiN9acXEN8RjwADX0b0qNWD7rV7EYtr1ql+vydSRmMmRVLsVky9YEo2tWtOtU4i83F7L+wnw3JG9iQvIGEiwkIBK0CWtGvbj+6h3XHzUGdQ6oUY4E2x2jCeq0aedc3wNnT2lFZjEr4qpiqvv82Lz9LG9N3ajv0fAdaPwnlPU7AbNbG4Kx9E3QG6PWe1jXLhrpA3YjZLHn3l3imbTlBz0b+fDasxT8KIZSH3w6cY8KifeQbi3mtb+kv1BTLk2bzX8nfqlVa8ufoiGurVri1b49bu3Y41Q9Xv58SRcnJ5Py+gZwNG8jduROMRnSenrh36IBH7164d+5ctikxMk5od8pTD0Dnl7VHefcSMBXBqgmwc5o2qfrg6dqcgZVAek4hz8/fy8ajafRtGsh7g5rg6Vz6Oe+Ss5NZd3Ida06tYV/aPgDqedejS2gX2gS2oVmNZjjp/3kjamHsaSYs2k+IjwvTR91F7er2n9zkGfPYfnY7G05vYNPpTWQUZGAQBqL9o+kc2pnuYd2tPiWGYmXGfFg3Gf6YCp5B2pCWBr2sHZVFqITPyt58803c3d0ZP348EydOpFOnTnTr1u22t3PkyBGGDh165XViYiKTJ09m7Nix16xna/uvXIcxHxaM1vqT14iErhOhfq/yScAyTpS06m2Bet3g3v9qd8crmelbTvD2ykM08PdgXPf69Ij0L5cL/NxCE5OXH2LermQaB3vy6dAW1Kth4/MoViHSbCZ/924urVpF7patFCUmAmDw88OtXVstAWzbtkpN9WBKTycvLo78XbHkbNlCUUICAI516uB+9924390Z1xYtEA4WnFi7KE9rads7G+p1h0Hfll8ClpMG8x+CU9ug/XPaXflKVkzDbJZ8symRD1cfIcTHhS+GR9Ek5PYrP57LPce6U+tYc3INe87voVgW46R3IqpGFG2C2tAmsA21PML577oEvt6YQLu61Zg6MhovV/ucVL3AVMD+C/uJTY0lNjWWuNQ4isxFeDh40CGkA11Cu9A+uD2ejvbTiqNYyOldsOxZOH9I6/HUawq4V+7vDZXwWdnVCZ+lFBcXExwczJ9//klYWNg1P7O1/VduwGyGQ4th/TuQkQChrbULmVrtLbf9XdNhTcnFUc93oMWDlaJV70bWHkrlrZWHOJmeR8NAT/59Tz16NgpAZ6FunnGnMhk3bw+nMvJ4+u66PNe1Po4G2xvfqPzFmJJC7rbt5G7dSu727RRnZgLgFB6OS/PmODdpjEvTpjjVq4cw2G735dKSUmI8eZK82Djy4mLJj42jKCkJAOHoiEt0FB5duuDeuTOOf/tuKIdgIHYG/PISeAZq56+IfuBgoTk0s1Mh7kfY8Z02ofqAL6w+7UJZ7UrK4Nk5u0nPKWJCnwgebBOG4Q4rZeYac4lNjWX72e38kfIHx7OOaz8odsWYW4dmfs0Y27ELTfwa4e5oHzetcopy2JO250qCd+DCAYxmIwJBfZ/63BVwF11Cu9DCvwUOOvtMchULMhXB1k9h0wfg6KZN3dBseKW9TqqQhE8IcR/wJtAQaCWl3HWD9XoBnwF6YJqU8v2S5bWBuYAvEAc8KKUsutXn3irhO/fuuxTGH77Dvbo+p4YRBLz66k3Xeeedd5g5cyahoaH4+fkRHR3N+PHjGTVqFP369WPIkCHUqlWLESNG8Pvvv2M0Gvn222+ZMGECx48f58UXX+TJJ5+84fZXr17NpEmT2Lp16z9+phK+SqbYqJUV3zgFslO0u+VdJ0Jg0zvbnqkQTv2hncCSNmvdn/p/bntzAN4hU7GZZXvP8sX64yReyKWBvwfPdq1Hn8aBd5T45RcVs/lYGqsOprJkzxkCPJ35ZGhzWtWuHN3FlL9Is5mC+Hhyt20j788d5O/fj/niRQCEszPOkZG4NGmMc5OmOEc2xDEkBFGWro3lzFxYSFFCAoXHjlF47BgFx45RcPAQxRcuAKDz8sI1KgrX6ChcoqJxbtyobF0179TpXdq4voxEcPaGZsO0m0sBdzCpuJRwcpvWdTN+mVbZuO490G3SnZ8TbUxmbhHjf97LusPnqe7uSL+mQfRvHkSLUO876rWQkJbDtM0nWLT3EMVOxwgNOoN0PkZ6YeqVdWp51qJR9UY0qtaIyGqRRPhG2PT4NSklZ3PPcjTjKEcz/3qcyj6FWZoxCAOR1SKJ9o8m2j+a5jWaq7nylDuXdgSW/RuS/4A6XaD3FKhev9IlfqVN+Mp66/MAMAj45iaB6IEvge7AaWCnEGKZlPIQMAX4REo5VwjxNTAamFrGmKwiNjaWuXPnsnv3bkwmE1FRUURHX78Mf2hoKNu3b2fcuHGMGjWKrVu3UlBQQKNGjW6a8M2dO5fhw4eX1y4oFUnvoJUIbjYMdnwLmz+GbzpqXQyajwCf2uAVCoYbXMhJqRWBSVivPZK2gikfHD207ptRD1W6k9bNGPQ6BkWFMKB5MCv2neW/647xzOzdhNc4xrNdw+lc3w9PZ8NNL5wu5BSyPv48qw+lsuV4GgVGMx7OBobdFcrLvSNua3yNYjuETodLo0a4NGoEjz+utYYlJ5O/bz8F+/eTv38/mfPmI3+cqb1Bp8MhKAjHWrVwDAvTHrW15wZ/f3RO5VugR0qJOScH07lzGM+lYko9h/FsCoXHj1N47BhFJ09qLfUADg441amDW7u2uEZF4xodhWPdurdXcKW8hLSEZ2LhxEbYPQt2fQ9/fg1BUVolvMZDbl0YoTAb9s6FndMhLR6cvbTxzS0fhWp1K2Y/KoiPmyPTHm7JmkOpLN1zljk7TvHDtiRq+royoHkQA5oHUa+Gx023IaXkzxMZfLcpkXWHz+No0DE4qiGjO/S90gU9oyCDQ+mHOHjhIAfTD7Lz3E5WJq68so3qLtWp6VGTUI9QQj1CqelZU3vtGVohXSCNxUZS81JJyU3hXO45UnJTOJtzloSsBI5lHSPXmHtl3VCPUMK9w+lduzdR/lE0rd4UVwfXco9RqSL8GsAjv2q9ota+CV+2As8QrcdVWHuo1QF869jNtZRFunQKITYA46/XwieEaAu8KaXsWfJ6QsmP3gfSgAAppenv692MLXbp/PTTT8nIyGDy5MkAPP/88wQFBV23hW/r1q0EBwfz/fffs337dr777jsAatasyb59+/D29v7H9ouKiggKCuLgwYP4+/v/4+fW3n+ljPKzYNvn8MdXYMzTlgkdeASBTxj41ALvMHCrDmditSQvO0Vbr3p97W54nS7aCcrJPrrx3EyxWbJyfwqfrzvGsfM5ADgadPi5O+Hn8dejhocTeiHYeDSN2FOZSAnB3i50j/Sne6Q/rWr7VvlJiKsCaTJdaTErSkqiKOkkRSdPUpSUhDk395p1da6u6KtVQ+/rg8HHF72vLwZfH/Q+PggHRzDoEQYDwuCAcDAg9HowGECCOT8Pc14eMi8Pc14+5ry8K4/ijHQtwTt3DnNe3rUBCoFjzZo41Q/HKTwcp/r1cQoPx7FmTcuOwStPeRmwbz7EzYTzB8Hgok1DY3DWWuxksTbNg7lYe202aeeyohwIbAZ3Pa7d8HKsGhf02QVGVh1MZemeM2w9fgGzhMhAT9rVrUahyUxuoYncIhO5hcXkFJrILTRxMd/I+exCfN0cebBNGA+2DStVBeG0vDQOpR/iaOZRkrOTOZV9iuRLyZzPP3/Nei4GF7ydvK95eDl54ePsg5eTFw46B/RCj07o0OtK/hV69EKPRJJnzCPXmEuOMecfzzMKMkjJTeFC/gUk1153+jj5UMe7DuHe4dT3rU99n/rU865n062Rip25dBbiV2h1D05ug9w0bbl7AIS105LAuvdoCaCNqagWvtIIBpKven0aaA1UA7KklKarlt+wqoQQ4gngCdASI1tU2m4ZTiV3kHU63ZXnl1+bTKbrvufXX38lKirqusmeYgdcvKHr69DuGUg9BFknITMJMk9qz69O8Fx8oM7dfyV53qFWDNw69DpB/2ZB9GsSyMajaSSk5ZCWXag9cgpJzsgj7mQm6blaD/FGQZ481zWc7pH+RAZ6qsqOVYwwGHBu2BDnv90Uk1JSnJ6uJYEnT2JKS8OUkUFxRibFGRkYU1MpiI+nOCMDaTTe/ue6uqJzdUXn4oLB1xen8HDcO3bA4B+AQ4A/hoAADDX8cajhZ9PdTEvF1RfaPAmtx8DZOIibpbX+IbTxxDoDCH3Jc732PHKA1poXHG03d9FLy8PZgSHRIQyJDiEtu5AV+86yZM9ZZv1xEldHPW5OBtwcDbg56fFwNhDg6Yybk4HoMB8GRQXfVtViP1c/Ort2pnNo52uW55vyOZ19+koCmJafRlZh1pXHmZwzZBVmcano0m3vn5PeCTcHN1wNrrg7uuPt5E2H4A4EugUS4BZAgFsAgW6B+Lv542Jwue3tK4pFeQZB6ye0h5Rw4ZiW/CVt1aa0OrhIKx7VfbK1I71jt0z4hBBrgevVs31NSrm0FJ9xvbO4vMny65JSfgt8C1oLXyk+t0J16tSJUaNG8corr2AymVi+fDljxoyx2PbnzJmjunNWBS4+JQVcrlPExVgAuefBM7jSVasrLzqdoEtEDbpE1Ljuz43FZvKNxaq7pnJdQggM1atjqF4d15Y3vkEqpUTm5SGNRqTJVPIoBtNfrxHiSnKnc3VFODvbRtfLiiaElsAFX39Ig/JPfh5OPNK+No+0r9hJ7V0MLoT7hBPuE37T9UxmE9lF2RjNRszSTLEsxmwu+bfkNYCbg5uW5Dm4quIpSuUlBPjV1x4tH9USwIxE0Ffum3K3TPiklLc/l8C1TgNXN0GEAGeBC4C3EMJQ0sp3eXmlFBUVxdChQ2nevDlhYWF07NjRYtvOy8tjzZo1fPPNDYdKKlWBgzN422brtq1y0OtUl02lzIQQCDfVvUypmgw6Az7OPtYOQ1GsQwi7GFNcEWP4DMBRoCtwBtgJjJBSHhRC/AwsvKpoyz4p5Ve3+jxbHMNnbVV9/xVFURRFURSlKintGL4y3foWQsQIIU4DbYGVQohVJcuDhBC/AJS03j0DrALigflSyoMlm3gZeF4IcRxtTN/0ssSjKIqiKIqiKIqi/KVMRVuklIuBxddZfhboc9XrX4BfrrNeItCqLDEoiqIoiqIoiqIo12dXg1ss0T21Mqqq+60oiqIoiqIoys3ZTcLn7OxMenp6lUt+pJSkp6fj7Oxs7VAURVEURVEURbExFTEPX4UICQnh9OnTpKWlWTuUCufs7ExISIi1w1AURVEURVEUxcbYTcLn4OBA7doVO4eNoiiKoiiKoiiKLbObLp2KoiiKoiiKoijKtVTCpyiKoiiKoiiKYqdUwqcoiqIoiqIoimKnRGWsaimESANOWjuO66gOXLB2EIrdU8eZUt7UMaZUBHWcKRVBHWdKebPmMRYmpfS71UqVMuGzVUKIXVLKltaOQ7Fv6jhTyps6xpSKoI4zpSKo40wpb5XhGFNdOhVFURRFURRFUeyUSvgURVEURVEURVHslEr4LOtbawegVAnqOFPKmzrGlIqgjjOlIqjjTClvNn+MqTF8iqIoiqIoiqIodkq18CmKoiiKoiiKotgplfApiqIoiqIoiqLYKZXwWYAQopcQ4ogQ4rgQ4hVrx6PYByFEqBDidyFEvBDioBDiuZLlvkKINUKIYyX/+lg7VqVyE0LohRC7hRArSl7XFkL8WXKMzRNCOFo7RqVyE0J4CyEWCCEOl5zT2qpzmWJpQohxJd+XB4QQc4QQzup8ppSVEOJ7IcR5IcSBq5Zd9/wlNP8tyQn2CSGirBf5X1TCV0ZCCD3wJdAbiASGCyEirRuVYidMwAtSyoZAG+BfJcfWK8A6KWU4sK7ktaKUxXNA/FWvpwCflBxjmcBoq0Sl2JPPgN+klBFAM7TjTZ3LFIsRQgQD/wZaSikbA3pgGOp8ppTdD0Cvvy270fmrNxBe8ngCmFpBMd6USvjKrhVwXEqZKKUsAuYCA6wck2IHpJQpUsq4kufZaBdIwWjH148lq/0IDLROhIo9EEKEAH2BaSWvBXAPsKBkFXWMKWUihPAEOgHTAaSURVLKLNS5TLE8A+AihDAArkAK6nymlJGUchOQ8bfFNzp/DQBmSs0fgLcQIrBiIr0xlfCVXTCQfNXr0yXLFMVihBC1gBbAn4C/lDIFtKQQqGG9yBQ78CnwEmAueV0NyJJSmkpeq3OaUlZ1gDRgRknX4WlCCDfUuUyxICnlGeBD4BRaoncRiEWdz5TycaPzl03mBSrhKztxnWVqrgvFYoQQ7sBCYKyU8pK141HshxCiH3BeShl79eLrrKrOaUpZGIAoYKqUsgWQi+q+qVhYyRiqAUBtIAhwQ+te93fqfKaUJ5v8DlUJX9mdBkKveh0CnLVSLIqdEUI4oCV7P0kpF5UsTr3cPaDk3/PWik+p9NoD/YUQSWjd0e9Ba/HzLukSBeqcppTdaeC0lPLPktcL0BJAdS5TLKkbcEJKmSalNAKLgHao85lSPm50/rLJvEAlfGW3EwgvqQLliDZAeJmVY1LsQMlYqulAvJTy46t+tAx4uOT5w8DSio5NsQ9SyglSyhApZS20c9d6KeVI4HdgSMlq6hhTykRKeQ5IFkI0KFnUFTiEOpcplnUKaCOEcC35/rx8nKnzmVIebnT+WgY8VFKtsw1w8XLXT2sSUlq9lbHSE0L0Qbsrrge+l1K+Y+WQFDsghOgAbAb289f4qlfRxvHNB2qifcHdJ6X8+2BiRbktQoi7gfFSyn5CiDpoLX6+wG7gASlloTXjUyo3IURztMJAjkAi8AjaTWd1LlMsRggxCRiKVuV6N/AY2vgpdT5T7pgQYg5wN1AdSAXeAJZwnfNXyc2GL9CqeuYBj0gpd1kj7quphE9RFEVRFEVRFMVOqS6diqIoiqIoiqIodkolfIqiKIqiKIqiKHZKJXyKoiiKoiiKoih2SiV8iqIoiqIoiqIodkolfIqiKIqiKIqiKHZKJXyKoiiKoiiKoih2SiV8iqIoiqIoiqIodur/AV+pxnbDP75sAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 1080x360 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# 在位置编码下方，将基于位置添加正弦波。对于每个维度，波的频率和偏移都不同。\\n\",\n    \"plt.figure(figsize=(15, 5))\\n\",\n    \"pe = PositionalEncoding(20, 0)\\n\",\n    \"y = pe.forward(Variable(torch.zeros(1, 100, 20)))\\n\",\n    \"plt.plot(np.arange(100), y[0, :, 4:8].data.numpy())\\n\",\n    \"plt.legend([\\\"dim %d\\\"%p for p in [4,5,6,7]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## posembbeding的理解\\n\",\n    \"- 同一维度（一个单词本来有多个维度，为了可视化，选取一个维度）对比不同位置的单词在同一维度是有相对关系的，符合某个正弦或者余弦波。\\n\",\n    \"- 一个序列各个单词的位置都具有相对性。\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Training 训练方案\\n\",\n    \"----\\n\",\n    \"- 定义个一个Batch对象\\n\",\n    \"- \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class Batch(object):\\n\",\n    \"    \\\"定义一个训练时需要的批次数据对象，封装了用于训练的src和tgt句子，以及mask\\\"\\n\",\n    \"    def __init__(self, src, trg=None, pad=0):\\n\",\n    \"        self.src = src   # B 个序列[1,5,3, 0]\\n\",\n    \"        self.src_mask = (src != pad).unsqueeze(-2) # [[1,1,1,0]]\\n\",\n    \"        if trg is not None:\\n\",\n    \"            self.trg = trg[:, :-1]   # \\n\",\n    \"            self.trg_y = trg[:, 1:] # 后挪一个位置开始\\n\",\n    \"            self.trg_mask = \\\\\\n\",\n    \"                self.make_std_mask(self.trg, pad)\\n\",\n    \"            self.ntokens = (self.trg_y != pad).data.sum()\\n\",\n    \"    \\n\",\n    \"    @staticmethod\\n\",\n    \"    def make_std_mask(tgt, pad):\\n\",\n    \"        \\\"Create a mask to hide padding and future words.\\\"\\n\",\n    \"        tgt_mask = (tgt != pad).unsqueeze(-2)\\n\",\n    \"        tgt_mask = tgt_mask & Variable(\\n\",\n    \"            subsequent_mask(tgt.size(-1)).type_as(tgt_mask.data))\\n\",\n    \"        return tgt_mask\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 定义一个训练函数用于训练和计算损失、更新梯度\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def run_epoch(data_iter, model, loss_compute, device):\\n\",\n    \"    \\\"\\\"\\\"提供训练和日志功能\\\"\\\"\\\"\\n\",\n    \"    start = time.time()\\n\",\n    \"    total_tokens = 0\\n\",\n    \"    total_loss = 0\\n\",\n    \"    tokens = 0\\n\",\n    \"    for i, batch in enumerate(data_iter):\\n\",\n    \"        src = batch.src.to(device)\\n\",\n    \"        trg = batch.trg.to(device)\\n\",\n    \"        src_mask = batch.src_mask.to(device)\\n\",\n    \"        trg_mask = batch.trg_mask.to(device)\\n\",\n    \"        trg_y = batch.trg_y.to(device)\\n\",\n    \"        ntokens = batch.ntokens.to(device)\\n\",\n    \"        \\n\",\n    \"        out = model.forward(src, trg, src_mask, trg_mask)\\n\",\n    \"        loss = loss_compute(out, trg_y, ntokens)\\n\",\n    \"        # 必须加上.cpu().numpy() 否则报错floating point exception (core dumped)\\n\",\n    \"        total_loss += loss.detach().cpu().numpy()\\n\",\n    \"        total_tokens += ntokens.cpu().numpy()\\n\",\n    \"        tokens += ntokens.cpu().numpy()\\n\",\n    \"        if i % 50 == 1:\\n\",\n    \"            elapsed = time.time() - start\\n\",\n    \"            print(\\\"Epoch Step: %d Loss: %f Tokens per Sec: %f\\\" %\\n\",\n    \"                    (i, loss.detach().cpu().numpy() / ntokens.cpu().numpy(), tokens / elapsed))\\n\",\n    \"            start = time.time()\\n\",\n    \"            tokens = 0\\n\",\n    \"    return total_loss / total_tokens\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 训练数据与批次\\n\",\n    \"- 使用XX数据集\\n\",\n    \"- 使用torchtext来处理数据？\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"global max_src_in_batch, max_tgt_in_batch\\n\",\n    \"def batch_size_fn(new, count, sofar):\\n\",\n    \"    \\\"Keep augmenting batch and calculate total number of tokens + padding.\\\"\\n\",\n    \"    global max_src_in_batch, max_tgt_in_batch\\n\",\n    \"    if count == 1:\\n\",\n    \"        max_src_in_batch = 0\\n\",\n    \"        max_tgt_in_batch = 0\\n\",\n    \"    max_src_in_batch = max(max_src_in_batch,  len(new.src))\\n\",\n    \"    max_tgt_in_batch = max(max_tgt_in_batch,  len(new.trg) + 2)\\n\",\n    \"    src_elements = count * max_src_in_batch\\n\",\n    \"    tgt_elements = count * max_tgt_in_batch\\n\",\n    \"    return max(src_elements, tgt_elements)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 硬件情况和时间表\\n\",\n    \"\\n\",\n    \"- 我们在一台配备8个NVIDIA P100 GPU的计算机上训练了模型。\\n\",\n    \"- 对于使用本文所述的超参数的基本模型，每个训练步骤大约需要0.4秒。\\n\",\n    \"- 我们对基本模型进行了总共100_000步或12个小时的训练。\\n\",\n    \"- 对于我们的大型模型，步长为1.0秒。大型模型接受了300,000步（3.5天）的训练。\\n\",\n    \"\\n\",\n    \"## Optimizer\\n\",\n    \"-  使用Adam优化器，其中β1= 0.9，β2= 0.98和ϵ = 10-9。\\n\",\n    \"- 根据以下公式在训练过程中改变学习率：$lrate =d_{model}^{-0.5} * min（step\\\\_num^{-0.5}, step\\\\_num * warmup\\\\_steps ^{-1.5}）$\\n\",\n    \"- 也就是训练步数在$warmup\\\\_steps内，线性增加学习率；之后的训练，按步数的负1.5平方成比例地减小学习率。我们使用了 $warmup\\\\_steps= 4000$。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class NoamOpt(object):\\n\",\n    \"    \\\"Optim wrapper that implements rate.\\\"\\n\",\n    \"    def __init__(self, model_size, factor, warmup, optimizer):\\n\",\n    \"        self.optimizer = optimizer\\n\",\n    \"        self._step = 0\\n\",\n    \"        self.warmup = warmup\\n\",\n    \"        self.factor = factor\\n\",\n    \"        self.model_size = model_size\\n\",\n    \"        self._rate = 0\\n\",\n    \"        \\n\",\n    \"    def step(self):\\n\",\n    \"        \\\"Update parameters and rate\\\"\\n\",\n    \"        self._step += 1\\n\",\n    \"        rate = self.rate()\\n\",\n    \"        for p in self.optimizer.param_groups:\\n\",\n    \"            p['lr'] = rate\\n\",\n    \"        self._rate = rate\\n\",\n    \"        self.optimizer.step()\\n\",\n    \"        \\n\",\n    \"    def rate(self, step = None):\\n\",\n    \"        \\\"Implement `lrate` above\\\"\\n\",\n    \"        if step is None:\\n\",\n    \"            step = self._step\\n\",\n    \"        return self.factor * \\\\\\n\",\n    \"            (self.model_size ** (-0.5) *\\n\",\n    \"            min(step ** (-0.5), step * self.warmup ** (-1.5)))\\n\",\n    \"        \\n\",\n    \"def get_std_opt(model):\\n\",\n    \"    return NoamOpt(model.src_embed[0].d_model, 2, 4000,\\n\",\n    \"            torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.legend.Legend at 0x7f5ab0133a20>\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAYoAAAD8CAYAAABpcuN4AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAIABJREFUeJzs3Xd4VFX6wPHvSa+k90IqJCEJAULvIF0plgV7AXV11bXu6u5a1l52lf2t2CnCqljRKIgoGVoINYTeAgmZFNIL6WXO748JkZJGSDKZ5HyeJw/DmXPPvEOZd+49575HSClRFEVRlOaYGDoARVEUpXtTiUJRFEVpkUoUiqIoSotUolAURVFapBKFoiiK0iKVKBRFUZQWqUShKIqitEglCkVRFKVFKlEoiqIoLTIzdAAdwdXVVQYEBBg6DEVRFKOyd+/efCmlW2v9ekSiCAgIYM+ePYYOQ1EUxagIIc60pZ+69KQoiqK0SCUKRVEUpUVtShRCiOlCiONCiBQhxNNNPG8phPiy4fmdQoiAC557pqH9uBBi2gXty4QQuUKIQ5eM5SyE+FUIcbLhV6f2vz1FURTlarU6RyGEMAWWAFOADGC3ECJOSnnkgm4LgSIpZYgQYgHwBjBfCBEBLAAGAN7Ab0KIflLKemAF8C6w8pKXfBrYKKV8vSEpPQ389WrepKIoxqe2tpaMjAyqqqoMHYrRs7KywtfXF3Nz83Yd35bJ7GFAipTyNIAQYjUwB7gwUcwBXmh4/A3wrhBCNLSvllJWA6lCiJSG8RKllFsuPPO4ZKwJDY8/BTahEoWi9DoZGRnY29sTEBCA/uNEaQ8pJQUFBWRkZBAYGNiuMdpy6ckH0F7w+4yGtib7SCnrgBLApY3HXspDSpndMFY24N6GGBVF6WGqqqpwcXFRSeIqCSFwcXG5qjOztiSKpv6WLt0Wr7k+bTm2XYQQ9wkh9ggh9uTl5XXEkIqidDMqSXSMq/1zbEuiyAD8Lvi9L5DVXB8hhBngABS28dhL5QghvBrG8gJym+okpfxIShkrpYx1c2v1fhGlwfbM7RwpONJ6R0VRlAZtSRS7gVAhRKAQwgL95HTcJX3igDsbHt8IxEv9ZtxxwIKGVVGBQCiwq5XXu3CsO4Ef2hCj0ga1ulru/+1+5v80n9KaUkOHoyhGISAggKioKGJiYoiNjQXg66+/ZsCAAZiYmFx0s++vv/7KkCFDiIqKYsiQIcTHx7c49r/+9S+EEOTn5wP6+YRHHnmEkJAQoqOjSUpKauz76aefEhoaSmhoKJ9++mlj+969e4mKiiIkJIRHHnkE/UdvB5NStvoDzAROAKeAvze0vQjMbnhsBXwNpKBPBEEXHPv3huOOAzMuaP8CyAZq0Z95LGxodwE2AicbfnVuLb4hQ4ZIpXXbM7fLyBWRMnJFpHw+4XlDh6MoLTpy5IihQ5BSStm3b1+Zl5d3UduRI0fksWPH5Pjx4+Xu3bsb25OSkmRmZqaUUsqDBw9Kb2/vZsdNT0+XU6dOlf7+/o3jr127Vk6fPl3qdDqZmJgohw0bJqWUsqCgQAYGBsqCggJZWFgoAwMDZWFhoZRSyqFDh8rt27dLnU4np0+fLtetW9fk6zX15wnskW3IAW0q4SGlXAesu6TtuQseVwE3NXPsK8ArTbTf3Ez/AmByW+JSroxGq8HK1Iq5IXNZfXw1s4JmMdRzqKHDUhSjEx4e3mT7oEGDGh8PGDCAqqoqqqursbS0vKzvY489xptvvsmcOXMa23744QfuuOMOhBCMGDGC4uJisrOz2bRpE1OmTMHZ2RmAKVOmsH79eiZMmEBpaSkjR44E4I477uD7779nxowZHfl2e0atJ6V1Uko0Wg0jvEfweOzjbMvcxgvbX+Db2d9iZWZl6PAUpUX//PEwR7I69nJphHcfnr9uQKv9hBBMnToVIQT3338/9913X5vG//bbbxk0aFBjkli0aBF//OMfiY2NJS4uDh8fHwYOHHjRMZmZmfj5/T6t6+vrS2ZmZovtvr6+l7V3NJUoeoljhcc4W36WBwc+iLWZNc+Pep57N9zLB/s/4NEhjxo6PEXpthISEvD29iY3N5cpU6YQFhbGuHHjWjzm8OHD/PWvf2XDhg2NbZ988gkAFRUVvPLKKxc9d55sYn5BCHHF7R1NJYpeQqPVIBCM89X/Ax/hNYJ5IfNYcXgFk/0nE+UWZeAIFaV5bfnm31m8vb0BcHd3Z968eezatavFRJGRkcG8efNYuXIlwcHBlz1/6tQpUlNTG88mMjIyGDx4MLt27cLX1xetVnvRWN7e3vj6+rJp06aL2idMmICvry8ZGRmX9e9oqihgL6HRaohxj8HF2qWx7cmhT+Jq7crftv2NyrpKA0anKN1TeXk5586da3y8YcMGIiMjm+1fXFzMrFmzeO211xg9enSTfaKiosjNzSUtLY20tDR8fX1JSkrC09OT2bNns3LlSqSU7NixAwcHB7y8vJg2bRobNmygqKiIoqIiNmzYwLRp0/Dy8sLe3p4dO3YgpWTlypUXzXl0FJUoeoHssmyOFR5jot/Ei9r7WPThlTGvkFaaxtt73jZQdIrSfeXk5DBmzBgGDhzIsGHDmDVrFtOnT2fNmjX4+vqSmJjIrFmzmDZNX+/03XffJSUlhZdeeomYmBhiYmLIzdXfCrZo0aJW982ZOXMmQUFBhISEcO+99/Lee+8B4OzszLPPPsvQoUMZOnQozz33XOPE9vvvv8+iRYsICQkhODi4wyeyAURT17iMTWxsrFQbFzXv86Of89qu1/hx7o8EOARc9vxbu99i5ZGVvH/N+4zxGdP1ASpKE44ePdrs6iLlyjX15ymE2CuljG3tWHVG0QtotBoC+gQ0mSQAHhn8CCGOITyX8BzFVcVdG5yiKN2eShQ9XGlNKXvO7mGi/8Rm+1iaWvLa2Ncoqi7iue3Pdc6dnYqiGC2VKHq4bRnbqJN1TPKb1GK/MOcwHh/yOBqthlVHVnVRdIqiGAOVKHo4jVaDs5UzUa6tL3+9Lfw2JvlN4p2973Ag70AXRKcoijFQiaIHq62vZVvmNib4TcDUxLTV/kIIXhz9Ih62Hjy1+SlKqku6IEpFUbo7lSh6sN05uymrLbtsWWxLHCwd+Nf4f5Fbmcs/Ev6h5isURVGJoifTpOuLAA73Gn5Fx0W6RvJk7JNs0m7iowMfdVJ0imIcOqPMeHJyMiNGjGgcc9cu/e4L0pjLjHf3H1Vm/HI6nU5e8/U18uGND7f7+Ge2PCMjV0TKjWc2dnB0itK6nlxmfMqUKY3lwNeuXSvHjx/f+Lg7lhlXZxQ91NHCo5wtP3tFl50uJITguZHPEekSyTNbnyGlKKWDI1QU4xUeHk7//v0vax80aFBjraULy4xfSghBaam+Gm5JSUnjMc2VGf/ll18ay4w7OTk1lhnPzs5uLDMuhGgsM97RVFHAHkqj1WAiTBjvN77dY1iZWfHOxHdY8NMC/qz5M5/P+hwHS4cOjFJR2ujnp+HswY4d0zMKZrzearfOKDO+ePFipk2bxpNPPolOp2P79u1A9y0zrs4oeqhN2k3EuMXgbOV8VeN42nqyeOJissqzeGrzU9TqajsoQkUxDgkJCSQlJfHzzz+zZMkStmzZ0uox58uMf/jhh41tn3zySeMcx/vvv88777yDVqvlnXfeYeHChYAqM650oayyLI4VHuOJIU90yHgx7jE8N+I5ntv+HC8lvsQ/R/2zU/4xKkqz2vDNv7N0dJlx0E9M/+c//wHgpptuYtGiRQCqzLjSdTRaDQAT/CZ02JjzQufxx4F/ZE3KGj488GHrByhKD9AZZcZBn3w2b94MQHx8PKGhoQDdtsy4wVcsdcSPWvV0sYW/LJTXrbmuw8fV6XTyb1v/JiNXRMrvT37f4eMryoW6w6qnU6dOyejoaBkdHS0jIiLkyy+/LKWU8rvvvpM+Pj7SwsJCuru7y6lTp0oppXzppZekjY2NHDhwYONPTk6OlFLKhQsXNq6Q2rp1qxw8eLCMjo6Ww4YNk3v27JFS6v+PPfjggzIoKEhGRkZetKJq6dKlMjg4WAYHB8tly5Y1tu/evVsOGDBABgUFyT/96U9Sp9M1+V6uZtWTKjPew5TWlDJ+9XjuGHAHjw15rMPHr62v5cGND7Ln7B6WXLOEUd6jOvw1FAVUmfGOpsqMK422ZmylTta1e1lsa8xNzXl7wtsEOgbyqOZR9uft75TXURSl+1CJoofZpN2Ei5UL0W7RnfYa9hb2fHjNh7hau/LAbw9wvPB4p72WoiiGpxJFD3JhEUAT0bl/tW42bnw89WNszGy4/9f7SStJ69TXUxTFcFSi6EF2n73yIoBXw8fOh4+mfoREcu+v95Jdlt0lr6soStdSiaIHidfGY21mfcVFAK9GkEMQH075kPKachZuWMjZ8rNd9tqKonQNlSh6CCklm7SbGOk1Eiszqy597TDnMD6Y8gFFVUXctf4uMss6voSAoiiGoxJFD3Gk8Ag5FTkt7o3dmaLdovlk6ieU1pRy9/q70Z7Ttn6QonRzWq2WiRMnEh4ezoABAxrvpn7hhRfw8fEhJiaGmJgY1q1b13jMgQMHGDlyJAMGDCAqKoqqqqpmx//Xv/6FEIL8/HxAlRlXN9x1sv8m/VdGfxotCysLDRrH4fzDcvQXo+XkrybLMyVnDBqLYty6ww13WVlZcu/evVJKKUtLS2VoaKg8fPiwfP755+Vbb711Wf/a2loZFRUlk5OTpZRS5ufny7q6uibHTk9Pl1OnTpX+/v6NZcxVmXGlU50vAuhk5WTQOCJcIlg6dSk19TXcvf5uVZ5cMWpeXl4MHjwYAHt7e8LDw1uszrphwwaio6MZOHAgAC4uLpiaNr0N8WOPPcabb755Ud00VWZc6TSZZZkcLzrOk7FPGjoUAPo792fptKXc/+v93LH+DpZMXsIg90GGDksxYm/seoNjhcc6dMww5zD+Ouyvbe6flpbGvn37GD58OAkJCbz77rusXLmS2NhY/v3vf+Pk5MSJEycQQjBt2jTy8vJYsGABf/nLX4CLy4zHxcXh4+PTmFDOM+oy40KI6UKI40KIFCHE0008bymE+LLh+Z1CiIALnnumof24EGJaa2MKISYLIZKEEMlCiG1CiJCre4s93ybtJqBjiwBerVCnUFbNXIWzlTP3briXzdrNhg5JUdqtrKyMG264gcWLF9OnTx8eeOABTp06RXJyMl5eXjzxhL5Sc11dHdu2beOzzz5j27ZtrFmzho0bNwK/lxmvqKjglVde4cUXX7zsdaSxlhkXQpgCS4ApQAawWwgRJ6U8ckG3hUCRlDJECLEAeAOYL4SIABYAAwBv4DchRL+GY5ob831gjpTyqBDiQeAfwF0d8F57LE26hiCHIPr26WvoUC7iY+fDp9M/5cGND/JnzZ95YdQLzA2Za+iwFCN0Jd/8O1ptbS033HADt956K9dffz0AHh4ejc/fe++9XHvttYD+G/348eNxdXUFYObMmSQlJTF58uTG/qdOnSI1NbXxbCIjI4PBgweza9cuoy4zPgxIkVKellLWAKuBS+vYzgHOT8N/A0wW+rQ2B1gtpayWUqYCKQ3jtTSmBPo0PHYAstr31nqHkuoS9uTs6bKb7K6Ui7ULy6YtY6jnUJ5NeJaPD3zcOasyFKUTSClZuHAh4eHhPP74443t2dm/31y6Zs2axtLj06ZN48CBA1RUVFBXV8fmzZuJiIi4aMyoqChyc3NJS0sjLS0NX19fkpKS8PT07LZlxtsyR+EDXLjWMQO49I6uxj5SyjohRAng0tC+45JjfRoeNzfmImCdEKISKAVGtCHGXmtr5lbqZb3BlsW2ha25LUsmL+HZhGf5v33/R1ppGs+PfB4LUwtDh6YoLUpISGDVqlVERUURExMDwKuvvsoXX3xBcnIyQggCAgIad7JzcnLi8ccfZ+jQoQghmDlzJrNmzQIunqNozsyZM1m3bh0hISHY2NiwfPlyAJydnXn22WcZOnQoAM899xzOzvrdK99//33uuusuKisrmTFjBjNmzOjwP4e2JIqmLnhd+pWwuT7NtTd1JnN+zMeAmVLKnUKIp4C30SePi19QiPuA+wD8/f2bjrwX2KTdhKu1K1GuUYYOpUUWpha8PvZ1AhwCeC/5PTLOZbB44mKDr9JSlJaMGTOmyTPgmTNnNnvMbbfdxm233XZZ+yeffNJk/7S0tMbHQgiWLFnSZL977rmHe+6557L22NhYDh061Gw8HaEtl54yAL8Lfu/L5ZeDGvsIIczQXzIqbOHYJtuFEG7AQCnlzob2L4EmNzyQUn4kpYyVUsa6ubm14W30PDX1NWzL3MZ43/GdXgSwIwgheGDgA7w57k0O5R/i1nW3crrktKHDUhSlFW35dNkNhAohAoUQFugnp+Mu6RMH3Nnw+EYgvuFmjjhgQcOqqEAgFNjVwphFgMMFE95TgKPtf3s92+6zuymvLe+28xPNmRE4g2XTl1FeW85ta29jS0brm9UrimI4rSYKKWUd8BDwC/oP7a+klIeFEC8KIWY3dFsKuAghUoDHgacbjj0MfAUcAdYDf5JS1jc3ZkP7vcC3Qoj9wO3AUx33dnsWjVbT5UUAO8pAt4F8PutzfOx9eGjjQ7yf/D46qTN0WEo3oxY+dIyr/XNUW6EaKSkl13xzDVGuUSyeuNjQ4bRbVV0VL+14ibhTcYzzHcerY17FwdLB0GEp3UBqair29va4uLh0yr0BvYWUkoKCAs6dO0dgYOBFz7V1K1R1Z7aROlJwhNyKXKO77HQpKzMrXh79MtGu0by++3UW/LSAxRMX09+5v6FDUwzs/D0CeXl5hg7F6FlZWV10B/eVUonCSGm0GkyECeN8xxk6lKsmhGB+2Hz6O/fniU1PcOu6W/nL0L9wU7+b1DfJXszc3Pyyb8CKYXT/pTJKkzRaDYPcB/Wo5aUx7jF8ed2XDHYfzEs7XuKJzU9QWlNq6LAUpddTicIIZZzL4ETRCaO/7NQUV2tXPpjyAY8NeQxNuoab4m4iOTfZ0GEpSq+mEoUROl8EsCcmCgATYcI9kffw6YxPEUJw1/q7+OjAR9Tr6g0dmqL0SipRGCGNVkOwQzD+fXr2HenRbtF8fd3XTO07lf/u+y93rr+TtJI0Q4elKL2OShRGpqS6hL05e7t1baeOZG9hzxvj3uCNsW+QWpLKTT/exGdHP1P3XChKF1KJwsg0FgHsoZedmiKEYGbQTNbMWcNQz6G8vut1Fm1YRGZZx2/QoijK5VSiMDKadA1u1m5EukYaOpQu527jzpLJS3hx1IscKTjC9T9czxfHvlBzF4rSyVSiMCKNRQD9jKMIYGcQQjAvdB7fzf6OgW4DeXXnq9yx/g5OFJ0wdGiK0mP1zk8bI7Xr7C4q6ip61WWn5njbefPhlA95dcyraEu1zP9xPov3LqaqrsrQoSlKj6MShRHRpBtvEcDOIITguuDriJsbx6ygWSw9tJR5P8xje+Z2Q4emKD2KShRGQid1bNJuYrT3aCxNLQ0dTrfiaOXIy2Ne5pOpn2BqYsr9v93PY5rH1GS3onQQlSiMxJGCI+RW5vaaZbHtMdxrON/O/paHBz1MQlYCc76fw3vJ71FZV2no0BTFqKlEYSQ0Wg2mwpRxPldXBPDH/VkkpOR3UFTdj6WpJfdF30fc3Dgm+U3i/f3vM+f7OWxI26D2NlCUdlKJwkicLwLoaOXY7jFyS6t4+It93PrJTrad7LnJAsDT1pM3x7/J8mnLsbew54nNT7Bww0IO5x82dGiKYnRUojACGecyOFl0kgl+E65qnP/tTAfAytyE+1bt4UBGcQdE173Fesby5bVf8o/h/+BU8SkWrF3AU5ufQluqNXRoimI0VKIwAhqtBoBJfpPaPUZVbT2f7TjD5DB3Nj81EWdbC+5avpvTeWUdFWa3ZWZixvyw+aydt5b7o+9nc8ZmZv8wm9d2vkZhVaGhw1OUbk8lCiOg0WoIcQzBr49fu8f4cX8WBeU13DMmEI8+Vqy8ZxgAty/dRXZJ75jstbOw46FBD7F23lrmhszly+NfMvO7mXy4/0PKa8sNHZ6idFsqUXRzJdUlJOUkXdVNdlJKliWk0d/DnlHBLgAEudmx4u6hlFTWcvNHOzhb0ntuVHOzceP5kc/z3ZzvGO45nHeT32X6t9NZenApFbUVhg5PUbodlSi6uS0ZW666CODO1EKOZpdy9+iAi7YWjfZ15NN7hpF3rppbPt5BTmnvSRYAQQ5B/GfSf/hs5mcMcB3A4qTFzPhuBisOrVBLahXlAipRdHMarb4I4ADXAe0eY9m2VJxszJk7yOey54b0deLTe4aRU1rFzR/vILeXJQvQ73vxwTUfsGrGKvo79effe//NjG9nsPLwSlUSRFFQiaJbq6mvISEz4aqKAKYXVPDr0RxuGe6Plblpk31iA5xZcc8wzpbok0VvmbO4VIx7DB9N/YiVM1YS4hTCW3veYtq30/jk4Cdq726lV1OJohvbmb3zqosAfpqYhqkQ3D4ioMV+QwOcWXH3MHJKq7nx/URS83vv5O4g90F8MvUTlk9bTrhLOP9J+g9Tv5nK23vfJq8iz9DhKUqXU4miG9Nor64IYFl1HV/t1jIzygtPB6tW+w8LdGb1fSOoqq3npg+2czirpF2v21PEesbywTUf8PV1XzPOZxyfHv6Uad9O45+J/yS9NN3Q4SlKl1GJops6XwRwjM+YdhcB/GaPlnPVddw9OqDNx0T6OPDVH0diYWrCgg93sCtV3WcQ5hzGm+Pf5Ke5PzEvZB5xKXFc9/11PL7pcZJyklRpEKXHU4mimzpScIS8yrx2X3bS6SQrtqcxyN+RQf5OV3RssJsd3zwwCrc+lty2dCc/7s9qVww9jV8fP54d+Sy/3PgLdw+4m53ZO7lz/Z3M/2k+cafiqKmvMXSIitIpVKLopuLT4/VFAH3bVwRQczyXtIIK7h4d2K7jvR2t+eaPoxjo68DDX+zj3fiT6ptzA1drVx4d8ii/3vgrz454lur6av6+7e9M/WYq7ye/T35lz66jpfQ+KlF0U+eLADpYOrTr+OUJaXj2sWJGpGe7Y3C2teB/i4Yzb5AP/9pwgie/PkBNna7d4/U0NuY2/KH/H/h+zvd8OOVDIlwieG//e0z9Zip/2/o3knOTVXJVegQzQwegXE57TktKcQpPxT7VruOPnz3HtpR8nprWH3PTq/suYGlmytt/GEhfFxsW/3aSjKIKltw6GFc7tXnSeUIIRnmPYpT3KNJK0vj82OfEnYrjx9M/EuoUyk39buLaoGuxt7A3dKiK0i7qjKIb0qTriwC2d5OiFdtTsTQz4ZZh/h0SjxCCR6/px38WxJCsLea6/24jWdvzK8+2R4BDAH8b/jfib4rn+ZHPYybMeHXnq0z+ejLPJTzHofxD6ixDMTptShRCiOlCiONCiBQhxNNNPG8phPiy4fmdQoiAC557pqH9uBBiWmtjCr1XhBAnhBBHhRCPXN1bND6NRQDtr7wIYGF5Dd8lZXL9YB+cbC06NK45MT58+8AoTE0Ef/ggkc93pqsPvWbYmNtwY78b+eq6r1g9azUzA2eyPm09N6+9mfk/zefLY19SUt27lx8rxqPVRCGEMAWWADOACOBmIUTEJd0WAkVSyhDgHeCNhmMjgAXAAGA68J4QwrSVMe8C/IAwKWU4sPqq3qGRKa4qZl/uvnavdvpiVzrVdbp2T2K3JtLHgR8fGsOIYBf+tuYgf/32AFW19Z3yWj3FANcBvDDqBTbetJG/D/879bKel3e+zKSvJvHk5ifZmrGVOl2docNUlGa1ZY5iGJAipTwNIIRYDcwBjlzQZw7wQsPjb4B3hb763BxgtZSyGkgVQqQ0jEcLYz4A3CKl1AFIKXPb//aMz9bMrdTLeib5X/neE7X1OlYlnmFMiCv9PDrveriTrQXL7xrKO7+e4F1NCvu1Jfz3lkGd+po9gb2FPQvCFjC//3yOFh4l7lQca0+v5Ze0X3CzduPaoGuZHTybEKcQQ4eqKBdpy6UnH+DC7cAyGtqa7COlrANKAJcWjm1pzGBgvhBijxDiZyFEaNveSs+g0Wpwt3YnwuXSk7bW/XzoLGdLq7hnTEDHB3YJUxPBk9P6s+LuoRSUV3Pdf7fxvx1n1KWoNhBCEOESwdPDnib+pngWT1hMpGskq46sYl7cPG7+6WY+P/q5WmardBttSRSiibZLPw2a63Ol7QCWQJWUMhb4GFjWZFBC3NeQTPbk5fWM+jvV9dVsy9zW7iKAy7alEuhqy4R+7p0QXdMm9Hdn3Z/HMizQmX98f4j7V+2lqFzdeNZW5qbmTO47mf+b9H/8dtNv/GXoX6jV1fLarteY/PVk7ttwH2tOrlFFCRWDasunUQb6OYPzfIFLb9Vt7COEMAMcgMIWjm1pzAzg24bHa4DopoKSUn4kpYyVUsa6ubm14W10fzuzd1JZV9mu+Ymk9CKStcXcNSoAE5Om8nDncbe34tO7h/H3meFojucy/T9biD+W06Ux9AQu1i7cHnE738z+hu9mf8fCyIVoz2l5bvtzTPhyAo/EP8L61PVqrwyly7VljmI3ECqECAQy0U9O33JJnzjgTiARuBGIl1JKIUQc8LkQ4m3AGwgFdqE/o2huzO+BSejPJMYDJ9r/9oyLRqvBxsymXUUAlyekYW9pxg1DfDshstaZmAjuHRfEyGAXnvhqP/es2MONQ3x59toIHKzNDRKTMQt1CiXUKZSHBz3MofxD/Jz2M7+k/tJYKHKi30SmBUxjlPcorMxaL/ioKFej1UQhpawTQjwE/AKYAsuklIeFEC8Ce6SUccBSYFXDZHUh+g9+Gvp9hX6Sug74k5SyHqCpMRte8nXgMyHEY0AZsKjj3m73db4I4Gif0ViYXtmy1uySSn4+mM1dowKwszTsPZSRPg7EPTya/25M4f3Np9h6Mo/Xr49mYljXXQ7rSYQQRLlFEeUWxRNDniApN4mfU39mw5kNrEtdh7WZNWN8xjCl7xTG+ozFzsLO0CErPZDoCZOPsbGxcs+ePYYO46oczDvILetu4dUxr3Jd8HVXdOyb64/xweZTbH5qIn7ONp0U4ZU7kFHMU18f4HjOOeaohsGlAAAgAElEQVQN8uHvs8LVHd0dpFZXy56ze9iYvpGN6RvJr8zH3MSckd4jucb/Gib4TcDJ6sqKQSq9jxBib8N8cMv9VKLoHv4v6f9YdmgZm+dvvqL6TpU19Yx6fSPDAp358PZW/767XHVdPUvi9WcX1uam/HVGGDcP9e/yeZSeTCd17M/bz29nfmNj+kYyyzIxESbEesQyyX8S433H42tvmEuSSvemEoWRmffDPJysnFg2rclFXs36Ylc6z3x3kNX3jWBEkEsnRXf1UnLL+Mf3B9lxupAYP0denhtJpE/7Ch4qzZNScqzwGL+e+ZXf0n8jtSQVgBDHEMb5jmO873ii3aIxM1Fl3hSVKIyKtlTLzDUz+cvQv3B7xO1tPk5KybTFWzAzMWHtI2PQ3+PYfUkp+T45k1fWHqWwvIY7Rgbw58mhHV5qRPndmdIzbMnYwuaMzew9u5c6WYeDpQNjfMYw3nc8o7xHtbtCsWL82poo1NeKbiBeGw9wxctiE1IKOJFTxls3Rnf7JAH6idl5g3yZ1N+DtzYcY2ViGmv2ZfLI5FBuH9EXCzNVo7Kj9e3Tl9sjbuf2iNs5V3OOxKxENmdsZmvGVtaeXoupMCXGPYaxPmMZ7TOafk792nUPj9KzqTOKbuCu9XdRWlPKd7O/u6LjFq7Yzf6MYrb9dRJW5qadFF3nOXa2lFfWHmXryXwCXW15ZkYYUyI8jCLpGbt6XT2HCg6xWbuZLRlbOF50HABnK2dGeo9ktPdoRnqPxNXa1cCRKp1JXXoyEsVVxYz/ajyLohbx8KCH23xcan45E/+1iUcmh/L4lH6dGGHnklKy6XgeL689wqm8ckYGufDXGWHE+DkaOrReJa8ij8TsRLZnbScxK5HCKv1e6f2c+jXutTHYY3C7929Xuid16clIbMncgk7qmOR3ZUUAP92ehrmp4LYRHbPnhKEIIZgY5s6YUFe+2JXO4t9OMndJAteEe/DE1H6Ee/UxdIi9gpuNG7ODZzM7eDY6qeN44fHGpPHZ0c9YcXgFlqaWDPEYwjDPYQzzHEa4S7iaFO8l1BmFgT2meYwDeQf49aZf23xtuLSqlpGvbmTaAE/enh/TyRF2rbLqOpZvS+Wjracpq67j2mhvHrsmlCA3dSOZoVTUVrAnZw+JWYkkZiVyquQUAHbmdgz2GMwwz2EM9RxKf6f+mJoY3yXQ3kydURiB6vpqErISuC7ouiuaQPxqt5bymvpO23PCkOwszXh4cii3j+zLR1tOszwhjXUHs7l+kA8PTgwh0NXW0CH2OjbmNozzHcc433EA5Ffms+fsHnad3cXus7vZkrEF0JdRj/WIbUwcoU6hamK8h1CJwoAaiwBewZan9TrJiu1pDA1wIsq35y5rdLSx4C/Tw7h7dCDvbUrh853pfJuUwcwoL/40MURdkjIgV2tXpgdOZ3rgdAByynPYnbOb3Wd3syt7FxqtfitfR0tHBrkPYrD7YAZ5DCLCOQJzU1X3yxipRGFA8enx2JrbMsxzWOudG/x2NIeMokr+PjO8EyPrPtzsLXn+ugE8MCGYpdtS+V/iGX46kM3kMHf+NCmEwf6qTIWhedh6cG3QtVwbdC0A2WXZjWcb+3L3NSYOS1NLolyj9MnDYzAD3QZib6E2uzIGao7CQHRSx+SvJzPYfTD/nvDvNh83/8NEMooq2fzUBMxMe99pfUlFLZ8mprEsIZXiilpGBDmzaEwQk8LcVVmQbiq/Mp99uftIykkiOTeZo4VHqZf1CAT9nPo1Jo5B7oPwtPU0dLi9ipqj6OYO5R8ivzL/ii47Hc4qYWdqIX+bGdYrkwSAg405j0wOZeGYQD7fmc6yhFQWrdxDgIsNd48O5MYhvtgauIKucjFXa1em9J3ClL5TAP3k+MH8gyTlJrEvZx9xp+JYfXw1AO7W7kS5RRHtFk2UaxQDXAZgY959Cl32Vup/lIFotBpMhSljfca2+ZjlCWlYm5syP9a4l8R2BFtLM+4dF8RdowNYf+gsS7el8nzcYf694Tg3D/PnzlEBeDtaGzpMpQk25vo9V87vu1Knq+NE0Qn25e7jYP5BDuYdZGP6RgBMhAkhjiFEu0UT7apPHkGOQWqSvIupS08GMvf7ubhYu7B02tI29c8vq2bUa/HMH+rHS3MjOzk645SUXsTSbamsP3QWgCnhHtwy3J8xIa7qspSRKaoq0ieN/IMcyDvAwfyDnKs5B+iX5Q5wHUC0azSRrpFEuETgYaPu6G8PdempG0svTedUySlu7Hdjm4/5bEc6NfU67hod0HmBGbnB/k4MvsWJzOJKViWe4es9WjYczuIh+y0M69uH8KkLcXH3NnSYShs4WTldtCRXJ3WcKT3TmDQO5B1g2aFl1Ov3QcPZypkIl4jGnwEuA1Ty6EAqURjA+VUgbZ2fqK6r5387zzChvxvB6sazVvk4WvP0jDAeG+tB8ao78MjZAilQc/IdkuzHYDn8biJGz0aom8OMhokwIdAhkECHQOaEzAGgsq6S44XHOVJwRP9TeITErMSLkke4c/hFCcTL1kslj3ZQicIANFoN/Zz64WPn06b+aw9kk3euukfeYNdp8k9i+cXNeBSlwqx/k24fQ1b8x/TPXYvTxs2cjXcj1Xce/pPvxSfAeGtl9WbWZtbEuMcQ4/57dYLKukpOFJ34PXkUHLnozMPJ0olwl3D6O/env5P+J8AhQJUiaYX60+liRVVF7Mvdx71R97apv5SSZQmphLjbMS5UVfJskxMb4NuFYGoBd8RBwGj8Af+wWKoqK9i58QusD37G8PSPYfnHHLCMoTL8BiIm3Yq9g7Oho1eugrWZNQPdBjLQbWBjW1VdFSeLTjaedRwpOML/jvyPWl0tABYmFgQ7BtPPqd/vCcS5v9qn4wIqUXSxLRn6IoBtvey050wRhzJLeXlupDplbo2UsO1t2PgSeEbBgs/B0e+iLlbWNgy/diFcu5Cz6SdI3/gxvulxeO//B1XJ/ySpzxjMY+YTNnYe5hZWBnojSkeyMrMiyi2KKLeoxrZaXS2pJakcLzzOiaITHC88ztbMrfxw6ofGPh42Ho2Jo59zP/o59aOvfd9eWc9KrXrqYo9qHuVg/kF+u/G3Nn3wP/jZXhJSCkh8ZhI2FiqvN6umHH54CA5/B5E3wOx3waJt6++lTsfxJA3Fif+jX8GvOHOOYuw45nwNtrE3EzF8Cqamve/DoTfKr8znROEJjhcd1/8UHietJI06WQfo7y4Pcggi2DGYYMdgQhxDCHYMxsfOxyiX7KpVT91QVV0V27O2Mzt4dpuSREZRBesPneXecUEqSbSkOB1W3wJnD8E1L8DoR+EKzr6EiQlhsZMhdjJVVVUkbfsB3f4vGViwDusN35OzwZlUt8k4DLmB/rFTMDFTfxc9lau1K64+rozyGdXYVlNfw6niUxwvOs7JopOcKj7F7rO7+en0T419rM2sCXQIbEwc53/1svUyygRyKfUvvgs1FgFs45anqxLPIITgjpEBnRuYMUvbBl/dAfV1cMtX0G/qVQ1nZWXF4GvmwzXzqSwrIXnzl8gjPxCT+z1W67+mYL0jp10nYh1zPWHDp2Nmrvb77uksTC0Idwkn3OXi+mrnas5xqvgUp4pPkVKcwqniUyRmJRJ3Kq6xj42ZzUVnH4EOgQT2CcTbztuoLmGpS09d6IXtL7A+bT1b5m/BwrTlD5iKmjpGvLqRsaFuLLl1cBdFaESkhN2fwPqnwTkIFnwBriGd9nJl54o5uuUbOBLHgLId2IhqCrHnhOM4zCOuI3z0tdjYqgJ3CpRUl1yUPM4/LqgqaOxjbmJO3z59CXQIJKBPQOPS34A+AdhZdN0SeHXpqZvRSR2btJsY4zOm1SQB8G1SJqVVddwzJqDzgzM2ddWw7klIWgmh0+CGj8Gqc1eo2Nk7MnTWIpi1iIryUpK2fY88/AORxfHYbV9LZYIFybZDqAueRtDoG3D2VGVWeisHSwcGewxmsMfFX/CKq4pJK00jtSRV/1Oaysmik8Snxzcu3wVws3a7PIE4BBj0MpZKFF3kYP5BCqoK2nTZSaeTLE9IJdrXQZXRvtS5HPjqdtDuhLFPwMS/QxefwtvY9mHwtDtg2h3UVldyeOd6yg7+hH/eZrwOJsLBFzhpFkq+90ScB80mNHo0Jr20iKPyO0crR2KsLr7vA6C2vhZtmbYxgaSVpJFamsrPaT83li0BsDK1wr+PP3379G38CegTQJhzGFZmnbtCTyWKLqJJ1xcBHOMzptW+W07mcTqvnMXzY9SS2Atl7oXVt0FVMdy0AgbMM3REmFtaM2DcPBg3D6nTceLQHvL2fo9LZjzDz3yMSfpH5P7gTKrDcExDJxMy/Foc3bwMHbbSjZibmhPkEESQQ9BF7VJKCqsK9cmj4UwkrTSNk0Un0aRrGldirZm9hhCnzrvsCipRdBmNVkOsR2ybbuJZlpCGu70lM6PUB0qj5C/gxz+DnQcs3KC/T6KbESYm9IseRr9o/UZURbmZpCauQaT8SljJVhz2/Ixu91OcNA+hyHMMfSKnETx4orpfQ2mSEAIXaxdcrF2I9bx4GqFWV0tWWRZnSs/g36fzL3OqRNEFzpSe4XTJaf7Q/w+t9k3JPceWE3k8MaUfFmbqcgX1dfDrc7BjCQSMhZs+BVsXQ0fVJk7uPjjNeQh4iPq6Oo4nb6HgwHocs7YyWPspZhnLKf/ZikM2MVT4TcBj4FSCwgapy1RKq85Phvft07dLXk8lii6gSW8oAtiG+YnlCWlYmJlwy3A1GUpFIXxzN5zeBMPuh2mvgJHuuWxqZkb/2EkQOwmA4qJ8Tu9aR+2JjfgVJuJ9YgeceJ18HDljPwid/xh8Bk3FOzjqiu4JUZTOoBJFF9BoNfR36o+3XcslrosravguKZO5Md642Fl2UXTdVM4RWH0zlGbp77IefLuhI+pQjk6ujRPiALlnjpK+9xdE2jb8SvfiflgDh18iH0fS7QdT6z8Gz4HX4B8ShTBRZxxK12pTohBCTAf+A5gCn0gpX7/keUtgJTAEKADmSynTGp57BlgI1AOPSCl/aeOY/wXullIadV3toqoikvOSuS/6vlb7rt6tpbK2XlWJPfojfHc/WNrBXWvBb5ihI+p07n3Dce8bDjyK1Ok4k3KIrORfMdMmEHAuCbfD8XD4RXJxJt02mlrvobhFjCMgcoS66U/pdK0mCiGEKbAEmAJkALuFEHFSyiMXdFsIFEkpQ4QQC4A3gPlCiAhgATAA8AZ+E0Kcr+nc7JhCiFjAsUPeoYFtztiMTuqY4DehxX519TpWbk9jZJAL4V59uia47kang81vwObXwWcIzP8f9Ol9Gw0JExP69oumb79o4AmkTkfGqUOcPfAbJukJ+Jbux/PkJjj5FhXfW3LCKowy91hsg0fhHzMBe0dVZVjpWG05oxgGpEgpTwMIIVYDc4ALE8Uc4IWGx98A7wr9us45wGopZTWQKoRIaRiP5sZsSExvAbcAhl//eJU06Ro8bDyIcI5osd8vh3PIKqnihdkDuiiybqb6HKz5Ixz7CQbeAte+A+ZqNRDoE4dvaDS+odHA4wDkZpwmfX88tamJuBbuY3D6csy0S9FpBKmm/uQ4xCD8h+EePoa+oVGYqKKGylVoS6LwAbQX/D4DGN5cHyllnRCiBHBpaN9xybHnd+tpbsyHgDgpZbax30NQVVdFYnZim4oALk9Ixd/ZhsnhHl0UXTdSeBq+uAXyT8C012DEA2oCtxXuvkG4+wYBiwAoKSki/cAWyk8mYJu7h8iiDdgV/QD7oVTakG7Vn3LXgVgHDsUvahxOHmqxhNJ2bUkUTf2PvbRAVHN9mmtvajZOCiG8gZuACa0GJcR9wH0A/v7d8x/9juwdVNZVMslvUov9DmQUs+dMEc9eG4GpSS/7gDwVD1/frU8Mt38HQRMMHZFRcnBwImrsHBir3yZU1tehPbmPnKOJ6DL24Fx8iP4ZqzDPXAHbIBcXsmzDqHSPwSZwOP6Ro3FyVpeslKa1JVFkABfu/uILZDXTJ0MIYQY4AIWtHNtU+yAgBEhp+AZuI4RIkVJedtuhlPIj4CPQFwVsw/vocpu0m7Azt2Oo59AW+y1PSMPO0ow/xPp2UWTdgJSQuAR+fRbcwvSbDDn38kn8DiRMzfALG4pf2O//9irKz3Hi0A6KT+7APCcZr7Ij+KUmQOoSiId04UWuTX9q3SOx7TsYv4gROLm3bbtepWdrS6LYDYQKIQKBTPST07dc0icOuBNIBG4E4qWUUggRB3wuhHgb/WR2KLAL/ZnGZWNKKQ8DnucHFUKUNZUkjMGFRQDNW1j7n1taxU8Hsrh1eF/srYzzHoErVlsJPz4KB1ZD+HUw9wP9CielU9nY2jNg+BQYPqWxraQoj4xDCZSf3olF3kG8y4/inboJUoFNkIcz2TahVLoMwNI3Bvd+w/Dq218t0e1lWk0UDXMODwG/oF/KukxKeVgI8SKwR0oZBywFVjVMVhei/+Cnod9X6Ce+64A/Sakvk9jUmB3/9gznQN4BCqoKWl3t9L8dZ6jTSe4aFdAlcRlcSSZ8eStk7dMX9Bv7JKgPHYNxcHLDYexcGDu3sa2kKA/tkR2Unk7CLPcgbuXHiUjfjZlWB4n6OQ+tRTDFjuGYeAzAKXAgfv0GY2uv9pjuqdR+FJ3knb3vsPLwSjYv2Ewfi6aXu1bV1jP69XgG+TvyyZ0tX57qEdJ3wpe3QW0FXP8RhM0ydERKG1WUn0N7bA8lqXsR2QdwLD2Gb00q1qIGAJ0UZJt4kGcTTLVzGJY+kbgGDcYraACmZr3kTNkIqf0oDEyj1TDEc0izSQIgbn8WBeU1veMGu70rYO2T4OgHd8aBe3irhyjdh42tPf2HTIQhv5ehkfV1ZJ85Rk7KPqoyDmJeeAzX8lP4lm3HVCthB9RIM9LM/CiyDabGJQwL72jcg6Lx7huKmdpS1miov6lOkFaiLwk8v//8ZvtIKVm2LZX+HvaMCjaOInftUl8L65+B3R9D8CS4cRlYqz02egJhaoZXUCReQZEXtZeXl5Fxcj/Facnoco5gU3Qc39JkPEt/0899JECltCDNzJdim0DqnEKw9A7HNSASr8BIzCytDfOGlGapRNEJNmk3AS0XAdxxupBjZ8/x+vVRPXfPifJ8+OpOOLMNRj0Mk18AU/VPrqeztbWjf8xoiBl9UXtZSQFnTyRRrD1Mfe4xrEtO4V12CM/SeEzS9Wcg9VKQYeJJgXVfKvsEY+LeHzufAXgER+Hs4t5z/690c+p/bSfQaDWEOYe1WARwWUIqTjbmzB3UQ5cfZh+A1bdAeR5c/zFEt15iXenZ7BxcCBk6BYZOuai9oryUjJRDFJ05RG3OMayKT+FcmUpY+V4sz9bCAX2/AhzIMfPhnK0/OscgLDz64egbhndQBNZ2aiK9M6lE0cEKqwpJzkvm/uj7m+2TXlDBb0dzeHBCMFbmPbC0wqFv4fs/gY0z3LMevAcZOiKlG7Ox7UO/gaNg4KiL2uvr6shKP0F+2kGqso9iUpCCTdkZgkp24VayHs6gX2wP5ONIvoUv52z7Uu8UhIV7CH18wvAMCMdOrca6aipRdLDN2taLAK7YnoapENw+IqDL4uoSunqIfwm2vQN+I2D+KrBzN3RUipEyNTPDOygC76DL66RVlJWQlXqEYu0xanJPYlp0GrvydAKKEnArWgunf++bizO55j6U2fhT7+CPuWsAfbxCcfXrh4u7j7onpA1UouhgGq0GT1tPwp2bXtVzrqqWr/ZomRnlhadDDyp6V1UC3y6CkxtgyF0w4y0wU+Wvlc5hY+dASNRIiBp52XMlxYXkph2lNOsYtbkpmBWfxr48nZCSBFxL1kL6730rpCW5ph6UWPlQY+8Hjn2xdA/GwSsYN/9+2Nj1iCLWV00lig5UWVdJYlYic0PmNjvp9s3eDMqq67hnTA9aEpt3Qr/JUFEazHobhi40dERKL+bg6IxDE5PpAFUV58hJP0lx1gkqc04ji9KwPKfFoSoLj/J92OVUwfHf+xfShzwzL0qtvKmx90M4BWDt2hdHryDcfIN7zWUtlSg60I6sHVTVVzHRv+nVTjqdZMX2NAb5OxLj10O+qZz4RX8mYWoBd8RBwOX/ORWlu7Cysadv2GD6hg2+7DldvY68/GzytScpO5tCXUEqpiVnsKnIxKf8KG7ntmCeXX/RMUXYU2DqTpmlJzV23uDgh6VrX+zcA3DyCsLJ3QdhYvzzkCpRdKBNGQ1FAD2avss6/lguZwoqeHJq/y6OrBNICVv/DfEvg2eUvqifo1/rxylKN2ViaoKbhw9uHj40VcBa1tdScFZLQWYKZblp1BSkI0q1WFVk4VCVgVt5Ena5lXDy92NqpBl5Jq4UmXtQYe1Fnb0PwtEPK5e+2Lv3xdU7AAdH526/7Fclig5Sr6tnk3YTY33GNlsEcPn2VDz7WDE90rPJ541GTTn88Cc4vAYib9DvaW1hY+ioFKVTCVNzXHyCcPEJavJ5qdNRWJhPXuYpynLSqClMg5IMzMuysKvKJqBkN67Fv2CScXHZpDJpTYGJC6UWblRZe1Bv54WJgy9WLj70cQ/A2aMv9i4eBj0zUYmigxzMP0hhVWGzq52Onz1HQkoBf5neH3NTI15lUXQGVt8KOYfgmn/C6D+rTYYUBf1OhM6u7ji7ugOXT7ID1NfWkJedRlH2KSrytVQXZUJpFuYVZ7GtysG9eDcuRUWYZeguOq5GmlFg4kyxmRsVVu7U2nqBvRfmTn6EjppNH8fOre6gEkUHidfGYybMGOM7psnnlyekYmVuws1Du+cmS22SuhW+vhPq6+DWryF0SuvHKIrSyNTcAjf/frj592u2T21tLdk5GRSfTaUsT0ttUQayNBvz8mxsqnPxKDuGS2kC1mf1BRnTQwapRGEsNOkaYj1jmywCWFhew5p9mVw/2BcnWyNcMiol7PoY1j8NLsGw4AtwNcptQhSl2zM3N8fLNxAv3+ZXRkqdjuLCPArPpuHbN6zTY1KJogOklqSSVprGzWE3N/n8F7vSqa7TcffogK4NrCPUVcPaJ2DfKug3XV8e3Kp3LAlUlO5KmJjg6OqBo6tHl7yeShQdoKUigLX1OlYmpjE21JV+HvZdG9jVOncWvrwdMnbpNxia+He1yZCi9EIqUXQAjVZDuHM4XnZelz237mA2OaXVvHZ9lAEiuwoZe/U70VWVwE0rYMA8Q0ekKIqBqK+HV6mgsoDk3ORmVzstT0gj0NWWCf2MqOZR8hewfAaYmsPCDSpJKEovpxLFVdqSsQWJbPKyU1J6EcnaYu4aFYCJiREsIa2vg/V/g+//CH7D4N5N+pvpFEXp1dSlp6sUr43Hy9aLMOfLVx4sT0jD3sqMG4f4GiCyK1RRCN/cDac3wbD7Ydor+jMKRVF6PZUorkJlXSU7snYwL3TeZbfgZ5dUsu5gNnePCsDWspv/Mecc0Rf1K82COUtg0G2GjkhRlG6km3+CdW+NRQCbuOy0KvEMUkruHBXQ9YFdiSNxsOaPYGkHd60Dv6brVCmK0nupRHEVNFoN9ub2xHrGXtReWVPP57vSmRLhgZ9zN62BpNPB5jdg8+vgMwTm/w/6NL91q6IovZdKFO1Ur6tnc8ZmxviMwdzk4mv53ydnUlxRyz2ju+meE9Xn9GcRx36CgbfAte+AeQ/aRElRlA6lEkU7Hcg/QGFV4WV7T0gpWZ6QSoRXH4YFOhsouhYUnNIX9cs/AdNfh+F/VEX9FEVpkUoU7aRJ12BmYsYYn4uLACakFHAip4x/3TSw+9WYT9moX9kkTOD27yBogqEjUhTFCKj7KNpJo9Uw1GMo9hYXl+VYlpCKq50F1w28/C5tg5EStv8XPrsR+vjAvRqVJBRFaTOVKNrhfBHASy87peaXE38sl1uH98XSrJtsf1hbCWvuhw3/gLBrYeGv4NxN504URemW1KWndtBoNcDlRQBXJKRibiq4dUQ32XOiJFNfrylrn76g39gnVVE/RVGumEoU7aBJ1xcB9LT9fUvTkspavt6bwXUDvXG37wYriNJ36Cu/1lbo97MOm2XoiBRFMVLq6+UVyq/MZ3/e/svOJr7eo6Wipr57LInduwJWXKu/iW7RbypJKIpyVdqUKIQQ04UQx4UQKUKIp5t43lII8WXD8zuFEAEXPPdMQ/txIcS01sYUQnzW0H5ICLFMCNGtCg41FgG8YH6iXidZsT2NYQHORPoYcFOf+lr9JkM//hkCx8K98eAebrh4FEXpEVpNFEIIU2AJMAOIAG4WQkRc0m0hUCSlDAHeAd5oODYCWAAMAKYD7wkhTFsZ8zMgDIgCrIFFV/UOO5gmXYO3rTf9nfo3tv16JIeMokrD7mBXlgcr58DuT2DUI3DrN2DtZLh4FEXpMdpyRjEMSJFSnpZS1gCrgTmX9JkDfNrw+BtgstDfRDAHWC2lrJZSpgIpDeM1O6aUcp1sAOwCuk3p1YraChKzE5ngN+GieySWJ6Ti42jNlIiu2ZbwMtn74eOJkLkXrv8Ypr4EJt1k1ZWiKEavLYnCB9Be8PuMhrYm+0gp64ASwKWFY1sds+GS0+3A+jbE2CV2ZO+gur76ostOh7NK2JlayJ2j+mJmaoApn4PfwNJpIHVwz3qI/kPXx6AoSo/WllVPTd1eLNvYp7n2pj5RLx3zPWCLlHJrk0EJcR9wH4C/f9csRz1fBHCIx5DGtuUJadhYmDI/touXxOrqIf4l2PYO+I2A+avAzoh20VMUxWi05StwBuB3we99gazm+gghzAAHoLCFY1scUwjxPOAGPN5cUFLKj6SUsVLKWDc3tza8jatTr6tnS8YWxvj+XgQw71w1cclZ3DDYFwebLpxzryyGz+frk8SQu+HOH1WSUBSl07QlUewGQoUQgUIIC/ST03GX9IkD7mx4fCMQ3zDHEAcsaFgVFQiEop93aHZMIcQiYBpwsxpssOwAAA6kSURBVJRSd3Vvr+Psz9tPYVUhk/wmNbZ9vjOdmnodd3XlJHbeCfhkMpzWwKy34brFYGbRda+vKEqv0+qlJyllnRDiIeAXwBRYJqU8LIR4EdgjpYwDlgKrhPj/9u49uqryzOP49+ESRAhyFRESLhaKUatiBooIA1IVsBXrgMVqBbTaduwabceu0bHL5bB0rcG20652nDp2xFutIIgVx7sS0EEugkZulhIJIRHEoNzkHvLMH/uNHtJzTm7nEsjvs9ZZ2dnZ+32f856d85x3v2fv10qIehJTwr7rzOxpYD1QBdzi7kcB4pUZqnwQKAOWhgHj+e4+I2XPuJGKyo+9CeChqqM8sayM0V/twRk9OmYmiA0vw/yboHUOXL8A+o3ITL0i0qLV68psd38ReLHWurtjlg8CkxPsex9wX33KDOub3dXi7k5ReRFDTxtKx5woKbywehs7Pj+UmQvs3OGtX8HCe6HX1+A7T0LnvLr3ExFJgWb3ptwcle4ppWxPGdedGc0l7e7MWlLKV07tyMiB3dNb+eF98NwtsO5ZOHsSXPE7yGmms+aJyAlJiaIeirZENwEcnTcagJVlO1n70R7u+/bZ6Z1zYmdZNMnQ9rVwyYzoQrrmNseFiJzwlCjqoaj82JsAzvq/Uk5p35arzk/jtYClb8HT10dfg712Lgy8JH11iYgkoZsC1mHHgR2srlz9xUV2FTv388q6j7lmaD7tc9Jw9bM7LP/v6HYcHbpH92tSkhCRLFKPog6Lyxfj+Bdfi318aRlmxvXD+6a+sqpD8MJP4b0/wqDxcNVDcFKn1NcjItIAShR1KCqPbgI4qMsg9h2qYvaKLYw7+zRO79w+tRXt/TiaP6JiBYz6GYz+V00yJCLNghJFEvuP7GfZtmVMGjQJM2P+uxXsOVjFDam+wK5iVTQT3cHdMPlROOvbqS1fRKQJlCiSWLptaXQTwLwxVFc7j7y9mXP7nMKQ/BTevrv4T/D8bZDbE258FU47J3Vli4ikgM5tJFG0pYjcnFyG9BzC4o2VbKrcx/QR/VPzldijVfDynfDnH0HeULhpkZKEiDRL6lEkUHMTwJG9R9K2VVseWbKZU3PbMeGcXk0vfP9nMHcalC6GYT+ES++F1s1qIj8RkS8oUSRQXFnMzkM7GZM/hpJP9vLmXyv550sGkdOmiZ2w7evgqWtg7zaY+ACcf11qAhYRSROdekqgaEu4CeDpF/HIks3ktGnFd4c1cc6J9Qvgfy6JvgY77UUlCRE5LqhHEUfNTQCHnTaMqqocnnm3givPO51uHds1rsDqalj877B4JvQuhO/8ETql4BSWiEgGqEcRR+nuUrbs3cKYvDHMfqecg0eqmd7Yu8Qe2gtzrouSxHnXwrQXlCRE5LiiHkUcC8sXAnDR6aOY/Ox6hg/oxpm9GnGF9Kcfwuzvwo6NMG4mDPuBbuonIscdJYo4isqLKOhWQPFm2Lr7IP828eyGF1LyOsy7AawVfG8+DBid4ihFRDJDp55q2XFgB2sq1zAmbwyzlpSS3/VkLh7cgPmo3eHt38GTk6FTH7ipSElCRI5r6lHUsqh8EY7TO6eQVWXbufubBbRuVc/TRUcOwPO3wuo5cOYVcOXvoV2GpkkVEUkTJYpaFpUvonfH3rxe3IqO7dowubCec07srogmGdpWDGN+DqNu13iEiJwQdOopRs1NAIf1HMmLaz9mcmEfck+qxxXTZUvhodHR4PWUp+Dvf6YkISInDPUoYizdGt0EcN/OwVRVO9Mu7Ff3TqsehRduh855MPV/4dTB6Q5TRCSjlChiLCxfSG7bXN4o7sDYwd3p261D4o2rDsPLd8DKh+GMsTDpYWifwrvKiog0E0oUQVV1FW9WvEnfkwtZuu9o8jknPq+EuVOhbAlc+E/wjXugVRqmRRURaQaUKILiT4rZdWgXrT4dwODTchl+Rrf4G24tjgat9++Aq/4AX7s6s4GKiGSYBrODovIi2lhbyj7KZ/qIfvHnnFgzD2aNAxxueFlJQkRaBPUo+PImgB18MNY+l4nn9T52g+qj8MYMWPIbyB8OVz8OHRtwEZ6IyHFMiQLYtHsT5XvLOfjxBfxgaD4ntY0ZbziwC575PpS8BhdMh/H3Q5uc7AUrIpJhShREp50AfF8B3xve98s/VG6IJhnaVQaX/wf83Y1ZilBEJHuUKIDXN7+BH+zD5QWD6dnppGjlhpfgmZugTTuY+jz0vTC7QYqIZEmLH8yu3F/Jus/WcnjPmdGcE+7w5i+jnkS3AXDzIiUJEWnRWnyPYuGWRQAM7Ph1zuvZFuZOg/V/hnMmw7d+CzknZzU+EZFsq1ePwszGmdkGMysxszvi/L2dmc0Jf19uZv1i/nZnWL/BzC6rq0wz6x/K2BjKTOvI8fy/vEL14a785Ny+8PClsP45uGRGdI2EkoSISN2JwsxaAw8A44EC4BozK6i12Y3ATnf/CvBrYGbYtwCYApwFjAP+y8xa11HmTODX7j4Q2BnKTov9R/bzwa5V5B3qxdi3psCucrh2Hoy4VTf1ExEJ6tOjGAqUuPsmdz8MzAYm1tpmIvBYWJ4HjLXoirWJwGx3P+TupUBJKC9umWGfi0MZhDKvbPzTS27uutdxq+KezxdhHXrAzUUw8Bvpqk5E5LhUn0TRGyiP+b0irIu7jbtXAbuBbkn2TbS+G7ArlJGortRwZ8k7v6TT0aOce/pI+P7r0O2MtFQlInI8q89gdrxzMF7PbRKtj5egkm3/t0GZ3QzcDJCfnx9vk+TMyG+XR/eqzrS/bg60avFfABMRias+iaICyIv5vQ+wNcE2FWbWBjgF+KyOfeOt3wF0NrM2oVcRry4A3P0h4CGAwsLCuMmkLj+//snG7CYi0qLU52P0O8DA8G2kHKLB6QW1tlkATA3Lk4CF7u5h/ZTwraj+wEBgRaIywz5FoQxCmc81/umJiEhT1dmjcPcqM/sx8ArQGpjl7uvMbAaw0t0XAA8DT5hZCVFPYkrYd52ZPQ2sB6qAW9z9KEC8MkOV/wLMNrN7gfdC2SIikiUWfYg/vhUWFvrKlSuzHYaIyHHFzFa5e2Fd22kEV0REklKiEBGRpJQoREQkKSUKERFJSolCRESSOiG+9WRmlUBZI3fvTnShX3OjuBpGcTWM4mqYEzWuvu7eo66NTohE0RRmtrI+Xw/LNMXVMIqrYRRXw7T0uHTqSUREklKiEBGRpJQowo0FmyHF1TCKq2EUV8O06Lha/BiFiIgkpx6FiIgk1aIThZmNM7MNZlZiZnekua48Mysysw/MbJ2Z3RrW32NmH5lZcXhMiNnnzhDbBjO7LF1xm9lmM1sT6l8Z1nU1s9fMbGP42SWsNzP7bah7tZkNiSlnath+o5lNTVRfPWP6akybFJvZHjO7LVvtZWazzOwTM1sbsy5lbWRmF4TXoCTsW69J2xPE9Qsz+0uo+1kz6xzW9zOzAzFt92Bd9Sd6jo2MK2WvnUVTFCwPcc2xaLqCxsY1JyamzWZWnMn2ssTvDVk/vr7g7i3yQXR78w+BAUAO8D5QkMb6egFDwnIu8FegALgHuD3O9gUhpnZA/xBr63TEDWwGutdadz9wR1i+A5gZlicALxHNRvh1YHlY3xXYFH52CctdUvhafQz0zVZ7AaOAIcDadLQR0Twtw8M+LwHjmxDXpUCbsDwzJq5+sdvVKidu/YmeYyPjStlrBzwNTAnLDwI/amxctf7+K+DuTLYXid8bsn581Txaco9iKFDi7pvc/TAwG5iYrsrcfZu7vxuW9wIfkHw+8InAbHc/5O6lQEmIOVNxTwQeC8uPAVfGrH/cI8uIZiTsBVwGvObun7n7TuA1YFyKYhkLfOjuyS6qTGt7ufubRHOt1K6zyW0U/tbJ3Zd69F/9eExZDY7L3V/1L+edX0Y0U2RCddSf6Dk2OK4kGvTahU/DFwPzUhlXKPdq4KlkZaS6vZK8N2T9+KrRkhNFb6A85vcKkr9xp4yZ9QPOB5aHVT8OXchZMV3VRPGlI24HXjWzVRbNRQ7Q0923QXQgA6dmIa4aUzj2nzfb7VUjVW3UOyynI8YbiD5B1uhvZu+Z2WIzGxkTb6L6Ez3HxkrFa9cN2BWTDFPVXiOB7e6+MWZdRtur1ntDszm+WnKiiHeOLu1fATOzjsAzwG3uvgf4PXAGcB6wjajrmyy+dMQ9wt2HAOOBW8xsVJJtMxkX4dzzFcDcsKo5tFddGhpLutruLqKZJWsmh98G5Lv7+cBPgT+ZWad01R9Hql67dMV7Dcd+IMloe8V5b0i4aYL609ZeLTlRVAB5Mb/3Abams0Iza0t0IDzp7vMB3H27ux9192rgD0Td7WTxpTxud98afn4CPBti2B66rDVd7U8yHVcwHnjX3beHGLPeXjFS1UYVHHt6qMkxhoHMbwLXhtMNhFM7n4blVUTn/wfVUX+i59hgKXztdhCdbmlTa32jhbKuAubExJux9or33pCkrMwfXw0Z0DiRHkTzhW8iGjyrGSg7K431GdG5wd/UWt8rZvknROdqAc7i2AG+TUSDeymNG+gA5MYsv000tvALjh1Iuz8sX86xA2kr/MuBtFKiQbQuYblrCtptNjC9ObQXtQY3U9lGwDth25rBxglNiGsc0Tz1PWpt1wNoHZYHAB/VVX+i59jIuFL22hH1MGMHs/+xsXHFtNnibLQXid8bmsXx5e4tN1GExptA9A2DD4G70lzXRUTdvdVAcXhMAJ4A1oT1C2r9M90VYttAzLcUUhl3+Ad4PzzW1ZRHdB74DWBj+FlzwBnwQKh7DVAYU9YNRAORJcS8uTchtpOBT4FTYtZlpb2ITklsA44QfUK7MZVtBBQCa8M+/0m4GLaRcZUQnauuOc4eDNv+Q3iN3wfeBb5VV/2JnmMj40rZaxeO2xXhuc4F2jU2rrD+UeCHtbbNSHuR+L0h68dXzUNXZouISFIteYxCRETqQYlCRESSUqIQEZGklChERCQpJQoREUlKiUJERJJSohARkaSUKEREJKn/B7iPc2wQRLNOAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# 不同大小与不同超参模型的学习率曲线\\n\",\n    \"opts = [NoamOpt(512, 1, 4000, None), \\n\",\n    \"        NoamOpt(512, 1, 8000, None),\\n\",\n    \"        NoamOpt(256, 1, 4000, None)]\\n\",\n    \"plt.plot(np.arange(1, 20000), [[opt.rate(i) for opt in opts] for i in range(1, 20000)])\\n\",\n    \"plt.legend([\\\"512:4000\\\", \\\"512:8000\\\", \\\"256:4000\\\"])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 正如我们所分析，先线性增加，然后再逐渐减小。\\n\",\n    \"---\\n\",\n    \"\\n\",\n    \"## 正则化\\n\",\n    \"### 标签平滑\\n\",\n    \"- 在训练期间，我们采用ϵls = 0.1的标签平滑。随着模型训练变得更加不确定，这会增加困惑度perplexity，但会提高准确率（accuracy）和BLEU分数。\\n\",\n    \"- 使用KL div损失实现标签平滑，而不是使用one-hot目标分布，我们创建的分布具有对正确单词的置信度以及其余平滑质量分布在整个词汇表中的置信度。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class LabelSmoothing(nn.Module):\\n\",\n    \"    \\\"实现labelsmoothing.\\\"\\n\",\n    \"    def __init__(self, size, padding_idx, smoothing=0.0):\\n\",\n    \"        super(LabelSmoothing, self).__init__()\\n\",\n    \"        self.criterion = nn.KLDivLoss(reduction='sum')\\n\",\n    \"        self.padding_idx = padding_idx\\n\",\n    \"        self.confidence = 1.0 - smoothing\\n\",\n    \"        self.smoothing = smoothing\\n\",\n    \"        self.size = size\\n\",\n    \"        self.true_dist = None\\n\",\n    \"        \\n\",\n    \"    def forward(self, x, target):\\n\",\n    \"        assert x.size(1) == self.size\\n\",\n    \"        true_dist = x.data.clone()\\n\",\n    \"        true_dist.fill_(self.smoothing / (self.size - 2))\\n\",\n    \"        true_dist.scatter_(1, target.data.unsqueeze(1), self.confidence)\\n\",\n    \"        true_dist[:, self.padding_idx] = 0\\n\",\n    \"        mask = torch.nonzero(target.data == self.padding_idx)\\n\",\n    \"        if mask.dim() > 0:\\n\",\n    \"            true_dist.index_fill_(0, mask.squeeze(), 0.0)\\n\",\n    \"        self.true_dist = true_dist\\n\",\n    \"        return self.criterion(x, Variable(true_dist, requires_grad=False))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 例子\\n\",\n    \"- \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<matplotlib.image.AxesImage at 0x7f5ab0294c18>\"\n      ]\n     },\n     \"execution_count\": 14,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAX8AAADsCAYAAACcwaY+AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAADQdJREFUeJzt3X+oX/V9x/Hna0mME+u0i5suidWyILUbs+1davEfayeLTkxhDiKstT8vK8osFFbtwLLCwO2PbitKJdZg3Yq2aNnuJCIO09my6by6+CNmoZkUvEvAaTZtaBdN+94f+Zbc3nzjTe453nP183zAl/s93/PJ+Xw46DOHc7/fb1JVSJLa8gtDL0CStPiMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1qFP8k7w9yYNJvj/6edpRxv0kyfbRY6rLnJKk7tLlff5J/hLYV1U3JbkeOK2qPj9m3P6qOrnDOiVJPeoa/13ARVW1N8mZwHeq6twx44y/JC0hXe/5/2pV7QUY/fyVo4w7Mcl0kkeSfLjjnJKkjpbPNyDJPwFnjNn1p8cxz1lVtSfJO4GHkjxdVf85Zq5JYBJgGcvedxKnHMcUb111yklDL2HJOPfsF4dewpKx6werhl6ClqD9r/zXi1V1+nzjFuW2z5w/cwdwX1Xd83rjTsnb6/350ILX9lby6obfHnoJS8a2LbcNvYQl44Of+PTQS9AS9PD9n3+8qibmG9f1ts8UcPXo+dXAP8wdkOS0JCtHz1cBFwLPdpxXktRB1/jfBFyS5PvAJaNtkkwk+dpozLuA6SRPAtuAm6rK+EvSgOa95/96quol4Ih7M1U1DXxq9PxfgN/sMo8kqV9+wleSGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGmT8JalBxl+SGtRL/JNsSLIrye4k14/ZvzLJN0f7H01ydh/zSpIWpnP8kywDbgEuBc4Drkpy3pxhnwT+p6p+Hfgr4C+6zitJWrg+rvzXA7ur6rmqehW4G9g4Z8xG4Ouj5/cAH0qSHuaWJC1AH/FfDTw/a3tm9NrYMVV1EHgZ+OW5B0oymWQ6yfRrHOhhaZKkcfqI/7gr+FrAGKpqc1VNVNXEClb2sDRJ0jh9xH8GWDtrew2w52hjkiwHfgnY18PckqQF6CP+jwHrkpyT5ARgEzA1Z8wUcPXo+ZXAQ1V1xJW/JGlxLO96gKo6mORa4AFgGbClqnYk+RIwXVVTwO3A3ybZzaEr/k1d55UkLVzn+ANU1VZg65zXbpz1/P+AP+hjLklSd37CV5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUG9xD/JhiS7kuxOcv2Y/R9L8t9Jto8en+pjXknSwizveoAky4BbgEuAGeCxJFNV9eycod+sqmu7zidJ6q6PK//1wO6qeq6qXgXuBjb2cFxJ0hukj/ivBp6ftT0zem2u30/yVJJ7kqztYV5J0gJ1vu0DZMxrNWf7H4G7qupAkj8Cvg5cfMSBkklgEuBETuphaW8N27bcNvQSlowPfuLTQy9Bekvo48p/Bph9Jb8G2DN7QFW9VFUHRpu3Ae8bd6Cq2lxVE1U1sYKVPSxNkjROH/F/DFiX5JwkJwCbgKnZA5KcOWvzCmBnD/NKkhao822fqjqY5FrgAWAZsKWqdiT5EjBdVVPAHye5AjgI7AM+1nVeSdLC9XHPn6raCmyd89qNs57fANzQx1ySpO78hK8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNcj4S1KDjL8kNaiX+CfZkuSFJM8cZX+SfCXJ7iRPJXlvH/NKkhamryv/O4ANr7P/UmDd6DEJfLWneSVJC9BL/KvqYWDf6wzZCNxZhzwCnJrkzD7mliQdv8W6578aeH7W9szotZ+TZDLJdJLp1ziwSEuTpPYsVvwz5rU64oWqzVU1UVUTK1i5CMuSpDYtVvxngLWzttcAexZpbknSHIsV/yngo6N3/VwAvFxVexdpbknSHMv7OEiSu4CLgFVJZoAvAisAqupWYCtwGbAb+BHw8T7mlSQtTC/xr6qr5tlfwDV9zCVJ6s5P+EpSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDXI+EtSg4y/JDWol/gn2ZLkhSTPHGX/RUleTrJ99Lixj3klSQuzvKfj3AHcDNz5OmO+W1WX9zSfJKmDXq78q+phYF8fx5IkvfEW857/B5I8meT+JO9exHklSXP0ddtnPk8A76iq/UkuA/4eWDd3UJJJYBLgRE5apKUtfb/7a+cPvYQl4wQeG3oJ0lvColz5V9UrVbV/9HwrsCLJqjHjNlfVRFVNrGDlYixNkpq0KPFPckaSjJ6vH8370mLMLUk6Ui+3fZLcBVwErEoyA3wRWAFQVbcCVwKfSXIQ+DGwqaqqj7klScevl/hX1VXz7L+ZQ28FlSQtAX7CV5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5IaZPwlqUHGX5Ia1Dn+SdYm2ZZkZ5IdSa4bMyZJvpJkd5Knkry367ySpIVb3sMxDgKfq6onkrwNeDzJg1X17KwxlwLrRo/3A18d/ZQkDaDzlX9V7a2qJ0bPfwjsBFbPGbYRuLMOeQQ4NcmZXeeWJC1Mr/f8k5wNvAd4dM6u1cDzs7ZnOPIvCJJMJplOMv0aB/pcmiRplt7in+Rk4F7gs1X1ytzdY/5IHfFC1eaqmqiqiRWs7GtpkqQ5eol/khUcCv83qurbY4bMAGtnba8B9vQxtyTp+PXxbp8AtwM7q+rLRxk2BXx09K6fC4CXq2pv17klSQvTx7t9LgQ+AjydZPvotS8AZwFU1a3AVuAyYDfwI+DjPcwrSVqgzvGvqu8x/p7+7DEFXNN1LklSP/yEryQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoOMvyQ1yPhLUoM6xz/J2iTbkuxMsiPJdWPGXJTk5STbR48bu84rSVq45T0c4yDwuap6IsnbgMeTPFhVz84Z992quryH+SRJHXW+8q+qvVX1xOj5D4GdwOqux5UkvXF6veef5GzgPcCjY3Z/IMmTSe5P8u4+55UkHZ9UVT8HSk4G/hn486r69px9pwA/rar9SS4D/qaq1o05xiQwOdo8F9jVy+K6WQW8OPQilgjPxWGei8M8F4cthXPxjqo6fb5BvcQ/yQrgPuCBqvryMYz/ATBRVUOfpHklma6qiaHXsRR4Lg7zXBzmuTjszXQu+ni3T4DbgZ1HC3+SM0bjSLJ+NO9LXeeWJC1MH+/2uRD4CPB0ku2j174AnAVQVbcCVwKfSXIQ+DGwqfq63yRJOm6d419V3wMyz5ibgZu7zjWQzUMvYAnxXBzmuTjMc3HYm+Zc9PYLX0nSm4df7yBJDTL+R5FkQ5JdSXYnuX7o9QwpyZYkLyR5Zui1DOlYvsqkFUlOTPJvo8/u7EjyZ0OvaWhJliX59yT3Db2WY2H8x0iyDLgFuBQ4D7gqyXnDrmpQdwAbhl7EEvCzrzJ5F3ABcE3D/10cAC6uqt8Czgc2JLlg4DUN7ToOfcPBm4LxH289sLuqnquqV4G7gY0Dr2kwVfUwsG/odQzNrzI5rA7ZP9pcMXo0+wvEJGuA3wO+NvRajpXxH2818Pys7Rka/Z9c483zVSZNGN3m2A68ADxYVc2eC+CvgT8Bfjr0Qo6V8R9v3FtXm72q0c8bfZXJvcBnq+qVodczlKr6SVWdD6wB1if5jaHXNIQklwMvVNXjQ6/leBj/8WaAtbO21wB7BlqLlpDRV5ncC3xj7ndYtaqq/hf4Du3+XuhC4IrR19bcDVyc5O+GXdL8jP94jwHrkpyT5ARgEzA18Jo0sGP5KpNWJDk9yamj578I/A7wH8OuahhVdUNVramqsznUioeq6g8HXta8jP8YVXUQuBZ4gEO/1PtWVe0YdlXDSXIX8K/AuUlmknxy6DUN5GdfZXLxrH+V7rKhFzWQM4FtSZ7i0MXSg1X1pniLow7xE76S1CCv/CWpQcZfkhpk/CWpQcZfkhpk/CWpQcZfkhpk/CWpQcZfkhr0//mgRC4rTnTbAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"# Example of label smoothing.\\n\",\n    \"crit = LabelSmoothing(5, 0, 0.4)\\n\",\n    \"predict = torch.FloatTensor([[0, 0.2, 0.7, 0.1, 0],\\n\",\n    \"                             [0, 0.2, 0.7, 0.1, 0], \\n\",\n    \"                             [0, 0.2, 0.7, 0.1, 0]])\\n\",\n    \"v = crit(Variable(predict.log()), \\n\",\n    \"         Variable(torch.LongTensor([2, 1, 0])))\\n\",\n    \"\\n\",\n    \"# Show the target distributions expected by the system.\\n\",\n    \"plt.imshow(crit.true_dist)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[<matplotlib.lines.Line2D at 0x7f5ab02ec2e8>]\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    },\n    {\n     \"data\": {\n      \"image/png\": \"iVBORw0KGgoAAAANSUhEUgAAAXcAAAD9CAYAAABHnDf0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADl0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uIDMuMC4zLCBodHRwOi8vbWF0cGxvdGxpYi5vcmcvnQurowAAGmBJREFUeJzt3X2QXNV55/Hv0+8zPTNImpGQrHdsYSGwE2AKsL0kBOM1kF1Y1yaOVE7spBy03jVxdu3aLVzZwl62diuJU5s1FeKYxY5tKoHFjivWOrLlFMFlOzEY8RKQBIKxAGmQhN7fZjTT093P/nFvz/S0umdaUo9a9/bvU0x139uHnqd1pd+cOffcc83dERGReEm0uwAREWk9hbuISAwp3EVEYkjhLiISQwp3EZEYUriLiMTQrOFuZl81swNmtq3B62Zm95vZkJm9YGbXtL5MERE5G8303L8G3DrD67cBa8KvjcCXzr8sERE5H7OGu7v/CDgyQ5M7gW944ElgnpktaVWBIiJy9lox5r4U2FO1PRzuExGRNkm14D2szr66axqY2UaCoRvy+fy1a9eubcG3FxHpHM8888whd184W7tWhPswsLxqexmwt15Dd38QeBBgcHDQt27d2oJvLyLSOczsjWbatWJYZhPw0XDWzA3AcXff14L3FRGRczRrz93MHgFuAgbMbBj4HJAGcPe/ADYDtwNDwCjwO3NVrIiINGfWcHf3DbO87sAnW1aRiIicN12hKiISQwp3EZEYUriLiMSQwl1EJIYiF+5Pv36EP9myk2Kp3O5SREQuWpEL9+d3H+PPnhji9ESp3aWIiFy0IhfuuXRQ8tiEeu4iIo1EMNyTAIyp5y4i0pDCXUQkhiIX7l1huGvMXUSksciF+1TPXWPuIiKNRC7cuzJByeq5i4g0Frlwz6Y05i4iMpvIhXtXRuEuIjKb6IV75YRqQeEuItJI5MJdUyFFRGYXuXCfmgqp2TIiIo1ELtyzqcryA+q5i4g0ErlwTySMbCqhcBcRmUHkwh2CcXeFu4hIY5EM9650UhcxiYjMIJLhnksntPyAiMgMIhru6rmLiMwksuGuMXcRkcYiGe5dCncRkRlFM9wzGpYREZlJJMNdJ1RFRGYW0XBPauEwEZEZRDbcx4sKdxGRRiIZ7l3quYuIzCiS4Z5LJxgrlnH3dpciInJRimS4d6WTlMrOREnhLiJSTyTDffKGHRp3FxGpq6lwN7NbzWynmQ2Z2T11Xl9hZk+Y2XNm9oKZ3d76UqdMhrvG3UVE6po13M0sCTwA3AasAzaY2bqaZv8VeMzdrwbWA3/e6kKr5SbvxqRwFxGpp5me+3XAkLvvcvcC8ChwZ00bB/rC55cAe1tX4pm6Ju+jqguZRETqSTXRZimwp2p7GLi+ps3ngR+Y2e8BeeCWllTXQFcm+JmknruISH3N9Nytzr7aaSobgK+5+zLgduBhMzvjvc1so5ltNbOtBw8ePPtqQ7lUpeeucBcRqaeZcB8GlldtL+PMYZePA48BuPtPgRwwUPtG7v6guw+6++DChQvPrWIgl9GYu4jITJoJ96eBNWa22swyBCdMN9W02Q28H8DMriAI93Pvms+i0nMfV7iLiNQ1a7i7exG4G9gCvEQwK2a7md1nZneEzT4D3GVm/ww8Avy2z+Hlo13quYuIzKiZE6q4+2Zgc82+e6ue7wDe19rSGsulg59Jmi0jIlJfJK9QrUyF1OJhIiL1RTLctfyAiMjMIhnu2VQ4LKOeu4hIXZEMdzMjl07ohKqISAORDHcIxt11QlVEpL5Ih7t67iIi9UU23HPppJYfEBFpQOEuIhJDEQ73hMbcRUQaiGy4d2U05i4i0khkwz2X0rCMiEgj0Q139dxFRBqKbrinkrpCVUSkgciGe1cmwVhRJ1RFROqJbLjnUkmtCiki0kBkw70rk2SsWGIO7wkiIhJZkQ33XDqJO4xraEZE5AyRDneAcV3IJCJyhsiG++TdmDQdUkTkDJEN96n7qCrcRURqRTbc1XMXEWkssuE+eR9VhbuIyBkiH+7quYuInCnC4a4xdxGRRiIb7l2ZyrCMpkKKiNSKbLjnUuGwjJYgEBE5Q2TDfbLnXlS4i4jUimy4q+cuItJYdMM9E5SutWVERM4U2XDPJBMkTD13EZF6IhvuZkYurfuoiojUE9lwh2AJAl3EJCJypqbC3cxuNbOdZjZkZvc0aPNhM9thZtvN7K9bW2Z9Qc9dY+4iIrVSszUwsyTwAPABYBh42sw2ufuOqjZrgM8C73P3o2a2aK4KrpZLJzQsIyJSRzM99+uAIXff5e4F4FHgzpo2dwEPuPtRAHc/0Noy68tpWEZEpK5mwn0psKdqezjcV+1y4HIz+0cze9LMbm1VgTPp0glVEZG6Zh2WAazOvtq7UqeANcBNwDLgx2Z2lbsfm/ZGZhuBjQArVqw462Jr5dJJRgrF834fEZG4aabnPgwsr9peBuyt0+Y77j7h7q8BOwnCfhp3f9DdB919cOHCheda8ySdUBURqa+ZcH8aWGNmq80sA6wHNtW0+VvgVwDMbIBgmGZXKwutRydURUTqmzXc3b0I3A1sAV4CHnP37WZ2n5ndETbbAhw2sx3AE8B/dvfDc1V0hcbcRUTqa2bMHXffDGyu2Xdv1XMHPh1+XTBdGc2WERGpJ9JXqGr5ARGR+mIQ7mXK5drJOyIinS3i4a5lf0VE6ol0uHelK/dR1dCMiEi1SId7Lgx3nVQVEZku0uHeHd5HdVQ37BARmSbS4T6vOwPA0dFCmysREbm4RDrc+/NBuB8+pXAXEakW6XBfEIb7kRGFu4hItZiE+3ibKxERubhEOtxz6ST5TJLD6rmLiEwT6XAHWNCT0bCMiEiN6Id7PqtwFxGpEflw789nNFtGRKRG5MN9QT6jee4iIjUiH+79+QyHRwoES8qLiAjEINwX5DMUimVGtASBiMikWIQ7wBGNu4uITIp8uPf3hEsQ6EImEZFJkQ/3BfksoCUIRESqRT/cuys9d4W7iEhF9MO9R4uHiYjUiny45zNJMqmEwl1EpErkw93MdJWqiEiNyIc7BNMhteyviMiUGIW7eu4iIhWxCPfKEgQiIhKIRbhr2V8RkeliEe79PRlGCyXGJrS+jIgIxCTcK+vLaGhGRCQQq3DX4mEiIoFYhHt/XouHiYhUi0W4T/bcNSwjIgI0Ge5mdquZ7TSzITO7Z4Z2v2ZmbmaDrStxdv1aGVJEZJpZw93MksADwG3AOmCDma2r064X+BTwVKuLnE1fV4pUwhTuIiKhZnru1wFD7r7L3QvAo8Cdddr9d+CPgbEW1tcUM2O+rlIVEZnUTLgvBfZUbQ+H+yaZ2dXAcnf/bgtrOyu6SlVEZEoz4W519vnki2YJ4E+Bz8z6RmYbzWyrmW09ePBg81U2QevLiIhMaSbch4HlVdvLgL1V273AVcAPzex14AZgU72Tqu7+oLsPuvvgwoULz73qOhTuIiJTmgn3p4E1ZrbazDLAemBT5UV3P+7uA+6+yt1XAU8Cd7j71jmpuIFgTXfNcxcRgSbC3d2LwN3AFuAl4DF3325m95nZHXNdYLMW5LOcGCsyUSq3uxQRkbZLNdPI3TcDm2v23dug7U3nX9bZq9xL9ehIgUV9uXaUICJy0YjFFapQvQSBxt1FRGIT7gM9wVWqB09q3F1EJDbhvmJBNwBvHB5pcyUiIu0Xm3Bf1Jsll07w+uHRdpciItJ2sQn3RMJY1Z/n9UPquYuIxCbcAVb2d/O6hmVEROIV7qsG8uw5cppS2WdvLCISY7EK99X9eQqlMnuPnW53KSIibRWrcF/ZnwfQ0IyIdLxYhfvqgUq4a8aMiHS2WIX75HRIzZgRkQ4Xq3CvTIfUhUwi0uliFe4QTId8TT13EelwsQt3TYcUEYljuGs6pIhIPMMd4A3NmBGRDha/cB8IVod8TSdVRaSDxS7cL+3NkUsneEMnVUWkg8Uu3BMJY+WCvK5SFZGOFrtwh2BoRlepikgni2e49+fZfXhU0yFFpGPFM9wHgumQ+45rOqSIdKZYhvvK/mDGzOuHNDQjIp0pluH+jkU9ALy8/0SbKxERaY9Yhvui3hxL53Xx3O5j7S5FRKQtYhnuANesnM+zu4+2uwwRkbaIb7ivmMe+42M6qSoiHSnG4T4fgGff0NCMiHSe2Ib7FUv6yKYSGpoRkY4U23DPpBK8a+klCncR6UixDXcITqpuf/ME48VSu0sREbmg4h3uK+ZRKJXZvlfz3UWkszQV7mZ2q5ntNLMhM7unzuufNrMdZvaCmT1uZitbX+rZmzqpqqEZEekss4a7mSWBB4DbgHXABjNbV9PsOWDQ3d8NfAv441YXei4W9eliJhHpTM303K8Dhtx9l7sXgEeBO6sbuPsT7l5ZyOVJYFlryzx3uphJRDpRM+G+FNhTtT0c7mvk48D3zqeoVtLFTCLSiZoJd6uzr+5C6Wb2m8Ag8IUGr280s61mtvXgwYPNV3kedDGTiHSiZsJ9GFhetb0M2FvbyMxuAf4AuMPdx+u9kbs/6O6D7j64cOHCc6n3rF2xpI+ebIofv3phfpiIiFwMmgn3p4E1ZrbazDLAemBTdQMzuxr4MkGwH2h9mecuk0rwK2sX8YMdb+nOTCLSMWYNd3cvAncDW4CXgMfcfbuZ3Wdmd4TNvgD0AN80s+fNbFODt2uL265azJGRAj977Ui7SxERuSBSzTRy983A5pp991Y9v6XFdbXUTe9cSDaV4Pvb9vGet/e3uxwRkTkX6ytUK7ozKX758oVs2f4WZQ3NiEgH6IhwB7jtXYvZf2KM54c1a0ZE4q9jwv3mtZeSThpbtu1vdykiInOuY8L9kq407337AN/bth93Dc2ISLx1TLhDMGtm95FRduzTKpEiEm8dFe4fWHcpCYO/e2Ffu0sREZlTHRXu/T1Zbl67iEef3sPYhG7gISLx1VHhDvC7N17GkZEC3372zXaXIiIyZzou3K9fvYCrlvbx0E92ac67iMRWx4W7mXHXjZex6+AIT+y8qJbBERFpmY4Ld4Db37WEJZfkeOjHr7W7FBGROdGR4Z5OJvjt967ip7sOs+3N4+0uR0Sk5Toy3AHWX7eCfCbJn/9wqN2liIi0XMeG+yVdae76pcvY/OJ+/mnoULvLERFpqY4Nd4BP/PLbWbGgm3s3badQLLe7HBGRlunocM+lk3z+jnUMHTjFX/6jTq6KSHx0dLhDsFrkLVcs4ouPv8q+46fbXY6ISEt0fLgDfO5fX0mp7HzuO9u1YqSIxILCHVi+oJvP/MvL+cGOtzT3XURiQeEeuuvGy7jtqsX84fdf5p9+rtkzIhJtCveQmfGFX/8FVvV383t//Rx7j2n8XUSiS+FepSeb4su/Nch4scy/e/gZjp+eaHdJIiLnROFe4x2Lerh/wy/y8v4TfPQrTyngRSSSFO513Lz2Ur70kWt5ad9JfvOhpzg2Wmh3SSIiZ0Xh3sAt6y7ly791LTv3n2TD/3mK4aOj7S5JRCLK3RktFDl4cpw3Do9wfHTuRwSsXfO6BwcHfevWrW353mfjR68c5JN/9SyppHH/hqu5cc3CdpckInOsWCozMl7iVKHI6HiRU+NFRgul8LHIqfESo+NFRsbD54Uz24yMlxgJ940UilRH7f/40FV85PqV51SbmT3j7oOztlO4z+61QyN84uFneOXAST59y+X8+5veTiqpX3pELhblsjM6UQrDtsipseLk85EwjEfGq/aNB+F7anx6u9Fw33iTa02ZQT6TIp9Nks+k6A4f89kU3ZkkPdkU3ZXXsynymeDx6hXzWT2QP6fPqnBvsdFCkc9++0W+8/xerlrax//80Lt497J57S5LJLKCoYogTE+OTYXuyapgPlUVxqfGipwcn/5aJaRre8aNTAvjbIrebBDE+WwqDOIgkPM1zyuvTT7PBq91pZOY2dz/YU37DAr3lnN3Nr+4n8//v+0cPjXOR9+zik+9fw0L8pl2lyZywRRL5WmBfKoqeE+NFTk1PjFte6RQ1bb6sclATict7PUGwdqTCx+zQUj3ZNP0ZJP05KaCuNJ7nmozFdgXOoxbrdlwT12IYuLCzPjVdy/hxssH+ML3d/L1n77ON7fu4WPvXcVdN17GfIW8XMTKZedUIQziMIRPjE3fPjk2FcQnxyamBffJsO3pidKs38sMejKpycDtDQN5cV+O3qoQrn3ek02TzybpDR/z2RS5dPIC/OnEj3ru5+GVt05y/+Ov8ncv7qM7neTfXruMj1y/kncu7m13aRIzhWKZk2MTk8F7YmwqiE+OTVQFcBDYQRBPVAV18Dgbs+Bivt5sit5cerKX3JsLgzgztb83Vx3KlefBa93pJIlEtHvIFysNy1xAr7x1kr/44c/57ov7KBTLDK6cz4euWcoHr1zMQE+23eVJm41NlCZDuLpXfGKsyInT0/dVB/aJqufNnODLpRP0ZNP0VYI3l6I3m556ngte66kJ7r7c1HY+BsMWcadwb4OjIwX+5tlhHvnZbn5+cISEwXWrF/D+tZdy4+UDvPPSXv3DiRB3Z7xYnhbM1c9PVD1WhjZOjp8Z0M3c5SufSdKbS0/2kCth25dL0Te5P13Viw729VX1otOawdURWhruZnYr8EUgCTzk7n9Y83oW+AZwLXAY+A13f32m94xjuFe4OzvfOsnmF/fzvRf38eqBUwAM9GS5/rIFXL18HlevmM+Vb+vTeOIcKZc9nAI3PWjrjS9XQvpUnXCeKM3+7yOfSdLXlZ4WutVB3Vcd2tl03XBOaghDmtSycDezJPAK8AFgGHga2ODuO6ra/Afg3e7+CTNbD3zI3X9jpveNc7jX2nvsND8ZOsRPXj3EM28c5c1wxcmEwaqBPGsX97JmUS+rB/KsGsizckE387rTHdfLd3dOT1TmHpemzUmunpUxMj59Slz1TIzqGRyzSVTGl6f1iM8M6L4GoV35/xTMciG1crbMdcCQu+8K3/hR4E5gR1WbO4HPh8+/BfyZmZnrtkYAvG1eFx8eXM6HB5cDcODEGM/tOcb2vSfYuf8E2948wfe27Z82LawrnWTJJTmWzMsx0JNlYU+W/p4s87vTzOtOBz3FbDhOmk3SlU6SSyfn7FfzctkplMqMT5QZL5WCx2KZsYkS48USYxPB87GJMqcnSsFXocjpQpnRiSKnCyVGCyVOh1frjYZzk0cLja/ia6QyEyNfMy1ucV9ucqpcby4dnhSc2q4NcI0vS5w1E+5LgT1V28PA9Y3auHvRzI4D/YDuelHHor4cH7xyMR+8cvHkvrGJEsNHR3nt0Ci7j4yy79hp9h0fY9/x0zy3+xiHTo0zWph9CloqYWRSCTKpBOlkgnTCSCSMVMJImEHwH2ZG2R0cyu6UHUplp+xOsewUS2WKJWeiXGai5JTK5/5zOpNK0JVOks8k6cokJ6/YW9yXo6veVXzZFD3hlX6V+cn5qmlzmokhMrtmwr3ev6Laf+nNtMHMNgIbAVasWNHEt+4cuXSSdyzq5R2LGk+jHC0UOX56gmOjwdfkFX3jRcYngl7x6YkShWKZiVKZQhjQpXIQ2GX34KA4OI6ZYUDCjGTCMIOkGalkglTCSCWNTDL8IZFMTP7QyKQS5FIJsukkmWSCXDpBLvzNoStd+S0iQVcmeK6lGkQuvGbCfRhYXrW9DNjboM2wmaWAS4AjtW/k7g8CD0Iw5n4uBXey7kzQw11ySVe7SxGRi1wzXaqngTVmttrMMsB6YFNNm03Ax8Lnvwb8g8bbRUTaZ9aeeziGfjewhWAq5FfdfbuZ3QdsdfdNwFeAh81siKDHvn4uixYRkZk1tbaMu28GNtfsu7fq+Rjw660tTUREzpXOdImIxJDCXUQkhhTuIiIxpHAXEYkhhbuISAy1bclfMzsIvHEW/8sAnbmcgT535+nUz67P3ZyV7r5wtkZtC/ezZWZbm1kJLW70uTtPp352fe7W0rCMiEgMKdxFRGIoSuH+YLsLaBN97s7TqZ9dn7uFIjPmLiIizYtSz11ERJoUiXA3s1vNbKeZDZnZPe2uZ66Y2XIze8LMXjKz7Wb2++H+BWb292b2avg4v921zgUzS5rZc2b23XB7tZk9FX7u/xsuOR0rZjbPzL5lZi+Hx/09nXC8zew/hX/Ht5nZI2aWi+PxNrOvmtkBM9tWta/u8bXA/WHOvWBm15zP977owz28QfcDwG3AOmCDma1rb1Vzpgh8xt2vAG4APhl+1nuAx919DfB4uB1Hvw+8VLX9R8Cfhp/7KPDxtlQ1t74IfN/d1wK/QPD5Y328zWwp8Clg0N2vIlhKfD3xPN5fA26t2dfo+N4GrAm/NgJfOp9vfNGHO1U36Hb3AlC5QXfsuPs+d382fH6S4B/6UoLP+/Ww2deBf9OeCueOmS0DfhV4KNw24GaCG65DDD+3mfUBv0RwPwTcveDux+iA402w3HhXeOe2bmAfMTze7v4jzrwrXaPjeyfwDQ88CcwzsyXn+r2jEO71btC9tE21XDBmtgq4GngKuNTd90HwAwBY1L7K5sz/Bv4LUA63+4Fj7l4Mt+N43C8DDgJ/GQ5HPWRmeWJ+vN39TeBPgN0EoX4ceIb4H++KRse3pVkXhXBv6ubbcWJmPcDfAP/R3U+0u565Zmb/Cjjg7s9U767TNG7HPQVcA3zJ3a8GRojZEEw94RjzncBq4G1AnmBIolbcjvdsWvp3Pgrh3swNumPDzNIEwf5X7v7tcPdblV/PwscD7apvjrwPuMPMXicYdruZoCc/L/y1HeJ53IeBYXd/Ktz+FkHYx/143wK85u4H3X0C+DbwXuJ/vCsaHd+WZl0Uwr2ZG3THQjjO/BXgJXf/X1UvVd+A/GPAdy50bXPJ3T/r7svcfRXB8f0Hd/8I8ATBDdchnp97P7DHzN4Z7no/sIOYH2+C4ZgbzKw7/Dtf+dyxPt5VGh3fTcBHw1kzNwDHK8M358TdL/ov4HbgFeDnwB+0u545/Jz/guDXsBeA58Ov2wnGnx8HXg0fF7S71jn8M7gJ+G74/DLgZ8AQ8E0g2+765uDz/iKwNTzmfwvM74TjDfw34GVgG/AwkI3j8QYeITivMEHQM/94o+NLMCzzQJhzLxLMJjrn760rVEVEYigKwzIiInKWFO4iIjGkcBcRiSGFu4hIDCncRURiSOEuIhJDCncRkRhSuIuIxND/B40THZ/9zeSbAAAAAElFTkSuQmCC\\n\",\n      \"text/plain\": [\n       \"<Figure size 432x288 with 1 Axes>\"\n      ]\n     },\n     \"metadata\": {\n      \"needs_background\": \"light\"\n     },\n     \"output_type\": \"display_data\"\n    }\n   ],\n   \"source\": [\n    \"crit = LabelSmoothing(5, 0, 0.1)\\n\",\n    \"def loss(x):\\n\",\n    \"    d = x + 3 * 1\\n\",\n    \"    predict = torch.FloatTensor([[0, x / d, 1 / d, 1 / d, 1 / d],])\\n\",\n    \"    #print(predict)\\n\",\n    \"    return crit(Variable(predict.log()), Variable(torch.LongTensor([1]))).item()\\n\",\n    \"plt.plot(np.arange(1, 100), [loss(x) for x in range(1, 100)])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 用一个小例子测试一下\\n\",\n    \"- 构造数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"## 数据生成\\n\",\n    \"def data_gen(V, batch, nbatches):\\n\",\n    \"    \\\"Generate random data for a src-tgt copy task.\\\"\\n\",\n    \"    for i in range(nbatches):\\n\",\n    \"        data = torch.from_numpy(np.random.randint(1, V, size=(batch, 10)))\\n\",\n    \"        data[:, 0] = 1\\n\",\n    \"        src = Variable(data, requires_grad=False)\\n\",\n    \"        tgt = Variable(data, requires_grad=False)\\n\",\n    \"        yield Batch(src, tgt, 0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"<generator object data_gen at 0x7f5aa03dcca8>\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"data_gen(11, 30,20)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class SimpleLossCompute(object):\\n\",\n    \"    \\\"A simple loss compute and train function.\\\"\\n\",\n    \"    def __init__(self, generator, criterion, opt=None):\\n\",\n    \"        self.generator = generator\\n\",\n    \"        self.criterion = criterion\\n\",\n    \"        self.opt = opt\\n\",\n    \"\\n\",\n    \"    def __call__(self, x, y, norm):\\n\",\n    \"        x = self.generator(x)\\n\",\n    \"        loss = self.criterion(x.contiguous().view(-1, x.size(-1)),\\n\",\n    \"                              y.contiguous().view(-1)) / norm\\n\",\n    \"        loss.backward()\\n\",\n    \"        if self.opt is not None:\\n\",\n    \"            self.opt.step()\\n\",\n    \"            self.opt.optimizer.zero_grad()\\n\",\n    \"        return loss * norm.float()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 贪婪解码\\n\",\n    \"# Train the simple copy task.\\n\",\n    \"V = 11\\n\",\n    \"device = torch.device(\\\"cuda:0\\\" if torch.cuda.is_available() else \\\"cpu\\\")\\n\",\n    \"criterion = LabelSmoothing(size=V, padding_idx=0, smoothing=0.1)\\n\",\n    \"\\n\",\n    \"model = make_model(V, V, N=2)\\n\",\n    \"model = model.to(device)\\n\",\n    \"model_opt = NoamOpt(model.src_embed[0].d_model, 1, 400,\\n\",\n    \"        torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# data = torch.rand(30,20,)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# s1 = data[9]\\n\",\n    \"# print(s1.src[5], \\n\",\n    \"#       s1.trg[5], # \\n\",\n    \"#       s1.trg_y[5], \\n\",\n    \"#       s1.src_mask.size(),\\n\",\n    \"#       sep=\\\"\\\\n\\\")\\n\",\n    \"# print(s1.trg_mask[5])\\n\",\n    \"# print(\\\"ntokens\\\", s1.ntokens)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[1, 0, 0, 0, 0, 0, 0, 0],\\n\",\n       \"         [1, 1, 0, 0, 0, 0, 0, 0],\\n\",\n       \"         [1, 1, 1, 0, 0, 0, 0, 0],\\n\",\n       \"         [1, 1, 1, 1, 0, 0, 0, 0],\\n\",\n       \"         [1, 1, 1, 1, 1, 0, 0, 0],\\n\",\n       \"         [1, 1, 1, 1, 1, 1, 0, 0],\\n\",\n       \"         [1, 1, 1, 1, 1, 1, 1, 0],\\n\",\n       \"         [1, 1, 1, 1, 1, 1, 1, 1]]], dtype=torch.uint8)\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"mask = subsequent_mask(8)\\n\",\n    \"# mask = mask.unsqueeze(1)\\n\",\n    \"mask\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([1, 8, 8])\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"score = torch.randn(1,8, 8)\\n\",\n    \"score.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[-1.9573e-01, -1.0000e+09, -1.0000e+09, -1.0000e+09, -1.0000e+09,\\n\",\n       \"          -1.0000e+09, -1.0000e+09, -1.0000e+09],\\n\",\n       \"         [ 6.8826e-01,  2.0662e+00, -1.0000e+09, -1.0000e+09, -1.0000e+09,\\n\",\n       \"          -1.0000e+09, -1.0000e+09, -1.0000e+09],\\n\",\n       \"         [ 6.6923e-02,  8.2864e-01,  1.0869e+00, -1.0000e+09, -1.0000e+09,\\n\",\n       \"          -1.0000e+09, -1.0000e+09, -1.0000e+09],\\n\",\n       \"         [ 7.9477e-01,  2.0423e-01,  5.2164e-01,  7.2249e-01, -1.0000e+09,\\n\",\n       \"          -1.0000e+09, -1.0000e+09, -1.0000e+09],\\n\",\n       \"         [ 4.8070e-01, -1.5997e+00, -2.7634e-01, -1.1522e+00, -2.1877e+00,\\n\",\n       \"          -1.0000e+09, -1.0000e+09, -1.0000e+09],\\n\",\n       \"         [ 1.6565e+00, -1.3158e+00, -4.1631e-01,  3.1523e-01, -6.0585e-01,\\n\",\n       \"          -1.4173e+00, -1.0000e+09, -1.0000e+09],\\n\",\n       \"         [ 9.1306e-02, -1.9335e+00, -4.0153e-01,  5.5175e-01, -2.2587e+00,\\n\",\n       \"           6.8304e-01, -6.6239e-01, -1.0000e+09],\\n\",\n       \"         [-5.8243e-01,  1.4409e+00,  4.3986e-01,  3.7233e-01, -6.1916e-01,\\n\",\n       \"           3.8241e-01, -9.2507e-01, -5.4309e-01]]])\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"score.masked_fill(mask == 0, -1e9)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# a = (s1.trg != 0).unsqueeze(-2) & Variable(subsequent_mask(9).type_as(s1.trg_mask.data))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# a.size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 27,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Epoch Step: 1 Loss: 2.490279 Tokens per Sec: 1354.205838\\n\",\n      \"Epoch Step: 1 Loss: 1.495896 Tokens per Sec: 6887.282458\\n\",\n      \"1.424284080222801\\n\",\n      \"Epoch Step: 1 Loss: 1.495560 Tokens per Sec: 5311.150413\\n\",\n      \"Epoch Step: 1 Loss: 1.278627 Tokens per Sec: 6867.527062\\n\",\n      \"1.2427716064453125\\n\",\n      \"Epoch Step: 1 Loss: 1.482808 Tokens per Sec: 5263.556517\\n\",\n      \"Epoch Step: 1 Loss: 1.123872 Tokens per Sec: 6872.569972\\n\",\n      \"1.104600558810764\\n\",\n      \"Epoch Step: 1 Loss: 1.792834 Tokens per Sec: 5215.222420\\n\",\n      \"Epoch Step: 1 Loss: 1.022330 Tokens per Sec: 6850.080026\\n\",\n      \"1.0013944272641782\\n\",\n      \"Epoch Step: 1 Loss: 1.010889 Tokens per Sec: 5243.292667\\n\",\n      \"Epoch Step: 1 Loss: 0.776213 Tokens per Sec: 6860.392131\\n\",\n      \"0.8232519870334202\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for epoch in range(5):\\n\",\n    \"    model.train()\\n\",\n    \"    loss_func = SimpleLossCompute(model.generator, criterion, model_opt)\\n\",\n    \"    run_epoch(data_gen(V, 30, 20), model, loss_func, device)\\n\",\n    \"    model.eval()\\n\",\n    \"    print(run_epoch(data_gen(V, 30, 5), model, \\n\",\n    \"                  SimpleLossCompute(model.generator, criterion, None), device))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# https://www.cnblogs.com/shiyublog/p/10909009.html#_label5\\n\",\n    \"# src = [\\\"美中两国可能很快达成一个贸易协议。\\\"]\\n\",\n    \"# trg = [\\\"The United States and China may soon reach a trade agreement.\\\"]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 预测\\n\",\n    \"\\n\",\n    \"- 最后的 linear layer 将 decoder 的输出扩展到与 vocabulary size 一样的维度上。经过 softmax 后，选择概率最高的一个 word 作为预测结果。\\n\",\n    \"\\n\",\n    \"- 假设我们有一个已经训练好的网络，在做预测时，步骤如下：\\n\",\n    \"\\n\",\n    \"    - 给 decoder 输入 encoder 对整个句子 embedding 的结果 和一个特殊的开始符号 </s>。decoder 将产生预测，在我们的例子中应该是 ”I”。\\n\",\n    \"    - 给 decoder 输入 encoder 的 embedding 结果和 “</s>I”，在这一步 decoder 应该产生预测 “Love”。\\n\",\n    \"    - 给 decoder 输入 encoder 的 embedding 结果和 “</s>I Love”，在这一步 decoder 应该产生预测 “China”。\\n\",\n    \"    - 给 decoder 输入 encoder 的 embedding 结果和 “</s>I Love China”, decoder应该生成句子结尾的标记，decoder 应该输出 ”</eos>”。\\n\",\n    \"然后 decoder 生成了 </eos>，翻译完成。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P006TheAnnotatedTransformer/test.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"## transformer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn.functional as F\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def attention(query, key, value, mask=None, dropout=None):\\n\",\n    \"    \\\"计算Attention即点乘V\\\"\\n\",\n    \"    d_k = query.size(-1)\\n\",\n    \"    # [B, h, L, L]\\n\",\n    \"    scores = torch.matmul(query, key.transpose(-2, -1)) \\\\\\n\",\n    \"             / math.sqrt(d_k)\\n\",\n    \"    if mask is not None:\\n\",\n    \"        scores = scores.masked_fill(mask == 0, -1e9)\\n\",\n    \"    p_attn = F.softmax(scores, dim = -1)\\n\",\n    \"    if dropout is not None:\\n\",\n    \"        p_attn = dropout(p_attn)\\n\",\n    \"    return torch.matmul(p_attn, value), p_attn\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 42,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"key = torch.tensor(\\n\",\n    \"[[1,2,3],\\n\",\n    \"[1,1,1]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 43,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1, 2, 3],\\n\",\n       \"        [1, 1, 1]])\"\n      ]\n     },\n     \"execution_count\": 43,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"key\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1, 1],\\n\",\n       \"        [2, 1],\\n\",\n       \"        [3, 1]])\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"key.transpose(-2, -1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 45,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[14,  6],\\n\",\n       \"        [ 6,  3]])\"\n      ]\n     },\n     \"execution_count\": 45,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"scores = torch.matmul(key,key.transpose(-2, -1))\\n\",\n    \"scores\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 46,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[9.9966e-01, 3.3535e-04],\\n\",\n       \"        [9.5257e-01, 4.7426e-02]])\"\n      ]\n     },\n     \"execution_count\": 46,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"att = F.softmax(scores.float(), dim = -1)\\n\",\n    \"att\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 47,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1, 2, 3],\\n\",\n       \"        [1, 1, 1]])\"\n      ]\n     },\n     \"execution_count\": 47,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"key\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 48,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1.0000, 1.9997, 2.9993],\\n\",\n       \"        [1.0000, 1.9526, 2.9051]])\"\n      ]\n     },\n     \"execution_count\": 48,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.matmul(att, key.float())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 下三角\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 49,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def mask_seq(size):\\n\",\n    \"    mask_shape = (1, size, size)\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 50,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"x = np.ones((1, 5, 5))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 51,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[[1., 1., 1., 1., 1.],\\n\",\n       \"        [1., 1., 1., 1., 1.],\\n\",\n       \"        [1., 1., 1., 1., 1.],\\n\",\n       \"        [1., 1., 1., 1., 1.],\\n\",\n       \"        [1., 1., 1., 1., 1.]]])\"\n      ]\n     },\n     \"execution_count\": 51,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([[[0, 1, 1, 1, 1],\\n\",\n       \"        [0, 0, 1, 1, 1],\\n\",\n       \"        [0, 0, 0, 1, 1],\\n\",\n       \"        [0, 0, 0, 0, 1],\\n\",\n       \"        [0, 0, 0, 0, 0]]], dtype=uint8)\"\n      ]\n     },\n     \"execution_count\": 57,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"shang = np.triu(x, k=1).astype('uint8')\\n\",\n    \"shang\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[1.2000, 0.0000, 0.0000, 0.0000, 0.0000],\\n\",\n       \"         [1.2000, 1.2000, 0.0000, 0.0000, 0.0000],\\n\",\n       \"         [1.2000, 1.2000, 1.2000, 0.0000, 0.0000],\\n\",\n       \"         [1.2000, 1.2000, 1.2000, 1.2000, 0.0000],\\n\",\n       \"         [1.2000, 1.2000, 1.2000, 1.2000, 1.2000]]])\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.from_numpy(shang==0) *1.2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/make_finished_files.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"## 把数据处理成模型需要的文件格式\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import os\\n\",\n    \"import struct\\n\",\n    \"import collections\\n\",\n    \"from tensorflow.core.example import example_pb2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 经过分词处理后的训练数据与测试数据文件\\n\",\n    \"TRAIN_FILE = \\\"./data/weibo_news/train_art_summ_prep.txt\\\"\\n\",\n    \"VAL_FILE = \\\"./data/weibo_news/val_art_summ_prep.txt\\\"\\n\",\n    \"\\n\",\n    \"# 文本起始与结束标志\\n\",\n    \"SENTENCE_START = '<s>'\\n\",\n    \"SENTENCE_END = '</s>'\\n\",\n    \"\\n\",\n    \"VOCAB_SIZE = 50_000  # 词汇表大小\\n\",\n    \"CHUNK_SIZE = 1000    # 每个分块example的数量，用于分块的数据\\n\",\n    \"\\n\",\n    \"# tf模型数据文件存放目录\\n\",\n    \"FINISHED_FILE_DIR = './data/weibo_news/finished_files'\\n\",\n    \"CHUNKS_DIR = os.path.join(FINISHED_FILE_DIR, 'chunked')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def chunk_file(finished_files_dir, chunks_dir, name, chunk_size):\\n\",\n    \"    \\\"\\\"\\\"构建二进制文件\\\"\\\"\\\"\\n\",\n    \"    in_file = os.path.join(finished_files_dir, '%s.bin' % name)\\n\",\n    \"    print(in_file)\\n\",\n    \"    reader = open(in_file, \\\"rb\\\")\\n\",\n    \"    chunk = 0\\n\",\n    \"    finished = False\\n\",\n    \"    while not finished:\\n\",\n    \"        chunk_fname = os.path.join(chunks_dir, '%s_%03d.bin' % (name, chunk))  # 新的分块\\n\",\n    \"        with open(chunk_fname, 'wb') as writer:\\n\",\n    \"            for _ in range(chunk_size):\\n\",\n    \"                len_bytes = reader.read(8)\\n\",\n    \"                if not len_bytes:\\n\",\n    \"                    finished = True\\n\",\n    \"                    break\\n\",\n    \"                str_len = struct.unpack('q', len_bytes)[0]\\n\",\n    \"                example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0]\\n\",\n    \"                writer.write(struct.pack('q', str_len))\\n\",\n    \"                writer.write(struct.pack('%ds' % str_len, example_str))\\n\",\n    \"            chunk += 1\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def chunk_all():\\n\",\n    \"    # 创建一个文件夹来保存分块\\n\",\n    \"    if not os.path.isdir(CHUNKS_DIR):\\n\",\n    \"        os.mkdir(CHUNKS_DIR)\\n\",\n    \"    # 将数据分块\\n\",\n    \"    for name in ['train', 'val']:\\n\",\n    \"        print(\\\"Splitting %s data into chunks...\\\" % name)\\n\",\n    \"        chunk_file(FINISHED_FILE_DIR, CHUNKS_DIR, name, CHUNK_SIZE)\\n\",\n    \"    print(\\\"Saved chunked data in %s\\\" % CHUNKS_DIR)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def read_text_file(text_file):\\n\",\n    \"    \\\"\\\"\\\"从预处理好的文件中加载数据\\\"\\\"\\\"\\n\",\n    \"    lines = []\\n\",\n    \"    with open(text_file, \\\"r\\\", encoding='utf-8') as f:\\n\",\n    \"        for line in f:\\n\",\n    \"            lines.append(line.strip())\\n\",\n    \"    return lines\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def write_to_bin(input_file, out_file, makevocab=False):\\n\",\n    \"    \\\"\\\"\\\"生成模型需要的文件\\\"\\\"\\\"\\n\",\n    \"    if makevocab:\\n\",\n    \"        vocab_counter = collections.Counter()\\n\",\n    \"\\n\",\n    \"    with open(out_file, 'wb') as writer:\\n\",\n    \"        # 读取输入的文本文件，使偶数行成为article，奇数行成为abstract（行号从0开始）\\n\",\n    \"        lines = read_text_file(input_file)\\n\",\n    \"        for i, new_line in enumerate(lines):\\n\",\n    \"            if i % 2 == 0:\\n\",\n    \"                article = lines[i]\\n\",\n    \"            if i % 2 != 0:\\n\",\n    \"                abstract = \\\"%s %s %s\\\" % (SENTENCE_START, lines[i], SENTENCE_END)\\n\",\n    \"\\n\",\n    \"                # 写入tf.Example\\n\",\n    \"                tf_example = example_pb2.Example()\\n\",\n    \"                tf_example.features.feature['article'].bytes_list.value.extend([bytes(article, encoding='utf-8')])\\n\",\n    \"                tf_example.features.feature['abstract'].bytes_list.value.extend([bytes(abstract, encoding='utf-8')])\\n\",\n    \"                tf_example_str = tf_example.SerializeToString()\\n\",\n    \"                str_len = len(tf_example_str)\\n\",\n    \"                writer.write(struct.pack('q', str_len))\\n\",\n    \"                writer.write(struct.pack('%ds' % str_len, tf_example_str))\\n\",\n    \"\\n\",\n    \"                # 如果可以，将词典写入文件\\n\",\n    \"                if makevocab:\\n\",\n    \"                    art_tokens = article.split(' ')\\n\",\n    \"                    abs_tokens = abstract.split(' ')\\n\",\n    \"                    abs_tokens = [t for t in abs_tokens if\\n\",\n    \"                                  t not in [SENTENCE_START, SENTENCE_END]]  # 从词典中删除这些符号\\n\",\n    \"                    tokens = art_tokens + abs_tokens\\n\",\n    \"                    tokens = [t.strip() for t in tokens]     # 去掉句子开头结尾的空字符\\n\",\n    \"                    tokens = [t for t in tokens if t != \\\"\\\"]  # 删除空行\\n\",\n    \"                    vocab_counter.update(tokens)\\n\",\n    \"\\n\",\n    \"    print(\\\"Finished writing file %s\\\\n\\\" % out_file)\\n\",\n    \"\\n\",\n    \"    # 将词典写入文件\\n\",\n    \"    if makevocab:\\n\",\n    \"        print(\\\"Writing vocab file...\\\")\\n\",\n    \"        with open(os.path.join(FINISHED_FILE_DIR, \\\"vocab\\\"), 'w', encoding='utf-8') as writer:\\n\",\n    \"            for word, count in vocab_counter.most_common(VOCAB_SIZE):\\n\",\n    \"                writer.write(word + ' ' + str(count) + '\\\\n')\\n\",\n    \"        print(\\\"Finished writing vocab file\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Finished writing file ./data/weibo_news/finished_files/val.bin\\n\",\n      \"\\n\",\n      \"Finished writing file ./data/weibo_news/finished_files/train.bin\\n\",\n      \"\\n\",\n      \"Writing vocab file...\\n\",\n      \"Finished writing vocab file\\n\"\n     ]\n    },\n    {\n     \"ename\": \"TypeError\",\n     \"evalue\": \"chunk_all() missing 1 required positional argument: 'direction'\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mTypeError\\u001b[0m                                 Traceback (most recent call last)\",\n      \"\\u001b[0;32m<ipython-input-4-97fb98050243>\\u001b[0m in \\u001b[0;36m<module>\\u001b[0;34m\\u001b[0m\\n\\u001b[1;32m      4\\u001b[0m \\u001b[0mwrite_to_bin\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mTRAIN_FILE\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mos\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mpath\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mjoin\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mFINISHED_FILE_DIR\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;34m\\\"train.bin\\\"\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0mmakevocab\\u001b[0m\\u001b[0;34m=\\u001b[0m\\u001b[0;32mTrue\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m      5\\u001b[0m \\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m----> 6\\u001b[0;31m \\u001b[0mchunk_all\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\",\n      \"\\u001b[0;31mTypeError\\u001b[0m: chunk_all() missing 1 required positional argument: 'direction'\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"if not os.path.exists(FINISHED_FILE_DIR):\\n\",\n    \"    os.makedirs(FINISHED_FILE_DIR)\\n\",\n    \"write_to_bin(VAL_FILE, os.path.join(FINISHED_FILE_DIR, \\\"val.bin\\\"))\\n\",\n    \"write_to_bin(TRAIN_FILE, os.path.join(FINISHED_FILE_DIR, \\\"train.bin\\\"), makevocab=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Splitting train data into chunks...\\n\",\n      \"./data/weibo_news/finished_files/train.bin\\n\",\n      \"Splitting val data into chunks...\\n\",\n      \"./data/weibo_news/finished_files/val.bin\\n\",\n      \"Saved chunked data in ./data/weibo_news/finished_files/chunked\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"chunk_all()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"## struct tf.exam\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/__init__.py",
    "content": ""
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/attention_decoder.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This file defines the decoder\"\"\"\n\nimport tensorflow as tf\nfrom tensorflow.python.ops import variable_scope\nfrom tensorflow.python.ops import array_ops\nfrom tensorflow.python.ops import nn_ops\nfrom tensorflow.python.ops import math_ops\n\n# Note: this function is based on tf.contrib.legacy_seq2seq_attention_decoder, which is now outdated.\n# In the future, it would make more sense to write variants on the attention mechanism using the new seq2seq library for tensorflow 1.0: https://www.tensorflow.org/api_guides/python/contrib.seq2seq#Attention\ndef attention_decoder(decoder_inputs, initial_state, encoder_states, enc_padding_mask, cell, initial_state_attention=False, pointer_gen=True, use_coverage=False, prev_coverage=None):\n  \"\"\"\n  Args:\n    decoder_inputs: A list of 2D Tensors [batch_size x input_size].\n    initial_state: 2D Tensor [batch_size x cell.state_size].\n    encoder_states: 3D Tensor [batch_size x attn_length x attn_size].\n    enc_padding_mask: 2D Tensor [batch_size x attn_length] containing 1s and 0s; indicates which of the encoder locations are padding (0) or a real token (1).\n    cell: rnn_cell.RNNCell defining the cell function and size.\n    initial_state_attention:\n      Note that this attention decoder passes each decoder input through a linear layer with the previous step's context vector to get a modified version of the input. If initial_state_attention is False, on the first decoder step the \"previous context vector\" is just a zero vector. If initial_state_attention is True, we use initial_state to (re)calculate the previous step's context vector. We set this to False for train/eval mode (because we call attention_decoder once for all decoder steps) and True for decode mode (because we call attention_decoder once for each decoder step).\n    pointer_gen: boolean. If True, calculate the generation probability p_gen for each decoder step.\n    use_coverage: boolean. If True, use coverage mechanism.\n    prev_coverage:\n      If not None, a tensor with shape (batch_size, attn_length). The previous step's coverage vector. This is only not None in decode mode when using coverage.\n\n  Returns:\n    outputs: A list of the same length as decoder_inputs of 2D Tensors of\n      shape [batch_size x cell.output_size]. The output vectors.\n    state: The final state of the decoder. A tensor shape [batch_size x cell.state_size].\n    attn_dists: A list containing tensors of shape (batch_size,attn_length).\n      The attention distributions for each decoder step.\n    p_gens: List of scalars. The values of p_gen for each decoder step. Empty list if pointer_gen=False.\n    coverage: Coverage vector on the last step computed. None if use_coverage=False.\n  \"\"\"\n  with variable_scope.variable_scope(\"attention_decoder\") as scope:\n    batch_size = encoder_states.get_shape()[0].value # if this line fails, it's because the batch size isn't defined\n    attn_size = encoder_states.get_shape()[2].value # if this line fails, it's because the attention length isn't defined\n\n    # Reshape encoder_states (need to insert a dim)\n    encoder_states = tf.expand_dims(encoder_states, axis=2) # now is shape (batch_size, attn_len, 1, attn_size)\n\n    # To calculate attention, we calculate\n    #   v^T tanh(W_h h_i + W_s s_t + b_attn)\n    # where h_i is an encoder state, and s_t a decoder state.\n    # attn_vec_size is the length of the vectors v, b_attn, (W_h h_i) and (W_s s_t).\n    # We set it to be equal to the size of the encoder states.\n    attention_vec_size = attn_size\n\n    # Get the weight matrix W_h and apply it to each encoder state to get (W_h h_i), the encoder features\n    W_h = variable_scope.get_variable(\"W_h\", [1, 1, attn_size, attention_vec_size])\n    encoder_features = nn_ops.conv2d(encoder_states, W_h, [1, 1, 1, 1], \"SAME\") # shape (batch_size,attn_length,1,attention_vec_size)\n\n    # Get the weight vectors v and w_c (w_c is for coverage)\n    v = variable_scope.get_variable(\"v\", [attention_vec_size])\n    if use_coverage:\n      with variable_scope.variable_scope(\"coverage\"):\n        w_c = variable_scope.get_variable(\"w_c\", [1, 1, 1, attention_vec_size])\n\n    if prev_coverage is not None: # for beam search mode with coverage\n      # reshape from (batch_size, attn_length) to (batch_size, attn_len, 1, 1)\n      prev_coverage = tf.expand_dims(tf.expand_dims(prev_coverage,2),3)\n\n    def attention(decoder_state, coverage=None):\n      \"\"\"Calculate the context vector and attention distribution from the decoder state.\n\n      Args:\n        decoder_state: state of the decoder\n        coverage: Optional. Previous timestep's coverage vector, shape (batch_size, attn_len, 1, 1).\n\n      Returns:\n        context_vector: weighted sum of encoder_states\n        attn_dist: attention distribution\n        coverage: new coverage vector. shape (batch_size, attn_len, 1, 1)\n      \"\"\"\n      with variable_scope.variable_scope(\"Attention\"):\n        # Pass the decoder state through a linear layer (this is W_s s_t + b_attn in the paper)\n        decoder_features = linear(decoder_state, attention_vec_size, True) # shape (batch_size, attention_vec_size)\n        decoder_features = tf.expand_dims(tf.expand_dims(decoder_features, 1), 1) # reshape to (batch_size, 1, 1, attention_vec_size)\n\n        def masked_attention(e):\n          \"\"\"Take softmax of e then apply enc_padding_mask and re-normalize\"\"\"\n          attn_dist = nn_ops.softmax(e) # take softmax. shape (batch_size, attn_length)\n          attn_dist *= enc_padding_mask # apply mask\n          masked_sums = tf.reduce_sum(attn_dist, axis=1) # shape (batch_size)\n          return attn_dist / tf.reshape(masked_sums, [-1, 1]) # re-normalize\n\n        if use_coverage and coverage is not None: # non-first step of coverage\n          # Multiply coverage vector by w_c to get coverage_features.\n          coverage_features = nn_ops.conv2d(coverage, w_c, [1, 1, 1, 1], \"SAME\") # c has shape (batch_size, attn_length, 1, attention_vec_size)\n\n          # Calculate v^T tanh(W_h h_i + W_s s_t + w_c c_i^t + b_attn)\n          e = math_ops.reduce_sum(v * math_ops.tanh(encoder_features + decoder_features + coverage_features), [2, 3])  # shape (batch_size,attn_length)\n\n          # Calculate attention distribution\n          attn_dist = masked_attention(e)\n\n          # Update coverage vector\n          coverage += array_ops.reshape(attn_dist, [batch_size, -1, 1, 1])\n        else:\n          # Calculate v^T tanh(W_h h_i + W_s s_t + b_attn)\n          e = math_ops.reduce_sum(v * math_ops.tanh(encoder_features + decoder_features), [2, 3]) # calculate e\n\n          # Calculate attention distribution\n          attn_dist = masked_attention(e)\n\n          if use_coverage: # first step of training\n            coverage = tf.expand_dims(tf.expand_dims(attn_dist,2),2) # initialize coverage\n\n        # Calculate the context vector from attn_dist and encoder_states\n        context_vector = math_ops.reduce_sum(array_ops.reshape(attn_dist, [batch_size, -1, 1, 1]) * encoder_states, [1, 2]) # shape (batch_size, attn_size).\n        context_vector = array_ops.reshape(context_vector, [-1, attn_size])\n\n      return context_vector, attn_dist, coverage\n\n    outputs = []\n    attn_dists = []\n    p_gens = []\n    state = initial_state\n    coverage = prev_coverage # initialize coverage to None or whatever was passed in\n    context_vector = array_ops.zeros([batch_size, attn_size])\n    context_vector.set_shape([None, attn_size])  # Ensure the second shape of attention vectors is set.\n    if initial_state_attention: # true in decode mode\n      # Re-calculate the context vector from the previous step so that we can pass it through a linear layer with this step's input to get a modified version of the input\n      context_vector, _, coverage = attention(initial_state, coverage) # in decode mode, this is what updates the coverage vector\n    for i, inp in enumerate(decoder_inputs):\n      tf.logging.info(\"Adding attention_decoder timestep %i of %i\", i, len(decoder_inputs))\n      if i > 0:\n        variable_scope.get_variable_scope().reuse_variables()\n\n      # Merge input and previous attentions into one vector x of the same size as inp\n      input_size = inp.get_shape().with_rank(2)[1]\n      if input_size.value is None:\n        raise ValueError(\"Could not infer input size from input: %s\" % inp.name)\n      x = linear([inp] + [context_vector], input_size, True)\n\n      # Run the decoder RNN cell. cell_output = decoder state\n      cell_output, state = cell(x, state)\n\n      # Run the attention mechanism.\n      if i == 0 and initial_state_attention:  # always true in decode mode\n        with variable_scope.variable_scope(variable_scope.get_variable_scope(), reuse=True): # you need this because you've already run the initial attention(...) call\n          context_vector, attn_dist, _ = attention(state, coverage) # don't allow coverage to update\n      else:\n        context_vector, attn_dist, coverage = attention(state, coverage)\n      attn_dists.append(attn_dist)\n\n      # Calculate p_gen\n      if pointer_gen:\n        with tf.variable_scope('calculate_pgen'):\n          p_gen = linear([context_vector, state.c, state.h, x], 1, True) # a scalar\n          p_gen = tf.sigmoid(p_gen)\n          p_gens.append(p_gen)\n\n      # Concatenate the cell_output (= decoder state) and the context vector, and pass them through a linear layer\n      # This is V[s_t, h*_t] + b in the paper\n      with variable_scope.variable_scope(\"AttnOutputProjection\"):\n        output = linear([cell_output] + [context_vector], cell.output_size, True)\n      outputs.append(output)\n\n    # If using coverage, reshape it\n    if coverage is not None:\n      coverage = array_ops.reshape(coverage, [batch_size, -1])\n\n    return outputs, state, attn_dists, p_gens, coverage\n\n\n\ndef linear(args, output_size, bias, bias_start=0.0, scope=None):\n  \"\"\"Linear map: sum_i(args[i] * W[i]), where W[i] is a variable.\n\n  Args:\n    args: a 2D Tensor or a list of 2D, batch x n, Tensors.\n    output_size: int, second dimension of W[i].\n    bias: boolean, whether to add a bias term or not.\n    bias_start: starting value to initialize the bias; 0 by default.\n    scope: VariableScope for the created subgraph; defaults to \"Linear\".\n\n  Returns:\n    A 2D Tensor with shape [batch x output_size] equal to\n    sum_i(args[i] * W[i]), where W[i]s are newly created matrices.\n\n  Raises:\n    ValueError: if some of the arguments has unspecified or wrong shape.\n  \"\"\"\n  if args is None or (isinstance(args, (list, tuple)) and not args):\n    raise ValueError(\"`args` must be specified\")\n  if not isinstance(args, (list, tuple)):\n    args = [args]\n\n  # Calculate the total size of arguments on dimension 1.\n  total_arg_size = 0\n  shapes = [a.get_shape().as_list() for a in args]\n  for shape in shapes:\n    if len(shape) != 2:\n      raise ValueError(\"Linear is expecting 2D arguments: %s\" % str(shapes))\n    if not shape[1]:\n      raise ValueError(\"Linear expects shape[1] of arguments: %s\" % str(shapes))\n    else:\n      total_arg_size += shape[1]\n\n  # Now the computation.\n  with tf.variable_scope(scope or \"Linear\"):\n    matrix = tf.get_variable(\"Matrix\", [total_arg_size, output_size])\n    if len(args) == 1:\n      res = tf.matmul(args[0], matrix)\n    else:\n      res = tf.matmul(tf.concat(axis=1, values=args), matrix)\n    if not bias:\n      return res\n    bias_term = tf.get_variable(\n        \"Bias\", [output_size], initializer=tf.constant_initializer(bias_start))\n  return res + bias_term\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/batcher.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This file contains code to process data into batches\"\"\"\n\nimport queue as Queue\nfrom random import shuffle\nfrom threading import Thread\nimport time\nimport numpy as np\nimport tensorflow as tf\nimport data\n\n\nclass Example(object):\n  \"\"\"Class representing a train/val/test example for text summarization.\"\"\"\n\n  def __init__(self, article, abstract_sentences, vocab, hps):\n    \"\"\"Initializes the Example, performing tokenization and truncation to produce the encoder, decoder and target sequences, which are stored in self.\n\n    Args:\n      article: source text; a string. each token is separated by a single space.\n      abstract_sentences: list of strings, one per abstract sentence. In each sentence, each token is separated by a single space.\n      vocab: Vocabulary object\n      hps: hyperparameters\n    \"\"\"\n    self.hps = hps\n\n    # Get ids of special tokens\n    start_decoding = vocab.word2id(data.START_DECODING)\n    stop_decoding = vocab.word2id(data.STOP_DECODING)\n\n    # Process the article\n    article_words = article.split()\n    if len(article_words) > hps.max_enc_steps:\n      article_words = article_words[:hps.max_enc_steps]\n    self.enc_len = len(article_words) # store the length after truncation but before padding\n    self.enc_input = [vocab.word2id(w) for w in article_words] # list of word ids; OOVs are represented by the id for UNK token\n\n    # Process the abstract\n    abstract = ' '.join(abstract_sentences) # string\n    abstract_words = abstract.split() # list of strings\n    abs_ids = [vocab.word2id(w) for w in abstract_words] # list of word ids; OOVs are represented by the id for UNK token\n\n    # Get the decoder input sequence and target sequence\n    self.dec_input, self.target = self.get_dec_inp_targ_seqs(abs_ids, hps.max_dec_steps, start_decoding, stop_decoding)\n    self.dec_len = len(self.dec_input)\n\n    # If using pointer-generator mode, we need to store some extra info\n    if hps.pointer_gen:\n      # Store a version of the enc_input where in-article OOVs are represented by their temporary OOV id; also store the in-article OOVs words themselves\n      self.enc_input_extend_vocab, self.article_oovs = data.article2ids(article_words, vocab)\n\n      # Get a verison of the reference summary where in-article OOVs are represented by their temporary article OOV id\n      abs_ids_extend_vocab = data.abstract2ids(abstract_words, vocab, self.article_oovs)\n\n      # Overwrite decoder target sequence so it uses the temp article OOV ids\n      _, self.target = self.get_dec_inp_targ_seqs(abs_ids_extend_vocab, hps.max_dec_steps, start_decoding, stop_decoding)\n\n    # Store the original strings\n    self.original_article = article\n    self.original_abstract = abstract\n    self.original_abstract_sents = abstract_sentences\n\n\n  def get_dec_inp_targ_seqs(self, sequence, max_len, start_id, stop_id):\n    \"\"\"Given the reference summary as a sequence of tokens, return the input sequence for the decoder, and the target sequence which we will use to calculate loss. The sequence will be truncated if it is longer than max_len. The input sequence must start with the start_id and the target sequence must end with the stop_id (but not if it's been truncated).\n\n    Args:\n      sequence: List of ids (integers)\n      max_len: integer\n      start_id: integer\n      stop_id: integer\n\n    Returns:\n      inp: sequence length <=max_len starting with start_id\n      target: sequence same length as input, ending with stop_id only if there was no truncation\n    \"\"\"\n    inp = [start_id] + sequence[:]\n    target = sequence[:]\n    if len(inp) > max_len: # truncate\n      inp = inp[:max_len]\n      target = target[:max_len] # no end_token\n    else: # no truncation\n      target.append(stop_id) # end token\n    assert len(inp) == len(target)\n    return inp, target\n\n\n  def pad_decoder_inp_targ(self, max_len, pad_id):\n    \"\"\"Pad decoder input and target sequences with pad_id up to max_len.\"\"\"\n    while len(self.dec_input) < max_len:\n      self.dec_input.append(pad_id)\n    while len(self.target) < max_len:\n      self.target.append(pad_id)\n\n\n  def pad_encoder_input(self, max_len, pad_id):\n    \"\"\"Pad the encoder input sequence with pad_id up to max_len.\"\"\"\n    while len(self.enc_input) < max_len:\n      self.enc_input.append(pad_id)\n    if self.hps.pointer_gen:\n      while len(self.enc_input_extend_vocab) < max_len:\n        self.enc_input_extend_vocab.append(pad_id)\n\n\nclass Batch(object):\n  \"\"\"Class representing a minibatch of train/val/test examples for text summarization.\"\"\"\n\n  def __init__(self, example_list, hps, vocab):\n    \"\"\"Turns the example_list into a Batch object.\n\n    Args:\n       example_list: List of Example objects\n       hps: hyperparameters\n       vocab: Vocabulary object\n    \"\"\"\n    self.pad_id = vocab.word2id(data.PAD_TOKEN) # id of the PAD token used to pad sequences\n    self.init_encoder_seq(example_list, hps) # initialize the input to the encoder\n    self.init_decoder_seq(example_list, hps) # initialize the input and targets for the decoder\n    self.store_orig_strings(example_list) # store the original strings\n\n  def init_encoder_seq(self, example_list, hps):\n    \"\"\"Initializes the following:\n        self.enc_batch:\n          numpy array of shape (batch_size, <=max_enc_steps) containing integer ids (all OOVs represented by UNK id), padded to length of longest sequence in the batch\n        self.enc_lens:\n          numpy array of shape (batch_size) containing integers. The (truncated) length of each encoder input sequence (pre-padding).\n        self.enc_padding_mask:\n          numpy array of shape (batch_size, <=max_enc_steps), containing 1s and 0s. 1s correspond to real tokens in enc_batch and target_batch; 0s correspond to padding.\n\n      If hps.pointer_gen, additionally initializes the following:\n        self.max_art_oovs:\n          maximum number of in-article OOVs in the batch\n        self.art_oovs:\n          list of list of in-article OOVs (strings), for each example in the batch\n        self.enc_batch_extend_vocab:\n          Same as self.enc_batch, but in-article OOVs are represented by their temporary article OOV number.\n    \"\"\"\n    # Determine the maximum length of the encoder input sequence in this batch\n    max_enc_seq_len = max([ex.enc_len for ex in example_list])\n\n    # Pad the encoder input sequences up to the length of the longest sequence\n    for ex in example_list:\n      ex.pad_encoder_input(max_enc_seq_len, self.pad_id)\n\n    # Initialize the numpy arrays\n    # Note: our enc_batch can have different length (second dimension) for each batch because we use dynamic_rnn for the encoder.\n    self.enc_batch = np.zeros((hps.batch_size, max_enc_seq_len), dtype=np.int32)\n    self.enc_lens = np.zeros((hps.batch_size), dtype=np.int32)\n    self.enc_padding_mask = np.zeros((hps.batch_size, max_enc_seq_len), dtype=np.float32)\n\n    # Fill in the numpy arrays\n    for i, ex in enumerate(example_list):\n      self.enc_batch[i, :] = ex.enc_input[:]\n      self.enc_lens[i] = ex.enc_len\n      for j in range(ex.enc_len):\n        self.enc_padding_mask[i][j] = 1\n\n    # For pointer-generator mode, need to store some extra info\n    if hps.pointer_gen:\n      # Determine the max number of in-article OOVs in this batch\n      self.max_art_oovs = max([len(ex.article_oovs) for ex in example_list])\n      # Store the in-article OOVs themselves\n      self.art_oovs = [ex.article_oovs for ex in example_list]\n      # Store the version of the enc_batch that uses the article OOV ids\n      self.enc_batch_extend_vocab = np.zeros((hps.batch_size, max_enc_seq_len), dtype=np.int32)\n      for i, ex in enumerate(example_list):\n        self.enc_batch_extend_vocab[i, :] = ex.enc_input_extend_vocab[:]\n\n  def init_decoder_seq(self, example_list, hps):\n    \"\"\"Initializes the following:\n        self.dec_batch:\n          numpy array of shape (batch_size, max_dec_steps), containing integer ids as input for the decoder, padded to max_dec_steps length.\n        self.target_batch:\n          numpy array of shape (batch_size, max_dec_steps), containing integer ids for the target sequence, padded to max_dec_steps length.\n        self.dec_padding_mask:\n          numpy array of shape (batch_size, max_dec_steps), containing 1s and 0s. 1s correspond to real tokens in dec_batch and target_batch; 0s correspond to padding.\n        \"\"\"\n    # Pad the inputs and targets\n    for ex in example_list:\n      ex.pad_decoder_inp_targ(hps.max_dec_steps, self.pad_id)\n\n    # Initialize the numpy arrays.\n    # Note: our decoder inputs and targets must be the same length for each batch (second dimension = max_dec_steps) because we do not use a dynamic_rnn for decoding. However I believe this is possible, or will soon be possible, with Tensorflow 1.0, in which case it may be best to upgrade to that.\n    self.dec_batch = np.zeros((hps.batch_size, hps.max_dec_steps), dtype=np.int32)\n    self.target_batch = np.zeros((hps.batch_size, hps.max_dec_steps), dtype=np.int32)\n    self.dec_padding_mask = np.zeros((hps.batch_size, hps.max_dec_steps), dtype=np.float32)\n\n    # Fill in the numpy arrays\n    for i, ex in enumerate(example_list):\n      self.dec_batch[i, :] = ex.dec_input[:]\n      self.target_batch[i, :] = ex.target[:]\n      for j in range(ex.dec_len):\n        self.dec_padding_mask[i][j] = 1\n\n  def store_orig_strings(self, example_list):\n    \"\"\"Store the original article and abstract strings in the Batch object\"\"\"\n    self.original_articles = [ex.original_article for ex in example_list] # list of lists\n    self.original_abstracts = [ex.original_abstract for ex in example_list] # list of lists\n    self.original_abstracts_sents = [ex.original_abstract_sents for ex in example_list] # list of list of lists\n\n\nclass Batcher(object):\n  \"\"\"A class to generate minibatches of data. Buckets examples together based on length of the encoder sequence.\"\"\"\n\n  BATCH_QUEUE_MAX = 100 # max number of batches the batch_queue can hold\n\n  def __init__(self, data_path, vocab, hps, single_pass):\n    \"\"\"Initialize the batcher. Start threads that process the data into batches.\n\n    Args:\n      data_path: tf.Example filepattern.\n      vocab: Vocabulary object\n      hps: hyperparameters\n      single_pass: If True, run through the dataset exactly once (useful for when you want to run evaluation on the dev or test set). Otherwise generate random batches indefinitely (useful for training).\n    \"\"\"\n    self._data_path = data_path\n    self._vocab = vocab\n    self._hps = hps\n    self._single_pass = single_pass\n\n    # Initialize a queue of Batches waiting to be used, and a queue of Examples waiting to be batched\n    self._batch_queue = Queue.Queue(self.BATCH_QUEUE_MAX)\n    print(self.BATCH_QUEUE_MAX, self._hps.batch_size)\n    self._example_queue = Queue.Queue(self.BATCH_QUEUE_MAX * self._hps.batch_size)\n\n    # Different settings depending on whether we're in single_pass mode or not\n    if single_pass:\n      self._num_example_q_threads = 1 # just one thread, so we read through the dataset just once\n      self._num_batch_q_threads = 1  # just one thread to batch examples\n      self._bucketing_cache_size = 1 # only load one batch's worth of examples before bucketing; this essentially means no bucketing\n      self._finished_reading = False # this will tell us when we're finished reading the dataset\n    else:\n      self._num_example_q_threads = 16 # num threads to fill example queue\n      self._num_batch_q_threads = 4  # num threads to fill batch queue\n      self._bucketing_cache_size = 100 # how many batches-worth of examples to load into cache before bucketing\n\n    # Start the threads that load the queues\n    self._example_q_threads = []\n    for _ in range(self._num_example_q_threads):\n      self._example_q_threads.append(Thread(target=self.fill_example_queue))\n      self._example_q_threads[-1].daemon = True\n      self._example_q_threads[-1].start()\n    self._batch_q_threads = []\n    for _ in range(self._num_batch_q_threads):\n      self._batch_q_threads.append(Thread(target=self.fill_batch_queue))\n      self._batch_q_threads[-1].daemon = True\n      self._batch_q_threads[-1].start()\n\n    # Start a thread that watches the other threads and restarts them if they're dead\n    if not single_pass: # We don't want a watcher in single_pass mode because the threads shouldn't run forever\n      self._watch_thread = Thread(target=self.watch_threads)\n      self._watch_thread.daemon = True\n      self._watch_thread.start()\n\n\n  def next_batch(self):\n    \"\"\"Return a Batch from the batch queue.\n\n    If mode='decode' then each batch contains a single example repeated beam_size-many times; this is necessary for beam search.\n\n    Returns:\n      batch: a Batch object, or None if we're in single_pass mode and we've exhausted the dataset.\n    \"\"\"\n    # If the batch queue is empty, print a warning\n    if self._batch_queue.qsize() == 0:\n      tf.logging.warning('Bucket input queue is empty when calling next_batch. Bucket queue size: %i, Input queue size: %i', self._batch_queue.qsize(), self._example_queue.qsize())\n      if self._single_pass and self._finished_reading:\n        tf.logging.info(\"Finished reading dataset in single_pass mode.\")\n        return None\n\n    batch = self._batch_queue.get() # get the next Batch\n    return batch\n\n  def fill_example_queue(self):\n    \"\"\"Reads data from file and processes into Examples which are then placed into the example queue.\"\"\"\n\n    input_gen = self.text_generator(data.example_generator(self._data_path, self._single_pass))\n\n    while True:\n      try:\n        (article, abstract) = next(input_gen) # read the next example from file. article and abstract are both strings.\n      except StopIteration: # if there are no more examples:\n        tf.logging.info(\"The example generator for this example queue filling thread has exhausted data.\")\n        if self._single_pass:\n          tf.logging.info(\"single_pass mode is on, so we've finished reading dataset. This thread is stopping.\")\n          self._finished_reading = True\n          break\n        else:\n          raise Exception(\"single_pass mode is off but the example generator is out of data; error.\")\n\n      abstract_sentences = [sent.strip() for sent in data.abstract2sents(abstract)] # Use the <s> and </s> tags in abstract to get a list of sentences.\n      example = Example(article, abstract_sentences, self._vocab, self._hps) # Process into an Example.\n      self._example_queue.put(example) # place the Example in the example queue.\n\n\n  def fill_batch_queue(self):\n    \"\"\"Takes Examples out of example queue, sorts them by encoder sequence length, processes into Batches and places them in the batch queue.\n\n    In decode mode, makes batches that each contain a single example repeated.\n    \"\"\"\n    while True:\n      if self._hps.mode != 'decode':\n        # Get bucketing_cache_size-many batches of Examples into a list, then sort\n        inputs = []\n        for _ in range(self._hps.batch_size * self._bucketing_cache_size):\n          inputs.append(self._example_queue.get())\n        inputs = sorted(inputs, key=lambda inp: inp.enc_len) # sort by length of encoder sequence\n\n        # Group the sorted Examples into batches, optionally shuffle the batches, and place in the batch queue.\n        batches = []\n        for i in range(0, len(inputs), self._hps.batch_size):\n          batches.append(inputs[i:i + self._hps.batch_size])\n        if not self._single_pass:\n          shuffle(batches)\n        for b in batches:  # each b is a list of Example objects\n          self._batch_queue.put(Batch(b, self._hps, self._vocab))\n\n      else: # beam search decode mode\n        ex = self._example_queue.get()\n        b = [ex for _ in range(self._hps.batch_size)]\n        self._batch_queue.put(Batch(b, self._hps, self._vocab))\n\n\n  def watch_threads(self):\n    \"\"\"Watch example queue and batch queue threads and restart if dead.\"\"\"\n    while True:\n      time.sleep(60)\n      for idx,t in enumerate(self._example_q_threads):\n        if not t.is_alive(): # if the thread is dead\n          tf.logging.error('Found example queue thread dead. Restarting.')\n          new_t = Thread(target=self.fill_example_queue)\n          self._example_q_threads[idx] = new_t\n          new_t.daemon = True\n          new_t.start()\n      for idx,t in enumerate(self._batch_q_threads):\n        if not t.is_alive(): # if the thread is dead\n          tf.logging.error('Found batch queue thread dead. Restarting.')\n          new_t = Thread(target=self.fill_batch_queue)\n          self._batch_q_threads[idx] = new_t\n          new_t.daemon = True\n          new_t.start()\n\n\n  def text_generator(self, example_generator):\n    \"\"\"Generates article and abstract text from tf.Example.\n\n    Args:\n      example_generator: a generator of tf.Examples from file. See data.example_generator\"\"\"\n    while True:\n      e = next(example_generator) # e is a tf.Example\n      try:\n        article_text = e.features.feature['article'].bytes_list.value[0].decode() # the article text was saved under the key 'article' in the data files\n        abstract_text = e.features.feature['abstract'].bytes_list.value[0].decode() # the abstract text was saved under the key 'abstract' in the data files\n      except ValueError:\n        tf.logging.error('Failed to get article or abstract from example')\n        continue\n      if len(article_text)==0: # See https://github.com/abisee/pointer-generator/issues/1\n        tf.logging.warning('Found an example with empty article text. Skipping it.')\n      else:\n        yield (article_text, abstract_text)\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/beam_search.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This file contains code to run beam search decoding\"\"\"\n\nimport tensorflow as tf\nimport numpy as np\nimport data\n\nFLAGS = tf.app.flags.FLAGS\n\nclass Hypothesis(object):\n  \"\"\"Class to represent a hypothesis during beam search. Holds all the information needed for the hypothesis.\"\"\"\n\n  def __init__(self, tokens, log_probs, state, attn_dists, p_gens, coverage):\n    \"\"\"Hypothesis constructor.\n\n    Args:\n      tokens: List of integers. The ids of the tokens that form the summary so far.\n      log_probs: List, same length as tokens, of floats, giving the log probabilities of the tokens so far.\n      state: Current state of the decoder, a LSTMStateTuple.\n      attn_dists: List, same length as tokens, of numpy arrays with shape (attn_length). These are the attention distributions so far.\n      p_gens: List, same length as tokens, of floats, or None if not using pointer-generator model. The values of the generation probability so far.\n      coverage: Numpy array of shape (attn_length), or None if not using coverage. The current coverage vector.\n    \"\"\"\n    self.tokens = tokens\n    self.log_probs = log_probs\n    self.state = state\n    self.attn_dists = attn_dists\n    self.p_gens = p_gens\n    self.coverage = coverage\n\n  def extend(self, token, log_prob, state, attn_dist, p_gen, coverage):\n    \"\"\"Return a NEW hypothesis, extended with the information from the latest step of beam search.\n\n    Args:\n      token: Integer. Latest token produced by beam search.\n      log_prob: Float. Log prob of the latest token.\n      state: Current decoder state, a LSTMStateTuple.\n      attn_dist: Attention distribution from latest step. Numpy array shape (attn_length).\n      p_gen: Generation probability on latest step. Float.\n      coverage: Latest coverage vector. Numpy array shape (attn_length), or None if not using coverage.\n    Returns:\n      New Hypothesis for next step.\n    \"\"\"\n    return Hypothesis(tokens = self.tokens + [token],\n                      log_probs = self.log_probs + [log_prob],\n                      state = state,\n                      attn_dists = self.attn_dists + [attn_dist],\n                      p_gens = self.p_gens + [p_gen],\n                      coverage = coverage)\n\n  @property\n  def latest_token(self):\n    return self.tokens[-1]\n\n  @property\n  def log_prob(self):\n    # the log probability of the hypothesis so far is the sum of the log probabilities of the tokens so far\n    return sum(self.log_probs)\n\n  @property\n  def avg_log_prob(self):\n    # normalize log probability by number of tokens (otherwise longer sequences always have lower probability)\n    return self.log_prob / len(self.tokens)\n\n\ndef run_beam_search(sess, model, vocab, batch):\n  \"\"\"Performs beam search decoding on the given example.\n\n  Args:\n    sess: a tf.Session\n    model: a seq2seq model\n    vocab: Vocabulary object\n    batch: Batch object that is the same example repeated across the batch\n\n  Returns:\n    best_hyp: Hypothesis object; the best hypothesis found by beam search.\n  \"\"\"\n  # Run the encoder to get the encoder hidden states and decoder initial state\n  enc_states, dec_in_state = model.run_encoder(sess, batch)\n  # dec_in_state is a LSTMStateTuple\n  # enc_states has shape [batch_size, <=max_enc_steps, 2*hidden_dim].\n\n  # Initialize beam_size-many hyptheses\n  hyps = [Hypothesis(tokens=[vocab.word2id(data.START_DECODING)],\n                     log_probs=[0.0],\n                     state=dec_in_state,\n                     attn_dists=[],\n                     p_gens=[],\n                     coverage=np.zeros([batch.enc_batch.shape[1]]) # zero vector of length attention_length\n                     ) for _ in range(FLAGS.beam_size)]\n  results = [] # this will contain finished hypotheses (those that have emitted the [STOP] token)\n\n  steps = 0\n  while steps < FLAGS.max_dec_steps and len(results) < FLAGS.beam_size:\n    latest_tokens = [h.latest_token for h in hyps] # latest token produced by each hypothesis\n    latest_tokens = [t if t in range(vocab.size()) else vocab.word2id(data.UNKNOWN_TOKEN) for t in latest_tokens] # change any in-article temporary OOV ids to [UNK] id, so that we can lookup word embeddings\n    states = [h.state for h in hyps] # list of current decoder states of the hypotheses\n    prev_coverage = [h.coverage for h in hyps] # list of coverage vectors (or None)\n\n    # Run one step of the decoder to get the new info\n    (topk_ids, topk_log_probs, new_states, attn_dists, p_gens, new_coverage) = model.decode_onestep(sess=sess,\n                        batch=batch,\n                        latest_tokens=latest_tokens,\n                        enc_states=enc_states,\n                        dec_init_states=states,\n                        prev_coverage=prev_coverage)\n\n    # Extend each hypothesis and collect them all in all_hyps\n    all_hyps = []\n    num_orig_hyps = 1 if steps == 0 else len(hyps) # On the first step, we only had one original hypothesis (the initial hypothesis). On subsequent steps, all original hypotheses are distinct.\n    for i in range(num_orig_hyps):\n      h, new_state, attn_dist, p_gen, new_coverage_i = hyps[i], new_states[i], attn_dists[i], p_gens[i], new_coverage[i]  # take the ith hypothesis and new decoder state info\n      for j in range(FLAGS.beam_size * 2):  # for each of the top 2*beam_size hyps:\n        # Extend the ith hypothesis with the jth option\n        new_hyp = h.extend(token=topk_ids[i, j],\n                           log_prob=topk_log_probs[i, j],\n                           state=new_state,\n                           attn_dist=attn_dist,\n                           p_gen=p_gen,\n                           coverage=new_coverage_i)\n        all_hyps.append(new_hyp)\n\n    # Filter and collect any hypotheses that have produced the end token.\n    hyps = [] # will contain hypotheses for the next step\n    for h in sort_hyps(all_hyps): # in order of most likely h\n      if h.latest_token == vocab.word2id(data.STOP_DECODING): # if stop token is reached...\n        # If this hypothesis is sufficiently long, put in results. Otherwise discard.\n        if steps >= FLAGS.min_dec_steps:\n          results.append(h)\n      else: # hasn't reached stop token, so continue to extend this hypothesis\n        hyps.append(h)\n      if len(hyps) == FLAGS.beam_size or len(results) == FLAGS.beam_size:\n        # Once we've collected beam_size-many hypotheses for the next step, or beam_size-many complete hypotheses, stop.\n        break\n\n    steps += 1\n\n  # At this point, either we've got beam_size results, or we've reached maximum decoder steps\n\n  if len(results)==0: # if we don't have any complete results, add all current hypotheses (incomplete summaries) to results\n    results = hyps\n\n  # Sort hypotheses by average log probability\n  hyps_sorted = sort_hyps(results)\n\n  # Return the hypothesis with highest average log prob\n  return hyps_sorted[0]\n\ndef sort_hyps(hyps):\n  \"\"\"Return a list of Hypothesis objects, sorted by descending average log probability\"\"\"\n  return sorted(hyps, key=lambda h: h.avg_log_prob, reverse=True)\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/data.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This file contains code to read the train/eval/test data from file and process it, and read the vocab data from file and process it\"\"\"\n\nimport glob\nimport random\nimport struct\nimport csv\nfrom tensorflow.core.example import example_pb2\n\n# <s> and </s> are used in the data files to segment the abstracts into sentences. They don't receive vocab ids.\nSENTENCE_START = '<s>'\nSENTENCE_END = '</s>'\n\nPAD_TOKEN = '[PAD]' # This has a vocab id, which is used to pad the encoder input, decoder input and target sequence\nUNKNOWN_TOKEN = '[UNK]' # This has a vocab id, which is used to represent out-of-vocabulary words\nSTART_DECODING = '[START]' # This has a vocab id, which is used at the start of every decoder input sequence\nSTOP_DECODING = '[STOP]' # This has a vocab id, which is used at the end of untruncated target sequences\n\n# Note: none of <s>, </s>, [PAD], [UNK], [START], [STOP] should appear in the vocab file.\n\n\nclass Vocab(object):\n  \"\"\"Vocabulary class for mapping between words and ids (integers)\"\"\"\n\n  def __init__(self, vocab_file, max_size):\n    \"\"\"Creates a vocab of up to max_size words, reading from the vocab_file. If max_size is 0, reads the entire vocab file.\n\n    Args:\n      vocab_file: path to the vocab file, which is assumed to contain \"<word> <frequency>\" on each line, sorted with most frequent word first. This code doesn't actually use the frequencies, though.\n      max_size: integer. The maximum size of the resulting Vocabulary.\"\"\"\n    self._word_to_id = {}\n    self._id_to_word = {}\n    self._count = 0 # keeps track of total number of words in the Vocab\n\n    # [UNK], [PAD], [START] and [STOP] get the ids 0,1,2,3.\n    for w in [UNKNOWN_TOKEN, PAD_TOKEN, START_DECODING, STOP_DECODING]:\n      self._word_to_id[w] = self._count\n      self._id_to_word[self._count] = w\n      self._count += 1\n\n    # Read the vocab file and add words up to max_size\n    with open(vocab_file, 'r') as vocab_f:\n      for line in vocab_f:\n        pieces = line.split()\n        if len(pieces) != 2:\n          print('Warning: incorrectly formatted line in vocabulary file: %s\\n' % line)\n          continue\n        w = pieces[0]\n        if w in [SENTENCE_START, SENTENCE_END, UNKNOWN_TOKEN, PAD_TOKEN, START_DECODING, STOP_DECODING]:\n          raise Exception('<s>, </s>, [UNK], [PAD], [START] and [STOP] shouldn\\'t be in the vocab file, but %s is' % w)\n        if w in self._word_to_id:\n          raise Exception('Duplicated word in vocabulary file: %s' % w)\n        self._word_to_id[w] = self._count\n        self._id_to_word[self._count] = w\n        self._count += 1\n        if max_size != 0 and self._count >= max_size:\n          print(\"max_size of vocab was specified as %i; we now have %i words. Stopping reading.\" % (max_size, self._count))\n          break\n\n    print(\"Finished constructing vocabulary of %i total words. Last word added: %s\" % (self._count, self._id_to_word[self._count-1]))\n\n  def word2id(self, word):\n    \"\"\"Returns the id (integer) of a word (string). Returns [UNK] id if word is OOV.\"\"\"\n    if word not in self._word_to_id:\n      return self._word_to_id[UNKNOWN_TOKEN]\n    return self._word_to_id[word]\n\n  def id2word(self, word_id):\n    \"\"\"Returns the word (string) corresponding to an id (integer).\"\"\"\n    if word_id not in self._id_to_word:\n      raise ValueError('Id not found in vocab: %d' % word_id)\n    return self._id_to_word[word_id]\n\n  def size(self):\n    \"\"\"Returns the total size of the vocabulary\"\"\"\n    return self._count\n\n  def write_metadata(self, fpath):\n    \"\"\"Writes metadata file for Tensorboard word embedding visualizer as described here:\n      https://www.tensorflow.org/get_started/embedding_viz\n\n    Args:\n      fpath: place to write the metadata file\n    \"\"\"\n    print(\"Writing word embedding metadata file to %s...\" % (fpath))\n    with open(fpath, \"w\") as f:\n      fieldnames = ['word']\n      writer = csv.DictWriter(f, delimiter=\"\\t\", fieldnames=fieldnames)\n      for i in range(self.size()):\n        writer.writerow({\"word\": self._id_to_word[i]})\n\n\ndef example_generator(data_path, single_pass):\n  \"\"\"Generates tf.Examples from data files.\n\n    Binary data format: <length><blob>. <length> represents the byte size\n    of <blob>. <blob> is serialized tf.Example proto. The tf.Example contains\n    the tokenized article text and summary.\n\n  Args:\n    data_path:\n      Path to tf.Example data files. Can include wildcards, e.g. if you have several training data chunk files train_001.bin, train_002.bin, etc, then pass data_path=train_* to access them all.\n    single_pass:\n      Boolean. If True, go through the dataset exactly once, generating examples in the order they appear, then return. Otherwise, generate random examples indefinitely.\n\n  Yields:\n    Deserialized tf.Example.\n  \"\"\"\n  while True:\n    filelist = glob.glob(data_path) # get the list of datafiles\n    assert filelist, ('Error: Empty filelist at %s' % data_path) # check filelist isn't empty\n    if single_pass:\n      filelist = sorted(filelist)\n    else:\n      random.shuffle(filelist)\n    for f in filelist:\n      reader = open(f, 'rb')\n      while True:\n        len_bytes = reader.read(8)\n        if not len_bytes: break # finished reading this file\n        str_len = struct.unpack('q', len_bytes)[0]\n        example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0]\n        yield example_pb2.Example.FromString(example_str)\n    if single_pass:\n      print(\"example_generator completed reading all datafiles. No more data.\")\n      break\n\n\ndef article2ids(article_words, vocab):\n  \"\"\"Map the article words to their ids. Also return a list of OOVs in the article.\n\n  Args:\n    article_words: list of words (strings)\n    vocab: Vocabulary object\n\n  Returns:\n    ids:\n      A list of word ids (integers); OOVs are represented by their temporary article OOV number. If the vocabulary size is 50k and the article has 3 OOVs, then these temporary OOV numbers will be 50000, 50001, 50002.\n    oovs:\n      A list of the OOV words in the article (strings), in the order corresponding to their temporary article OOV numbers.\"\"\"\n  ids = []\n  oovs = []\n  unk_id = vocab.word2id(UNKNOWN_TOKEN)\n  for w in article_words:\n    i = vocab.word2id(w)\n    if i == unk_id: # If w is OOV\n      if w not in oovs: # Add to list of OOVs\n        oovs.append(w)\n      oov_num = oovs.index(w) # This is 0 for the first article OOV, 1 for the second article OOV...\n      ids.append(vocab.size() + oov_num) # This is e.g. 50000 for the first article OOV, 50001 for the second...\n    else:\n      ids.append(i)\n  return ids, oovs\n\n\ndef abstract2ids(abstract_words, vocab, article_oovs):\n  \"\"\"Map the abstract words to their ids. In-article OOVs are mapped to their temporary OOV numbers.\n\n  Args:\n    abstract_words: list of words (strings)\n    vocab: Vocabulary object\n    article_oovs: list of in-article OOV words (strings), in the order corresponding to their temporary article OOV numbers\n\n  Returns:\n    ids: List of ids (integers). In-article OOV words are mapped to their temporary OOV numbers. Out-of-article OOV words are mapped to the UNK token id.\"\"\"\n  ids = []\n  unk_id = vocab.word2id(UNKNOWN_TOKEN)\n  for w in abstract_words:\n    i = vocab.word2id(w)\n    if i == unk_id: # If w is an OOV word\n      if w in article_oovs: # If w is an in-article OOV\n        vocab_idx = vocab.size() + article_oovs.index(w) # Map to its temporary article OOV number\n        ids.append(vocab_idx)\n      else: # If w is an out-of-article OOV\n        ids.append(unk_id) # Map to the UNK token id\n    else:\n      ids.append(i)\n  return ids\n\n\ndef outputids2words(id_list, vocab, article_oovs):\n  \"\"\"Maps output ids to words, including mapping in-article OOVs from their temporary ids to the original OOV string (applicable in pointer-generator mode).\n\n  Args:\n    id_list: list of ids (integers)\n    vocab: Vocabulary object\n    article_oovs: list of OOV words (strings) in the order corresponding to their temporary article OOV ids (that have been assigned in pointer-generator mode), or None (in baseline mode)\n\n  Returns:\n    words: list of words (strings)\n  \"\"\"\n  words = []\n  for i in id_list:\n    try:\n      w = vocab.id2word(i) # might be [UNK]\n    except ValueError as e: # w is OOV\n      assert article_oovs is not None, \"Error: model produced a word ID that isn't in the vocabulary. This should not happen in baseline (no pointer-generator) mode\"\n      article_oov_idx = i - vocab.size()\n      try:\n        w = article_oovs[article_oov_idx]\n      except ValueError as e: # i doesn't correspond to an article oov\n        raise ValueError('Error: model produced word ID %i which corresponds to article OOV %i but this example only has %i article OOVs' % (i, article_oov_idx, len(article_oovs)))\n    words.append(w)\n  return words\n\n\ndef abstract2sents(abstract):\n  \"\"\"Splits abstract text from datafile into list of sentences.\n\n  Args:\n    abstract: string containing <s> and </s> tags for starts and ends of sentences\n\n  Returns:\n    sents: List of sentence strings (no tags)\"\"\"\n  cur = 0\n  sents = []\n  while True:\n    try:\n      start_p = abstract.index(SENTENCE_START, cur)\n      end_p = abstract.index(SENTENCE_END, start_p + 1)\n      cur = end_p + len(SENTENCE_END)\n      sents.append(abstract[start_p+len(SENTENCE_START):end_p])\n    except ValueError as e: # no more sentences\n      return sents\n\n\ndef show_art_oovs(article, vocab):\n  \"\"\"Returns the article string, highlighting the OOVs by placing __underscores__ around them\"\"\"\n  unk_token = vocab.word2id(UNKNOWN_TOKEN)\n  words = article.split(' ')\n  words = [(\"__%s__\" % w) if vocab.word2id(w)==unk_token else w for w in words]\n  out_str = ' '.join(words)\n  return out_str\n\n\ndef show_abs_oovs(abstract, vocab, article_oovs):\n  \"\"\"Returns the abstract string, highlighting the article OOVs with __underscores__.\n\n  If a list of article_oovs is provided, non-article OOVs are differentiated like !!__this__!!.\n\n  Args:\n    abstract: string\n    vocab: Vocabulary object\n    article_oovs: list of words (strings), or None (in baseline mode)\n  \"\"\"\n  unk_token = vocab.word2id(UNKNOWN_TOKEN)\n  words = abstract.split(' ')\n  new_words = []\n  for w in words:\n    if vocab.word2id(w) == unk_token: # w is oov\n      if article_oovs is None: # baseline mode\n        new_words.append(\"__%s__\" % w)\n      else: # pointer-generator mode\n        if w in article_oovs:\n          new_words.append(\"__%s__\" % w)\n        else:\n          new_words.append(\"!!__%s__!!\" % w)\n    else: # w is in-vocab word\n      new_words.append(w)\n  out_str = ' '.join(new_words)\n  return out_str\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/decode.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This file contains code to run beam search decoding, including running ROUGE evaluation and producing JSON datafiles for the in-browser attention visualizer, which can be found here https://github.com/abisee/attn_vis\"\"\"\n\nimport os\nimport time\nimport tensorflow as tf\nimport beam_search\nimport data\nimport json\nimport pyrouge\nimport util\nimport logging\nimport numpy as np\n\nFLAGS = tf.app.flags.FLAGS\n\nSECS_UNTIL_NEW_CKPT = 60  # max number of seconds before loading new checkpoint\n\n\nclass BeamSearchDecoder(object):\n  \"\"\"Beam search decoder.\"\"\"\n\n  def __init__(self, model, batcher, vocab):\n    \"\"\"Initialize decoder.\n\n    Args:\n      model: a Seq2SeqAttentionModel object.\n      batcher: a Batcher object.\n      vocab: Vocabulary object\n    \"\"\"\n    self._model = model\n    self._model.build_graph()\n    self._batcher = batcher\n    self._vocab = vocab\n    self._saver = tf.train.Saver() # we use this to load checkpoints for decoding\n    self._sess = tf.Session(config=util.get_config())\n\n    # Load an initial checkpoint to use for decoding\n    ckpt_path = util.load_ckpt(self._saver, self._sess)\n\n    if FLAGS.single_pass:\n      # Make a descriptive decode directory name\n      ckpt_name = \"ckpt-\" + ckpt_path.split('-')[-1] # this is something of the form \"ckpt-123456\"\n      self._decode_dir = os.path.join(FLAGS.log_root, get_decode_dir_name(ckpt_name))\n      if os.path.exists(self._decode_dir):\n        raise Exception(\"single_pass decode directory %s should not already exist\" % self._decode_dir)\n\n    else: # Generic decode dir name\n      self._decode_dir = os.path.join(FLAGS.log_root, \"decode\")\n\n    # Make the decode dir if necessary\n    if not os.path.exists(self._decode_dir): os.mkdir(self._decode_dir)\n\n    if FLAGS.single_pass:\n      # Make the dirs to contain output written in the correct format for pyrouge\n      self._rouge_ref_dir = os.path.join(self._decode_dir, \"reference\")\n      if not os.path.exists(self._rouge_ref_dir): os.mkdir(self._rouge_ref_dir)\n      self._rouge_dec_dir = os.path.join(self._decode_dir, \"decoded\")\n      if not os.path.exists(self._rouge_dec_dir): os.mkdir(self._rouge_dec_dir)\n\n\n  def decode(self):\n    \"\"\"Decode examples until data is exhausted (if FLAGS.single_pass) and return, or decode indefinitely, loading latest checkpoint at regular intervals\"\"\"\n    t0 = time.time()\n    counter = 0\n    while True:\n      batch = self._batcher.next_batch()  # 1 example repeated across batch\n      if batch is None: # finished decoding dataset in single_pass mode\n        assert FLAGS.single_pass, \"Dataset exhausted, but we are not in single_pass mode\"\n        tf.logging.info(\"Decoder has finished reading dataset for single_pass.\")\n        tf.logging.info(\"Output has been saved in %s and %s. Now starting ROUGE eval...\", self._rouge_ref_dir, self._rouge_dec_dir)\n        results_dict = rouge_eval(self._rouge_ref_dir, self._rouge_dec_dir)\n        rouge_log(results_dict, self._decode_dir)\n        return\n\n      original_article = batch.original_articles[0]  # string\n      original_abstract = batch.original_abstracts[0]  # string\n      original_abstract_sents = batch.original_abstracts_sents[0]  # list of strings\n\n      article_withunks = data.show_art_oovs(original_article, self._vocab) # string\n      abstract_withunks = data.show_abs_oovs(original_abstract, self._vocab, (batch.art_oovs[0] if FLAGS.pointer_gen else None)) # string\n\n      # Run beam search to get best Hypothesis\n      best_hyp = beam_search.run_beam_search(self._sess, self._model, self._vocab, batch)\n\n      # Extract the output ids from the hypothesis and convert back to words\n      output_ids = [int(t) for t in best_hyp.tokens[1:]]\n      decoded_words = data.outputids2words(output_ids, self._vocab, (batch.art_oovs[0] if FLAGS.pointer_gen else None))\n\n      # Remove the [STOP] token from decoded_words, if necessary\n      try:\n        fst_stop_idx = decoded_words.index(data.STOP_DECODING) # index of the (first) [STOP] symbol\n        decoded_words = decoded_words[:fst_stop_idx]\n      except ValueError:\n        decoded_words = decoded_words\n      decoded_output = ' '.join(decoded_words) # single string\n\n      if FLAGS.single_pass:\n        self.write_for_rouge(original_abstract_sents, decoded_words, counter) # write ref summary and decoded summary to file, to eval with pyrouge later\n        counter += 1 # this is how many examples we've decoded\n      else:\n        print_results(article_withunks, abstract_withunks, decoded_output) # log output to screen\n        self.write_for_attnvis(article_withunks, abstract_withunks, decoded_words, best_hyp.attn_dists, best_hyp.p_gens) # write info to .json file for visualization tool\n\n        # Check if SECS_UNTIL_NEW_CKPT has elapsed; if so return so we can load a new checkpoint\n        t1 = time.time()\n        if t1-t0 > SECS_UNTIL_NEW_CKPT:\n          tf.logging.info('We\\'ve been decoding with same checkpoint for %i seconds. Time to load new checkpoint', t1-t0)\n          _ = util.load_ckpt(self._saver, self._sess)\n          t0 = time.time()\n\n  def write_for_rouge(self, reference_sents, decoded_words, ex_index):\n    \"\"\"Write output to file in correct format for eval with pyrouge. This is called in single_pass mode.\n\n    Args:\n      reference_sents: list of strings\n      decoded_words: list of strings\n      ex_index: int, the index with which to label the files\n    \"\"\"\n    # First, divide decoded output into sentences\n    decoded_sents = []\n    while len(decoded_words) > 0:\n      try:\n        fst_period_idx = decoded_words.index(\".\")\n      except ValueError: # there is text remaining that doesn't end in \".\"\n        fst_period_idx = len(decoded_words)\n      sent = decoded_words[:fst_period_idx+1] # sentence up to and including the period\n      decoded_words = decoded_words[fst_period_idx+1:] # everything else\n      decoded_sents.append(' '.join(sent))\n\n    # pyrouge calls a perl script that puts the data into HTML files.\n    # Therefore we need to make our output HTML safe.\n    decoded_sents = [make_html_safe(w) for w in decoded_sents]\n    reference_sents = [make_html_safe(w) for w in reference_sents]\n\n    # Write to file\n    ref_file = os.path.join(self._rouge_ref_dir, \"%06d_reference.txt\" % ex_index)\n    decoded_file = os.path.join(self._rouge_dec_dir, \"%06d_decoded.txt\" % ex_index)\n\n    with open(ref_file, \"w\") as f:\n      for idx,sent in enumerate(reference_sents):\n        f.write(sent) if idx==len(reference_sents)-1 else f.write(sent+\"\\n\")\n    with open(decoded_file, \"w\") as f:\n      for idx,sent in enumerate(decoded_sents):\n        f.write(sent) if idx==len(decoded_sents)-1 else f.write(sent+\"\\n\")\n\n    tf.logging.info(\"Wrote example %i to file\" % ex_index)\n\n\n  def write_for_attnvis(self, article, abstract, decoded_words, attn_dists, p_gens):\n    \"\"\"Write some data to json file, which can be read into the in-browser attention visualizer tool:\n      https://github.com/abisee/attn_vis\n\n    Args:\n      article: The original article string.\n      abstract: The human (correct) abstract string.\n      attn_dists: List of arrays; the attention distributions.\n      decoded_words: List of strings; the words of the generated summary.\n      p_gens: List of scalars; the p_gen values. If not running in pointer-generator mode, list of None.\n    \"\"\"\n    article_lst = article.split() # list of words\n    decoded_lst = decoded_words # list of decoded words\n    to_write = {\n        'article_lst': [make_html_safe(t) for t in article_lst],\n        'decoded_lst': [make_html_safe(t) for t in decoded_lst],\n        'abstract_str': make_html_safe(abstract),\n        'attn_dists': attn_dists\n    }\n    if FLAGS.pointer_gen:\n      to_write['p_gens'] = p_gens\n    output_fname = os.path.join(self._decode_dir, 'attn_vis_data.json')\n    with open(output_fname, 'w') as output_file:\n      json.dump(to_write, output_file)\n    tf.logging.info('Wrote visualization data to %s', output_fname)\n\n\ndef print_results(article, abstract, decoded_output):\n  \"\"\"Prints the article, the reference summmary and the decoded summary to screen\"\"\"\n  print(\"---------------------------------------------------------------------------\")\n  tf.logging.info('ARTICLE:  %s', article)\n  tf.logging.info('REFERENCE SUMMARY: %s', abstract)\n  tf.logging.info('GENERATED SUMMARY: %s', decoded_output)\n  print(\"---------------------------------------------------------------------------\")\n\n\ndef make_html_safe(s):\n  \"\"\"Replace any angled brackets in string s to avoid interfering with HTML attention visualizer.\"\"\"\n  s.replace(\"<\", \"&lt;\")\n  s.replace(\">\", \"&gt;\")\n  return s\n\n\ndef rouge_eval(ref_dir, dec_dir):\n  \"\"\"Evaluate the files in ref_dir and dec_dir with pyrouge, returning results_dict\"\"\"\n  r = pyrouge.Rouge155()\n  r.model_filename_pattern = '#ID#_reference.txt'\n  r.system_filename_pattern = '(\\d+)_decoded.txt'\n  r.model_dir = ref_dir\n  r.system_dir = dec_dir\n  logging.getLogger('global').setLevel(logging.WARNING) # silence pyrouge logging\n  rouge_results = r.convert_and_evaluate()\n  return r.output_to_dict(rouge_results)\n\n\ndef rouge_log(results_dict, dir_to_write):\n  \"\"\"Log ROUGE results to screen and write to file.\n\n  Args:\n    results_dict: the dictionary returned by pyrouge\n    dir_to_write: the directory where we will write the results to\"\"\"\n  log_str = \"\"\n  for x in [\"1\",\"2\",\"l\"]:\n    log_str += \"\\nROUGE-%s:\\n\" % x\n    for y in [\"f_score\", \"recall\", \"precision\"]:\n      key = \"rouge_%s_%s\" % (x,y)\n      key_cb = key + \"_cb\"\n      key_ce = key + \"_ce\"\n      val = results_dict[key]\n      val_cb = results_dict[key_cb]\n      val_ce = results_dict[key_ce]\n      log_str += \"%s: %.4f with confidence interval (%.4f, %.4f)\\n\" % (key, val, val_cb, val_ce)\n  tf.logging.info(log_str) # log to screen\n  results_file = os.path.join(dir_to_write, \"ROUGE_results.txt\")\n  tf.logging.info(\"Writing final ROUGE results to %s...\", results_file)\n  with open(results_file, \"w\") as f:\n    f.write(log_str)\n\ndef get_decode_dir_name(ckpt_name):\n  \"\"\"Make a descriptive name for the decode dir, including the name of the checkpoint we use to decode. This is called in single_pass mode.\"\"\"\n\n  if \"train\" in FLAGS.data_path: dataset = \"train\"\n  elif \"val\" in FLAGS.data_path: dataset = \"val\"\n  elif \"test\" in FLAGS.data_path: dataset = \"test\"\n  else: raise ValueError(\"FLAGS.data_path %s should contain one of train, val or test\" % (FLAGS.data_path))\n  dirname = \"decode_%s_%imaxenc_%ibeam_%imindec_%imaxdec\" % (dataset, FLAGS.max_enc_steps, FLAGS.beam_size, FLAGS.min_dec_steps, FLAGS.max_dec_steps)\n  if ckpt_name is not None:\n    dirname += \"_%s\" % ckpt_name\n  return dirname\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/inspect_checkpoint.py",
    "content": "\"\"\"\nSimple script that checks if a checkpoint is corrupted with any inf/NaN values. Run like this:\n  python inspect_checkpoint.py model.12345\n\"\"\"\n\nimport tensorflow as tf\nimport sys\nimport numpy as np\n\n\nif __name__ == '__main__':\n  if len(sys.argv) != 2:\n    raise Exception(\"Usage: python inspect_checkpoint.py <file_name>\\nNote: Do not include the .data .index or .meta part of the model checkpoint in file_name.\")\n  file_name = sys.argv[1]\n  reader = tf.train.NewCheckpointReader(file_name)\n  var_to_shape_map = reader.get_variable_to_shape_map()\n\n  finite = []\n  all_infnan = []\n  some_infnan = []\n\n  for key in sorted(var_to_shape_map.keys()):\n    tensor = reader.get_tensor(key)\n    if np.all(np.isfinite(tensor)):\n      finite.append(key)\n    else:\n      if not np.any(np.isfinite(tensor)):\n        all_infnan.append(key)\n      else:\n        some_infnan.append(key)\n\n  print(\"\\nFINITE VARIABLES:\")\n  for key in finite: print(key)\n\n  print(\"\\nVARIABLES THAT ARE ALL INF/NAN:\")\n  for key in all_infnan: print(key)\n\n  print(\"\\nVARIABLES THAT CONTAIN SOME FINITE, SOME INF/NAN VALUES:\")\n  for key in some_infnan: print(key)\n\n  if not all_infnan and not some_infnan:\n    print(\"CHECK PASSED: checkpoint contains no inf/NaN values\")\n  else:\n    print(\"CHECK FAILED: checkpoint contains some inf/NaN values\")\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/model.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This file contains code to build and run the tensorflow graph for the sequence-to-sequence model\"\"\"\n\nimport os\nimport time\nimport numpy as np\nimport tensorflow as tf\nfrom attention_decoder import attention_decoder\nfrom tensorflow.contrib.tensorboard.plugins import projector\n\nFLAGS = tf.app.flags.FLAGS\n\nclass SummarizationModel(object):\n  \"\"\"A class to represent a sequence-to-sequence model for text summarization. Supports both baseline mode, pointer-generator mode, and coverage\"\"\"\n\n  def __init__(self, hps, vocab):\n    self._hps = hps\n    self._vocab = vocab\n\n  def _add_placeholders(self):\n    \"\"\"Add placeholders to the graph. These are entry points for any input data.\"\"\"\n    hps = self._hps\n\n    # encoder part\n    self._enc_batch = tf.placeholder(tf.int32, [hps.batch_size, None], name='enc_batch')\n    self._enc_lens = tf.placeholder(tf.int32, [hps.batch_size], name='enc_lens')\n    self._enc_padding_mask = tf.placeholder(tf.float32, [hps.batch_size, None], name='enc_padding_mask')\n    if FLAGS.pointer_gen:\n      self._enc_batch_extend_vocab = tf.placeholder(tf.int32, [hps.batch_size, None], name='enc_batch_extend_vocab')\n      self._max_art_oovs = tf.placeholder(tf.int32, [], name='max_art_oovs')\n\n    # decoder part\n    self._dec_batch = tf.placeholder(tf.int32, [hps.batch_size, hps.max_dec_steps], name='dec_batch')\n    self._target_batch = tf.placeholder(tf.int32, [hps.batch_size, hps.max_dec_steps], name='target_batch')\n    self._dec_padding_mask = tf.placeholder(tf.float32, [hps.batch_size, hps.max_dec_steps], name='dec_padding_mask')\n\n    if hps.mode==\"decode\" and hps.coverage:\n      self.prev_coverage = tf.placeholder(tf.float32, [hps.batch_size, None], name='prev_coverage')\n\n\n  def _make_feed_dict(self, batch, just_enc=False):\n    \"\"\"Make a feed dictionary mapping parts of the batch to the appropriate placeholders.\n\n    Args:\n      batch: Batch object\n      just_enc: Boolean. If True, only feed the parts needed for the encoder.\n    \"\"\"\n    feed_dict = {}\n    feed_dict[self._enc_batch] = batch.enc_batch\n    feed_dict[self._enc_lens] = batch.enc_lens\n    feed_dict[self._enc_padding_mask] = batch.enc_padding_mask\n    if FLAGS.pointer_gen:\n      feed_dict[self._enc_batch_extend_vocab] = batch.enc_batch_extend_vocab\n      feed_dict[self._max_art_oovs] = batch.max_art_oovs\n    if not just_enc:\n      feed_dict[self._dec_batch] = batch.dec_batch\n      feed_dict[self._target_batch] = batch.target_batch\n      feed_dict[self._dec_padding_mask] = batch.dec_padding_mask\n    return feed_dict\n\n  def _add_encoder(self, encoder_inputs, seq_len):\n    \"\"\"Add a single-layer bidirectional LSTM encoder to the graph.\n\n    Args:\n      encoder_inputs: A tensor of shape [batch_size, <=max_enc_steps, emb_size].\n      seq_len: Lengths of encoder_inputs (before padding). A tensor of shape [batch_size].\n\n    Returns:\n      encoder_outputs:\n        A tensor of shape [batch_size, <=max_enc_steps, 2*hidden_dim]. It's 2*hidden_dim because it's the concatenation of the forwards and backwards states.\n      fw_state, bw_state:\n        Each are LSTMStateTuples of shape ([batch_size,hidden_dim],[batch_size,hidden_dim])\n    \"\"\"\n    with tf.variable_scope('encoder'):\n      cell_fw = tf.contrib.rnn.LSTMCell(self._hps.hidden_dim, initializer=self.rand_unif_init, state_is_tuple=True)\n      cell_bw = tf.contrib.rnn.LSTMCell(self._hps.hidden_dim, initializer=self.rand_unif_init, state_is_tuple=True)\n      (encoder_outputs, (fw_st, bw_st)) = tf.nn.bidirectional_dynamic_rnn(cell_fw, cell_bw, encoder_inputs, dtype=tf.float32, sequence_length=seq_len, swap_memory=True)\n      encoder_outputs = tf.concat(axis=2, values=encoder_outputs) # concatenate the forwards and backwards states\n    return encoder_outputs, fw_st, bw_st\n\n\n  def _reduce_states(self, fw_st, bw_st):\n    \"\"\"Add to the graph a linear layer to reduce the encoder's final FW and BW state into a single initial state for the decoder. This is needed because the encoder is bidirectional but the decoder is not.\n\n    Args:\n      fw_st: LSTMStateTuple with hidden_dim units.\n      bw_st: LSTMStateTuple with hidden_dim units.\n\n    Returns:\n      state: LSTMStateTuple with hidden_dim units.\n    \"\"\"\n    hidden_dim = self._hps.hidden_dim\n    with tf.variable_scope('reduce_final_st'):\n\n      # Define weights and biases to reduce the cell and reduce the state\n      w_reduce_c = tf.get_variable('w_reduce_c', [hidden_dim * 2, hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init)\n      w_reduce_h = tf.get_variable('w_reduce_h', [hidden_dim * 2, hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init)\n      bias_reduce_c = tf.get_variable('bias_reduce_c', [hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init)\n      bias_reduce_h = tf.get_variable('bias_reduce_h', [hidden_dim], dtype=tf.float32, initializer=self.trunc_norm_init)\n\n      # Apply linear layer\n      old_c = tf.concat(axis=1, values=[fw_st.c, bw_st.c]) # Concatenation of fw and bw cell\n      old_h = tf.concat(axis=1, values=[fw_st.h, bw_st.h]) # Concatenation of fw and bw state\n      new_c = tf.nn.relu(tf.matmul(old_c, w_reduce_c) + bias_reduce_c) # Get new cell from old cell\n      new_h = tf.nn.relu(tf.matmul(old_h, w_reduce_h) + bias_reduce_h) # Get new state from old state\n      return tf.contrib.rnn.LSTMStateTuple(new_c, new_h) # Return new cell and state\n\n\n  def _add_decoder(self, inputs):\n    \"\"\"Add attention decoder to the graph. In train or eval mode, you call this once to get output on ALL steps. In decode (beam search) mode, you call this once for EACH decoder step.\n\n    Args:\n      inputs: inputs to the decoder (word embeddings). A list of tensors shape (batch_size, emb_dim)\n\n    Returns:\n      outputs: List of tensors; the outputs of the decoder\n      out_state: The final state of the decoder\n      attn_dists: A list of tensors; the attention distributions\n      p_gens: A list of scalar tensors; the generation probabilities\n      coverage: A tensor, the current coverage vector\n    \"\"\"\n    hps = self._hps\n    cell = tf.contrib.rnn.LSTMCell(hps.hidden_dim, state_is_tuple=True, initializer=self.rand_unif_init)\n\n    prev_coverage = self.prev_coverage if hps.mode==\"decode\" and hps.coverage else None # In decode mode, we run attention_decoder one step at a time and so need to pass in the previous step's coverage vector each time\n\n    outputs, out_state, attn_dists, p_gens, coverage = attention_decoder(inputs, self._dec_in_state, self._enc_states, self._enc_padding_mask, cell, initial_state_attention=(hps.mode==\"decode\"), pointer_gen=hps.pointer_gen, use_coverage=hps.coverage, prev_coverage=prev_coverage)\n\n    return outputs, out_state, attn_dists, p_gens, coverage\n\n  def _calc_final_dist(self, vocab_dists, attn_dists):\n    \"\"\"Calculate the final distribution, for the pointer-generator model\n\n    Args:\n      vocab_dists: The vocabulary distributions. List length max_dec_steps of (batch_size, vsize) arrays. The words are in the order they appear in the vocabulary file.\n      attn_dists: The attention distributions. List length max_dec_steps of (batch_size, attn_len) arrays\n\n    Returns:\n      final_dists: The final distributions. List length max_dec_steps of (batch_size, extended_vsize) arrays.\n    \"\"\"\n    with tf.variable_scope('final_distribution'):\n      # Multiply vocab dists by p_gen and attention dists by (1-p_gen)\n      vocab_dists = [p_gen * dist for (p_gen,dist) in zip(self.p_gens, vocab_dists)]\n      attn_dists = [(1-p_gen) * dist for (p_gen,dist) in zip(self.p_gens, attn_dists)]\n\n      # Concatenate some zeros to each vocabulary dist, to hold the probabilities for in-article OOV words\n      extended_vsize = self._vocab.size() + self._max_art_oovs # the maximum (over the batch) size of the extended vocabulary\n      extra_zeros = tf.zeros((self._hps.batch_size, self._max_art_oovs))\n      vocab_dists_extended = [tf.concat(axis=1, values=[dist, extra_zeros]) for dist in vocab_dists] # list length max_dec_steps of shape (batch_size, extended_vsize)\n\n      # Project the values in the attention distributions onto the appropriate entries in the final distributions\n      # This means that if a_i = 0.1 and the ith encoder word is w, and w has index 500 in the vocabulary, then we add 0.1 onto the 500th entry of the final distribution\n      # This is done for each decoder timestep.\n      # This is fiddly; we use tf.scatter_nd to do the projection\n      batch_nums = tf.range(0, limit=self._hps.batch_size) # shape (batch_size)\n      batch_nums = tf.expand_dims(batch_nums, 1) # shape (batch_size, 1)\n      attn_len = tf.shape(self._enc_batch_extend_vocab)[1] # number of states we attend over\n      batch_nums = tf.tile(batch_nums, [1, attn_len]) # shape (batch_size, attn_len)\n      indices = tf.stack( (batch_nums, self._enc_batch_extend_vocab), axis=2) # shape (batch_size, enc_t, 2)\n      shape = [self._hps.batch_size, extended_vsize]\n      attn_dists_projected = [tf.scatter_nd(indices, copy_dist, shape) for copy_dist in attn_dists] # list length max_dec_steps (batch_size, extended_vsize)\n\n      # Add the vocab distributions and the copy distributions together to get the final distributions\n      # final_dists is a list length max_dec_steps; each entry is a tensor shape (batch_size, extended_vsize) giving the final distribution for that decoder timestep\n      # Note that for decoder timesteps and examples corresponding to a [PAD] token, this is junk - ignore.\n      final_dists = [vocab_dist + copy_dist for (vocab_dist,copy_dist) in zip(vocab_dists_extended, attn_dists_projected)]\n\n      return final_dists\n\n  def _add_emb_vis(self, embedding_var):\n    \"\"\"Do setup so that we can view word embedding visualization in Tensorboard, as described here:\n    https://www.tensorflow.org/get_started/embedding_viz\n    Make the vocab metadata file, then make the projector config file pointing to it.\"\"\"\n    train_dir = os.path.join(FLAGS.log_root, \"train\")\n    vocab_metadata_path = os.path.join(train_dir, \"vocab_metadata.tsv\")\n    self._vocab.write_metadata(vocab_metadata_path) # write metadata file\n    summary_writer = tf.summary.FileWriter(train_dir)\n    config = projector.ProjectorConfig()\n    embedding = config.embeddings.add()\n    embedding.tensor_name = embedding_var.name\n    embedding.metadata_path = vocab_metadata_path\n    projector.visualize_embeddings(summary_writer, config)\n\n  def _add_seq2seq(self):\n    \"\"\"Add the whole sequence-to-sequence model to the graph.\"\"\"\n    hps = self._hps\n    vsize = self._vocab.size() # size of the vocabulary\n\n    with tf.variable_scope('seq2seq'):\n      # Some initializers\n      self.rand_unif_init = tf.random_uniform_initializer(-hps.rand_unif_init_mag, hps.rand_unif_init_mag, seed=123)\n      self.trunc_norm_init = tf.truncated_normal_initializer(stddev=hps.trunc_norm_init_std)\n\n      # Add embedding matrix (shared by the encoder and decoder inputs)\n      with tf.variable_scope('embedding'):\n        embedding = tf.get_variable('embedding', [vsize, hps.emb_dim], dtype=tf.float32, initializer=self.trunc_norm_init)\n        if hps.mode==\"train\": self._add_emb_vis(embedding) # add to tensorboard\n        emb_enc_inputs = tf.nn.embedding_lookup(embedding, self._enc_batch) # tensor with shape (batch_size, max_enc_steps, emb_size)\n        emb_dec_inputs = [tf.nn.embedding_lookup(embedding, x) for x in tf.unstack(self._dec_batch, axis=1)] # list length max_dec_steps containing shape (batch_size, emb_size)\n\n      # Add the encoder.\n      enc_outputs, fw_st, bw_st = self._add_encoder(emb_enc_inputs, self._enc_lens)\n      self._enc_states = enc_outputs\n\n      # Our encoder is bidirectional and our decoder is unidirectional so we need to reduce the final encoder hidden state to the right size to be the initial decoder hidden state\n      self._dec_in_state = self._reduce_states(fw_st, bw_st)\n\n      # Add the decoder.\n      with tf.variable_scope('decoder'):\n        decoder_outputs, self._dec_out_state, self.attn_dists, self.p_gens, self.coverage = self._add_decoder(emb_dec_inputs)\n\n      # Add the output projection to obtain the vocabulary distribution\n      with tf.variable_scope('output_projection'):\n        w = tf.get_variable('w', [hps.hidden_dim, vsize], dtype=tf.float32, initializer=self.trunc_norm_init)\n        w_t = tf.transpose(w)\n        v = tf.get_variable('v', [vsize], dtype=tf.float32, initializer=self.trunc_norm_init)\n        vocab_scores = [] # vocab_scores is the vocabulary distribution before applying softmax. Each entry on the list corresponds to one decoder step\n        for i,output in enumerate(decoder_outputs):\n          if i > 0:\n            tf.get_variable_scope().reuse_variables()\n          vocab_scores.append(tf.nn.xw_plus_b(output, w, v)) # apply the linear layer\n\n        vocab_dists = [tf.nn.softmax(s) for s in vocab_scores] # The vocabulary distributions. List length max_dec_steps of (batch_size, vsize) arrays. The words are in the order they appear in the vocabulary file.\n\n\n      # For pointer-generator model, calc final distribution from copy distribution and vocabulary distribution\n      if FLAGS.pointer_gen:\n        final_dists = self._calc_final_dist(vocab_dists, self.attn_dists)\n      else: # final distribution is just vocabulary distribution\n        final_dists = vocab_dists\n\n\n\n      if hps.mode in ['train', 'eval']:\n        # Calculate the loss\n        with tf.variable_scope('loss'):\n          if FLAGS.pointer_gen:\n            # Calculate the loss per step\n            # This is fiddly; we use tf.gather_nd to pick out the probabilities of the gold target words\n            loss_per_step = [] # will be list length max_dec_steps containing shape (batch_size)\n            batch_nums = tf.range(0, limit=hps.batch_size) # shape (batch_size)\n            for dec_step, dist in enumerate(final_dists):\n              targets = self._target_batch[:,dec_step] # The indices of the target words. shape (batch_size)\n              indices = tf.stack( (batch_nums, targets), axis=1) # shape (batch_size, 2)\n              gold_probs = tf.gather_nd(dist, indices) # shape (batch_size). prob of correct words on this step\n              losses = -tf.log(gold_probs)\n              loss_per_step.append(losses)\n\n            # Apply dec_padding_mask and get loss\n            self._loss = _mask_and_avg(loss_per_step, self._dec_padding_mask)\n\n          else: # baseline model\n            self._loss = tf.contrib.seq2seq.sequence_loss(tf.stack(vocab_scores, axis=1), self._target_batch, self._dec_padding_mask) # this applies softmax internally\n\n          tf.summary.scalar('loss', self._loss)\n\n          # Calculate coverage loss from the attention distributions\n          if hps.coverage:\n            with tf.variable_scope('coverage_loss'):\n              self._coverage_loss = _coverage_loss(self.attn_dists, self._dec_padding_mask)\n              tf.summary.scalar('coverage_loss', self._coverage_loss)\n            self._total_loss = self._loss + hps.cov_loss_wt * self._coverage_loss\n            tf.summary.scalar('total_loss', self._total_loss)\n\n    if hps.mode == \"decode\":\n      # We run decode beam search mode one decoder step at a time\n      assert len(final_dists)==1 # final_dists is a singleton list containing shape (batch_size, extended_vsize)\n      final_dists = final_dists[0]\n      topk_probs, self._topk_ids = tf.nn.top_k(final_dists, hps.batch_size*2) # take the k largest probs. note batch_size=beam_size in decode mode\n      self._topk_log_probs = tf.log(topk_probs)\n\n\n  def _add_train_op(self):\n    \"\"\"Sets self._train_op, the op to run for training.\"\"\"\n    # Take gradients of the trainable variables w.r.t. the loss function to minimize\n    loss_to_minimize = self._total_loss if self._hps.coverage else self._loss\n    tvars = tf.trainable_variables()\n    gradients = tf.gradients(loss_to_minimize, tvars, aggregation_method=tf.AggregationMethod.EXPERIMENTAL_TREE)\n\n    # Clip the gradients\n    with tf.device(\"/gpu:0\"):\n      grads, global_norm = tf.clip_by_global_norm(gradients, self._hps.max_grad_norm)\n\n    # Add a summary\n    tf.summary.scalar('global_norm', global_norm)\n\n    # Apply adagrad optimizer\n    optimizer = tf.train.AdagradOptimizer(self._hps.lr, initial_accumulator_value=self._hps.adagrad_init_acc)\n    #optimizer = tf.train.AdamOptimizer(self._hps.lr)\n    with tf.device(\"/gpu:0\"):\n      self._train_op = optimizer.apply_gradients(zip(grads, tvars), global_step=self.global_step, name='train_step')\n\n\n  def build_graph(self):\n    \"\"\"Add the placeholders, model, global step, train_op and summaries to the graph\"\"\"\n    tf.logging.info('Building graph...')\n    t0 = time.time()\n    self._add_placeholders()\n    with tf.device(\"/gpu:0\"):\n      self._add_seq2seq()\n    self.global_step = tf.Variable(0, name='global_step', trainable=False)\n    if self._hps.mode == 'train':\n      self._add_train_op()\n    self._summaries = tf.summary.merge_all()\n    t1 = time.time()\n    tf.logging.info('Time to build graph: %i seconds', t1 - t0)\n\n  def run_train_step(self, sess, batch):\n    \"\"\"Runs one training iteration. Returns a dictionary containing train op, summaries, loss, global_step and (optionally) coverage loss.\"\"\"\n    feed_dict = self._make_feed_dict(batch)\n    to_return = {\n        'train_op': self._train_op,\n        'summaries': self._summaries,\n        'loss': self._loss,\n        'global_step': self.global_step,\n    }\n    if self._hps.coverage:\n      to_return['coverage_loss'] = self._coverage_loss\n    return sess.run(to_return, feed_dict)\n\n  def run_eval_step(self, sess, batch):\n    \"\"\"Runs one evaluation iteration. Returns a dictionary containing summaries, loss, global_step and (optionally) coverage loss.\"\"\"\n    feed_dict = self._make_feed_dict(batch)\n    to_return = {\n        'summaries': self._summaries,\n        'loss': self._loss,\n        'global_step': self.global_step,\n    }\n    if self._hps.coverage:\n      to_return['coverage_loss'] = self._coverage_loss\n    return sess.run(to_return, feed_dict)\n\n  def run_encoder(self, sess, batch):\n    \"\"\"For beam search decoding. Run the encoder on the batch and return the encoder states and decoder initial state.\n\n    Args:\n      sess: Tensorflow session.\n      batch: Batch object that is the same example repeated across the batch (for beam search)\n\n    Returns:\n      enc_states: The encoder states. A tensor of shape [batch_size, <=max_enc_steps, 2*hidden_dim].\n      dec_in_state: A LSTMStateTuple of shape ([1,hidden_dim],[1,hidden_dim])\n    \"\"\"\n    feed_dict = self._make_feed_dict(batch, just_enc=True) # feed the batch into the placeholders\n    (enc_states, dec_in_state, global_step) = sess.run([self._enc_states, self._dec_in_state, self.global_step], feed_dict) # run the encoder\n\n    # dec_in_state is LSTMStateTuple shape ([batch_size,hidden_dim],[batch_size,hidden_dim])\n    # Given that the batch is a single example repeated, dec_in_state is identical across the batch so we just take the top row.\n    dec_in_state = tf.contrib.rnn.LSTMStateTuple(dec_in_state.c[0], dec_in_state.h[0])\n    return enc_states, dec_in_state\n\n\n  def decode_onestep(self, sess, batch, latest_tokens, enc_states, dec_init_states, prev_coverage):\n    \"\"\"For beam search decoding. Run the decoder for one step.\n\n    Args:\n      sess: Tensorflow session.\n      batch: Batch object containing single example repeated across the batch\n      latest_tokens: Tokens to be fed as input into the decoder for this timestep\n      enc_states: The encoder states.\n      dec_init_states: List of beam_size LSTMStateTuples; the decoder states from the previous timestep\n      prev_coverage: List of np arrays. The coverage vectors from the previous timestep. List of None if not using coverage.\n\n    Returns:\n      ids: top 2k ids. shape [beam_size, 2*beam_size]\n      probs: top 2k log probabilities. shape [beam_size, 2*beam_size]\n      new_states: new states of the decoder. a list length beam_size containing\n        LSTMStateTuples each of shape ([hidden_dim,],[hidden_dim,])\n      attn_dists: List length beam_size containing lists length attn_length.\n      p_gens: Generation probabilities for this step. A list length beam_size. List of None if in baseline mode.\n      new_coverage: Coverage vectors for this step. A list of arrays. List of None if coverage is not turned on.\n    \"\"\"\n\n    beam_size = len(dec_init_states)\n\n    # Turn dec_init_states (a list of LSTMStateTuples) into a single LSTMStateTuple for the batch\n    cells = [np.expand_dims(state.c, axis=0) for state in dec_init_states]\n    hiddens = [np.expand_dims(state.h, axis=0) for state in dec_init_states]\n    new_c = np.concatenate(cells, axis=0)  # shape [batch_size,hidden_dim]\n    new_h = np.concatenate(hiddens, axis=0)  # shape [batch_size,hidden_dim]\n    new_dec_in_state = tf.contrib.rnn.LSTMStateTuple(new_c, new_h)\n\n    feed = {\n        self._enc_states: enc_states,\n        self._enc_padding_mask: batch.enc_padding_mask,\n        self._dec_in_state: new_dec_in_state,\n        self._dec_batch: np.transpose(np.array([latest_tokens])),\n    }\n\n    to_return = {\n      \"ids\": self._topk_ids,\n      \"probs\": self._topk_log_probs,\n      \"states\": self._dec_out_state,\n      \"attn_dists\": self.attn_dists\n    }\n\n    if FLAGS.pointer_gen:\n      feed[self._enc_batch_extend_vocab] = batch.enc_batch_extend_vocab\n      feed[self._max_art_oovs] = batch.max_art_oovs\n      to_return['p_gens'] = self.p_gens\n\n    if self._hps.coverage:\n      feed[self.prev_coverage] = np.stack(prev_coverage, axis=0)\n      to_return['coverage'] = self.coverage\n\n    results = sess.run(to_return, feed_dict=feed) # run the decoder step\n\n    # Convert results['states'] (a single LSTMStateTuple) into a list of LSTMStateTuple -- one for each hypothesis\n    new_states = [tf.contrib.rnn.LSTMStateTuple(results['states'].c[i, :], results['states'].h[i, :]) for i in range(beam_size)]\n\n    # Convert singleton list containing a tensor to a list of k arrays\n    assert len(results['attn_dists'])==1\n    attn_dists = results['attn_dists'][0].tolist()\n\n    if FLAGS.pointer_gen:\n      # Convert singleton list containing a tensor to a list of k arrays\n      assert len(results['p_gens'])==1\n      p_gens = results['p_gens'][0].tolist()\n    else:\n      p_gens = [None for _ in range(beam_size)]\n\n    # Convert the coverage tensor to a list length k containing the coverage vector for each hypothesis\n    if FLAGS.coverage:\n      new_coverage = results['coverage'].tolist()\n      assert len(new_coverage) == beam_size\n    else:\n      new_coverage = [None for _ in range(beam_size)]\n\n    return results['ids'], results['probs'], new_states, attn_dists, p_gens, new_coverage\n\n\ndef _mask_and_avg(values, padding_mask):\n  \"\"\"Applies mask to values then returns overall average (a scalar)\n\n  Args:\n    values: a list length max_dec_steps containing arrays shape (batch_size).\n    padding_mask: tensor shape (batch_size, max_dec_steps) containing 1s and 0s.\n\n  Returns:\n    a scalar\n  \"\"\"\n\n  dec_lens = tf.reduce_sum(padding_mask, axis=1) # shape batch_size. float32\n  values_per_step = [v * padding_mask[:,dec_step] for dec_step,v in enumerate(values)]\n  values_per_ex = sum(values_per_step)/dec_lens # shape (batch_size); normalized value for each batch member\n  return tf.reduce_mean(values_per_ex) # overall average\n\n\ndef _coverage_loss(attn_dists, padding_mask):\n  \"\"\"Calculates the coverage loss from the attention distributions.\n\n  Args:\n    attn_dists: The attention distributions for each decoder timestep. A list length max_dec_steps containing shape (batch_size, attn_length)\n    padding_mask: shape (batch_size, max_dec_steps).\n\n  Returns:\n    coverage_loss: scalar\n  \"\"\"\n  coverage = tf.zeros_like(attn_dists[0]) # shape (batch_size, attn_length). Initial coverage is zero.\n  covlosses = [] # Coverage loss per decoder timestep. Will be list length max_dec_steps containing shape (batch_size).\n  for a in attn_dists:\n    covloss = tf.reduce_sum(tf.minimum(a, coverage), [1]) # calculate the coverage loss for this step\n    covlosses.append(covloss)\n    coverage += a # update the coverage vector\n  coverage_loss = _mask_and_avg(covlosses, padding_mask)\n  return coverage_loss\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/run_summarization.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This is the top-level file to train, evaluate or test your summarization model\"\"\"\n\nimport sys\nimport time\nimport os\nimport tensorflow as tf\nimport numpy as np\nfrom collections import namedtuple\nfrom data import Vocab\nfrom batcher import Batcher\nfrom model import SummarizationModel\nfrom decode import BeamSearchDecoder\nimport util\nfrom tensorflow.python import debug as tf_debug\n\nprint(\"tf.__version__:\", tf.__version__)\n\nFLAGS = tf.app.flags.FLAGS\n\n# Where to find data\ntf.app.flags.DEFINE_string('data_path', '', 'Path expression to tf.Example datafiles. Can include wildcards to access multiple datafiles.')\ntf.app.flags.DEFINE_string('vocab_path', '', 'Path expression to text vocabulary file.')\n\n# Important settings\ntf.app.flags.DEFINE_string('mode', 'train', 'must be one of train/eval/decode')\ntf.app.flags.DEFINE_boolean('single_pass', False, 'For decode mode only. If True, run eval on the full dataset using a fixed checkpoint, i.e. take the current checkpoint, and use it to produce one summary for each example in the dataset, write the summaries to file and then get ROUGE scores for the whole dataset. If False (default), run concurrent decoding, i.e. repeatedly load latest checkpoint, use it to produce summaries for randomly-chosen examples and log the results to screen, indefinitely.')\n#tf.app.flags.DEFINE_boolean('single_pass', True, 'For decode mode only. If True, run eval on the full dataset using a fixed checkpoint, i.e. take the current checkpoint, and use it to produce one summary for each example in the dataset, write the summaries to file and then get ROUGE scores for the whole dataset. If False (default), run concurrent decoding, i.e. repeatedly load latest checkpoint, use it to produce summaries for randomly-chosen examples and log the results to screen, indefinitely.')\n\n# Where to save output\ntf.app.flags.DEFINE_string('log_root', '', 'Root directory for all logging.')\ntf.app.flags.DEFINE_string('exp_name', '', 'Name for experiment. Logs will be saved in a directory with this name, under log_root.')\n\n# Hyperparameters\ntf.app.flags.DEFINE_integer('hidden_dim', 256, 'dimension of RNN hidden states')\ntf.app.flags.DEFINE_integer('emb_dim', 128, 'dimension of word embeddings')\ntf.app.flags.DEFINE_integer('batch_size', 32, 'minibatch size')\ntf.app.flags.DEFINE_integer('max_enc_steps', 400, 'max timesteps of encoder (max source text tokens)')\ntf.app.flags.DEFINE_integer('max_dec_steps', 100, 'max timesteps of decoder (max summary tokens)')\ntf.app.flags.DEFINE_integer('beam_size', 4, 'beam size for beam search decoding.')\ntf.app.flags.DEFINE_integer('min_dec_steps', 35, 'Minimum sequence length of generated summary. Applies only for beam search decoding mode')\ntf.app.flags.DEFINE_integer('vocab_size', 50000, 'Size of vocabulary. These will be read from the vocabulary file in order. If the vocabulary file contains fewer words than this number, or if this number is set to 0, will take all words in the vocabulary file.')\ntf.app.flags.DEFINE_float('lr', 0.15, 'learning rate')\ntf.app.flags.DEFINE_float('adagrad_init_acc', 0.1, 'initial accumulator value for Adagrad')\ntf.app.flags.DEFINE_float('rand_unif_init_mag', 0.02, 'magnitude for lstm cells random uniform inititalization')\ntf.app.flags.DEFINE_float('trunc_norm_init_std', 1e-4, 'std of trunc norm init, used for initializing everything else')\ntf.app.flags.DEFINE_float('max_grad_norm', 2.0, 'for gradient clipping')\n\n# Pointer-generator or baseline model\ntf.app.flags.DEFINE_boolean('pointer_gen', True, 'If True, use pointer-generator model. If False, use baseline model.')\n\n# Coverage hyperparameters\ntf.app.flags.DEFINE_boolean('coverage', False, 'Use coverage mechanism. Note, the experiments reported in the ACL paper train WITHOUT coverage until converged, and then train for a short phase WITH coverage afterwards. i.e. to reproduce the results in the ACL paper, turn this off for most of training then turn on for a short phase at the end.')\n#tf.app.flags.DEFINE_boolean('coverage', True, 'Use coverage mechanism. Note, the experiments reported in the ACL paper train WITHOUT coverage until converged, and then train for a short phase WITH coverage afterwards. i.e. to reproduce the results in the ACL paper, turn this off for most of training then turn on for a short phase at the end.')\ntf.app.flags.DEFINE_float('cov_loss_wt', 1.0, 'Weight of coverage loss (lambda in the paper). If zero, then no incentive to minimize coverage loss.')\n\n# Utility flags, for restoring and changing checkpoints\ntf.app.flags.DEFINE_boolean('convert_to_coverage_model', False, 'Convert a non-coverage model to a coverage model. Turn this on and run in train mode. Your current training model will be copied to a new version (same name with _cov_init appended) that will be ready to run with coverage flag turned on, for the coverage training stage.')\n#tf.app.flags.DEFINE_boolean('convert_to_coverage_model', True, 'Convert a non-coverage model to a coverage model. Turn this on and run in train mode. Your current training model will be copied to a new version (same name with _cov_init appended) that will be ready to run with coverage flag turned on, for the coverage training stage.')\ntf.app.flags.DEFINE_boolean('restore_best_model', False, 'Restore the best model in the eval/ dir and save it in the train/ dir, ready to be used for further training. Useful for early stopping, or if your training checkpoint has become corrupted with e.g. NaN values.')\n#tf.app.flags.DEFINE_boolean('restore_best_model', True, 'Restore the best model in the eval/ dir and save it in the train/ dir, ready to be used for further training. Useful for early stopping, or if your training checkpoint has become corrupted with e.g. NaN values.')\n\n# Debugging. See https://www.tensorflow.org/programmers_guide/debugger\ntf.app.flags.DEFINE_boolean('debug', False, \"Run in tensorflow's debug mode (watches for NaN/inf values)\")\n\n\n\ndef calc_running_avg_loss(loss, running_avg_loss, summary_writer, step, decay=0.99):\n  \"\"\"Calculate the running average loss via exponential decay.\n  This is used to implement early stopping w.r.t. a more smooth loss curve than the raw loss curve.\n\n  Args:\n    loss: loss on the most recent eval step\n    running_avg_loss: running_avg_loss so far\n    summary_writer: FileWriter object to write for tensorboard\n    step: training iteration step\n    decay: rate of exponential decay, a float between 0 and 1. Larger is smoother.\n\n  Returns:\n    running_avg_loss: new running average loss\n  \"\"\"\n  if running_avg_loss == 0:  # on the first iteration just take the loss\n    running_avg_loss = loss\n  else:\n    running_avg_loss = running_avg_loss * decay + (1 - decay) * loss\n  running_avg_loss = min(running_avg_loss, 12)  # clip\n  loss_sum = tf.Summary()\n  tag_name = 'running_avg_loss/decay=%f' % (decay)\n  loss_sum.value.add(tag=tag_name, simple_value=running_avg_loss)\n  summary_writer.add_summary(loss_sum, step)\n  tf.logging.info('running_avg_loss: %f', running_avg_loss)\n  return running_avg_loss\n\n\ndef restore_best_model():\n  \"\"\"Load bestmodel file from eval directory, add variables for adagrad, and save to train directory\"\"\"\n  tf.logging.info(\"Restoring bestmodel for training...\")\n\n  # Initialize all vars in the model\n  sess = tf.Session(config=util.get_config())\n  print(\"Initializing all variables...\")\n  sess.run(tf.initialize_all_variables())\n\n  # Restore the best model from eval dir\n  saver = tf.train.Saver([v for v in tf.all_variables() if \"Adagrad\" not in v.name])\n  print(\"Restoring all non-adagrad variables from best model in eval dir...\")\n  curr_ckpt = util.load_ckpt(saver, sess, \"eval\")\n  print (\"Restored %s.\" % curr_ckpt)\n\n  # Save this model to train dir and quit\n  new_model_name = curr_ckpt.split(\"/\")[-1].replace(\"bestmodel\", \"model\")\n  new_fname = os.path.join(FLAGS.log_root, \"train\", new_model_name)\n  print (\"Saving model to %s...\" % (new_fname))\n  new_saver = tf.train.Saver() # this saver saves all variables that now exist, including Adagrad variables\n  new_saver.save(sess, new_fname)\n  print (\"Saved.\")\n  exit()\n\n\ndef convert_to_coverage_model():\n  \"\"\"Load non-coverage checkpoint, add initialized extra variables for coverage, and save as new checkpoint\"\"\"\n  tf.logging.info(\"converting non-coverage model to coverage model..\")\n\n  # initialize an entire coverage model from scratch\n  sess = tf.Session(config=util.get_config())\n  print(\"initializing everything...\")\n  sess.run(tf.global_variables_initializer())\n\n  # load all non-coverage weights from checkpoint\n  saver = tf.train.Saver([v for v in tf.global_variables() if \"coverage\" not in v.name and \"Adagrad\" not in v.name])\n  print(\"restoring non-coverage variables...\")\n  curr_ckpt = util.load_ckpt(saver, sess)\n  print(\"restored.\")\n\n  # save this model and quit\n  new_fname = curr_ckpt + '_cov_init'\n  print(\"saving model to %s...\" % (new_fname))\n  new_saver = tf.train.Saver() # this one will save all variables that now exist\n  new_saver.save(sess, new_fname)\n  print(\"saved.\")\n  exit()\n\n\ndef setup_training(model, batcher):\n  \"\"\"Does setup before starting training (run_training)\"\"\"\n  train_dir = os.path.join(FLAGS.log_root, \"train\")\n  if not os.path.exists(train_dir): os.makedirs(train_dir)\n\n  model.build_graph() # build the graph\n  if FLAGS.convert_to_coverage_model:\n    assert FLAGS.coverage, \"To convert your non-coverage model to a coverage model, run with convert_to_coverage_model=True and coverage=True\"\n    convert_to_coverage_model()\n  if FLAGS.restore_best_model:\n    restore_best_model()\n  saver = tf.train.Saver(max_to_keep=3) # keep 3 checkpoints at a time\n\n  sv = tf.train.Supervisor(logdir=train_dir,\n                     is_chief=True,\n                     saver=saver,\n                     summary_op=None,\n                     save_summaries_secs=60, # save summaries for tensorboard every 60 secs\n                     save_model_secs=60, # checkpoint every 60 secs\n                     global_step=model.global_step)\n  summary_writer = sv.summary_writer\n  tf.logging.info(\"Preparing or waiting for session...\")\n  sess_context_manager = sv.prepare_or_wait_for_session(config=util.get_config())\n  tf.logging.info(\"Created session.\")\n  try:\n    run_training(model, batcher, sess_context_manager, sv, summary_writer) # this is an infinite loop until interrupted\n  except KeyboardInterrupt:\n    tf.logging.info(\"Caught keyboard interrupt on worker. Stopping supervisor...\")\n    sv.stop()\n\n\ndef run_training(model, batcher, sess_context_manager, sv, summary_writer):\n  \"\"\"Repeatedly runs training iterations, logging loss to screen and writing summaries\"\"\"\n  tf.logging.info(\"starting run_training ... \")\n  with sess_context_manager as sess:\n    if FLAGS.debug: # start the tensorflow debugger\n      sess = tf_debug.LocalCLIDebugWrapperSession(sess)\n      sess.add_tensor_filter(\"has_inf_or_nan\", tf_debug.has_inf_or_nan)\n    while True: # 循环直到键盘中断（control+c）\n      batch = batcher.next_batch()\n\n      #tf.logging.info('running training step {}'.format(step))\n      t0=time.time()\n      results = model.run_train_step(sess, batch)\n      t1=time.time()\n      # tf.logging.info('train step %d , cost  %.3f second' % (step, t1-t0))\n\n      loss = results['loss']\n      summaries = results['summaries'] \n      train_step = results['global_step']\n\n      #tf.logging.info('Train step %d , cost  %.3f second, loss: %f' %(step, t1-t0, loss)) # print the loss to screen\n      print('Train steps %d , cost  %.3f second, loss: %f' % (train_step, t1-t0, loss)) # 打印训练step信息\n      # 如果loss是nan/inf/NINF等，触发异常\n      if not np.isfinite(loss):\n        raise Exception(\"Loss is not finite. Stopping.\")\n\n      if FLAGS.coverage:\n        coverage_loss = results['coverage_loss']\n        tf.logging.info(\"coverage_loss: %f\", coverage_loss) # print the coverage loss to screen\n\n      # get the summaries and iteration number so we can write summaries to tensorboard\n      # we will write these summaries to tensorboard using summary_writer\n      # we need this to update our running average loss\n      summary_writer.add_summary(summaries, train_step) # write the summaries\n      if train_step % 100 == 0: # flush the summary writer every so often\n        summary_writer.flush()\n\n\ndef run_eval(model, batcher, vocab):\n  \"\"\"Repeatedly runs eval iterations, logging to screen and writing summaries. Saves the model with the best loss seen so far.\"\"\"\n  model.build_graph() # build the graph\n  saver = tf.train.Saver(max_to_keep=3) # we will keep 3 best checkpoints at a time\n  sess = tf.Session(config=util.get_config())\n  eval_dir = os.path.join(FLAGS.log_root, \"eval\") # make a subdir of the root dir for eval data\n  bestmodel_save_path = os.path.join(eval_dir, 'bestmodel') # this is where checkpoints of best models are saved\n  summary_writer = tf.summary.FileWriter(eval_dir)\n  running_avg_loss = 0 # the eval job keeps a smoother, running average loss to tell it when to implement early stopping\n  best_loss = None  # will hold the best loss achieved so far\n  while True:\n    _ = util.load_ckpt(saver, sess) # load a new checkpoint\n    batch = batcher.next_batch() # get the next batch\n\n    # run eval on the batch\n    t0=time.time()\n    results = model.run_eval_step(sess, batch)\n    t1=time.time()\n    # tf.logging.info('seconds for batch: %.2f', t1-t0)\n\n    # print the loss and coverage loss to screen\n    loss = results['loss']\n    train_step = results['global_step']\n    print('steps %d, seconds for batch: %.2f, loss: %f'%(results['global_step'], t1-t0, loss))\n    if FLAGS.coverage:\n      coverage_loss = results['coverage_loss']\n      tf.logging.info(\"coverage_loss: %f\", coverage_loss)\n\n    # add summaries\n    summaries = results['summaries']\n    summary_writer.add_summary(summaries, train_step)\n\n    # calculate running avg loss\n    running_avg_loss = calc_running_avg_loss(np.asscalar(loss), running_avg_loss, summary_writer, train_step)\n\n    # If running_avg_loss is best so far, save this checkpoint (early stopping).\n    # These checkpoints will appear as bestmodel-<iteration_number> in the eval dir\n    if best_loss is None or running_avg_loss < best_loss:\n      print('Found new best model with %.3f running_avg_loss. Saving to %s' % (running_avg_loss, bestmodel_save_path))\n      saver.save(sess, bestmodel_save_path, global_step=train_step, latest_filename='checkpoint_best')\n      best_loss = running_avg_loss\n\n    # flush the summary writer every so often\n    if train_step % 100 == 0:\n      summary_writer.flush()\n\n\ndef main(unused_argv):\n  if len(unused_argv) != 1: # prints a message if you've entered flags incorrectly\n    raise Exception(\"Problem with flags: %s\" % unused_argv)\n\n  tf.logging.set_verbosity(tf.logging.INFO) # choose what level of logging you want\n  tf.logging.info('Starting seq2seq_attention in %s mode...', (FLAGS.mode))\n\n  # Change log_root to FLAGS.log_root/FLAGS.exp_name and create the dir if necessary\n  FLAGS.log_root = os.path.join(FLAGS.log_root, FLAGS.exp_name)\n  if not os.path.exists(FLAGS.log_root):\n    if FLAGS.mode==\"train\":\n      os.makedirs(FLAGS.log_root)\n    else:\n      raise Exception(\"Logdir %s doesn't exist. Run in train mode to create it.\" % (FLAGS.log_root))\n\n  vocab = Vocab(FLAGS.vocab_path, FLAGS.vocab_size) # create a vocabulary\n\n  # If in decode mode, set batch_size = beam_size\n  # Reason: in decode mode, we decode one example at a time.\n  # On each step, we have beam_size-many hypotheses in the beam, so we need to make a batch of these hypotheses.\n  if FLAGS.mode == 'decode':\n    FLAGS.batch_size = FLAGS.beam_size\n\n  # If single_pass=True, check we're in decode mode\n  if FLAGS.single_pass and FLAGS.mode!='decode':\n    raise Exception(\"The single_pass flag should only be True in decode mode\")\n\n  # Make a namedtuple hps, containing the values of the hyperparameters that the model needs\n  hparam_list = ['mode', 'lr', 'adagrad_init_acc', 'rand_unif_init_mag', 'trunc_norm_init_std', 'max_grad_norm', 'hidden_dim', 'emb_dim', 'batch_size', 'max_dec_steps', 'max_enc_steps', 'coverage', 'cov_loss_wt', 'pointer_gen']\n  hps_dict = {}\n  for key,val in FLAGS.__flags.items(): # for each flag\n    if key in hparam_list: # if it's in the list\n      hps_dict[key] = val.value # add it to the dict\n  hps = namedtuple(\"HParams\", hps_dict.keys())(**hps_dict)\n\n  # Create a batcher object that will create minibatches of data\n  batcher = Batcher(FLAGS.data_path, vocab, hps, single_pass=FLAGS.single_pass)\n\n  tf.set_random_seed(111) # a seed value for randomness\n\n  if hps.mode == 'train':\n    print(\"creating model...\")\n    model = SummarizationModel(hps, vocab)\n    setup_training(model, batcher)\n  elif hps.mode == 'eval':\n    model = SummarizationModel(hps, vocab)\n    run_eval(model, batcher, vocab)\n  elif hps.mode == 'decode':\n    decode_model_hps = hps  # This will be the hyperparameters for the decoder model\n    decode_model_hps = hps._replace(max_dec_steps=1) # The model is configured with max_dec_steps=1 because we only ever run one step of the decoder at a time (to do beam search). Note that the batcher is initialized with max_dec_steps equal to e.g. 100 because the batches need to contain the full summaries\n    model = SummarizationModel(decode_model_hps, vocab)\n    decoder = BeamSearchDecoder(model, batcher, vocab)\n    decoder.decode() # decode indefinitely (unless single_pass=True, in which case deocde the dataset exactly once)\n  else:\n    raise ValueError(\"The 'mode' flag must be one of train/eval/decode\")\n\nif __name__ == '__main__':\n  tf.app.run()\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator/util.py",
    "content": "# Copyright 2016 The TensorFlow Authors. All Rights Reserved.\n# Modifications Copyright 2017 Abigail See\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# ==============================================================================\n\n\"\"\"This file contains some utility functions\"\"\"\n\nimport tensorflow as tf\nimport time\nimport os\nFLAGS = tf.app.flags.FLAGS\n\ndef get_config():\n  \"\"\"Returns config for tf.session\"\"\"\n  config = tf.ConfigProto(allow_soft_placement=True)\n  config.gpu_options.allow_growth=True\n  return config\n\ndef load_ckpt(saver, sess, ckpt_dir=\"train\"):\n  \"\"\"Load checkpoint from the ckpt_dir (if unspecified, this is train dir) and restore it to saver and sess, waiting 10 secs in the case of failure. Also returns checkpoint name.\"\"\"\n  while True:\n    try:\n      latest_filename = \"checkpoint_best\" if ckpt_dir==\"eval\" else None\n      ckpt_dir = os.path.join(FLAGS.log_root, ckpt_dir)\n      ckpt_state = tf.train.get_checkpoint_state(ckpt_dir, latest_filename=latest_filename)\n      tf.logging.info('Loading checkpoint %s', ckpt_state.model_checkpoint_path)\n      saver.restore(sess, ckpt_state.model_checkpoint_path)\n      return ckpt_state.model_checkpoint_path\n    except:\n      tf.logging.info(\"Failed to load checkpoint from %s. Sleeping for %i secs...\", ckpt_dir, 10)\n      time.sleep(10)\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/pointer-generator-network-test.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## pointer generator network\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import tensorflow as tf\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'1.12.0'\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"tf.__version__\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"FLAGS = tf.app.flags.FLAGS\\n\",\n    \"tf.app.flags.DEFINE_integer('hidden_dim', 256, 'dimension of RNN hidden states')\\n\",\n    \"tf.app.flags.DEFINE_integer('emb_dim', 128, 'dimension of word embeddings')\\n\",\n    \"tf.app.flags.DEFINE_integer('batch_size', 16, 'minibatch size')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from collections import namedtuple\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"256\\n\",\n      \"128\\n\",\n      \"16\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"hparam_list = ['hidden_dim', 'emb_dim', 'batch_size']\\n\",\n    \"hps_dict = {}\\n\",\n    \"for key,val in FLAGS.__flags.items(): # for each flag\\n\",\n    \"    if key in hparam_list: # if it's in the list\\n\",\n    \"        print(val.value)\\n\",\n    \"        hps_dict[key] = val.value # add it to the dict\\n\",\n    \"hps = namedtuple(\\\"HParams\\\", hps_dict.keys())(**hps_dict)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"16\"\n      ]\n     },\n     \"execution_count\": 20,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"hps.batch_size\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/rouge_test.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import jieba\\n\",\n    \"from collections import Counter\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"word2idx = Counter()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Counter()\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"word2idx\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"s = \\\"超参数的选择如果使用网格搜索也比较费时.\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Building prefix dict from the default dictionary ...\\n\",\n      \"Dumping model to file cache /tmp/jieba.cache\\n\",\n      \"Loading model cost 0.464 seconds.\\n\",\n      \"Prefix dict has been built successfully.\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['超', '参数', '的', '选择', '如果', '使用', '网格', '搜索', '也', '比较', '费时', '.']\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"li = list(jieba.cut(s))\\n\",\n    \"li\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"word2idx.update(li)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Counter({'超': 1,\\n\",\n       \"         '参数': 1,\\n\",\n       \"         '的': 1,\\n\",\n       \"         '选择': 1,\\n\",\n       \"         '如果': 1,\\n\",\n       \"         '使用': 1,\\n\",\n       \"         '网格': 1,\\n\",\n       \"         '搜索': 1,\\n\",\n       \"         '也': 1,\\n\",\n       \"         '比较': 1,\\n\",\n       \"         '费时': 1,\\n\",\n       \"         '.': 1})\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"word2idx\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['所以', '超', '参数', '的', '选择', '有', '一些', '技巧']\"\n      ]\n     },\n     \"execution_count\": 11,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"li2 = list(jieba.cut(\\\"所以超参数的选择有一些技巧\\\"))\\n\",\n    \"li2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"Counter({'超': 2,\\n\",\n       \"         '参数': 2,\\n\",\n       \"         '的': 2,\\n\",\n       \"         '选择': 2,\\n\",\n       \"         '如果': 1,\\n\",\n       \"         '使用': 1,\\n\",\n       \"         '网格': 1,\\n\",\n       \"         '搜索': 1,\\n\",\n       \"         '也': 1,\\n\",\n       \"         '比较': 1,\\n\",\n       \"         '费时': 1,\\n\",\n       \"         '.': 1,\\n\",\n       \"         '所以': 1,\\n\",\n       \"         '有': 1,\\n\",\n       \"         '一些': 1,\\n\",\n       \"         '技巧': 1})\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"word2idx.update(li2)\\n\",\n    \"word2idx\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Rouge测试\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import jieba\\n\",\n    \"from rouge import Rouge\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"r = Rouge()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"hy = \\\"一只猫被发现在床底下。\\\"\\n\",\n    \"ref = \\\"一只猫在床底下。\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Building prefix dict from the default dictionary ...\\n\",\n      \"Loading model from cache /tmp/jieba.cache\\n\",\n      \"Loading model cost 0.382 seconds.\\n\",\n      \"Prefix dict has been built successfully.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"ref = \\\" \\\".join(list(jieba.cut(ref.replace('。', '.'), HMM=False)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'一只 猫 在 床 底下 .'\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ref\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"hy = \\\" \\\".join(list(jieba.cut(hy.replace('。', '.'))))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"'一只 猫 被 发现 在 床 底下 .'\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"hy\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{'rouge-1': {'f': 0.8333333284722222, 'p': 0.7142857142857143, 'r': 1.0},\\n\",\n       \" 'rouge-2': {'f': 0.5999999952, 'p': 0.5, 'r': 0.75},\\n\",\n       \" 'rouge-l': {'f': 0.8333333284722222, 'p': 0.7142857142857143, 'r': 1.0}}\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"r.get_scores(hy, ref, avg=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"?jieba.cut\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/test.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"device = torch.device(\\\"cuda\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"device(type='cuda')\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"device\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 44,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 8, 14, 10,  4, 11, 20, 13, 19])\"\n      ]\n     },\n     \"execution_count\": 44,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = np.random.randint(0,25,size=[8]) \\n\",\n    \"x\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"array([ 8., 14., 10.,  4., 11., 20., 13., 19.,  0.,  0.])\"\n      ]\n     },\n     \"execution_count\": 59,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"in_tensor = np.append(x, + np.zeros([2]))\\n\",\n    \"in_tensor\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"in_tensor = torch.tensor(in_tensor).long()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 73,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([10])\"\n      ]\n     },\n     \"execution_count\": 73,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"in_tensor.shape\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 78,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 8, 14, 10,  4, 11, 20, 13, 19,  0,  0]]])\"\n      ]\n     },\n     \"execution_count\": 78,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = in_tensor.unsqueeze(0).unsqueeze(0)\\n\",\n    \"x \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 79,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"oov_token = torch.full((1,1,10), 3).long()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 80,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[3, 3, 3, 3, 3, 3, 3, 3, 3, 3]]])\"\n      ]\n     },\n     \"execution_count\": 80,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"oov_token\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 82,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"out_tensor = torch.where(x > 15, oov_token, in_tensor)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 83,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[ 8, 14, 10,  4, 11,  3, 13,  3,  0,  0]]])\"\n      ]\n     },\n     \"execution_count\": 83,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"out_tensor\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 89,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[[1., 1., 1., 1., 1., 1., 1., 1., 0., 0.]]])\"\n      ]\n     },\n     \"execution_count\": 89,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"z = torch.ne(x, 0).byte().float()\\n\",\n    \"z\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.10\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "P007PytorchPointerGeneratorNetwork/weibo_news_preprocession.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 数据预处理\\n\",\n    \"- 分词，划分训练集测试集，并保存文件\\n\",\n    \"- 共有679898个样本\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import os\\n\",\n    \"import sys\\n\",\n    \"import time\\n\",\n    \"import jieba\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ARTICLE_FILE = \\\"./data/weibo_news/train_text.txt\\\"\\n\",\n    \"SUMMARRY_FILE = \\\"./data/weibo_news/train_label.txt\\\"\\n\",\n    \"\\n\",\n    \"TRAIN_FILE = \\\"./data/weibo_news/train_art_summ_prep.txt\\\"\\n\",\n    \"VAL_FILE = \\\"./data/weibo_news/val_art_summ_prep.txt\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def timer(func):\\n\",\n    \"    \\\"\\\"\\\"时间装饰器\\\"\\\"\\\"\\n\",\n    \"    def wrapper(*args, **kwargs):\\n\",\n    \"        start = time.time()\\n\",\n    \"        r = func(*args, **kwargs)\\n\",\n    \"        end = time.time()\\n\",\n    \"        cost = end - start\\n\",\n    \"        print(f\\\"Cost time: {cost} s\\\")\\n\",\n    \"        return r\\n\",\n    \"    return wrapper\\n\",\n    \"\\n\",\n    \"@timer\\n\",\n    \"def load_data(filename):\\n\",\n    \"    \\\"\\\"\\\"加载数据文件，对文本进行分词\\\"\\\"\\\"\\n\",\n    \"    data_list = []\\n\",\n    \"    with open(filename, 'r', encoding= 'utf-8') as f:\\n\",\n    \"        for line in f:\\n\",\n    \"            # jieba.enable_parallel()\\n\",\n    \"            words = jieba.cut(line.strip())\\n\",\n    \"            word_list = list(words)\\n\",\n    \"            # jieba.disable_parallel()\\n\",\n    \"            data_list.append(' '.join(word_list).strip())\\n\",\n    \"    return data_list\\n\",\n    \"\\n\",\n    \"def build_train_val(article_data, summary_data, train_num=600_000):\\n\",\n    \"    \\\"\\\"\\\"划分训练和验证数据\\\"\\\"\\\"\\n\",\n    \"    train_list = []\\n\",\n    \"    val_list = []\\n\",\n    \"    n = 0\\n\",\n    \"    for text, summ in zip(article_data, summary_data):\\n\",\n    \"        n += 1\\n\",\n    \"        if n <= train_num:\\n\",\n    \"            train_list.append(text)\\n\",\n    \"            train_list.append(summ)\\n\",\n    \"        else:\\n\",\n    \"            val_list.append(text)\\n\",\n    \"            val_list.append(summ)\\n\",\n    \"    return train_list, val_list\\n\",\n    \"\\n\",\n    \"def save_file(filename, li):\\n\",\n    \"    \\\"\\\"\\\"预处理后的数据保存到文件\\\"\\\"\\\"\\n\",\n    \"    with open(filename, 'w+', encoding='utf-8') as f:\\n\",\n    \"        for item in li:\\n\",\n    \"            f.write(item + '\\\\n')\\n\",\n    \"    print(f\\\"Save {filename} ok.\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Building prefix dict from the default dictionary ...\\n\",\n      \"Loading model from cache /tmp/jieba.cache\\n\",\n      \"Loading model cost 1.055 seconds.\\n\",\n      \"Prefix dict has been built succesfully.\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Cost time: 582.3778989315033 s\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"article_data = load_data(ARTICLE_FILE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Cost time: 105.96853184700012 s\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"summary_data = load_data(SUMMARRY_FILE)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['徐州 18 岁 农家 女孩 宋爽 ， 今年 考入 清华大学 。 除了 自己 一路 闯关 ， 年 年 拿 奖 ， 还 帮 妹妹 、 弟弟 制定 学习 计划 ， 姐弟 仨 齐头并进 ， 妹妹 也 考上 区里 最好 的 中学 。 这个 家里 的 收入 ， 全靠 父亲 务农 和 打零工 ， 但 宋爽 懂事 得 让 人 心疼 ， 曾 需要 200 元 奥数 竞赛 的 教材费 ， 她 羞于 开口 ， 愣 是 急 哭 了 ...   戳 腾讯 公益 帮帮 她们 ！ # 助学 圆梦 #   江苏 新闻 的 秒 拍 视频',\\n\",\n       \" '盖 被子 ， 摇 摇篮 ， 汪星 人 简直 要 把 萌娃 宠 上天 ～ 细致 周到 有 耐心 ， 脾气 还好 ， 汪星 人 不愧 是 一届 带娃 好手 [ 笑 而 不语 ] 偶买 噶 视频 的 秒 拍 视频   \\\\u200b \\\\u200b \\\\u200b',\\n\",\n       \" '人们 通常 被 社会 赋予 的 \\\" 成功 \\\" 所 定义 ， “ 做 什么 工作 ” “ 赚 多少 钱 ” 都 用来 评判 一个 人 的 全部 价值 ， 很多 人 出现 身份 焦虑 。 身份 焦虑 不仅 影响 幸福感 ， 还会 导致 精神压力 ， 甚至 自杀 。 如果 你 也 有 身份 焦虑 ， 这个 短片 或许 会 有 帮助 。 秒 拍 视频   \\\\u200b \\\\u200b \\\\u200b',\\n\",\n       \" '网友 @ 星蓝 seiran   教 大家 自制 的 捕捉 器 教程 ， 简单 方便 ， 里面 的 洗洁精 换成 肥皂水 或 洗衣粉 水 都 可以 （ 用于 溶解 蟑螂 腹部 油脂 防止 爬 出 ） ， 白糖 稍微 多放点 。 怕 蟑螂 的 童鞋 ， 可以 换成 不 透明 的 瓶子 。 转需 ~   \\\\u200b \\\\u200b \\\\u200b',\\n\",\n       \" '车辆 众多 的 路口 ， 哪些地方 能 掉头 ？ 没有 调头 指示灯 和 调头 标志 的 路段 ， 你 还 知道 怎么 调头 吗 ？ @ 汽车 洋葱 圈   戳 视频 了解 ↓ ↓ 转给 新 司机 ！ 汽车 洋葱 圈 的 秒 拍 视频   \\\\u200b \\\\u200b \\\\u200b',\\n\",\n       \" '平板 支撑 （ plank ） ， 时下 最热 “ 甩肉 ” 秘笈 。 可以 有效 的 锻炼 腹横肌 ， 被 公认 为 训练 腹肌 最 有效 的 方法 之一 ， 每天 坚持 做 可以 让 平坦 的 小腹 重见天日 。 每个 坚持 30 秒 ， 休息 30 秒 。 你 若 不 坚持 ， 不如 别 开始 ， 你 想要 的 只能 自己 给 自己 ！   \\\\u200b \\\\u200b \\\\u200b \\\\u200b',\\n\",\n       \" '炎热 的 夏季 ， 每天 都 要 将 换下 的 衣物 清洗 干净 ， 为啥 有些 人 的 衣服 穿着 穿着 就 掉色 ？ 衣服 也 不 柔软 了 呢 ？ 不要 怪 衣服 的 质量 ， 晒衣 也 是 有 学问 的 哦 。 戳 图 ↓ ↓ 告诉 你 晒衣服 的 正确 方式 ， 转发 收藏 ！   \\\\u200b \\\\u200b \\\\u200b \\\\u200b',\\n\",\n       \" '最近 是不是 热热 热热 热热 热热 热热 热热 热炸 了 ？ ！ 如何 在 三伏天 防暑降温 ， 安然 度夏 ？ 夏日 消暑 美食 指南 ， 动手 自制 消暑 美食 ， 清 清凉凉 地 度过 这个 炎夏 ！ [ 馋嘴 ]   \\\\u200b \\\\u200b \\\\u200b \\\\u200b',\\n\",\n       \" '小张 在 南京 一 整形 诊所 接受 鼻部 整形 ， 主刀 的 韩国 医生 朴光哲 ， 号称 “ 世界 鼻部 整形 泰斗 ” 、 “ 韩国 美鼻 教父 ” 。 没多久 ， 小张 的 鼻子 歪 了 ， 假体 快滑出 鼻尖 。 记者 得知 ， 朴光哲 未注册 就 在 中国 进行 整容手术 ， 属 非法 行医 。 整容 有 风险 ， 提醒 爱美 的 TA ！ 江苏 新闻 的 秒 拍 视频',\\n\",\n       \" '近日 ， 因 天气 太热 ， 安徽 一 老太 在 买 肉 路上 突然 眼前 一黑 ， 摔倒 在 地 。 她 怕 别人 不 扶 她 ， 连忙 说 \\\" 快 扶 我 起来 ， 我 不 讹 你 ， 地上 太热 我 要 熟 了 ！ \\\" 这一喊 周围 人 都 笑 了 ， 老人 随后 被 扶 到 路边 休息 。 ( 颍州 晚报 ) [ 话筒 ] 最近 老人 尽量避免 出门 !   \\\\u200b \\\\u200b \\\\u200b \\\\u200b']\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"article_data[:10]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"TRAIN_SPLIT = 600_000\\n\",\n    \"train_list, val_list = build_train_val(article_data, summary_data, train_num=TRAIN_SPLIT)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Save ./data/weibo_news/train_art_summ_prep.txt ok.\\n\",\n      \"Save ./data/weibo_news/val_art_summ_prep.txt ok.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"save_file(TRAIN_FILE, train_list)\\n\",\n    \"save_file(VAL_FILE, val_list)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P008GPT2TextSummary/Untitled.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P008GPT2TextSummary/gpt2_text_summary.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I0929 22:26:32.452105 139811974653760 file_utils.py:39] PyTorch version 1.0.1 available.\\n\",\n      \"I0929 22:26:32.947797 139811974653760 modeling_xlnet.py:194] Better speed can be achieved with apex installed from https://www.github.com/nvidia/apex .\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import logging\\n\",\n    \"import torch\\n\",\n    \"import transformers\\n\",\n    \"from transformers import GPT2Tokenizer, GPT2Config, GPT2Model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"1.0.1 2.0.0\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(torch.__version__, transformers.__version__)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"device = torch.device(\\\"cuda:3\\\" if torch.cuda.is_available() else \\\"cpu\\\")\\n\",\n    \"vocab_file = \\\"./pre-models/gpt2-vocab.json\\\"\\n\",\n    \"merges_file = \\\"./pre-models/gpt2-merges.txt\\\"\\n\",\n    \"\\n\",\n    \"config_file = \\\"./pre-models/gpt2-config.json\\\"\\n\",\n    \"# model_file = \\\"./pre-models/gpt2-pytorch_model.bin\\\"\\n\",\n    \"\\n\",\n    \"model_dir = \\\"./pre-models\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Encoder\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor([ 8241,   373,  5395,   367, 19069,  5633,  5395,   367, 19069,   373,\\n\",\n      \"          257])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 激活logger 看更多信息\\n\",\n    \"logging.basicConfig(level=logging.INFO)\\n\",\n    \"\\n\",\n    \"# 加载预训练模型gpt2tokenizer (vocabulary)\\n\",\n    \"tokenizer = GPT2Tokenizer(vocab_file=vocab_file, merges_file=merges_file)  # 还可以输入unk_token、bos_token、eos_token\\n\",\n    \"# 编码文本\\n\",\n    \"text = \\\"Who was Jim Henson ? Jim Henson was a \\\"\\n\",\n    \"indexed_tokens = tokenizer.encode(text)\\n\",\n    \"\\n\",\n    \"# 装换为 a PyTorch tensor\\n\",\n    \"tokens_tensor = torch.tensor([indexed_tokens])\\n\",\n    \"print(tokens_tensor[0])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Decoder\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"I0928 01:17:28.144083 140176204212032 modeling_utils.py:334] loading weights file ./pre-models/pytorch_model.bin\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"预测文本： Who was Jim Henson? Jim Henson was a man\\n\",\n      \"predicted word:  man\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# 使用 预测文本的下一个单词\\n\",\n    \"# 加载本地预训练模型(weights)\\n\",\n    \"config = GPT2Config.from_json_file(json_file=config_file)\\n\",\n    \"model = transformers.GPT2LMHeadModel.from_pretrained(model_dir, from_tf=False, config=config)\\n\",\n    \"\\n\",\n    \"# 设置模型的eval模式以停用dropout模块\\n\",\n    \"# This is IMPORTANT to have reproductible【可繁殖？】 results during evaluation!\\n\",\n    \"model.eval()\\n\",\n    \"\\n\",\n    \"# 使用GPU\\n\",\n    \"tokens_tensor = tokens_tensor.to(device)\\n\",\n    \"model.to(device)\\n\",\n    \"\\n\",\n    \"# 预测\\n\",\n    \"with torch.no_grad():\\n\",\n    \"    outputs = model(tokens_tensor)\\n\",\n    \"    predictions = outputs[0]\\n\",\n    \"\\n\",\n    \"# 预测文本的下一个单词\\n\",\n    \"predicted_index = torch.argmax(predictions[0, -1, :]).item()\\n\",\n    \"predicted_text = tokenizer.decode(indexed_tokens + [predicted_index])\\n\",\n    \"print(\\\"预测文本：\\\", predicted_text)\\n\",\n    \"print(\\\"predicted word:\\\", tokenizer.decode([predicted_index]))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 方法二\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"?GPT2Tokenizer\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P009StructureLearning/POS-RNN-hw.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 用RNN做POS tagging\\n\",\n    \"\\n\",\n    \"姓名: \\\\[write-your-name-here\\\\]\\n\",\n    \"\\n\",\n    \"在这份作业中，你会用一个bidirectional recurrent neural network来做POS tagging。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# import necessary libraries and set the random seeds\\n\",\n    \"\\n\",\n    \"import os\\n\",\n    \"import torch\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.optim as optim\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"from torch.optim import lr_scheduler\\n\",\n    \"from torchtext import data\\n\",\n    \"import numpy as np\\n\",\n    \"import random\\n\",\n    \"from torch.utils.data import Dataset\\n\",\n    \"import time\\n\",\n    \"import shutil\\n\",\n    \"\\n\",\n    \"EMBEDDING_DIM = 300\\n\",\n    \"HIDDEN_DIM = 200\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"USE_CUDA = torch.cuda.is_available()\\n\",\n    \"random.seed(53113)\\n\",\n    \"np.random.seed(53113)\\n\",\n    \"torch.manual_seed(53113)\\n\",\n    \"if USE_CUDA:\\n\",\n    \"    torch.cuda.manual_seed(53113)\\n\",\n    \"    \\n\",\n    \"BATCH_SIZE = 128\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"载入POS tagging训练和dev数据集。这些文件都是tab分隔的text和POS tag数据，\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def load_datasets():\\n\",\n    \"    text = data.Field(include_lengths=True)\\n\",\n    \"    tags = data.Field()\\n\",\n    \"#     train_data, val_data, test_data = data.TabularDataset.splits(path='Pytorch-POS-Tagger/RNN_Data_files/', train='train_data.tsv', validation='val_data.tsv', test='val_data.tsv', fields=[('text', text), ('tags', tags)], format='tsv')\\n\",\n    \"    train_data, val_data, test_data = data.TabularDataset.splits(path='./', train='train.txt', validation='dev.txt', test='dev.txt', fields=[('text', text), ('tags', tags)], format='tsv')\\n\",\n    \"\\n\",\n    \"    \\n\",\n    \"    batch_sizes = (BATCH_SIZE, BATCH_SIZE, BATCH_SIZE)\\n\",\n    \"    train_loader, dev_loader, test_loader = data.BucketIterator.splits((train_data, val_data, test_data), batch_sizes=batch_sizes, sort_key=lambda x: len(x.text))\\n\",\n    \"\\n\",\n    \"    text.build_vocab(train_data)\\n\",\n    \"    tags.build_vocab(train_data)\\n\",\n    \"    dataloaders = {'train': train_loader,\\n\",\n    \"                   'validation': dev_loader,\\n\",\n    \"                   'test': dev_loader}\\n\",\n    \"    return text, tags, dataloaders\\n\",\n    \"\\n\",\n    \"text, tags, dataloaders = load_datasets()\\n\",\n    \"text_vocab_size = len(text.vocab.stoi) + 1\\n\",\n    \"tag_vocab_size = len(tags.vocab.stoi) - 1   # = 42 (not including the <pad> token\\n\",\n    \"print(text_vocab_size)\\n\",\n    \"print(tag_vocab_size)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class POSDataset(Dataset):\\n\",\n    \"    def __init__(self, path, sen_vocab, tag_vocab):\\n\",\n    \"        super(POSDataset, self).__init__()\\n\",\n    \"        self.sen_vocab = sen_vocab\\n\",\n    \"        self.tag_vocab = tag_vocab\\n\",\n    \"        self.num_classes = tag_vocab.size()\\n\",\n    \"        sen_file = os.path.join(path, 'sentences.txt')\\n\",\n    \"        tag_file = os.path.join(path, 'tags.txt')\\n\",\n    \"        self.sentences = []\\n\",\n    \"        with open(sen_file, 'r') as f:\\n\",\n    \"            for line in f:\\n\",\n    \"                idxs = self.sen_vocab.toIdx(line.rstrip('\\\\n').split(' '))\\n\",\n    \"                tensor = torch.LongTensor(idxs)\\n\",\n    \"                self.sentences.append(tensor)\\n\",\n    \"\\n\",\n    \"        self.tags = []\\n\",\n    \"        with open(tag_file, 'r') as f:\\n\",\n    \"            for line in f:\\n\",\n    \"                idxs = self.tag_vocab.toIdx(line.rstrip('\\\\n').split(' '))\\n\",\n    \"                tensor = torch.LongTensor(idxs)\\n\",\n    \"                self.tags.append(tensor)\\n\",\n    \"\\n\",\n    \"        # making sure there are same number of sentences as tags.\\n\",\n    \"        assert(len(self.sentences) == len(self.tags))\\n\",\n    \"\\n\",\n    \"    def __getitem__(self, index):\\n\",\n    \"        sentence = self.sentences[index]\\n\",\n    \"        tags = self.tags[index]\\n\",\n    \"        return sentence, tags\\n\",\n    \"\\n\",\n    \"    def __len__(self):\\n\",\n    \"        return len(self.sentences)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def sequence_mask(sequence_length, max_len=None):\\n\",\n    \"    ''' Given a tensor of a sequence of lengths, create a mask of each length. \\n\",\n    \"    '''\\n\",\n    \"    if max_len is None:\\n\",\n    \"        max_len = sequence_length.data.max()\\n\",\n    \"    batch_size = sequence_length.size(0)\\n\",\n    \"    seq_range = torch.range(0, max_len - 1).long()\\n\",\n    \"    seq_range_expand = seq_range.unsqueeze(0).expand(batch_size, max_len)\\n\",\n    \"    if sequence_length.is_cuda:\\n\",\n    \"        seq_range_expand = seq_range_expand.cuda()\\n\",\n    \"    seq_length_expand = (sequence_length.unsqueeze(1)\\n\",\n    \"                         .expand_as(seq_range_expand))\\n\",\n    \"    return seq_range_expand < seq_length_expand\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# run one epoch of training\\n\",\n    \"def train(model, train_loader, loss_fn, optimizer, use_gpu=False):\\n\",\n    \"    model.train()  # Set model to training mode\\n\",\n    \"    running_loss = 0.0\\n\",\n    \"    running_corrects = 0\\n\",\n    \"    example_count = 0\\n\",\n    \"    step = 0\\n\",\n    \"    # Iterate over data.\\n\",\n    \"    for batch in train_loader:\\n\",\n    \"        sentences = batch.text[0].transpose(1, 0)\\n\",\n    \"        tags = batch.tags.transpose(1, 0)\\n\",\n    \"        ''' Implement the code to train the model. \\n\",\n    \"            - Prepare the input data (text, tags, mask) to the correct format and shape\\n\",\n    \"            - Run the forward method of the model\\n\",\n    \"            - Compute the loss\\n\",\n    \"            - Run backward on loss for back propagation\\n\",\n    \"            - Run the optimizer to update the model parameters. \\n\",\n    \"            - Compute the number of correct predictions\\n\",\n    \"        '''\\n\",\n    \"        # TODO\\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"        step += 1\\n\",\n    \"        if step % 100 == 0:\\n\",\n    \"            print('loss: {}, running_corrects: {}, example_count: {}, acc: {}'.format(loss.item(), \\n\",\n    \"                            running_corrects, example_count, (running_corrects / example_count) * 100))\\n\",\n    \"        if step * batch_size >= 40000:\\n\",\n    \"            break\\n\",\n    \"    loss = running_loss / example_count\\n\",\n    \"    acc = (running_corrects / example_count) * 100\\n\",\n    \"    print(loss)\\n\",\n    \"    print(acc)\\n\",\n    \"    print('Train Loss: {:.4f} Acc: {:2.3f} ({}/{})'.format(loss, acc, running_corrects, example_count))\\n\",\n    \"    return loss, acc\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def validate(model, val_loader, loss_fn, use_gpu=False):\\n\",\n    \"    model.eval()  # Set model to evaluate mode\\n\",\n    \"    running_loss = 0.0\\n\",\n    \"    running_corrects = 0\\n\",\n    \"    example_count = 0\\n\",\n    \"    # Iterate over data.\\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for batch in val_loader:\\n\",\n    \"            sentences = batch.text[0].transpose(1, 0)\\n\",\n    \"            tags = batch.tags.transpose(1, 0) \\n\",\n    \"            ''' Similar to training, do the following to evaluate the model.  \\n\",\n    \"            - Prepare the input data (text, tags, mask) to the correct format and shape\\n\",\n    \"            - Run the forward method of the model\\n\",\n    \"            - Compute the loss\\n\",\n    \"            - Compute the number of correct predictions\\n\",\n    \"            '''\\n\",\n    \"            # TODO\\n\",\n    \"            \\n\",\n    \"\\n\",\n    \"    loss = running_loss / example_count\\n\",\n    \"    acc = (running_corrects / example_count) * 100\\n\",\n    \"    print(loss)\\n\",\n    \"    print(acc)\\n\",\n    \"    print('Validation Loss: {:.4f} Acc: {:2.3f} ({}/{})'.format(loss, acc, running_corrects, example_count))\\n\",\n    \"    return loss, acc\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def train_model(model, data_loaders, criterion, optimizer, scheduler, save_dir, num_epochs=25, use_gpu=False):\\n\",\n    \"    print('Training Model with use_gpu={}...'.format(use_gpu))\\n\",\n    \"    since = time.time()\\n\",\n    \"\\n\",\n    \"    best_model_wts = model.state_dict()\\n\",\n    \"    best_acc = 0.0\\n\",\n    \"    for epoch in range(num_epochs):\\n\",\n    \"        print('Epoch {}/{}'.format(epoch, num_epochs - 1))\\n\",\n    \"        print('-' * 10)\\n\",\n    \"        train_begin = time.time()\\n\",\n    \"        train_loss, train_acc = train(model, data_loaders['train'], criterion, optimizer, use_gpu)\\n\",\n    \"        train_time = time.time() - train_begin\\n\",\n    \"        print('Epoch Train Time: {:.0f}m {:.0f}s'.format(train_time // 60, train_time % 60))\\n\",\n    \"        \\n\",\n    \"        validation_begin = time.time()\\n\",\n    \"        val_loss, val_acc = validate(model, data_loaders['validation'], criterion, use_gpu)\\n\",\n    \"        validation_time = time.time() - validation_begin\\n\",\n    \"        print('Epoch Validation Time: {:.0f}m {:.0f}s'.format(validation_time // 60, validation_time % 60))\\n\",\n    \"        \\n\",\n    \"        # deep copy the model\\n\",\n    \"        is_best = val_acc > best_acc\\n\",\n    \"        if is_best:\\n\",\n    \"            best_acc = val_acc\\n\",\n    \"            best_model_wts = model.state_dict()\\n\",\n    \"\\n\",\n    \"        save_checkpoint(save_dir, {\\n\",\n    \"            'epoch': epoch,\\n\",\n    \"            'best_acc': best_acc,\\n\",\n    \"            'state_dict': model.state_dict(),\\n\",\n    \"            # 'optimizer': optimizer.state_dict(),\\n\",\n    \"        }, is_best)\\n\",\n    \"\\n\",\n    \"        scheduler.step()\\n\",\n    \"\\n\",\n    \"    time_elapsed = time.time() - since\\n\",\n    \"    print('Training complete in {:.0f}m {:.0f}s'.format(\\n\",\n    \"        time_elapsed // 60, time_elapsed % 60))\\n\",\n    \"    print('Best val Acc: {:4f}'.format(best_acc))\\n\",\n    \"    # load best model weights\\n\",\n    \"    model.load_state_dict(best_model_wts)\\n\",\n    \"\\n\",\n    \"    return model\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def save_checkpoint(save_dir, state, is_best):\\n\",\n    \"    savepath = save_dir + '/' + 'checkpoint.pth.tar'\\n\",\n    \"    torch.save(state, savepath)\\n\",\n    \"    if is_best:\\n\",\n    \"        shutil.copyfile(savepath, save_dir + '/' + 'model_best.pth.tar')\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def test_model(model, test_loader, use_gpu=False):\\n\",\n    \"    model.eval()  # Set model to evaluate mode\\n\",\n    \"    running_corrects = 0\\n\",\n    \"    example_count = 0\\n\",\n    \"    test_begin = time.time()\\n\",\n    \"    # Iterate over data.\\n\",\n    \"    with torch.no_grad():\\n\",\n    \"        for batch in test_loader:\\n\",\n    \"            sentences = batch.text[0].transpose(1, 0)\\n\",\n    \"            tags = batch.tags.transpose(1, 0)\\n\",\n    \"            ''' Similar to dev, except do we not need to compute the loss here\\n\",\n    \"            '''\\n\",\n    \"            # TODO\\n\",\n    \"            \\n\",\n    \"\\n\",\n    \"    acc = (running_corrects / example_count) * 100\\n\",\n    \"    print('Test Acc: {:2.3f} ({}/{})'.format(acc, running_corrects, example_count))\\n\",\n    \"    test_time = time.time() - test_begin\\n\",\n    \"    print('Test Time: {:.0f}m {:.0f}s'.format(test_time // 60, test_time % 60))\\n\",\n    \"    return acc\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Define the model\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class POSTagger(nn.Module):\\n\",\n    \"    def __init__(self, rnn_class, embedding_dim, hidden_dim, vocab_size, target_size, num_layers):\\n\",\n    \"        super(POSTagger, self).__init__()\\n\",\n    \"        ''' Define your model here\\n\",\n    \"            Basically, your model only need three components:\\n\",\n    \"            - an embedding layer\\n\",\n    \"            - a bidirectional RNN (LSTM, GRU) that takes the embeddings and outputs hidden states\\n\",\n    \"            - a final linear prediction layer to convert hidden states to tag scores\\n\",\n    \"            Optionally, define extra layers such as dropout to prevent overfitting. \\n\",\n    \"        ''' \\n\",\n    \"        # TODO\\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"    def forward(self, sentences):\\n\",\n    \"        ''' Define your forward method\\n\",\n    \"        ''' \\n\",\n    \"        # TODO\\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"        return tag_scores\\n\",\n    \"    \\n\",\n    \"model = POSTagger(\\\"lstm\\\", EMBEDDING_DIM, HIDDEN_DIM, text_vocab_size, tag_vocab_size, 3)\\n\",\n    \"if USE_CUDA:\\n\",\n    \"    model = model.cuda()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"LR = 0.001\\n\",\n    \"GAMMA = 1.\\n\",\n    \"STEP_SIZE = 10\\n\",\n    \"NUM_EPOCHS = 10\\n\",\n    \"SAVE_DIR = \\\"./save/\\\"\\n\",\n    \"loss_fn = nn.CrossEntropyLoss(size_average=False)\\n\",\n    \"optimizer = optim.Adam(model.parameters(), lr=LR)\\n\",\n    \"exp_lr_scheduler = lr_scheduler.StepLR(optimizer, step_size=STEP_SIZE, gamma=GAMMA)\\n\",\n    \"model = train_model(model, dataloaders, loss_fn, optimizer, exp_lr_scheduler, SAVE_DIR, NUM_EPOCHS, use_gpu=USE_CUDA)\\n\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.7.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P009StructureLearning/dev.txt",
    "content": "He suspects sugar dust , which can be volatile , may have caused the explosion .\tPRP VBZ NN NN , WDT MD VB JJ , MD VB VBN DT NN .\nAbout 100 workers were inside the refinery at the time of the blast .\tIN CD NNS VBD IN DT NN IN DT NN IN DT NN .\nUnited Nations agencies are appealing for immediate assistance to communities on the Somali coast affected by South Asia 's earthquake-generated tsunami .\tNNP NNPS NNS VBP VBG IN JJ NN TO NNS IN DT JJ NN VBN IN NNP NNP POS JJ NN .\nThe appeal was issued Friday by the U.N. Office for the Coordination of Humanitarian Affairs , which took part in an aerial assessment of the affected areas in northern Somalia .\tDT NN VBD VBN NNP IN DT NNP NNP IN DT NN IN NNP NNP , WDT VBD NN IN DT JJ NN IN DT JJ NNS IN JJ NNP .\nMeanwhile , the number of dead in Somalia has climbed to at least 132 people , although the Associated Press quotes a senior Somali official as putting the number at 200 .\tRB , DT NN IN JJ IN NNP VBZ VBN TO IN JJS CD NNS , IN DT NNP NNP VBZ DT JJ JJ NN IN VBG DT NN IN CD .\nMany others remain missing .\tJJ NNS VBP JJ .\nThe United Nations says it is difficult to get a clear picture of both the number of those killed and the extent of the damage because the region is remote and the conditions are harsh .\tDT NNP NNP VBZ PRP VBZ JJ TO VB DT JJ NN IN DT DT NN IN DT VBN CC DT NN IN DT NN IN DT NN VBZ JJ CC DT NNS VBP JJ .\nThe U.N. World Food Program began distributing relief supplies Wednesday in the town of Hafun on the northern coast of Somalia .\tDT NNP NNP NNP NNP VBD VBG NN NNS NNP IN DT NN IN NNP IN DT JJ NN IN NNP .\nThe tsunami also took lives in Tanzania , Seychelles and Kenya .\tDT NN RB VBD NNS IN NNP , NNP CC NNP .\nOlympic champion Philipp Schoch of Switzerland and compatriot Ursula Bruhin have won World Cup parallel giant slalom snowboard events in Le Relais , Canada .\tJJ NN NNP NNP IN NNP CC NN NNP NNP VBP VBN NNP NNP NN NN NN VBD NNS IN NNP NNP , NNP .\nSchoch beat Austrian Andreas Prommegger in the final , winning both runs .\tNNP VBD JJ NNP NNP IN DT JJ , VBG DT NNS .\nSchoch leads the World Cup standings with 1,700 points .\tNNP VBZ DT NNP NNP NNS IN CD NNS .\nCountryman Heinz Inniger is second ( 1,630 points ) with Switzerland 's Gilles Jaquet third ( 1,460 points ) .\tNNP NNP NNP VBZ JJ LRB CD NNS RRB IN NNP POS NNP NNP JJ LRB CD NNS RRB .\nIn the women 's final , Ursula Bruhin beat compatriot Fraenzi Kohli in both runs to take the title .\tIN DT NNS POS JJ , NNP NNP VBD NN NNP NNP IN DT NNS TO VB DT NN .\nAnother Swiss athlete , Daniela Meuli , finished third .\tDT JJ NN , NNP NNP , VBD JJ .\nBruhin is tied with French skier Julie Pomagalski atop the World Cup standings with 1,950 points .\tNNP VBZ VBN IN JJ NN NNP NNP IN DT NNP NNP NNS IN CD NNS .\nSalt Lake City gold medalist Isabelle Blanc of France is third with 1,900 points .\tNNP NNP NNP NN NN NNP NNP IN NNP VBZ JJ IN CD NNS .\nYemen has executed an Islamic militant convicted of killing three American medical workers in 2002 .\tNNP VBZ VBN DT JJ NN VBN IN VBG CD JJ JJ NNS IN CD .\nAuthorities say a firing squad killed Abed Abdul Razak Kamel in the central prison of Yemen 's Ibb province Monday , one day after President Ali Abdullah Saleh endorsed his death sentence .\tNNS VBP DT NN NN VBD NNP NNP NNP NNP IN DT JJ NN IN NNP POS NNP NN NNP , CD NN IN NNP NNP NNP NNP VBD PRP$ NN NN .\nKamel opened fire on American medical staff at a Baptist hospital in the southern Yemen town of Jibla .\tNNP VBD NN IN JJ JJ NN IN DT JJ NN IN DT JJ NNP NN IN NNP .\nAuthorities believe he may have been part of or linked to a terror network .\tNNS VBP PRP MD VB VBN NN IN CC VBN TO DT NN NN .\nA prominent leader of France 's far-right has gone on trial for questioning whether the Nazis used gas chambers in the Holocaust .\tDT JJ NN IN NNP POS NN VBZ VBN IN NN IN VBG IN DT NNPS VBD NN NNS IN DT NNP .\nBruno Gollnisch , the deputy leader of France 's National Front Party , appeared in court in Lyon to answer charges of ' disputing crimes against humanity . '\tNNP NNP , DT JJ NN IN NNP POS NNP NNP NNP , VBD IN NN IN NNP TO VB NNS IN `` VBG NNS IN NN . ``\nGollnisch , a member of the European parliament , received a five-year suspension from his post as a professor of Japanese at Lyon University after he made the comments at a press conference in 2004 .\tNNP , DT NN IN DT JJ NN , VBD DT JJ NN IN PRP$ NN IN DT NN IN NNP IN NNP NNP IN PRP VBD DT NNS IN DT NN NN IN CD .\nHe faces a possible one-year prison sentence if he is convicted .\tPRP VBZ DT JJ JJ NN NN IN PRP VBZ VBN .\nA government spokesman says Pakistani President Pervez Musharraf will seek another five-year term after his current tenure ends in 2007 .\tDT NN NN VBZ JJ NNP NNP NNP MD VB DT JJ NN IN PRP$ JJ NN VBZ IN CD .\nPakistan 's Information Minister Sheikh Rashid Ahmed made the announcement Tuesday , saying Pakistan needs his leadership .\tNNP POS NNP NNP NNP NNP NNP VBD DT NN NNP , VBG NNP VBZ PRP$ NN .\nHe did not say if he would also continue as the army chief .\tPRP VBD RB VB IN PRP MD RB VB IN DT NN NN .\nPakistan 's parliament currently has a majority of pro-Musharraf lawmakers , and it was generally considered likely that General Musharraf would remain at the helm after the general elections in 2007 .\tNNP POS NN RB VBZ DT NN IN JJ NNS , CC PRP VBD RB VBN JJ IN NNP NNP MD VB IN DT NN IN DT JJ NNS IN CD .\nBut up until now he had not publicly declared his intentions .\tCC IN IN RB PRP VBD RB RB VBD PRP$ NNS .\nGeneral Musharraf seized power in a bloodless coup in October , 1999 , appointed himself president in June , 2001 , and won a heavily criticized referendum in April , 2002 .\tNNP NNP VBD NN IN DT JJ NN IN NNP , CD , VBD PRP NN IN NNP , CD , CC VBD DT RB VBN NN IN NNP , CD .\nHe then won a parliamentary vote of confidence a year later .\tPRP RB VBD DT JJ NN IN NN DT NN RB .\nUganda 's main opposition leader Kizza Besigye has pleaded not guilty to charges of treason .\tNNP POS JJ NN NN NNP NNP VBZ VBN RB JJ TO NNS IN NN .\nTwenty two co-defendants also entered pleas of innocence during a hearing in Uganda 's High Court Tuesday .\tCD CD NNS RB VBD NNS IN NN IN DT NN IN NNP POS NNP NNP NNP .\nBesigye 's supporters say the treason charge is one of several the government made up to keep him from making an effective challenge to President Yoweri Museveni in recent elections .\tNNP POS NNS VBP DT NN NN VBZ CD IN JJ DT NN VBN RP TO VB PRP IN VBG DT JJ NN TO NNP NNP NNP IN JJ NNS .\nMuseveni won the February election but Besigye 's party has asked the Ugandan Supreme Court to nullify the results .\tNNP VBD DT NNP NN CC NNP POS NN VBZ VBN DT JJ NNP NNP TO VB DT NNS .\nThe High Court dropped rape charges against Besigye last month , and President Museveni said Besigye would not be tried by a military court that had charged him with terrorism and illegal arms possession .\tDT NNP NNP VBD NN NNS IN NNP JJ NN , CC NNP NNP VBD NNP MD RB VB VBN IN DT JJ NN WDT VBD VBN PRP IN NN CC JJ NNS NN .\nThe treason trial proceedings have been adjourned until Wednesday because the court did not have a translator for the first prosecution witness , a woman who speaks the Acholi language .\tDT NN NN NNS VBP VBN VBN IN NNP IN DT NN VBD RB VB DT NN IN DT JJ NN NN , DT NN WP VBZ DT NNP NN .\nThe World Health Organization says an outbreak of Marburg virus in Angola is not yet over , as the death toll continues to rise .\tDT NNP NNP NNP VBZ DT NN IN NNP NN IN NNP VBZ RB RB RB , IN DT NN NN VBZ TO VB .\nA WHO spokeswoman , Aphaluck Bhatiasevi , says there have been some recent cases that do not have a clear link to previous cases , a finding the U.N. agency is concerned about .\tDT NNP NN , NNP NNP , VBZ EX VBP VBN DT JJ NNS WDT VBP RB VB DT JJ NN TO JJ NNS , DT VBG DT NNP NN VBZ JJ IN .\nAngolan officials say 292 people have died from Marburg out of a total of 336 people identified as having been infected by the virus .\tJJ NNS VBP CD NNS VBP VBN IN NNP IN IN DT NN IN CD NNS VBN IN VBG VBN VBN IN DT NN .\nSo far , all those infected are believed to have contracted the disease in northern Uige province .\tRB RB , DT DT VBN VBP VBN TO VB VBN DT NN IN JJ NNP NN .\nThe virus kills quickly , spreading through contact with bodily fluids such as blood , excrement , vomit and saliva .\tDT NN VBZ RB , VBG IN NN IN RB NNS JJ IN NN , NN , NN CC NN .\nThree Jordanians and an Algerian man have been convicted Wednesday of plotting attacks on Jewish targets in Germany .\tCD NNS CC DT JJ NN VBP VBN VBN NNP IN VBG NNS IN JJ NNS IN NNP .\nThe three Jordanian men , Mohammed Abu Dhess , Ismail Shalabi , and Ashraf al-Dagma were also convicted of belonging to al-Tawhid , an organization believed to be linked to al-Qaida and headed by Abu Musab al-Zarqawi , who now claims to be head of al-Qaeda in Iraq .\tDT CD JJ NNS , NNP NNP NNP , NNP NNP , CC NNP NNP VBD RB VBN IN VBG IN NNP , DT NN VBN TO VB VBN TO NNP CC VBN IN NNP NNP NNP , WP RB VBZ TO VB NN IN NNP IN NNP .\nThey were sentenced to six to eight years in prison .\tPRP VBD VBN TO CD TO CD NNS IN NN .\nThe Algerian , Djamel Mustafa was sentenced to five years in prison for his role in planning attacks and supporting a terrorist group .\tDT NN , NNP NNP VBD VBN TO CD NNS IN NN IN PRP$ NN IN VBG NNS CC VBG DT JJ NN .\nAll four were accused of planning to use explosives against Jewish-owned discotheques in Dusseldorf and a Jewish community center in Berlin .\tDT CD VBD VBN IN VBG TO VB NNS IN JJ NNS IN NNP CC DT JJ NN NN IN NNP .\nAnother Jordanian man , Shadi Abdalla was convicted separately in 2003 .\tDT JJ NN , NNP NNP VBD VBN RB IN CD .\nHe testified against the other four suspects .\tPRP VBD IN DT JJ CD NNS .\nGoogle won a key European Union court ruling on trademark issues Tuesday .\tNNP VBD DT JJ NNP NNP NN NN IN NN NNS NNP .\nThe European Court of Justice , Europe 's highest court , said Google did not violate luxury goods trademarks by allowing companies to buy other companies ' brand names as advertising key words .\tDT NNP NNP IN NNP , NNP POS JJS NN , VBD NNP VBD RB VB NN NNS NNS IN VBG NNS TO VB JJ NNS POS NN NNS IN NN JJ NNS .\nGoogle is the world 's most-widely used Internet search company , and it makes tens of billions of dollars a year by selling the right to display advertisements next to search results .\tNNP VBZ DT NN POS RB VBN NNP NN NN , CC PRP VBZ NNS IN NNS IN NNS DT NN IN VBG DT NN TO VB NNS JJ TO NN NNS .\nLuxury goods makers like Luis Vuitton complained that competitors were buying the right to use Luis Vuitton brand names as key words .\tNN NNS NNS IN NNP NNP VBD IN NNS VBD VBG DT NN TO VB NNP NNP NN NNS IN JJ NNS .\nThat could guide customers to buy goods at web sites run by Vuitton 's competitors , including counterfeiters .\tDT MD VB NNS TO VB NNS IN NN NNS VBN IN NNP POS NNS , VBG NNS .\nThe European Court of Justice said Google must remove the advertisements quickly if trademark holders show the ads are used for illegal activity like selling counterfeit goods .\tDT NNP NNP IN NNP VBD NNP MD VB DT NNS RB IN NN NNS VBP DT NNS VBP VBN IN JJ NN IN VBG NN NNS .\nOpera fans in New York were recently treated to a rare performance of one the most ambitious musical theater pieces ever produced .\tNNP NNS IN NNP NNP VBD RB VBN TO DT JJ NN IN CD DT RBS JJ JJ NN NNS RB VBD .\nBernd Alois Zimmermann 's Die Soldaten was mounted in the cavernous drill hall of the Park Avenue Armory .\tNNP NNP NNP POS NNP NNP VBD VBN IN DT JJ NN NN IN DT NNP NNP NNP .\nVOA 's Behnam Nateghi takes us behind the scenes for a closer look at the staging of this German opera .\tNNP POS NNP NNP VBZ PRP IN DT NNS IN DT JJR NN IN DT NN IN DT JJ NN .\nA 300-member delegation from South Korea has arrived in North Korea to take part in celebrations marking the fifth anniversary of the historic 2000 inter-Korean summit .\tDT JJ NN IN NNP NNP VBZ VBN IN NNP NNP TO VB NN IN NNS VBG DT JJ NN IN DT JJ CD JJ NN .\nThe delegation includes politicians and representatives from labor unions , religious and agricultural groups .\tDT NN VBZ NNS CC NNS IN NN NNS , JJ CC JJ NNS .\nThe June 15 , 2000 summit in Pyongyang marked the first and only time the leaders of North and South Korea have met .\tDT NNP CD , CD NN IN NNP VBD DT JJ CC JJ NN DT NNS IN NNP CC NNP NNP VBP VBN .\nSouth Korean Unification Minister Chung Dong-young leads a separate 40 member government delegation to Wednesday 's anniversary celebrations .\tNNP JJ NNP NNP NNP NNP VBZ DT JJ CD NN NN NN TO NNP POS NN NNS .\nMr. Chung is carrying messages from last week 's summit between South Korean President Roh Moo-hyun and President Bush , urging North Korea to return to the six-nation talks aimed at ending its nuclear weapons program .\tNNP NNP VBZ VBG NNS IN JJ NN POS NN IN JJ JJ NNP NNP NNP CC NNP NNP , VBG NNP NNP TO VB TO DT JJ NNS VBN IN VBG PRP$ JJ NNS NN .\nChina has signed a deal with Nigeria to build an $ 8-billion oil refinery near the city of Lagos , in another example of China 's investment in Africa .\tNNP VBZ VBN DT NN IN NNP TO VB DT $ JJ NN NN IN DT NN IN NNP , IN DT NN IN NNP POS NN IN NNP .\nThe Lagos state government made the announcement Tuesday , saying that 80 percent of the money is coming from China and the other 20 percent from the Nigerian National Petroleum Corporation .\tDT NNP NN NN VBD DT NN NNP , VBG IN CD NN IN DT NN VBZ VBG IN NNP CC DT JJ CD NN IN DT JJ NNP NNP NNP .\nThis new refinery is expected to produce some 3,00,000 barrels of oil a day in the Lekki Free Trade Zone in Lagos state .\tDT JJ NN VBZ VBN TO VB DT CD NNS IN NN DT NN IN DT NNP NNP NNP NNP IN NNP NN .\nThe Lagos refinery is part of a larger deal to build three new refineries and a petrochemical complex in Nigeria .\tDT NNP NN VBZ NN IN DT JJR NN TO VB CD JJ NNS CC DT NN NN IN NNP .\nThe new projects are expected to increase the country 's production of refined oil from 4,50,000 barrels to 7,50,000 barrels per day .\tDT JJ NNS VBP VBN TO VB DT NN POS NN IN JJ NN IN CD NNS TO CD NNS IN NN .\nNigeria is one of the world 's biggest oil producers , but its current refineries operate far below capacity because of aging equipment and poor maintenance .\tNNP VBZ CD IN DT NN POS JJS NN NNS , CC PRP$ JJ NNS VBP RB IN NN IN IN VBG NN CC JJ NN .\nFormer rebels in Indonesia 's Aceh province are beginning a second round of weapons surrender Friday as part of a peace accord designed to end 29 years of separatist violence .\tJJ NNS IN NNP POS NNP NN VBP VBG DT JJ NN IN NNS NN NNP IN NN IN DT NN NN VBN TO VB CD NNS IN JJ NN .\nMembers of the Free Aceh Movement are expected to hand over 210 more weapons in the next few days to international monitors in northern Aceh .\tNNS IN DT NNP NNP NNP VBP VBN TO VB IN CD JJR NNS IN DT JJ JJ NNS TO JJ NNS IN JJ NNP .\nIn return , the Indonesian government is scheduled to withdraw 6,500 more soldiers from the province .\tIN NN , DT JJ NN VBZ VBN TO VB CD JJR NNS IN DT NN .\nUnder the peace accord , the Free Aceh Movement must decommission all its weapons in exchange for the withdrawal of 32,000 police and troops by the end of the year .\tIN DT NN NN , DT NNP NNP NNP MD VB DT PRP$ NNS IN NN IN DT NN IN CD NNS CC NNS IN DT NN IN DT NN .\nImplementation began in September .\tNN VBD IN NNP .\nMany Acehnese want a separate Islamic state and resent that profits from their rich natural resources have been directed elsewhere by the central government in Jakarta .\tJJ NNP VBP DT JJ JJ NN CC NN IN NNS IN PRP$ JJ JJ NNS VBP VBN VBN RB IN DT JJ NN IN NNP .\nWorld oil prices declined below $ 54 a barrel Friday after hitting records above $ 58 early this week .\tNNP NN NNS VBD IN $ CD DT NN NNP IN VBG NNS IN $ CD RB DT NN .\nThe easing of prices follows a U.S. government report on Wednesday showing an increasing supply of crude oil in the U.S. market , and growing refinery operations to turn out gasoline .\tDT NN IN NNS VBZ DT NNP NN NN IN NNP VBG DT VBG NN IN JJ NN IN DT NNP NN , CC VBG NN NNS TO VB RP NN .\nWhile prices have dropped , they are still about 44 percent higher than they were a year ago .\tIN NNS VBP VBN , PRP VBP RB IN CD NN JJR IN PRP VBD DT NN RB .\nMost economists surveyed by the Bloomberg financial news service say high oil prices and rising interest rates will slow U.S. economic growth later this year .\tJJS NNS VBN IN DT NNP JJ NN NN VBP JJ NN NNS CC VBG NN NNS MD VB NNP JJ NN RB DT NN .\nGeorgian President Mikhail Saakashvili has presented his nominee for prime minister to parliament , one week after the death of the previous minister .\tJJ NNP NNP NNP VBZ VBN PRP$ NN IN JJ NN TO NN , CD NN IN DT NN IN DT JJ NN .\nMr. Saakashvili praised the work of the nominee , Finance Minister Zurab Nogaideli , and said he deserves the promotion .\tNNP NNP VBD DT NN IN DT NN , NNP NNP NNP NNP , CC VBD PRP VBZ DT NN .\nLawmakers are to vote on the nomination Friday .\tNNS VBP TO VB IN DT NN NNP .\nParliament speaker Nino Burdzhanadze had said the choice was quite unexpected , and other candidates had been under consideration .\tNNP NN NNP NNP VBD VBN DT NN VBD RB JJ , CC JJ NNS VBD VBN IN NN .\nMr. Nogaideli would succeed Zurab Zhvania , who was found dead last week in a Tbilisi apartment from what officials say was accidental gas poisoning .\tNNP NNP MD VB NNP NNP , WP VBD VBN JJ JJ NN IN DT NNP NN IN WP NNS VBP VBD JJ NN NN .\nIn his address to parliament Thursday , President Saakashvili also hailed the achievements Georgia has made in battling corruption and boosting the economy since his election just over one year ago .\tIN PRP$ NN TO NN NNP , NNP NNP RB VBD DT NNS NNP VBZ VBN IN VBG NN CC VBG DT NN IN PRP$ NN RB IN CD NN RB .\nHe also said he is ready to travel again to Russia to strengthen relations with Moscow .\tPRP RB VBD PRP VBZ JJ TO VB RB TO NNP TO VB NNS IN NNP .\nPresident Bush has thanked U.S. and Iraqi troops for working to ensure a safe voting environment as Iraqis vote on a new constitution Saturday .\tNNP NNP VBZ VBN NNP CC JJ NNS IN VBG TO VB DT JJ NN NN IN NNS NN IN DT JJ NN NNP .\nMr. Bush conducted a video conference Thursday with members of the U.S. Army 's 42nd Infantry Division in Tikrit , Iraq , to discuss preparations for Saturday 's constitutional referendum .\tNNP NNP VBD DT NN NN NNP IN NNS IN DT NNP NNP POS JJ NNP NNP IN NNP , NNP , TO VB NNS IN NNP POS JJ NN .\nFirst Lieutenant Greg Murphy told the president that Iraqi troops have taken the lead in security preparations for the vote .\tNNP NNP NNP NNP VBD DT NN IN JJ NNS VBP VBN DT NN IN NN NNS IN DT NN .\nHe said conditions were different in the January elections for a transitional government , when coalition troops controlled security .\tPRP VBD NNS VBD JJ IN DT NNP NNS IN DT JJ NN , WRB NN NNS VBN NN .\nCaptain David Williams says Iraqis are ready and eager to vote on the constitution .\tNNP NNP NNP VBZ NNS VBP JJ CC JJ TO VB IN DT NN .\nHe says voter registration in north-central Iraq is up 17 percent , which translates to about 4,00,000 new voters .\tPRP VBZ NN NN IN JJ NNP VBZ IN CD NN , WDT VBZ TO IN CD JJ NNS .\nApproval of the constitution on Saturday would clear the way for national elections in December .\tNNP IN DT NN IN NNP MD VB DT NN IN JJ NNS IN NNP .\nWitnesses say at least 10 people have been injured in a grenade attack on a Somali parliament member 's house .\tNNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN NN IN DT JJ NN NN POS NN .\nThe home of Abdullahi Shaleyste in the southwestern town of Baidoa was attacked late Thursday .\tDT NN IN NNP NNP IN DT JJ NN IN NNP VBD VBN JJ NNP .\nThe lawmaker was apparently unharmed but members of his family were injured in the blast .\tDT NN VBD RB JJ CC NNS IN PRP$ NN VBD VBN IN DT NN .\nAt least four of the wounded are said to be in serious condition .\tIN JJS CD IN DT VBN VBP VBN TO VB IN JJ NN .\nNo one has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nIslamist insurgents have waged a bloody 17-month battle against Somalia 's Ethiopian-backed interim government .\tNNP NNS VBP VBN DT JJ JJ NN IN NNP POS JJ JJ NN .\nThe government and exiled opposition leaders who back the insurgents are set to resume reconcilation talks in Djibouti on Saturday .\tDT NN CC VBN NN NNS WP VBP DT NNS VBP VBN TO VB NN NNS IN NNP IN NNP .\nHowever , leaders of the Eritrean-based Alliance for the Re-Liberation of Somalia appear split on whether the group should be holding the talks .\tRB , NNS IN DT JJ NNP IN DT NN IN NNP VBP NN IN IN DT NN MD VB VBG DT NNS .\nHard-liners in the group say no talks should take place until Ethiopia withdraws its troops from Somalia .\tNNS IN DT NN VBP DT NNS MD VB NN IN NNP VBZ PRP$ NNS IN NNP .\nRussian news media reports say prosecutors have released two of 10 suspects detained in the killing of investigative journalist Anna Politkovskaya .\tJJ NN NNS NNS VBP NNS VBP VBN CD IN CD NNS VBN IN DT NN IN JJ NN NNP NNP .\nThe reports Thursday say authorities freed Oleg Alimov and Alexei Berkin .\tDT NNS NNP VBP NNS VBD NNP NNP CC NNP NNP .\nRussian Prosecutor General Yuri Chaika Monday announced the arrest of 10 people in the case .\tJJ NNP NNP NNP NNP NNP VBD DT NN IN CD NNS IN DT NN .\nHe said the murder was organized by a Chechen emigre who had led a group of contract killers in Moscow .\tPRP VBD DT NN VBD VBN IN DT JJ NN WP VBD VBN DT NN IN NN NNS IN NNP .\nHe said evidence as to a motive pointed to what he called attempts from abroad to destabilize Russia and discredit its leaders .\tPRP VBD NN IN TO DT NN VBD TO WP PRP VBD NNS IN RB TO VB NNP CC VB PRP$ NNS .\nRussian news media reports earlier had named an agent of the Federal Security Service , Pavel Ryaguzov , as one of the suspects in the case .\tJJ NN NNS NNS RBR VBD VBN DT NN IN DT NNP NNP NNP , NNP NNP , IN CD IN DT NNS IN DT NN .\nBut a military court in Moscow Thursday said his arrest is not linked to Politkovskaya 's murder .\tCC DT JJ NN IN NNP NNP VBD PRP$ NN VBZ RB VBN TO NNP POS NN .\nThe journalist was gunned down in her Moscow apartment building last year on October 7 .\tDT NN VBD VBN RB IN PRP$ NNP NN NN JJ NN IN NNP CD .\nThe spiritual leader of the Anglican church has written an article criticizing the U.S. and British governments for their roles in the Iraq war .\tDT JJ NN IN DT JJ NN VBZ VBN DT NN VBG DT NNP CC JJ NNS IN PRP$ NNS IN DT NNP NN .\nThe Archbishop of Canterbury , Rowan Williams , says in an article published in the London Times Saturday that military actions in the Middle East put Christians in the region at risk .\tDT NN IN NNP , NNP NNP , VBZ IN DT NN VBN IN DT NNP NNP NNP IN JJ NNS IN DT NNP NNP VBD NNS IN DT NN IN NN .\nThe Archbishop said that Middle Eastern Christians are frequently seen as supporters of the West .\tDT NN VBD IN NNP NNP NNPS VBP RB VBN IN NNS IN DT NNP .\nHe says the war has troubled relations between Muslims and Christians in countries such as Iraq , Egypt and Turkey .\tPRP VBZ DT NN VBZ VBN NNS IN NNPS CC NNPS IN NNS JJ IN NNP , NNP CC NNP .\nThe Archbishop wrote specifically about the isolation of Christians in the city of Bethlehem in the West Bank .\tDT NNP VBD RB IN DT NN IN NNS IN DT NN IN NNP IN DT NNP NNP .\nChristians revere Bethlehem as the birthplace of Jesus .\tNNS VBP NNP IN DT NN IN NNP .\nArchbishop Williams has been visiting the Holy Land before Christmas with other church leaders from Britain .\tNNP NNP VBZ VBN VBG DT NNP NNP IN NNP IN JJ NN NNS IN NNP .\nA U.S.-based human rights organization alleges that detainees in U.S. custody in Iraq were routinely subjected to beatings , sleep deprivation , stress positions and other forms of abuse by American interrogators .\tDT JJ JJ NNS NN VBZ IN NNS IN NNP NN IN NNP VBD RB VBN TO NNS , NN NN , NN NNS CC JJ NNS IN NN IN JJ NNS .\nIn a report released Sunday , New York based Human Rights Watch said the findings come from first-hand accounts from U.S. military personnel .\tIN DT NN VBN NNP , NNP NNP VBN NNP NNP NNP VBD DT NNS VBP IN JJ NNS IN NNP JJ NNS .\nThe report alleges that detainee abuse was an established and apparently authorized part of the detention and interrogation process .\tDT NN VBZ IN NN NN VBD DT JJ CC RB JJ NN IN DT NN CC NN NN .\nHuman Rights Watch used the report to call for a Congressional investigation into the scope of detainee abuse and allegations of involvement by higher level officials .\tNNP NNPS NNP VBD DT NN TO VB IN DT JJ NN IN DT NN IN NN NN CC NNS IN NN IN JJR NN NNS .\nBut the U.S. Defense Department has said that multiple reviews of prisoner interrogation methods have concluded that no uniformed or civilian leaders directed or encouraged the prisoner abuses committed in Iraq .\tCC DT NNP NNP NNP VBZ VBN IN JJ NNS IN NN NN NNS VBP VBN IN DT JJ CC JJ NNS VBD CC VBD DT NN NNS VBN IN NNP .\nOne man was seriously wounded and several others injured in clashes between Bosnian Croats and Muslims in Mostar after Croatia 's loss in a World Cup football match Tuesday night .\tCD NN VBD RB VBN CC JJ NNS VBN IN NNS IN JJ NNS CC NNPS IN NNP IN NNP POS NN IN DT NNP NNP NN NN NNP NN .\nPolice said the fighting broke out between Croats disappointed by their team 's loss to Brazil and Muslims who had been cheering for Croatia 's opponents .\tNNS VBD DT NN VBD RP IN NNS VBN IN PRP$ NN POS NN TO NNP CC NNPS WP VBD VBN VBG IN NNP POS NNS .\nPolice were sent in to try to stop the clashes , and 26 people were detained .\tNNS VBD VBN IN TO VB TO VB DT NNS , CC CD NNS VBD VBN .\nSix police officers were injured and one man suffered serious gunshot wounds .\tCD NN NNS VBD VBN CC CD NN VBD JJ NN NNS .\nAlthough the Bosnian war of the early 1990s is over , Mostar has remained divided between its Muslim and Croat communities who fought each other during the conflict .\tIN DT JJ NN IN DT JJ NNS VBZ IN , NNP VBZ VBN VBN IN PRP$ NNP CC JJ NNS WP VBD DT NN IN DT NN .\nBritish officials are denying a newspaper report that London is urging the United States to set a timetable for withdrawing troops from Iraq .\tJJ NNS VBP VBG DT NN NN IN NNP VBZ VBG DT NNP NNPS TO VB DT NN IN VBG NNS IN NNP .\nA spokesman for the office of Prime Minister Tony Blair said Thursday that what is important is not a timetable but to help Iraq while it determines its own future .\tDT NN IN DT NN IN NNP NNP NNP NNP VBD NNP IN WP VBZ JJ VBZ RB DT NN CC TO VB NNP IN PRP VBZ PRP$ JJ NN .\nHe said Britain 's troops will remain in Iraq as long as authorities there want them .\tPRP VBD NNP POS NNS MD VB IN NNP RB RB IN NNS RB VBP PRP .\nHe was responding to a report in London 's Daily Telegraph newspaper , which quoted an unnamed government source as reporting that the Blair administration hopes to have the United States agree to announce a timetable .\tPRP VBD VBG TO DT NN IN NNP POS NNP NNP NN , WDT VBD DT JJ NN NN IN NN IN DT NNP NN VBZ TO VB DT NNP NNPS VBP TO VB DT NN .\nThe newspaper report said that setting the timetable would be an indication that U.S.-led coalition troops do not intend to stay in Iraq indefinitely .\tDT NN NN VBD IN VBG DT NN MD VB DT NN IN JJ NN NNS VBP RB VB TO VB IN NNP RB .\nThe report said the announcement would bolster Iraq 's interim government and undermine insurgents in that country .\tDT NN VBD DT NN MD VB NNP POS JJ NN CC VB NNS IN DT NN .\nPresident Bush has met with Jordan 's King Abdullah at the White House Wednesday .\tNNP NNP VBZ VBN IN NNP POS NNP NNP IN DT NNP NNP NNP .\nThe president said he and the Jordanian monarch had two good meetings over the past two days , discussing Iraq , Iran and the Palestinian territories .\tDT NN VBD PRP CC DT JJ NN VBD CD JJ NNS IN DT JJ CD NNS , VBG NNP , NNP CC DT JJ NNS .\nKing Abdullah called the discussions ' fruitful , ' and said he appreciates Mr. Bush 's desire to promote peace and stability in the Middle East .\tNNP NNP VBD DT NNS `` JJ , `` CC VBD PRP VBZ NNP NNP POS NN TO VB NN CC NN IN DT NNP NNP .\nThe two leaders both rejected the violence triggered by cartoons depicting the Prophet Muhammad , and at the same time called for all religions to be respected .\tDT CD NNS DT VBD DT NN VBN IN NNS VBG DT NNP NNP , CC IN DT JJ NN VBD IN DT NNS TO VB VBN .\nU.S. economic troubles are being blamed for rising energy prices , but it is not just the price of oil that is going up .\tNNP JJ NNS VBP VBG VBN IN VBG NN NNS , CC PRP VBZ RB RB DT NN IN NN WDT VBZ VBG RP .\nThe average grocery bill is also rising .\tDT JJ NN NN VBZ RB VBG .\nTwelve eggs now costs about 30 percent more than they did just a year ago .\tCD NNS RB VBZ IN CD NN JJR IN PRP VBD RB DT NN RB .\nAnd consumer advocates say Americans are not just paying more for some products .\tCC NN NNS VBP NNS VBP RB RB VBG JJR IN DT NNS .\nIn some cases , they are actually getting less .\tIN DT NNS , PRP VBP RB VBG JJR .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nThe head of the U.S. Central Intelligence Agency says CIA interrogators do not torture prisoners to get information .\tDT NN IN DT NNP NNP NNP NNP VBZ NNP NNS VBP RB VB NNS TO VB NN .\nCIA Director Porter Goss says in an interview with the USA Today newspaper published Monday that torture does not work .\tNNP NNP NNP NNP VBZ IN DT NN IN DT NNP NNP NN VBN NNP IN NN VBZ RB VB .\nBut Mr. Goss says interrogators use a variety of what he calls ' unique and innovative ' ways to collect information .\tCC NNP NNP VBZ NNS VBP DT NN IN WP PRP VBZ `` JJ CC JJ `` NNS TO VB NN .\nHe declined to describe interrogation methods .\tPRP VBD TO VB NN NNS .\nRepublican Senator John McCain is pushing a proposal that bars the use of cruel , inhuman or degrading treatment of detainees by military or CIA interrogators .\tNNP NNP NNP NNP VBZ VBG DT NN WDT VBZ DT NN IN JJ , JJ CC JJ NN IN NNS IN JJ CC NNP NNS .\nPresident Bush has threatened to veto any defense spending bill that includes the proposal .\tNNP NNP VBZ VBN TO VB DT NN NN NN WDT VBZ DT NN .\nMr. Goss says the CIA takes a neutral position on Senator McCain 's proposal , adding that some techniques restricted by the measure have yielded valuable intelligence .\tNNP NNP VBZ DT NNP VBZ DT JJ NN IN NNP NNP POS NN , VBG IN DT NNS VBN IN DT NN VBP VBN JJ NN .\nDespite a slowdown in the U.S. economy , the amount of goods the United States ships overseas recently increased .\tIN DT NN IN DT NNP NN , DT NN IN NNS DT NNP NNPS NNS RB RB VBN .\nAccording to the U.S. Department of Commerce , U.S. exports in the second quarter of 2008 expanded at an annualized rate of nine-point-two percent , thanks in large part to a decline in the value of the dollar against other currencies Many U.S. exporters are benefiting from the weak dollar , which makes American goods cheaper abroad , and boosts U.S. firms ' profits when they convert overseas earnings back into dollars .\tVBG TO DT NNP NNP IN NNP , NNP NNS IN DT JJ NN IN CD VBN IN DT JJ NN IN JJ NN , NNS IN JJ NN TO DT NN IN DT NN IN DT NN IN JJ NNS JJ NNP NNS VBP VBG IN DT JJ NN , WDT VBZ JJ NNS JJR RB , CC VBZ NNP NNS POS NNS WRB PRP VBP JJ NNS RB IN NNS .\nBut as Nathan King reports for VOA , it is not just large global corporations that are benefiting .\tCC IN NNP NNP NNS IN NNP , PRP VBZ RB RB JJ JJ NNS WDT VBP VBG .\nIraqi political parties have been registering their candidates for the December 15 general elections after each of the three main Sunni , Shi'ite and Kurdish communities agreed on separate broad coalitions .\tJJ JJ NNS VBP VBN VBG PRP$ NNS IN DT NNP CD JJ NNS IN DT IN DT CD JJ NNP , NNP CC NNP NNS VBD IN JJ JJ NNS .\nLeaders of the dominant Shi'ite United Iraqi Alliance were the latest to announce that they will stay unified .\tNNS IN DT JJ NNP NNP JJ NNP VBD DT JJS TO VB IN PRP MD VB JJ .\nThe two main Kurdish factions and three groups representing the minority Sunni community had each earlier said they will submit single candidate lists for the polls ahead of Friday 's registration deadline .\tDT CD JJ NNP NNS CC CD NNS VBG DT NN NNP NN VBD DT JJR VBD PRP MD VB JJ NN NNS IN DT NNS RB IN NNP POS NN NN .\nThe December elections will mark the third major phase in this year 's political process , following the January poll forming the interim government and the October 15 constitutional referendum .\tDT NNP NNS MD VB DT JJ JJ NN IN DT NN POS JJ NN , VBG DT NNP NN VBG DT JJ NN CC DT NNP CD JJ NN .\nMeanwhile , the U.S. military in Iraq says roadside bombs killed two American soldiers in Baghdad and Ramadi , west of the capital , on Thursday .\tRB , DT NNP NN IN NNP VBZ NN NNS VBD CD JJ NNS IN NNP CC NNP , NN IN DT NN , IN NNP .\nNepalese authorities say they have detained 30 Tibetan exiles who were marching towards the Chinese border to protest the Beijing government .\tJJ NNS VBP PRP VBP VBN CD JJ NNS WP VBD VBG IN DT JJ NN TO VB DT NNP NN .\nAuthorities said the Tibetans were picked up Sunday in the northeastern village of Jalbire , near the border with China .\tNNS VBD DT NNS VBD VBN RP NNP IN DT JJ NN IN NNP , IN DT NN IN NNP .\nThe group was transported back to the Nepalese capital Kathmandu .\tDT NN VBD VBN RB TO DT JJ NN NNP .\nTibetans in Nepal have been holding regular demonstrations against the Chinese government since March , when deadly clashes broke out between protesters and Chinese authorities in the Tibetan capital , Lhasa .\tNNS IN NNP VBP VBN VBG JJ NNS IN DT JJ NN IN NNP , WRB JJ NNS VBD RP IN NNS CC JJ NNS IN DT JJ NN , NNP .\nAbout 20,000 Tibetans live in Nepal .\tIN CD NNS VBP IN NNP .\nMore than 100 of them were detained last week for demonstrating for Tibetan freedom outside the Chinese embassy in Kathmandu .\tJJR IN CD IN PRP VBD VBN JJ NN IN VBG IN JJ NN IN DT JJ NN IN NNP .\nThe U.S.-based group Human Rights Watch has accused China of pressuring Nepal to crack down on the Tibetan protests .\tDT JJ NN NNP NNP NNP VBZ VBN NNP IN VBG NNP TO VB RP IN DT JJ NNS .\nBeijing denies the charge .\tNNP VBZ DT NN .\nTibetans have complained of discrimination by the Chinese since Beijing took over Tibet nearly 60 years ago .\tNNS VBP VBN IN NN IN DT NNS IN NNP VBD RP NNP RB CD NNS RB .\nThe Israeli army says Israeli troops have shot dead a Palestinian gunman during a clash in the northern West Bank .\tDT JJ NN VBZ JJ NNS VBP VBN RB DT JJ NN IN DT NN IN DT JJ NNP NNP .\nArmy officials say Israeli soldiers were conducting a routine patrol early Sunday north of the city of Jenin when they spotted three armed men .\tNNP NNS VBP JJ NNS VBD VBG DT JJ NN JJ NNP NN IN DT NN IN NNP WRB PRP VBD CD JJ NNS .\nThe soldiers opened fire on the group , killing one of them .\tDT NNS VBD NN IN DT NN , VBG CD IN PRP .\nThere were no Israeli casualties .\tEX VBD DT JJ NNS .\nShooting incidents in the northern West Bank have increased in the past two weeks after Israeli troops began raids in the area .\tVBG NNS IN DT JJ NNP NNP VBP VBN IN DT JJ CD NNS IN JJ NNS VBD NNS IN DT NN .\nIsrael completed a withdrawal from the Gaza Strips and four Jewish settlements in the northern West Bank last month .\tNNP VBD DT NN IN DT NNP NNP CC CD JJ NNS IN DT JJ NNP NNP JJ NN .\nZimbabwe 's ruling party has suspended six senior officials from their posts for five years , exposing an unprecedented power struggle within ZANU-PF .\tNNP POS NN NN VBZ VBN CD JJ NNS IN PRP$ NNS IN CD NNS , VBG DT JJ NN NN IN NNP .\nThe state-run Herald newspaper reports the six are also banned from running in key parliamentary elections in March .\tDT JJ NNP NN VBZ DT CD VBP RB VBN IN VBG IN JJ JJ NNS IN NNP .\nThe officials , including Energy Minister July Moyo , were initially suspended for six months .\tDT NNS , VBG NNP NNP NNP NNP , VBD RB VBN IN CD NNS .\nThey were accused last month of holding a secret meeting to oppose President Robert Mugabe 's choice of second vice president .\tPRP VBD VBN JJ NN IN VBG DT JJ NN TO VB NNP NNP NNP POS NN IN JJ NN NN .\nThe post , granted to a woman for the first time in Zimbabwe 's history , is seen as a stepping stone for the presidency once Mr. Mugabe retires .\tDT NN , VBN TO DT NN IN DT JJ NN IN NNP POS NN , VBZ VBN IN DT JJ NN IN DT NN IN NNP NNP VBZ .\nTwo other top officials , Information Minister Jonathan Moyo and Justice Minister Patrick Chinamasa , have also been implicated in the power struggle .\tCD JJ JJ NNS , NNP NNP NNP NNP CC NNP NNP NNP NNP , VBP RB VBN VBN IN DT NN NN .\nBoth men have been dropped from the ruling party 's list of candidates in the parliamentary elections .\tDT NNS VBP VBN VBN IN DT VBG NN POS NN IN NNS IN DT JJ NNS .\nIraqi officials say 11 of their soldiers have been killed in a roadside bomb attack north of Baghdad .\tJJ NNS VBP CD IN PRP$ NNS VBP VBN VBN IN DT NN NN NN NN IN NNP .\nThe soldiers were killed as they patrolled Saturday , in a town north of the restive city of Baquba .\tDT NNS VBD VBN IN PRP VBD NNP , IN DT NN NN IN DT JJ NN IN NNP .\nIn a similar attack on Thursday , 10 American Marines were killed and 11 wounded near the western city of Fallujah .\tIN DT JJ NN IN NNP , CD JJ NNS VBD VBN CC CD VBN IN DT JJ NN IN NNP .\nIn another development , the U.S. military says Iraqi and U.S. forces captured 18 suspected terrorists during operations Thursday in various parts of north-central Iraq .\tIN DT NN , DT NNP NN VBZ JJ CC NNP NNS VBD CD JJ NNS IN NNS NNP IN JJ NNS IN JJ NNP .\nMeanwhile , insurgents holding four western peace activists hostage have threatened to kill them unless all detainees in Iraqi and U.S. detention centers are freed by Thursday .\tRB , NNS VBG CD JJ NN NNS NN VBP VBN TO VB PRP IN DT NNS IN JJ CC NNP NN NNS VBP VBN IN NNP .\nA British Muslim organization has sent a negotiator to Iraq to try to win the hostages ' release .\tDT JJ NN NN VBZ VBN DT NN TO NNP TO VB TO VB DT NNS POS NN .\nThe United Nations has appealed for $ 265 million in humanitarian aid for Iraqis this year .\tDT NNP NNP VBZ VBN IN $ CD CD IN JJ NN IN NNS DT NN .\nThe appeal Tuesday is aimed at providing emergency relief in such areas as food , water , education , sanitation , protection , housing and shelter , and health and nutrition .\tDT NN NNP VBZ VBN IN VBG NN NN IN JJ NNS IN NN , NN , NN , NN , NN , NN CC NN , CC NN CC NN .\nThe U.N. hopes some of the aid will focus on immediate relief for newly displaced people who can not access their food rations .\tDT NNP VBZ DT IN DT NN MD VB IN JJ NN IN RB VBN NNS WP MD RB VB PRP$ NN NNS .\nAn estimated 4 million Iraqis are in need of food assistance .\tDT VBN CD CD NNS VBP IN NN IN NN NN .\nThe United Nations humanitarian coordinator for Iraq , David Shearer , says U.N. officials must respond rapidly to people who need support .\tDT NNP NNP JJ NN IN NNP , NNP NNP , VBZ NNP NNS MD VB RB TO NNS WP VBP NN .\nThe U.N. believes more than 2 million Iraqis have become internally displaced since the start of the Iraq war in 2003 , and another 2 million have fled to Jordan and Syria .\tDT NNP VBZ JJR IN CD CD NNS VBP VBN RB VBN IN DT NN IN DT NNP NN IN CD , CC DT CD CD VBP VBN TO NNP CC NNP .\nU.S. seismologists say an earthquake with a magnitude of 6.8 has struck Guatemala .\tNNP NNS VBP DT NN IN DT NN IN CD VBZ VBN NNP .\nThere were no immediate reports of injuries or major damage following the tremor Wednesday .\tEX VBD DT JJ NNS IN NNS CC JJ NN VBG DT NN NNP .\nThe U.S. Geological Survey says the epicenter of the quake was near the Pacific coast about 115 kilometers from Guatemala City .\tDT NNP NNP NNP VBZ DT NN IN DT NN VBD IN DT NNP NN IN CD NNS IN NNP NNP .\nThe Vatican has opened its secret archives of the pre-World War Two papacy of Pius XI .\tDT NNP VBZ VBN PRP$ JJ NNS IN DT NNP NNP CD NN IN NNP NNP .\nThe documents detail the 1922 to 1939 papacy of Pius XI , when his successor - the wartime Pope Pius XII - served as the Vatican 's secretary of state .\tDT NNS NN DT CD TO CD NN IN NNP NNP , WRB PRP$ NN IN DT NN NNP NNP NNP : VBD IN DT NNP POS NN IN NN .\nFor years , the Vatican has defended Pope Pius the XI against claims he did too little to save European Jews from the Holocaust .\tIN NNS , DT NNP VBZ VBN NNP NNP DT NNP IN NNS PRP VBD RB JJ TO VB JJ NNS IN DT NNP .\nThere is hope the released records could offer insight into the controversy .\tEX VBZ NN DT VBN NNS MD VB NN IN DT NN .\nHowever , the Vatican still has not released the records from Pope Pius the XII 's papacy .\tRB , DT NNP RB VBZ RB VBN DT NNS IN NNP NNP DT NNP POS NN .\nArchive officials say some 50 researchers have come to consult the nearly 30,000 files totaling millions of pages .\tNNP NNS VBP DT CD NNS VBP VBN TO VB DT RB CD NNS VBG NNS IN NNS .\nIsraeli police on Monday said they are recommending that former Prime Minister Ehud Olmert be indicted in connection with a real estate scandal .\tJJ NN IN NNP VBD PRP VBP VBG IN JJ NNP NNP NNP NNP VB VBN IN NN IN DT JJ NN NN .\nOlmert is already on trial for fraud and bribery .\tNNP VBZ RB IN NN IN NN CC NN .\nPolice suspect Olmert received tens of thousands of dollars in exchange for his support for a large residential development in Jerusalem .\tNNS VBP NNP VBD NNS IN NNS IN NNS IN NN IN PRP$ NN IN DT JJ JJ NN IN NNP .\nHe was then mayor of Jerusalem .\tPRP VBD RB NN IN NNP .\nOlmert denies the charges .\tNNP VBZ DT NNS .\nThe case has shocked Israelis and is one of the biggest corruption scandals in the country 's history .\tDT NN VBZ VBN NNS CC VBZ CD IN DT JJS NN NNS IN DT NN POS NN .\nPolice suspect the total amount of money transferred from the project 's initiators to a middleman who mediated between the parties involved , is $ 15 million .\tNNS VBP DT JJ NN IN NN VBN IN DT NN POS NNS TO DT NN WP VBD IN DT NNS VBN , VBZ $ CD CD .\nPolice have recommended that a former Olmert aide and former Jerusalem Mayor Uri Lupolianski also be indicted .\tNNS VBP VBN IN DT JJ NNP NN CC JJ NNP NN NNP NNP RB VB VBN .\nThe lands that today comprise Croatia were part of the Austro-Hungarian Empire until the close of World War I .\tDT NNS WDT NN NN NNP VBD NN IN DT JJ NN IN DT NN IN NNP NNP NNP .\nIn 1918 , the Croats , Serbs , and Slovenes formed a kingdom known after 1929 as Yugoslavia .\tIN CD , DT NNS , NNS , CC NNS VBD DT NN VBN IN CD IN NNP .\nFollowing World War II , Yugoslavia became a federal independent Communist state under the strong hand of Marshal TITO .\tVBG NNP NNP NNP , NNP VBD DT JJ JJ JJ NN IN DT JJ NN IN NNP NNP .\nAlthough Croatia declared its independence from Yugoslavia in 1991 , it took four years of sporadic , but often bitter , fighting before occupying Serb armies were mostly cleared from Croatian lands .\tIN NNP VBD PRP$ NN IN NNP IN CD , PRP VBD CD NNS IN JJ , CC RB JJ , VBG IN VBG JJ NNS VBD RB VBN IN JJ NNS .\nUnder UN supervision , the last Serb-held enclave in eastern Slavonia was returned to Croatia in 1998 .\tIN NNP NN , DT JJ JJ NN IN JJ NNP VBD VBN TO NNP IN CD .\nIn April 2009 , Croatia joined NATO ; it is a candidate for eventual EU accession .\tIN NNP CD , NNP VBD NNP ; PRP VBZ DT NN IN JJ NNP NN .\nA military power during the 17th century , Sweden has not participated in any war for almost two centuries .\tDT JJ NN IN DT JJ NN , NNP VBZ RB VBN IN DT NN IN RB CD NNS .\nAn armed neutrality was preserved in both world wars .\tDT JJ NN VBD VBN IN DT NN NNS .\nSweden 's long-successful economic formula of a capitalist system interlarded with substantial welfare elements was challenged in the 1990s by high unemployment and in 2000 - 2 and 2009 by the global economic downturns , but fiscal discipline over the past several years has allowed the country to weather economic vagaries .\tNNP POS JJ JJ NN IN DT JJ NN VBD IN JJ NN NNS VBD VBN IN DT NNS IN JJ NN CC IN CD : CD CC CD IN DT JJ JJ NNS , CC JJ NN IN DT JJ JJ NNS VBZ VBN DT NN TO VB JJ NNS .\nSweden joined the EU in 1995 , but the public rejected the introduction of the euro in a 2003 referendum .\tNNP VBD DT NNP IN CD , CC DT NN VBD DT NN IN DT NN IN DT CD NN .\nThe economy , one of the most stable and prosperous in the Caribbean , is highly dependent on tourism generating an estimated 45 % of the national income .\tDT NN , CD IN DT RBS JJ CC JJ IN DT NNP , VBZ RB JJ IN NN VBG DT VBN CD NN IN DT JJ NN .\nMore than 9,34,000 tourists , mainly from the US , visited the islands in 2008 .\tJJR IN CD NNS , RB IN DT NNP , VBD DT NNS IN CD .\nIn the mid-1980s , the government began offering offshore registration to companies wishing to incorporate in the islands , and incorporation fees now generate substantial revenues .\tIN DT NNS , DT NN VBD VBG JJ NN TO NNS VBG TO VB IN DT NNS , CC NN NNS RB VBP JJ NNS .\nRoughly 4,00,000 companies were on the offshore registry by yearend 2000 .\tRB CD NNS VBD IN DT JJ NN IN NN CD .\nThe adoption of a comprehensive insurance law in late 1994 , which provides a blanket of confidentiality with regulated statutory gateways for investigation of criminal offenses , made the British Virgin Islands even more attractive to international business .\tDT NN IN DT JJ NN NN IN JJ CD , WDT VBZ DT NN IN NN IN JJ JJ NNS IN NN IN JJ NNS , VBD DT JJ NNP NNP RB RBR JJ TO JJ NN .\nLivestock raising is the most important agricultural activity ; poor soils limit the islands ' ability to meet domestic food requirements .\tNN NN VBZ DT RBS JJ JJ NN ; JJ NNS VBP DT NNS POS NN TO VB JJ NN NNS .\nBecause of traditionally close links with the US Virgin Islands , the British Virgin Islands has used the US dollar as its currency since 1959 .\tIN IN RB JJ NNS IN DT NNP NNP NNP , DT JJ NNP NNP VBZ VBN DT NNP NN IN PRP$ NN IN CD .\nSri Lanka is engaging in large-scale reconstruction and development projects following the end of the 26-year conflict with the LTTE , including increasing electricity access and rebuilding its road and rail network .\tNNP NNP VBZ VBG IN JJ NN CC NN NNS VBG DT NN IN DT JJ NN IN DT NNP , VBG VBG NN NN CC VBG PRP$ NN CC NN NN .\nAdditionally , Sri Lanka seeks to reduce poverty by using a combination of state directed policies and private investment promotion to spur growth in disadvantaged areas , develop small and medium enterprises , and promote increased agriculture .\tRB , NNP NNP VBZ TO VB NN IN VBG DT NN IN NN VBD NNS CC JJ NN NN TO VB NN IN JJ NNS , VB JJ CC JJ NNS , CC VB VBN NN .\nHigh levels of government funding may be difficult , as the government already is faced with high debt interest payments , a bloated civil service , and historically high budget deficits .\tJJ NNS IN NN NN MD VB JJ , IN DT NN RB VBZ VBN IN JJ NN NN NNS , DT JJ JJ NN , CC RB JJ NN NNS .\nThe 2008 - 9 global financial crisis and recession exposed Sri Lanka 's economic vulnerabilities and nearly caused a balance of payments crisis , which was alleviated by a $ 2.6 billion IMF standby agreement in July 2009 .\tDT CD : CD JJ JJ NN CC NN VBN NNP NNP POS JJ NNS CC RB VBD DT NN IN NNS NN , WDT VBD VBN IN DT $ CD CD NNP JJ NN IN NNP CD .\nThe end of the civil war and the IMF loan , however , have largely restored investors ' confidence , reflected in part by the Sri Lankan stock market 's recognition as one of the best performing markets in the world .\tDT NN IN DT JJ NN CC DT NNP NN , RB , VBP RB VBN NNS POS NN , VBN IN NN IN DT NNP NNP NN NN POS NN IN CD IN DT JJS VBG NNS IN DT NN .\nSri Lankan growth rates averaged nearly 5 % in during the war , but increased government spending on development and fighting the LTTE in the final years spurred GDP growth to around 06-Jul % per year in 2006 - 8 .\tNNP JJ NN NNS VBD RB CD NN IN IN DT NN , CC VBD NN NN IN NN CC VBG DT NN IN DT JJ NNS VBN NN NN TO IN CD NN IN NN IN CD : CD .\nAfter experiencing 3.5 % growth in 2009 , Sri Lanka 's economy is poised to achieve high growth rates in the postwar period .\tIN VBG CD NN NN IN CD , NNP NNP POS NN VBZ VBN TO VB JJ NN NNS IN DT JJ NN .\nA MAN wished to purchase an Ass , and agreed with its owner that he should try out the animal before he bought him .\tDT NNP VBD TO VB DT NNP , CC VBD IN PRP$ NN IN PRP MD VB RP DT NN IN PRP VBD PRP .\nHe took the Ass home and put him in the straw-yard with his other Asses , upon which the new animal left all the others and at once joined the one that was most idle and the greatest eater of them all .\tPRP VBD DT NNP NN CC VBD PRP IN DT NN IN PRP$ JJ NNS , IN WDT DT JJ NN VBD PDT DT NNS CC IN RB VBD DT CD WDT VBD RBS JJ CC DT JJS NN IN PRP DT .\nSeeing this , the man put a halter on him and led him back to his owner .\tVBG DT , DT NN VBD DT NN IN PRP CC VBD PRP RB TO PRP$ NN .\nOn being asked how , in so short a time , he could have made a trial of him , he answered , ' I do not need a trial ; I know that he will be just the same as the one he chose for his companion . '\tIN VBG VBN WRB , IN RB JJ DT NN , PRP MD VB VBN DT NN IN PRP , PRP VBD , `` PRP VBP RB VB DT NN ; PRP VBP IN PRP MD VB RB DT JJ IN DT CD PRP VBD IN PRP$ NN . ``\nA man is known by the company he keeps .\tDT NN VBZ VBN IN DT NN PRP VBZ .\nA MIDDLE-AGED MAN , whose hair had begun to turn gray , courted two women at the same time .\tDT JJ NNP , WP$ NN VBD VBN TO VB JJ , VBD CD NNS IN DT JJ NN .\nOne of them was young , and the other well advanced in years .\tCD IN PRP VBD JJ , CC DT JJ RB VBN IN NNS .\nThe elder woman , ashamed to be courted by a man younger than herself , made a point , whenever her admirer visited her , to pull out some portion of his black hairs .\tDT NN NN , VBD TO VB VBN IN DT NN JJR IN PRP , VBD DT NN , WRB PRP$ NN VBD PRP , TO VB RP DT NN IN PRP$ JJ NNS .\nThe younger , on the contrary , not wishing to become the wife of an old man , was equally zealous in removing every gray hair she could find .\tDT JJR , IN DT NN , RB VBG TO VB DT NN IN DT JJ NN , VBD RB JJ IN VBG DT JJ NN PRP MD VB .\nThus it came to pass that between them both he very soon found that he had not a hair left on his head .\tRB PRP VBD TO VB DT IN PRP DT PRP RB RB VBD IN PRP VBD RB DT NN VBN IN PRP$ NN .\nThose who seek to please everybody please nobody .\tDT WP VBP TO VB DT VB DT .\nLena once had two chickens .\tNNP RB VBD CD NNS .\nOne of them got terribly sick .\tCD IN PRP VBD RB JJ .\nSo she killed the other one to make soup to get the first one well again .\tRB PRP VBD DT JJ CD TO VB NN TO VB DT JJ CD RB RB .\nJohn Garang\tNNP NNP\nThe Sudan People 's Liberation Movement says funeral services for its late political leader , Sudanese Vice President John Garang , will be held in Juba , the planned capital of an autonomous southern Sudan .\tDT NNP NNP POS NNP NNP VBZ JJ NNS IN PRP$ JJ JJ NN , JJ NNP NNP NNP NNP , MD VB VBN IN NNP , DT JJ NN IN DT JJ JJ NNP .\nIt is unclear when the funeral will be held .\tPRP VBZ JJ WRB DT NN MD VB VBN .\nMr. Garang 's political party says the body of the former rebel leader , who died Saturday evening in a helicopter crash , is lying at New Site in Southern Sudan .\tNNP NNP POS JJ NN VBZ DT NN IN DT JJ NN NN , WP VBD NNP NN IN DT NN NN , VBZ VBG IN NNP NNP IN NNP NNP .\nSudan 's government on Monday declared a night curfew in the capital , Khartoum , to prevent riots that erupted following news of his death .\tNNP POS NN IN NNP VBD DT NN NN IN DT NN , NNP , TO VB NNS WDT VBD VBG NN IN PRP$ NN .\nAt least 36 people were killed in the violence .\tIN JJS CD NNS VBD VBN IN DT NN .\nMr. Garang was a key figure in the peace accord reached this year between the Sudanese government and southern rebels to end a 21-year civil war .\tNNP NNP VBD DT JJ NN IN DT NN NN VBN DT NN IN DT JJ NN CC JJ NNS TO VB DT JJ JJ NN .\nSudanese President Omar el-Bashir and General Salva Kiir Mayardit , who was named by the SPLM to succeed Mr. Garang , have stressed that his death will not stop the peace movement .\tJJ NNP NNP NNP CC NNP NNP NNP NNP , WP VBD VBN IN DT NNP TO VB NNP NNP , VBP VBN IN PRP$ NN MD RB VB DT NN NN .\nFrom the dazzling Opening Ceremonies to the number of gold medals won , China 's Olympic performance has been a source of great national pride .\tIN DT JJ NN NNS TO DT NN IN NN NNS VBN , NNP POS NNP NN VBZ VBN DT NN IN JJ JJ NN .\nAnd any dissent has been quickly silenced .\tCC DT NN VBZ VBN RB VBN .\nSo it comes as no surprise that Chinese fans at the Beijing Olympics have been boisterous supporters of their national team .\tIN PRP VBZ IN DT NN IN JJ NNS IN DT NNP NNPS VBP VBN JJ NNS IN PRP$ JJ NN .\nBut VOA 's Brian Padden was surprised to learn that many Chinese are also rooting for the Americans .\tCC NNP POS NNP NNP VBD VBN TO VB IN JJ NNS VBP RB VBG IN DT NNS .\nThe U.S. Senate committee considering the nomination of federal Judge Samuel Alito to the U.S. Supreme Court will vote on the matter next week .\tDT NNP NNP NN VBG DT NN IN JJ NNP NNP NNP TO DT NNP NNP NNP MD VB IN DT NN JJ NN .\nThe Senate Judiciary Committee was scheduled to hold a final vote on Mr. Alito 's nomination Tuesday , but opposition Democrats demanded a one-week delay - a move that angered Republicans .\tDT NNP NNP NNP VBD VBN TO VB DT JJ NN IN NNP NNP POS NN NNP , CC NN NNS VBD DT JJ NN IN DT NN WDT VBD NNPS .\nDemocrats are under pressure to delay the vote as long as possible to build public opposition to Mr. Alito 's nomination .\tNNS VBP IN NN TO VB DT NN RB RB IN JJ TO VB JJ NN TO NNP NNP POS NN .\nLiberal interest groups are concerned his presence could tilt the court in a more conservative direction .\tJJ NN NNS VBP VBN PRP$ NN MD VB DT NN IN DT RBR JJ NN .\nMr. Alito managed to withstand two days of tough questioning from Democrats , and observers say he will easily be confirmed in the Republican-controlled Senate .\tNNP NNP VBD TO VB CD NNS IN JJ VBG IN NNPS , CC NNS VBP PRP MD RB VB VBN IN DT JJ NNP .\nNATO said Saturday one of its operations in Afghanistan has resulted in the deaths of two civilians and the wounding of another .\tNNP VBD NNP CD IN PRP$ NNS IN NNP VBZ VBN IN DT NNS IN CD NNS CC DT NN IN DT .\nNATO service members discovered a dead woman and two wounded men who had been caught in the crossfire of a gunbattle to secure a compound in the village of Kalachen in Kandahar district , where the alliance force was looking for a Taliban commander .\tNNP NN NNS VBD DT JJ NN CC CD JJ NNS WP VBD VBN VBN IN DT NN IN DT NN TO VB DT NN IN DT NN IN NNP IN NNP NN , WRB DT NN NN VBD VBG IN DT NNP NN .\nOne of the men later died from his injuries .\tCD IN DT NNS RB VBD IN PRP$ NNS .\nThe alliance force arrested the Taliban commander and killed one insurgent , while another was wounded .\tDT NN NN VBN DT NNP NN CC VBD CD NN , IN DT VBD VBN .\nNATO says the joint security force , along with local elders and government officials , are reviewing the circumstances surrounding the death of the civilians .\tNNP VBZ DT JJ NN NN , IN IN JJ NNS CC NN NNS , VBP VBG DT NNS VBG DT NN IN DT NNS .\nBrazil 's health ministry says the country has the world 's highest swine flu death toll .\tNNP POS NN NN VBZ DT NN VBZ DT NN POS JJS JJ NN NN NN .\nThe health ministry says swine flu has killed 557 people between April and August of this year .\tDT NN NN VBZ NN NN VBZ VBN CD NNS IN NNP CC NNP IN DT NN .\nThe ministry released its latest report Wednesday based on figures from the European Center for Disease Prevention and Control .\tDT NN VBD PRP$ JJS NN NNP VBN IN NNS IN DT JJ NNP IN NNP NNP CC NNP .\nIt says the United States ranks next , with 522 fatalities , and Argentina places third with 439 .\tPRP VBZ DT NNP NNPS VBZ JJ , IN CD NNS , CC NNP NNS JJ IN CD .\nBrazil 's government says it wants to free up $ 2 billion to purchase 73 million doses of vaccine to fight the A-H1N1 virus .\tNNP POS NN VBZ PRP VBZ TO VB RP $ CD CD TO VB CD CD NNS IN NN TO VB DT JJ NN .\nLatin America has seen a greater impact from swine flu because it is the winter season in the Southern Hemisphere , when viruses are easily transmitted .\tNNP NNP VBZ VBN DT JJR NN IN JJ NN IN PRP VBZ DT NN NN IN DT NNP NNP , WRB NNS VBP RB VBN .\nThe World Health Organization has declared the swine flu outbreak a pandemic , and says up to two billion people may eventually be infected .\tDT NNP NNP NNP VBZ VBN DT NN NN VBD DT JJ , CC VBZ RP TO CD CD NNS MD RB VB VBN .\nJapan 's Supreme Court has rejected a demand that Japan apologize to and compensate former Korean forced laborers who survived an explosion aboard a Japanese ship at the end of World War II .\tNNP POS NNP NNP VBZ VBN DT NN IN NNP VB TO CC VB JJ JJ JJ NNS WP VBD DT NN IN DT JJ NN IN DT NN IN NNP NNP NNP .\nThe ship , carrying 4,000 Korean laborers and their families , was enroute to what is now South Korea when it exploded and sank off the coast of western Japan in August 1945 .\tDT NN , VBG CD JJ NNS CC PRP$ NNS , VBD JJ TO WP VBZ RB JJ NNP WRB PRP VBD CC VBD RP DT NN IN JJ NNP IN NNP CD .\nMore than 500 people died .\tJJR IN CD NNS VBD .\nThe Supreme Court Tuesday upheld a lower court ruling that said the Japanese government did not neglect its responsibility when the incident occurred and does not need to apologize .\tDT NNP NNP NNP VBD DT JJR NN NN WDT VBD DT JJ NN VBD RB NN PRP$ NN WRB DT NN VBD CC VBZ RB VB TO VB .\nThe United States has denied any rift between Washington and Seoul , after a South Korean official made a statement about North Korea that conflicts with the official U.S. position .\tDT NNP NNP VBZ VBN DT NN IN NNP CC NNP , IN DT JJ JJ NN VBD DT NN IN NNP NNP IN NNS IN DT JJ NNP NN .\nIn Washington , a U.S. State Department spokesman emphasized Thursday that the ongoing six-party negotiations on North Korea 's nuclear program are complex .\tIN NNP , DT NNP NNP NNP NN VBD NNP IN DT JJ JJ NNS IN NNP NNP POS JJ NN VBP JJ .\nHe indicated that differences in opinion would naturally emerge from talks involving several parties .\tPRP VBD IN NNS IN NN MD RB VB IN NNS VBG JJ NNS .\nIn an interview earlier Thursday , South Korean Unification Minister Chung Dong-young said Pyongyang has a general right to pursue a civilian nuclear program .\tIN DT NN RBR NNP , JJ JJ NNP NNP NNP NNP VBD NNP VBZ DT JJ NN TO VB DT JJ JJ NN .\nWashington is firmly opposed to Pyongyang having any nuclear facilities whatsoever .\tNNP VBZ RB VBN TO NNP VBG DT JJ NNS RB .\nThe six-party talks - involving China , Japan , Russia , the United States and the two Koreas - recessed Sunday after 13 days .\tDT JJ NNS : VBG NNP , NNP , NNP , DT NNP NNPS CC DT CD NNP : VBD NNP IN CD NNS .\nNegotiations are expected to resume the week of August 29 .\tNNS VBP VBN TO VB DT NN IN NNP CD .\nDirect charter flights from Taiwan to mainland China have begun for the Lunar New Year holiday season , under an agreement between the diplomatic rivals to temporarily allow non-stop air travel .\tJJ NN NNS IN NNP TO VB NNP VBP VBN IN DT NNP NNP NNP NN NN , IN DT NN IN DT JJ NNS TO RB VB JJ NN NN .\nA plane with Taiwan 's biggest carrier , China Airlines , arrived in Shanghai Friday from Taipei .\tDT NN IN NNP POS JJS NN , NNP NNPS , VBD IN NNP NNP IN NNP .\nSix airlines from each side will operate 72 flights across the Taiwan Strait .\tCD NNS IN DT NN MD VB CD NNS IN DT NNP NNP .\nThe service will connect the mainland Chinese cities of Beijing , Shanghai , Guangzhou and Xiamen with Taipei and Kaohsiung on Taiwan until February 7 .\tDT NN MD VB DT JJ JJ NNS IN NNP , NNP , NNP CC NNP IN NNP CC NNP IN NNP IN NNP CD .\nThis is the second year that Beijing and Taipei have allowed the holiday flights .\tDT VBZ DT JJ NN IN NNP CC NNP VBP VBN DT NN NNS .\nLast year , flights were limited to Taiwan business people living on the mainland .\tJJ NN , NNS VBD VBN TO NNP NN NNS VBG IN DT NN .\nThis year , the flights include Taiwan tourists .\tDT NN , DT NNS VBP NNP NNS .\nAt other times of year , travelers must connect through other airports , usually Hong Kong .\tIN JJ NNS IN NN , NNS MD VB IN JJ NNS , RB NNP NNP .\nSenator John Kerry and former Senator John Edwards , Democratic running mates in the 2004 Presidential election , have lambasted President Bush for his response to Hurricane Katrina .\tNNP NNP NNP CC JJ NNP NNP NNP , JJ VBG NNS IN DT CD JJ NN , VBP VBN NNP NNP IN PRP$ NN TO NNP NNP .\nSenator Kerry of Massachusetts , the Democratic nominee for President in 2004 , told a university audience Monday that Katrina has exposed a broader pattern of ' incompetence and negligence ' in the Bush administration .\tNNP NNP IN NNP , DT JJ NN IN NNP IN CD , VBD DT NN NN NNP IN NNP VBZ VBN DT JJR NN IN `` NN CC NN `` IN DT NNP NN .\nThe Republican National Committee responded to Senator Kerry 's speech by saying the efforts to politicize the tragedy are ' unsavory ' .\tDT NNP NNP NNP VBD TO NNP NNP POS NN IN VBG DT NNS TO VB DT NN VBP `` JJ `` .\nMr. Edwards criticized a move by President Bush to suspend regulations that set a minimum wage for workers on federal contracts .\tNNP NNP VBD DT NN IN NNP NNP TO VB NNS WDT VBP DT NN NN IN NNS IN JJ NNS .\nFormer President Bill Clinton was also critical Sunday , telling television audiences that a disaster plan affecting only middle class and rich people is not workable .\tJJ NNP NNP NNP VBD RB JJ NNP , VBG NN NNS IN DT NN NN VBG RB JJ NN CC JJ NNS VBZ RB JJ .\nA separatist group fighting Indonesian troops in Aceh has rejected the government 's offer to let rebel leaders run for political office , but only as part of existing political parties .\tDT JJ NN VBG JJ NNS IN NNP VBZ VBN DT NN POS NN TO VB JJ NNS VBP IN JJ NN , CC RB IN NN IN VBG JJ NNS .\nA Free Aceh Movement spokesman said Friday at peace talks in Helsinki , Finland that if the rebel group agreed to the offer , it would mean the organization was given privileges not available to others in Aceh .\tDT JJ NNP NNP NN VBD NNP IN NN NNS IN NNP , NNP IN IN DT NN NN VBD TO DT NN , PRP MD VB DT NN VBD VBN NNS RB JJ TO NNS IN NNP .\nThe spokesman says that is not acceptable .\tDT NN VBZ DT VBZ RB JJ .\nOn Thursday , Indonesia 's government proposed that Aceh rebels be allowed to field candidates in existing political parties , but not as a new party .\tIN NNP , NNP POS NN VBD IN NNP NNS VB VBN TO VB NNS IN VBG JJ NNS , CC RB IN DT JJ NN .\nThe proposal would require a change in Indonesian law , which says parties must have representation in at least half of the country 's 32 provinces .\tDT NN MD VB DT NN IN JJ NN , WDT VBZ NNS MD VB NN IN IN JJS NN IN DT NN POS CD NNS .\nThe current round of peace talks is scheduled to end Sunday .\tDT JJ NN IN NN NNS VBZ VBN TO VB NNP .\nOfficials in Belgrade say a local employee of the U.S. Embassy has accidentally crashed into a motorcade in which the president of Serbia , Boris Tadic , was traveling .\tNNS IN NNP VBP DT JJ NN IN DT NNP NNP VBZ RB VBN IN DT NN IN WDT DT NN IN NNP , NNP NNP , VBD VBG .\nSerbian Interior Minister Dragan Jocic said Wednesday that what had been feared to be an assassination attempt turned out to be a traffic offense .\tJJ NNP NNP NNP NNP VBD NNP IN WP VBD VBN VBN TO VB DT NN NN VBD RP TO VB DT NN NN .\nThe minister also said the driver , identified as Miroslav Cimpl , became very aggravated while trying to pass the motorcade .\tDT NN RB VBD DT NN , VBN IN NNP NNP , VBD RB JJ IN VBG TO VB DT NN .\nThe minister also said that when Mr. Cimpl spotted flashing lights , he panicked and hit the president 's car .\tDT NN RB VBD IN WRB NNP NNP VBD VBG NNS , PRP VBD CC VBD DT NN POS NN .\nThe pro-Western Mr. Tadic was not hurt .\tDT JJ NNP NNP VBD RB VBN .\nPro-Western Serbian Prime Minister Zoran Djindjic was assassinated last year in front of his office building in Belgrade .\tJJ JJ NNP NNP NNP NNP VBD VBN JJ NN IN NN IN PRP$ NN NN IN NNP .\nThe head of the U.S. government 's hurricane relief effort says it is too soon for residents of New Orleans to return to their storm-ravaged city .\tDT NN IN DT NNP NN POS NN NN NN VBZ PRP VBZ RB RB IN NNS IN NNP NNP TO VB TO PRP$ JJ NN .\nOn the Fox News Sunday program , Coast Guard Vice Admiral Thad Allen urged New Orleans ' mayor to ' slow down ' a plan for city residents to start coming back this week .\tIN DT NNP NNP NNP NN , NNP NNP NNP NNP NNP NNP VBD NNP NNP POS NN TO `` VB RP `` DT NN IN NN NNS TO VB VBG RB DT NN .\nIn that interview and others with U.S. television networks Sunday , the admiral said officials are still concerned about polluted floodwater , lack of clean drinking water and weakened levees .\tIN DT NN CC NNS IN NNP NN NNS NNP , DT NN VBD NNS VBP RB JJ IN JJ NN , NN IN JJ NN NN CC JJ NNS .\nBusiness owners were allowed to return to some parts of New Orleans on Saturday to begin assessing damage and cleaning up .\tNN NNS VBD VBN TO VB TO DT NNS IN NNP NNP IN NNP TO VB VBG NN CC VBG RP .\nThe number of confirmed deaths from Hurricane Katrina has climbed to nearly 900 , with the majority , 646 , in the state of Louisiana .\tDT NN IN VBN NNS IN NNP NNP VBZ VBN TO RB CD , IN DT NN , CD , IN DT NN IN NNP .\nNegotiators from the Indonesian government and Aceh-based separatists have begun meeting in Finland for the latest round of peace talks aimed at ending decades of conflict that has taken tens of thousands of lives in the northwestern province .\tNNS IN DT JJ NN CC JJ NNS VBP VBN NN IN NNP IN DT JJS NN IN NN NNS VBN IN VBG NNS IN NN WDT VBZ VBN NNS IN NNS IN NNS IN DT JJ NN .\nFinnish mediators are helping the two sides discuss a draft peace proposal in hopes of reaching a deal in the next few weeks .\tJJ NNS VBP VBG DT CD NNS VB DT NN NN NN IN NNS IN VBG DT NN IN DT JJ JJ NNS .\nOfficials say the separatists have given up their demand for independence from Indonesia .\tNNS VBP DT NNS VBP VBN RP PRP$ NN IN NN IN NNP .\nThere is still disagreement , however , over whether Indonesian troops will withdraw from Aceh , and whether the rebels will be allowed to form their own political party .\tEX VBZ RB NN , RB , IN IN JJ NNS MD VB IN NNP , CC IN DT NNS MD VB VBN TO VB PRP$ JJ JJ NN .\nPeace talks that stalled in 2003 were re-started after last year 's December 26 tsunami that devastated Aceh and highlighted the need to cooperate on reconstruction efforts .\tNN NNS WDT VBD IN CD VBD VBN IN JJ NN POS NNP CD NN WDT VBD NNP CC VBD DT NN TO VB IN NN NNS .\nThe director of the Getty Museum in Los Angeles says he is recommending that the museum return to Greece several antiquities that country says were illegally taken abroad .\tDT NN IN DT NNP NNP IN NNP NNP VBZ PRP VBZ VBG IN DT NN VB IN NNP JJ NNS WDT NN VBZ VBD RB VBN RB .\nGreece has demanded the return of four items in particular - a gold wreath , a marble statue of a woman dating to the sixth century BC , a tombstone and a sculpted relief .\tNNP VBZ VBN DT NN IN CD NNS IN JJ IN DT NN NN , DT NN NN IN DT NN VBG TO DT JJ NN NNP , DT NN CC DT JJ NN .\nA joint statement by museum director Michael Brand and Greek Culture Minister George Voulgarakis did not say which items will be returned .\tDT JJ NN IN NN NN NNP NNP CC JJ NNP NNP NNP NNP VBD RB VB WDT NNS MD VB VBN .\nThe Getty Museum has been embroiled in several antiquities smuggling scandals .\tDT NNP NNP VBZ VBN VBN IN JJ NNS VBG NNS .\nItalian authorities have charged former curator Marion TRUE with receiving stolen goods .\tJJ NNS VBP VBN JJ NN NNP NNP IN VBG VBN NNS .\nGreek authorities also are investigating TRUE .\tJJ NNS RB VBP VBG NNP .\nThey raided her vacation home in Greece , where they found dozens of antiquities that had not been registered with the Greek government .\tPRP VBD PRP$ NN NN IN NNP , WRB PRP VBD NNS IN NNS WDT VBD RB VBN VBN IN DT JJ NN .\nSouth Africa 's President Thabo Mbeki says former Haitian President Jean-Bertrand Aristide may be able to return home .\tNNP NNP POS NNP NNP NNP VBZ JJ JJ NNP NNP NNP MD VB JJ TO VB NN .\nMr. Aristide has lived in exile in South Africa since fleeing a 2004 uprising in Haiti .\tNNP NNP VBZ VBN IN NN IN NNP NNP IN VBG DT CD NN IN NNP .\nBut Mr. Mbeki told South African radio Sunday he sees no reason why Haiti 's newly-elected president Rene Preval would oppose Mr. Aristide returning home .\tCC NNP NNP VBD NNP NNP NN NNP PRP VBZ DT NN WRB NNP POS JJ NN NNP NNP MD VB NNP NNP VBG NN .\nHe said he thinks a determination will come after the two men consult about the timing of such a move , so that , in his words , it does not create unnecessary problems .\tPRP VBD PRP VBZ DT NN MD VB IN DT CD NNS VBP IN DT NN IN JJ DT NN , RB IN , IN PRP$ NNS , PRP VBZ RB VB JJ NNS .\nPresident-elect Preval and Mr. Aristide were once political allies but broke over the corruption scandal that helped to bring down Mr. Aristide 's presidency .\tNNP NNP CC NNP NNP VBD RB JJ NNS CC VBD IN DT NN NN WDT VBD TO VB RP NNP NNP POS NN .\nThe head of the U.S. central bank says the bank will strictly enforce new rules to prevent another financial crisis like the one that has disrupted the global economy for the past two years .\tDT NN IN DT NNP JJ NN VBZ DT NN MD RB VB JJ NNS TO VB DT JJ NN IN DT NN WDT VBZ VBN DT JJ NN IN DT JJ CD NNS .\nFederal Reserve Chairman Ben Bernanke spoke to the Financial Crisis Inquiry Commission in Washington on Thursday .\tNNP NNP NNP NNP NNP VBD TO DT NNP NNP NNP NNP IN NNP IN NNP .\nHe said the most important lesson of the financial crisis is the need for an orderly way to shut down failing firms that are so big that they could damage the overall financial system if they collapse .\tPRP VBD DT RBS JJ NN IN DT JJ NN VBZ DT NN IN DT JJ NN TO VB RP VBG NNS WDT VBP RB JJ IN PRP MD VB DT JJ JJ NN IN PRP VBP .\nBernanke also said there is too little evidence to blame low interest rates for the inflated housing prices that played a major role in the crisis .\tNNP RB VBD EX VBZ RB JJ NN TO VB JJ NN NNS IN DT JJ NN NNS WDT VBD DT JJ NN IN DT NN .\nThe commission is nearing the end of a year-long investigation into what caused the financial crisis , and how to prevent a future one .\tDT NN VBZ VBG DT NN IN DT JJ NN IN WP VBD DT JJ NN , CC WRB TO VB DT JJ CD .\nThe White House says U.S. President George Bush will travel to Europe next month to strengthen the trans-Atlantic partnership between the U.S. and European nations .\tDT NNP NNP VBZ NNP NNP NNP NNP MD VB TO NNP JJ NN TO VB DT JJ NN IN DT NNP CC JJ NNS .\nWhite House spokeswoman Dana Perino Tuesday said the eight-day trip , beginning June 9 will include stops in Britain , France , Italy , Germany , Slovenia , and the Vatican .\tNNP NNP NN NNP NNP NNP VBD DT JJ NN , VBG NNP CD MD VB NNS IN NNP , NNP , NNP , NNP , NNP , CC DT NNP .\nMr. Bush is scheduled to attend an annual summit between the European Union and the United States , being held this year on June 10 in Slovenia .\tNNP NNP VBZ VBN TO VB DT JJ NN IN DT NNP NNP CC DT NNP NNPS , VBG VBN DT NN IN NNP CD IN NNP .\nMr. Bush , along with his wife Laura Bush , will also celebrate the 60th anniversary of the Marshall Plan , which provided U.S. reconstruction aid to Europe after World War II .\tNNP NNP , IN IN PRP$ NN NNP NNP , MD RB VB DT JJ NN IN DT NNP NNP , WDT VBD NNP NN NN TO NNP IN NNP NNP NNP .\nThey also will commemorate the 60th anniversary of the Berlin Airlift , a U.S. operation to bring much-needed supplies into the western half of the divided German city , which was cut off by a Soviet blockade .\tPRP RB MD VB DT JJ NN IN DT NNP NNP , DT NNP NN TO VB JJ NNS IN DT JJ NN IN DT VBN JJ NN , WDT VBD VBN RP IN DT JJ NN .\nKey developing countries say an offer by the United States to cut agricultural subsidies and re-start stalled negotiations on a global free-trade pact is insufficient .\tNNP VBG NNS VBP DT NN IN DT NNP NNPS TO VB JJ NNS CC JJ VBN NNS IN DT JJ JJ NN VBZ JJ .\nBrazilian Foreign Minister Celso Amorim made the statement to reporters Tuesday in Geneva , following a meeting of ministers of leading developing and industrialized countries .\tJJ NNP NNP NNP NNP VBD DT NN TO NNS NNP IN NNP , VBG DT NN IN NNS IN VBG JJ CC JJ NNS .\nThe discussions came one day after the United States said at talks in Switzerland it is ready to reduce certain agricultural subsidies by 60 percent .\tDT NNS VBD CD NN IN DT NNP NNPS VBD IN NNS IN NNP PRP VBZ JJ TO VB JJ JJ NNS IN CD NN .\nThe European Union also proposed cuts in farm supports , while Japan rejected the U.S. offer .\tDT NNP NNP RB VBD NNS IN NN NNS , IN NNP VBD DT NNP NN .\nDeveloping countries say subsidies to farmers in rich nations give these farmers an unfair advantage on world markets .\tVBG NNS VBP NNS TO NNS IN JJ NNS VBP DT NNS DT JJ NN IN NN NNS .\nDiplomats say this week 's discussions may be the last chance to secure the broad outlines of a global trade treaty before a key Hong Kong summit on World Trade in December .\tNNS VBP DT NN POS NNS MD VB DT JJ NN TO VB DT JJ NNS IN DT JJ NN NN IN DT JJ NNP NNP NN IN NNP NNP IN NNP .\nA former detainee of the U.S. military prison at Guantanamo who later rejoined al-Qaida in Yemen has turned himself in to Saudi authorities .\tDT JJ NN IN DT NNP JJ NN IN NNP WP RB VBD NNP IN NNP VBZ VBN PRP IN TO JJ NNS .\nSaudi Arabia 's Interior Ministry says Jabir Jubran al-Fayfi contacted the Saudi government from Yemen to express his readiness to surrender .\tNNP NNP POS NNP NNP VBZ NNP NNP NNP VBD DT JJ NN IN NNP TO VB PRP$ NN TO VB .\nThe Yemeni government arranged for his return .\tDT JJ NN VBD IN PRP$ NN .\nAl-Fayfi was released from Guantanamo in 2006 to undergo rehabilitation in Saudi Arabia .\tNNP VBD VBN IN NNP IN CD TO VB NN IN NNP NNP .\nHe rejoined al-Qaida after completing the reform program .\tPRP VBD NNP IN VBG DT NN NN .\nSaudi officials say 11 of more than 100 former Guantanamo inmates who finished the rehabilitation program returned to militancy .\tJJ NNS VBP CD IN JJR IN CD JJ NNP NNS WP VBD DT NN NN VBD TO NN .\nThe Yemen-based al-Qaida in the Arabian Peninsula is known for launching attacks on regional and Western targets .\tDT JJ NNP IN DT NNP NNP VBZ VBN IN VBG NNS IN JJ CC JJ NNS .\nIraqi Kurdish leader Massoud Barzani says an immediate withdrawal of U.S. troops from Iraq would worsen the situation in the country .\tJJ NNP NN NNP NNP VBZ DT JJ NN IN NNP NNS IN NNP MD VB DT NN IN DT NN .\nSpeaking at a news conference in Jordan Tuesday , Barzani said he supports a U.S. troop withdrawal , but only when Iraqi security forces and the government have the situation under control .\tVBG IN DT NN NN IN NNP NNP , NNP VBD PRP VBZ DT NNP NN NN , CC RB WRB JJ NN NNS CC DT NN VBP DT NN IN NN .\nHe said the situation in Iraq is tragic , but would get worse if U.S. troops are pulled out suddenly .\tPRP VBD DT NN IN NNP VBZ JJ , CC MD VB JJR IN NNP NNS VBP VBN RP RB .\nOn Monday , Barzani held talks with Jordan 's King Abdullah , who reaffirmed his country 's support for efforts to secure reconciliation between Iraq 's rival groups .\tIN NNP , NNP VBD NNS IN NNP POS NNP NNP , WP VBD PRP$ NN POS NN IN NNS TO VB NN IN NNP POS JJ NNS .\nBarzani is president of the semi-autonomous Kurdish region in northern Iraq .\tNNP VBZ NN IN DT JJ JJ NN IN JJ NNP .\nU.S. authorities have charged a man living in New York with relaying programs from Hezbollah television station al-Manar , deemed a global terrorist entity by the U.S. Treasury Department .\tNNP NNS VBP VBN DT NN NN IN NNP NNP IN VBG NNS IN NNP NN NN NNP , VBD DT JJ JJ NN IN DT NNP NNP NNP .\nFederal prosecutors say Javed Iqbal , also known as John Iqbal , was relaying the Hezbollah-operated station to customers in New York .\tJJ NNS VBP NNP NNP , RB VBN IN NNP NNP , VBD VBG DT JJ NN TO NNS IN NNP NNP .\nAl-Manar is seen as a mouthpiece for the Lebanese Shi'ite group .\tNNP VBZ VBN IN DT NN IN DT JJ NNP NN .\nU.S. law forbids conducting business with any terror group .\tNNP NN VBZ VBG NN IN DT NN NN .\nIqbal faces five years in jail if he is convicted of the charges under the International Emergency Economic Powers Act .\tNNP VBZ CD NNS IN NN IN PRP VBZ VBN IN DT NNS IN DT NNP NNP NNP NNP NNP .\nHezbollah went to war with Israel last month after attacking an Israeli outpost and capturing two of its soldiers .\tNNP VBD TO NN IN NNP JJ NN IN VBG DT JJ NN CC VBG CD IN PRP$ NNS .\nAl-Manar headquarters in southern Lebanon have been destroyed in the conflict , but the station remains on the air .\tNNP NN IN JJ NNP VBP VBN VBN IN DT NN , CC DT NN VBZ IN DT NN .\nMachinists for the U.S. airplane maker Boeing voted to strike Friday , after rejecting a new contract offer .\tNNS IN DT NNP NN NN NNP VBD TO VB NNP , IN VBG DT JJ NN NN .\nUnion members voted late Thursday to authorize the strike by more than 18,000 workers who manufacture components and assemble planes .\tNNP NNS VBD JJ NNP TO VB DT NN IN JJR IN CD NNS WP VBP NNS CC JJ NNS .\nBoeing officials expressed disappointment at the vote .\tNNP NNS VBD NN IN DT NN .\nIn a written statement , they said they will not assemble airplanes during the strike .\tIN DT JJ NN , PRP VBD PRP MD RB VB NNS IN DT NN .\nEarlier , Boeing officials warned a strike would be devastating to the company .\tRB , NNP NNS VBD DT NN MD VB JJ TO DT NN .\nUnion leaders had urged members to reject the new contract , saying it failed to meet their demands on health care and pension benefits .\tNNP NNS VBD VBN NNS TO VB DT JJ NN , VBG PRP VBD TO VB PRP$ NNS IN NN NN CC NN NNS .\nBoeing managers were seeking to cut some benefit costs , which they say have risen sharply in recent years .\tNNP NNS VBD VBG TO VB DT NN NNS , WDT PRP VBP VBP VBN RB IN JJ NNS .\nBoeing is currently locked in a trade dispute with its European rival Airbus over government subsidies .\tNNP VBZ RB VBN IN DT NN NN IN PRP$ JJ JJ NNP IN NN NNS .\nScientists say they have discovered a gene responsible for increasing a person 's likelihood of contracting type 1 diabetes .\tNNS VBP PRP VBP VBN DT NN JJ IN VBG DT NN POS NN IN VBG NN CD NNS .\nIn an article published Sunday in the journal Nature , researchers said people with a variation of the gene are as much as 50 percent more likely to suffer from type 1 diabetes .\tIN DT NN VBN NNP IN DT NN NN , NNS VBD NNS IN DT NN IN DT NN VBP RB JJ IN CD NN RBR JJ TO VB IN NN CD NNS .\nThat sort of diabetes is also called juvenile diabetes because it is often diagnosed in childhood or early adulthood .\tDT NN IN NN VBZ RB VBN NN VBZ IN PRP VBZ RB VBN IN NN CC JJ NN .\nResearchers say the ability to forecast a vulnerability to diabetes would allow doctors to intervene in time to lessen its impact on patients .\tNNS VBP DT NN TO VB DT NN TO NNS MD VB NNS TO VB IN NN TO VB PRP$ NN IN NNS .\nType 1 diabetes is an incurable disease in which the body destroys its cells which produce insulin , a hormone that regulates blood glucose .\tNNP CD NN VBZ DT JJ NN IN WDT DT NN VBZ PRP$ NNS WDT VBP NN , DT NN WDT VBZ NN NN .\nThose with the disease have a higher risk of heart disease , kidney failure , blindness and other medical problems .\tDT IN DT NN VBP DT JJR NN IN NN NN , NN NN , NN CC JJ JJ NNS .\nAuthorities in Pakistan say unidentified gunmen killed seven people near the Afghan border Thursday .\tNNS IN NNP VBP JJ NNS VBD CD NNS IN DT JJ NN NNP .\nThey say the gunmen opened fire on a vehicle carrying the men near the town of Wana , in the remote tribal region of South Waziristan .\tPRP VBP DT NNS VBD NN IN DT NN VBG DT NNS IN DT NN IN NNP , IN DT JJ JJ NN IN NNP NNP .\nIt was not clear who the victims were .\tPRP VBD RB JJ WP DT NNS VBD .\nPakistan has thousands of troops deployed in the region to hunt for al-Qaida and Taleban fighters .\tNNP VBZ NNS IN NNS VBN IN DT NN TO VB IN NNP CC NNP NNS .\nA suicide car bomber has killed four U.S. soldiers outside Baghdad , as coalition forces continue their offensive against insurgents near Syria 's border .\tDT NN NN NN VBZ VBN CD NNP NNS IN NNP , IN NN NNS VBP PRP$ NN IN NNS IN NNP POS NN .\nMilitary officials said the four soldiers were killed in a suicide attack on a checkpoint south of the Iraqi capital Monday .\tNNP NNS VBD DT CD NNS VBD VBN IN DT NN NN IN DT NN NN IN DT JJ NN NNP .\nMeanwhile , coalition forces battled insurgents for a third day in the Iraqi border town of Husaybah , where officials say one Marine and 36 insurgents have died .\tRB , NN NNS VBD NNS IN DT JJ NN IN DT JJ NN NN IN NNP , WRB NNS VBP CD NN CC CD NNS VBP VBN .\nOfficials say coalition forces have encountered frequent attacks by snipers and discovered homemade bombs in the area .\tNNS VBP NN NNS VBP VBN JJ NNS IN NNS CC VBD JJ NNS IN DT NN .\nThere are no reports of civilian casualties in the operation aimed at stopping the flow of weapons and foreign fighters from Syria .\tEX VBP DT NNS IN JJ NNS IN DT NN VBN IN VBG DT NN IN NNS CC JJ NNS IN NNP .\nNear Baghdad , separate attacks killed 13 people , including six Iraqi police officers .\tNNP NNP , JJ NNS VBN CD NNS , VBG CD JJ NNS NNS .\nVenezuelan President Hugo Chavez has replaced his vice president and plans to make at least 12 more Cabinet changes .\tJJ NNP NNP NNP VBZ VBN PRP$ NN NN CC VBZ TO VB IN JJS CD JJR NNP NNS .\nHe named Ramon Carrizales , a housing minister , to replace Vice President Jorge Rodriguez .\tPRP VBD NNP NNP , DT NN NN , TO VB NNP NNP NNP NNP .\nThe Cabinet reshuffle comes after Venezuelans rejected constitutional reforms that would have greatly expanded the president 's power .\tDT NN NN VBZ IN NNS VBD JJ NNS WDT MD VB RB VBN DT NN POS NN .\nIt was the first electoral defeat for Mr. Chavez in nine years .\tPRP VBD DT JJ JJ NN IN NNP NNP IN CD NNS .\nThe reforms would have allowed Mr. Chavez , who has vowed to transform Venezuela into a socialist state , to seek re-election indefinitely .\tDT NNS MD VB VBN NNP NNP , WP VBZ VBN TO VB NNP IN DT JJ NN , TO VB NN RB .\nThe proposals also would have abolished the Central Bank 's independence , limited individual rights under states of emergency and created new forms of community-owned property .\tDT NNS RB MD VB VBN DT NNP NNP POS NN , VBN JJ NNS IN NNS IN NN CC VBN JJ NNS IN JJ NN .\nFormer Indian Prime Minister Atal Bihari Vajpayee has announced his retirement from politics .\tJJ JJ NNP NNP NNP NNP NNP VBZ VBN PRP$ NN IN NNS .\nThe former prime minister made the surprise announcement in Mumbai Thursday at a rally celebrating his Hindu nationalist Bhartiya Janata Party 's 25-year existence .\tDT JJ JJ NN VBD DT NN NN IN NNP NNP IN DT NN VBG PRP$ NNP NN NNP NNP NNP POS JJ NN .\nMr. Vajpayee stepped down as prime minister in May after the BJP was defeated in national elections in May , 2004 .\tNNP NNP VBD RP IN JJ NN IN NNP IN DT NNP VBD VBN IN JJ NNS IN NNP , CD .\nThe May election prevented Mr. Vajpayee from serving a fourth term as India 's prime minister .\tDT NNP NN VBD NNP NNP IN VBG DT JJ NN IN NNP POS JJ NN .\nHe served as prime minister from 1999 to 2004 and briefly in 1996 and 1998 .\tPRP VBD IN JJ NN IN CD TO CD CC RB IN CD CC CD .\nMr. Vajpayee 's tenure saw India conduct nuclear tests , make strides toward peace with Pakistan and achieve major economic progress .\tNNP NNP POS NN VBD NNP VBP JJ NNS , VBP NNS IN NN IN NNP CC VBP JJ JJ NN .\nA grand jury in the U.S. state of Texas has indicted U.S. Congressman Tom DeLay on charges of money laundering and conspiracy .\tDT JJ NN IN DT NNP NN IN NNP VBZ VBN NNP NNP NNP NNP IN NNS IN NN NN CC NN .\nThe indictment announced Monday is the second in less than a week against the former U.S. House Republican majority leader .\tDT NN VBN NNP VBZ DT JJ IN JJR IN DT NN IN DT JJ NNP NNP NNP NN NN .\nLast week , Mr. DeLay was forced to temporarily step down from his powerful leadership position when he was charged with violating a Texas campaign-finance law .\tJJ NN , NNP NNP VBD VBN TO RB VB RB IN PRP$ JJ NN NN WRB PRP VBD VBN IN VBG DT NNP NN NN .\nIn both indictments , he is accused of conspiring to get around a state ban on corporate campaign contributions by funneling money through the Republican National Committee .\tIN DT NNS , PRP VBZ VBN IN VBG TO VB IN DT NN NN IN JJ NN NNS IN VBG NN IN DT NNP NNP NNP .\nMr. DeLay has denied the charges .\tNNP NNP VBZ VBN DT NNS .\nIn a statement released Monday , Mr. DeLay accused the Texas district attorney Ronnie Earle of ' prosecutorial abuse , ' and called the charges illegitimate and baseless .\tIN DT NN VBN NNP , NNP NNP VBD DT NNP NN NN NNP NNP IN `` JJ NN , `` CC VBD DT NNS JJ CC JJ .\nIf convicted , he could face up to life in prison for money laundering .\tIN VBN , PRP MD VB RP TO NN IN NN IN NN NN .\nSpanish police in raids across the country have arrested 186 people in a crackdown on the distribution of child pornography .\tJJ NN IN NNS IN DT NN VBP VBN CD NNS IN DT NN IN DT NN IN NN NN .\nA total of 650 officers took part in the operation that broke up a system that used the Internet to distribute pornographic materials without the need to place them on web pages .\tDT NN IN CD NNS VBD NN IN DT NN WDT VBD RP DT NN WDT VBD DT NN TO VB JJ NNS IN DT NN TO VB PRP IN JJ NNS .\nThe suspects used a series of pre-arranged passwords to share files directly between computers .\tDT NNS VBD DT NN IN JJ NNS TO VB NNS RB IN NNS .\nLast month , Spanish police broke up a group of pedophiles who abused and raped children then distributed the images over the Internet .\tJJ NN , JJ NN VBD RP DT NN IN NNS WP VBD CC VBD NNS RB VBD DT NNS IN DT NNP .\nThe top U.S. envoy for arms control says North Korea , Iran and Syria are among the worst proliferators of weapons of mass destruction .\tDT JJ NNP NN IN NNS NN VBZ NNP NNP , NNP CC NNP VBP IN DT JJS NNS IN NNS IN NN NN .\nU.S. Undersecretary of State John Bolton told reporters in Tokyo that the three countries are states of proliferation concern .\tNNP NNP IN NNP NNP NNP VBD NNS IN NNP IN DT CD NNS VBP NNS IN NN NN .\nHe called for closer monitoring of shipments to and from such countries .\tPRP VBD IN JJR NN IN NNS TO CC IN JJ NNS .\nMr. Bolton is visiting Tokyo to observe multinational exercises , held under the U.S.-led Proliferation Security Initiative , aimed at training troops from several countries to intercept weapons of mass destruction at sea .\tNNP NNP VBZ VBG NNP TO VB JJ NNS , VBN IN DT JJ NNP NNP NNP , VBN IN VBG NNS IN JJ NNS TO JJ NNS IN NN NN IN NN .\nThe United States says the drills send a message that the world does not tolerate anyone who tries to traffic weapons of mass destruction .\tDT NNP NNPS VBZ DT NNS VBP DT NN IN DT NN VBZ RB VB DT WP VBZ TO NN NNS IN NN NN .\nAn Ethiopian official says the first portion of the ancient Axum obelisk will be returned home next week after being taken to Rome 70 years ago .\tDT JJ NN VBZ DT JJ NN IN DT JJ NNP NN MD VB VBN NN IN NN IN VBG VBN TO NNP CD NNS RB .\nEthiopian Culture Minister Teshome Toga told reporters Friday the first section of the obelisk is scheduled to be flown to Ethiopia next Wednesday .\tJJ NNP NNP NNP NNP VBD NNS NNP DT JJ NN IN DT NN VBZ VBN TO VB VBN TO NNP IN NNP .\nThe roughly 24-meter high , 160 - metric ton granite structur , believed to be nearly 2,000-years-old , is too large to be moved in one piece .\tDT RB JJ JJ , CD : JJ NN NN NN , VBN TO VB RB JJ , VBZ RB JJ TO VB VBN IN CD NN .\nThe obelisk was taken from taken from the city of Axum in 1937 by order of Italian dictator Benito Mussolini during Italy 's brief occupation of Ethiopia .\tDT NN VBD VBN IN VBN IN DT NN IN NNP IN CD IN NN IN JJ NN NNP NNP IN NNP POS JJ NN IN NNP .\nThe two nations signed an agreement for the return of the structure in 1947 , but ' technical difficulties ' have delayed its delivery .\tDT CD NNS VBD DT NN IN DT NN IN DT NN IN CD , CC `` JJ NNS `` VBP VBN PRP$ NN .\nCalifornia has become the first U.S. state to ban trans fats , a type of unsaturated fat that has been shown to clog arteries .\tNNP VBZ VBN DT JJ NNP NN TO VB NNS NNS , DT NN IN JJ NN WDT VBZ VBN VBN TO VB NNS .\nDoctors are applauding the decision , but some residents complain that the government is interfering with their freedom .\tNNS VBP VBG DT NN , CC DT NNS VBP IN DT NN VBZ VBG IN PRP$ NN .\nVOA 's Carolyn Presutti takes us to the controversy .\tNNP POS NNP NNP VBZ PRP TO DT NN .\nCuban officials and allies of President Fidel Castro say the aging leader is doing well after undergoing intestinal surgery .\tJJ NNS CC NNS IN NNP NNP NNP VBP DT NN NN VBZ VBG RB IN VBG JJ NN .\nCuban Vice President Carlos Lage said in Bolivia Sunday that Mr. Castro will recover within a few weeks and will return to his duties .\tJJ NNP NNP NNP NNP VBD IN NNP NNP IN NNP NNP MD VB IN DT JJ NNS CC MD VB TO PRP$ NNS .\nThe 79-year-old Cuban leader underwent surgery last Monday to stop intestinal bleeding .\tDT JJ JJ NN VBD NN JJ NNP TO VB JJ NN .\nThe government says the president handed power to his brother , Raul , who has not been seen in public since the political shift .\tDT NN VBZ DT NN VBD NN TO PRP$ NN , NNP , WP VBZ RB VBN VBN IN JJ IN DT JJ NN .\nVenezuelan President Hugo Chavez , a close political ally to Mr. Castro , said Sunday he had learned the Cuban leader was able to get out of bed and hold conversations .\tJJ NNP NNP NNP , DT JJ JJ NN TO NNP NNP , VBD NNP PRP VBD VBN DT JJ NN VBD JJ TO VB IN IN NN CC VB NNS .\nU.S. Secretary of State Condoleezza Rice said Sunday Washington encourages democratic change in Cuba , but would not stir up a political crisis while Mr. Castro remains ill .\tNNP NNP IN NNP NNP NNP VBD NNP NNP VBZ JJ NN IN NNP , CC MD RB VB RP DT JJ NN IN NNP NNP VBZ JJ .\nBritish authorities have increased security measures following intelligence that terrorists could be planning to attack major transportation hubs .\tJJ NNS VBP VBN NN NNS VBG NN IN NNS MD VB VBG TO VB JJ NN NNS .\nBritish transport police cancelled leave and called in extra officers .\tJJ NN NN VBD NN CC VBN IN JJ NNS .\nBut officials say the overall threat level has not changed , and there is no suggestion of an imminent attack .\tCC NNS VBP DT JJ NN NN VBZ RB VBN , CC EX VBZ DT NN IN DT JJ NN .\nThe heightened security steps come after two terrorist plots were linked to Britain in the past few weeks .\tDT JJ NN NNS VBP IN CD JJ NNS VBD VBN TO NNP IN DT JJ JJ NNS .\nA Swedish citizen , who had lived in Britain for the past 10 years , blew himself up in mid-December in Stockholm , wounding two other people .\tDT JJ NN , WP VBD VBN IN NNP IN DT JJ CD NNS , VBD PRP RP IN NNP IN NNP , VBG CD JJ NNS .\nAt the end of December , British police arrested 12 men from around the country , suspected of plotting a terrorist attack in Britain .\tIN DT NN IN NNP , JJ NN VBN CD NNS IN IN DT NN , VBN IN VBG DT JJ NN IN NNP .\nAn artist from Argentina is preparing to showcase her work at the Embassy of Argentina in Washington later this month .\tDT NN IN NNP VBZ VBG TO VB PRP$ NN IN DT NNP IN NNP IN NNP RB DT NN .\nThe show is just the latest step in an artistic career that began as a teenager .\tDT NN VBZ RB DT JJS NN IN DT JJ NN WDT VBD IN DT NN .\nVOA 's Sahar Sepehri introduces us to Evangelina Elizondo , an artist making a name for herself in the international world of art .\tNNP POS NNP NNP VBZ PRP TO NNP NNP , DT NN VBG DT NN IN PRP IN DT JJ NN IN NN .\nIran 's state news agency says an Iranian fighter jet has crashed into the Oman Sea off the country 's southeastern coast .\tNNP POS NN NN NN VBZ DT JJ NN NN VBZ VBN IN DT NNP NNP IN DT NN POS JJ NN .\nIran says the F-4 Phantom jet crashed at 12.45 p.m. local time ( 915 UTC ) Monday in waters near the Iranian port city of Konarak .\tNNP VBZ DT NNP NNP NN VBD IN CD RB JJ NN LRB CD NNP RRB NNP IN NNS IN DT JJ JJ NN IN NNP .\nThere was no word on the fate of the pilot or the cause of the crash .\tEX VBD DT NN IN DT NN IN DT NN CC DT NN IN DT NN .\nMany of the warplanes in Iran 's air force are aging U.S.-built jets such as the F-4 that Iran bought before its Islamic Revolution in 1979 .\tNN IN DT NNS IN NNP POS NN NN VBP VBG JJ NNS JJ IN DT NN IN NNP VBD IN PRP$ JJ NN IN CD .\nU.S. sanctions imposed on Iran after the revolution have made it hard for Tehran to buy spare parts for its military and civilian aircraft .\tNNP NNS VBN IN NNP IN DT NN VBP VBN PRP JJ IN NNP TO VB JJ NNS IN PRP$ JJ CC JJ NN .\nIran 's air force also has Russian-made Sukhoi warplanes and recently conducted test flights on two domestically-produced fighter jets .\tNNP POS NN NN RB VBZ JJ NNP NNS CC RB VBN NN NNS IN CD JJ NN NNS .\nThe U.S. Senate has begun debate on two proposals calling on President Bush to establish a strategy that will lead to the withdrawal of U.S. forces from Iraq .\tDT NNP NNP VBZ VBN NN IN CD NNS VBG IN NNP NNP TO VB DT NN WDT MD VB TO DT NN IN NNP NNS IN NNP .\nThe proposals , introduced by both Democrats and Republicans , call for Mr. Bush to inform Congress and the American people every three months how he plans to achieve the successful completion of the U.S. mission in Iraq .\tDT NNS , VBN IN DT NNPS CC NNPS , NN IN NNP NNP TO VB NNP CC DT JJ NNS DT CD NNS WRB PRP VBZ TO VB DT JJ NN IN DT NNP NN IN NNP .\nBut the two sides disagree on whether to set a timetable for the withdrawal of U.S. forces .\tCC DT CD NNS VBP IN IN TO VB DT NN IN DT NN IN NNP NNS .\nDemocrats want the administration to give estimated dates on withdrawal , as long as certain conditions are met , while Republicans say setting any timetable would embolden the terrorists .\tNNPS VBP DT NN TO VB JJ NNS IN NN , RB RB IN JJ NNS VBP VBN , IN NNS VBP VBG DT NN MD VB DT NNS .\nVotes on the proposals are expected Tuesday .\tNNS IN DT NNS VBP VBN NNP .\nIraq says it will prosecute Saddam Hussein on 12 well-documented criminal charges , drawn from a list of 500 criminal counts that authorities had considered filing against the jailed ex-dictator .\tNNP VBZ PRP MD VB NNP NNP IN CD JJ JJ NNS , VBN IN DT NN IN CD JJ NNS IN NNS VBD VBN NN IN DT JJ NN .\nSpeaking in Baghdad on Sunday a government spokesman also repeated a government prediction that Saddam will go on trial within two months .\tVBG IN NNP IN NNP DT NN NN RB VBD DT NN NN IN NNP MD VB IN NN IN CD NNS .\nNo trial date has been set .\tDT NN NN VBZ VBN VBN .\nSaddam is widely expected to face genocide charges for allegedly ordering the 1988 chemical attack on the Kurdish village of Halabja that killed five thousand people .\tNNP VBZ RB VBN TO VB NN NNS IN RB VBG DT CD NN NN IN DT JJ NN IN NNP WDT VBD CD CD NNS .\nOther charges are expected for the 1990 invasion of Kuwait and for the deadly suppression of Shi'ite muslims that began a year later in southern Iraq .\tJJ NNS VBP VBN IN DT CD NN IN NNP CC IN DT JJ NN IN NNP NNS WDT VBD DT NN RB IN JJ NNP .\nMeanwhile , the U.S. military says it has seized a vast underground insurgent hideout in western Iraq .\tRB , DT NNP NN VBZ PRP VBZ VBN DT JJ JJ JJ NN IN JJ NNP .\nAuthorities say the complex includes fully furnished living spaces , fresh food and a massive munitions cache .\tNNS VBP DT NN VBZ RB VBN NN NNS , JJ NN CC DT JJ NNS NN .\nThe United Nations weather agency says 2010 is set to be one of the three warmest years on record , and possibly the warmest ever .\tDT NNP NNP NN NN VBZ CD VBZ VBN TO VB CD IN DT CD JJS NNS IN NN , CC RB DT NN RB .\nThe World Meteorological Organization says the past 10 years , 2001 - 2010 , have also set a new record for the warmest decade , with the highest worldwide temperatures since records began in 1850 .\tDT NNP NNP NNP VBZ DT JJ CD NNS , CD IN CD , VBP RB VBN DT JJ NN IN DT JJS NN , IN DT JJS JJ NNS IN NNS VBD IN CD .\nThe WMO released the data Thursday at U.N. climate change talks in Cancun , Mexico .\tDT NNP VBD DT NNS NNP IN NNP NN NN NNS IN NNP , NNP .\nFigures for November and December will be factored in early next year .\tNNS IN NNP CC NNP MD VB VBN IN JJ JJ NN .\nIraqi election officials say it is too early to suspect problems during Saturday 's constitutional referendum , as workers continue to review ballots .\tJJ NN NNS VBP PRP VBZ RB JJ TO VB NNS IN NNP POS JJ NN , IN NNS VBP TO VB NNS .\nOfficials say workers are still auditing results for about 12 Shi'ite and Kurdish areas which reported unusually high totals of ' yes ' votes .\tNNS VBP NNS VBP RB VBG NNS IN IN CD NNP CC NNP NNS WDT VBD RB JJ NNS IN `` UH `` NNS .\nThose regions were expected to support the constitution .\tDT NNS VBD VBN TO VB DT NN .\nElection officials say a final vote count may be ready by Friday or Saturday .\tNN NNS VBP DT JJ NN NN MD VB JJ IN NNP CC NNP .\nAt least one predominantly Sunni Arab province , Salaheddin , appeared to have voted against the constitution .\tIN JJS CD RB NNP NNP NN , NNP , VBD TO VB VBN IN DT NN .\nThe draft will fail if three provinces vote against it .\tDT NN MD VB IN CD NNS NN IN PRP .\nSome Sunni Arab leaders have alleged fraud in Saturday 's vote .\tDT NNP NNP NNS VBP VBN NN IN NNP POS NN .\nMeanwhile , Iraqi police said gunmen in Ramadi killed the deputy governor of Anbar province , Talib al-Dulaimi , on Tuesday .\tRB , JJ NNS VBD NNS IN NNP VBD DT NN NN IN NNP NN , NNP NNP , IN NNP .\nAnd U.S. military officials said one soldier died in a gun battle in Mosul .\tCC NNP JJ NNS VBD CD NN VBD IN DT NN NN IN NNP .\nIraqi police say car bomb attacks at churches in Baghdad and Kirkuk have killed at least three people and wounded several others .\tJJ NNS VBP NN NN NNS IN NNS IN NNP CC NNP VBP VBN IN JJS CD NNS CC VBD JJ NNS .\nThey say the cars exploded at nearly the same time outside two churches in Kirkuk and four in Baghdad .\tPRP VBP DT NNS VBD IN RB DT JJ NN IN CD NNS IN NNP CC CD IN NNP .\nThe blasts came shortly after Iraqi authorities adjourned the trial of ousted dictator Saddam Hussein until at least Wednesday .\tDT NNS VBD RB IN JJ NNS VBD DT NN IN JJ NN NNP NNP IN IN JJS NNP .\nSaddam and some co-defendants were thrown out of court Sunday , after Saddam 's co-defendant half-brother cursed the court and was then dragged away by guards .\tNNP CC DT NNS VBD VBN IN IN NN NNP , IN NNP POS JJ NN VBD DT NN CC VBD RB VBN RB IN NNS .\nSeveral defense lawyers walked out in protest .\tJJ NN NNS VBD RP IN NN .\nThe former Iraqi leader and seven co-defendants are accused of killing more than 140 people in the town of Dujail in 1982 after a failed assassination attempt .\tDT JJ JJ NN CC CD NNS VBP VBN IN VBG JJR IN CD NNS IN DT NN IN NNP IN CD IN DT JJ NN NN .\nElsewhere , a suicide car bomber killed four Iraqi soldiers near Saddam 's hometown of Tikrit .\tRB , DT NN NN NN VBD CD JJ NNS IN NNP POS NN IN NNP .\nAnother insurgent attack killed 10 people south of Baghdad .\tDT JJ NN VBD CD NNS RB IN NNP .\nUganda says it will send an additional 250 soldiers to Somalia to train forces loyal to the Somali interim government .\tNNP VBZ PRP MD VB DT JJ CD NNS TO NNP TO VB NNS JJ TO DT JJ JJ NN .\nUgandan defense officials announced the move to parliament on Wednesday .\tJJ NN NNS VBD DT NN TO NN IN NNP .\nThey said the training is part of the mandate of the African Union peacekeeping mission in Somalia .\tPRP VBD DT NN VBZ NN IN DT NN IN DT NNP NNP VBG NN IN NNP .\nThe AU has promised 8,000 peacekeepers for the war-ravaged country .\tDT NNP VBZ VBN CD NNS IN DT JJ NN .\nBut so far , only Uganda has sent troops .\tCC RB RB , RB NNP VBZ VBN NNS .\nThose 1500 troops have largely stayed out of the Somali capital 's chronic violence , focusing on protecting the airport , seaport , and presidential palace .\tDT CD NNS VBP RB VBN IN IN DT JJ NN POS NN NN , VBG IN VBG DT NN , NN , CC JJ NN .\nWitnesses in the Somali capital say a landmine explosion in northern Mogadishu Thursday , killed two policemen and wounded three other people .\tNNS IN DT JJ NN VBP DT NN NN IN JJ NNP NNP , VBD CD NNS CC VBD CD JJ NNS .\nThe 250 soldiers will increase Uganda 's contingent in Somalia to 1750 troops .\tDT CD NNS MD VB NNP POS JJ IN NNP TO CD NNS .\nUgandan officials said the new troops will deploy as soon as the Somali government works out the logistics for their stay .\tJJ NNS VBD DT JJ NNS MD VB RB RB IN DT JJ NN VBZ RP DT NNS IN PRP$ NN .\nUp to two million people evacuated the city of New Orleans and surrounding areas in advance of Hurricane Gustav , which was not nearly as severe as Hurricane Katrina three years earlier .\tIN TO CD CD NNS VBD DT NN IN NNP NNP CC VBG NNS IN NN IN NNP NNP , WDT VBD RB RB RB JJ IN NNP NNP CD NNS RBR .\nVOA 's Barry Wood in New Orleans tells us about a French Quarter hotel that for traveling journalists provided welcome shelter from the storm .\tNNP POS NNP NNP IN NNP NNP VBZ PRP IN DT JJ NN NN IN IN VBG NNS VBN JJ NN IN DT NN .\nThe British government reports that more than 4,00,000 workers from Eastern Europe have come to work in Britain since 10 new members joined the European Union in 2004 .\tDT JJ NN NNS IN JJR IN CD NNS IN NNP NNP VBP VBN TO VB IN NNP IN CD JJ NNS VBD DT NNP NNP IN CD .\nFigures published by the British Home Office Tuesday show the government admitted 4,27,000 workers from the 80 formerly communist-ruled new EU member nations .\tNNS VBN IN DT NNP NNP NNP NNP VBP DT NN VBD CD NNS IN DT CD RB JJ JJ NNP NN NNS .\nIf self-employed workers are included , that figure may be as high as 6,00,000 .\tIN JJ NNS VBP VBN , DT NN MD VB RB JJ IN CD .\nPoles make up the majority of the registered immigrant workers in Britain , followed by Lithuanians and Slovaks .\tNNS VBP RP DT NN IN DT JJ JJ NNS IN NNP , VBN IN NNS CC NNS .\nPoland has the bloc 's highest unemployment rate .\tNNP VBZ DT NN POS JJS NN NN .\nThe immigration figures have triggered debate in Britain over foreign labor .\tDT NN NNS VBP VBN NN IN NNP IN JJ NN .\nSome politicians have called for additional restrictions on immigration ahead of the EU decision whether to admit Bulgaria and Romania in 2007 .\tDT NNS VBP VBN IN JJ NNS IN NN RB IN DT NNP NN IN TO VB NNP CC NNP IN CD .\nThe countries that gained EU membership in 2004 are Cyprus , the Czech Republic , Estonia , Hungary , Latvia , Lithuania , Malta , Poland , Slovakia and Slovenia .\tDT NNS WDT VBD NNP NN IN CD VBP NNP , DT JJ NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nWitnesses say an Israeli drone aircraft fired a missile into a car near a Gaza refugee camp Tuesday , but they say the passengers escaped unharmed .\tNNS VBP DT JJ NN NN VBD DT NN IN DT NN IN DT NNP NN NN NNP , CC PRP VBP DT NNS VBD JJ .\nIsrael says the strike near Khan Younis targeted two Palestinian militants wanted in connection with a series of mortar attacks on nearby Jewish settlements .\tNNP VBZ DT NN IN NNP NNP VBD CD JJ NNS VBN IN NN IN DT NN IN JJ NNS IN JJ JJ NNS .\nThe Khan Younis camp in southern Gaza is a stronghold of militants who often target Jewish settlements with homemade rockets and mortars .\tDT NNP NNP NN IN JJ NNP VBZ DT NN IN NNS WP RB VBP JJ NNS IN JJ NNS CC NNS .\nIsrael has raided the camp repeatedly to kill or capture militants , and frequently destroys Khan Younis homes linked to such suspects .\tNNP VBZ VBN DT NN RB TO VB CC VB NNS , CC RB VBZ NNP NNP NNS VBN TO JJ NNS .\nIsrael has killed scores of Palestinian militants in targeted attacks since the Palestinian uprising ( intifada ) erupted more than four years ago\tNNP VBZ VBN NNS IN JJ NNS IN JJ NNS IN DT JJ NN LRB NN RRB VBD JJR IN CD NNS RB\nJordan 's King Abdullah has postponed a peace mission to Israel and the Palestinian territories because of a flare-up in factional fighting in the Gaza Strip .\tNNP POS NNP NNP VBZ VBN DT NN NN TO NNP CC DT JJ NNS IN IN DT NN IN JJ NN IN DT NNP NNP .\nSpeaking Monday in Amman , a spokesman for the king said the current security situation in Gaza is not conducive to the visit .\tVBG NNP IN NNP , DT NN IN DT NN VBD DT JJ NN NN IN NNP VBZ RB JJ TO DT NN .\nHours earlier , Palestinian lawmakers voted to urge Palestinian Authority President Mahmoud Abbas to fire his cabinet for failing to stop fighting between Hamas militants and police .\tNNS RB , JJ NNS VBD TO VB JJ NNP NNP NNP NNP TO VB PRP$ NN IN VBG TO VB VBG IN NNP NNS CC NNS .\nThe bill also demands that Mr. Abbas form a new government within two weeks or face a no-confidence vote .\tDT NN RB VBZ IN NNP NNP VB DT JJ NN IN CD NNS CC VB DT JJ NN .\nThe vote came a short while after several dozen Palestinian police stormed the Palestinian parliament building in Gaza City to press demands for a security crackdown on Hamas .\tDT NN VBD DT JJ NN IN JJ NN JJ NN VBD DT JJ NN NN IN NNP NNP TO VB NNS IN DT NN NN IN NNP .\nSunday , three Palestinians were killed and at least 50 others wounded in gunbattles between Hamas militants and police .\tNNP , CD NNS VBD VBN CC IN JJS CD NNS VBN IN NNS IN NNP NNS CC NNS .\nTurkey 's Foreign Minister Abdullah Gul says he remains a candidate for president - despite opposition from secularists .\tNNP POS NNP NNP NNP NNP VBZ PRP VBZ DT NN IN NN : IN NN IN NNS .\nGul told reporters Friday his candidacy will has not been derailed by the political crisis his nomination by the ruling A.K. ( Justice and Development ) party sparked .\tNNP VBD NNS NNP PRP$ NN MD VBZ RB VBN VBN IN DT JJ NN PRP$ NN IN DT NN NNP LRB NNP CC NNP RRB NN VBD .\nGul withdrew his candidacy from consideration from parliament after he failed to gain enough support .\tNNP VBD PRP$ NN IN NN IN NN IN PRP VBD TO VB JJ NN .\nThursday , Turkey 's parliament approved a set of constitutional amendments that would allow the president to be elected by a popular vote , instead of by parliament .\tNNP , NNP POS NN VBD DT NN IN JJ NNS WDT MD VB DT NN TO VB VBN IN DT JJ NN , RB IN IN NN .\nPresident Ahmet Necdet Sezer must sign the amendments before they can become law .\tNNP NNP NNP NNP MD VB DT NNS IN PRP MD VB NN .\nThe ruling party proposed the electoral reform package and Prime Minister Recep Tayyip Erdogan called early legislative elections ( July 22 ) after parliament failed to elect a president .\tDT VBG NN VBD DT JJ NN NN CC NNP NNP NNP NNP NNP VBD JJ JJ NNS LRB NNP CD RRB IN NN VBD TO VB DT NN .\nSecularists opposed Gul 's candidacy and accused the Islamist-rooted A.K. Party of attempting to undermine Turkey 's secular order .\tNNS VBD NNP POS NN CC VBD DT JJ NNP NNP IN VBG TO VB NNP POS JJ NN .\nAuthorities in Colombia have killed two soldiers and wounded six others after they mistook them for leftist rebels .\tNNS IN NNP VBP VBN CD NNS CC VBD CD NNS IN PRP VBD PRP IN JJ NNS .\nPolice say the incident occurred Thursday in the village of Chipaque south of the capital , Bogota .\tNNS VBP DT NN VBD NNP IN DT NN IN JJ NN IN DT NN , NNP .\nThey say military police rushed to the town after receiving information that rebels of the Revolutionary Armed Forces of Colombia , or FARC , were planning to blow up electricity towers in the area .\tPRP VBP JJ NNS VBD TO DT NN IN VBG NN IN NNS IN DT NNP NNP NNS IN NNP , CC NNP , VBD VBG TO VB RP NN NNS IN DT NN .\nA firefight broke out when an army patrol arrived at the scene at the same time to investigate a separate report about the FARC .\tDT NN VBD RP WRB DT NN NN VBD IN DT NN IN DT JJ NN TO VB DT JJ NN IN DT NNP .\nAuthorities say the incident is under investigation .\tNNS VBP DT NN VBZ IN NN .\nThe FARC , along with a smaller leftist rebel group and rightist paramilitaries , is involved in a long-running war with the government in Colombia .\tDT NNP , IN IN DT JJR JJ NN NN CC NN NNS , VBZ VBN IN DT JJ NN IN DT NN IN NNP .\nThe conflict leaves thousands of people dead each year .\tDT NN VBZ NNS IN NNS JJ DT NN .\nWorld leaders have praised Iraq 's national election as a triumph for the Iraqi people .\tNNP NNS VBP VBN NNP POS JJ NN IN DT NN IN DT JJ NNS .\nIn Europe and Russia , several leaders who opposed the war joined the United States in declaring the vote a success .\tIN NNP CC NNP , JJ NNS WP VBD DT NN VBD DT NNP NNPS IN VBG DT NN DT NN .\nFrench President Jacques Chirac told President Bush by phone Monday the elections are an important stage in Iraq 's reconstruction .\tJJ NNP NNP NNP VBD NNP NNP IN NN NNP DT NNS VBP DT JJ NN IN NNP POS NN .\nGerman Foreign Minister Joschka Fischer said Iraqis deserve great recognition for heading to the polls despite the danger .\tJJ NNP NNP NNP NNP VBD NNS VBP JJ NN IN VBG TO DT NNS IN DT NN .\nBut he reaffirmed Germany 's refusal to send troops to the country .\tCC PRP VBD NNP POS NN TO VB NNS TO DT NN .\nRussia 's President Putin called the vote a historic event .\tNNP POS NNP NNP VBD DT NN DT JJ NN .\nPraise also came from Asian countries , including China , which said it hopes the vote brings stability to Iraq .\tNNP RB VBD IN JJ NNS , VBG NNP , WDT VBD PRP VBZ DT NN VBZ NN TO NNP .\nPresident Bush and Britain 's Prime Minister Tony Blair hailed the election Sunday , calling it a blow to terrorism .\tNNP NNP CC NNP POS NNP NNP NNP NNP VBD DT NN NNP , VBG PRP DT NN TO NN .\nA public opinion poll indicates that nearly nine out of 10 Israelis believe their country 's offensive against Hezbollah guerrillas in Lebanon is justified .\tDT JJ NN NN VBZ IN RB CD IN IN CD NNS VBP PRP$ NN POS NN IN NNP NNS IN NNP VBZ JJ .\nThe survey published Tuesday in the Israeli newspaper Yedioth Ahronoth ( ' Latest News ' ) found that 81 percent of those polled think the offensive should continue .\tDT NN VBN NNP IN DT JJ NN NNP NNP LRB `` NNP NNP `` RRB VBD IN CD NN IN DT VBN VBP DT NN MD VB .\nNearly 60 percent said the offensive should continue until Hezbollah leader Hassan Nasrallah is killed .\tRB CD NN VBD DT NN MD VB IN NNP NN NNP NNP VBZ VBN .\nOnly 17 percent said Israel should stop the attacks and start negotiations .\tRB CD NN VBD NNP MD VB DT NNS CC VB NNS .\nThe poll also showed that Israelis are largely satisfied with Prime Minister Ehud Olmert 's response to the crisis .\tDT NN RB VBD IN NNS VBP RB JJ IN NNP NNP NNP NNP POS NN TO DT NN .\nNearly 80 percent said that Mr. Olmert 's job performance was either very good or fairly good .\tRB CD NN VBD IN NNP NNP POS NN NN VBD RB RB JJ CC RB JJ .\nTop officials of the U.S. central bank are expected to hold interest rates steady when they gather at a key policymaking meeting Tuesday and Wednesday in Washington .\tJJ NNS IN DT NNP JJ NN VBP VBN TO VB NN NNS RB WRB PRP VBP IN DT JJ NN NN NNP CC NNP IN NNP .\nThe U.S. Federal Reserve has cut interest rates several times recently to bolster economic growth that has been hurt by the faltering housing market , tight credit , and other problems .\tDT NNP NNP NNP VBZ VBN NN NNS JJ NNS RB TO VB JJ NN WDT VBZ VBN VBN IN DT VBG NN NN , JJ NN , CC JJ NNS .\nBut economists say cutting rates too low can spark inflation , which is a growing threat as oil prices soar to ever higher record levels .\tCC NNS VBP VBG NNS RB JJ MD VB NN , WDT VBZ DT VBG NN IN NN NNS VBP TO RB JJR NN NNS .\nExperts interviewed by news organizations , like Bloomberg and Reuters , say the Fed will probably keep interest rates unchanged for a while , but raise them later this year .\tNNS VBN IN NN NNS , IN NNP CC NNP , VBP DT NNP MD RB VB NN NNS JJ IN DT NN , CC VB PRP RBR DT NN .\nU.S. officials in Iraq say two American civilians have been killed and a third wounded in a roadside bomb blast south of Baghdad .\tNNP NNS IN NNP VBP CD JJ NNS VBP VBN VBN CC DT JJ VBN IN DT NN NN NN NN IN NNP .\nThe U.S. Embassy says the victims , who worked for a private security firm protecting U.S. diplomats , came under attack Saturday on the main road to Hilla .\tDT NNP NNP VBZ DT NNS , WP VBD IN DT JJ NN NN VBG NNP NNS , VBD IN NN NNP IN DT JJ NN TO NNP .\nMeanwhile , there are reports that talks among Iraq 's leading parties on forming a new government are stalled .\tRB , EX VBP NNS IN NNS IN NNP POS VBG NNS IN VBG DT JJ NN VBP VBN .\nSources close to the talks say leaders of the Kurdish alliance 's two factions were still debating Sunday a draft deal reached last week with the Shi'ite-dominated United Iraqi Alliance .\tNNS RB TO DT NNS VBP NNS IN DT NNP NN POS CD NNS VBD RB VBG NNP DT NN NN VBN JJ NN IN DT JJ NNP JJ NNP .\nThe two camps are supposed to announce an agreement on a new government Monday - two days before the Iraqi National Assembly convenes for the first time since January elections .\tDT CD NNS VBP VBN TO VB DT NN IN DT JJ NN NNP IN CD NNS IN DT JJ NNP NNP VBZ IN DT JJ NN IN NNP NNS .\nThe United States is urging Uzbekistan to give fair and humane treatment to a journalist recently arrested for violating the Uzbek constitution .\tDT NNP NNPS VBZ VBG NNP TO VB JJ CC JJ NN TO DT NN RB VBN IN VBG DT JJ NN .\nState Department spokesman Adam Ereli says the United States is closely following the case of Sabirjon Yakubov , who was arrested April 11th .\tNNP NNP NN NNP NNP VBZ DT NNP NNPS VBZ RB VBG DT NN IN NNP NNP , WP VBD VBN NNP CD .\nMr. Ereli says Uzbek authorities have harassed other journalists in the past to limit publications of critical stories .\tNNP NNP VBZ JJ NNS VBP VBN JJ NNS IN DT NN TO VB NNS IN JJ NNS .\nMr. Yakubov , who works for the Hurriyat ( Freedom ) weekly , faces a 20 year prison sentence .\tNNP NNP , WP VBZ IN DT NNP LRB NNP RRB JJ , VBZ DT CD NN NN NN .\nHe has recently written articles about Islam and political reforms , as well as the ' Orange Revolution ' in the Ukraine .\tPRP VBZ RB VBN NNS IN NNP CC JJ NNS , RB RB IN DT `` NNP NNP `` IN DT NNP .\nThe New York-based Committee to Protect Journalists says that if Mr. Yakubov is being held for expressing his religious and political beliefs he should be freed immediately .\tDT NNP JJ NNP TO VB NNS VBZ IN IN NNP NNP VBZ VBG VBN IN VBG PRP$ JJ CC JJ NNS PRP MD VB VBN RB .\nMTV Networks has launched its first music video channel for Africa .\tNNP NNP VBZ VBN PRP$ JJ NN NN NN IN NNP .\nThe new 24-hour channel , called MTV Base , is broadcast on satellite television , available to 1.3 million homes across Africa .\tDT JJ JJ NN , VBD NNP NNP , VBZ VBN IN NN NN , JJ TO CD CD NNS IN NNP .\nMTV says it also hopes to sell blocks of broadcast time to local stations so it can reach more people .\tNNP VBZ PRP RB VBZ TO VB NNS IN NN NN TO JJ NNS IN PRP MD VB JJR NNS .\nMTV says about 30 percent of the music played on the channel will be African - such as South Africa 's popular kwaito music , a derivative of hip-hop , or mbalax - music from West Africa made famous by Senegalese artist , Youssou N'Dour .\tNNP VBZ IN CD NN IN DT NN VBN IN DT NN MD VB JJ : JJ IN NNP NNP POS JJ NN NN , DT NN IN NNP , CC NNP : NN IN NNP NNP VBN JJ IN JJ NN , NNP NNP .\nMTV Base is the network 's 100th channel and its final global outpost .\tNNP NNP VBZ DT NN POS JJ NN CC PRP$ JJ JJ NN .\nMTV has already launched stations in North America , Europe , Latin America , and Asia .\tNNP VBZ RB VBN NNS IN NNP NNP , NNP , NNP NNP , CC NNP .\nFrench President Jacques Chirac says he is opposed to any international sanctions against a Palestinian government formed by the militant group Hamas .\tJJ NNP NNP NNP VBZ PRP VBZ VBN TO DT JJ NNS IN DT JJ NN VBN IN DT JJ NN NNP .\nSpeaking to reporters Monday on the final day of a visit to Saudi Arabia , Mr. Chirac said he was aware of calls for cutting off aid to a Hamas-led government because of the group 's refusal to renounce violence against Israel .\tVBG TO NNS NNP IN DT JJ NN IN DT NN TO NNP NNP , NNP NNP VBD PRP VBD JJ IN NNS IN VBG RP NN TO DT JJ NN IN IN DT NN POS NN TO VB NN IN NNP .\nBut he said imposing sanctions would mostly hurt the Palestinian people .\tCC PRP VBD VBG NNS MD RB VB DT JJ NNS .\nHamas won a landslide election victory in January , prompting Israel , the United States and the European Union - which includes France - to threaten to stop funding unless the Islamic militant group recognize Israel and stop its militants from attacking the Jewish state .\tNNP VBD DT NN NN NN IN NNP , VBG NNP , DT NNP NNPS CC DT NNP NNP : WDT VBZ NNP : TO VB TO VB VBG IN DT NNP JJ NN VBP NNP CC VB PRP$ NNS IN VBG DT JJ NN .\nFrance often presents itself as supporting Arab causes , while many Arabs regard the United States as biased toward Israel .\tNNP RB VBZ PRP IN VBG JJ NNS , IN JJ NNS VBP DT NNP NNPS IN JJ IN NNP .\nCuban President Fidel Castro has walked for the first time in public since suffering a damaging fall two months ago .\tJJ NNP NNP NNP VBZ VBD IN DT JJ NN IN JJ IN VBG DT JJ NN CD NNS RB .\nMr. Castro , assisted by a young school girl , received a standing ovation Thursday as he walked into the year-end session of the National Assembly .\tNNP NNP , VBN IN DT JJ NN NN , VBD DT NN NN NNP IN PRP VBD IN DT JJ NN IN DT NNP NNP .\nThe Associated Press reports he walked slowly and a bit stiffly as he took his seat on stage at Havana 's Convention Palace .\tDT NNP NNP NNS PRP VBD RB CC DT NN RB IN PRP VBD PRP$ NN IN NN IN NNP POS NNP NNP .\nThe 78-year-old Cuban leader stumbled and fell in October after making a speech , shattering his knee and fracturing an arm .\tDT JJ JJ NN VBD CC VBD IN NNP IN VBG DT NN , VBG PRP$ NN CC VBG DT NN .\nIn November , Mr. Castro surprised many when he stood up from his wheelchair to receive Chinese President Hu Jintao , who was on a state visit .\tIN NNP , NNP NNP VBD JJ WRB PRP VBD RP IN PRP$ NN TO VB JJ NNP NNP NNP , WP VBD IN DT NN NN .\nA study by the South African Medical Research Council has found that women in abusive relationships are more likely to become infected with HIV .\tDT NN IN DT NNP NNP NNP NNP NNP VBZ VBN IN NNS IN JJ NNS VBP RBR JJ TO VB JJ IN NNP .\nResearchers say that South African women in unequal relationships had a higher rate of HIV infection compared to women who had more equality in their relationships .\tNNS VBP IN JJ JJ NNS IN JJ NNS VBD DT JJR NN IN NNP NN VBN TO NNS WP VBD RBR NN IN PRP$ NNS .\nResearchers also say that addressing inequalities in relationships could prevent nearly 14 percent of new HIV infections .\tNNS RB VBP IN VBG NNS IN NNS MD VB RB CD NN IN JJ NNP NNS .\nNearly 12 percent of new infections could be prevented if women were not physically or sexually abused by their partners .\tRB CD NN IN JJ NNS MD VB VBN IN NNS VBD RB RB CC RB VBN IN PRP$ NNS .\nThe South African Medical Research Council is calling on the World Health Organization and other groups to develop and widely implement policies and programs that build gender equality and prevent domestic violence .\tDT NNP NNP NNP NNP NNP VBZ VBG IN DT NNP NNP NNP CC JJ NNS TO VB CC RB VB NNS CC NNS WDT VBP NN NN CC VB JJ NN .\nAlgerian state television says a suicide bomb attack has killed about 15 people and wounded more than 70 others .\tJJ NN NN VBZ DT NN NN NN VBZ VBN IN CD NNS CC VBN JJR IN CD NNS .\nSecurity officials say the attack occurred Thursday in the eastern town of Batna - shortly before President Abdelaziz Bouteflika was scheduled to visit .\tNN NNS VBP DT NN VBD NNP IN DT JJ NN IN NNP : RB IN NNP NNP NNP VBD VBN TO VB .\nWitnesses say the bomber was among a crowd of people waiting to see Mr. Bouteflika .\tNNS VBP DT NN VBD IN DT NN IN NNS VBG TO VB NNP NNP .\nThe Algerian president later visited some of the wounded at a local hospital .\tDT JJ NN RB VBD DT IN DT VBN IN DT JJ NN .\nHe condemned those who carried out the attack as ' criminals ' and said Algeria was committed to achieving national reconciliation .\tPRP VBD DT WP VBD RP DT NN IN `` NNS `` CC VBD NNP VBD VBN TO VBG JJ NN .\nAl-Qaida 's North African branch has claimed responsibility for several recent attacks in Algeria .\tNNP POS JJ JJ NN VBZ VBN NN IN JJ JJ NNS IN NNP .\nIslamic militants have been fighting in Algeria since 1992 .\tJJ NNS VBP VBN VBG IN NNP IN CD .\nViolence has largely subsided in recent years , but the group al-Qaida Organization in the Islamic Maghreb continues to fight .\tNN VBZ RB VBN IN JJ NNS , CC DT NN NNP NNP IN DT NNP NNP VBZ TO VB .\nPresident Bush is seeking public support for his economic agenda , urging Congress to pass his proposed budget and reforms to the Social Security retirement program .\tNNP NNP VBZ VBG JJ NN IN PRP$ JJ NN , VBG NNP TO VB PRP$ JJ NN CC NNS TO DT NNP NNP NN NN .\nSpeaking in the midwestern city of Detroit Tuesday , Mr. Bush said his $ 2.5-trillion budget maintains discipline on spending while enabling the military and Homeland Security Department to protect Americans .\tVBG IN DT JJ NN IN NNP NNP , NNP NNP VBD PRP$ $ JJ NN VBZ NN IN NN IN VBG DT JJ CC NNP NNP NNP TO VB NNS .\nAbout Social Security , he said younger workers should be allowed to divert part of their taxes into private accounts that they could invest for a possibly higher return .\tIN NNP NNP , PRP VBD JJR NNS MD VB VBN TO VB NN IN PRP$ NNS IN JJ NNS IN PRP MD VB IN DT RB JJR NN .\nThe speech was part of the president 's effort to promote his plans , in the face of opposition from Democrats .\tDT NN VBD NN IN DT NN POS NN TO VB PRP$ NNS , IN DT NN IN NN IN NNPS .\nOpponents have called Mr. Bush 's budget ' irresponsible , ' noting that it does not take into account costs for the wars in Iraq and Afghanistan .\tNNS VBP VBN NNP NNP POS NN `` JJ , `` VBG IN PRP VBZ RB VB IN NN NNS IN DT NNS IN NNP CC NNP .\nThe Democrats have likened Mr. Bush 's Social Security plan to a form of roulette ( gambling ) .\tDT NNPS VBP VBN NNP NNP POS NNP NNP NN TO DT NN IN NN LRB NN RRB .\nSomali pirates have released a Taiwanese ship that they seized off the coast of Somalia more than five months ago .\tJJ NNS VBP VBN DT JJ NN IN PRP VBD RP DT NN IN NNP JJR IN CD NNS RB .\nTaiwanese officials say the vessel , Chung Yi 218 , has safely set sail from Somali waters .\tJJ NNS VBP DT NN , NNP NNP CD , VBZ RB VBN NN IN JJ NNS .\nIt is not clear how many crew members are on board , and if a deal was made to secure the ship 's release .\tPRP VBZ RB JJ WRB JJ NN NNS VBP IN NN , CC IN DT NN VBD VBN TO VB DT NN POS NN .\nThe vessel was one of three Taiwanese ships held by Somali gunmen since August .\tDT NN VBD CD IN CD JJ NNS VBN IN JJ NNS IN NNP .\nThe pirates had demanded a ransom of $ 5,00,000 for each boat and its crew .\tDT NNS VBD VBN DT NN IN $ CD IN DT NN CC PRP$ NN .\nThe other two vessels are reported still being held .\tDT JJ CD NNS VBP VBN RB VBG VBN .\nPirates have attacked many ships off the Somali coast , including a United Nations World Food Program vessel hijacked last year .\tNNS VBP VBN JJ NNS IN DT JJ NN , VBG DT NNP NNP NNP NNP NNP NN VBN JJ NN .\nSomalia has been without an effective central government since 1991 .\tNNP VBZ VBN IN DT JJ JJ NN IN CD .\nCondoleezza Rice ( l ) and Chinese Prime Minister Wen Jiabao The subjects of North Korea and Taiwan dominated meetings in Beijing Sunday between top Chinese leaders and U.S. Secretary of State Condoleezza Rice .\tNNP NNP LRB NN RRB CC JJ NNP NNP NNP NNP DT NNS IN NNP NNP CC NNP VBD NNS IN NNP NNP IN JJ JJ NNS CC NNP NNP IN NNP NNP NNP .\nThe French news agency quotes Ms. Rice as telling President Hu Jintao she hopes Beijing will intensify efforts to get North Korea to resume talks on its nuclear program in a constructive manner .\tDT JJ NN NN VBZ NNP NNP IN VBG NNP NNP NNP PRP VBZ NNP MD VB NNS TO VB NNP NNP TO VB NNS IN PRP$ JJ NN IN DT JJ NN .\nMr. Hu said China is committed to resolving the issue .\tNNP NNP VBD NNP VBZ VBN TO VBG DT NN .\nPrime Minister Wen Jiabao and Ms. Rice also met and expressed their mutual desire to enhance Chinese-U.S. relations .\tNNP NNP NNP NNP CC NNP NNP RB VBD CC VBD PRP$ JJ NN TO VB JJ NNS .\nThe prime minister told Ms. Rice China 's new anti-secession law is meant to contain forces on Taiwan seeking independence .\tDT JJ NN VBD NNP NNP NNP POS JJ JJ NN VBZ VBN TO VB NNS IN NNP VBG NN .\nWhile on her Asia tour , Ms. Rice said the European government would be acting irresponsibly if they sell weapons to China that might be used against U.S. forces in the Pacific .\tIN IN PRP$ NN NN , NNP NNP VBD DT JJ NN MD VB VBG RB IN PRP VBP NNS TO NNP WDT MD VB VBN IN NNP NNS IN DT NNP .\nThe United Nations World Food Program ( WFP ) says Burma 's military government has placed restrictions on food deliveries as it cracks down on mass protests throughout the country .\tDT NNP NNP NNP NNP NNP LRB NNP RRB VBZ NNP POS JJ NN VBZ VBN NNS IN NN NNS IN PRP VBZ RB IN NN NNS IN DT NN .\nThe U.N. agency on Friday expressed concern that the government 's actions could block efforts to feed some 5,00,000 people in the impoverished Southeast Asian country .\tDT NNP NN IN NNP VBD NN IN DT NN POS NNS MD VB NNS TO VB DT CD NNS IN DT JJ JJ JJ NN .\nAccording to the agency , Burmese authorities have stopped all movement of food out of the country 's second-largest city , Mandalay , which will affect deliveries in northern Shan State .\tVBG TO DT NN , JJ NNS VBP VBN DT NN IN NN IN IN DT NN POS JJ NN , NNP , WDT MD VB NNS IN JJ NNP NNP .\nUnrest also has stopped food delivery in the port city of Sittwe , disrupting the World Food Program 's operations in north Rakhine State .\tNNP RB VBZ VBN NN NN IN DT JJ NN IN NNP , VBG DT NNP NNP NNP POS NNS IN JJ NNP NNP .\nThe U.N. agency says it is appealing to authorities for access to all parts of the country , to protect children , as well as HIV and tuberculosis patients .\tDT NNP NN VBZ PRP VBZ VBG TO NNS IN NN TO DT NNS IN DT NN , TO VB NNS , RB RB IN NNP CC NN NNS .\nFormer Ukrainian Prime Minister Yulija Tymoshenko says she is breaking with President Viktor Yushchenko following his decision to dismiss her government .\tJJ JJ NNP NNP NNP NNP VBZ PRP VBZ VBG IN NNP NNP NNP VBG PRP$ NN TO VB PRP$ NN .\nMs. Tymoshenko said Friday she is no longer a member of Mr. Yushchenko 's political team , but stopped short of calling herself an opponent .\tNNP NNP VBD NNP PRP VBZ RB RB DT NN IN NNP NNP POS JJ NN , CC VBD RB IN VBG PRP DT NN .\nThe former prime minister said she and her followers plan to run for office separately in next year 's parliamentary elections .\tDT JJ JJ NN VBD PRP CC PRP$ NNS VBP TO VB IN NN RB IN JJ NN POS JJ NNS .\nMr. Yushchenko dismissed the government Thursday , amid allegations of corruption and reports of infighting between the prime minister and Petro Poroshenko , another senior official .\tNNP NNP VBD DT NN NNP , IN NNS IN NN CC NNS IN NN IN DT JJ NN CC NNP NNP , DT JJ NN .\nThe president has named senior regional official Yuri Yekhanurov prime minister .\tDT NN VBZ VBN JJ JJ NN NNP NNP JJ NN .\nMs. Tymoshenko was a key figure during Ukraine 's Orange Revolution that swept the president into power last year .\tNNP NNP VBD DT JJ NN IN NNP POS NNP NN WDT VBD DT NN IN NN JJ NN .\nShe blamed presidential advisors , rather than Mr. Yushchenko himself , for her firing .\tPRP VBD JJ NNS , RB IN NNP NNP PRP , IN PRP$ NN .\nIvory Coast has reported its first outbreaks of the deadly H5N1 strain of birdflu .\tNNP NNP VBZ VBN PRP$ JJ NNS IN DT JJ NNP NN IN NN .\nThe Paris-based World Organization for Animal Health says tests have confirmed the presence of the virus in birds from two outbreaks in Abidjan .\tDT JJ NNP NNP IN NNP NNP VBZ NNS VBP VBN DT NN IN DT NN IN NNS IN CD NNS IN NNP .\nThe H5N1 strain was detected in seven chickens , nine ducks and one sparrowhawk .\tDT NNP NN VBD VBN IN CD NNS , CD NNS CC CD NN .\nThe virus has been confirmed in five other African nations - Burkina Faso , Cameroon , Egypt , Niger and Nigeria .\tDT NN VBZ VBN VBN IN CD JJ JJ NNS IN NNP NNP , NNP , NNP , NNP CC NNP .\nEarlier this week , a minister from the southern African country of Malawi told a 19-nation bird flu conference that Africa is not prepared to fight bird flu .\tRBR DT NN , DT NN IN DT JJ JJ NN IN NNP VBD DT JJ NN NN NN IN NNP VBZ RB JJ TO VB NN NN .\nA United Nations official at the same conference said poverty and inadequate medical and veterinary services make Africa vulnerable to the disease .\tDT NNP NNPS NN IN DT JJ NN VBD NN CC JJ JJ CC JJ NNS VBP NNP JJ TO DT NN .\nBird flu has killed more than 113 people worldwide since 2003 , mostly in Asia .\tNN NN VBZ VBN JJR IN CD NNS JJ IN CD , RB IN NNP .\nMany members of Iraq 's national football ( soccer ) team were scheduled to leave Iraq Saturday - just one day after ceremonies honoring them for their win last week at the Asian Cup championship in Jakarta .\tJJ NNS IN NNP POS JJ NN LRB NN RRB NN VBD VBN TO VB NNP NNP : RB CD NN IN NNS VBG PRP IN PRP$ NN JJ NN IN DT NNP NNP NN IN NNP .\nSome players have contracts with teams outside Iraq and live abroad .\tDT NNS VBP NNS IN NNS IN NNP CC VBP RB .\nThe Iraqi team has not played at home for 17 years due to fears of violence since the start of the 2003 U.S. invasion and to international sanctions against Saddam Hussein 's regime before that .\tDT JJ NN VBZ RB VBN IN NN IN CD NNS JJ TO NNS IN NN IN DT NN IN DT CD NNP NN CC TO JJ NNS IN NNP NNP POS NN IN DT .\nThe team practices in Jordan .\tDT NN VBZ IN NNP .\nOn Friday , Prime Minister Nouri al-Maliki welcomed Iraq 's national team to celebrations in Baghdad 's heavily fortified Green Zone .\tIN NNP , NNP NNP NNP NNP VBD NNP POS JJ NN TO NNS IN NNP POS RB VBN NNP NNP .\nMost Baghdad residents were barred from the celebration because of security concerns .\tJJS NNP NNS VBD VBN IN DT NN IN IN NN NNS .\nIraq defeated Saudi Arabia 1-0 in the Asian Cup final , sparking a rare moment of national jubilation .\tNNP VBD NNP NNP CD IN DT NNP NNP JJ , VBG DT JJ NN IN JJ NN .\nThe European Union is hopeful U.S. President Barack Obama 's message to Iran can help thaw relations between Tehran and much of the world .\tDT NNP NNP VBZ JJ NNP NNP NNP NNP POS NN TO NNP MD VB VB NNS IN NNP CC NN IN DT NN .\nEU foreign policy chief Javier Solana said in Brussels Friday that the broadcast appeal could help open ' a new chapter ' for relations with Iran .\tNNP JJ NN NN NNP NNP VBD IN NNP NNP IN DT NN NN MD VB VB `` DT JJ NN `` IN NNS IN NNP .\nSolana also called Mr. Obama 's attempt to reach out to Iran constructive .\tNNP RB VBD NNP NNP POS NN TO VB RP TO NNP NN .\nLike the United States , the EU accuses Iran of trying to develop nuclear weapons and has imposed a series of sanctions on Tehran .\tIN DT NNP NNPS , DT NNP VBZ NNP IN VBG TO VB JJ NNS CC VBZ VBN DT NN IN NNS IN NNP .\nLast month , German Chancellor Angela Merkel threatened to impose additional sanctions on Iran if talks do not work .\tJJ NN , JJ NNP NNP NNP VBD TO VB JJ NNS IN NNP IN NNS VBP RB VB .\nNew White House budget figures show a program to help seniors pay for prescription drugs will cost the government some $ 320 billion more than projected .\tNNP NNP NNP NN NNS VBP DT NN TO VB NNS VB IN NN NNS MD VB DT NN DT $ CD CD JJR IN VBN .\nFigures released late Tuesday raised the estimate of the program 's cost to $ 720 billion over the next decade .\tNNS VBD RB NNP VBD DT NN IN DT NN POS NN TO $ CD CD IN DT JJ NN .\nThat is nearly twice the $ 400 billion estimate President Bush offered in 2003 , before Congress added the prescription drug benefit to the government 's Medicare medical insurance program .\tDT VBZ RB RB DT $ CD CD NN NNP NNP VBD IN CD , IN NNP VBD DT NN NN NN TO DT NN POS NNP JJ NN NN .\nThe increased cost is likely to draw criticism from lawmakers concerned about the soaring U.S. budget deficit .\tDT VBN NN VBZ JJ TO VB NN IN NNS VBN IN DT VBG NNP NN NN .\nSpeaking with reporters at the White House Wednesday , Mr. Bush said Medicare has ' unfunded liabilities ' that he and Congress will have to deal with after fixing the Social Security retirement program .\tVBG IN NNS IN DT NNP NNP NNP , NNP NNP VBD NNP VBZ `` JJ NNS `` IN PRP CC NNP MD VB TO VB IN IN VBG DT NNP NNP NN NN .\nThe United Nations says it has placed U.N. disaster teams around the world on alert and told them they are ready to be deployed to the U.S. Gulf Coast .\tDT NNP NNP VBZ PRP VBZ VBN NNP NN NNS IN DT NN IN NN CC VBD PRP PRP VBP JJ TO VB VBN TO DT NNP NNP NNP .\nA U.N. spokesman in Geneva Friday said members of its U.N. Disaster Assessment and Coordination Center specializing in natural disasters are ready to help the United States deal with the devastation caused by Hurricane Katrina , if requested by Washington .\tDT NNP NN IN NNP NNP VBD NNS IN PRP$ NNP NNP NNP CC NNP NNP VBG IN JJ NNS VBP JJ TO VB DT NNP NNPS NN IN DT NN VBN IN NNP NNP , IN VBN IN NNP .\nHe said the world body 's various agencies - including the World Health Organization , UNICEF , the World Food Program and the U.N. refugee agency - are meeting Friday in New York to put together an offer of logistical support .\tPRP VBD DT NN NN POS JJ NNS : VBG DT NNP NNP NNP , NNP , DT NNP NNP NNP CC DT NNP NN NN : VBP VBG NNP IN NNP NNP TO VB RB DT NN IN JJ NN .\nThe U.N. announcement comes several hours after Secretary-General Kofi Annan said America has always been generous in responding to disasters around the globe , and urged the international community to offer assistance to the devastated communities along the U.S. Gulf Coast .\tDT NNP NN VBZ JJ NNS IN JJ NNP NNP VBD NNP VBZ RB VBN JJ IN VBG TO NNS IN DT NN , CC VBD DT JJ NN TO VB NN TO DT JJ NNS IN DT NNP NNP NNP .\nBurmese officials have blamed local dissident student groups , working with western governments , for Friday 's bomb blast at a luxury hotel in Rangoon .\tJJ NNS VBP VBN JJ JJ NN NNS , VBG IN JJ NNS , IN NNP POS NN NN IN DT NN NN IN NNP .\nOfficials held a rare news conference in the capital city Sunday to denounce the attack .\tNNS VBD DT JJ NN NN IN DT NN NN NNP TO VB DT NN .\nThey released a statement that alleged several groups , including the All Burma Students Democratic Front , the Karen National Union , and the Vigorous Burmese Student Warriors were behind the small blast outside the Traders Hotel , that did little damage and caused no injuries .\tPRP VBD DT NN WDT VBD JJ NNS , VBG DT NNP NNP NNP NNP NNP , DT NNP NNP NNP , CC DT JJ JJ NN NNS VBD IN DT JJ NN IN DT NNP NNP , WDT VBD JJ NN CC VBD DT NNS .\nThe Burmese Information Minister Brigadier General Kyaw Hsann also said authorities had thwarted a separate major bomb attack .\tDT JJ NNP NNP NNP NNP NNP NNP RB VBD NNS VBD VBN DT JJ JJ NN NN .\nOfficials have not mentioned any arrests in the alleged bomb plots .\tNNS VBP RB VBN DT NNS IN DT JJ NN NNS .\nBurma 's tightly-guarded capital has seen a number of explosions in recent months .\tNNP POS JJ NN VBZ VBN DT NN IN NNS IN JJ NNS .\nThe government regularly blames exile groups that oppose military rule .\tDT NN RB VBZ NN NNS WDT VBP JJ NN .\nSome dissidents say the blasts are carried out by government-linked groups to justify tighter security .\tDT NNS VBP DT NNS VBP VBN RP IN JJ NNS TO VB JJR NN .\nActivists from an alliance of five political parties in Nepal say they will hold a second round of protests Monday against King Gyanendra 's assumption of absolute power .\tNNS IN DT NN IN CD JJ NNS IN NNP VBP PRP MD VB DT JJ NN IN NNS NNP IN NNP NNP POS NN IN JJ NN .\nA spokesman for the alliance said Sunday the nationwide rallies will go ahead despite the king 's ban on demonstrations .\tDT NN IN DT NN VBD NNP DT JJ NNS MD VB RB IN DT NN POS NN IN NNS .\nLast Tuesday , political parties organized street protests to pressure the king to restore democracy in Nepal .\tJJ NNP , JJ NNS VBN NN NNS TO VB DT NN TO VB NN IN NNP .\nPolice arrested dozens of people , including former government ministers and former lawmakers .\tNNS VBN NNS IN NNS , VBG JJ NN NNS CC JJ NNS .\nSunday , police in Kathmandu arrested three students for shouting anti-monarchy slogans .\tNNP , NN IN NNP VBN CD NNS IN VBG JJ NNS .\nKing Gyanendra dismissed the government , imposed a state of emergency and suspended civil liberties on February 1 .\tNNP NNP VBD DT NN , VBD DT NN IN NN CC VBN JJ NNS IN NNP CD .\nHe said his move was prompted by the government 's failure to contain a Maoist rebellion , which has killed thousands of people since 1996 .\tPRP VBD PRP$ NN VBD VBN IN DT NN POS NN TO VB DT NNP NN , WDT VBZ VBN NNS IN NNS IN CD .\nNATO says two civilians have been killed and at least 10 others wounded in a fuel truck explosion in eastern Afghanistan .\tNNP VBZ CD NNS VBP VBN VBN CC IN JJS CD NNS VBN IN DT NN NN NN IN JJ NNP .\nA NATO statement says Thursday 's blast in Nangarhar province also damaged nearby shops and vehicles , and that the explosion was likely triggered by an improvised explosive device .\tDT NNP NN VBZ NNP POS NN IN NNP NN RB VBD JJ NNS CC NNS , CC IN DT NN VBD JJ VBN IN DT JJ JJ NN .\nIn neighboring Logar province , NATO says coalition forces killed 12 Taliban insurgents , including a commander during an operation on Wednesday .\tIN VBG NNP NN , NNP VBZ NN NNS VBN CD NNP NNS , VBG DT NN IN DT NN IN NNP .\nAnother three insurgents were killed while Afghan and coalition forces were pursuing commanders of the insurgent group Jama'at ul Dawa al-Qu'ran in northeastern Kunar province .\tDT CD NNS VBD VBN IN JJ CC NN NNS VBD VBG NNS IN DT JJ NN NNP NNP NNP NNP IN JJ NNP NN .\nThe group is linked to attacks that killed two U.S. service members .\tDT NN VBZ VBN TO NNS WDT VBD CD NNP NN NNS .\nAnd the alliance says eight coalition members were injured Thursday after a NATO helicopter made a hard landing in southern Kandahar province .\tCC DT NN VBZ CD NN NNS VBD VBN NNP IN DT NNP NN VBD DT JJ NN IN JJ NNP NN .\nNATO says based on initial reports , the incident was not a result of enemy fire .\tNNP VBZ VBN IN JJ NNS , DT NN VBD RB DT NN IN NN NN .\nColombian authorities say they have dismantled a FALSE passport ring with links to al-Qaida and the Islamic militant group Hamas , and arrested 19 people in connection with the case .\tJJ NNS VBP PRP VBP VBN DT JJ NN NN IN NNS TO NNP CC DT NNP JJ NN NNP , CC VBN CD NNS IN NN IN DT NN .\nProsecutors said Thursday three members of the state intelligence agency known as DAS , were among those arrested , and that one of them is among eight people sought by the United States for extradition .\tNNS VBD NNP CD NNS IN DT NN NN NN VBN IN NNP , VBD IN DT VBN , CC IN CD IN PRP VBZ IN CD NNS VBN IN DT NNP NNPS IN NN .\nOfficials also say a member of Colombia 's National Registry , which provides official identification documents , was arrested in the sweep .\tNNS RB VBP DT NN IN NNP POS NNP NNP , WDT VBZ JJ NN NNS , VBD VBN IN DT NN .\nAuthorities say the arrests follow an investigation that began in 2002 .\tNNS VBP DT NNS VBP DT NN WDT VBD IN CD .\nLocal media reports say the passport-forging ring enabled foreign nationals to travel as Colombians to Europe and the United States .\tJJ NNS NNS VBP DT JJ NN VBD JJ NNS TO VB IN NNPS TO NNP CC DT NNP NNPS .\nThe reports say the suspects sent the forged passports to citizens of Pakistan , Jordan , Iraq and Egypt , who never actually set foot in Colombia .\tDT NNS VBP DT NNS VBD DT VBN NNS TO NNS IN NNP , NNP , NNP CC NNP , WP RB RB VBN NN IN NNP .\nPalestinian witnesses say Israeli troops shot and killed two Palestinian civilians in separate incidents in the West Bank and Gaza Strip Tuesday .\tJJ NNS VBP JJ NNS VBD CC VBD CD JJ NNS IN JJ NNS IN DT NNP NNP CC NNP NNP NNP .\nThey say soldiers shot dead a Palestinian bystander during a clash with militants in Nablus .\tPRP VBP NNS VBD RB DT JJ NN IN DT NN IN NNS IN NNP .\nSeveral Palestinians and two soldiers were wounded in the clash that erupted when Israeli troops raided the Palestinian city .\tJJ NNS CC CD NNS VBD VBN IN DT NN WDT VBD WRB JJ NNS VBD DT JJ NN .\nIsraeli forces regularly mount raids into West Bank towns to arrest wanted Palestinians .\tJJ NNS RB VBP NNS IN NNP NNP NNS TO VB JJ NNS .\nIn the Gaza Strip , witnesses say a Palestinian farmer was killed when Israeli forces fired tank or artillery shells into the territory .\tIN DT NNP NNP , NNS VBP DT JJ NN VBD VBN WRB JJ NNS VBN NN CC NN NNS IN DT NN .\nMembers of the U.S. Senate Judiciary Committee say confirmation hearings for Supreme Court nominee Harriet Miers will begin November 7 .\tNNS IN DT NNP NNP NNP NNP VBP NN NNS IN NNP NNP NN NNP NNP MD VB NNP CD .\nThe announcement Wednesday comes a little more than two weeks after President Bush nominated Ms. Miers to take over the Supreme Court seat left vacant by the retirement of Justice Sandra Day O'Connor .\tDT NN NNP VBZ DT RB JJR IN CD NNS IN NNP NNP VBD NNP NNP TO VB RP DT NNP NNP NN VBN JJ IN DT NN IN NNP NNP NNP NNP .\nMr. Bush has drawn fire from fellow Republicans for the nomination of Ms. Miers , the current White House Counsel .\tNNP NNP VBZ VBN NN IN NN NNS IN DT NN IN NNP NNP , DT JJ NNP NNP NNP .\nSome want the president to withdraw her nomination and pick a known conservative who would decisively shift the high court to the right .\tDT VBP DT NN TO VB PRP$ NN CC VB DT VBN NN WP MD RB VB DT JJ NN TO DT NN .\nMs. Miers has not made her positions on contentious issues like abortion and gay marriage publicly known since her nomination .\tNNP NNP VBZ RB VBN PRP$ NNS IN JJ NNS IN NN CC JJ NN RB VBN IN PRP$ NN .\nIndian search teams have recovered at least 50 bodies in the eastern state of West Bengal where an overcrowded ferry capsized .\tJJ NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN IN NNP NNP WRB DT JJ NN VBN .\nOfficials say more than 100 people were on the ferry when it overturned Saturday in a turbulent river near the Bay of Bengal .\tNNS VBP JJR IN CD NNS VBD IN DT NN WRB PRP VBD NNP IN DT JJ NN IN DT NNP IN NNP .\nDozens of passengers have been rescued , but others are still missing .\tNNS IN NNS VBP VBN VBN , CC NNS VBP RB VBG .\nOfficials say most of the passengers were Muslims returning to the town of Kakdwip after attending a religious festival .\tNNS VBP JJS IN DT NNS VBD NNPS VBG TO DT NN IN NNP IN VBG DT JJ NN .\nAuthorities say the boat 's maximum capacity was 60 people .\tNNS VBP DT NN POS NN NN VBD CD NNS .\nBoating accidents are common in India , where vessels are often overloaded and safety standards are poor .\tVBG NNS VBP JJ IN NNP , WRB NNS VBP RB VBN CC NN NNS VBP JJ .\nIraqi authorities say a suicide bomber killed four policemen in Baghdad and gunmen killed at least 11 other Iraqis in another town Thursday .\tJJ NNS VBP DT NN NN VBD CD NNS IN NNP CC NNS VBD IN JJS CD JJ NNS IN DT NN NNP .\nPolice say the gunmen killed the 11 men and women in Latifiyah .\tNNS VBP DT NNS VBD DT CD NNS CC NNS IN NNP .\nThey believe the victims were members of an extended Shi'ite family .\tPRP VBP DT NNS VBD NNS IN DT JJ NNP NN .\nTo the north , in Baghdad , the suicide bomber blew himself up outside Iraq 's Interior Ministry .\tTO DT NN , IN NNP , DT NN NN VBD PRP RP IN NNP POS NNP NNP .\nIn a separate attack in the capital , a roadside bomb killed a U.S. soldier .\tIN DT JJ NN IN DT NN , DT NN NN VBD DT NNP NN .\nU.S. Brigadier General Donald Alston said Thursday that U.S. forces expected insurgent attacks to increase after security measures imposed for Iraq 's elections were lifted .\tNNP NN NNP NNP NNP VBD NNP IN NNP NNS VBD JJ NNS TO VB IN NN NNS VBN IN NNP POS NNS VBD VBN .\nMeanwhile , al-Qaida in Iraq posted video footage on the Internet it says shows five Sudanese nationals , including a diplomat , abducted in Baghdad .\tRB , NNP IN NNP VBD NN NN IN DT NN PRP VBZ VBZ CD JJ NNS , VBG DT NN , VBN IN NNP .\nThe group threatened to kill the five unless Sudan cuts ties with Iraq .\tDT NN VBD TO VB DT CD IN NNP VBZ NNS IN NNP .\nThe chief of the Polisario rebels in Western Sahara has asked the African Union for help securing the release of prisoners held by Morocco .\tDT NN IN DT NNP NNS IN NNP NNP VBZ VBN DT NNP NNP IN NN VBG DT NN IN NNS VBN IN NNP .\nAccording to Algeria 's APS news agency , Mohamed Abdelaziz , secretary-general of the Polisario Front , wrote to the current chairman of the African Union , Nigerian President Olusegun Obasanjo , asking him to intercede with Morocco .\tVBG TO NNP POS NNP NN NN , NNP NNP , NN IN DT NNP NNP , VBD TO DT JJ NN IN DT NNP NNP , JJ NNP NNP NNP , VBG PRP TO VB IN NNP .\nMr. Abdelaziz said it was unfair that Morocco was still holding the prisoners , even after the Polisario Front released hundreds of Moroccan soldiers this month .\tNNP NNP VBD PRP VBD JJ IN NNP VBD RB VBG DT NNS , RB IN DT NNP NNP VBD NNS IN JJ NNS DT NN .\nThe letter said Morocco was holding 37 political prisoners and 151 prisoners of war .\tDT NN VBD NNP VBD VBG CD JJ NNS CC CD NNS IN NN .\nIt said that some 500 people were missing .\tPRP VBD IN DT CD NNS VBD VBG .\nRebels battled Moroccan troops over control of Western Sahara for 16 years , following the withdrawal of colonial power Spain .\tNNS VBD JJ NNS IN NN IN NNP NNP IN CD NNS , VBG DT NN IN JJ NN NNP .\nIn 1991 , the United Nations brokered a cease-fire to end fighting .\tIN CD , DT NNP NNP VBD DT NN TO VB NN .\nBolivia 's new president has cut top officials ' salaries by half and says the savings will be used for education and health programs .\tNNP POS JJ NN VBZ VBN JJ NNS POS NNS IN NN CC VBZ DT NNS MD VB VBN IN NN CC NN NNS .\nEvo Morales fulfilled his campaign promise to cut salaries after a cabinet meeting late Thursday .\tNNP NNP VBD PRP$ NN NN TO VB NNS IN DT NN NN JJ NNP .\nHe announced a 57 percent pay cut for himself , to about $ 1,800 ( U.S. ) a month .\tPRP VBD DT CD NN NN NN IN PRP , TO RB $ CD LRB NNP RRB DT NN .\nHe reduced his ministers ' salaries by half and decreed that no public official can make more than the president .\tPRP VBD PRP$ NNS POS NNS IN NN CC VBD IN DT JJ NN MD VB JJR IN DT NN .\nDuring his campaign , Mr. Morales promised a more austere budget for Bolivia , South America 's poorest country .\tIN PRP$ NN , NNP NNP VBD DT RBR JJ NN IN NNP , NNP NNP POS JJS NN .\nThe coca farmer and workers ' rights activist was elected by a landslide in December .\tDT NN NN CC NNS POS NNS NN VBD VBN IN DT NN IN NNP .\nHe is Bolivia 's first ethnically indigenous president .\tPRP VBZ NNP POS JJ RB JJ NN .\nPalestinian Authority President Mahmoud Abbas has urged international donors to keep aid flowing following last week 's election victory by the militant group Hamas .\tJJ NNP NNP NNP NNP VBZ VBN JJ NNS TO VB NN VBG VBG JJ NN POS NN NN IN DT JJ NN NNP .\nMr. Abbas , who is not a member of Hamas , says the Palestinians will stick to their agreements with Israel .\tNNP NNP , WP VBZ RB DT NN IN NNP , VBZ DT NNS MD VB TO PRP$ NNS IN NNP .\nHe spoke alongside German Chancellor Angela Merkel after talks Monday in Ramallah .\tPRP VBD JJ JJ NNP NNP NNP IN NNS NNP IN NNP .\nMs. Merkel stressed her previous demand that Hamas renounce violence and accept Israel 's right to exist .\tNNP NNP VBD PRP$ JJ NN IN NNP NN NN CC VB NNP POS NN TO VB .\nEU foreign ministers say Hamas must take those two steps to ensure aid is not suspended .\tNNP JJ NNS VBP NNP MD VB DT CD NNS TO VB NN VBZ RB VBN .\nU.S. Secretary of State Condoleezza Rice made a similar demand Sunday .\tNNP NNP IN NNP NNP NNP VBD DT JJ NN NNP .\nIn London , members of the so-called Middle East quartet - the U.S. , Russia , the EU and the United Nations - are meeting for talks on how to deal with a Hamas-led Palestinian government .\tIN NNP , NNS IN DT JJ NNP NNP NN IN DT NNP , NNP , DT NNP CC DT NNP NNPS : VBP VBG IN NNS IN WRB TO VB IN DT JJ JJ NN .\nBurma 's state media are hailing the capture of a rare , white elephant as a sign the country will enjoy peace , stability and prosperity under a new , elected government , as the media say it does under present military rule .\tNNP POS NN NNS VBP VBG DT NN IN DT JJ , JJ NN IN DT NN DT NN MD VB NN , NN CC NN IN DT JJ , JJ NN , IN DT NNS VBP PRP VBZ IN JJ JJ NN .\nThe official New Light of Myanmar newspaper said Saturday that the elephant , captured Thursday in western Rakhine state , is a source of national pride .\tDT JJ NNP NNP IN NNP NN VBD NNP IN DT NN , VBN NNP IN JJ NNP NN , VBZ DT NN IN JJ NN .\nThe paper said the pachyderm is estimated to be 18 years old and is the fifth white elephant captured since 2001 .\tDT NN VBD DT NN VBZ VBN TO VB CD NNS JJ CC VBZ DT JJ JJ NN VBN IN CD .\nBurma has been under harsh military rule since 1962 and elections scheduled for November have been widely criticized by the international community as a sham to keep the military in power .\tNNP VBZ VBN IN JJ JJ NN IN CD CC NNS VBN IN NNP VBP VBN RB VBN IN DT JJ NN IN DT NN TO VB DT JJ IN NN .\nPolice in Mauritania say security forces have arrested the leaders of a terrorist cell with alleged links to al-Qaida .\tNNS IN NNP VBP NN NNS VBP VBN DT NNS IN DT JJ NN IN JJ NNS TO NNP .\nThe detainees are said to be prominent leaders in the guerrilla group , Salafist Group for Preaching and Combat .\tDT NNS VBP VBN TO VB JJ NNS IN DT NN NN , NNP NNP IN NNP CC NNP .\nA statement from the national police says seven people were arrested earlier this week as they returned from the group 's training camp in Algeria .\tDT NN IN DT JJ NN VBZ CD NNS VBD VBN RBR DT NN IN PRP VBD IN DT NN POS NN NN IN NNP .\nThe detainees are said to be among a total of 20 guerrillas who were sent to the camp for training .\tDT NNS VBP VBN TO VB IN DT NN IN CD NNS WP VBD VBN TO DT NN IN NN .\nA top U.S. general says the Israeli-Palestinian conflict is presenting challenges to the U.S. ability to advance its interests in the Middle East .\tDT JJ NNP NN VBZ DT JJ NN VBZ VBG NNS TO DT NNP NN TO VB PRP$ NNS IN DT NNP NNP .\nGeneral David Petraeus , head of the U.S. Central Command , says the conflict foments anti-American sentiment in the region due to a perception of U.S. favoritism toward Israel .\tNNP NNP NNP , NN IN DT NNP NNP NNP , VBZ DT NN NNS JJ NN IN DT NN JJ TO DT NN IN NNP NN IN NNP .\nThe U.S. Central Command oversees American forces in the Middle East and Central Asia .\tDT NNP NNP NNP VBZ JJ NNS IN DT NNP NNP CC NNP NNP .\nPetraeus 's comments to a Senate committee Tuesday came amid a U.S.-Israeli dispute about Israel 's plan to build 1,600 more housing units in disputed East Jerusalem .\tNNP POS NNS TO DT NNP NN NNP VBD IN DT JJ NN IN NNP POS NN TO VB CD JJR NN NNS IN JJ NNP NNP .\nPeace talks between Israelis and Palestinians have been stalled for more than a year primarily because of the construction of Jewish settlements .\tNN NNS IN NNS CC NNS VBP VBN VBN IN JJR IN DT NN RB IN IN DT NN IN JJ NNS .\nWorld oil prices hit record highs for the fifth day in a row Friday .\tNNP NN NNS VBD NN NNS IN DT JJ NN IN DT NN NNP .\nThe price of crude oil for future delivery reached $ 66.15 a barrel in New York trading .\tDT NN IN JJ NN IN JJ NN VBD $ CD DT NN IN NNP NNP NN .\nPrices are up six percent this week and have more than doubled since the end of 2003 .\tNNS VBP RB CD NN DT NN CC VBP JJR IN VBD IN DT NN IN CD .\nAnalysts blame the latest increases on strong demand for oil , a spate of refinery problems , and worries that Middle East tensions could crimp crude oil supplies .\tNNS VBP DT JJS NNS IN JJ NN IN NN , DT NN IN NN NNS , CC VBZ IN NNP NNP NNS MD VB JJ NN NNS .\nSoaring prices for imported oil also boosted the U.S. trade deficit six percent in June .\tVBG NNS IN VBN NN RB VBD DT NNP NN NN CD NN IN NNP .\nFriday 's report from the Commerce Department says the gap between what Americans sell abroad and what they buy reached $ 58.8 billion .\tNNP POS NN IN DT NNP NNP VBZ DT NN IN WP NNS VBP RB CC WP PRP VBP VBN $ CD CD .\nThe politically sensitive U.S. trade deficit with China rose to a record $ 17.6 billion .\tDT RB JJ NNP NN NN IN NNP VBD TO DT NN $ CD CD .\nColombia 's former president , Andres Pastrana , has been named the country 's next ambassador to the United States .\tNNP POS JJ NN , NNP NNP , VBZ VBN VBN DT NN POS JJ NN TO DT NNP NNPS .\nMr. Pastrana , a lawyer and former television journalist , is replacing Luis Alberto Moreno .\tNNP NNP , DT NN CC JJ NN NN , VBZ VBG NNP NNP NNP .\nMr. Pastrana led Colombia from 1998 to 2002 , but has spent the past several years living in Spain .\tNNP NNP VBD NNP IN CD TO CD , CC VBZ VBN DT JJ JJ NNS VBG IN NNP .\nHis main objectives as ambassador to the United States will include promoting ' Plan Colombia ' - a U.S. sponsored anti-cocaine initiative .\tPRP$ JJ NNS IN NN TO DT NNP NNPS MD VB VBG `` NNP NNP `` : DT NNP VBD JJ NN .\nOver the past three years , the United States has spent more than $ 3 billion to help eradicate coca production in Colombia .\tIN DT JJ CD NNS , DT NNP NNPS VBZ VBN JJR IN $ CD CD TO VB VB NN NN IN NNP .\nCritics of the plan say it has done little to combat drug trafficking or stem Colombia 's drug-fueled civil war .\tNNS IN DT NN VBP PRP VBZ VBN RB TO VB NN NN CC VB NNP POS JJ JJ NN .\nThe United Nations Human Rights Council has ordered a commission of inquiry to investigate alleged abuses by Israel in its campaign against Hezbollah in Lebanon .\tDT NNP NNP NNP NNP NNP VBZ VBN DT NN IN NN TO VB JJ NNS IN NNP IN PRP$ NN IN NNP IN NNP .\nCouncil members Friday voted 27-Nov in support of the inquiry at a special session in Geneva .\tNNP NNS NNP VBD CD IN NN IN DT NN IN DT JJ NN IN NNP .\nThe 57-member Organization of the Islamic Conference requested the session and proposed the resolution that singled out Israel for condemnation and avoided any criticism of Hezbollah .\tDT JJ NNP IN DT NNP NNP VBD DT NN CC VBD DT NN WDT VBD RP NNP IN NN CC VBD DT NN IN NNP .\nEarlier Friday , the U.N. human rights chief urged the Council to take account of Hezbollah 's actions - in addition to Israel .\tRBR NNP , DT NNP NN NNS NN VBD DT NNP TO VB NN IN NNP POS NNS IN IN NN TO NNP .\nLouise Arbour said Israeli attacks affecting civilians continue unabated , but she also deplored Hezbollah 's ' indiscriminate shelling of densely populated centers in northern Israel . '\tNNP NNP VBD JJ NNS VBG NNS VBP JJ , CC PRP RB VBD NNP POS `` JJ NN IN RB VBN NNS IN JJ NNP . ``\nAnd she noted repeated allegations of Hezbollah 's use of human shields .\tCC PRP VBD JJ NNS IN NNP POS NN IN JJ NNS .\nWestern Sahara has a small market-based economy whose main industries are fishing , phosphate mining , and pastoral nomadism .\tNNP NNP VBZ DT JJ JJ NN WP$ JJ NNS VBP NN , JJ NN , CC JJ NN .\nThe territory 's arid desert climate makes sedentary agriculture difficult , and Western Sahara imports much of its food .\tDT NN POS JJ NN NN VBZ JJ NN JJ , CC JJ NNP NNS NN IN PRP$ NN .\nThe Moroccan Government administers Western Sahara 's economy and is a source of employment , infrastructure development , and social spending in the territory .\tDT JJ NNP VBZ NNP NNP POS NN CC VBZ DT NN IN NN , NN NN , CC JJ NN IN DT NN .\nWestern Sahara 's unresolved legal status makes the exploitation of its natural resources a contentious issue between Morocco and the Polisario .\tNNP NNP POS JJ JJ NN VBZ DT NN IN PRP$ JJ NNS DT JJ NN IN NNP CC DT NNP .\nMorocco and the EU in July 2006 signed a four-year agreement allowing European vessels to fish off the coast of Morocco , including the disputed waters off the coast of Western Sahara .\tNNP CC DT NNP IN NNP CD VBD DT JJ NN VBG JJ NNS TO VB RP DT NN IN NNP , VBG DT JJ NNS IN DT NN IN JJ NNP .\nOil has never been found in Western Sahara in commercially significant quantities , but Morocco and the Polisario have quarreled over who has the right to authorize and benefit from oil exploration in the territory .\tNN VBZ RB VBN VBN IN JJ NNP IN RB JJ NNS , CC NNP CC DT NNP VBP VBN IN WP VBZ DT NN TO VB CC VB IN NN NN IN DT NN .\nWestern Sahara 's main long-term economic challenge is the development of a more diverse set of industries capable of providing greater employment and income to the territory .\tNNP NNP POS JJ JJ JJ NN VBZ DT NN IN DT RBR JJ NN IN NNS JJ IN VBG JJR NN CC NN TO DT NN .\nSince 1962 , when France stationed military personnel in the region , French Polynesia has changed from a subsistence agricultural economy to one in which a high proportion of the work force is either employed by the military or supports the tourist industry .\tIN CD , WRB NNP VBD JJ NNS IN DT NN , NNP NNP VBZ VBN IN DT NN JJ NN TO CD IN WDT DT JJ NN IN DT NN NN VBZ RB VBN IN DT JJ CC VBZ DT NN NN .\nWith the halt of French nuclear testing in 1996 , the military contribution to the economy fell sharply .\tIN DT NN IN JJ JJ NN IN CD , DT JJ NN TO DT NN VBD RB .\nTourism accounts for about one-fourth of GDP and is a primary source of hard currency earnings .\tNNP NNS IN IN NN IN NN CC VBZ DT JJ NN IN JJ NN NNS .\nOther sources of income are pearl farming and deep-sea commercial fishing .\tJJ NNS IN NN VBP JJ JJ CC JJ JJ NN .\nThe small manufacturing sector primarily processes agricultural products .\tDT JJ NN NN RB VBZ JJ NNS .\nThe territory benefits substantially from development agreements with France aimed principally at creating new businesses and strengthening social services .\tDT NN NNS RB IN NN NNS IN NNP VBN RB IN VBG JJ NNS CC VBG JJ NNS .\nArgentina benefits from rich natural resources , a highly literate population , an export-oriented agricultural sector , and a diversified industrial base .\tNNP NNS IN JJ JJ NNS , DT RB JJ NN , DT JJ JJ NN , CC DT JJ JJ NN .\nAlthough one of the world 's wealthiest countries 100 years ago , Argentina suffered during most of the 20th century from recurring economic crises , persistent fiscal and current account deficits , high inflation , mounting external debt , and capital flight .\tIN CD IN DT NN POS JJS NNS CD NNS RB , NNP VBD IN JJS IN DT JJ NN IN VBG JJ NNS , JJ JJ CC JJ NN NNS , JJ NN , VBG JJ NN , CC NN NN .\nA severe depression , growing public and external indebtedness , and a bank run culminated in 2001 in the most serious economic , social , and political crisis in the country 's turbulent history .\tDT JJ NN , VBG JJ CC JJ NN , CC DT NN NN VBN IN CD IN DT RBS JJ JJ , JJ , CC JJ NN IN DT NN POS JJ NN .\nInterim President Adolfo RODRIGUEZ SAA declared a default - the largest in history - on the government 's foreign debt in December of that year , and abruptly resigned only a few days after taking office .\tNNP NNP NNP NNP NNP VBD DT NN IN DT JJS IN NN : IN DT NN POS JJ NN IN NNP IN DT NN , CC RB VBD RB DT JJ NNS IN VBG NN .\nHis successor , Eduardo DUHALDE , announced an end to the peso 's decade-long 1-to-1 peg to the US dollar in early 2002 .\tPRP$ NN , NNP NNP , VBD DT NN TO DT NN POS JJ JJ NN TO DT NNP NN IN JJ CD .\nThe economy bottomed out that year , with real GDP 18 % smaller than in 1998 and almost 60 % of Argentines under the poverty line .\tDT NN VBD RP IN NN , IN JJ NN CD NN JJR IN IN CD CC RB CD NN IN NNS IN DT NN NN .\nReal GDP rebounded to grow by an average 8.5 % annually over the subsequent six years , taking advantage of previously idled industrial capacity and labor , an audacious debt restructuring and reduced debt burden , excellent international financial conditions , and expansionary monetary and fiscal policies .\tJJ NN VBD TO VB IN DT JJ CD NN RB IN DT JJ CD NNS , VBG NN IN RB VBN JJ NN CC NN , DT JJ NN NN CC JJ NN NN , JJ JJ JJ NNS , CC JJ JJ CC JJ NNS .\nInflation also increased , however , during the administration of President Nestor KIRCHNER , which responded with price restraints on businesses , as well as export taxes and restraints , and beginning in early 2007 , with understating inflation data .\tNN RB VBD , RB , IN DT NN IN NNP NNP NNP , WDT VBD IN NN NNS IN NNS , RB RB IN NN NNS CC NNS , CC VBG IN JJ CD , IN VBG NN NNS .\nCristina FERNANDEZ DE KIRCHNER succeeded her husband as President in late 2007 , and the rapid economic growth of previous years began to slow sharply the following year as government policies held back exports and the world economy fell into recession .\tNNP NNP NNP NNP VBD PRP$ NN IN NNP IN JJ CD , CC DT JJ JJ NN IN JJ NNS VBD TO VB RB DT JJ NN IN NN NNS VBD RB NNS CC DT NN NN VBD IN NN .\nThe economy has rebounded strongly from the 2009 recession , but the government 's continued reliance on expansionary fiscal and monetary policies risks exacerbating already high inflation .\tDT NN VBZ VBN RB IN DT CD NN , CC DT NN POS JJ NN IN JJ JJ CC JJ NNS VBZ VBG RB JJ NN .\nThe Dominican economy has been dependent on agriculture - primarily bananas - in years past , but increasingly has been driven by tourism as the government seeks to promote Dominica as an ' ecotourism ' destination .\tDT JJ NN VBZ VBN JJ IN NN : RB NNS : IN NNS JJ , CC RB VBZ VBN VBN IN NN IN DT NN VBZ TO VB NNP IN DT `` NN `` NN .\nIn order to diversify the island 's production base , the government also is attempting to develop an offshore financial sector and has signed an agreement with the EU to develop geothermal energy resources .\tIN NN TO VB DT NN POS NN NN , DT NN RB VBZ VBG TO VB DT JJ JJ NN CC VBZ VBN DT NN IN DT NNP TO VB JJ NN NNS .\nIn 2003 , the government began a comprehensive restructuring of the economy - including elimination of price controls , privatization of the state banana company , and tax increases - to address an economic and financial crisis and to meet IMF requirements .\tIN CD , DT NN VBD DT JJ NN IN DT NN : VBG NN IN NN NNS , NN IN DT NN NN NN , CC NN NNS : TO VB DT JJ CC JJ NN CC TO VB NNP NNS .\nThis restructuring paved the way for an economic recovery - real growth for 2006 reached a two-decade high - and helped to reduce the debt burden , which remains at about 85 % of GDP .\tDT NN VBD DT NN IN DT JJ NN IN JJ NN IN CD VBD DT JJ JJ : CC VBD TO VB DT NN NN , WDT VBZ IN IN CD NN IN NN .\nHurricane Dean struck the island in August 2007 causing damages equivalent to 20 % of GDP .\tNN NNP VBD DT NN IN NNP CD VBG NNS JJ TO CD NN IN NN .\nIn 2009 , growth slowed as a result of the global recession ; it picked up only slightly in 2010 .\tIN CD , NN VBD IN DT NN IN DT JJ NN ; PRP VBD RP RB RB IN CD .\nBurundi is a landlocked , resource-poor country with an underdeveloped manufacturing sector .\tNNP VBZ DT JJ , JJ NN IN DT JJ NN NN .\nThe economy is predominantly agricultural which accounts for just over 30 % of GDP and employs more than 90 % of the population .\tDT NN VBZ RB JJ WDT VBZ IN RB IN CD NN IN NN CC VBZ JJR IN CD NN IN DT NN .\nBurundi 's primary exports are coffee and tea , which account for 90 % of foreign exchange earnings , though exports are a relatively small share of GDP .\tNNP POS JJ NNS VBP NN CC NN , WDT VBP IN CD NN IN JJ NN NNS , IN NNS VBP DT RB JJ NN IN NN .\nBurundi 's export earnings - and its ability to pay for imports - rests primarily on weather conditions and international coffee and tea prices .\tNNP POS NN NNS : CC PRP$ NN TO VB IN NNS : VBZ RB IN NN NNS CC JJ NN CC NN NNS .\nThe Tutsi minority , 14 % of the population , dominates the coffee trade .\tDT NNP NN , CD NN IN DT NN , VBZ DT NN NN .\nAn ethnic-based war that lasted for over a decade resulted in more than 2,00,000 deaths , forced more than 48,000 refugees into Tanzania , and displaced 1,40,000 others internally .\tDT JJ NN WDT VBD IN IN DT NN VBD IN JJR IN CD NNS , VBD JJR IN CD NNS IN NNP , CC VBD CD NNS RB .\nOnly one in two children go to school , and approximately one in 15 adults has HIV / AIDS .\tRB CD IN CD NNS VBP TO NN , CC RB CD IN CD NNS VBZ NNP NNP NNP .\nFood , medicine , and electricity remain in short supply .\tNNP , NN , CC NN VBP IN JJ NN .\nLess than 2 % of the population has electricity in its homes .\tRBR IN CD NN IN DT NN VBZ NN IN PRP$ NNS .\nBurundi 's GDP grew around 4 % annually in 2006 - 10 .\tNNP POS NN VBD RB CD NN RB IN CD IN CD .\nPolitical stability and the end of the civil war have improved aid flows and economic activity has increased , but underlying weaknesses - a high poverty rate , poor education rates , a weak legal system , a poor transportation network , overburdened utilities , and low administrative capacity - risk undermining planned economic reforms .\tJJ NN CC DT NN IN DT JJ NN VBP VBN NN NNS CC JJ NN VBZ VBN , CC VBG NNS IN DT JJ NN NN , JJ NN NNS , DT JJ JJ NN , DT JJ NN NN , VBD NNS , CC JJ JJ NN IN NN VBG JJ JJ NNS .\nThe purchasing power of most Burundians has decreased as wage increases have not kept up with inflation .\tDT NN NN IN JJS NNS VBZ VBN IN NN NNS VBP RB VBN RP IN NN .\nBurundi will continue to remain heavily dependent on aid from bilateral and multilateral donors ; the delay of funds after a corruption scandal cut off bilateral aid in 2007 reduced government 's revenues and its ability to pay salaries .\tNNP MD VB TO VB RB JJ IN NN IN JJ CC JJ NNS ; DT NN IN NNS IN DT NN NN VBD RP JJ NN IN CD JJ NN POS NNS CC PRP$ NN TO VB NNS .\nBurundi joined the East African Community , which should boost Burundi 's regional trade ties , and received $ 700 million in debt relief in 2009 .\tNNP VBD DT NNP NNP NNP , WDT MD VB NNP POS JJ NN NNS , CC VBD $ CD CD IN NN NN IN CD .\nGovernment corruption is also hindering the development of a healthy private sector as companies seek to navigate an environment with ever-changing rules .\tNN NN VBZ RB VBG DT NN IN DT JJ JJ NN IN NNS VBP TO VB DT NN IN JJ NNS .\nA TRAVELER hired an Ass to convey him to a distant place .\tDT NN VBD DT NN TO VB PRP TO DT JJ NN .\nThe day being intensely hot , and the sun shining in its strength , the Traveler stopped to rest , and sought shelter from the heat under the Shadow of the Ass .\tDT NN VBG RB JJ , CC DT NN VBG IN PRP$ NN , DT NNP VBD TO VB , CC VBD NN IN DT NN IN DT NNP IN DT NNP .\nAs this afforded only protection for one , and as the Traveler and the owner of the Ass both claimed it , a violent dispute arose between them as to which of them had the right to the Shadow .\tIN DT VBD RB NN IN CD , CC IN DT NN CC DT NN IN DT NNP DT VBD PRP , DT JJ NN VBD IN PRP IN TO WDT IN PRP VBD DT NN TO DT NNP .\nThe owner maintained that he had let the Ass only , and not his Shadow .\tDT NN VBD IN PRP VBD VBN DT NNP RB , CC RB PRP$ NN .\nThe Traveler asserted that he had , with the hire of the Ass , hired his Shadow also .\tDT NNP VBD IN PRP VBD , IN DT NN IN DT NNP , VBD PRP$ NNP RB .\nThe quarrel proceeded from words to blows , and while the men fought , the Ass galloped off .\tDT NN VBD IN NNS TO NNS , CC IN DT NNS VBD , DT NNP VBD RP .\nIn quarreling about the shadow we often lose the substance .\tIN VBG IN DT NN PRP RB VBP DT NN .\nA FLEA settled upon the bare foot of a Wrestler and bit him , causing the man to call loudly upon Hercules for help .\tDT NN VBD IN DT JJ NN IN DT NN CC VBD PRP , VBG DT NN TO VB RB IN NNP IN NN .\nWhen the Flea a second time hopped upon his foot , he groaned and said , ' O Hercules ! if you will not help me against a Flea , how can I hope for your assistance against greater antagonists ? '\tWRB DT NN DT JJ NN VBD IN PRP$ NN , PRP VBD CC VBD , `` UH NNP . IN PRP MD RB VB PRP IN DT NN , WRB MD PRP VB IN PRP$ NN IN JJR NNS . ``\nIn the old days , when men were allowed to have many wives , a middle-aged Man had one wife that was old and one that was young ; each loved him very much , and desired to see him like herself .\tIN DT JJ NNS , WRB NNS VBD VBN TO VB JJ NNS , DT JJ NN VBD CD NN WDT VBD JJ CC CD WDT VBD JJ ; DT VBD PRP RB RB , CC VBN TO VB PRP IN PRP .\nNow the Man 's hair was turning grey , which the young Wife did not like , as it made him look too old for her husband .\tRB DT NN POS NN VBD VBG NN , WDT DT JJ NNP VBD RB VB , IN PRP VBD PRP VB RB JJ IN PRP$ NN .\nSo every night she used to comb his hair and pick out the white ones .\tRB DT NN PRP VBD TO VB PRP$ NN CC VB RP DT JJ NNS .\nBut the elder Wife saw her husband growing grey with great pleasure , for she did not like to be mistaken for his mother .\tCC DT NN NNP VBD PRP$ NN VBG NN IN JJ NN , IN PRP VBD RB VB TO VB VBN IN PRP$ NN .\nSo every morning she used to arrange his hair and pick out as many of the black ones as she could .\tRB DT NN PRP VBD TO VB PRP$ NN CC VB RP IN NN IN DT JJ NNS IN PRP MD .\nThe consequence was the Man soon found himself entirely bald .\tDT NN VBD DT NN RB VBD PRP RB JJ .\nYield to all and you will soon have nothing to yield .\tNN TO DT CC PRP MD RB VB DT TO VB .\nRussian President Vladimir Putin says he is optimistic a deal with Iran on its controversial nuclear program can be reached .\tJJ NNP NNP NNP VBZ PRP VBZ JJ DT NN IN NNP IN PRP$ JJ JJ NN MD VB VBN .\nDuring a visit to Hungary Tuesday , Mr. Putin said it is quite possible to reach agreement on Moscow 's proposal to enrich uranium on Russian soil for Iran 's nuclear energy needs .\tIN DT NN TO NNP NNP , NNP NNP VBD PRP VBZ RB JJ TO VB NN IN NNP POS NN TO VB NN IN JJ NN IN NNP POS JJ NN NNS .\nIran has said it agrees in principle to the deal .\tNNP VBZ VBN PRP VBZ IN NN TO DT NN .\nBut it is unclear if it would also agree to stop domestic uranium enrichment - a demand of Russia and the West .\tCC PRP VBZ JJ IN PRP MD RB VB TO VB JJ NN NN IN DT NN IN NNP CC DT NNP .\nA Japanese official Tuesday quoted Iran 's visiting Foreign Minister Manouchehr Mottaki as saying that the Russian plan would be a bridge between Iran 's right to peaceful nuclear energy and global trust in Tehran .\tDT JJ NN NNP VBD NNP POS VBG NNP NNP NNP NNP IN VBG IN DT JJ NN MD VB DT NN IN NNP POS NN TO JJ JJ NN CC JJ NN IN NNP .\nThe United States and European Union say Iran is pursuing nuclear weapons - a charge it denies .\tDT NNP NNPS CC NNP NNP VBP NNP VBZ VBG JJ NNS IN DT NN PRP VBZ .\nAn international media group says it is disturbed by the recent arrests of two television broadcasters by Afghan authorities .\tDT JJ NNS NN VBZ PRP VBZ VBN IN DT JJ NNS IN CD NN NNS IN JJ NNS .\nReporters Without Borders says Fahim Kohdamani of Emroz TV and Ajmal Alamzai of Ariana TV were arrested on Monday for airing programs deemed anti-Islamic and for speaking with Taliban representatives .\tNNS IN NNP VBZ NNP NNP IN NNP NNP CC NNP NNP IN NNP NNP VBD VBN IN NNP IN VBG NNS VBN JJ CC IN VBG IN NNP NNS .\nIt says Kohdamani was arrested for broadcasting music and hosting an entertainment program .\tPRP VBZ NNP VBD VBN IN NN NN CC VBG DT NN NN .\nIn a statement Tuesday , the group says his arrest appeared to be linked to a letter of complaint sent to President Hamid Karzai by Muslim clerics .\tIN DT NN NNP , DT NN VBZ PRP$ NN VBD TO VB VBN TO DT NN IN NN VBN TO NNP NNP NNP IN NNP NNS .\nAlamzai , the host of Ariana TV 's program ' Didadgah , ' was detained for speaking with a Taliban member during a program that discussed U.S. efforts to reach out to moderate Islamic insurgents .\tNNP , DT NN IN NNP NN POS NN `` NNP , `` VBD VBN IN NN IN DT NNP NN IN DT NN WDT VBD NNP NNS TO VB RP TO VB NNP NNS .\nThe statement says he was released late Monday evening .\tDT NN VBZ PRP VBD VBN JJ NNP NN .\nNorth Korea says it will not dismantle its nuclear program before any new talks aimed at eliminating its access to nuclear weapons .\tNNP NNP VBZ PRP MD RB VB PRP$ JJ NN IN DT JJ NNS VBN IN VBG PRP$ NN TO JJ NNS .\nThe commentary in the official Rodong Sinmun newspaper also says Pyongyang has neither opposed nor shunned the six-party talks on its nuclear ambitions .\tDT NN IN DT JJ NNP NNP NN RB VBZ NNP VBZ RB VBN CC VBN DT JJ NNS IN PRP$ JJ NNS .\nThe newspaper comments come amid renewed speculation that a new round of negotiations could begin within the next few weeks .\tDT NN NNS VBP IN JJ NN IN DT JJ NN IN NNS MD VB IN DT JJ JJ NNS .\nThree rounds of talks have been held in Beijing , but a fourth session scheduled for June , 2004 failed to take place because North Korea boycotted the process over what it called a hostile U.S. attitude .\tCD NNS IN NNS VBP VBN VBN IN NNP , CC DT JJ NN VBN IN NNP , CD VBD TO VB NN IN NNP NNP VBD DT NN IN WP PRP VBD DT JJ NNP NN .\nBut earlier this month , North Korean leader Kim Jong-il said the talks could resume as early as July .\tCC RBR DT NN , JJ JJ NN NNP NNP VBD DT NNS MD VB RB JJ IN NNP .\nAuthorities in Haiti say gunmen shot and killed two police officers and a civilian Monday in an apparent ambush in Port-au-Prince .\tNNS IN NNP VBP NNS VBD CC VBD CD NNS NNS CC DT JJ NNP IN DT JJ NN IN NNP .\nPolice say gunman attacked the car the officers and civilian were driving in .\tNNS VBP NN VBD DT NN DT NNS CC JJ VBD VBG IN .\nThe shooting follows several weeks of attacks that officials say are aimed at destabilizing the country ahead of elections scheduled for later this year .\tDT NN VBZ JJ NNS IN NNS WDT NNS VBP VBP VBN IN VBG DT NN RB IN NNS VBN IN RB DT NN .\nThe United Nations mission and Haitian police have struggled to restore order to Haiti for more than a year , after an armed uprising ousted President Jean-Bertrand Aristide .\tDT NNP NNPS NN CC JJ NNS VBP VBN TO VB NN TO VB IN JJR IN DT NN , IN DT JJ NN VBD NNP NNP NNP .\nA U.S. Congressional investigation into Hurricane Katrina blames failures at all levels of government for the suffering and loss of life that resulted from last August 's storm .\tDT NNP JJ NN IN NNP NNP VBZ NNS IN DT NNS IN NN IN DT NN CC NN IN NN WDT VBD IN JJ NNP POS NN .\nU.S. news organizations have published parts of a draft of the final document that is to be presented Wenesday to Congress .\tNNP NN NNS VBP VBN NNS IN DT NN IN DT JJ NN WDT VBZ TO VB VBN NNP IN NNP .\nThe report says the federal government 's response to Katrina was marked by ineffectiveness and organizational paralysis .\tDT NN VBZ DT JJ NN POS NN TO NNP VBD VBN IN NN CC JJ NN .\nIt also faulted local and state officials in Louisiana for delaying mandatory evacuations .\tPRP RB VBD JJ CC NN NNS IN NNP IN VBG JJ NNS .\nThe report notes that problems first noted after the September 11 terrorist attacks - such as the inability of first responders to communicate with each - were again problems during the Katrina response .\tDT NN VBZ IN NNS RB VBD IN DT NNP CD JJ NNS : JJ IN DT NN IN JJ NNS TO VB IN DT : VBD RB NNS IN DT NNP NN .\nDemocrats , who wanted an independent probe , boycotted the investigation carried out by Republican members of the House of Representatives .\tNNPS , WP VBD DT JJ NN , VBD DT NN VBN RP IN JJ NNS IN DT NNP IN NNPS .\nEgypt says it will not ratify a key treaty banning nuclear tests unless Israel first signs a separate agreement calling for a halt to the spread of atomic bombs .\tNNP VBZ PRP MD RB VB DT JJ NN VBG JJ NNS IN NNP JJ NNS DT JJ NN VBG IN DT NN TO DT NN IN JJ NNS .\nIn Cairo Friday , Foreign Minister Ahmed Aboul Gheit linked Egyptian ratification of the Comprehensive Nuclear Test Ban Treaty to Israeli acceptance of the Nuclear Non-Proliferation treaty , or NPT .\tIN NNP NNP , NNP NNP NNP NNP NNP VBD JJ NN IN DT NNP NNP NNP NNP NNP TO JJ NN IN DT NNP NNP NN , CC NNP .\nMr. Gheit said the refusal of Israel to sign the non-proliferation accord is a threat to the stability of the entire Middle East .\tNNP NNP VBD DT NN IN NNP TO VB DT JJ NN VBZ DT NN TO DT NN IN DT JJ NNP NNP .\nAll Middle Eastern countries except Israel have signed the NPT , which aims to stop the spread of nuclear weapons .\tDT NNP NNP NNS IN NNP VBP VBN DT NNP , WDT VBZ TO VB DT NN IN JJ NNS .\nIsrael and Egypt have both signed the other treaty banning nuclear tests , but neither nation has ratified it .\tNNP CC NNP VBP DT VBN DT JJ NN VBG JJ NNS , CC DT NN VBZ VBN PRP .\nIsrael has not officially stated that it has nuclear weapons , but it is widely believed to have about 200 nuclear warheads .\tNNP VBZ RB RB VBN IN PRP VBZ JJ NNS , CC PRP VBZ RB VBN TO VB RB CD JJ NNS .\nSecurity in Nepal 's capital remained tight Sunday , as police searched an area south of Kathmandu for rebels who launched a deadly pre-dawn attack on government troops .\tNN IN NNP POS NN VBD JJ NNP , IN NN VBD DT NN NN IN NNP IN NNS WP VBD DT JJ JJ NN IN NN NNS .\nThe military says 17 rebels and at least six security personnel were killed in the fighting , which came as opponents of King Gyanendra 's direct rule continued to defy a government crackdown .\tDT JJ VBZ CD NNS CC IN JJS CD NN NNS VBD VBN IN DT NN , WDT VBD IN NNS IN NNP NNP POS JJ NN VBD TO VB DT NN NN .\nElsewhere , authorities say suspected rebels shot dead a candidate for local office in the southern town of Janakpur .\tRB , NNS VBP JJ NNS VBD RB DT NN IN JJ NN IN DT JJ NN IN NNP .\nThe victim was identified as the local leader of a party that supports King Gyanendra .\tDT NN VBD VBN IN DT JJ NN IN DT NN WDT VBZ NNP NNP .\nAuthorities say at least 30 protesters were arrested in the capital Sunday .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NN NNP .\nHowever , the royal government released former Prime Minister Gijira Prasad Koirala and several other leaders placed under house arrest last week .\tRB , DT JJ NN VBD JJ NNP NNP NNP NNP NNP CC JJ JJ NNS VBN IN NN NN JJ NN .\nNepal 's main political parties vowed to continue the protests and called for a nationwide strike on Thursday .\tNNP POS JJ JJ NNS VBD TO VB DT NNS CC VBN IN DT JJ NN IN NNP .\nThe U.S. banking industry lost more than $ 26 billion in the last three months of 2008 , the first quarterly loss in 18 years .\tDT NNP NN NN VBD JJR IN $ CD CD IN DT JJ CD NNS IN CD , DT JJ JJ NN IN CD NNS .\nThe number of banks that regulators classify as ' troubled ' rose nearly 50 percent during the same quarter .\tDT NN IN NNS IN NNS VBP IN `` VBN `` VBD RB CD NN IN DT JJ NN .\nBanks lost money as the recession made it harder for borrowers to repay loans .\tNNS VBD NN IN DT NN VBD PRP JJR IN NNS TO VB NNS .\nBanks were also hurt by losses on their investments in stocks and other areas .\tNNS VBD RB VBN IN NNS IN PRP$ NNS IN NNS CC JJ NNS .\nThe U.S. government 's Federal Deposit Insurance Corporation says the number of banks that actually fail is growing , with 25 going under last year .\tDT NNP NN POS NNP NNP NNP NNP VBZ DT NN IN NNS WDT RB VBP VBZ VBG , IN CD VBG IN JJ NN .\nAlthough the weak economy has resulted in increased losses for banks , the American Bankers Association said Thursday 97 percent of all the country 's banks are still rated ' well capitalized ' - meaning they have a significant financial buffer against losses .\tIN DT JJ NN VBZ VBN IN JJ NNS IN NNS , DT NNP NNPS NNP VBD NNP CD NN IN PDT DT NN POS NNS VBP RB VBN `` RB VBN `` : VBG PRP VBP DT JJ JJ NN IN NNS .\nThere are more than 8,000 banks in the United States insured by the FDIC .\tEX VBP JJR IN CD NNS IN DT NNP NNPS VBN IN DT NNP .\nThe Afghan government has welcomed the extradition of 14 Taleban insurgents from Pakistan to Kabul , but also urged its neighbor to hunt down more suspected militants hiding in Pakistan .\tDT JJ NN VBZ VBN DT NN IN CD NNP NNS IN NNP TO NNP , CC RB VBD PRP$ NN TO VB RP RBR JJ NNS VBG IN NNP .\nA government spokesman says such moves will strengthen relations between the two countries and will open a new era of cooperation in the war against terrorism .\tDT NN NN VBZ JJ NNS MD VB NNS IN DT CD NNS CC MD VB DT JJ NN IN NN IN DT NN IN NN .\nAmong those extradited were purported Taleban spokesmen Latif Hakimi and Mohammad Yasir .\tIN DT VBN VBD JJ NNP NNS NNP NNP CC NNP NNP .\nAfghan state television showed Afghan soldiers leading the 14 men , all blindfolded , off a military plane late Wednesday .\tJJ NN NN VBD JJ NNS VBG DT CD NNS , DT VBN , IN DT JJ NN JJ NNP .\nAfghan officials say they will be put on trial for their role in violence against government targets , as well as Afghan and coalition forces .\tJJ NNS VBP PRP MD VB VBN IN NN IN PRP$ NN IN NN IN NN NNS , RB RB IN JJ CC NN NNS .\nMeanwhile , a bomb attached to a bicycle blew up Thursday , in the southern city of Kandahar , killing a policeman and wounding two civilians .\tRB , DT NN VBN TO DT NN VBD RP NNP , IN DT JJ NN IN NNP , VBG DT NN CC VBG CD NNS .\nLebanese officials say rescuers have recovered two bodies from the waters off Lebanon 's northern coast where a cargo ship carrying 83 crew members and livestock sank late Thursday .\tJJ NNS VBP NNS VBP VBN CD NNS IN DT NNS IN NNP POS JJ NN WRB DT NN NN VBG CD NN NNS CC NN VBD JJ NNP .\nThe officials say Lebanese navy boats and United Nations vessels participating in the rescue mission also pulled at least 25 people from the rough Mediterranean waters .\tDT NNS VBP JJ NN NNS CC NNP NNP NNS VBG IN DT NN NN RB VBD IN JJS CD NNS IN DT JJ NNP NNS .\nLocal authorities say the Panamanian-flagged vessel , carrying livestock from Uruguay to the Syrian port of Tartous , capsized some 17 kilometers off the Lebanese port of Tripoli in a heavy rainstorm .\tJJ NNS VBP DT JJ NN , VBG NN IN NNP TO DT JJ NN IN NNP , VBD DT CD NNS IN DT JJ NN IN NNP IN DT JJ NN .\nThey say the crew sent a distress call but the vessel sank before the rescue ships could reach the area .\tPRP VBP DT NN VBD DT NN NN CC DT NN VBD IN DT NN NNS MD VB DT NN .\nThursday 's accident came less than a week after a Togolese-flagged cargo ship with 12 crew on board sank off the Lebanese coast .\tNNP POS NN VBD JJR IN DT NN IN DT JJ NN NN IN CD NN IN NN VBD IN DT JJ NN .\nSix crew members were rescued but the rest remain missing .\tCD NN NNS VBD VBN CC DT NN VBP JJ .\nCourtney Love plans to sell most of the items which once belonged to her husband , former Nirvana leader Kurt Cobain .\tNNP NNP VBZ TO VB JJS IN DT NNS WDT RB VBD TO PRP$ NN , JJ NNP NN NNP NNP .\nComparing her house to a ' mausoleum , ' the 42-year-old rock singer says she plans to hold a charity auction .\tVBG PRP$ NN TO DT `` NN , `` DT JJ NN NN VBZ PRP VBZ TO VB DT NN NN .\nLove and Cobain wed in 1992 and later that year had a daughter , Frances Bean .\tNNP CC NNP VBD IN CD CC RB DT NN VBD DT NN , NNP NNP .\nKurt Cobain committed suicide in 1994 .\tNNP NNP VBD NN IN CD .\nSpeaking to AOL Music , Love says ' My daughter does n't need to inherit a giant ... bag full of flannel ... shirts . '\tVBG TO NNP NNP , NNP VBZ `` PRP$ NN VBZ RB VB TO VB DT NN : NN JJ IN NN : NNS . ``\nShe says Frances will get one of Cobain 's sweaters , a guitar , and the lyrics to Nirvana 's biggest hit , ' Smells Like Teen Spirit . '\tPRP VBZ NNS MD VB CD IN NNP POS NNS , DT NN , CC DT NNS IN NNP POS JJS NN , `` NNPS NNP NNP NNP . ``\nAOL publicist Kurt Patat gave no date for the auction .\tNNP NN NNP NNP VBD DT NN IN DT NN .\nU.S. troops have killed eight insurgents in western Iraq , as military officials dispute claims that militants have kidnapped two U.S. Marines .\tNNP NNS VBP VBN CD NNS IN JJ NNP , IN JJ NNS VBP NNS IN NNS VBP VBN CD NNP NNS .\nAbout one thousand U.S. troops launched the offensive near the Syrian border , in the latest attempt to drive insurgents from the area .\tIN CD CD NNP NNS VBD DT NN IN DT JJ NN , IN DT JJS NN TO VB NNS IN DT NN .\nResidents said the operation appeared to be widening Sunday to several nearby towns .\tNNS VBD DT NN VBD TO VB VBG NNP TO JJ JJ NNS .\nMeanwhile , U.S. officials said they had no reason to believe an alleged statement from al Qaida in Iraq claiming to have kidnapped two Marines involved in the military offensive .\tRB , NNP NNS VBD PRP VBD DT NN TO VB DT JJ NN IN NNP NNP IN NNP VBG TO VB VBN CD NNS VBN IN DT JJ NN .\nIn a statement , U.S. officials said they were conducting checks to verify that all Marines were accounted for .\tIN DT NN , NNP NNS VBD PRP VBD VBG NNS TO VB IN DT NNS VBD VBN IN .\nAn Islamist web site carried the kidnapping claim , which demanded the release of female Sunni Muslim prisoners .\tDT NNP NN NN VBD DT NN NN , WDT VBD DT NN IN JJ NNP NNP NNS .\nIn Baghdad , militants freed the brother of Interior Minister Bayan Jabor , who was kidnapped one day earlier near the Sadr City district .\tIN NNP , NNS VBD DT NN IN NNP NNP NNP NNP , WP VBD VBN CD NN RBR IN DT NNP NNP NN .\nAl-Qaida has claimed responsibility for the July 7 London subway and bus bombings that killed 52 people .\tNNP VBZ VBN NN IN DT NNP CD NNP NN CC NN NNS WDT VBD CD NNS .\nThe Arabic language television network al-Jazeera Thursday broadcast what it said is a videotape of one of the bombers , Mohammad Sidique Khan , made just before the attack .\tDT JJ NN NN NN NNP NNP VBD WP PRP VBD VBZ DT NN IN CD IN DT NNS , NNP NNP NNP , VBN RB IN DT NN .\nOn the video , he blames the bombings on British support for the war in Iraq and what he calls atrocities against Muslims .\tIN DT NN , PRP VBZ DT NNS IN JJ NN IN DT NN IN NNP CC WP PRP VBZ NNS IN NNS .\nBritish officials say four suicide bombers were killed in the July 7 attacks .\tJJ NNS VBP CD NN NNS VBD VBN IN DT NNP CD NNS .\nAn attempted bombing two weeks later failed .\tDT JJ NN CD NNS RB VBD .\nIt is still not clear if there is a direct tie between the two attacks .\tPRP VBZ RB RB JJ IN EX VBZ DT JJ NN IN DT CD NNS .\nThe videotape also included comments from al-Qaida 's second-in-command , Ayman al-Zawahiri .\tDT NN RB VBD NNS IN NNP POS NN , NNP NNP .\nHe warned that British Prime Minster Tony Blair 's policies would bring more destruction to the British people .\tPRP VBD IN JJ NNP NNP NNP NNP POS NNS MD VB JJR NN TO DT JJ NNS .\nThe British Foreign Office said it will not comment on any aspects of the tape .\tDT JJ NNP NNP VBD PRP MD RB VB IN DT NNS IN DT NN .\nSeveral people believed to be North Korean asylum seekers have entered a South Korean school in Dalian in northeast China .\tJJ NNS VBN TO VB JJ JJ NN NNS VBP VBN DT JJ JJ NN IN NNP IN NN NNP .\nSouth Korea 's Yonhap news agency says the group of nine includes three children .\tNNP NNP POS NNP NN NN VBZ DT NN IN CD VBZ CD NNS .\nHundreds of North Koreans have broken into diplomatic embassies and foreign schools in China in recent years seeking asylum .\tNNS IN NNP NNS VBP VBN IN JJ NNS CC JJ NNS IN NNP IN JJ NNS VBG NN .\nHuman rights groups say the defectors are seeking refuge from the hunger and repression in their homeland .\tJJ NNS NNS VBP DT NNS VBP VBG NN IN DT NN CC NN IN PRP$ NN .\nChina has an agreement with Pyongyang to send asylum seekers back home , but it has allowed many to travel to South Korea via a third country .\tNNP VBZ DT NN IN NNP TO VB NN NNS RB NN , CC PRP VBZ VBN JJ TO VB TO NNP NNP IN DT JJ NN .\nReports from China say protests broke out in the eastern province of Zhejiang at a factory suspected of pollution .\tNNS IN NNP VBP NNS VBD RP IN DT JJ NN IN NNP IN DT NN VBN IN NN .\nWitnesses are quoted Monday as saying several villagers were injured when they clashed with police Saturday outside the Tian Neng Battery Company in Meishan .\tNNS VBP VBN NNP IN VBG JJ NNS VBD VBN WRB PRP VBD IN NN NNP IN DT NNP NNP NNP NN IN NNP .\nThe protesters are said to have burned several police cars and damaged factory and government buildings .\tDT NNS VBP VBN TO VB VBN JJ NNS NNS CC VBN NN CC NN NNS .\nThere has been no official report of the violence .\tEX VBZ VBN DT JJ NN IN DT NN .\nLocal residents say the battery factory is responsible for high levels of lead that have poisoned their children .\tJJ NNS VBP DT NN NN VBZ JJ IN JJ NNS IN NN WDT VBP VBN PRP$ NNS .\nThe protest over industrial pollution is the third this year in Zhejiang province .\tDT NN IN JJ NN VBZ DT JJ DT NN IN NNP NN .\nChina has been struck by violent protests in recent months as rural villagers vent anger over industrial pollution and allegations of corruption and unfair land distribution .\tNNP VBZ VBN VBN IN JJ NNS IN JJ NNS IN JJ NNS JJ NN IN JJ NN CC NNS IN NN CC JJ NN NN .\nFormer Haitian president Rene Preval has been declared the winner of the Caribbean nation 's presidential election .\tJJ JJ NN NNP NNP VBZ VBN VBN DT NN IN DT NNP NN POS JJ NN .\nHaiti 's Provisional Electoral Council said Thursday , Mr. Preval received 51 percent of the votes cast last week .\tNNP POS NNP NNP NNP VBD NNP , NNP NNP VBD CD NN IN DT NNS VBN JJ NN .\nHis total was raised after a last minute decision to discount 85,000 blank ballots .\tPRP$ NN VBD VBN IN DT JJ NN NN TO VB CD JJ NNS .\nHaitian Prime Minister Gerard Latortue told the Associated Press the government acknowledged the final decision of the electoral council and saluted Mr. Preval 's election .\tJJ NNP NNP NNP NNP VBD DT NNP NNP DT NN VBD DT JJ NN IN DT JJ NN CC VBD NNP NNP POS NN .\nThe announcement follows five days of protests by Preval supporters who alleged massive voter fraud .\tDT NN VBZ CD NNS IN NNS IN NNP NNS WP VBD JJ NN NN .\nMr. Preval urged his supporters to demonstrate peacefully .\tNNP NNP VBD PRP$ NNS TO VB RB .\nHaitian officials stopped the vote count Wednesday after thousands of ballots were found burning in a trash heap outside the capital , Port-au-Prince .\tJJ NNS VBD DT NN NN NNP IN NNS IN NNS VBD VBN VBG IN DT NN NN IN DT NN , NNP .\nNepal 's government says it will push ahead with planned parliamentary elections even if Maoist rebels do not come the negotiating table by January 13 .\tNNP POS NN VBZ PRP MD VB RB IN JJ JJ NNS RB IN NNP NNS VBP RB VB DT NN NN IN NNP CD .\nPrime Minister Sher Bahadur Deuba told journalists in Kathmandu Thursday it is their last chance to present their demands for ending their decades-long violent campaign .\tNN NN NNP NNP NNP VBD NNS IN NNP NNP PRP VBZ PRP$ JJ NN TO VB PRP$ NNS IN VBG PRP$ JJ JJ NN .\nHe said he is determined to set the process for holding parliamentary elections in motion with or without the rebels ' participation .\tPRP VBD PRP VBZ VBN TO VB DT NN IN VBG JJ NNS IN NN IN CC IN DT NNS POS NN .\nThere was no immediate comment from the guerrillas , who have demanded United Nations or an international human rights group mediate the talks with Kathmandu .\tEX VBD DT JJ NN IN DT NNS , WP VBP VBN NNP NNPS CC DT JJ JJ NNS NN VBP DT NNS IN NNP .\nViolence has surged since peace talks failed last year after the Maoists demanded election of a special assembly to decide the future of the monarchy .\tNN VBZ VBN IN NN NNS VBD JJ NN IN DT NNPS VBD NN IN DT JJ NN TO VB DT NN IN DT NN .\nThe rebels want to replace the constitutional monarchy with a communist state .\tDT NNS VBP TO VB DT JJ NN IN DT JJ NN .\nUkrainian opposition leader Yulia Tymoshenko says the United States understands the problems Ukraine faces in its democratic development , and its need for energy security .\tJJ NN NN NNP NNP VBZ DT NNP NNPS VBZ DT NNS NNP VBZ IN PRP$ JJ NN , CC PRP$ NN IN NN NN .\nTymoshenko met in Washington Thursday with Vice President Dick Cheney and National Security Advisor Stephen Hadley .\tNNP VBD IN NNP NNP IN NNP NNP NNP NNP CC NNP NNP NNP NNP NNP .\nThe former Ukrainian prime minister is scheduled to meet with Secretary of State Condoleezza Rice Friday .\tDT JJ JJ JJ NN VBZ VBN TO VB IN NNP IN NNP NNP NNP NNP .\nAfter her meetings Thursday , Tymoshenko said Ukraine faces a real threat of losing its political sovereignty , independence and integration with the European community for the first time in 15 years .\tIN PRP$ NNS NNP , NNP VBD NNP VBZ DT JJ NN IN VBG PRP$ JJ NN , NN CC NN IN DT JJ NN IN DT JJ NN IN CD NNS .\nUkraine is struggling with a political stalemate between supporters of West-leaning reformer President Viktor Yushchenko , and those of Prime Minister Viktor Yanukovych , who wants stronger ties with Russia .\tNNP VBZ VBG IN DT JJ NN IN NNS IN JJ NN NNP NNP NNP , CC DT IN NNP NNP NNP NNP , WP VBZ JJR NNS IN NNP .\nPresident Yushchenko and Tymoshenko were once allies , but their relationship deteriorated because of bitter political infighting a year after the 2004 Orange Revolution that swept Mr. Yushchenko to power .\tNNP NNP CC NNP VBD RB NNS , CC PRP$ NN VBN IN IN JJ JJ NN DT NN IN DT CD NNP NN WDT VBD NNP NNP TO NN .\nPakistan says it would welcome India 's participation in a proposed gas pipeline with Iran worth $ 4 billion dollars , but says that the project will go ahead even if New Delhi does not join it .\tNNP VBZ PRP MD VB NNP POS NN IN DT VBN NN NN IN NNP JJ $ CD CD NNS , CC VBZ IN DT NN MD VB RB RB IN NNP NNP VBZ RB VB PRP .\nPakistani Foreign Minister Khurshid Kasuri made the comment after Tuesday 's meeting with his Iranian counterpart , Kamal Kharrazi , in Islamabad .\tJJ NNP NNP NNP NNP VBD DT NN IN NNP POS NN IN PRP$ JJ NN , NNP NNP , IN NNP .\nIran proposed the pipeline in 1996 .\tNNP VBD DT NN IN CD .\nBut New Delhi 's response has been lukewarm given its troubled relations with Islamabad and concerns about the safety of the pipeline carrying its energy supplies through Pakistani territory .\tCC NNP NNP POS NN VBZ VBN JJ VBN PRP$ JJ NNS IN NNP CC NNS IN DT NN IN DT NN VBG PRP$ NN NNS IN JJ NN .\nMr. Kharrazi 's visit came as India and Pakistan concluded another round of slow-moving peace talks .\tNNP NNP POS NN VBD IN NNP CC NNP VBD DT NN IN JJ NN NNS .\nThe Iranian foreign minister met with Pakistani President Pervez Musharraf late Monday .\tDT JJ JJ NN VBD IN JJ NNP NNP NNP JJ NNP .\nBefore leaving Pakistan , Mr. Kharrazi held talks with Prime Minister Shaukat Aziz .\tIN VBG NNP , NNP NNP VBD NNS IN NNP NNP NNP NNP .\nPresident Bush says federal officials have ' deep concern ' about Tropical Storm Rita causing more flooding in New Orleans .\tNNP NNP VBZ JJ NNS VBP `` JJ NN `` IN NNP NNP NNP VBG JJR NN IN NNP NNP .\nIn remarks at the White House Monday , Mr. Bush said the U.S. Army Corps of Engineers fears that heavy rain could cause the city 's recently-repaired levees to break again .\tIN NNS IN DT NNP NNP NNP , NNP NNP VBD DT NNP NNP NNP IN NNP NNS IN JJ NN MD VB DT NN POS JJ NNS TO VB RB .\nMuch of New Orleans sits below sea level , and the levees ' failure during Hurricane Katrina put 80 percent of the city underwater .\tNN IN NNP NNP VBZ IN NN NN , CC DT NNS POS NN IN NNP NNP VBD CD NN IN DT NN NN .\nWeather forecasters say Tropical Storm Rita could become a hurricane and move into the Gulf of Mexico south of New Orleans later this week .\tNNP NNS VBP JJ NN NNP MD VB DT NN CC NN IN DT NNP IN NNP NN IN NNP NNP RB DT NN .\nThe president said New Orleans officials must be ' realistic ' about bringing people back to the city before it is safe .\tDT NN VBD NNP NNP NNS MD VB `` JJ `` IN VBG NNS RB TO DT NN IN PRP VBZ JJ .\nIran says the only solution to its nuclear dispute with the West is negotiations , and not referral of its atomic energy program to the U.N. Security Council .\tNNP VBZ DT JJ NN TO PRP$ JJ NN IN DT NNP VBZ NNS , CC RB NN IN PRP$ JJ NN NN TO DT NNP NNP NNP .\nIranian Foreign Ministry spokesman Hamid Reza Asefi made that assertion Sunday at his weekly news conference in Tehran .\tJJ NNP NNP NN NNP NNP NNP VBD DT NN NNP IN PRP$ JJ NN NN IN NNP .\nAsefi cautioned the West against acting in haste against Iran , saying a referral to the Security Council would solve nothing .\tNNP VBD DT NNP IN VBG IN NN IN NNP , VBG DT NN TO DT NNP NNP MD VB DT .\nThe Iranian spokesman 's comments came as representatives of Britain , Germany , France , the United States and the European Union prepared for a meeting Monday in London to discuss whether to refer Iran to the U.N. Security Council for possible sanctions .\tDT JJ NN POS NNS VBD IN NNS IN NNP , NNP , NNP , DT NNP NNPS CC DT NNP NNP VBD IN DT NN NNP IN NNP TO VB IN TO VB NNP TO DT NNP NNP NNP IN JJ NNS .\nThe Europeans say the impasse should be resolved through diplomacy , but Washington says a military option should be retained as a last resort .\tDT NNS VBP DT NN MD VB VBN IN NN , CC NNP VBZ DT JJ NN MD VB VBN IN DT JJ NN .\nU.S. troops opened fire on a civilian vehicle north of Baghdad Monday , killing at least three Iraqis , including a child , when troops say the vehicle failed to stop as ordered .\tNNP NNS VBD NN IN DT JJ NN NN IN NNP NNP , VBG IN JJS CD NNS , VBG DT NN , WRB NNS VBP DT NN VBD TO VB IN VBN .\nBut surviving family members say five people , including three children , were killed .\tCC VBG NN NNS VBP CD NNS , VBG CD NNS , VBD VBN .\nU.S. Major Steve Warren called the deaths a tragedy .\tNNP NNP NNP NNP VBD DT NNS DT NN .\nHours later , a car bomb exploded as a U.S. convoy passed in the same area , killing four Iraqis .\tNNS RB , DT NN NN VBD IN DT NNP NN VBN IN DT JJ NN , VBG CD NNS .\nMeanwhile , at a reconciliation conference in Cairo , Iraq 's President Jalal Talabani said he is willing to hold talks with insurgents and members of the ousted government .\tRB , IN DT NN NN IN NNP , NNP POS NNP NNP NNP VBD PRP VBZ JJ TO VB NNS IN NNS CC NNS IN DT JJ NN .\nMr. Talabani then traveled to Tehran for the first visit to Iran by an Iraqi head of state in nearly four decades .\tNNP NNP RB VBD TO VB IN DT JJ NN TO NNP IN DT JJ NN IN NN IN RB CD NNS .\nHe met with Iranian President Mahmoud Ahmadinejad for wide-ranging talks on relations and the fight against terrorism .\tPRP VBD IN JJ NNP NNP NNP IN JJ NNS IN NNS CC DT NN IN NN .\nIran 's intelligence minister says two Americans who were detained for illegally crossing the country 's border should be tried on charges of spying .\tNNP POS NN NN VBZ CD NNS WP VBD VBN IN RB VBG DT NN POS NN MD VB VBN IN NNS IN VBG .\nIranian state-run media quotes Heidar Moslehi as saying ' documents and evidence ' about Shane Bauer and Josh Fattal have been handed over to Iran 's judicial system for a decision .\tJJ JJ NNS NNS NNP NNP IN VBG `` NNS CC NN `` IN NNP NNP CC NNP NNP VBP VBN VBN IN TO NNP POS JJ NN IN DT NN .\nHe also said Friday that a third American who was freed should ' return to Iran if necessary . '\tPRP RB VBD NNP IN DT JJ NNP WP VBD VBN MD `` VB TO NNP IN JJ . ``\nIranian authorities arrested Bauer , Fattal and Sarah Shourd last year on charges of unlawfully crossing into Iranian territory from Iraq .\tJJ NNS VBN NNP , NNP CC NNP NNP JJ NN IN NNS IN RB VBG IN JJ NN IN NNP .\nIran freed Shourd on $ 5,00,000 bail last month .\tNNP VBD NNP IN $ CD NN JJ NN .\nMosleshi says she was freed ' temporarily ' and should ' return to Iran if necessary . '\tNNP VBZ PRP VBD VBN `` RB `` CC MD `` VB TO NNP IN JJ . ``\nThe hikers and their family members have said if the trio crossed the border , it was by accident .\tDT NNS CC PRP$ NN NNS VBP VBN IN DT NN VBD DT NN , PRP VBD IN NN .\nShourd says there were no signs , fences or other indications of a border .\tNNP VBZ EX VBD DT NNS , NNS CC JJ NNS IN DT NN .\nSpain is holding a national day of mourning and commemoration Friday , to mark the one year anniversary of the Madrid train bombings which killed 191 people .\tNNP VBZ VBG DT JJ NN IN NN CC NN NNP , TO VB DT CD NN NN IN DT NNP NN NNS WDT VBD CD NNS .\nChurch bells rang out at 7.37 a.m. local time ( 637 UTC ) to mark the first of 10 explosions that occurred aboard four commuter trains one year ago .\tNNP VBZ VBG RP IN CD RB JJ NN LRB CD NNP RRB TO VB DT NN IN CD NNS WDT VBD IN CD NN NNS CD NN RB .\nThe coordinated attacks produced the worst death toll ever from terrorism in Spain .\tDT JJ NNS VBD DT JJS NN NN RB IN NN IN NNP .\nU.N. Secretary-General Kofi Annan and Morocco 's King Mohamed , will join Spanish Prime Minister Jose Luis Rodriguez Zapatero - and the entire Spanish nation - for five minutes of silence at midday .\tNNP NNP NNP NNP CC NNP POS NNP NNP , MD VB JJ NNP NNP NNP NNP NNP NNP : CC DT JJ JJ NN : IN CD NNS IN NN IN NN .\nIslamic militants , predominantly from Morocco and sympathetic to al-Qaeda , claimed responsibility for the attacks .\tNNP NNS , RB IN NNP CC JJ TO NNP , VBD NN IN DT NNS .\nThe European Union is offering to resume development aid to Sudan , now that an agreement has been reached to end the nation 's 21-year civil war .\tDT NNP NNP VBZ VBG TO VB NN NN TO NNP , RB IN DT NN VBZ VBN VBN TO VB DT NN POS JJ JJ NN .\nIn a statement Sunday , the EU offered to give Sudan more than $ 540 million to aid development over the next three years .\tIN DT NN NNP , DT NNP VBD TO VB NNP JJR IN $ CD CD TO VB NN IN DT JJ CD NNS .\nBut the offer requires that the agreement with southern rebels be implemented .\tCC DT NN VBZ IN DT NN IN JJ NNS VB VBN .\nIt also requires Sudan to make progress at ending the separate fighting and humanitarian disaster in its Darfur region .\tPRP RB VBZ NNP TO VB NN IN VBG DT JJ NN CC JJ NN IN PRP$ NNP NN .\nThe EU stopped sending development money to Sudan 14 years ago because of the southern civil war .\tDT NNP VBD VBG NN NN IN NNP CD NNS RB IN IN DT JJ JJ NN .\nA statement attributed to the militant group al-Qaida In Iraq says four Iraqis carried out the triple suicide bombings in Jordan that killed at least 57 people and wounded more than 100 others .\tDT NN VBN IN DT JJ NN NNP IN NNP VBZ CD NNS VBD IN DT JJ NN NNS IN NNP WDT VBD IN JJS CD NNS CC VBD JJR IN CD NNS .\nThe statement , which appeared Friday , on an Islamist website associated with the group , says the team included three men and a woman married to one of the attackers .\tDT NN , WDT VBD NNP , IN DT JJ NN VBN IN DT NN , VBZ DT NN VBD CD NNS CC DT NN VBN TO CD IN DT NNS .\nThe statement came as U.N. Secretary-General Kofi Annan met with officials in Amman to discuss Wednesday 's attacks .\tDT NN VBD IN NNP NNP NNP NNP VBD IN NNS IN NNP TO VB NNP POS NNS .\nJordanian King Abdullah has vowed to track down and bring to justice the militants who helped plan the suicide bombings on three hotels .\tJJ NNP NNP VBZ VBN TO VB RB CC VB TO NN DT NNS WP VBD VB DT NN NNS IN CD NNS .\nGovernment officials said most of the dead are Jordanians , but at least 12 foreigners have been identified , including two Americans .\tNN NNS VBD JJS IN DT NN VBP NNS , CC IN JJS CD NNS VBP VBN VBN , VBG CD NNS .\nTurkish and European Union officials are meeting Monday in Ankara to discuss Turkey 's progress in making reforms ahead of EU membership talks scheduled for later this year .\tJJ CC JJ NNP NNS VBP VBG NNP IN NNP TO VB NNP POS NN IN VBG NNS RB IN NNP NN NNS VBN IN RB DT NN .\nEU Enlargement Commissioner Olli Rehn is expected to press Turkey to sign a protocol that will amount to a de-facto recognition of Cyprus ' internationally-recognized Greek government .\tNNP NNP NNP NNP NNP VBZ VBN TO VB NNP TO VB DT NN WDT MD VB TO DT JJ NN IN NNP POS JJ JJ NN .\nTurkey must sign the protocol before formal EU membership talks can begin on October third .\tNNP MD VB DT NN IN JJ NNP NN NNS MD VB IN NNP NN .\nAnkara previously refused to recognize the Greek government of Cyprus , which joined the EU last May .\tNNP RB VBD TO VB DT JJ NN IN NNP , WDT VBD DT NNP JJ NNP .\nTurkey is the only country in the world that recognizes the government of the Turkish-ruled part of Cyprus .\tNNP VBZ DT JJ NN IN DT NN WDT VBZ DT NN IN DT JJ NN IN NNP .\nMr. Rehn is also expected to push Ankara to continue with efforts to stop torture , improve freedom of expression , and increase the rights of women and the Kurdish minority .\tNNP NNP VBZ RB VBN TO VB NNP TO VB IN NNS TO VB NN , VB NN IN NN , CC VB DT NNS IN NNS CC DT NNP NN .\nScientists are hailing the results of a new study that shows a drug already used to treat advanced cancer has proven extremely effective against an aggressive form of early breast cancer .\tNNS VBP VBG DT NNS IN DT JJ NN WDT VBZ DT NN RB VBN TO VB JJ NN VBZ VBN RB JJ IN DT JJ NN IN JJ NN NN .\nIn an article published Thursday in The New England Journal of Medicine , researchers found the drug Herceptin can prevent 50 percent of all breast tumors from recurring in patients with early stages of the disease .\tIN DT NN VBN NNP IN DT NNP NNP NNP IN NNP , NNS VBD DT NN NNP MD VB CD NN IN DT NN NNS IN VBG IN NNS IN JJ NNS IN DT NN .\nThe drug , which targets only diseased cells , only works for the estimated 20-percent of breast cancer cases in which tumors produce too much of a protein known as HER-2 .\tDT NN , WDT VBZ RB JJ NNS , RB VBZ IN DT JJ JJ IN NN NN NNS IN WDT NNS VBP RB RB IN DT NN VBN IN NNP .\nBreast cancer is the most common cause of cancer among women in the United States .\tNN NN VBZ DT RBS JJ NN IN NN IN NNS IN DT NNP NNPS .\nMore than 2,00,000 American women will be diagnosed with breast cancer , and about 40,000 women will die of the disease in the United States in 2005 .\tJJR IN CD JJ NNS MD VB VBN IN NN NN , CC IN CD NNS MD VB IN DT NN IN DT NNP NNPS IN CD .\nOfficials say Herceptin will be marketed internationally by the Swiss drugmaker Roche .\tNNS VBP NNP MD VB VBN RB IN DT JJ NN NNP .\nIraqi officials say Jan. 30 has been set as the new date for the war-torn country 's first national elections since a U.S.-led military coalition toppled Saddam Hussein 's regime .\tJJ NNS VBP NNP CD VBZ VBN VBN IN DT JJ NN IN DT JJ NN POS JJ JJ NNS IN DT JJ JJ NN VBD NNP NNP POS NN .\nAn Iraqi election commission spokesman , Farid Ayar , who spoke to reporters Sunday did not give a reason for the election date change , which postpones by three days an earlier voting plan drawn up by the interim government in Baghdad .\tDT JJ NN NN NN , NNP NNP , WP VBD TO NNS NNP VBD RB VB DT NN IN DT NN NN NN , WDT VBZ IN CD NNS DT JJR NN NN VBN RP IN DT JJ NN IN NNP .\nIraqis will choose a new national assembly , provincial councils across the country and a Kurdish regional parliament .\tNNS MD VB DT JJ JJ NN , JJ NNS IN DT NN CC DT JJ JJ NN .\nContinuing attacks on coalition forces by Iraqi insurgents have been a growing source of concern for Iraqi and U.S. officials as election day approaches .\tVBG NNS IN NN NNS IN JJ NNS VBP VBN DT VBG NN IN NN IN JJ CC NNP NNS IN NN NN NNS .\nU.S. military officials said today that nine men found dead Saturday in the northern city of Mosul were all Iraqi soldiers who had been shot in the back of the head .\tNNP JJ NNS VBD NN IN CD NNS VBN JJ NNP IN DT JJ NN IN NNP VBD DT JJ NNS WP VBD VBN VBN IN DT NN IN DT NN .\nSeveral members of four top Italian football teams have been ordered to stand trial in a sports court on charges stemming from the largest football scandal in the country 's history .\tJJ NNS IN CD JJ JJ NN NNS VBP VBN VBN TO VB NN IN DT NNS NN IN NNS VBG IN DT JJS NN NN IN DT NN POS NN .\nAt least 26 people from Juventus , AC Milan , Lazio and Fiorentina will face allegations of match-fixing , illegal betting and manipulation of referee assignments .\tIN JJS CD NNS IN NNP , NNP NNP , NNP CC NNP MD VB NNS IN JJ , JJ VBG CC NN IN NN NNS .\nThe trial begins next week at the Olympic Stadium in Rome .\tDT NN VBZ JJ NN IN DT NNP NNP IN NNP .\nNo players are involved .\tDT NNS VBP VBN .\nJuventus has been investigated for sporting fraud on allegations that it tried to manipulate the Serie A by handpicking referees .\tNNP VBZ VBN VBN IN VBG NN IN NNS IN PRP VBD TO VB DT NNP NNP IN VBG NNS .\nJuventus won the first division title for the last two seasons .\tNNP VBD DT JJ NN NN IN DT JJ CD NNS .\nBut those titles could be stripped along with possible relegation as far down as the third division .\tCC DT NNS MD VB VBN IN IN JJ NN IN RB RB IN DT JJ NN .\nThe other teams face lesser demotions .\tDT JJ NNS VBP JJR NNS .\nIran is reviewing proposals offered by the European Union aimed at ending a long-running standoff over its nuclear program .\tNNP VBZ VBG NNS VBN IN DT NNP NNP VBN IN VBG DT JJ NN IN PRP$ JJ NN .\nThe proposals were delivered Friday by the ambassadors of Britain , France and Germany .\tDT NNS VBD VBN NNP IN DT NNS IN NNP , NNP CC NNP .\nAn Iranian foreign ministry spokesman said his country would study the proposals for one or two days and issue a response ' soon . '\tDT JJ JJ NN NN VBD PRP$ NN MD VB DT NNS IN CD CC CD NNS CC NN DT NN `` RB . ``\nThe European plan calls on Iran to end uranium conversion and enrichment , which are suspected to be part of a nuclear weapons program .\tDT JJ NN VBZ IN NNP TO VB NN NN CC NN , WDT VBP VBN TO VB NN IN DT JJ NNS NN .\nIn exchange , the EU pledges Iran fuel , trade and investment as well as political and technological cooperation .\tIN NN , DT NNP NNS NNP NN , NN CC NN RB RB IN JJ CC JJ NN .\nIran insists its nuclear program is used for the peaceful purpose of energy generation and has said it will soon resume uranium processing .\tNNP VBZ PRP$ JJ NN VBZ VBN IN DT JJ NN IN NN NN CC VBZ VBN PRP MD RB VB NN NN .\nFrench Foreign Minister Philippe Douste-Blazy said Friday he hopes Iran will hear the voice of reason and not resume nuclear activities .\tNNP NNP NNP NNP NNP VBD NNP PRP VBZ NNP MD VB DT NN IN NN CC RB VB JJ NNS .\nThe International Atomic Energy Agency will meet Tuesday to discuss Iran .\tDT NNP NNP NNP NNP MD VB NNP TO VB NNP .\nA Nigerian police spokesman says 164 people have been arrested for alleged involvement in violence near the town of Jos earlier this month that killed more than 200 people .\tDT JJ NN NN VBZ CD NNS VBP VBN VBN IN JJ NN IN NN IN DT NN IN NNP RBR DT NN WDT VBD JJR IN CD NNS .\nThe spokesman said Sunday that 41 of those arrested will be charged with terrorism , which could result in life in prison .\tDT NN VBD NNP IN CD IN DT VBN MD VB VBN IN NN , WDT MD VB IN NN IN NN .\nThe others , he said , will be charged with illegal possession of firearms , rioting and other offenses .\tDT NNS , PRP VBD , MD VB VBN IN JJ NN IN NNS , VBG CC JJ NNS .\nWitnesses to the March 7 violence said that ethnic Fulani herdsmen , who are mostly Muslim , attacked mainly Christian villages south of Jos , setting homes on fire and slashing people with knives and machetes .\tNNS TO DT NNP CD NN VBD IN JJ NNP NNS , WP VBP RB NNP , VBD RB JJ NNS RB IN NNP , VBG NNS IN NN CC VBG NNS IN NNS CC NNS .\nThe U.N. special investigator on freedom of religion has said the massacre could have been prevented had authorities addressed deep-seated tensions between Muslims and Christians .\tDT NNP JJ NN IN NN IN NN VBZ VBN DT NN MD VB VBN VBN VBD NNS VBN JJ NNS IN NNPS CC NNPS .\nJos has a history of sectarian violence .\tNNP VBZ DT NN IN JJ NN .\nThe city sits on the dividing line between Nigeria 's mainly Muslim north and predominantly Christian south .\tDT NN VBZ IN DT NN NN IN NNP POS RB JJ NN CC RB JJ NN .\nIraqi authorities have imposed tight security in and around Baghdad and the holy city of Karbala where Shi'ite Muslim pilgrims are converging for a major religious ceremony .\tJJ NNS VBP VBN JJ NN IN CC IN NNP CC DT JJ NN IN NNP WRB NNP NNP NNS VBP VBG IN DT JJ JJ NN .\nOfficials expect two million pilgrims to join the main Ashura observances Thursday , marking the seventh century martyrdom of Imam Hussein , one of Shi'ite Islam 's most revered leaders .\tNNS VBP CD CD NNS TO VB DT JJ NNP NNS NNP , VBG DT JJ NN NN IN NNP NNP , CD IN NNP NNP POS JJS JJ NNS .\nGovernment troops have sealed off Karbala to vehicles and are body-searching the arriving pilgrims .\tNN NNS VBP VBN RP NNP TO NNS CC VBP VBG DT VBG NNS .\nPolice in Baghdad also imposed tight security in Kadhimiya district - another site of Shi'ite pilgrimage - and set up checkpoints around the city .\tNNS IN NNP RB VBD JJ NN IN NNP NN : DT NN IN NNP NN : CC VBN RP NNS IN DT NN .\nDespite the security , Iraq 's higher education minister survived a bomb attack in Baghdad that wounded three people .\tIN DT NN , NNP POS JJR NN NN VBD DT NN NN IN NNP IN VBD CD NNS .\nIn the past , insurgents have attacked pilgrims during Ashura observances .\tIN DT NN , NNS VBP VBN NNS IN NNP NNS .\nIn 2004 , about 170 people were killed .\tIN CD , IN CD NNS VBD VBN .\nPope Benedict XVI says science has narrowed humanity 's understanding of the origins of life and that the theory of evolution can neither be proven or dismissed .\tNNP NNP NNP VBZ NN VBZ VBN NN POS NN IN DT NNS IN NN CC IN DT NN IN NN MD RB VB VBN CC VBN .\nThe pope 's extended views on evolution are appearing in print for the first time as part of a newly published German book called Creation and Evolution .\tDT NN POS JJ NNS IN NN VBP VBG IN NN IN DT JJ NN IN NN IN DT RB VBN JJ NN VBD NNP CC NNP .\nHe writes that evolution can never be known for sure because it is impossible to conduct controlled laboratory experiments into the theory .\tPRP VBZ IN NN MD RB VB VBN IN JJ IN PRP VBZ JJ TO VB JJ NN NNS IN DT NN .\nBut Benedict does not give a 100 percent endorsement of creationism or intelligent design , saying the debate must be philosophical and go beyond science .\tCC NNP VBZ RB VB DT CD NN NN IN NN CC JJ NN , VBG DT NN MD VB JJ CC VB IN NN .\nAdvocates of intelligent design say life on Earth is too complex to have evolved randomly and must be the product of a higher power .\tNNS IN JJ NN VBP NN IN NNP VBZ RB JJ TO VB VBN RB CC MD VB DT NN IN DT JJR NN .\nA state-run Chinese newspaper reported Monday that more than 200 people are expected to go on trial this week for their involvement in sectarian riots last month in the western region of Xinjiang .\tDT JJ JJ NN VBD NNP IN JJR IN CD NNS VBP VBN TO VB IN NN DT NN IN PRP$ NN IN JJ NNS JJ NN IN DT JJ NN IN NNP .\nThe official China Daily said the trials will take place in Urumqi , the capital of Xinjiang and the site of China 's worst ethnic violence in decades .\tDT JJ NNP NNP VBD DT NNS MD VB NN IN NNP , DT NN IN NNP CC DT NN IN NNP POS JJS JJ NN IN NNS .\nNearly 200 people were killed and about 1,700 injured .\tRB CD NNS VBD VBN CC IN CD NN .\nThe paper said the charges include vandalizing public property , organizing crowds to cause bodily harm , robbery , murder and arson , among other crimes .\tDT NN VBD DT NNS VBP VBG JJ NN , VBG NNS TO VB RB NN , NN , NN CC NN , IN JJ NNS .\nBeijing blamed the violence on outside forces stirring up separatist sentiments among the mostly Muslim Uighur minority , but Uighurs blame the police for provoking the violence .\tNNP VBD DT NN IN JJ NNS VBG RP JJ NNS IN DT RB JJ NNP NN , CC NNS VBP DT NN IN VBG DT NN .\nDelegates from many of south Asian nations affected by December 's deadly tsunami are in Tokyo to study Japan 's advanced tsunami warning system .\tNNS IN NN IN JJ JJ NNS VBN IN NNP POS JJ NNS VBP IN NNP TO VB NNP POS JJ NN NN NN .\nA three-day conference sponsored by the United Nations opened Tuesday as part of an effort to establish an early tsunami warning system for the Indian Ocean by mid-2006 .\tDT JJ NN VBN IN DT NNP NNPS VBD NNP IN NN IN DT NN TO VB DT JJ NN NN NN IN DT NNP NNP IN CD .\nThe representatives from Indonesia , Sri Lanka , Thailand and other nations in the region also will visit Japanese coastal communities to see how they respond to earthquake and tsunami warnings .\tDT NNS IN NNP , NNP NNP , NNP CC JJ NNS IN DT NN RB MD VB JJ JJ NNS TO VB WRB PRP VB TO NN CC NN NNS .\nJapan , which is prone to earthquakes and tsunamis , has offered to share its tsunami-warning technology to build the new Indian Ocean system .\tNNP , WDT VBZ JJ TO NNS CC NNS , VBZ VBN TO VB PRP$ JJ NN TO VB DT JJ NNP NNP NN .\nNATO allies have raised concerns about a recent deal in Afghanistan to free five Taleban prisoners in exchange for a kidnapped Italian reporter .\tNNP NNS VBP VBN NNS IN DT JJ NN IN NNP TO VB CD NNP NNS IN NN IN DT VBN JJ NN .\nU.S. Undersecretary of State Nicholas Burns told reporters in Brussels Tuesday that a majority of member states oppose the exchange of hostages for terrorists .\tNNP NNP IN NNP NNP NNP VBD NNS IN NNP NNP IN DT NN IN NN NNS VBP DT NN IN NNS IN NNS .\nMembers Tuesday discussed adopting a common NATO policy to deal with similar hostage situations .\tNNS NNP VBD VBG DT JJ NNP NN TO VB IN JJ NN NNS .\nEarly last week , the Afghan government released five Taleban militants in exchange for kidnapped journalist Daniele Mastrogiacomo , who had been held for two weeks .\tRB JJ NN , DT JJ NN VBD CD NNP NNS IN NN IN VBN NN NNP NNP , WP VBD VBN VBN IN CD NNS .\nBritain and the United States raised objections to the deal , saying it increases the risk of similar kidnappings of NATO and Afghan troops .\tNNP CC DT NNP NNPS VBD NNS TO DT NN , VBG PRP VBZ DT NN IN JJ NNS IN NNP CC JJ NNS .\nMastrogiacomo was abducted in southern Afghanistan 's Helmand province in early March .\tNNP VBD VBN IN JJ NNP POS NNP NN IN JJ NNP .\nKidnappers beheaded his Afghan driver .\tNNS VBD PRP$ JJ NN .\nThe U.S. Geological Survey says a strong earthquake has hit eastern Indonesia .\tDT NNP NNP NNP VBZ DT JJ NN VBZ VBN JJ NNP .\nThe service said Tuesday the quake had a magnitude of 6.3 and was centered in the Molucca Sea about 135 kilometers northwest of Ternate .\tDT NN VBD NNP DT NN VBD DT NN IN CD CC VBD VBN IN DT NNP NNP IN CD NNS JJS IN NNP .\nAn Indonesian website , vivanews.com , said the quake struck at 9.08 pm local time and there appeared to be little risk of a tsunami .\tDT JJ NN , NNP , VBD DT NN VBD IN CD NN JJ NN CC RB VBD TO VB JJ NN IN DT NN .\nThere were no immediate reports of damage or injuries .\tEX VBD DT JJ NNS IN NN CC NNS .\nAn earthquake of that magnitude can cause damage in populated areas within a radius of about 160 kilometers .\tDT NN IN DT NN MD VB NN IN JJ NNS IN DT NN IN IN CD NNS .\nIndonesia sits on fault lines that make the region prone to earthquakes .\tNNP VBZ IN NN NNS WDT VBP DT NN JJ TO NNS .\nA tsunami triggered by a massive undersea quake in December 2004 killed nearly 2,30,000 people , half of them in Indonesia 's Aceh province .\tDT NN VBN IN DT JJ NN NN IN NNP CD VBD RB CD NNS , NN IN PRP IN NNP POS NNP NN .\nChina has imposed a massive news blackout on the deadly police suppression of a village protest in Dongzhou earlier this month .\tNNP VBZ VBN DT JJ NN NN IN DT JJ NN NN IN DT NN NN IN NNP RBR DT NN .\nChina 's state controlled media have been nearly silent about the December 6 incident in which activists say some 20 people were shot dead by police while protesting against a local power plant .\tNNP POS NN JJ NNS VBP VBN RB JJ IN DT NNP CD NN IN WDT NNS VBP DT CD NNS VBD VBN JJ IN NN IN VBG IN DT JJ NN NN .\nThe only official news coverage has alleged that three civilians were killed and several injured after protesters attacked police , forcing officers to respond .\tDT JJ JJ NN NN VBZ VBN IN CD NNS VBD VBN CC JJ NN IN NNS VBD NNS , VBG NNS TO VB .\nThe news blackout extends to the Internet , where reporters say sophisticated filtering has blocked foreign news stories and prevented search engines , such as Google , from looking for keywords associated with the shootings .\tDT NN NN VBZ TO DT NNP , WRB NNS VBP JJ NN VBZ VBN JJ NN NNS CC VBD NN NNS , JJ IN NNP , IN VBG IN NNS VBN IN DT NNS .\nBut media rights group Reporters without Borders says some Internet users have successfully published messages about the incident in chat rooms by alluding to the shootings without mentioning specifics .\tCC NNS NNS NN NNS IN NNS VBZ DT NNP NNS VBP RB VBN NNS IN DT NN IN NN NNS IN VBG TO DT NNS IN VBG NNS .\nChinese officials are reporting a new outbreak of bird flu in poultry - this time in northern China .\tJJ NNS VBP VBG DT JJ NN IN NN NN IN NN IN DT NN IN JJ NNP .\nChina 's agriculture ministry said Friday that a state lab has confirmed that more than 200 birds died of the H5N1 strain of bird flu in Inner Mongolia .\tNNP POS NN NN VBD NNP IN DT NN NN VBZ VBN IN JJR IN CD NNS VBD IN DT NNP NN IN NN NN IN NNP NNP .\nMore than 16,000 birds have been culled in an effort to contain the outbreak .\tJJR IN CD NNS VBP VBN VBN IN DT NN TO VB DT NN .\nEarlier Friday , Indonesia said it has received permission from Swiss drug giant Roche to locally produce Tamiflu , the drug thought to be most effective in treating bird flu in humans .\tRBR NNP , NNP VBD PRP VBZ VBN NN IN JJ NN NN NNP TO RB VB NNP , DT NN VBN TO VB RBS JJ IN VBG NN NN IN NNS .\nRoche also announced that it would provide Taiwan with an additional 1.3 million treatments of Tamiflu .\tNNP RB VBD IN PRP MD VB NNP IN DT JJ CD CD NNS IN NNP .\nThe company said it made the decision after determining that local companies could not produce the drug more rapidly or at a lower cost .\tDT NN VBD PRP VBD DT NN IN VBG IN JJ NNS MD RB VB DT NN RBR RB CC IN DT JJR NN .\nNearly 70 people have died of bird flu in Asia since 2003 .\tRB CD NNS VBP VBN IN NN NN IN NNP IN CD .\nThe Iraqi prime minister 's office says the journalist who threw his shoes at U.S. President George Bush has apologized .\tDT JJ JJ NN POS NN VBZ DT NN WP VBD PRP$ NNS IN NNP NNP NNP NNP VBZ VBN .\nA spokesman for Prime Minister Nouri al-Maliki said Thursday that reporter Muntazer al-Zaidi wrote a letter in which he asked for Mr. Maliki 's pardon , calling his display an ' ugly act . '\tDT NN IN NNP NNP NNP NNP VBD NNP IN NN NNP NNP VBD DT NN IN WDT PRP VBD IN NNP NNP POS NN , VBG PRP$ NN DT `` JJ NN . ``\nRelatives of Zaidi immediately cast doubt that he would write such a letter of his own accord .\tNNS IN NNP RB VBD NN IN PRP MD VB JJ DT NN IN PRP$ JJ NN .\nThe reporter has been in custody since the incident Sunday .\tDT NN VBZ VBN IN NN IN DT NN NNP .\nHe faces up to 15 years in prison , depending on what charges will be made against him and if he is found guilty .\tPRP VBZ RP TO CD NNS IN NN , VBG IN WP NNS MD VB VBN IN PRP CC IN PRP VBZ VBN JJ .\nThousands of Iraqis have protested in the streets , demanding his release .\tNNS IN NNS VBP VBN IN DT NNS , VBG PRP$ NN .\nZaidi has become somewhat of a folk hero for his action against Mr. Bush , who spearheaded the invasion of Iraq .\tNNP VBZ VBN RB IN DT NN NN IN PRP$ NN IN NNP NNP , WP VBD DT NN IN NNP .\nThe leader of Hezbollah in Lebanon has rejected President Bush 's call for the militant group to disarm .\tDT NN IN NNP IN NNP VBZ VBN NNP NNP POS NN IN DT JJ NN TO VB .\nSheikh Hassan Nasrallah says his organization needs to be armed to protect Lebanon and deter Israeli aggression .\tNNP NNP NNP VBZ PRP$ NN VBZ TO VB VBN TO VB NNP CC VB JJ NN .\nHe spoke Wednesday in response to Mr. Bush , who said Hezbollah could play a political role in Lebanon if it disarmed and supported the Israeli-Palestinian peace process .\tPRP VBD NNP IN NN TO NNP NNP , WP VBD NNP MD VB DT JJ NN IN NNP IN PRP VBD CC VBD DT JJ NN NN .\nMr. Bush says Hezbollah will remain designated a terrorist organization .\tNNP NNP VBZ NNP MD VB VBN DT JJ NN .\nMr. Bush met Wednesday at the White House with the Lebanese Patriarch of the Maronite Church , Nasrallah Sfeir .\tNNP NNP VBD NNP IN DT NNP NNP IN DT JJ NN IN DT NNP NNP , NNP NNP .\nThe patriarch says he looks forward to an end to the ' suffocating political conditions ' in Syrian-dominated Lebanon .\tDT NN VBZ PRP VBZ RB TO DT NN TO DT `` VBG JJ NNS `` IN JJ NNP .\nMeanwhile , witnesses say Syrian intelligence agents left Beirut following U.S. , European and Lebanese opposition calls to do so .\tRB , NNS VBP JJ NN NNS VBD NNP VBG NNP , JJ CC JJ NN NNS TO VB RB .\nSuspected U.S. drones fired missiles at several suspected militant hideouts in Pakistan 's North Waziristan tribal region Tuesday , killing at least 16 people .\tVBN NNP NNS VBD NNS IN JJ JJ JJ NNS IN NNP POS NNP NNP JJ NN NNP , VBG IN JJS CD NNS .\nNorth Waziristan is known as a base for the Taliban-allied Haqqani group , which is blamed for cross-border attacks against U.S. , NATO and Afghan troops in Afghanistan .\tNNP NNP VBZ VBN IN DT NN IN DT JJ NNP NN , WDT VBZ VBN IN JJ NNS IN NNP , NNP CC JJ NNS IN NNP .\nU.S. officials do not publicly comment on the drone strikes , which have raised tensions between Pakistan and the United States in the past .\tNNP NNS VBP RB RB VB IN DT NN NNS , WDT VBP VBN NNS IN NNP CC DT NNP NNPS IN DT NN .\nMeanwhile , the death toll from four days of violence in Pakistan 's southern port city of Karachi has reached at least 26 , after at least six more people were killed Tuesday .\tRB , DT NN NN IN CD NNS IN NN IN NNP POS JJ JJ NN IN NNP VBZ VBN IN JJS CD , IN IN JJS CD JJR NNS VBD VBN NNP .\nThe clashes appeared to be between activists from rival political parties - the Muttahida Qaumi Movement and the Awami National Party - which traditionally gather support from different ethnic groups .\tDT NNS VBD TO VB IN NNS IN JJ JJ NNS IN DT NNP NNP NNP CC DT NNP NNP NNP : WDT RB VBP NN IN JJ JJ NNS .\nThe White House has yet to comment on a published report that the National Security Agency conducted broader surveillance of e-mails and telephone conversations without court orders than the administration has acknowledged .\tDT NNP NNP VBZ RB TO VB IN DT VBN NN IN DT NNP NNP NNP VBD JJR NN IN NNS CC NN NNS IN NN NNS IN DT NN VBZ VBN .\nCurrent and former government officials told The New York Times the NSA accessed domestic and international communications with help from telecommunication companies .\tJJ CC JJ NN NNS VBD DT NNP NNP NNP DT NNP VBD JJ CC JJ NNS IN NN IN NN NNS .\nThe newspaper says the companies have been storing information on calling patterns since the September 11 , 2001 terrorist attacks in the United States .\tDT NN VBZ DT NNS VBP VBN VBG NN IN VBG NNS IN DT NNP CD , CD JJ NNS IN DT NNP NNPS .\nNSA officials were reported to have been studying the information in hope of finding terrorists .\tNNP NNS VBD VBN TO VB VBN VBG DT NN IN NN IN VBG NNS .\nThe Bush administration has been under increased scrutiny from the public and many lawmakers for authorizing without court orders the surveillance of what the government says are only international calls and e-mails to and from the United States .\tDT NNP NN VBZ VBN IN VBN NN IN DT JJ CC JJ NNS IN VBG IN NN NNS DT NN IN WP DT NN VBZ VBP JJ JJ NNS CC NNS TO CC IN DT NNP NNPS .\nVice President Dick Cheney says the Bush administration has all the legal authority it needs to wiretap phone calls and e-mails between U.S. citizens and persons abroad suspected of links to terrorism .\tJJ NNP NNP NNP VBZ DT NNP NN VBZ PDT DT JJ NN PRP VBZ TO VB NN NNS CC NNS IN NNP NNS CC NNS RB VBN IN NNS TO NN .\nCheney was asked on a national U.S. television show PBSNewshour Tuesday if the president would be willing to work with Congress to settle some of the disputes about the legality of the secret surveillance program .\tNNP VBD VBN IN DT JJ NNP NN NN NNP NNP IN DT NN MD VB VBG TO VB IN NNP TO VB DT IN DT NNS IN DT NN IN DT JJ NN NN .\nHe expressed concern that the legislative process could lead to the disclosure of sensitive operational matters .\tPRP VBD NN IN DT JJ NN MD VB TO DT NN IN JJ JJ NNS .\nMeanwhile , a Republican member of Congress has called for a full congressional investigation into the wiretapping program .\tRB , DT JJ NN IN NNP VBZ VBN IN DT JJ JJ NN IN DT NN NN .\nCongresswoman Heather Wilson - chairwoman of a House Intelligence Subcommittee - told The New York Times she has ' serious concerns ' about the program .\tNN NNP NNP : NN IN DT NNP NNP NNP : VBD DT NNP NNP NNP PRP VBZ `` JJ NNS `` IN DT NN .\nOn Monday , Attorney General Alberto Gonzales faced tough questions on the program from several members of a Senate panel .\tIN NNP , NNP NNP NNP NNP VBD JJ NNS IN DT NN IN JJ NNS IN DT NNP NN .\nChinese health officials have confirmed a new case of bird flu in a man hospitalized in critical condition in Guangdong province , near Hong Kong .\tJJ NN NNS VBP VBN DT JJ NN IN NN NN IN DT NN VBN IN JJ NN IN NNP NN , IN NNP NNP .\nThe case has caused Hong Kong to declare a three-week ban on live poultry from the mainland .\tDT NN VBZ VBN NNP NNP TO VB DT JJ NN IN JJ NN IN DT NN .\nChinese state media say the infection brings the country 's total of human cases of bird flu to 19 .\tJJ NN NNS VBP DT NN VBZ DT NN POS NN IN JJ NNS IN NN NN TO CD .\nReports say the 31-year-old patient in the town of Shenzhen developed fever and pneumonia-like symptoms June 3 .\tNNS VBP DT JJ NN IN DT NN IN NNP VBD NN CC JJ NNS NNP CD .\nEarlier Thursday , the World Health Organization confirmed that a seven-year-old Indonesian girl who died last month was infected with bird flu .\tRBR NNP , DT NNP NNP NNP VBD IN DT JJ JJ NN WP VBD JJ NN VBD VBN IN NN NN .\nThat means 38 people in Indonesia have now died of bird flu .\tDT VBZ CD NNS IN NNP VBP RB VBN IN NN NN .\nAvian flu has killed more than 125 people around the world since late 2003 .\tJJ NN VBZ VBN JJR IN CD NNS IN DT NN IN JJ CD .\nMost of the victims have been in Asia .\tJJS IN DT NNS VBP VBN IN NNP .\nIran is promising a mighty response to any aggression from Israel , as political hostilities between the two governments continue to increase .\tNNP VBZ VBG DT JJ NN TO DT NN IN NNP , IN JJ NNS IN DT CD NNS VBP TO VB .\nThe latest warning from Tehran came during an interview with Iranian Defense Minister Mostafa Mohammad Najjar Friday by the official Islamic Republic News Agency .\tDT JJS NN IN NNP VBD IN DT NN IN JJ NNP NNP NNP NNP NNP NNP IN DT JJ NNP NNP NNP NNP .\nHe was responding to questions about escalating troubles with Israel , including speculation of an Israeli attack on Iranian nuclear facilities .\tPRP VBD VBG TO NNS IN VBG NNS IN NNP , VBG NN IN DT JJ NN IN JJ JJ NNS .\nThe defense minister said Iran 's armed forces would provide a rapid , strong and destructive response to any such attack .\tDT NN NN VBD NNP POS JJ NNS MD VB DT JJ , JJ CC JJ NN TO DT JJ NN .\nIran 's foreign relations have been further strained by controversial comments by Iranian President Mahmoud Ahmadinejad .\tNNP POS JJ NNS VBP VBN JJ VBN IN JJ NNS IN JJ NNP NNP NNP .\nThe hard-line president has called for Israel to be ' wiped off the map . '\tDT JJ NN VBZ VBN IN NNP TO VB `` VBN RP DT NN . ``\nHe has also cast doubt on the Holocaust , and has suggested that Israel be moved to Europe .\tPRP VBZ RB VBN NN IN DT NNP , CC VBZ VBN IN NNP VB VBN TO NNP .\nDeposed Honduran President Manuel Zelaya says talks on ending the stand-off stemming from his ouster have broken down .\tJJ JJ NNP NNP NNP VBZ NNS IN VBG DT NN VBG IN PRP$ NN VBP VBN RP .\nSpeaking from the Brazilian Embassy in the capital , Tegucigalpa , where he has taken refuge , Mr. Zelaya told reporters the talks are suspended until the other side presents what he called a ' reasonable ' stance .\tVBG IN DT JJ NNP IN DT NN , NNP , WRB PRP VBZ VBN NN , NNP NNP VBD NNS DT NNS VBP VBN IN DT JJ NN VBZ WP PRP VBD DT `` JJ `` NN .\nA member of Mr. Zelaya 's negotiating team , Victor Meza , said the proposal offered by interim President Roberto Micheletti is ' completely unacceptable . '\tDT NN IN NNP NNP POS NN NN , NNP NNP , VBD DT NN VBN IN JJ NNP NNP NNP VBZ `` RB JJ . ``\nThat proposal calls for the Honduran Supreme Court to decide whether Mr. Zelaya should be allowed to return to power .\tDT NN VBZ IN DT JJ NNP NNP TO VB IN NNP NNP MD VB VBN TO VB TO NN .\nDespite Mr. Zelaya 's statements , envoys from the two sides say negotiations will continue .\tIN NNP NNP POS NNS , NNS IN DT CD NNS VBP NNS MD VB .\nMr. Micheletti has been under intense international pressure to restore Mr. Zelaya .\tNNP NNP VBZ VBN IN JJ JJ NN TO VB NNP NNP .\nThe deposed president 's opponents say he was ousted because he was trying to illegally change the constitution to extend his term in office .\tDT VBN NN POS NNS VBP PRP VBD VBN IN PRP VBD VBG TO RB VB DT NN TO VB PRP$ NN IN NN .\nU.S. consumer prices posted their sharpest drop in half a century in November .\tNNP NN NNS VBD PRP$ JJS NN IN PDT DT NN IN NNP .\nThursday 's report from the Labor Department says falling energy costs brought prices down a steep six-tenths of a percent for the month .\tNNP POS NN IN DT NNP NNP VBZ VBG NN NNS VBD NNS RP DT JJ NNS IN DT NN IN DT NN .\nEconomists say energy and food costs can swing widely from month to month , so setting aside those volatile prices may give a clearer picture of inflation in the overall economy .\tNNS VBP NN CC NN NNS MD VB RB IN NN TO NN , RB VBG RB DT JJ NNS MD VB DT JJR NN IN NN IN DT JJ NN .\nBy that measure , prices rose a modest two-tenths of a percent .\tIN DT NN , NNS VBD DT JJ NNS IN DT NN .\nEnergy prices soared earlier this year because of hurricane damage .\tNN NNS VBD RBR DT NN IN IN NN NN .\nA separate report says the number of people who lost jobs because of Hurricanes Katrina , Rita , and Wilma now exceeds $ 6,00,000 .\tDT JJ NN VBZ DT NN IN NNS WP VBD NNS IN IN NNP NNP , NNP , CC NNP RB VBZ $ CD .\nThe report also shows the number of people applying for unemployment insurance rose slightly last week .\tDT NN RB VBZ DT NN IN NNS VBG IN NN NN VBD RB JJ NN .\nChinese authorities say 254 people were killed in a massive mudslide that buried a northern Chinese village .\tJJ NNS VBP CD NNS VBD VBN IN DT JJ NN WDT VBD DT JJ JJ NN .\nThe death toll rose sharply Saturday after the discovery of more than 70 additional bodies in Shanxi province .\tDT NN NN VBD RB NNP IN DT NN IN JJR IN CD JJ NNS IN NNP NN .\nThe official Xinhua news agency reported a wall of waste and mud from an illegal mine plowed into a village of about 1,000 people on Monday .\tDT JJ NNP NN NN VBD DT NN IN NN CC NN IN DT JJ NN VBD IN DT NN IN IN CD NNS IN NNP .\nThe slide buried an outdoor market said to have been packed with people .\tDT NN VBD DT JJ NN VBN TO VB VBN VBN IN NNS .\nOfficials stated hundreds could have been killed .\tNNS VBD NNS MD VB VBN VBN .\nMore than 1,000 people are involved in rescue and recovery operations .\tJJR IN CD NNS VBP VBN IN NN CC NN NNS .\nChinese work safety officials blamed the illegal mine for the disaster .\tJJ NN NN NNS VBD DT JJ NN IN DT NN .\nPolice have detained 12 people associated with the mine , including its boss .\tNNS VBP VBN CD NNS VBN IN DT NN , VBG PRP$ NN .\nThe United Nations says 2007 was one of the deadliest years on record for U.N. staffers .\tDT NNP NNP VBZ CD VBD CD IN DT JJS NNS IN NN IN NNP NNS .\nThe United Nations said Wednesday that 42 civilian staffers and peacekeepers were killed in acts of violence worldwide last year , compared to 32 in 2006 and about half that in 2005 .\tDT NNP NNP VBD NNP IN CD JJ NNS CC NNS VBD VBN IN NNS IN NN NN JJ NN , VBN TO CD IN CD CC IN NN IN IN CD .\nThe U.N. said the worst incident this year was in a bombing in Algiers on December 11 , when 17 U.N. staff members were among dozens who died in two car bomb attacks , an incident Secretary Ban Ki-Moon called ' despicable . '\tDT NNP VBD DT JJS NN DT NN VBD IN DT NN IN NNP IN NNP CD , WRB CD NNP NN NNS VBD IN NNS WP VBD IN CD NN NN NNS , DT NN NNP NNP NNP VBD `` JJ . ``\nSix staffers lost their lives in a bomb attack in Lebanon June 24 , and another died the following month .\tCD NNS VBD PRP$ NNS IN DT NN NN IN NNP NNP CD , CC DT VBD DT VBG NN .\nSix other U.N. workers died in Sudanese violence in several different incidents .\tCD JJ NNP NNS VBD IN JJ NN IN JJ JJ NNS .\nAfghanistan was also the scene of six U.N. deaths over the course of the year .\tNNP VBD RB DT NN IN CD NNP NNS IN DT NN IN DT NN .\nOther U.N. staffers were detained in Darfur , Somalia , and Burma .\tJJ NNP NNS VBD VBN IN NNP , NNP , CC NNP .\nThe U.S. government has proposed a new , high-tech passport card for Americans who travel internationally within the Western Hemisphere .\tDT NNP NN VBZ VBN DT JJ , JJ NN NN IN NNS WP VBP RB IN DT NNP NNP .\nThe State Department and the Department of Homeland Security have submitted Tuesday a proposal for public comment .\tDT NNP NNP CC DT NNP IN NNP NNP VBP VBN NNP DT NN IN JJ NN .\nThe plan calls for a card that is small enough to fit into a person 's wallet .\tDT NN VBZ IN DT NN WDT VBZ JJ RB TO VB IN DT NN POS NN .\nIt would meet the same standards as a traditional passport book , but would only be used by U.S. citizens traveling from the U.S. to Canada , Mexico , the Caribbean and Bermuda .\tPRP MD VB DT JJ NNS IN DT JJ NN NN , CC MD RB VB VBN IN NNP NNS VBG IN DT NNP TO NNP , NNP , DT NNP CC NNP .\nThe proposed card would use radio frequency identification ( RFID ) that links the card to a government database that contains biographical information and a photograph .\tDT VBN NN MD VB NN NN NN LRB NNP RRB WDT VBZ DT NN TO DT NN NN WDT VBZ JJ NN CC DT NN .\nThe State Department says the passport card could make frequent travel easier for people who live in border communities .\tDT NNP NNP VBZ DT NN NN MD VB JJ NN JJR IN NNS WP VBP IN NN NNS .\nFormer Ukrainian Prime Minister Yulia Tymoshenko says she will not seek a coalition with the pro-Russian Party of Regions after Sunday 's parliamentary elections .\tJJ JJ JJ NN NNP NNP VBZ PRP MD RB VB DT NN IN DT JJ NN IN NNS IN NNP POS JJ NNS .\nTymoshenko Tuesday ruled out any partnership with the party led by former Prime Minister Viktor Yanukovych .\tNNP NNP VBD RP DT NN IN DT NN VBN IN JJ NNP NNP NNP NNP .\nOpinion polls show the Regions Party is favored to win the largest number of seats in the vote .\tNN NNS VBP DT NNP NNP VBZ VBN TO VB DT JJS NN IN NNS IN DT NN .\nBut no single party is expected to have enough seats to form a government .\tCC DT JJ NN VBZ VBN TO VB JJ NNS TO VB DT NN .\nA top official for President Viktor Yushchenko 's Our Ukraine party also rejected forming a coalition with the Party of Regions .\tDT JJ NN IN NNP NNP NNP POS PRP$ NNP NN RB VBD VBG DT NN IN DT NN IN NNS .\nMr. Yushchenko 's campaign manager , Roman Bezsmertniy , says the party hopes to form a coalition with the bloc led by Tymoshenko .\tNNP NNP POS NN NN , NNP NNP , VBZ DT NN VBZ TO VB DT NN IN DT NN VBN IN NNP .\nThe two groups were the key forces behind the so-called ' Orange Revolution ' that helped bring Mr. Yushchenko to power last year .\tDT CD NNS VBD DT JJ NNS IN DT JJ `` NNP NNP `` WDT VBD VB NNP NNP TO NN JJ NN .\nThe United States has expressed disappointment that an Egyptian court has rejected the appeal of a blogger , convicted for insulting Islam and the Egyptian president .\tDT NNP NNPS VBZ VBN NN IN DT JJ NN VBZ VBN DT NN IN DT NN , VBN IN VBG NNP CC DT JJ NN .\nState Department spokesman , Sean McCormack said Thursday the court 's decision is a setback for human rights in Egypt .\tNNP NNP NN , NNP NNP VBD NNP DT NN POS NN VBZ DT NN IN JJ NNS IN NNP .\nHe said the U.S. is deeply concerned that a blogger was sentenced for expressing his opinions .\tPRP VBD DT NNP VBZ RB JJ IN DT NN VBD VBN IN VBG PRP$ NNS .\nHe said freedom of expression is critical in a democratic society .\tPRP VBD NN IN NN VBZ JJ IN DT JJ NN .\nOn Monday , an Egyptian appeals court upheld a lower court decision last month to sentence blogger Abdel Karim Suleiman to four years in prison - three for insulting Islam and one for insulting President Hosni Mubarak .\tIN NNP , DT JJ NNS NN VBD DT JJR NN NN JJ NN TO NN NN NNP NNP NNP TO CD NNS IN NN IN CD IN VBG NNP CC CD IN VBG NNP NNP NNP .\nSuleiman plans to bring the latest decision to the country 's highest appeals court .\tNNP VBZ TO VB DT JJS NN TO DT NN POS JJS NNS NN .\nIn his blog published in 2004 , Suleiman called Mr. Mubarak a dictator .\tIN PRP$ NN VBN IN CD , NNP VBD NNP NNP DT NN .\nHe wrote that Al-Azhar University , the seat of Sunni Muslim learning , trains extremists .\tPRP VBD IN NNP NNP , DT NN IN NNP NNP NN , VBZ NNS .\nAn Australian prosecutor said Thursday a terrorism defendant admitted to police he was recruited by al-Qaida to monitor military bases in the country .\tDT JJ NN VBD NNP DT NN NN VBD TO VB PRP VBD VBN IN NNP TO VB JJ NNS IN DT NN .\nJoseph Terrence Thomas has pleaded not guilty to charges that he received funds from al-Qaida , supported the terrorist group 's activities and held a fake passport .\tNNP NNP NNP VBZ VBN RB JJ TO NNS IN PRP VBD NNS IN NNP , VBD DT JJ NN POS NNS CC VBD DT JJ NN .\nBut prosecutor Nicholas Robinson told the Victoria state Supreme Court that Thomas admitted to Australian police he trained at an al-Qaida camp in Afghanistan in 2001 , and had been told to watch military activities in Australia .\tCC NN NNP NNP VBD DT NNP NN NNP NNP IN NNP VBD TO JJ NNS PRP VBN IN DT NNP NN IN NNP IN CD , CC VBD VBN VBN TO VB JJ NNS IN NNP .\nThe prosecutor said Thomas also told police he saw al-Qaida leader Osama bin Laden in close quarters on several occasions .\tDT NN VBD NNP RB VBD NNS PRP VBD NNP NN NNP NNP NNP IN JJ NNS IN JJ NNS .\nHe said Thomas told police he accepted $ 3,500 and a plane ticket from an al-Qaida agent in Pakistan .\tPRP VBD NNP VBD NNS PRP VBD $ CD CC DT NN NN IN DT NNP NN IN NNP .\nWimbledon runner-up Lindsay Davenport has withdrawn from the U.S. Fed Cup tennis team for its semifinal against Russia because of a back injury .\tNNP NN NNP NNP VBZ VBN IN DT NNP NNP NNP NN NN IN PRP$ JJ IN NNP IN IN DT JJ NN .\nJill Craybas , who beat Serena Williams at the All England Club last month , has replaced Davenport .\tNNP NNP , WP VBD NNP NNP IN DT NNP NNP NNP JJ NN , VBZ VBN NNP .\nCraybas lost to Venus Williams , who is the Fed Cup team 's top singles player .\tNNP VBD TO NNP NNP , WP VBZ DT NNP NNP NN POS JJ NN NN .\nThe 32-year-old Craybas will play doubles with Corina Morariu , shifting Mashona Washington to the number-two singles slot .\tDT JJ NNP MD VB NNS IN NNP NNP , VBG NNP NNP TO DT JJ NN NN .\nIt will be Craybas ' second appearance in the Fed Cup .\tPRP MD VB NNP POS JJ NN IN DT NNP NNP .\nThe U.S.-Russia match will take place this Saturday and Sunday on an indoor clay court at the Olympic Stadium in Moscow .\tDT NNP NN MD VB NN DT NNP CC NNP IN DT JJ NN NN IN DT NNP NNP IN NNP .\nThe winner faces the winner of this weekend 's other Fed Cup semifinal between France and Spain .\tDT NN VBZ DT NN IN DT NN POS JJ NNP NNP NN IN NNP CC NNP .\nThe championship is set for mid-September .\tDT NN VBZ VBN IN NN .\nUkrainian President Victor Yushchenko says his nation is obliged to prevent crimes against humanity .\tJJ NNP NNP NNP VBZ PRP$ NN VBZ VBN TO VB NNS IN NN .\nPresident Yushchenko told the United Nations General Assembly Thursday that Ukraine lost 10 million lives during the era of Soviet dictator Josef Stalin .\tNNP NNP VBD DT NNP NNP NNP NNP NNP IN NNP VBD CD CD NNS IN DT NN IN JJ NN NNP NNP .\nHe said he wanted the world to be aware of such brutality .\tPRP VBD PRP VBD DT NN TO VB JJ IN JJ NN .\nMr. Yushchenko said Ukraine is an active member in the fight against terrorism and is committed to controlling nuclear proliferation .\tNNP NNP VBD NNP VBZ DT JJ NN IN DT NN IN NN CC VBZ VBN TO VBG JJ NN .\nHe said the country has developed what he called a road map to bring Ukraine closer to a united Europe and integration into the international economy .\tPRP VBD DT NN VBZ VBN WP PRP VBD DT NN NN TO VB NNP RBR TO DT JJ NNP CC NN IN DT JJ NN .\nThe Sudanese government and the main southern rebel group say they are continuing peace talks through Christmas to try to fulfill a promise to reach a final deal before the end of the year .\tDT JJ NN CC DT JJ JJ NN NN VBP PRP VBP VBG NN NNS IN NNP TO VB TO VB DT NN TO VB DT JJ NN IN DT NN IN DT NN .\nThe two sides have promised the United Nations Security Council they will sign an agreement by December 31st to formally end 21 years of civil war .\tDT CD NNS VBP VBN DT NNP NNP NNP NNP PRP MD VB DT NN IN NNP CD TO RB VB CD NNS IN JJ NN .\nHowever , a Sudanese presidential political adviser Qutbi al-Mahdi is quoted by the official Sudan Media Center Saturday as saying a final deal will not be signed until January 10 .\tRB , DT JJ JJ JJ NN NNP NNP VBZ VBN IN DT JJ NNP NNP NNP NNP IN VBG DT JJ NN MD RB VB VBN IN NNP CD .\nThe Sudanese government and the rebel Sudan People 's Liberation Army have already signed several key accords at peace talks in Kenya , including power-sharing and security deals .\tDT JJ NN CC DT NN NNP NNP POS NNP NNP VBP RB VBN JJ JJ NNS IN NN NNS IN NNP , VBG NN CC NN NNS .\nThe southern conflict is separate from the one in Sudan 's western Darfur region , where rebels took up arms last year .\tDT JJ NN VBZ JJ IN DT CD IN NNP POS JJ NNP NN , WRB NNS VBD RP NNS JJ NN .\nSeparate attacks in Afghanistan have wounded five U.S. soldiers and left a local government official dead .\tJJ NNS IN NNP VBP VBN CD NNP NNS CC VBD DT JJ NN NN JJ .\nThe soldiers were wounded Saturday when their armored vehicle was hit by a bomb in eastern Kunar province .\tDT NNS VBD VBN NNP WRB PRP$ JJ NN VBD VBN IN DT NN IN JJ NNP NN .\nCoalition forces responded with small arms fire .\tNN NNS VBD IN JJ NNS NN .\nIn a separate attack , a suicide bomber targeted Afghan and coalition forces in Kandahar province .\tIN DT JJ NN , DT NN NN VBD JJ CC NN NNS IN NNP NN .\nNone of the troops was reported killed or wounded .\tNN IN DT NNS VBD VBN VBN CC VBN .\nHowever , security forces shot and killed a suspected accomplice to the attack .\tRB , NN NNS VBN CC VBN DT JJ NN TO DT NN .\nA purported Taleban spokesman claimed responsibility for the two bombings .\tDT JJ NNP NN VBD NN IN DT CD NNS .\nIn northern Tahhar province , Afghan officials say unidentified gunmen killed a local government official .\tIN JJ NNP NN , JJ NNS VBP JJ NNS VBD DT JJ NN NN .\nThey say Sayed Sadeq was killed by men who broke into his house early Saturday .\tPRP VBP NNP NNP VBD VBN IN NNS WP VBD IN PRP$ NN RB NNP .\nSadeq was the speaker of the Tahhar provincial assembly .\tNNP VBD DT NN IN DT NNP JJ NN .\nMexican officials say a small plane has crashed in central Mexico state , killing two people and destroying at least one house .\tJJ NNS VBP DT JJ NN VBZ VBN IN JJ NNP NN , VBG CD NNS CC VBG IN JJS CD NN .\nOfficials say the twin-engine Aero Commander aircraft was en route from Cancun to the city of Toluca when it went down late Friday in a residential area a few kilometers from of the runway .\tNNS VBP DT JJ NNP NNP NN VBD IN NN IN NNP TO DT NN IN NNP WRB PRP VBD RB RB NNP IN DT JJ NN DT JJ NNS IN IN DT NN .\nEmergency crews say two people from the plane were killed and a third was injured .\tNN NNS VBP CD NNS IN DT NN VBD VBN CC DT NN VBD VBN .\nNo injuries on the ground have been reported .\tDT NNS IN DT NN VBP VBN VBN .\nOfficials have yet to say what may have caused the accident .\tNNS VBP RB TO VB WP MD VB VBN DT NN .\nThe United Nations war crimes tribunal has decided against separating the Kosovo section of the trial of former Yugoslav President Slobodan Milosevic from that involving Croatia and Bosnia-Herzegovina .\tDT NNP NNPS NN NNS NN VBZ VBN IN VBG DT NNP NN IN DT NN IN JJ JJ NNP NNP NNP IN DT VBG NNP CC NNP .\nThe three-judge panel made the decision Tuesday , in an effort to speed up the Milosevic trial .\tDT JJ NN VBD DT NN NNP , IN DT NN TO VB RP DT NNP NN .\nIt previously had suggested a division , amid growing concerns about the former Yugoslav president 's poor health , which has repeatedly delayed the proceedings .\tPRP RB VBD VBN DT NN , IN VBG NNS IN DT JJ JJ NN POS JJ NN , WDT VBZ RB VBN DT NNS .\nThe court also adjourned the trial until January 23 , ahead of a planned Christmas break , giving Mr. Milosevic an additional three weeks to rest .\tDT NN RB VBD DT NN IN NNP CD , RB IN DT JJ NNP NN , VBG NNP NNP DT JJ CD NNS TO NN .\nIt rejected Mr. Milosevic 's request for extra time to present his defense , and it criticized him for focusing most of his time on Kosovo in efforts to force the court to give him the extension .\tPRP VBD NNP NNP POS NN IN JJ NN TO VB PRP$ NN , CC PRP VBD PRP IN VBG JJS IN PRP$ NN IN NNP IN NNS TO VB DT NN TO VB PRP DT NN .\nMr. Milosevic faces more than 60 counts of war crimes and crimes against humanity for his role in the Balkan conflicts of the 1990s .\tNNP NNP VBZ JJR IN CD NNS IN NN NNS CC NNS IN NN IN PRP$ NN IN DT JJ NNS IN DT NNS .\nEngland 's Alistair Cook has hit a century in his test debut while Kevin Pietersen added another 87 runs to lift their team on the fourth day of its opening test match against India in Nagpur .\tNNP POS NNP NNP VBZ VBN DT NN IN PRP$ NN NN IN NNP NNP VBD DT CD NNS TO VB PRP$ NN IN DT JJ NN IN PRP$ NN NN NN IN NNP IN NNP .\nCook , a 21-year-old left-handed opener , scored 104 not out , while Pietersen was more aggressive at the crease and reached 87 before being dismissed by Rahul Dravid .\tNNP , DT JJ JJ NN , VBD CD RB RB , IN NNP VBD RBR JJ IN DT NN CC VBD CD IN VBG VBN IN NNP NNP .\nThe English reached 297-for three at stumps for an overall lead of 367 runs .\tDT NNS VBD JJ CD IN NNS IN DT JJ NN IN CD NNS .\nIndia was all out for 323 in its first innings .\tNNP VBD DT RP IN CD IN PRP$ JJ NN .\nEnglish bowler Matthew Hoggard took six wickets while allowing 57 runs in 30.5 overs .\tJJ NN NNP NNP VBD CD NNS IN VBG CD NNS IN CD NNS .\nEngland 's India tour includes three tests and seven one-day international matches , through mid-April .\tNNP POS NNP NN VBZ CD NNS CC CD JJ JJ NNS , IN NN .\nFloods in northern Venezuela have killed at least 13 people and forced more than 5,000 to leave their homes .\tNNS IN JJ NNP VBP VBN IN JJS CD NNS CC VBD JJR IN CD TO VB PRP$ NNS .\nHeavy rains have caused floods and landslides , forcing authorities to declare a state of emergency in the capital city of Caracas and the country 's northern provinces .\tJJ NNS VBP VBN NNS CC NNS , VBG NNS TO VB DT NN IN NN IN DT NN NN IN NNP CC DT NN POS JJ NNS .\nFlooding rivers and landslides have blocked traffic in northern Venezuela 's coastal areas .\tVBG NNS CC NNS VBP VBN NN IN JJ NNP POS JJ NNS .\nMinister of Education Aristolbulo Isturiz announced Wednesday that classes across the country have been canceled to allow flood victims to seek refuge in the schools .\tNNP IN NNP NNP NNP VBD NNP IN NNS IN DT NN VBP VBN VBN TO VB NN NNS TO VB NN IN DT NNS .\nWeather forecasts say more rain is likely to hit northern Venezuela over the next three days .\tNNP NNS VBP JJR NN VBZ JJ TO VB JJ NNP IN DT JJ CD NNS .\nA top opposition leader in Ivory Coast has returned to the west African nation after three years in exile .\tDT JJ NN NN IN NNP NNP VBZ VBN TO DT JJ JJ NN IN CD NNS IN NN .\nAlassane Ouattara arrived in Abidjan Wednesday , greeted by a small group of supporters and dozens of U.N. peacekeepers who will provide him protection .\tNNP NNP VBD IN NNP NNP , VBN IN DT JJ NN IN NNS CC NNS IN NNP NNS WP MD VB PRP NN .\nHe issued a call for unity and said he is returning to his country with ' a lot of love . '\tPRP VBD DT NN IN NN CC VBD PRP VBZ VBG TO PRP$ NN IN `` DT NN IN NN . ``\nOuattara is a former prime minster and heads the Rally of Republicans party .\tNNP VBZ DT JJ JJ NN CC VBZ DT NN IN NNPS NN .\nHe fled Ivory Coast for France three years ago after allies of President Laurent Gbagbo accused him of supporting northern-based rebels in the country 's civil war .\tPRP VBD NNP NNP IN NNP CD NNS RB IN NNS IN NNP NNP NNP VBD PRP IN VBG JJ NNS IN DT NN POS JJ NN .\nOuattara has said he will run in presidential elections scheduled for October .\tNNP VBZ VBN PRP MD VB IN JJ NNS VBN IN NNP .\nIvory Coast is divided between rebel-held and government-controlled areas .\tNNP NNP VBZ VBN IN JJ CC JJ NNS .\nA peace deal to reunite the country has repeatedly stalled .\tDT NN NN TO VB DT NN VBZ RB VBN .\nPakistan police say a roadside bomb attack on a prison van has wounded at least 10 policemen in the restive northwest .\tNNP NNS VBP DT NN NN NN IN DT NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN .\nOfficials say Saturday 's explosion was near a jail in the town of Timergarah in Lower Dir district .\tNNS VBP NNP POS NN VBD IN DT NN IN DT NN IN NNP IN NNP NNP NN .\nNo group has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nElsewhere in Pakistan , at least six people have been wounded by an explosion in southwestern Pakistan .\tRB IN NNP , IN JJS CD NNS VBP VBN VBN IN DT NN IN JJ NNP .\nPolice say the blast went off in a bakery Saturday in Sibbi in the province of Baluchistan .\tNNS VBP DT NN VBD RB IN DT NN NNP IN NNP IN DT NN IN NNP .\nRussia and Ukraine say they have reached a final agreement on natural gas deliveries for the rest of the year .\tNNP CC NNP VBP PRP VBP VBN DT JJ NN IN JJ NN NNS IN DT NN IN DT NN .\nRussia 's state-run gas monopoly Gazprom says the deal , announced Thursday , also specifies prices for gas delivered in the first two months of this year .\tNNP POS JJ NN NN NNP VBZ DT NN , VBN NNP , RB VBZ NNS IN NN VBN IN DT JJ CD NNS IN DT NN .\nAdditionally , the new agreement streamlines gas trade by eliminating intermediary companies that Ukraine said were complicating gas payment procedures .\tRB , DT JJ NN VBZ NN NN IN VBG JJ NNS WDT NNP VBD VBD VBG NN NN NNS .\nGazprom cut gas deliveries to Ukraine by more than 50 percent earlier this month , because , it said , no payment provisions were in place for gas delivered to Ukraine in January and February .\tNNP VBD NN NNS TO VB IN JJR IN CD NN RBR DT NN , IN , PRP VBD , DT NN NNS VBD IN NN IN NN VBN TO VB IN NNP CC NNP .\nThe Russian company had demanded $ 600 million in back payments , as well as for a payment plan for the rest of the year .\tDT JJ NN VBD VBN $ CD CD IN JJ NNS , RB RB IN IN DT NN NN IN DT NN IN DT NN .\nUkraine threatened to siphon gas meant for Europe from pipelines that cross Ukraine .\tNNP VBD TO VB NN VBN IN NNP IN NNS WDT VBP NNP .\nThe Israeli military says Israeli and Palestinian officials have agreed to meet for a second time Wednesday to resolve a standoff on handing over security of the West Bank town of Jericho .\tDT JJ NN VBZ JJ CC JJ NNS VBP VBN TO VB IN DT JJ NN NNP TO VB DT NN IN VBG IN NN IN DT NNP NNP NN IN NNP .\nTalks earlier Wednesday on transferring control of the towns of Jericho and Tulkarem broke down without an agreement .\tNNS JJR NNP IN VBG NN IN DT NNS IN NNP CC NNP VBD RP IN DT NN .\nPalestinian officials said the biggest obstacle is whether Israel will agree to remove the main checkpoint at the entrance of Jericho .\tJJ NNS VBD DT JJS NN VBZ IN NNP MD VB TO VB DT JJ NN IN DT NN IN NNP .\nThe Israeli pullback was agreed to at a Palestinian-Israeli summit last month in Egypt , but has been delayed because of a Palestinian suicide bombing 12 days ago in Tel Aviv that killed four people .\tDT JJ NN VBD VBN TO IN DT JJ NN JJ NN IN NNP , CC VBZ VBN VBN IN IN DT JJ NN VBG CD NNS RB IN NNP NNP WDT VBD CD NNS .\nThe transfer would be the first of several planned Israeli pullouts from five towns in the West Bank , including Qalqilya , Bethlehem and Ramallah .\tDT NN MD VB DT NN IN JJ JJ JJ NNS IN CD NNS IN DT NNP NNP , VBG NNP , NNP CC NNP .\nFrench authorities are holding five men on suspicion of links to the al-Qaida affiliated terrorist group behind the deadly bombings in Algeria last week .\tJJ NNS VBP VBG CD NNS IN NN IN NNS TO DT NNP JJ JJ NN IN DT JJ NNS IN NNP JJ NN .\nOfficials say the five are part of a group of eight detained in Paris and the northwestern region of Rouen Tuesday .\tNNS VBP DT CD VBP NN IN DT NN IN CD VBN IN NNP CC DT JJ NN IN NNP NNP .\nThree of the group were released after questioning .\tCD IN DT NN VBD VBN IN VBG .\nAuthorities say the five are suspected of providing computers and telecommunications help to al-Qaida 's North African wing , which claimed responsibility for the car bomb attacks .\tNNS VBP DT CD VBP VBN IN VBG NNS CC NNS VBP TO NNP POS JJ JJ NN , WDT VBD NN IN DT NN NN NNS .\nThe officials said there was no indication of any direct links between those detained and the attacks and no sign that the five were planning any attacks in France .\tDT NNS VBD EX VBD DT NN IN DT JJ NNS IN DT VBN CC DT NNS CC DT NN IN DT CD VBD VBG DT NNS IN NNP .\nThe bombings outside United Nations offices and a government building in Algiers killed at least 37 people , including 17 U.N. employees .\tDT NNS IN NNP NNP NNS CC DT NN NN IN NNP VBD IN JJS CD NNS , VBG CD NNP NNS .\nThe United States has welcomed the release of 32 Ethiopian opposition members who had been detained in Ethiopia since post-election violence in 2005 .\tDT NNP NNP VBZ VBN DT NN IN CD JJ NN NNS WP VBD VBN VBN IN NNP IN JJ NN IN CD .\nThe State Department said the release of the opposition figures Saturday will promote political dialogue in the country .\tDT NNP NNP VBD DT NN IN DT NN NNS NNP MD VB JJ NN IN DT NN .\nIt urged the Ethiopian government to continue to encourage national reconciliation and political reform .\tPRP VBD DT JJ NN TO VB TO VB JJ NN CC JJ NN .\nThe opposition members were the second group of opposition figures released since July .\tDT NN NNS VBD DT JJ NN IN NN NNS VBN IN NNP .\nAnother 38 were released last month after receiving life sentences .\tDT CD VBD VBN JJ NN IN VBG NN NNS .\nNone of the 32 freed on Saturday had been charged in court with any crimes .\tNN IN DT CD VBN IN NNP VBD VBN VBN IN NN IN DT NNS .\nAll the opposition members had been rounded up after protests over the 2005 elections turned violent .\tPDT DT NN NNS VBD VBN VBN RP IN NNS IN DT CD NNS VBD JJ .\nEthiopian security forces killed at least 193 people while stopping the protests .\tJJ NN NNS VBN IN JJS CD NNS IN VBG DT NNS .\nThe opposition made its largest gains ever in the 2005 elections .\tDT NN VBD PRP$ JJS NNS RB IN DT CD NNS .\nOpposition groups claimed the elections were rigged to keep Prime Minister Meles Zenawi in power .\tNN NNS VBD DT NNS VBD VBN TO VB NNP NNP NNP NNP IN NN .\nIran 's top nuclear negotiator is in India for talks with senior government officials .\tNNP POS JJ JJ NN VBZ IN NNP IN NNS IN JJ NN NNS .\nAli Larijani 's trip comes as the United States , European Union countries and the U.N. nuclear agency are pressing Iran to stop work on nuclear fuel that could also be used to make weapons .\tNNP NNP POS NN VBZ IN DT NNP NNPS , NNP NNP NNS CC DT NNP JJ NN VBP VBG NNP TO VB NN IN JJ NN WDT MD RB VB VBN TO VB NNS .\nIran insists it has the right to enrich uranium .\tNNP VBZ PRP VBZ DT NN TO VB NN .\nAsked about the dispute Wednesday , Mr. Larijani said it is important for Iran to continue cooperating with the International Atomic Energy Agency , but he said it is up to Iran to decide on the nuclear fuel question .\tVBN IN DT NN NNP , NNP NNP VBD PRP VBZ JJ IN NNP TO VB VBG IN DT NNP NNP NNP NNP , CC PRP VBD PRP VBZ RB TO NNP TO VB IN DT JJ NN NN .\nMr. Larijani said the focus of his trip to India was on strategic relations , and energy in particular .\tNNP NNP VBD DT NN IN PRP$ NN TO NNP VBD IN JJ NNS , CC NN IN JJ .\nIndia 's foreign minister will travel to Tehran Friday for talks expected to include a proposed gas pipeline between Iran and India .\tNNP POS JJ NN MD VB TO VB NNP IN NNS VBN TO VB DT JJ NN NN IN NNP CC NNP .\nA report by the European Union says Muslims across Europe are confronting a rise in discrimination and so-called ' Islamophobia ' .\tDT NN IN DT NNP NNP VBZ NNPS IN NNP VBP VBG DT NN IN NN CC JJ `` NNP `` .\nThe study , released by the European Monitoring Center on Racism and Xenophobia Monday , says manifestations of Islamophobia range from verbal threats to physical attacks on people and property .\tDT NN , VBN IN DT JJ NNP NNP IN NNP CC NNP NNP , VBZ NNS IN NNP NN IN JJ NNS TO JJ NNS IN NNS CC NN .\nThe report finds that European Muslims are disproportionally represented in areas with poor housing conditions .\tDT NN VBZ IN JJ NNS VBP RB VBN IN NNS IN JJ NN NNS .\nIt says their education levels are below average and their unemployment rates are higher than average .\tPRP VBZ PRP$ NN NNS VBP IN JJ CC PRP$ NN NNS VBP JJR IN NN .\nMuslims are also found to be overrepresented in low-paying jobs and those that require few qualifications .\tNNS VBP RB VBN TO VB VBN IN JJ NNS CC DT WDT VBP JJ NNS .\nThe study says the extent of discrimination and Islamophobic incidents against European Muslims remains underdocumented and underreported .\tDT NN VBZ DT NN IN NN CC JJ NNS IN JJ NNPS VBZ JJ CC JJ .\nMuslims constitute about 3.5 percent of the population of the 25-nation bloc .\tNNPS VBP IN CD NN IN DT NN IN DT JJ NN .\nThe International Atomic Energy Agency says Iran has produced a gas needed for uranium enrichment .\tDT NNP NNP NNP NNP VBZ NNP VBZ VBN DT NN VBN IN NN NN .\nA former U.N. weapons inspector says Iran has produced enough of this nuclear material to fuel an atomic weapon .\tDT JJ NNP NNS NN VBZ NNP VBZ VBN RB IN DT JJ NN TO VB DT JJ NN .\nThe agency 's findings are part of a confidential report obtained by news agencies Friday .\tDT NN POS NNS VBP NN IN DT JJ NN VBN IN NN NNS NNP .\nThe U.N. nuclear watchdog said Iran 's nuclear plant in Isfahan has processed about seven tons of uranium hexaflouride gas since resuming work in early August .\tDT NNP JJ NN VBD NNP POS JJ NN IN NNP VBZ VBN IN CD NNS IN NN NN NN IN VBG NN IN JJ NNP .\nThat gas can be turned into the key ingredient for a nuclear bomb .\tDT NN MD VB VBN IN DT JJ NN IN DT JJ NN .\nThe report said even after two years of U.N. investigation , Iran failed to answer important questions about its secret nuclear activity .\tDT NN VBD RB IN CD NNS IN NNP NN , NNP VBD TO VB JJ NNS IN PRP$ JJ JJ NN .\nIran says its nuclear program is a peaceful effort to generate electricity , but critics fear Tehran is secretly working on nuclear weapons .\tNNP VBZ PRP$ JJ NN VBZ DT JJ NN TO VB NN , CC NNS VBP NNP VBZ RB VBG IN JJ NNS .\nThe International Committee of the Red Cross says rebels from Western Sahara have freed their last Moroccan prisoners of war .\tDT NNP NNP IN DT NNP NNP VBZ NNS IN JJ NNP VBP VBN PRP$ JJ JJ NNS IN NN .\nRebels from the Polisario Front handed over the 404 soldiers Thursday in the southern Algerian town of Tindouf .\tNNS IN DT NNP NNP VBD IN DT CD NNS NNP IN DT JJ JJ NN IN NNP .\nThey had held many of the Moroccans for two decades .\tPRP VBD VBN NN IN DT NNS IN CD NNS .\nThe rebels said they hoped the release would help clear the way for a peace settlement for Western Sahara .\tDT NNS VBD PRP VBD DT NN MD VB VB DT NN IN DT NN NN IN JJ NNP .\nThey also urged Morocco to release any remaining rebel prisoners .\tPRP RB VBD NNP TO VB DT VBG NN NNS .\nThe Red Cross says Thursday 's release follows U.S. mediation .\tDT NNP NNP VBZ NNP POS NN VBZ NNP NN .\nA senior U.S. senator , Richard Lugar , arrived in Algeria Thursday to monitor the release .\tDT JJ NNP NN , NNP NNP , VBD IN NNP NNP TO VB DT NN .\nThe Polisario Front captured some 2,000 Moroccan troops in its 16-year war with Morocco over the desert territory .\tDT NNP NNP VBD DT CD JJ NNS IN PRP$ JJ NN IN NNP IN DT NN NN .\nThe conflict began when Spain pulled out of the territory in 1975 .\tDT NN VBD WRB NNP VBD IN IN DT NN IN CD .\nA cease-fire was reached in 1991 .\tDT NN VBD VBN IN CD .\nA newspaper report says the United States has been flying drones over Iran for almost a year , looking for evidence of nuclear weapons programs and weaknesses in air defenses .\tDT NN NN VBZ DT NNP NNPS VBZ VBN VBG NNS IN NNP IN RB DT NN , VBG IN NN IN JJ NNS NNS CC NNS IN NN NNS .\nIn Sunday 's editions , The Washington Post quotes three U.S. officials as saying the U.S. military has been launching the unmanned surveillance flights from Iraq .\tIN NNP POS NNS , DT NNP NNP VBZ CD NNP NNS IN VBG DT NNP NN VBZ VBN VBG DT JJ NN NNS IN NNP .\nThere has been no U.S. comment on the report .\tEX VBZ VBN DT NNP NN IN DT NN .\nAn Iranian spokesman Sunday again warned the United States not to attack its nuclear facilities .\tDT JJ NN NNP RB VBD DT NNP NNPS RB TO VB PRP$ JJ NNS .\nHe also rejected a European proposal aimed at restricting Tehran 's development of nuclear fuel .\tPRP RB VBD DT JJ NN VBN IN VBG NNP POS NN IN JJ NN .\nIran has said in the past it would stop plans to build a heavy water nuclear reactor , which can be used to make nuclear weapons-grade material as well as for nuclear energy .\tNNP VBZ VBN IN DT NN PRP MD VB NNS TO VB DT JJ NN JJ NN , WDT MD VB VBN TO VB JJ JJ NN RB RB IN IN JJ NN .\nBut Sunday in Tehran , a foreign ministry spokesman said Iran will go forward with the heavy water reactor and will not replace it under any circumstances .\tCC NNP IN NNP , DT JJ NN NN VBD NNP MD VB RB IN DT JJ NN NN CC MD RB VB PRP IN DT NNS .\nVietnamese officials say floods have killed at least 77 people in central Vietnam since late last month , and now a new typhoon is approaching .\tJJ NNS VBP NNS VBP VBN IN JJS CD NNS IN JJ NNP IN RB JJ NN , CC RB DT JJ NN VBZ VBG .\nTyphoon Peipah is working its way across the South China Sea and is expected to dump heavy rains on Vietnam 's central provinces as early as Friday .\tNNP NNP VBZ VBG PRP$ NN IN DT NNP NNP NNP CC VBZ VBN TO VB JJ NNS IN NNP POS JJ NNS RB RB IN NNP .\nSince late October , heavy rains have ravaged parts of central Vietnam , damaging rice crops and forcing schools to close .\tIN JJ NNP , JJ NNS VBP VBN NNS IN JJ NNP , JJ NN NNS CC VBG NNS TO VB .\nState media say at least one million people in the region are facing shortages of clean water and food .\tNNP NNS VBP IN JJS CD CD NNS IN DT NN VBP VBG NNS IN JJ NN CC NN .\nIn early October , Typhoon Lekima killed nearly 100 people in the same region .\tIN JJ NNP , NNP NNP VBD RB CD NNS IN DT JJ NN .\nPeipah passed over the northern tip of the Philippines on Monday , flooding towns and killing at least five people .\tNNP VBD IN DT JJ NN IN DT NNPS IN NNP , NN NNS CC VBG IN JJS CD NNS .\nFloods and storms kill hundreds of people each year in Vietnam .\tNNS CC NNS VBP NNS IN NNS DT NN IN NNP .\nCuban and Chinese military leaders have met in Havana to reaffirm ties between the two communist countries .\tJJ CC JJ NN NNS VBP VBN IN NNP TO VB NNS IN DT CD JJ NNS .\nIn a meeting Saturday at Cuba 's Armed Forces Ministry , the country 's military chief , Raul Castro , stressed the long-standing friendship between the two nations .\tIN DT NN NNP IN NNP POS NNP NNP NNP , DT NN POS JJ NN , NNP NNP , VBD DT JJ NN IN DT CD NNS .\nHe said China 's presence on the island will help strengthen relations between Beijing and Havana .\tPRP VBD NNP POS NN IN DT NN MD VB VB NNS IN NNP CC NNP .\nHis Chinese counterpart , General Liang Guanglie , said his visit will help strengthen what he called the ' historic ' ties between the government , armed forces and people of both countries .\tPRP$ JJ NN , NNP NNP NNP , VBD PRP$ NN MD VB VB WP PRP VBD DT `` JJ `` NNS IN DT NN , JJ NNS CC NNS IN DT NNS .\nFollowing the meeting , the high-level Chinese delegation toured a tank base on the outskirts of Havana , where members were given details on the structure , mission and history of the military facility .\tVBG DT NN , DT JJ JJ NN VBD DT NN NN IN DT NNS IN NNP , WRB NNS VBD VBN NNS IN DT NN , NN CC NN IN DT JJ NN .\nThe delegation leaves Cuba Sunday .\tDT NN VBZ NNP NNP .\nA pro-Kurdish news agency says Kurdish rebels have extended their unilateral ceasefire with Turkey for two more weeks .\tDT JJ NN NN VBZ NNP NNS VBP VBN PRP$ JJ NN IN NNP IN CD JJR NNS .\nTheir original 30-day truce expired on Tuesday .\tPRP$ JJ JJ NN VBD IN NNP .\nThe notice was published Wednesday by the Mesopotamia news agency , which frequently carries rebel statements .\tDT NN VBD VBN NNP IN DT NNP NN NN , WDT RB VBZ JJ NNS .\nThis ceasefire extension by the outlawed Kurdistan Workers Party , known as the PKK , appears timed to coincide with the October 3 start of Turkey 's membership talks with the European Union .\tDT JJ NN IN DT JJ NNP NNP NNP , VBN IN DT NNP , VBZ VBN TO VB IN DT NNP CD NN IN NNP POS NN NNS IN DT NNP NNP .\nThe Associated Press quotes rebels who urged the Turkish government to correctly assess the historic opportunity for peace .\tDT NNP NNP VBZ NNS WP VBD DT JJ NN TO RB VB DT JJ NN IN NN .\nTurkey has repeatedly said it will not enter into direct talks with the PKK .\tNNP VBZ RB VBN PRP MD RB VB IN JJ NNS IN DT NNP .\nIn announcing the ceasefire last month , the PKK said it would not conduct any operations beyond self-defense .\tIN VBG DT NN JJ NN , DT NNP VBD PRP MD RB VB DT NNS IN NN .\nBut Western news reports say rebels clashed twice last week with Turkish soldiers in southeastern Turkey .\tCC JJ NN NNS VBP NNS VBN RB JJ NN IN JJ NNS IN JJ NNP .\nFive soldiers were reported killed in the fighting .\tCD NNS VBD VBN VBN IN DT NN .\nTop Israeli and Palestinian security officials are meeting to work out a deal for Israel to hand over security control of several West Bank towns to the Palestinian Authority .\tNNP JJ CC JJ NN NNS VBP VBG TO VB RP DT NN IN NNP TO VB IN NN NN IN JJ NNP NNP NNS TO DT JJ NNP .\nIsraeli Defense Minister Shaul Mofaz and Palestinian Mohammed Dahlan began their talks hours after Palestinians say Israeli military gunfire killed a schoolgirl in the Gaza Strip .\tJJ NNP NNP NNP NNP CC JJ NNP NNP VBD PRP$ NNS NNS IN NNS VBP JJ JJ NN VBD DT NN IN DT NNP NNP .\nIsrael is probing the Monday incident , which triggered Palestinian mortar fire into an Israeli settlement near the school where the girl died .\tNNP VBZ VBG DT NNP NN , WDT VBD JJ NN NN IN DT JJ NN IN DT NN WRB DT NN VBD .\nNo Israeli casualties were reported .\tDT JJ NNS VBD VBN .\nA short time later , Hamas and other militant groups said they would stick to their pledge to stop attacks on Israelis if the Israeli army does not launch offensive operations .\tDT JJ NN RB , NNP CC JJ JJ NNS VBD PRP MD VB TO PRP$ NN TO VB NNS IN NNS IN DT JJ NN VBZ RB VB JJ NNS .\nMeanwhile , U.S. Secretary of State Condoleezza Rice met with Israeli diplomats in Washington Monday ahead of her trip to the Middle East later this week .\tRB , NNP NNP IN NNP NNP NNP VBD IN JJ NNS IN NNP NNP RB IN PRP$ NN TO DT NNP NNP RB DT NN .\nJapanese officials say the deaths of hundreds of chickens in eastern Japan earlier this year may have been caused by a fresh outbreak of bird flu .\tJJ NNS VBP DT NNS IN NNS IN NNS IN JJ NNP RBR DT NN MD VB VBN VBN IN DT JJ NN IN NN NN .\nAbout 430 chickens died between March and May at a poultry farm in Ibaraki prefecture , north of Tokyo .\tIN CD NNS VBD IN NNP CC NNP IN DT NN NN IN NNP NN , NN IN NNP .\nThe farm keeps 25,000 chickens .\tDT NN VBZ CD NNS .\nA government laboratory is conducting tests to confirm whether the deaths were caused by the virus .\tDT NN NN VBZ VBG NNS TO VB IN DT NNS VBD VBN IN DT NN .\nOfficials inspected the farm on Saturday , but found no abnormalities .\tNNS VBD DT NN IN NNP , CC VBD DT NNS .\nJapan suffered several outbreaks of bird flu last year .\tNNP VBD JJ NNS IN NN NN JJ NN .\nNo one in Japan has yet been infected by the H5N1 avian flu virus that has killed 38 Vietnamese , 12 Thais and four Cambodians since the latest epidemic began in 2003 .\tDT NN IN NNP VBZ RB VBN VBN IN DT NNP JJ NN NN WDT VBZ VBN CD NNS , CD NNS CC CD NNS IN DT JJS NN VBD IN CD .\nThe U.S. special envoy to Sudan , Andrew Natsios , has warned of what he calls a ' poisonous ' political atmosphere between Sudan 's government in the north and rebels in the south .\tDT NNP JJ NN TO NNP , NNP NNP , VBZ VBN IN WP PRP VBZ DT `` JJ `` JJ NN IN NNP POS NN IN DT NN CC NNS IN DT NN .\nNatsios Saturday said the U.S. is deeply concerned about the health of the Comprehensive Peace Agreement signed in 2005 .\tNNP NNP VBD DT NNP VBZ RB JJ IN DT NN IN DT NNP NNP NNP VBD IN CD .\nHe made the comments as he wrapped up a 10-day visit to Sudan .\tPRP VBD DT NNS IN PRP VBD RP DT JJ NN TO NNP .\nThat agreement ended the two decade-long civil war between the government in Khartoum and southern rebels .\tDT NN VBD DT CD JJ JJ NN IN DT NN IN NNP CC JJ NNS .\nBoth sides have been critical of each other over missed deadlines for implementing key parts of the accord .\tDT NNS VBP VBN JJ IN DT NN IN VBN NNS IN VBG JJ NNS IN DT NN .\nThe agreement makes both sides partners in resolving the conflict in Darfur .\tDT NN VBZ DT NNS NNS IN VBG DT NN IN NNP .\nBut Natsios said implementation has been made difficult , in part , because both parties are facing one another in elections slated for 2009 .\tCC NNP VBD NN VBZ VBN VBN JJ , IN NN , IN DT NNS VBP VBG CD DT IN NNS VBN IN CD .\nThe U.S. Army Corps of Engineers says it has finished pumping water out of New Orleans , after the southern city flooded as a result of hurricanes Katrina and Rita .\tDT NNP NNP NNP IN NNP VBZ PRP VBZ VBN VBG NN IN IN NNP NNP , IN DT JJ NN VBD IN DT NN IN NNS NNP CC NNP .\nA spokeswoman for the Corps made the announcement Tuesday after working for weeks to pump the water out at a rate of about 15 centimeters per day .\tDT NN IN DT NNP VBD DT NN NNP IN VBG IN NNS TO VB DT NN RP IN DT NN IN IN CD NNS IN NN .\nThe Corps of Engineers is responsible for New Orleans ' levees and flood walls .\tDT NNP IN NNPS VBZ JJ IN NNP NNP POS NNS CC NN NNS .\nMost of the city is below sea level , and some 80 percent of it flooded after Katrina when water overflowed some flood walls and broke through others .\tJJS IN DT NN VBZ IN NN NN , CC DT CD NN IN PRP VBD IN NNP WRB NN VBD DT NN NNS CC VBD IN NNS .\nSome neighborhoods were inundated a second time when Rita brought heavy rains last month .\tDT NNS VBD VBN DT JJ NN WRB NNP VBD JJ NNS JJ NN .\nThe Corps spokeswoman said the levees will be repaired to a pre-Katrina level of readiness by next June .\tDT NNP NN VBD DT NNS MD VB VBN TO DT JJ NN IN NN IN JJ NNP .\nCypriot President Tassos Papadopoulos has called on the United Nations to move from rhetoric to action when helping developing nations .\tJJ NNP NNP NNP VBZ VBN IN DT NNP NNPS TO VB IN NN TO NN WRB VBG VBG NNS .\nMr. Papadopoulos told the U.N. General Assembly Thursday that the gap between what he calls the haves and the have-nots is widening dramatically .\tNNP NNP VBD DT NNP NNP NNP NNP IN DT NN IN WP PRP VBZ DT NNS CC DT NNS VBZ VBG RB .\nHe said the world body must honor past commitments and work to achieve goals for debt relief , improving access to world markets , and fighting AIDS and other diseases .\tPRP VBD DT NN NN MD VB JJ NNS CC NN TO VB NNS IN NN NN , VBG NN TO NN NNS , CC VBG NNP CC JJ NNS .\nMr. Papadopoulos said detecting the seeds of conflict early and preventing them from blowing up into war should be the cornerstone of U.N. collective security efforts .\tNNP NNP VBD VBG DT NNS IN NN JJ CC VBG PRP IN VBG RP IN NN MD VB DT NN IN NNP JJ NN NNS .\nRussian President Vladimir Putin says his government will only support proposals on the future of Serbia 's Kosovo province if they are acceptable to both Serbia and ethnic Albanians living in the province .\tJJ NNP NNP NNP VBZ PRP$ NN MD RB VB NNS IN DT NN IN NNP POS NNP NN IN PRP VBP JJ TO DT NNP CC JJ NNS VBG IN DT NN .\nMr. Putin spoke Sunday , in the Black Sea resort of Sochi , after talks with German Chancellor Angela Merkel .\tNNP NNP VBD NNP , IN DT NNP NNP NN IN NNP , IN NNS IN JJ NNP NNP NNP .\nHis comments came as U.N. envoys prepare to give the U.N. Security Council recommendations on the future of the province .\tPRP$ NNS VBD IN NNP NNS VBP TO VB DT NNP NNP NNP NNS IN DT NN IN DT NN .\nEthnic Albanians , who comprise 90 percent of Kosovo 's population , are seeking independence - a push strongly opposed by Belgrade .\tNNP NNS , WP VBP CD NN IN NNP POS NN , VBP VBG NN IN DT NN RB VBN IN NNP .\nNegotiators are expected to present a compromise offering some form of provincial autonomy .\tNNS VBP VBN TO VB DT NN VBG DT NN IN JJ NN .\nAs a member of the Security Council , Russia - a historically close ally of Serbia - is likely to play a key role in Kosovo 's future , because it can use its Council veto to block any deal that does not satisfy Belgrade .\tIN DT NN IN DT NNP NNP , NNP IN DT RB JJ NN IN NNP : VBZ JJ TO VB DT JJ NN IN NNP POS NN , IN PRP MD VB PRP$ NNP NN TO VB DT NN WDT VBZ RB VB NNP .\nOfficials from the International Security Assistance Force say a NATO soldier was killed Saturday during fighting in southern Afghanistan .\tNNS IN DT NNP NNP NNP NNP VBP DT NNP NN VBD VBN NNP IN VBG IN JJ NNP .\nNATO officials say four others were wounded in the clash .\tNNP NNS VBP CD NNS VBD VBN IN DT NN .\nEarlier today , the U.S.-led coalition in Afghanistan said several al-Qaida and Taleban fighters were killed in a gunbattle also in the country 's south .\tRBR NN , DT JJ NN IN NNP VBD JJ NNP CC NNP NNS VBD VBN IN DT NN RB IN DT NN POS NN .\nOfficials say coalition and Afghan troops came under attack as they approached two compounds in Zabul province where militants were thought to live .\tNNS VBP NN CC JJ NNS VBD IN NN IN PRP VBD CD NNS IN NNP NN WRB NNS VBD VBN TO VB .\nThe military says several militant fighters were killed and five were detained in the battle .\tDT NN VBZ JJ JJ NNS VBD VBN CC CD VBD VBN IN DT NN .\nOfficials said a cache of weapons was discovered and destroyed .\tNNS VBD DT NN IN NNS VBD VBN CC VBN .\nElsewhere , a local official in Laghman province said a roadside bomb killed a policeman and wounded three others Friday evening .\tRB , DT JJ NN IN NNP NN VBD DT NN NN VBD DT NN CC VBD CD NNS NNP NN .\nViolence has increased in recent weeks in southern and eastern Afghanistan , where Taleban insurgents are particularly active .\tNN VBZ VBN IN JJ NNS IN JJ CC JJ NNP , WRB NNP NNS VBP RB JJ .\nKeith Richards says he once snorted his father 's ashes mixed with cocaine .\tNNP NNP VBZ PRP RB VBD PRP$ NN POS NNS JJ IN NN .\nSpeaking to the British music magazine ' NME , ' the 63-year-old Rolling Stones guitarist acknowledges ingesting his father 's cremated remains .\tVBG TO DT JJ NN NN `` NNP , `` DT JJ NNP NNP NN VBZ VBG PRP$ NN POS JJ NNS .\n' My dad would n't have cared , ' he said , ' it went down pretty well , and I 'm still alive . '\t`` PRP$ NN MD RB VB VBN , `` PRP VBD , `` PRP VBD RB RB RB , CC PRP VBP RB JJ . ``\nRichards ' father , Bert , died at age 84 in 2002 .\tNNP POS NN , NNP , VBD IN NN CD IN CD .\nThe famously hard-living Richards told NME that his survival was the result of luck , and he cautioned young musicians not to emulate him .\tDT RB JJ NNP VBD NNP IN PRP$ NN VBD DT NN IN NN , CC PRP VBD JJ NNS RB TO VB PRP .\n' I was number one on the ' who 's likely to die ' list for 10 years , ' he said .\t`` PRP VBD NN CD IN DT `` WP VBZ JJ TO VB `` NN IN CD NNS , `` PRP VBD .\n' I mean , I was really disappointed when I fell off the list . '\t`` PRP VBP , PRP VBD RB JJ WRB PRP VBD RP DT NN . ``\nThe Islamic militant group Hamas says it has formed its cabinet and will present the choices to Palestinian President Mahmoud Abbas on Sunday .\tDT NNP JJ NN NNP VBZ PRP VBZ VBN PRP$ NN CC MD VB DT NNS TO JJ NNP NNP NNP IN NNP .\nHamas , which won parliamentary elections in January , failed to get any other Palestinian faction to join the new government .\tNNP , WDT VBD JJ NNS IN NNP , VBD TO VB DT JJ JJ NN TO VB DT JJ NN .\nHamas had planned to meet with Mr. Abbas Saturday .\tNNP VBD VBN TO VB IN NNP NNP NNP .\nThere is no word on why the plans were changed .\tEX VBZ DT NN IN WRB DT NNS VBD VBN .\nMr. Abbas 's Fatah Party has refused to join a Hamas-led government , saying the militant group must first renounce violence and accept past peace accords with Israel .\tNNP NNP POS NNP NNP VBZ VBN TO VB DT JJ NN , VBG DT JJ NN MD RB VB NN CC VB JJ NN NNS IN NNP .\nMr. Abbas has to approve the cabinet , and his aides say he would accept the choices .\tNNP NNP VBZ TO VB DT NN , CC PRP$ NNS VBP PRP MD VB DT NNS .\nHamas has claimed dozens of suicide attacks against Israeli targets in recent years .\tNNP VBZ VBN NNS IN NN NNS IN JJ NNS IN JJ NNS .\nThe United States , Israel and Europe classify the group as a terrorist organization .\tDT NNP NNPS , NNP CC NNP VBP DT NN IN DT JJ NN .\nIraqi officials say the minister of industry escaped unharmed in a roadside bombing - but the blast killed three of his bodyguards .\tJJ NNS VBP DT NN IN NN VBD JJ IN DT NN VBG : CC DT NN VBD CD IN PRP$ NNS .\nThe minister 's convoy was hit as it traveled near the town of Balad , north of Baghdad .\tDT NN POS NN VBD VBN IN PRP VBD IN DT NN IN NNP , NN IN NNP .\nElsewhere , the U.S. military is releasing more than 400 Iraqi detainees including five women prisoners Thursday and Friday .\tRB , DT NNP NN VBZ VBG JJR IN CD JJ NNS VBG CD NNS NNS NNP CC NNP .\nA military statement says a review of their cases determined there was no reason to keep holding them .\tDT JJ NN VBZ DT NN IN PRP$ NNS VBN EX VBD DT NN TO VB VBG PRP .\nIraqi and U.S. officials have stressed the move has nothing to do with American journalist Jill Carroll , who was kidnapped earlier this month .\tJJ CC NNP NNS VBP VBN DT NN VBZ DT TO VB IN JJ NN NNP NNP , WP VBD VBN RBR DT NN .\nHer kidnappers threatened to kill her by last Friday unless all Iraqi women detainees were released .\tPRP$ NNS VBD TO VB PRP IN JJ NNP IN DT JJ NNS NNS VBD VBN .\nThe deadline passed with no word on her fate .\tDT NN VBD IN DT NN IN PRP$ NN .\nConcerns about swine flu have been hurting industries as diverse as airlines and pork production , and boosted demand for the dollar and the yen .\tNNS IN NN NN VBP VBN VBG NNS RB JJ IN NNS CC NN NN , CC VBD NN IN DT NN CC DT NN .\nAirlines that were already struggling with a recession that slashed demand must now cope with a sharp fall in travel to Mexico , a popular tourist destination .\tNNS WDT VBD RB VBG IN DT NN WDT VBD NN MD RB VB IN DT JJ NN IN NN TO NNP , DT JJ NN NN .\nFalling demand for jet fuel is putting downward pressure on oil prices .\tVBG NN IN NN NN VBZ VBG JJ NN IN NN NNS .\nAnd pork producers , and the farmers who grow grain to feed pigs , have also seen prices for their commodities drop sharply as some nations banned imports of pork from Mexico and some parts of the United States .\tCC NN NNS , CC DT NNS WP VBP NN TO VB NNS , VBP RB VBN NNS IN PRP$ NNS VBP RB IN DT NNS VBD NNS IN NN IN NNP CC DT NNS IN DT NNP NNPS .\nThe ban , and the falling prices came even though health experts have said repeatedly that properly cooked pork does not transmit the flu .\tDT NN , CC DT VBG NNS VBD RB IN NN NNS VBP VBN RB IN RB VBN NN VBZ RB VB DT NN .\nWorried traders also sold the Mexican peso and some other currencies , and bought U.S. dollars and Japanese yen for their perceived safety in a crisis .\tJJ NNS RB VBD DT JJ NN CC DT JJ NNS , CC VBD NNP NNS CC JJ NNS IN PRP$ VBN NN IN DT NN .\nIsrael 's highest court has upheld the government 's plan to withdraw from all of the Gaza Strip and four small West Bank settlements .\tNNP POS JJS NN VBZ VBN DT NN POS NN TO VB IN DT IN DT NNP NNP CC CD JJ NNP NNP NNS .\nAn 11-judge High Court panel ruled Thursday the pullout plan is legal and does not violate the human rights of Jewish settlers who opposed the move .\tDT JJ NNP NNP NN VBD NNP DT NN NN VBZ JJ CC VBZ RB VB DT JJ NNS IN JJ NNS WP VBD DT NN .\nIn a 10-Jan vote , the justices rejected 12 petitions challenging the withdrawal planned for August .\tIN DT JJ NN , DT NNS VBD CD NNS VBG DT NN VBN IN NNP .\nThe sole dissenting justice , Edmund Levy , said the plan should be canceled .\tDT JJ NN NN , NNP NNP , VBD DT NN MD VB VBN .\nHours before the ruling , Israeli Defense Minister Shaul Mofaz and Palestinian Authority Interior Minister Nasser Youssef agreed to closely coordinate the pullout to prevent militants from taking over vacated areas .\tNNS IN DT NN , JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBD TO RB VB DT NN TO VB NNS IN VBG RP VBN NNS .\nMeanwhile , Palestinian President Mahmoud Abbas is in the Gaza Strip for talks with militants to preserve a four-month Israeli-Palestinian ceasefire threatened by two days of violence that has killed five people .\tRB , JJ NNP NNP NNP VBZ IN DT NNP NNP IN NNS IN NNS TO VB DT JJ JJ NN VBN IN CD NNS IN NN WDT VBZ VBN CD NNS .\nThe European Union has welcomed the election of Turkish Cypriot Prime Minister Mehmet Ali Talat as the new leader of the Turkish community on Cyprus .\tDT NNP NNP VBZ VBN DT NN IN JJ JJ JJ NN NNP NNP NNP IN DT JJ NN IN DT JJ NN IN NNP .\nA European Commission statement expressed hope the results will create favorable conditions for resumption of United Nations-sponsored talks on reuniting Cyprus .\tDT JJ NNP NN VBD NN DT NNS MD VB JJ NNS IN NN IN NNP NNP NNS IN VBG NNP .\nEarlier , Mr. Talat called for renewed talks with the island 's Greek Community on Cyprus .\tRB , NNP NNP VBD IN JJ NNS IN DT NN POS JJ NNP IN NNP .\nHis comments followed his victory in Sunday 's presidential elections in Cyprus 's Turkish northern enclave .\tPRP$ NNS VBD PRP$ NN IN NNP POS JJ NNS IN NNP POS JJ JJ NN .\nThe Mediterranean Island has been divided into two communities since 1974 .\tDT NNP NNP VBZ VBN VBN IN CD NNS IN CD .\nTurkish Cypriots voted last year in favor of a United Nations reunification plan , but Greek Cypriots rejected it .\tJJ NNS VBD JJ NN IN NN IN DT NNP NNP NN NN , CC JJ NNS VBD PRP .\nMr. Talat will replace Rauf Denktash , who has led the Turkish Cypriot community for decades , but did not seek another term .\tNNP NNP MD VB NNP NNP , WP VBZ VBN DT JJ JJ NN IN NNS , CC VBD RB VB DT NN .\nChinese worker sews clothing at a garment factory in Beijing China is criticizing the European Union 's decision to investigate surging imports of Chinese textile products .\tJJ NN VBZ NN IN DT NN NN IN NNP NNP VBZ VBG DT NNP NNP POS NN TO VB JJ NNS IN JJ NN NNS .\nIn a statement on its web site , the Chinese Commerce Ministry says the EU move runs counter to the spirit of free trade , and could have a negative impact on bilateral relations .\tIN DT NN IN PRP$ NN NN , DT JJ NNP NNP VBZ DT NNP NN VBZ RB TO DT NN IN JJ NN , CC MD VB DT JJ NN IN JJ NNS .\nThe EU is looking at Chinese textiles flooding into European markets since a worldwide quota system expired January 1 .\tDT NNP VBZ VBG IN JJ NNS VBG IN JJ NNS IN DT JJ NN NN VBD NNP CD .\nThe EU says imports of some Chinese textile have risen as much as 500 percent since then .\tDT NNP VBZ NNS IN DT JJ NN VBP VBN RB RB IN CD NN IN RB .\nThe probe could lead the EU to impose limits those products .\tDT NN MD VB DT NNP TO VB NNS DT NNS .\nThe United States is also looking into the impact that increased Chinese textile imports is having on its textile producers .\tDT NNP NNPS VBZ RB VBG IN DT NN WDT VBD JJ NN NNS VBZ VBG IN PRP$ NN NNS .\nThe annual Smithsonian Kite Festival celebrated the art and history of Chinese kites at this year 's event .\tDT JJ NNP NNP NNP VBD DT NN CC NN IN JJ NNS IN DT NN POS NN .\nKites large and small ; kite fliers professional and amateur ; Washingtonians as well as visitors from around the world gathered around the Washington Monument to welcome the colorful designs .\tNNS JJ CC JJ ; NN NNS JJ CC JJ ; NNS RB RB IN NNS IN IN DT NN VBD IN DT NNP NN TO VB DT JJ NNS .\nFor producer Joseph Mok , Elaine Lu has more .\tIN NN NNP NNP , NNP NNP VBZ RBR .\nRomania says three Romanian journalists and their Iraqi guide , kidnapped nearly two months in Baghdad , have been freed .\tNNP VBZ CD JJ NNS CC PRP$ JJ NN , VBN RB CD NNS IN NNP , VBP VBN VBN .\nDetails were not immediately clear .\tNNS VBD RB RB JJ .\nBut a statement Sunday from the Romanian presidency said the reporters are safe and will soon return home .\tCC DT NN NNP IN DT JJ NN VBD DT NNS VBP JJ CC MD RB VB NN .\nThe reporters and driver were seized March 28 .\tDT NNS CC NN VBD VBN NNP CD .\nThe kidnappers threatened to kill them unless Romania withdrew its small military contingent from Iraq by April 27 .\tDT NNS VBD TO VB PRP IN NNP VBD PRP$ JJ JJ JJ IN NNP IN NNP CD .\nRomanian President Traian Basescu rejected the demand .\tJJ NNP NNP NNP VBD DT NN .\nMeanwhile , gunmen today killed the director-general of Iraq 's Trade Ministry , Ali Mousa Salman , as he was driving to work in Baghdad .\tRB , NNS NN VBD DT NN IN NNP POS NNP NNP , NNP NNP NNP , IN PRP VBD VBG IN NN IN NNP .\nHis driver also was killed\tPRP$ NN RB VBD VBN\nThe Lower House of Russia 's Parliament ( the State Duma ) has voted to give President Vladimir Putin the right to use a special armed forces unit in fighting terrorism abroad .\tDT NNP NNP IN NNP POS NNP LRB DT NN NNP RRB VBZ VBN TO VB NNP NNP NNP DT NN TO VB DT JJ JJ NNS NN IN VBG NN RB .\nTuesday , Mr. Putin sought authorization from the upper house ( the Federation Council ) for similar powers .\tNNP , NNP NNP VBD NN IN DT JJ NN LRB DT NNP NNP RRB IN JJ NNS .\nRussia 's Itar-Tass news agency quotes the State Duma Security Committee as saying Mr. Putin will have to notify the Federation Council in order to use the special forces unit .\tNNP POS JJ NN NN VBZ DT NNP NNP NNP NNP IN VBG NNP NNP MD VB TO VB DT NNP NNP IN NN TO VB DT JJ NNS NN .\nAccording to the bill , the special forces unit would be required to defend the human rights of Russian citizens .\tVBG TO DT NN , DT JJ NNS NN MD VB VBN TO VB DT JJ NNS IN JJ NNS .\nThe bill also authorizes the confiscation of funds , valuables and other property accumulated through terrorism .\tDT NN RB VBZ DT NN IN NNS , NNS CC JJ NN VBN IN NN .\nLast week , Mr. Putin ordered the special forces to hunt down and destroy those responsible for killing four employees of Russia 's embassy in Baghdad .\tJJ NN , NNP NNP VBD DT JJ NNS TO VB RP CC VB DT JJ IN VBG CD NNS IN NNP POS NN IN NNP .\nThey were killed several days after insurgents took them hostage .\tPRP VBD VBN JJ NNS IN NNS VBD PRP NN .\nBangladesh 's government is again deploying troops to stop fighting between ethnic groups in the Chittagong Hill Tracts .\tNNP POS NN VBZ RB VBG NNS TO VB VBG IN JJ NNS IN DT NNP NNP NNP .\nBangladeshi troops were sent to the town of Khagrachhari after 30 people were injured in Tuesday 's clashes involving Bengali Muslim settlers and Buddhist tribespeople .\tJJ NNS VBD VBN TO DT NN IN NNP IN CD NNS VBD VBN IN NNP POS NNS VBG NNP NNP NNS CC NN NN .\nOfficials say about 100 houses were set ablaze in the fighting .\tNNS VBP IN CD NNS VBD VBN NN IN DT NN .\nBangladeshi authorities have imposed a ban on public gatherings in Khagrachhari to restore order .\tJJ NNS VBP VBN DT NN IN JJ NNS IN NNP TO VB NN .\nThe violence erupted after tribal activists from the United People 's Democratic Front blocked roads to protest the killing of two tribal people in clashes with Bengali settlers on Saturday .\tDT NN VBD IN JJ NNS IN DT NNP NNP POS JJ NN VBD NNS TO VB DT NN IN CD JJ NNS IN NNS IN NNP NNS IN NNP .\nEarlier clashes in the neighboring town of Baghaichhari also resulted in around 100 homes being torched and prompted the government to deploy troops .\tRBR NNS IN DT JJ NN IN NNP RB VBD IN IN CD NNS VBG VBN CC VBD DT NN TO VB NNS .\nIraqi authorities say at least 17 people were killed and dozens wounded Monday in a string of car bombings in Baghdad .\tJJ NNS VBP IN JJS CD NNS VBD VBN CC NNS VBD NNP IN DT NN IN NN NNS IN NNP .\nOfficials said three parked cars exploded within minutes of each other in the predominantly Shi'ite neighborhood of Karradah .\tNNS VBD CD JJ NNS VBD IN NNS IN DT NN IN DT RB NNP NN IN NNP .\nAt least three policemen were killed .\tIN JJS CD NNS VBD VBN .\nA fourth bomb exploded later in central Baghdad .\tDT JJ NN VBD RB IN JJ NNP .\nThe bombings came as Iraqi officials prepare to host a meeting Tuesday between U.S. and Iranian officials to discuss the security situation in Iraq .\tDT NNS VBD IN JJ NNS VBP TO VB DT NN NNP IN NNP CC JJ NNS TO VB DT NN NN IN NNP .\nWashington has accused Iran of stirring up violence in Iraq by supplying weapons to Shi'ite militias - a charge Iran denies .\tNNP VBZ VBN NNP IN VBG RP NN IN NNP IN VBG NNS IN NNP NNS IN DT NN NNP VBZ .\nThe U.S. embassy in Baghdad said Ambassador Ryan Crocker will take part in the talks with his Iranian counterpart .\tDT NNP NN IN NNP VBD NNP NNP NNP MD VB NN IN DT NNS IN PRP$ JJ NN .\nThe United States and Iran held their first high-level talks in nearly 30 years in May .\tDT NNP NNPS CC NNP VBD PRP$ JJ JJ NNS IN RB CD NNS IN NNP .\nThe U.S. State Department said last week it is ready for more talks .\tDT NNP NNP NNP VBD JJ NN PRP VBZ JJ IN JJR NNS .\nIraqi interim Prime Minister Iyad Allawi says that some top Baath Party officials of Iraq 's deposed regime will go on trial next week .\tJJ JJ NNP NNP NNP NNP VBZ IN DT JJ NNP NNP NNS IN NNP POS VBN NN MD VB IN NN JJ NN .\nMr. Allawi made the announcement Tuesday .\tNNP NNP VBD DT NN NNP .\nHe did not specify which officials will appear in court , nor whether former Iraqi leader Saddam Hussein will be among them .\tPRP VBD RB VB WDT NNS MD VB IN NN , CC IN JJ JJ NN NNP NNP MD VB IN PRP .\nSpeaking to Iraq 's interim National Council , the Prime Minister said a top aide of wanted terrorist Abu Musab al-Zarqawi has been killed and that two others have been captured .\tVBG TO NNP POS JJ NNP NNP , DT NNP NNP VBD DT JJ NN IN JJ JJ NNP NNP NNP VBZ VBN VBN CC IN CD NNS VBP VBN VBN .\nMr. Allawi also said investigators have discovered a new mass grave that may contain about 500 bodies .\tNNP NNP RB VBD NNS VBP VBN DT JJ NN NN WDT MD VB IN CD NNS .\nHe said the grave was found in a city northeast of Baghdad .\tPRP VBD DT NN VBD VBN IN DT NN NN IN NNP .\nHe gave no other details about the gravesite .\tPRP VBD DT JJ NNS IN DT NN .\nRussia has extradited a Bosnian Serb war crimes suspect who was hiding in Siberia until authorities detained him last year .\tNNP VBZ VBN DT JJ JJ NN NNS NN WP VBD VBG IN NNP IN NNS VBD PRP JJ NN .\nThe Bosnian State Court said Dragan Zelenovic was handed over late Thursday .\tDT JJ NNP NNP VBD NNP NNP VBD VBN IN JJ NNP .\nHe is expected to appear before a judge later Friday .\tPRP VBZ VBN TO VB IN DT NN RB NNP .\nThe former policeman is wanted by the U.N. war crimes tribunal in The Hague for atrocities committed against Bosnian Muslims in the eastern Foca region during Bosnia-Herzegovina 's 1992 - 95 war .\tDT JJ NN VBZ VBN IN DT NNP NN NNS JJ IN DT NNP IN NNS VBN IN JJ NNS IN DT JJ NNP NN IN NNP POS CD IN CD NN .\nZelenovic had lived in Khanty-Mansiisk , some 2,000 kilometers east of Moscow , for several years under an assumed name and had worked in the construction industry .\tNNP VBD VBN IN NNP , DT CD NNS RB IN NNP , IN JJ NNS IN DT JJ NN CC VBD VBN IN DT NN NN .\nThe U.S. government says BP has agreed to pay a record fine of more than $ 50 million for failing to correct problems at a Texas oil refinery that exploded and killed 15 workers in 2005 .\tDT NNP NN VBZ NNP VBZ VBN TO VB DT NN NN IN JJR IN $ CD CD IN VBG TO VB NNS IN DT NNP NN NN WDT VBD CC VBD CD NNS IN CD .\nThe company is still contesting about $ 30 million in other fines in connection with the fiery blast that injured 170 people .\tDT NN VBZ RB VBG IN $ CD CD IN JJ NNS IN NN IN DT JJ NN WDT VBD CD NNS .\nU.S. regulators say they found hundreds of safety violations at the BP refinery when they inspected it in 2009 .\tNNP NNS VBP PRP VBD NNS IN NN NNS IN DT NNP NN WRB PRP VBD PRP IN CD .\nThey also say the company failed to make promised changes and repairs at the refinery near Houston , Texas .\tPRP RB VBP DT NN VBD TO VB JJ NNS CC NNS IN DT NN IN NNP , NNP .\nThe 2005 refinery explosion is separate from this year 's environmental disaster that grew out of an explosion and fire on a BP oil drilling platform in the Gulf of Mexico .\tDT CD NN NN VBZ JJ IN DT NN POS JJ NN WDT VBD IN IN DT NN CC NN IN DT NNP NN NN NN IN DT NNP IN NNP .\nPoland has pursued a policy of economic liberalization since 1990 and today stands out as a success story among transition economies .\tNNP VBZ VBN DT NN IN JJ NN IN CD CC NN VBZ RP IN DT NN NN IN NN NNS .\nIt is the only country in the European Union to maintain positive GDP growth through the 2008 - 2009 economic downturn .\tPRP VBZ DT JJ NN IN DT NNP NNP TO VB JJ NN NN IN DT CD IN CD JJ NN .\nGDP per capita is still much below the EU average , but is similar to that of the three Baltic states .\tNN IN NN VBZ RB RB IN DT NNP NN , CC VBZ JJ TO DT IN DT CD JJ NNS .\nSince 2004 , EU membership and access to EU structural funds have provided a major boost to the economy .\tIN CD , NNP NN CC NN TO NNP JJ NNS VBP VBN DT JJ NN TO DT NN .\nUnemployment fell rapidly to 6.4 % in October 2008 , but climbed back to 11.8 % for the year 2010 , exceeding the EU average by more than 2 % .\tNN VBD RB TO CD NN IN NNP CD , CC VBD RB TO CD NN IN DT NN CD , VBG DT NNP NN IN JJR IN CD NN .\nInflation reached a low of about 2.6 % in 2010 due to the global economic slowdown but has since climbed and is expected to remain around 3 % , and close to the upper limit of the National Bank of Poland 's target rate .\tNN VBD DT NN IN RB CD NN IN CD JJ TO DT JJ JJ NN CC VBZ IN VBN CC VBZ VBN TO VB IN CD NN , CC RB TO DT JJ NN IN DT NNP NNP IN NNP POS NN NN .\nPoland 's economic performance could improve over the longer term if the country addresses some of the remaining deficiencies in its road and rail infrastructure and its business environment .\tNNP POS JJ NN MD VB IN DT JJR NN IN DT NN VBZ DT IN DT VBG NNS IN PRP$ NN CC NN NN CC PRP$ NN NN .\nAn inefficient commercial court system , a rigid labor code , bureaucratic red tape , burdensome tax system , and persistent low-level corruption keep the private sector from performing up to its full potential .\tDT JJ JJ NN NN , DT JJ NN NN , JJ JJ NN , JJ NN NN , CC JJ JJ NN VBP DT JJ NN IN VBG RP TO PRP$ JJ NN .\nRising demands to fund health care , education , and the state pension system caused the public sector budget deficit to rise to 7.9 % of GDP in 2010 .\tVBG NNS TO VB NN NN , NN , CC DT NN NN NN VBD DT JJ NN NN NN TO VB TO CD NN IN NN IN CD .\nThe PO/PSL coalition government , which came to power in November 2007 , has planned to reduce the budget deficit in 2011 and has also announced its intention to enact business-friendly reforms , increase workforce participation , reduce public sector spending growth , lower taxes , and accelerate privatization .\tDT NNP NN NN , WDT VBD TO NN IN NNP CD , VBZ VBN TO VB DT NN NN IN CD CC VBZ RB VBN PRP$ NN TO VB JJ NNS , VB NN NN , VB JJ NN NN NN , JJR NNS , CC VB NN .\nThe government has moved slowly on most major reforms , but has sped up privatization .\tDT NN VBZ VBN RB IN JJS JJ NNS , CC VBZ VBN RP NN .\nHalf the population still depends on agriculture and livestock for a livelihood , even though many of the nomads and subsistence farmers were forced into the cities by recurrent droughts in the 1970s and 1980s .\tNNP DT NN RB VBZ IN NN CC NN IN DT NN , RB IN NN IN DT NNS CC NN NNS VBD VBN IN DT NNS IN JJ NNS IN DT NNS CC NNS .\nMauritania has extensive deposits of iron ore , which account for nearly 40 % of total exports .\tNNP VBZ JJ NNS IN NN NN , WDT VBP IN RB CD NN IN JJ NNS .\nThe nation 's coastal waters are among the richest fishing areas in the world but overexploitation by foreigners threatens this key source of revenue .\tDT NN POS JJ NNS VBP IN DT JJS NN NNS IN DT NN CC NN IN NNS VBZ DT JJ NN IN NN .\nThe country 's first deepwater port opened near Nouakchott in 1986 .\tDT NN POS JJ NN NN VBD IN NNP IN CD .\nBefore 2000 , drought and economic mismanagement resulted in a buildup of foreign debt .\tIN CD , NN CC JJ NN VBD IN DT NN IN JJ NN .\nIn February 2000 , Mauritania qualified for debt relief under the Heavily Indebted Poor Countries ( HIPC ) initiative and nearly all of its foreign debt has since been forgiven .\tIN NNP CD , NNP VBD IN NN NN IN DT NNP NNP NNP NNPS LRB NNP RRB NN CC RB DT IN PRP$ JJ NN VBZ IN VBN VBN .\nA new investment code approved in December 2001 improved the opportunities for direct foreign investment .\tDT JJ NN NN VBN IN NNP CD VBD DT NNS IN JJ JJ NN .\nMauritania and the IMF agreed to a three-year Poverty Reduction and Growth Facility ( PRGF ) arrangement in 2006 .\tNNP CC DT NNP VBD TO DT JJ NN NN CC NN NN LRB NNP RRB NN IN CD .\nMauritania made satisfactory progress , but the IMF , World Bank , and other international actors suspended assistance and investment in Mauritania after the August 2008 coup .\tNNP VBD JJ NN , CC DT NNP , NNP NNP , CC JJ JJ NNS VBN NN CC NN IN NNP IN DT NNP CD NN .\nSince the presidential election in July 2009 , donors have resumed assistance .\tIN DT JJ NN IN NNP CD , NNS VBP VBN NN .\nOil prospects , while initially promising , have largely failed to materialize , and the government has placed a priority on attracting private investment to spur economic growth .\tNNP NNS , IN RB JJ , VBP RB VBN TO VB , CC DT NN VBZ VBN DT NN IN VBG JJ NN TO VB JJ NN .\nThe Government also emphasizes reduction of poverty , improvement of health and education , and privatization of the economy .\tDT NN RB VBZ NN IN NN , NN IN NN CC NN , CC NN IN DT NN .\nOver the past 20 years the government has transformed New Zealand from an agrarian economy dependent on concessionary British market access to a more industrialized , free market economy that can compete globally .\tIN DT JJ CD NNS DT NN VBZ VBN NNP NNP IN DT JJ NN JJ IN JJ JJ NN NN TO DT RBR JJ , JJ NN NN WDT MD VB RB .\nThis dynamic growth has boosted real incomes - but left behind some at the bottom of the ladder - and broadened and deepened the technological capabilities of the industrial sector .\tDT JJ NN VBZ VBN JJ NNS : CC VBD IN DT IN DT NN IN DT NN : CC VBN CC VBN DT JJ NNS IN DT JJ NN .\nPer capita income rose for ten consecutive years until 2007 in purchasing power parity terms , but fell in 2008 - 9 .\tIN NN NN VBD IN JJ JJ NNS IN CD IN VBG NN NN NNS , CC VBD IN CD : CD .\nDebt-driven consumer spending drove robust growth in the first half of the decade , helping fuel a large balance of payments deficit that posed a challenge for economic managers .\tJJ NN NN VBD JJ NN IN DT JJ NN IN DT NN , VBG NN DT JJ NN IN NNS NN WDT VBD DT NN IN JJ NNS .\nInflationary pressures caused the central bank to raise its key rate steadily from January 2004 until it was among the highest in the OECD in 2007 - 8 ; international capital inflows attracted to the high rates further strengthened the currency and housing market , however , aggravating the current account deficit .\tJJ NNS VBD DT JJ NN TO VB PRP$ JJ NN RB IN NNP CD IN PRP VBD IN DT JJS IN DT NNP IN CD : CD ; JJ NN NNS VBN TO DT JJ NNS RB VBD DT NN CC NN NN , RB , VBG DT JJ NN NN .\nThe economy fell into recession before the start of the global financial crisis and contracted for five consecutive quarters in 2008 - 9 .\tDT NN VBD IN NN IN DT NN IN DT JJ JJ NN CC VBD IN CD JJ NNS IN CD : CD .\nIn line with global peers , the central bank cut interest rates aggressively and the government developed fiscal stimulus measures .\tIN NN IN JJ NNS , DT JJ NN NN NN NNS RB CC DT NN VBD JJ NN NNS .\nThe economy posted a 1.7 % decline in 2009 , but pulled out of recession late in the year , and achieved 2.1 % growth in 2010 .\tDT NN VBD DT CD NN NN IN CD , CC VBD IN IN NN RB IN DT NN , CC VBD CD NN NN IN CD .\nNevertheless , key trade sectors remain vulnerable to weak external demand .\tRB , JJ NN NNS VBP JJ TO JJ JJ NN .\nThe government plans to raise productivity growth and develop infrastructure , while reining in government spending .\tDT NN VBZ TO VB NN NN CC VB NN , IN VBG IN NN NN .\nIndependent from France in 1960 , Mauritania annexed the southern third of the former Spanish Sahara ( now Western Sahara ) in 1976 but relinquished it after three years of raids by the Polisario guerrilla front seeking independence for the territory .\tNNP IN NNP IN CD , NNP VBD DT JJ NN IN DT JJ JJ NNP LRB RB JJ NNP RRB IN CD CC VBD PRP IN CD NNS IN NNS IN DT NNP NN NN VBG NN IN DT NN .\nMaaouya Ould Sid Ahmed TAYA seized power in a coup in 1984 and ruled Mauritania with a heavy hand for more than two decades .\tNNP NNP NNP NNP NNP VBD NN IN DT NN IN CD CC VBD NNP IN DT JJ NN IN JJR IN CD NNS .\nA series of presidential elections that he held were widely seen as flawed .\tDT NN IN JJ NNS IN PRP VBD VBD RB VBN IN JJ .\nA bloodless coup in August 2005 deposed President TAYA and ushered in a military council that oversaw a transition to democratic rule .\tDT JJ NN IN NNP CD VBD NNP NNP CC VBD IN DT JJ NN WDT VBD DT NN TO JJ NN .\nIndependent candidate Sidi Ould Cheikh ABDALLAHI was inaugurated in April 2007 as Mauritania 's first freely and fairly elected president .\tJJ NN NNP NNP NNP NNP VBD VBN IN NNP CD IN NNP POS JJ RB CC RB VBN NN .\nHis term ended prematurely in August 2008 when a military junta led by General Mohamed Ould Abdel AZIZ deposed him and ushered in a military council government .\tPRP$ NN VBD RB IN NNP CD WRB DT JJ NN VBN IN NNP NNP NNP NNP NNP VBD PRP CC VBD IN DT JJ NN NN .\nAZIZ was subsequently elected president in July 2009 and sworn in the following month .\tNNP VBD RB VBN NN IN NNP CD CC VBN IN DT VBG NN .\nThe country continues to experience ethnic tensions among its black population ( Afro-Mauritanians ) and white and black Moor ( Arab-Berber ) communities , and is having to confront a growing terrorism threat by al-Qa'ida in the Islamic Maghreb ( AQIM ) .\tDT NN VBZ TO VB JJ NNS IN PRP$ JJ NN LRB NNPS RRB CC JJ CC JJ NNP LRB NNP RRB NNS , CC VBZ VBG TO VB DT VBG NN NN IN NNP IN DT NNP NNP LRB NNP RRB .\nA NUMBER of Flies were attracted to a jar of honey which had been overturned in a housekeeper 's room , and placing their feet in it , ate greedily .\tDT NN IN NNS VBD VBN TO DT NN IN NN WDT VBD VBN VBN IN DT NN POS NN , CC VBG PRP$ NNS IN PRP , VBD RB .\nTheir feet , however , became so smeared with the honey that they could not use their wings , nor release themselves , and were suffocated .\tPRP$ NNS , RB , VBD RB VBN IN DT NN IN PRP MD RB VB PRP$ NNS , CC VB PRP , CC VBD VBN .\nJust as they were expiring , they exclaimed , ' O foolish creatures that we are , for the sake of a little pleasure we have destroyed ourselves . '\tRB IN PRP VBD VBG , PRP VBD , `` UH JJ NNS IN PRP VBP , IN DT NN IN DT JJ NN PRP VBP VBN PRP . ``\nPleasure bought with pains , hurts .\tNN VBN IN NNS , VBZ .\nTHE MONKEY , it is said , has two young ones at each birth .\tDT NN , PRP VBZ VBN , VBZ CD JJ NNS IN DT NN .\nThe Mother fondles one and nurtures it with the greatest affection and care , but hates and neglects the other .\tDT NN VBZ CD CC VBZ PRP IN DT JJS NN CC NN , CC NNS CC VBZ DT JJ .\nIt happened once that the young one which was caressed and loved was smothered by the too great affection of the Mother , while the despised one was nurtured and reared in spite of the neglect to which it was exposed .\tPRP VBD RB IN DT JJ CD WDT VBD VBN CC VBN VBD VBN IN DT RB JJ NN IN DT NN , IN DT VBN CD VBD VBN CC VBN IN NN IN DT NN TO WDT PRP VBD VBN .\nThe best intentions will not always ensure success .\tDT JJS NNS MD RB RB VB NN .\nThere 's nothing I like better than the sound of a banjo , unless of course it 's the sound of a chicken caught in a vacuum cleaner .\tEX VBZ DT PRP VBP JJR IN DT NN IN DT NN , IN IN NN PRP VBZ DT NN IN DT NN VBN IN DT NN NN .\nPresident Bush is on his way to Canada for a two-day trip that will mark his first official visit to America 's northern neighbor .\tNNP NNP VBZ IN PRP$ NN TO NNP IN DT JJ NN WDT MD VB PRP$ JJ JJ NN TO NNP POS JJ NN .\nThe visit is widely seen as an effort to repair relations damaged by trade issues and Canada 's refusal to send troops to Iraq .\tDT NN VBZ RB VBN IN DT NN TO VB NNS VBN IN NN NNS CC NNP POS NN TO VB NNS TO NNP .\nTuesday , Mr. Bush will meet with Prime Minister Paul Martin in the Canadian capital , Ottawa .\tNNP , NNP NNP MD VB IN NNP NNP NNP NNP IN DT JJ NN , NNP .\nThe White House says the two leaders will likely discuss at least one of the main trade disputes - U.S. restrictions on the import of Canadian beef .\tDT NNP NNP VBZ DT CD NNS MD RB VB IN JJS CD IN DT JJ NN NNS IN NNP NNS IN DT NN IN JJ NN .\nAnti-Bush protesters are expected to rally in both Ottawa and the coastal city of Halifax , which the president will visit on Wednesday .\tJJ NNS VBP VBN TO VB IN DT NNP CC DT JJ NN IN NNP , WDT DT NN MD VB IN NNP .\nMr. Bush is going to Halifax to thank people who housed air travelers diverted during the September 11 , 2001 , terrorist attacks .\tNNP NNP VBZ VBG TO VB TO VB NNS WP VBD NN NNS VBN IN DT NNP CD , CD , JJ NNS .\nThe Israeli military says its forces have killed two Palestinian militants in the northern Gaza Strip .\tDT JJ NN VBZ PRP$ NNS VBP VBN CD JJ NNS IN DT JJ NNP NNP .\nThe military said Thursday that Israeli aircraft and tanks fired at the militants near a border fence .\tDT NN VBD NNP IN JJ NN CC NNS VBD IN DT NNS IN DT NN NN .\nIt said Israeli soldiers later recovered the bodies of two armed men in the area .\tPRP VBD JJ NNS RB VBD DT NNS IN CD JJ NNS IN DT NN .\nThe military identified the men as members of the Islamic Jihad organization .\tDT JJ VBN DT NNS IN NNS IN DT NNP NNP NN .\nNo Palestinian militant groups have commented on the incident .\tDT JJ JJ NNS VBP VBN IN DT NN .\nIraqi insurgents have released two French journalists taken hostage last August .\tJJ NNS VBP VBN CD JJ NNS VBN NN JJ NNP .\nIn Paris , French Prime Minister Jean-Pierre Raffarin announced the release to parliament Tuesday , a short while after the al-Jazeera television network first reported it .\tIN NNP , JJ NNP NNP NNP NNP VBD DT NN TO NN NNP , DT JJ NN IN DT JJ NN NN RB VBD PRP .\nThe journalists , Christian Chesnot and Georges Malbrunot , were kidnapped in August while heading south from Baghdad on the road to Najaf .\tDT NNS , NNP NNP CC NNP NNP , VBD VBN IN NNP IN VBG RB IN NNP IN DT NN TO NNP .\nAn insurgent group calling itself the Islamic Army of Iraq originally threatened to kill the two unless France lifted a ban on Islamic headscarves in public schools .\tDT JJ NN VBG PRP DT NNP NNP IN NNP RB VBD TO VB DT CD IN NNP VBD DT NN IN JJ NNS IN JJ NNS .\nBut earlier this week , French Foreign Minister Michel Barnier said he believed the two reporters were still alive and in good health .\tCC RBR DT NN , JJ NNP NNP NNP NNP VBD PRP VBD DT CD NNS VBD RB JJ CC IN JJ NN .\nThe two reporters were kidnapped August 19 by an insurgent group calling itself the Islamic Army of Iraq .\tDT CD NNS VBD VBN NNP CD IN DT JJ NN VBG PRP DT NNP NNP IN NNP .\nInsurgents originally threatened to kill the hostages unless France lifted a ban on Islamic headscarves in public schools .\tNNS RB VBD TO VB DT NNS IN NNP VBD DT NN IN JJ NNS IN JJ NNS .\nThe U.S. military says it has filed charges against two U.S. soldiers in the killing of an Iraqi civilian last February .\tDT NNP NN VBZ PRP VBZ VBN NNS IN CD NNP NNS IN DT NN IN DT JJ JJ JJ NNP .\nThe military said Sunday Specialist Nathan B. Lynn was charged with voluntary manslaughter for allegedly shooting an unarmed man February 15 .\tDT NN VBD NNP NN NNP NNP NNP VBD VBN IN JJ NN IN RB VBG DT JJ NN NNP CD .\nThe military says Lynn and Sergeant Milton Ortiz were charged with obstruction of justice for allegedly conspiring with another soldier who has been accused of placing an AK-47 near the body of the mortally wounded man .\tDT JJ VBZ NNP CC NNP NNP NNP VBD VBN IN NN IN NN IN RB VBG IN DT NN WP VBZ VBN VBN IN VBG DT NNP IN DT NN IN DT RB VBN NN .\nOrtiz has also been charged with assault in a separate incident in March .\tNNP VBZ RB VBN VBN IN NN IN DT JJ NN IN NNP .\nThe U.S. military has come under scrutiny concerning a number of incidents of abuse of Iraqis since the U.S.-led invasion in March 2003 .\tDT NNP NN VBZ VBN IN NN VBG DT NN IN NNS IN NN IN NNS IN DT JJ NN IN NNP CD .\nA U.S. court has sentenced a former CIA contractor to more than eight years in prison for assaulting an Afghan prisoner who later died .\tDT NNP NN VBZ VBN DT JJ NNP NN TO JJR IN CD NNS IN NN IN VBG DT JJ NN WP RB VBD .\nThe court in North Carolina sentenced David Passaro Tuesday to eight years and four months in jail for the assault of Afghan detainee Abdul Wali in 2003 .\tDT NN IN NNP NNP VBD NNP NNP NNP TO CD NNS CC CD NNS IN NN IN DT NN IN JJ NN NNP NNP IN CD .\nProsecutors accused Passaro of beating the detainee during an interrogation at a U.S. military base in Afghanistan .\tNNS VBD NNP IN VBG DT NN IN DT NN IN DT NNP JJ NN IN NNP .\nWali died of his injuries two days after the incident .\tNNP VBD IN PRP$ NNS CD NNS IN DT NN .\nU.S. officials said Wali was a suspect in frequent rocket attacks on the base .\tNNP NNS VBD NNP VBD DT NN IN JJ NN NNS IN DT NN .\nPassaro is the first U.S. civilian to be charged with abusing a detainee during the U.S. wars in Iraq and Afghanistan .\tNNP VBZ DT JJ NNP JJ TO VB VBN IN VBG DT NN IN DT NNP NNS IN NNP CC NNP .\nBritain has requested the extradition of a man arrested in Pakistan in the alleged plot to blow up U.S.-bound airliners over the Atlantic .\tNNP VBZ VBN DT NN IN DT NN VBN IN NNP IN DT JJ NN TO VB RP JJ NNS IN DT NNP .\nA Pakistani Foreign Ministry spokeswoman says Monday authorities are considering the request for extradition of Rashid Rauf .\tDT JJ NNP NNP NN VBZ NNP NNS VBP VBG DT NN IN NN IN NNP NNP .\nShe said he was being investigated for possible links to the al-Qaida terrorist network .\tPRP VBD PRP VBD VBG VBN IN JJ NNS TO DT NNP JJ NN .\nBritish authorities have identified Rauf , a British citizen of Pakistani descent , as a key suspect in the bombing plot .\tJJ NNS VBP VBN NNP , DT JJ NN IN JJ NN , IN DT JJ NN IN DT VBG NN .\nBritish authorities arrested more than two dozen suspects earlier this month in connection with the plot , which prosecutors said was in an advanced stage of planning .\tJJ NNS VBN JJR IN CD NN NNS RBR DT NN IN NN IN DT NN , WDT NNS VBD VBD IN DT JJ NN IN NN .\nAuthorities said plotters sought to bomb as many as 10 airliners .\tNNS VBD NNS VBD TO VB RB JJ IN CD NNS .\nLast week , British prosecutors said they had seized bomb-making materials , suicide notes and martyrdom videos in the probe .\tJJ NN , JJ NNS VBD PRP VBD VBN JJ NNS , NN NNS CC NN NNS IN DT NN .\nAuthorities also referred to data from 400 computers and 20 cell phones .\tNNS RB VBD TO NNS IN CD NNS CC CD NN NNS .\nA U.S. military court has sentenced an Army sergeant to death for murdering two of his comrades and wounding 14 others in a grenade and rifle attack two years ago in Kuwait .\tDT NNP JJ NN VBZ VBN DT NNP NN TO NN IN VBG CD IN PRP$ NNS CC VBG CD NNS IN DT NN CC NN NN CD NNS RB IN NNP .\nThe 15-member military jury in Fort Bragg , in the U.S. state of North Carolina ruled Thursday Sergeant Hasan Akbar , a member of the Army 's 101st Airborne Division , should be executed for ambushing the troops as they slept in tents at the start of the Iraq war .\tDT JJ JJ NN IN NNP NNP , IN DT NNP NN IN NNP NNP VBD NNP NNP NNP NNP , DT NN IN DT NNP POS CD NNP NNP , MD VB VBN IN VBG DT NNS IN PRP VBD IN NNS IN DT NN IN DT NNP NN .\nHis death sentence will be automatically appealed .\tPRP$ NN NN MD VB RB VBN .\nIf Akbar is put to death , it would be by lethal injection .\tIN NNP VBZ VBN TO NN , PRP MD VB IN JJ NN .\nHis military lawyers claimed that constant ridicule over his being a black Muslim caused him to snap , triggering the attack .\tPRP$ JJ NNS VBD IN JJ NN IN PRP$ VBG DT JJ NN VBD PRP TO VB , VBG DT NN .\nThe United Nations says Iran has refused to allow nuclear inspectors to revisit a suspect military site .\tDT NNP NNP VBZ NNP VBZ VBN TO VB JJ NNS TO VB DT JJ JJ NN .\nIn a report to the International Atomic Energy Agency Friday in Vienna , inspectors say Iran recently refused to grant them access to its Parchin military base , where Washington says Tehran is simulating atomic weapons tests .\tIN DT NN TO DT NNP NNP NNP NNP NNP IN NNP , NNS VBP NNP RB VBD TO VB PRP NN TO PRP$ NNP JJ NN , WRB NNP VBZ NNP VBZ VBG JJ NNS NNS .\nDeputy Director General for Safeguards Pierre Goldschmidt said Iranian officials claimed the previous visit in January had fulfilled inspectors ' demands .\tNNP NNP NNP IN NNP NNP NNP VBD JJ NNS VBD DT JJ NN IN NNP VBD VBN NNS POS NNS .\nHe said the country also had delayed reporting an extensive tunnel system under construction beneath a uranium conversion plant in the central city of Isfahan .\tPRP VBD DT NN RB VBD VBN VBG DT JJ NN NN IN NN IN DT NN NN NN IN DT JJ NN IN NNP .\nMr. Goldschmidt also said Iran continues to build a heavy water reactor which can produce plutonium , despite requests to cease construction .\tNNP NNP RB VBD NNP VBZ TO VB DT JJ NN NN WDT MD VB NN , IN NNS TO VB NN .\nIran 's representative at the IAEA meeting said Tehran intends to keep producing nuclear fuel for peaceful purposes .\tNNP POS NN IN DT NNP NN VBD NNP VBZ TO VB VBG JJ NN IN JJ NNS .\nAfghan officials say a NATO airstrike has killed 13 Taleban militants after the insurgents attacked a government building near the Pakistan border .\tJJ NNS VBP DT NNP NN VBZ VBN CD NNP NNS IN DT NNS VBD DT NN NN IN DT NNP NN .\nAuthorities said Saturday the militants attacked the district government headquarters in Alishar in southeastern Khost province late Friday .\tNNS VBD NNP DT NNS VBD DT NN NN NN IN NNP IN JJ NNP NN JJ NNP .\nA gun battle broke out with Afghan police , who called for NATO air support .\tDT NN NN VBD RP IN JJ NNS , WP VBD IN NNP NN NN .\nFive policemen were wounded .\tCD NNS VBD VBN .\nKhost Governor Arsala Jamal says the Taleban militants were killed as they retreated .\tNNP NNP NNP NNP VBZ DT NNP NNS VBD VBN IN PRP VBD .\nOn Friday , the governor of southern Ghazni province , Mirajuddin Patan told VOA that 100 Afghan troops drove the Taleban from Giro District a day after the militants had taken control of the area .\tIN NNP , DT NN IN JJ NNP NN , NNP NNP VBD NNP IN CD JJ NNS VBD DT NNP IN NNP NNP DT NN IN DT NNS VBD VBN NN IN DT NN .\nOver the past year , a resurgent Taleban movement carried out the highest number of suicide bombings and other attacks in Afghanistan since U.S.-led forces ousted the Taleban government in November 2001 .\tIN DT JJ NN , DT JJ NNP NN VBD IN DT JJS NN IN NN NNS CC JJ NNS IN NNP IN JJ NNS VBD DT NNP NN IN NNP CD .\nA group of climate researchers says there is evidence that global warming is causing the Antarctic ice cap to melt more quickly than it did 10 years ago .\tDT NN IN NN NNS VBZ EX VBZ NN IN JJ NN VBZ VBG DT JJ NN NN TO VB RBR RB IN PRP VBD CD NNS RB .\nThe scientists said Monday they used satellite data to monitor the Antarctic coastline .\tDT NNS VBD NNP PRP VBD NN NNS TO VB DT JJ NN .\nThey found the ice sheet on the Earth 's southern pole lost 59 percent more ice in 2006 than it did in 1996 .\tPRP VBD DT NN NN IN DT NNP POS JJ NN VBD CD NN JJR NN IN CD IN PRP VBD IN CD .\nThe researchers say western antarctica lost 132 billion tons of ice in 2006 , enough to raise worldwide sea levels by 0.5 millimeter .\tDT NNS VBP JJ NNP VBD CD CD NNS IN NN IN CD , RB TO VB JJ NN NNS IN CD NN .\nThe team 's leader , Eric Rignot of NASA 's Jet Propulsion Laboratory , said warmer temperatures appear to be accelerating the movement of coastal Antarctic glaciers into the sea .\tDT NN POS NN , NNP NNP IN NNP POS NNP NNP NNP , VBD NN NNS VBP TO VB VBG DT NN IN JJ NNP NNS IN DT NN .\nThe researchers say their findings may cause scientists to revise their predictions about rising sea levels around the world .\tDT NNS VBP PRP$ NNS MD VB NNS TO VB PRP$ NNS IN VBG NN NNS IN DT NN .\nPolice in Corpus Christi , Texas , have cleared Vice President Dick Cheney of any wrongdoing in the shooting of a fellow hunter last Saturday .\tNNS IN NNP NNP , NNP , VBP VBN NNP NNP NNP NNP IN DT NN IN DT NN IN DT NN NN JJ NNP .\nThe sheriff of Kenedy County , Ramon Salinas said Thursday an investigation had determined that Cheney shot Texas lawyer Harry Whittington by accident .\tDT NN IN NNP NNP , NNP NNP VBD NNP DT NN VBD VBN IN NNP VBD NNP NN NNP NNP IN NN .\nThe sheriff said no legal action was necessary , and the case was closed .\tDT NN VBD DT JJ NN VBD JJ , CC DT NN VBD VBN .\nCheney said Wednesday he accepted full responsibility for accidentally shooting Whittington , but defended his decision not to disclose the incident for nearly 24 hours .\tNNP VBD NNP PRP VBD JJ NN IN RB VBG NNP , CC VBD PRP$ NN RB TO VB DT NN IN RB CD NNS .\nThe vice president said he wanted to wait to be sure that the information released was accurate .\tDT NN NN VBD PRP VBD TO VB TO VB JJ IN DT NN VBN VBD JJ .\nPresident Bush said he is satisfied with the way Cheney handled the aftermath of a hunting accident .\tNNP NNP VBD PRP VBZ VBN IN DT NN NNP VBD DT NN IN DT NN NN .\nMr. Bush said Thursday he thought his vice president gave a ' very strong ' and ' powerful explanation ' of events .\tNNP NNP VBD NNP PRP VBD PRP$ NN NN VBD DT `` RB JJ `` CC `` JJ NN `` IN NNS .\nThe U.S. military says it has released more than 11,000 Iraqis from military detention centers this year .\tDT NNP NN VBZ PRP VBZ VBN JJR IN CD NNS IN JJ NN NNS DT NN .\nIn a statement issued Saturday coalition forces said the prisoners who were once considered a security threat , have completed their detainment and can go on to lead productive lives .\tIN DT NN VBN NNP NN NNS VBD DT NNS WP VBD RB VBN DT NN NN , VBP VBN PRP$ NN CC MD VB IN TO VB JJ NNS .\nAmerican military spokesman Major Neal Fisher says less than one percent of those released have been detained again .\tJJ JJ NN NNP NNP NNP VBZ JJR IN CD NN IN DT VBN VBP VBN VBN RB .\nHe also said at the current rate , the U.S. military expects to reach its goal of having released more than 12,000 detainees by mid-September .\tPRP RB VBD IN DT JJ NN , DT NNP NN VBZ TO VB PRP$ NN IN VBG VBN JJR IN CD NNS IN NNP .\nIndia says it would consider granting autonomy to the disputed region of Kashmir to help make peace with Pakistan , but added it will not redraw its borders .\tNNP VBZ PRP MD VB VBG NN TO DT JJ NN IN NNP TO VB VB NN IN NNP , CC VBD PRP MD RB VB PRP$ NNS .\nIndia 's Foreign Minister Natwar Singh said at a news conference Thursday , that as far as regional autonomy is concerned , ' the sky is the limit . '\tNNP POS NNP NNP NNP NNP VBD IN DT NN NN NNP , IN RB RB IN JJ NN VBZ VBN , `` DT NN VBZ DT NN . ``\nMr. Singh also said a solution based on autonomy in Kashmir would require ' a great deal of hard work , goodwill and trust ' between the two sides and would not happen overnight .\tNNP NNP RB VBD DT NN VBN IN NN IN NNP MD VB `` DT JJ NN IN JJ NN , NN CC NN `` IN DT CD NNS CC MD RB VB RB .\nThe Indian minister said he presented this option to Pakistani Prime Minister Shaukat Aziz , who ended a visit to New Delhi on Wednesday .\tDT JJ NN VBD PRP VBD DT NN TO JJ NNP NNP NNP NNP , WP VBD DT NN TO NNP NNP IN NNP .\nIndian Prime Minister Manmohan Singh has also said India would never agree to redraw its borders to resolve the dispute over Kashmir .\tJJ NNP NNP NNP NNP VBZ RB VBN NNP MD RB VB TO VB PRP$ NNS TO VB DT NN IN NNP .\nBut Pakistan insists it can not accept the military Line of Control in the region as an international border .\tCC NNP VBZ PRP MD RB VB DT JJ NN IN NN IN DT NN IN DT JJ NN .\nThe U.S. military in Iraq has charged a former commander of a U.S. prison in Baghdad with several counts of wrongdoing , including unauthorized possession of classified information .\tDT NNP NN IN NNP VBZ VBN DT JJ NN IN DT NNP NN IN NNP IN JJ NNS IN NN , VBG JJ NN IN JJ NN .\nThe military announced the charges against Lieutenant-Colonel William Steele in a statement issued Thursday .\tDT JJ VBD DT NNS IN NNP NNP NNP IN DT NN VBN NNP .\nOne charge is of aiding the enemy by providing a unmonitored cell phone to detainees .\tCD NN VBZ IN VBG DT NN IN VBG DT JJ NN NN TO NNS .\nSteele is also accused of wrongfully providing special privileges to and maintaining an inappropriate relationship with an interpreter .\tNNP VBZ RB VBN IN RB VBG JJ NNS TO CC VBG DT JJ NN IN DT NN .\nEarlier , a military spokeswoman Lt. Col. Josslyn Aberle said Steele was taken into custody a month ago , and is being held at a detention facility in Kuwait awaiting a hearing to determine whether he should face court-martial .\tRB , DT JJ NN NNP NNP NNP NNP VBD NNP VBD VBN IN NN DT NN RB , CC VBZ VBG VBN IN DT NN NN IN NNP VBG DT NN TO VB IN PRP MD VB JJ .\nSteele was commander of Camp Cropper prison , which holds about 5,300 detainees near Baghdad international airport .\tNNP VBD NN IN NNP NNP NN , WDT VBZ IN CD NNS IN NNP JJ NN .\nFormer Iraqi dictator Saddam Hussein , who was executed in December , spent time in that facility during his three-year incarceration .\tJJ JJ NN NNP NNP , WP VBD VBN IN NNP , VBD NN IN DT NN IN PRP$ JJ NN .\nIsraeli forces have killed three Palestinians in a pair of operations in the Gaza Strip .\tJJ NNS VBP VBN CD NNS IN DT NN IN NNS IN DT NNP NNP .\nMilitary officials said troops shot and killed a man walking near the Israeli border in central Gaza Saturday .\tNNP NNS VBD NNS VBD CC VBD DT NN NN IN DT JJ NN IN JJ NNP NNP .\nEarlier , Israeli tanks backed by helicopters raided the northern Gaza town of Beit Hanoun .\tRB , JJ NNS VBN IN NNS VBD DT JJ NNP NN IN NNP NNP .\nIsraeli officials said two men were killed in a shoot-out between troops and Palestinian gunmen .\tJJ NNS VBD CD NNS VBD VBN IN DT NN IN NNS CC JJ NNS .\nIsraeli forces have been operating in Gaza since militants abducted an Israeli soldier in June .\tJJ NNS VBP VBN VBG IN NNP IN NNS VBD DT JJ NN IN NNP .\nAn Egyptian newspaper , Al-Ahram , quoted President Hosni Mubarak as saying negotiations were under way to free the soldier .\tDT JJ NN , NNP , VBN NNP NNP NNP IN VBG NNS VBD IN NN TO VB DT NN .\nMeanwhile , tens of thousands of Palestinian teachers and other government employees went on strike in the West Bank and Gaza Strip to demand unpaid salaries .\tRB , NNS IN NNS IN JJ NNS CC JJ NN NNS VBD IN NN IN DT NNP NNP CC NNP NNP TO VB JJ NNS .\nFatah gunmen surrounded schools to enforce the strike , while Hamas militiamen tried to keep schools open .\tNNP NNS VBN NNS TO VB DT NN , IN NNP NNS VBD TO VB NNS JJ .\nPreparations for the inauguration of Barack Obama as the next president have been going on for weeks in Washington .\tNNS IN DT NN IN NNP NNP IN DT JJ NN VBP VBN VBG IN IN NNS IN NNP .\nThe viewing stands at the Capitol have been constructed , the parade route is being readied , and people in the city are in a mood of anticipation .\tDT NN VBZ IN DT NNP VBP VBN VBN , DT NN NN VBZ VBG VBN , CC NNS IN DT NN VBP IN DT NN IN NN .\nHere 's a look at those preparations and what people are talking about now that Inauguration Day , January 20 , is near .\tRB VBZ DT NN IN DT NNS CC WP NNS VBP VBG IN RB DT NNP NNP , NNP CD , VBZ JJ .\nFor more , click on video link .\tIN RBR , NN IN NN NN .\nThe Afghan government has rejected any conditions for peace talks with the Taleban , after the Islamist militants demanded the withdrawal of all foreign troops from the country .\tDT JJ NN VBZ VBN DT NNS IN NN NNS IN DT NNP , IN DT NNP NNS VBD DT NN IN DT JJ NNS IN DT NN .\nPresidential spokesman Homayun Hamidzada said Tuesday the Afghan government is not open to any negotiations with preconditions .\tNNP NN NNP NNP VBD NNP DT JJ NN VBZ RB JJ TO DT NNS IN NNS .\nHe added that the only promise the government will make is for the safety of rebel negotiators .\tPRP VBD IN DT JJ NN DT NN MD VB VBZ IN DT NN IN JJ NNS .\nA Taleban spokesman told Reuters News agency that the group is sticking to its demands .\tDT NNP NN VBD NNP NNP NN IN DT NN VBZ VBG TO PRP$ NNS .\nLast week , the Taleban expressed a willingness for negotiations only if all of the 50,000 foreign troops in Afghanistan leave the country .\tJJ NN , DT NNP VBD DT NN IN NNS RB IN DT IN DT CD JJ NNS IN NNP VBP DT NN .\nThe Taleban was ousted from power in Afghanistan by a U.S.-led offensive in late 2001 .\tDT NNP VBD VBN IN NN IN NNP IN DT JJ NN IN JJ CD .\nMilitant attacks in southern and eastern Afghanistan have escalated over the past 19 months , marking the bloodiest period since the beginning of the war .\tNN NNS IN JJ CC JJ NNP VBP VBN IN DT JJ CD NNS , VBG DT JJS NN IN DT NN IN DT NN .\nHong Kong 's interim leader says he will ask China to interpret the section of the territory 's Basic Law that covers the term length for its chief executive .\tNNP NNP POS JJ NN VBZ PRP MD VB NNP TO VB DT NN IN DT NN POS JJ NN WDT VBZ DT NN NN IN PRP$ JJ NN .\nDonald Tsang says he is making the request to avoid legal challenges that could derail the July 10 election to pick a successor to Tung Chee-hwa , who resigned last month with two years remaining on his five-year term .\tNNP NNP VBZ PRP VBZ VBG DT NN TO VB JJ NNS WDT MD VB DT NNP CD NN TO VB DT NN TO NNP NNP , WP VBD JJ NN IN CD NNS VBG IN PRP$ JJ NN .\nThe Hong Kong government says Mr. Tung 's successor will only serve out those two years , but pro-democracy activists say that violates the city 's Basic Law , which says each elected chief executive will serve a full five-year term .\tDT NNP NNP NN VBZ NNP NNP POS NN MD RB VB RP DT CD NNS , CC JJ NNS VBP IN VBZ DT NN POS NNP NNP , WDT VBZ DT VBN NN NN MD VB DT JJ JJ NN .\nThe opposition fears that Beijing 's involvement could compromise the territory 's autonomy .\tDT NN VBZ IN NNP POS NN MD VB DT NN POS NN .\nMr. Tsang is expected to win the July vote .\tNNP NNP VBZ VBN TO VB DT NNP NN .\nIraq 's ambassador to the United Nations is calling for the lifting of all remaining sanctions imposed on the ousted regime of Saddam Hussein .\tNNP POS NN TO DT NNP NNPS VBZ VBG IN DT NN IN DT VBG NNS VBN IN DT JJ NN IN NNP NNP .\nAmbassador Samir Sumaidaie made the appeal Tuesday - two days after his country voted in landmark elections .\tNNP NNP NNP VBD DT NN NNP IN CD NNS IN PRP$ NN VBD IN JJ NNS .\nHe said all sanctions placed on the previous regime are inappropriate now since Iraq has clearly shown the world that it is a new country and wants to be at peace with its neighbors .\tPRP VBD DT NNS VBN IN DT JJ NN VBP JJ RB IN NNP VBZ RB VBN DT NN IN PRP VBZ DT JJ NN CC VBZ TO VB IN NN IN PRP$ NNS .\nThe Iraqi diplomat said it is also time to begin phasing out the use of oil proceeds to compensate victims of Iraq 's 1990 invasion of Kuwait , and lift the arms embargo imposed shortly after that invasion .\tDT JJ NN VBD PRP VBZ RB NN TO VB VBG IN DT NN IN NN NNS TO VB NNS IN NNP POS CD NN IN NNP , CC VB DT NNS NN VBN RB IN DT NN .\nMeanwhile , more than 200 workers at Iraq 's election headquarters in Baghdad are compiling results from Sunday 's historic vote .\tRB , JJR IN CD NNS IN NNP POS NN NN IN NNP VBP VBG NNS IN NNP POS JJ NN .\nA U.S.-funded radio station says its correspondent in Iraq has been killed .\tDT JJ NN NN VBZ PRP$ NN IN NNP VBZ VBN VBN .\nRadio Free Iraq said Friday Khamail Khalaf was found dead in Baghdad Thursday .\tNNP NNP NNP VBD NNP NNP NNP VBD VBN JJ IN NNP NNP .\nShe had been missing for two days amid fears she had been kidnapped .\tPRP VBD VBN VBG IN CD NNS IN NNS PRP VBD VBN VBN .\nMore than 150 members of the news media have been killed in Iraq since the war began in 2003 .\tJJR IN CD NNS IN DT NN NNS VBP VBN VBN IN NNP IN DT NN VBD IN CD .\nU.S. military officials in Iraq have reduced the death toll from a suicide bombing Friday from 27 to 12 .\tNNP JJ NNS IN NNP VBP VBN DT NN NN IN DT NN VBG NNP IN CD TO CD .\nPolice said a suicide bomber driving a truck with chlorine gas detonated his vehicle in Ramadi , the capital of volatile al-Anbar province .\tNNP VBD DT NN NN VBG DT NN IN JJ NN VBD PRP$ NN IN NNP , DT NN IN JJ JJ NN .\nA military statement says 43 people were wounded .\tDT JJ NN VBZ CD NNS VBD VBN .\nThe military also says the Iraqi army called in air strikes Saturday against armed militia men in Diwaniyah , south of Baghdad , one day after U.S. and Iraqi forces detained 27 suspects and killed three insurgents in the city .\tDT NN RB VBZ DT JJ NN VBD IN NN NNS NNP IN JJ NN NNS IN NNP , NN IN NNP , CD NN IN NNP CC JJ NNS VBD CD NNS CC VBD CD NNS IN DT NN .\nBritish Prime Minister Tony Blair says his country and the United States will send a team to Iraq to reassess the security situation there .\tJJ NNP NNP NNP NNP VBZ PRP$ NN CC DT NNP NNPS MD VB DT NN TO NNP TO VB DT NN NN RB .\nIn a televised interview Sunday , Mr. Blair said the team will focus only on security .\tIN DT JJ NN NNP , NNP NNP VBD DT NN MD VB RB IN NN .\nHe added that it was crucial to strengthen Iraqi security forces so that they can take over .\tPRP VBD IN PRP VBD JJ TO VB JJ NN NNS RB IN PRP MD VB RP .\nMeanwhile , Britain 's Telegraph newspaper reports London will announce this week that it is sending 650 additional troops to Iraq to boost security ahead of the January 30 elections .\tRB , NNP POS NNP NN VBZ NNP MD VB DT NN IN PRP VBZ VBG CD JJ NNS TO NNP TO VB NN RB IN DT NNP CD NNS .\nSpeaking on the television network ABC , U.S. Secretary of State Colin Powell expressed concern about the future of Iraq following the elections , but said the vote is the necessary next step .\tVBG IN DT NN NN NNP , NNP NNP IN NNP NNP NNP VBD NN IN DT NN IN NNP VBG DT NNS , CC VBD DT NN VBZ DT JJ JJ NN .\nUnited Nations Secretary-General Kofi Annan calls Iraqi voters courageous , and says the world must support them .\tNNP NNP NNP NNP NNP VBZ JJ NNS JJ , CC VBZ DT NN MD VB PRP .\nSpeaking in Nigeria , Mr. Annan described Sunday 's election as the first step in a democratic process in Iraq .\tVBG IN NNP , NNP NNP VBD NNP POS NN IN DT JJ NN IN DT JJ NN IN NNP .\nHe said Iraqis know they are voting for their country 's future and for the day ' when they will take their destiny in their own hands . '\tPRP VBD NNS VBP PRP VBP VBG IN PRP$ NN POS NN CC IN DT NN `` WRB PRP MD VB PRP$ NN IN PRP$ JJ NNS . ``\nThe secretary-general also appealed for an end to election-day violence .\tDT NN RB VBD IN DT NN TO JJ NN .\nU.S. Secretary of State Condoleezza Rice has criticized Syria for creating instability in Lebanon , where a second politician was killed Tuesday .\tNNP NNP IN NNP NNP NNP VBZ VBN NNP IN VBG NN IN NNP , WRB DT JJ NN VBD VBN NNP .\nMs. Rice said she does not know who is responsible for the attack that killed George Hawi in Beirut , but she called on Syria to end destabilizing activities there .\tNNP NNP VBD PRP VBZ RB VB WP VBZ JJ IN DT NN WDT VBD NNP NNP IN NNP , CC PRP VBD IN NNP TO VB JJ NNS RB .\nMs. Rice spoke to reporters aboard a plane to Brussels , where she is to attend a conference aimed at gathering international support for Iraq 's new government .\tNNP NNP VBD TO NNS IN DT NN TO NNP , WRB PRP VBZ TO VB DT NN VBN IN VBG JJ NN IN NNP POS JJ NN .\nThe conference will also include Iraqi leaders , officials from more than 80 nations and United Nations Secretary-General Kofi Annan .\tDT NN MD RB VB JJ NNS , NNS IN JJR IN CD NNS CC NNP NNP NNP NNP NNP .\nMonday , Ms. Rice visited Saudi Arabia for the last stop of a Middle East trip , where she renewed a call for democratic reform .\tNNP , NNP NNP VBD NNP NNP IN DT JJ NN IN DT NNP NNP NN , WRB PRP VBD DT NN IN JJ NN .\nPhilippine officials say heavy rain in mountainous provinces in the north of the country have triggered landslides , killing more than 90 people .\tJJ NNS VBP JJ NN IN JJ NNS IN DT NN IN DT NN VBP VBN NNS , VBG JJR IN CD NNS .\nThe northern Philippines has been pounded by heavy rain since Typhoon Parma hit the country on Saturday .\tDT JJ NNP VBZ VBN VBN IN JJ NN IN NNP NNP VBD DT NN IN NNP .\nForecasters say Parma was still lingering off the northeastern coast of the Philippines , as it began moving across the South China Sea toward Vietnam .\tNNS VBP NNP VBD RB VBG RP DT JJ NN IN DT NNPS , IN PRP VBD VBG IN DT NNP NNP NNP IN NNP .\nParma is the second major storm to hit the country in two weeks .\tNNP VBZ DT JJ JJ NN TO VB DT NN IN CD NNS .\nOfficials say the landslides have pushed the overall death toll from two weeks of devastating storms on the islands past 450 .\tNNS VBP DT NNS VBP VBN DT JJ NN NN IN CD NNS IN JJ NNS IN DT NNS IN CD .\nMeanwhile in Japan , a separate powerful typhoon tore through the main island Thursday , peeling roofs off houses , and cutting off electricity to hundreds of thousands .\tRB IN NNP , DT JJ JJ NN NN IN DT JJ NN NNP , VBG NNS IN NNS , CC VBG RP NN TO NNS IN NNS .\nThe storm has killed at least four people .\tDT NN VBZ VBN IN JJS CD NNS .\nElephants in tsunami-devastated Thailand have joined the country 's massive recovery work , one week after another group of elephants staged a dramatic rescue operation .\tNNS IN JJ NNP VBP VBN DT NN POS JJ NN NN , CD NN IN DT NN IN NNS VBD DT JJ NN NN .\nThai officials say six jumbo elephants are now helping to tow heavy objects and pull away debris that heavy machinery can not reach .\tJJ NNS VBP CD JJ NNS VBP RB VBG TO VB JJ NNS CC VB RB NN IN JJ NN MD RB VB .\nElephants also played a crucial role before the tsunami hit .\tNNS RB VBD DT JJ NN IN DT NN NN .\nReuters news agency says eight elephants used for tourist rides at the Khao Lak beach resort became agitated last Sunday , more than an hour before the tsunami came ashore .\tNNP NN NN VBZ CD NNS VBN IN NN NNS IN DT NNP NNP NN NN VBD VBN JJ NNP , JJR IN DT NN IN DT NN VBD RB .\nThe beasts began crying , or ' trumpeting , ' and finally broke free of their chains , heading for a nearby hill .\tDT NNS VBD VBG , CC `` VBG , `` CC RB VBD JJ IN PRP$ NNS , VBG IN DT JJ NN .\nTheir trainers followed .\tPRP$ NNS VBD .\nAs the elephants fled , they lifted tourists onto their backs with their trunks , taking them to safety .\tIN DT NNS VBD , PRP VBD NNS IN PRP$ NNS IN PRP$ NNS , VBG PRP TO NN .\nScientists note animals often appear to sense the coming of natural calamities .\tNNS VBP NNS RB VBP TO VB DT VBG IN JJ NNS .\nSupporters of Pakistan 's suspended chief justice have taken to the streets in a show of solidarity .\tNNS IN NNP POS JJ NN NN VBP VBN TO DT NNS IN DT NN IN NN .\nSupporters of Judge Iftikhar Mohammed Chaudhry chanted slogans Saturday demanding the resignation of Pakistani President Pervez Musharraf .\tNNS IN NNP NNP NNP NNP VBD NNS NNP VBG DT NN IN JJ NNP NNP NNP .\nThey rallied as the chief justice traveled from Islamabad to the eastern city of Faisalabad .\tPRP VBD IN DT NN NN VBD IN NNP TO DT JJ NN IN NNP .\nGeneral Musharraf fired Chaudhry in March , accusing him of abuse of power .\tNNP NNP VBD NNP IN NNP , VBG PRP IN NN IN NN .\nThe judge denies the charges and has challenged the president 's decision in the Supreme Court .\tDT NN VBZ DT NNS CC VBZ VBN DT NN POS NN IN DT NNP NNP .\nHis dismissal has fueled the biggest opposition to President Musharraf since the general seized power in a bloodless coup in 1999 .\tPRP$ NN VBZ VBN DT JJS NN TO NNP NNP IN DT NN VBD NN IN DT JJ NN IN CD .\nTens of thousands of people have rallied in support of the judge as he traveled to various rallies across the country since he was fired .\tNNS IN NNS IN NNS VBP VBN IN NN IN DT NN IN PRP VBD TO JJ NNS IN DT NN IN PRP VBD VBN .\nLast minute holiday shoppers are taking advantage of massive discounts as retailers launch a last desperate attempt to generate revenue .\tJJ NN NN NNS VBP VBG NN IN JJ NNS IN NNS VB DT JJ JJ NN TO VB NN .\nWith holiday sales shaping up to be the weakest in years , retailers are scrambling to stay ahead of the struggling U.S. economy .\tIN NN NNS VBG RP TO VB DT JJS IN NNS , NNS VBP VBG TO VB RB IN DT VBG NNP NN .\nFormer Liberian Finance Minister Ellen Johnson-Sirleaf has moved closer to becoming Africa 's first democratically-elected female president , taking a strong lead in Liberia 's presidential run-off .\tJJ JJ NNP NNP NNP NNP VBZ VBN RB TO VBG NNP POS JJ JJ NN NN , VBG DT JJ NN IN NNP POS JJ NN .\nWith nearly two-thirds of the ballots counted , Mrs. Johnson-Sirleaf leads with 56 percent of the votes .\tIN RB NNS IN DT NNS VBN , NNP NNP VBZ IN CD NN IN DT NNS .\nHer opponent , millionaire former soccer ( football ) star George Weah , has 44 percent .\tPRP$ NN , JJ JJ NN LRB NN RRB NN NNP NNP , VBZ CD NN .\nMr. Weah raised allegations of election fraud Wednesday , saying there were major irregularities during Tuesday 's run-off election .\tNNP NNP VBD NNS IN NN NN NNP , VBG EX VBD JJ NNS IN NNP POS JJ NN .\nElection officials said Mr. Weah has not submitted any evidence to the electoral commission to support his claims .\tNNP NNS VBD NNP NNP VBZ RB VBN DT NN TO DT JJ NN TO VB PRP$ NNS .\nThis was Liberia 's first election since 2003 , when Charles Taylor stepped down as president under international pressure , ending 14 years of almost non-stop civil war .\tDT VBD NNP POS JJ NN IN CD , WRB NNP NNP VBD RP IN NN IN JJ NN , VBG CD NNS IN RB JJ JJ NN .\nFormer U.S. President Jimmy Carter is resting comfortably after being hospitalized in the midwestern U.S. city of Cleveland , Ohio .\tJJ NNP NNP NNP NNP VBZ VBG RB IN VBG VBN IN DT JJ NNP NN IN NNP , NNP .\nA statement from the Carter Center in the southeastern city of Atlanta , Georgia , says the former president developed an upset stomach during a flight to Cleveland Tuesday .\tDT NN IN DT NNP NNP IN DT JJ NN IN NNP , NNP , VBZ DT JJ NN VBD DT JJ NN IN DT NN TO NNP NNP .\nA spokeswoman at Cleveland Hopkins International Airport says rescue crews met Mr. Carter 's plane at the airport and took him to the hospital .\tDT NN IN NNP NNP NNP NNP VBZ NN NNS VBD NNP NNP POS NN IN DT NN CC VBD PRP TO DT NN .\nThe former president was in Cleveland to sign his new book , White House Diary .\tDT JJ NN VBD IN NNP TO VB PRP$ JJ NN , NNP NNP NNP .\nThe Carter Center says he is expected to resume his book tour later this week .\tDT NNP NNP VBZ PRP VBZ VBN TO VB PRP$ NN NN RB DT NN .\nMr. Carter is 85-years-old and served as U.S. president from 1977 to 1981 .\tNNP NNP VBZ JJ CC VBD IN NNP NN IN CD TO CD .\nU.S. President Barack Obama said he plans to call Mr. Carter to check on his condition .\tNNP NNP NNP NNP VBD PRP VBZ TO VB NNP NNP TO VB IN PRP$ NN .\nA prominent human rights group has called on the United Nations and the Democratic Republic of Congo to disarm rebel Rwandan armed groups in eastern Congo .\tDT JJ JJ NNS NN VBZ VBN IN DT NNP NNPS CC DT JJ NNP IN NNP TO VB JJ JJ JJ NNS IN JJ NNP .\nIn a report Wednesday , the New York-based Human Rights Watch ( HRW ) also said that the safety of civilians must be ensured during the operations .\tIN DT NN NNP , DT NNP JJ NNP NNP NNP LRB NNP RRB RB VBD IN DT NN IN NNS MD VB VBN IN DT NNS .\nThe rights group said efforts to disarm the rebels , mostly ethnic Hutus , in early November failed after they refused to cooperate .\tDT NNS NN VBD NNS TO VB DT NNS , RB JJ NNP , IN JJ NNP VBD IN PRP VBD TO VB .\nThe rebels , generally called Ex-FAR ( members of the former Rwandan army ) and Interahamwe , are mostly responsible for the 1994 Rwandan genocide that killed about 8,00,000 people during a three-month period .\tDT NNS , RB VBN NN LRB NNS IN DT JJ JJ NN RRB CC NNP , VBP RB JJ IN DT CD JJ NN WDT VBD IN CD NNS IN DT JJ NN .\nHuman Rights Watch 's senior Africa advisor , Alison Des Forges , says disarming Rwandan rebel groups is crucial for regional stability .\tNNP NNP NNP POS JJ NNP NN , NNP NNP NNP , VBZ VBG JJ NN NNS VBZ JJ IN JJ NN .\nRwanda has threatened to go after the rebels if they are not disarmed .\tNNP VBZ VBN TO VB IN DT NNS IN PRP VBP RB VBN .\n' Undercover Brother ' may be good at karate , but his driving needs improvement .\t`` NNP NNP `` MD VB JJ IN NN , CC PRP$ NN VBZ NN .\nComedian Eddie Griffin crashed a Ferrari Enzo sportscar worth an estimated $ 1.5 million .\tNN NNP NNP VBD DT NNP NNP NN IN DT VBN $ CD CD .\nThe March 26 accident occurred at Irwindale Speedway in California , when the movie comic drove too fast around a curve .\tDT NNP CD NN VBD IN NNP NNP IN NNP , WRB DT NN NN VBD RB RB IN DT NN .\nHe was practicing for a charity race to promote his upcoming movie Redline .\tPRP VBD VBG IN DT NN NN TO VB PRP$ JJ NN NNP .\nEddie Griffin , whose film credits include Undercover Brother and two Deuce Bigalow movies , walked away unhurt from the crash .\tNNP NNP , WP$ NN NNS VBP NNP NNP CC CD NNP NNP NNS , VBD RB JJ IN DT NN .\nThe car belonged to Redline executive producer Daniel Sadek , whose exotic car collection is featured in the movie .\tDT NN VBD IN NNP JJ NN NNP NNP , WP$ JJ NN NN VBZ VBN IN DT NN .\nFerrari produced a total of 400 Enzos between 2002 and 2004 .\tNNP VBD DT NN IN CD NNPS IN CD CC CD .\nRussia 's natural gas monopoly Gazprom has warned Ukraine against siphoning off gas intended for Europe .\tNNP POS JJ NN NN NNP VBZ VBN NNP IN VBG RP NN VBD IN NNP .\nGazprom Deputy Chairman Alexander Medvedev said Sunday that Ukrainian officials had made threats to tap natural gas from a pipeline running through Ukrainian territory , if supplies intended for Ukraine are cut off .\tNNP NNP NNP NNP NNP VBD NNP IN JJ NNS VBD VBN NNS TO VB JJ NN IN DT NN VBG IN JJ NN , IN NNS VBN IN NNP VBP VBN RP .\nThe two sides have failed to resolve a dispute over Moscow 's demand that Ukraine pay more than quadruple the current price for gas imports from Russia .\tDT CD NNS VBP VBN TO VB DT NN IN NNP POS NN IN NNP VBP JJR IN VB DT JJ NN IN NN NNS IN NNP .\nGazprom threatened to halt gas deliveries to Ukraine on January first unless Kiev agrees to its new pricing structure .\tNNP VBD TO VB NN NNS TO VB IN NNP JJ IN NNP VBZ TO PRP$ JJ NN NN .\nGazprom held an exercise Friday simulating such a stoppage .\tNNP VBD DT NN NNP VBG PDT DT NN .\nUkraine says such a sharp increase would harm its economy .\tNNP VBZ PDT DT JJ NN MD VB PRP$ NN .\nBoth sides say they may turn to an international arbitration court for help .\tDT NNS VBP PRP MD VB TO DT JJ NN NN IN NN .\nThe Anheuser-Busch brewing company - bottler of Budweiser beer - will continue to sponsor the FIFA World Cup tournament through 2014 .\tDT NNP NN NN : NN IN NNP NN : MD VB TO VB DT NNP NNP NNP NN IN CD .\nAnheuser-Busch and the International Football Federation signed a contract extension agreement Thursday , meaning Budweiser also will have global sponsorship rights for the Confederations Cup tournament in 2009 and 2013 .\tNNP CC DT NNP NNP NNP VBD DT NN NN NN NNP , VBG NNP RB MD VB JJ NN NNS IN DT NNPS NNP NN IN CD CC CD .\nFIFA President Sepp Blatter said the agreement is testimony to the immense appeal of football .\tNNP NNP NNP NNP VBD DT NN VBZ NN TO DT JJ NN IN NN .\nA spokesman for Anheuser-Busch said the deal will allow the company to connect its brand with millions of adult beer drinkers and football fans .\tDT NN IN NNP VBD DT NN MD VB DT NN TO VB PRP$ NN IN NNS IN JJ NN NNS CC NN NNS .\nAnheuser-Busch , based in St. Louis , Missouri the United States , has the exclusive beer contract for this year 's World Cup in Germany .\tNNP , VBN IN NNP NNP , NNP DT NNP NNPS , VBZ DT JJ NN NN IN DT NN POS NNP NNP IN NNP .\nBy 2014 , the brewer will have sponsored eight World Cup tournaments .\tIN CD , DT NN MD VB VBN CD NNP NNP NNS .\nFormer Venezuelan President Rafael Caldera died early Thursday at the age of 93 .\tJJ JJ NNP NNP NNP VBD JJ NNP IN DT NN IN CD .\nHe had suffered from Parkinson 's disease for many years .\tPRP VBD VBN IN NNP POS NN IN JJ NNS .\nMr. Caldera served two terms as president - the first between 1969 and 1974 , and again from 1994 to 1999 .\tNNP NNP VBD CD NNS IN NN IN DT NN IN CD CC CD , CC RB IN CD TO CD .\nHe entered politics in the 1930s , and helped to found the Social-Christian Copei party in 1946 .\tPRP VBD NNS IN DT NNS , CC VBD TO VB DT JJ NNP NN IN CD .\nIn 1994 , he pardoned current President Hugo Chavez , who was in prison at the time for leading a coup two years earlier .\tIN CD , PRP VBD JJ NNP NNP NNP , WP VBD IN NN IN DT NN IN VBG DT NN CD NNS RBR .\nMr. Chavez succeeded Mr. Caldera as president in 1999 .\tNNP NNP VBD NNP NNP IN NN IN CD .\nMr. Caldera 's son said the funeral will take place Saturday and that the family ' will not accept any homage from the government of Hugo Chavez . '\tNNP NNP POS NN VBD DT NN MD VB NN NNP CC IN DT NN `` MD RB VB DT NN IN DT NN IN NNP NNP . ``\nChina says the next round of six-party talks on North Korean 's nuclear program will last for three days .\tNNP VBZ DT JJ NN IN JJ NNS IN NNP JJ POS JJ NN MD VB IN CD NNS .\nThe official news agency , Xinhua , says the talks will begin Wednesday at the Diaoyu State Guest House in Beijing and last through Friday .\tDT JJ NN NN , NNP , VBZ DT NNS MD VB NNP IN DT NNP NNP NNP NNP IN NNP CC JJ IN NNP .\nThis is the fifth round of talks involving China , the two Koreas , the United States , Russia and Japan .\tDT VBZ DT JJ NN IN NNS VBG NNP , DT CD NNP , DT NNP NNPS , NNP CC NNP .\nAll sides have agreed that North Korea would scrap its nuclear programs in exchange for energy assistance and other benefits .\tDT NNS VBP VBN IN NNP NNP MD VB PRP$ JJ NNS IN NN IN NN NN CC JJ NNS .\nHowever , sharp differences among the parties remain .\tRB , JJ NNS IN DT NNS VBP .\nAfter the previous round ended in September , Pyongyang said it will not disarm unless it is first given a civilian ( light-water ) nuclear reactor to generate electricity .\tIN DT JJ NN VBD IN NNP , NNP VBD PRP MD RB VB IN PRP VBZ RB VBN DT JJ LRB NN RRB JJ NN TO VB NN .\nU.S. officials said the demand is not acceptable .\tNNP NNS VBD DT NN VBZ RB JJ .\nA U.S. military investigation has concluded that a suicide bomber wearing an Iraqi uniform carried out the deadly attack in a dining tent at an American base in Mosul last December , killing 22 people .\tDT NNP JJ NN VBZ VBN IN DT NN NN VBG DT JJ NN VBD IN DT JJ NN IN DT NN NN IN DT JJ NN IN NNP JJ NNP , VBG CD NNS .\nMajor General David Rodriguez Friday said the bomber apparently entered the base at an unguarded point on its perimeter .\tNNP NNP NNP NNP NNP VBD DT NN RB VBD DT NN IN DT JJ NN IN PRP$ NN .\nHe said investigators did not know if the attacker was a member of the Iraqi security forces , or was wearing a stolen or counterfeit uniform .\tPRP VBD NNS VBD RB VB IN DT NN VBD DT NN IN DT JJ NN NNS , CC VBD VBG DT JJ CC JJ NN .\nGeneral Rodriguez said the bomber was believed to be a member of the Ansar al-Sunna terrorist group , which claimed responsibility for the December 21 attack - the deadliest on U.S. forces since the U.S.-led invasion in March , 2003 .\tNNP NNP VBD DT NN VBD VBN TO VB DT NN IN DT NNP NNP JJ NN , WDT VBD NN IN DT NNP CD NN IN DT JJS IN NNP NNS IN DT JJ NN IN NNP , CD .\nThe group has also claimed responsibility for several other large profile attacks , including this month 's roadside bombing south of Haditha that killed 14 U.S. Marines .\tDT NN VBZ RB VBN NN IN JJ JJ JJ NN NNS , VBG DT NN POS NN VBG NN IN NNP WDT VBD CD NNP NNPS .\nFormer Cuban president Fidel Castro has appeared at a special session of parliament for the first time since 2006 , when he ceded power to his younger brother , Raul .\tJJ JJ NN NNP NNP VBZ VBN IN DT JJ NN IN NN IN DT JJ NN IN CD , WRB PRP VBD NN TO PRP$ JJR NN , NNP .\nCheering legislators gave the elder Castro a standing ovation as he entered the legislative chamber in an event broadcast on Cuban television Saturday .\tVBG NNS VBD DT NN NNP DT NN NN IN PRP VBD DT JJ NN IN DT NN NN IN JJ NN NNP .\nThe 83-year-old former president was wearing an olive-green military style shirt and waved to the crowd .\tDT JJ JJ NN VBD VBG DT JJ JJ NN NN CC VBD TO DT NN .\nMr. Castro spoke about the international situation and how growing tensions between the United States and Iran could lead to nuclear war .\tNNP NNP VBD IN DT JJ NN CC WRB VBG NNS IN DT NNP NNPS CC NNP MD VB TO JJ NN .\nMr. Castro turns 84 later this month , and has recently increased his public appearances following a long period of seclusion , resulting from an illness suffered in 2006 .\tNNP NNP VBZ CD RB DT NN , CC VBZ RB VBN PRP$ JJ NNS VBG DT JJ NN IN NN , VBG IN DT NN VBD IN CD .\nFidel Castro underwent intestinal surgery that year and turned over power on a provisional basis to his brother , who formally assumed the presidency in February 2008 .\tNNP NNP VBD JJ NN IN NN CC VBD RP NN IN DT JJ NN TO PRP$ NN , WP RB VBD DT NN IN NNP CD .\nA top Israeli official says Prime Minister Ariel Sharon has approved the final placement of a barrier around Jerusalem that would encompass a controversial Jewish settlement on Palestinian-claimed land .\tDT JJ JJ NN VBZ NNP NNP NNP NNP VBZ VBN DT JJ NN IN DT NN IN NNP WDT MD VB DT JJ JJ NN IN JJ NN .\nDeputy Prime Minister Ehud Olmert told Israeli radio Mr. Sharon approved the plan late Sunday after meeting with top officials .\tNNP NNP NNP NNP NNP VBD JJ NN NNP NNP VBD DT NN JJ NNP IN VBG IN JJ NNS .\nThe enclosed Israeli area would include the largest Israeli settlement in the West Bank - Maaleh Adumim .\tDT VBN JJ NN MD VB DT JJS JJ NN IN DT NNP NNP IN NNP NNP .\nIsrael says the wall will help keep out militants .\tNNP VBZ DT NN MD VB VB RP NNS .\nPalestinians say Israel has used the barrier issue as an excuse to grab land .\tNNS VBP NNP VBZ VBN DT NN NN IN DT NN TO VB NN .\nThe approval comes as U.N. Secretary General Kofi Annan meets with Israeli and Palestinian officials to encourage peace talks between the two sides .\tDT NN VBZ IN NNP NNP NNP NNP NNP VBZ IN JJ CC JJ NNS TO VB NN NNS IN DT CD NNS .\nMeanwhile , Israeli and Palestinian security chiefs are preparing for more talks on the Israeli handover of five West Bank towns to Palestinian security control .\tRB , JJ CC JJ NN NNS VBP VBG IN JJR NNS IN DT JJ NN IN CD NNP NNP NNS TO JJ NN NN .\nIsrael 's Supreme Court has ruled that Palestinian residents of the West Bank and Gaza can sue Israel for damages caused by the Israeli military in non-combat operations .\tNNP POS NNP NNP VBZ VBN IN JJ NNS IN DT NNP NNP CC NNP MD VB NNP IN NNS VBN IN DT JJ NN IN JJ NNS .\nThe court nullified a law passed by the Israeli parliament last year that granted the state immunity from all Palestinian damage lawsuits against the Israeli military .\tDT NN VBD DT NN VBN IN DT JJ NN JJ NN WDT VBD DT NN NN IN DT JJ NN NNS IN DT JJ NN .\nIsrael 's government applied the law retroactively to the start of the current Palestinian uprising in 2000 .\tNNP POS NN VBD DT NN RB TO DT NN IN DT JJ JJ NN IN CD .\nSeveral human rights groups petitioned the Supreme Court about the law , arguing Israel is responsible for the well-being of Palestinians as an occupying power .\tJJ JJ NNS NNS VBD DT NNP NNP IN DT NN , VBG NNP VBZ JJ IN DT NN IN NNS IN DT JJ NN .\nThe court partially agreed with the petition , but ruled that Palestinians can not sue for damages caused by Israeli forces during combat operations .\tDT NN RB VBD IN DT NN , CC VBD IN NNS MD RB VB IN NNS VBN IN JJ NNS IN NN NNS .\nThe judges also ruled that citizens of an enemy state and members of terrorist groups are not eligible for any compensation from Israel .\tDT NNS RB VBD IN NNS IN DT NN NN CC NNS IN JJ NNS VBP RB JJ IN DT NN IN NNP .\nThe Nigerian government says five cabinet ministers have left their posts so that they can run for elected positions next year .\tDT JJ NN VBZ CD NN NNS VBP VBN PRP$ NNS RB IN PRP MD VB IN JJ NNS JJ NN .\nGovernment officials say the ministers of the interior , culture and tourism , commerce , sports and intergovernmental affairs have left their offices .\tNN NNS VBP DT NNS IN DT NN , NN CC NN , NN , NNS CC JJ NNS VBP VBN PRP$ NNS .\nPresident Olusegun Obasanjo has submitted a list to parliament to replace the ministers .\tNNP NNP NNP VBZ VBN DT NN TO NN TO VB DT NNS .\nThe resignations are the latest government shifts in the run-up to next year 's general elections .\tDT NNS VBP DT JJS NN NNS IN DT NN TO JJ NN POS JJ NNS .\nTwo days ago , Mr. Obasanjo replaced three top military chiefs and his national security adviser .\tCD NNS RB , NNP NNP VBD CD JJ JJ NNS CC PRP$ JJ NN NN .\nThe shuffle comes weeks after the defeat in parliament of a measure that would have allowed Mr. Obasanjo to run for a third term .\tDT NN VBZ NNS IN DT NN IN NN IN DT NN WDT MD VB VBN NNP NNP TO VB IN DT JJ NN .\nEuropean Union lawmakers have rejected a controversial budget deal reached at an EU summit last month and have called for further talks on the issue .\tNNP NNP NNS VBP VBN DT JJ NN NN VBN IN DT NNP NN JJ NN CC VBP VBN IN JJ NNS IN DT NN .\nAt a plenary session Wednesday in Strasbourg , France , the European Parliament voted overwhelmingly , 541 to 76 against the $ 1 trillion EU budget for 2007 - 2013 .\tIN DT JJ NN NNP IN NNP , NNP , DT NNP NNP VBD RB , CD TO CD IN DT $ CD CD NNP NN IN CD : CD .\nLawmakers critical of the deal said it fell short of the budget proposed by the European Parliament last June .\tNNS JJ IN DT NN VBD PRP VBD RB IN DT NN VBN IN DT NNP NNP JJ NNP .\nAustria 's Chancellor Wolfgang Schuessel , whose country holds the rotating EU presidency , said there is room to maneuver so a compromise can be reached .\tNNP POS NN NNP NNP , WP$ NN VBZ DT VBG NNP NN , VBD EX VBZ NN TO NN IN DT NN MD VB VBN .\nBritish Prime Minister Tony Blair , who presided over last month 's EU summit , had called the proposed budget a fair deal .\tJJ NNP NNP NNP NNP , WP VBD IN JJ NN POS NNP NN , VBD VBN DT VBN NN DT JJ NN .\nSome of the lawmakers insisted the budget does not provide sufficient aid for EU members .\tDT IN DT NNS VBD DT NN VBZ RB VB JJ NN IN NNP NNS .\nThe World Health Organization has confirmed that a one-year-old girl has become the 23rd person in Indonesia to die of the H5N1 bird flu virus .\tDT NNP NNP NNP VBZ VBN IN DT JJ NN VBZ VBN DT JJ NN IN NNP TO VB IN DT NNP NN NN NN .\nWHO officials say the girl died about a week ago at a Jakarta hospital .\tWP NNS VBP DT NN VBD IN DT NN RB IN DT NNP NN .\nIndonesia has seen more deaths from the virus than any other nation except Vietnam .\tNNP VBZ VBN JJR NNS IN DT NN IN DT JJ NN IN NNP .\nMeanwhile , health officials in Jordan Friday confirmed that nation 's first human case of bird flu .\tRB , NN NNS IN NNP NNP VBD DT NN POS JJ JJ NN IN NN NN .\nThey say a 31-year-old Egyptian worker is being treated and is in good condition .\tPRP VBP DT JJ JJ NN VBZ VBG VBN CC VBZ IN JJ NN .\nOn Thursday , health authorities in Afghanistan began investigating the deaths of three children from the same family on suspicion they might have died of bird flu .\tIN NNP , NN NNS IN NNP VBD VBG DT NNS IN CD NNS IN DT JJ NN IN NN PRP MD VB VBN IN NN NN .\nThe deadly form of bird flu has killed more than 100 people since 2003 , mostly in East Asia .\tDT JJ NN IN NN NN VBZ VBN JJR IN CD NNS IN CD , RB IN NNP NNP .\nIt has recently spread to Europe , Africa and the Middle East .\tPRP VBZ RB VBN TO NNP , NNP CC DT NNP NNP .\nU.S. President-elect Barack Obama is encouraging Americans to come together to help renew the U.S. economy and ' make a new beginning ' for the country .\tNNP NNP NNP NNP VBZ VBG NNS TO VB RB TO VB VB DT NNP NN CC `` VB DT JJ NN `` IN DT NN .\nDuring his weekly radio address released early Thursday for Thanksgiving , Mr. Obama reminded U.S. citizens that this year 's holiday comes at a difficult time .\tIN PRP$ JJ NN NN VBN RB NNP IN NNP , NNP NNP VBD NNP NNS IN DT NN POS NN VBZ IN DT JJ NN .\nHe said that his newly announced economic team is working hard to confront an economic crisis of historic proportions .\tPRP VBD IN PRP$ RB VBN JJ NN VBZ VBG RB TO VB DT JJ NN IN JJ NNS .\nBut the president-elect said policies alone will not revive the U.S. economy .\tCC DT NN VBD NNS RB MD RB VB DT NNP NN .\nHe said it also will take ' the hard work , innovation , service and strength of the American people . '\tPRP VBD PRP RB MD VB `` DT JJ NN , NN , NN CC NN IN DT JJ NNS . ``\nMr. Obama thanked members of the armed forces and their families for their service and sacrifice .\tNNP NNP VBD NNS IN DT JJ NNS CC PRP$ NNS IN PRP$ NN CC NN .\nThe president-elect is spending the holiday in Chicago , Illinois , with his wife , Michelle , and their daughters .\tDT NN VBZ VBG DT NN IN NNP , NNP , IN PRP$ NN , NNP , CC PRP$ NNS .\nTens of thousands of people rallied across Taiwan Sunday as political parties stepped up campaigning ahead of next Saturday 's parliamentary election .\tNNS IN NNS IN NNS VBD IN NNP NNP IN JJ NNS VBD RP VBG RB IN JJ NNP POS JJ NN .\nIn Taipei , supporters of the pro-independence Taiwan Solidarity Union , an ally of President Chen Shui-bian 's party , waved placards of their candidates and chanted independence slogans .\tIN NNP , NNS IN DT JJ NNP NNP NNP , DT NN IN NNP NNP NNP POS NN , VBD NNS IN PRP$ NNS CC VBD NN NNS .\nNearby , thousands of backers of the opposition Nationalists marched for improved ties with mainland China .\tRB , NNS IN NNS IN DT NN NNS VBD IN JJ NNS IN JJ NNP .\nPresident Chen is hoping to achieve a majority in the 225-seat legislature so he can push though what he calls needed constitutional reforms .\tNNP NNP VBZ VBG TO VB DT NN IN DT JJ NN IN PRP MD VB RB WP PRP VBZ VBN JJ NNS .\nThe Nationalist Party and its coalition partner , the People First Party , currently hold a slim majority .\tDT NNP NNP CC PRP$ NN NN , DT NNS NNP NNP , RB VBP DT JJ NN .\nBeijing has denounced the planned constitutional amendments , saying they are a pretext for declaring formal independence , an act China says will trigger a war .\tNNP VBZ VBN DT JJ JJ NNS , VBG PRP VBP DT NN IN VBG JJ NN , DT NN NNP VBZ MD VB DT NN .\nSerbia 's special war crimes prosecutor has announced the indictment of another suspect in the 1991 massacre of more than 200 Croat civilians outside the Croatian city of Vukovar .\tNNP POS JJ NN NNS NN VBZ VBN DT NN IN DT NN IN DT CD NN IN JJR IN CD JJ NNS IN DT JJ NN IN NNP .\nAuthorities arrested Sasa Radak last month in Montenegro .\tNNS VBN NNP NNP JJ NN IN NNP .\nHe joins 17 other suspects on trial before a special court in connection with the deaths at the Ovcara pig farm outside Vukovar .\tPRP VBZ CD JJ NNS IN NN IN DT JJ NN IN NN IN DT NNS IN DT NNP NN NN IN NNP .\nProsecutors say Yugoslav troops took the 200 patients from Vukovar hospital after capturing the Croatian city in November 1991 .\tNNS VBP JJ NNS VBD DT CD NNS IN NNP NN IN VBG DT JJ NN IN NNP CD .\nThey say the bodies were later discovered at the farm .\tPRP VBP DT NNS VBD RB VBN IN DT NN .\nThe Hague war crimes tribunal has indicted three Yugoslav army officers for their role in the deaths .\tDT NNP NN NNS JJ VBZ VBN CD JJ NN NNS IN PRP$ NN IN DT NNS .\nTribunal prosecutors have now suggested that their cases be transferred to local courts either in Croatia or Serbia .\tNNP NNS VBP RB VBN IN PRP$ NNS VB VBN TO JJ NNS CC IN NNP CC NNP .\nRwandan police have arrested a journalist accused of comparing President Paul Kagame to Nazi Germany 's leader Adolf Hitler .\tJJ NNS VBP VBN DT NN VBN IN VBG NNP NNP NNP TO NNP NNP POS NN NNP NNP .\nSaidati Mukakibibi is the second journalist from the independent newspaper Umurabyo arrested in the past week .\tNNP NNP VBZ DT JJ NN IN DT JJ NN NNP VBN IN DT JJ NN .\nThe Reuters news agency quotes a police spokesman as saying Mukakibibi wrote articles comparing the president with Hitler .\tDT NNP NN NN VBZ DT NN NN IN VBG NNP VBD NNS VBG DT NN IN NNP .\nHe said the articles were accompanied by a photo of Mr. Kagame in front of a Nazi swastika that the publishers had inserted in the picture .\tPRP VBD DT NNS VBD VBN IN DT NN IN NNP NNP IN NN IN DT NN NN IN DT NNS VBD VBN IN DT NN .\nLast week , authorities arrested Umurabyo editor Agnes Uwimana on allegations of civil disobedience .\tJJ NN , NNS VBN NNP NN NNP NNP IN NNS IN JJ NN .\nRights groups say the arrests are an attempt by the Rwandan government to clamp down on independent media ahead of next month 's elections .\tNNS NNS VBP DT NNS VBP DT NN IN DT JJ NN TO VB RP IN JJ NNS RB IN JJ NN POS NNS .\nThe government denies the allegations .\tDT NN VBZ DT NNS .\nChinese President Hu Jintao called for progress in six party talks on North Korea 's nuclear program during a meeting with his South Korean counterpart Saturday .\tJJ NNP NNP NNP VBD IN NN IN CD NN NNS IN NNP NNP POS JJ NN IN DT NN IN PRP$ JJ JJ NN NNP .\nSouth Korean President Lee Myung-bak met with the Chinese leader in Beijing while attending the Olympics .\tJJ JJ NNP NNP NNP VBD IN DT JJ NN IN NNP IN VBG DT NNS .\nMr. Hu said he hoped for improved communication and coordination among the countries involved in the six party talks ( among China , South Korea , Japan , Russia , the United States and North Korea ) aimed at dismantling North Korea 's nuclear program ) .\tNNP NNP VBD PRP VBD IN JJ NN CC NN IN DT NNS VBN IN DT CD NN NNS LRB IN NNP , NNP NNP , NNP , NNP , DT NNP NNPS CC NNP NNP RRB VBN IN VBG NNP NNP POS JJ NN RRB .\nAnd he urged moving the talks to what he called ' a new stage . '\tCC PRP VBD VBG DT NNS TO WP PRP VBD `` DT JJ NN . ``\nThe two leaders also discussed developing a ' strategic partnership ' between China and South Korea .\tDT CD NNS RB VBD VBG DT `` JJ NN `` IN NNP CC NNP NNP .\nMr. Hu is scheduled to make a state visit to South Korea in the coming weeks .\tNNP NNP VBZ VBN TO VB DT NN NN TO NNP NNP IN DT JJ NNS .\nU.S. stock market indexes dropped sharply as Friday 's trading got underway .\tNNP NN NN NNS VBD RB IN NNP POS NN VBD NN .\nThe Dow Jones Industrial Average was off 1.3 percent , the S & P 500 lost 1.7 percent , while the NASDAQ fell 2.1 percent .\tDT NNP NNP NNP NNP VBD RB CD NN , DT NNP CC NNP CD VBD CD NN , IN DT NNP VBD CD NN .\nEuropean stock markets were higher in afternoon trading .\tJJ NN NNS VBD JJR IN NN NN .\nLondon 's Financial Times 100 index gained 2.5 percent , the CAC-40 in Paris rose 1.7 percent , while the DAX in Frankfurt jumped 2.8 percent .\tNNP POS NNP NNP CD NN VBD CD NN , DT NNP IN NNP VBD CD NN , IN DT NNP IN NNP VBD CD NN .\nIn Asia , Tokyo 's Nikkei index advanced 2.7 percent ( 224 points ) to end at 8,462 .\tIN NNP , NNP POS NNP NN VBD CD NN LRB CD NNS RRB TO VB IN CD .\nIn Hong Kong , the Hang Seng moved up 2.4 percent ( 321 points ) to finish at 13,543 .\tIN NNP NNP , DT NNP NNP VBD RB CD NN LRB CD NNS RRB TO VB IN CD .\nThe price of gold rose more than $ 9 to trade at $ 745.71 an ounce .\tDT NN IN NN VBD JJR IN $ CD TO VB IN $ CD DT NN .\nThe dollar was down against the yen but gained compared to the euro .\tDT NN VBD RB IN DT NN CC VBD VBN TO DT NN .\nCuba has decided to ban smoking in many public places beginning next month .\tNNP VBZ VBN TO VB NN IN JJ JJ NNS VBG JJ NN .\nOfficials say the smoking ban , which will start the first week of February , will apply to buses , theaters , sports arenas and indoor restaurants , except designated areas .\tNNS VBP DT NN NN , WDT MD VB DT JJ NN IN NNP , MD VB TO NNS , NNS , NNS NNS CC JJ NNS , IN VBN NNS .\nCigarette machines will also be removed .\tNN NNS MD RB VB VBN .\nThe French news agency , AFP , reports that under the new rules tobacco products will be sold only to people over 16 years of age .\tDT JJ NN NN , NNP , VBZ IN IN DT JJ NNS NN NNS MD VB VBN RB TO NNS IN CD NNS IN NN .\nThere is currently no age minimum .\tEX VBZ RB DT NN NN .\nThe news agency reports the government has taken the measures for health reasons and to respect the rights of non-smokers .\tDT NN NN VBZ DT NN VBZ VBN DT NNS IN NN NNS CC TO VB DT NNS IN NNS .\nPakistani officials say a U.S. missile strike in Pakistan 's tribal region Saturday killed two suspected militants .\tJJ NNS VBP DT NNP NN NN IN NNP POS JJ NN NNP VBD CD JJ NNS .\nSecurity officials said the strike targeted a house in the town of Mir Ali in North Waziristan .\tNN NNS VBD DT NN VBD DT NN IN DT NN IN NNP NNP IN NNP NNP .\nThe region is considered a base for Taliban and al-Qaida insurgents accused of attacking NATO troops across the border in Afghanistan .\tDT NN VBZ VBN DT NN IN NNP CC NNP NNS VBN IN VBG NNP NNS IN DT NN IN NNP .\nU.S. President Barack Obama has increased the use of drone strikes to target hideouts in Pakistan , causing friction between Washington and Islamabad .\tNNP NNP NNP NNP VBZ VBN DT NN IN NN NNS TO VB NNS IN NNP , VBG NN IN NNP CC NNP .\nPakistan 's government has objected to the attacks , saying they violate its sovereignty .\tNNP POS NN VBZ VBN TO DT NNS , VBG PRP VBP PRP$ NN .\nMalawi 's Agriculture Minister Uladi Mussa says Africa is not prepared to fight bird flu .\tNNP POS NNP NNP NNP NNP VBZ NNP VBZ RB JJ TO VB NN NN .\nMussa told a 19-nation bird flu conference in Malawi Monday that the lack of knowledge among health officials is as dangerous as the lack of resources .\tNNP VBD DT JJ NN NN NN IN NNP NNP IN DT NN IN NN IN NN NNS VBZ RB JJ IN DT NN IN NNS .\nUnited Nations Food and Agriculture official Mazlan Jusoh said most African nations are free of bird flu for now , but says they must boost surveillance .\tNNP NNP NNP CC NNP JJ NNP NNP VBD RBS JJ NNS VBP JJ IN NN NN IN RB , CC VBZ PRP MD VB NN .\nHe said poverty and inadequate medical and veterinary services make Africa vulnerable .\tPRP VBD NN CC JJ JJ CC JJ NNS VBP NNP NN .\nThe deadly H5N1 bird flu strain has been found in birds in five African nations ( Burkina Faso , Cameroon , Egypt , Niger , and Nigeria ) .\tDT JJ NNP NN NN NN VBZ VBN VBN IN NNS IN CD JJ NNS LRB NNP NNP , NNP , NNP , NNP , CC NNP RRB .\nMeanwhile , Pakistan said Monday it killed more than 40,000 chickens after bird flu was found on several poultry farms near Islamabad .\tRB , NNP VBD NNP PRP VBD JJR IN CD NNS IN NN NN VBD VBN IN JJ JJ NNS IN NNP .\nBird flu has killed 113 people worldwide since 2003 - mostly in Asia .\tNN NN VBZ VBN CD NNS JJ IN CD : RB IN NNP .\nIn a city where most police do not carry guns , the shooting death of a suspect on a crowded London subway has resonated much further than the underground station where the incident occurred .\tIN DT NN WRB RBS NNS VBP RB VB NNS , DT NN NN IN DT NN IN DT JJ NNP NN VBZ VBN RB RBR IN DT JJ NN WRB DT NN VBD .\nAcross the British capital Saturday , residents learned more about the suspect police officers chased onto a subway car Friday and shot to death five times at point-blank range .\tIN DT JJ NN NNP , NNS VBD RBR IN DT JJ NN NNS VBD IN DT NN NN NNP CC VBD TO NN CD NNS IN JJ NN .\nIn a statement , London police said the man was not connected to Thursday 's attempted bombings on the British capital 's transit system , and called the killing ' regrettable ' and a ' tragedy . '\tIN DT NN , NNP NNS VBD DT NN VBD RB VBN TO NNP POS JJ NNS IN DT JJ NN POS NN NN , CC VBD DT NN `` JJ `` CC DT `` NN . ``\nExperts say the shooting death raises questions about police firearm practices and deepens the anxiety of a city that increasingly feels under siege .\tNNS VBP DT NN NN VBZ NNS IN NN NN NNS CC VBZ DT NN IN DT NN WDT RB VBZ IN NN .\nSlovenia 's Katarina Srebotnik has overcome a leg injury to win both the singles and doubles titles at the ASB Classic women 's tennis tournament in Auckland , New Zealand .\tNNP POS NNP NNP VBZ VBN DT NN NN TO VB DT DT NN CC NN NNS IN DT NNP NNP NNS POS NN NN IN NNP , NNP NNP .\nSrebotnik received treatment for a thigh injury to beat fourth-seeded Japanese player Shinboue Asagoe in the final in three sets , 05-Jul , 07-May , 06-Apr .\tNNP VBD NN IN DT NN NN TO VB JJ JJ NN NNP NNP IN DT JJ IN CD NNS , CD , CD , CD .\nEarlier , the Slovene player took two and a half hours to beat fifth seed Marion Bartoli of France in the semifinals , 07-May , 02-Jun , 07-May .\tRB , DT JJ NN VBD CD CC DT NN NNS TO VB JJ NN NNP NNP IN NNP IN DT NNS , CD , CD , CD .\nSrebotnik later teamed with Asagoe to take the tournament doubles title over Leanne Baker of New Zealand and Francesca Lubiani of Italy , 06-Mar , 06-Mar .\tNNP RB VBD IN NNP TO VB DT NN VBZ NN IN NNP NNP IN NNP NNP CC NNP NNP IN NNP , CD , CD .\nThe win was Srebotnik 's seventh doubles title on the WTA tour .\tDT NN VBD NNP POS JJ NN NN IN DT NNP NN .\nThe singles title was Srebotnik 's third in five years .\tDT NN NN VBD NNP POS JJ IN CD NNS .\nThe 23-year-old Slovene came into the tournament ranked 87th in the world .\tDT JJ NN VBD IN DT NN VBD CD IN DT NN .\nIsrael 's Security Cabinet has decided to continue military strikes against Palestinian militants firing rockets from Gaza into Israel .\tNNP POS NNP NNP VBZ VBN TO VB JJ NNS IN JJ NNS VBG NNS IN NNP IN NNP .\nThe cabinet said it based the decision on the relative decrease in rocket attacks since Israeli airstrikes started almost two weeks ago .\tDT NN VBD PRP VBD DT NN IN DT JJ NN IN NN NNS IN JJ NNS VBD RB CD NNS RB .\nIsrael has also conducted a limited number of ground raids against the militants .\tNNP VBZ RB VBN DT JJ NN IN NN NNS IN DT NNS .\nA statement from the office of Israeli Prime Minister Ehud Olmert added that Israel is not involved in any cease-fire talks with the militants .\tDT NN IN DT NN IN JJ NNP NNP NNP NNP VBD IN NNP VBZ RB VBN IN DT NN NNS IN DT NNS .\nEarlier Wednesday , an Israeli airstrike killed two Hamas militants in a northern Gaza refugee camp .\tRBR NNP , DT JJ NN VBD CD NNP NNS IN DT JJ NNP NN NN .\nAbout 50 Palestinians , mostly militants , have been killed in the Israeli attacks .\tIN CD NNS , RB NNS , VBP VBN VBN IN DT JJ NNS .\nPalestinian rockets have killed two Israelis since mid-May .\tJJ NNS VBP VBN CD NNS IN NNP .\nA new museum opened Friday in Washington on crime and law enforcement , mostly in the United States .\tDT JJ NN VBD NNP IN NNP IN NN CC NN NN , RB IN DT NNP NNPS .\nThe museum is owned and financed by an entrepreneur and it charges a fee for entry .\tDT NN VBZ VBN CC VBN IN DT NN CC PRP VBZ DT NN IN NN .\nVisitors are invited to pick up a rifle in a Wild West shootout , plan a prison break and test their knowledge of infamous murderers .\tNNS VBP VBN TO VB RP DT NN IN DT NNP NNP NN , VBP DT NN NN CC VB PRP$ NN IN JJ NNS .\nVOA 's Deborah Block was there .\tNNP POS NNP NNP VBD RB .\nIraqi soldiers , prisoners and hospital patients have cast early ballots for parliamentary elections set to open to the general public on Thursday .\tJJ NNS , NNS CC NN NNS VBP VBN JJ NNS IN JJ NNS VBN TO VB TO DT JJ NN IN NNP .\nOfficials have promised to implement tough security measures Thursday to guard against violence during the vote .\tNNS VBP VBN TO VB JJ NN NNS NNP TO VB IN NN IN DT NN .\nThey include closing Iraq 's borders and restricting travel .\tPRP VBP VBG NNP POS NNS CC VBG NN .\nAuthorities are also expected to extend curfews across the country Tuesday .\tNNS VBP RB VBN TO VB NNS IN DT NN NNP .\nPolling stations were due to open today in 15 countries , including the United States , for voters living outside Iraq .\tNN NNS VBD JJ TO VB NN IN CD NNS , VBG DT NNP NNPS , IN NNS VBG IN NNP .\nMeanwhile , officials in Iraq reported seven people were killed in attacks Monday .\tRB , NNS IN NNP VBD CD NNS VBD VBN IN NNS NNP .\nSeparate roadside bomb attacks killed one American soldier and two other people in the Iraqi capital .\tJJ NN NN NNS VBD CD JJ NN CC CD JJ NNS IN DT JJ NN .\nAnd gunmen killed four Iraqis , including a police officer .\tCC NNS VBD CD NNS , VBG DT NN NN .\nAustralia 's Qantas Airways resumed limited superjumbo flights Saturday , with the take-off of a fully-loaded Airbus A380 from Singapore .\tNNP POS NNP NNPS VBD JJ NN NNS NNP , IN DT NN IN DT JJ NNP NNP IN NNP .\nQantas chief executive Alan Joyce joined the first leg of the flight to London via Singapore .\tNNP JJ NN NNP NNP VBD DT JJ NN IN DT NN TO NNP IN NNP .\nJoyce told reporters that he was 100 percent comfortable with the operation of the aircraft .\tNNP VBD NNS IN PRP VBD CD NN JJ IN DT NN IN DT NN .\nThe airline grounded its six A380s after a superjumbo 's engine blew up midair on November 4 , forcing an emergency landing in Singapore .\tDT NN VBD PRP$ CD NNS IN DT NN POS NN VBD RP NN IN NNP CD , VBG DT NN NN IN NNP .\nInspections showed problems with several of Qantas Airways ' Rolls Royce Trent 900 engines that required turbines to be replaced or modified .\tNNS VBD NNS IN JJ IN NNP NNP POS NNP NNP NNP NNP NNS WDT VBD NNS TO VB VBN CC VBN .\nQantas is putting just two of its A380s back in service while modifications are made on engines on other aircraft .\tNNP VBZ VBG RB CD IN PRP$ NNS RB IN NN IN NNS VBP VBN IN NNS IN JJ NN .\nIslamic militants have fired volleys of Katyusha-type rockets in response to a Lebanese army bombardment of their positions inside a Palestinian refugee camp in northern Lebanon .\tNNP NNS VBP VBN NNS IN JJ NNS IN NN TO DT JJ NN NN IN PRP$ NNS IN DT JJ NN NN IN JJ NNP .\nThe army says the rockets caused some damage but no casualties several kilometers away from the refugee camp .\tDT NN VBZ DT NNS VBD DT NN CC DT NNS JJ NNS RB IN DT NN NN .\nLebanese artillery and tanks continued to pound Fatah al-Islam militants inside the Nahr el-Bared refugee camp near the city of Tripoli .\tJJ NN CC NNS VBD TO VB NNP NNP NNS IN DT NNP JJ NN NN IN DT NN IN NNP .\nAt least 10 soldiers have died in fighting since Thursday when the army began an artillery barrage on the camp .\tIN JJS CD NNS VBP VBN IN VBG IN NNP WRB DT NN VBD DT NN NN IN DT NN .\nLast month , Lebanese officials claimed victory in the fighting , but daily firefights have continued since then .\tJJ NN , JJ NNS VBD NN IN DT NN , CC JJ NNS VBP VBN IN RB .\nMore than 170 people , including more than 90 Lebanese soldiers , have been killed since the standoff began May 20 .\tJJR IN CD NNS , VBG JJR IN CD JJ NNS , VBP VBN VBN IN DT NN VBD NNP CD .\nNearly all of the Palestinian refugees living in the camp have fled .\tRB DT IN DT JJ NNS VBG IN DT NN VBP VBN .\nA car bomb explosion in Iraq has killed five people , including four police officers who were on patrol .\tDT NN NN NN IN NNP VBZ VBN CD NNS , VBG CD NNS NNS WP VBD IN NN .\nOfficials say a civilian was also among the dead in the town of Khan Bani Saad , near Baquba , just north of Baghdad .\tNNS VBP DT JJ VBD RB IN DT NN IN DT NN IN NNP NNP NNP , IN NNP , RB NN IN NNP .\nAt least three other people were injured .\tIN JJS CD JJ NNS VBD VBN .\nMeanwhile , the U.S. military reported Saturday , that a Marine was killed in action Friday , in the western city of Ramadi .\tRB , DT NNP NN VBD NNP , IN DT NN VBD VBN IN NN NNP , IN DT JJ NN IN NNP .\nIn political news , the Iraqi National Assembly is scheduled to meet Sunday to finally elect a speaker .\tIN JJ NN , DT JJ NNP NNP VBZ VBN TO VB NNP TO RB VB DT NN .\nBut politicians say Shi'ite and Sunni leaders are still not able to agree on a Sunni candidate for the post .\tCC NNS VBP NNP CC NNP NNS VBP RB RB JJ TO VB IN DT NNP NN IN DT NN .\nThe impasse has delayed formation of the new government .\tDT NN VBZ VBN NN IN DT JJ NN .\nPalestinian militants fired two rockets into southern Israel late Tuesday , following Israeli airstrikes near the Gaza Strip 's border with Egypt .\tJJ NNS VBD CD NNS IN JJ NNP JJ NNP , VBG JJ NNS IN DT NNP NNP POS NN IN NNP .\nIsraeli military officials say no one was hurt in the rocket attack .\tJJ JJ NNS VBP DT NN VBD VBN IN DT NN NN .\nEarlier on Tuesday , Israeli aircraft bombed at least six smuggling tunnels near the southern Gaza town of Rafah .\tRB IN NNP , JJ NN VBD IN JJS CD VBG NNS IN DT JJ NNP NN IN NNP .\nIsraeli military officials say one of the airstrikes triggered a secondary explosion , indicating that explosives were present in the tunnel .\tJJ JJ NNS VBP CD IN DT NNS VBD DT JJ NN , VBG IN NNS VBD JJ IN DT NN .\nAt least four people were reported wounded in the strikes .\tIN JJS CD NNS VBD VBN VBN IN DT NNS .\nIsrael launched a three-week offensive against the Palestinian militant group Hamas in Gaza in response to the rocket attacks .\tNNP VBD DT JJ NN IN DT JJ JJ NN NNP IN NNP IN NN TO DT NN NNS .\nBoth Hamas and Israel declared separate cease-fires last month , but the violence continues almost daily .\tDT NNP CC NNP VBD JJ NNS JJ NN , CC DT NN VBZ RB RB .\nThe U.S. military has announced charges against eight service members in connection with the death of an Iraqi civilian .\tDT NNP NN VBZ VBN NNS IN CD NN NNS IN NN IN DT NN IN DT JJ JJ .\nMarine Colonel Stewart Navarre said Wednesday the eight face charges including kidnapping , murder and conspiracy .\tNNP NNP NNP NNP VBD NNP DT CD NN NNS VBG NN , NN CC NN .\nThe seven Marines and a Navy corpsman are suspected of killing an Iraqi man without provocation in the village of Hamdania in April .\tDT CD NNPS CC DT NNP NN VBP VBN IN VBG DT JJ NN IN NN IN DT NN IN NNP IN NNP .\nThey have been held since May at Camp Pendleton , California .\tPRP VBP VBN VBN IN NNP IN NNP NNP , NNP .\nFour other Marines not being held remain under investigation .\tCD JJ NNS RB VBG VBN VBP IN NN .\nThe investigation is separate from the probe of the events of Haditha in November 2005 , in which Marines are alleged to have killed 24 Iraqi civilians after a roadside bomb blast in the town killed a fellow Marine .\tDT NN VBZ JJ IN DT NN IN DT NNS IN NNP IN NNP CD , IN WDT NNS VBP VBN TO VB VBN CD JJ NNS IN DT NN NN NN IN DT NN VBD DT JJ NN .\nAt least 60 people are confirmed dead and more than 400 remain missing after the Shadi Kor dam ruptured in southwestern Pakistan Thursday .\tIN JJS CD NNS VBP VBN JJ CC JJR IN CD VBP VBG IN DT NNP NNP NN VBD IN JJ NNP NNP .\nMore than 1,500 people have been rescued from the floodwaters after the two-year-old dam failed .\tJJR IN CD NNS VBP VBN VBN IN DT NNS IN DT JJ NN VBD .\nPrimarily used for irrigation , the 25-meter-high , 150-meter-long dam was destroyed by a wall of water after a week of heavy rain and snow that has caused over 120 storm-related deaths in the region .\tRB VBN IN NN , DT JJ , JJ NN VBD VBN IN DT NN IN NN IN DT NN IN JJ NN CC NN WDT VBZ VBN IN CD JJ NNS IN DT NN .\nMembers of Pakistan 's army , navy and coast guard are leading relief efforts at the disaster site in Baluchistan Province .\tNNS IN NNP POS NN , NN CC NN NN VBP VBG NN NNS IN DT NN NN IN NNP NNP .\nAn estimated 50,000 people in the province have been affected with the loss of roads , bridges , houses , crops and telecommunications , much of which remains under water .\tDT VBN CD NNS IN DT NN VBP VBN VBN IN DT NN IN NNS , NNS , NNS , NNS CC NNS , NN IN WDT VBZ IN NN .\nSeveral more days of severe , wet weather are expected .\tJJ JJR NNS IN JJ , JJ NN VBP VBN .\nGerman officials say the German woman who was taken hostage in Iraq last month has been freed and appears to be in good health .\tJJ NNS VBP DT JJ NN WP VBD VBN NN IN NNP JJ NN VBZ VBN VBN CC VBZ TO VB IN JJ NN .\nGermany 's foreign minister ( Frank-Walter Steinmeier ) says archaeologist Susanne Osthoff is now in the German embassy in Baghdad .\tNNP POS JJ NN LRB NNP NNP RRB VBZ JJ NNP NNP VBZ RB IN DT JJ NN IN NNP .\nHe gave no information on her release , saying only that she is no longer in the hands of the kidnappers .\tPRP VBD DT NN IN PRP$ NN , VBG RB IN PRP VBZ RB RB IN DT NNS IN DT NNS .\nMs. Osthoff and her driver disappeared on November 25 in the Nineveh region of northwest Iraq .\tNNP NNP CC PRP$ NN VBD IN NNP CD IN DT NNP NN IN JJ NNP .\nShe had been working in Iraq more than ten years .\tPRP VBD VBN VBG IN NNP JJR IN CD NNS .\nPope John Paul has called for better integration among peoples as the Roman Catholic Church marks the World Day of Migrants and Refugees .\tNNP NNP NNP VBZ VBN IN JJR NN IN NNS IN DT NNP NNP NNP VBZ DT NNP NNP IN NNPS CC NNPS .\nIn remarks at the Vatican Sunday , the pontiff said better integration among peoples requires a fair balance between the affirmation of one 's own identity and recognition of that of others .\tIN NNS IN DT NNP NNP , DT NN VBD JJR NN IN NNS VBZ DT JJ NN IN DT NN IN CD POS JJ NN CC NN IN DT IN NNS .\nThe 84-year-old pope greeted all migrants and said he wishes that sympathy and understanding among cultures can grow through dialogue .\tDT JJ NN VBD DT NNS CC VBD PRP VBZ IN NN CC NN IN NNS MD VB IN NN .\nThe United States will host a two-day international conference on the avian ( bird ) flu virus in Washington beginning Thursday .\tDT NNP NNPS MD VB DT JJ JJ NN IN DT JJ LRB NN RRB NN NN IN NNP VBG NNP .\nU.S. State Department spokesman Sean McCormack Wednesday said more than 65 countries and international organizations concerned about preventing a global bird flu pandemic will be participating .\tNNP NNP NNP NN NNP NNP NNP VBD JJR IN CD NNS CC JJ NNS VBN IN VBG DT JJ NN NN NN MD VB VBG .\nHe said U.S. officials leading the meeting will focus on a set of core principles regarding the H5N1 virus unveiled by Washington at last month 's U.N. World Summit .\tPRP VBD NNP NNS VBG DT NN MD VB IN DT NN IN NN NNS VBG DT NNP NN VBN IN NNP IN JJ NN POS NNP NNP NNP .\nHe said the program principles include quick and accurate reporting of outbreaks of the virus , donor support for countries affected by the disease and a pledge to work with the World Health Organization .\tPRP VBD DT NN NNS VBP JJ CC JJ NN IN NNS IN DT NN , NN NN IN NNS VBN IN DT NN CC DT NN TO VB IN DT NNP NNP NNP .\nMany participants have already signed on to the U.S.-led program .\tJJ NNS VBP RB VBN IN TO DT JJ NN .\nAbout 60 people have died after being exposed to birds with the virus .\tIN CD NNS VBP VBN IN VBG VBN TO NNS IN DT NN .\nExperts warn the virus could mutate into a form passed easily among humans and cause a global pandemic .\tNNS VBP DT NN MD VB IN DT NN VBN RB IN NNS CC VB DT JJ NN .\nBurma has reported an outbreak of bird flu among chickens in the country 's eastern Shan state .\tNNP VBZ VBN DT NN IN NN NN IN NNS IN DT NN POS JJ NNP NN .\nThe official ' New Light of Myanmar ' newspaper said Saturday that authorities confirmed the outbreak of the deadly H5N1 virus on Thursday , after an unspecified number of chickens had died in Yankham village .\tDT JJ `` NNP NNP IN NNP `` NN VBD NNP IN NNS VBD DT NN IN DT JJ NNP NN IN NNP , IN DT JJ NN IN NNS VBD VBN IN NNP NN .\nOfficials said they determined that the virus was spread to the area from Kengtung Township , where bird flu broke out in December 18 .\tNNS VBD PRP VBD IN DT NN VBD VBN TO DT NN IN NNP NNP , WRB NN NN VBD RP IN NNP CD .\nBurma and the World Health Organization had earlier confirmed the country 's first human bird flu case , when a seven-year-old girl was hospitalized in late November .\tNNP CC DT NNP NNP NNP VBD RBR VBN DT NN POS JJ JJ NN NN NN , WRB DT JJ NN VBD VBN IN JJ NNP .\nThe girl survived the disease and was discharged in early December .\tDT NN VBD DT NN CC VBD VBN IN JJ NNP .\nSeven countries in East Asia have reported human cases of the potentially deadly virus .\tCD NNS IN NNP NNP VBP VBN JJ NNS IN DT RB JJ NN .\nThe two with the greatest number of cases are Indonesia and Vietnam .\tDT CD IN DT JJS NN IN NNS VBP NNP CC NNP .\nMore than 200 people in 13 countries have died from the disease since 2003 .\tJJR IN CD NNS IN CD NNS VBP VBN IN DT NN IN CD .\nU.S. Navy helicopters will begin airlifting survivors from remote areas of Indonesia 's tsunami-devastated Aceh province , a move the United Nations calls vital to rescue operations in the region .\tNNP NNP NNS MD VB VBG NNS IN JJ NNS IN NNP POS JJ NNP NN , DT NN DT NNP NNP VBZ JJ TO VB NNS IN DT NN .\nU.S. , Australian and Indonesian military helicopters are also dropping food and supplies to hungry people left stranded in isolated western areas of the province .\tNNP , JJ CC JJ NN NNS VBP RB VBG NN CC NNS TO JJ NNS VBN VBN IN VBN JJ NNS IN DT NN .\nLarge areas of Aceh province remain inaccessible to emergency crews on the ground one week after the area was battered by massive waves triggered by a 9 magnitude earthquake near its coast .\tJJ NNS IN NNP NN VBP JJ TO NN NNS IN DT NN CD NN IN DT NN VBD VBN IN JJ NNS VBN IN DT CD NN NN IN PRP$ NN .\nThe tsunami pounded coastlines in a dozen Indian Ocean countries , leaving 1,27,000 people known dead .\tDT NN VBD NNS IN DT NN JJ NNP NNS , VBG CD NNS VBN JJ .\nMillions more people are now homeless and in need of emergency assistance .\tNNS JJR NNS VBP RB JJ CC IN NN IN NN NN .\nAid is being rushed to the region , but logistical bottlenecks , destroyed infrastructure , and bad weather are hindering distribution .\tNN VBZ VBG VBN TO DT NN , CC JJ NNS , VBN NN , CC JJ NN VBP VBG NN .\nRelief agencies warn it may take weeks to get aid to some needy people .\tNN NNS VBP PRP MD VB NNS TO VB NN TO DT JJ NNS .\nThe US military says one US soldier and an Afghan interpreter have been killed in a gunfight in southern Afghanistan , as the war-ravaged country continues its bloody countdown to parliamentary polls .\tDT NNP NN VBZ CD NNP NN CC DT JJ NN VBP VBN VBN IN DT NN IN JJ NNP , IN DT JJ NN VBZ PRP$ JJ NN TO JJ NNS .\nA military statement says they were moving into position for a daylight offensive operation south of Dai Chopan in Zabul province when the gun battle occurred .\tDT JJ NN VBZ PRP VBD VBG IN NN IN DT JJ NN NN NN IN NNP NNP IN NNP NN WRB DT NN NN VBD .\nU.S. and Afghan government forces have mounted a series of operations in the south and east in recent months , aimed at flushing out militants and ensuring security for September 18th parliamentary elections .\tNNP CC JJ NN NNS VBP VBN DT NN IN NNS IN DT NN CC NN IN JJ NNS , VBN IN VBG RP NNS CC VBG NN IN NNP JJ JJ NNS .\nThe U.S. military said two Taleban were later killed in the attack including one identified as a sub-commander .\tDT NNP NN VBD CD NNP VBD RB VBN IN DT NN VBG CD VBN IN DT NN .\nA purported spokesman for the Taleban confirmed the local-level commander , known as Tor Mullah Abdul Manan , had been killed in a battle in the restive Zabul province .\tDT JJ NN IN DT NNP VBD DT JJ NN , VBN IN NNP NNP NNP NNP , VBD VBN VBN IN DT NN IN DT JJ NNP NN .\nIranian President Mahmoud Ahmadinejad has again defended his country 's right to develop nuclear energy .\tJJ NNP NNP NNP VBZ RB VBN PRP$ NN POS NN TO VB JJ NN .\nAt a news conference during a visit to Algeria , Ahmadinejad Tuesday denounced nations for trying to isolate his country over its nuclear program .\tIN DT NN NN IN DT NN TO NNP , NNP NNP VBD NNS IN VBG TO VB PRP$ NN IN PRP$ JJ NN .\nThe United States and its allies accuse Iran of trying to develop nuclear weapons .\tDT NNP NNPS CC PRP$ NNS VBP NNP IN VBG TO VB JJ NNS .\nIran denies the charge , saying its program is aimed at producing energy .\tNNP VBZ DT NN , VBG PRP$ NN VBZ VBN IN VBG NN .\nOn Monday , U.S. President George W. Bush said the Ahmadinejad government is ' a big disappointment ' and is causing the Iranian people to be further isolated .\tIN NNP , NNP NNP NNP NNP NNP VBD DT NNP NN VBZ `` DT JJ NN `` CC VBZ VBG DT JJ NNS TO VB RB VBN .\nIran has rejected U.N. Security Council resolutions requiring it to stop enriching uranium .\tNNP VBZ VBN NNP NNP NNP NNS VBG PRP TO VB VBG NN .\nHowever , Iran recently agreed to allow U.N. atomic energy agency inspectors to view a sensitive nuclear facility to help resolve questions about its nuclear plans .\tRB , NNP RB VBD TO VB NNP JJ NN NN VBZ TO VB DT JJ JJ NN TO VB VB NNS IN PRP$ JJ NNS .\nA U.N team arrived in Iran this week to develop a plan for future inspections .\tDT NNP NN VBD IN NNP DT NN TO VB DT NN IN JJ NNS .\nIndia and South America 's Mercosur trading bloc have signed an agreement slashing tariffs on more than 900 products in a trade boosting measure .\tNNP CC NNP NNP POS NN NN NN VBP VBN DT NN VBG NNS IN JJR IN CD NNS IN DT NN VBG NN .\nUnder the agreement signed Saturday , India is cutting or eliminating tariffs on 450 products while the South American trading bloc is taking similar action on 452 products .\tIN DT NN VBD NNP , NNP VBZ VBG CC VBG NNS IN CD NNS IN DT JJ JJ NN NN VBZ VBG JJ NN IN CD NNS .\nTrade between India and Mercosur reached $ 1.5 billion last year .\tNNP IN NNP CC NNP VBD $ CD CD JJ NN .\nMercosur comprises Argentina , Brazil , Paraguay and Uruguay .\tNNP VBZ NNP , NNP , NNP CC NNP .\nChile and Bolivia are associate members of the bloc .\tNNP CC NNP VBP JJ NNS IN DT NN .\nIndia 's main exports to Mercosur nations included pharmaceutical and chemical products .\tNNP POS JJ NNS TO NNP NNS VBD JJ CC JJ NNS .\nImports included edible oils and non-electrical machinery .\tNNS VBD JJ NNS CC JJ NN .\nA Chechen militant website says Shamil Basayev , who is wanted in Russia for leading numerous terrorist attacks , has been named second-in-command of the separatist Chechen government A statement on the kavkazcenter.com web site says Mr. Basayev was named first deputy prime minister and put in charge of the armed forces .\tDT JJ NN NN VBZ NNP NNP , WP VBZ VBN IN NNP IN VBG JJ JJ NNS , VBZ VBN VBN NN IN DT JJ JJ NN DT NN IN DT NN NN NN VBZ NNP NNP VBD VBN RB JJ JJ NN CC NN IN NN IN DT JJ NNS .\nThe statement was attributed to Abdul-Khalim Sadulayev , who succeeded Aslan Maskhadov as president of Chechnya 's breakaway government when the Chechen leader was killed in March .\tDT NN VBD VBN TO NNP NNP , WP VBD NNP NNP IN NN IN NNP POS JJ NN WRB DT JJ NN VBD VBN IN NNP .\nMr. Basayev left Chechnya 's administration in 2002 under pressure from Mr. Maskhadov for being too violent .\tNNP NNP VBD NNP POS NN IN CD IN NN IN NNP NNP IN VBG RB JJ .\nMr. Basayev claims responsibility for last year 's school seizure in Beslan , a town in southern Russia , in which more than 330 people were killed .\tNNP NNP VBZ NN IN JJ NN POS NN NN IN NNP , DT NN IN JJ NNP , IN WDT JJR IN CD NNS VBD VBN .\nChechnya has been rocked by about a decade of fighting between separatist forces and Russian federal government troops .\tNNP VBZ VBN VBN IN IN DT NN IN VBG IN JJ NNS CC JJ JJ NN NNS .\nPrivate donations to help victims of the Asian tsunami are soaring in Europe , rivaling and in some cases exceeding government contributions .\tJJ NNS TO VB NNS IN DT JJ NNS VBP VBG IN NNP , VBG CC IN DT NNS VBG NN NNS .\nIn Sweden , a series of telethons Saturday pushed private donations above the $ 60-million mark .\tIN NNP , DT NN IN NNS NNP VBD JJ NNS IN DT $ CD NN .\nRelief agencies called it a record for the nation , which may have lost more citizens in the disaster than any other in Europe .\tNN NNS VBD PRP DT NN IN DT NN , WDT MD VB VBN JJR NNS IN DT NN IN DT JJ IN NNP .\nThe British public had contributed about $ 115 million by Saturday - nearly $ 20 million more than its government .\tDT JJ NN VBD VBN IN $ CD CD IN NNP : RB $ CD CD JJR IN PRP$ NN .\nPrivate donations in Germany were running above $ 40 million - more than the German government has pledged so far .\tJJ NNS IN NNP VBD VBG IN $ CD CD IN JJR IN DT JJ NN VBZ VBN RB RB .\nAn aid official told the French news agency , AFP , it was one of the largest donations of its type in Germany .\tDT NN NN VBD DT JJ NN NN , NNP , PRP VBD CD IN DT JJS NNS IN PRP$ NN IN NNP .\nThe International Atomic Energy Agency was set up by the United Nations in 1957 as the so-called ' Atoms for Peace ' program , to promote the safe and peaceful use of nuclear energy .\tDT NNP NNP NNP NNP VBD VBN RP IN DT NNP NNPS IN CD IN DT JJ `` NNPS IN NNP `` NN , TO VB DT JJ CC JJ NN IN JJ NN .\nSince 1970 , its tasks have included verifying compliance with the nuclear Non-Proliferation Treaty .\tIN CD , PRP$ NNS VBP VBN VBG NN IN DT JJ NN NNP .\nWith headquarters in Vienna , Austria , the agency employs a staff of more than 2,200 people from 90 countries .\tIN NN IN NNP , NNP , DT NN VBZ DT NN IN JJR IN CD NNS IN CD NNS .\nThe IAEA 's main decisions are made by two policy-making bodies - the General Conference of all 138 member states ; and an elected board of governors , whose 35 members serve a one-year term .\tDT NNP POS JJ NNS VBP VBN IN CD JJ NNS IN DT NNP NNP IN DT CD NN NNS ; CC DT VBN NN IN NNS , WP$ CD NNS VBP DT JJ NN .\nThe agency not only deals with current issues such as Iran 's and North Korea 's nuclear programs , but it also helps countries with their nuclear safety arrangements and offers assistance to countries wishing to upgrade civilian nuclear safety .\tDT NN RB RB VBZ IN JJ NNS JJ IN NNP POS CC NNP NNP POS JJ NNS , CC PRP RB VBZ NNS IN PRP$ JJ NN NNS CC VBZ NN TO NNS VBG TO VB JJ JJ NN .\nWeather forecasters are advising residents in the southeastern United States to monitor a tropical storm off Florida 's east coast .\tNNP NNS VBP VBG NNS IN DT JJ NNP NNPS TO VB DT JJ NN IN NNP POS JJ NN .\nThe National Weather Center says Tropical Storm Ophelia could dump eight centimeters of rain in parts of Florida and southeastern Georgia , with isolated maximum amounts up to 13 centimeters .\tDT NNP NNP NNP VBZ NNP NNP NNP MD VB CD NNS IN NN IN NNS IN NNP CC JJ NNP , IN JJ NN VBZ RP TO CD NNS .\nThe storm , packing winds of near 95 kilometers per hour , is about 100 kilometers from Cape Canaveral , Florida .\tDT NN , VBG NNS IN IN CD NNS IN NN , VBZ IN CD NNS IN NNP NNP , NNP .\nThe weather center says the system is stationary and not expected to move much Thursday .\tDT NN NN VBZ DT NN VBZ JJ CC RB VBN TO VB RB NNP .\nSome strengthening is forecast .\tDT NN VBZ VBN .\nA tropical storm warning is in effect for parts of Florida 's east coast .\tDT JJ NN NN VBZ IN NN IN NNS IN NNP POS JJ NN .\nAuthorities in Greece have sent riot police to a top tourist attraction after striking government workers shut down the Acropolis for a second day .\tNNS IN NNP VBP VBN NN NN TO DT JJ NN NN IN JJ NN NNS VBD RP DT NNP IN DT JJ NN .\nPolice were stationed outside the entrance to the site Thursday , where workers have blockaded the gate .\tNNS VBD VBN IN DT NN TO DT NN NNP , WRB NNS VBP VBN DT NN .\nThe culture ministry employees are protesting the dismissal of workers whose contracts expire at the end of the month .\tDT NN NN NNS VBP VBG DT NN IN NNS WP$ NNS VBP IN DT NN IN DT NN .\nThey are also demanding the government provide months of unpaid salaries .\tPRP VBP RB VBG DT NN VB NNS IN JJ NNS .\nDozens of tourists were also outside the site Thursday .\tNNS IN NNS VBD RB IN DT NN NNP .\nThe Acropolis is a UNESCO World Heritage site that holds the ruins of several ancient Greek temples , including the famed Parthenon .\tDT NNP VBZ DT NNP NNP NNP NN WDT VBZ DT NNS IN JJ JJ JJ NNS , VBG DT JJ NN .\nSudan has approved the deployment of 105 armored personnel carriers to aid African Union peacekeeping forces in the war-torn western region of Darfur .\tNNP VBZ VBN DT NN IN CD JJ NNS NNS TO VB NNP NNP VBG NNS IN DT JJ JJ NN IN NNP .\nThe Sudanese decision follows recent rebel attacks on AU peacekeepers in Darfur .\tDT JJ NN VBZ JJ NN NNS IN NNP NNS IN NNP .\nIn one of the attacks , five AU soldiers and civilian personnel were killed when rebels with the Sudan Liberation Movement ambushed a convoy .\tIN CD IN DT NNS , CD NNP NNS CC JJ NNS VBD VBN WRB NNS IN DT NNP NNP NNP VBD DT NN .\nSeparately , a faction of the rebel Justice and Equality Movement abducted and held hostage 38 AU personnel .\tRB , DT NN IN DT NN NNP CC NNP NNP VBD CC VBD NN CD NNP NNS .\nThey were later released .\tPRP VBD RB VBN .\nThe Canadian-donated armored personnel vehicles are expected to begin arriving on Friday .\tDT JJ JJ NNS NNS VBP VBN TO VB VBG IN NNP .\nOngoing violence in Darfur has forced aid agencies to evacuate relief workers .\tVBG NN IN NNP VBZ VBN NN NNS TO VB NN NNS .\nSome 7,000 AU peacekeepers are in Darfur , where fighting between rebels and government-backed Arab militia has killed tens of thousands of people over the past two years .\tDT CD NNP NNS VBP IN NNP , WRB VBG IN NNS CC JJ JJ NN VBZ VBN NNS IN NNS IN NNS IN DT JJ CD NNS .\nMore than two million others have been driven from their homes .\tJJR IN CD CD NNS VBP VBN VBN IN PRP$ NNS .\nBurma 's largest opposition party is marking the 15th anniversary of its landslide election victory , which the military government never recognized .\tNNP POS JJS NN NN VBZ VBG DT JJ NN IN PRP$ NN NN NN , WDT DT JJ NN RB VBD .\nNational League for Democracy party officials invited diplomats and journalists to Friday 's commemoration in Rangoon .\tNNP NNP IN NNP NN NNS VBD NNS CC NNS TO NNP POS NN IN NNP .\nHowever , NLD leader Aung San Suu Kyi is not able to attend the ceremony .\tRB , NNP NN NNP NNP NNP NNP VBZ RB JJ TO VB DT NN .\nThe Nobel Laureate has been under house arrest for two years following a violent ambush by a pro-junta mob .\tDT NNP NNP VBZ VBN IN NN NN IN CD NNS VBG DT JJ NN IN DT JJ NN .\nHer party won 392 of 485 seats in the 1990 election .\tPRP$ NN VBD CD IN CD NNS IN DT CD NN .\nBut the military junta refused to recognize the balloting , which was widely seen as free and fair .\tCC DT JJ NN VBD TO VB DT NN , WDT VBD RB VBN IN JJ CC JJ .\nThe government instead clamped down on opposition parties and began jailing opposition leaders .\tDT NN RB VBD RP IN NN NNS CC VBD VBG NN NNS .\nOn Wednesday , the human rights group Amnesty International slammed Burma 's human rights record , saying more than 1,300 political prisoners were wrongly detained last year .\tIN NNP , DT JJ NNS NN NNP NNP VBD NNP POS JJ NNS NN , VBG JJR IN CD JJ NNS VBD RB VBN JJ NN .\nA U.S. congressman in the Democratic Party says the recently unveiled shortfalls in care at a Washington , D.C. military hospital indicate a ' catastrophic failure of leadership ' by the Bush administration .\tDT NNP NN IN DT NNP NNP VBZ DT RB VBN NNS IN NN IN DT NNP , NNP JJ NN VBP DT `` JJ NN IN NN `` IN DT NNP NN .\nCongressman Harry Mitchell of the southwestern state of Arizona said in the Democrats ' weekly radio address Saturday , that problems similar to those found at Walter Reed military hospital are being uncovered elsewhere in the military medical care system .\tNNP NNP NNP IN DT JJ NN IN NNP VBD IN DT NNPS POS JJ NN NN NNP , IN NNS JJ TO DT VBN IN NNP NNP JJ NN VBP VBG VBN RB IN DT JJ JJ NN NN .\nHe said it is a problem that can not be fixed simply with drywall and paint .\tPRP VBD PRP VBZ DT NN WDT MD RB VB VBN RB IN NN CC NN .\nMitchell said voters should hold the Bush administration accountable for those shortfalls because it did not provide adequate funding .\tNNP VBD NNS MD VB DT NNP NN NN IN DT NNS IN PRP VBD RB VB JJ NN .\nHe said Democrats have added $ 3.5 billion for veterans ' care to the president 's budget request for war funding .\tPRP VBD NNPS VBP VBN $ CD CD IN NNS POS NN TO DT NN POS NN NN IN NN NN .\nCongress has not voted yet to approve this year 's budget .\tNNP VBZ RB VBN RB TO VB DT NN POS NN .\nFormer Israeli President Moshe Katsav has been indicted on charges of rape and other sexual offenses .\tJJ JJ NNP NNP NNP VBZ VBN VBN IN NNS IN NN CC JJ JJ NNS .\nThe indictment filed Thursday in a Tel Aviv court accused Mr. Katsav of raping a woman who once worked for him , in addition to sexual harassment charges involving two other former female employees .\tDT NN VBN NNP IN DT NNP NNP NN VBD NNP NNP IN VBG DT NN WP RB VBD IN PRP , IN NN TO JJ NN NNS VBG CD JJ JJ JJ NNS .\nThe indictment said the women worked for Mr. Katsav while he was Israel 's Tourism Minister in the 1990s , and president earlier this decade .\tDT NN VBD DT NNS VBD IN NNP NNP IN PRP VBD NNP POS NNP NNP IN DT NNS , CC NN RBR DT NN .\nMr. Katsav resigned shortly before his term ended in 2007 at the end of his presidential term , under a plea bargain that would have required him to admit to lesser charges of sexual misconduct .\tNNP NNP VBD RB IN PRP$ NN VBD IN CD IN DT NN IN PRP$ JJ NN , IN DT NN NN WDT MD VB VBN PRP TO VB TO JJR NNS IN JJ NN .\nHe withdrew from the agreement last April and so he could stand trial in hopes of clearing his name .\tPRP VBD IN DT NN JJ NNP CC IN PRP MD VB NN IN NNS IN VBG PRP$ NN .\nHe has vigorously denied the charges facing him .\tPRP VBZ RB VBN DT NNS VBG PRP .\nThe NATO-led international force in Afghanistan is preparing to build a helipad near the site of last week 's crash of an Afghan airliner that killed all 104 people onboard .\tDT JJ JJ NN IN NNP VBZ VBG TO VB DT NN IN DT NN IN JJ NN POS NN IN DT JJ NN WDT VBD DT CD NNS RB .\nA spokesman says the aim is to speed up the investigation and the recovery of bodies from the crash site , which is at an altitude of nearly 3,000 meters on a mountain near Kabul .\tDT NN VBZ DT NN VBZ TO VB RP DT NN CC DT NN IN NNS IN DT NN NN , WDT VBZ IN DT NN IN RB CD NNS IN DT NN IN NNP .\nBad weather so far has hampered efforts to search for the black box and retrieve bodies from the wreckage .\tJJ NN RB RB VBZ VBN NNS TO VB IN DT JJ NN CC VB NNS IN DT NN .\nThe Boeing 737 , operated by private Afghan airline Kam Air , vanished from the radar screen last Thursday as it was approaching Kabul airport during a blizzard .\tDT NNP CD , VBN IN JJ JJ NN NNP NNP , VBD IN DT NN NN JJ NNP IN PRP VBD VBG NNP NN IN DT NN .\nThe French News Agency , AFP , says the United Nations has grounded another Boeing 737 hired from Kam Air .\tDT NNP NNP NNP , NNP , VBZ DT NNP NNP VBZ VBN DT NNP CD VBN IN NNP NNP .\nNATO says British Foreign Secretary David Miliband visited southern Afghanistan on Tuesday , where British forces are fighting Taliban militants .\tNNP VBZ NNP NNP NNP NNP NNP VBD JJ NNP IN NNP , WRB JJ NNS VBP VBG NNP NNS .\nA NATO statement issued Wednesday said Miliband met with commanders who oversee military operations in the southern province of Helmand , including the head of NATO forces in southern Afghanistan , Dutch commander Major General Mart de Kruif .\tDT NNP NN VBN NNP VBD NNP VBD IN NNS WP VB JJ NNS IN DT JJ NN IN NNP , VBG DT NN IN NNP NNS IN JJ NNP , JJ NN NNP NNP NNP NNP NNP .\nNATO says the men discussed British , U.S. and NATO roles in reconstruction , security and counter-narcotics operations , as well as the upcoming elections in Afghanistan .\tNNP VBZ DT NNS VBD JJ , NNP CC NNP NNS IN NN , NN CC NNS NNS , RB RB IN DT JJ NNS IN NNP .\nThe statement says Miliband also met with senior Afghan government officials during his fourth visit to to the country , but no further details were provided .\tDT NN VBZ NNP RB VBD IN JJ JJ NN NNS IN PRP$ JJ NN TO TO DT NN , CC DT JJ NNS VBD VBN .\nIn other news , Pakistan 's Foreign Ministry says Afghan President Hamid Karzai is set to visit Islamabad for talks on Thursday .\tIN JJ NN , NNP POS NNP NNP VBZ JJ NNP NNP NNP VBZ VBN TO VB NNP IN NNS IN NNP .\nTravel for this year 's Thanksgiving holiday in the United States is expected to reach levels not seen since the September 11 terrorist attacks three years ago .\tNN IN DT NN POS NNP NN IN DT NNP NNPS VBZ VBN TO VB NNS RB VBN IN DT NNP CD JJ NNS CD NNS RB .\nA leading U.S. travel association , the American Automobile Association , predicts that some 37 million Americans will venture at least 80 kilometers from home .\tDT VBG NNP NN NN , DT NNP NNP NNP , VBZ IN DT CD CD NNS MD VB IN JJS CD NNS IN NN .\nIt says about 4.6 million travelers will go by plane and endure the long security procedures put in place after the terror attacks carried out by 19 al-Qaida skyjackers .\tPRP VBZ IN CD CD NNS MD VB IN NN CC VB DT JJ NN NNS VBN IN NN IN DT NN NNS VBN RP IN CD NNP NNS .\nAnother 30 million Americans are expected to travel by car , leading to long traffic jams around major cities .\tDT CD CD NNS VBP VBN TO VB IN NN , VBG TO JJ NN NNS IN JJ NNS .\nIn Lebanon , hundreds of thousands of Shi'ite Muslims marched through southern Beirut Thursday to commemorate the death of a revered leader and to protest cartoons of the Prophet Muhammad .\tIN NNP , NNS IN NNS IN NNP NNPS VBD IN JJ NNP NNP TO VB DT NN IN DT JJ NN CC TO VB NNS IN DT NNP NNP .\nThe march is an annual event to mark Ashura , when Shi'ites mourn the death of the prophet 's grandson , Imam Hussain , more than 1,300 years ago .\tDT NN VBZ DT JJ NN TO VB NNP , WRB NNS VBP DT NN IN DT NN POS NN , NNP NNP , JJR IN CD NNS RB .\nShi'ite mourners dressed in black chanted slogans of allegiance to the Prophet Muhammad , and carried placards denouncing cartoon depictions of him .\tNNP NNS VBN IN JJ JJ NNS IN NN TO DT NNP NNP , CC VBD NNS VBG NN NNS IN PRP .\nThere were no reports of violence .\tEX VBD DT NNS IN NN .\nLess than a week ago , a Beirut protest against publication of the cartoons in Denmark and other European countries turned into a rampage that left the Danish embassy in flames and dozens injured .\tRBR IN DT NN RB , DT NNP NN IN NN IN DT NNS IN NNP CC JJ JJ NNS VBD IN DT NN WDT VBD DT JJ NN IN NNS CC NNS VBN .\nPresident Bush and Jordan 's King Abdullah have called on foreign governments to end the deadly rioting that has spread across the Muslim world after the cartoons .\tNNP NNP CC NNP POS NNP NNP VBP VBN IN JJ NNS TO VB DT JJ NN WDT VBZ VBN IN DT NNP NN IN DT NNS .\nIndia has released 24 Pakistani prisoners detained for border violations .\tNNP VBZ VBN CD JJ NNS VBN IN NN NNS .\nThe men , who spent between six months and 15 years in Indian jails for straying into Indian territory , were handed over to Pakistani authorities at the Wagah border crossing Thursday .\tDT NNS , WP VBD IN CD NNS CC CD NNS IN JJ NNS IN VBG IN JJ NN , VBD VBN IN TO JJ NNS IN DT NNP NN VBG NNP .\nThe handover comes ahead of Pakistani President Pervez Musharraf 's visit to New Delhi to watch the final cricket match between Indian and Pakistani cricket teams .\tDT NN VBZ RB IN JJ NNP NNP NNP POS NN TO NNP NNP TO VB DT JJ NN NN IN JJ CC JJ NN NNS .\nThe visit is part of efforts to improve relations between the two nuclear neighbors and establish a lasting peace in the region .\tDT NN VBZ NN IN NNS TO VB NNS IN DT CD JJ NNS CC VB DT JJ NN IN DT NN .\nIndia and Pakistan often arrest villagers and fishermen for illegally entering each other 's territory and territorial waters .\tNNP CC NNP RB VB NNS CC NNS IN RB VBG DT NN POS NN CC JJ NNS .\nDuring peace talks , which started last year , the two countries agreed to expedite the release of such prisoners .\tIN NN NNS , WDT VBD JJ NN , DT CD NNS VBD TO VB DT NN IN JJ NNS .\nThe U.S. trade deficit surged to an all-time record high of nearly $ 726 billion in 2005 .\tDT NNP NN NN VBD TO DT JJ NN NN IN RB $ CD CD IN CD .\nThat is a nearly 18 percent increase over the previous year and the fourth consecutive year the gap has hit a record .\tDT VBZ DT RB CD NN NN IN DT JJ NN CC DT JJ JJ NN DT NN VBZ VBN DT NN .\nFriday 's report from the Commerce Department also says the trade deficit with China was the largest with any U.S. trading partner , rising sharply to a record yearly total of nearly $ 202 billion .\tNNP POS NN IN DT NNP NNP RB VBZ DT NN NN IN NNP VBD DT JJS IN DT NNP NN NN , VBG RB TO DT NN JJ NN IN RB $ CD CD .\nThe politically sensitive China trade issue has prompted some members of the U.S. Congress to accuse Beijing of keeping the value of its currency artificially low , giving its exports a price advantage on world markets .\tDT RB JJ NNP NN NN VBZ VBN DT NNS IN DT NNP NNP TO VB NNP IN VBG DT NN IN PRP$ NN RB JJ , VBG PRP$ NNS DT NN NN IN NN NNS .\nMexican authorities say huge mudslides , flooding and torrential rains from Hurricane Stan 's recent onslaught have killed at least 130 people in Central America and Mexico .\tJJ NNS VBP JJ NNS , NN CC JJ NNS IN NNP NNP POS JJ NN VBP VBN IN JJS CD NNS IN NNP NNP CC NNP .\nStan came ashore along Mexico 's Gulf Coast on Tuesday , knocking down trees and ripping the roofs off houses with winds of 130 kilometers per hour .\tNNP VBD RB IN NNP POS NNP NNP IN NNP , VBG RP NNS CC VBG DT NNS RP NNS IN NNS IN CD NNS IN NN .\nRivers also burst their banks in southern Mexico , washing away bridges and ripping apart houses and buildings .\tNNS RB VBP PRP$ NNS IN JJ NNP , VBG RB NNS CC VBG RB NNS CC NNS .\nAdditionally , Stan has been blamed for at least 50 deaths in both El Salvador and Guatemala , where mudslides buried houses .\tRB , NNP VBZ VBN VBN IN IN JJS CD NNS IN DT NNP NNP CC NNP , WRB NNS VBN NNS .\nForecasters say the storm is now a tropical depression and dissipating over the mountains of southeastern Mexico , but they warn it is still capable of producing additional heavy rains and flooding .\tNNS VBP DT NN VBZ RB DT JJ NN CC VBG IN DT NNS IN JJ NNP , CC PRP VBP PRP VBZ RB JJ IN VBG JJ JJ NNS CC NN .\nPolice say Ms. Chang , who wrote about the Japanese occupation of China and the history of Chinese immigrants in the United States , was found dead in her car along a road south of San Francisco .\tNNS VBP NNP NNP , WP VBD IN DT JJ NN IN NNP CC DT NN IN JJ NNS IN DT NNP NNPS , VBD VBN JJ IN PRP$ NN IN DT NN NN IN NNP NNP .\nThe official cause of death has not been officially determined , but investigators believe the 36-year-old writer died from a self-inflicted gunshot wound .\tDT JJ NN IN NN VBZ RB VBN RB VBN , CC NNS VBP DT JJ NN VBD IN DT JJ NN NN .\nMs. Chang 's best-known work was the 1997 bestseller ' The Rape of Nanking , ' which described the rape , torture and killings of Chinese civilians at the hands of Japanese troops in the 1930s .\tNNP NNP POS JJ NN VBD DT CD NN `` DT NN IN VBG , `` WDT VBD DT NN , NN CC NNS IN JJ NNS IN DT NNS IN JJ NNS IN DT NNS .\nMs. Chang also wrote ' The Chinese in America , ' which looked at the history of Chinese immigrants and their descendants in the United States .\tNNP NNP RB VBD `` DT NNS IN NNP , `` WDT VBD IN DT NN IN JJ NNS CC PRP$ NNS IN DT NNP NNPS .\nIndia 's Health Ministry has cast doubt on a study by an environmental group that showed that soft drinks produced locally by two U.S. giants PepsiCo and Coca-Cola contained high levels of pesticides .\tNNP POS NNP NNP VBZ VBN NN IN DT NN IN DT JJ NN WDT VBD IN JJ NNS VBN RB IN CD NNP NNS NNP CC NNP VBD JJ NNS IN NNS .\nA committee appointed by the ministry said the residue data reported by the New Delhi-based Center for Science and Environment , or CSE , failed to prove its claims .\tDT NN VBN IN DT NN VBD DT NN NNS VBN IN DT NNP JJ NNP IN NNP CC NNP , CC NNP , VBD TO VB PRP$ NNS .\nIt also said the group 's sampling methods lacked a scientific and statistically valid basis .\tPRP RB VBD DT NN POS VBG NNS VBD DT JJ CC RB JJ NN .\nThe CSE has slammed the committee 's findings , saying it should not rely on data provided by the two companies .\tDT NNP VBZ VBN DT NN POS NNS , VBG PRP MD RB VB IN NNS VBN IN DT CD NNS .\nThe study by the CSE sparked an uproar and triggered a ban in six Indian states on the sale of beverages locally produced by the two companies .\tDT NN IN DT NNP VBD DT NN CC VBD DT NN IN CD JJ NNS IN DT NN IN NNS RB VBN IN DT CD NNS .\nPepsiCo and Coca-Cola say their soft drinks manufactured in India comply with stringent international and national standards .\tNNP CC NNP VBP PRP$ JJ NNS VBN IN NNP VB IN JJ JJ CC JJ NNS .\nU.S. Senator Edward Kennedy will be buried in Arlington National Cemetery , the final resting place of his slain brothers - President John F. Kennedy and Senator Robert Kennedy .\tNNP NNP NNP NNP MD VB VBN IN NNP NNP NNP , DT JJ VBG NN IN PRP$ NN NNS IN NNP NNP NNP NNP CC NNP NNP NNP .\nMore than 3,00,000 people , including veterans from all the nation 's wars , two former presidents , prominent explorers and other historical figures , are buried at the cemetery , located just a short distance from Washington D.C.\tJJR IN CD NNS , VBG NNS IN PDT DT NN POS NNS , CD JJ NNS , JJ NNS CC JJ JJ NNS , VBP VBN IN DT NN , VBN RB DT JJ NN IN NNP NNP\nAt the site of President Kennedy 's grave is the eternal flame where three other Kennedys are buried : the president 's wife Jacqueline Kennedy Onassis , their infant son and a stillborn daughter .\tIN DT NN IN NNP NNP POS NN VBZ DT JJ NN WRB CD JJ NNS VBP VBN IN DT NN POS NN NNP NNP NNP , PRP$ NN NN CC DT JJ NN .\nRobert Kennedy is buried nearby .\tNNP NNP VBZ VBN RB .\nPrior to be being laid to rest , Edward Kennedy will lie in repose at the John F. Kennedy Presidential Library and Museum in Boston .\tRB TO VB VBG VBN TO VB , NNP NNP MD VB IN NN IN DT NNP NNP NNP NNP NNP CC NNP IN NNP .\nA funeral will take place at Boston 's Our Lady of Perpetual Help Basilica .\tDT NN MD VB NN IN NNP POS PRP$ NN IN NNP NNP NNP .\nAustralia says it will investigate a botched military operation in Afghanistan in 2002 that killed 11 civilians .\tNNP VBZ PRP MD VB DT JJ JJ NN IN NNP IN CD WDT VBD CD NNS .\nThe Australian / New Zealand edition of Time magazine says the incident was sparked when Australian soldiers on a U.S.-led patrol shot and killed two villagers they mistakenly believed were Afghan militants .\tDT JJ NN NNP NNP NN IN NNP NN VBZ DT NN VBD VBN WRB JJ NNS IN DT JJ NN VBD CC VBD CD NNS PRP RB VBD VBD JJ NNS .\nOther tribesmen began shooting , and a rival tribe which thought it was being attacked also opened fire .\tJJ NNS VBD VBG , CC DT JJ NN WDT VBD PRP VBD VBG VBN RB VBD NN .\nThe patrol called for support , and U.S. warplanes were sent to bomb the area .\tDT NN VBD IN NN , CC NNP NNS VBD VBN TO VB DT NN .\nSixteen other civilians were also wounded in the fighting .\tCD JJ NNS VBD RB VBN IN DT NN .\nThe magazine says one of the Australian soldiers removed a turban and a gun from one of the civilians killed in the firefight .\tDT NN VBZ CD IN DT JJ NNS VBD DT NN CC DT NN IN CD IN DT NNS VBN IN DT NN .\nPolice in Lebanon and Germany have detained two more suspects in connection with last month 's failed terrorist plot to blow up two German passenger trains .\tNNS IN NNP CC NNP VBP VBN CD JJR NNS IN NN IN JJ NN POS JJ JJ NN TO VB RP CD JJ NN NNS .\nLebanese officials Friday detained a man identified only by the initials HKD .\tJJ NNS NNP VBD DT NN VBN RB IN DT NNS NNP .\nThey said they based their action on information provided by Jihad Hamad , a suspect who earlier turned himself in to Lebanese authorities .\tPRP VBD PRP VBD PRP$ NN IN NN VBN IN NNP NNP , DT NN WP RB VBD PRP IN TO VB NNS .\nAlso Friday , German officials captured a suspect in the southern city of Konstanz .\tRB NNP , JJ NNS VBD DT NN IN DT JJ NN IN NNP .\nAuthorities say the unidentified man has links to Youssef Mohamad el Hajdib , who was detained last Saturday in the northern German city of Kiel .\tNNS VBP DT JJ NN VBZ NNS TO NNP NNP NNP NNP , WP VBD VBN JJ NNP IN DT JJ JJ NN IN NNP .\nAuthorities say video surveillance cameras caught two of the suspects arrested in Germany boarding trains in Cologne on July 31 and carrying suitcases packed with homemade bombs .\tNNS VBP NN NN NNS VBD CD IN DT NNS VBN IN NNP VBG NNS IN NNP IN NNP CD CC VBG NNS VBN IN JJ NNS .\nThe bombs were placed on trains bound for the cities of Dortmund and Koblenz , but failed to explode .\tDT NNS VBD VBN IN NNS VBN IN DT NNS IN NNP CC NNP , CC VBD TO VB .\nIsraeli troops have killed two Palestinian gunmen who attacked a border crossing between the Gaza Strip and Israel .\tJJ NNS VBP VBN CD JJ NNS WP VBD DT NN VBG IN DT NNP NNP CC NNP .\nIsraeli army officials say the gunmen infiltrated into Israel early Thursday through the Erez border crossing and threw hand grenades at the checkpoint before being killed .\tJJ NN NNS VBP DT NNS VBD IN NNP RB NNP IN DT NNP NN VBG CC VBD NN NNS IN DT NN IN VBG VBN .\nThe Popular Resistance Committees and Al-Aqsa Martyrs ' Brigades claimed joint responsibility for the attack .\tDT NNP NNP NNPS CC NNP NNP POS NNS VBD JJ NN IN DT NN .\nThe Erez checkpoint is the main crossing for thousands of Palestinian workers with jobs in Israel .\tDT NNP NN VBZ DT JJ VBG IN NNS IN JJ NNS IN NNS IN NNP .\nIsrael routinely closes the crossing after violent incidents .\tNNP RB VBZ DT VBG IN JJ NNS .\nSeparately , the Palestinian militant group Hamas has warned Palestinian President Mahmoud Abbas not to make changes to the government without its approval .\tRB , DT JJ JJ NN NNP VBZ VBN JJ NNP NNP NNP RB TO VB NNS TO DT NN IN PRP$ NN .\nIn Cairo , Hamas political leader Khaled Mashaal also vowed that the militant group , which swept parliamentary elections last month , will not renounce violence against Israel .\tIN NNP , NNP JJ NN NNP NNP RB VBD IN DT JJ NN , WDT VBD JJ NNS JJ NN , MD RB VB NN IN NNP .\nPolice in Pakistan say gunmen opened fire on the car carrying the nation 's religious affairs minister , wounding him and killing his driver .\tNNS IN NNP VBP NNS VBD NN IN DT NN VBG DT NN POS JJ NNS NN , VBG PRP CC VBG PRP$ NN .\nAuthorities say minister Hamid Saeed Kazmi 's vehicle was attacked near his office in the capital , Islamabad , Wednesday .\tNNS VBP NN NNP NNP NNP POS NN VBD VBN IN PRP$ NN IN DT NN , NNP , NNP .\nFurther details were not immediately confirmed .\tJJ NNS VBD RB RB VBN .\nVote counting in Iraq 's constitutional referendum continued Sunday , with spot checks of preliminary results suggesting the U.S.-backed charter may have passed .\tJJ NN IN NNP POS JJ NN VBN NNP , IN NN NNS IN JJ NNS VBG DT JJ NN MD VB VBN .\nThe Associated Press says an early vote count in crucial Diyala province showed 70 percent of voters saying ' yes ' to the constitution .\tDT NNP NNP VBZ DT JJ NN NN IN JJ NNP NN VBD CD NN IN NNS VBG `` UH `` TO DT NN .\nAnd with most ballots counted in Ninevah province , AP reports ' yes ' votes were outnumbering ' no ' nearly four to one .\tCC IN JJS NNS VBN IN NNP NN , NNP VBZ `` UH `` NNS VBD VBG `` DT `` RB CD TO CD .\nDiyala and Ninevah are two of four key provinces where Sunni Arab opponents were relying on residents to defeat the constitution .\tNNP CC NNP VBP CD IN CD JJ NNS WRB NNP NNP NNS VBD VBG IN NNS TO VB DT NN .\nThe charter will pass with a simple majority , but will fail if two-thirds of voters in any three provinces reject it .\tDT NN MD VB IN DT JJ NN , CC MD VB IN NNS IN NNS IN DT CD NNS VBP PRP .\nMore results are expected later today and Monday .\tJJR NNS VBP VBN RB NN CC NNP .\nThe U.S. military says that five American soldiers were killed by a roadside bomb in the mostly Sunni city of Ramadi during voting on Saturday , but otherwise said the day was relatively peaceful .\tDT NNP NN VBZ IN CD JJ NNS VBD VBN IN DT NN NN IN DT RB JJ NN IN NNP IN VBG IN NNP , CC RB VBD DT NN VBD RB JJ .\nThe U.S. government reported a one percent increase in retail sales for January .\tDT NNP NN VBD DT CD NN NN IN JJ NNS IN NNP .\nEconomists watch retail sales closely because consumer demand drives about two-thirds of U.S. economic activity .\tNNS VBP JJ NNS RB IN NN NN VBZ IN NNS IN NNP JJ NN .\nAccording to the Commerce Department , this is the first sales increase in seven months .\tVBG TO DT NNP NNP , DT VBZ DT JJ NNS NN IN CD NNS .\nBut the economy remains troubled , as a separate Labor Department report showed the number of Americans continuing to collect unemployment rose for the fourth week in a row .\tCC DT NN VBZ JJ , IN DT JJ NNP NNP NN VBD DT NN IN NNS VBG TO VB NN VBD IN DT JJ NN IN DT NN .\nThe total is now just over 4.8 million , which is a record-high .\tDT NN VBZ RB RB IN CD CD , WDT VBZ DT NN .\nThe number of people signing up for unemployment benefits declined slightly - by 8000 to a total of 6,23,000 - last week .\tDT NN IN NNS VBG RP IN NN NNS VBD RB IN IN CD TO DT NN IN CD : JJ NN .\nThat level is close to a 26-year high .\tDT NN VBZ RB TO DT JJ NN .\nIraqi police say five people have been killed in a bomb blast near a funeral tent in the capital .\tJJ NNS VBP CD NNS VBP VBN VBN IN DT NN NN IN DT JJ NN IN DT NN .\nAuthorities say another 28 people were wounded in Wednesday 's blast in Baghdad 's mostly Shi'ite slum of Sadr City .\tNNS VBP DT CD NNS VBD VBN IN NNP POS NN IN NNP POS RB JJ NN IN NNP NNP .\nElsewhere in the country Wednesday , Iraqi officials say a car bomb blast killed six people , including two traffic police officers , in western Anbar province .\tRB IN DT NN NNP , JJ NNS VBP DT NN NN NN VBD CD NNS , VBG CD NN NN NNS , IN JJ NNP NN .\nAuthorities say a police checkpoint in the provincial capital , Ramadi , was the target of the attack .\tNNS VBP DT NN NN IN DT JJ NN , NNP , VBD DT NN IN DT NN .\nSixteen people were wounded in the explosion .\tCD NNS VBD VBN IN DT NN .\nIraq has seen multiple deadly attacks in the two weeks since U.S. combat troops withdrew from Iraqi cities .\tNNP VBZ VBN JJ JJ NNS IN DT CD NNS IN NNP NN NNS VBD IN JJ NNS .\nThe U.S. Food and Drug Administration has approved a new treatment for late-stage cervical cancer .\tDT NNP NNP CC NNP NNP VBZ VBN DT JJ NN IN NN JJ NN .\nThe treatment is a combination of the drugs Hycamtin and Cisplatin , and is approved for women with incurable , recurrent or persistent cancer of the cervix that has spread to other organs .\tDT NN VBZ DT NN IN DT NNS NNP CC NNP , CC VBZ VBN IN NNS IN JJ , JJ CC JJ NN IN DT NN WDT VBZ VBN TO JJ NNS .\nThe combination is the first time a treatment has been recommended for late-stage cervical cancer .\tDT NN VBZ DT JJ NN DT NN VBZ VBN VBN IN JJ JJ NN .\nThe FDA originally approved Hycamtin in 1996 for treating ovarian cancer and in 1998 for small-cell lung cancer .\tDT NNP RB VBD NNP IN CD IN VBG JJ NN CC IN CD IN JJ NN NN .\nFDA officials say the drug therapy is not a cure , but a potentially life-prolonging option for thousands of women .\tNNP NNS VBP DT NN NN VBZ RB DT NN , CC DT RB JJ NN IN NNS IN NNS .\nEarlier this month , the FDA approved the first vaccine to protect women and girls from contracting the disease .\tRBR DT NN , DT NNP VBD DT JJ NN TO VB NNS CC NNS IN VBG DT NN .\nEach year , about 10,000 new cases of cervical cancer are diagnosed in American women and there are 3,700 related deaths .\tDT NN , IN CD JJ NNS IN JJ NN VBP VBN IN JJ NNS CC EX VBP CD JJ NNS .\nSome 3,00,000 women die of the disease each year worldwide .\tDT CD NNS VBP IN DT NN DT NN NN .\nA court in London has remanded into custody a man charged with attempting to bomb the London transport system in July .\tDT NN IN NNP VBZ VBN IN NN DT NN VBN IN VBG TO VB DT NNP NN NN IN NNP .\nEthiopian-born Hamdi Issac , also known as Osman Hussain , made his first court appearance Friday , a day after being extradited to Britain from Italy .\tJJ NNP NNP , RB VBN IN NNP NNP , VBD PRP$ JJ NN NN NNP , DT NN IN VBG VBN TO NNP IN NNP .\nHis next court date is December 8 .\tPRP$ JJ NN NN VBZ NNP CD .\nHamdi Issac was arrested immediately after his arrival in Britain Thursday .\tNNP NNP VBD VBN RB IN PRP$ NN IN NNP NNP .\nHe is facing charges including attempted murder and illegal possession of explosives .\tPRP VBZ VBG NNS VBG JJ NN CC JJ NN IN NNS .\nItalian police arrested the British citizen in Rome a week after the failed July 21 attacks in London .\tJJ NNS VBN DT JJ NN IN NNP DT NN IN DT VBN NNP CD NNS IN NNP .\nThose attacks caused no fatalities but brought chaos to London two weeks after suicide bombers killed 52 people in the British capital .\tDT NNS VBD DT NNS CC VBD NN TO NNP CD NNS IN NN NNS VBD CD NNS IN DT JJ NN .\nHamdi Issac has admitted taking part in the second set of attacks but has said the action was meant to scare people , not kill them .\tNNP NNP VBZ VBN VBG NN IN DT JJ NN IN NNS CC VBZ VBN DT NN VBD VBN TO VB NNS , RB VB PRP .\nCroatian Prime Minister Ivo Sanader says his government will take every measure to bring to justice those responsible for the Monday night attack on a leading investigative journalist .\tJJ NNP NNP NNP NNP VBZ PRP$ NN MD VB DT NN TO VB TO NN DT JJ IN DT NNP NN NN IN DT VBG JJ NN .\nThe Croatian news agency Hina says Mr. Sanader made his comments as he met in Zagreb with leaders of Croatia 's Journalists Association after the attack on Dusan Miljus , a reporter for the Jutarnji List daily .\tDT JJ NN NN NNP VBZ NNP NNP VBD PRP$ NNS IN PRP VBD IN NNP IN NNS IN NNP POS NNPS NNP IN DT NN IN NNP NNP , DT NN IN DT NNP NNP RB .\nMiljus is known for his reports on organized crime activities\tNNP VBZ VBN IN PRP$ NNS IN JJ NN NNS\nThe journalist suffered a concussion and broken arm when masked attackers assaulted him with baseball bats in front of his Zagreb home .\tDT NN VBD DT NN CC JJ NN WRB VBN NNS VBD PRP IN NN NNS IN NN IN PRP$ NNP NN .\nThe incident followed a series of death threats against Miljus .\tDT NN VBD DT NN IN NN NNS IN NNP .\nOrganized crime groups in Croatia have repeatedly targeted journalists who had probed their activities .\tVBN NN NNS IN NNP VBP RB VBN NNS WP VBD VBN PRP$ NNS .\nInsurgents in Iraq carried out a series of attacks Sunday , killing two American soldiers and at least five Iraqis .\tNNS IN NNP VBD RP DT NN IN NNS NNP , VBG CD JJ NNS CC IN JJS CD NNS .\nU.S. officials said the two Americans were killed by bombs in the Iraqi capital .\tNNP NNS VBD DT CD NNS VBD VBN IN NNS IN DT JJ NN .\nSouth of Baghdad , a mortar attack killed two Iraqis , and gunmen killed a policeman in Mosul .\tNNP IN NNP , DT NN NN VBD CD NNS , CC NNS VBD DT NN IN NNP .\nTwo civilians died in separate incidents in the northern city of Kirkuk .\tCD NNS VBD IN JJ NNS IN DT JJ NN IN NNP .\nMeanwhile , demonstrations were held in several Iraqi cities by Sunni Arabs , who have complained of fraud in the recent parliamentary vote .\tRB , NNS VBD VBN IN JJ JJ NNS IN NNP NNS , WP VBP VBN IN NN IN DT JJ JJ NN .\nShi'ite Arabs in Baghdad also marched Sunday to show support for Shi'ite candidates .\tNNP NNS IN NNP RB VBD NNP TO VB NN IN NNP NNS .\nInitial results showed a key Shi'ite coalition was leading the vote .\tJJ NNS VBD DT JJ NNP NN VBD VBG DT NN .\nIn northern Iraq , Iraq 's President Jalal Talabani said Iraq 's new government should include all of Iraq 's religious and ethnic groups .\tIN JJ NNP , NNP POS NNP NNP NNP VBD NNP POS JJ NN MD VB DT IN NNP POS JJ CC JJ NNS .\nA United Nations official has said Liberia is meeting benchmarks that would end Security Council sanctions on Liberian diamonds and timber .\tDT NNP NNP NN VBZ VBN NNP VBZ VBG NNS WDT MD VB NNP NNP NNS IN JJ NNS CC NN .\nU.N. Sanctions chief Ellen Loj told reporters Saturday in Monrovia that Liberia has more work to do , but is working diligently to meet the conditions set for the lifting of the trade sanctions .\tNNP NNPS NN NNP NNP VBD NNS NNP IN NNP IN NNP VBZ JJR NN TO VB , CC VBZ VBG RB TO VB DT NNS VBN IN DT NN IN DT NN NNS .\nA ban on Liberian diamonds was imposed in 2001 by the U.N. Security Council after a British investigation found former Liberian President Charles Taylor was trading the diamonds for weapons for rebels in neighboring Sierra Leone .\tDT NN IN JJ NNS VBD VBN IN CD IN DT NNP NNP NNP IN DT JJ NN VBD JJ JJ NNP NNP NNP VBD VBG DT NNS IN NNS IN NNS IN VBG NNP NNP .\nThe timber sanctions were imposed in 2003 when the Security Council said Taylor was using timber proceeds to fund war at home and in Sierra Leone .\tDT NN NNS VBD VBN IN CD WRB DT NNP NNP VBD NNP VBD VBG NN NNS TO VB NN IN NN CC IN NNP NNP .\nEllen Loj said the Security Council will meet in June to review the sanctions .\tNNP NNP VBD DT NNP NNP MD VB IN NNP TO VB DT NNS .\nA series of explosions shook the Iraqi capital Wednesday , while a high-ranking U.S. official visited the country .\tDT NN IN NNS VBD DT JJ NN NNP , IN DT JJ NNP NN VBD DT NN .\nDeputy Secretary of State Robert Zoellick visited the former insurgent stronghold of Fallujah .\tNNP NNP IN NNP NNP NNP VBD DT JJ JJ NN IN NNP .\nHe was scheduled to also meet in Baghdad with Iraq 's new interim president and prime minister .\tPRP VBD VBN TO RB VB IN NNP IN NNP POS JJ JJ NN CC JJ NN .\nMeanwhile , near Kirkuk , nine policemen were killed while trying to defuse a bomb .\tRB , IN NNP , CD NNS VBD VBN IN VBG TO VB DT NN .\nIn Baghdad , a string of explosions killed five Iraqis and injured eight other people , including four U.S. contractors .\tIN NNP , DT NN IN NNS VBN CD NNS CC JJ CD JJ NNS , VBG CD NNP NNS .\nAlso , the U.S. military announced today that an American soldier was killed Tuesday in Ramadi during combat operations .\tRB , DT NNP NN VBD NN IN DT JJ NN VBD VBN NNP IN NNP IN NN NNS .\nAnd al-Jazeera television has aired a video it says shows an American contractor who was abducted Monday near Baghdad .\tCC JJ NN VBZ VBN DT NN PRP VBZ VBZ DT JJ NN WP VBD VBN NNP IN NNP .\nThe video showed the man urging U.S. officials to open a dialogue with insurgents in order to save his life .\tDT NN VBD DT NN VBG NNP NNS TO VB DT NN IN NNS IN NN TO VB PRP$ NN .\nThe White House says it is in contact with the hostage 's family .\tDT NNP NNP VBZ PRP VBZ IN NN IN DT NN POS NN .\nVenezuelan President Hugo Chavez says a U.S. Navy attache accused of spying has been ordered out of the country .\tJJ NNP NNP NNP VBZ DT NNP NNP NN VBN IN VBG VBZ VBN VBN IN IN DT NN .\nMr. Chavez said Thursday that naval Captain John Correa must leave Venezuela immediately .\tNNP NNP VBD NNP IN JJ NNP NNP NNP MD VB NNP RB .\nCorrea has been named in connection with accusations that several Venezuelan military officers had passed information to the U.S. military through the U.S. embassy in Caracas .\tNNP VBZ VBN VBN IN NN IN NNS IN JJ JJ JJ NNS VBD VBN NN TO DT NNP NN IN DT NNP NN IN NNP .\nMr. Chavez on Monday accused U.S. officers at the embassy of spying .\tNNP NNP IN NNP VBD NNP NNS IN DT NN IN VBG .\nVice President Jose Vicente Rangel said last week that several low-level Venezuelan officers had been caught passing information to the U.S. military .\tNNP NNP NNP NNP NNP VBD JJ NN IN JJ JJ JJ NNS VBD VBN VBN VBG NN TO DT NNP NN .\nU.S. State Department spokesman , Adam Ereli would not comment specifically on the charges of espionage .\tNNP NNP NNP NN , NNP NNP MD RB VB RB IN DT NNS IN NN .\nBut in remarks earlier this week , the official said the United States has had good relations with the Venezuelan military in the past and hopes that can continue .\tCC IN NNS RBR DT NN , DT NN VBD DT NNP NNP VBZ VBN JJ NNS IN DT JJ NN IN DT NN CC NNS WDT MD VB .\nThe cuts announced Thursday would reduce the bankrupt airline 's workforce by 17 percent and help Delta save $ 3 billion .\tDT NNS VBD NNP MD VB DT JJ NN POS NN IN CD NN CC VB NNP VB $ CD CD .\nDelta is also cutting wages , starting with a 25 percent reduction for company chief executive Gerald Grinstein .\tNNP VBZ RB VBG NNS , VBG IN DT CD NN NN IN NN JJ NN NNP NNP .\nLower ranking employees face smaller cuts .\tNNP JJ NNS VBP JJR NNS .\nDelta is also cutting scores of aircraft from its fleet , and shifting some other flights from highly-competitive domestic routes to more-profitable overseas destinations .\tNNP VBZ RB VBG NNS IN NN IN PRP$ NN , CC VBG DT JJ NNS IN JJ JJ NNS TO JJ JJ NNS .\nThe job cuts come atop 24,000 layoffs that have slashed Delta 's workforce since the 2001 terror attacks that hurt business for major airlines .\tDT NN NNS VBP IN CD NNS WDT VBP VBN NNP POS NN IN DT CD NN NNS WDT VBP NN IN JJ NNS .\nThey have been battling strong competition from budget-price carriers and soaring fuel prices ever since .\tPRP VBP VBN VBG JJ NN IN JJ NNS CC VBG NN NNS RB IN .\nElections officials in Afghanistan have disqualified dozens of candidates from the country 's upcoming parliamentary elections because of alleged links to militias .\tNNS NNS IN NNP VBP VBN NNS IN NNS IN DT NN POS JJ JJ NNS IN IN JJ NNS TO NNS .\nA commissioner of the U.N.-backed Electoral Complaints Commission , Ahmad Zia Rafat , said Wednesday that 36 names were removed from the list of final candidates .\tDT NN IN DT JJ NNP NNPS NNP , NNP NNP NNP , VBD NNP IN CD NNS VBD VBN IN DT NN IN JJ NNS .\nThe ECC said the candidates were given a chance to fight their disqualification , but they failed to prove their eligibility to run in the September election .\tDT NNP VBD DT NNS VBD VBN DT NN TO VB PRP$ NN , CC PRP VBD TO VB PRP$ NN TO VB IN DT NNP NN .\nAfghanistan 's election laws prohibit any members of illegal armed groups from seeking office .\tNNP POS NN NNS VBP DT NNS IN JJ JJ NNS IN VBG NN .\nAfghan election officials have said they are determined to hold a fair parliamentary election , after fraud allegations marred last year 's presidential vote .\tJJ NN NNS VBP VBN PRP VBP VBN TO VB DT JJ JJ NN , IN NN NNS VBD JJ NN POS JJ NN .\nThe ECC found there were massive irregularities in those ballots , and threw out a third of the votes cast for President Hamid Karzai .\tDT NNP VBD EX VBD JJ NNS IN DT NNS , CC VBD RP DT NN IN DT NNS VBD IN NNP NNP NNP .\nThe economy of Saint Kitts and Nevis is heavily dependent upon tourism revenues , which has replaced sugar , the traditional mainstay of the economy until the 1970s .\tDT NN IN NNP NNP CC NNP VBZ RB JJ IN NN NNS , WDT VBZ VBN NN , DT JJ NN IN DT NN IN DT NNS .\nFollowing the 2005 harvest , the government closed the sugar industry after decades of losses of 03-Apr % of GDP annually .\tVBG DT CD NN , DT NN VBD DT NN NN IN NNS IN NNS IN CD NN IN NN RB .\nTo compensate for employment losses , the government has embarked on a program to diversify the agricultural sector and to stimulate other sectors of the economy , such as tourism , export-oriented manufacturing , and offshore banking .\tTO VB IN NN NNS , DT NN VBZ VBN IN DT NN TO VB DT JJ NN CC TO VB JJ NNS IN DT NN , JJ IN NN , JJ NN , CC JJ NN .\nMore than 2,00,000 tourists visited the islands in 2009 .\tJJR IN CD NNS VBD DT NNS IN CD .\nLike other tourist destinations in the Caribbean , St. Kitts and Nevis is vulnerable to damage from natural disasters and shifts in tourism demand .\tIN JJ NN NNS IN DT NNP , NNP NNP CC NNP VBZ JJ TO NN IN JJ NNS CC NNS IN NN NN .\nThe current government is constrained by one of the world 's highest public debt burdens equivalent to roughly 185 % of GDP , largely attributable to public enterprise losses .\tDT JJ NN VBZ VBN IN CD IN DT NN POS JJS JJ NN NNS JJ TO RB CD NN IN NN , RB JJ TO JJ NN NNS .\nUS Government assistance is the mainstay of this tiny island economy .\tNNP NNP NN VBZ DT NN IN DT JJ NN NN .\nThe Marshall Islands received more than $ 1 billion in aid from the US from 1986 - 2002 .\tDT NNP NNP VBD JJR IN $ CD CD IN NN IN DT NNP IN CD IN CD .\nAgricultural production , primarily subsistence , is concentrated on small farms ; the most important commercial crops are coconuts and breadfruit .\tJJ NN , RB NN , VBZ VBN IN JJ NNS ; DT RBS JJ JJ NNS VBP NNS CC NN .\nSmall-scale industry is limited to handicrafts , tuna processing , and copra .\tJJ NN VBZ VBN TO NNS , NN NN , CC NN .\nThe tourist industry , now a small source of foreign exchange employing less than 10 % of the labor force , remains the best hope for future added income .\tDT NN NN , RB DT JJ NN IN JJ NN VBG JJR IN CD NN IN DT NN NN , VBZ DT JJS NN IN JJ JJ NN .\nThe islands have few natural resources , and imports far exceed exports .\tDT NNS VBP JJ JJ NNS , CC NNS RB VBP NNS .\nUnder the terms of the Amended Compact of Free Association , the US will provide millions of dollars per year to the Marshall Islands ( RMI ) through 2023 , at which time a Trust Fund made up of US and RMI contributions will begin perpetual annual payouts .\tIN DT NNS IN DT JJ NN IN NNP NNP , DT NNP MD VB NNS IN NNS IN NN TO DT NNP NNP LRB NNP RRB IN CD , IN WDT NN DT NNP NNP VBD IN IN NNP CC NNP NNS MD VB JJ JJ NNS .\nGovernment downsizing , drought , a drop in construction , the decline in tourism , and less income from the renewal of fishing vessel licenses have held GDP growth to an average of 1 % over the past decade .\tNNP NN , NN , DT NN IN NN , DT NN IN NN , CC JJR NN IN DT NN IN NN NN NNS VBP VBN NN NN TO DT NN IN CD NN IN DT JJ NN .\nAzerbaijan 's high economic growth during 2006 - 8 was attributable to large and growing oil exports , but some non-export sectors also featured double-digit growth , spurred by growth in the construction , banking , and real estate sectors .\tNNP POS JJ JJ NN IN CD : CD VBD JJ TO JJ CC JJ NN NNS , CC DT JJ NNS RB VBD JJ NN , VBN IN NN IN DT NN , NN , CC JJ NN NNS .\nIn 2009 , economic growth remained above 9 % even as oil prices moderated and growth in the construction sector cooled .\tIN CD , JJ NN VBD IN CD NN RB IN NN NNS VBD CC NN IN DT NN NN VBD .\nIn 2010 , economic growth slowed to 3.7 % , although the impact of the global financial crisis was less severe than in many other countries in the region .\tIN CD , JJ NN VBD TO CD NN , IN DT NN IN DT JJ JJ NN VBD RBR JJ IN IN JJ JJ NNS IN DT NN .\nThe current global economic slowdown presents some challenges for the Azerbaijani economy as oil prices remain below their mid-2008 highs , highlighting Azerbaijan 's reliance on energy exports and lackluster attempts to diversify its economy .\tDT JJ JJ JJ NN VBZ DT NNS IN DT NNP NN IN NN NNS VBP IN PRP$ JJ NNS , VBG NNP POS NN IN NN NNS CC JJ NNS TO VB PRP$ NN .\nAzerbaijan 's oil production increased dramatically in 1997 , when Azerbaijan signed the first production-sharing arrangement ( PSA ) with the Azerbaijan International Operating Company .\tNNP POS NN NN VBD RB IN CD , WRB NNP VBD DT JJ JJ NN LRB NNP RRB IN DT NNP NNP NNP NNP .\nOil exports through the Baku-Tbilisi-Ceyhan Pipeline remain the main economic driver while efforts to boost Azerbaijan 's gas production are underway .\tNN NNS IN DT JJ NNP VBP DT JJ JJ NN IN NNS TO VB NNP POS NN NN VBP NN .\nHowever , Azerbaijan has made only limited progress on instituting market-based economic reforms .\tRB , NNP VBZ VBN RB JJ NN IN VBG JJ JJ NNS .\nPervasive public and private sector corruption and structural economic inefficiencies remain a drag on long-term growth , particularly in non-energy sectors .\tJJ JJ CC JJ NN NN CC JJ JJ NNS VBP DT NN IN JJ NN , RB IN JJ NNS .\nSeveral other obstacles impede Azerbaijan 's economic progress : the need for stepped up foreign investment in the non-energy sector and the continuing conflict with Armenia over the Nagorno-Karabakh region .\tJJ JJ NNS VBP NNP POS JJ NN IN DT NN IN VBN RP JJ NN IN DT JJ NN CC DT VBG NN IN NNP IN DT JJ NN .\nTrade with Russia and the other former Soviet republics is declining in importance , while trade is building with Turkey and the nations of Europe .\tNNP IN NNP CC DT JJ JJ JJ NNS VBZ VBG IN NN , IN NN VBZ VBG IN NNP CC DT NNS IN NNP .\nLong-term prospects will depend on world oil prices , the location of new oil and gas pipelines in the region , and Azerbaijan 's ability to manage its energy wealth to promote sustainable growth in non-energy sectors of the economy and spur employment .\tJJ NNS MD VB IN NN NN NNS , DT NN IN JJ NN CC NN NNS IN DT NN , CC NNP POS NN TO VB PRP$ NN NN TO VB JJ NN IN JJ NNS IN DT NN CC VB NN .\nThe Taino - indigenous inhabitants of Hispaniola prior to the arrival of the Europeans - divided the island into five chiefdoms and territories .\tDT NNS : JJ NNS IN NNP RB TO DT NN IN DT NNS IN VBN DT NN IN CD NNS CC NNS .\nChristopher COLUMBUS explored and claimed the island on his first voyage in 1492 ; it became a springboard for Spanish conquest of the Caribbean and the American mainland .\tNNP NNP VBD CC VBD DT NN IN PRP$ JJ NN IN CD ; PRP VBD DT NN IN JJ NN IN DT NNP CC DT JJ NN .\nIn 1697 , Spain recognized French dominion over the western third of the island , which in 1804 became Haiti .\tIN CD , NNP VBD JJ NN IN DT JJ NN IN DT NN , WDT IN CD VBD NNP .\nThe remainder of the island , by then known as Santo Domingo , sought to gain its own independence in 1821 but was conquered and ruled by the Haitians for 22 years ; it finally attained independence as the Dominican Republic in 1844 .\tDT NN IN DT NN , IN RB VBN IN NNP NNP , VBD TO VB PRP$ JJ NN IN CD CC VBD VBN CC VBN IN DT NNS IN CD NNS ; PRP RB VBD NN IN DT NNP NNP IN CD .\nIn 1861 , the Dominicans voluntarily returned to the Spanish Empire , but two years later they launched a war that restored independence in 1865 .\tIN CD , DT NNS RB VBD TO DT JJ NN , CC CD NNS RB PRP VBD DT NN WDT VBD NN IN CD .\nA legacy of unsettled , mostly non-representative rule followed , capped by the dictatorship of Rafael Leonidas TRUJILLO from 1930 - 61 .\tDT NN IN JJ , RB JJ NN VBD , VBN IN DT NN IN NNP NNP NNP IN CD IN CD .\nJuan BOSCH was elected president in 1962 but was deposed in a military coup in 1963 .\tNNP NNP VBD VBN NN IN CD CC VBD VBN IN DT JJ NN IN CD .\nIn 1965 , the United States led an intervention in the midst of a civil war sparked by an uprising to restore BOSCH .\tIN CD , DT NNP NNPS VBD DT NN IN DT NN IN DT JJ NN VBN IN DT NN TO VB NNP .\nIn 1966 , Joaquin BALAGUER defeated BOSCH in an election to become president .\tIN CD , NNP NNP VBD NNP IN DT NN TO VB NN .\nBALAGUER maintained a tight grip on power for most of the next 30 years when international reaction to flawed elections forced him to curtail his term in 1996 .\tNNP VBD DT JJ NN IN NN IN JJS IN DT JJ CD NNS WRB JJ NN TO JJ NNS VBD PRP TO VB PRP$ NN IN CD .\nSince then , regular competitive elections have been held in which opposition candidates have won the presidency .\tIN RB , JJ JJ NNS VBP VBN VBN IN WDT NN NNS VBP VBN DT NN .\nFormer President ( 1996 - 2000 ) Leonel FERNANDEZ Reyna won election to a new term in 2004 following a constitutional amendment allowing presidents to serve more than one term , and was since reelected to a second consecutive term .\tJJ NNP LRB CD IN CD RRB NNP NNP NNP VBD NN TO DT JJ NN IN CD VBG DT JJ NN VBG NNS TO VB JJR IN CD NN , CC VBD IN VBN TO DT JJ JJ NN .\nPopes in their secular role ruled portions of the Italian peninsula for more than a thousand years until the mid 19th century , when many of the Papal States were seized by the newly united Kingdom of Italy .\tNNS IN PRP$ JJ NN VBD NNS IN DT JJ NN IN JJR IN DT CD NNS IN DT JJ JJ NN , WRB NN IN DT NNP NNPS VBD VBN IN DT RB VBN NNP IN NNP .\nIn 1870 , the pope 's holdings were further circumscribed when Rome itself was annexed .\tIN CD , DT NN POS NNS VBD JJ VBN WRB NNP PRP VBD VBN .\nDisputes between a series of ' prisoner ' popes and Italy were resolved in 1929 by three Lateran Treaties , which established the independent state of Vatican City and granted Roman Catholicism special status in Italy .\tNNS IN DT NN IN `` NN `` NNS CC NNP VBD VBN IN CD IN CD NNP NNPS , WDT VBD DT JJ NN IN NNP NNP CC VBD NNP NNP JJ NN IN NNP .\nIn 1984 , a concordat between the Holy See and Italy modified certain of the earlier treaty provisions , including the primacy of Roman Catholicism as the Italian state religion .\tIN CD , DT NN IN DT NNP NNP CC NNP VBN NN IN DT JJR NN NNS , VBG DT NN IN NNP NNP IN DT JJ NN NN .\nPresent concerns of the Holy See include religious freedom , international development , the environment , the Middle East , China , the decline of religion in Europe , terrorism , interreligious dialogue and reconciliation , and the application of church doctrine in an era of rapid change and globalization .\tJJ NNS IN DT NNP NNP VBP JJ NN , JJ NN , DT NN , DT NNP NNP , NNP , DT NN IN NN IN NNP , NN , JJ NN CC NN , CC DT NN IN NN NN IN DT NN IN JJ NN CC NN .\nAbout 1 billion people worldwide profess the Catholic faith .\tIN CD CD NNS JJ NN DT NNP NN .\nAN ASS congratulated a Horse on being so ungrudgingly and carefully provided for , while he himself had scarcely enough to eat and not even that without hard work .\tDT NNP VBD DT NN IN VBG RB RB CC RB VBN IN , IN PRP PRP VBD RB JJ TO VB CC RB RB IN IN JJ NN .\nBut when war broke out , a heavily armed soldier mounted the Horse , and riding him to the charge , rushed into the very midst of the enemy .\tCC WRB NN VBD RP , DT RB JJ NN VBD DT NN , CC VBG PRP TO DT NN , VBD IN DT RB NN IN DT NN .\nThe Horse was wounded and fell dead on the battlefield .\tDT NN VBD VBN CC VBD RB IN DT NN .\nThen the Ass , seeing all these things , changed his mind , and commiserated the Horse .\tRB DT NNP , VBG PDT DT NNS , VBD PRP$ NN , CC VBD DT NN .\n' SEE these valuable golden eggs , ' said a Man that owned a Goose .\t`` VB DT JJ JJ NNS , `` VBD DT NN WDT VBD DT NN .\n' Surely a Goose which can lay such eggs as those must have a gold mine inside her . '\t`` RB DT NN WDT MD VB JJ NNS IN DT MD VB DT NN NN IN PRP . ``\nSo he killed the Goose and cut her open , but found that she was just like any other goose .\tRB PRP VBD DT NNP CC VBD PRP JJ , CC VBD IN PRP VBD RB IN DT JJ NN .\nMoreover , on examining the eggs that she had laid he found they were just like any other eggs .\tRB , IN VBG DT NNS IN PRP VBD VBN PRP VBD PRP VBD RB IN DT JJ NNS .\nLawyers in Pakistan continued their protest marches this week amid an effort to press the government to reinstate the judges replaced last year by President Pervez Musharraf .\tNNS IN NNP VBD PRP$ NN NNS DT NN IN DT NN TO VB DT NN TO VB DT NNS VBN JJ NN IN NNP NNP NNP .\nAfter weeks of negotiations with his fellow coalition leader Nawaz Sharif , Asif Ali Zardari says despite differences , he remains confident the two parties will reach agreement .\tIN NNS IN NNS IN PRP$ JJ NN NN NNP NNP , NNP NNP NNP VBZ IN NNS , PRP VBZ JJ DT CD NNS MD VB NN .\nAnd some Pakistanis now living in the U.S. say the new government can not succeed without independent judges .\tCC DT NNS RB VBG IN DT NNP VBP DT JJ NN MD RB VB IN JJ NNS .\nVOA 's Ravi Khanna reports President Musharraf , so far , has made no public comment .\tNNP POS NNP NNP VBZ NNP NNP , RB RB , VBZ VBN DT JJ NN .\nA General Electric subsidiary in Brazil that provides maintenance to Brazil 's financially-troubled Vasp airline , is asking a local court to declare the carrier bankrupt .\tDT NNP NNP NN IN NNP WDT VBZ NN TO NNP POS JJ NNP NN , VBZ VBG DT JJ NN TO VB DT NN JJ .\nCelma , a subsidiary of the U.S. company , said Wednesday that Brazil 's fourth-largest airline owes it some $ 3.2 million .\tNNP , DT NN IN DT NNP NN , VBD NNP IN NNP POS JJ NN VBZ PRP DT $ CD CD .\nThe announcement follows Vasp 's firing Tuesday of 380 of its more than 5,000 workers .\tDT NN VBZ NNP POS NN NNP IN CD IN PRP$ JJR IN CD NNS .\nThe airline also took six planes out of service recently .\tDT NN RB VBD CD NNS IN IN NN RB .\nVasp is one of several Brazilian airlines that have suffered financial troubles in recent years due to a drop in passenger demand .\tNNP VBZ CD IN JJ JJ NNS WDT VBP VBN JJ NNS IN JJ NNS JJ TO DT NN IN NN NN .\nCameroon state radio reports as many as 30 people have died or are missing from a boat accident off the coast in the Gulf of Guinea .\tNNP NN NN VBZ RB JJ IN CD NNS VBP VBN CC VBP VBG IN DT NN NN IN DT NN IN DT NNP IN NNP .\nThe radio report Tuesday said 30 other people survived the accident and were being treated at a local hospital .\tDT NN NN NNP VBD CD JJ NNS VBD DT NN CC VBD VBG VBN IN DT JJ NN .\nIt said the boat was traveling from Nigeria to Gabon when it went down late Monday near the southwestern fishing village of Campo .\tPRP VBD DT NN VBD VBG IN NNP TO NNP WRB PRP VBD RB RB NNP IN DT JJ NN NN IN NNP .\nThe report said the boat was carrying nationals from Nigeria , Mali and Benin when it capsized .\tDT NN VBD DT NN VBD VBG NNS IN NNP , NNP CC NNP WRB PRP VBD .\nIt is not clear what caused the accident .\tPRP VBZ RB JJ WP VBD DT NN .\nThe Gulf of Guinea is often used as a transit route by West Africans looking to find jobs in Gabon and Cameroon .\tDT NNP IN NNP VBZ RB VBN IN DT NN NN IN NNP NNS VBG TO VB NNS IN NNP CC NNP .\nThe small Midwestern town of Slater ,\tDT JJ JJ NN IN NNP ,\nMissouri is planning a three-day festival to honor its most illustrious inhabitant , Steve McQueen .\tNNP VBZ VBG DT JJ NN TO VB PRP$ RBS JJ NN , NNP NNP .\nAlthough born in Indiana , the movie star spent most of his childhood in Slater on his great-uncle 's farm .\tIN VBN IN NNP , DT NN NN VBD JJS IN PRP$ NN IN NNP IN PRP$ NN POS NN .\nDubbed ' The King Of Cool , ' Mc Queen starred in a series of famous films in the 1960s and '70s , among them The Great Escape , Bullitt , and Papillon .\tVBN `` DT NNP IN NNP , `` NNP NNP VBD IN DT NN IN JJ NNS IN DT NNS CC NNS , IN PRP DT NNP NNP , NNP , CC NNP .\nHe died of cancer in 1980 at age 50 .\tPRP VBD IN NN IN CD IN NN CD .\nRunning March 23-25 , ' Steve McQueen Days ' will include screenings of his movies , a show of memorabilia , and tours of his boyhood home and former school .\tVBG NNP CD , `` NNP NNP NNPS `` MD VB NNS IN PRP$ NNS , DT NN IN NNS , CC NNS IN PRP$ NN NN CC JJ NN .\nNuclear envoys from North and South Korea have met in Beijing as part of attempts to resume six-party talks on Pyongyang 's nuclear weapons program .\tJJ NNS IN NNP CC NNP NNP VBP VBN IN NNP IN NN IN NNS TO VB JJ NNS IN NNP POS JJ NNS NN .\nTuesday 's meeting between the South 's Chun Yung-woo and the North 's Kim Kye Kwan is the latest in a series of diplomatic consultations among the six nations involved in the nuclear talks .\tNNP POS NN IN DT NNP POS NNP NNP CC DT NNP POS NNP NNP NNP VBZ DT JJS IN DT NN IN JJ NNS IN DT CD NNS VBN IN DT JJ NNS .\nOver the past week , U.S. nuclear envoy Christopher Hill met his counterparts from South Korea , Japan and China to brief them on his talks with North Korea 's Kim in Berlin earlier this month .\tIN DT JJ NN , NNP JJ NN NNP NNP VBD PRP$ NNS IN NNP NNP , NNP CC NNP TO VB PRP IN PRP$ NNS IN NNP NNP POS NNP IN NNP RBR DT NN .\nDiplomats say Beijing , which hosts the talks , could announce a date for the next round in a few days .\tNNS VBP NNP , WDT VBZ DT NNS , MD VB DT NN IN DT JJ NN IN DT JJ NNS .\nJapanese Foreign Minister Taro Aso said Tuesday another round of negotiations would be meaningless unless it specifically addresses the issue of North Korean denuclearization .\tJJ NNP NNP NNP NNP VBD NNP DT NN IN NNS MD VB JJ IN PRP RB VBZ DT NN IN JJ JJ NN .\nThe U.S. military has opened a preliminary investigation into additional allegations of detainee abuse in Iraq .\tDT NNP NN VBZ VBN DT JJ NN IN JJ NNS IN NN NN IN NNP .\nIn California Saturday , a military spokesman said the U.S. Navy launched the probe after being given photographs of Iraqi detainees allegedly being abused by Navy special forces in May 2003 , months before the Abu Ghraib prison scandal .\tIN NNP NNP , DT JJ NN VBD DT NNP NNP VBD DT NN IN VBG VBN NNS IN JJ NNS RB VBG VBN IN NNP JJ NNS IN NNP CD , NNS IN DT NNP NNP NN NN .\nThe Associated Press news agency says one of its reporters found the photographs posted on the Internet , and turned more than a dozen over to Navy officials on Friday .\tDT NNP NNP NN NN VBZ CD IN PRP$ NNS VBD DT NNS VBN IN DT NNP , CC VBD JJR IN DT NN IN TO NNP NNS IN NNP .\nAlso Saturday , pre-trial hearings for two soldiers accused of abusing prisoners at Baghdad 's Abu Ghraib prison in late 2003 got under way on a military base in Texas .\tRB NNP , JJ NNS IN CD NNS VBN IN VBG NNS IN NNP POS NNP NNP NN IN JJ CD VBD IN NN IN DT JJ NN IN NNP .\nHealth officials in Indonesia say local tests show an Indonesian man who died last week was infected with the bird flu virus .\tNNP NNS IN NNP VBP JJ NNS VBP DT JJ NN WP VBD JJ NN VBD VBN IN DT NN NN NN .\nAuthorities say the man was in frequent contact with poultry .\tNNS VBP DT NN VBD IN JJ NN IN NN .\nThe World Health Organization confirmed Sunday that two women who died in Indonesia last week had contracted the H5N1 virus that has killed almost 90 people worldwide since 2003 .\tDT NNP NNP NNP VBD NNP IN CD NNS WP VBD IN NNP JJ NN VBD VBN DT NNP NN WDT VBZ VBN RB CD NNS JJ IN CD .\nElsewhere , Iranian officials say laboratory tests have confirmed bird flu has killed 135 swans on the Caspian Sea coast .\tRB , JJ NNS VBP NN NNS VBP VBN NN NN VBZ VBN CD NNS IN DT NNP NNP NN .\nIf international tests confirm the birds died of the H5N1 strain of the virus , it will be its first appearance in Iran .\tIN JJ NNS VBP DT NNS VBD IN DT NNP NN IN DT NN , PRP MD VB PRP$ JJ NN IN NNP .\nIn Vienna , Austrian officials say the deadly virus has been confirmed in two dead swans found near the southern city of Graz .\tIN NNP , JJ NNS VBP DT JJ NN VBZ VBN VBN IN CD JJ NNS VBN IN DT JJ NN IN NNP .\nCroatian officials also believe the virus killed at least eight swans found in recent days in the Zagreb area .\tJJ NNS RB VBP DT NN VBD IN JJS CD NNS VBD IN JJ NNS IN DT NNP NN .\nIran says a rise in oil production by OPEC as requested by the United States will not affect record prices in a market already saturated with oil .\tNNP VBZ DT NN IN NN NN IN NNP IN VBN IN DT NNP NNPS MD RB VB NN NNS IN DT NN RB VBN IN NN .\nIranian Oil Minister Gholam Hossein Nozari told reporters Saturday in Tehran that increasing production will only increase oil inventories .\tJJ NNP NNP NNP NNP NNP VBD NNS NNP IN NNP IN VBG NN MD RB VB NN NNS .\nOn Friday , Saudi Arabia rejected a request by U.S. President George Bush for Riyadh to raise oil production in hopes of controlling soaring gas prices .\tIN NNP , NNP NNP VBD DT NN IN NNP NNP NNP NNP IN NNP TO VB NN NN IN NNS IN VBG VBG NN NNS .\nIran is OPEC 's second largest oil producer after Saudi Arabia .\tNNP VBZ NNP POS JJ JJS NN NN IN NNP NNP .\nOil prices reached a record high of nearly $ 128 per barrel Friday .\tNN NNS VBD DT NN NN IN RB $ CD IN NN NNP .\nGeneral Amin al-Hindi , a former Palestinian intelligence chief who may have played a role in the deadly 1972 Munich attack on the Israeli Olympics team , has died .\tNNP NNP NNP , DT JJ JJ NN NN WP MD VB VBN DT NN IN DT JJ CD NNP NN IN DT JJ NNP NN , VBZ VBN .\nHe was 70 .\tPRP VBD CD .\nPalestinian officials say al-Hindi died of cancer at a hospital in Jordan , Tuesday , after slipping into a coma .\tJJ NNS VBP NNP VBD IN NN IN DT NN IN NNP , NNP , IN VBG IN DT NN .\nThey say his body was transported to the West Bank , Wednesday , for burial .\tPRP VBP PRP$ NN VBD VBN TO DT NNP NNP , NNP , IN NN .\nAl-Hindi was a senior security officer in the Fatah party .\tNNP VBD DT JJ NN NN IN DT NNP NN .\nHe also served as head of intelligence services under former Palestinian leader Yasser Arafat .\tPRP RB VBD IN NN IN NN NNS IN JJ JJ NN NNP NNP .\nCommandos with ' Black September ' -- a group linked to Arafat 's Fatah faction -- infiltrated the Olympic village in Munich at the 1972 summer games .\tNNS IN `` NNP NNP `` : DT NN VBN TO NNP POS NNP NN : VBD DT NNP NN IN NNP IN DT CD NN NNS .\nThe commandoes stormed a dormitory housing Israelis , an attack that led to the deaths of 11 athletes .\tDT NNS VBD DT JJ NN NNS , DT NN WDT VBD TO DT NNS IN CD NNS .\nRelatives of more than 100 Iranians killed in the crash of a military plane say officials ordered the transport to fly Tuesday despite repeated warnings from the pilot that the aircraft was unsafe .\tNNS IN JJR IN CD NNS VBN IN DT NN IN DT JJ NN VBP NNS VBD DT NN TO VB NNP IN JJ NNS IN DT NN IN DT NN VBD JJ .\nThe Hamshahri newspaper quotes the wife of one of the victims as saying her husband told her by cell phone that the C-130 aircraft sat on a runway in Tehran for three hours Tuesday because the pilot refused to fly .\tDT NNP NN VBZ DT NN IN CD IN DT NNS IN VBG PRP$ NN VBD PRP IN NN NN IN DT NN NN VBD IN DT NN IN NNP IN CD NNS NNP IN DT NN VBD TO VB .\nAn official of another newspaper , Shargh told VOA 's Persian service he was told by a staffer aboard the doomed plane that passengers were waiting on a runway for a replacement pilot .\tDT NN IN DT NN , NNP VBD NNP POS JJ NN PRP VBD VBN IN DT NN IN DT JJ NN IN NNS VBD VBG IN DT NN IN DT NN NN .\nThe army is denying the accusations , and Iran 's top prosecutor appointed a special judge to probe the crash .\tDT NN VBZ VBG DT NNS , CC NNP POS JJ NN VBD DT JJ NN TO VB DT NN .\nThe plane carrying Iranian journalists crashed into a 10-story apartment building minutes after take-off Tuesday afternoon , killing all 94 people on board and at least 22 others on the ground .\tDT NN VBG JJ NNS VBD IN DT JJ NN NN NNS IN JJ NNP NN , VBG DT CD NNS IN NN CC IN JJS CD NNS IN DT NN .\nTens of thousands of people have protested outside the Indian factory set to produce the world 's cheapest car , to demand the auto company return the land to local farmers .\tNNS IN NNS IN NNS VBP VBN IN DT JJ NN VBN TO VB DT NN POS JJS NN , TO VB DT NN NN VB DT NN TO JJ NNS .\nAuthorities in West Bengal state deployed nearly 3,000 police to protect the Tata Motors factory site Sunday as more than 40,000 protesters lined the highway leading to the factory .\tNNS IN NNP NNP NN VBD RB CD NNS TO VB DT NNP NNP NN NN NNP IN JJR IN CD NNS VBD DT NN VBG TO DT NN .\nFarmers say Tata Motors did not properly compensate them for the land used for the factory site .\tNNS VBP NNP NNPS VBD RB RB VB PRP IN DT NN VBN IN DT NN NN .\nThey have vowed to continue protesting until the 160 hectares of disputed land are returned .\tPRP VBP VBN TO VB VBG IN DT CD NNS IN JJ NN VBP VBN .\nTata Motors said Friday the protests may force it to relocate the factory .\tNNP NNP VBD NNP DT NNS MD VB PRP TO VB DT NN .\nThe factory is set to roll out the first $ 2,500 ' Nano ' cars by October .\tDT NN VBZ VBN TO VB RP DT JJ $ CD `` NNP `` NNS IN NNP .\nTata Motors plans to manufacture a quarter-million of the cars each year .\tNNP NNP VBZ TO VB DT NN IN DT NNS DT NN .\nHundreds of Pakistanis are fleeing villages in North West Frontier Province , where fighting between government troops and militants loyal to a pro-Taliban religious leader raged for a third straight day .\tNNS IN NNS VBP VBG NNS IN NNP NNP NNP NNP , WRB VBG IN NN NNS CC NNS JJ TO DT JJ JJ NN VBD IN DT JJ JJ NN .\nArmy spokesman Major General Waheed Arshad says 10 militants were killed Sunday in fighting with security forces backed by helicopter gunships .\tNN NN NNP NNP NNP NNP VBZ CD NNS VBD VBN NNP IN VBG IN NN NNS VBN IN NN NNS .\nOn Saturday , Pakistani officials said militants had executed 13 people , including seven civilians .\tIN NNP , JJ NNS VBD NNS VBD VBN CD NNS , VBG CD NNS .\nThe Swat valley has been the scene of battles since Friday after authorities sent more than 2,000 soldiers to counter growing militancy from cleric Maulana Fazlullah .\tDT NNP NN VBZ VBN DT NN IN NNS IN NNP IN NNS VBD JJR IN CD NNS TO VB VBG NN IN NN NNP NNP .\nHe is trying to establish strict Islamic law in the area .\tPRP VBZ VBG TO VB JJ JJ NN IN DT NN .\nIn other news , three rockets hit Peshawar , the capital of North West Frontier Province , early Sunday .\tIN JJ NN , CD NNS VBD NNP , DT NN IN NNP NNP NNP NNP , JJ NNP .\nPolice say one of the rockets landed near the U.S. Consulate , however no deaths were reported .\tNNS VBP CD IN DT NNS VBD IN DT NNP NNP , RB DT NNS VBD VBN .\nA senior Cuban official has lashed out at the United Nations , saying it has done very little to achieve the goals outlined in the Millennium Declaration .\tDT JJ JJ NN VBZ VBN RP IN DT NNP NNPS , VBG PRP VBZ VBN RB JJ TO VB DT NNS VBN IN DT NNP NNP .\nCuban National Assembly speaker Ricardo Alarcon made the comment Friday in a speech before the UN World Summit in New York .\tJJ NNP NNP NN NNP NNP VBD DT NN NNP IN DT NN IN DT NNP NNP NNP IN NNP NNP .\nMr. Alarcon said the governments attending the summit have failed to do enough to meet the eight objectives in the declaration , which included reducing poverty and hunger , making education accessible to everyone and combating HIV / AIDS .\tNNP NNP VBD DT NNS VBG DT NN VBP VBN TO VB RB TO VB DT CD NNS IN DT NN , WDT VBD VBG NN CC NN , VBG NN JJ TO DT CC VBG NNP NNP NNP .\nHe said there has been a setback in many of the objectives .\tPRP VBD EX VBZ VBN DT NN IN NN IN DT NNS .\nMr. Alarcon also described proposed U.N. reforms as an ' unforgivable sham ' he said were designed by wealthy countries to turn the United Nations into an instrument of global dictatorship .\tNNP NNP RB VBD VBN NNP NNS IN DT `` JJ NN `` PRP VBD VBD VBN IN JJ NNS TO VB DT NNP NNPS IN DT NN IN JJ NN .\nA South African official was set to meet union leaders in an effort to avert a strike by 9,00,000 public service workers .\tDT JJ JJ NN VBD VBN TO VB NN NNS IN DT NN TO VB DT NN IN CD JJ NN NNS .\nThe workers , represented by a coalition of unions , are seeking an increase to the government 's offer of a 6.5 percent pay hike .\tDT NNS , VBN IN DT NN IN NNS , VBP VBG DT NN TO DT NN POS NN IN DT CD NN NN NN .\nOne union , the 2,10,000 member Public Servants Association , says its workers could go on strike Thursday .\tCD NN , DT CD NN NNP NNP NNP , VBZ PRP$ NNS MD VB IN NN NNP .\nThe other workers have threatened to walk off their jobs next week .\tDT JJ NNS VBP VBN TO VB RP PRP$ NNS JJ NN .\nPublic Service and Administration Minister Richard Baloyi has called for any strikes to be delayed until he is able to meet with union leaders Thursday .\tNNP NNP CC NNP NNP NNP NNP VBZ VBN IN DT NNS TO VB VBN IN PRP VBZ JJ TO VB IN NN NNS NNP .\nA group of rebel militias in the Democratic Republic of Congo ( DRC ) says it has suspended participation in a 2008 cease-fire agreement .\tDT NN IN JJ NNS IN DT JJ NNP IN NNP LRB NNP RRB VBZ PRP VBZ VBN NN IN DT CD NN NN .\nThe rebel groups have released a statement citing a number of reasons for their decision , including the government 's arrest of some of their members .\tDT NN NNS VBP VBN DT NN VBG DT NN IN NNS IN PRP$ NN , VBG DT NN POS NN IN DT IN PRP$ NNS .\nIn January 2008 , rebels in the eastern DRC signed a peace accord with the government aimed at ending years of fighting in the region .\tIN NNP CD , NNS IN DT JJ NNP VBD DT NN NN IN DT NN VBN IN VBG NNS IN VBG IN DT NN .\nThe country 's five-year civil war formally ended in 2003 .\tDT NN POS JJ JJ NN RB VBD IN CD .\nHowever , militias and rebel groups have remained active in some eastern areas , especially North Kivu province .\tRB , NNS CC NN NNS VBP VBN JJ IN DT JJ NNS , RB JJ NNP NN .\nBloomberg news reports that Congo 's communications minister has dismissed the militias ' statement .\tNNP NN NNS IN NNP POS NNS NN VBZ VBN DT NNS POS NN .\nThe news agency quotes Lambert Mende as saying the militias think they ' are in charge of the peace process , but they are not . '\tDT NN NN VBZ NNP NNP IN VBG DT NNS VBP PRP `` VBP IN NN IN DT NN NN , CC PRP VBP RB . ``\nChina has confirmed an outbreak of the deadly H5N1 strain of bird flu among ducks in southern Guangdong province .\tNNP VBZ VBN DT NN IN DT JJ NNP NN IN NN NN IN NNS IN JJ NNP NN .\nHong Kong 's health secretary York Chow said Monday Chinese agriculture ministry officials confirmed that tests indicate the presence of H5N1 in Panyu district .\tNNP NNP POS NN NN NNP NNP VBD NNP JJ NN NN NNS VBD IN NNS VBP DT NN IN NNP IN NNP NN .\nMore than 9,000 ducks died on five farms in Panyu this month .\tJJR IN CD NNS VBD IN CD NNS IN NNP DT NN .\nMore than 32,000 ducks were then culled to help contain the outbreak .\tJJR IN CD NNS VBD RB VBN TO VB VB DT NN .\nThe area is near Hong Kong , where health officials Monday suspended imports of chilled and frozen duck and geese from Guangdong for one week .\tDT NN VBZ IN NNP NNP , WRB NN NNS NNP VBD NNS IN JJ CC JJ NN CC NNS IN NNP IN CD NN .\nThe H5N1 strain of avian influenza is deadly to humans .\tDT NNP NN IN JJ NN VBZ JJ TO NNS .\nThe World Health Organization reports there have been at least 25 human cases of avian flu confirmed in China in recent years , 16 of them fatal .\tDT NNP NNP NNP NNS EX VBP VBN IN JJS CD JJ NNS IN JJ NN VBD IN NNP IN JJ NNS , CD IN PRP JJ .\nU.S. Navy officials say a U.S. ship encountered three small Iranian speed boats Thursday in the Persian Gulf .\tNNP NNP NNS VBP DT NNP NN VBD CD JJ JJ NN NNS NNP IN DT NNP NNP .\nThe officials said Friday the USS Typhoon was in the central Gulf when at least one of three high-speed boats approached the ship .\tDT NNS VBD NNP DT NNP NNP VBD IN DT JJ NNP WRB IN JJS CD IN CD JJ NNS VBD DT NN .\nThe officials said the boats kept their distance after the Navy ship fired a warning flare .\tDT NNS VBD DT NNS VBD PRP$ NN IN DT NNP NN VBD DT NN NN .\nIt is unclear whether the speed boats were armed .\tPRP VBZ JJ IN DT NN NNS VBD VBN .\nIranian arabic television Al-Alam reports the Iranian navy denies the incident .\tJJ JJ NN NN VBZ DT JJ NN VBZ DT NN .\nThe U.S. Defense Department has said there were three confrontations between the U.S. Navy and Iranian forces in the Persian Gulf from December to January .\tDT NNP NNP NNP VBZ VBN EX VBD CD NNS IN DT NNP NNP CC JJ NNS IN DT NNP NNP IN NNP TO NNP .\nOne ended after a U.S. ship fired warning shots to deter the Iranian vessel .\tCD VBN IN DT NNP NN VBD VBG NNS TO VB DT JJ NN .\nChinese officials have confirmed a new outbreak of bird flu among poultry in the Tibetan capital of Lhasa .\tJJ NNS VBP VBN DT JJ NN IN NN NN IN NN IN DT JJ NN IN NNP .\nThe official Xinhua news agency quoted China 's ministry of agriculture as saying officials found the H5N1 strain of bird flu , which can be fatal to humans , in poultry sold at a market in Lhasa on April 12 .\tDT JJ NNP NN NN VBN NNP POS NN IN NN IN VBG NNS VBD DT NNP NN IN NN NN , WDT MD VB JJ TO NNS , IN NN VBN IN DT NN IN NNP IN NNP CD .\nThe ministry said it had taken emergency measures , culling more than 1,600 birds , and that the epidemic is under control .\tDT NN VBD PRP VBD VBN NN NNS , VBG JJR IN CD NNS , CC IN DT NN VBZ IN NN .\nOfficials also said no one who came into contact with the infected poultry has shown any signs of the disease .\tNNS RB VBD DT NN WP VBD IN NN IN DT JJ NN VBZ VBN DT NNS IN DT NN .\nThe World Health Organization says bird flu has killed more than 250 people since it resurfaced in Asia in 2003 .\tDT NNP NNP NNP VBZ NN NN VBZ VBN JJR IN CD NNS IN PRP VBD IN NNP IN CD .\nAt least five people have died from bird flu in China this year .\tIN JJS CD NNS VBP VBN IN NN NN IN NNP DT NN .\nInternational public health officials are calling for a stronger global response to drug-resistant tuberculosis .\tNNP JJ NN NNS VBP VBG IN DT JJR JJ NN TO JJ NN .\nThe call was made after American lawyer Andrew Speaker , who is infected with a form of tuberculosis that is resistant to most antibiotics , traveled aboard commercial airliners from the United States to Europe and back .\tDT NN VBD VBN IN JJ NN NNP NNP , WP VBZ VBN IN DT NN IN NN WDT VBZ JJ TO RBS NNS , VBN IN JJ NNS IN DT NNP NNPS TO NNP CC RB .\nVOA 's Jessica Berman reports .\tNNP POS NNP NNP VBZ .\nOfficials at the World Health Organization estimate there are at least 4,00,000 new cases of tuberculosis each year that do not respond to two or more standard antibiotics .\tNNS IN DT NNP NNP NNP VBP EX VBP IN JJS CD JJ NNS IN NN DT NN WDT VBP RB VB TO CD CC JJR JJ NNS .\nOf these , WHO experts say 25,000 to 30,000 individuals are infected with extremely drug-resistant TB , or XDR TB , which is resistant not only to two or more standard antibiotics , but three or more of a newer class of antibiotics .\tIN DT , NNP NNS VBP CD TO CD NNS VBP VBN IN RB JJ NNP , CC NNP NNP , WDT VBZ JJ RB RB TO CD CC JJR JJ NNS , CC CD CC JJR IN DT JJR NN IN NNS .\nAndrew Speaker , who lives in Atlanta , Georgia and flew to Europe and back with his fiance , is infected with XDR TB .\tNNP NNP , WP VBZ IN NNP , NNP CC VBD TO NNP CC RB IN PRP$ NN , VBZ VBN IN NNP NNP .\nSpeaker has been in isolation since his return .\tNNP VBZ VBN IN NN IN PRP$ NN .\nEuropean public health officials were not notified about the case until Speaker was back in the United States .\tJJ JJ NN NNS VBD RB VBN IN DT NN IN NNP VBD RB IN DT NNP NNPS .\nMario Raviglione is Director of the Stop TB Department at the WHO .\tNNP NNP VBZ NNP IN DT NNP NNP NNP IN DT NNP .\nAlthough governments are considering ways to improve screening of people with infectious diseases at the border , Raviglione says that would be difficult to implement .\tIN NNS VBP VBG NNS TO VB NN IN NNS IN JJ NNS IN DT NN , NNP VBZ DT MD VB JJ TO VB .\nWhat is needed , accorded to Raviglione , are better measures to contain XTR TB , including rapid testing and new drugs .\tWP VBZ VBN , VBN IN NNP , VBP JJR NNS TO VB NNP NNP , VBG JJ NN CC JJ NNS .\n' Here we are facing one of the highest burden diseases of the world , where the amount of money that is being spent , particularly internationally to help countries that are in need like African countries , is badly , badly insufficient , ' he said .\t`` RB PRP VBP VBG CD IN DT JJS NN NNS IN DT NN , WRB DT NN IN NN WDT VBZ VBG VBN , RB RB TO VB NNS WDT VBP IN NN IN JJ NNS , VBZ RB , RB JJ , `` PRP VBD .\nMeanwhile , U.S. lawmakers have introduced legislation to prevent the spread of tuberculosis in the United States , and at least one hearing is scheduled to investigate the Andrew Speaker incident .\tRB , NNP NNS VBP VBN NN TO VB DT NN IN NN IN DT NNP NNPS , CC IN JJS CD NN VBZ VBN TO VB DT NNP NNP NN .\nLeaders of the Palestinian militant group Hamas say five children and three women were among 13 injured after a blast at a Hamas base in the Gaza Strip .\tNNS IN DT JJ JJ NN NNS VBP CD NNS CC CD NNS VBD IN CD VBN IN DT NN IN DT NNP NN IN DT NNP NNP .\nThe powerful explosion Wednesday ripped through the Hamas al-Qassam Brigades military training facility in the southern Gaza Strip .\tDT JJ NN NNP VBD IN DT NNP NNP NNP JJ NN NN IN DT JJ NNP NNP .\nIn a statement , Hamas did not give a cause for the blast .\tIN DT NN , NNP VBD RB VB DT NN IN DT NN .\nThe Israeli military says it was not involved .\tDT JJ NN VBZ PRP VBD RB VBN .\nThe blast shook through the densely crowded Tel As-Sultan neighborhood in Rafah .\tDT NN VBD IN DT RB JJ NNP NNP NN IN NNP .\nHamas said the injured were hit by flying glass shrapnel .\tNNP VBD DT NN VBD VBN IN VBG NN NN .\nThe Gaza-based Palestinian Center for Human Rights has repeatedly called on the territory 's Hamas rulers not to store explosive materials in civilian areas .\tDT JJ JJ NNP IN NNP NNP VBZ RB VBN IN DT NN POS NNP NNS RB TO VB JJ NNS IN JJ NNS .\nA weapons explosion in August wounded 58 people and destroyed seven houses .\tDT NNS NN IN NNP VBD CD NNS CC VBD CD NNS .\nEuropean Union lawmakers say they will press U.S. and European leaders to appear before an inquiry into alleged secret CIA prisons in Europe .\tNNP NNP NNS VBP PRP MD VB NNP CC JJ NNS TO VB IN DT NN IN JJ JJ NNP NNS IN NNP .\nThe vice president of an investigative panel looking into the matter , Sarah Ludford , said Thursday U.S. Defense Secretary Donald Rumsfeld , British Foreign Secretary Jack Straw and other foreign and defense ministers could be invited to appear before the panel .\tDT NN NN IN DT JJ NN VBG IN DT NN , NNP NNP , VBD NNP NNP NNP NNP NNP NNP , NNP NNP NNP NNP NNP CC JJ JJ CC NN NNS MD VB VBN TO VB IN DT NN .\nBut EU officials concede they have no legal authority to subpoena them .\tCC NNP NNS VBP PRP VBP DT JJ NN TO VB PRP .\nThe 46-member temporary committee was created this month after reports by U.S. media and human rights groups of secret CIA prisons in new East European EU member states .\tDT JJ JJ NN VBD VBN DT NN IN NNS IN NNP NNS CC JJ NNS NNS IN JJ NNP NNS IN JJ JJ JJ NNP NN NNS .\nEuropean officials say the committee will try to find out whether the U.S. or other nations abducted suspects , transported them to countries where they could be aggressively interrogated , and housed them at secret detention sites .\tJJ NNS VBP DT NN MD VB TO VB RP IN DT NNP CC JJ NNS VBD NNS , VBD PRP TO NNS WRB PRP MD VB RB VBN , CC VBD PRP IN JJ NN NNS .\nPolice in India have arrested a Muslim man in connection with last week 's bombing of a historic mosque in the southern city of Hyderabad that killed 11 people .\tNNS IN NNP VBP VBN DT NN NN IN NN IN JJ NN POS NN IN DT JJ NN IN DT JJ NN IN NNP WDT VBD CD NNS .\nFive more people died in police shootings during riots that erupted after the bombing of the 17th century Mecca Mashjid mosque .\tCD JJR NNS VBD IN NN NNS IN NNS WDT VBD IN DT NN IN DT JJ NN NNP NNP NN .\nOfficials say Friday the suspect was detained Tuesday in a small town , Jalna , in western Maharashtra state .\tNNS VBP NNP DT NN VBD VBN NNP IN DT JJ NN , NNP , IN JJ NNP NN .\nHe is the first person to be detained for questioning about the attack .\tPRP VBZ DT JJ NN TO VB VBN IN VBG IN DT NN .\nSecurity remains tight around the Hyderabad mosque with thousands of police deployed to the area .\tNN VBZ JJ IN DT NNP NN IN NNS IN NNS VBN TO DT NN .\nShortly after Friday prayers Friday , police used batons to beat back worshippers protesting the official inquiry into the bombing .\tRB IN NNP NNS NNP , NN VBD NNS TO VB RP NNS VBG DT JJ NN IN DT NN .\nThere has been no claim of responsibility for the attack , the third against a mosque in India during the past year .\tEX VBZ VBN DT NN IN NN IN DT NN , DT NN IN DT NN IN NNP IN DT JJ NN .\nOfficials in Saudi Arabia say authorities have arrested three men with alleged al-Qaida links , including one who officials say was preparing for attacks .\tNNS IN NNP NNP VBP NNS VBP VBN CD NNS IN JJ NNP NNS , VBG CD WP NNS VBP VBD VBG IN NNS .\nThe Interior Ministry says the three used the Internet to spread the ideology of al-Qaida .\tDT NNP NNP VBZ DT CD VBD DT NN TO VB DT NN IN NNP .\nIt says one of the suspects , identified as Saudi national Abu Osaid al-Falluji , was allegedly involved in recruiting , seeking funding and preparing for terrorist operations .\tPRP VBZ CD IN DT NNS , VBN IN JJ NN NNP NNP NNP , VBD RB VBN IN NN , VBG NN CC VBG IN JJ NNS .\nThe ministry says the second suspect , a Saudi national identified as Abu Abdullah al-Najdi , attempted to publish an edition of the al-Qaida online newsletter Sawt al-Jihad .\tDT NN VBZ DT JJ NN , DT JJ NN VBN IN NNP NNP NNP , VBD TO VB DT NN IN DT NNP NN NN NNP NNP .\nThe third suspect also allegedly planned to use the Internet to disseminate a jihadist publication .\tDT JJ NN RB RB VBN TO VB DT NN TO VB DT NN NN .\nThe Saudi government launched an aggressive anti-terrorism campaign after al-Qaida militants launched dramatic terrorist attacks against Western targets in 2003 .\tDT JJ NN VBD DT JJ NN NN IN NNP NNS VBD JJ JJ NNS IN JJ NNS IN CD .\nWashington and Kabul have agreed in principle to gradually transfer most Afghans in U.S. custody to the Afghan government .\tNNP CC NNP VBP VBN IN NN TO RB VB RBS NNS IN NNP NN TO DT JJ NN .\nA joint statement issued in Kabul says the Afghan government has agreed to make sure that the returning Afghans pose no threat .\tDT JJ NN VBN IN NNP VBZ DT JJ NN VBZ VBN TO VB JJ IN DT VBG NNS VBP DT NN .\nWashington will help Afghanistan in building jails and providing appropriate training .\tNNP MD VB NNP IN VBG NNS CC VBG JJ NN .\nPresident Karzai 's spokesman , Khaleeq Ahmed , said Afghan prisoners from the Guantanamo Bay detention center and the US detention facilities in Afghanistan will be among those handed over .\tNNP NNP POS NN , NNP NNP , VBD JJ NNS IN DT NNP NNP NN NN CC DT NNP NN NNS IN NNP MD VB IN DT VBN RP .\nPresident Bush and Afghan President Hamid Karzai expressed a strong desire to return Afghan detainees to Afghanistan when they met in Washington in May .\tNNP NNP CC JJ NNP NNP NNP VBD DT JJ NN TO VB JJ NNS TO NNP WRB PRP VBD IN NNP IN NNP .\nUS , Asian , and European stock prices declined Monday , extending a week of losses on the world 's markets .\tNNP , NNP , CC JJ NN NNS VBD NNP , VBG DT NN IN NNS IN DT NN POS NNS .\nMajor U.S. stock indexes swung between gains and losses in Monday 's volatile trading but were down as much as one percent by the close .\tNNP NNP NN NNS VBG IN NNS CC NNS IN NNP POS JJ NN CC VBD RB RB RB IN CD NN IN DT NN .\nSome analysts said traders were worried about mortgage defaults , a strengthening yen , and tumbling stock markets abroad .\tDT NNS VBD NNS VBD VBN IN NN NNS , DT NN NN , CC VBG NN NNS RB .\nMajor indexes in London , Paris , and Frankfurt also lost as much as one percent .\tJJ NNS IN NNP , NNP , CC NNP RB VBD RB JJ IN CD NN .\nAsian stock markets were hit even harder , with major indexes in Japan , Hong Kong , and India down between three and four percent at the close of trading .\tJJ NN NNS VBD VBN RB RBR , IN JJ NNS IN NNP , NNP NNP , CC NNP RB IN CD CC CD NN IN DT NN IN NN .\nThe losses Monday follow major declines in stock prices last week in many markets .\tDT NNS NNP VBP JJ NNS IN NN NNS JJ NN IN JJ NNS .\nAn almost nine percent slump in Shanghai last Tuesday triggered a wave of selling on global markets , many of which had been trading near record highs .\tDT RB CD NN NN IN NNP JJ NNP VBD DT NN IN VBG IN JJ NNS , NN IN WDT VBD VBN VBG IN NN NNS .\nChina is reporting its ninth human bird flu death .\tNNP VBZ VBG PRP$ JJ JJ NN NN NN .\nOfficials confirmed Sunday that a 32-year-old man in Guangdong province , which borders Hong Kong , died from the H5N1 virus last week .\tNNS VBD NNP IN DT JJ NN IN NNP NN , WDT VBZ NNP NNP , VBD IN DT NNP NN JJ NN .\nAuthorities in Hong Kong have announced a ban on poultry and live bird imports from Guangdong .\tNNS IN NNP NNP VBP VBN DT NN IN NN CC JJ NN NNS IN NNP .\nMeanwhile , French officials report finding bird flu in a dead wild bird on the Mediterranean coast .\tRB , JJ NNS VBP VBG NN NN IN DT JJ JJ NN IN DT NNP NN .\nThis is several hundred kilometers south of France 's other bird flu outbreak on a turkey farm .\tDT VBZ JJ CD NNS RB IN NNP POS JJ NN NN NN IN DT NN NN .\nMore than 40 countries have banned French poultry imports .\tJJR IN CD NNS VBP VBN JJ NN NNS .\nAlso , Poland is reporting its first H5N1 cases in two swans in the northern city of Torun .\tRB , NNP VBZ VBG PRP$ JJ NNP NNS IN CD NNS IN DT JJ NN IN NNP .\nBird flu has killed at least 94 people worldwide since 2003 , mostly in Asia .\tNN NN VBZ VBN IN JJS CD NNS JJ IN CD , RB IN NNP .\nAllies of Iran 's president-elect are denying allegations by several Americans held hostage in Iran more than 25 years ago that he played a key role in their detention .\tNNS IN NNP POS NN VBP VBG NNS IN JJ NNS VBD NN IN NNP JJR IN CD NNS RB IN PRP VBD DT JJ NN IN PRP$ NN .\nAides to Mahmoud Ahmadinejad , and several of the 1979 hostage takers , insist he did not participate in the international standoff .\tNNS TO NNP NNP , CC NN IN DT CD NN NNS , VBP PRP VBD RB VB IN DT JJ NN .\nIn interviews with U.S. news media , several former hostages described Mr. Ahmadinejad as ' a cruel individual ' who interrogated the captives .\tIN NNS IN NNP NN NNS , JJ JJ NNS VBD NNP NNP IN `` DT JJ NN `` WP VBD DT NNS .\nBut other hostages say they do n't remember him .\tCC JJ NNS VBP PRP VBP RB VB PRP .\nMr. Ahmadinejad was in his early 20 's at the time of the hostage taking and has not publicly addressed the allegations .\tNNP NNP VBD IN PRP$ JJ NNP POS IN DT NN IN DT NN NN CC VBZ RB RB VBN DT NNS .\nThe White House says it is looking into the allegations .\tDT NNP NNP VBZ PRP VBZ VBG IN DT NNS .\nA group of radical Iranian students stormed the U.S. embassy in Tehran in November 1979 and held 52 Americans hostage for 444 days .\tDT NN IN JJ JJ NNS VBD DT NNP NN IN NNP IN NNP CD CC VBD CD NNS NN IN CD NNS .\nLos Angeles is one of the world 's most diverse cities , and a summer music series there brings together the city 's many ethnic communities .\tNNP NNP VBZ CD IN DT NN POS RBS JJ NNS , CC DT NN NN NN EX VBZ RB DT NN POS JJ JJ NNS .\nA recent performance by Seun Kuti , son of Afro-beat legend Fela Kuti , kicked off this year 's concert series , bringing the sounds of Lagos , Nigeria to downtown Los Angeles .\tDT JJ NN IN NNP NNP , NN IN JJ NN NNP NNP , VBD RP DT NN POS NN NN , VBG DT NNS IN NNP , NNP TO NN NNP NNP .\nSix-thousand people came to celebrate the music and the city 's multi-cultural heritage .\tJJ NNS VBD TO VB DT NN CC DT NN POS JJ NN .\nNnamdi Moweta reports .\tNNP NNP VBZ .\nPolice in Zimbabwe have arrested a nephew of President Robert Mugabe on suspicion of smuggling 30 tons of scarce flour to neighboring Mozambique .\tNNS IN NNP VBP VBN DT NN IN NNP NNP NNP IN NN IN VBG CD NNS IN JJ NN TO VBG NNP .\nThe state-run Herald newspaper reports Leo Mugabe , a ruling ZANU-PF party member of parliament , is expected to appear in court Thursday .\tDT JJ NNP NN VBZ NNP NNP , DT NN JJ NN NN IN NN , VBZ VBN TO VB IN NN NNP .\nThe paper says he will face charges of illegally dealing in controlled products .\tDT NN VBZ PRP MD VB NNS IN RB VBG IN JJ NNS .\nThe report says the smuggled flour was worth about $ 19 million .\tDT NN VBZ DT JJ NN VBD JJ IN $ CD CD .\nThe Herald says smuggled sugar and flour are sold cheaply in Mozambique , undercutting production from that country 's own industries .\tDT NNP VBZ JJ NN CC NN VBP VBN RB IN NNP , VBG NN IN DT NN POS JJ NNS .\nLast year , President Mugabe began an anti-corruption drive that has led to the arrest of several prominent Zimbabwean politicians .\tJJ NN , NNP NNP VBD DT JJ NN WDT VBZ VBN TO DT NN IN JJ JJ JJ NNS .\nOver the last five years , Zimbabwe has struggled with hyper-inflation and chronic shortages of food , fuel and cash .\tIN DT JJ CD NNS , NNP VBZ VBN IN NN CC JJ NNS IN NN , NN CC NN .\nThe U.S. Justice Department is reopening an investigation into the Bush administration 's domestic surveillance program , marking a major reversal in policy under new Attorney General Michael Mukasey .\tDT NNP NNP NNP VBZ VBG DT NN IN DT NNP NN POS JJ NN NN , VBG DT JJ NN IN NN IN JJ NNP NNP NNP NNP .\nThe probe will focus on the conduct of Justice Department lawyers in approving the program , which allows the National Security Agency to eavesdrop on the e-mail and telephone conversations of Americans without getting prior approval from a special court .\tDT NN MD VB IN DT NN IN NNP NNP NNS IN VBG DT NN , WDT VBZ DT NNP NNP NNP TO VB IN DT NN CC NN NNS IN NNS IN VBG JJ NN IN DT JJ NN .\nThe Bush administration implemented the program after the September 11 , 2001 terrorist attacks , and said it focused on intercepting international calls and e-mails of Americans and others in the U.S. with suspected terrorism links .\tDT NNP NN VBD DT NN IN DT NNP CD , CD JJ NNS , CC VBD PRP VBD IN VBG JJ NNS CC NNS IN NNS CC NNS IN DT NNP IN JJ NN NNS .\nAttorney General Mukasey was formally sworn in Wednesday at a ceremonial event attended by President Bush .\tNNP NNP NNP VBD RB VBN IN NNP IN DT JJ NN VBN IN NNP NNP .\nThe Justice Department 's Office of Professional Responsibility began the probe in early 2006 , but abandoned it after President Bush denied security clearances to investigators .\tDT NNP NNP POS NNP IN NNP NNP VBD DT NN IN JJ CD , CC VBD PRP IN NNP NNP VBD NN NNS TO NNS .\nIraqi officials say at least five people were killed and several others wounded Monday in two separate insurgent attacks in Baghdad .\tJJ NNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBD NNP IN CD JJ JJ NNS IN NNP .\nThey say the attacks , involving one suicide car bombing , took place in a southern district of Baghdad and that they were aimed at senior police and government officials .\tPRP VBP DT NNS , VBG CD NN NN NN , VBD NN IN DT JJ NN IN NNP CC IN PRP VBD VBN IN JJ NNS CC NN NNS .\nAn Iraqi militant group ( the Islamic Army of Iraq ) posted a video on the Internet today that showed a blindfolded man being shot in the back of the head .\tDT JJ NN NN LRB DT NNP NNP IN NNP RRB VBD DT NN IN DT NN NN WDT VBD DT JJ NN VBG VBN IN DT NN IN DT NN .\n( The pictures did not show the victim 's face . )\tLRB DT NNS VBD RB VB DT NN POS NN . RRB\nThe group claimed the killing was of American hostage Ronald Allen Schultz , who was abducted earlier this month .\tDT NN VBD DT NN VBD IN JJ NN NNP NNP NNP , WP VBD VBN RBR DT NN .\nMeanwhile , the U.S. military says eight high-level detainees from the former Iraqi regime have been freed .\tRB , DT NNP NN VBZ CD JJ NNS IN DT JJ JJ NN VBP VBN VBN .\nA spokesman ( Lt. Col. Barry Johnson ) said the men were freed Saturday , after a board found that they were no longer security threats .\tDT NN LRB NNP NNP NNP NNP RRB VBD DT NNS VBD VBN NNP , IN DT NN VBD IN PRP VBD RB JJR NN NNS .\nThe media watchdog , Reporters Without Borders , says there has been an upsurge in violence against the media in Latin America .\tDT NNS NN , NNS IN NNS , VBZ EX VBZ VBN DT NN IN NN IN DT NNS IN NNP NNP .\nIn its annual press freedom report released Tuesday , the group said a total of 12 journalists and two media assistants were killed in the region last year .\tIN PRP$ JJ NN NN NN VBN NNP , DT NN VBD DT NN IN CD NNS CC CD NNS NNS VBD VBN IN DT NN JJ NN .\nThe countries in which the 14 were killed include Brazil , Colombia , Haiti , Peru , Nicaragua and Ecuador .\tDT NNS IN WDT DT CD VBD VBN VBP NNP , NNP , NNP , NNP , NNP CC NNP .\nReporters Without Borders says violence against the media has decreased in several countries , including Bolivia , Guatemala and Haiti .\tNNS IN NNP VBZ NN IN DT NNS VBZ VBN IN JJ NNS , VBG NNP , NNP CC NNP .\nThe group describes press freedom in Cuba as disastrous and dubs it the region 's only prison for journalists , with 22 currently imprisoned .\tDT NN VBZ NN NN IN NNP IN JJ CC VBZ PRP DT NN POS JJ NN IN NNS , IN CD RB VBN .\nReporters Without Borders released Tuesday 's report to coincide with World Press Freedom Day .\tNNS IN NNS VBN NNP POS NN TO VB IN NNP NNP NNP NNP .\nChina says it will reopen Tibet to foreign tourists , after closing it during violent protests in March .\tNNP VBZ PRP MD VB NNP TO JJ NNS , IN VBG PRP IN JJ NNS IN NNP .\nChinese state media Tuesday quote regional tourism officials as saying the Tibet Autonomous Region will be opened to outsiders on Wednesday .\tJJ NN NNS NNP VBP JJ NN NNS IN VBG DT NNP NNP NNP MD VB VBN TO NNS IN NNP .\nThe Xinhua news agency reports that two Swedish tourists will arrive in the Tibetan capital , Lhasa , on Wednesday and four tourists from Singapore will arrive on Sunday .\tDT NNP NN NN NNS IN CD JJ NNS MD VB IN DT JJ NN , NNP , IN NNP CC CD NNS IN NNP MD VB IN NNP .\nTourists have been prevented from traveling to the region since riots against the Chinese government erupted in Lhasa on March 14 , sparking a harsh crackdown by Chinese troops .\tNNS VBP VBN VBN IN VBG TO DT NN IN NNS IN DT JJ NN VBD IN NNP IN NNP CD , VBG DT JJ NN IN JJ NNS .\nTibet 's government-in-exile says more than 200 people died in the crackdown on mostly monk-led protests .\tNNP POS JJ VBZ JJR IN CD NNS VBD IN DT NN IN RB JJ NNS .\nChina blames Tibetan rioters for the deaths of at least 20 people .\tNNP VBZ JJ NNS IN DT NNS IN IN JJS CD NNS .\nA French aid group says it will suspend activities in Darfur because the situation in western Sudan has become too dangerous for its workers .\tDT JJ NN NN VBZ PRP MD VB NNS IN NNP IN DT NN IN JJ NNP VBZ VBN RB JJ IN PRP$ NNS .\nThe group Medecins du Monde ( Doctors of the World ) said Monday , it has suspended its activities in Darfur for an undetermined period of time .\tDT NN VBZ NNP NNP LRB NNS IN DT NNP RRB VBD NNP , PRP VBZ VBN PRP$ NNS IN NNP IN DT JJ NN IN NN .\nOfficials said there is an imbalance between the help it is able to provide and the risks to its staff members .\tNNS VBD EX VBZ DT NN IN DT NN PRP VBZ JJ TO VB CC DT NNS TO PRP$ NN NNS .\nMedecins du Monde has provided medical care in Darfur since the middle of 2004 , assisting thousands of refugees in the Kalma refugee camp .\tNNP NNP NNP VBZ VBN JJ NN IN NNP IN DT NN IN CD , VBG NNS IN NNS IN DT NNP NN NN .\nIt also operated mobile clinics to treat refugees in remote villages .\tPRP RB VBD JJ NNS TO VB NNS IN JJ NNS .\nAid groups and United Nations officials have reported a worsening of Darfur 's security situation in recent months .\tJJ NNS CC NNP NNP NNS VBP VBN DT VBG IN NNP POS NN NN IN JJ NNS .\nMore than 2,00,000 people have died and more than two million others have been displaced since fighting between Darfur rebels and Sudan 's government began in early 2003 .\tJJR IN CD NNS VBP VBN CC JJR IN CD CD NNS VBP VBN VBN IN VBG IN NNP NNS CC NNP POS NN VBD IN JJ CD .\nA Human Rights Watch representative says his expulsion from Venezuela following a critical report shows that President Hugo Chavez will not tolerate any criticism .\tDT NNP NNP NNP NN VBZ PRP$ NN IN NNP VBG DT JJ NN VBZ IN NNP NNP NNP MD RB VB DT NN .\nHRW 's Director for the Americas Jose Miguel Vivanco spoke to reporters Friday in Sao Paulo , Brazil .\tNNP POS NNP IN DT NNP NNP NNP NNP VBD TO NNS NNP IN NNP NNP , NNP .\nVivanco and his deputy were kicked out of the country\tNNP CC PRP$ NN VBD VBN IN IN DT NN\nThursday after their group released a report saying Venezuela 's human rights policies have suffered under President Chavez .\tNNP IN PRP$ NN VBD DT NN VBG NNP POS JJ NNS NNS VBP VBN IN NNP NNP .\nVenezuela 's Foreign Ministry accused HRW of attacking the country 's democratic institutions and illegally interfering in Venezuela 's internal affairs .\tNNP POS NNP NNP VBD NNP IN VBG DT NN POS JJ NNS CC RB VBG IN NNP POS JJ NNS .\nThe HRW report accused the Chavez government of discriminating against political opponents , undermining freedoms of expression and association and disregarding the need for an independent judiciary .\tDT NNP NN VBD DT NNP NN IN VBG IN JJ NNS , VBG NNS IN NN CC NN CC VBG DT NN IN DT JJ NN .\nIt also said the government was trying to restrict the work of Venezuelan rights advocates .\tPRP RB VBD DT NN VBD VBG TO VB DT NN IN JJ NNS NNS .\nVenezuela is buying naval ships and transport aircraft worth more than $ 1.5 billion from Spain .\tNNP VBZ VBG JJ NNS CC NN NN NN JJR IN $ CD CD IN NNP .\nVenezuelan President Hugo Chavez signed the deal with Spanish Defense Minister Jose Bono in Caracas Monday .\tJJ NNP NNP NNP VBD DT NN IN JJ NNP NNP NNP NNP IN NNP NNP .\nUnder the deal , Venezuela will receive ocean patrol boats , coastal patrol vessels , and maritime surveillance planes .\tIN DT NN , NNP MD VB NN NN NNS , JJ NN NNS , CC NN NN NNS .\nReuters news agency quotes a Venezuelan naval commander , Armando Laguna , as saying the equipment will delivered by 2010 .\tNNP NN NN VBZ DT JJ JJ NN , NNP NNP , IN VBG DT NN MD VBN IN CD .\nLast week , the U.S. government threatened to block the transfer of U.S. parts and technology in the planes and boats included in the deal .\tJJ NN , DT NNP NN VBD TO VB DT NN IN NNP NNS CC NN IN DT NNS CC NNS VBN IN DT NN .\nVenezuela says it could get technology from other countries if need be .\tNNP VBZ PRP MD VB NN IN JJ NNS IN NN VB .\nVenezuela has also signed deals this year for a Brazilian aircraft and 1,00,000 Kalashnikov assault rifles from Russia to combat the drug trade along the border with Colombia .\tNNP VBZ RB VBN NNS DT NN IN DT JJ NN CC CD NNP NN NNS IN NNP TO VB DT NN NN IN DT NN IN NNP .\nIsraeli aircraft have fired missiles into the Gaza Strip , killing six people , including a senior commander of the Popular Resistance Committee .\tJJ NN VBP VBN NNS IN DT NNP NNP , VBG CD NNS , VBG DT JJ NN IN DT NNP NNP NNP .\nThe Israeli army said a vehicle carrying several militants was hit Friday as it was leaving a training camp in the southern Gaza town of Rafah .\tDT JJ NN VBD DT NN VBG JJ NNS VBD VBN NNP IN PRP VBD VBG DT NN NN IN DT JJ NNP NN IN NNP .\nPalestinian officials say Iyad Abu al-Aynin and his young daughter were among those killed in the attack .\tJJ NNS VBP NNP NNP NNP CC PRP$ JJ NN VBD IN DT VBN IN DT NN .\nThe Popular Resistance Committee is an umbrella organization with ties to the militant Islamic group Hamas , which took control of the Palestinian government last week .\tDT NNP NNP NNP VBZ DT NN NN IN NNS TO DT JJ NNP NN NNP , WDT VBD NN IN DT JJ NN JJ NN .\nPalestinian officials , meanwhile , have been giving conflicting accounts about the Hamas-led government 's willingness to embrace a two-state solution with Israel .\tJJ NNS , RB , VBP VBN VBG JJ NNS IN DT JJ NN POS NN TO VB DT JJ NN IN NNP .\nOn Friday , Hamas leaders did , however , confirm a report in the Israeli newspaper Haaretzthat the group was trying to broker a deal to extend a truce it has been observing with Israel for the past year .\tIN NNP , NNP NNS VBD , RB , VBP DT NN IN DT JJ NN NNP DT NN VBD VBG TO NN DT NN TO VB DT NN PRP VBZ VBN VBG IN NNP IN DT JJ NN .\nTurkish officials say an avalanche has killed at least six people and trapped around six others under snow .\tJJ NNS VBP DT NN VBZ VBN IN JJS CD NNS CC VBN IN CD NNS IN NN .\nOfficials say the avalanche hit a group of some 15 hikers Sunday on Mount Zigana , in Turkey 's northeastern Gumushane province .\tNNS VBP DT NN VBD DT NN IN DT CD NNS NNP IN NNP NNP , IN NNP POS JJ NNP NN .\nA Turkish news agency ( NTV ) says the military has sent rescuers to the scene where several people have been pulled from the snow .\tDT JJ NN NN LRB NNP RRB VBZ DT NN VBZ VBN NNS TO DT NN WRB JJ NNS VBP VBN VBN IN DT NN .\nTurkey is wrinkled by rugged mountain ranges that surround and intersect the high , semiarid Anatolian plateau .\tNNP VBZ VBN IN JJ NN NNS WDT VBP CC VBP DT JJ , JJ JJ NN .\nMost of Turkey lies within an earthquake zone , and recurrent tremors have been known to cause avalanches in the area .\tJJS IN NNP VBZ IN DT NN NN , CC JJ NNS VBP VBN VBN TO VB NNS IN DT NN .\nThe European Union has warned Saudi Arabia it will take action at the World Trade Organization , if the kingdom supports a widening Muslim boycott of Danish products .\tDT NNP NNP VBZ VBN NNP NNP PRP MD VB NN IN DT NNP NNP NNP , IN DT NN VBZ DT NN NN NN IN JJ NNS .\nEU Trade Commissioner Peter Mandelson issued the warning as protests over cartoons of the Prophet Muhammad spread across the Muslim world .\tNNP NNP NNP NNP NNP VBD DT NN IN NNS IN NNS IN DT NNP NNP VBD IN DT NNP NN .\nThe cartoons were published in a Danish newspaper in September and include an image of the prophet wearing a turban shaped like a bomb .\tDT NNS VBD VBN IN DT JJ NN IN NNP CC VBP DT NN IN DT NN VBG DT NN VBN IN DT NN .\nIn the Gaza Strip Monday , gunmen briefly occupied an EU office .\tIN DT NNP NNP NNP , NNS RB VBD DT NNP NN .\nAnd a Danish dairy company , Arla Foods , says its products have been boycotted throughout the Middle East .\tCC DT JJ NN NN , NNP NNP , VBZ PRP$ NNS VBP VBN VBN IN DT NNP NNP .\nLast week , Saudi Arabia recalled its ambassador to Denmark .\tJJ NN , NNP NNP VBD PRP$ NN TO NNP .\nLibya has already closed its embassy in Denmark .\tNNP VBZ RB VBN PRP$ NN IN NNP .\nThe latest opinion polls show Canada 's opposition Conservative Party with at least a 10-point lead as the country prepares for Monday 's parliamentary election .\tDT JJS NN NNS VBP NNP POS NN NNP NNP IN IN JJS DT JJ NN IN DT NN VBZ IN NNP POS JJ NN .\nIf Prime Minister Paul Martin loses on Monday , the Liberal Party will be out of power for the first time in 12 years .\tIN NNP NNP NNP NNP VBZ IN NNP , DT NNP NNP MD VB IN IN NN IN DT JJ NN IN CD NNS .\nMr. Martin , a former finance minister , is hoping the electorate will credit him with Canada 's booming economy .\tNNP NNP , DT JJ NN NN , VBZ VBG DT NN MD VB PRP IN NNP POS JJ NN .\nHowever , his administration has been mired in a corruption scandal that originated under his predecessor , Jean Chretien .\tRB , PRP$ NN VBZ VBN VBN IN DT NN NN WDT VBD IN PRP$ NN , NNP NNP .\nMr. Martin 's opponent is Stephen Harper , who convinced several conservative political alliances to merge and form the Conservative Party in 2003 .\tNNP NNP POS NN VBZ NNP NNP , WP VBD JJ JJ JJ NNS TO VB CC VB DT NNP NNP IN CD .\nThe prime minister has tried to depict his challenger as an extremist on social issues .\tDT JJ NN VBZ VBN TO VB PRP$ NN IN DT NN IN JJ NNS .\nMr. Harper -- an economist -- has been running on a platform of tax cuts and shifting more power away from the national government to the provinces .\tNNP NNP : DT NN : VBZ VBN VBG IN DT NN IN NN NNS CC VBG JJR NN RB IN DT JJ NN TO DT NNS .\nUkrainian opposition presidential candidate Viktor Yushchenko has accused his rival of trying to steal last month 's flawed election .\tJJ NN JJ NN NNP NNP VBZ VBN PRP$ NN IN VBG TO VB JJ NN POS JJ NN .\nDuring a debate in Kiev Monday , Mr. Yushchenko said the motivating force for a new vote is that Ukrainians desire a democratically elected government .\tIN DT NN IN NNP NNP , NNP NNP VBD DT NN NN IN DT JJ NN VBZ IN NNS VBP DT RB VBN NN .\nPrime Minister Viktor Yanukovych tried to distance himself from former supporter and current President Leonid Kuchma .\tNNP NNP NNP NNP VBD TO VB PRP IN JJ NN CC JJ NNP NNP NNP .\nHe said many Ukrainians lost hope after the breakup of the former Soviet Union , and that it was important for all political forces to work together .\tPRP VBD JJ NNS VBD NN IN DT NN IN DT JJ NNP NNP , CC IN PRP VBD JJ IN DT JJ NNS TO VB RB .\nMr. Yushchenko made his opening remarks in Ukrainian .\tNNP NNP VBD PRP$ NN NNS IN JJ .\nMr. Yanukovych gave his in Russian .\tNNP NNP VBD PRP$ IN JJ .\nTensions remain high as both men have warned of potential clashes between supporters prior to the December 26th vote .\tNNS VBP JJ IN DT NNS VBP VBN IN JJ NNS IN NNS RB TO DT NNP CD NN .\nMr. Yushchenko 's assertion that Ukrainian security officials poisoned him with a highly toxic form of dioxin has further inflamed the political divisions .\tNNP NNP POS NN IN JJ NN NNS VBD PRP IN DT RB JJ NN IN NN VBZ RB VBN DT JJ NNS .\nCuban President Fidel Castro has ordered three days of official state mourning for Pope John Paul , an unusual move for the Communist nation .\tJJ NNP NNP NNP VBZ VBN CD NNS IN JJ NN NN IN NNP NNP NNP , DT JJ NN IN DT JJ NN .\nThe Cuban leader also suspended planned Communist youth festivities as well as the finals of the national baseball league .\tDT JJ NN RB VBD VBN JJ NN NNS RB RB IN DT NNS IN DT JJ NN NN .\nChurch bells tolled for over 30 minutes late Saturday , after the pope 's death was announced at the Vatican .\tNNP VBZ VBN IN IN CD NNS JJ NNP , IN DT NN POS NN VBD VBN IN DT NNP .\nJohn Paul was the only pope ever to visit Cuba , in 1998 , and he has been praised by Havana for what members of the Castro government saw as the church leader 's opposition to ' neo-liberal capitalism . '\tNNP NNP VBD DT JJ NN RB TO VB NNP , IN CD , CC PRP VBZ VBN VBN IN NNP IN WP NNS IN DT NNP NN VBD IN DT NN NN POS NN TO `` JJ NN . ``\nThe European Union 's anti-piracy naval force says Somali pirates have hijacked a North Korean-flagged cargo ship .\tDT NNP NNP POS JJ JJ NN VBZ JJ NNS VBP VBN DT JJ JJ NN NN .\nThe EU force says hijackers seized the MV Rim Wednesday in the Gulf of Aden , just south of the Yemeni coast .\tDT NNP NN VBZ NNS VBD DT NNP NNP NNP IN DT NNP IN NNP , RB RB IN DT JJ NN .\nIn a statement , the EU force says the vessel has altered course and is now heading towards the Somali basin .\tIN DT NN , DT NNP NN VBZ DT NN VBZ VBN NN CC VBZ RB VBG IN DT JJ NN .\nThe statement says investigators are not certain how many crew members are on board the Libyan-owned ship , and do not know the nationalities of crew members .\tDT NN VBZ NNS VBP RB JJ WRB JJ NN NNS VBP IN NN DT JJ NN , CC VBP RB VB DT NNS IN NN NNS .\nThe statement says the vessel was outside a recommended travel corridor and had not made contact with maritime authorities in the region .\tDT NN VBZ DT NN VBD IN DT JJ NN NN CC VBD RB VBN NN IN NN NNS IN DT NN .\nSomali pirates have hijacked dozens of ships over the last two years , taking in tens of millions of dollars in ransom .\tJJ NNS VBP VBN NNS IN NNS IN DT JJ CD NNS , VBG IN NNS IN NNS IN NNS IN NN .\nOn Monday , pirates released a Greek-owned cargo ship they captured two months earlier , after receiving a payment of some $ 3 million .\tIN NNP , VBZ VBN DT JJ NN NN PRP VBD CD NNS RB , IN VBG DT NN IN DT $ CD CD .\nCatholic and Jewish mourners have gathered for the funeral of the former Roman Catholic archbishop of Paris , Cardinal Jean-Marie Lustiger .\tJJ CC JJ NNS VBP VBN IN DT NN IN DT JJ NNP NNP NN IN NNP , NNP NNP NNP .\nFriday 's service was held in Paris at the Notre Dame Cathedral and began with a Jewish prayer .\tNNP POS NN VBD VBN IN NNP IN DT NNP NNP NNP CC VBD IN DT JJ NN .\nHis coffin was then carried inside the cathedral to be placed in a crypt .\tPRP$ NN VBD RB VBN IN DT NN TO VB VBN IN DT NN .\nLustiger , who was born to Jewish parents before converting to Catholicism , had requested that his funeral include both faiths .\tNNP , WP VBD VBN TO JJ NNS IN VBG TO NNP , VBD VBN IN PRP$ NN VBP DT NNS .\nThe cardinal was known for his work promoting greater understanding between Catholics and Jews .\tDT NN VBD VBN IN PRP$ NN VBG JJR NN IN NNPS CC NNPS .\nHe died on Sunday at the age of 80 .\tPRP VBD IN NNP IN DT NN IN CD .\nFrench President Nicolas Sarkozy interrupted his vacation in the United States to attend the funeral .\tJJ NNP NNP NNP JJ PRP$ NN IN DT NNP NNPS TO VB DT NN .\nHe heads back to the U.S. Friday for a meeting with U.S. President George Bush .\tPRP VBZ RB TO DT NNP NNP IN DT NN IN NNP NNP NNP NNP .\nKazakhstan 's parliament has backed a call for a referendum to extend the rule of patriarchal President Nursultan Nazarbayev to 2020 .\tNNP POS NN VBZ VBN DT NN IN DT NN TO VB DT NN IN JJ NNP NNP NNP TO CD .\nMembers of the lower house of parliament announced the initiative Wednesday , which could allow the popular president to skip elections scheduled for 2012 .\tNNS IN DT JJR NN IN NN VBD DT NN NNP , WDT MD VB DT JJ NN TO VB NNS VBN IN CD .\nThe president 's office has not yet commented on the move .\tDT NN POS NN VBZ RB RB VBN IN DT NN .\nThe 70-year old leader has ruled the former Soviet state for the past 20 years .\tDT JJ JJ NN VBZ VBN DT JJ JJ NN IN DT JJ CD NNS .\nHis support in the lower house of parliament is practically guaranteed .\tPRP$ NN IN DT JJR NN IN NN VBZ RB VBN .\nThe chamber is completely dominated by the ruling party , with not a single seat held by the opposition .\tDT NN VBZ RB VBN IN DT NN NN , IN RB DT JJ NN VBN IN DT NN .\nCritics complain about a lack of democracy under Mr. Nazarbayev 's rule .\tNNS VBP IN DT NN IN NN IN NNP NNP POS NN .\nHis supporters praise him for bolstering Kazakhstan 's economy with investments in energy development .\tPRP$ NNS VBP PRP IN VBG NNP POS NN IN NNS IN NN NN .\nNigerian health officials are awaiting the results of tests to see if two sick children may be infected with the lethal strain of the bird flu virus .\tJJ NN NNS VBP VBG DT NNS IN NNS TO VB IN CD JJ NNS MD VB VBN IN DT JJ NN IN DT NN NN NN .\nSamples taken Sunday from the children and their family will determine if they are the first human victims of the disease in Africa .\tNNS VBN NNP IN DT NNS CC PRP$ NN MD VB IN PRP VBP DT JJ JJ NNS IN DT NN IN NNP .\nThe children are from the northern state of Kaduna , where officials have confirmed discovery of a ' highly pathogenic ' version of the H5N1 strain on a chicken farm .\tDT NNS VBP IN DT JJ NN IN NNP , WRB NNS VBP VBN NN IN DT `` RB JJ `` NN IN DT NNP NN IN DT NN NN .\nIt was Africa 's first reported case of the lethal strain of bird flu .\tPRP VBD NNP POS JJ JJ NN IN DT JJ NN IN NN NN .\nThat strain has since been confirmed in the Nigerian states of Plateau and Kano , where as many as 20 farms may be affected .\tDT NN VBZ IN VBN VBN IN DT JJ NNS IN NNP CC NNP , WRB RB JJ IN CD NNS MD VB VBN .\nInternational experts continue to arrive in Nigeria to help with containment efforts , that have included the killing of thousands of chickens across the region .\tNNP NNS VBP TO VB IN NNP TO VB IN NN NNS , WDT VBP VBN DT NN IN NNS IN NNS IN DT NN .\nPresident Bush has an aggressive agenda for his trip to Europe during the coming week , including planned talks on a number of Middle East issues .\tNNP NNP VBZ DT JJ NN IN PRP$ NN TO NNP IN DT JJ NN , VBG JJ NNS IN DT NN IN NNP NNP NNS .\nIn his weekly radio address , Saturday , Mr. Bush said the United States and Europe share common goals of helping rebuild Iraq , spreading democracy across the gobe and working for peace in the Middle East .\tIN PRP$ JJ NN NN , NNP , NNP NNP VBD DT NNP NNPS CC NNP VBP JJ NNS IN VBG VB NNP , VBG NN IN DT NN CC VBG IN NN IN DT NNP NNP .\nOn Friday , in an interview with European reporters , Mr. Bush said the United States ' past disagreements with European allies over the Iraq war do not diminish their shared values .\tIN NNP , IN DT NN IN JJ NNS , NNP NNP VBD DT NNP NNPS POS JJ NNS IN JJ NNS IN DT NNP NN VBP RB VB PRP$ JJ NNS .\nHe also said he plans to discuss concerns about the Middle East , Iran 's nuclear program and the environment during three days of talks with European leaders in Brussels , his first stop .\tPRP RB VBD PRP VBZ TO VB NNS IN DT NNP NNP , NNP POS JJ NN CC DT NN IN CD NNS IN NNS IN JJ NNS IN NNP , PRP$ JJ NN .\nMr. Bush will also meet German Chancellor Gerhard Schroeder and Russian President Vladimir Putin during his trip .\tNNP NNP MD RB VB JJ NNP NNP NNP CC JJ NNP NNP NNP IN PRP$ NN .\nAn Islamic militant group in Iraq says it has taken a U.S. soldier hostage and is threatening to kill him unless Iraqis held in U.S. prisons are freed within 72 hours .\tDT NNP NN NN IN NNP VBZ PRP VBZ VBN DT NNP NN NN CC VBZ VBG TO VB PRP IN NNS VBD IN NNP NNS VBP VBN IN CD NNS .\nA group calling itself the Mujahedeen Squadrons made the kidnapping claim and demand in a statement posted on an Islamist website Tuesday , along with a photograph of the alleged captive .\tDT NN VBG PRP DT NNP NNPS VBD DT NN NN CC NN IN DT NN VBN IN DT NN NN NNP , IN IN DT NN IN DT JJ NN .\nThe Internet statement 's authenticity could not be verified , and the U.S. military said it could not confirm the claim .\tDT NNP NN POS NN MD RB VB VBN , CC DT NNP NN VBD PRP MD RB VB DT NN .\nIndonesian health officials have confirmed the country 's fourth death from bird flu , bringing to 63 the number of people across Asia who have died from the virus since 2003 .\tJJ NN NNS VBP VBN DT NN POS JJ NN IN NN NN , VBG TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NN IN CD .\nAuthorities Friday said recent tests indicate an Indonesian woman who died last week in a Jakarta hospital was infected with the H5N1 strain of avian flu .\tNNS NNP VBD JJ NNS VBP DT JJ NN WP VBD JJ NN IN DT NNP NN VBD VBN IN DT NNP NN IN JJ NN .\nIndonesia 's health ministry says it is investigating whether a neighbor of the victim is also infected .\tNNP POS NN NN VBZ PRP VBZ VBG IN DT NN IN DT NN VBZ RB VBN .\nThe bird flu strain has killed at least 43 people in Vietnam since 2003 , at least 12 in Thailand and four in Cambodia .\tDT NN NN NN VBZ VBN IN JJS CD NNS IN NNP IN CD , IN JJS CD IN NNP CC CD IN NNP .\nHealth experts fear the virus could infect millions of people worldwide if it changes into a form that can be spread easily by human-to-human contact .\tNNP NNS VBP DT NN MD VB NNS IN NNS JJ IN PRP VBZ IN DT NN WDT MD VB VBN RB IN JJ NN .\nAuthorities are continuing emergency rescue efforts after Hurricane Katrina slammed the Gulf Coast of the United States .\tNNS VBP VBG NN NN NNS IN NNP NNP VBD DT NNP NNP IN DT NNP NNPS .\nMississippi Governor Haley Barbour says the death toll could be as high as 80 in one Mississippi county alone .\tNNP NNP NNP NNP VBZ DT NN NN MD VB RB JJ IN CD IN CD NNP NN RB .\nThe powerful storm cut a path of destruction through ( the southern U.S. states of ) Louisiana , Alabama and Mississippi , uprooting trees and destroying homes and buildings .\tDT JJ NN VBD DT NN IN NN IN LRB DT JJ NNP NNS IN RRB NNP , NNP CC NNP , VBG NNS CC VBG NNS CC NNS .\nRescuers used helicopters to pluck stranded residents from rooftops of houses submerged in flooding .\tNNS VBD NNS TO VB JJ NNS IN NNS IN NNS VBN IN NN .\nThe death toll is expected to rise .\tDT NN NN VBZ VBN TO VB .\nLive power lines are down and gas lines ruptured , and authorities are warning residents not to return to their homes yet .\tJJ NN NNS VBP RB CC NN NNS VBD , CC NNS VBP VBG NNS RB TO VB TO PRP$ NNS RB .\nThe storm came ashore early Monday and has cut power to more than one-million residents .\tDT NN VBD RB JJ NNP CC VBZ VBN NN TO JJR IN JJ NNS .\nOfficials say it could be weeks before residents are allowed back into the area .\tNNS VBP PRP MD VB NNS IN NNS VBP VBN RB IN DT NN .\nForecasters say the storm is now centered in northern Mississippi , and moving northeast .\tNNS VBP DT NN VBZ RB VBN IN JJ NNP , CC VBG RB .\nJapan and North Korea are to hold talks this week on issues that have blocked the two countries from forging diplomatic ties .\tNNP CC NNP NNP VBP TO VB NNS DT NN IN NNS WDT VBP VBN DT CD NNS IN VBG JJ NNS .\nJapan 's chief cabinet secretary , Shinzo Abe , said Wednesday the talks will take place in Beijing Saturday and Sunday .\tNNP POS JJ NN NN , NNP NNP , VBD NNP DT NNS MD VB NN IN NNP NNP CC NNP .\nHe said discussions will focus on the abduction of Japanese citizens by North Korea , as well as reparation requests by North Korea related to Japan 's occupation of the Korean Peninsula from 1910 to World War II .\tPRP VBD NNS MD VB IN DT NN IN JJ NNS IN NNP NNP , RB RB IN NN NNS IN NNP NNP VBN TO NNP POS NN IN DT JJ NNP IN CD TO NNP NNP NNP .\nMr. Abe reiterated Japan 's stance that normalizing relations with North Korea will not be possible until the abduction issue is resolved .\tNNP NNP VBD NNP POS NN IN VBG NNS IN NNP NNP MD RB VB JJ IN DT NN NN VBZ VBN .\nNorth Korea admits kidnapping 13 Japanese citizens to train its spies in the 1970s and 1980s .\tNNP NNP VBZ VBG CD JJ NNS TO VB PRP$ NNS IN DT NNS CC NNS .\nPyongyang has returned five , but says the other eight are dead .\tNNP VBZ VBN CD , CC VBZ DT JJ CD VBP JJ .\nJapan wants conclusive proof of their deaths and says there are other cases of suspected abductions that Pyongyang has not properly addressed .\tNNP VBZ JJ NN IN PRP$ NNS CC VBZ EX VBP JJ NNS IN JJ NNS IN NNP VBZ RB RB VBN .\nAzerbaijani police have used water cannon and clubs to disperse opposition supporters who were protesting what they consider to be rigged elections and were demanding a new vote .\tJJ NNS VBP VBN NN NN CC NNS TO VB NN NNS WP VBD VBG WP PRP VBP TO VB VBN NNS CC VBD VBG DT JJ NN .\nPolice waded into the crowd of at least 10,000 activists in a Baku square after protest leaders announced their intention to remain on the scene beyond the time authorities had allotted for the demonstration .\tNNP VBD IN DT NN IN IN JJS CD NNS IN DT NNP NN IN NN NNS VBD PRP$ NN TO VB IN DT NN IN DT NN NNS VBD VBN IN DT NN .\nThe protesters hurled stones at the officers .\tDT NNS VBD NNS IN DT NNS .\nWitnesses reported a number of injuries .\tNNS VBD DT NN IN NNS .\nThe clashes were the first time police have intervened to disperse protesters , who have staged a series of demonstrations protesting the November 6 parliamentary vote .\tDT NNS VBD DT JJ NN NNS VBP VBN TO VB NNS , WP VBP VBD DT NN IN NNS VBG DT NNP CD JJ NN .\nOfficial election results show the governing party still in control of parliament .\tJJ NN NNS VBP DT VBG NN RB IN NN IN NN .\nInternational monitors said the vote fell below democratic standards .\tJJ NNS VBD DT NN VBD IN JJ NNS .\nThe U.S. embassy in Baku deplored what it called ' the unjustified and unprovoked use of force against citizens peacefully exercising their right of assembly . '\tDT NNP NN IN NNP VBD WP PRP VBD `` DT JJ CC JJ NN IN NN IN NNS RB VBG PRP$ NN IN NN . ``\nA U.S. newspaper report says some U.S. officials are critical of Afghan President Hamid Karzai 's efforts to curtail Afghanistan 's huge heroin trade .\tDT NNP NN NN VBZ DT NNP NNS VBP JJ IN JJ NNP NNP NNP POS NNS TO VB NNP POS JJ NN NN .\nThe New York Times , in a story published Sunday , says U.S. diplomats in Kabul expressed alarm at the slow pace of poppy eradication in a recent memo to U.S. Secretary of State Condoleezza Rice .\tDT NNP NNP NNP , IN DT NN VBN NNP , VBZ NNP NNS IN NNP VBD NN IN DT JJ NN IN NN NN IN DT JJ NN TO NNP NNP IN NNP NNP NNP .\nThe memo accuses local officials and village elders of hampering a U.S.-funded program to destroy poppy crops used to make the illegal drug .\tDT NN VBZ JJ NNS CC NN NNS IN VBG DT JJ NN TO VB NN NNS VBN TO VB DT JJ NN .\nAnd it faults top Afghan officials , including Mr. Karzai for doing little to overcome that resistance .\tCC PRP VBZ JJ JJ NNS , VBG NNP NNP IN VBG JJ TO VB DT NN .\nThe Times says the criticism of Mr. Karzai reflects mounting frustration among some American officials that plans to uproot large swaths of Afghanistan 's poppy crop have produced little success .\tDT NNP VBZ DT NN IN NNP NNP VBZ VBG NN IN DT JJ NNS WDT VBZ TO VB JJ NNS IN NNP POS NN NN VBP VBN JJ NN .\nThe newspaper says some State Department officials defended the Afghan president , saying bad weather and logistical problems also contributed to the ineffectiveness of the eradication program .\tDT NN VBZ DT NNP NNP NNS VBD DT JJ NN , VBG JJ NN CC JJ NNS RB VBD TO DT NN IN DT NN NN .\nFighting in southern Somalia continued for a second straight day between militias run by two lawmakers in a dispute over where to locate the country 's transitional government .\tVBG IN JJ NNP VBD IN DT JJ JJ NN IN NNS VBN IN CD NNS IN DT NN IN WRB TO VB DT NN POS JJ NN .\nReports from Baidoa , located several nearly 300 kilometers west of Mogadishu , say fighters commanded by Mohamed Ibrahim Habsadeh took control of the city early Sunday after heavy fighting against forces aligned with Colonel Hassan Mohamed Nur Shargudud .\tNNS IN NNP , VBN JJ RB CD NNS NN IN NNP , VBP NNS VBN IN NNP NNP NNP VBD NN IN DT NN JJ NNP IN JJ NN IN NNS VBN IN NNP NNP NNP NNP NNP .\nThe French news agency , AFP , reports that at least 15 people have been killed in two days of clashes .\tDT JJ NN NN , NNP , VBZ IN IN JJS CD NNS VBP VBN VBN IN CD NNS IN NNS .\nOn Saturday , witnesses said at least five people were killed .\tIN NNP , NNS VBD IN JJS CD NNS VBD VBN .\nIn addition to the location of the transitional government , Mr. Habsadeh and Colonel Shargudud are engaged in a dispute over whether to allow neighboring countries to take part in a regional peacekeeping force .\tIN NN TO DT NN IN DT JJ NN , NNP NNP CC NNP NNP VBP VBN IN DT NN IN IN TO VB JJ NNS TO VB NN IN DT JJ NN NN .\nA published report quotes Iraqi President Jalal Talabani as saying an immediate withdrawal of U.S. troops from Iraq would have ' catastrophic consequences ' for the region .\tDT VBN NN VBZ JJ NNP NNP NNP IN VBG DT JJ NN IN NNP NNS IN NNP MD VB `` JJ NNS `` IN DT NN .\nIn an interview published Tuesday in the French newspaper Le Figaro , President Talabani warned against a withdrawal of U.S.-led coalition forces at this time .\tIN DT NN VBN NNP IN DT JJ NN NNP NNP , NNP NNP VBD IN DT NN IN JJ NN NNS IN DT NN .\nHe says coalition forces will only withdraw when Iraqi forces are ready to maintain security on their own .\tPRP VBZ NN NNS MD RB VB WRB JJ NNS VBP JJ TO VB NN IN PRP$ NN .\nPresident Talabani also says civil war can still be avoided in Iraq .\tNNP NNP RB VBZ JJ NN MD RB VB VBN IN NNP .\nHe says Iraqi political leaders understand violence is not an option .\tPRP VBZ JJ JJ NNS VBP NN VBZ RB DT NN .\nMr. Talabani is scheduled to arrive in Paris on Wednesday for his first official visit to France .\tNNP NNP VBZ VBN TO VB IN NNP IN NNP IN PRP$ JJ JJ NN TO NNP .\nHe is expected to hold talks with French President Jacques Chirac Thursday .\tPRP VBZ VBN TO VB NNS IN JJ NNP NNP NNP NNP .\nGovernments in several countries in the Middle East have denounced the bomb blasts in London Thursday .\tNNS IN JJ NNS IN DT NNP NNP VBP VBN DT NN NNS IN NNP NNP .\nSyria 's President Bashar al-Assad condemned the attacks in a cable sent to Prime Minister Tony Blair .\tNNP POS NNP NNP NNP VBD DT NNS IN DT NN VBN TO NNP NNP NNP NNP .\nIn Tehran , a spokesman for Iran 's foreign ministry , Hamidreza Asefi , expressed his condolences for the victims and their relatives and said terrorism was inappropriate for achieving any aims .\tIN NNP , DT NN IN NNP POS JJ NN , NNP NNP , VBD PRP$ NNS IN DT NNS CC PRP$ NNS CC VBD NN VBD JJ IN VBG DT NNS .\nThe kingdom of Saudi Arabia condemned the blasts and said it continues to support intensifying efforts to combat terrorism .\tDT NN IN NNP NNP VBD DT NNS CC VBD PRP VBZ TO VB VBG NNS TO VB NN .\nBoth Israeli and Palestinian Authority officials condemned the blasts .\tDT JJ CC JJ NNP NNS VBD DT NNS .\nAnd authorities in Kuwait , the United Arab Emirates , Lebanon and Turkey also denounced the attacks .\tCC NNS IN NNP , DT NNP NNP NNPS , NNP CC NNP RB VBD DT NNS .\nBritish Prime Minister Gordon Brown is to make his first visit to the United States next week to meet with President Bush .\tJJ NNP NNP NNP NNP VBZ TO VB PRP$ JJ NN TO DT NNP NNPS JJ NN TO VB IN NNP NNP .\nThe White House announced the two-day visit Thursday , saying Brown will arrive at Mr. Bush 's Camp David retreat to the north of the U.S. capital , on July 29 .\tDT NNP NNP VBD DT JJ NN NNP , VBG NNP MD VB IN NNP NNP POS NNP NNP NN TO DT NN IN DT NNP NN , IN NNP CD .\nA White House spokesman says the two will discuss a broad range of issues , including progress in Iraq and Afghanistan , ending genocide in Darfur and protecting the United States and the United Kingdom from terrorists .\tDT NNP NNP NN VBZ DT CD MD VB DT JJ NN IN NNS , VBG NN IN NNP CC NNP , VBG NN IN NNP CC VBG DT NNP NNPS CC DT NNP NNP IN NNS .\nLast month , Prime Minister Brown succeeded Tony Blair , whose critics complained about his support for the U.S.-led war in Iraq .\tJJ NN , NNP NNP NNP VBD NNP NNP , WP$ NNS VBD IN PRP$ NN IN DT JJ NN IN NNP .\nA suicide bomber blew himself up in a packed mosque Friday in northwestern Pakistan , killing at least 50 people and wounding around 70 others .\tDT NN NN VBD PRP RP IN DT VBN NN NNP IN JJ NNP , VBG IN JJS CD NNS CC VBG IN CD NNS .\nOfficials said the mosque , full of worshippers for Friday prayers , was destroyed and has collapsed .\tNNS VBD DT NN , JJ IN NNS IN NNP NNS , VBD VBN CC VBZ VBN .\nIt is located near a police check point and is visited by paramilitary forces and tribal police .\tPRP VBZ VBN IN DT NN NN NN CC VBZ VBN IN JJ NNS CC JJ NNS .\nThere has been no claim of responsibility .\tEX VBZ VBN DT NN IN NN .\nThe attack took place in Jamrud town in the Khyber tribal agency , an area where Islamic insurgents have increased attacks on trucks carrying supplies for U.S. and NATO troops in Afghanistan .\tDT NN VBD NN IN NNP NN IN DT NNP NN NN , DT NN WRB JJ NNS VBP VBN NNS IN NNS VBG NNS IN NNP CC NNP NNS IN NNP .\nThe bombing came just hours before U.S. President Barack Obama announced a comprehensive new strategy for Afghanistan and Pakistan .\tDT NN VBD RB NNS IN NNP NNP NNP NNP VBD DT JJ JJ NN IN NNP CC NNP .\nMr. Obama says al-Qaida terrorists are planning more attacks on the United States from safe havens in Pakistan and urged Islamabad to be a stronger partner in the fight against militants .\tNNP NNP VBZ NNP NNS VBP VBG JJR NNS IN DT NNP NNPS IN JJ NNS IN NNP CC VBD NNP TO VB DT JJR NN IN DT NN IN NNS .\nThe international media rights group , Reporters Without Borders , says it is concerned about a decision by Venezuelan authorities to charge a television journalist with defaming the country 's Supreme Court .\tDT JJ NNS NNS NN , NNS IN NNS , VBZ PRP VBZ VBN IN DT NN IN JJ NNS TO VB DT NN NN IN VBG DT NN POS NNP NNP .\nThe rights group said in a statement Friday that the state prosecutor 's office filed an ' insult ' charge against Venevision TV journalist Napoleon Bravo Wednesday .\tDT NNS NN VBD IN DT NN NNP IN DT NN NN POS NN VBD DT `` NN `` NN IN NNP NN NN NNP NNP NNP .\nThe group says he faces 15 months in prison , if convicted .\tDT NN VBZ PRP VBZ CD NNS IN NN , IN VBN .\nThe organization says the charge against Bravo , whose real name is Jose Ovidio Rodriguez Cuesta , stems from a September 2004 broadcast on his program 24 Hours in which he criticized Venezuela 's entire judicial system .\tDT NN VBZ DT NN IN NNP , WP$ JJ NN VBZ NNP NNP NNP NNP , VBZ IN DT NNP CD NN IN PRP$ NN CD NNS IN WDT PRP VBD NNP POS JJ JJ NN .\nThe Bravo case is the first to be tried under a new Venezuelan law that increases sanctions for press offenses .\tDT NNP NN VBZ DT JJ TO VB VBN IN DT JJ JJ NN WDT VBZ NNS IN NN NNS .\nThe media rights group says the case demonstrates the law will seriously compromise press freedom in Venezuela .\tDT NNS NNS NN VBZ DT NN VBZ DT NN MD RB VB NN NN IN NNP .\nAt least one person was killed and several others wounded Sunday when police and demonstrators clashed in Indian-controlled Kashmir .\tIN JJS CD NN VBD VBN CC JJ NNS VBD NNP WRB NNS CC NNS VBD IN JJ NNP .\nPolice opened fire on the crowd of stone-throwing protesters in Baramullah town , about 55 kilometers outside Srinigar .\tNNS VBD NN IN DT NN IN JJ NNS IN NNP NN , IN CD NNS IN NNP .\nDemonstrators chanting pro-freedom slogans had taken to the streets to call for the release of several people who had been arrested during a recent strike .\tNNS VBG JJ NNS VBD VBN TO DT NNS TO VB IN DT NN IN JJ NNS WP VBD VBN VBN IN DT JJ NN .\nAnti-India protests have grown in recent months .\tNNP NNS VBP VBN IN JJ NNS .\nLast week , separatists called for the United Nations to intervene in determining the fate of the disputed region .\tJJ NN , NNS VBD IN DT NNP NNPS TO VB IN VBG DT NN IN DT JJ NN .\nAnd a pro-independence strike shut down large parts of Indian-controlled Kashmir on Friday .\tCC DT JJ NN VBD RP JJ NNS IN JJ NNP IN NNP .\nKashmir is divided between India and Pakistan , but claimed by both .\tNNP VBZ VBN IN NNP CC NNP , CC VBN IN DT .\nTwo of the three wars the two countries have fought have been over the disputed territory .\tCD IN DT CD NNS DT CD NNS VBP VBN VBP VBN IN DT JJ NN .\nAbout 70,000 people , mostly civilians , have died in Indian-administered Kashmir since a separatist insurgency began in 1989 .\tIN CD NNS , RB NNS , VBP VBN IN JJ NNP IN DT JJ NN VBD IN CD .\nU.S. President Barack Obama holds a working lunch Tuesday with sub-Saharan African leaders on the sidelines of the U.N. General Assembly .\tNNP NNP NNP NNP VBZ DT VBG NN NNP IN JJ JJ NNS IN DT NNS IN DT NNP NNP NNP .\nU.S. ambassador to the U.N. Susan Rice said the meeting will focus on how the U.S. can work in partnership with African governments to strengthen Africa 's economic and social development .\tNNP NN TO DT NNP NNP NNP VBD DT NN MD VB IN WRB DT NNP MD VB IN NN IN JJ NNS TO VB NNP POS JJ CC JJ NN .\nShe said the three main topics will be job creation , creating a better climate for trade and investment , and improving agriculture to feed more people .\tPRP VBD DT CD JJ NNS MD VB NN NN , VBG DT JJR NN IN NN CC NN , CC VBG NN TO VB JJR NNS .\nPresident Obama has previously urged African leaders to fight corruption and to promote the rule of law in order to spark economic growth .\tNNP NNP VBZ RB VBN JJ NNS TO VB NN CC TO VB DT NN IN NN IN NN TO VB JJ NN .\nMr. Obama has made one visit to sub-Saharan Africa since becoming president , to Ghana in July .\tNNP NNP VBZ VBN CD NN TO JJ NNP IN VBG NN , TO NNP IN NNP .\nA close aide says Iran 's moderate former President Mohammad Khatami may soon withdraw from the June presidential election .\tDT JJ NN VBZ NNP POS JJ JJ NNP NNP NNP MD RB VB IN DT NNP JJ NN .\nMr. Khatami 's aide told several Western news agencies Monday that he expects an announcement soon .\tNNP NNP POS NN VBD JJ JJ NN NNS NNP IN PRP VBZ DT NN RB .\nThe news comes after the ex-president spoke to his supporters at a meeting late Sunday .\tDT NN VBZ IN DT NN VBD TO PRP$ NNS IN DT NN JJ NNP .\nNews agencies quote Mr. Khatami as saying that another moderate candidate , Mir Hossein Mousavi , may face less resistance from some hardliners and so might be a better contender .\tNN NNS VBP NNP NNP IN VBG IN DT JJ NN , NNP NNP NNP , MD VB JJR NN IN DT NNS CC RB MD VB DT JJR NN .\nHe indicated that he may consider withdrawing to avoid dividing the pro-reformist vote .\tPRP VBD IN PRP MD VB VBG TO VB VBG DT JJ NN .\nMr. Khatami served as president of Iran from 1997 to 2005 .\tNNP NNP VBD IN NN IN NNP IN CD TO CD .\nMr. Mousavi served as Iran 's prime minister throughout most of the 1980s , but his position was scrapped when Iran 's constitution was revised in 1989 .\tNNP NNP VBD IN NNP POS JJ NN IN JJS IN DT NNS , CC PRP$ NN VBD VBN WRB NNP POS NN VBD VBN IN CD .\nBritish military personnel are due to leave Indonesia 's tsunami-devastated Aceh province Sunday after more than a month working on relief efforts .\tJJ JJ NNS VBP JJ TO VB NNP POS JJ NNP NN NNP IN JJR IN DT NN VBG IN NN NNS .\nBritish pilots and other personnel have been in Indonesia since the first week in January .\tJJ NNS CC JJ NNS VBP VBN IN NNP IN DT JJ NN IN NNP .\nThe British Embassy in Jakarta says a Royal Navy vessel will stay in Indonesian waters .\tDT NNP NNP IN NNP VBZ DT NNP NNP NN MD VB IN JJ NNS .\nThe United States has already started scaling back military relief efforts in Indonesia by pulling out an aircraft carrier that operated a major helicopter relief operation .\tDT NNP NNPS VBZ RB VBN VBG RB JJ NN NNS IN NNP IN VBG RP DT NN NN WDT VBD DT JJ NN NN NN .\nAustralia has announced plans to withdraw relief forces , as well .\tNNP VBZ VBN NNS TO VB NN NNS , RB RB .\nIndonesia was the nation hardest-hit by the December 26 tsunami .\tNNP VBD DT NN NN IN DT NNP CD NNS .\nIndonesian officials say the death toll in the country has risen to at least 1,17,000 , while the number of missing and presumed dead remained at nearly 1,15,000 .\tJJ NNS VBP DT NN NN IN DT NN VBZ VBN TO IN JJS CD , IN DT NN IN JJ CC JJ NN VBD IN RB CD .\nIndian police Thursday are questioning a married couple in connection with Sunday 's train bombing that killed 68 people .\tJJ NN NNP VBP VBG DT JJ NN IN NN IN NNP POS NN NN WDT VBD CD NNS .\nSecurity officials say they detained the husband and wife late in Bikaner in northern Rajasthan , an area bordering Pakistan .\tNN NNS VBP PRP VBD DT NN CC NN RB IN NNP IN JJ NNP , DT NN VBG NNP .\nMedia reports say the man resembles the sketch of a suspect released earlier this week .\tNNS NNS VBP DT NN VBZ DT NN IN DT NN VBN RBR DT NN .\nThere are conflicting reports about the number of people who have been detained in the ongoing probe , with figures ranging from three to 12 .\tEX VBP VBG NNS IN DT NN IN NNS WP VBP VBN VBN IN DT JJ NN , IN NNS VBG IN CD CC CD .\nAlso Thursday , Indian authorities transferred the bodies of 12 Pakistanis killed in the attack to their relatives in Pakistan .\tRB NNP , JJ NNS VBD DT NNS IN CD NNS VBN IN DT NN TO PRP$ NNS IN NNP .\nPakistani soldiers carried the coffins across the border and passed them to grieving relatives .\tJJ NNS VBD DT NNS IN DT NN CC VBD PRP TO VBG NNS .\nThe bombing took place on a train from New Delhi to the Pakistani city of Lahore .\tDT NN VBD NN IN DT NN IN NNP NNP TO DT JJ NN IN NNP .\nTwo small bombs aboard triggered a fire that engulfed the train about an hour after it left the Indian capital .\tCD JJ NNS RB VBD DT NN WDT VBD DT NN IN DT NN IN PRP VBD DT JJ NN .\nKenya 's Finance Minister Amos Kimunya says violence following the country 's recent disputed election may have cost the Kenyan economy up to $ 1 billion .\tNNP POS NNP NNP NNP NNP VBZ NN VBG DT NN POS JJ JJ NN MD VB VBN DT JJ NN IN TO $ CD CD .\nKimunya says tourism , agriculture , and other sectors were affected by the unrest , but he says the economy is resilient and will recover soon .\tNNP VBZ NN , NN , CC JJ NNS VBD VBN IN DT NN , CC PRP VBZ DT NN VBZ JJ CC MD VB RB .\nHe also projected a strong seven percent growth rate for the country this year .\tPRP RB VBD DT JJ CD NN NN NN IN DT NN DT NN .\nKenya is East Africa 's largest economy .\tNNP VBZ NNP NNP POS JJS NN .\nThe Bloomberg financial news service reports Kenya received more than one million tourists in the first nine months of 2007 and is the largest exporter of black tea in the world .\tDT NNP JJ NN NN NNS NNP VBD JJR IN CD CD NNS IN DT JJ CD NNS IN CD CC VBZ DT JJS NN IN JJ NN IN DT NN .\nIraq 's government has ordered its troops to Baghdad 's international airport to reopen the facility after the British company that protects it shut it down in a payment dispute .\tNNP POS NN VBZ VBN PRP$ NNS TO NNP POS JJ NN TO VB DT NN IN DT JJ NN WDT VBZ PRP VBD PRP RP IN DT NN NN .\nActing Transportation Minister Esmat Amer said Friday keeping the airport open is a matter of Iraqi sovereignty .\tNNP NNP NNP NNP NNP VBD NNP VBG DT NN JJ VBZ DT NN IN JJ NN .\nHe said flights will resume Friday .\tPRP VBD NNS MD VB NNP .\nThe British security firm Global Strategies Group says the Iraqi government is seven months behind in payments .\tDT JJ NN NN NNP NNP NNP VBZ DT JJ NN VBZ CD NNS IN IN NNS .\nThe company says it will continue to secure the complex , but flights will be grounded until the bills are paid .\tDT NN VBZ PRP MD VB TO VB DT NN , CC NNS MD VB VBN IN DT NNS VBP VBN .\nMeanwhile , in Baghdad , insurgent attacks have left two Iraqis dead and at least six others injured .\tRB , IN NNP , JJ NNS VBP VBN CD NNS JJ CC IN JJS CD NNS VBN .\nIn other developments , former American hostage Roy Hallums , who was rescued by American troops Wednesday , is on his way home to the United States .\tIN JJ NNS , JJ NNP NN NNP NNP , WP VBD VBN IN JJ NNS NNP , VBZ IN PRP$ NN NN TO DT NNP NNPS .\nMost Asian stock markets are closed Thursday , for the Christmas holidays .\tJJS JJ NN NNS VBP JJ NNP , IN DT NNP NNS .\nTokyo 's Nikkei index rose 82 points , nearly one percent , to finish at 8,599 .\tNNP POS NNP NN VBD CD NNS , RB CD NN , TO VB IN CD .\nShare prices closed lower in Shanghai and Taipei , but ended higher in Bangkok .\tNN NNS VBD JJR IN NNP CC NNP , CC VBD JJR IN NNP .\nMarkets are closed in Hong Kong , Jakarta , Manila , Mumbai , Seoul , Sydney and Wellington .\tNNS VBP VBN IN NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nIn currency trading , the dollar was selling at 90.41 yen , down 0.5 yen from Wednesday .\tIN NN NN , DT NN VBD VBG IN CD NNS , RB CD NN IN NNP .\nAfghan President Hamid Karzai says terrorists who are killing foreign soldiers in his country want the international community to fail in its efforts to rebuild war-torn Afghanistan .\tJJ NNP NNP NNP VBZ NNS WP VBP VBG JJ NNS IN PRP$ NN VBP DT JJ NN TO VB IN PRP$ NNS TO VB JJ NNP .\nMr. Karzai told the U.N. General Assembly Wednesday that terrorists see a prosperous Afghanistan as their ultimate defeat .\tNNP NNP VBD DT NNP NNP NNP NNP IN NNS VBP DT JJ NNP IN PRP$ JJ NN .\nIn a clear reference to neighboring Pakistan , Mr. Karzai told world leaders that ' terrorism does not emanate from within Afghanistan . '\tIN DT JJ NN TO VBG NNP , NNP NNP VBD NN NNS IN `` NN VBZ RB VB IN IN NNP . ``\nHe said there is a need to destroy terrorist sanctuaries beyond Afghanistan , and to dismantle all terror networks in the region .\tPRP VBD EX VBZ DT NN TO VB JJ NNS IN NNP , CC TO VB DT NN NNS IN DT NN .\nMr. Karzai 's remarks come just two weeks after Pakistan 's truce with pro-Taleban militants in the North Waziristan region .\tNNP NNP POS NNS VBP RB CD NNS IN NNP POS NN IN JJ NNS IN DT NNP NNP NN .\nPakistani troops agreed to end their crackdown in the region , and the militants said they will stop harboring foreign terrorists and will stop crossing into Afghanistan to launch ambushes .\tJJ NNS VBD TO VB PRP$ NN IN DT NN , CC DT NNS VBD PRP MD VB VBG JJ NNS CC MD VB VBG IN NNP TO VB NNS .\nNorway has pulled out of the Nordic Combined team event at the Turin Olympics in Italy because nearly the entire team has become ill .\tNNP VBZ VBN IN IN DT NNP NNP NN NN IN DT NNP NNP IN NNP IN RB DT JJ NN VBZ VBN JJ .\nNorwegian spokesman Tom Dahl Froeshaug said Tuesday that only one member of the four-man team is healthy enough to compete .\tJJ NN NNP NNP NNP VBD NNP IN RB CD NN IN DT JJ NN VBZ JJ RB TO VB .\nHe says an infection has swept through the team that won the world championship last year .\tPRP VBZ DT NN VBZ VBN IN DT NN WDT VBD DT NN NN JJ NN .\nThe Nordic Combined event includes ski jumping off the large hill , and the 4x5-kilometer cross-country ski race .\tDT NNP NNP NN VBZ NN VBG RP DT JJ NN , CC DT JJ JJ NN NN .\nThe Norwegians are hoping to be ready for the individual sprint competition next Tuesday .\tDT NNS VBP VBG TO VB JJ IN DT JJ NN NN IN NNP .\nThe outgoing president of Ukraine , Leonid Kuchma , says there will not be a revolution in his country over the nation 's hotly contested presidential election .\tDT JJ NN IN NNP , NNP NNP , VBZ EX MD RB VB DT NN IN PRP$ NN IN DT NN POS RB VBN JJ NN .\nOn the eve of Sunday 's run-off vote , President Kuchma said in a televised address that authorities will not allow instability to erupt over the vote .\tIN DT NN IN NNP POS NN NN , NNP NNP VBD IN DT JJ NN IN NNS MD RB VB NN TO VB IN DT NN .\nOpposition candidate Viktor Yushchenko has warned that his supporters will stage massive demonstrations if electoral fraud is discovered .\tNN NN NNP NNP VBZ VBN IN PRP$ NNS MD VB JJ NNS IN JJ NN VBZ VBN .\nThe United States has warned it will review its relations with Ukraine if the election fails to be free or fair .\tDT NNP NNP VBZ VBN PRP MD VB PRP$ NNS IN NNP IN DT NN VBZ TO VB JJ CC JJ .\nMr. Yushchenko , with just under 40 percent support , edged out Prime Minister Viktor Yanukovych by a half of percentage point in the first round of voting on October 31 .\tNNP NNP , IN RB IN CD NN NN , VBD RP NNP NNP NNP NNP IN DT NN IN NN NN IN DT JJ NN IN NN IN NNP CD .\nInternational observers said the October balloting fell short of democratic standards .\tNNP NNS VBD DT NNP NN VBD RB IN JJ NNS .\nSupporters of Nigerian Vice President Atiku Abubakar have launched a new political party to oppose a possible re-election effort by President Olusegun Obasanjo .\tNNS IN JJ NNP NNP NNP NNP VBP VBN DT JJ JJ NN TO VB DT JJ NN NN IN NNP NNP NNP .\nThey say the new party , the Advanced Congress of Democrats , will allow Mr. Abubakar to contest next year 's presidential elections and help rally opponents of the president .\tPRP VBP DT JJ NN , DT NNP NNP IN NNPS , MD VB NNP NNP TO NN IN NN POS JJ NNS CC VB VB NNS IN DT NN .\nThe spokesman for the new party , Lai Mohammed , tells VOA that efforts to amend the constitution to allow Mr. Obasanjo 's re-election are ' unconstitutional , immoral and illegal . '\tDT NN IN DT JJ NN , NNP NNP , VBZ NNP IN NNS TO VB DT NN TO VB NNP NNP POS NN VBP `` JJ , JJ CC JJ . ``\nNigeria 's parliament is debating a constitutional amendment proposed by supporters of Mr. Obasanjo that would permit presidents three terms in office instead of two .\tNNP POS NN VBZ VBG DT JJ NN VBN IN NNS IN NNP NNP WDT MD VB NNS CD NNS IN NN IN IN CD .\nThe president has not yet said whether he will run for a third term if the measure passes .\tDT NN VBZ RB RB VBN IN PRP MD VB IN DT JJ NN IN DT NN VBZ .\nMr. Abubakar announced his intention to run for president earlier this month .\tNNP NNP VBD PRP$ NN TO VB IN NN RBR DT NN .\nThe rebel Lord 's Resistance Army has killed at least eight people in a new series of attacks in southern Sudan .\tDT NN NNP POS NN NNP VBZ VBN IN JJS CD NNS IN DT JJ NN IN NNS IN JJ NNP .\nLocal officials say LRA fighters attacked villages near Yambio , the capital of Western Equatoria state , on Friday and Saturday .\tJJ NNS VBP NNP NNS VBD NNS IN NNP , DT NN IN JJ NNP NN , IN NNP CC NNP .\nThey say all of those killed were civilians .\tPRP VBP DT IN DT VBN VBD NNS .\nThe LRA is originally from Uganda but has evolved into a roaming band of fighters causing terror across central Africa .\tDT NNP VBZ RB IN NNP CC VBZ VBN IN DT VBG NN IN NNS VBG NN IN JJ NNP .\nLast month , Human Rights Watch said the group had killed more than 250 people in the Central African Republic and the Democratic Republic of Congo over the previous year and a half .\tJJ NN , NNP NNP NNP VBD DT NN VBD VBN RBR IN CD NNS IN DT NNP NNP NNP CC DT JJ NNP IN NNP IN DT JJ NN CC DT NN .\nIt said nearly 700 others were kidnapped and forced to be either soldiers or sex slaves .\tPRP VBD RB CD NNS VBD VBN CC VBN TO VB DT NNS CC NN NNS .\nUgandan forces have chased the rebels in neighboring countries but have failed to stop the attacks or catch LRA leader Joseph Kony .\tJJ NNS VBP VBN DT NNS IN VBG NNS CC VBP VBN TO VB DT NNS CC VB NNP NN NNP NNP .\nKony is wanted by the International Criminal Court for alleged crimes against humanity .\tNNP VBZ VBN IN DT NNP NNP NNP IN JJ NNS IN NN .\nA Togolese general says the military has agreed to return the country to ' constitutional order ' to resolve the crisis over the installation of President Faure Gnassingbe .\tDT JJ NN VBZ DT NN VBZ VBN TO VB DT NN TO `` JJ NN `` TO VB DT NN IN DT NN IN NNP NNP NNP .\nGeneral Seyi Memene said the military agreed to the move after talks Tuesday with West African diplomats .\tNNP NNP NNP VBD DT NN VBD TO DT NN IN NNS NNP IN JJ JJ NNS .\nHe did not say weather elections will be held within 60 days as specified under Togo 's former constitution .\tPRP VBD RB VB NN NNS MD VB VBN IN CD NNS IN VBN IN NNP POS JJ NN .\nLawmakers amended the constitution earlier this month after the death of longtime President Gnassingbe Eyadema , allowing his son to serve out his term until 2008 .\tNNS VBD DT NN RBR DT NN IN DT NN IN JJ NNP NNP NNP , VBG PRP$ NN TO VB RP PRP$ NN IN CD .\nThe regional grouping , known as the Economic Community of West African States ( ECOWAS ) , has threatened sanctions against the Togolese government if it does not hold fresh elections .\tDT JJ NN , VBN IN DT NNP NNP IN NNP NNP NNP LRB NNP RRB , VBZ VBN NNS IN DT JJ NN IN PRP VBZ RB VB JJ NNS .\nIran 's leaders have sent their condolences to the grieving families of the victims of a mosque fire that killed 59 worshippers in Tehran Monday .\tNNP POS NNS VBP VBN PRP$ NNS TO DT VBG NNS IN DT NNS IN DT NN NN WDT VBD CD NNS IN NNP NNP .\nSupreme Leader Ayatollah Ali Khamenei and President Mohammad Khatami issued separate statements Tuesday promising the best possible medical care for the more than 200 injured , and an investigation into the fire 's cause .\tNNP NNP NNP NNP NNP CC NNP NNP NNP VBD JJ NNS NNP VBG DT JJS JJ JJ NN IN DT JJR IN CD NN , CC DT NN IN DT NN POS NN .\nNo official cause has been determined , but initial reports point to a kerosene heater that ignited either a curtain or a woman 's veil , setting the Arg mosque on fire .\tDT NN NN VBZ VBN VBN , CC JJ NNS VBP TO DT NN NN WDT VBD RB DT NN CC DT NN POS NN , VBG DT NNP NN IN NN .\nThe fire broke out during evening prayers in the women 's section of the mosque .\tDT NN VBD RP IN NN NNS IN DT NNS POS NN IN DT NN .\nWitnesses said the flames spread quickly , and dozens of worshippers were killed or injured from a stampede triggered by panic .\tNNS VBD DT NNS VBD RB , CC NNS IN NNS VBD VBN CC VBN IN DT NN VBN IN NN .\nEight Chinese laborers who were held hostage by Iraqi militants for five days last week are on their way home .\tCD JJ NNS WP VBD VBN NN IN JJ NNS IN CD NNS JJ NN VBP IN PRP$ NN NN .\nThe group flew out of Baghdad earlier Tuesday , accompanied by several Chinese diplomats .\tDT NN VBD IN IN NNP RBR NNP , VBN IN JJ JJ NNS .\nAfter a brief stop in Amman , Jordan , they will fly on to Beijing .\tIN DT JJ NN IN NNP , NNP , PRP MD VB IN TO NNP .\nThe eight men were driving to Jordan when they were kidnapped last Tuesday .\tDT CD NNS VBD VBG TO NNP WRB PRP VBD VBN JJ NNP .\nThe kidnappers released a video threatening to kill the Chinese workers if Beijing did not explain why they were in Iraq .\tDT NNS VBD DT NN VBG TO VB DT JJ NNS IN NNP VBD RB VB WRB PRP VBD IN NNP .\nThe laborers were turned over to a Chinese embassy official at a mosque in Ramdi on Sunday .\tDT NNS VBD VBN RP TO DT JJ NN NN IN DT NN IN NNP IN NNP .\nThe insurgents said they released the men after Beijing promised to discourage its citizens from traveling to Iraq .\tDT NNS VBD PRP VBD DT NNS IN NNP VBD TO VB PRP$ NNS IN VBG TO NNP .\nThe Nepalese military says it has confiscated explosives , bombs , communication devices and other weapons belonging to Maoist rebels that could have been used in several attacks .\tDT JJ NN VBZ PRP VBZ VBN NNS , NNS , NN NNS CC JJ NNS VBG TO NNP NNS WDT MD VB VBN VBN IN JJ NNS .\nA Royal Nepalese Army spokesman , Brigadier-General Deepak Gurung , told journalists in Kathmandu Tuesday the weapons were recovered from various Maoist hideouts in and around the nation 's capital .\tDT NNP JJ NNP NN , JJ NNP NNP , VBD NNS IN NNP NNP DT NNS VBD VBN IN JJ NNP NNS IN CC IN DT NN POS NN .\nThe army confiscated the weapons as Maoist rebels escalated their attacks ahead of a January 13 deadline set by Prime Minister Sher Bahadur Deuba for the Maoists to resume peace talks .\tDT NN VBD DT NNS IN JJ NNS VBD PRP$ NNS RB IN DT NNP CD NN VBN IN NNP NNP NNP NNP NNP IN DT NNS TO VB NN NNS .\nMaoist rebels have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state .\tNNP NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN .\nSo far , the conflict has claimed more than 10,000 lives .\tRB RB , DT NN VBZ VBN JJR IN CD NNS .\nThe U.N. refugee agency says the death toll has risen to 91 from two boats that capsized off the coast of Yemen while crossing from the Horn of Africa .\tDT NNP NN NN VBZ DT NN NN VBZ VBN TO CD IN CD NNS WDT VBD RP DT NN IN NNP IN VBG IN DT NNP IN NNP .\nThe U.N. High Commissioner for Refugees says another 114 people are still missing from the two vessels .\tDT NNP NNP NNP IN NNP VBZ DT CD NNS VBP RB VBG IN DT CD NNS .\nThey were illegally carrying a total of 256 Somalis and Ethiopians across the Gulf of Aden a few days ago .\tPRP VBD RB VBG DT NN IN CD NNS CC NNS IN DT NNP IN NNP DT JJ NNS RB .\nIt says a total of 51 people survived the voyages , noting that rescue operations continue along the Yemeni coast .\tPRP VBZ DT NN IN CD NNS VBD DT NNS , VBG IN NN NNS VBP IN DT JJ NN .\nThe U.N. agency says a new wave of human smuggling vessels has been trying to cross the Gulf of Aden after a two-week lull stemming from bad weather .\tDT NNP NN VBZ DT JJ NN IN JJ NN NNS VBZ VBN VBG TO VB DT NNP IN NNP IN DT JJ NN VBG IN JJ NN .\nThousands of Somalis and Ethiopians try to reach Yemen each year to escape poverty in their home countries .\tNNS IN NNS CC NNS VBP TO VB NNP DT NN TO VB NN IN PRP$ NN NNS .\nA German man , allegedly held in a U.S. secret prison in Afghanistan , says he has identified a German police official who visited him there .\tDT JJ NN , RB VBN IN DT NNP NN NN IN NNP , VBZ PRP VBZ VBN DT JJ NN NN WP VBD PRP RB .\nKhalid al-Masri , a German citizen of Lebanese descent , has said he was seized by CIA agents in Macedonia in 2003 and taken to Afghanistan , where he was interrogated as a terrorism suspect .\tNNP NNP , DT JJ NN IN JJ NN , VBZ VBN PRP VBD VBN IN NNP NNS IN NNP IN CD CC VBN TO NNP , WRB PRP VBD VBN IN DT NN NN .\nMasri has filed suit against the CIA for wrongful imprisonment , and German prosecutors are probing whether German officials had knowledge of his arrest .\tNNP VBZ VBN NN IN DT NNP IN JJ NN , CC JJ NNS VBP VBG IN JJ NNS VBD NN IN PRP$ NN .\nProsecutors said Tuesday that Masri was ' 90 percent ' certain that a man in a police line-up was the official who visited him in prison .\tNNS VBD NNP IN NNP VBD `` CD NN `` JJ IN DT NN IN DT NN NN VBD DT NN WP VBD PRP IN NN .\nHowever , they said they were concerned that Masri was not absolutely certain .\tRB , PRP VBD PRP VBD VBN IN NNP VBD RB RB JJ .\nGerman officials have denied any knowledge of the case until Masri was released in Albania .\tJJ NNS VBP VBN DT NN IN DT NN IN NNP VBD VBN IN NNP .\nAuthorities in military-ruled Burma have called on people to report terrorists , following two explosions and the discovery of a mine in Bago division over the last five days .\tNNS IN JJ NNP VBP VBN IN NNS TO VB NNS , VBG CD NNS CC DT NN IN DT NN IN NNP NN IN DT JJ CD NNS .\nThe official New Light of Myanmar newspaper on Saturday blamed the bombings on anti-government organizations and armed terrorist groups .\tDT JJ NNP NNP IN NNP NN IN NNP VBD DT NNS IN JJ NNS CC JJ JJ NNS .\nThe paper said a bomb blast occurred Friday night on a wooden bridge near the village of Kyauk-ein-su .\tDT NN VBD DT NN NN VBD NNP NN IN DT JJ NN IN DT NN IN NNP .\nThat blast was followed about 10 minutes later by an explosion near an empty house in the village of Sar-dan .\tDT NN VBD VBN IN CD NNS RB IN DT NN IN DT JJ NN IN DT NN IN NNP .\nNo casualties were reported in either explosion .\tDT NNS VBD VBN IN DT NN .\nThe report also said an improvised mine had been found last Sunday in Kanyutkwin , Phyu township after authorities received a tip .\tDT NN RB VBD DT JJ NN VBD VBN VBN JJ NNP IN NNP , NNP NN IN NNS VBD DT NN .\nThe NATO-led mission in Afghanistan has urged civilians to stay away from military patrol vehicles so that they are not mistaken for insurgents .\tDT JJ NN IN NNP VBZ VBN NNS TO VB RB IN JJ NN NNS RB IN PRP VBP RB VBN IN NNS .\nA spokesman , Bernd Allert , for NATO 's International Security Assistance Force , ISAF , told reporters Wednesday civilian drivers should behave so they can not be mistaken for a threat .\tDT NN , NNP NNP , IN NNP POS NNP NNP NNP NNP , NNP , VBD NNS NNP JJ NNS MD VB IN PRP MD RB VB VBN IN DT NN .\nThe spokesman warned that ISAF forces are authorized to fire warning shots if unidentified vehicles get too close .\tDT NN VBD IN NNP NNS VBP VBN TO VB NN NNS IN JJ NNS VBP RB JJ .\nThe warning is part of a new public awareness campaign aimed at preventing civilian casualties - an issue that has plagued the alliance over the past year .\tDT NN VBZ NN IN DT JJ JJ NN NN VBN IN VBG JJ NNS IN DT NN WDT VBZ VBN DT NN IN DT JJ NN .\nIt will also include new signs on military vehicles , billboards and television advertisements .\tPRP MD RB VB JJ NNS IN JJ NNS , NNS CC NN NNS .\nAfter several incidents in which civilians were killed during anti-insurgent operations last year , Afghan President Hamid Karzai demanded NATO and the U.S.-led coalition review its military strategy .\tIN JJ NNS IN WDT NNS VBD VBN IN JJ NNS JJ NN , JJ NNP NNP NNP VBD NNP CC DT JJ NN NN PRP$ JJ NN .\nFormer Vice President Al Gore is joining a venture capital company in the hope of boosting investments in clean energy .\tJJ JJ NNP NNP NNP VBZ VBG DT NN NN NN IN DT NN IN VBG NNS IN JJ NN .\nGore won the Nobel Prize a few weeks ago for his role in sounding the alarm about the dangers of global warming from the carbon put into the atmosphere by burning oil and coal .\tNNP VBD DT NNP NNP DT JJ NNS IN IN PRP$ NN IN VBG DT NN IN DT NNS IN JJ NN IN DT NN VBN IN DT NN IN VBG NN CC NN .\nThe company - Kleiner , Perkins , Caufield and Byers - was an early investor in small computer-related start-up companies that later blossomed into major companies .\tDT NN : NNP , NNP , NNP CC NNP : VBD DT JJ NN IN JJ JJ NN NNS WDT RB VBD IN JJ NNS .\nGore adds his political skills and clout to the company 's financial resources and expertise .\tNNP VBZ PRP$ JJ NNS CC NN TO DT NN POS JJ NNS CC NN .\nHe plans to donate his salary to an environmental group .\tPRP VBZ TO VB PRP$ NN TO DT JJ NN .\nPakistani officials say they have arrested a foreigner suspected of links with the al-Qaida terrorist network .\tJJ NNS VBP PRP VBP VBN DT NN VBN IN NNS IN DT NNP JJ NN .\nOfficials say the suspect was arrested Monday night in a village , Charsadda , northeast of Peshawar , about 50 kilometers from the Afghan border .\tNNS VBP DT NN VBD VBN NNP NN IN DT NN , NNP , NN IN NNP , IN CD NNS IN DT JJ NN .\nPakistani security forces have rounded up dozens of suspected al-Qaida members following the arrest of the network 's reputed third-in-command , Abu Farraj al-Libbi , earlier this month .\tJJ NN NNS VBP VBN RP NNS IN JJ NNP NNS VBG DT NN IN DT NN POS JJ NN , NNP NNP NNP , RBR DT NN .\nThe U.S. State Department says Libyan leader Moammar Gadhafi declined a U.S. request to meet with the highest ranking U.S. official to visit Libya in decades .\tDT NNP NNP NNP VBZ JJ NN NNP NNP VBD DT NNP NN TO VB IN DT JJS JJ NNP NN TO VB NNP IN NNS .\nA State Department spokesman says Deputy Secretary of State John Negroponte instead met with lower-level officials during his visit to Tripoli .\tDT NNP NNP NN VBZ NNP NNP IN NNP NNP NNP RB VBD IN JJ NNS IN PRP$ NN TO NNP .\nHe says talks focused on Libya completing compensation payments to the families of the victims of the 1988 bombing of Pan Am flight 103 over Lockerbie , Scotland .\tPRP VBZ NNS VBD IN NNP VBG NN NNS TO DT NNS IN DT NNS IN DT CD NN IN NNP NNP NN CD IN NNP , NNP .\nThey also discussed Libya 's prosecution of five Bulgarian nurses and a Palestinian doctor sentenced to death for allegedly infecting 400 children with HIV .\tPRP RB VBD NNP POS NN IN CD JJ NNS CC DT JJ NN VBN TO NN IN RB VBG CD NNS IN NNP .\nNegroponte and the Libyan officials also discussed the crisis in Darfur .\tNNP CC DT JJ NNS RB VBD DT NN IN NNP .\nThe U.S. restored full diplomatic ties with Libya last year after the government of Mr. Gadhafi renounced terrorism .\tDT NNP VBD JJ JJ NNS IN NNP JJ NN IN DT NN IN NNP NNP VBD NN .\nThe death toll in Kenya from a lethal batch of illegal alcohol has risen to at least 41 .\tDT NN NN IN NNP IN DT JJ NN IN JJ NN VBZ VBN TO IN JJS CD .\nAuthorities in the Machakos district south of Nairobi say another 80 people are being treated , with nine of them in critical condition in a Nairobi hospital .\tNNS IN DT NNP NN NN IN NNP VBP DT CD NNS VBP VBG VBN , IN CD IN PRP IN JJ NN IN DT NNP NN .\nSeveral people have gone blind .\tJJ NNS VBP VBN JJ .\nThe victims drank the homemade brew at a bar in Makutano , a village some 50 kilometers south of Nairobi .\tDT NNS VBD DT JJ NN IN DT NN IN NNP , DT NN DT CD NNS RB IN NNP .\nPolice are looking for a woman they believe sold the illegal brew .\tNNS VBP VBG IN DT NN PRP VBP VBN DT JJ NN .\nAuthorities say the drink probably contained methanol to make it more potent .\tNNS VBP DT NN RB VBD NN TO VB PRP RBR JJ .\nCheap , illegal alcoholic drinks , known as chang'aa , are common in Kenya .\tJJ , JJ JJ NNS , VBN IN NN , VBP JJ IN NNP .\nIn 2000 , more than 100 people died after consuming an illegal homemade drink in Nairobi .\tIN CD , JJR IN CD NNS VBD IN VBG DT JJ JJ NN IN NNP .\nRussian President Vladimir Putin has dismissed the president of the southern republic of Chechnya , Alu Alkhanov , and named the region 's prime minister as acting president .\tJJ NNP NNP NNP VBZ VBN DT NN IN DT JJ NN IN NNP , NNP NNP , CC VBN DT NN POS JJ NN IN JJ NN .\nMr. Putin announced the move Thursday during a meeting with Alkhanov .\tNNP NNP VBD DT NN NNP IN DT NN IN NNP .\nThe Russian leader appointed Chechnya 's Prime Minister Ramzan Kadyrov to replace Alkhanov .\tDT JJ NN VBN NNP POS NNP NNP NNP NNP TO VB NNP .\nKadyrov is the son of the late Chechen president Akhmad Kadyrov , who was assassinated in 2004 .\tNNP VBZ DT NN IN DT JJ JJ NN NNP NNP , WP VBD VBN IN CD .\nPresident Putin appointed Alkhanov as deputy justice minister of the Russian federation .\tNNP NNP VBD NNP IN JJ NN NN IN DT JJ NN .\nKadyrov has denied accusations that militias he controls are behind the abductions and abuse of Chechen separatists and civilians believed to have links with them .\tNNP VBZ VBN NNS IN NNS PRP VBZ VBP IN DT NNS CC NN IN JJ NNS CC NNS VBN TO VB NNS IN PRP .\nMajor fighting in Chechnya ended in 2001 , but violence remains common in the mostly Muslim region .\tJJ NN IN NNP VBD IN CD , CC NN VBZ JJ IN DT RB JJ NN .\nThe head of Iran 's powerful Guardian Council says his country will withstand any international sanctions over its nuclear program .\tDT NN IN NNP POS JJ NNP NNP VBZ PRP$ NN MD VB DT JJ NNS IN PRP$ JJ NN .\nAyatollah Ahmad Jannati told state media Friday that Iran is not afraid of such sanctions .\tNNP NNP NNP VBD NN NNS NNP IN NNP VBZ RB JJ IN JJ NNS .\nHe expressed confidence that Iran will achieve what he called ' its rights . '\tPRP VBD NN IN NNP MD VB WP PRP VBD `` PRP$ NNS . ``\nBritain , France and Germany have been pressing Iran to abandon its nuclear enrichment activities .\tNNP , NNP CC NNP VBP VBN VBG NNP TO VB PRP$ JJ NN NNS .\nThe United States says the Iranian program is intended to develop a nuclear weapon , a charge Tehran denies .\tDT NNP NNPS VBZ DT JJ NN VBZ VBN TO VB DT JJ NN , DT NN NNP VBZ .\nLast month , the Bush administration and the Europeans backed an International Atomic Energy Agency resolution that says Iran could be referred to the United Nations Security Council if it fails to cooperate fully with IAEA inspectors .\tJJ NN , DT NNP NN CC DT NNS VBD DT NNP NNP NNP NNP NN WDT VBZ NNP MD VB VBN TO DT NNP NNP NNP NNP IN PRP VBZ TO VB RB IN NNP NNS .\nSuch a referral could open the way for international sanctions against Tehran .\tJJ DT NN MD VB DT NN IN JJ NNS IN NNP .\nNepal 's Defense Ministry says at least 29 people - including Maoist rebels , soldiers and police - have been killed in a fierce gunfight in the western part of the country .\tNNP POS NNP NNP VBZ IN JJS CD NNS : VBG NNP NNS , NNS CC NNS : VBP VBN VBN IN DT JJ NN IN DT JJ NN IN DT NN .\nAn army statement says the clash occurred late Tuesday in the Palpa area , some 250 kilometers west of the capital , Kathmandu .\tDT NN NN VBZ DT NN VBD JJ NNP IN DT NNP NN , DT CD NNS JJS IN DT NN , NNP .\nIt says 18 rebels , 10 soldiers and a policeman were killed in the fighting .\tPRP VBZ CD NNS , CD NNS CC DT NN VBD VBN IN DT NN .\nNo other details were immediately available .\tDT JJ NNS VBD RB JJ .\nRebel attacks have increased since the Maoists ended a unilateral cease-fire in early January .\tNN NNS VBP VBN IN DT NNPS VBD DT JJ NN IN JJ NNP .\nThey have been fighting since 1996 to overthrow Nepal 's constitutional monarchy and replace it with a communist state .\tPRP VBP VBN VBG IN CD TO VB NNP POS JJ NN CC VB PRP IN DT JJ NN .\nAbout 13,000 people have been killed in the war that shattered Nepal 's economy .\tIN CD NNS VBP VBN VBN IN DT NN WDT VBD NNP POS NN .\nMedia reports say nine people were killed and 17 injured when an avalanche crashed down a mountain and struck a bus in eastern Turkey .\tNN NNS VBP CD NNS VBD VBN CC CD VBN WRB DT NN VBD RP DT NN CC VBD DT NN IN JJ NNP .\nThe bus was traveling Saturday between the cities of Bitlis and Diyarbakir .\tDT NN VBD VBG NNP IN DT NNS IN NNP CC NNP .\nRescuers are searching the wreck for others who may have been injured .\tNNS VBP VBG DT NN IN NNS WP MD VB VBN VBN .\nIraqi officials say the Iranian military has fired artillery at several villages in northern Iraq where Iran believes Kurdish rebels are based .\tJJ NNS VBP DT JJ NN VBZ VBN NN IN JJ NNS IN JJ NNP WRB NNP VBZ JJ NNS VBP VBN .\nIraqi Kurdish officials say Iranian forces shelled the villages in Iraq 's Sulaimaniyah province near the Iranian border Sunday and Saturday .\tJJ NNP NNS VBP JJ NNS VBD DT NNS IN NNP POS NNP NN IN DT JJ NN NNP CC NNP .\nNo casualties were reported , but the government of northern Iraq 's Kurdish region says Iranian shelling has caused serious concern among residents .\tDT NNS VBD VBN , CC DT NN IN JJ NNP POS JJ NN VBZ JJ NN VBZ VBN JJ NN IN NNS .\nIt strongly condemned the bombardment and demanded that it stop immediately .\tPRP RB VBD DT NN CC VBD IN PRP VB RB .\nIran has not confirmed the artillery strikes .\tNNP VBZ RB VBN DT NN NNS .\nThe Iranian military has frequently shelled areas of northern Iraq it suspects of harboring members of the Kurdish separatist group PEJAK , the Party of Free Life of Kurdistan .\tDT JJ NN VBZ RB VBN NNS IN JJ NNP PRP VBZ IN VBG NNS IN DT NNP NN NN NNP , DT NNP IN NNP NNP IN NNP .\nTehran accuses the group of launching attacks inside Iran from bases in Iraq .\tNNP VBZ DT NN IN VBG NNS IN NNP IN NNS IN NNP .\nIraq 's central government in Baghdad has criticized the Iranian artillery strikes and warned they could harm relations between the two neighbors .\tNNP POS JJ NN IN NNP VBZ VBN DT JJ NN NNS CC VBD PRP MD VB NNS IN DT CD NNS .\nZimbabwe 's economy is growing at a brisk pace despite continuing political uncertainty .\tNNP POS NN VBZ VBG IN DT JJ NN IN VBG JJ NN .\nFollowing a decade of contraction , Zimbabwe 's economy recorded real growth of 5.9 % in 2010 .\tVBG DT NN IN NN , NNP POS NN VBD JJ NN IN CD NN IN CD .\nBut the government of Zimbabwe still faces a number of difficult economic problems , including a large external debt burden and insufficient formal employment .\tCC DT NN IN NNP RB VBZ DT NN IN JJ JJ NNS , VBG DT JJ JJ NN NN CC JJ JJ NN .\nZimbabwe 's 1998 - 2002 involvement in the war in the Democratic Republic of the Congo drained hundreds of millions of dollars from the economy .\tNNP POS CD : CD NN IN DT NN IN DT JJ NNP IN DT NNP VBD NNS IN NNS IN NNS IN DT NN .\nThe government 's land reform program , characterized by chaos and violence , has badly damaged the commercial farming sector , the traditional source of exports and foreign exchange and the provider of 4,00,000 jobs , turning Zimbabwe into a net importer of food products .\tDT NN POS NN NN NN , VBN IN NN CC NN , VBZ RB VBN DT JJ NN NN , DT JJ NN IN NNS CC JJ NN CC DT NN IN CD NNS , VBG NNP IN DT JJ NN IN NN NNS .\nThe EU and the US provide food aid on humanitarian grounds , though on a smaller scale than before .\tDT NNP CC DT NNP VB NN NN IN JJ NNS , RB IN DT JJR NN IN RB .\nUntil early 2009 , the Reserve Bank of Zimbabwe routinely printed money to fund the budget deficit , causing hyperinflation .\tIN JJ CD , DT NNP NNP IN NNP RB VBD NN TO VB DT NN NN , VBG NN .\nThe power-sharing government formed in February 2009 has led to some economic improvements , including the cessation of hyperinflation by eliminating the use of the Zimbabwe dollar and removing price controls .\tDT JJ NN VBN IN NNP CD VBZ VBN TO DT JJ NNS , VBG DT NN IN NN IN VBG DT NN IN DT NNP NN CC VBG NN NNS .\nThe economy is registering its first growth in a decade , but will be reliant on further political improvement for greater growth .\tDT NN VBZ VBG PRP$ JJ NN IN DT NN , CC MD VB JJ IN JJ JJ NN IN JJR NN .\nAll of the following US Pacific island territories except Midway Atoll constitute the Pacific Remote Islands National Wildlife Refuge ( NWR ) Complex and as such are managed by the Fish and Wildlife Service of the US Department of the Interior .\tDT IN DT VBG NNP NNP NN NNS IN NNP NNP VBP DT NNP NNP NNP NNP NNP NNP LRB NNP RRB NNP CC IN JJ VBP VBN IN DT NNP CC NNP NNP IN DT NNP NNP IN DT NNP .\nMidway Atoll NWR has been included in a Refuge Complex with the Hawaiian Islands NWR and also designated as part of Papahanaumokuakea Marine National Monument .\tNNP NNP NNP VBZ VBN VBN IN DT NN NN IN DT NNP NNP NNP CC RB VBN IN NN IN NNP NNP NNP NNP .\nThese remote refuges are the most widespread collection of marine- and terrestrial-life protected areas on the planet under a single country 's jurisdiction .\tDT JJ NNS VBP DT RBS JJ NN IN NN CC JJ JJ NNS IN DT NN IN DT JJ NN POS NN .\nThey sustain many endemic species including corals , fish , shellfish , marine mammals , seabirds , water birds , land birds , insects , and vegetation not found elsewhere .\tPRP VBP JJ JJ NNS VBG NNS , NN , NN , JJ NNS , NNS , NN NNS , NN NNS , NNS , CC NN RB VBN RB .\nPanama 's dollar-based economy rests primarily on a well-developed services sector that accounts for three-quarters of GDP .\tNNP POS JJ NN VBZ RB IN DT JJ NNS NN WDT VBZ IN NNS IN NN .\nServices include operating the Panama Canal , logistics , banking , the Colon Free Zone , insurance , container ports , flagship registry , and tourism .\tNNPS VBP VBG DT NNP NNP , NNS , NN , DT NNP NNP NNP , NN , NN NNS , NN NN , CC NN .\nEconomic growth will be bolstered by the Panama Canal expansion project that began in 2007 and is scheduled to be completed by 2014 at a cost of $ 5.3 billion - about 25 % of current GDP .\tJJ NN MD VB VBN IN DT NNP NNP NN NN WDT VBD IN CD CC VBZ VBN TO VB VBN IN CD IN DT NN IN $ CD CD IN RB CD NN IN JJ NN .\nThe expansion project will more than double the Canal 's capacity , enabling it to accommodate ships that are too large to traverse the existing canal .\tDT NN NN MD RBR IN VB DT NNP POS NN , VBG PRP TO VB NNS WDT VBP RB JJ TO VB DT VBG NN .\nThe United States and China are the top users of the Canal .\tDT NNP NNPS CC NNP VBP DT JJ NNS IN DT NNP .\nPanama also plans to construct a metro system in Panama City , valued at $ 1.2 billion and scheduled to be completed by 2014 .\tNNP RB VBZ TO VB DT NN NN IN NNP NNP , VBN IN $ CD CD CC VBN TO VB VBN IN CD .\nPanama 's booming transportation and logistics services sectors , along with aggressive infrastructure development projects , will likely lead the economy to continued growth in 2011 .\tNNP POS JJ NN CC NNS NNS NNS , IN IN JJ NN NN NNS , MD RB VB DT NN TO JJ NN IN CD .\nStrong economic performance has not translated into broadly shared prosperity , as Panama has the second worst income distribution in Latin America .\tJJ JJ NN VBZ RB VBN IN RB VBN NN , IN NNP VBZ DT JJ JJS NN NN IN NNP NNP .\nAbout 30 % of the population lives in poverty ; however , from 2006 to 2010 poverty was reduced by 10 percentage points , while unemployment dropped from 12 % to 6 % of the labor force .\tIN CD NN IN DT NN NNS IN NN ; RB , IN CD TO CD NN VBD VBN IN CD NN NNS , IN NN VBD IN CD NN CC CD NN IN DT NN NN .\nPanama and the United States signed a Trade Promotion Agreement in June 2007 , which , when implemented , will help promote the country 's economic growth .\tNNP CC DT NNP NNPS VBD DT NNP NNP NNP IN NNP CD , WDT , WRB VBN , MD VB VB DT NN POS JJ NN .\nSeeking removal from the Organization of Economic Development 's gray-list of tax havens , Panama has also recently signed various double taxation treaties with other nations .\tVBG NN IN DT NNP IN NNP NNP POS NN IN NN NNS , NNP VBZ RB RB VBD JJ JJ NN NNS IN JJ NNS .\nSpeculation over the existence of a ' southern land ' was not confirmed until the early 1820s when British and American commercial operators and British and Russian national expeditions began exploring the Antarctic Peninsula region and other areas south of the Antarctic Circle .\tNN IN DT NN IN DT `` JJ NN `` VBD RB VBN IN DT JJ NNS WRB JJ CC JJ JJ NNS CC JJ CC JJ JJ NNS VBD VBG DT NNP NNP NN CC JJ NNS RB IN DT NNP NNP .\nNot until 1840 was it established that Antarctica was indeed a continent and not just a group of islands or an area of ocean .\tRB IN CD VBD PRP VBN IN NNP VBD RB DT NN CC RB RB DT NN IN NNS CC DT NN IN NN .\nSeveral exploration ' firsts ' were achieved in the early 20th century , but generally the area saw little human activity .\tJJ NN `` NNS `` VBD VBN IN DT JJ JJ NN , CC RB DT NN VBD JJ JJ NN .\nFollowing World War II , however , there was an upsurge in scientific research on the continent .\tVBG NNP NNP NNP , RB , EX VBD DT NN IN JJ NN IN DT NN .\nA number of countries have set up a range of year-round and seasonal stations , camps , and refuges to support scientific research in Antarctica .\tDT NN IN NNS VBP VBN RP DT NN IN JJ CC JJ NNS , NNS , CC VBZ TO VB JJ NN IN NNP .\nSeven have made territorial claims , but not all countries recognize these claims .\tCD VBP VBN JJ NNS , CC RB DT NNS VBP DT NNS .\nIn order to form a legal framework for the activities of nations on the continent , an Antarctic Treaty was negotiated that neither denies nor gives recognition to existing territorial claims ; signed in 1959 , it entered into force in 1961 .\tIN NN TO VB DT JJ NN IN DT NNS IN NNS IN DT NN , DT NNP NNP VBD VBN IN DT VBZ CC VBZ NN TO VBG JJ NNS ; VBN IN CD , PRP VBD IN NN IN CD .\nTourism is the mainstay of the small open Aruban economy , together with offshore banking .\tNNP VBZ DT NN IN DT JJ JJ JJ NN , RB IN JJ NN .\nOil refining and storage ended in 2009 .\tNN NN CC NN VBN IN CD .\nThe rapid growth of the tourism sector over the last decade has resulted in a substantial expansion of other activities .\tDT JJ NN IN DT NN NN IN DT JJ NN VBZ VBN IN DT JJ NN IN JJ NNS .\nOver 1.5 million tourists per year visit Aruba with 75 % of those from the US .\tIN CD CD NNS IN NN NN NNP IN CD NN IN DT IN DT NNP .\nConstruction continues to boom with hotel capacity five times the 1985 level .\tNN VBZ TO VB IN NN NN CD NNS DT CD NN .\nTourist arrivals rebounded strongly following a dip after the 11 September 2001 attacks .\tNNP NNS VBD RB VBG DT NN IN DT CD NNP CD NNS .\nThe government has made cutting the budget and trade deficits a high priority .\tDT NN VBZ VBN VBG DT NN CC NN NNS DT JJ NN .\nAN ASS , carrying a load of wood , passed through a pond .\tDT NN , VBG DT NN IN NN , VBN IN DT NN .\nAs he was crossing through the water he lost his footing , stumbled and fell , and not being able to rise on account of his load , groaned heavily .\tIN PRP VBD VBG IN DT NN PRP VBD PRP$ NN , VBD CC VBD , CC RB VBG JJ TO VB IN NN IN PRP$ NN , VBD RB .\nSome Frogs frequenting the pool heard his lamentation , and said , ' What would you do if you had to live here always as we do , when you make such a fuss about a mere fall into the water ? '\tDT NNS VBG DT NN VBD PRP$ NN , CC VBD , `` WP MD PRP VB IN PRP VBD TO VB RB RB IN PRP VBP , WRB PRP VBP JJ DT NN IN DT JJ NN IN DT NN . ``\nMen often bear little grievances with less courage than they do large misfortunes .\tNNS RB VBP JJ NNS IN JJR NN IN PRP VBP JJ NNS .\nAustralia 's cricket team has scored 351-7 declared in its second innings , leaving India a massive target of nearly 500 runs after the third day of their first test in Melbourne .\tNNP POS NN NN VBZ VBN CD VBN IN PRP$ JJ NN , VBG NNP DT JJ NN IN RB CD NNS IN DT JJ NN IN PRP$ JJ NN IN NNP .\nAustralian batsmen Michael Clarke and Phil Jaques led the home side with Clarke scoring 73 runs and Jaques adding another 51 .\tJJ NNS NNP NNP CC NNP NNP VBD DT NN NN IN NNP VBG CD NNS CC NNP VBG DT CD .\nBrad Hogg scored 34 runs and Brett Lee added another 12 for Australia .\tNNP NNP VBD CD NNS CC NNP NNP VBD DT CD IN NNP .\nIndian bowler Harbhajan Singh took three for 101 while Anil Kumble was two for 102 .\tJJ NN NNP NNP VBD CD IN CD IN NNP NNP VBD CD IN CD .\nIndia was 6 without loss after surviving eight overs before stumps .\tNNP VBD CD IN NN IN VBG CD NNS IN NNS .\nThe Indians have their work cut out for them - they need 493 runs in 10 wickets .\tDT NNS VBP PRP$ NN VBN RP IN PRP IN PRP VBP CD NNS IN CD NNS .\nThe highest successful run-chase at Melbourne was England 's 332 runs against Australia in the 1928 - 1929 Ashes series .\tDT JJS JJ NN IN NNP VBD NNP POS CD NNS IN NNP IN DT CD : CD NNP NN .\nOnly three teams have ever achieved what India must to win the match .\tRB CD NNS VBP RB VBN WP NNP MD TO VB DT NN .\nPoland 's defense minister has announced plans to cut his country 's forces in Iraq by almost one third next year .\tNNP POS NN NN VBZ VBN NNS TO VB PRP$ NN POS NNS IN NNP IN RB CD JJ JJ NN .\nMinister Jerzy Szmajdzinski said the number of Polish troops remaining in Iraq in mid-February will stand at 1,700 .\tNNP NNP NNP VBD DT NN IN JJ NNS VBG IN NNP IN NNP MD VB IN CD .\nHe said another 700 will remain in Poland on standby in case of emergency .\tPRP VBD DT CD MD VB IN NNP IN NN IN NN IN NN .\nThe withdrawal is to follow Iraq 's parliamentary elections .\tDT NN VBZ TO VB NNP POS JJ NNS .\nPoland has about 2,400 soldiers in Iraq .\tNNP VBZ IN CD NNS IN NNP .\nIt is the third largest contributor of troops to the international stabilization forces in that country , after the United States and Britain .\tPRP VBZ DT JJ JJS NN IN NNS TO DT JJ NN NNS IN DT NN , IN DT NNP NNPS CC NNP .\nPoland commands a 6,500-strong international force south of Baghdad .\tNNP VBZ DT JJ JJ NN NN IN NNP .\nWorld and European champion Germany remains atop the latest International Football Federation ( FIFA ) women 's soccer rankings , with the Olympic champion U.S. team second .\tNNP CC JJ NN NNP VBZ IN DT JJS NNP NNP NNP LRB NNP RRB NNS POS NN NNS , IN DT JJ JJ NNP NN NN .\nNorway is third followed by Brazil , France , and Sweden .\tNNP VBZ JJ VBN IN NNP , NNP , CC NNP .\nNorth Korea is seventh followed by Denmark , which rose one place to eighth .\tNNP NNP VBZ JJ VBN IN NNP , WDT VBD CD NN TO NN .\nChina dropped one place to ninth in the world and Italy remained in 10th place .\tNNP VBD CD NN TO VB IN DT NN CC NNP VBD IN JJ NN .\nOutside the top 10 , the big winner was Russia which came through three Women 's World Cup qualifiers without losing a match and is 13th in the world .\tIN DT JJ CD , DT JJ NN VBD NNP WDT VBD IN CD NNP POS NNP NNP NNS IN VBG DT NN CC VBZ JJ IN DT NN .\nThere are now 124 teams in the FIFA Women 's World Rankings .\tEX VBP RB CD NNS IN DT NNP NNP POS NNP NNP .\nThe rankings are published four times a year and the next ranking will be issued December 16 , 2005 .\tDT NNS VBP VBN CD NNS DT NN CC DT JJ NN MD VB VBN NNP CD , CD .\nA top Palestinian official has announced a series of new measures to increase public safety and end factional strife in the Gaza Strip .\tDT JJ NN NN VBZ VBN DT NN IN JJ NNS TO VB JJ NN CC NN JJ NN IN DT NNP NNP .\nRashid Abu Shbak , a senior security official said Saturday the measures include the disbanding of the Department of Protection and Security , a group Gazans have nicknamed ' death squad . '\tNNP NNP NNP , DT JJ NN NN VBD NNP DT NNS VBP DT NN IN DT NNP IN NNP CC NNP , DT NN NNPS VBP VBN `` NN NN . ``\nThe 70-member squad has faced accusations of corruption and intimidating the public .\tDT JJ NN VBZ VBN NNS IN NN CC VBG DT NN .\nMr. Shbak also announced that the dominant Fatah faction will work to merge its several militant groups in order to end intra-Palestinian violence and factional infighting .\tNNP NNP RB VBD IN DT JJ NNP NN MD VB TO VB PRP$ JJ JJ NNS IN NN TO VB JJ NN CC JJ NN .\nPalestinian territories have seen an upsurge in factional strife in the months preceding the death of longtime Palestinian leader Yasser Arafat , who died on November 11 .\tJJ NNS VBP VBN DT NN IN JJ NN IN DT NNS VBG DT NN IN JJ JJ NN NNP NNP , WP VBD IN NNP CD .\nSeparately , a lecturer at Gaza City 's al-Azhar university was killed when a bomb exploded at his university office .\tRB , DT NN IN NNP NNP POS JJ NN VBD VBN WRB DT NN VBD IN PRP$ NN NN .\nBolivians demanding the nationalization of the country 's energy industry have taken over several oil fields belonging to a Spanish oil company .\tNNS VBG DT NN IN DT NN POS NN NN VBP VBN RP JJ NN NNS VBG TO DT JJ NN NN .\nOfficials say protesters occupied the fields near the eastern city of Santa Cruz Wednesday .\tNNS VBP NNS VBD DT NNS IN DT JJ NN IN NNP NNP NNP .\nThe latest protest action comes one day before legislators are scheduled to vote on whether to accept President Carlos Mesa 's resignation .\tDT JJS NN NN VBZ CD NN IN NNS VBP VBN TO VB IN IN TO VB NNP NNP NNP POS NN .\nPresident Mesa submitted his resignation Monday , saying he could no longer lead the poor Andean nation in the face of continuing large demonstrations over his government 's policies .\tNNP NNP VBD PRP$ NN NNP , VBG PRP MD RB RB VB DT JJ JJ NN IN DT NN IN VBG JJ NNS IN PRP$ NN POS NNS .\nMr. Mesa tried to resign earlier this year , but lawmakers rejected his offer .\tNNP NNP VBD TO VB RBR DT NN , CC NNS VBD PRP$ NN .\nThursday 's special legislative session is scheduled to take place in the city of Sucre , south of the capital La Paz .\tNNP POS JJ JJ NN VBZ VBN TO VB NN IN DT NN IN NNP , NN IN DT NN NNP NNP .\nThe Senate president would be next in line to replace Mr. Mesa .\tDT NNP NN MD VB JJ IN NN TO VB NNP NNP .\nFrance 's Richard Gasquet will meet Max Mirnyi of Belarus in the final of the Nottingham Open tennis tournament Saturday after both scored semifinal wins in England .\tNNP POS NNP NNP MD VB NNP NNP IN NNP IN DT JJ IN DT NNP NNP NN NN NNP IN DT VBD JJ NNS IN NNP .\nThe fourth-seeded Gasquet beat fifth seed Taylor Dent of the United States in straight sets , 06-Apr , 06-Feb .\tDT JJ NNP VBD JJ NN NNP NNP IN DT NNP NNPS IN JJ NNS , CD , CD .\nMirnyi , seeded eighth , also won in straight sets , but he had a more difficult time .\tNNP , JJ NN , RB VBD IN JJ NNS , CC PRP VBD DT RBR JJ NN .\nHe beat seventh-seeded Olivier Rochus of Belgium , 06-Apr , 07-May .\tPRP VBD JJ NNP NNP IN NNP , CD , CD .\nThe grass court tournament is one of several warm-up events for the third major tournament of the year , Wimbledon , which starts Monday in London .\tDT NN NN NN VBZ CD IN JJ JJ NNS IN DT JJ JJ NN IN DT NN , NNP , WDT VBZ NNP IN NNP .\nGasquet will be seeded 27th at the All England Club , while Mirnyi is unseeded .\tNNP MD VB VBN JJ IN DT NNP NNP NNP , IN NNP VBZ JJ .\nWorld oil prices fell $ 2 a barrel on Friday , closing below $ 50 dollars a barrel for the first time since mid-February .\tNNP NN NNS VBD $ CD DT NN IN NNP , VBG IN $ CD NNS DT NN IN DT JJ NN IN JJ .\nCrude oil for June delivery was selling at $ 49.5 a barrel at the close of New York trading .\tJJ NN IN NNP NN VBD VBG IN $ CD DT NN IN DT NN IN NNP NNP NN .\nThe decline follows reports that crude oil supplies are growing and economic growth is slowing in the key U.S. market .\tDT NN VBZ NNS IN JJ NN NNS VBP VBG CC JJ NN VBZ VBG IN DT JJ NNP NN .\nPrices spiked earlier when investors thought supplies could not keep up with robust demand .\tNNS VBD JJR WRB NNS VBD NNS MD RB VB RP IN JJ NN .\nPope Benedict XVI is expected to meet with diplomats from Muslim countries and leaders of Italy 's Islamic community Monday to explain comments about Islam that he says were misunderstood .\tNNP NNP NNP VBZ VBN TO VB IN NNS IN NNP NNS CC NNS IN NNP POS JJ NN NNP TO VB NNS IN NNP IN PRP VBZ VBD VBN .\nThe head of the Pontifical Council for Interreligious Dialogue , Cardinal Paul Poupard , will also attend the meeting at Castel Gandolfo , the Pope 's summer residence outside Rome .\tDT NN IN DT NNP NNP IN NNP NNP , NNP NNP NNP , MD RB VB DT NN IN NNP NNP , DT NNP POS NN NN IN NNP .\nVatican officials hope the meeting will reopen dialogue between the Roman Catholic Church and the Islamic world .\tNNP NNS VBP DT NN MD VB NN IN DT NNP NNP NNP CC DT JJ NN .\nEarlier this month , Pope Benedict quoted a 14th-century Byzantine emperor who had criticized some of the teachings of the prophet Muhammad .\tRBR DT NN , NNP NNP VBD DT JJ NN NN WP VBD VBN DT IN DT NNS IN DT NN NN .\nThe pope has said those are not his own views .\tDT NN VBZ VBN DT VBP RB PRP$ JJ NNS .\nOn Sunday , the pope praised an Italian nun killed by gunmen last week in Somalia .\tIN NNP , DT NN VBD DT JJ NN VBN IN NNS JJ NN IN NNP .\nIt has been theorized that Muslim anger over the pope 's remarks was to blame for the killing .\tPRP VBZ VBN VBN IN NNP NN IN DT NN POS NNS VBD TO VB IN DT NN .\nThousands of Muslims worldwide have demonstrated to protest the pope 's remarks .\tNNS IN NNPS NN VBP VBN TO VB DT NN POS NNS .\nThe U.S military says four American soldiers have been killed in a roadside bomb blast north of Baghdad .\tDT NNP NN VBZ CD JJ NNS VBP VBN VBN IN DT NN NN NN NN IN NNP .\nA statement says the incident occurred Thursday in Samarra , some 95 kilometers north of the Iraqi capital .\tDT NN VBZ DT NN VBD NNP IN NNP , DT CD NNS RB IN DT JJ NN .\nIn Baghdad Wednesday , three car bombs exploded in close succession , killing at least 43 people .\tIN NNP NNP , CD NN NNS VBD IN JJ NN , VBG IN JJS CD NNS .\nMeanwhile , Iraqi political leaders are continuing negotiations on a draft constitution .\tRB , JJ JJ NNS VBP VBG NNS IN DT NN NN .\nMahmud Othman , a Kurdish member of the committee drafting the document , tells the French News agency that Wednesday 's deadly bombings have increased global pressure on politicians to wrap up the constitution by the new deadline of August 22 .\tNNP NNP , DT JJ NN IN DT NN VBG DT NN , VBZ DT NNP NNP NN IN NNP POS JJ NNS VBP VBN JJ NN IN NNS TO VB RP DT NN IN DT JJ NN IN NNP CD .\nHe said ' it has now become a question of who is stronger - the politicians or the insurgents . '\tPRP VBD `` PRP VBZ RB VBN DT NN IN WP VBZ JJR IN DT NNS CC DT NNS . ``\nJamie Foxx , star of the movie Ray , has won the best actor award and Hilary Swank takes best actress for her role in Million Dollar Baby at the 11th annual Screen Actors Guild Awards .\tNNP NNP , NN IN DT NN NNP , VBZ VBN DT JJS NN NN CC NNP NNP VBZ JJS NN IN PRP$ NN IN NNP NNP NNP IN DT JJ JJ NNP NNPS NNP NNPS .\nCate Blanchett won the supporting-actress honor for her portrayal of Katherine Hepburn in The Aviator while Morgan Freeman captured the supporting-actor prize for his work on Million Dollar Baby .\tNNP NNP VBD DT JJ NN IN PRP$ NN IN NNP NNP IN DT NNP IN NNP NNP VBD DT JJ NN IN PRP$ NN IN NNP NNP NNP .\nOther winners at Saturday 's ceremony in Los Angeles include Alias star Jennifer Garner , Tony Shaloub from the television comedy Monk , and the late Jerry Orbach who starred in the drama series Law and Order .\tJJ NNS IN NNP POS NN IN NNP NNP VBP NNP NN NNP NNP , NNP NNP IN DT NN NN NNP , CC DT JJ NNP NNP WP VBD IN DT NN NN NN CC NN .\nThe cast award for best movie ensemble went to the quirky , road-trip comedy Sideways .\tDT NN NN IN JJS NN NN VBD TO DT JJ , JJ NN NNS .\nThe Screen Actors Guild winners are among front-runners for the prestigious Oscar Awards to be presented later this month .\tDT NNP NNPS NNP NNS VBP IN NNS IN DT JJ NNP NNPS TO VB VBN RB DT NN .\nSouth Korea 's foreign minister says he thinks the six-party talks on North Korea 's nuclear ambitions may resume in February .\tNNP NNP POS JJ NN VBZ PRP VBZ DT JJ NNS IN NNP NNP POS JJ NNS MD VB IN NNP .\nBan Ki-moon was speaking to reporters at the World Economic Forum in Davos , Switzerland Friday .\tNNP NNP VBD VBG TO NNS IN DT NNP NNP NNP IN NNP , NNP NNP .\nEarlier , Japan said it will hold bilateral talks with North Korea in China next week .\tRB , NNP VBD PRP MD VB JJ NNS IN NNP NNP IN NNP JJ NN .\nJapanese officials said the working-level talks will focus on Pyongyang 's past abduction of Japanese nationals , normalization of diplomatic ties and North Korea 's nuclear and missile programs .\tJJ NNS VBD DT JJ NNS MD VB IN NNP POS JJ NN IN JJ NNS , NN IN JJ NNS CC NNP NNP POS JJ CC NN NNS .\nThe latest round of six-party talks on Pyongyang 's nuclear programs has been stalled since November .\tDT JJS NN IN JJ NNS IN NNP POS JJ NNS VBZ VBN VBN IN NNP .\nNorth Korea wants the United States to lift economic sanctions against Pyongyang before returning to the table .\tNNP NNP VBZ DT NNP NNPS TO VB JJ NNS IN NNP IN VBG TO DT NN .\nWashington has rejected the demand .\tNNP VBZ VBN DT NN .\nArmy officials in the Democratic Republic of Congo say an air raid has killed more than 40 Rwandan Hutu rebels .\tNNP NNS IN DT JJ NNP IN NNP VBP DT NN NN VBZ VBN JJR IN CD JJ NNP NNS .\nThe Thursday strike on the camp where leaders of the Democratic Forces for the Liberation of Rwanda were meeting also wounded several other rebels .\tDT NNP NN IN DT NN WRB NNS IN DT JJ NNS IN DT NN IN NNP VBD VBG RB VBN JJ JJ NNS .\nThe attack came after the Congolese government gave Rwandan soldiers the go ahead to join forces with its own troops in the east of the country to attack ethnic Hutu militia .\tDT NN VBD IN DT JJ NN VBD JJ NNS DT NN RB TO VB NNS IN PRP$ JJ NNS IN DT NN IN DT NN TO VB JJ NNP NN .\nThe militia are seen as a root cause of instability in the region .\tDT NN VBP VBN IN DT NN NN IN NN IN DT NN .\nSome of their leaders are accused of being behind the 1994 genocide in Rwanda .\tDT IN PRP$ NNS VBP VBN IN VBG IN DT CD NN IN NNP .\nMeanwhile , a coalition of human rights groups says protecting civilians in the eastern Democratic Republic of Congo should be a top priority as Congolese and Rwandan government forces pursue their joint operation .\tRB , DT NN IN JJ NNS NNS VBZ VBG NNS IN DT JJ JJ NNP IN NNP MD VB DT JJ NN IN JJ CC JJ NN NNS VB PRP$ JJ NN .\nChinese authorities have suspended poultry exports from the western province of Xinjiang to Hong Kong because of an outbreak of bird flu .\tJJ NNS VBP VBN NN NNS IN DT JJ NN IN NNP TO NNP NNP IN IN DT NN IN NN NN .\nChina notified Hong Kong Wednesday that it has culled more than 13,000 geese at a farm in Xinjiang .\tNNP VBD NNP NNP NNP IN PRP VBZ VBN JJR IN CD NNS IN DT NN IN NNP .\nA government statement says hundreds of dead geese were found on the farm and that tests showed they had died from the H5N1 avian flu strain , which can be lethal to humans .\tDT NN NN VBZ NNS IN JJ NNS VBD VBN IN DT NN CC IN NNS VBD PRP VBD VBN IN DT NNP JJ NN NN , WDT MD VB JJ TO NNS .\nIt said officials in Xinjiang have carried out vaccinations on birds at all nearby poultry farms .\tPRP VBD NNS IN NNP VBP VBN RP NNS IN NNS IN DT JJ NN NNS .\nHong Kong says it has not imported any live birds or poultry meat from Xinjiang and the suspension of exports is merely a precaution .\tNNP NNP VBZ PRP VBZ RB VBN DT JJ NNS CC JJ NN IN NNP CC DT NN IN NNS VBZ RB DT NN .\nThe U.S. Undersecretary for Public Diplomacy is set to lead a delegation of business executives to Central America next week .\tDT NNP NN IN NNP NNP VBZ VBN TO VB DT NN IN NN NNS TO NNP NNP JJ NN .\nA statement issued Wednesday by the State Department says Karen Hughes will be accompanied by chief executives of major U.S companies such as PepsiCo and JPMorgan Private Bank .\tDT NN VBN NNP IN DT NNP NNP VBZ NNP NNP MD VB VBN IN JJ NNS IN JJ NNPS NNS JJ IN NNP CC NNP NNP NNP .\nThe delegation will visit Guatemala , Honduras and El Salvador , where a series of natural disasters damaged economies in the region .\tDT NN MD VB NNP , NNP CC NNP NNP , WRB DT NN IN JJ NNS VBN NNS IN DT NN .\nThe trip aims to encourage private sector assistance for reconstruction efforts in the area .\tDT NN VBZ TO VB JJ NN NN IN NN NNS IN DT NN .\nPresident Bush has asked the business leaders to see U.S. assistance efforts already underway .\tNNP NNP VBZ VBN DT NN NNS TO VB NNP NN NNS RB RB .\nThe trip will last December 4 to December 6 .\tDT NN MD VB NNP CD TO NNP CD .\nNATO has announced it will deploy 2,000 more troops to Afghanistan ahead of parliamentary elections there in September .\tNNP VBZ VBN PRP MD VB CD JJR NNS TO NNP RB IN JJ NNS RB IN NNP .\nA spokeswoman for the NATO-led peacekeeping force in Afghanistan says the troops are to be deployed in July , about six weeks before the scheduled polling .\tDT NN IN DT JJ NN NN IN NNP VBZ DT NNS VBP TO VB VBN IN NNP , IN CD NNS IN DT VBN NN .\nThe NATO-led International Security Assistance Force now has more than 8,000 troops in Afghanistan .\tDT JJ NNP NNP NNP NNP RB VBZ JJR IN CD NNS IN NNP .\nWednesday 's announcement came as Afghan President Hamid Karzai said he believes attacks will increase and terrorism will rise in the run-up to the election .\tNNP POS NN VBD IN JJ NNP NNP NNP VBD PRP VBZ NNS MD VB CC NN MD VB IN DT NN TO DT NN .\nThe September vote will be the first parliamentary elections since the Taleban regime was toppled in 2001 .\tDT NNP NN MD VB DT JJ JJ NNS IN DT NNP NN VBD VBN IN CD .\nItalian defender Marco Materazzi has appeared before a disciplinary committee in Zurich at the headquarters of football 's world governing body , FIFA .\tJJ NN NNP NNP VBZ VBN IN DT JJ NN IN NNP IN DT NN IN NN POS NN NN NN , NNP .\nFIFA wants to find out what he did to provoke French midfielder Zinedine Zidane to head-butt him during Italy 's World Cup title victory over France last Sunday in Berlin .\tNNP VBZ TO VB RP WP PRP VBD TO VB JJ NN NNP NNP TO VB PRP IN NNP POS NNP NNP NN NN IN NNP JJ NNP IN NNP .\nA FIFA spokesman refused to provide any details of the meeting .\tDT NNP NN VBD TO VB DT NNS IN DT NN .\nMaterazzi is being investigated based on statements by Zidane , who was sent off for ramming his head into the defender 's chest during extra time in the match .\tNNP VBZ VBG VBN VBN IN NNS IN NNP , WP VBD VBN RP IN VBG PRP$ NN IN DT NN POS NN IN JJ NN IN DT NN .\nZidane said on French television Wednesday night that Materazzi insulted his mother and sister .\tNNP VBD IN JJ NN NNP NN IN NNP VBD PRP$ NN CC NN .\nMaterazzi has admitted insulting Zidane , but denied verbally attacking Zidane 's mother .\tNNP VBZ VBN VBG NNP , CC VBD RB VBG NNP POS NN .\nZidane is scheduled to attend a FIFA hearing next Thursday to explain his actions .\tNNP VBZ VBN TO VB DT NNP NN IN NNP TO VB PRP$ NNS .\nA decision is expected later that day .\tDT NN VBZ VBN RB DT NN .\nFIFA has declined to comment on possible punishments for either individuals or teams .\tNNP VBZ VBN TO VB IN JJ NNS IN DT NNS CC NNS .\nCrude oil prices rose Wednesday after a government report showed U.S. supplies of crude oil , gasoline , and other oil products declined last week .\tJJ NN NNS VBD NNP IN DT NN NN VBD NNP NNS IN JJ NN , NN , CC JJ NN NNS VBD JJ NN .\nThe Energy Department report said crude oil inventories dropped more than one million barrels , a decline of about one-third of a percent .\tDT NNP NNP NN VBD JJ NN NNS VBD JJR IN CD CD NNS , DT NN IN IN NN IN DT NN .\nStocks of gasoline declined around 1.5 percent , which is more than experts had predicted .\tNNS IN NN VBD IN CD NN , WDT VBZ JJR IN NNS VBD VBN .\nThe price of a barrel of crude oil for future delivery rose 69 cents to $ 77 a barrel in New York .\tDT NN IN DT NN IN JJ NN IN JJ NN VBD CD NNS TO $ CD DT NN IN NNP NNP .\nLondon prices also rose .\tNNP NNS RB VBD .\nDiplomats at the United Nations Nuclear Agency say Iran has started small-scale uranium enrichment , a process that produces fuel that can be used in nuclear weapons and reactors .\tNNS IN DT NNP NNP NNP NNP VBP NNP VBZ VBN JJ NN NN , DT NN WDT VBZ NN WDT MD VB VBN IN JJ NNS CC NNS .\nThe International Atomic Energy Agency officials , speaking on condition of anonymity , say uranium gas has been fed into some machines .\tDT NNP NNP NNP NNP NNS , VBG IN NN IN NN , VBP NN NN VBZ VBN VBN IN DT NNS .\nIran had warned it would resume large-scale enrichment activities after the IAEA referred it to the U.N. Security Council for possible sanctions over its nuclear program .\tNNP VBD VBN PRP MD VB JJ NN NNS IN DT NNP VBD PRP TO DT NNP NNP NNP IN JJ NNS IN PRP$ JJ NN .\nIran also further postponed talks set for this week with Russia about a proposal to process uranium on Russian soil for use in Iran 's nuclear plants .\tNNP RB RB VBD NNS VBN IN DT NN IN NNP IN DT NN TO VB NN IN JJ NN IN NN IN NNP POS JJ NNS .\nRussia has been pushing for the plan as a way to ease international concerns that Iran might be aiming to produce weapons-grade uranium .\tNNP VBZ VBN VBG IN DT NN IN DT NN TO VB JJ NNS IN NNP MD VB VBG TO VB JJ NN .\nIran says its nuclear program is only intended to generate electricity .\tNNP VBZ PRP$ JJ NN VBZ RB VBN TO VB NN .\nThe Palestinian militant group Hamas says Israeli police briefly detained a minister in the new Hamas-led Palestinian government Thursday .\tDT JJ JJ NN NNP VBZ JJ NN RB VBD DT NN IN DT JJ JJ JJ NN NNP .\nOfficials say Khaled Abu Arafa and his bodyguard were arrested while traveling to the Jerusalem suburb of Izzariya to take control of a political office that had been operated by the previous Fatah administration .\tNNS VBP NNP NNP NNP CC PRP$ NN VBD VBN IN VBG TO DT NNP NN IN NNP TO VB NN IN DT JJ NN WDT VBD VBN VBN IN DT JJ NNP NN .\nThe two were released several hours later .\tDT CD VBD VBN JJ NNS RB .\nIsrael considers Hamas a terrorist organization and describes Jerusalem as its eternal capital .\tNNP VBZ NNP DT JJ NN CC VBZ NNP IN PRP$ JJ NN .\nAs such , Israeli officials have refused to let the militant group conduct any political activity in the city .\tIN JJ , JJ NNS VBP VBN TO VB DT JJ NN NN DT JJ NN IN DT NN .\nIt was not immediately clear whether Israel will permit the office to operate while Hamas controls the Palestinian government .\tPRP VBD RB RB JJ IN NNP MD VB DT NN TO VB IN NNP VBZ DT JJ NN .\nA U.S. scientist says he is withdrawing from a stem cell research project led by a team of South Korean scientists because of concerns over a possible breach of ethics .\tDT NNP NN VBZ PRP VBZ VBG IN DT NN NN NN NN VBN IN DT NN IN JJ JJ NNS IN IN NNS IN DT JJ NN IN NNS .\nGerald Schatten of the University of Pittsburgh , in the northern U.S. state of Pennsylvania , has been working for more than a year with the team , which is led by Hwang Woo-Suk .\tNNP NNP IN DT NNP IN NNP , IN DT JJ NNP NN IN NNP , VBZ VBN VBG IN JJR IN DT NN IN DT NN , WDT VBZ VBN IN NNP NNP .\nMr. Hwang announced last year that his team was the first to clone human embryos and extract embryonic stem cells from them .\tNNP NNP VBD JJ NN IN PRP$ NN VBD DT JJ TO VB JJ NNS CC VB JJ NN NNS IN PRP .\nMr. Schatten says he is withdrawing over allegations the South Korean scientists used eggs donated by a female member of the team .\tNNP NNP VBZ PRP VBZ VBG RP NNS DT JJ JJ NNS VBD NNS VBN IN DT JJ NN IN DT NN .\nWidely held ethics principles preclude scientists from accepting donations from underlings in order to avoid any suggestions of coercion .\tRB VBN NNS NNS VB NNS IN VBG NNS IN NNS IN NN TO VB DT NNS IN NN .\nQuestions have also been raised as to whether the woman was paid for the eggs .\tNNS VBP RB VBN VBN IN TO IN DT NN VBD VBN IN DT NNS .\nMr. Hwang has denied allegations of ethical impropriety .\tNNP NNP VBZ VBN NNS IN JJ NN .\nThe World Health Organization says an outbreak of deadly Marburg fever in Angola has claimed 127 lives , the highest number of fatalities from the rare virus .\tDT NNP NNP NNP VBZ DT NN IN JJ NNP NN IN NNP VBZ VBN CD NNS , DT JJS NN IN NNS IN DT JJ NN .\nHowever , a spokeswoman for the U.N. agency , Fadela Chaib , said Friday the outbreak can be controlled if people suspected of infection are put in isolation and all their contacts are identified .\tRB , DT NN IN DT NNP NN , NNP NNP , VBD NNP DT NN MD VB VBN IN NNS VBN IN NN VBP VBN IN NN CC DT PRP$ NNS VBP VBN .\nThe WHO also announced that hospital staff in Italy have put nine patients in isolation , suspected of having had contact with a sufferer in Angola .\tDT NNP RB VBD IN NN NN IN NNP VBP VBN CD NNS IN NN , VBN IN VBG VBN NN IN DT NN IN NNP .\nSo far , 132 cases of Marburg have been reported , mainly in Angola 's northwestern Uige province .\tRB RB , CD NNS IN NNP VBP VBN VBN , RB IN NNP POS JJ NNP NN .\nTwo deaths occurred in the capital , Luanda .\tCD NNS VBD IN DT NN , NNP .\nMarburg virus is a severe form of hemorrhagic fever similar to Ebola - and is spread through contact with bodily fluids .\tNNP NN VBZ DT JJ NN IN JJ NN JJ TO NNP : CC VBZ VBN IN NN IN RB NNS .\nSymptoms include headaches , nausea , vomiting and bloody discharges .\tNNS VBP NNS , NN , VBG CC JJ NNS .\nFormer Malaysian prime minister Mahathir Mohamad says Australia should be kept out of a new East Asian regional grouping , saying Australians are Europeans , not Asians .\tJJ JJ JJ NN NNP NNP VBZ NNP MD VB VBN IN IN DT JJ JJ JJ JJ NN , VBG NNS VBP NNS , RB NNS .\nAsked by reporters Monday if Australia has anything to offer to Asia , Mr. Mahathir replied , ' Nothing . '\tVBN IN NNS NNP IN NNP VBZ DT TO VB TO NNP , NNP NNP VBD , `` DT . ``\nLeaders of the Association of Southeast Asian Nations who met in Laos last week approved Mr. Mahathir 's plan to launch an East Asian regional summit next year .\tNNS IN DT NNP IN NNP NNP NNPS WP VBD IN NNP JJ NN VBD NNP NNP POS NN TO VB DT JJ JJ JJ NN JJ NN .\nThe summit would probably include China , Japan , South Korea , New Zealand and Australia , in addition to ASEAN members .\tDT NN MD RB VB NNP , NNP , NNP NNP , NNP NNP CC NNP , IN NN TO NNP NNS .\nHowever , Mr. Mahathir has objected to Australia 's participation because Canberra has refused to sign a non-aggression treaty with ASEAN .\tRB , NNP NNP VBZ VBN TO NNP POS NN IN NNP VBZ VBN TO VB DT JJ NN IN NNP .\nAustralia says such a pact could prevent criticism of the human rights records of countries such as Burma .\tNNP VBZ PDT DT NN MD VB NN IN DT JJ NNS NNS IN NNS JJ IN NNP .\nIran is facing calls to hand over sensitive nuclear documents for analysis , one day after it escaped immediate referral to the United Nations Security Council for its nuclear activities .\tNNP VBZ VBG NNS TO VB RP JJ JJ NNS IN NN , CD NN IN PRP VBD JJ NN TO DT NNP NNP NNP NNP IN PRP$ JJ NNS .\nAt a meeting Friday in Vienna of the International Atomic Energy Agency 's 35-member board , Britain called for Iran to allow the five main nuclear powers to examine what some experts say are designs for making the explosive core of a nuclear warhead .\tIN DT NN NNP IN NNP IN DT NNP NNP NNP NNP POS JJ NN , NNP VBD IN NNP TO VB DT CD JJ JJ NNS TO VB WP DT NNS VBP VBP NNS IN VBG DT JJ NN IN DT JJ NN .\nIran insists it did not ask for the designs but was given them by Pakistan 's nuclear black market network run by disgraced scientist Abdul Qadeer Khan .\tNNP VBZ PRP VBD RB VB IN DT NNS CC VBD VBN PRP IN NNP POS JJ JJ NN NN VBN IN JJ NN NNP NNP NNP .\nThe call for examination comes as a report circulating in Vienna says Iran 's top nuclear officials met late last month to discuss resuming their enrichment program .\tDT NN IN NN VBZ IN DT NN VBG IN NNP VBZ NNP POS JJ JJ NNS VBD RB JJ NN TO VB VBG PRP$ NN NN .\nIn August , Iran restarted uranium conversion - a precursor to enrichment .\tIN NNP , NNP VBD NN NN IN DT NN TO NN .\nThat move prompted Europe to break off nuclear talks with Tehran .\tDT NN VBD NNP TO VB RP JJ NNS IN NNP .\nThe United States is considering boosting the number of troops it has in Iraq ahead of elections there set for Jan. 27 .\tDT NNP NNPS VBZ VBG VBG DT NN IN NNS PRP VBZ IN NNP RB IN NNS RB VBN IN NNP CD .\nThe deputy commander of the U.S. Central Command , Lt.-Gen. Lance Smith , told Friday , the number of additional troops would depend on the security situation following the assault on Fallujah , but would ' probably be an additional brigade 's worth of forces ' -- up to several thousand soldiers .\tDT NN NN IN DT NNP NNP NNP , NNP NNP NNP , VBD NNP , DT NN IN JJ NNS MD VB IN DT NN NN VBG DT NN IN NNP , CC MD `` RB VB DT JJ NN POS NN IN NNS `` : RP TO JJ CD NNS .\nGen. Smith says the Pentagon is primarily considering an extension of the tours of duty of soldiers already in Iraq , because experienced troops are needed to cope with an expected increase in violence .\tNNP NNP VBZ DT NNP VBZ RB VBG DT NN IN DT NNS IN NN IN NNS RB IN NNP , IN JJ NNS VBP VBN TO VB IN DT VBN NN IN NN .\nThe United States now has about 1,38,000 troops in Iraq .\tDT NNP NNPS RB VBZ IN CD NNS IN NNP .\nAn advance team of Chinese engineers and medical officers arrived in Sudan 's war-torn Darfur region Saturday .\tDT NN NN IN JJ NNS CC JJ NNS VBD IN NNP POS JJ NNP NN NNP .\nA United Nations spokesman says the 135 personnel are the first of a 315-member army engineering unit that will support that joint African Union-U.N. peacekeeping mission to Darfur .\tDT NNP NNP NN VBZ DT CD NNS VBP DT NN IN DT JJ NN NN NN WDT MD VB DT JJ NNP NNP VBG NN TO NNP .\nThe rest of the Chinese force is due to arrive in December .\tDT NN IN DT JJ NN VBZ JJ TO VB IN NNP .\nThe Chinese engineering team will dig wells and build roads and bridges in preparation for the deployment of the 26,000-member peacekeeping force scheduled to begin arriving in January .\tDT JJ NN NN MD VB NNS CC VB NNS CC NNS IN NN IN DT NN IN DT JJ NN NN VBN TO VB VBG IN NNP .\nThat force will replace 7,000 beleaguered African Union peacekeepers .\tDT NN MD VB CD JJ NNP NNP NNS .\nThe Sudanese government has welcomed the Chinese mission to Darfur .\tDT JJ NN VBZ VBN DT JJ NN TO NNP .\nBut critics object to Beijing 's involvement because they say Chinese-made weapons that have found their way to the troubled region have contributed to genocide and robbery .\tCC NNS VBP TO NNP POS NN IN PRP VBP JJ NNS WDT VBP VBN PRP$ NN TO DT JJ NN VBP VBN TO NN CC NN .\nChina is the biggest buyer of Sudan 's oil .\tNNP VBZ DT JJS NN IN NNP POS NN .\nAn earthquake in southeastern Turkey has injured at least seven people and triggered an avalanche .\tDT NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN DT NN .\nIstanbul 's Kandili observatory says a 5.7 magnitude earthquake struck early Saturday in rural Bingol province .\tNNP POS NNP NN VBZ DT CD NN NN VBD JJ NNP IN JJ NNP NN .\nIt was centered in the town of Karliova .\tPRP VBD VBN IN DT NN IN NNP .\nTurkey 's Anatolianews agency says the quake apparently triggered an avalanche in neighboring Erzurum province , and is blocking a highway leading to the village of Cat .\tNNP POS NNP NN VBZ DT NN RB VBD DT NN IN JJ NNP NN , CC VBZ VBG DT NN VBG TO DT NN IN NNP .\nAt least 20 homes in the area have been damaged .\tIN JJS CD NNS IN DT NN VBP VBN VBN .\nProvincial officials say recent heavy snowfall is hampering efforts to reach small villages .\tJJ NNS VBP JJ JJ NN VBZ VBG NNS TO VB JJ NNS .\nEarthquakes are common in Turkey .\tNNS VBP JJ IN NNP .\nIn 2003 , a magnitude 6.4 quake struck the same region , killing 177 people .\tIN CD , DT NN CD NN VBD DT JJ NN , VBG CD NNS .\nCoalition forces in Iraq have detained two suspected weapons smugglers the U.S. military says may have ties to the Iranian Revolutionary Guards Qods force .\tNN NNS IN NNP VBP VBN CD JJ NNS VBZ DT NNP NN VBZ MD VB NNS TO DT JJ NNP NNPS NNP NN .\nThe military issued a statement saying the suspects and weapons were seized during a raid on a rural farm compound in eastern Iraq .\tDT JJ VBD DT NN VBG DT NNS CC NNS VBD VBN IN DT NN IN DT JJ NN NN IN JJ NNP .\nThe military statement says the suspects may be linked to a network that has been smuggling Explosively Formed Projectiles ( EFPs ) and other weapons , personnel and money from Iran into Iraq .\tDT JJ NN VBZ DT NNS MD VB VBN TO DT NN WDT VBZ VBN VBG RB VBN NNP LRB NNP RRB CC JJ NNS , NNS CC NN IN NNP IN NNP .\nEarlier Sunday Iraqi Prime Minister Nouri al-Maliki urged parliament to cancel or shorten its August summer break to pass laws he considers crucial to Iraq 's stability .\tRB NNP JJ NNP NNP NNP NNP VBD NN TO VB CC VB PRP$ NNP NN NN TO VB NNS PRP VBZ JJ TO NNP POS NN .\nParliament was scheduled to adjourn for all of August , but American officials have been pressing Mr. Maliki and parliament to pass laws aimed at curbing sectarian violence and healing divisions between majority Shi'ite Arabs , minority Sunni Arabs and Kurds .\tNNP VBD VBN TO VB IN DT IN NNP , CC JJ NNS VBP VBN VBG NNP NNP CC NN TO VB NNS VBN IN VBG JJ NN CC VBG NNS IN NN NNP NNS , NN NNP NNS CC NNPS .\nIraqi police say a car bomb in northern Baghdad has killed 12 people .\tJJ NNS VBP DT NN NN IN JJ NNP VBZ VBN CD NNS .\nAt least 22 others were wounded in Sunday 's attack , which took place near a passport office in the capital 's northern Adhamiya district .\tIN JJS CD NNS VBD VBN IN NNP POS NN , WDT VBD NN IN DT NN NN IN DT NN POS JJ NNP NN .\nIn other violence in Iraq 's capital , nine people , including six civilians , were wounded when a roadside bomb exploded near a police patrol .\tIN JJ NN IN NNP POS NN , CD NNS , VBG CD NNS , VBD VBN WRB DT NN NN VBD IN DT NN NN .\nThe bombings came hours before Iraq 's parliament is scheduled to hold a special session to try to resolve a dispute about power-sharing proposals for the northern region of Kirkuk .\tDT NNS VBD NNS IN NNP POS NN VBZ VBN TO VB DT JJ NN TO VB TO VB DT NN IN JJ NNS IN DT JJ NN IN NNP .\nA top North Korean official says his country has a stockpile of nuclear weapons and is making more .\tDT JJ JJ JJ NN VBZ PRP$ NN VBZ DT NN IN JJ NNS CC VBZ VBG RBR .\nVice Foreign Minister Kim Gye Gwan told U.S.-based ABC News Wednesday that North Korea has enough nuclear bombs to defend against a U.S. attack .\tNNP NNP NNP NNP NNP NNP VBD JJ NNP NNP NNP IN NNP NNP VBZ RB JJ NNS TO VB IN DT NNP NN .\nBut he added Pyongyang has no intention of attacking the United States .\tCC PRP VBD NNP VBZ DT NN IN VBG DT NNP NNPS .\nWhen asked if North Korea has a missile capable of hitting the United States , Mr. Kim would not answer , saying one can not speculate about that because the nuclear program is not aimed at the United States .\tWRB VBN IN NNP NNP VBZ DT NN JJ IN VBG DT NNP NNPS , NNP NNP MD RB VB , VBG PRP MD RB VB IN DT IN DT JJ NN VBZ RB VBN IN DT NNP NNPS .\nSouth Korean president Roh Moo-hyun is on his way to Washington for talks Friday with President Bush .\tJJ JJ NN NNP NNP VBZ IN PRP$ NN TO NNP IN NNS NNP IN NNP NNP .\nThe two men are expected to discuss recent signs North Korea may be willing to return to six-nation talks on ending its nuclear weapons program .\tDT CD NNS VBP VBN TO VB JJ NNS NNP NNP MD VB JJ TO VB TO JJ NNS IN VBG PRP$ JJ NNS NN .\nThe U.S. military says an American soldier was killed in Iraq 's restive al-Anbar province , as U.S. and Iraqi forces continued their offensive to hunt down insurgents in western Iraq .\tDT NNP NN VBZ DT JJ NN VBD VBN IN NNP POS JJ JJ NN , IN NNP CC JJ NNS VBD PRP$ NN TO VB RP NNS IN JJ NNP .\nThe military says the soldier was killed late Friday during security operations in Anbar .\tDT JJ VBZ DT NN VBD VBN JJ NNP IN NN NNS IN NNP .\nNo other details were given .\tDT JJ NNS VBD VBN .\nU.S. Marines swept through the Iraqi town of Haditha in Anbar province early Saturday .\tNNP NNPS VBD IN DT JJ NN IN NNP IN NNP NN JJ NNP .\nA Reuters report says soldiers destroyed a cache of weapons and briefly exchanged fire with guerrillas .\tDT NNP NN VBZ NNS VBD DT NN IN NNS CC RB VBD NN IN NNS .\nInsurgents also continued assaults on Iraq 's strategic infrastructure , blowing up a section of an oil pipeline in the oil-rich northern region of Kirkuk late Friday .\tNNS RB VBD NNS IN NNP POS JJ NN , VBG RP DT NN IN DT NN NN IN DT JJ JJ NN IN NNP JJ NNP .\nRussian lawmakers have slightly modified a bill that critics say would undermine operations of non-governmental organizations in the country .\tJJ NNS VBP RB VBN DT NN IN NNS VBP MD VB NNS IN JJ NNS IN DT NN .\nThe State Duma overwhelmingly approved on second reading the measure that would expand oversight of non-governmental groups and ban their acceptance of foreign funds for political activities .\tDT NNP NNP RB VBD IN JJ VBG DT NN WDT MD VB NN IN JJ NNS CC VB PRP$ NN IN JJ NNS IN JJ NNS .\nThe lawmakers approved a set of amendments suggested by Russian President Vladimir Putin , including doing away with a clause that would require foreign NGOs to register as Russian entities .\tDT NNS VBD DT NN IN NNS VBN IN JJ NNP NNP NNP , VBG VBG RP IN DT NN WDT MD VB JJ NNS TO VB IN JJ NNS .\nThe United States repeatedly has expressed concern over the bill .\tDT NNP NNPS RB VBZ VBN NN IN DT NN .\nA State Department Spokesman Sean McCormack said the changes met some of these concerns .\tDT NNP NNP NNP NNP NNP VBD DT NNS VBD DT IN DT NNS .\nBut he said U.S. officials will withhold final judgment until they analyze the bill in depth .\tCC PRP VBD NNP NNS MD VB JJ NN IN PRP VBP DT NN IN NN .\nOne more vote in the Duma is needed for final approval .\tCD JJR NN IN DT NNP VBZ VBN IN JJ NN .\nHuman rights groups have condemned the measure as a reflection of the Kremlin 's crackdown on civil society institutions .\tJJ NNS NNS VBP VBN DT NN IN DT NN IN DT NNP POS NN IN JJ NN NNS .\nPolice in 12 European countries and the United States have searched 150 homes in a coordinated crackdown on Internet child pornography .\tNNS IN CD JJ NNS CC DT NNP NNPS VBP VBN CD NNS IN DT JJ NN IN NNP NN NN .\nThe European Union 's police agency , Europol , announced the action Wednesday , saying arrests have been made , but did not report how many .\tDT NNP NNP POS NN NN , NNP , VBD DT NN NNP , VBG NNS VBP VBN VBN , CC VBD RB VB WRB JJ .\nEuropol officials said Dutch police initiated the operation , code named ' Baleno , ' by supplying information to 76 countries around the world .\tNNP NNS VBD JJ NN VBD DT NN , NN VBN `` NNP , `` IN VBG NN TO CD NNS IN DT NN .\nThe operation started last year , when investigators discovered a sophisticated network distributing child pornography .\tDT NN VBD JJ NN , WRB NNS VBD DT JJ NN VBG NN NN .\nThe network used technology to hide its members ' identities .\tDT NN VBD NN TO VB PRP$ NNS POS NNS .\nEuropol coordinated the operation in Europe , while the FBI handled the probe in the United States .\tNNP VBD DT NN IN NNP , IN DT NNP VBD DT NN IN DT NNP NNPS .\nA memorial has been unveiled in Washington to honor journalists from around the world who have died or were killed while covering the news .\tDT NN VBZ VBN VBN IN NNP TO VB NNS IN IN DT NN WP VBP VBN CC VBD VBN IN VBG DT NN .\nThe memorial is part of a new museum dedicated to journalism called the ' Newseum . '\tDT NN VBZ NN IN DT JJ NN VBN TO NN VBD DT `` NNP . ``\nVOA 's Chris Simkins reports .\tNNP POS NNP NNP VBZ .\nAuthorities in Mauritania say suspects in the recent killing of four French tourists are members of an extremist group linked to al-Qaida .\tNNS IN NNP VBP NNS IN DT JJ NN IN CD JJ NNS VBP NNS IN DT NN NN VBN TO NNP .\nJustice officials say the three primary suspects were previously arrested on terror-related charges , but all were released .\tNNP NNS VBP DT CD JJ NNS VBD RB VBN IN JJ NNS , CC DT VBD VBN .\nProsecutors said they were members of a north African branch of the al-Qaida terror network .\tNNS VBD PRP VBD NNS IN DT JJ JJ NN IN DT NNP NN NN .\nSecurity officials say the French tourists were picnicking on the side of the highway outside of Aleg when a group of gunmen pulled up and demanded money .\tNN NNS VBP DT JJ NNS VBD VBG IN DT NN IN DT NN IN IN NNP WRB DT NN IN NNS VBD RB CC VBD NN .\nThe family refused and the gunmen opened fire .\tDT NN VBD CC DT NNS VBD NN .\nOne man survived the attack , but lost his two children , his brother and a family friend .\tCD NN VBD DT NN , CC VBD PRP$ CD NNS , PRP$ NN CC DT NN NN .\nAuthorities say the suspects may have fled to neighboring Senegal .\tNNS VBP DT NNS MD VB VBN TO VBG NNP .\nFrench President Nicolas Sarkozy offered his condolences and said he is in touch with his Mauritanian counterpart , Sidi Ould Cheikh Abdallahi .\tJJ NNP NNP NNP VBD PRP$ NNS CC VBD PRP VBZ IN NN IN PRP$ JJ NN , NNP NNP NNP NNP .\nAfghan authorities say they have detained a police chief in connection with last year 's killing of five aid workers from the Doctors Without Borders group .\tJJ NNS VBP PRP VBP VBN DT NN NN IN NN IN JJ NN POS NN IN CD NN NNS IN DT NNP NNP NNP NN .\nAn Afghan interior ministry spokesman said the police chief of Qadis district of Badghis province is a suspect and has been detained for questioning .\tDT JJ NN NN NN VBD DT NN NN IN NNP NN IN NNP NN VBZ DT NN CC VBZ VBN VBN IN VBG .\nThree foreign and two Afghan aid workers were killed when their vehicle was hit by grenades in an apparently targeted attack in Badghis June 2 last year .\tCD JJ CC CD JJ NN NNS VBD VBN WRB PRP$ NN VBD VBN IN NNS IN DT RB JJ NN IN NNP NNP CD JJ NN .\nA month later , the Nobel Prize-winning medical relief agency pulled out of Afghanistan after 24 years , citing poor security and the government 's failure to launch a ' credible ' investigation into the killings .\tDT NN RB , DT NNP JJ JJ NN NN VBD IN IN NNP IN CD NNS , VBG JJ NN CC DT NN POS NN TO VB DT `` JJ `` NN IN DT NNS .\nThird-seeded Dinara Safina of Russia has easily defeated Iveta Benesova of the Czech Republic , 6-0 , 06-Jan , to advance to the third round of the women 's Gold Coast hardcourt tennis championships in Australia .\tJJ NNP NNP IN NNP VBZ RB VBN NNP NNP IN DT JJ NNP , CD , CD , TO VB IN DT JJ NN IN DT NNS POS NNP NNP NN NN NNS IN NNP .\nIn other matches Tuesday , fourth-seeded Flavia Pennetta of Italy beat China 's Li Na , 06-Feb , 06-Feb .\tIN JJ NNS NNP , JJ NNP NNP IN NNP VBD NNP POS NNP NNP , CD , CD .\nNumber-eight Anabel Medina Garrigues of Spain defeated Aiko Nakamura of Japan , 06-Apr , 06-Apr , while teenager Lucie Safarova of the Czech Republic scored a three-set win over Slovakia 's Jarmila Gajdosova ( 04-Jun , 07-May , 06-Apr ) .\tJJ NNP NNP NNP IN NNP VBD NNP NNP IN NNP , CD , CD , IN JJ NNP NNP IN DT JJ NNP VBD DT JJ NN IN NNP POS NNP NNP LRB CD , CD , CD RRB .\nMeanwhile in doubles , comeback player Martina Hingis of Switzerland teamed up with Tatiana Golovin of France to beat Athens Olympic doubles gold medalists Li Ting and Sun Tiantian of China , 06-Jan , 06-Apr .\tRB IN NNS , NN NN NNP NNP IN NNP VBD RP IN NNP NNP IN NNP TO VB NNP NNP VBZ JJ NNS NNP NNP CC NNP NNP IN NNP , CD , CD .\nThe 25-year-old Hingis is making a return to the circuit after retiring three years ago due to a series of chronic foot injuries .\tDT JJ NNP VBZ VBG DT NN TO DT NN IN VBG CD NNS RB JJ TO DT NN IN JJ NN NNS .\nBolivian President Evo Morales ended his five-day hunger strike Tuesday , after Congress passed a new electoral law making it possible for him to seek re-election in December .\tJJ NNP NNP NNP VBD PRP$ JJ NN NN NNP , IN NNP VBD DT JJ JJ NN VBG PRP JJ IN PRP TO VB NN IN NNP .\nThe new law approved early Tuesday calls for general elections to be held on December 6 and gives more seats in Congress to minority indigenous groups .\tDT JJ NN VBD JJ NNP NNS IN JJ NNS TO VB VBN IN NNP CD CC VBZ JJR NNS IN NNP TO NN JJ NNS .\nMr. Morales is the country 's first indigenous president .\tNNP NNP VBZ DT NN POS JJ JJ NN .\nPresident Morales started the hunger strike Thursday after accusing the opposition-controlled Senate of holding up passage of the measure .\tNNP NNP VBD DT NN NN NNP IN VBG DT JJ NNP IN VBG RP NN IN DT NN .\nBolivians recently approved a new constitution that allows President Morales to seek a second , five-year term in December elections .\tNNS RB VBD DT JJ NN WDT VBZ NNP NNP TO VB DT JJ , JJ NN IN NNP NNS .\nGerman military authorities have suspended two soldiers in connection with a series of disturbing photos showing servicemen posing with human skulls in Afghanistan .\tJJ JJ NNS VBP VBN CD NNS IN NN IN DT NN IN JJ NNS VBG NNS VBG IN JJ NNS IN NNP .\nDefense Minister Josef Jung announced the suspensions Friday in Berlin .\tNNP NNP NNP NNP VBD DT NNS NNP IN NNP .\nThe scandal broke Wednesday when the newspaper Bild printed several pictures reportedly taken in 2003 , including one of a German soldier posing with a skull in a sexual manner .\tDT NN VBD NNP WRB DT NN NNP VBD JJ NNS RB VBN IN CD , VBG CD IN DT JJ NN VBG IN DT NN IN DT JJ NN .\nRTL television on Thursday broadcast photographs of one soldier kissing a skull while another soldier displays a skull on the hood of a military vehicle .\tNNP NN IN NNP NN NNS IN CD NN VBG DT NN IN DT NN VBZ DT NN IN DT NN IN DT JJ NN .\nThe photos aired by RTL were reportedly taken a year later .\tDT NNS VBN IN NNP VBD RB VBN DT NN RB .\nThe photos have scandalized much of Germany .\tDT NNS VBP VBN NN IN NNP .\nChancellor Angela Merkel calls the pictures disgusting and unforgivable .\tNNP NNP NNP VBZ DT NNS VBG CC JJ .\nThe defense minister says the army has identified at least six of the soldiers involved in the photos , and has promised to punish them .\tDT NN NN VBZ DT NN VBZ VBN IN JJS CD IN DT NNS VBN IN DT NNS , CC VBZ VBN TO VB PRP .\nZimbabwe 's main opposition party has cut ties with the South African government following its endorsement of parliamentary elections won by President Robert Mugabe 's ruling party .\tNNP POS JJ NN NN VBZ VBN NNS IN DT JJ JJ NN VBG PRP$ NN IN JJ NNS VBN IN NNP NNP NNP POS VBG NN .\nMovement for Democratic Change ( MDC ) spokesman Paul Nyathi says there is no point in engaging with the South African government anymore .\tNN IN JJ NNP LRB NNP RRB NN NNP NNP VBZ EX VBZ DT NN IN VBG IN DT JJ JJ NN RB .\nMr. Nyathi criticized the South African government for declaring what the opposition says were deeply-flawed March elections as free and fair .\tNNP NNP VBD DT JJ JJ NN IN VBG WP DT NN VBZ VBD JJ NNP NNS IN JJ CC JJ .\nHe said South Africa was there , but did not bother to observe the elections properly .\tPRP VBD NNP NNP VBD RB , CC VBD RB VB TO VB DT NNS RB .\nSouth Africa has led mediation efforts on Zimbabwe 's political crisis , and has been slammed repeatedly by the opposition for its approach of so-called ' quiet diplomacy ' towards the Mugabe government .\tNNP NNP VBZ VBN NN NNS IN NNP POS JJ NN , CC VBZ VBN VBN RB IN DT NN IN PRP$ NN IN JJ `` JJ NN `` IN DT NNP NN .\nThe MDC has said the poll was rigged and it plans to contest the outcome of 13 seats in court .\tDT NNP VBZ VBN DT NN VBD VBN CC PRP VBZ TO NN DT NN IN CD NNS IN NN .\nChina and Russia are discussing plans to set up a hotline so Chinese officials can inform Moscow about a toxic chemical spill that is flowing toward Russian territory .\tNNP CC NNP VBP VBG NNS TO VB RP DT NN IN JJ NNS MD VB NNP IN DT JJ NN NN WDT VBZ VBG IN JJ NN .\nAuthorities in Russia 's far eastern Khabarovsk region Thursday are on alert as heavily contaminated waters from China head downriver .\tNNS IN NNP POS RB JJ NNP NN NNP VBP IN NN IN RB VBN NNS IN NNP NN NN .\nChinese authorities have already had to close the water mains in Harbin , one of China 's largest northeastern cities , because of a huge slick of toxic benzene in the Songhua River .\tJJ NNS VBP RB VBN TO VB DT NN NNS IN NNP , CD IN NNP POS JJS JJ NNS , IN IN DT JJ NN IN JJ NN IN DT NNP NNP .\nScientists say even small amounts of the industrial solvent can cause mouth ulcers , and larger quantities can cause leukemia .\tNNS VBP RB JJ NNS IN DT JJ NN MD VB NN NNS , CC JJR NNS MD VB NN .\nFacing criticism , Chinese officials have promised to take measures to monitor pollutants .\tVBG NN , JJ NNS VBP VBN TO VB NNS TO VB NNS .\nThe contamination stems from a chemical plant explosion that spilled toxic compounds into the Songhua River on November 13 .\tDT NN VBZ IN DT NN NN NN WDT VBD JJ NNS IN DT NNP NNP IN NNP CD .\nFifty people representing 26 countries took the Oath of Allegiance this week ( Thursday ) and became U.S. citizens in a special ceremony at the Newseum in Washington , D.C.\tCD NNS VBG CD NNS VBD DT NN IN NNP DT NN LRB NNP RRB CC VBD NNP NNS IN DT JJ NN IN DT NNP IN NNP , NNP\nThe ceremony was in held in honor of America 's July 4 Independence Day holiday .\tDT NN VBD IN VBN IN NN IN NNP POS NNP CD NNP NNP NN .\nVOA 's Ana Ward spoke to some of the participants about the significance of this day and their new life as American citizens .\tNNP POS NNP NNP VBD TO DT IN DT NNS IN DT NN IN DT NN CC PRP$ JJ NN IN JJ NNS .\nJim Bertel narrates .\tNNP NNP VBZ .\nPolice said a bomb blast in eastern Sri Lanka has killed one police officer and one civilian .\tNNP VBD DT NN NN IN JJ NNP NNP VBZ VBN CD NN NN CC CD JJ .\nAuthorities said Tamil Tiger rebels were responsible for the blast in the town of Batticaloa .\tNNS VBD NNP NNP NNS VBD JJ IN DT NN IN DT NN IN NNP .\nThey said the blast wounded 11 people , including four schoolchildren .\tPRP VBD DT NN VBD CD NNS , VBG CD NNS .\nA Tamil Tiger spokesman could not be reached for comment .\tDT NNP NNP NN MD RB VB VBN IN NN .\nThe bombing came as the military surrounded the rebels in the country 's northeast in a push to end the 25-year-old civil war .\tDT NN VBD IN DT JJ VBN DT NNS IN DT NN POS NN IN DT NN TO VB DT JJ JJ NN .\nJournalists are often unable to independently confirm military and rebel reports because they are barred from the war zone .\tNNS VBP RB JJ TO RB VB JJ CC JJ NNS IN PRP VBP VBN IN DT NN NN .\nTaleban militants have resumed talks with South Korean officials trying to negotiate the release of 19 South Korean aid workers held in Afghanistan for more than a month .\tNNP NNS VBP VBN NNS IN JJ JJ NNS VBG TO VB DT NN IN CD JJ JJ NN NNS VBN IN NNP IN JJR IN DT NN .\nA Red Cross official , Frank Rauchenstein , says negotiations got underway Thursday at the office of the Afghan Red Crescent in Ghazni City .\tDT NNP NNP NN , NNP NNP , VBZ NNS VBD JJ NNP IN DT NN IN DT JJ NNP NNP IN NNP NNP .\nMonday , the Taleban released two of the hostages in what was described as a ' goodwill gesture . '\tNNP , DT NNP VBD CD IN DT NNS IN WP VBD VBN IN DT `` NN NN . ``\nTaleban militants abducted 23 South Korean Christian aid workers on July 19 while they traveled through Ghazni province on a humanitarian mission .\tNNP NNS VBD CD JJ JJ JJ NN NNS IN NNP CD IN PRP VBD IN NNP NN IN DT JJ NN .\nTwo male hostages were executed late last month after the Afghan government failed to meet Taleban demands to release militant prisoners .\tCD JJ NNS VBD VBN RB JJ NN IN DT JJ NN VBD TO VB NNP NNS TO VB JJ NNS .\nIranian state media say an Iranian rocket launched into space earlier this month has sent data back to Earth .\tJJ NN NNS VBP DT JJ NN VBD IN NN RBR DT NN VBZ VBN NNS RB TO NNP .\nIran says the rocket that it launched on February 4 is designed to carry the country 's first home-made satellite into orbit later this year .\tNNP VBZ DT NN IN PRP VBD IN NNP CD VBZ VBN TO VB DT NN POS JJ JJ NN IN NN RB DT NN .\nWashington criticized Iran 's launch and said it will further isolate Tehran in the international community .\tNNP VBD NNP POS NN CC VBD PRP MD RB VB NNP IN DT JJ NN .\nMoscow said it does not approve of Iran 's efforts to develop rocket technology .\tNNP VBD PRP VBZ RB VB IN NNP POS NNS TO VB NN NN .\nThe technology used to put satellites into orbit can also be used for launching weapons .\tDT NN VBD TO VB NNS IN NN MD RB VB VBN IN VBG NNS .\nIran says other countries should not worry about its scientific achievements , and says it wants to launch satellites for research and telecommunications .\tNNP VBZ JJ NNS MD RB VB IN PRP$ JJ NNS , CC VBZ PRP VBZ TO VB NNS IN NN CC NNS .\nIranian President Mahmoud Ahmadinejad has said Iran will test-launch two more rockets before it sends a satellite into orbit .\tJJ NNP NNP NNP VBZ VBN NNP MD VB CD JJR NNS IN PRP VBZ DT NN IN NN .\nDenmark 's foreign ministry is urging Danish nationals to leave Lebanon after protesters , angered over a political cartoon of the prophet Mohammed , burned the Danish consulate .\tNNP POS JJ NN VBZ VBG JJ NNS TO VB NNP IN NNS , VBD IN DT JJ NN IN DT NN NNP , VBD DT JJ NN .\nRiot police used tear gas and water cannons to break up the mob .\tNN NNS VBD JJ NN CC NN NNS TO VB RP DT NN .\nLebanese Interior Minister Hassan al-Sabaa resigned following the unrest .\tJJ NNP NNP NNP NNP VBD VBG DT NN .\nProtesters burned the Danish and Norwegian embassies in Damascus , Syria Saturday .\tNNS VBD DT JJ CC JJ NNS IN NNP , NNP NNP .\nMuslims throughout the region are boycotting Danish goods .\tNNPS IN DT NN VBP VBG JJ NNS .\nStore owners have pulled Danish products from shelves .\tNNP NNS VBP VBN JJ NNS IN NNS .\nThe cartoon was first printed in a Danish newspaper and then reprinted in a number of European cities .\tDT NN VBD JJ VBN IN DT JJ NN CC RB VBN IN DT NN IN JJ NNS .\nMuslims call any depiction of the prophet blasphemous .\tNNPS VBP DT NN IN DT NN JJ .\nMuslim and Arab leaders are calling for calm .\tNNP CC JJ NNS VBP VBG IN NN .\nLebanese leaders say violence is as harmful to Islam as the cartoon .\tJJ NNS VBP NN VBZ IN JJ IN NNP IN DT NN .\nRising oil prices , global trade imbalances and China 's inflexible currency rates are among issues for discussion Saturday at the start of the annual meetings of the International Monetary Fund and the World Bank .\tVBG NN NNS , JJ NN NNS CC NNP POS JJ NN NNS VBP IN NNS IN NN NNP IN DT NN IN DT JJ NNS IN DT NNP NNP NNP CC DT NNP NNP .\nThe meetings in Washington begin a day after a gathering of the top economic officials from the world 's seven major industrialized nations - the United States , Japan , Britain , Germany , France , Canada and Italy .\tDT NNS IN NNP VBP DT NN IN DT NN IN DT JJ JJ NNS IN DT NN POS CD JJ JJ NNS IN DT NNP NNPS , NNP , NNP , NNP , NNP , NNP CC NNP .\nThe group issued a statement calling on China to convert its currency to a more flexible exchange rate as a means of addressing Beijing 's trade surplus with much of the world .\tDT NN VBD DT NN VBG IN NNP TO VB PRP$ NN TO DT RBR JJ NN NN IN DT NN IN VBG NNP POS NN NN IN NN IN DT NN .\nThe economic officials say the IMF needs to take a more aggressive role in monitoring the currency practices of its member nations .\tDT JJ NNS VBP DT NNP VBZ TO VB DT RBR JJ NN IN VBG DT NN NNS IN PRP$ NN NNS .\nThe statement also spelled out what other nations could do to address global trade imbalances , such as the U.S. reducing its huge budget deficit .\tDT NN RB VBD RP WP JJ NNS MD VB TO VB JJ NN NNS , JJ IN DT NNP VBG PRP$ JJ NN NN .\nU.S. President Barack Obama has signed into law a $ 2 billion extension to the popular ' cash for clunkers ' auto rebate program .\tNNP NNP NNP NNP VBZ VBN IN NN DT $ CD CD NN TO DT JJ `` NN IN NNS `` NN NN NN .\nMr. Obama signed the legislation Friday .\tNNP NNP VBD DT NN NNP .\nThe Senate approved the extension late Thursday .\tDT NNP VBD DT NN JJ NNP .\nThe ' cash for clunkers ' incentive program has helped boost U.S. auto sales .\tDT `` NN IN NNS `` NN NN VBZ VBN VB NNP NN NNS .\nThe program gives car owners up to $ 4,500 in rebates to trade in older , gas-guzzling vehicles for newer , more fuel-efficient models .\tDT NN VBZ NN NNS RB TO $ CD IN NNS TO VB IN JJR , JJ NNS IN JJR , RBR JJ NNS .\nThe House of Representatives approved the bill last week to replenish funding for the program , which nearly exhausted its initial $ 1 billion funding limit within a matter of days .\tDT NNP IN NNPS VBD DT NN JJ NN TO VB NN IN DT NN , WDT RB VBD PRP$ JJ $ CD CD NN NN IN DT NN IN NNS .\nThe Obama administration had said the program would have gone broke by Friday if Congress did not approve the extension .\tDT NNP NN VBD VBN DT NN MD VB VBN VBN IN NNP IN NNP VBD RB VB DT NN .\nA lawyer for imprisoned Russian oil magnate Mikhail Khodorkovsky says his client has ended a nearly week-long hunger strike .\tDT NN IN JJ JJ NN NN NNP NNP VBZ PRP$ NN VBZ VBN DT RB JJ NN NN .\nAttorney Anton Drel says oil magnate ended his fast after authorities transferred his business partner Platon Lebedev from solitary confinement to a regular cell .\tNN NNP NNP VBZ NN NN VBD PRP$ NN IN NNS VBD PRP$ NN NN NNP NNP IN JJ NN IN DT JJ NN .\nAuthorities put Lebedev in isolation after accusing him of insulting prison guards .\tNNS VBD NNP IN NN IN VBG PRP IN VBG NN NNS .\nIn May , authorities sentenced the two former owners of the Yukos oil company to nine years in prison for tax evasion and fraud .\tIN NNP , NNS VBD DT CD JJ NNS IN DT NNP NN NN TO CD NNS IN NN IN NN NN CC NN .\nOpposition supporters call their trial politically motivated because of Khodorkovsky 's backing of opposition politicians - charges Kremlin authorities deny .\tNN NNS VBP PRP$ NN RB JJ IN IN NNP POS NN IN NN NNS IN NNS NNP NNS VBP .\nTibetans around the world are celebrating the 46th anniversary of their Democracy Day .\tNNS IN DT NN VBP VBG DT JJ NN IN PRP$ NN NN .\nAmong the exiled Tibetan community in India and elsewhere , formal and informal celebrations are being held Saturday .\tIN DT VBN JJ NN IN NNP CC RB , JJ CC JJ NNS VBP VBG VBN NNP .\nAt a Tibetan school in New Delhi , a gathering of people heard speeches by dignitaries including a representative of Tibetan spiritual leader , the Dalai Lama .\tIN DT JJ NN IN NNP NNP , DT NN IN NNS VBN NNS IN NNS VBG DT NN IN JJ JJ NN , DT NNP NNP .\nStudents at the school performed Tibetan cultural songs and dances for those in attendance .\tNNS IN DT NN VBD JJ JJ NNS CC NNS IN DT IN NN .\nOn September 2 , 1960 , a 13-member assembly of Tibetan exiles met for the first time in Dharamsala , northern India .\tIN NNP CD , CD , DT JJ NN IN JJ NNS VBD IN DT JJ NN IN NNP , JJ NNP .\nThe Tibetan community observes this day each year as Democracy Day .\tDT JJ NN VBZ DT NN DT NN IN NNP NNP .\nA roadside bomb has ripped through a U.S. military vehicle in Afghanistan , killing one soldier and wounding two others in the northeastern province of Kunar .\tDT NN NN VBZ VBN IN DT NNP JJ NN IN NNP , VBG CD NN CC VBG CD NNS IN DT JJ NN IN NNP .\nA U.S. military spokesman says the troops were driving an armored vehicle southwest of the provincial capital of Asadabad .\tDT NNP JJ NN VBZ DT NNS VBD VBG DT JJ NN NN IN DT JJ NN IN NNP .\nKunar is a mountainous province on the border with Pakistan and is considered a hideout for militants .\tNNP VBZ DT JJ NN IN DT NN IN NNP CC VBZ VBN DT NN IN NNS .\nAnother American soldier was killed and four were injured in southern Afghanistan when their armored vehicle rolled over near Kandahar city .\tDT JJ NN VBD VBN CC CD VBD VBN IN JJ NNP WRB PRP$ JJ NN VBD RP IN NNP NN .\nA U.S. military statement says enemy activities were not a factor in the accident .\tDT NNP JJ NN VBZ NN NNS VBD RB DT NN IN DT NN .\nKandahar is a stronghold of Afghanistan 's former Taleban rulers .\tNNP VBZ DT NN IN NNP POS JJ NNP NNS .\nDoctors say Israeli Prime Minister Ariel Sharon remains in critical but stable condition - 10 days after suffering a massive stroke .\tNNS VBP JJ NNP NNP NNP NNP VBZ IN JJ CC JJ NN IN CD NNS IN VBG DT JJ NN .\nJerusalem 's Hadassah hospital issued the update on Mr. Sharon 's condition Saturday evening after the end of the Jewish sabbath .\tNNP POS NNP NN VBD DT NN IN NNP NNP POS NN NNP NN IN DT NN IN DT JJ NN .\nThe hospital said medical tests showed that Mr. Sharon has activity in both of his brain lobes .\tDT NN VBD JJ NNS VBD IN NNP NNP VBZ NN IN DT IN PRP$ NN NNS .\nFor several days , doctors have been reducing the level of sedatives , with the intent of drawing the 77-year-old Mr. Sharon out of an induced coma .\tIN JJ NNS , NNS VBP VBN VBG DT NN IN NNS , IN DT NN IN VBG DT JJ NNP NNP IN IN DT JJ NN .\nHowever , he has not shown any signs of waking up .\tRB , PRP VBZ RB VBN DT NNS IN VBG RP .\nNigerian authorities say gunmen have kidnapped a Lebanese man in the country 's volatile southern region .\tJJ NNS VBP NNS VBP VBN DT JJ NN IN DT NN POS JJ JJ NN .\nMilitary officials say the man was seized along with his car in the city of Warri Tuesday .\tJJ NNS VBP DT NN VBD VBN IN IN PRP$ NN IN DT NN IN NNP NNP .\nThe man works for a construction company , Niger Cat .\tDT NN VBZ IN DT NN NN , NNP NNP .\nOn Saturday , gunmen kidnapped two Indian petrochemical workers in another southern town , Port Harcourt .\tIN NNP , NNS VBD CD JJ NN NNS IN DT JJ NN , NNP NNP .\nIn all , about 100 foreigners have been kidnapped in Nigeria 's oil-rich Niger Delta region this year .\tIN DT , IN CD NNS VBP VBN VBN IN NNP POS NN NNP NNP NN DT NN .\nMost have been released unharmed , after their employers paid ransom .\tJJS VBP VBN VBN JJ , IN PRP$ NNS VBN NN .\nSeveral hostages also have been injured or killed during rescue attempts by the Nigerian military .\tJJ NNS RB VBP VBN VBN CC VBN IN NN NNS IN DT JJ NN .\nMany of the kidnappings are carried out by criminal gangs , while others are the work of militants who want more of the region 's oil wealth directed to impoverished locals .\tNN IN DT NNS VBP VBN RP IN JJ NNS , IN NNS VBP DT NN IN NNS WP VBP JJR IN DT NN POS NN NN VBD TO JJ NNS .\nPalestinian gunmen have surrounded European Union offices in the Gaza Strip threatening violence and demanding an apology after newspapers in Europe reprinted Danish caricatures of the Prophet Mohammed .\tJJ NNS VBP VBN NNP NNP NNS IN DT NNP NNP JJ NN CC VBG DT NN IN NNS IN NNP VBD JJ NNS IN DT NNP NNP .\nNewspapers in several EU countries published the cartoons Wednesday in a show of solidarity for press freedom .\tNNS IN JJ NNP NNS VBD DT NNS NNP IN DT NN IN NN IN NN NN .\nOne cartoon shows the Prophet Mohammed wearing a turban shaped like a bomb .\tCD NN VBZ DT NNP NNP VBG DT NN VBN IN DT NN .\nThe militants have threatened to target Danish , French , and Norwegian nationals in the Palestinian territories .\tDT NNS VBP VBN TO VB JJ , JJ , CC JJ NNS IN DT JJ NNS .\nThe French-Egyptian owner of the French newspaper France Soir has fired an editor for reprinting the cartoons .\tDT JJ NN IN DT JJ NN NNP NNP VBZ VBN DT NN IN VBG DT NNS .\nA spokesman for the press freedom group Reporters Without Borders is calling on both sides to calm down .\tDT NN IN DT NN NN NN VBZ IN NNS VBZ VBG IN DT NNS TO VB RP .\nMeanwhile , a Jordanian weekly newspaper has published three of the 12 cartoons to acquaint the Muslim public with the caricatures .\tRB , DT JJ JJ NN VBZ VBN CD IN DT CD NNS TO VB DT NNP NN IN DT NNS .\nPublication of the cartoons by a Danish newspaper in September prompted Muslim protests .\tNN IN DT NNS IN DT JJ NN IN NNP VBD NNP NNS .\nMexican authorities say two police officers and a medical technician are dead after a car rammed two police vehicles in what authorities say was retaliation for the arrest of a drug cartel leader .\tJJ NNS VBP CD NNS NNS CC DT JJ NN VBP JJ IN DT NN VBD CD NNS NNS IN WP NNS VBP VBD NN IN DT NN IN DT NN NN NN .\nPolice said the attack Thursday in the violent border town of Ciudad Juarez was a direct response to the arrest earlier in the day of Jesus Acosta Guerrero , a senior gang member linked to the Juarez cartel .\tNNS VBD DT NN NNP IN DT JJ NN NN IN NNP NNP VBD DT JJ NN TO DT NN RBR IN DT NN IN NNP NNP NNP , DT JJ NN NN VBN TO DT NNP NN .\nAuthorities say the attack caused an explosion , leaving the vehicles badly damaged .\tNNS VBP DT NN VBD DT NN , VBG DT NNS RB VBN .\nThe Associated Press news agency reports the car may have been packed with explosives or inflammable material .\tDT NNP NNP NN NN VBZ DT NN MD VB VBN VBN IN NNS CC JJ NN .\nMexican President Felipe Calderon has deployed thousands of soldiers nationwide to fight drug gangs since taking office in 2006 .\tJJ NNP NNP NNP VBZ VBN NNS IN NNS JJ TO VB NN NNS IN VBG NN IN CD .\nAt least 23,000 people have been killed in drug-related violence since the president began cracking down on the cartels .\tIN JJS CD NNS VBP VBN VBN IN JJ NN IN DT NN VBD VBG RP IN DT NNS .\nThe Bush administration will ask Congress for more than $ 240 billion to cover the cost of military operations in Iraq and Afghanistan for the next two fiscal years .\tDT NNP NN MD VB NNP IN JJR IN $ CD CD TO VB DT NN IN JJ NNS IN NNP CC NNP IN DT JJ CD JJ NNS .\nMr. Bush is seeking more than $ 90 billion for the current fiscal year , to go along with the $ 70 billion already approved by lawmakers .\tNNP NNP VBZ VBG JJR IN $ CD CD IN DT JJ JJ NN , TO VB RP IN DT $ CD CD RB VBN IN NNS .\nHe will also ask for more than $ 140 billion to cover war costs for fiscal year 2008 , which begins October 1 .\tPRP MD RB VB IN JJR IN $ CD CD TO VB NN NNS IN JJ NN CD , WDT VBZ NNP CD .\nThe money is separate from the $ 481 billion the president will request for the military 's regular 2008 budget .\tDT NN VBZ JJ IN DT $ CD CD DT NN MD VB IN DT NN POS JJ CD NN .\nThe administration has obtained funding for the Iraq and Afghanistan operations through emergency spending bills .\tDT NN VBZ VBN NN IN DT NNP CC NNP NNS IN NN NN NNS .\nLawmakers have criticized the practice , saying the emergency bills are not subject to the same scrutiny as regular spending bills .\tNNS VBP VBN DT NN , VBG DT NN NNS VBP RB JJ TO DT JJ NN IN JJ NN NNS .\nIndia and Saudi Arabia have said they intend to form an energy partnership to increase the amount of crude oil supplied to India .\tNNP CC NNP NNP VBP VBN PRP VBP TO VB DT NN NN TO VB DT NN IN JJ NN VBD TO NNP .\nThe joint declaration was announced Friday in New Delhi at the end of Saudi King Abdullah 's four-day visit to India .\tDT JJ NN VBD VBN NNP IN NNP NNP IN DT NN IN NNP NNP NNP POS JJ NN TO NNP .\nThe agreement , signed by the king and India 's Prime Minister Manmohan Singh , endorses greater exports of Saudi crude oil to India along with Saudi investments in refining and distribution in India .\tDT NN , VBN IN DT NN CC NNP POS NNP NNP NNP NNP , VBZ JJR NNS IN JJ JJ NN TO NNP IN IN JJ NNS IN NN CC NN IN NNP .\nThe two countries said they would establish a joint venture to produce fertilizer at plants in Saudi Arabia .\tDT CD NNS VBD PRP MD VB DT JJ NN TO VB NN IN NNS IN NNP NNP .\nIndia imports 70 percent of the oil it consumes .\tNNP NNS CD NN IN DT NN PRP VBZ .\nIn the agreement , India and Saudi Arabia also pledged to cooperate in the fight against terrorism .\tIN DT NN , NNP CC NNP NNP RB VBD TO VB IN DT NN IN NN .\nFormer Lebanese Prime Minister Rafik Hariri , the billionaire tycoon who oversaw the post-civil war reconstruction of Beirut , died Monday in a Beirut car bombing .\tJJ JJ NNP NNP NNP NNP , DT NN NN WP VBD DT JJ NN NN IN NNP , VBD NNP IN DT NNP NN NN .\nHe was 60 .\tPRP VBD CD .\nMr. Hariri became prime minister in 1992 as optimism swept Lebanon two years after the end of its 15-year civil war .\tNNP NNP VBD JJ NN IN CD IN NN VBD NNP CD NNS IN DT NN IN PRP$ JJ JJ NN .\nHe began massive rebuilding projects , while backing Syrian efforts to consolidate political control in Lebanon .\tPRP VBD JJ NN NNS , IN VBG JJ NNS TO VB JJ NN IN NNP .\nWhile dogged by accusations of corruption , Mr. Hariri was also widely known for his philanthropy .\tIN VBN IN NNS IN NN , NNP NNP VBD RB RB VBN IN PRP$ NN .\nHe is said to have paid the education bills of 30,000 Lebanese students , and donated tens of millions of dollars of his own money to Lebanese charities .\tPRP VBZ VBN TO VB VBN DT NN NNS IN CD JJ NNS , CC VBD NNS IN NNS IN NNS IN PRP$ JJ NN TO VB NNS .\nHe quit the government in 1998 , but returned in 2000 and served as prime minister until quitting again in late 2004 , after Lebanon 's pro-Syrian parliament voted to extend the term of pro-Syrian president and political rival Emile Lahoud .\tPRP VBD DT NN IN CD , CC VBD IN CD CC VBD IN JJ NN IN VBG RB IN JJ CD , IN NNP POS JJ NN VBD TO VB DT NN IN JJ NN CC JJ NN NNP NNP .\nLebanon 's newly chosen prime minister , Najib Mikati , has begun talks to form a cabinet , amid rising hopes that the country 's parliamentary elections will be held by the end of May .\tNNP POS RB VBN JJ NN , NNP NNP , VBZ VBN NNS TO VB DT NN , IN VBG NNS IN DT NN POS JJ NNS MD VB VBN IN DT NN IN NNP .\nThe cabinet discussions began Saturday , one day after Lebanese President Emile Lahoud named the moderate pro-Syrian politician as the new prime minister .\tDT NN NNS VBD NNP , CD NN IN JJ NNP NNP NNP VBD DT JJ JJ NN IN DT JJ JJ NN .\nMr. Mikati said his priorities will be holding elections , reviving economic growth , and cooperating with the U.N. probe into February 's assassination of former Prime Minister Rafik Hariri .\tNNP NNP VBD PRP$ NNS MD VB VBG NNS , VBG JJ NN , CC VBG IN DT NNP NN IN NNP POS NN IN JJ NNP NNP NNP NNP .\nLebanon has been without a government since former Prime Minister Omar Karami resigned after the Hariri killing , which the opposition blames on pro-Syrian agents .\tNNP VBZ VBN IN DT NN IN JJ NNP NNP NNP NNP VBD IN DT NNP NN , WDT DT NN VBZ IN JJ NNS .\nPresident Lahoud re-appointed Mr. Karami , but he quit again this week after failing to form a new government .\tNNP NNP VBD NNP NNP , CC PRP VBD RB DT NN IN VBG TO VB DT JJ NN .\nBritain is taking new steps to limit the poaching of developing world doctors , nurses and other health care professionals .\tNNP VBZ VBG JJ NNS TO VB DT NN IN VBG NN NNS , NNS CC JJ NN NN NNS .\nA revised code of practice for the country 's National Health System ( NHS ) closes loopholes that allow British employers to strip developing countries of health care professionals .\tDT JJ NN IN NN IN DT NN POS NNP NNP NNP LRB NNP RRB VBZ NNS WDT VBP JJ NNS TO VB VBG NNS IN NN NN NNS .\nGrowing health care systems in Britain and other industrialized countries actively recruit health care professionals from developing countries .\tVBG NN NN NNS IN NNP CC JJ JJ NNS RB VBP NN NN NNS IN VBG NNS .\nThat ' brain drain ' puts strain on developing-world health systems facing their own health care crises .\tDT `` NN NN `` VBZ NN IN JJ NN NNS VBG PRP$ JJ NN NN NNS .\nBritain 's new code of practice forbids employers working with the NHS from recruiting from developing countries unless there is an agreement with that country 's government .\tNNP POS JJ NN IN NN NNS NNS VBG IN DT NNP IN VBG IN VBG NNS IN EX VBZ DT NN IN DT NN POS NN .\nBritish Health Minister John Hutton said in a statement that the NHS is expanding , but wo n't do so at the expense of other countries .\tJJ NNP NNP NNP NNP VBD IN DT NN IN DT NNP VBZ VBG , CC MD RB VB RB IN DT NN IN JJ NNS .\nThe leaders of Australia and Japan have offered their full support to Britain in the aftermath of the deadly attacks on London 's transit system .\tDT NNS IN NNP CC NNP VBP VBN PRP$ JJ NN TO NNP IN DT NN IN DT JJ NNS IN NNP POS NN NN .\nAustralian Prime Minister John Howard said Thursday on national radio it is important his country stands ' shoulder to shoulder ' with its British allies at a time like this .\tJJ NNP NNP NNP NNP VBD NNP IN JJ NN PRP VBZ JJ PRP$ NN VBZ `` NN TO VB `` IN PRP$ JJ NNS IN DT NN IN DT .\nMr. Howard expressed his ' horror and disgust ' at the attacks and said they would not alter the determination of free countries to ' do the right thing . '\tNNP NNP VBD PRP$ `` NN CC NN `` IN DT NNS CC VBD PRP MD RB VB DT NN IN JJ NNS TO `` VB DT JJ NN . ``\nAt the Group of Eight summit in Scotland , Japanese Prime Minister Junichiro Koizumi said he is outraged by the London attacks .\tIN DT NNP IN CD NN IN NNP , JJ NNP NNP NNP NNP VBD PRP VBZ VBN IN DT NNP NNS .\nHe noted terrorist acts must not be forgivable .\tPRP VBD JJ NNS MD RB VB JJ .\nSarin gas attacks on the Tokyo subway system in 1995 killed 12 people and injured thousands .\tNNP NN NNS IN DT NNP NN NN IN CD VBD CD NNS CC JJ NNS .\nA human rights group has called on Asian leaders to increase pressure on Burma to hasten democratic reforms and stop human rights abuses .\tDT JJ NNS NN VBZ VBN IN JJ NNS TO VB NN IN NNP TO VB JJ NNS CC VB JJ NNS NNS .\nThe Alternative ASEAN Network for Burma said officials from the Association of Southeast Asian Nations meeting this week should consider new options in dealing with Burma .\tDT NNP NNP NNP IN NNP VBD NNS IN DT NNP IN NNP NNP NNP NN DT NN MD VB JJ NNS IN VBG IN NNP .\nIt said leaders should consider supporting a possible resolution on Burma by the United Nations Security Council .\tPRP VBD NNS MD VB VBG DT JJ NN IN NNP IN DT NNP NNP NNP NNP .\nThe group also urged ASEAN leaders to acknowledge the many security problems caused by Burma 's military regime .\tDT NN RB VBD NNP NNS TO VB DT JJ NN NNS VBN IN NNP POS JJ NN .\nThe rights group accuses Burma 's government of involvement in illegal drug trafficking and human rights abuses , especially against some ethnic groups in Burma .\tDT NNS NN VBZ NNP POS NN IN NN IN JJ NN NN CC JJ NNS NNS , RB IN DT JJ NNS IN NNP .\nIraqi officials say gunmen have killed a member of the secular coalition led by former Iraqi prime minister Ayad Allawi .\tJJ NNS VBP NNS VBP VBN DT NN IN DT JJ NN VBN IN JJ JJ JJ NN NNP NNP .\nOfficials say Faras al-Jabouri was shot Saturday after gunmen raided his home near the northern city of Mosul .\tNNS VBP NNP NNP VBD VBN NNP IN NNS VBD PRP$ NN IN DT JJ NN IN NNP .\nJabouri did not win a seat in the March 7 parliamentary elections in which Mr. Allawi 's Iraqiya list received the most votes .\tNNP VBD RB VB DT NN IN DT NNP CD JJ NNS IN WDT NNP NNP POS NNP NN VBD DT JJS NNS .\nHis death comes two weeks after another member of Mr. Allawi 's bloc was killed .\tPRP$ NN VBZ CD NNS IN DT NN IN NNP NNP POS NN VBD VBN .\nGunmen shot Bashar Hamid al-Aqidi May 24 in an ambush outside his home in Mosul .\tNNS VBD NNP NNP NNP NNP CD IN DT NN IN PRP$ NN IN NNP .\nIraq 's Supreme Court ratified the election results last week .\tNNP POS NNP NNP VBD DT NN NNS JJ NN .\nNone of the political groups won the 163 seats needed to form a majority .\tNN IN DT JJ NNS VBD DT CD NNS VBN TO VB DT NN .\nMr. Allawi 's coalition had the most seats with 91 , just two more than the mainly Shi'ite group led by Prime Minister Nouri al-Maliki .\tNNP NNP POS NN VBD DT JJS NNS IN CD , RB CD JJR IN DT RB JJ NN VBN IN NNP NNP NNP NNP .\nEcuador 's state-run oil company , Petroecuador , has restored some operations that had been interrupted by six days of protests .\tNNP POS JJ NN NN , NNP , VBZ VBN DT NNS WDT VBD VBN VBN IN CD NNS IN NNS .\nCompany officials say production totaled around 33,000 barrels of crude oil per day on Saturday .\tNN NNS VBP NN VBD IN CD NNS IN JJ NN IN NN IN NNP .\nHowever , the rate was still far from the normal output of more than 2,00,000 barrels .\tRB , DT NN VBD RB RB IN DT JJ NN IN JJR IN CD NNS .\nArmy troops and police have been helping to restore order and oil production since the government declared a state of emergency in the Sucumbios and Orellana provinces .\tNNP NNS CC NNS VBP VBN VBG TO VB NN CC NN NN IN DT NN VBD DT NN IN NN IN DT NNS CC NNP NNS .\nProtesters there have been demanding new contract negotiations with foreign oil firms .\tNNS EX VBP VBN VBG JJ NN NNS IN JJ NN NNS .\nThey also have called for increased spending on infrastructure and social programs .\tPRP RB VBP VBN IN JJ NN IN NN CC JJ NNS .\nThe demonstrations forced Petroecuador to suspend production and the government to seek a temporary loan of oil from Venezuela to keep up exports .\tDT NNS VBD NNP TO VB NN CC DT NN TO VB DT JJ NN IN NN IN NNP TO VB RP NNS .\nMost of Ecuador 's oil exports go to the United States .\tJJS IN NNP POS NN NNS VBP TO DT NNP NNPS .\nIran is calling an international resolution on its nuclear program politically motivated and illegal , but does not rule out future negotiations with the West .\tNNP VBZ VBG DT JJ NN IN PRP$ JJ NN RB JJ CC JJ , CC VBZ RB VB RP JJ NNS IN DT NNP .\nSpeaking Sunday in Tehran , Foreign Minister Manouchehr Mottaki called the International Atomic Energy Agency resolution a scenario determined by the United States in advance .\tVBG NNP IN NNP , NNP NNP NNP NNP VBD DT NNP NNP NNP NNP NN DT NN VBN IN DT NNP NNPS IN NN .\nThe IAEA resolution passed Saturday in Vienna accuses Tehran of violating the Nuclear Non-Proliferation Treaty by failing to comply with international nuclear safeguard agreements .\tDT NNP NN VBD NNP IN NNP VBZ NNP IN VBG DT NNP NNP NNP IN VBG TO VB IN JJ JJ NN NNS .\nThe resolution leaves open the possibility of referring Tehran to the U.N. Security Council for possible sanctions if it fails to cooperate fully with IAEA inspectors .\tDT NN VBZ JJ DT NN IN VBG NNP TO DT NNP NNP NNP IN JJ NNS IN PRP VBZ TO VB RB IN NNP NNS .\nWashington accuses Tehran of using its ongoing nuclear program as a cover for efforts to develop an atomic weapon .\tNNP VBZ NNP IN VBG PRP$ JJ JJ NN IN DT NN IN NNS TO VB DT JJ NN .\nTehran says its program is aimed at developing electricity .\tNNP VBZ PRP$ NN VBZ VBN IN VBG NN .\nThe United States says six world powers have made progress on a new U.N. sanctions resolution aimed at curbing Iran 's nuclear program and could begin drafting the text next week .\tDT NNP NNP VBZ CD NN NNS VBP VBN NN IN DT JJ NNP NNS NN VBN IN VBG NNP POS JJ NN CC MD VB VBG DT NN JJ NN .\nRepresentatives of Germany and the five permanent U.N. Security Council members , the United States , Britain , France , Russia and China , discussed the resolution in a conference call Thursday .\tNNS IN NNP CC DT CD JJ NNP NNP NNP NNS , DT NNP NNPS , NNP , NNP , NNP CC NNP , VBD DT NN IN DT NN NN NNP .\nA U.S. State Department spokeswoman , Joanne Moore , said the representatives agreed to confer again by phone on Saturday .\tDT NNP NNP NNP NN , NNP NNP , VBD DT NNS VBD TO VB RB IN NN IN NNP .\nIran ignored a U.N. Security Council deadline last week to suspend uranium enrichment or face new U.N. sanctions , on top of those imposed in December .\tNNP VBD DT NNP NNP NNP NN JJ NN TO VB NN NN CC VB JJ NNP NNS , IN NN IN DT VBN IN NNP .\nThe United States and its Western allies suspect Iran is working to develop nuclear weapons , a charge Tehran denies .\tDT NNP NNPS CC PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS , DT NN NNP VBZ .\nPalestinian officials say ailing Palestinian leader Yasser Arafat has lost consciousness several times while in the intensive care unit of a French military hospital .\tJJ NNS VBP VBG JJ NN NNP NNP VBZ VBN NN JJ NNS IN IN DT JJ NN NN IN DT JJ JJ NN .\nThe officials say Mr. Arafat has drifted in and out of consciousness since Wednesday .\tDT NNS VBP NNP NNP VBZ VBN IN CC IN IN NN IN NNP .\nThere are conflicting reports about his present condition and it is not clear whether he is in a coma .\tEX VBP VBG NNS IN PRP$ JJ NN CC PRP VBZ RB JJ IN PRP VBZ IN DT NN .\nDoctors at the Paris hospital are expected to speak to reporters later Thursday about Mr. Arafat 's condition .\tNNS IN DT NNP NN VBP VBN TO VB TO NNS RB NNP IN NNP NNP POS NN .\nThe Palestinian officials provided no more details .\tDT NN NNS VBD DT JJR NNS .\nMr. Arafat has been receiving emergency medical treatment at the hospital since late last week .\tNNP NNP VBZ VBN VBG NN JJ NN IN DT NN IN JJ JJ NN .\nHe was airlifted to France after being ill for about two weeks .\tPRP VBD VBN TO NNP IN VBG JJ IN IN CD NNS .\nThe exact nature of his illness is still not clear , but officials say he was experiencing intense stomach pains , diarrhea and vomiting .\tDT JJ NN IN PRP$ NN VBZ RB RB JJ , CC NNS VBP PRP VBD VBG JJ NN NNS , NN CC NN .\nWorld oil prices have hit a record high in Asian trading .\tNN NN NNS VBP VBN DT NN NN IN JJ NN .\nCrude oil for future delivery went as high as $ 57.79 a barrel .\tJJ NN IN JJ NN VBD RB JJ IN $ CD DT NN .\nOil had closed at $ 57.25 a barrel Friday in New York after hitting a high of $ 57.7 .\tNN VBD VBN IN $ CD DT NN NNP IN NNP NNP IN VBG DT NN IN $ CD .\nThe president of the Organization of Petroleum Exporting Countries , Sheikh Ahmad Fahad al-Ahmad al-Sabah , says oil ministers this week will discuss the possibility of pumping more oil in an effort to bring prices down .\tDT NN IN DT NNP IN NNP NNP NNPS , NNP NNP NNP NNP NNP , VBZ NN NNS DT NN MD VB DT NN IN VBG JJR NN IN DT NN TO VB NNS RB .\nOPEC announced an increase in production quotas in mid-March , but that move failed to bring a significant drop on oil markets .\tNNP VBD DT NN IN NN NNS IN NN , CC DT NN VBD TO VB DT JJ NN IN NN NNS .\nA recent report by analysts at Goldman-Sachs predicted that oil might eventually cost as much as $ 105 a barrel .\tDT JJ NN IN NNS IN NNP VBD IN NN MD RB VB RB JJ IN $ CD DT NN .\nOther analysts think $ 60 is a more likely top price .\tJJ NNS VBP $ CD VBZ DT RBR JJ JJ NN .\nDozens of African health ministers have declared tuberculosis an emergency in the region , where it kills more than half a million people each year .\tNNS IN JJ NN NNS VBP VBN NN DT NN IN DT NN , WRB PRP VBZ JJR IN PDT DT CD NNS DT NN .\nOfficials announced the decision in Mozambique during a meeting of the World Health Organization 's Regional Committee for Africa , which ends Friday .\tNNS VBD DT NN IN NNP IN DT NN IN DT NNP NNP NNP POS NNP NNP IN NNP , WDT VBZ NNP .\nOfficials say urgent measures are needed as TB cases have quadrupled in 18 African nations since 1990 .\tNNS VBP JJ NNS VBP VBN IN NNP NNS VBP VBN IN CD JJ NNS IN CD .\nThe World Health Organization says most cases of the lung infection can be cured through a six-month drug plan .\tDT NNP NNP NNP VBZ JJS NNS IN DT NN NN MD VB VBN IN DT JJ NN NN .\nExperts say TB is a leading cause of death for people with HIV-AIDS , which affects the immune systems of millions of people across Africa .\tNNS VBP NNP VBZ DT VBG NN IN NN IN NNS IN NNP , WDT VBZ DT JJ NNS IN NNS IN NNS IN NNP .\nU.S. President Barack Obama has announced creation of a new foreign policy position focusing on global women 's issues .\tNNP NNP NNP NNP VBZ VBN NN IN DT JJ JJ NN NN VBG IN JJ NNS POS NNS .\nThe president Friday nominated Melanne Verveer to the post of ambassador-at-large for international women 's issues .\tDT NN NNP VBD NNP NNP TO DT NN IN NN IN JJ NNS POS NNS .\nShe will work at the State Department under Secretary of State Hillary Clinton .\tPRP MD VB IN DT NNP NNP IN NNP IN NNP NNP NNP .\nThe White House says the new position reflects the importance of global women 's issues to the Obama administration .\tDT NNP NNP VBZ DT JJ NN VBZ DT NN IN JJ NNS POS NNS TO DT NNP NN .\nVerveer previously worked as chief of staff for Clinton when she was first lady , and also worked as an aide in the White House for former President Bill Clinton .\tNNP RB VBD IN NN IN NN IN NNP WRB PRP VBD JJ NN , CC RB VBD IN DT NN IN DT NNP NNP IN JJ NNP NNP NNP .\nVerveer is also the co-founder and chair of Vital Voices Global Partnership .\tNNP VBZ RB DT NN CC NN IN NNP NNP NNP NNP .\nThe White House describes the group as an international non-profit that invests in emerging women leaders .\tDT NNP NNP VBZ DT NN IN DT JJ JJ WDT VBZ IN VBG NNS NNS .\nRussia has expressed concern about the violence in eastern Uzbekistan , one day after soldiers fired on protesters , killing dozens of people in the city of Andijon .\tNNP VBZ VBN NN IN DT NN IN JJ NNP , CD NN IN NNS VBD IN NNS , VBG NNS IN NNS IN DT NN IN NNP .\nIn a telephone conversation Saturday , Uzbek President Islam Karimov briefed Russian President Vladimir Putin about the situation .\tIN DT NN NN NNP , JJ NNP NNP NNP VBD JJ NNP NNP NNP IN DT NN .\nBoth voiced concern about possible threats to stability in Central Asia , and the two leaders agreed to remain in close contact .\tDT VBD NN IN JJ NNS TO NN IN NNP NNP , CC DT CD NNS VBD TO VB IN JJ NN .\nYesterday , Russian authorities blamed Uzbek protesters for the violence .\tNN , JJ NNS VBD JJ NNS IN DT NN .\nBut the European Union blamed Tashkent , saying the clashes in Andijon were a result of the government 's lack of respect for human rights and failure to ease poverty .\tCC DT NNP NNP VBD NNP , VBG DT NNS IN NNP VBD DT NN IN DT NN POS NN IN NN IN JJ NNS CC NN TO VB NN .\nIn Washington , U.S. officials urged both the Uzbek government and demonstrators to show restraint and seek a peaceful resolution .\tIN NNP , NNP NNS VBD DT DT JJ NN CC NNS TO VB NN CC VB DT JJ NN .\nJapan reportedly is planning to build 12 new facilities in China to dismantle chemical weapons left behind by the Imperial Army at the end of World War II .\tNNP RB VBZ VBG TO VB CD JJ NNS IN NNP TO VB NN NNS VBN RP IN DT NNP NNP IN DT NN IN NNP NNP NNP .\nJapan 's Yomiuri newspaper said Sunday that the two countries agreed last month to build the facilities near 12 locations including Beijing , Harbin and Nanjing , where abandoned Japanese chemical weapons are stored .\tNNP POS NNP NN VBD NNP IN DT CD NNS VBD JJ NN TO VB DT NNS IN CD NNS VBG NNP , NNP CC NNP , WRB JJ JJ NN NNS VBP VBN .\nThe paper said Japan initially planned to dismantle all the weapons at a major plant in Haerbaling , near the border with North Korea .\tDT NN VBD NNP RB VBD TO VB PDT DT NNS IN DT JJ NN IN NNP , IN DT NN IN NNP NNP .\nBut when China raised concerns about the dangers of transporting the weapons over long distances , Tokyo decided to build the smaller facilities spread throughout the country .\tCC WRB NNP VBD NNS IN DT NNS IN VBG DT NNS IN JJ NNS , NNP VBD TO VB DT JJR NNS VBD IN DT NN .\nThe report did not include details about the cost or timetable of the construction .\tDT NN VBD RB VB NNS IN DT NN CC NN IN DT NN .\nAfghan and U.S.-led coalition troops say they have killed several suspected Taliban militants during an operation in southern Helmand province .\tJJ CC JJ NN NNS VBP PRP VBP VBN JJ JJ NNP NNS IN DT NN IN JJ NNP NN .\nCoalition officials said in a statement released Tuesday that the latest clash occurred as troops searched a compound for militants associated with the Taliban , as well as others helping foreign fighters .\tNN NNS VBD IN DT NN VBN NNP IN DT JJS NN VBD IN NNS VBD DT NN IN NNS VBN IN DT NNP , RB RB IN NNS VBG JJ NNS .\nDuring the search a gun battle erupted in which several suspected militants died .\tIN DT NN DT NN NN VBD IN WDT JJ JJ NNS VBD .\nA coalition statement said no civilians were killed or injured in the fighting .\tDT NN NN VBD DT NNS VBD VBN CC VBN IN DT NN .\nThe statement adds that a cache of weapons including rifles , rockets and explosives was found and destroyed following following the battle .\tDT NN VBZ IN DT NN IN NNS VBG NNS , NNS CC NNS VBD VBN CC VBN VBG VBG DT NN .\nHelmand province has been badly affected by the Taliban insurgency .\tNNP NN VBZ VBN RB VBN IN DT NNP NN .\nThe area is one of the world 's top opium growing regions .\tDT NN VBZ CD IN DT NN POS JJ NN VBG NNS .\nJournalists in Kenya and abroad are urging Kenyan President Mwai Kibaki to reject legislation that could require reporters to divulge their news sources .\tNNS IN NNP CC RB VBP VBG JJ NNP NNP NNP TO VB NN WDT MD VB NNS TO VB PRP$ NN NNS .\nThe Kenyan Editors Guild said Thursday that a proposed ' Media Bill ' passed by parliament last month was crafted in part to settle old scores .\tDT JJ NNP NNP VBD NNP IN DT VBN `` NN NN `` VBN IN NN JJ NN VBD VBN IN NN TO VB JJ NNS .\nThey petitioned Mr. Kibaki to reject the measure .\tPRP VBD NNP NNP TO VB DT NN .\nThe media advocacy group Reporters Without Borders is also urging Mr. Kibaki to reject the bill .\tDT NNS NN NN VBZ IN NNS VBZ RB VBG NNP NNP TO VB DT NN .\nThe Paris-based group said in a letter that the measure would have ' disastrous consequences ' for Kenyan democracy , and would undermine a fundamental principle of journalism .\tDT JJ NN VBD IN DT NN IN DT NN MD VB `` JJ NNS `` IN JJ NN , CC MD VB DT JJ NN IN NN .\nThe bill was amended at the last minute to give the government power to demand the names of unnamed news sources in reports that lead to legal disputes .\tDT NN VBD VBN IN DT JJ NN TO VB DT NN NN TO VB DT NNS IN JJ NN NNS IN NNS WDT VBP TO JJ NNS .\nThe Ethiopian government has charged 55 opposition members with trying to launch an armed rebellion .\tDT JJ NN VBZ VBN CD NN NNS IN VBG TO VB DT JJ NN .\nThe state-run Ethiopian News Agency reports the defendants were charged this week with ' instigating armed violence ' against the government following the 1997 national elections .\tDT JJ NNP NNP NNP VBZ DT NNS VBD VBN DT NN IN `` VBG JJ NN `` IN DT NN VBG DT CD JJ NNS .\nAll of the defendants are said to be associated with the opposition Coalition for Unity and Democracy .\tDT IN DT NNS VBP VBN TO VB VBN IN DT NN NN IN NN CC NN .\nThe report says the proceedings have been adjourned until Thursday .\tDT NN VBZ DT NNS VBP VBN VBN IN NNP .\nMore than 80 other opposition figures are already on trial in Ethiopia , accused of treason and attempting to commit genocide .\tJJR IN CD JJ NN NNS VBP RB IN NN IN NNP , VBN IN NN CC VBG TO VB NN .\nThose suspects were charged in the wake of unrest that followed the disputed 2005 elections .\tDT NNS VBD VBN IN DT NN IN NN WDT VBD DT JJ CD NNS .\nThe trial has drawn harsh criticism from donors and human rights groups who say the government is trying to stifle dissent .\tDT NN VBZ VBN JJ NN IN NNS CC JJ NNS NNS WP VBP DT NN VBZ VBG TO VB NN .\nOPEC 's most influential member says the oil cartel should raise production quotas at Wednesday 's meeting in Iran .\tNNP POS JJS JJ NN VBZ DT NN NN MD VB NN NNS IN NNP POS NN IN NNP .\nSaudi Arabia 's Oil Minister Ali al-Naimi says the Organization of Petroleum Exporting Countries should boost output by 5,00,000 barrels a day from the current self-imposed limit of 27 million barrels .\tNNP NNP POS NNP NNP NNP NNP VBZ DT NNP IN NNP NNP NNPS MD VB NN IN CD NNS DT NN IN DT JJ JJ NN IN CD CD NNS .\nSupply concerns were one factor behind last week 's surge that pushed oil prices to within pennies of the all-time record in New York trading .\tNN NNS VBD CD NN IN JJ NN POS NN WDT VBD NN NNS TO IN NNS IN DT JJ NN IN NNP NNP NN .\nThe price of crude oil for April delivery declined after the Saudi announcement .\tDT NN IN JJ NN IN NNP NN VBD IN DT JJ NN .\nBut oil prices later rose 52 cents to close at $ 54.95 a barrel in New York on Monday .\tCC NN NNS RB VBD CD NNS TO VB IN $ CD DT NN IN NNP NNP IN NNP .\nOPEC produces about 40 percent of the world 's oil and energy ministers from its 11 members are gathering to discuss oil supplies and prices .\tNNP VBZ IN CD NN IN DT NN POS NN CC NN NNS IN PRP$ CD NNS VBP VBG TO VB NN NNS CC NNS .\nChina has urged Burma to take effective measures to safeguard the rights of Chinese citizens in Burma .\tNNP VBZ VBN NNP TO VB JJ NNS TO VB DT NNS IN JJ NNS IN NNP .\nThe Chinese foreign ministry said on its Web site Saturday that consular affairs department chief Wei Wei conveyed Beijing 's concerns at a meeting with an official from Burma 's embassy .\tDT JJ JJ NN VBD IN PRP$ NNP NN NNP IN JJ NNS NN NN NNP NNP VBD NNP POS NNS IN DT NN IN DT NN IN NNP POS NN .\nThe release said Wei met on September 21 with Kyi Kyi Sein , minister counselor of the Burma Embassy .\tDT NN VBD NNP VBD IN NNP CD IN NNP NNP NNP , NN NN IN DT NNP NNP .\nWei urged Burma to investigate reports that military conflicts in northern Burma in August had harmed the rights and interests of Chinese citizens living there .\tNNP VBD NNP TO VB NNS IN JJ NNS IN JJ NNP IN NNP VBD VBN DT NNS CC NNS IN JJ NNS VBG RB .\nTens of thousands of refugees fled across the border into China to escape fighting between the Burmese army and ethnic rebels in Kokang , a mainly ethnic Chinese region of Burma 's Shan state .\tNNS IN NNS IN NNS VBD IN DT NN IN NNP TO VB VBG IN DT JJ NN CC JJ NNS IN NNP , DT RB JJ JJ NN IN NNP POS NNP NN .\nZimbabwe 's ruling ZANU-PF party has rejected the campaign of Information Minister Jonathan Moyo in this year 's parliamentary elections .\tNNP POS NN NNP NN VBZ VBN DT NN IN NNP NNP NNP NNP IN DT NN POS JJ NNS .\nThe state-run Herald newspaper reports Monday that Mr. Moyo 's name is not included in a new list of candidates in upcoming primary votes .\tDT JJ NNP NN NNS NNP IN NNP NNP POS NN VBZ RB VBN IN DT JJ NN IN NNS IN VBG JJ NNS .\nIt says Mr. Moyo was planning to compete in the Tsholotsho district that has been reserved for female candidates .\tPRP VBZ NNP NNP VBD VBG TO VB IN DT NNP NN WDT VBZ VBN VBN IN JJ NNS .\nPresident Robert Mugabe has said he will only choose elected lawmakers for his cabinet after the elections .\tNNP NNP NNP VBZ VBN PRP MD RB VB VBN NNS IN PRP$ NN IN DT NNS .\nThe Herald reports the primary list also does not include Justice Minister Patrick Chinamasa , former Harare mayor Tony Gara , and war veterans leader Joseph Chinotimba .\tDT NNP VBZ DT JJ NN RB VBZ RB VB NNP NNP NNP NNP , JJ NNP NNP NNP NNP , CC NN NNS NN NNP NNP .\nAlso missing is current lawmaker Philip Chiyangwa , who was jailed last month on charges of spying .\tRB VBG VBZ JJ NN NNP NNP , WP VBD VBN JJ NN IN NNS IN VBG .\nChinese President Hu Jintao has arrived in Spain Sunday for a two day-visit aimed at strengthening bilateral ties .\tJJ NNP NNP NNP VBZ VBN IN NNP NNP IN DT CD NN VBN IN VBG JJ NNS .\nHis schedule includes talks with King Juan Carlos and Spanish Prime Minister Jose Luis Rodriguez Zapatero .\tPRP$ NN VBZ NNS IN NNP NNP NNP CC JJ NNP NNP NNP NNP NNP NNP .\nIn part , Spain hopes to increase exports to reduce its trade inbalance with China .\tIN NN , NNP VBZ TO VB NNS TO VB PRP$ NN NN IN NNP .\nMr. Hu arrived in Madrid from Germany where he conferred with outgoing Chancellor Gerhard Schroeder , Chancellor-designate Angela Merkel , and other senior officials .\tNNP NNP VBD IN NNP IN NNP WRB PRP VBD IN VBG NNP NNP NNP , NNP NNP NNP , CC JJ JJ NNS .\nThe two sides are said to have signed a number of business agreements , and pledged to continue close ties between Berlin and Beijing .\tDT CD NNS VBP VBN TO VB VBN DT NN IN NN NNS , CC VBD TO VB JJ NNS IN NNP CC NNP .\nSpain is the last leg of Mr. Hu 's European tour that began last Tuesday in Britain .\tNNP VBZ DT JJ NN IN NNP NNP POS JJ NN WDT VBD JJ NNP IN NNP .\nDemonstrators protesting Chinese policies on human rights and Tibet have followed Mr. Hu throughout his trip .\tNNS VBG JJ NNS IN JJ NNS CC NNP VBP VBN NNP NNP IN PRP$ NN .\nMexican President Felipe Calderon has condemned an attack on a Chihuahua drug rehabilitation facility that left 19 people dead .\tJJ NNP NNP NNP VBZ VBN DT NN IN DT NNP NN NN NN WDT VBD CD NNS JJ .\nMr. Calderon issued a statement from Johannesburg where he attended the opening of the World Cup .\tNNP NNP VBD DT NN IN NNP WRB PRP VBD DT NN IN DT NNP NNP .\nHe said the attack by more than 24 armed men reinforces the conviction to fight criminal gangs that carry out such ' barbaric acts . '\tPRP VBD DT NN IN JJR IN CD JJ NNS VBZ DT NN TO VB JJ NNS WDT VBP RP JJ `` JJ NNS . ``\nOn Thursday , a gang of gunmen killed 20 people in another northern Mexican town known for drug-related gang warfare .\tIN NNP , DT NN IN NNS VBN CD NNS IN DT JJ JJ NN VBN IN JJ NN NN .\nAuthorities say some of the 18 men and two women killed in the series of shootings in Madero were bound in handcuffs .\tNNS VBP DT IN DT CD NNS CC CD NNS VBN IN DT NN IN NNS IN NNP VBD VBN IN NNS .\nAn estimated 23,000 people have been killed in drug-related violence in Mexico since President Calderon began a crackdown on the drug cartels after taking office in December 2006 .\tDT VBN CD NNS VBP VBN VBN IN JJ NN IN NNP IN NNP NNP VBD DT NN IN DT NN NNS IN VBG NN IN NNP CD .\nRepresentatives of the European Union and China have begun a fourth day of talks in Beijing to resolve a trade dispute over Chinese textiles .\tNNS IN DT NNP NNP CC NNP VBP VBN DT JJ NN IN NNS IN NNP TO VB DT NN NN IN JJ NNS .\nThere is no word on any progress in the talks , which began Thursday .\tEX VBZ DT NN IN DT NN IN DT NNS , WDT VBD NNP .\nA spokesman for the EU office in Beijing has said negotiators are trying to reach a new agreement on textile quotas .\tDT NN IN DT NNP NN IN NNP VBZ VBN NNS VBP VBG TO VB DT JJ NN IN JJ NNS .\nChina agreed in June to quotas in its textile exports to the EU .\tNNP VBD IN NNP TO NNS IN PRP$ NN NNS TO DT NNP .\nBut millions of items of clothing manufactured in China have been blocked in European ports because China has already shipped its annual quota .\tCC NNS IN NNS IN NN VBN IN NNP VBP VBN VBN IN JJ NNS IN NNP VBZ RB VBN PRP$ JJ NN .\nThe quotas are designed to protect European textile manufacturers from low-priced Chinese competition .\tDT NNS VBP VBN TO VB JJ NN NNS IN JJ JJ NN .\nChinese textile exports surged early this year when a global system of textile quotas ended .\tJJ NN NNS VBD RB DT NN WRB DT JJ NN IN JJ NNS VBD .\nForecasters say Hurricane Otis is gaining strength as it moves closer to Mexico 's northwestern coast .\tNNS VBP NNP NNP VBZ VBG NN IN PRP VBZ RBR TO NNP POS JJ NN .\nThe U.S. National Hurricane Center says the Category One storm has winds of 150 kilometers per hour and is moving toward the Baja California Peninsula .\tDT NNP NNP NNP NNP VBZ DT NNP NNP NN VBZ NNS IN CD NNS IN NN CC VBZ VBG IN DT NNP NNP NNP .\nThe storm is currently projected to hit the central portion of the Baja Peninsula as early as Sunday .\tDT NN VBZ RB VBN TO VB DT JJ NN IN DT NNP NNP RB RB IN NNP .\nForecasters warn that a shift in position could result in an earlier landfall on the southern end of the peninsula .\tNNS VBP IN DT NN IN NN MD VB IN DT JJR NN IN DT JJ NN IN DT NN .\nInsurgents have knocked out electrical power to much of Baghdad on the eve of Iraq 's nationwide constitutional referendum .\tNNS VBP VBN RP JJ NN TO NN IN NNP IN DT NN IN NNP POS JJ JJ NN .\nAfter dark Friday , saboteurs hit powerlines north of Baghdad .\tIN JJ NNP , NNS VBD NNS NN IN NNP .\nElectrical Ministry officials say they do not know how long it will take to restore power to the capital .\tNNP NNP NNS VBP PRP VBP RB VB WRB JJ PRP MD VB TO VB NN TO DT NN .\nThe streets of Baghdad were mostly quiet Friday due to security measures put in place to prevent violence from interfering with election preparations .\tDT NNS IN NNP VBD RB JJ NNP JJ TO NN NNS VBN IN NN TO VB NN IN VBG IN NN NNS .\nAt Friday prayers , clerics discussed the proposed constitution .\tIN NNP NNS , NNS VBD DT VBN NN .\nSome told worshippers to vote for its adoption , while others urged its rejection .\tDT VBD NNS TO VB IN PRP$ NN , IN NNS VBD PRP$ NN .\nAuthorities reported gunshots fired at two polling stations .\tNNS VBD NNS VBD IN CD VBG NNS .\nInsurgents also bombed and set fire to offices belonging to the largest Sunni Arab political party , the Iraqi Islamic Party , in apparent retaliation for its decision to support the constitution .\tNNS RB VBD CC VBD NN TO NNS VBG TO DT JJS JJ JJ JJ NN , DT JJ NNP NNP , IN JJ NN IN PRP$ NN TO VB DT NN .\nThe United Nations Development Program has named Spanish actor Antonio Banderas as a Goodwill Ambassador in the fight against poverty .\tDT NNP NNP NNP NNP VBZ VBN JJ NN NNP NNP IN DT NNP NN IN DT NN IN NN .\nThe U.N. said Wednesday Banderas will work to enact the U.N. Millennium Development Goals that were established to fight hunger , disease , illiteracy , environmental degradation and discrimination against women .\tDT NNP VBD NNP NNP MD VB TO VB DT NNP NNP NNP NNS WDT VBD VBN TO VB NN , NN , NN , JJ NN CC NN IN NNS .\nBanderas issued a statement saying he will work with the U.N. Development Program to take action on the goals , with a particular focus on Latin America and Africa .\tNNP VBD DT NN VBG PRP MD VB IN DT NNP NNP NNP TO VB NN IN DT NNS , IN DT JJ NN IN NNP NNP CC NNP .\nThe actor will also work to raise awareness of the $ 710 million Millennium Development Goal Achievement Fund , which supports national and local governments as well as citizen organizations in their efforts to tackle poverty and inequality .\tDT NN MD RB VB TO VB NN IN DT $ CD CD NNP NNP NNP NNP NNP , WDT VBZ JJ CC JJ NNS RB RB IN NN NNS IN PRP$ NNS TO VB NN CC NN .\nAntonio Banderas was born in Spain and is an accomplished actor , writer , singer and producer .\tNNP NNP VBD VBN IN NNP CC VBZ DT JJ NN , NN , NN CC NN .\nPhilippine President Gloria Arroyo has approved legislation abolishing the death penalty ahead of a planned trip to the Vatican .\tJJ NNP NNP NNP VBZ VBN NN VBG DT NN NN RB IN DT JJ NN TO DT NNP .\nThe law Ms. Arroyo signed Saturday automatically commutes the sentences of about 1,200 death row convicts in the Philippines to life imprisonment .\tDT NN NNP NNP VBD NNP RB VBZ DT NNS IN IN CD NN NN NNS IN DT NNPS TO NN NN .\nCongress restored the death penalty in the mid-1990s for serious crimes such as murder .\tNNP VBD DT NN NN IN DT NNS IN JJ NNS JJ IN NN .\nSeven people have been executed since then .\tCD NNS VBP VBN VBN IN RB .\nMs. Arroyo is to leave for the Vatican and Spain Sunday .\tNNP NNP VBZ TO VB IN DT NNP CC NNP NNP .\nShe had been scheduled to leave Saturday , but the trip was rescheduled so she could receive two days of hospital treatment for a stomach virus .\tPRP VBD VBN VBN TO VB NNP , CC DT NN VBD VBN IN PRP MD VB CD NNS IN NN NN IN DT NN NN .\nIran 's President Mahmoud Ahmadinejad says he suspects Britain may have played a role in twin bomb attacks that killed five people and injured 100 others in southwestern Iran .\tNNP POS NNP NNP NNP VBZ PRP VBZ NNP MD VB VBN DT NN IN JJ NN NNS WDT VBD CD NNS CC VBN CD NNS IN JJ NNP .\nIran 's Student News Agency quoted Mr. Ahmadinejad as saying Iranian officials have found what he called British ' footprints ' in past attacks .\tNNP POS NNP NNP NNP VBD NNP NNP IN VBG JJ NNS VBP VBN WP PRP VBD JJ `` NNS `` IN JJ NNS .\nHe added the presence of British troops in southern Iraq and near Iran 's border is a factor behind insecurity in both countries .\tPRP VBD DT NN IN JJ NNS IN JJ NNP CC IN NNP POS NN VBZ DT NN IN NN IN DT NNS .\nBritain 's embassy in Tehran has rejected the allegations and condemned Saturday 's attack near a shopping center in Khuzestan province .\tNNP POS NN IN NNP VBZ VBN DT NNS CC VBD NNP POS NN IN DT NN NN IN NNP NN .\nIn a statement , it said any link between the British government and terrorist attacks in the area is without foundation .\tIN DT NN , PRP VBD DT NN IN DT JJ NN CC JJ NNS IN DT NN VBZ IN NN .\nEarlier this month , British officials accused Iran and Lebanese militants of supplying explosives technology to insurgents in Iraq .\tRBR DT NN , JJ NNS VBD NNP CC JJ NNS IN VBG NNS NN TO NNS IN NNP .\nFarmer in Ivory Coast 's Duekoue cocoa plantation Unidentified attackers have killed at least 41 villagers in Ivory Coast 's western cocoa region .\tNNP IN NNP NNP POS JJ NN NN VBN NNS VBP VBN IN JJS CD NNS IN NNP NNP POS JJ NN NN .\nArmy spokesman Jules Yao Yao says 64 others were wounded in the attack early Wednesday outside the town of Duekoue .\tNNP NN NNP NNP NNP VBZ CD NNS VBD VBN IN DT NN JJ NNP IN DT NN IN NNP .\nHe says the victims were shot , stabbed or burned to death .\tPRP VBZ DT NNS VBD VBN , VBN CC VBN TO NN .\nWitnesses say they were all members of the ethnic Guere tribe .\tNNS VBP PRP VBD DT NNS IN DT JJ NNP NN .\nIt is not clear what sparked the attack .\tPRP VBZ RB JJ WP VBD DT NN .\nHowever , clashes between indigenous tribes and migrant farm workers are common in the region .\tRB , NNS IN JJ NNS CC JJ NN NNS VBP JJ IN DT NN .\nTensions between the groups have been exacerbated by Ivory Coast 's civil war , which began in 2002 .\tNNS IN DT NNS VBP VBN VBN IN NNP NNP POS JJ NN , WDT VBD IN CD .\nThe United Nations peacekeeping mission in Ivory Coast says it has sent patrols to the region to investigate .\tDT NNP NNPS VBG NN IN NNP NNP VBZ PRP VBZ VBN NNS TO DT NN TO VB .\nLebanese security officials say a car bomb explosion has killed a senior member of the militant Palestinian group Islamic Jihad in Sidon , Friday .\tJJ NN NNS VBP DT NN NN NN VBZ VBN DT JJ NN IN DT JJ JJ NN NNP NNP IN NNP , NNP .\nThe officials say the militant 's brother also died in the blast near the central square of the southern coastal city .\tDT NNS VBP DT NN POS NN RB VBD IN DT NN IN DT JJ NN IN DT JJ JJ NN .\nThere has been no claim of responsibility for the bombing .\tEX VBZ VBN DT NN IN NN IN DT NN .\nIslamic Jihad blamed Israel for the attack on the militant leader Mahmoud Majzoub , but Israeli officials denied any knowledge of the bombing .\tNNP NNP VBD NNP IN DT NN IN DT JJ NN NNP NNP , CC JJ NNS VBD DT NN IN DT NN .\nAmnesty International says Zimbabwe 's upcoming parliamentary elections will not be free and fair -- because the government of Zimbabwe continues to use threats and intimidation against opposition supporters .\tNNP NNP VBZ NNP POS JJ JJ NNS MD RB VB JJ CC JJ : IN DT NN IN NNP VBZ TO VB NNS CC NN IN NN NNS .\nSamkelo Mokhine is the chairman for Amnesty International in Johannesburg , South Africa .\tNNP NNP VBZ DT NN IN NNP NNP IN NNP , NNP NNP .\nHe told English to Africa reporter William Eagle that his group is offering several suggestions to improve the conduct of the elections .\tPRP VBD NNP TO NNP NN NNP NNP IN PRP$ NN VBZ VBG JJ NNS TO VB DT NN IN DT NNS .\nOne is to train monitors how to look for human rights violations , such as withholding access to food .\tCD VBZ TO VB NNS WRB TO VB IN JJ NNS NNS , JJ IN VBG NN TO NN .\nAnother is to watch for attacks on all parties before , during and after the polls .\tDT VBZ TO VB IN NNS IN DT NNS IN , IN CC IN DT NNS .\nAmnesty says any violations should then be publicly denounced and reported to authorities .\tNNP VBZ DT NNS MD RB VB RB VBN CC VBN TO NNS .\nThe group says monitors should also have access to all sectors of the population - since many violations occur far away from polling stations .\tDT NN VBZ NNS MD RB VB NN TO DT NNS IN DT NN ; IN JJ NNS VBP RB RB IN VBG NNS .\nPakistani authorities say police in the southern port city of Karachi have arrested two al-Qaida militants for their involvement in a suicide attack earlier this year that killed a U.S. diplomat .\tJJ NNS VBP NNS IN DT JJ JJ NN IN NNP VBP VBN CD NNP NNS IN PRP$ NN IN DT NN NN RBR DT NN WDT VBD DT NNP NN .\nThe police chief for the Sindh province Jehangir Mirza says the suspects were captured during an early morning Monday raid .\tDT NN NN IN DT NNP NN NNP NNP VBZ DT NNS VBD VBN IN DT JJ NN NNP NN .\nThe blast near the U.S. consulate in Karachi on March 2 killed the U.S. diplomat David Foy , three Pakistanis and the attacker who rammed his explosive-laden car into a car carrying the diplomat .\tDT NN IN DT NNP NN IN NNP IN NNP CD VBD DT NNP NN NNP NNP , CD NNS CC DT NN WP VBD PRP$ JJ NN IN DT NN VBG DT NN .\nMore than 50 people were wounded in the attack , including a Moroccan child .\tJJR IN CD NNS VBD VBN IN DT NN , VBG DT JJ NN .\nLast week , Pakistani intelligence officials arrested six people in connection with the attack and identified the suicide bomber .\tJJ NN , JJ NN NNS VBN CD NNS IN NN IN DT NN CC VBD DT NN NN .\nAuthorities said the six were associated with the suicide attacker , and that they were linked to al-Qaida , as well as banned domestic militant groups .\tNNS VBD DT CD VBD VBN IN DT NN NN , CC IN PRP VBD VBN TO NNP , RB RB IN VBN JJ JJ NNS .\nPresident Bush says the United States will drop subsidies to American farmers - if the European Union does the same in Europe .\tNNP NNP VBZ DT NNP NNPS MD VB NNS TO JJ NNS IN IN DT NNP NNP VBZ DT NN IN NNP .\nHe told British television Sunday , ending those subsidies would allow African countries to compete better , reducing their need for international aid .\tPRP VBD JJ NN NNP , VBG DT NNS MD VB JJ NNS TO VB RB , VBG PRP$ NN IN JJ NN .\nPresident Bush will attend he Group of Eight Summit this week , which will discuss aid to Africa .\tNNP NNP MD VB PRP NNP IN CD NNP DT NN , WDT MD VB NN TO NNP .\nBut farm subsidies are very popular in France and Germany , and the U.S. challenge is not thought likely to be accepted .\tCC NN NNS VBP RB JJ IN NNP CC NNP , CC DT NNP NN VBZ RB VBN JJ TO VB VBN .\nPresident Bush also said he will reject any Kyoto-style deal on climate change at the G8 summit in Scotland .\tNNP NNP RB VBD PRP MD VB DT JJ NN IN NN NN IN DT NNP NN IN NNP .\nHe said the 1997 U.N. Kyoto protocol , which Washington never ratified , would have ruined the American economy with its mandated reductions on carbon emissions .\tPRP VBD DT CD NNP NNP NN , WDT NNP RB VBD , MD VB VBN DT JJ NN IN PRP$ VBN NNS IN NN NNS .\nMr. Bush favors a focus on clean technologies to counter climate change .\tNNP NNP VBZ DT NN IN JJ NNS TO VB NN NN .\nAn Iranian news report quotes a top nuclear official as saying Tehran will ' seriously and enthusiastically ' study a Russian proposal to enrich uranium from Iran on Russian soil .\tDT JJ NN NN VBZ DT JJ JJ NN IN VBG NNP MD `` RB CC RB `` VB DT JJ NN TO VB NN IN NNP IN JJ NN .\nThe comments by Javad Vaeedi , the deputy head of Iran 's National Security Council , were reported Wednesday by the Iranian Student News Agency .\tDT NNS IN NNP NNP , DT NN NN IN NNP POS NNP NNP NNP , VBD VBN NNP IN DT JJ NNP NNP NNP .\nThe United States and the European Union have voiced grave concerns that without oversight , Tehran will process uranium to the highly enriched level needed to make an atomic bomb .\tDT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS WDT IN NN , NNP MD VB NN TO DT RB VBN NN VBN TO VB DT JJ NN .\nTehran says it is seeking a lower grade of enriched uranium to fuel a nuclear power plant .\tNNP VBZ PRP VBZ VBG DT JJR NN IN VBN NN TO VB DT JJ NN NN .\nWednesday 's comments by the Iranian official are the most positive public statements from Tehran since Moscow offered earlier this year to supply enriched uranium for Iran 's Bushehr reactor .\tNNP POS NNS IN DT JJ NN VBP DT RBS JJ JJ NNS IN NNP IN NNP VBD RBR DT NN TO VB VBN NN IN NNP POS NNP NN .\nThe comments are also the first public acknowledgment that Tehran has received the Russian offer .\tDT NNS VBP RB DT JJ JJ NN IN NNP VBZ VBN DT JJ NN .\nFour suspected al-Qaida members in Saudi Arabian custody have said on Saudi media they planned to attack oil facilities in the kingdom and other Gulf states .\tCD JJ NNP NNS IN NNP NNP NN VBP VBN IN JJ NNS PRP VBD TO VB NN NNS IN DT NN CC JJ NNP NNS .\nSaudi police detained the four last year in connection with a failed February 2006 attack on the Abqaiq oil complex .\tJJ NNS VBD DT CD JJ NN IN NN IN DT VBN NNP CD NN IN DT NNP NN NN .\nSecurity guards foiled the attack .\tNNP NNS VBD DT NN .\nThe four suspects appeared on Saudi television this week .\tDT CD NNS VBD IN JJ NN DT NN .\nThey are accused of providing logistical support to the bombers .\tPRP VBP VBN IN VBG JJ NN TO DT NNS .\nOne of the four , identified as Abdullah al-Muqrin , said the plan to attack oil facilities in Saudi Arabia was to coincide with other al-Qaida attacks on oil facilities in Kuwait and the United Arab Emirates .\tCD IN DT CD , VBN IN NNP NNP , VBD DT NN TO VB NN NNS IN NNP NNP VBD TO VB IN JJ NNP NNS IN NN NNS IN NNP CC DT NNP NNP NNPS .\nAl-Muqrin also said he was told al-Qaida leader Osama bin Laden would authorize the attacks .\tNNP RB VBD PRP VBD VBN NNP NN NNP NNP NNP MD VB DT NNS .\nWith the U.S. economy in recession , some Americans are finding ways to be thrifty this holiday season : spending time and money on handmade gifts .\tIN DT NNP NN IN NN , DT NNS VBP VBG NNS TO VB JJ DT NN NN IN NN NN CC NN IN JJ NNS .\nMaking , rather than buying , holiday gifts is growing in popularity .\tVBG , RB IN VBG , NN NNS VBZ VBG IN NN .\nIn 1974 , ethnic differences within the British colony of the Gilbert and Ellice Islands caused the Polynesians of the Ellice Islands to vote for separation from the Micronesians of the Gilbert Islands .\tIN CD , JJ NNS IN DT JJ NN IN DT NNP CC NNP NNP VBD DT NNS IN DT NNP NNP TO VB IN NN IN DT NNPS IN DT NNP NNP .\nThe following year , the Ellice Islands became the separate British colony of Tuvalu .\tDT JJ NN , DT NNP NNP VBD DT JJ JJ NN IN NNP .\nIndependence was granted in 1978 .\tNN VBD VBN IN CD .\nIn 2000 , Tuvalu negotiated a contract leasing its Internet domain name ' . tv ' for $ 50 million in royalties over a 12-year period .\tIN CD , NNP VBD DT NN VBG PRP$ NNP NN NN `` . VB `` IN $ CD CD IN NNS IN DT JJ NN .\nTonga has a small , open , South Pacific island economy .\tNNP VBZ DT JJ , JJ , NNP NNP NN NN .\nIt has a narrow export base in agricultural goods .\tPRP VBZ DT JJ NN NN IN JJ NNS .\nSquash , vanilla beans , and yams are the main crops .\tNNP , NN NNS , CC NNS VBP DT JJ NNS .\nAgricultural exports , including fish , make up two-thirds of total exports .\tNNP NNS , VBG NN , VB RP NNS IN JJ NNS .\nThe country must import a high proportion of its food , mainly from New Zealand .\tDT NN MD VB DT JJ NN IN PRP$ NN , RB IN NNP NNP .\nThe country remains dependent on external aid and remittances from Tongan communities overseas to offset its trade deficit .\tDT NN VBZ JJ IN JJ NN CC NNS IN NNP NNS RB TO VB PRP$ NN NN .\nTourism is the second-largest source of hard currency earnings following remittances .\tNNP VBZ DT JJ NN IN JJ NN NNS VBG NNS .\nTonga had 39,000 visitors in 2006 .\tNNP VBD CD NNS IN CD .\nThe government is emphasizing the development of the private sector , especially the encouragement of investment , and is committing increased funds for health and education .\tDT NN VBZ VBG DT NN IN DT JJ NN , RB DT NN IN NN , CC VBZ VBG VBN NNS IN NN CC NN .\nTonga has a reasonably sound basic infrastructure and well developed social services .\tNNP VBZ DT RB JJ JJ NN CC RB VBN JJ NNS .\nHigh unemployment among the young , a continuing upturn in inflation , pressures for democratic reform , and rising civil service expenditures are major issues facing the government .\tJJ NN IN DT JJ , DT VBG NN IN NN , NNS IN JJ NN , CC VBG JJ NN NNS VBP JJ NNS VBG DT NN .\nShortly after achieving independence from Britain in the early 1960s , Tanganyika and Zanzibar merged to form the nation of Tanzania in 1964 .\tRB IN VBG NN IN NNP IN DT JJ NNS , NNP CC NNP VBD TO VB DT NN IN NNP IN CD .\nOne-party rule ended in 1995 with the first democratic elections held in the country since the 1970s .\tJJ NN VBD IN CD IN DT JJ JJ NNS VBN IN DT NN IN DT NNS .\nZanzibar 's semi-autonomous status and popular opposition have led to two contentious elections since 1995 , which the ruling party won despite international observers ' claims of voting irregularities .\tNNP POS JJ NN CC JJ NN VBP VBN TO CD JJ NNS IN CD , WDT DT NN NN VBD IN JJ NNS POS NNS IN NN NNS .\nThe formation of a government of national unity between Zanzibar 's two leading parties succeeded in minimizing electoral tension in 2010\tDT NN IN DT NN IN JJ NN IN NNP POS CD JJ NNS VBN IN VBG JJ NN IN CD\nPhosphate mining had been the only significant economic activity , but in December 1987 the Australian government closed the mine .\tNNP NN VBD VBN DT JJ JJ JJ NN , CC IN NNP CD DT JJ NN VBD DT NN .\nIn 1991 , the mine was reopened .\tIN CD , DT NN VBD VBN .\nWith the support of the government , a $ 34 million casino opened in 1993 , but closed in 1998 .\tIN DT NN IN DT NN , DT $ CD CD NN VBD IN CD , CC VBD IN CD .\nFrom 2004 to 2007 , the economy grew about 10 % per year , driven largely by an expansion in the garment sector , construction , agriculture , and tourism .\tIN CD TO CD , DT NN VBD RB CD NN IN NN , VBN RB IN DT NN IN DT NN NN , NN , NN , CC NN .\nGDP contracted slightly in 2009 as a result of the global economic slowdown , but climbed more than 4 % in 1010 , driven by renewed exports .\tNN VBD RB IN CD IN DT NN IN DT JJ JJ NN , CC VBD JJR IN CD NN IN CD , VBN IN JJ NNS .\nWith the January 2005 expiration of a WTO Agreement on Textiles and Clothing , Cambodian textile producers were forced to compete directly with lower-priced countries such as China , India , Vietnam , and Bangladesh .\tIN DT NNP CD NN IN DT NNP NN IN NNP CC NNP , JJ NN NNS VBD VBN TO VB RB IN JJ NNS JJ IN NNP , NNP , NNP , CC NNP .\nThe garment industry currently employs more than 2,80,000 people - about 5 % of the work force - and contributes more than 70 % of Cambodia 's exports .\tDT NN NN RB VBZ JJR IN CD NNS : IN CD NN IN DT NN NN : CC VBZ JJR IN CD NN IN NNP POS NNS .\nIn 2005 , exploitable oil deposits were found beneath Cambodia 's territorial waters , representing a new revenue stream for the government if commercial extraction begins .\tIN CD , JJ NN NNS VBD VBN IN NNP POS JJ NNS , VBG DT JJ NN NN IN DT NN IN JJ NN VBZ .\nMining also is attracting significant investor interest , particularly in the northern parts of the country .\tNN RB VBZ VBG JJ NN NN , RB IN DT JJ NNS IN DT NN .\nThe government has said opportunities exist for mining bauxite , gold , iron and gems .\tDT NN VBZ VBN NNS VBP IN NN NN , NN , NN CC NNS .\nIn 2006 , a US-Cambodia bilateral Trade and Investment Framework Agreement ( TIFA ) was signed , and several rounds of discussions have been held since 2007 .\tIN CD , DT NNP NN NNP CC NNP NNP NNP LRB NNP RRB VBD VBN , CC JJ NNS IN NNS VBP VBN VBN IN CD .\nRubber exports increased about 25 % in 2009 due to rising global demand .\tNNP NNS VBD RB CD NN IN CD JJ TO VBG JJ NN .\nThe tourism industry has continued to grow rapidly , with foreign arrivals exceeding 2 million per year in 2007 - 8 ; however , economic troubles abroad dampened growth in 2009 .\tDT NN NN VBZ VBN TO VB RB , IN JJ NNS VBG CD CD IN NN IN CD : CD ; RB , JJ NNS RB VBD NN IN CD .\nThe global financial crisis is weakening demand for Cambodian exports , and construction is declining due to a shortage of credit .\tDT JJ JJ NN VBZ VBG NN IN JJ NNS , CC NN VBZ VBG JJ TO DT NN IN NN .\nThe long-term development of the economy remains a daunting challenge .\tDT JJ NN IN DT NN VBZ DT JJ NN .\nThe Cambodian government is working with bilateral and multilateral donors , including the World Bank and IMF , to address the country 's many pressing needs .\tDT JJ NN VBZ VBG IN JJ CC JJ NNS , VBG DT NNP NNP CC NNP , TO VB DT NN POS JJ JJ NNS .\nThe major economic challenge for Cambodia over the next decade will be fashioning an economic environment in which the private sector can create enough jobs to handle Cambodia 's demographic imbalance .\tDT JJ JJ NN IN NNP IN DT JJ NN MD VB VBG DT JJ NN IN WDT DT JJ NN MD VB JJ NNS TO VB NNP POS JJ NN .\nMore than 50 % of the population is less than 25 years old .\tJJR IN CD NN IN DT NN VBZ JJR IN CD NNS JJ .\nThe population lacks education and productive skills , particularly in the poverty-ridden countryside , which suffers from an almost total lack of basic infrastructure .\tDT NN VBZ NN CC JJ NNS , RB IN DT JJ NN , WDT VBZ IN DT RB JJ NN IN JJ NN .\nA FOWLER , taking his bird-lime and his twigs , went out to catch birds .\tDT NN , VBG PRP$ NN CC PRP$ NNS , VBD RP TO VB NNS .\nSeeing a thrush sitting upon a tree , he wished to take it , and fitting his twigs to a proper length , watched intently , having his whole thoughts directed towards the sky .\tVBG DT NN VBG IN DT NN , PRP VBD TO VB PRP , CC VBG PRP$ NNS TO DT JJ NN , VBD RB , VBG PRP$ JJ NNS VBD IN DT NN .\nWhile thus looking upwards , he unknowingly trod upon a Viper asleep just before his feet .\tIN RB VBG NNS , PRP RB VBD IN DT NN JJ RB IN PRP$ NNS .\nThe Viper , turning about , stung him , and falling into a swoon , the man said to himself , ' Woe is me ! that while I purposed to hunt another , I am myself fallen unawares into the snares of death . '\tDT NN , VBG RB , VBG PRP , CC VBG IN DT NN , DT NN VBD TO PRP , `` NN VBZ PRP . WDT IN PRP VBD TO VB DT , PRP VBP PRP VBN NNS IN DT NNS IN NN . ``\nA manager is a person who thinks that nine women can produce a child in one month .\tDT NN VBZ DT NN WP VBZ IN CD NNS MD VB DT NN IN CD NN .\nThe United Nations ' new envoy to Somalia has held his first talks with President Abdullah Yusuf and other officials in Mogadishu .\tDT NNP NNPS POS JJ NN TO NNP VBZ VBN PRP$ JJ NNS IN NNP NNP NNP CC JJ NNS IN NNP .\nUpon arriving in the capital , Ahmedou Ould Abdallah called the humanitarian and human rights situation in Somalia ' the worst on the continent . '\tIN VBG IN DT NN , NNP NNP NNP VBD DT JJ CC JJ NNS NN IN NNP `` DT JJS IN DT NN . ``\nAbdallah , a Mauritanian diplomat , was appointed to the post September 12 .\tNNP , DT JJ NN , VBD VBN TO DT NN NNP CD .\nThe envoy 's meeting with top leaders came as two explosions ripped through Mogadishu 's Bakara market , a site of frequent attacks in recent months .\tDT NN POS NN IN JJ NNS VBD IN CD NNS VBD IN NNP POS NNP NN , DT NN IN JJ NNS IN JJ NNS .\nBoth explosions went off as government forces drove through the area .\tDT NNS VBD RP IN NN NNS VBD IN DT NN .\nWitnesses say at least five police officers were wounded in one of the attacks .\tNNS VBP IN JJS CD NNS NNS VBD VBN IN CD IN DT NNS .\nSyria says it is forming a joint commission with Beirut to investigate whether a Syrian military post is actually in Lebanese territory .\tNNP VBZ PRP VBZ VBG DT JJ NN IN NNP TO VB IN DT JJ JJ NN VBZ RB IN JJ NN .\nThe announcement follows the broadcast of Arab television news footage showing a border post near a village in the southern Bekaa valley , in the area of Deir al-Ashayier to the east of Kfar Kouk , where Syrian troops are reported to be still stationed .\tDT NN VBZ DT NN IN JJ NN NN NN VBG DT NN NN IN DT NN IN DT JJ NNP NN , IN DT NN IN NNP NNP TO DT NN IN NNP NNP , WRB JJ NNS VBP VBN TO VB RB VBN .\nLast month , Syria said it had withdrawn all of its troops and intelligence agents from Lebanon , but the pullout is still being verified by a United Nations team in the country .\tJJ NN , NNP VBD PRP VBD VBN DT IN PRP$ NNS CC NN NNS IN NNP , CC DT NN VBZ RB VBG VBN IN DT NNP NNP NN IN DT NN .\nLast week , U.N. officials said the Lebanese government still does not fully control large parts of the country .\tJJ NN , NNP NNS VBD DT JJ NN RB VBZ RB RB VB JJ NNS IN DT NN .\nSyrian officials say they are willing to cooperate with a U.N. investigation into the assassination of former Lebanese Prime Minister Rafik Hariri .\tJJ NNS VBP PRP VBP JJ TO VB IN DT NNP NN IN DT NN IN JJ JJ NNP NNP NNP NNP .\nThe French Press Agency , AFP and Reuters quote an unnamed Syrian official as making that statement Friday , one day after a top U.N. official said Damascus has ignored requests to help with the probe .\tDT NNP NNP NNP , NNP CC NNP VBP DT JJ JJ NN IN VBG IN NN NNP , CD NN IN DT JJ NNP NN VBD NNP VBZ VBN NNS TO VB IN DT NN .\nUndersecretary-General for Political Affairs Ibrahim Gambari said Damascus has not responded to requests for documents and for interviews with witnesses .\tJJ IN NNP NNP NNP NNP VBD NNP VBZ RB VBN TO NNS IN NNS CC IN NNS IN NNS .\nThe U.N. Security Council later urged all countries - especially those who it said have ' yet to respond adequately ' - to cooperate fully .\tDT NNP NNP NNP RB VBD DT NNS IN RB DT WP PRP VBD VBP `` RB TO VB RB `` : TO VB RB .\nFriday 's news reports say the head of the probe , German prosecutor Detlev Mehlis , will meet shortly with a Syrian representative .\tNNP POS NN NNS VBP DT NN IN DT NN , JJ NN NNP NNP , MD VB RB IN DT JJ NN .\nMany in Lebanon have accused Syria of being behind Mr. Hariri 's February 14 assassination - a charge Damascus denies .\tJJ IN NNP VBP VBN NNP IN VBG IN NNP NNP POS NNP CD NN IN DT NN NNP VBZ .\nThe U.S. military says U.S.-led forces in Iraq have captured a prominent militant linked to al-Qaida ally Abu Musab al-Zarqawi .\tDT NNP NN VBZ JJ NNS IN NNP VBP VBN DT JJ NN VBN TO NNP NN NNP NNP NNP .\nA military statement issued Saturday says Abdul Aziz Sa'dun Ahmed Hamduni -- also known as Abu Ahmed -- was detained on December 22 .\tDT JJ NN VBN NNP VBZ NNP NNP NNP NNP NNP : RB VBN IN NNP NNP : VBD VBN IN NNP CD .\nThe military says Abu Ahmed was the deputy of Abu Talha , commander of a Zarqawi terrorist group in the northern city of Mosul .\tDT JJ VBZ NNP NNP VBD DT NN IN NNP NNP , NN IN DT NNP JJ NN IN DT JJ NN IN NNP .\nLast week , the Iraqi government announced the capture of two other Abu Talha leaders in late December .\tJJ NN , DT JJ NN VBD DT NN IN CD JJ NNP NNP NNS IN JJ NNP .\nThe developments come as Iraq prepares for elections on January 30 .\tDT NNS VBP IN NNP VBZ IN NNS IN NNP CD .\nPresident Bush says the U.S. military will do its best to give every Iraqi citizen a chance to vote .\tNNP NNP VBZ DT NNP NN MD VB PRP$ JJS TO VB DT JJ NN DT NN TO VB .\nOn Friday , the president confirmed reports he is sending a team to Iraq to assess the country 's security situation .\tIN NNP , DT NN VBD NNS PRP VBZ VBG DT NN TO NNP TO VB DT NN POS NN NN .\nThe U.S. government is working to bolster troubled banks at a time when officials worry the recession may get worse and hit financial companies even harder .\tDT NNP NN VBZ VBG TO VB JJ NNS IN DT NN WRB NNS VBP DT NN MD VB JJR CC VBD JJ NNS RB RBR .\nThe U.S. Treasury department and other financial regulators say they will ease the repayment terms of hundreds of billions of dollars worth of aid they have given to banks and make it easier for banks to use government help in the future .\tDT NNP NNP NN CC JJ JJ NNS VBP PRP MD VB DT NN NNS IN NNS IN NNS IN NNS NN IN NN PRP VBP VBN TO NNS CC VB PRP JJR IN NNS TO VB NN NN IN DT NN .\nThis week , regulators will check banks to see if they have the reserves needed to ' provide the credit necessary to restore economic growth . '\tDT NN , NNS MD VB NNS TO VB IN PRP VBP DT NNS VBN TO `` VB DT NN JJ TO VB JJ NN . ``\nThose banks that can not raise the needed capital from private sources could get additional government help .\tDT NNS WDT MD RB VB DT JJ NN IN JJ NNS MD VB JJ NN NN .\nAfter Monday 's announcement , the share prices of two major banks , Citigroup and the Bank of America , rose .\tIN NNP POS NN , DT NN NNS IN CD JJ NNS , NNP CC DT NNP IN NNP , VBD .\nThose firms had seen shares plunge last week after investors grew worried that the banks could not cope with rising credit losses .\tDT NNS VBD VBN NNS VB JJ NN IN NNS VBD JJ IN DT NNS MD RB VB IN VBG NN NNS .\nAustralia has announced plans to buy 100 state-of-the-art U.S. jet fighters and double the size of its small submarine fleet to keep pace with an Asian military buildup .\tNNP VBZ VBN NNS TO VB CD JJ NNP NN NNS CC VB DT NN IN PRP$ JJ NN NN TO VB NN IN DT JJ JJ NN .\nPrime Minister Kevin Rudd launched the government 's defense white paper for the next 20 years onboard the HMAS Stuart in Sydney Harbor Saturday .\tNNP NNP NNP NNP VBD DT NN POS NN JJ NN IN DT JJ CD NNS VBD DT NNP NNP IN NNP NNP NNP .\nMr. Rudd said the government will increase annual defense spending by three percent over the next decade .\tNNP NNP VBD DT NN MD VB JJ NN NN IN CD NN IN DT JJ NN .\nUnder the plan , Australia will buy 12 submarines fitted with cruise missiles , eight warships and 100 F-35 Lightning Joint Strike Fighter jets .\tIN DT NN , NNP MD VB CD NNS VBN IN NN NNS , CD NNS CC CD NNP NNP NNP NNP NNP NNS .\nOpposition leader Malcolm Turnbull criticized the plan , saying the government has failed to explain how it will pay for the project .\tNNP NN NNP NNP VBD DT NN , VBG DT NN VBZ VBN TO VB WRB PRP MD VB IN DT NN .\nThe paper predicted that China will be the strongest Asian military power and said Beijing should assure its neighbors that it is not a threat to their sovereignty .\tDT NN VBD IN NNP MD VB DT JJS JJ JJ NN CC VBD NNP MD VB PRP$ NNS IN PRP VBZ RB DT NN TO PRP$ NN .\nAuthorities in Indian Kashmir say three policemen have been killed and at least 11 people were wounded in two separate incidents Thursday .\tNNS IN JJ NNP VBP CD NNS VBP VBN VBN CC IN JJS CD NNS VBD VBN IN CD JJ NNS NNP .\nThe authorities say the police officers died when suspected Islamic militants ambushed their patrol north of Jammu .\tDT NNS VBP DT NN NNS VBD WRB JJ NNP NNS VBD PRP$ JJ NN IN NNP .\nTwo policemen are missing .\tCD NNS VBP VBG .\nIn the town of Awantipora , north of Srinagar , suspected militants hurled a grenade at a busy intersection , wounding at least 11 pedestrians .\tIN DT NN IN NNP , NN IN NNP , JJ NNS VBD DT NN IN DT JJ NN , VBG IN JJS CD NNS .\nPolice sealed-off the area and are looking for the attackers .\tNNS VBP DT NN CC VBP VBG IN DT NNS .\nMilitant separatists continue their attacks against government targets in Kashmir , saying they oppose the ongoing peace process between India and Pakistan .\tNNP NNS VBP PRP$ NNS IN NN NNS IN NNP , VBG PRP VBP DT JJ NN NN IN NNP CC NNP .\nKashmiri militants have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan .\tJJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP .\nThe insurgency has claimed tens of thousand of lives .\tDT NN VBZ VBN NNS IN CD IN NNS .\nPirates have hijacked a Greek-owned cargo vessel in the Gulf of Aden , off the coast of Somalia .\tNNS VBP VBN DT JJ NN NN IN DT NNP IN NNP , IN DT NN IN NNP .\nThe Greek merchant marine ministry says pirates seized the MV Saldanha early Sunday , as it headed toward Slovenia with a load of coal .\tDT JJ NN NN NN VBZ NNS VBD DT NNP NNP JJ NNP , IN PRP VBD IN NNP IN DT NN IN NN .\nThe ministry says the ship was carrying 22 crew members , their nationalities unknown .\tDT NN VBZ DT NN VBD VBG CD NN NNS , PRP$ NNS NN .\nSomali pirates have received millions of dollars in ransom payments during a hijacking spree over the past year .\tJJ NNS VBP VBN NNS IN NNS IN NN NNS IN DT JJ NN IN DT JJ NN .\nThe attacks have continued despite increased naval patrols by the U.S. , European Union and other world powers .\tDT NNS VBP VBN IN VBN JJ NNS IN DT NNP , NNP NNP CC JJ NN NNS .\nAt least 20 people in Baghdad have been killed in a series of attacks in the Iraqi capital .\tIN JJS CD NNS IN NNP VBP VBN VBN IN DT NN IN NNS IN DT JJ NN .\nIraqi authorities said two bombs exploded minutes apart Tuesday at the main Shurja market in central Baghdad , killing 10 and injuring 69 others .\tJJ NNS VBD CD NNS VBD NNS RB NNP IN DT JJ NNP NN IN JJ NNP , VBG CD CC VBG CD NNS .\nThe latest violence underscores the security crisis facing Iraqi Prime Minister Nouri al-Maliki as he attempts to halt what many analysts see as a slide towards civil war .\tDT JJS NN VBZ DT NN NN VBG JJ NNP NNP NNP NNP IN PRP VBZ TO VB WP JJ NNS VBP IN DT NN IN JJ NN .\nMuch of the violence has been blamed on sectarian militias .\tNN IN DT NN VBZ VBN VBN IN JJ NNS .\nAbout 6,000 additional Iraqi troops and 3,500 U.S. troops are being deployed in the Iraqi capital to help stem the violence .\tIN CD JJ JJ NNS CC CD NNP NNS VBP VBG VBN IN DT JJ NN TO VB VB DT NN .\nIn another development , the U.S. military says the Fourth Iraqi Army division has officially assumed the lead in its area of responsibility from the 101st U.S. Airborne division .\tIN DT NN , DT NNP NN VBZ DT NNP JJ NNP NN VBZ RB VBN DT NN IN PRP$ NN IN NN IN DT CD NNP NNP NN .\nThe area includes the cities of Kirkuk and Tikrit .\tDT NN VBZ DT NNS IN NNP CC NNP .\nThe State Department says it will ask Congress for $ 75 million in additional funding this year to promote democracy in Iran .\tDT NNP NNP VBZ PRP MD VB NNP IN $ CD CD IN JJ NN DT NN TO VB NN IN NNP .\nOfficials say the money would be used for radio and television broadcasts to Iran and exchange programs for Iranian students .\tNNS VBP DT NN MD VB VBN IN NN CC NN NNS TO NNP CC NN NNS IN JJ NNS .\nThey say Secretary of State Condoleezza Rice plans to request the funds when she appears before the Senate Foreign Relations Committee Wednesday .\tPRP VBP NNP IN NNP NNP NNP VBZ TO VB DT NNS WRB PRP VBZ IN DT NNP NNP NNP NNP NNP .\nRice is expected to face questions from the panel on the Bush administration 's policies on Iran , which is facing growing international pressure to abandon its controversial nuclear program .\tNNP VBZ VBN TO VB NNS IN DT NN IN DT NNP NN POS NNS IN NNP , WDT VBZ VBG VBG JJ NN TO VB PRP$ JJ JJ NN .\nRussian and French leaders Tuesday called on Tehran to stop all uranium enrichment .\tJJ CC JJ NNS NNP VBD IN NNP TO VB DT NN NN .\nChina urged more diplomatic efforts to ease growing tension over the program , which the West says is aimed at developing a nuclear weapon .\tNNP VBD RBR JJ NNS TO VB VBG NN IN DT NN , WDT DT NNP VBZ VBZ VBN IN VBG DT JJ NN .\nThe Iranian foreign minister says the three American hikers held in Iran after crossing the border with Iraq will stand trial .\tDT JJ JJ NN VBZ DT CD JJ NNS VBN IN NNP IN VBG DT NN IN NNP MD VB NN .\nManouchehr Mottaki did not say when the proceedings would begin during a news conference Monday in Tehran .\tNNP NNP VBD RB VB WRB DT NNS MD VB IN DT NN NN NNP IN NNP .\nHe said the Americans entered Iran with ' suspicious aims . '\tPRP VBD DT NNS VBD NNP IN `` JJ NNS . ``\nIran has accused them of espionage .\tNNP VBZ VBN PRP IN NN .\nThe three U.S. citizens were detained on July 31 for entering Iran illegally , after they apparently strayed across the border while on a hike in northern Iraq .\tDT CD NNP NNS VBD VBN IN NNP CD IN VBG NNP RB , IN PRP RB VBD IN DT NN IN IN DT NN IN JJ NNP .\nU.S. Secretary of State Hillary Clinton has said Washington believes there is no evidence to support any charge against the hikers .\tNNP NNP IN NNP NNP NNP VBZ VBN NNP VBZ EX VBZ DT NN TO VB DT NN IN DT NNS .\nShe has appealed to Iranian authorities to exercise compassion and free the trio .\tPRP VBZ VBN TO JJ NNS TO VB NN CC JJ DT NN .\nIran and the United States have no diplomatic relations , and are embroiled in a dispute over Iran 's nuclear program .\tNNP CC DT NNP NNPS VBP DT JJ NNS , CC VBP VBN IN DT NN IN NNP POS JJ NN .\nThe Nigerian city of Maiduguri was quiet Sunday as police and military patrolled the day after 15 people were killed in rioting over cartoons of the Prophet Muhammad .\tDT JJ NN IN NNP VBD JJ NNP IN NN CC NN VBD DT NN IN CD NNS VBD VBN IN NN IN NNS IN DT NNP NNP .\nMuslims went on a rampage Saturday , attacking Christians and burning churches and shops owned by Christians before troops and police restored order .\tNNS VBD IN DT NN NNP , VBG NNS CC NN NNS CC NNS VBN IN NNS IN NNS CC NNS VBD NN .\nOn Sunday the secretary general of the Nigerian Supreme Council for Islamic Affairs , Lateef Adegbite appealed to Christians not to retaliate , saying the riot was a misguided adventure by Muslims who acted against the tenets of Islam .\tIN NNP DT NN NN IN DT JJ NNP NNP IN NNP NNP , NNP NNP VBD TO NNPS RB TO VB , VBG DT NN VBD DT JJ NN IN NNPS WP VBD IN DT NNS IN NNP .\nThe Maiduguri riot was the latest outbreak of Muslim anger over cartoons originally published in a Danish newspaper last year .\tDT NNP NN VBD DT JJS NN IN NNP NN IN NNS RB VBN IN DT JJ NN JJ NN .\nMany Muslims believe depiction of the Prophet Muhammad is blasphemous .\tJJ NNPS VBP NN IN DT NNP NNP VBZ JJ .\nAn audio recording posted on the Internet Wednesday , says Muslim religious scholars or Ulemas have betrayed Islamic fighters by keeping silent about U.S. actions in Iraq and Afghanistan .\tDT NN NN VBN IN DT NNP NNP , VBZ NNP JJ NNS CC NNPS VBP VBN JJ NNS IN VBG JJ IN NNP NNS IN NNP CC NNP .\nThe message charges the Ulemas have quit supporting the mujahedin , betraying them in the darkest circumstances and leaving them to confront the world 's greatest power alone .\tDT NN VBZ DT NNP VBP VBN VBG DT NN , VBG PRP IN DT JJS NNS CC VBG PRP TO VB DT NN POS JJS NN RB .\nThe recording was attributed to wanted al-Qaida-linked terrorist Abu Musab al-Zarqwai .\tDT NN VBD VBN TO JJ JJ JJ NNP NNP NNP .\nIts authenticity could not be independently verified .\tPRP$ NN MD RB VB RB VBN .\nAl-Zarqawi - Iraq 's most wanted man - is believed to have fled his base in Fallujah during the U.S.-led assault on the insurgent-held city earlier this month .\tNNP IN NNP POS RBS JJ NN : VBZ VBN TO VB VBN PRP$ NN IN NNP IN DT JJ NN IN DT JJ NN RBR DT NN .\nA bomb exploded Tuesday near a Kurdish party 's office in northern Iraq , killing at least three Iraqi soldiers .\tDT NN VBD NNP IN DT NNP NN POS NN IN JJ NNP , VBG IN JJS CD JJ NNS .\nReports from Mosul said a car bomb went off close to the office of the Kurdistan Democratic Party .\tNNS IN NNP VBD DT NN NN VBD RB RB TO DT NN IN DT NNP NNP NNP .\nNo one claimed responsibility for the attack , which occurred in a city considered one of the last urban strongholds of al-Qaida in Iraq .\tDT NN VBD NN IN DT NN , WDT VBD IN DT NN VBN CD IN DT JJ JJ NNS IN NNP IN NNP .\nIn central Baghdad Tuesday , a bomb blast struck a convoy carrying a senior Iraqi official .\tIN JJ NNP NNP , DT NN NN VBD DT NN VBG DT JJ JJ NN .\nMajor General Ahmed al-Attiya , who heads the nation 's customs agency , escaped injury , but three of his security guards were wounded .\tNNP NNP NNP NNP , WP VBZ DT NN POS NNS NN , VBD NN , CC CD IN PRP$ NN NNS VBD VBN .\nViolence has been on the rise in the days leading up to provincial elections this Saturday .\tNN VBZ VBN IN DT NN IN DT NNS VBG RP TO JJ NNS DT NNP .\nThe crew of the U.S. space shuttle Atlantis has returned to the southeastern state of Florida to prepare for a new launch attempt on Wednesday .\tDT NN IN DT NNP NN NN NNP VBZ VBN TO DT JJ NN IN NNP TO VB IN DT JJ NN NN IN NNP .\nTheir shuttle launch was scrubbed earlier this week when a tropical storm Ernesto was expected to pass near the launch site .\tPRP$ NN NN VBD VBN RBR DT NN WRB DT JJ NN NNP VBD VBN TO VB IN DT NN NN .\nThe spacecraft was moved to a hangar , and the six astronauts flew back to their training base in Houston .\tDT NN VBD VBN TO DT NN , CC DT CD NNS VBD RB TO PRP$ NN NN IN NNP .\nIf the National Air and Space Administration is not able to launch Atlantis next week , the mission to the International Space Station likely will be postponed until October .\tIN DT NNP NNP CC NNP NNP VBZ RB JJ TO VB NNP JJ NN , DT NN TO DT NNP NNP NNP RB MD VB VBN IN NNP .\nNASA 's plans call for an 11-day mission to the space station , where astronauts will conduct three spacewalks to attach solar panels .\tNNP POS NNS VBP IN DT JJ NN TO DT NN NN , WRB NNS MD VB CD NNS TO VB JJ NNS .\nThe panels eventually will generate one quarter of the station 's energy .\tDT NNS RB MD VB CD NN IN DT NN POS NN .\nIsrael has moved a step closer to the creation of a moderate , new government .\tNNP VBZ VBN DT NN RBR TO DT NN IN DT JJ , JJ NN .\nAn ambitious plan to draw Israel 's final borders by 2010 is topping the agenda .\tDT JJ NN TO VB NNP POS JJ NNS IN CD VBZ VBG DT NN .\nInterim Prime Minister Ehud Olmert 's centrist Kadima Party and the Dovish Labor party have signed a coalition agreement .\tNNP NNP NNP NNP NNP POS NN NNP NNP CC DT NNP NNP NN VBP VBN DT NN NN .\nIt includes a pledge to withdraw from large parts of the West Bank over the next four years .\tPRP VBZ DT NN TO VB IN JJ NNS IN DT NNP NNP IN DT JJ CD NNS .\nUnder Mr. Olmert 's plan , about 70,000 Jewish settlers would be removed from their homes .\tIN NNP NNP POS NN , IN CD JJ NNS MD VB VBN IN PRP$ NNS .\nAt the same time , Israel would annex big West Bank settlement blocs .\tIN DT JJ NN , NNP MD VB JJ NNP NNP NN NNS .\nMr. Olmert says he would prefer to do this as part of an agreement with the Palestinians .\tNNP NNP VBZ PRP MD VB TO VB DT IN NN IN DT NN IN DT NNS .\nBut he believes that is impossible because the Islamic militant group Hamas , which seeks Israel 's destruction , now heads the Palestinian Authority .\tCC PRP VBZ DT VBZ JJ IN DT NNP JJ NN NNP , WDT VBZ NNP POS NN , RB VBZ DT JJ NNP .\nMr. Olmert says if there is no Palestinian peace partner , Israel will withdraw unilaterally .\tNNP NNP VBZ IN EX VBZ DT JJ NN NN , NNP MD VB RB .\n' We will have to act on the basis of a broad national consensus in Israel and work towards fixing of the permanent border lines even without an agreement . '\t`` PRP MD VB TO VB IN DT NN IN DT JJ JJ NN IN NNP CC NN IN VBG IN DT JJ NN NNS RB IN DT NN . ``\nFormer Palestinian legislator Sabri Saddam says expanding settlements and annexing land will only bring more conflict .\tJJ JJ NN NNP NNP VBZ VBG NNS CC JJ NN MD RB VB JJR NN .\n' The unilateral withdrawal is not a solution at all but rather a FALSE disengagement , ' he said .\t`` DT JJ NN VBZ RB DT NN IN DT CC RB DT JJ NN , `` PRP VBD .\n' What we 're looking for is a final , just and fair peace . '\t`` WP PRP VBP VBG IN VBZ DT JJ , RB CC JJ NN . ``\nIn addition to Palestinian opposition , Mr. Olmert faces another obstacle to implementing the pullout plan .\tIN NN TO JJ NN , NNP NNP VBZ DT NN TO VBG DT NN NN .\nHis coalition with Labor does not give him a majority in the 120-member Knesset or parliament .\tPRP$ NN IN NNP VBZ RB VB PRP DT NN IN DT JJ NN CC NN .\nTherefore , he will have to bring the ultra-Orthodox Shas party into the coalition , and Shas opposes the pullout plan .\tRB , PRP MD VB TO VB DT JJ NNP NN IN DT NN , CC NNP VBZ DT NN NN .\nAnalysts say the government could collapse in two or three years , when the time comes to remove tens of thousands settlers from their homes .\tNNS VBP DT NN MD VB IN CD CC CD NNS , WRB DT NN VBZ TO VB NNS IN NNS NNS IN PRP$ NNS .\nNepal 's parliament has voted to abolish the country 's centuries-old monarchy and change to a republic .\tNNP POS NN VBZ VBN TO VB DT NN POS JJ NN CC VB TO DT NN .\nFriday 's vote was part of negotiations between former Maoist rebels and six other political parties .\tNNP POS NN VBD NN IN NNS IN JJ NNP NNS CC CD JJ JJ NNS .\nThe Maoists bolted from the interim government in September after demanding election reform and an immediate end to the monarchy .\tDT NNPS VBD IN DT JJ NN IN NNP IN VBG NN NN CC DT JJ NN TO DT NN .\nThe final vote was 270 - 3 .\tDT JJ NN VBD CD IN CD .\nKing Gyanendra will still remain on the throne until parliamentary elections are held in April .\tNNP NNP MD RB VB IN DT NN IN JJ NNS VBP VBN IN NNP .\nUnder the plan , voters will elect 240 assembly members by direct vote , and 335 other candidates based on proportional representation .\tIN DT NN , NNS MD VB CD NN NNS IN JJ NN , CC CD JJ NNS VBN IN JJ NN .\nThe vote brings to an end a decade-long effort by the Maoists to replace the monarchy .\tDT NN VBZ TO DT NN DT JJ NN IN DT NNS TO VB DT NN .\nThe rebels which fought a bloody civil war that left some 13,000 Nepalese dead .\tDT NNS WDT VBD DT JJ JJ NN WDT VBD DT CD NNS JJ .\nThe Russian justice ministry says it will sell off part of oil giant Yukos in order to cover the company 's outstanding back taxes .\tDT JJ NN NN VBZ PRP MD VB RP NN IN NN NN NNP IN NN TO VB DT NN POS JJ JJ NNS .\nMinistry officials said Tuesday the value of a Yukos subsidiary Yuganskneftegaz has been established so the government can prepare for the sale .\tNNP NNS VBD NNP DT NN IN DT NNP NN NNP VBZ VBN VBN IN DT NN MD VB IN DT NN .\nOfficials say Yukos has been taking too much time in paying its back taxes .\tNNS VBP NNP VBZ VBN VBG RB JJ NN IN VBG PRP$ JJ NNS .\nA Russian court ruled Monday the embattled company must pay nearly all of the $ 1.34 billion in fines connected to its 2001 tax bill .\tDT JJ NN VBD NNP DT JJ NN MD VB RB DT IN DT $ CD CD IN NNS VBN TO PRP$ CD NN NN .\nYukos is already struggling to pay $ 3.4 billion in taxes and fines for 2000 , and $ 2.7 billion in taxes for 2001 .\tNNP VBZ RB VBG TO VB $ CD CD IN NNS CC NNS IN CD , CC $ CD CD IN NNS IN CD .\nGovernment critics charge the actions against Yukos are in retaliation for support the firm 's former chief Mikhail Khodorkovsky gave to the political opposition .\tNN NNS VBP DT NNS IN NNP VBP IN NN IN NN DT NN POS JJ NN NNP NNP VBD TO DT JJ NN .\nThe leaders of Chad and Sudan have signed a peace accord , pledging to deny refuge to each other 's rebel groups .\tDT NNS IN NNP CC NNP VBP VBN DT NN NN , VBG TO VB NN TO DT NN POS NN NNS .\nPresidents Omar al-Bashir of Sudan and Idriss Deby of Chad reached the agreement Wednesday at a summit hosted by Libyan leader Moammar Gadhafi in Tripoli .\tNNS NNP NNP IN NNP CC NNP NNP IN NNP VBD DT NN NNP IN DT NN VBN IN JJ NN NNP NNP IN NNP .\nTheir accord calls for Sudan and Chad to work toward normal relations , and to not use their territories to support harmful activity against each other .\tPRP$ NN VBZ IN NNP CC NNP TO VB IN JJ NNS , CC TO RB VB PRP$ NNS TO VB JJ NN IN DT NN .\nChad has accused Sudan of harboring rebels opposed to Mr. Deby , while Sudan has said that Chad is backing rebels fighting Sudanese government forces in war-torn Darfur .\tNNP VBZ VBN NNP IN VBG NNS VBN TO NNP NNP , IN NNP VBZ VBN IN NNP VBZ VBG NNS VBG JJ NN NNS IN JJ NNP .\nThe accord calls for the creation of an African force to preserve security on the Chad-Sudan border .\tDT NN VBZ IN DT NN IN DT JJ NN TO VB NN IN DT JJ NN .\nWhich countries will supply troops and finance the force has not been determined .\tWDT NNS MD VB NNS CC VB DT NN VBZ RB VBN VBN .\nIn Pakistan local officials say Pakistani troops have killed at least eight militants in clashes in the northwest region of the country .\tIN NNP JJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS IN NNS IN DT JJS NN IN DT NN .\nThe French news agency reports that two underground hideouts used by militants were also captured in Sunday 's operation in the restive Orakzai tribal district .\tDT JJ NN NN NNS IN CD JJ NNS VBN IN NNS VBD RB VBN IN NNP POS NN IN DT JJ NNP NN NN .\nPakistan 's military launched an offensive against Taliban insurgents in Orakzai in March , to target militants who are believed to have fled an earlier military offensive in South Waziristan .\tNNP POS NN VBD DT NN IN NNP NNS IN NNP IN NNP , TO VB NNS WP VBP VBN TO VB VBN DT JJR JJ NN IN NNP NNP .\nLawyers for imprisoned Russian oil tycoon Mikhail Khodorkovsky say authorities have filed new charges against their client .\tNNS IN VBN JJ NN NN NNP NNP VBP NNS VBP VBN JJ NNS IN PRP$ NN .\nThe lawyers say they are still trying to determine the exact nature of the charges .\tDT NNS VBP PRP VBP RB VBG TO VB DT JJ NN IN DT NNS .\nBut they indicate that those filed Monday appear to differ little from earlier charges against the imprisoned former oil executive .\tCC PRP VBP IN DT VBN NNP VBP TO VB NN IN JJR NNS IN DT JJ JJ NN NN .\nThey called the new filing an effort to extend the inquiry into the case .\tPRP VBD DT JJ NN DT NN TO VB DT NN IN DT NN .\nKhodorkovsky , the former chief of the Yukos Oil Company , is serving eight years in prison for fraud and tax evasion - charges he says were politically motivated because of his support for opposition politicians .\tNNP , DT JJ NN IN DT NNP NNP NNP , VBZ VBG CD NNS IN NN IN NN CC NN NN IN NNS PRP VBZ VBD RB JJ IN IN PRP$ NN IN NN NNS .\nThe former oil executive is being held in the Siberian city of Chita , where authorities have been investigating money laundering and theft charges against him .\tDT JJ NN NN VBZ VBG VBN IN DT JJ NN IN NNP , WRB NNS VBP VBN VBG NN NN CC NN NNS IN PRP .\nThe probe involves the theft of more than $ 33 million from Yukos subsidiaries .\tDT NN VBZ DT NN IN JJR IN $ CD CD IN NNP NNS .\nPakistani authorities say security forces have captured a high-ranking Taleban leader in Quetta , the capital of southwestern Baluchistan province .\tJJ NNS VBP NN NNS VBP VBN DT JJ NNP NN IN NNP , DT NN IN JJ NNP NN .\nIntelligence officials say Mullah Obaidullah Akhund , a former Taleban defense minister and a close associate of fugitive Taleban leader Mullah Omar , was arrested during a raid on a home earlier this week .\tNN NNS VBP NNP NNP NNP , DT JJ NNP NN NN CC DT JJ NN IN JJ NNP NN NNP NNP , VBD VBN IN DT NN IN DT NN RBR DT NN .\nThe Pakistani government has not confirmed the arrest .\tDT JJ NN VBZ RB VBN DT NN .\nAkhund would be the most senior leader from the Islamist militia to be nabbed since the Taleban was ousted from power in neighboring Afghanistan in late 2001 .\tNNP MD VB DT RBS JJ NN IN DT NNP NN TO VB VBN IN DT NNP VBD VBN IN NN IN JJ NNP IN JJ CD .\nHis arrest follows a surprise visit to Pakistan by U.S. Vice President Dick Cheney , who urged President Pervez Musharraf to do more to stop insurgents from crossing into Afghanistan .\tPRP$ NN VBZ DT NN NN TO NNP IN NNP NNP NNP NNP NNP , WP VBD NNP NNP NNP TO VB JJR TO VB NNS IN VBG IN NNP .\nGeneral Musharraf reiterated the country is doing all it can to secure its border and defeat insurgents .\tNNP NNP VBD DT NN VBZ VBG DT PRP MD TO VB PRP$ NN CC NN NNS .\nIndian opposition leader Lal Krishna Advani says he will resign as head of the Bharatiya Janata Party ( BJP ) .\tJJ NN NN NNP NNP NNP VBZ PRP MD VB IN NN IN DT NNP NNP NNP LRB NNP RRB .\nIn a statement issued Sunday in Chennai , Mr. Advani pledged to step down after the party 's next plenary meeting in December .\tIN DT NN VBN NNP IN NNP , NNP NNP VBD TO VB RB IN DT NN POS JJ JJ NN IN NNP .\nThis is the second time the former deputy prime minister announced his resignation .\tDT VBZ DT JJ NN DT JJ NN JJ NN VBD PRP$ NN .\nMr. Advani first offered to step down in June after returning from a visit to Pakistan .\tNNP NNP RB VBD TO VB RB IN NNP IN VBG IN DT NN TO NNP .\nHis praise for the Islamic nation 's founder Mohammed Ali Jinnah angered staunch Hindu nationalists , who blame Mr. Jinnah for the violent partition of the subcontinent in 1947 .\tPRP$ NN IN DT NNP NN POS NN NNP NNP NNP VBD JJ NNP NNS , WP VBP NNP NNP IN DT JJ NN IN DT NN IN CD .\nThe rift within the party that Mr. Advani 's comments provoked was temporarily patched over .\tDT NN IN DT NN IN NNP NNP POS NNS VBD VBD RB VBN IN .\nRussian President Vladimir Putin has sent new year 's greetings to 80-year old Vassily Kononov , a Soviet partisan in World War II who was convicted in Latvia of war crimes .\tJJ NNP NNP NNP VBZ VBN JJ NN POS NNS TO JJ JJ NNP NNP , DT JJ NN IN NNP NNP NNP WP VBD VBN IN NNP IN NN NNS .\nMr. Putin said heroes should not be slandered .\tNNP NNP VBD NNS MD RB VB VBN .\nMr. Kononov was convicted last year of murdering Latvian civilians in 1944 in a trial that angered many Russians , who view him as a legitimate war hero .\tNNP NNP VBD VBN JJ NN IN VBG JJ NNS IN CD IN DT NN WDT VBD JJ NNS , WP VBP PRP IN DT JJ NN NN .\nMr. Putin 's letter saluted Mr. Kononov 's contribution to the defeat of the Nazis in World War II , noting that 2005 will mark the 60th anniversary of the end of the war .\tNNP NNP POS NN VBD NNP NNP POS NN TO DT NN IN DT NNPS IN NNP NNP NNP , VBG IN CD MD VB DT JJ NN IN DT NN IN DT NN .\nRelations between Russia and its Baltic neighbor have been strained in recent years , in part because Latvia decided to join the NATO alliance .\tNNP IN NNP CC PRP$ JJ NN VBP VBN VBN IN JJ NNS , IN NN IN NNP VBD TO VB DT NNP NN .\nJapanese prosecutors have indicted a U.S. sailor in connection with the death of a Japanese woman .\tJJ NNS VBP VBN DT NNP NN IN NN IN DT NN IN DT JJ NN .\nWilliam Oliver Reese , 21 , is accused of robbing and fatally beating 56-year-old Yoshie Sato on January 3 .\tNNP NNP NNP , CD , VBZ VBN IN VBG CC RB VBG JJ NNP NNP IN NNP CD .\nJapanese authorities say the attack occurred near the U.S. Navy base in Yokosuka , southwest of Tokyo .\tJJ NNS VBP DT NN VBD IN DT NNP NNP NN IN NNP , NN IN NNP .\nReese is stationed on the USS Kitty Hawk aircraft carrier .\tNNP VBZ VBN IN DT NNP NNP NNP NN NN .\nThe homicide has rekindled concerns about crimes committed by U.S. military personnel in Japan .\tDT NN VBZ VBN NNS IN NNS VBN IN NNP JJ NNS IN NNP .\nIn 1995 , Japanese citizens protested against the U.S. military presence after the rape of a schoolgirl in Okinawa .\tIN CD , JJ NNS VBD IN DT NNP JJ NN IN DT NN IN DT NN IN NNP .\nThis latest incident comes during a crucial time as Washington and Tokyo discuss the reorganization of U.S. troops in Japan .\tDT JJS NN VBZ IN DT JJ NN IN NNP CC NNP VB DT NN IN NNP NNS IN NNP .\nRoughly 50,000 American troops are stationed in Japan .\tRB CD JJ NNS VBP VBN IN NNP .\nThe Russian gas monopoly Gazprom has approved a plan to bid for a main production unit of the troubled giant oil firm Yukos .\tDT JJ NN NN NNP VBZ VBN DT NN TO VB IN DT JJ NN NN IN DT JJ JJ NN NN NNP .\nThe company 's board of directors Wednesday also approved obtaining outside financing for the December 19 bidding on the unit , Yuganskneftegaz .\tDT NN POS NN IN NNS NNP RB VBD VBG JJ NN IN DT NNP CD NN IN DT NN , NNP .\nGovernment officials say they want to recover billions of dollars Yukos owes in back taxes .\tNN NNS VBP PRP VBP TO VB NNS IN NNS NNP VBZ IN JJ NNS .\nBids are to start at $ 8.6 billion , far below what independent assessors say the unit is worth .\tNNS VBP TO VB IN $ CD CD , RB IN WP JJ NNS VBP DT NN VBZ JJ .\nThe Interfax news agency quotes a source close to Yukos saying authorities questioned a member of the firm 's legal department for eight hours Tuesday in a probe of financial wrongdoing .\tDT NNP NN NN VBZ DT NN RB TO NNP VBG NNS VBD DT NN IN DT NN POS JJ NN IN CD NNS NNP IN DT NN IN JJ NN .\nThe report says the interrogation ended only after the man lost consciousness .\tDT NN VBZ DT NN VBD RB IN DT NN VBN NN .\nRussian officials have pledged to fight corporate corruption and today gave mobile phone operator VimpelCom a tax bill for nearly $ 160 million for 2000 .\tJJ NNS VBP VBN TO VB JJ NN CC NN VBD JJ NN NN NNP DT NN NN IN RB $ CD CD IN CD .\nU.S. media reports say the United States is investigating possible Iranian involvement in a recent attack in the Iraqi city of Karbala , in which five American soldiers were killed .\tNNP NNS NNS VBP DT NNP NNPS VBZ VBG JJ JJ NN IN DT JJ NN IN DT JJ NN IN NNP , IN WDT CD JJ NNS VBD VBN .\nThe reports in the New York Times and CNN television quote unnamed U.S. officials as saying the Defense Department is trying to determine whether Iranians or Iranian-trained operatives carried out the attack on a U.S. military compound last Saturday .\tDT NNS IN DT NNP NNP NNP CC NNP NN VBZ JJ NNP NNS IN VBG DT NNP NNP VBZ VBG TO VB IN NNS CC JJ NNS VBD IN DT NN IN DT NNP JJ NN JJ NNP .\nThe U.S. military has said the attack was well coordinated , with assailants dressed in U.S. military-style uniforms and driving vehicles similar to those used by U.S. troops .\tDT NNP NN VBZ VBN DT NN VBD RB VBN , IN NNS VBN IN NNP JJ NNS CC VBG NNS JJ TO DT VBN IN NNP NNS .\nThe White House said Wednesday that it would not comment on what it called ' speculation ' about Iranian involvement in the Karbala attack .\tDT NNP NNP VBD NNP IN PRP MD RB VB IN WP PRP VBD `` NN `` IN JJ NN IN DT NNP NN .\nBut spokesman Tony Snow repeated U.S. warnings to respond ' forcefully ' to anyone trying to kill U.S. troops in Iraq or destabilize the country .\tCC NN NNP NNP VBD NNP NNS TO VB `` RB `` TO DT VBG TO VB NNP NNS IN NNP CC VB DT NN .\nOfficials in India say a blast on a packed train that killed at least 12 people and left dozens wounded was apparently caused by a bomb .\tNNS IN NNP VBP DT NN IN DT VBN NN WDT VBD IN JJS CD NNS CC VBD NNS VBN VBD RB VBN IN DT NN .\nThe explosion occurred Thursday near the town of Jaunpur in Uttar Pradesh state .\tDT NN VBD NNP IN DT NN IN NNP IN NNP NNP NN .\nThe train was traveling from the eastern city of Patna to New Delhi at the time of the explosion .\tDT NN VBD VBG IN DT JJ NN IN NNP TO NNP NNP IN DT NN IN DT NN .\nLocal news media reported Friday that bomb experts found traces of the explosive substance RDX ( also known as Hexogen ) in the train .\tJJ NN NNS VBD NNP IN NN NNS VBD NNS IN DT JJ NN NNP LRB RB VBN IN NNP RRB IN DT NN .\nA local official told the French News Agency the blast came from an unclaimed suitcase near a toilet .\tDT JJ NN VBD DT NNP NNP NNP DT NN VBD IN DT JJ NN IN DT NN .\nRDX , which forms the base of a number of common military explosives , has been used by Islamic militants fighting Indian rule in Kashmir , as well as by separatist rebels in the troubled northeast region , who frequently target trains .\tNNP , WDT VBZ DT NN IN DT NN IN JJ JJ NNS , VBZ VBN VBN IN JJ NNS VBG JJ NN IN NNP , RB RB IN IN JJ NNS IN DT JJ NN NN , WP RB VBP NNS .\nGerman police have conducted a series of raids against individuals suspected of gathering donations to finance radical Islamic activities abroad .\tJJ NNS VBP VBN DT NN IN NNS IN NNS VBN IN NN NNS TO VB JJ JJ NNS RB .\nOfficials say police made no arrests , but raided 33 apartments and four businesses in Wednesday 's operation , which took place primarily in the southern state of Bavaria .\tNNS VBP NNS VBD DT NNS , CC VBD CD NNS CC CD NNS IN NNP POS NN , WDT VBD NN RB IN DT JJ NN IN NNP .\nThey said officers seized computers and propaganda materials during the raids .\tPRP VBD NNS VBD NNS CC NN NNS IN DT NNS .\nOfficials said the operation targeted 24 people , including citizens of Lebanon , Iraq , Egypt , Jordan and Tunisia .\tNNS VBD DT NN VBD CD NNS , VBG NNS IN NNP , NNP , NNP , NNP CC NNP .\nTuesday , an Italian court charged two suspected Islamic militants with terrorism , while police in Spain arrested four Moroccans allegedly linked to last year 's deadly Madrid train bombings .\tNNP , DT JJ NN VBD CD JJ JJ NNS IN NN , IN NNS IN NNP VBN CD NNS RB VBN TO JJ NN POS JJ NNP NN NNS .\nAlso Tuesday , British authorities released an Egyptian terror suspect held for more than three years without charge , citing a lack of evidence .\tRB NNP , JJ NNS VBD DT JJ NN NN VBD IN JJR IN CD NNS IN NN , VBG DT NN IN NN .\nPresident Bush welcomes Nigerian President Olusegun Obasanjo to the White House Thursday for talks expected to focus on the situations in Sudan and Ivory Coast .\tNNP NNP VBZ JJ NNP NNP NNP TO DT NNP NNP NNP IN NNS VBN TO VB IN DT NNS IN NNP CC NNP NNP .\nMr. Obasanjo is current chairman of the African Union , which has been working to end internal fighting in both countries and the humanitarian crisis in Sudan 's Darfur region where 1.6 million people have been driven from their homes .\tNNP NNP VBZ JJ NN IN DT NNP NNP , WDT VBZ VBN VBG TO VB JJ NN IN DT NNS CC DT JJ NN IN NNP POS NNP NN WRB CD CD NNS VBP VBN VBN IN PRP$ NNS .\nThe United Nations says the war between rebels and pro-government forces in Darfur has also killed some 70,000 people .\tDT NNP NNP VBZ DT NN IN NNS CC JJ NNS IN NNP VBZ RB VBN DT CD NNS .\nThe White House says Mr. Bush and Mr. Obasanjo plan to discuss the A.U. role in regional defense and security issues .\tDT NNP NNP VBZ NNP NNP CC NNP NNP VBZ TO VB DT NNP NN IN JJ NN CC NN NNS .\nIt says the two leaders will also review U.S.-Nigerian relations and opportunities for trade and investment .\tPRP VBZ DT CD NNS MD RB VB JJ NNS CC NNS IN NN CC NN .\nLater in the day , Mr. Obasanjo will meet with U.S. Secretary of State Colin Powell .\tRB IN DT NN , NNP NNP MD VB IN NNP NNP IN NNP NNP NNP .\nMehmet Ali Talat holding an olive branch after voting Turkish Cypriot Prime Minister Mehmet Ali Talat has won Sunday presidential election in the breakaway enclave .\tNNP NNP NNP VBG DT JJ NN IN VBG JJ JJ NNP NNP NNP NNP NNP VBZ VBN NNP JJ NN IN DT NN NN .\nWith all the votes counted , Mr. Talat had more than 55 percent of the vote , while his nearest rival won just under 23 percent .\tIN PDT DT NNS VBN , NNP NNP VBD JJR IN CD NN IN DT NN , IN PRP$ JJS NN VBD RB IN CD NN .\nNine candidates were running .\tCD NNS VBD VBG .\nMr. Talat will replace 81-year-old Rauf Denktash , who has led the self-declared Turkish Cypriot state for decades and did not seek re-election .\tNNP NNP MD VB JJ NNP NNP , WP VBZ VBN DT JJ JJ JJ NN IN NNS CC VBD RB VB NN .\nWhen the vote result was announced , Mr. Talat immediately called for new reunification talks with Greek Cypriots .\tWRB DT NN NN VBD VBN , NNP NNP RB VBD IN JJ NN NNS IN JJ NNS .\nCyprus has been divided between Greek and Turkish Cypriot communities since 1974 .\tNNP VBZ VBN VBN IN JJ CC JJ NN NNS IN CD .\nTurkish Cypriots voted last year in favor of a U.N. reunification plan , but Greek Cypriots rejected it .\tJJ NNS VBD JJ NN IN NN IN DT NNP NN NN , CC JJ NNS VBD PRP .\nSyria says it has arrested kidnappers suspected of killing a Kurdish Muslim cleric , as thousands of Kurds gathered to mourn his death .\tNNP VBZ PRP VBZ VBN NNS VBN IN VBG DT NNP NNP NN , IN NNS IN NNS VBD TO VB PRP$ NN .\nAn unnamed official in the Interior Ministry told Syrian state media Wednesday that a criminal gang was believed to have kidnapped Sheikh Mohammad Maashouq al-Khaznawi three weeks ago .\tDT JJ NN IN DT NNP NNP VBD JJ NN NNS NNP IN DT JJ NN VBD VBN TO VB VBN NNP NNP NNP NNP CD NNS RB .\nOfficials from the Yekiti Kurdish Party say hospital officials in northeastern Syria found signs of torture on the cleric 's body , after it was recovered .\tNNS IN DT NNP NNP NNP VBP NN NNS IN JJ NNP VBD NNS IN NN IN DT NN POS NN , IN PRP VBD VBN .\nMeanwhile , thousands gathered in the northeastern town of Kameshli for a funeral for the sheikh , who disappeared after leaving the Islamic Studies Center in Damascus .\tRB , NNS VBD IN DT JJ NN IN NNP IN DT NN IN DT NN , WP VBD IN VBG DT NNP NNP NNP IN NNP .\nThe incident sparked a march last month by Kurds demanding to know Mr. al-Khaznawi 's whereabouts .\tDT NN VBD DT NN JJ NN IN NNS VBG TO VB NNP NNP POS NNS .\nKurdish leaders accused Syrian officials of holding the sheikh .\tJJ NNS VBD JJ NNS IN VBG DT NN .\nAuthorities denied the charge .\tNNS VBD DT NN .\nVenezuela is blaming the United States for deteriorating relations between the two countries .\tNNP VBZ VBG DT NNP NNPS IN VBG NNS IN DT CD NNS .\nVice President Jose Vicente Rangel responded Wednesday to charges by U.S. officials that Caracas is seeking closer military and economic ties with Iran and North Korea .\tNNP NNP NNP NNP NNP VBD NNP TO NNS IN NNP NNS IN NNP VBZ VBG RBR JJ CC JJ NNS IN NNP CC NNP NNP .\nRangel said any moves Caracas makes are responses to what he called Washington 's aggressions in the region .\tNNP VBD DT NNS NNP VBZ VBP NNS TO WP PRP VBD NNP POS NNS IN DT NN .\nA day earlier , U.S. National Intelligence Director John Negroponte criticized Venezuela for its growing relations with Iran , North Korea and Cuba .\tDT NN RB , NNP NNP NNP NNP NNP NNP VBD NNP IN PRP$ VBG NNS IN NNP , NNP NNP CC NNP .\nNegroponte also accused Mr. Chavez of spending millions of dollars on what he called an extravagant foreign policy , at the expense of the Venezuelan people .\tNNP RB VBD NNP NNP IN VBG NNS IN NNS IN WP PRP VBD DT JJ JJ NN , IN DT NN IN DT JJ NNS .\nHe said Mr. Chavez is investing considerable sums of money in politics in other Latin American countries .\tPRP VBD NNP NNP VBZ VBG JJ NNS IN NN IN NNS IN JJ JJ JJ NNS .\nThe U.S. manufacturing sector expanded in September , suggesting the economy may overcome the effects of the two recent hurricanes .\tDT NNP NN NN VBN IN NNP , VBG DT NN MD VB DT NNS IN DT CD JJ NNS .\nThe strength of the expansion surprised some analysts who were expecting a decline .\tDT NN IN DT NN VBD DT NNS WP VBD VBG DT NN .\nMonday 's data came from a survey by the Institute for Supply Managers .\tNNP POS NNS VBD IN DT NN IN DT NNP IN NNP NNS .\nTheir index of manufacturing activity grew 5.8 points to a reading of 59.4 .\tPRP$ NN IN NN NN VBD CD NNS TO DT NN IN CD .\nAny reading over 50 indicates an expanding manufacturing sector .\tDT NN IN CD VBZ DT VBG NN NN .\nA separate report from the U.S. Commerce Department Monday said construction spending in the United States climbed to a record high in August .\tDT JJ NN IN DT NNP NNP NNP NNP VBD NN NN IN DT NNP NNPS VBD TO DT NN NN IN NNP .\nSome experts said the increase was fueled by a renewed boom in housing .\tDT NNS VBD DT NN VBD VBN IN DT VBN NN IN NN .\nMany analysts expect further expansion of the construction sector as residents rebuild homes and businesses wrecked by Hurricanes Katrina and Rita .\tJJ NNS VBP JJ NN IN DT NN NN IN NNS VB NNS CC NNS VBN IN NNP NNP CC NNP .\nPresident Bush has called for civility in the congressional debate over immigration reform , saying the United States does not have to choose between being a compassionate society and a society of law .\tNNP NNP VBZ VBN IN NN IN DT JJ NN IN NN NN , VBG DT NNP NNPS VBZ RB VB TO VB IN VBG DT JJ NN CC DT NN IN NN .\nHe spoke Friday at the National Catholic Prayer Breakfast in Washington , D.C. Mr. Bush said the immigration system should not force people into the shadows of society or leave them prey to criminals .\tPRP VBD NNP IN DT NNP NNP NNP NNP IN NNP , NNP NNP NNP VBD DT NN NN MD RB VB NNS IN DT NNS IN NN CC VB PRP VB TO NNS .\nThe Senate last week began a contentious debate over immigration reform , one that looks as though it will not be finished before Congress breaks for a two-week recess , Friday .\tDT NNP JJ NN VBD DT JJ NN IN NN NN , CD WDT VBZ IN IN PRP MD RB VB VBN IN NNP NNS IN DT JJ NN , NNP .\nMr. Bush also referred to abortion , something both he and the Catholic Church oppose .\tNNP NNP RB VBD TO NN , DT CC PRP CC DT NNP NNP VBP .\nHe drew applause from his audience when he said God 's hope shines on every child , born and unborn .\tPRP VBD NN IN PRP$ NN WRB PRP VBD NNP POS NN VBZ IN DT NN , VBN CC NN .\nHe added the United States is working to expand the protections of unborn children .\tPRP VBD DT NNP NNPS VBZ VBG TO VB DT NNS IN JJ NNS .\nAn Iraqi judge in the southern city of Basra has ordered the arrest of two British soldiers freed Monday in a controversial British raid on a local prison .\tDT JJ NN IN DT JJ NN IN NNP VBZ VBN DT NN IN CD JJ NNS VBD NNP IN DT JJ JJ NN IN DT JJ NN .\nThe charges against the soldiers include killing an Iraqi policeman and wounding another .\tDT NNS IN DT NNS VBP VBG DT JJ NN CC VBG DT .\nBritish officials said the warrants have no legal basis , because British troops come under British jurisdiction .\tJJ NNS VBD DT NNS VBP DT JJ NN , IN JJ NNS VBP IN JJ NN .\nMeanwhile , in Baghdad , the leader , Abdel Aziz al-Hakim of Iraq 's largest Shi'ite political party - Supreme Council of the Islamic Revolution in Iraq endorsed the draft constitution and urged Shi'ites to vote ' yes ' in next month 's national referendum .\tRB , IN NNP , DT NN , NNP NNP NNP IN NNP POS JJS JJ JJ NN IN NNP NNP IN DT NNP NNP IN NNP VBD DT NN NN CC VBD NNS TO VB `` UH `` IN JJ NN POS JJ NN .\nAlso in Baghdad , police say a suicide car bomb exploded near an Iraqi military checkpoint killing two soldiers .\tRB IN NNP , NNS VBP DT NN NN NN VBD IN DT JJ JJ NN VBG CD NNS .\nAnd the United Nations World Food Program warns that a lack of donors means it will not be able to feed about three million people in Iraq , more than half of them children .\tCC DT NNP NNP NNP NNP NNP VBZ IN DT NN IN NNS VBZ PRP MD RB VB JJ TO VB IN CD CD NNS IN NNP , JJR IN NN IN PRP NNS .\nU.S. officials have been allowed for the first time to see an American teacher who has been jailed in North Korea on charges of illegally entering the country .\tNNP NNS VBP VBN VBN IN DT JJ NN TO VB DT JJ NN WP VBZ VBN VBN IN NNP NNP IN NNS IN RB VBG DT NN .\nState Department spokesman P.J. Crowley said Monday that a U.S. diplomat , two doctors and a translator were in Pyongyang from Monday through Wednesday of last week .\tNNP NNP NN NNP NNP VBD NNP IN DT NNP NN , CD NNS CC DT NN VBD IN NNP IN NNP IN NNP IN JJ NN .\nHe said he believed the meeting with 30-year-old Aijalon Gomes took place at a hospital .\tPRP VBD PRP VBD DT NN IN JJ NNP NNP VBD NN IN DT NN .\nThe spokesman added that the United States is continuing to seek his immediate release because of health worries .\tDT NN VBD IN DT NNP NNPS VBZ VBG TO VB PRP$ JJ NN IN IN NN NNS .\nGomes , who had worked as an English teacher in Seoul , was arrested in January and has been sentenced to eight years of hard labor .\tNNP , WP VBD VBN IN DT JJ NN IN NNP , VBD VBN IN NNP CC VBZ VBN VBN TO CD NNS IN JJ NN .\nNorth Korea said last month that he had attempted suicide .\tNNP NNP VBD JJ NN IN PRP VBD VBN NN .\nRussia and France have agreed on a six-point plan for a permanent truce in Georgia .\tNNP CC NNP VBP VBN IN DT JJ NN IN DT JJ NN IN NNP .\nThe plan , which awaits Georgian approval , includes provisions for what officials are calling an ' international discussion ' on the future status of South Ossetia and Abkhazia - the two pro-Russian breakaway regions of northern Georgia .\tDT NN , WDT VBZ JJ NN , VBZ NNS IN WP NNS VBP VBG DT `` JJ NN `` IN DT JJ NN IN NNP NNP CC NNP IN DT CD JJ NN NNS IN JJ NNP .\nRussian President Dmitri Medvedev said the plan also includes : provisions for the renunciation of force by all parties , a halt to military action , unhindered access to humanitarian aid , the return of Georgian forces to their pre-conflict positions , and the continued presence of Russian peacekeepers in the two rebellious territories .\tJJ NNP NNP NNP VBD DT NN RB VBZ IN NNS IN DT NN IN NN IN DT NNS , DT NN TO JJ NN , JJ NN TO JJ NN , DT NN IN JJ NNS TO PRP$ JJ NNS , CC DT JJ NN IN JJ NNS IN DT CD JJ NNS .\nA Pakistani army official says government troops have killed 18 militants who attacked a military checkpoint near the Afghan border .\tDT JJ NN NN VBZ NN NNS VBP VBN CD NNS WP VBD DT JJ NN IN DT JJ NN .\nMajor General Waheed Arshad says Tuesday 's violence erupted when around 40 militants fired at a military patrol in North Waziristan , in Pakistan 's northwest .\tNNP NNP NNP NNP VBZ NNP POS NN VBD WRB IN CD NNS VBD IN DT JJ NN IN NNP NNP , IN NNP POS NN .\nThe government troops responded , backed by helicopter gunships .\tDT NN NNS VBD , VBN IN NN NNS .\nAlso in North Waziristan today , four soldiers were abducted by suspected militants near the town of Bannu .\tRB IN NNP NNP NN , CD NNS VBD VBN IN JJ NNS IN DT NN IN NNP .\nAnd in South Waziristan , a roadside bomb wounded six paramilitary soldiers Tuesday near the Afghan border .\tCC IN NNP NNP , DT NN NN VBD CD JJ NNS NNP IN DT JJ NN .\nViolence has risen in Pakistan since security forces stormed the radical Red Mosque in the capital , Islamabad , earlier this month following a week long standoff .\tNN VBZ VBN IN NNP IN NN NNS VBD DT JJ NNP NNP IN DT NN , NNP , RBR DT NN VBG DT NN RB NN .\nMore than 100 people were killed .\tJJR IN CD NNS VBD VBN .\nIndian police say the lone surviving gunman in the deadly Mumbai attacks will be formally charged in the case on Wednesday .\tJJ NNS VBP DT NN VBG NN IN DT JJ NNP NNS MD VB RB VBN IN DT NN IN NNP .\nPolice say Pakistani national Mohammed Ajmal Kasab will be charged with ' waging war ' in the November attacks .\tNNS VBP JJ JJ NNP NNP NNP MD VB VBN IN `` VBG NN `` IN DT NNP NNS .\nAuthorities say several other suspects will also be charged for allegedly helping to plan the assault .\tNNS VBP JJ JJ NNS MD RB VB VBN IN RB VBG TO VB DT NN .\nThe Mumbai attacks were carried out over a three-day period , killing more than 170 people .\tDT NNP NNS VBD VBN RP IN DT JJ NN , VBG JJR IN CD NNS .\nThe attacks have raised tensions between India and neighboring Pakistan , both nuclear-armed countries that have fought three wars .\tDT NNS VBP VBN NNS IN NNP CC JJ NNP , DT JJ NNS WDT VBP VBN CD NNS .\nIndia has blamed the attacks on a Pakistan-based militant group , Lashkar-e-Taiba and has accused Pakistan of not doing enough to bring those responsible to justice .\tNNP VBZ VBN DT NNS IN DT JJ JJ NN , NNP CC VBZ VBN NNP IN RB VBG RB TO VB DT JJ TO NN .\nPakistan has admitted that the Mumbai attacks were partly planned in Pakistan .\tNNP VBZ VBN IN DT NNP NNS VBD RB VBN IN NNP .\nBut Pakistan denies India 's charge that elements in Pakistan 's intelligence services may have been involved .\tCC NNP VBZ NNP POS NN IN NNS IN NNP POS NN NNS MD VB VBN VBN .\nAfghanistan 's Health Ministry has confirmed the presence of bird flu in eastern Nangarhar province .\tNNP POS NNP NNP VBZ VBN DT NN IN NN NN IN JJ NNP NN .\nHealth Ministry Deputy Faizullah Kakar told VOA that the deadly H5N1 strain of bird flu virus was confirmed by officials Friday .\tNNP NNP NNP NNP NNP VBD NNP IN DT JJ NNP NN IN NN NN NN VBD VBN IN NNS NNP .\nA team of doctors also suspected a human case of bird flu in the region but discovered the person was suffering from malaria .\tDT NN IN NNS RB VBD DT JJ NN IN NN NN IN DT NN CC VBD DT NN VBD VBG IN NN .\nThe area has been quarantined , and the Health Ministry says officials have begun an information campaign .\tDT NN VBZ VBN VBN , CC DT NNP NNP VBZ NNS VBP VBN DT NN NN .\nEarlier this week , Afghan authorities ordered the slaughter of birds in both Nangarhar and Kunar provinces , suspecting an outbreak of bird flu .\tRBR DT NN , JJ NNS VBD DT NN IN NNS IN DT NNP CC NNP NNS , VBG DT NN IN NN NN .\nLast year , Afghanistan discovered cases of the H5N1 virus in birds , but not humans .\tJJ NN , NNP VBD NNS IN DT NNP NN IN NNS , CC RB NNS .\nThe deadly strain of the bird flu virus has killed at least 160 people worldwide since 2003 .\tDT JJ NN IN DT NN NN NN VBZ VBN IN JJS CD NNS JJ IN CD .\nEgyptian President Hosni Mubarak has sought to defuse anger over his recent remarks about Shi'ite Muslims being more loyal to Iran than to their home countries , saying he was referring only to religion .\tJJ NNP NNP NNP VBZ VBN TO VB NN IN PRP$ JJ NNS IN NNP NNPS VBG RBR JJ TO NNP IN TO PRP$ NN NNS , VBG PRP VBD VBG RB TO NN .\nIn an interview published Saturday in the official Akhbar al-Youm newspaper , Mr. Mubarak says he only wanted to warn of threats to Iraq 's unity and sovereignty .\tIN DT NN VBN NNP IN DT JJ NNP NNP NN , NNP NNP VBZ PRP RB VBD TO VB IN NNS TO NNP POS NN CC NN .\nLast week , Mr. Mubarak told al-Arabiya television during an interview that civil war in Iraq had already begun among Shi'ites , Sunnis , Kurds and foreign fighters from Asia .\tJJ NN , NNP NNP VBD JJ NN IN DT NN IN JJ NN IN NNP VBD RB VBN IN NNS , NNP , NNP CC JJ NNS IN NNP .\nThe Egyptian president also said Iran has significant influence over Iraq 's majority Shi'ite population .\tDT JJ NN RB VBD NNP VBZ JJ NN IN NNP POS NN NNP NN .\nIraqi leaders and Shi'ites across the region denounced Mr. Mubarak 's remarks and accused him of fueling sectarian tensions between Islam 's two main sects .\tJJ NNS CC NNS IN DT NN VBD NNP NNP POS NNS CC VBD PRP IN VBG JJ NNS IN NNP POS CD JJ NNS .\nU.S. military officials say wanted terrorist Abu Musab al-Zarqawi recently escaped capture by U.S. troops in Iraq , but he left behind several key pieces of intelligence .\tNNP JJ NNS VBP VBN JJ NNP NNP NNP RB VBD NN IN NNP NNS IN NNP , CC PRP VBD IN JJ JJ NNS IN NN .\nA covert military unit tasked with finding the leader of Iraq 's insurgency says Zarqawi jumped from a moving vehicle near a checkpoint on February 20 , not far from the western city of Ramadi .\tDT JJ JJ NN VBD IN VBG DT NN IN NNP POS NN VBZ NNP VBD IN DT VBG NN IN DT NN IN NNP CD , RB RB IN DT JJ NN IN NNP .\nTroops gave chase and stopped the vehicle , which they say contained the terrorist leader 's laptop computer and about $ 1,00,000 in euros .\tNNP VBD NN CC VBD DT NN , WDT PRP VBP VBN DT JJ NN POS NN NN CC IN $ CD IN NNS .\nAt least one Zarqawi associate was arrested .\tIN JJS CD NNP NN VBD VBN .\nU.S. Defense Secretary Donald Rumsfeld told reporters in Washington Tuesday that Zarqawi 's network may be small , but is very lethal and has carried out a large number of attacks .\tNNP NNP NNP NNP NNP VBD NNS IN NNP NNP IN NNP POS NN MD VB JJ , CC VBZ RB JJ CC VBZ VBN RP DT JJ NN IN NNS .\nThe United States is offering a $ 25 million reward for Zarqawi 's capture .\tDT NNP NNPS VBZ VBG DT $ CD CD NN IN NNP POS NN .\nBurmese state media say security forces have seized drugs , drug-making equipment and weapons near Burma 's border with China , where troops recently targeted rebel militias .\tJJ NN NNS VBP NN NNS VBP VBN NNS , NN NN CC NNS IN NNP POS NN IN NNP , WRB NNS RB VBD JJ NNS .\nMedia reports say troops found tens of thousands of stimulant narcotic pills along with weapons during a raid this week in Kokang , a mainly ethnic-Chinese region in Burma 's northeastern Shan state .\tNNS NNS VBP NNS VBD NNS IN NNS IN NN JJ NNS IN IN NNS IN DT NN DT NN IN NNP , DT RB JJ NN IN NNP POS JJ NNP NN .\nThe region is known for drug smuggling .\tDT NN VBZ VBN IN NN NN .\nBurma launched an offensive against the rebel Myanmar National Democratic Alliance Army last month , forcing more than 30,000 people to leave their homes and cross into China 's southern Yunnan province .\tNNP VBD DT NN IN DT NN NNP NNP NNP NNP NNP JJ NN , VBG JJR IN CD NNS TO VB PRP$ NNS CC NN IN NNP POS JJ NNP NN .\nMany Burmese refugees have since returned home .\tJJ JJ NNS VBP IN VBN NN .\nBurma has been pressuring ethnic militia members to give up their arms and become border guards , ahead of the country 's national elections set for next year , the first in nearly two decades .\tNNP VBZ VBN VBG JJ NN NNS TO VB RP PRP$ NNS CC VB NN NNS , RB IN DT NN POS JJ NNS VBN IN JJ NN , DT NN IN RB CD NNS .\nPalestinian witnesses say Israeli troops killed two Palestinian militants after a gunbattle near the West Bank city of Bethlehem early Friday .\tJJ NNS VBP JJ NNS VBD CD JJ NNS IN DT NN IN DT NNP NNP NN IN NNP JJ NNP .\nThe Israeli military says two Islamic Jihad members were killed after they opened fire on Israeli special forces operating in the area .\tDT JJ NN VBZ CD NNP NNP NNS VBD VBN IN PRP VBD NN IN JJ JJ NNS VBG IN DT NN .\nSeparately , Israel carried out an air strike on a metal workshop in Gaza City .\tRB , NNP VBD RP DT NN NN IN DT NN NN IN NNP NNP .\nPalestinians say three people were wounded in that attack .\tNNS VBP CD NNS VBD VBN IN DT NN .\nThe incidents occurred hours after Palestinian President Mahmoud Abbas said Palestinian militant groups have agreed to suspend attacks on Israel .\tDT NNS VBD NNS IN JJ NNP NNP NNP VBD JJ JJ NNS VBP VBN TO VB NNS IN NNP .\nMr. Abbas says all Palestinian factions agreed to cease actions that may give others an excuse to retaliate .\tNNP NNP VBZ DT JJ NNS VBD TO VB NNS WDT MD VB NNS DT NN TO VB .\nIsrael has carried out a nearly two-month-long Gaza offensive in an effort to stop cross-border rocket fire and to press for the release of a captured Israeli soldier .\tNNP VBZ VBN RP DT RB JJ NNP NN IN DT NN TO VB JJ NN NN CC TO VB IN DT NN IN DT VBN JJ NN .\nNearly 200 Palestinians , many of them militants , have been killed in the Israeli offensive .\tRB CD NNS , NN IN PRP NNS , VBP VBN VBN IN DT JJ NN .\nRussia has called on Iran to cooperate with the International Atomic Energy Agency and clear up remaining questions about its nuclear program .\tNNP VBZ VBN IN NNP TO VB IN DT NNP NNP NNP NNP CC JJ IN VBG NNS IN PRP$ JJ NN .\nThe Russian foreign ministry made the comments in a statement Saturday evening after the U.N. nuclear agency 's board found that Iran failed to comply with international nuclear safeguard agreements , but did not vote to refer the matter to the U.N. Security Council .\tDT JJ JJ NN VBD DT NNS IN DT NN NNP NN IN DT NNP JJ NN POS NN VBD IN NNP VBD TO VB IN JJ JJ NN NNS , CC VBD RB VB TO VB DT NN TO DT NNP NNP NNP .\nRussia , which is helping Iran build a nuclear power plant , was one of 12 nations that abstained from voting on Saturday 's IAEA resolution .\tNNP , WDT VBZ VBG NNP VB DT JJ NN NN , VBD CD IN CD NNS WDT VBD IN VBG IN NNP POS NNP NN .\nThe United Nations has once again urged the kidnappers of one of its officials to make direct contact and called for his immediate release .\tDT NNP NNP VBZ RB RB VBD DT NNS IN CD IN PRP$ NNS TO VB JJ NN CC VBN IN PRP$ JJ NN .\nAmerican citizen John Solecki , the head of the U.N. refugee agency ( UNHCR ) in Quetta , Pakistan , was abducted two weeks ago , on February 2 , in southwestern Baluchistan province .\tJJ NN NNP NNP , DT NN IN DT NNP NN NN LRB NNP RRB IN NNP , NNP , VBD VBN CD NNS RB , IN NNP CD , IN JJ NNP NN .\nA previously unknown group , the Baluchistan Liberation United Front , is threatening to kill Solecki if Pakistan 's government does not release Baluch prisoners .\tDT RB JJ NN , DT NNP NNP NNP NNP , VBZ VBG TO VB NNP IN NNP POS NN VBZ RB VB NNP NNS .\nOn Monday , the group extended a 72-hour deadline it had given for its demands to be met .\tIN NNP , DT NN VBD DT JJ NN PRP VBD VBN IN PRP$ NNS TO VB VBN .\nIn a statement , the United Nations appealed for his immediate and safe release and asked for the kidnappers to initiate contact with U.N. officials .\tIN DT NN , DT NNP NNP VBD IN PRP$ JJ CC JJ NN CC VBD IN DT NNS TO VB NN IN NNP NNS .\nLast week , a local news agency in Pakistan broadcast what appeared to be a video of Solecki pleading for his release .\tJJ NN , DT JJ NN NN IN NNP VBD WP VBD TO VB DT NN IN NNP VBG IN PRP$ NN .\nAn international conference on world food security and climate change is taking place in Rome .\tDT JJ NN IN NN NN NN CC NN NN VBZ VBG NN IN NNP .\nU.N. Secretary-General Ban Ki-moon is there , along with French President Nicolas Sarkozy and Iranian President Mahmoud Ahmadinejad .\tNNP NNP NNP NNP VBZ RB , IN IN JJ NNP NNP NNP CC JJ NNP NNP NNP .\nExperts say global warming is having an impact on the world 's food supply and may impact it even more in the future .\tNNS VBP JJ NN VBZ VBG DT NN IN DT NN POS NN NN CC MD VB PRP RB RBR IN DT NN .\nVOA 's Carolyn Presutti explains .\tNNP POS NNP NNP VBZ .\nSaudi officials say security forces have killed a suspected militant in the western city of Jeddah after the man tried to use a hand grenade against them .\tJJ NNS VBP NN NNS VBP VBN DT JJ NN IN DT JJ NN IN NNP IN DT NN VBD TO VB DT NN NN IN PRP .\nOfficials said the incident took place Saturday after security forces surrounded the man 's vehicle in the city 's Jamia district .\tNNS VBD DT NN VBD NN NNP IN NN NNS VBN DT NN POS NN IN DT NN POS NNP NN .\nThey said police found guns , ammunition , hand grenades , pipe bombs , and money in the car .\tPRP VBD NN VBD NNS , NN , NN NNS , NN NNS , CC NN IN DT NN .\nSaudi officials have blamed al-Qaida militants for a wave of violence that has claimed dozens of lives in the kingdom since May of last year .\tJJ NNS VBP VBN NNP NNS IN DT NN IN NN WDT VBZ VBN NNS IN NNS IN DT NN IN NNP IN JJ NN .\nPresident Bush has dispatched the State Department 's new undersecretary for public diplomacy to help shore up America 's image in the Middle East .\tNNP NNP VBZ VBN DT NNP NNP POS JJ JJ IN JJ NN TO VB VB RP NNP POS NN IN DT NNP NNP .\nKaren Hughes , a long-time advisor to the president , is slated to arrive in Egypt Sunday as part of what she says is a campaign to counter a terrorist message of hate with one of freedom and hope .\tNNP NNP , DT JJ NN TO DT NN , VBZ VBN TO VB IN NNP NNP IN NN IN WP PRP VBZ VBZ DT NN TO VB DT JJ NN IN NN IN CD IN NN CC NN .\nSworn in earlier this month , she says one of her primary roles is putting a human face on American policy .\tNNP IN RBR DT NN , PRP VBZ CD IN PRP$ JJ NNS VBZ VBG DT JJ NN IN JJ NN .\nDuring her five-day trip , which includes stops in Saudi Arabia and Turkey , she will meet with senior government officials , students and religious leaders .\tIN PRP$ JJ NN , WDT VBZ NNS IN NNP NNP CC NNP , PRP MD VB IN JJ NN NNS , NNS CC JJ NNS .\nHer trip comes as numerous polls indicate a surge in anti-Americanism in Europe , the Middle East and Asia .\tPRP$ NN VBZ IN JJ NNS VBP DT NN IN NN IN NNP , DT NNP NNP CC NNP .\nWall Street 's most famous stock index , the Dow Jones Industrial Average , set a record closing high on Thursday , ending above 12,000 for the first time .\tNNP NNP POS JJS JJ NN NN , DT NNP NNP NNP NNP , VBD DT NN VBG JJ IN NNP , VBG IN CD IN DT JJ NN .\nHowever , the closing figure of 12,012 points was below the record level of 12,049 points reached during trading Wednesday .\tRB , DT NN NN IN CD NNS VBD IN DT NN NN IN CD NNS VBN IN NN NNP .\nThe market was driven by investor optimism about corporate earnings after strong earnings reports from soft-drink giant Coca-Cola and the two largest U.S. providers of phone service , AT&T and Verizon .\tDT NN VBD VBN IN NN NN IN JJ NNS IN JJ NNS NNS IN NN NN NNP CC DT CD JJS NNP NNS IN NN NN , NNP CC NNP .\nInvestors seemed to discount some new reports that indicated a weakening of the overall U.S. economy .\tNNS VBD TO VB DT JJ NNS IN VBD DT NN IN DT JJ NNP NN .\nBoth the broad market S&P 500 index and NASDAQ Composite Index also showed gains .\tDT DT JJ NN NNP CD NN CC NNP NNP NNP RB VBD NNS .\nThe Dow Jones Industrial Average is a measure of the share value of 30 top U.S. companies .\tDT NNP NNP NNP NNP VBZ DT NN IN DT NN NN IN CD JJ NNP NNS .\nBelarus security forces say they have uncovered a plot to seize control of the government on the day of the March 19 presidential elections .\tNNP NN NNS VBP PRP VBP VBN DT NN TO VB NN IN DT NN IN DT NN IN DT NNP CD JJ NNS .\nBelarus security ( KGB ) chief Stepan Sukhorenko says officials found fake exit polls from an unregistered non-governmental organization to be released by the opposition election day .\tNNP NN LRB NNP RRB NN NNP NNP VBZ NNS VBD JJ NN NNS IN DT JJ JJ NN TO VB VBN IN DT NN NN NN .\nHe says the polls showed opposition candidate Alexander Milinkevich beating incumbent President Alexander Lukashenko by approximately 54 percent to 41 percent .\tPRP VBZ DT NNS VBD NN NN NNP NNP VBG JJ NNP NNP NNP IN RB CD NN TO CD NN .\nSukhorenko says the opposition planned to detonate explosives in a crowd of their own supporters as they protested what the opposition would insist were fraudulent official election results .\tNNP VBZ DT NN VBN TO VB NNS IN DT NN IN PRP$ JJ NNS IN PRP VBD WP DT NN MD VB VBD JJ JJ NN NNS .\nMr. Lukashenko is running for a third term .\tNNP NNP VBZ VBG IN DT JJ NN .\nThe United States has branded him Europe 's last dictator for suppressing human rights and free speech .\tDT NNP NNPS VBZ VBN PRP NNP POS JJ NN IN VBG JJ NNS CC JJ NN .\nMilinkevich says he has planned a rally Thursday in Minsk without the permission of authorities .\tNNP VBZ PRP VBZ VBN DT NN NNP IN NNP IN DT NN IN NNS .\nA written statement purportedly from Taleban leader Mullah Omar mourns the death of Abu Musab al-Zarqawi , and vows to keep fighting in Afghanistan .\tDT JJ NN RB IN NNP NN NNP NNP VBZ DT NN IN NNP NNP NNP , CC VBZ TO VB VBG IN NNP .\nIn the statement that surfaced Friday in Pakistan , Omar said Zarqawi 's death - described as ' martyrdom ' - would not weaken the resistance movement in Iraq or stop the battle in Afghanistan .\tIN DT NN WDT VBD NNP IN NNP , NNP VBD NNP POS NN : VBN IN `` NN `` : MD RB VB DT NN NN IN NNP CC VB DT NN IN NNP .\nThe authenticity of the statement could not be confirmed .\tDT NN IN DT NN MD RB VB VBN .\nA wave of bomb attacks across Iraq killed at least 22 people Sunday .\tDT NN IN NN NNS IN NNP VBD IN JJS CD NNS NNP .\nTwo explosions near a Shi'ite Muslim mosque in Baghdad killed 15 people and wounded 60 others .\tCD NNS IN DT NNP NNP NN IN NNP VBD CD NNS CC VBD CD NNS .\nMany of the casualties were caused by a suicide attacker who drove into a crowd of people helping victims of the first bomb , then detonated his vehicle .\tNN IN DT NNS VBD VBN IN DT NN NN WP VBD IN DT NN IN NNS VBG NNS IN DT JJ NN , RB VBD PRP$ NN .\nA separate roadside bomb blast in eastern Baghdad Sunday killed an American soldier .\tDT JJ NN NN NN IN JJ NNP NNP VBD DT JJ NN .\nTo the north , in Tikrit , two suicide bombers killed six people , including four policemen , outside a police academy .\tTO DT NN , IN NNP , CD NN NNS VBD CD NNS , VBG CD NNS , IN DT NN NN .\nIn other developments , Pakistani officials say kidnappers have released a Pakistani embassy employee who was abducted earlier this month in Baghdad .\tIN JJ NNS , JJ NNS VBP NNS VBP VBN DT JJ NN NN WP VBD VBN RBR DT NN IN NNP .\nAnd , Iraq 's political leaders are continuing efforts to form a government .\tCC , NNP POS JJ NNS VBP VBG NNS TO VB DT NN .\nNegotiations among major groups have yet to yield a Cabinet , nearly three months after the country 's historic elections , on January 30 .\tNNS IN JJ NNS VBP RB TO VB DT NNP , RB CD NNS IN DT NN POS JJ NNS , IN NNP CD .\nThousands of Iranians have gathered outside the former U.S. Embassy in Tehran to commemorate the 27th anniversary of the seizure of the building by Islamic radicals .\tNNS IN NNS VBP VBN IN DT JJ NNP NNP IN NNP TO VB DT JJ NN IN DT NN IN DT NN IN NNP NNS .\nThe demonstrators , mostly students , carried banners and shouted slogans proclaiming ' Death to America ' and Death to Israel . '\tDT NNS , RB NNS , VBD NNS CC VBD NNS VBG `` NN TO NNP `` CC NNP TO NNP . ``\nIslamic radicals stormed the U.S. Embassy on November fourth , 1979 , and held American diplomats for 444 days .\tNNP NNS VBD DT NNP NNP IN NNP JJ , CD , CC VBD JJ NNS IN CD NNS .\nThe takeover came shortly after the Islamic Revolution led by Ayatollah Ruhollah Khomeini that toppled the Shah of Iran .\tDT NN VBD RB IN DT JJ NN VBN IN NNP NNP NNP WDT VBD DT NNP IN NNP .\nThe United States and other Western nations are trying to persuade the U.N. Security Council to impose sanctions on Iran because of its nuclear program .\tDT NNP NNPS CC JJ JJ NNS VBP VBG TO VB DT NNP NNP NNP TO VB NNS IN NNP IN IN PRP$ JJ NN .\nThe West says Iran is secretly trying to develop nuclear weapons .\tDT NNP VBZ NNP VBZ RB VBG TO VB JJ NNS .\nTehran says its nuclear program is meant to provide electricity .\tNNP VBZ PRP$ JJ NN VBZ VBN TO VB NN .\nBulgaria has criticized Libya 's Supreme Court for postponing a ruling on the appeal of five Bulgarian nurses and a Palestinian doctor sentenced to death on charges of deliberately infecting children with AIDS .\tNNP VBZ VBN NNP POS NNP NNP IN VBG DT NN IN DT NN IN CD JJ NNS CC DT JJ NN VBN TO NN IN NNS IN RB VBG NNS IN NNP .\nBulgarian President Georgi Parvanov says the court 's decision to delay the ruling until January 31st prolongs the tragedy of the detainees .\tJJ NNP NNP NNP VBZ DT NN POS NN TO VB DT NN IN NNP CD VBZ DT NN IN DT NNS .\nRelatives of some of the infected children fought with riot police when the postponement was announced .\tNNS IN DT IN DT JJ NNS VBN IN NN NNS WRB DT NN VBD VBN .\nThe court gave no reason for putting off its decision .\tDT NN VBD DT NN IN VBG RP PRP$ NN .\nThe defendants deny the charges , and human rights groups say Libyan police used torture to force them to confess .\tDT NNS VBP DT NNS , CC JJ NNS NNS VBP JJ NNS VBD NN TO VB PRP TO VB .\nHere in Washington , State Department spokesman Adam Ereli repeated U.S. calls for the defendants ' release and said establishment of normalized relations with Libya depends on Libyan progress on human rights .\tRB IN NNP , NNP NNP NN NNP NNP VBD NNP NNS IN DT NNS POS NN CC VBD NN IN JJ NNS IN NNP VBZ IN JJ NN IN JJ NNS .\nSome pro-opposition demonstrators in Ukraine have ended a two-week vigil in the capital after lawmakers approved a series of electoral reforms .\tDT JJ NNS IN NNP VBP VBN DT JJ NN IN DT NN IN NNS VBD DT NN IN JJ NNS .\nTens of thousands of people had packed Kiev 's main square following a flawed presidential runoff election on November 21 .\tNNS IN NNS IN NNS VBD VBN NNP POS JJ NN VBG DT JJ JJ NN NN IN NNP CD .\nOpposition leader Viktor Yushchenko Wednesday , urged the masses to return home , but to look toward the court-ordered repeat election on December 26 .\tNNP NN NNP NNP NNP , VBD DT NNS TO VB NN , CC TO VB IN DT JJ NN NN IN NNP CD .\nParliament Wednesday adopted the election reforms aimed at preventing fraud in the new vote .\tNNP NNP VBD DT NN NNS VBN IN VBG NN IN DT JJ NN .\nAlso included are constitutional changes that transfer some presidential powers to parliament .\tRB VBN VBP JJ NNS IN VBP DT JJ NNS TO NN .\nThe opposition has also ended a blockade on government buildings .\tDT NN VBZ RB VBN DT NN IN NN NNS .\nSome demonstrators remain in Kiev .\tDT NNS VBP IN NNP .\nMeanwhile , outgoing President Leonid Kuchma has fired Prosecutor General Hennadiy Vasylyev following opposition demands for his dismissal in connection with the election crisis .\tRB , VBG NNP NNP NNP VBZ VBN NNP NNP NNP NNP VBG NN NNS IN PRP$ NN IN NN IN DT NN NN .\nRival presidential candidate Prime Minister Viktor Yanukovych says the new electoral measures will not stop fraud .\tJJ JJ NN NNP NNP NNP NNP VBZ DT JJ JJ NNS MD RB VB NN .\nPresident Bush has nominated the acting administrator of the U.S. Environmental Protection Agency to be its new head .\tNNP NNP VBZ VBN DT JJ NN IN DT NNP NNP NNP NNP TO VB PRP$ JJ NN .\nAt the White House Friday , the president asked Congress to promptly approve Steve Johnson for the position .\tIN DT NNP NNP NNP , DT NN VBD NNP TO RB VB NNP NNP IN DT NN .\nMr. Johnson is a professional scientist and a career EPA employee .\tNNP NNP VBZ DT JJ NN CC DT NN NNP NN .\nMr. Bush also asked Congress to get his proposed ' Clear Skies ' legislation to his desk for signing this year .\tNNP NNP RB VBD NNP TO VB PRP$ VBN `` NNP NNPS `` NN TO PRP$ NN IN NN DT NN .\nHe called the proposal , which aims to dramatically reduce power plant emissions , a ' common sense , pro-environment and pro-jobs ' initiative .\tPRP VBD DT NN , WDT VBZ TO RB VB NN NN NNS , DT `` JJ NN , NN CC NNS `` NN .\nHowever , environmental groups have criticized the proposed legislation , saying it would actually weaken existing air pollution regulations , known as the ' Clean Air Act . '\tRB , JJ NNS VBP VBN DT VBN NN , VBG PRP MD RB VB VBG NN NN NNS , VBN IN DT `` NNP NNP NNP . ``\nInsurgents in Iraq killed at least 11 people Monday , including a U.S. soldier , in a series of bombings and shootings five days before a referendum on the country 's proposed new constitution .\tNNS IN NNP VBD IN JJS CD NNS NNP , VBG DT NNP NN , IN DT NN IN NNS CC NNS CD NNS IN DT NN IN DT NN POS VBN JJ NN .\nThe soldier died in a suicide bombing at a checkpoint outside Baghdad 's heavily fortified Green Zone .\tDT NN VBD IN DT NN VBG IN DT NN IN NNP POS RB VBN NNP NNP .\nElsewhere in the capital , gunmen opened fire on a convoy carrying delegates from the Arab League .\tRB IN DT NN , NNS VBD NN IN DT NN VBG NNS IN DT NNP NNP .\nThere were reports of casualties among guards assigned to the convoy .\tEX VBD NNS IN NNS IN NNS VBN TO DT NN .\nThe attacks came as negotiators from Shi'ite and Kurdish factions that dominate parliament continued talks aimed at winning last-minute Sunni Arab backing for the draft constitution .\tDT NNS VBD IN NNS IN NNP CC NNP NNS WDT VBP NN VBD NNS VBN IN VBG JJ NNP NNP NN IN DT NN NN .\nU.S. Ambassador Zalmay Khalilzad was also attending the Baghdad talks .\tNNP NNP NNP NNP VBD RB VBG DT NNP NNS .\nParticipants say the negotiators remain far apart on several key issues , including federalism provisions that Sunnis Arabs fear will give too much economic and political power to Iraq 's Shi'ites and Kurds .\tNNS VBP DT NNS VBP RB RB IN JJ JJ NNS , VBG NN NNS WDT NNP NNS NN MD VB RB JJ JJ CC JJ NN TO NNP POS NNS CC NNS .\nA major earthquake jolted a largely empty area of the southern Atlantic Ocean Monday morning , between Antarctica and Argentina .\tDT JJ NN VBD DT RB JJ NN IN DT JJ NNP NNP NNP NN , IN NNP CC NNP .\nSeismologists around the world are on alert , but there is no sign of any tsunami triggered by the earthquake , which was measured at a magnitude of at least 7.3 .\tNNS IN DT NN VBP IN NN , CC EX VBZ DT NN IN DT NN VBN IN DT NN , WDT VBD VBN IN DT NN IN IN JJS CD .\nThe U.S. National Earthquake Information Center says the earthquake was centered about 10 kilometers below the ocean floor , nearly 350 kilometers southeast of the South Sandwich Islands .\tDT NNP NNP NNP NNP NNP VBZ DT NN VBD VBN IN CD NNS IN DT NN NN , RB CD NNS NN IN DT NNP NNP NNP .\nIt hit shortly after six hours , Universal Time .\tPRP VBD RB IN CD NNS , NNP NNP .\nScientists in Japan and Finland said they measured the quake 's strength at magnitude 7.5 and 7.4 , respectively .\tNNS IN NNP CC NNP VBD PRP VBD DT NN POS NN IN NN CD CC CD , RB .\nBritain administers the South Sandwich Islands , an uninhabited chain roughly 4,000 kilometers southeast of Buenos Aires .\tNNP VBZ DT NNP NNP NNP , DT JJ NN RB CD NNS NN IN NNP NNPS .\nArgentina also claims the islands .\tNNP RB VBZ DT NNS .\nPolice in Sweden say one person was killed and two others wounded in two almost simultaneous explosions in central Stockholm Saturday .\tNNS IN NNP VBP CD NN VBD VBN CC CD NNS VBD IN CD RB JJ NNS IN JJ NNP NNP .\nThe police say the first blast occurred in a car near a busy shopping street and left two people hurt .\tDT NNS VBP DT JJ NN VBD IN DT NN IN DT JJ NN NN CC VBD CD NNS VBN .\nShortly afterward , a second explosion was heard on the same street , and police later found one person dead at the scene .\tRB RB , DT JJ NN VBD VBN IN DT JJ NN , CC NNS RB VBD CD NN JJ IN DT NN .\nA police spokeswoman says it is unclear what caused the blasts and if they are linked .\tDT NN NN VBZ PRP VBZ JJ WP VBD DT NNS CC IN PRP VBP VBN .\nThe Associated Press quotes a rescue services spokesman as saying the car that exploded first contained gas canisters .\tDT NNP NNP VBZ DT NN NNS NN IN VBG DT NN WDT VBD RB VBN NN NNS .\nNo other details were immediately available .\tDT JJ NNS VBD RB JJ .\nIran 's new hard-line nuclear negotiator says Tehran will offer new proposals in its standoff with the West over its nuclear program .\tNNP POS JJ JJ JJ NN VBZ NNP MD VB JJ NNS IN PRP$ NN IN DT NNP IN PRP$ JJ NN .\nAli Larijani made the announcement Friday in Vienna , after a meeting with International Atomic Energy Agency , IAEA , chief Mohamed ElBaradei .\tNNP NNP VBD DT NN NNP IN NNP , IN DT NN IN NNP NNP NNP NNP , NNP , JJ NNP NNP .\nMr. Larijani told a news conference that Iranian President Mahmoud Ahmadinejad will need about a month to lay out new proposals .\tNNP NNP VBD DT NN NN IN JJ NNP NNP NNP MD VB IN DT NN TO VB RP JJ NNS .\nHe said Tehran has not ruled out further talks with the European Union , even though the EU has broken off the talks to protest Iran 's resumption of nuclear fuel work that could lead to atomic weapons .\tPRP VBD NNP VBZ RB VBN IN JJ NNS IN DT NNP NNP , RB IN DT NNP VBZ VBN RP DT NNS TO VB NNP POS NN IN JJ NN NN WDT MD VB TO JJ NNS .\nMr. Larijani said Iran has too much power in its region to worry about U.S. and European threats to refer Iran to the U.N. Security Council .\tNNP NNP VBD NNP VBZ RB JJ NN IN PRP$ NN TO VB IN NNP CC JJ NNS TO VB NNP TO DT NNP NNP NNP .\nDetails of Mr. Larijani 's talks with the IAEA were not immediately known .\tNNS IN NNP NNP POS NNS IN DT NNP VBD RB RB VBN .\nGermany has won third place in the World cup with a late game header , beating Uruguay 03-Feb .\tNNP VBZ VBN JJ NN IN DT NNP NN IN DT JJ NN NN , VBG NNP CD .\nGermany 's Sami Khedira scored in the 82nd minute after Uruguay 's defense failed to clear a corner from Mesut Oezil .\tNNP POS NNP NNP VBD IN DT CD NN IN NNP POS NN VBD TO VB DT NN IN NNP NNP .\nThe goal ended Uruguay 's hopes of beating Germany for the first time in 82 years .\tDT NN VBD NNP POS NNS IN VBG NNP IN DT JJ NN IN CD NNS .\nThomas Mueller gave Germany the lead in the 19th minute with his fifth goal of the tournament , but Uruguayan Edinson Cavani equalized the score nine minutes later .\tNNP NNP VBD NNP DT NN IN DT JJ NN IN PRP$ JJ NN IN DT NN , CC JJ NNP NNP VBD DT NN CD NNS RB .\nUruguay took the lead early in the second half with a strike by Diego Forlan , but Marcell Jansen leveled the score for Germany within six minutes .\tNNP VBD DT NN RB IN DT JJ NN IN DT NN IN NNP NNP , CC NNP NNP VBD DT NN IN NNP IN CD NNS .\nThe championship game will be played Sunday between Spain and The Netherlands .\tDT NN NN MD VB VBN NNP IN NNP CC DT NNP .\nMore than 100 Vietnamese Montagnards were who forcibly repatriated from Cambodia earlier this month may get a chance to resettle in the United States .\tJJR IN CD JJ NNS VBD WP RB VBD IN NNP RBR DT NN MD VB DT NN TO VB IN DT NNP NNPS .\nA spokesman for the U.S. Embassy in Hanoi says U.S. and Vietnamese officials are discussing possible options , including resettling the Montagnards in the United States .\tDT NN IN DT NNP NNP IN NNP VBZ NNP CC JJ NNS VBP VBG JJ NNS , VBG VBG DT NNS IN DT NNP NNPS .\nThe spokesman tells VOA that Hanoi supports the review of the case .\tDT NN VBZ NNP IN NNP VBZ DT NN IN DT NN .\nThe Montagnards , from Vietnam 's Central Highlands were among several hundred who fled to Cambodia last year after security forces cracked down on demonstrators protesting Hanoi 's land confiscation policy and lack of religious freedom .\tDT NNS , IN NNP POS NNP NNPS VBD IN JJ CD WP VBD TO NNP JJ NN IN NN NNS VBD RP IN NNS VBG NNP POS NN NN NN CC NN IN JJ NN .\nThey were forcibly sent back to Vietnam after the United Nations denied them refugee status .\tPRP VBD RB VBN RB TO NNP IN DT NNP NNPS VBD PRP VB NN .\nOfficials in southern India say four days of torrential rains and flash floods have killed more than 130 people .\tNNS IN JJ NNP VBP CD NNS IN JJ NNS CC NN NNS VBP VBN JJR IN CD NNS .\nThe army sent troops and helicopters into Karnataka state and neighboring Andhra Pradesh to rescue stranded families and deliver emergency food and medical supplies .\tDT NN VBD NNS CC NNS IN NNP NN CC VBG NNP NNP TO VB JJ NNS CC VB NN NN CC JJ NNS .\nHundreds of thousands of people have already been evacuated .\tNNS IN NNS IN NNS VBP RB VBN VBN .\nOfficials say the rains destroyed thousands of homes .\tNNS VBP DT NNS VBD NNS IN NNS .\nFlooding has also destroyed crops , washed away roads and disrupted communication links .\tNN VBZ RB VBN NNS , VBD RB NNS CC VBN NN NNS .\nOfficials expect the death toll will rise as they reach areas that remain inaccessible .\tNNS VBP DT NN NN MD VB IN PRP VBP NNS WDT VBP JJ .\nWeather experts say the intense rains stem from a storm in the Bay of Bengal .\tNNP NNS VBP DT JJ NNS VBP IN DT NN IN DT NNP IN NNP .\nBurma is rejecting a U.S. human rights report that condemns the military-run country 's rights record .\tNNP VBZ VBG DT NNP JJ NNS NN WDT VBZ DT JJ NN POS NNS NN .\nThe official New Light of Myanmar quoted Burma 's Foreign Ministry Saturday as saying that the report carries a number of unfounded and unsubstantiated allegations of human rights violations that are aimed at smearing the country 's image .\tDT JJ NNP NNP IN NNP VBD NNP POS NNP NNP NNP IN VBG IN DT NN VBZ DT NN IN JJ CC JJ NNS IN JJ NNS NNS WDT VBP VBN IN VBG DT NN POS NN .\nOn Tuesday , the U.S. State Department released its Country Reports on Human Rights Practices for 2006 .\tIN NNP , DT NNP NNP NNP VBD PRP$ NN NNS IN NNP NNP NNPS IN CD .\nIn it , Washington categorized Burma , as well as countries including North Korea , China and Russia , as some of the world 's worst human rights offenders .\tIN PRP , NNP VBD NNP , RB RB IN NNS VBG NNP NNP , NNP CC NNP , IN DT IN DT NN POS JJS JJ NNS NNS .\nThe report accused Burma of using executions , rape , torture , random detentions , and forced relocation of entire villages , particularly of ethnic minorities , to maintain its grip on power .\tDT NN VBD NNP IN VBG NNS , NN , NN , JJ NNS , CC JJ NN IN JJ NNS , RB IN JJ NNS , TO VB PRP$ NN IN NN .\nThe U.S report also says that surveillance of political activists continues in Burma and notes that 1,100 political prisoners remain behind bars .\tDT NNP NN RB VBZ IN NN IN JJ NNS VBZ IN NNP CC VBZ IN CD JJ NNS VBP IN NNS .\nReports from Darfur say an air raid by the Sudanese army has killed at least 13 people and wounded others , including children .\tNNS IN NNP VBP DT NN NN IN DT JJ NN VBZ VBN IN JJS CD NNS CC VBN NNS , VBG NNS .\nAid groups and rebel representatives say a Sudanese military plane bombed the village of Shegag Karo in North Darfur state on Sunday .\tJJ NNS CC JJ NNS VBP DT JJ JJ NN VBD DT NN IN NNP NNP IN NNP NNP NN IN NNP .\nThe Sudanese army has not commented .\tDT JJ NN VBZ RB VBN .\nFive years of fighting in Darfur between rebels , the Sudanese government and government-backed militias has killed an estimated 2,00,000 people and displaced some 2.5 million others .\tCD NNS IN VBG IN NNP IN NNS , DT JJ NN CC JJ NNS VBZ VBN DT JJ CD NNS CC VBD DT CD CD NNS .\nOfficials from the World Health Organization say they fear Yemen could be facing a major polio epidemic , after confirming 83 cases of the disease .\tNNS IN DT NNP NNP NNP VBP PRP VBP NNP MD VB VBG DT JJ NN NN , IN VBG CD NNS IN DT NN .\nSixty-seven of the cases were found in a single province al-Hudaidah .\tCD IN DT NNS VBD VBN IN DT JJ NN NN .\nMeanwhile , health officials are investigating another 411 suspected cases across the country .\tRB , NN NNS VBP VBG DT CD JJ NNS IN DT NN .\nA first round of vaccinations was completed last month , and officials say another round is planned .\tDT JJ NN IN NNS VBD VBN JJ NN , CC NNS VBP DT NN VBZ VBN .\nYemen is one of 16 previously polio-free countries that have reported new cases of the disease since 2003 .\tNNP VBZ CD IN CD RB JJ NNS WDT VBP VBN JJ NNS IN DT NN IN CD .\nThe water-borne disease , which mostly strikes the young , attacks the nervous system and can cause paralysis and sometimes death .\tDT JJ NN , WDT RB VBZ DT JJ , VBZ DT JJ NN CC MD VB NN CC RB NN .\nReports from Syria say a small aircraft apparently used by the military has crashed near Damascus , killing three people on board .\tNNS IN NNP VBP DT JJ NN RB VBN IN DT NN VBZ VBN IN NNP , VBG CD NNS IN NN .\nWitnesses said the plane appeared to be on a training flight Sunday when it came down .\tNNS VBD DT NN VBD TO VB IN DT NN NN NNP WRB PRP VBD RB .\nThere was no immediate confirmation of the incident from Syrian officials .\tEX VBD DT JJ NN IN DT NN IN JJ NNS .\nThe plane crash happened at a time of heightened tension between Syria and Israel , which carried out an air strike deep inside Syrian territory on September 6 .\tDT NN NN VBD IN DT NN IN JJ NN IN NNP CC NNP , WDT VBD RP DT NN NN JJ IN JJ NN IN NNP CD .\nNeither country has given much information about the target of the Israeli raid .\tDT NN VBZ VBN JJ NN IN DT NN IN DT JJ NN .\nThe Olympic Flame rode in style Saturday in a Ferrari as the torch continued its trek toward Turin for the Winter Games .\tDT NNP NNP VBD IN NN NNP IN DT NNP IN DT NN VBD PRP$ NN IN NNP IN DT NNP NNPS .\nLuca Badoer , the test driver for Ferrari 's Formula One team , received the flame from a torchbearer and drove it slowly through the company 's headquarters in a red Ferrari F-430 Spider .\tNNP NNP , DT NN NN IN NNP POS NNP CD NN , VBD DT NN IN DT NN CC VBD PRP RB IN DT NN POS NN IN DT JJ NNP NNP NNP .\nFrom Maranello , the torch moved towards Reggio Emilia and Parma , where the day 's travel ended .\tIN NNP , DT NN VBD IN NNP NNP CC NNP , WRB DT NN POS NN VBD .\nThe torch moves east toward Venice Sunday and will continue traveling through Italy until it ignites the Olympic Cauldron at the Opening Ceremonies February 10th in Turin .\tDT NN VBZ JJ IN NNP NNP CC MD VB VBG IN NNP IN PRP VBZ DT NNP NNP IN DT NNP NNPS NNP CD IN NNP .\nThe U.S. space agency NASA says its Phoenix probe has touched the surface of the planet Mars with its robot arm .\tDT NNP NN NN NNP VBZ PRP$ NNP NN VBZ VBN DT NN IN DT NN NNP IN PRP$ NN NN .\nOfficials said Sunday that operators were testing the arm , which will be used to scoop up samples of Martian soil and ice for testing in the lander 's onboard laboratory .\tNNS VBD NNP IN NNS VBD VBG DT NN , WDT MD VB VBN TO VB RP NNS IN JJ NN CC NN IN NN IN DT NN POS NN NN .\nNASA released a photograph of the disturbed soil where the arm touched the ground , leaving behind a footprint-shaped impression .\tNNP VBD DT NN IN DT JJ NN WRB DT NN VBD DT NN , VBG IN DT JJ NN .\nA camera attached to the arm also took photographs of the area beneath the lander .\tDT NN VBN TO DT NN RB VBD NNS IN DT NN IN DT NN .\nThe Phoenix probe arrived on Mars a week ago .\tDT NNP NN VBD IN NNP DT NN RB .\nIt is on a three-month mission to analyze samples of Martian soil and subsurface ice , to study the history of water on Mars and to determine whether the planet could support life .\tPRP VBZ IN DT JJ NN TO VB NNS IN JJ NN CC NN NN , TO VB DT NN IN NN IN NNP CC TO VB IN DT NN MD VB NN .\nPhoenix was launched last August and traveled 679 million kilometers to reach Mars .\tNNP VBD VBN JJ NNP CC VBD CD CD NNS TO VB NNP .\nThe government of Venezuela says it has signed an agreement to buy an American company 's interest in Venezuela 's largest telecommunications company .\tDT NN IN NNP VBZ PRP VBZ VBN DT NN TO VB DT JJ NN POS NN IN NNP POS JJS NN NN .\nOn Monday Venezuelan officials announced the agreement to purchase 28 percent of CANTV from Verizon , a telecommunications company based in the United States .\tIN NNP JJ NNS VBD DT NN TO VB CD NN IN NNP IN NNP , DT NN NN VBN IN DT NNP NNPS .\nIn early January , President Hugo Chavez said Venezuela should regain control of strategic sectors of its economy .\tIN JJ NNP , NNP NNP NNP VBD NNP MD VB NN IN JJ NNS IN PRP$ NN .\nHe asked the national assembly to grant him special powers to nationalize businesses .\tPRP VBD DT JJ NN TO VB PRP JJ NNS TO VB NNS .\nLast week , Venezuela agreed to buy a controlling stake in the country 's largest private electric company .\tJJ NN , NNP VBD TO VB DT VBG NN IN DT NN POS JJS JJ JJ NN .\nOn February 2 , Mr. Chavez gave foreign oil companies three months to surrender control of their operations in Venezuela .\tIN NNP CD , NNP NNP VBD JJ NN NNS CD NNS TO VB NN IN PRP$ NNS IN NNP .\nThe U.S. has criticized the nationalization plan .\tDT NNP VBZ VBN DT NN NN .\nSecretary of State Condoleezza Rice said last week President Chavez is destroying his country , economically and politically .\tNNP IN NNP NNP NNP VBD JJ NN NNP NNP VBZ VBG PRP$ NN , RB CC RB .\nTurkish security officials say one soldier and 12 Kurdish rebels were killed in a clash in eastern Turkey .\tJJ NN NNS VBP CD NN CC CD JJ NNS VBD VBN IN DT NN IN JJ NNP .\nThey say the fighting erupted in Tunceli province during a military offensive against the outlawed Kurdistan Workers Party , or PKK .\tPRP VBP DT NN VBD IN NNP NN IN DT JJ NN IN DT JJ NNP NNP NNP , CC NNP .\nClashes usually intensify during this time of year , as melting snow allows the Kurdish rebels to move more freely .\tNNS RB VB IN DT NN IN NN , IN VBG NN VBZ DT JJ NNS TO VB RBR RB .\nLast week , Turkey 's top military official , General Yasar Buyukanit , called for an incursion into Iraq to pursue Kurdish rebels based there .\tJJ NN , NNP POS JJ JJ NN , NNP NNP NNP , VBD IN DT NN IN NNP TO VB NNP NNS VBN RB .\nThe PKK announced a unilateral ceasefire in October , but Turkey rejected it .\tDT NNP VBD DT JJ NN IN NNP , CC NNP VBD PRP .\nKurdish rebels have been fighting Turkey for autonomy since 1984 .\tNNP NNS VBP VBN VBG NNP IN NN IN CD .\nThe conflict has claimed more than 37,000 lives .\tDT NN VBZ VBN JJR IN CD NNS .\nThe U.S. considers the PKK a terrorist organization .\tDT NNP VBZ DT NNP DT JJ NN .\nOfficials in Japan say the death toll from a typhoon that swept across the island-nation now stands at 75 .\tNNS IN NNP VBP DT NN NN IN DT NN WDT VBD IN DT NN RB VBZ IN CD .\nAuthorities say 15 people are still missing in the aftermath of Typhoon Tokage , which battered Japan earlier this week .\tNNS VBP CD NNS VBP RB VBG IN DT NN IN NNP NNP , WDT VBD NNP RBR DT NN .\nRescue crews are searching through flooded towns and the rubble of collapsed homes .\tNN NNS VBP VBG IN VBN NNS CC DT NN IN JJ NNS .\nTokage has since moved out to sea east of Japan .\tNNP VBZ IN VBN RP TO NN NN IN NNP .\nIt is the latest in a record number of typhoons to hit Japan this year .\tPRP VBZ DT JJS IN DT NN NN IN NNS TO VB NNP DT NN .\nJapan says the number of casualties from Tokage was the worst from a typhoon since 1979 , when 115 people died or went missing from a similar storm .\tNNP VBZ DT NN IN NNS IN NN VBD DT JJS IN DT NN IN CD , WRB CD NNS VBD CC VBD VBG IN DT JJ NN .\nCrude oil prices continued their surge Thursday hitting a new record high of nearly $ 106 a barrel .\tJJ NN NNS VBD PRP$ NN NNP VBG DT JJ NN NN IN RB $ CD DT NN .\nPrices for crude for future delivery went as high as $ 105.97 before easing slightly .\tNNS IN NN IN JJ NN VBD RB JJ IN $ CD IN VBG RB .\nThe latest record high for oil follows another record low for the dollar compared to the euro .\tDT JJS NN NN IN NN VBZ DT NN NN IN DT NN VBN TO DT NN .\nDollar-priced raw materials like oil gain from the weak greenback because the fall in the dollar makes them cheaper for buyers using other , stronger currencies .\tJJ JJ NNS IN NN NN IN DT JJ NN IN DT NN IN DT NN VBZ PRP JJR IN NNS VBG JJ , JJR NNS .\nThe price spike is also related to Wednesday 's decision by the Organization of Petroleum Exporting Countries to hold oil production steady rather than raise output as requested by Washington .\tDT NN NN VBZ RB VBN TO NNP POS NN IN DT NNP IN NNP NNP NNPS TO VB NN NN RB RB IN VB NN IN VBN IN NNP .\nSome oil-importing nations say more oil would help ease prices , but OPEC officials say the markets are well-supplied with crude .\tDT JJ NNS VBP JJR NN MD VB VB NNS , CC NNP NNS VBP DT NNS VBP JJ IN NN .\nChurch bells have begun tolling across Rome and throughout Italy , signaling the death of Pope John Paul II .\tNNP NNS VBP VBN VBG IN NNP CC IN NNP , VBG DT NN IN NNP NNP NNP NNP .\nAs news of his death spread , Roman Catholics around the world began mourning and offering prayers for the death of the spiritual leader of the 1.1 billion-member Roman Catholic Church .\tIN NN IN PRP$ NN NN , NNP NNPS IN DT NN VBD VBG CC VBG NNS IN DT NN IN DT JJ NN IN DT CD JJ NNP NNP NNP .\nIn his native Poland , people in the pope 's hometown of Wadowice fell to their knees and wept at the end of a special Mass in the church where he worshipped as a boy .\tIN PRP$ JJ NNP , NNS IN DT NN POS NN IN NNP VBD TO PRP$ NNS CC VBD IN DT NN IN DT JJ NNP IN DT NN WRB PRP VBD IN DT NN .\nSpecial masses are being held around the world , including Latin America , home to nearly half of the world 's Roman Catholics .\tJJ NNS VBP VBG VBN IN DT NN , VBG NNP NNP , NN TO RB NN IN DT NN POS NNP NNPS .\nU.S. National Intelligence Director John Negroponte has singled out Venezuelan president Hugo Chavez for criticism during a hearing on homeland security .\tNNP NNP NNP NNP NNP NNP VBZ VBN RP JJ NN NNP NNP IN NN IN DT NN IN NN NN .\nNegroponte told a Senate committee Tuesday that Mr. Chavez is seeking closer military and economic ties with Iran and North Korea .\tNNP VBD DT NNP NN NNP IN NNP NNP VBZ VBG RBR JJ CC JJ NNS IN NNP CC NNP NNP .\nNegroponte also said Mr. Chavez is expected to deepen his relationship with Fidel Castro , president of communist Cuba and an outspoken critic of President Bush .\tNNP RB VBD NNP NNP VBZ VBN TO VB PRP$ NN IN NNP NNP , NN IN JJ NNP CC DT JJ NN IN NNP NNP .\nHe added that Venezuela has recently scaled back its counternarcotics cooperation with the United States .\tPRP VBD IN NNP VBZ RB VBN RP PRP$ NNS NN IN DT NNP NNPS .\nNegroponte also accused Mr. Chavez of spending millions of dollars on what he termed an extravagant foreign policy , at the expense of the Venezuelan people .\tNNP RB VBD NNP NNP IN VBG NNS IN NNS IN WP PRP VBD DT JJ JJ NN , IN DT NN IN DT JJ NNS .\nHe said Mr. Chavez is investing considerable sums of money in politics in other Latin American countries .\tPRP VBD NNP NNP VBZ VBG JJ NNS IN NN IN NNS IN JJ JJ JJ NNS .\nNamibia has sworn in a new parliament , as President Sam Nujoma readies to step down after 15 years in office .\tNNP VBZ VBN IN DT JJ NN , IN NNP NNP NNP VBZ TO VB RB IN CD NNS IN NN .\nSeventy-two lawmakers took the oath of office in Windhoek Sunday and elected former prime minister Theo Ben Gurirab as the new speaker of parliament .\tCD NNS VBD DT NN IN NN IN NNP NNP CC VBN JJ JJ NN NNP NNP NNP IN DT JJ NN IN NN .\nThe ruling South West Africa People 's Organization ( SWAPO ) party controls 55 seats in the legislature , following a victory in November elections .\tDT NN NNP NNP NNP NNP POS NNP LRB NNP RRB NN VBZ CD NNS IN DT NN , VBG DT NN IN NNP NNS .\nMonday , President Nujoma will hand over power to Hifikepunye Pohamba , becoming Namibia 's second head of state since independence from apartheid-era South Africa .\tNNP , NNP NNP MD VB IN NN IN NNP NNP , VBG NNP POS JJ NN IN NN IN NN IN JJ NNP NNP .\nMr. Pohamba has vowed to maintain many of the economic policies of Mr. Nujoma and advance a land redistribution program .\tNNP NNP VBZ VBN TO VB NN IN DT JJ NNS IN NNP NNP CC VB DT NN NN NN .\nIran 's state-run television says President Mahmoud Ahmadinejad has named a new head of the country 's Supreme National Security Council , the agency that oversees Iran 's nuclear policy .\tNNP POS JJ NN VBZ NNP NNP NNP VBZ VBN DT JJ NN IN DT NN POS NNP NNP NNP NNP , DT NN WDT VBZ NNP POS JJ NN .\nThe new nuclear chief , Ali Larijani , has served as an aide to Supreme Leader Ayatollah Ali Khamenei and is known as a hardline conservative .\tDT JJ JJ NN , NNP NNP , VBZ VBN IN DT NN TO NNP NNP NNP NNP NNP CC VBZ VBN IN DT JJ NN .\nHe is also a former head of Iranian state radio and television .\tPRP VBZ RB DT JJ NN IN JJ NN NN CC NN .\nMr. Larijani 's appointment comes as Iran faces intense pressure to stop its nuclear activities or face the possibility of international sanctions .\tNNP NNP POS NN VBZ IN NNP VBZ JJ NN TO VB PRP$ JJ NNS CC VB DT NN IN JJ NNS .\nSome observers are concerned that he will take a tougher stance on Iran 's nuclear ambitions Iran resumed uranium conversion last week after rejecting a European Union proposal offering economic and political incentives in exchange for suspending nuclear fuel processing .\tDT NNS VBP VBN IN PRP MD VB DT JJR NN IN NNP POS JJ NNS NNP VBD NN NN JJ NN IN VBG DT NNP NNP NN VBG JJ CC JJ NNS IN NN IN VBG JJ NN NN .\nIran insists its nuclear program is solely for peaceful purposes .\tNNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS .\nIsraeli health authorities say they have found the deadly H5N1 strain of bird flu in dead chickens at a kindergarten petting zoo .\tJJ NN NNS VBP PRP VBP VBN DT JJ NNP NN IN NN NN IN JJ NNS IN DT NN VBG NN .\nThe Israeli Agriculture Ministry says 18 chickens were found dead Thursday at the kindergarten in the northern town of Binyamina .\tDT JJ NNP NNP VBZ CD NNS VBD VBN JJ NNP IN DT NN IN DT JJ NN IN NNP .\nThe ministry says tests later confirmed they were infected with the H5N1 virus that is potentially lethal to humans .\tDT NN VBZ NNS RB VBD PRP VBD VBN IN DT NNP NN WDT VBZ RB JJ TO NNS .\nIsraeli authorities alerted hospitals in the area to look out for any children or adults with high fever , the most common symptom associated with the virus .\tJJ NNS VBD NNS IN DT NN TO VB RP IN DT NNS CC NNS IN JJ NN , DT RBS JJ NN VBN IN DT NN .\nAuthorities also are checking for other bird flu outbreaks within a 10-kilometer radius of the kindergarten .\tNNS RB VBP VBG IN JJ NN NN NNS IN DT JJ NN IN DT NN .\nIsrael culled more than one million chickens and turkeys in March 2006 after the H5N1 virus infected poultry at several communal farms .\tNNP VBD JJR IN CD CD NNS CC NNS IN NNP CD IN DT NNP NN VBD NN IN JJ JJ NNS .\nMigratory birds are thought to have spread the virus from Asia to the Middle East and Europe .\tJJ NNS VBP VBN TO VB VBN DT NN IN NNP TO DT NNP NNP CC NNP .\nA series of attacks by suspected Taleban insurgents has left eleven Afghans dead and an election candidate seriously wounded .\tDT NN IN NNS IN JJ NNP NNS VBZ VBN CD NNS NN CC DT NN NN RB VBD .\nThree policemen guarding a convoy transporting supplies to U.S. bases were killed late Saturday during an ambush in the southern province Zabul .\tCD NNS VBG DT NN VBG NNS TO NNP NNS VBD VBN JJ NNP IN DT NN IN DT JJ NN NNP .\nAnother policeman was killed and two were wounded early Sunday in an attack on a police checkpoint on the main highway linking the southern city of Kandahar with Kabul .\tDT NN VBD VBN CC CD VBD VBN JJ NNP IN DT NN IN DT NN NN IN DT JJ NN VBG DT JJ NN IN NNP IN NNP .\nAlso Sunday , in the southern Helmand province , suspected rebels attacked a district police chief , killing him , three of his bodyguards and his son .\tRB NNP , IN DT JJ NNP NN , JJ NNS VBD DT NN NN NN , VBG PRP , CD IN PRP$ NNS CC PRP$ NN .\nTwo militants were also killed when the police returned fire .\tCD NNS VBD RB VBN WRB DT NN VBD NN .\nHours later , in the same province , a bomb blast seriously wounded a candidate in the September 18 parliamentary elections .\tNNS RB , IN DT JJ NN , DT NN NN RB VBD DT NN IN DT NNP CD JJ NNS .\nThe U.S. Defense Department says 52 detainees at the U.S. military prison in Guantanamo Bay , Cuba , are on a hunger strike to protest their continued detention .\tDT NNP NNP NNP VBZ CD NNS IN DT NNP JJ NN IN NNP NNP , NNP , VBP IN DT NN NN TO VB PRP$ JJ NN .\nIn a statement Thursday , Pentagon officials said the hunger strike began three days ago and appears to be temporary .\tIN DT NN NNP , NNP NNS VBD DT NN NN VBD CD NNS RB CC VBZ TO VB JJ .\nThe Pentagon says some detainees have abandoned the strike .\tDT NNP VBZ DT NNS VBP VBN DT NN .\nBut , the Los Angeles Times reported Thursday that two prisoners recently released from the facility say there are 180 prisoners on hunger strike , demanding better conditions and more information on their cases .\tCC , DT NNP NNP NNP VBD NNP IN CD NNS RB VBN IN DT NN VBP EX VBP CD NNS IN NN NN , VBG JJR NNS CC JJR NN IN PRP$ NNS .\nMany of the some-500 terrorism suspects at Guantanamo have been held for more than two years without charge .\tNN IN DT JJ NN NNS IN NNP VBP VBN VBN IN JJR IN CD NNS IN NN .\nThis week , the Pentagon said it was resuming a series of military trials for some prisoners .\tDT NN , DT NNP VBD PRP VBD VBG DT NN IN JJ NNS IN DT NNS .\nReports from southern China 's Guangdong province say armed police have sealed off a village after opening fire on a group of protesters and killing at least two people this week .\tNNS IN JJ NNP POS NNP NN VBP JJ NNS VBP VBN RP DT NN IN VBG NN IN DT NN IN NNS CC VBG IN JJS CD NNS DT NN .\nWitnesses say police fired into a crowd late Tuesday in Dongzhou village , where at least 1,000 people were protesting inadequate compensation for land taken for the construction of a power plant .\tNNS VBP NN VBD IN DT NN JJ NNP IN NNP NN , WRB IN JJS CD NNS VBD VBG JJ NN IN NN VBN IN DT NN IN DT NN NN .\nLocal residents are quoted by Reuters and the French News agency as saying Chinese authorities have surrounded the village and are not allowing them to leave .\tJJ NNS VBP VBN IN NNS CC DT NNP NNP NN IN VBG JJ NNS VBP VBN DT NN CC VBP RB VBG PRP TO VB .\nThe deputy Asia Director for Amnesty International Catherine Baber has described the reports from Guangdong as ' chilling , ' and called for an immediate independent investigation .\tDT NN NNP NNP IN NNP NNP NNP NNP VBZ VBN DT NNS IN NNP IN `` VBG , `` CC VBD IN DT JJ JJ NN .\nThe Chinese government has not commented on the matter .\tDT JJ NN VBZ RB VBN IN DT NN .\nThe Arab League 's chief says the 22-member organization will soon open an office in Iraq .\tDT NNP NNP POS NN VBZ DT JJ NN MD RB VB DT NN IN NNP .\nAmr Moussa made the pledge during a joint news conference Thursday in Baghdad alongside Iraqi Prime Minister Ibrahim al-Jaafari .\tNNP NNP VBD DT NN IN DT JJ NN NN NNP IN NNP IN JJ NNP NNP NNP NNP .\nMr. al-Jaafari echoed criticism of the League for not establishing a presence sooner in Iraq , saying he had hoped that the League would have had a ' greater role ' there earlier .\tNNP NNP VBD NN IN DT NNP IN RB VBG DT NN RBR IN NNP , VBG PRP VBD VBN IN DT NNP MD VB VBN DT `` JJR NN `` EX RBR .\nThe two leaders met against a backdrop of new violence , with at least six Iraqis killed in attacks across the country .\tDT CD NNS VBD IN DT NN IN JJ NN , IN IN JJS CD NNS VBN IN NNS IN DT NN .\nMeanwhile , the Arab world 's media reacted with mixed emotions to the start Wednesday of former Iraqi dictator Saddam Hussein 's trial on charges of killing 143 of his countrymen .\tRB , DT JJ NN POS NNS VBD IN JJ NNS TO DT NN NNP IN JJ JJ NN NNP NNP POS NN IN NNS IN VBG CD IN PRP$ NNS .\nSome papers welcomed the trial , but others said it could fuel ethnic and sectarian tensions in Iraq .\tDT NNS VBD DT NN , CC NNS VBD PRP MD VB JJ CC JJ NNS IN NNP .\nIndonesia has begun withdrawing government forces from Aceh province , the first major step in a new peace agreement between the government and separatist rebels to end a three-decade conflict .\tNNP VBZ VBN VBG NN NNS IN NNP NN , DT JJ JJ NN IN DT JJ NN NN IN DT NN CC JJ NNS TO VB DT JJ NN .\nMilitary officials say more than 1,200 soldiers shipped out Monday as part of the peace deal signed last week in Finland .\tJJ NNS VBP JJR IN CD NNS VBN RP NNP IN NN IN DT NN NN VBN JJ NN IN NNP .\nThe agreement is intended to end 29 years of bloodshed between the Indonesian government and Free Aceh Movement rebels costing 15,000 lives .\tDT NN VBZ VBN TO VB CD NNS IN NN IN DT JJ NN CC NNP NNP NNP NNS VBG CD NNS .\nThe peace deal calls for Indonesia to pull out non-local army and police forces , and for rebels to demobilize .\tDT NN NN VBZ IN NNP TO VB RP JJ NN CC NN NNS , CC IN NNS TO VB .\nIndonesia will grant amnesty to rebels , except those jailed for common crimes .\tNNP MD VB JJ TO NNS , IN DT VBN IN JJ NNS .\nAceh will be allowed to manage its own natural resources and keep 70 percent of revenues .\tNNP MD VB VBN TO VB PRP$ JJ JJ NNS CC VB CD NN IN NNS .\nThe province will also be allowed to have local political representation .\tDT NN MD RB VB VBN TO VB JJ JJ NN .\nIran 's President Mahmoud Ahmadinejad says his country will produce nuclear fuel on an industrial scale soon .\tNNP POS NNP NNP NNP VBZ PRP$ NN MD VB JJ NN IN DT JJ NN RB .\nSpeaking in a provincial city Wednesday , Mr. Ahmadinejad did not specify when .\tVBG IN DT JJ NN NNP , NNP NNP VBD RB VB WRB .\nHe said Tehran will not be intimidated by what he called bullying powers who want to deprive Iran of its nuclear ambitions .\tPRP VBD NNP MD RB VB VBN IN WP PRP VBD VBG NNS WP VBP TO VB NNP IN PRP$ JJ NNS .\nIn December , the U.N. Security Council passed economic sanctions against Iran for its controversial nuclear enrichment program .\tIN NNP , DT NNP NNP NNP VBD JJ NNS IN NNP IN PRP$ JJ JJ NN NN .\nSince then , Mr. Ahmadinejad has called the UN sanctions ' invalid , ' insisting that Iran will continue its program .\tIN RB , NNP NNP VBZ VBN DT NNP NNS `` NN , `` VBG DT NNP MD VB PRP$ NN .\nIran 's top nuclear negotiator said Tehran would begin working on installing 3,000 uranium-enriching centrifuges at a plant in Natanz .\tNNP POS JJ JJ NN VBD NNP MD VB VBG IN VBG CD JJ NNS IN DT NN IN NNP .\nThe U.S. and its Western allies believe Iran is developing nuclear technology for weapons , a charge Tehran denies .\tDT NNP CC PRP$ JJ NNS VBP NNP VBZ VBG JJ NN IN NNS , DT NN NNP VBZ .\nProducing nuclear fuel that could be used in a power plant would be another step in mastering the nuclear fuel cycle .\tVBG JJ NN WDT MD VB VBN IN DT NN NN MD VB DT NN IN VBG DT JJ NN NN .\nWitnesses say at least 15 people have been killed in two days of ongoing clashes between rival Islamist groups in central Somalia .\tNNS VBP IN JJS CD NNS VBP VBN VBN IN CD NNS IN JJ NNS IN JJ NN NNS IN JJ NNP .\nClashes in the town of Wabho mainly involved fighters from the al-Shabab group and its rival the , Ahlu Sunna Wajama .\tNNS IN DT NN IN NNP RB VBD NNS IN DT NNP NN CC PRP$ JJ DT , NNP NNP NNP .\nResidents say many civilians have been injured since the violence erupted Saturday .\tNNS VBP JJ NNS VBP VBN VBN IN DT NN VBD NNP .\nReports say the pro-government Ahlu Sunna Wajama reportedly attacked the Shabab-held village .\tNNS VBP DT JJ NNP NNP NNP RB VBD DT JJ NN .\nThe two sides have fought repeatedly for control over the region .\tDT CD NNS VBP VBN RB IN NN IN DT NN .\nVenezuela 's President Hugo Chavez is asking the National Assembly to grant him special powers over the country 's electrical and telecommunications industries .\tNNP POS NNP NNP NNP VBZ VBG DT NNP NNP TO VB PRP JJ NNS IN DT NN POS JJ CC NN NNS .\nIn a televised speech , Mr. Chavez said he would nationalize some electricial companies and the country 's largest telecommunications company , CANTV .\tIN DT JJ NN , NNP NNP VBD PRP MD VB DT JJ NNS CC DT NN POS JJS NN NN , NNP .\nThe leftist leader promised to take a more radical turn toward socialism after he was re-elected by a wide margin last month .\tDT JJ NN VBD TO VB DT RBR JJ NN IN NN IN PRP VBD VBN IN DT JJ NN JJ NN .\nHe will begin a second six-year term as president on Wednesday .\tPRP MD VB DT JJ JJ NN IN NN IN NNP .\nMr. Chavez has said he hopes to merge all the political parties supporting him into one party .\tNNP NNP VBZ VBN PRP VBZ TO VB PDT DT JJ NNS VBG PRP IN CD NN .\nHe also wants to re-write the constitution .\tPRP RB VBZ TO VB DT NN .\nAnother Bosnian Serb military figure accused of war crimes in the former Yugoslavia is surrendering to the U.N. tribunal in the Hague .\tDT JJ JJ JJ NN VBN IN NN NNS IN DT JJ NNP VBZ VBG TO DT NNP NN IN DT NNP .\nGojko Jankovic , a former paramilitary leader who has been a fugitive for more than five years , turned himself in to Bosnian Serb authorities Sunday in the town of Banja Luka .\tNNP NNP , DT JJ JJ NN WP VBZ VBN DT JJ IN JJR IN CD NNS , VBD PRP IN TO JJ JJ NNS NNP IN DT NN IN NNP NNP .\nHe is expected to be transferred to The Hague on Monday .\tPRP VBZ VBN TO VB VBN TO DT NNP IN NNP .\nThe U.N. tribunal says that during the violence of the 1990s , soldiers under Mr. Jankovic 's command arrested a group of women in the town of Foca and brutally abused and raped them during interrogations .\tDT NNP NN VBZ IN IN DT NN IN DT NNS , NNS IN NNP NNP POS NN VBN DT NN IN NNS IN DT NN IN NNP CC RB VBD CC VBD PRP IN NNS .\nMr. Jankovic is the sixth Bosnian Serb to surrender to the U.N. court in less than two months .\tNNP NNP VBZ DT JJ JJ JJ TO VB TO DT NNP NN IN JJR IN CD NNS .\nHowever , the two main targets of the long-running war-crimes prosecution - former Bosnian Serb leader Radovan Karadzic and his military commander , Ratko Mladic - remain at large .\tRB , DT CD JJ NNS IN DT JJ NNS NN IN JJ JJ JJ NN NNP NNP CC PRP$ JJ NN , NNP NNP : VBP IN JJ .\nThe public memorial for the late United States Chief Justice William Rehnquist is under way at the Supreme Court building in Washington .\tDT JJ NN IN DT JJ NNP NNPS NNP NNP NNP NNP VBZ IN NN IN DT NNP NNP NN IN NNP .\nMr. Rehnquist died of cancer Saturday at the age of 80 .\tNNP NNP VBD IN NN NNP IN DT NN IN CD .\nPresident Bush paid his respects to the late chief justice Tuesday , pausing for a moment of silence beside his flag-draped coffin in the Great Hall of the high court .\tNNP NNP VBD PRP$ NNS TO DT JJ NN NN NNP , VBG IN DT NN IN NN IN PRP$ JJ NN IN DT NNP NNP IN DT JJ NN .\nThe public memorial continues until noon Wednesday , when he will be buried in a private ceremony at Arlington National Cemetery .\tDT JJ NN VBZ IN NN NNP , WRB PRP MD VB VBN IN DT JJ NN IN NNP NNP NNP .\nThe conservative chief justice was first appointed to the nine-member court by President Nixon in 1972 .\tDT JJ NN NN VBD JJ VBN TO DT JJ NN IN NNP NNP IN CD .\nPresident Reagan appointed him chief justice 14 years later , in 1986 .\tNNP NNP VBD PRP JJ NN CD NNS RB , IN CD .\nU.S. Supreme Court justices are appointed for life-long terms .\tNNP NNP NNP NNS VBP VBN IN JJ NNS .\nPresident Bush has nominated federal appeals court judge John Roberts to be the next chief justice .\tNNP NNP VBZ VBN JJ NNS NN NN NNP NNP TO VB DT JJ NN NN .\nSenate confirmation hearings for Mr. Roberts are scheduled to begin Monday .\tNNP NN NNS IN NNP NNP VBP VBN TO VB NNP .\nU.S. Secretary of State Condoleezza Rice says the European Union and the United States disagree on whether to lift the embargo on arms sales to China .\tNNP NNP IN NNP NNP NNP VBZ DT NNP NNP CC DT NNP NNPS VBP IN IN TO VB DT NN IN NNS NNS TO NNP .\nIn a television interview broadcast by the BBC on Sunday , Ms. Rice said lifting the ban could upset the military balance in East Asia , and called it a serious concern .\tIN DT NN NN VBN IN DT NNP IN NNP , NNP NNP VBD VBG DT NN MD VB DT JJ NN IN NNP NNP , CC VBD PRP DT JJ NN .\nShe added that it could also send the wrong signal to China on human rights .\tPRP VBD IN PRP MD RB VB DT JJ NN TO NNP IN JJ NNS .\nThe European Union is considering the resumption of weapons sales , but says China would have to respect human rights and regional stability .\tDT NNP NNP VBZ VBG DT NN IN NNS NNS , CC VBZ NNP MD VB TO VB JJ NNS CC JJ NN .\nArms sales were banned in 1989 following China 's Tiananmen Square crackdown .\tNNS NNS VBD VBN IN CD VBG NNP POS NNP NNP NN .\nU.S. President George Bush is encouraging all Americans to vote in national elections Tuesday and prove to the world that self-government can endure .\tNNP NNP NNP NNP VBZ VBG DT NNS TO VB IN JJ NNS NNP CC VB TO DT NN IN NN MD VB .\nDuring his weekly radio address Saturday , Mr. Bush said U.S. elections serve as a model , especially to young democracies such at Georgia , Ukraine , Afghanistan and Iraq .\tIN PRP$ JJ NN NN NNP , NNP NNP VBD NNP NNS VBP IN DT NN , RB TO JJ NNS JJ IN NNP , NNP , NNP CC NNP .\nThe president said Americans have demonstrated that for two centuries a free people have been able to choose their own leaders .\tDT NN VBD NNS VBP VBN IN IN CD NNS DT JJ NNS VBP VBN JJ TO VB PRP$ JJ NNS .\nHe said the nation has flourished because of its commitment to trusting the wisdom of the people .\tPRP VBD DT NN VBZ VBN IN IN PRP$ NN TO VBG DT NN IN DT NNS .\nPresident Bush also called on voters to recall the sacrifices made by generations of Americans in uniform to preserve America 's way of life .\tNNP NNP RB VBD IN NNS TO VB DT NNS VBN IN NNS IN NNS IN NN TO VB NNP POS NN IN NN .\nThe U.S. military in Iraq says it is releasing more than 400 Iraqi detainees , including five women prisoners .\tDT NNP NN IN NNP VBZ PRP VBZ VBG JJR IN CD JJ NNS , VBG CD NNS NNS .\nA military statement says the prisoners are being freed Thursday and Friday , after reviews of their cases determined there was no reason to keep holding them .\tDT JJ NN VBZ DT NNS VBP VBG VBN NNP CC NNP , IN NNS IN PRP$ NNS VBN EX VBD DT NN TO VB VBG PRP .\nIraqi and U.S. officials have stressed the move has nothing to do with American journalist Jill Carroll , who was kidnapped earlier this month .\tJJ CC NNP NNS VBP VBN DT NN VBZ DT TO VB IN JJ NN NNP NNP , WP VBD VBN RBR DT NN .\nHer kidnappers threatened to kill her by last Friday unless all Iraqi women detainees were released .\tPRP$ NNS VBD TO VB PRP IN JJ NNP IN DT JJ NNS NNS VBD VBN .\nThe deadline passed with no word on her fate .\tDT NN VBD IN DT NN IN PRP$ NN .\nSeparately , the U.S. military says one American soldier was killed and another wounded in a roadside bomb blast south of Baghdad Wednesday .\tRB , DT NNP NN VBZ CD JJ NN VBD VBN CC DT VBN IN DT NN NN NN NN IN NNP NNP .\nA similar bomb blast north of the capital killed three Iraqi soldiers and wounded four others .\tDT JJ NN NN NN IN DT NN VBD CD JJ NNS CC VBD CD NNS .\nGreenland , the world 's largest island , is about 81 % ice capped .\tNNP , DT NN POS JJS NN , VBZ IN CD NN NN VBN .\nVikings reached the island in the 10th century from Iceland ; Danish colonization began in the 18th century , and Greenland was made an integral part of Denmark in 1953 .\tNNS VBD DT NN IN DT JJ NN IN NNP ; JJ NN VBD IN DT JJ NN , CC NNP VBD VBN DT JJ NN IN NNP IN CD .\nIt joined the European Community ( now the EU ) with Denmark in 1973 but withdrew in 1985 over a dispute centered on stringent fishing quotas .\tPRP VBD DT NNP NNP LRB RB DT NNP RRB IN NNP IN CD CC VBD IN CD IN DT NN VBN IN JJ NN NNS .\nGreenland was granted self-government in 1979 by the Danish parliament ; the law went into effect the following year .\tNNP VBD VBN NN IN CD IN DT JJ NN ; DT NN VBD IN NN DT JJ NN .\nGreenland voted in favor of increased self-rule in November 2008 and acquired greater responsibility for internal affairs in June 2009 .\tNNP VBD IN NN IN VBN NN IN NNP CD CC VBD JJR NN IN JJ NNS IN NNP CD .\nDenmark , however , continues to exercise control of Greenland 's foreign affairs , security , and financial policy in consultation with Greenland 's Home Rule Government .\tNNP , RB , VBZ TO VB NN IN NNP POS JJ NNS , NN , CC JJ NN IN NN IN NNP POS NNP NNP NNP .\nAfter almost four decades under US administration as the easternmost part of the UN Trust Territory of the Pacific Islands , the Marshall Islands attained independence in 1986 under a Compact of Free Association .\tIN RB CD NNS IN NNP NN IN DT JJ NN IN DT NNP NNP NNP IN DT NNP NNP , DT NNP NNP VBD NN IN CD IN DT NN IN NNP NNP .\nCompensation claims continue as a result of US nuclear testing on some of the atolls between 1947 and 1962 .\tNN NNS VBP IN DT NN IN NNP JJ NN IN DT IN DT NNS IN CD CC CD .\nThe Marshall Islands hosts the US Army Kwajalein Atoll ( USAKA ) Reagan Missile Test Site , a key installation in the US missile defense network .\tDT NNP NNP VBZ DT NNP NNP NNP NNP LRB NNP RRB NNP NNP NNP NNP , DT JJ NN IN DT NNP NN NN NN .\nRivalry between French and Italian interests in Tunisia culminated in a French invasion in 1881 and the creation of a protectorate .\tNN IN JJ CC JJ NNS IN NNP VBD IN DT JJ NN IN CD CC DT NN IN DT NN .\nAgitation for independence in the decades following World War I was finally successful in getting the French to recognize Tunisia as an independent state in 1956 .\tNN IN NN IN DT NNS VBG NNP NNP NNP VBD RB JJ IN VBG DT NNS TO VB NNP IN DT JJ NN IN CD .\nThe country 's first president , Habib BOURGUIBA , established a strict one-party state .\tDT NN POS JJ NN , NNP NNP , VBD DT JJ JJ NN .\nHe dominated the country for 31 years , repressing Islamic fundamentalism and establishing rights for women unmatched by any other Arab nation .\tPRP VBD DT NN IN CD NNS , VBG NNP NN CC VBG NNS IN NNS VBN IN DT JJ JJ NN .\n"
  },
  {
    "path": "P009StructureLearning/pos-hmm-hw-solution.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import math\\n\",\n    \"import time\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class HMM:\\n\",\n    \"    '''\\n\",\n    \"    Implement an HMM\\n\",\n    \"    \\n\",\n    \"    Use notation and formulae from Jurafsky--Martin \\n\",\n    \"    (https://web.stanford.edu/~jurafsky/slp3/9.pdf)\\n\",\n    \"    \\n\",\n    \"    Assume the hidden states are from 1, 2, ..., to N.  State 0 and \\n\",\n    \"    State N+1 are reserved from the START and STOP state, which occur \\n\",\n    \"    at exactly time 0 and time T+1 of a T long observation sequence.\\n\",\n    \"    \\n\",\n    \"    Assume observation values are from 1, 2, ..., to some max values \\n\",\n    \"    M. Observation 0 and Observation M+1 are reserved and are seen\\n\",\n    \"    at exactly time 0 and time T+1 of a T long observation sequence.\\n\",\n    \"    '''\\n\",\n    \"    \\n\",\n    \"    def __init__(self, a, b):\\n\",\n    \"        '''\\n\",\n    \"        Initialize the HMM with given parameters\\n\",\n    \"        \\n\",\n    \"        Initialize any missing parameter with random probability\\n\",\n    \"        values.\\n\",\n    \"        \\n\",\n    \"        \\\"a\\\", the transmission probabilities, is a (N+2) x (N+2) matrix \\n\",\n    \"        such that a(i, j) is the \\n\",\n    \"        probability of moving from hidden state i to hidden state j. \\n\",\n    \"        Since one cannot move to State 0 from any state, Column 0 \\n\",\n    \"        has 0 values.  Similarly Row N+1 has 0 values.\\n\",\n    \"        \\n\",\n    \"        \\\"b\\\", the emission probabilities, is a (N+2) x (M+2) matrix such\\n\",\n    \"        that b(i, j) is the probability of emitting output j in hidden\\n\",\n    \"        state i.  Since\\n\",\n    \"        Output 0 is only emitted in State 0, Row 0 has a 1.0 in \\n\",\n    \"        Column 0, and 0 values otherwise.  Similarly, Row N+1 has\\n\",\n    \"        a 1.0 in Column M+1 and 0 values otherwise.\\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"        # Check input\\n\",\n    \"        if (a.shape[0] != a.shape[1] or\\n\",\n    \"            a.shape[0] != b.shape[0]):\\n\",\n    \"            raise Exception(\\\"Improper a or b matrix shapes.\\\")\\n\",\n    \"            \\n\",\n    \"        # N is number of regular states     \\n\",\n    \"        self.N = a.shape[0] - 2\\n\",\n    \"        # M is number of regular outputs\\n\",\n    \"        self.M = b.shape[1] - 2\\n\",\n    \"        \\n\",\n    \"        self.a = a\\n\",\n    \"        self.b = b\\n\",\n    \"        \\n\",\n    \"        # Useful macros\\n\",\n    \"        self.START = 0 # start state\\n\",\n    \"        self.FINISH = self.N+1 # finish state\\n\",\n    \"        self.STATES = range(1, self.N+1) # set of regular states\\n\",\n    \"        \\n\",\n    \"        # placeholders\\n\",\n    \"        self.O = [] # observation sequence\\n\",\n    \"        self.T = 0 # number of observations\\n\",\n    \"        self.alpha_table = None\\n\",\n    \"        self.beta_table = None\\n\",\n    \"        self.viterbi_table = None\\n\",\n    \"        self.viterbi_bpointers = None\\n\",\n    \"        \\n\",\n    \"    def print(self):\\n\",\n    \"        print(f\\\"N {self.N} M {self.M} T {self.T}\\\")\\n\",\n    \"        print(\\\"Transmission probabilities 'a'\\\")\\n\",\n    \"        print(self.a)\\n\",\n    \"        print(\\\"Emission probabilities 'b'\\\")\\n\",\n    \"        print(self.b)\\n\",\n    \"        \\n\",\n    \"    def set_a_b(self, a, b):\\n\",\n    \"        \\n\",\n    \"        if (a.shape[0] != a.shape[1] or a.shape[0] != b.shape[0] or\\n\",\n    \"            a.shape[0] != self.N+2 or b.shape[1] != self.M+2):\\n\",\n    \"            raise Exception('Incompatible a, b shapes')\\n\",\n    \"        \\n\",\n    \"        self.a = a\\n\",\n    \"        self.b = b\\n\",\n    \"        self.reset_alpha_beta_tables()\\n\",\n    \"        \\n\",\n    \"    def reset_alpha_beta_tables(self):\\n\",\n    \"        \\n\",\n    \"        # intialize alpha values to save recursive calls\\n\",\n    \"        self.alpha_table = np.array(\\n\",\n    \"            [[-1.0] * (self.N+2)] * (self.T+2))\\n\",\n    \"        self.alpha_table[self.T+1, :self.N+1] = 0.0\\n\",\n    \"        self.alpha_table[0, 0] = 1.0\\n\",\n    \"        self.alpha_table[0, 1:] = 0.0\\n\",\n    \"        \\n\",\n    \"        # initialize beta values\\n\",\n    \"        self.beta_table = np.array(\\n\",\n    \"            [[-1.0] * (self.N+2)] * (self.T+1)) \\n\",\n    \"        # Recall beta(T+1, i) is not defined.\\n\",\n    \"        \\n\",\n    \"    def set_observations(self, O):\\n\",\n    \"        '''\\n\",\n    \"        Set the observation sequence\\n\",\n    \"        \\n\",\n    \"        Assume the first observation is 0 and the last M+1, and\\n\",\n    \"        the rest are in [1,...,M]. \\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"        # Check that observations are valid\\n\",\n    \"        if (not set(O[1:-1]).issubset(set(range(1, self.M+1))) or\\n\",\n    \"            O[0] != 0 or O[-1] != self.M+1):\\n\",\n    \"            print(O)\\n\",\n    \"            raise Exception(\\\"Invalid observation sequence.\\\")\\n\",\n    \"        self.O = O\\n\",\n    \"        self.T = len(O)-2\\n\",\n    \"        self.reset_alpha_beta_tables()\\n\",\n    \"        \\n\",\n    \"    \\n\",\n    \"    def forward(self):\\n\",\n    \"        '''Fill alpha_table, i.e., alpha_t(j)'s'''\\n\",\n    \"        \\n\",\n    \"        # This should be called after set_observation, \\n\",\n    \"        # else self.T == 0.\\n\",\n    \"        \\n\",\n    \"        if (self.T == 0):\\n\",\n    \"            raise Exception(\\\"Premature call to alpha().\\\")\\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # Please follow the algorithm as described in \\n\",\n    \"        # https://web.stanford.edu/~jurafsky/slp3/9.pdf\\n\",\n    \"        # from 9.15 to 9.17\\n\",\n    \"        # First fill for t = 0\\n\",\n    \"        # Fill remaining values \\\"recursively\\\"\\n\",\n    \"        \\n\",\n    \"        self.alpha_table[0, self.START] = 1.0\\n\",\n    \"#         for j in range(1, self.N+1):\\n\",\n    \"#             self.alpha_table[0, j] = 0.0\\n\",\n    \"        self.alpha_table[0, 1:self.N+1] = 0.0\\n\",\n    \"            \\n\",\n    \"        # Fill remaining values \\\"recursively\\\"\\n\",\n    \"        for t in range(1, self.T+2):\\n\",\n    \"#             for j in range(self.N+2):\\n\",\n    \"#                 self.alpha_table[t, j] = sum(\\n\",\n    \"#                     [self.alpha_table[t-1, i] * self.a[i, j]  \\n\",\n    \"#                      for i in range(self.N+2)]\\n\",\n    \"#                     ) * self.b[j, self.O[t]]\\n\",\n    \"            self.alpha_table[t, :self.N+2] = np.matmul(\\n\",\n    \"                self.alpha_table[t-1, :], self.a[:, :self.N+2]) * self.b[:self.N+2, self.O[t]]\\n\",\n    \"                \\n\",\n    \"        \\n\",\n    \"    def viterbi(self, t, j):\\n\",\n    \"                \\n\",\n    \"        if (self.T==0 or t < 1 or t > self.T+1 or j < 0 or\\n\",\n    \"            j > self.N + 1 or \\n\",\n    \"            (t == self.T+1 and j != self.FINISH)):\\n\",\n    \"            raise Exception(\\\"Invalid call to viterbi().\\\")\\n\",\n    \"            \\n\",\n    \"        # Check if value already available\\n\",\n    \"        rv = self.viterbi_table[t, j]\\n\",\n    \"        if rv <= -1:\\n\",\n    \"            if t == 1:\\n\",\n    \"                rv = self.a[self.START, j] * self.b[j, self.O[1]]\\n\",\n    \"                self.viterbi_bpointers[t, j] = self.START\\n\",\n    \"            else:\\n\",\n    \"                if t == self.T+1:\\n\",\n    \"                    possibles = [(self.viterbi(t-1, i) * \\n\",\n    \"                                  self.a[i,j] , i) \\n\",\n    \"                                 for i in self.STATES]\\n\",\n    \"                else:             \\n\",\n    \"                    possibles = [(self.viterbi(t-1, i) * \\n\",\n    \"                                  self.a[i,j] * self.b[j, self.O[t]],\\n\",\n    \"                                  i)\\n\",\n    \"                                 for i in self.STATES]\\n\",\n    \"                    \\n\",\n    \"                rv, max_i = max(possibles, key=lambda tup: tup[0])\\n\",\n    \"                self.viterbi_bpointers[t, j] = max_i\\n\",\n    \"            self.viterbi_table[t, j] = rv\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def decode(self, O=None):\\n\",\n    \"        '''Return the most likely hidden state sequenence\\n\",\n    \"           for observation sequence obs based \\n\",\n    \"           on self.a and self.b, and its probability.\\n\",\n    \"           O is the observations'''\\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # Your code should implement the VITERBI function\\n\",\n    \"        # in Figure 9.11 on Jurafsky-Martin \\n\",\n    \"        # https://web.stanford.edu/~jurafsky/slp3/9.pdf.\\n\",\n    \"        # In particular you should store probabilities in\\n\",\n    \"        # a table and store backpointers in another table.\\n\",\n    \"        # You need to construct the best hidden state sequence\\n\",\n    \"        # using the backpointers and return it along with its\\n\",\n    \"        # probability.  For this you will need to use self.a\\n\",\n    \"        # and self.b, and values self.T, but you don't need to\\n\",\n    \"        # use the alpha or beta tables.\\n\",\n    \"        \\n\",\n    \"        if O is not None:\\n\",\n    \"            self.set_observations(O)\\n\",\n    \"        self.viterbi_table = np.ones((self.T+2, self.N+2)) * -1.0\\n\",\n    \"        self.viterbi_bpointers = np.ones((self.T+2, self.N+2),\\n\",\n    \"                                         dtype = int) * -1\\n\",\n    \"        \\n\",\n    \"        p = self.viterbi(self.T+1, self.FINISH)\\n\",\n    \"        bp_sequence = [self.FINISH]\\n\",\n    \"        j = self.FINISH\\n\",\n    \"        for t in range(self.T+1,0,-1):\\n\",\n    \"                j = self.viterbi_bpointers[t, j]\\n\",\n    \"                bp_sequence.append(j)\\n\",\n    \"        return (list(reversed(bp_sequence)), p)\\n\",\n    \"    \\n\",\n    \"    def backward(self):\\n\",\n    \"        '''Fill beta_table, i.e., beta_t(i)'s'''\\n\",\n    \"               \\n\",\n    \"        # Unlike alpha we don't define beta(T+1, i).\\n\",\n    \"        # This should be called after set_observation, \\n\",\n    \"        # else self.T == 0.\\n\",\n    \"        \\n\",\n    \"        if (self.T == 0):\\n\",\n    \"            raise Exception(\\\"Premature call to beta()\\\")\\n\",\n    \"            \\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # Please follow the algorithm as described in \\n\",\n    \"        # https://web.stanford.edu/~jurafsky/slp3/9.pdf\\n\",\n    \"        # from 9.27 to 9.30\\n\",\n    \"        # First fill for t = T\\n\",\n    \"        # Fill for t=T-1 to 1 \\\"recursively\\\"\\n\",\n    \"        # Fill in for t = 0 and i = START\\n\",\n    \"        \\n\",\n    \"        # First fill for t = T\\n\",\n    \"        for i in range(1, self.N+1):\\n\",\n    \"            self.beta_table[self.T, i] = self.a[i, self.FINISH]\\n\",\n    \"            \\n\",\n    \"        # Fill for t=1 to T-1 \\\"recursively\\\"\\n\",\n    \"        for t in range(self.T-1, 0, -1):\\n\",\n    \"#             for i in range(1, self.N+1):\\n\",\n    \"#                 self.beta_table[t, i] = sum(\\n\",\n    \"#                     [self.a[i, j] * self.b[j,  self.O[t+1]] * \\n\",\n    \"#                      self.beta_table[t+1, j] for j in self.STATES])\\n\",\n    \"            for i in range(1, self.N+1):\\n\",\n    \"                self.beta_table[t, i] = np.sum(\\n\",\n    \"                    self.a[i, 1:self.N+1] * self.b[1:self.N+1,  self.O[t+1]] * \\n\",\n    \"                     self.beta_table[t+1, 1:self.N+1])\\n\",\n    \"        \\n\",\n    \"        # Fill in for t = 0 and i = START\\n\",\n    \"#         self.beta_table[0, self.START] = sum(\\n\",\n    \"#                 [self.a[self.START, j] * self.b[j,  self.O[1]] * \\n\",\n    \"#                  self.beta_table[1, j] for j in self.STATES])\\n\",\n    \"        self.beta_table[0, self.START] = np.sum(\\n\",\n    \"                self.a[self.START, 1:self.N+1] * self.b[1:self.N+1,  self.O[1]] * \\n\",\n    \"                 self.beta_table[1, 1:self.N+1])\\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"    def xi(self, t, i, j):\\n\",\n    \"        '''\\n\",\n    \"        Return xi_t(i, j)\\n\",\n    \"        '''        \\n\",\n    \"\\n\",\n    \"        # The basic formula works for t=0 as well. For t=T we need\\n\",\n    \"        # a special case because beta(t+1, j) is not defined for all j.\\n\",\n    \"                \\n\",\n    \"        if self.alpha_table[self.T+1, self.FINISH] <= 0.0:\\n\",\n    \"            raise Exception(\\\"Impossible observation sequence\\\")\\n\",\n    \"    \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # Please follow formula 9.37 in \\n\",\n    \"        # https://web.stanford.edu/~jurafsky/slp3/9.pdf\\n\",\n    \"        # to compute the value of xi. \\n\",\n    \"        # You may need to take care of some corner cases carefully. \\n\",\n    \"        \\n\",\n    \"        if t >= 0 and t < self.T:\\n\",\n    \"            rv = (self.alpha_table[t, i] * self.a[i, j] * \\n\",\n    \"                   self.b[j, self.O[t+1]] * self.beta_table[t+1, j]\\n\",\n    \"                 )/ self.alpha_table[self.T+1, self.FINISH]            \\n\",\n    \"        elif t == self.T: # non-zero only for j == FINISH\\n\",\n    \"            if j != self.FINISH:\\n\",\n    \"                rv = 0.0\\n\",\n    \"            else:\\n\",\n    \"                rv = (self.alpha_table[t, i] * self.a[i, j] / \\n\",\n    \"                  self.alpha_table[self.T+1, self.FINISH])\\n\",\n    \"        else:\\n\",\n    \"            raise Exception(\\\"Invalid call to xi().\\\")\\n\",\n    \"        \\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def gamma(self, t, j):\\n\",\n    \"        '''\\n\",\n    \"        Return gamma_t(j)\\n\",\n    \"        '''  \\n\",\n    \"        \\n\",\n    \"        rv = 0\\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # Your code should compute gamma_t(j) as specified\\n\",\n    \"        # in Figure 9.16 of Jurafsky-Martin \\n\",\n    \"        # https://web.stanford.edu/~jurafsky/slp3/9.pdf. \\n\",\n    \"        # For this you wil need to use self.alpha_table, \\n\",\n    \"        # self.beta_table, self.T, and values such as self.START\\n\",\n    \"        # (the number corresponding to start state, set at 0),\\n\",\n    \"        # and self.FINISH (the number corresponding to the\\n\",\n    \"        # the end state, set at self.N+1).\\n\",\n    \"        \\n\",\n    \"        if self.alpha_table[self.T+1, self.FINISH] <= 0.0:\\n\",\n    \"            raise Exception(\\\"Impossible observation sequence\\\")\\n\",\n    \"        \\n\",\n    \"        if t >0 and t < self.T+1:\\n\",\n    \"            rv = (self.alpha_table[t, j] * self.beta_table[t, j] / \\n\",\n    \"                  self.alpha_table[self.T+1, self.FINISH])\\n\",\n    \"        elif t == 0:\\n\",\n    \"            if j == self.START:\\n\",\n    \"                rv = 1.0\\n\",\n    \"            else:\\n\",\n    \"                rv = 0.0\\n\",\n    \"        elif t == self.T+1:\\n\",\n    \"            if j == self.FINISH:\\n\",\n    \"                rv = 1.0\\n\",\n    \"            else:\\n\",\n    \"                rv = 0.0\\n\",\n    \"        else:\\n\",\n    \"            raise Exception(\\\"Invalid call to gamma()\\\")\\n\",\n    \"            \\n\",\n    \"        return rv\\n\",\n    \"\\n\",\n    \"    def a_from_xi(self, i, j, rtype='ratio'):\\n\",\n    \"        '''\\n\",\n    \"        Return new a_{ij} computed from xi\\n\",\n    \"        rtype: we define two return types, \\\"ratio\\\" or \\\"separate\\\", \\n\",\n    \"        the separate return type will be used in later functions. \\n\",\n    \"        '''\\n\",\n    \"    \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # Your code should compute a(hat) as described\\n\",\n    \"        # in Figure 9.16 of Jurafsky-Martin \\n\",\n    \"        # https://web.stanford.edu/~jurafsky/slp3/9.pdf. \\n\",\n    \"        \\n\",\n    \"        if j == self.START or i == self.FINISH:\\n\",\n    \"            numerator = 0.0\\n\",\n    \"            denominator = 1.0\\n\",\n    \"        else:\\n\",\n    \"            numerator = sum([self.xi(t, i, j) for t in \\n\",\n    \"                                range(0, self.T+1)])\\n\",\n    \"                \\n\",\n    \"            # Denominator in Jurafsky-Martin can be improved.    \\n\",\n    \"            #denominator = sum([self.xi(t, i, k) for t in \\n\",\n    \"            #                   range(0, self.T+1) for k in \\n\",\n    \"            #               range(self.N+2)])\\n\",\n    \"            denominator = sum([self.gamma(t, i) for t in\\n\",\n    \"                               range(self.T+1)])\\n\",\n    \"\\n\",\n    \"        if rtype == 'separate':\\n\",\n    \"            rv = (numerator, denominator)\\n\",\n    \"        elif math.isclose(denominator, 0.0):\\n\",\n    \"            print(\\\"Divide by zero in i={} j={}\\\".format(i, j))\\n\",\n    \"            rv = np.nan\\n\",\n    \"        else:\\n\",\n    \"            rv = numerator/denominator\\n\",\n    \"        return rv\\n\",\n    \"        \\n\",\n    \"        return rv\\n\",\n    \"        \\n\",\n    \"    def b_from_gamma(self, j, v, rtype='ratio'):\\n\",\n    \"        '''\\n\",\n    \"        Return new b_{ij} computed from xi\\n\",\n    \"        rtype: we define two return types, \\\"ratio\\\" or \\\"separate\\\", \\n\",\n    \"        the separate return type will be used in later functions. \\n\",\n    \"        '''\\n\",\n    \"    \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # Your code should compute b(hat) as described\\n\",\n    \"        # in Figure 9.16 of Jurafsky-Martin \\n\",\n    \"        # https://web.stanford.edu/~jurafsky/slp3/9.pdf. \\n\",\n    \"        \\n\",\n    \"        numerator = sum([self.gamma(t, j) for t in \\n\",\n    \"                         range(0, self.T+2) if self.O[t] == v])\\n\",\n    \"        denominator = sum([self.gamma(t, j) for t in \\n\",\n    \"                           range(0, self.T+2)])\\n\",\n    \"\\n\",\n    \"        if rtype == 'separate':\\n\",\n    \"            rv = (numerator, denominator)    \\n\",\n    \"        elif math.isclose(denominator, 0.0):\\n\",\n    \"            print(\\\"Divide by zero in j={}, v={}\\\".format(j, v))\\n\",\n    \"            rv = np.nan\\n\",\n    \"        else:\\n\",\n    \"            rv = numerator/denominator\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def new_a(self):\\n\",\n    \"        rv = np.array([[-1.0] * (self.N+2)] * (self.N+2))\\n\",\n    \"        for i in range(self.N+2):\\n\",\n    \"            for j in range(self.N+2):\\n\",\n    \"                rv[i,j] = self.a_from_xi(i, j)\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def new_b(self):\\n\",\n    \"        rv = np.array([[-1.0] * (self.M+2)] * (self.N+2))\\n\",\n    \"        for j in range(self.N+2):\\n\",\n    \"            for v in range(self.M+2):\\n\",\n    \"                rv[j,v] = self.b_from_gamma(j,v)\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def fit(self, O, max_iter=10, verbose=False):\\n\",\n    \"        '''\\n\",\n    \"        Run the forward-backward algorithm for a single observation\\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"        self.set_observations(O)\\n\",\n    \"        converged = False\\n\",\n    \"        i = 0\\n\",\n    \"        while not converged and i < max_iter:\\n\",\n    \"            i += 1\\n\",\n    \"            \\n\",\n    \"            self.forward()\\n\",\n    \"            self.backward()\\n\",\n    \"            \\n\",\n    \"            new_a = self.new_a()\\n\",\n    \"            new_b = self.new_b()\\n\",\n    \"            \\n\",\n    \"            if verbose:\\n\",\n    \"                print(f'Iteration {i}')\\n\",\n    \"                print(new_b.T)\\n\",\n    \"                print(new_a.T)\\n\",\n    \"        \\n\",\n    \"            if (np.allclose(new_a, self.a) and\\n\",\n    \"                    np.allclose(new_b, self.b)):\\n\",\n    \"                converged = True\\n\",\n    \"            else:\\n\",\n    \"                self.set_a_b(new_a, new_b)\\n\",\n    \"        return(i)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# A toy example for testing your code, based on Jason Eisner's\\n\",\n    \"# Workbook\\n\",\n    \"\\n\",\n    \"transmission_prob = np.array([\\n\",\n    \"    [0. , 0.5, 0.5, 0. ],\\n\",\n    \"    [0. , 0.8, 0.1, 0.1],\\n\",\n    \"    [0. , 0.2, 0.7, 0.1],\\n\",\n    \"    [0. , 0. , 0. , 0. ]])\\n\",\n    \"\\n\",\n    \"emission_prob = np.array([\\n\",\n    \"    [1. , 0. , 0. , 0. , 0. ],\\n\",\n    \"    [0. , 0.7, 0.2, 0.1, 0. ],\\n\",\n    \"    [0. , 0. , 0.3, 0.7, 0. ],\\n\",\n    \"    [0. , 0. , 0. , 0. , 1. ]])\\n\",\n    \"\\n\",\n    \"observation_short = [\\n\",\n    \"    0,\\n\",\n    \"    2, 3, 3, 2,\\n\",\n    \"    4\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"T_observation_short = len(observation_short) -2\\n\",\n    \"\\n\",\n    \"observation_long = [\\n\",\n    \"    0,\\n\",\n    \"    2, 3, 3, 2,\\n\",\n    \"    3, 2, 3, 2,\\n\",\n    \"    2, 3, 1, 3,\\n\",\n    \"    3, 1, 1, 1,\\n\",\n    \"    2, 1, 1, 1,\\n\",\n    \"    3, 1, 2, 1,\\n\",\n    \"    1, 1, 2, 3,\\n\",\n    \"    3, 2, 3, 2, \\n\",\n    \"    2,\\n\",\n    \"    4\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"T_observation_long = len(observation_long)-2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"hmms = HMM(transmission_prob, emission_prob)\\n\",\n    \"hmms.set_observations(observation_short)\\n\",\n    \"hmms.forward()\\n\",\n    \"expected_alpha = np.array(\\n\",\n    \"      [[1.        , 0.        , 0.        , 0.        ],\\n\",\n    \"       [0.        , 0.1       , 0.15      , 0.        ],\\n\",\n    \"       [0.        , 0.011     , 0.0805    , 0.        ],\\n\",\n    \"       [0.        , 0.00249   , 0.040215  , 0.        ],\\n\",\n    \"       [0.        , 0.002007  , 0.00851985, 0.        ],\\n\",\n    \"       [0.        , 0.        , 0.        , 0.00105268]])\\n\",\n    \"\\n\",\n    \"assert np.allclose(hmms.alpha_table, expected_alpha)\\n\",\n    \"\\n\",\n    \"hmms.backward()\\n\",\n    \"expected_beta = np.array([\\n\",\n    \"    [ 0.00105268, -1.        , -1.        , -1.        ],\\n\",\n    \"    [-1.        ,  0.0011457 ,  0.0062541 , -1.        ],\\n\",\n    \"    [-1.        ,  0.00327   ,  0.01263   , -1.        ],\\n\",\n    \"    [-1.        ,  0.019     ,  0.025     , -1.        ],\\n\",\n    \"    [-1.        ,  0.1       ,  0.1       , -1.        ]])\\n\",\n    \"assert np.allclose(hmms.beta_table, expected_beta)\\n\",\n    \"\\n\",\n    \"expected_decode = ([0, 2, 2, 2, 2, 3], 0.0007563149999999998)\\n\",\n    \"assert hmms.decode(hmms.O) == expected_decode\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"hmml = HMM(transmission_prob, emission_prob)\\n\",\n    \"hmml.fit(observation_long, max_iter = 20)\\n\",\n    \"expected_a = np.array([\\n\",\n    \"    [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\\n\",\n    \"    [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\\n\",\n    \"    [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\\n\",\n    \"    [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\\n\",\n    \"expected_b = np.array([\\n\",\n    \"    [1.        , 0.        , 0.        , 0.        , 0.        ],\\n\",\n    \"    [0.        , 0.64048263, 0.14806965, 0.21144771, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.53439047, 0.46560953, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.        , 0.        , 1.        ]])\\n\",\n    \"assert np.allclose(hmml.a, expected_a)\\n\",\n    \"assert np.allclose(hmml.b, expected_b)\\n\",\n    \"\\n\",\n    \"expected_decode_result = ([0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, \\n\",\n    \"                           1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, \\n\",\n    \"                           2, 2, 2, 2, 2, 2, 3],\\n\",\n    \"                          1.4779964597903278e-16)\\n\",\n    \"assert np.allclose(hmml.decode(hmml.O)[0], expected_decode_result[0])\\n\",\n    \"assert np.isclose(hmml.decode(hmml.O)[1], expected_decode_result[1])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"class HMMMulti(HMM):\\n\",\n    \"    '''\\n\",\n    \"    Run the forward-backward algorithm for multiple independent observations\\n\",\n    \"    \\n\",\n    \"    Follow the description in Sec 4.1 of \\\"Training Hidden Markov Models with \\n\",\n    \"    Multiple Observations – A Combinatorial Method\\\" by Li, Parizeau, \\n\",\n    \"    and Plamondon, available at \\n\",\n    \"    http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.335.1457&rep=rep1&type=pdf\\n\",\n    \"    '''    \\n\",\n    \"    \\n\",\n    \"    def update_new_a_num_deno(self):\\n\",\n    \"        for i in range(self.N+2):\\n\",\n    \"            for j in range(self.N+2):\\n\",\n    \"                (num, deno) = self.a_from_xi(i, j, 'separate')\\n\",\n    \"                self.new_a_num[i,j] += num\\n\",\n    \"                self.new_a_deno[i,j] += deno\\n\",\n    \"    \\n\",\n    \"    def update_new_b_num_deno(self):\\n\",\n    \"        for j in range(self.N+2):\\n\",\n    \"            for v in range(self.M+2):\\n\",\n    \"                (num, deno) = self.b_from_gamma(j, v, 'separate')\\n\",\n    \"                self.new_b_num[j, v] += num\\n\",\n    \"                self.new_b_deno[j, v] += deno\\n\",\n    \"                \\n\",\n    \"    def get_likelihoods(self):\\n\",\n    \"        '''Get the likelihood at each iteration of\\n\",\n    \"           the fit/learning step.\\n\",\n    \"           \\n\",\n    \"           Assume this is called only after a call to fit().'''\\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # WRITE YOUR CODE HERE ###########################\\n\",\n    \"        ##################################################\\n\",\n    \"        # You have to write code here, and make changes in \\n\",\n    \"        # other parts of this \\n\",\n    \"        # class as well to store the likelihoods of the \\n\",\n    \"        # entire set of observations Oset used in fit,\\n\",\n    \"        # at each step of the fit process, and return them\\n\",\n    \"        # when this function is called.\\n\",\n    \"        \\n\",\n    \"        prob = 0 # in log space\\n\",\n    \"        self.forward()\\n\",\n    \"        prob += np.log(self.alpha_table[\\n\",\n    \"            self.T+1, self.FINISH])\\n\",\n    \"        return np.exp(prob)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def fit(self, Oset, max_iter=10, verbose=False):\\n\",\n    \"        \\n\",\n    \"        self.new_a_num = np.array([[0.0] * (self.N+2)] * (self.N+2))\\n\",\n    \"        self.new_a_deno = np.array([[0.0] * (self.N+2)] * (self.N+2))\\n\",\n    \"        self.new_b_num = np.array([[0.0] * (self.M+2)] * (self.N+2))\\n\",\n    \"        self.new_b_deno = np.array([[0.0] * (self.M+2)] * (self.N+2))\\n\",\n    \"\\n\",\n    \"        \\n\",\n    \"        converged = False\\n\",\n    \"        i = 0\\n\",\n    \"        \\n\",\n    \"        while not converged and i < max_iter:\\n\",\n    \"            i += 1\\n\",\n    \"                   \\n\",\n    \"            for O in Oset:\\n\",\n    \"                self.set_observations(O)\\n\",\n    \"                \\n\",\n    \"                self.forward()\\n\",\n    \"                self.backward()\\n\",\n    \"                \\n\",\n    \"                \\n\",\n    \"            \\n\",\n    \"                self.update_new_a_num_deno()\\n\",\n    \"                self.update_new_b_num_deno()\\n\",\n    \"            \\n\",\n    \"            new_a = self.new_a_num / self.new_a_deno\\n\",\n    \"            new_b = self.new_b_num / self.new_b_deno\\n\",\n    \"            \\n\",\n    \"            if verbose:\\n\",\n    \"                print(f'Iteration {i}')\\n\",\n    \"                print(new_b.T)\\n\",\n    \"                print(new_a.T)\\n\",\n    \"            else:\\n\",\n    \"                print(f'Iteration {i}')\\n\",\n    \"        \\n\",\n    \"            if (np.allclose(new_a, self.a) and\\n\",\n    \"                    np.allclose(new_b, self.b)):\\n\",\n    \"                converged = True\\n\",\n    \"            else:\\n\",\n    \"                self.set_a_b(new_a, new_b)\\n\",\n    \"                self.new_a_num.fill(0)\\n\",\n    \"                self.new_a_deno.fill(0)\\n\",\n    \"                self.new_b_num.fill(0)\\n\",\n    \"                self.new_b_deno.fill(0)\\n\",\n    \"                \\n\",\n    \"                \\n\",\n    \"        return(i)\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"hmmml = HMMMulti(transmission_prob, emission_prob)\\n\",\n    \"hmmml.fit([observation_long]*5, max_iter = 20)\\n\",\n    \"expected_a = np.array([\\n\",\n    \"    [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\\n\",\n    \"    [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\\n\",\n    \"    [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\\n\",\n    \"    [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\\n\",\n    \"expected_b = np.array([\\n\",\n    \"    [1.        , 0.        , 0.        , 0.        , 0.        ],\\n\",\n    \"    [0.        , 0.64048263, 0.14806965, 0.21144771, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.53439047, 0.46560953, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.        , 0.        , 1.        ]])\\n\",\n    \"assert np.allclose(hmml.a, expected_a)\\n\",\n    \"assert np.allclose(hmml.b, expected_b)\\n\",\n    \"expected_likelihoods = [8.463524947168683e-21, 6.45760751286262e-19,\\n\",\n    \"                        2.604423720662633e-18, 3.772405535111533e-18,\\n\",\n    \"                        3.934445572171057e-18, 3.945375545182965e-18,\\n\",\n    \"                        3.9459945227193204e-18, 3.946030509476693e-18,\\n\",\n    \"                        3.946032758826868e-18, 3.946032909436204e-18,\\n\",\n    \"                        3.94603292005471e-18]\\n\",\n    \"assert np.allclose(hmmml.get_likelihoods(), expected_likelihoods)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import nltk\\n\",\n    \"from nltk.corpus import brown\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"class POS:\\n\",\n    \"    '''\\n\",\n    \"        Partition given sentences, or those obtained from the brown\\n\",\n    \"        corpus, equally into fit sentences and test sentences.\\n\",\n    \"        For each obtain tags using nltk tagger.  Initialize \\\"a\\\"\\n\",\n    \"        with the tags from all sentences, but with uniform\\n\",\n    \"        transition probabilities.  Initialize \\\"b\\\" with all words\\n\",\n    \"        in all sentences.  But the emission probability \\n\",\n    \"        initialization should only use the words in fit sentences.\\n\",\n    \"        For each word in the fit sentence, give its most common\\n\",\n    \"        tag \\\"high\\\" probability of emitting it.  All other words\\n\",\n    \"        get a \\\"low\\\" probability of being emitted by a tag.  (The\\n\",\n    \"        high and low values are different for each tag because of\\n\",\n    \"        normalization.)\\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"    def __init__(self, sents=None, category=None, \\n\",\n    \"                 num_sents=40,\\n\",\n    \"                 b_bound = 1*10**(-4), \\n\",\n    \"                 tagset=\\\"universal\\\"):\\n\",\n    \"        \\n\",\n    \"        if sents is None:\\n\",\n    \"            self.sents = brown.sents(categories=category)[:num_sents]\\n\",\n    \"            self.tagged_sents = brown.tagged_sents(\\n\",\n    \"                categories=category, tagset=tagset)[:num_sents]\\n\",\n    \"        else:\\n\",\n    \"            self.sents = [nltk.word_tokenize(s) for s in sents]\\n\",\n    \"            self.tagged_sents = [nltk.pos_tag(s, tagset = tagset)\\n\",\n    \"                                 for s in self.sents]\\n\",\n    \"            \\n\",\n    \"        self.fsize = int(len(self.sents) * 0.5)\\n\",\n    \"        self.fit_tsents = self.tagged_sents[:self.fsize]\\n\",\n    \"        self.test_tsents = self.tagged_sents[self.fsize:]\\n\",\n    \"        tagged_words = [tup for s in self.tagged_sents[:self.fsize] \\n\",\n    \"                        for tup in s]\\n\",\n    \"        \\n\",\n    \"        self.vocabulary = (['_SWORD'] + # Special observation in STAG\\n\",\n    \"                      sorted(list(set([w.lower() for \\n\",\n    \"                                    s in self.sents for w in s]))) +\\n\",\n    \"                      ['_FWORD']) # Special observation in FTAG\\n\",\n    \"        self.M = len(self.vocabulary) # Number of distinct observations\\n\",\n    \"        \\n\",\n    \"        print(f'Vocabulary size {self.M}')\\n\",\n    \"    \\n\",\n    \"        self.tags = (['STAG'] + # Special start state\\n\",\n    \"                     sorted(list(set([p[1] for s in self.tagged_sents \\n\",\n    \"                                        for p in s]))) + \\n\",\n    \"                     ['FTAG']) # Special end state\\n\",\n    \"        self.N = len(self.tags) # Number of states\\n\",\n    \"    \\n\",\n    \"        self.w2i = dict(zip(self.vocabulary, \\n\",\n    \"                            range(len(self.vocabulary))))\\n\",\n    \"        self.t2i = dict(zip(self.tags, range(len(self.tags))))\\n\",\n    \"        \\n\",\n    \"        # Initialize a (transition probabilities)\\n\",\n    \"        #self.a = np.random.rand(self.N, self.N)\\n\",\n    \"        self.a = np.ones((self.N, self.N))\\n\",\n    \"        self.a[:,0] = 0.0\\n\",\n    \"        self.a = self.a/(self.a.sum(axis=1).reshape(\\n\",\n    \"            self.a.shape[0],1))\\n\",\n    \"        self.a[-1,:] = 0.0\\n\",\n    \"        \\n\",\n    \"        cfd = nltk.ConditionalFreqDist((word.lower(), tag) for \\n\",\n    \"                                       (word, tag)\\n\",\n    \"                                       in tagged_words)\\n\",\n    \"        \\n\",\n    \"        # Initialize b (emission probabilities)\\n\",\n    \"        #self.b = np.random.rand(self.N, self.M)*b_random_bound\\n\",\n    \"        self.b = np.ones((self.N, self.M))*b_bound\\n\",\n    \"        # STAG only produces _SWORD and FTAG only produces _FWORD\\n\",\n    \"        self.b[0,:] = 0.0\\n\",\n    \"        self.b[:,0] = 0.0\\n\",\n    \"        self.b[0,0] = 1.0\\n\",\n    \"        self.b[-1,:] = 0.0\\n\",\n    \"        self.b[:,-1] = 0.0\\n\",\n    \"        self.b[-1, -1] = 1.0\\n\",\n    \"        # Set non-trivial probability of a word being produced\\n\",\n    \"        # by its most common tag\\n\",\n    \"        for word in cfd.conditions():\\n\",\n    \"            tag = (cfd[word].most_common(1)[0][0])\\n\",\n    \"            self.setb(tag, word, 0.5)\\n\",\n    \"        self.b = self.b/(self.b.sum(axis=1).reshape(self.N,1))\\n\",\n    \"        \\n\",\n    \"        # Initialize an HMM on oset with a, b\\n\",\n    \"        self.hmm = HMMMulti(self.a.copy(), self.b.copy())\\n\",\n    \"        \\n\",\n    \"    def create_oset(self):\\n\",\n    \"        \\n\",\n    \"        self.oset = []\\n\",\n    \"        for ts in self.tagged_sents:\\n\",\n    \"            s, _ = split_tagged_sent(ts)\\n\",\n    \"            self.oset.append(self.s2o(s))\\n\",\n    \"        \\n\",\n    \"    def fit(self, max_iter=10):\\n\",\n    \"        \\n\",\n    \"        # Create oset\\n\",\n    \"        self.create_oset()\\n\",\n    \"            \\n\",\n    \"        # Fit the hmm \\n\",\n    \"        self.hmm.fit(self.oset, max_iter=max_iter)\\n\",\n    \"        \\n\",\n    \"    def test(self):\\n\",\n    \"        \\n\",\n    \"        for descrip, ts_set in [(\\\"fit set\\\", self.fit_tsents), \\n\",\n    \"                                (\\\"test set\\\", self.test_tsents)]:        \\n\",\n    \"            correct = 0\\n\",\n    \"            sum_accuracy = 0\\n\",\n    \"            for ts in ts_set:\\n\",\n    \"                s, tag_seq = split_tagged_sent(ts)\\n\",\n    \"                predicted, _ = self.decode(s)\\n\",\n    \"                a = accuracy(tag_seq, predicted)\\n\",\n    \"                if a == 1.0:\\n\",\n    \"                    correct += 1\\n\",\n    \"                sum_accuracy += a\\n\",\n    \"            avg_accuracy = sum_accuracy/len(ts_set)\\n\",\n    \"            correct_ratio = correct/len(ts_set)\\n\",\n    \"            print(f\\\"For {descrip}: Average accuracy = \\\"\\n\",\n    \"                  f\\\"{avg_accuracy:.3f},\\\" \\n\",\n    \"                  f\\\" Totally correct ratio = \\\" \\n\",\n    \"                  f\\\"{correct_ratio:.3f}\\\")\\n\",\n    \"              \\n\",\n    \"    def decode(self, sentence):\\n\",\n    \"        if sentence[0] != 0: # Weak check if converted\\n\",\n    \"            O = self.s2o(sentence)\\n\",\n    \"        else:\\n\",\n    \"            O = sentence.copy()\\n\",\n    \"        state_seq, prob = self.hmm.decode(O)\\n\",\n    \"        tag_seq = [self.tags[s] for s in state_seq]\\n\",\n    \"        return (tag_seq, prob)\\n\",\n    \"        \\n\",\n    \"    def setb(self, j, w, p):\\n\",\n    \"        self.b[self.t2i[j], self.w2i[w]] = p\\n\",\n    \"    def getb(self, j, w, b=None):\\n\",\n    \"        if b is None:\\n\",\n    \"            b = self.b\\n\",\n    \"        return b[self.t2i[j], self.w2i[w]]\\n\",\n    \"    def seta(self, i, j, p):\\n\",\n    \"        self.a[self.t2i[i], self.t2i[j]] = p\\n\",\n    \"    def geta(self, i, j, a=None):\\n\",\n    \"        if a is None:\\n\",\n    \"            a = self.a\\n\",\n    \"        return a[self.t2i[i], self.t2i[j]]\\n\",\n    \"    def s2o(self, sentence):\\n\",\n    \"        return([0] + \\n\",\n    \"               [self.w2i[w.lower()] for w in sentence] + \\n\",\n    \"               [self.w2i['_FWORD']])\\n\",\n    \"    def i2t(self, state_sequence):\\n\",\n    \"        return [self.tags[i] for i in state_sequence][1:-1]\\n\",\n    \"    \\n\",\n    \"    def print_b_unsorted(self, b=None):\\n\",\n    \"        if b is None:\\n\",\n    \"            b = self.b\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for w in self.vocabulary:\\n\",\n    \"                p = self.getb(t, w, b)\\n\",\n    \"                if p > 10**(-5):\\n\",\n    \"                    print(f' {w}[{p:.5f}]', end='')\\n\",\n    \"                    \\n\",\n    \"    def print_a_unsorted(self, a=None):\\n\",\n    \"        if a is None:\\n\",\n    \"            a = self.a\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for u in self.tags:\\n\",\n    \"                p = self.geta(t, u, a)\\n\",\n    \"                print(f' {u}[{p:.5f}]', end='')\\n\",\n    \"                \\n\",\n    \"    def print_b(self, b=None):\\n\",\n    \"        if b is None:\\n\",\n    \"            b = self.b\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            ptups = zip(b[self.t2i[t],:],self.vocabulary)\\n\",\n    \"            ptups = sorted(ptups, key = lambda tup: tup[0],\\n\",\n    \"                          reverse = True) \\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for tup in ptups:\\n\",\n    \"                print(f' {tup[1]}[{tup[0]}]', end='')\\n\",\n    \"                \\n\",\n    \"    def print_a(self, a=None):\\n\",\n    \"        if a is None:\\n\",\n    \"            a = self.a\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            ptups = zip(a[self.t2i[t],:],self.tags)\\n\",\n    \"            ptups = sorted(ptups, key = lambda tup: tup[0],\\n\",\n    \"                          reverse = True) \\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for tup in ptups:\\n\",\n    \"                print(f' {tup[1]}[{tup[0]}]', end='')\\n\",\n    \"                \\n\",\n    \"    def create_tagged_sent(self, sentence, tags):\\n\",\n    \"        if sentence[0] != '_SWORD':\\n\",\n    \"            s = (['_SWORD'] + \\n\",\n    \"                 [w.lower() for w in sentence] + \\n\",\n    \"                 ['_FWORD'])\\n\",\n    \"        else:\\n\",\n    \"            s = sentence\\n\",\n    \"        return list(zip(s, tags))\\n\",\n    \"    \\n\",\n    \"    def check_sent(self, sentence_number):\\n\",\n    \"        n = sentence_number\\n\",\n    \"        s = self.sents[n]\\n\",\n    \"        tag_seq = [tag for (word, tag) in \\n\",\n    \"                             self.tagged_sents[n]]\\n\",\n    \"        predicted_tag_seq = self.decode(s)[0][1:-1]\\n\",\n    \"        return list(zip(s, tag_seq, predicted_tag_seq))\\n\",\n    \"\\n\",\n    \"def split_tagged_sent(tagged_sent):\\n\",\n    \"    return list(zip(*tagged_sent))\\n\",\n    \"\\n\",\n    \"def accuracy(tag_seq, predicted_tag_seq):\\n\",\n    \"    if predicted_tag_seq[0] == 'STAG':\\n\",\n    \"        p = predicted_tag_seq[1:-1]\\n\",\n    \"    else:\\n\",\n    \"        p = predicted_tag_seq\\n\",\n    \"    return (sum(t == pt for (t, pt) in zip(tag_seq, p))/\\n\",\n    \"            len(tag_seq))\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"sents_example_1 = [\\n\",\n    \"    \\\"Janet will back the bill.\\\",\\n\",\n    \"    \\\"Richard will eat an apple.\\\",\\n\",\n    \"    \\\"Mary will run a mile.\\\",\\n\",\n    \"    \\\"Sam will write an essay.\\\",\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"start = time.time()\\n\",\n    \"pos = POS(sents_example_1)\\n\",\n    \"pos.fit(100)\\n\",\n    \"pos.test()\\n\",\n    \"pos.print_a(pos.hmm.a)\\n\",\n    \"pos.print_b(pos.hmm.b)\\n\",\n    \"finish = time.time()\\n\",\n    \"elapsed = finish - start\\n\",\n    \"print(\\\"time elapsed: \\\", elapsed)\\n\",\n    \"\\n\",\n    \"############################################################\\n\",\n    \"# PLEASE ANSWER THE FOLLOWING:  ############################\\n\",\n    \"############################################################\\n\",\n    \"# Did the HMM based POS tagger learn a correct POS\\n\",\n    \"# tagging model? If not, what might be the cause?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"sents_example_2 = [\\n\",\n    \"    \\\"Janet will back the bill.\\\",\\n\",\n    \"    \\\"Janet likes music.\\\",\\n\",\n    \"    \\\"Richard will eat an apple.\\\",\\n\",\n    \"    \\\"Peter needs rest.\\\",\\n\",\n    \"    \\\"Mary will run a mile.\\\",\\n\",\n    \"    \\\"Joe hates TV.\\\",\\n\",\n    \"    \\\"Sam will write an essay.\\\",\\n\",\n    \"    \\\"Ramona loves cooking.\\\",\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"start = time.time()\\n\",\n    \"pos = POS(sents_example_2)\\n\",\n    \"pos.fit(100)\\n\",\n    \"pos.test()\\n\",\n    \"pos.print_a(pos.hmm.a)\\n\",\n    \"pos.print_b(pos.hmm.b)\\n\",\n    \"finish = time.time()\\n\",\n    \"elapsed = finish - start\\n\",\n    \"print(\\\"time elapsed: \\\", elapsed)\\n\",\n    \"\\n\",\n    \"############################################################\\n\",\n    \"# PLEASE ANSWER THE FOLLOWING:  ############################\\n\",\n    \"############################################################\\n\",\n    \"# Did the HMM based POS tagger learn a correct POS\\n\",\n    \"# tagging model? If not, what might be the cause?\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from nltk import sent_tokenize\\n\",\n    \"\\n\",\n    \"with open(\\\"dev.txt\\\", \\\"r\\\") as fin:\\n\",\n    \"    text = fin.read()\\n\",\n    \"    \\n\",\n    \"sents_example_3 = sent_tokenize(text)\\n\",\n    \"\\n\",\n    \"start = time.time()\\n\",\n    \"pos = POS(sents_example_3)\\n\",\n    \"pos.fit(100)\\n\",\n    \"pos.test()\\n\",\n    \"pos.print_a(pos.hmm.a)\\n\",\n    \"pos.print_b(pos.hmm.b)\\n\",\n    \"finish = time.time()\\n\",\n    \"elapsed = finish - start\\n\",\n    \"print(\\\"time elapsed: \\\", elapsed)\\n\",\n    \"\\n\",\n    \"############################################################\\n\",\n    \"# PLEASE ANSWER THE FOLLOWING:  ############################\\n\",\n    \"############################################################\\n\",\n    \"# Did the HMM based POS tagger learn a correct POS\\n\",\n    \"# tagging model? If not, what might be the cause?\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "P009StructureLearning/pos-hmm-hw.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"import math\\n\",\n    \"%matplotlib inline\\n\",\n    \"\\n\",\n    \"class HMM:\\n\",\n    \"    '''\\n\",\n    \"    实现一个HMM\\n\",\n    \"    \\n\",\n    \"    我们使用Jurafsky--Martin中的公式\\n\",\n    \"    (https://web.stanford.edu/~jurafsky/slp3/9.pdf)\\n\",\n    \"    \\n\",\n    \"    假设我们有N个隐藏状态，1,2,...,N。隐藏状态0和N+1是START和STOP状态，\\n\",\n    \"    只有在开头和结束的时候出现。\\n\",\n    \"    \\n\",\n    \"    假设我们有M个观测状态，1,2,...,M。观察状态0和M+1是为了开头和结束保留的。\\n\",\n    \"    '''\\n\",\n    \"    \\n\",\n    \"    def __init__(self, a, b):\\n\",\n    \"        '''\\n\",\n    \"        初始化HMM参数\\n\",\n    \"        \\n\",\n    \"        用一些随机数来初始化模型参数。\\n\",\n    \"        \\n\",\n    \"        \\\"a\\\", 状态转移概率矩阵，是一个 (N+2) x (N+2)的矩阵。\\n\",\n    \"        a(i, j)代表从隐状态i转变到隐状态j的概率。\\n\",\n    \"        由于我们不能从任何状态回到状态0，所以a的第一列全部为0。\\n\",\n    \"        同理，第N+1行也全部为0。\\n\",\n    \"        \\n\",\n    \"        \\\"b\\\", 观测生成概率矩阵，是一个(N+2) x (M+2)的矩阵。\\n\",\n    \"        b(i, j)代表从隐状态i生成观测状态j的概率。\\n\",\n    \"        由于观测状态0只会从隐状态0中产生，第一行只有第一列为1.0，\\n\",\n    \"        其余都为0。同理，第N+1行只有第M+1列为1.0，其余都是0。\\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"        \\n\",\n    \"        # Check input\\n\",\n    \"        if (a.shape[0] != a.shape[1] or\\n\",\n    \"            a.shape[0] != b.shape[0]):\\n\",\n    \"            raise Exception(\\\"Improper a or b matrix shapes.\\\")\\n\",\n    \"            \\n\",\n    \"        # N is number of regular states     \\n\",\n    \"        self.N = a.shape[0] - 2\\n\",\n    \"        # M is number of regular outputs\\n\",\n    \"        self.M = b.shape[1] - 2\\n\",\n    \"        \\n\",\n    \"        self.a = a\\n\",\n    \"        self.b = b\\n\",\n    \"        \\n\",\n    \"        # Useful macros\\n\",\n    \"        self.START = 0 # start state\\n\",\n    \"        self.FINISH = self.N+1 # finish state\\n\",\n    \"        self.STATES = range(1, self.N+1) # set of regular states\\n\",\n    \"        \\n\",\n    \"        # placeholders\\n\",\n    \"        self.O = [] # observation sequence\\n\",\n    \"        self.T = 0 # number of observations\\n\",\n    \"        self.alpha_table = None\\n\",\n    \"        self.beta_table = None\\n\",\n    \"        self.viterbi_table = None\\n\",\n    \"        self.viterbi_bpointers = None\\n\",\n    \"        \\n\",\n    \"    def print(self):\\n\",\n    \"        print(f\\\"N {self.N} M {self.M} T {self.T}\\\")\\n\",\n    \"        print(\\\"Transmission probabilities 'a'\\\")\\n\",\n    \"        print(self.a)\\n\",\n    \"        print(\\\"Emission probabilities 'b'\\\")\\n\",\n    \"        print(self.b)\\n\",\n    \"        \\n\",\n    \"    def set_a_b(self, a, b):\\n\",\n    \"        \\n\",\n    \"        if (a.shape[0] != a.shape[1] or a.shape[0] != b.shape[0] or\\n\",\n    \"            a.shape[0] != self.N+2 or b.shape[1] != self.M+2):\\n\",\n    \"            raise Exception('Incompatible a, b shapes')\\n\",\n    \"        \\n\",\n    \"        self.a = a\\n\",\n    \"        self.b = b\\n\",\n    \"        self.reset_alpha_beta_tables()\\n\",\n    \"        \\n\",\n    \"    def reset_alpha_beta_tables(self):\\n\",\n    \"        \\n\",\n    \"        # intialize alpha values to save recursive calls\\n\",\n    \"        self.alpha_table = np.array(\\n\",\n    \"            [[-1.0] * (self.N+2)] * (self.T+2))\\n\",\n    \"        self.alpha_table[self.T+1, :self.N+1] = 0.0\\n\",\n    \"        self.alpha_table[0, 0] = 1.0\\n\",\n    \"        self.alpha_table[0, 1:] = 0.0\\n\",\n    \"        \\n\",\n    \"        # initialize beta values\\n\",\n    \"        self.beta_table = np.array(\\n\",\n    \"            [[-1.0] * (self.N+2)] * (self.T+1)) \\n\",\n    \"        # Recall beta(T+1, i) is not defined.\\n\",\n    \"        \\n\",\n    \"    def set_observations(self, O):\\n\",\n    \"        '''\\n\",\n    \"        设置观测序列\\n\",\n    \"        \\n\",\n    \"        假设第一个观测是0，最后一个观测是M+1，其余是\\n\",\n    \"        [1,...,M]。\\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"        # Check that observations are valid\\n\",\n    \"        if (not set(O[1:-1]).issubset(set(range(1, self.M+1))) or\\n\",\n    \"            O[0] != 0 or O[-1] != self.M+1):\\n\",\n    \"            print(O)\\n\",\n    \"            raise Exception(\\\"Invalid observation sequence.\\\")\\n\",\n    \"        self.O = O\\n\",\n    \"        self.T = len(O)-2\\n\",\n    \"        self.reset_alpha_beta_tables()\\n\",\n    \"        \\n\",\n    \"    \\n\",\n    \"    def forward(self):\\n\",\n    \"        '''Fill alpha_table, i.e., alpha_t(j)'s'''\\n\",\n    \"        \\n\",\n    \"        # This should be called after set_observation, \\n\",\n    \"        # else self.T == 0.\\n\",\n    \"        \\n\",\n    \"        if (self.T == 0):\\n\",\n    \"            raise Exception(\\\"Premature call to alpha().\\\")\\n\",\n    \"        \\n\",\n    \"        # Fill t=0 values\\n\",\n    \"        self.alpha_table[0, self.START] = 1.0\\n\",\n    \"        for j in range(1, self.N+1):\\n\",\n    \"            self.alpha_table[0, j] = 0.0\\n\",\n    \"            \\n\",\n    \"        # Fill remaining values \\\"recursively\\\"\\n\",\n    \"        for t in range(1, self.T+2):\\n\",\n    \"            for j in range(self.N+2):\\n\",\n    \"                self.alpha_table[t, j] = sum(\\n\",\n    \"                    [self.alpha_table[t-1, i] * self.a[i, j]  \\n\",\n    \"                     for i in range(self.N+2)]\\n\",\n    \"                    ) * self.b[j, self.O[t]]\\n\",\n    \"                \\n\",\n    \"    def decode(self, obs=None):\\n\",\n    \"        '''给定观测序列和self.a, self.b,\\n\",\n    \"        返回最可能的hidden state序列，以及它的概率。'''\\n\",\n    \"        \\n\",\n    \"        seq = []\\n\",\n    \"        prob = 0.0\\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # 你的代码 ########################################\\n\",\n    \"        ##################################################\\n\",\n    \"        # 你的代码应当实现VITERBI算法\\n\",\n    \"        # 具体来说，把概率存在一张表格X中，把上一个状态的指针存在\\n\",\n    \"        # 另一张表格Y中。\\n\",\n    \"        # 你应该从表格Y中得到最好的隐状态序列，并计算它的概率。\\n\",\n    \"        # 你会用到self.a, self.b和self.T，不过你不需要使用alpha\\n\",\n    \"        # 或者beta表格。\\n\",\n    \"        \\n\",\n    \"        return (seq, prob)\\n\",\n    \"    \\n\",\n    \"    def backward(self):\\n\",\n    \"        '''填充beta_table beta_t(i)'''\\n\",\n    \"               \\n\",\n    \"        # Unlike alpha we don't define beta(T+1, i).\\n\",\n    \"        # This should be called after set_observation, \\n\",\n    \"        # else self.T == 0.\\n\",\n    \"        \\n\",\n    \"        if (self.T == 0):\\n\",\n    \"            raise Exception(\\\"Premature call to beta()\\\")\\n\",\n    \"            \\n\",\n    \"        # First fill for t = T\\n\",\n    \"        for i in range(1, self.N+1):\\n\",\n    \"            self.beta_table[self.T, i] = self.a[i, self.FINISH]\\n\",\n    \"            \\n\",\n    \"        # Fill for t=1 to T-1 \\\"recursively\\\"\\n\",\n    \"        for t in range(self.T-1, 0, -1):\\n\",\n    \"            for i in range(1, self.N+1):\\n\",\n    \"                self.beta_table[t, i] = sum(\\n\",\n    \"                    [self.a[i, j] * self.b[j,  self.O[t+1]] * \\n\",\n    \"                     self.beta_table[t+1, j] for j in self.STATES])\\n\",\n    \"        \\n\",\n    \"        # Fill in for t = 0 and i = START\\n\",\n    \"        self.beta_table[0, self.START] = sum(\\n\",\n    \"                [self.a[self.START, j] * self.b[j,  self.O[1]] * \\n\",\n    \"                 self.beta_table[1, j] for j in self.STATES])\\n\",\n    \"    \\n\",\n    \"    def xi(self, t, i, j):\\n\",\n    \"        '''\\n\",\n    \"        Return xi_t(i, j)\\n\",\n    \"        '''        \\n\",\n    \"\\n\",\n    \"        # The basic formula works for t=0 as well. For t=T we need\\n\",\n    \"        # a special case because beta(t+1, j) is not defined for all j.\\n\",\n    \"                \\n\",\n    \"        if self.alpha_table[self.T+1, self.FINISH] <= 0.0:\\n\",\n    \"            raise Exception(\\\"Impossible observation sequence\\\")\\n\",\n    \"    \\n\",\n    \"        if t >= 0 and t < self.T:\\n\",\n    \"            rv = (self.alpha_table[t, i] * self.a[i, j] * \\n\",\n    \"                   self.b[j, self.O[t+1]] * self.beta_table[t+1, j]\\n\",\n    \"                 )/ self.alpha_table[self.T+1, self.FINISH]            \\n\",\n    \"        elif t == self.T: # non-zero only for j == FINISH\\n\",\n    \"            if j != self.FINISH:\\n\",\n    \"                rv = 0.0\\n\",\n    \"            else:\\n\",\n    \"                rv = (self.alpha_table[t, i] * self.a[i, j] / \\n\",\n    \"                  self.alpha_table[self.T+1, self.FINISH])\\n\",\n    \"        else:\\n\",\n    \"            raise Exception(\\\"Invalid call to xi().\\\")\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def gamma(self, t, j):\\n\",\n    \"        '''\\n\",\n    \"        返回 gamma_t(j)\\n\",\n    \"        '''  \\n\",\n    \"        \\n\",\n    \"        rv = 0\\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # 你的代码 ########################################\\n\",\n    \"        ##################################################\\n\",\n    \"        # 你的代码需要计算 gamma_t(j) \\n\",\n    \"        # 你会需要用到self.alpha_table, self.beta_table, \\n\",\n    \"        # self.T以及self.START, self.FINISH等等。\\n\",\n    \"            \\n\",\n    \"        return rv\\n\",\n    \"\\n\",\n    \"    def a_from_xi(self, i, j, rtype='ratio'):\\n\",\n    \"        '''\\n\",\n    \"        Return new a_{ij} computed from xi\\n\",\n    \"        '''\\n\",\n    \"    \\n\",\n    \"        if j == self.START or i == self.FINISH:\\n\",\n    \"            numerator = 0.0\\n\",\n    \"            denominator = 1.0\\n\",\n    \"        else:\\n\",\n    \"            numerator = sum([self.xi(t, i, j) for t in \\n\",\n    \"                                range(0, self.T+1)])\\n\",\n    \" \\n\",\n    \"            #denominator = sum([self.xi(t, i, k) for t in \\n\",\n    \"            #                   range(0, self.T+1) for k in \\n\",\n    \"            #               range(self.N+2)])\\n\",\n    \"            denominator = sum([self.gamma(t, i) for t in\\n\",\n    \"                               range(self.T+1)])\\n\",\n    \"\\n\",\n    \"        if rtype == 'separate':\\n\",\n    \"            rv = (numerator, denominator)\\n\",\n    \"        elif math.isclose(denominator, 0.0):\\n\",\n    \"            print(\\\"Divide by zero in i={} j={}\\\".format(i, j))\\n\",\n    \"            rv = np.nan\\n\",\n    \"        else:\\n\",\n    \"            rv = numerator/denominator\\n\",\n    \"        return rv\\n\",\n    \"        \\n\",\n    \"    def b_from_gamma(self, j, v, rtype='ratio'):\\n\",\n    \"    \\n\",\n    \"        numerator = sum([self.gamma(t, j) for t in \\n\",\n    \"                         range(0, self.T+2) if self.O[t] == v])\\n\",\n    \"        denominator = sum([self.gamma(t, j) for t in \\n\",\n    \"                           range(0, self.T+2)])\\n\",\n    \"\\n\",\n    \"        if rtype == 'separate':\\n\",\n    \"            rv = (numerator, denominator)    \\n\",\n    \"        elif math.isclose(denominator, 0.0):\\n\",\n    \"            print(\\\"Divide by zero in j={}, v={}\\\".format(j, v))\\n\",\n    \"            rv = np.nan\\n\",\n    \"        else:\\n\",\n    \"            rv = numerator/denominator\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def new_a(self):\\n\",\n    \"        rv = np.array([[-1.0] * (self.N+2)] * (self.N+2))\\n\",\n    \"        for i in range(self.N+2):\\n\",\n    \"            for j in range(self.N+2):\\n\",\n    \"                rv[i,j] = self.a_from_xi(i, j)\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def new_b(self):\\n\",\n    \"        rv = np.array([[-1.0] * (self.M+2)] * (self.N+2))\\n\",\n    \"        for j in range(self.N+2):\\n\",\n    \"            for v in range(self.M+2):\\n\",\n    \"                rv[j,v] = self.b_from_gamma(j,v)\\n\",\n    \"        return rv\\n\",\n    \"    \\n\",\n    \"    def fit(self, O, max_iter=10, verbose=False):\\n\",\n    \"        \\n\",\n    \"        self.set_observations(O)\\n\",\n    \"        converged = False\\n\",\n    \"        i = 0\\n\",\n    \"        while not converged and i < max_iter:\\n\",\n    \"            i += 1\\n\",\n    \"            \\n\",\n    \"            self.forward()\\n\",\n    \"            self.backward()\\n\",\n    \"            \\n\",\n    \"            new_a = self.new_a()\\n\",\n    \"            new_b = self.new_b()\\n\",\n    \"            \\n\",\n    \"            if verbose:\\n\",\n    \"                print(f'Iteration {i}')\\n\",\n    \"                print(new_b.T)\\n\",\n    \"                print(new_a.T)\\n\",\n    \"        \\n\",\n    \"            if (np.allclose(new_a, self.a) and\\n\",\n    \"                    np.allclose(new_b, self.b)):\\n\",\n    \"                converged = True\\n\",\n    \"            else:\\n\",\n    \"                self.set_a_b(new_a, new_b)\\n\",\n    \"        return(i)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# A toy example for testing your code, based on Jason Eisner's\\n\",\n    \"# Workbook\\n\",\n    \"\\n\",\n    \"transmission_prob = np.array([\\n\",\n    \"    [0. , 0.5, 0.5, 0. ],\\n\",\n    \"    [0. , 0.8, 0.1, 0.1],\\n\",\n    \"    [0. , 0.2, 0.7, 0.1],\\n\",\n    \"    [0. , 0. , 0. , 0. ]])\\n\",\n    \"\\n\",\n    \"emission_prob = np.array([\\n\",\n    \"    [1. , 0. , 0. , 0. , 0. ],\\n\",\n    \"    [0. , 0.7, 0.2, 0.1, 0. ],\\n\",\n    \"    [0. , 0. , 0.3, 0.7, 0. ],\\n\",\n    \"    [0. , 0. , 0. , 0. , 1. ]])\\n\",\n    \"\\n\",\n    \"observation_short = [\\n\",\n    \"    0,\\n\",\n    \"    2, 3, 3, 2,\\n\",\n    \"    4\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"T_observation_short = len(observation_short) -2\\n\",\n    \"\\n\",\n    \"observation_long = [\\n\",\n    \"    0,\\n\",\n    \"    2, 3, 3, 2,\\n\",\n    \"    3, 2, 3, 2,\\n\",\n    \"    2, 3, 1, 3,\\n\",\n    \"    3, 1, 1, 1,\\n\",\n    \"    2, 1, 1, 1,\\n\",\n    \"    3, 1, 2, 1,\\n\",\n    \"    1, 1, 2, 3,\\n\",\n    \"    3, 2, 3, 2, \\n\",\n    \"    2,\\n\",\n    \"    4\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"T_observation_long = len(observation_long)-2\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"ename\": \"AssertionError\",\n     \"evalue\": \"\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mAssertionError\\u001b[0m                            Traceback (most recent call last)\",\n      \"\\u001b[0;32m<ipython-input-3-2f0b946b4a3c>\\u001b[0m in \\u001b[0;36m<module>\\u001b[0;34m()\\u001b[0m\\n\\u001b[1;32m     22\\u001b[0m \\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m     23\\u001b[0m \\u001b[0mexpected_decode\\u001b[0m \\u001b[0;34m=\\u001b[0m \\u001b[0;34m(\\u001b[0m\\u001b[0;34m[\\u001b[0m\\u001b[0;36m0\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;36m2\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;36m2\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;36m2\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;36m2\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;36m3\\u001b[0m\\u001b[0;34m]\\u001b[0m\\u001b[0;34m,\\u001b[0m \\u001b[0;36m0.0007563149999999998\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m---> 24\\u001b[0;31m \\u001b[0;32massert\\u001b[0m \\u001b[0mhmms\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mdecode\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0mhmms\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mO\\u001b[0m\\u001b[0;34m)\\u001b[0m \\u001b[0;34m==\\u001b[0m \\u001b[0mexpected_decode\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\",\n      \"\\u001b[0;31mAssertionError\\u001b[0m: \"\n     ]\n    }\n   ],\n   \"source\": [\n    \"hmms = HMM(transmission_prob, emission_prob)\\n\",\n    \"hmms.set_observations(observation_short)\\n\",\n    \"hmms.forward()\\n\",\n    \"expected_alpha = np.array(\\n\",\n    \"      [[1.        , 0.        , 0.        , 0.        ],\\n\",\n    \"       [0.        , 0.1       , 0.15      , 0.        ],\\n\",\n    \"       [0.        , 0.011     , 0.0805    , 0.        ],\\n\",\n    \"       [0.        , 0.00249   , 0.040215  , 0.        ],\\n\",\n    \"       [0.        , 0.002007  , 0.00851985, 0.        ],\\n\",\n    \"       [0.        , 0.        , 0.        , 0.00105268]])\\n\",\n    \"\\n\",\n    \"assert np.allclose(hmms.alpha_table, expected_alpha)\\n\",\n    \"\\n\",\n    \"hmms.backward()\\n\",\n    \"expected_beta = np.array([\\n\",\n    \"    [ 0.00105268, -1.        , -1.        , -1.        ],\\n\",\n    \"    [-1.        ,  0.0011457 ,  0.0062541 , -1.        ],\\n\",\n    \"    [-1.        ,  0.00327   ,  0.01263   , -1.        ],\\n\",\n    \"    [-1.        ,  0.019     ,  0.025     , -1.        ],\\n\",\n    \"    [-1.        ,  0.1       ,  0.1       , -1.        ]])\\n\",\n    \"assert np.allclose(hmms.beta_table, expected_beta)\\n\",\n    \"\\n\",\n    \"expected_decode = ([0, 2, 2, 2, 2, 3], 0.0007563149999999998)\\n\",\n    \"assert hmms.decode(hmms.O) == expected_decode\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"hmml = HMM(transmission_prob, emission_prob)\\n\",\n    \"hmml.fit(observation_long, max_iter = 20)\\n\",\n    \"expected_a = np.array([\\n\",\n    \"    [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\\n\",\n    \"    [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\\n\",\n    \"    [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\\n\",\n    \"    [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\\n\",\n    \"expected_b = np.array([\\n\",\n    \"    [1.        , 0.        , 0.        , 0.        , 0.        ],\\n\",\n    \"    [0.        , 0.64048263, 0.14806965, 0.21144771, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.53439047, 0.46560953, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.        , 0.        , 1.        ]])\\n\",\n    \"assert np.allclose(hmml.a, expected_a)\\n\",\n    \"assert np.allclose(hmml.b, expected_b)\\n\",\n    \"\\n\",\n    \"expected_decode_result = ([0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, \\n\",\n    \"                           1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, \\n\",\n    \"                           2, 2, 2, 2, 2, 2, 3],\\n\",\n    \"                          1.4779964597903278e-16)\\n\",\n    \"assert np.allclose(hmml.decode(hmml.O)[0], expected_decode_result[0])\\n\",\n    \"assert np.isclose(hmml.decode(hmml.O)[1], expected_decode_result[1])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"class HMMMulti(HMM):\\n\",\n    \"        \\n\",\n    \"    def update_new_a_num_deno(self):\\n\",\n    \"        for i in range(self.N+2):\\n\",\n    \"            for j in range(self.N+2):\\n\",\n    \"                (num, deno) = self.a_from_xi(i, j, 'separate')\\n\",\n    \"                self.new_a_num[i,j] += num\\n\",\n    \"                self.new_a_deno[i,j] += deno\\n\",\n    \"    \\n\",\n    \"    def update_new_b_num_deno(self):\\n\",\n    \"        for j in range(self.N+2):\\n\",\n    \"            for v in range(self.M+2):\\n\",\n    \"                (num, deno) = self.b_from_gamma(j, v, 'separate')\\n\",\n    \"                self.new_b_num[j, v] += num\\n\",\n    \"                self.new_b_deno[j, v] += deno\\n\",\n    \"                \\n\",\n    \"    def get_likelihoods(self):\\n\",\n    \"        '''在每一个fit/learning步骤中计算似然概率。\\n\",\n    \"           \\n\",\n    \"           假设它会在fit函数中被用到。'''\\n\",\n    \"        \\n\",\n    \"        rv = []\\n\",\n    \"        \\n\",\n    \"        ##################################################\\n\",\n    \"        # 你的代码 ########################################\\n\",\n    \"        ##################################################\\n\",\n    \"        # 你需要在这里填充代码，然后这个class中的别的方法可能也要\\n\",\n    \"        # 做出相应的修改。你需要储存观测序列Oset在当前参数下的似然\\n\",\n    \"        # 概率。这个函数在fit函数下会被用到。\\n\",\n    \"\\n\",\n    \"        return rv\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def fit(self, Oset, max_iter=10, verbose=False):\\n\",\n    \"        \\n\",\n    \"        self.new_a_num = np.array([[0.0] * (self.N+2)] * (self.N+2))\\n\",\n    \"        self.new_a_deno = np.array([[0.0] * (self.N+2)] * (self.N+2))\\n\",\n    \"        self.new_b_num = np.array([[0.0] * (self.M+2)] * (self.N+2))\\n\",\n    \"        self.new_b_deno = np.array([[0.0] * (self.M+2)] * (self.N+2))\\n\",\n    \"\\n\",\n    \"        \\n\",\n    \"        converged = False\\n\",\n    \"        i = 0\\n\",\n    \"        \\n\",\n    \"        while not converged and i < max_iter:\\n\",\n    \"            i += 1\\n\",\n    \"                   \\n\",\n    \"            for O in Oset:\\n\",\n    \"                self.set_observations(O)\\n\",\n    \"                \\n\",\n    \"                self.forward()\\n\",\n    \"                self.backward()\\n\",\n    \"                \\n\",\n    \"                \\n\",\n    \"            \\n\",\n    \"                self.update_new_a_num_deno()\\n\",\n    \"                self.update_new_b_num_deno()\\n\",\n    \"            \\n\",\n    \"            new_a = self.new_a_num / self.new_a_deno\\n\",\n    \"            new_b = self.new_b_num / self.new_b_deno\\n\",\n    \"            \\n\",\n    \"            if verbose:\\n\",\n    \"                print(f'Iteration {i}')\\n\",\n    \"                print(new_b.T)\\n\",\n    \"                print(new_a.T)\\n\",\n    \"            else:\\n\",\n    \"                print(f'Iteration {i}')\\n\",\n    \"        \\n\",\n    \"            if (np.allclose(new_a, self.a) and\\n\",\n    \"                    np.allclose(new_b, self.b)):\\n\",\n    \"                converged = True\\n\",\n    \"            else:\\n\",\n    \"                self.set_a_b(new_a, new_b)\\n\",\n    \"                self.new_a_num.fill(0)\\n\",\n    \"                self.new_a_deno.fill(0)\\n\",\n    \"                self.new_b_num.fill(0)\\n\",\n    \"                self.new_b_deno.fill(0)\\n\",\n    \"                \\n\",\n    \"                \\n\",\n    \"        return(i)\\n\",\n    \"    \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"hmmml = HMMMulti(transmission_prob, emission_prob)\\n\",\n    \"hmmml.fit([observation_long]*5, max_iter = 20)\\n\",\n    \"expected_a = np.array([\\n\",\n    \"    [0.00000000e+00, 5.68740363e-15, 1.00000000e+00, 0.00000000e+00],\\n\",\n    \"    [0.00000000e+00, 9.33778559e-01, 6.62214406e-02, 1.21039999e-15],\\n\",\n    \"    [0.00000000e+00, 7.18667227e-02, 8.64943927e-01, 6.31893502e-02],\\n\",\n    \"    [0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00]])\\n\",\n    \"expected_b = np.array([\\n\",\n    \"    [1.        , 0.        , 0.        , 0.        , 0.        ],\\n\",\n    \"    [0.        , 0.64048263, 0.14806965, 0.21144771, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.53439047, 0.46560953, 0.        ],\\n\",\n    \"    [0.        , 0.        , 0.        , 0.        , 1.        ]])\\n\",\n    \"assert np.allclose(hmml.a, expected_a)\\n\",\n    \"assert np.allclose(hmml.b, expected_b)\\n\",\n    \"expected_likelihoods = [8.463524947168683e-21, 6.45760751286262e-19,\\n\",\n    \"                        2.604423720662633e-18, 3.772405535111533e-18,\\n\",\n    \"                        3.934445572171057e-18, 3.945375545182965e-18,\\n\",\n    \"                        3.9459945227193204e-18, 3.946030509476693e-18,\\n\",\n    \"                        3.946032758826868e-18, 3.946032909436204e-18,\\n\",\n    \"                        3.94603292005471e-18]\\n\",\n    \"assert np.allclose(hmmml.get_likelihoods(), expected_likelihoods)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import nltk\\n\",\n    \"from nltk.corpus import brown\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"class POS:\\n\",\n    \"    '''将给定的句子们，或者是brown corpus中的句子们，分成同样的train和test部分。\\n\",\n    \"        对于每个句子，我们用nltk tagger得到tags。\\n\",\n    \"        将a初始化成所有句子中可能出现的tags，但是用均匀分布。\\n\",\n    \"        将b初始化成所有句子中出现的单词。但是只有train中出现的单词才可以得到一定的概率。\\n\",\n    \"        给train中出现频率高的单词比较高的概率值，其余单词的概率应该低一些。\\n\",\n    \"        （具体的高低值根据tag的不同会有所不同）\\n\",\n    \"        '''\\n\",\n    \"        \\n\",\n    \"    def __init__(self, sents=None, category=None, \\n\",\n    \"                 num_sents=40,\\n\",\n    \"                 b_bound = 1*10**(-4), \\n\",\n    \"                 tagset=\\\"universal\\\"):\\n\",\n    \"        \\n\",\n    \"        if sents is None:\\n\",\n    \"            self.sents = brown.sents(categories=category)[:num_sents]\\n\",\n    \"            self.tagged_sents = brown.tagged_sents(\\n\",\n    \"                categories=category, tagset=tagset)[:num_sents]\\n\",\n    \"        else:\\n\",\n    \"            self.sents = [nltk.word_tokenize(s) for s in sents]\\n\",\n    \"            self.tagged_sents = [nltk.pos_tag(s, tagset = tagset)\\n\",\n    \"                                 for s in self.sents]\\n\",\n    \"            \\n\",\n    \"        self.fsize = int(len(self.sents) * 0.5)\\n\",\n    \"        self.fit_tsents = self.tagged_sents[:self.fsize]\\n\",\n    \"        self.test_tsents = self.tagged_sents[self.fsize:]\\n\",\n    \"        tagged_words = [tup for s in self.tagged_sents[:self.fsize] \\n\",\n    \"                        for tup in s]\\n\",\n    \"        \\n\",\n    \"        self.vocabulary = (['_SWORD'] + # Special observation in STAG\\n\",\n    \"                      sorted(list(set([w.lower() for \\n\",\n    \"                                    s in self.sents for w in s]))) +\\n\",\n    \"                      ['_FWORD']) # Special observation in FTAG\\n\",\n    \"        self.M = len(self.vocabulary) # Number of distinct observations\\n\",\n    \"        \\n\",\n    \"        print(f'Vocabulary size {self.M}')\\n\",\n    \"    \\n\",\n    \"        self.tags = (['STAG'] + # Special start state\\n\",\n    \"                     sorted(list(set([p[1] for s in self.tagged_sents \\n\",\n    \"                                        for p in s]))) + \\n\",\n    \"                     ['FTAG']) # Special end state\\n\",\n    \"        self.N = len(self.tags) # Number of states\\n\",\n    \"    \\n\",\n    \"        self.w2i = dict(zip(self.vocabulary, \\n\",\n    \"                            range(len(self.vocabulary))))\\n\",\n    \"        self.t2i = dict(zip(self.tags, range(len(self.tags))))\\n\",\n    \"        \\n\",\n    \"        # Initialize a (transition probabilities)\\n\",\n    \"        #self.a = np.random.rand(self.N, self.N)\\n\",\n    \"        self.a = np.ones((self.N, self.N))\\n\",\n    \"        self.a[:,0] = 0.0\\n\",\n    \"        self.a = self.a/(self.a.sum(axis=1).reshape(\\n\",\n    \"            self.a.shape[0],1))\\n\",\n    \"        self.a[-1,:] = 0.0\\n\",\n    \"        \\n\",\n    \"        cfd = nltk.ConditionalFreqDist((word.lower(), tag) for \\n\",\n    \"                                       (word, tag)\\n\",\n    \"                                       in tagged_words)\\n\",\n    \"        \\n\",\n    \"        # Initialize b (emission probabilities)\\n\",\n    \"        #self.b = np.random.rand(self.N, self.M)*b_random_bound\\n\",\n    \"        self.b = np.ones((self.N, self.M))*b_bound\\n\",\n    \"        # STAG only produces _SWORD and FTAG only produces _FWORD\\n\",\n    \"        self.b[0,:] = 0.0\\n\",\n    \"        self.b[:,0] = 0.0\\n\",\n    \"        self.b[0,0] = 1.0\\n\",\n    \"        self.b[-1,:] = 0.0\\n\",\n    \"        self.b[:,-1] = 0.0\\n\",\n    \"        self.b[-1, -1] = 1.0\\n\",\n    \"        # Set non-trivial probability of a word being produced\\n\",\n    \"        # by its most common tag\\n\",\n    \"        for word in cfd.conditions():\\n\",\n    \"            tag = (cfd[word].most_common(1)[0][0])\\n\",\n    \"            self.setb(tag, word, 0.5)\\n\",\n    \"        self.b = self.b/(self.b.sum(axis=1).reshape(self.N,1))\\n\",\n    \"        \\n\",\n    \"        # Initialize an HMM on oset with a, b\\n\",\n    \"        self.hmm = HMMMulti(self.a.copy(), self.b.copy())\\n\",\n    \"        \\n\",\n    \"    def create_oset(self):\\n\",\n    \"        \\n\",\n    \"        self.oset = []\\n\",\n    \"        for ts in self.tagged_sents:\\n\",\n    \"            s, _ = split_tagged_sent(ts)\\n\",\n    \"            self.oset.append(self.s2o(s))\\n\",\n    \"        \\n\",\n    \"    def fit(self, max_iter=10):\\n\",\n    \"        \\n\",\n    \"        # Create oset\\n\",\n    \"        self.create_oset()\\n\",\n    \"            \\n\",\n    \"        # Fit the hmm \\n\",\n    \"        self.hmm.fit(self.oset, max_iter=max_iter)\\n\",\n    \"        \\n\",\n    \"    def test(self):\\n\",\n    \"        \\n\",\n    \"        for descrip, ts_set in [(\\\"fit set\\\", self.fit_tsents), \\n\",\n    \"                                (\\\"test set\\\", self.test_tsents)]:        \\n\",\n    \"            correct = 0\\n\",\n    \"            sum_accuracy = 0\\n\",\n    \"            for ts in ts_set:\\n\",\n    \"                s, tag_seq = split_tagged_sent(ts)\\n\",\n    \"                predicted, _ = self.decode(s)\\n\",\n    \"                a = accuracy(tag_seq, predicted)\\n\",\n    \"                if a == 1.0:\\n\",\n    \"                    correct += 1\\n\",\n    \"                sum_accuracy += a\\n\",\n    \"            avg_accuracy = sum_accuracy/len(ts_set)\\n\",\n    \"            correct_ratio = correct/len(ts_set)\\n\",\n    \"            print(f\\\"For {descrip}: Average accuracy = \\\"\\n\",\n    \"                  f\\\"{avg_accuracy:.3f},\\\" \\n\",\n    \"                  f\\\" Totally correct ratio = \\\" \\n\",\n    \"                  f\\\"{correct_ratio:.3f}\\\")\\n\",\n    \"              \\n\",\n    \"    def decode(self, sentence):\\n\",\n    \"        if sentence[0] != 0: # Weak check if converted\\n\",\n    \"            O = self.s2o(sentence)\\n\",\n    \"        else:\\n\",\n    \"            O = sentence.copy()\\n\",\n    \"        state_seq, prob = self.hmm.decode(O)\\n\",\n    \"        tag_seq = [self.tags[s] for s in state_seq]\\n\",\n    \"        return (tag_seq, prob)\\n\",\n    \"        \\n\",\n    \"    def setb(self, j, w, p):\\n\",\n    \"        self.b[self.t2i[j], self.w2i[w]] = p\\n\",\n    \"    def getb(self, j, w, b=None):\\n\",\n    \"        if b is None:\\n\",\n    \"            b = self.b\\n\",\n    \"        return b[self.t2i[j], self.w2i[w]]\\n\",\n    \"    def seta(self, i, j, p):\\n\",\n    \"        self.a[self.t2i[i], self.t2i[j]] = p\\n\",\n    \"    def geta(self, i, j, a=None):\\n\",\n    \"        if a is None:\\n\",\n    \"            a = self.a\\n\",\n    \"        return a[self.t2i[i], self.t2i[j]]\\n\",\n    \"    def s2o(self, sentence):\\n\",\n    \"        return([0] + \\n\",\n    \"               [self.w2i[w.lower()] for w in sentence] + \\n\",\n    \"               [self.w2i['_FWORD']])\\n\",\n    \"    def i2t(self, state_sequence):\\n\",\n    \"        return [self.tags[i] for i in state_sequence][1:-1]\\n\",\n    \"    \\n\",\n    \"    def print_b_unsorted(self, b=None):\\n\",\n    \"        if b is None:\\n\",\n    \"            b = self.b\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for w in self.vocabulary:\\n\",\n    \"                p = self.getb(t, w, b)\\n\",\n    \"                if p > 10**(-5):\\n\",\n    \"                    print(f' {w}[{p:.5f}]', end='')\\n\",\n    \"                    \\n\",\n    \"    def print_a_unsorted(self, a=None):\\n\",\n    \"        if a is None:\\n\",\n    \"            a = self.a\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for u in self.tags:\\n\",\n    \"                p = self.geta(t, u, a)\\n\",\n    \"                print(f' {u}[{p:.5f}]', end='')\\n\",\n    \"                \\n\",\n    \"    def print_b(self, b=None):\\n\",\n    \"        if b is None:\\n\",\n    \"            b = self.b\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            ptups = zip(b[self.t2i[t],:],self.vocabulary)\\n\",\n    \"            ptups = sorted(ptups, key = lambda tup: tup[0],\\n\",\n    \"                          reverse = True) \\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for tup in ptups:\\n\",\n    \"                print(f' {tup[1]}[{tup[0]}]', end='')\\n\",\n    \"                \\n\",\n    \"    def print_a(self, a=None):\\n\",\n    \"        if a is None:\\n\",\n    \"            a = self.a\\n\",\n    \"        for t in self.tags:\\n\",\n    \"            ptups = zip(a[self.t2i[t],:],self.tags)\\n\",\n    \"            ptups = sorted(ptups, key = lambda tup: tup[0],\\n\",\n    \"                          reverse = True) \\n\",\n    \"            print(f'\\\\n\\\\n{t}', end='')\\n\",\n    \"            for tup in ptups:\\n\",\n    \"                print(f' {tup[1]}[{tup[0]}]', end='')\\n\",\n    \"                \\n\",\n    \"    def create_tagged_sent(self, sentence, tags):\\n\",\n    \"        if sentence[0] != '_SWORD':\\n\",\n    \"            s = (['_SWORD'] + \\n\",\n    \"                 [w.lower() for w in sentence] + \\n\",\n    \"                 ['_FWORD'])\\n\",\n    \"        else:\\n\",\n    \"            s = sentence\\n\",\n    \"        return list(zip(s, tags))\\n\",\n    \"    \\n\",\n    \"    def check_sent(self, sentence_number):\\n\",\n    \"        n = sentence_number\\n\",\n    \"        s = self.sents[n]\\n\",\n    \"        tag_seq = [tag for (word, tag) in \\n\",\n    \"                             self.tagged_sents[n]]\\n\",\n    \"        predicted_tag_seq = self.decode(s)[0][1:-1]\\n\",\n    \"        return list(zip(s, tag_seq, predicted_tag_seq))\\n\",\n    \"\\n\",\n    \"def split_tagged_sent(tagged_sent):\\n\",\n    \"    return list(zip(*tagged_sent))\\n\",\n    \"\\n\",\n    \"def accuracy(tag_seq, predicted_tag_seq):\\n\",\n    \"    if predicted_tag_seq[0] == 'STAG':\\n\",\n    \"        p = predicted_tag_seq[1:-1]\\n\",\n    \"    else:\\n\",\n    \"        p = predicted_tag_seq\\n\",\n    \"    return (sum(t == pt for (t, pt) in zip(tag_seq, p))/\\n\",\n    \"            len(tag_seq))\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[[('Janet', 'NNP'),\\n\",\n       \"  ('will', 'MD'),\\n\",\n       \"  ('back', 'VB'),\\n\",\n       \"  ('the', 'DT'),\\n\",\n       \"  ('bill', 'NN'),\\n\",\n       \"  ('.', '.')],\\n\",\n       \" [('Richard', 'NNP'),\\n\",\n       \"  ('will', 'MD'),\\n\",\n       \"  ('eat', 'VB'),\\n\",\n       \"  ('an', 'DT'),\\n\",\n       \"  ('apple', 'NN'),\\n\",\n       \"  ('.', '.')],\\n\",\n       \" [('Mary', 'NNP'),\\n\",\n       \"  ('will', 'MD'),\\n\",\n       \"  ('run', 'VB'),\\n\",\n       \"  ('a', 'DT'),\\n\",\n       \"  ('mile', 'NN'),\\n\",\n       \"  ('.', '.')],\\n\",\n       \" [('Sam', 'NNP'),\\n\",\n       \"  ('will', 'MD'),\\n\",\n       \"  ('write', 'VB'),\\n\",\n       \"  ('an', 'DT'),\\n\",\n       \"  ('essay', 'NN'),\\n\",\n       \"  ('.', '.')]]\"\n      ]\n     },\n     \"execution_count\": 8,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"[nltk.pos_tag(s) for s in [nltk.word_tokenize(s) \\n\",\n    \"                           for s in sents_example_1]]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"ename\": \"NameError\",\n     \"evalue\": \"name 'POS' is not defined\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mNameError\\u001b[0m                                 Traceback (most recent call last)\",\n      \"\\u001b[0;32m<ipython-input-4-e587ef5cab30>\\u001b[0m in \\u001b[0;36m<module>\\u001b[0;34m()\\u001b[0m\\n\\u001b[1;32m      5\\u001b[0m     \\u001b[0;34m\\\"Sam will write an essay.\\\"\\u001b[0m\\u001b[0;34m,\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m      6\\u001b[0m ]\\n\\u001b[0;32m----> 7\\u001b[0;31m \\u001b[0mpos\\u001b[0m \\u001b[0;34m=\\u001b[0m \\u001b[0mPOS\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0msents_example_1\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[1;32m      8\\u001b[0m \\u001b[0mpos\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mfit\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;36m100\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m      9\\u001b[0m \\u001b[0mpos\\u001b[0m\\u001b[0;34m.\\u001b[0m\\u001b[0mtest\\u001b[0m\\u001b[0;34m(\\u001b[0m\\u001b[0;34m)\\u001b[0m\\u001b[0;34m\\u001b[0m\\u001b[0m\\n\",\n      \"\\u001b[0;31mNameError\\u001b[0m: name 'POS' is not defined\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"sents_example_1 = [\\n\",\n    \"    \\\"Janet will back the bill.\\\",\\n\",\n    \"    \\\"Richard will eat an apple.\\\",\\n\",\n    \"    \\\"Mary will run a mile.\\\",\\n\",\n    \"    \\\"Sam will write an essay.\\\",\\n\",\n    \"]\\n\",\n    \"pos = POS(sents_example_1)\\n\",\n    \"pos.fit(100)\\n\",\n    \"pos.test()\\n\",\n    \"pos.print_a(pos.hmm.a)\\n\",\n    \"pos.print_b(pos.hmm.b)\\n\",\n    \"\\n\",\n    \"############################################################\\n\",\n    \"# 回答以下问题:  #############################################\\n\",\n    \"############################################################\\n\",\n    \"# 基于HMM的POS tagger模型效果如何？如果效果不好的话，会是因为什么原\\n\",\n    \"# 因？\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {\n    \"collapsed\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"sents_example_2 = [\\n\",\n    \"    \\\"Janet will back the bill.\\\",\\n\",\n    \"    \\\"Janet likes music.\\\",\\n\",\n    \"    \\\"Richard will eat an apple.\\\",\\n\",\n    \"    \\\"Peter needs rest.\\\",\\n\",\n    \"    \\\"Mary will run a mile.\\\",\\n\",\n    \"    \\\"Joe hates TV.\\\",\\n\",\n    \"    \\\"Sam will write an essay.\\\",\\n\",\n    \"    \\\"Ramona loves cooking.\\\",\\n\",\n    \"]\\n\",\n    \"pos = POS(sents_example_2)\\n\",\n    \"pos.fit(100)\\n\",\n    \"pos.test()\\n\",\n    \"pos.print_a(pos.hmm.a)\\n\",\n    \"pos.print_b(pos.hmm.b)\\n\",\n    \"\\n\",\n    \"############################################################\\n\",\n    \"# 回答以下问题:  #############################################\\n\",\n    \"############################################################\\n\",\n    \"# 基于HMM的POS tagger模型效果如何？如果效果不好的话，会是因为什么原\\n\",\n    \"# 因？\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"anaconda-cloud\": {},\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 1\n}\n"
  },
  {
    "path": "P009StructureLearning/train.txt",
    "content": "Thousands of demonstrators have marched through London to protest the war in Iraq and demand the withdrawal of British troops from that country .\tNNS IN NNS VBP VBN IN NNP TO VB DT NN IN NNP CC VB DT NN IN JJ NNS IN DT NN .\nFamilies of soldiers killed in the conflict joined the protesters who carried banners with such slogans as ' Bush Number One Terrorist ' and ' Stop the Bombings . '\tNNS IN NNS VBN IN DT NN VBD DT NNS WP VBD NNS IN JJ NNS IN `` NNP NN CD NN `` CC `` VB DT NNS . ``\nThey marched from the Houses of Parliament to a rally in Hyde Park .\tPRP VBD IN DT NNS IN NN TO DT NN IN NNP NNP .\nPolice put the number of marchers at 10,000 while organizers claimed it was 1,00,000 .\tNNS VBD DT NN IN NNS IN CD IN NNS VBD PRP VBD CD .\nThe protest comes on the eve of the annual conference of Britain 's ruling Labor Party in the southern English seaside resort of Brighton .\tDT NN VBZ IN DT NN IN DT JJ NN IN NNP POS VBG NNP NNP IN DT JJ JJ NN NN IN NNP .\nThe party is divided over Britain 's participation in the Iraq conflict and the continued deployment of 8,500 British troops in that country .\tDT NN VBZ VBN IN NNP POS NN IN DT NNP NN CC DT JJ NN IN CD JJ NNS IN DT NN .\nThe London march came ahead of anti-war protests today in other cities , including Rome , Paris , and Madrid .\tDT NNP NN VBD RB IN JJ NNS NN IN JJ NNS , VBG NNP , NNP , CC NNP .\nThe International Atomic Energy Agency is to hold second day of talks in Vienna Wednesday on how to respond to Iran 's resumption of low-level uranium conversion .\tDT NNP NNP NNP NNP VBZ TO VB JJ NN IN NNS IN NNP NNP IN WRB TO VB TO NNP POS NN IN JJ NN NN .\nIran this week restarted parts of the conversion process at its Isfahan nuclear plant .\tNNP DT NN VBD NNS IN DT NN NN IN PRP$ NNP JJ NN .\nIranian officials say they expect to get access to sealed sensitive parts of the plant Wednesday , after an IAEA surveillance system begins functioning .\tJJ NNS VBP PRP VBP TO VB NN TO JJ JJ NNS IN DT NN NNP , IN DT NNP NN NN VBZ VBG .\nThe step will allow the facility to operate at full capacity .\tDT NN MD VB DT NN TO VB IN JJ NN .\nThe European Union , with U.S. backing , has threatened to refer Iran to the U.N. Security Council , which could impose sanctions if it finds Tehran has violated the Nuclear Non-Proliferation treaty .\tDT NNP NNP , IN NNP NN , VBZ VBN TO VB NNP TO DT NNP NNP NNP , WDT MD VB NNS IN PRP VBZ NNP VBZ VBN DT NNP NNP NN .\nIran 's new President Mahmoud Ahmadinejad said Tuesday that European incentives aimed at persuading Iran to end its nuclear fuel program are an insult to the Iranian nation .\tNNP POS JJ NNP NNP NNP VBD NNP IN JJ NNS VBN IN VBG NNP TO VB PRP$ JJ NN NN VBP DT NN TO DT JJ NN .\nTwo Germans and four Nigerian oil workers were kidnapped by armed militants during a raid on a boat in Nigeria 's southern oil-rich Delta region .\tCD NNS CC CD JJ NN NNS VBD VBN IN JJ NNS IN DT NN IN DT NN IN NNP POS JJ JJ NNP NN .\nAn official with the German firm Bilfinger Berger , Thomas Horbach , said the gunmen stopped the supply boat Wednesday as it sailed from Delta State to Bayelsa State to inspect an offshore oil field owned by Royal-Dutch Shell .\tDT NN IN DT JJ NN NNP NNP , NNP NNP , VBD DT NNS VBD DT NN NN NNP IN PRP VBD IN NNP NNP TO NNP NNP TO VB DT JJ NN NN VBN IN NNP NNP .\nThe German firm works as a sub-contractor for Shell .\tDT JJ NN VBZ IN DT NN IN NNP .\nMilitant groups frequently attack oil operations in the Niger Delta to demand social services and better job opportunities from multinational companies .\tJJ NNS RB VBP NN NNS IN DT NNP NNP TO VB JJ NNS CC JJR NN NNS IN JJ NNS .\nPoor residents often complain they have been cheated out of the huge riches extracted from their tribal lands - where the bulk of Nigeria 's 2.3 million barrels of petroleum are pumped daily .\tJJ NNS RB VBP PRP VBP VBN VBN IN IN DT JJ NNS VBN IN PRP$ JJ NNS : WRB DT NN IN NNP POS CD CD NNS IN NN VBP VBN RB .\nSuspected Islamist rebels have fired mortar shells at the palace used by Somalia 's interim President Abdullahi Yusuf Ahmad .\tJJ JJ NNS VBP VBN NN NNS IN DT NN VBN IN NNP POS JJ NNP NNP NNP NNP .\nIt was not immediately clear if the president was in the palace in Mogadishu when the attack occurred or if anyone was hurt .\tPRP VBD RB RB JJ IN DT NN VBD IN DT NN IN NNP WRB DT NN VBD CC IN DT VBD VBN .\nLocal news reports said at least five mortar shells hit the palace compound and other mortars were fired elsewhere in Mogadishu Wednesday .\tJJ NN NNS VBD IN JJS CD NN NNS VBD DT NN NN CC JJ NNS VBD VBN RB IN NNP NNP .\nThe attacks occurred after the government said it will go ahead with a reconciliation conference to which more than 1,300 Somali elders , warlords and politicians are invited .\tDT NNS VBD IN DT NN VBD PRP MD VB RB IN DT NN NN TO WDT JJR IN CD JJ NNS , NNS CC NNS VBP VBN .\nIraqi military officials say tanks and troops have arrived in the northern city Mosul for a new offensive against al Qaida in Iraq fighters .\tJJ JJ NNS VBP NNS CC NNS VBP VBN IN DT JJ NN NNP IN DT JJ NN IN NNP NNP IN NNP NNS .\nOfficials will not say how many troops have arrived in the Sunni Arab and Kurdish city , where bombings last week killed at least 34 people and wounded more than 200 .\tNNS MD RB VB WRB JJ NNS VBP VBN IN DT NNP NNP CC NNP NN , WRB NNS JJ NN VBD IN JJS CD NNS CC VBD JJR IN CD .\nU.S. commanders have not explained how American forces will participate in the offensive .\tNNP NNS VBP RB VBN WRB JJ NNS MD VB IN DT NN .\nOfficials say al Qaida in Iraq fighters have fled successful campaigns against them in Anbar province and Baghdad to other northern provinces .\tNNS VBP NNP NNP IN NNP NNS VBP VBN JJ NNS IN PRP IN NNP NN CC NNP TO JJ JJ NNS .\nMosul is the largest city north of Baghdad and has long been a stronghold of Sunni militant fighters .\tNNP VBZ DT JJS NN NN IN NNP CC VBZ RB VBN DT NN IN NNP JJ NNS .\nIn other violence , U.S. officials said one American soldier was killed while on patrol in Baghdad Sunday .\tIN JJ NN , NNP NNS VBD CD JJ NN VBD VBN IN IN NN IN NNP NNP .\nEgyptian police have arrested at least 16 members of the opposition Muslim Brotherhood as parts of the country prepare for parliamentary runoff elections Saturday .\tJJ NNS VBP VBN IN JJS CD NNS IN DT NN NNP NNP IN NNS IN DT NN VB IN JJ NN NNS NNP .\nThe arrests occurred Friday in Alexandria .\tDT NNS VBD NNP IN NNP .\nA spokesman for the Brotherhood said the arrests are an attempt to cut the Brotherhood off from its supporters and punishment for winning parliamentary seats in earlier elections .\tDT NN IN DT NNP VBD DT NNS VBP DT NN TO VB DT NNP RB IN PRP$ NNS CC NN IN VBG JJ NNS IN JJR NNS .\nThe Muslim Brotherhood has tripled its strength in parliament in recent elections , raising the party 's total to 47 seats .\tDT NNP NNP VBZ VBN PRP$ NN IN NN IN JJ NNS , VBG DT NN POS NN TO CD NNS .\nIn Saturday 's elections , voters will cast ballots in nine provinces where no candidate won a majority in the previous round of voting .\tIN NNP POS NNS , NNS MD VB NNS IN CD NNS WRB DT NN VBD DT NN IN DT JJ NN IN NN .\nThe Muslim Brotherhood is banned as a political party , but it endorses so-called independent candidates whose allegiance to the party is known to voters .\tDT NNP NNP VBZ VBN IN DT JJ NN , CC PRP VBZ JJ JJ NNS WP$ NN IN DT NN VBZ VBN TO NNS .\nHardline lawmakers in Pakistan 's North West Frontier Province have pushed through a law that aims to ensure ' Islamic correctness ' in public places and establishes a morality police to enforce decent behavior .\tJJ NNS IN NNP POS NNP NNP NNP NNP VBP VBN IN DT NN WDT VBZ TO VB `` JJ NN `` IN JJ NNS CC VBZ DT NN NN TO VB JJ NN .\nA six-party coalition of religious based parties , the Mutahida Majlis-e-Amal , dominates the provincial assembly , so the bill was easily passed Thursday by a vote of 68-34 .\tDT JJ NN IN JJ VBN NNS , DT NNP NNP , VBZ DT JJ NN , IN DT NN VBD RB VBN NNP IN DT NN IN CD .\nThe provincial governor must still sign the bill before it becomes law , a step seen only as a formality .\tDT JJ NN MD RB VB DT NN IN PRP VBZ NN , DT NN VBN RB IN DT NN .\nThe proposed law calls for setting up a ' religious police force ' to make sure people adhere to Islamic values in public places , and entertainment outlets close during weekly Friday prayers .\tDT JJ NN VBZ IN VBG RP DT `` JJ NN NN `` TO VB JJ NNS VBP TO JJ NNS IN JJ NNS , CC NN NNS RB IN JJ NNP NNS .\nViolators could be jailed for up to six months .\tNNS MD VB VBN IN RB TO CD NNS .\nThe opposition has denounced the measure , comparing it to the draconian rule of the former Taleban in neighboring Afghanistan .\tDT NN VBZ VBN DT NN , VBG PRP TO DT JJ NN IN DT JJ NNP IN VBG NNP .\nBritish police say they have arrested a man who dressed as suicide bomber at a demonstration against the publication of cartoons depicting Islam 's Prophet Muhammad .\tJJ NNS VBP PRP VBP VBN DT NN WP VBD IN NN NN IN DT NN IN DT NN IN NNS VBG NNP POS NNP NNP .\nBedfordshire police said Tuesday that Omar Khayam was arrested in Bedford for breaching the conditions of his parole .\tNNP NNS VBD NNP IN NNP NNP VBD VBN IN NNP IN VBG DT NNS IN PRP$ NN .\nPolice said the British Home Office sought an investigation of Khayam 's behavior after he was photographed last week at a demonstration dressed in fatigues , a black cap , and a bulky belt .\tNNS VBD DT NNP NNP NNP VBD DT NN IN NNP POS NN IN PRP VBD VBN JJ NN IN DT NN VBN IN NNS , DT JJ NN , CC DT JJ NN .\nA Home Office spokesman told the Associated Press that if the behavior of a paroled offender gives cause for concern , he can be sent back to prison .\tDT NNP NNP NN VBD DT NNP NNP IN IN DT NN IN DT JJ NN VBZ NN IN NN , PRP MD VB VBN RB TO NN .\nThe AP also reports Khayam has been on parole from prison since last year after serving half his six-year sentence for drug dealing .\tDT NNP RB VBZ NNP VBZ VBN IN NN IN NN IN JJ NN IN VBG PDT PRP$ JJ NN IN NN NN .\nPakistani officials say unidentified gunmen have killed three people , including a former government minister , in a semi-autonomous tribal region bordering Afghanistan .\tJJ NNS VBP JJ NNS VBP VBN CD NNS , VBG DT JJ NN NN , IN DT JJ JJ NN VBG NNP .\nThe officials say prominent tribal leader Malik Faridullah Khan was traveling in South Waziristan Sunday when his vehicle was ambushed in the Kani Wam area .\tDT NNS VBP JJ JJ NN NNP NNP NNP VBD VBG IN NNP NNP NNP WRB PRP$ NN VBD VBN IN DT NNP NNP NN .\nHis driver and a tribal elder were also killed .\tPRP$ NN CC DT JJ NN VBD RB VBN .\nNo one has claimed responsibility for the killings .\tDT NN VBZ VBN NN IN DT NNS .\nThe ambush came a day after a commander of Pakistani troops said the army has almost completely eliminated militants in South Waziristan .\tDT NN VBD DT NN IN DT NN IN JJ NNS VBD DT NN VBZ RB RB VBN NNS IN NNP NNP .\nThe area became a refuge for many al-Qaida and Taleban fighters after the Taleban government was ousted in Afghanistan in 2001 .\tDT NN VBD DT NN IN JJ NNP CC NNP NNS IN DT NNP NN VBD VBN IN NNP IN CD .\nA senior Pakistani military official says Pakistan wants to put what he calls the ' sordid chapter ' of proliferation by one of its top scientists behind it and build civilian nuclear ties with the United States .\tDT JJ JJ JJ NN VBZ NNP VBZ TO VB WP PRP VBZ DT `` JJ NN `` IN NN IN CD IN PRP$ JJ NNS IN PRP CC VB JJ JJ NNS IN DT NNP NNPS .\nBut he says Pakistan is not ready to make the nuclear scientist , Abdul Qadeer Khan , available for direct questioning over his sale of nuclear parts and secrets to states including Iran , Libya and North Korea .\tCC PRP VBZ NNP VBZ RB JJ TO VB DT JJ NN , NNP NNP NNP , JJ IN JJ VBG IN PRP$ NN IN JJ NNS CC NNS IN NNS VBG NNP , NNP CC NNP NNP .\nHe said there are reasons of national sensitivities for not making him available .\tPRP VBD EX VBP NNS IN JJ NNS IN RB VBG PRP JJ .\nThe Pakistani official was giving a background briefing to a small group of reporters in Washington .\tDT JJ NN VBD VBG DT NN NN TO DT JJ NN IN NNS IN NNP .\nKhan admitted in 2004 that he operated a worldwide clandestine network to sell nuclear technology in the black market .\tNNP VBD IN CD IN PRP VBD DT JJ NN NN TO VB JJ NN IN DT JJ NN .\nHe was placed under house arrest in Islamabad , but not jailed because he is considered the father of Pakistan 's nuclear bomb .\tPRP VBD VBN IN NN NN IN NNP , CC RB VBN IN PRP VBZ VBN DT NN IN NNP POS JJ NN .\nU.S. Army officials said Wednesday that they will not renew a controversial multi-billion dollar contract with the Halliburton company to provide logistical support to U.S. troops in Iraq and elsewhere .\tNNP NNP NNS VBD NNP IN PRP MD RB VB DT JJ JJ NN NN IN DT NNP NN TO VB JJ NN IN NNP NNS IN NNP CC RB .\nHalliburton has been providing a long list of services , from meals to communication , for the military for several years .\tNNP VBZ VBN VBG DT JJ NN IN NNS , IN NNS TO NN , IN DT NN IN JJ NNS .\nCritics of Halliburton include auditors and congressional Democrats .\tNNS IN NNP VBP NNS CC JJ NNS .\nThey say the company has produced some shoddy work and charges too much money .\tPRP VBP DT NN VBZ VBN DT JJ NN CC VBZ RB JJ NN .\nThe company strongly denies the allegations .\tDT NN RB VBZ DT NNS .\nWhen the huge contract is put out for re-bidding , several companies will get a chance to compete for portions of the work .\tWRB DT JJ NN VBZ VBN RP IN NN , JJ NNS MD VB DT NN TO VB IN NNS IN DT NN .\nRepresentatives from the Asia Pacific Economic Cooperation Business Advisory Council are holding meetings this week to finalize their annual report for APEC leaders who will hold a summit on September 8 and 9 .\tNNS IN DT NNP NNP NNP NNP NNP NNP NNP VBP VBG NNS DT NN TO VB PRP$ JJ NN IN NNP NNS WP MD VB DT NN IN NNP CD CC CD .\nVOA 's Nancy-Amelia Collins reports from Sydney .\tNNP POS NNP NNP VBZ IN NNP .\nEnergy , security , climate change , the World Trade Organization 's stalled negotiations , and investment are all expected to be among the major topics in the annual report of the APEC Business Advisory Council , known as ABAC .\tNN , NN , NN NN , DT NNP NNP NNP POS VBN NNS , CC NN VBP DT VBN TO VB IN DT JJ NNS IN DT JJ NN IN DT NNP NNP NNP NNP , VBN IN NNP .\nTim Harcourt , the chief economist of the Australian Trade Commission , says ABAC plays an important role by informing governments where there are problems .\tNNP NNP , DT JJ NN IN DT NNP NNP NNP , VBZ NNP VBZ DT JJ NN IN VBG NNS WRB EX VBP NNS .\n' The most important thing the business groups can do is to tell the governments where there are logjams , where there are obstacles , where things can improve , ' Harcourt said .\t`` DT RBS JJ NN DT NN NNS MD VB VBZ TO VB DT NNS WRB EX VBP NNS , WRB EX VBP NNS , WRB NNS MD VB , `` NNP VBD .\n' I think actually ABAC has played a pretty good leadership on that in talking about trade facilitation and basically making sure standards are consistent and harmonious across the region . '\t`` PRP VBP RB NNP VBZ VBN DT RB JJ NN IN DT IN VBG IN NN NN CC RB VBG JJ NNS VBP JJ CC JJ IN DT NN . ``\nABAC comprises up to three members of the private sector of each of the 21 economies that make up APEC .\tNNP VBZ RP TO CD NNS IN DT JJ NN IN DT IN DT CD NNS WDT VBP RP NNP .\nIt meets three times a year .\tPRP VBZ CD NNS DT NN .\nIt was made a permanent body in 1995 to provide an independent business perspective within APEC .\tPRP VBD VBN DT JJ NN IN CD TO VB DT JJ NN NN IN NNP .\nMembers represent a range of business sectors , including medium and small businesses .\tNNS VBP DT NN IN NN NNS , VBG JJ CC JJ NNS .\nABAC says there is a need for businesses to improve energy efficiency and to encourage conservation practices , and is expected to include this in its annual report .\tNNP VBZ EX VBZ DT NN IN NNS TO VB NN NN CC TO VB NN NNS , CC VBZ VBN TO VB DT IN PRP$ JJ NN .\nHarcourt , of the Australian Trade Commission , says the ABAC report will also discuss ways to enhance regional cooperation .\tNNP , IN DT NNP NNP NNP , VBZ DT NNP NN MD RB VB NNS TO VB JJ NN .\n' I reckon they 'll talk a little bit about customs and quarantine , a little bit about having consistent security arrangements around the region , ' Harcourt said .\t`` PRP VBP PRP MD VB DT JJ NN IN NNS CC NN , DT JJ NN IN VBG JJ NN NNS IN DT NN , `` NNP VBD .\n' And I think they 'll want a one-stop shop in terms of combining security , immigration , customs , and quarantine together ... just to make sure it 's more streamlined and provides more certainty . '\t`` CC PRP VBP PRP MD VB DT JJ NN IN NNS IN VBG NN , NN , NNS , CC VB RB , RB TO VB JJ PRP VBZ JJR JJ CC VBZ JJR NN . ``\nABAC is the only non-governmental body that has an official role and formal dialogue with the leaders of the APEC economies .\tNNP VBZ DT JJ JJ NN WDT VBZ DT JJ NN CC JJ NN IN DT NNS IN DT NNP NNS .\nIt will present its annual report at the APEC leaders meeting on Saturday .\tPRP MD VB PRP$ JJ NN IN DT NNP NNS NN IN NNP .\nSudan 's government says it will order troops to end attacks immediately in Darfur , and is asking rebels to do the same .\tNNP POS NN VBZ PRP MD VB NNS TO VB NNS RB IN NNP , CC VBZ VBG NNS TO VB DT NN .\nForeign Minister Mustafa Osman Ismail says Sudanese troops will also withdraw to positions held before an April cease-fire , if rebels in the western region agree to stop attacks .\tNNP NNP NNP NNP NNP VBZ JJ NNS MD RB VB TO NNS VBN IN DT NNP NN , IN NNS IN DT JJ NN VBP TO VB NNS .\nMr. Ismail announced the decision after meeting with officials from the United Nations and African Union in Khartoum Sunday .\tNNP NNP VBD DT NN IN VBG IN NNS IN DT NNP NNPS CC NNP NNP IN NNP NNP .\nIn recent weeks , AU officials say Sudanese troops and rebels have repeatedly violated the April truce .\tIN JJ NNS , NNP NNS VBP JJ NNS CC NNS VBP RB VBN DT NNP NN .\nSaturday , the head of AU forces in Darfur accused Sudanese government helicopters of bombing rebel sites in the South Darfur village of Labado .\tNNP , DT NN IN NNP NNS IN NNP VBD JJ NN NNS IN VBG NN NNS IN DT NNP NNP NN IN NNP .\nKhartoum says troops were defending their positions from rebel attacks .\tNNP VBZ NNS VBD VBG PRP$ NNS IN NN NNS .\nAid workers say some relief efforts have been suspended in South Darfur due to recent attacks .\tNN NNS VBP DT NN NNS VBP VBN VBN IN NNP NNP JJ TO JJ NNS .\nIndonesian police have arrested three men in connection with the October 1 Bali bombings that left 23 people dead .\tJJ NNS VBP VBN CD NNS IN NN IN DT NNP CD NNP NNS WDT VBD CD NNS JJ .\nIndonesian police said Wednesday the men were flown to Bali from neighboring Java island for questioning at Bali police headquarters .\tJJ NN VBD NNP DT NNS VBD VBN TO NNP IN VBG NNP NN IN VBG IN NNP NN NN .\nAustralian and French news agencies say at least one of the men arrested ( Cholily ) was captured during a series of counter-terrorism raids last week in Indonesia .\tJJ CC JJ NN NNS VBP IN JJS CD IN DT NNS VBN LRB NNP RRB VBD VBN IN DT NN IN NN NNS JJ NN IN NNP .\nThe raids ended with the death of alleged extremist bombmaker Azahari bin Husin .\tDT NNS VBD IN DT NN IN JJ NN NN NNP NNP NNP .\nIndonesian authorities blame Azahari bin Husin for orchestrating last month 's attacks in Bali as well as the 2002 Bali bombings that killed more than 200 people .\tJJ NNS VBP NNP NNP NNP IN VBG JJ NN POS NNS IN NNP RB RB IN DT CD NNP NNS WDT VBD JJR IN CD NNS .\nGunmen have shot and killed a Roman Catholic nun and her bodyguard at the hospital where she worked in Islamist-controlled Mogadishu , Somalia .\tNNS VBP VBN CC VBN DT NNP NNP NN CC PRP$ NN IN DT NN WRB PRP VBD IN JJ NNP , NNP .\nSome witnesses to the Sunday shooting said they feared the attack was linked to Muslim anger toward Pope Benedict .\tDT NNS TO DT NNP NN VBD PRP VBD DT NN VBD VBN IN NN NN IN NNP NNP .\nTwo men with pistols attacked the nun , Sister Leonella Sgorbati , after she finished teaching a medical school class at the hospital in southern Mogadishu .\tCD NNS IN NNS VBD DT NN , NNP NNP NNP , IN PRP VBD VBG DT JJ NN NN IN DT NN IN JJ NNP .\nOfficials say one suspect was arrested .\tNNS VBP CD NN VBD VBN .\nIn Rome , a Vatican spokesman deplored the attack and said he hoped it was an isolated event , and not irrationality arising from comments made by the Pope which angered some Muslims .\tIN NNP , DT NNP NN VBD DT NN CC VBD PRP VBD PRP VBD DT JJ NN , CC RB JJ VBG IN NNS VBN IN DT NN WDT VBD DT NNS .\nAuthorities in Mogadishu have not determined a motive for the shooting .\tNNS IN NNP VBP RB VBN DT NN IN DT NN .\nThe pope has said he meant no offense to Muslims when he quoted a 14 century Byzantine emperor as saying some teachings of the Prophet Muhammed brought evil to the world .\tDT NN VBZ VBN PRP VBD DT NN TO NNPS WRB PRP VBD DT CD NN NNP NN IN VBG DT NNS IN DT NNP NNP VBD NN TO DT NN .\nPakistani forces have targeted militants in the northwest for a third day , launching airstrikes that they say killed at least nine suspected insurgents .\tJJ NNS VBP VBN NNS IN DT NN IN DT JJ NN , VBG NNS IN PRP VBP VBN IN JJS CD JJ NNS .\nHelicopter gunships Saturday pounded militant hideouts in the Orakzai tribal region , where many Taliban militants are believed to have fled to avoid an earlier military offensive in nearby South Waziristan .\tNN NNS NNP VBD JJ NNS IN DT NNP JJ NN , WRB JJ NNP NNS VBP VBN TO VB VBN TO VB DT JJR JJ NN IN JJ NNP NNP .\nThe Pakistani military launched its offensive in Orakzai to hunt Taliban insurgents .\tDT JJ NN VBD PRP$ NN IN NNP TO VB NNP NNS .\nSo far , nearly 100 militants have been reported killed in the region since Thursday .\tRB RB , RB CD NNS VBP VBN VBN VBN IN DT NN IN NNP .\nOn Friday , five soldiers were killed when dozens of militants stormed a military checkpoint in Orakzai .\tIN NNP , CD NNS VBD VBN WRB NNS IN NNS VBD DT JJ NN IN NNP .\nAt least 32 suspected militants were killed when troops launched a counter-attack .\tIN JJS CD JJ NNS VBD VBN WRB NNS VBD DT NN .\nElsewhere in the northwest , authorities on Saturday found the bodies of six people who had been shot dead in the Kurram region along the Afghan border .\tRB IN DT JJS , NNS IN NNP VBD DT NNS IN CD NNS WP VBD VBN VBN RB IN DT NNP NN IN DT JJ NN .\nThe six were kidnapped a few days ago .\tDT CD VBD VBN DT JJ NNS RB .\nThe U.S. military in Afghanistan says coalition forces killed 14 Taleban militants in separate clashes this week .\tDT NNP NN IN NNP VBZ NN NNS VBD CD NNP NNS IN JJ NNS DT NN .\nThe military said Saturday 13 guerrillas were killed in two encounters in the central province of Uruzgan .\tDT NN VBD NNP CD NNS VBD VBN IN CD NNS IN DT JJ NN IN NNP .\nOne Afghan soldier was killed and four others , including a U.S. soldier , were injured in the fighting .\tCD JJ NN VBD VBN CC CD NNS , VBG DT NNP NN , VBD VBN IN DT NN .\nAnother militant was killed by U.S. troops in eastern Paktika province .\tDT NN VBD VBN IN NNP NNS IN JJ NNP NN .\nSeparately , officials say four British soldiers from the NATO-led peacekeeping mission were wounded early Saturday in an attack in the northern city of Mazar-e-Sharif .\tRB , NNS VBP CD JJ NNS IN DT JJ NN NN VBD VBN JJ NNP IN DT NN IN DT JJ NN IN NNP .\nIt was not immediately clear what motivated the attack .\tPRP VBD RB RB JJ WP VBN DT NN .\nTaleban rebels are not known to operate in northern Afghanistan and the area has been spared much of the bloodshed that has plagued southern and eastern regions .\tNNP NNS VBP RB VBN TO VB IN JJ NNP CC DT NN VBZ VBN VBN RB IN DT NN DT VBZ VBN JJ CC JJ NNS .\nRussian officials say at least five more people have died from a wave of extremely cold weather gripping the nation , bringing the death toll to 43 in the past week .\tJJ NNS VBP IN JJS CD JJR NNS VBP VBN IN DT NN IN RB JJ NN VBG DT NN , VBG DT NN NN TO CD IN DT JJ NN .\nEmergency medical officials say the five victims died in Moscow from exposure , and another 19 people are hospitalized with hypothermia .\tNN JJ NNS VBP DT CD NNS VBD IN NNP IN NN , CC DT CD NNS VBP VBN IN NN .\nRussia 's Itar-Tass news agency quotes a medical official as saying some of the victims were intoxicated or homeless .\tNNP POS NNP NN NN VBZ DT JJ NN IN VBG DT IN DT NNS VBD JJ CC JJ .\nThe unusually cold weather is affecting Russia , the Baltic states of Lithuania , Latvia and Estonia , and is moving into the Nordic countries .\tDT RB JJ NN VBZ VBG NNP , DT JJ NNS IN NNP , NNP CC NNP , CC VBZ VBG IN DT JJ NNS .\nThe death toll is expected to rise as temperatures continue to hover around minus 30 degrees Celsius or lower overnight .\tDT NN NN VBZ VBN TO VB IN NNS VBP TO VB IN NN CD NNS NNP CC JJR JJ .\nEmergency power rationing has been put into effect around Moscow .\tNN NN NN VBZ VBN VBN IN NN IN NNP .\nHealth officials in Vietnam say a deadly strain of the bird flu virus has killed a second Vietnamese man this week , raising the country 's death toll from the virus to 50 .\tNN NNS IN NNP VBP DT JJ NN IN DT NN NN NN VBZ VBN DT JJ JJ NN DT NN , VBG DT NN POS NN NN IN DT NN IN CD .\nOfficials say the 27-year old man from Vietnam 's northern Ninh Binh province died late Thursday and tested positive for the H5N1 strain of bird flu .\tNNS VBP DT JJ JJ NN IN NNP POS JJ NNP NNP NN VBD JJ NNP CC VBD JJ IN DT NNP NN IN NN NN .\nOfficials say the man fell ill after slaughtering two chickens at his home .\tNNS VBP DT NN VBD RB IN VBG CD NNS IN PRP$ NN .\nHe is the third person to die from avian influenza in Vietnam this year .\tPRP VBZ DT JJ NN TO VB IN JJ NN IN NNP DT NN .\nNot counting the latest death , the World Health Organization says 227 people around the world have died from bird flu since 2003 .\tRB VBG DT JJS NN , DT NNP NNP NNP VBZ CD NNS IN DT NN VBP VBN IN NN NN IN CD .\nMost of the world 's cases , 103 , have occurred in Indonesia .\tJJS IN DT NN POS NNS , CD , VBP VBN IN NNP .\nWitnesses in Somalia say insurgents have burned and dragged the bodies of at least two soldiers through the streets of Mogadishu , after a clash between militants and Ethiopian forces killed seven people .\tNNS IN NNP VBP NNS VBP VBN CC VBN DT NNS IN IN JJS CD NNS IN DT NNS IN NNP , IN DT NN IN NNS CC JJ NNS VBD CD NNS .\nThe violence erupted Wednesday after insurgents attacked Ethiopian tanks rolling through an insurgent stronghold near the headquarters of the former Defense Ministry in southern Mogadishu .\tDT NN VBD NNP IN NNS VBD JJ NNS VBG IN DT JJ NN IN DT NN IN DT JJ NNP NNP IN JJ NNP .\nWitnesses say the Ethiopian troops returned heavy fire and that several people were wounded in the fighting .\tNNS VBP DT JJ NNS VBD JJ NN CC IN JJ NNS VBD VBN IN DT NN .\nEthiopia deployed soldiers to Somalia last December to help the interim government push an Islamist movement from power .\tNNP VBD NNS IN NNP JJ NNP TO VB DT JJ NN VB DT JJ NN IN NN .\nSomalia 's internationally-recognized government has since been struggling to contain regular outbursts of violence by fighters loyal to the fallen Islamist movement .\tNNP POS JJ NN VBZ IN VBN VBG TO VB JJ NNS IN NN IN NNS JJ TO DT JJ NNP NN .\nThe African Union has deployed troops to Somalia to replace the Ethiopian forces , which Addis Ababa plans to withdraw .\tDT NNP NNP VBZ VBN NNS TO NNP TO VB DT JJ NNS , WDT NNP NNP VBZ TO VB .\nTop Palestinian negotiator Ahmed Qureia says Israeli and Palestinian mediators have agreed to prepare a document outlining their progress toward a peace accord .\tJJ JJ NN NNP NNP VBZ JJ CC JJ NNS VBP VBN TO VB DT NN VBG PRP$ NN IN DT NN NN .\nIn remarks to reporters , Qureia said the two sides agreed during recent meetings to begin writing out their positions on all issues discussed during peace negotiations .\tIN NNS TO NNS , NNP VBD DT CD NNS VBD IN JJ NNS TO VB VBG RP PRP$ NNS IN DT NNS VBN IN NN NNS .\nHe did not elaborate on why negotiators had come to the decision .\tPRP VBD RB VB IN WRB NNS VBD VBN TO DT NN .\nIsraeli Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas resumed U.S.-brokered peace talks last November , but progress has been slow .\tJJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBD JJ NN NNS JJ NNP , CC NN VBZ VBN JJ .\nThe two sides have expressed hope at reaching a peace deal before U.S. President George Bush leaves office early next year .\tDT CD NNS VBP VBN NN IN VBG DT NN NN IN NNP NNP NNP NNP VBZ NN RB JJ NN .\nBut Qureia said Wednesday that reaching a peace agreement with Israel before Mr. Bush leaves office will take a ' miracle . '\tCC NNP VBD NNP IN VBG DT NN NN IN NNP IN NNP NNP VBZ NN MD VB DT `` NN . ``\nHe told reporters in the West Bank that there is still room for progress in Israeli-Palestinian negotiations .\tPRP VBD NNS IN DT NNP NNP IN EX VBZ RB NN IN NN IN JJ NNS .\nThe Israeli military says Major General Udi Adam - the head of the army 's Northern Command - has announced his resignation .\tDT JJ NN VBZ NNP NNP NNP NNP IN DT NN IN DT NN POS NNP NNP : VBZ VBN PRP$ NN .\nA military statement Wednesday , said General Adam has asked to leave his post ' as soon as possible , ' and the chief of staff has accepted the request to begin the process of his replacement .\tDT JJ NN NNP , VBD NNP NNP VBZ VBN TO VB PRP$ NN `` RB RB IN JJ , `` CC DT NN IN NN VBZ VBN DT NN TO VB DT NN IN PRP$ NN .\nAdam was widely expected to leave the army after he was pushed aside near the end of the 34-day war against Hezbollah guerrillas in Lebanon .\tNNP VBD RB VBN TO VB DT NN IN PRP VBD VBN RB IN DT NN IN DT JJ NN IN NNP NNS IN NNP .\nHe was replaced by another general as ' coordinator of operations in Lebanon . '\tPRP VBD VBN IN DT JJ IN `` NN IN NNS IN NNP . ``\nIsraeli media say Adam had several disagreements with the army chief , Lieutenant General Dan Halutz , over the conduct of the war .\tJJ NNS VBP NNP VBD JJ NNS IN DT NN NN , NNP NNP NNP NNP , IN DT NN IN DT NN .\nA Washington-based research institute says Pakistan is building a nuclear reactor that could produce enough plutonium for 40 to 50 nuclear weapons a year .\tDT JJ NN NN VBZ NNP VBZ VBG DT JJ NN WDT MD VB JJ NN IN CD IN CD JJ NNS DT NN .\nThe Institute for Science and International Security reports that satellite photos show a possible construction site for a larger nuclear reactor near the small one in the Khushab district of Punjab province .\tDT NNP IN NNP CC NNP NNP VBZ IN NN NNS VBP DT JJ NN NN IN DT JJR JJ NN IN DT JJ CD IN DT NNP NN IN NNP NN .\nThe report says such a reactor could produce over 200 kilograms of weapons-grade plutonium , good for 40 to 50 nuclear weapons a year .\tDT NN VBZ JJ DT NN MD VB IN CD NNS IN JJ NN , JJ IN CD TO CD JJ NNS DT NN .\nAccording to some media reports , Pakistan is now capable of producing plutonium for just two warheads a year .\tVBG TO DT NNS NNS , NNP VBZ RB JJ IN VBG NN IN RB CD NNS DT NN .\nPakistan 's Foreign Ministry spokeswoman Tasnim Aslam declined to say whether a new reactor is being constructed , but she said the presence of a nuclear weapons program and facilities at Khushab are well known .\tNNP POS NNP NNP NN NNP NNP VBD TO VB IN DT JJ NN VBZ VBG VBN , CC PRP VBD DT NN IN DT JJ NNS NN CC NNS IN NNP VBP RB VBN .\nThe American Diabetes Association reports the disease is the leading cause of new cases of blindness among adults .\tDT NNP NNP NNP VBZ DT NN VBZ DT VBG NN IN JJ NNS IN NN IN NNS .\nIt is the leading cause of kidney failure .\tPRP VBZ DT VBG NN IN NN NN .\nThe rate of amputation is 10 times higher among those who suffer from the disease .\tDT NN IN NN VBZ CD NNS JJR IN DT WP VBP IN DT NN .\nExperts say those who learn how to manage the disease early , can live healthier and more normal lives .\tNNS VBP DT WP VBP WRB TO VB DT NN RB , MD VB JJR CC JJR JJ NNS .\nVOA 's June Soh found camps that provide children with this chronic disease a positive approach to living with diabetes while letting them just be kids .\tNNP POS NNP NNP VBD NNS WDT VBP NNS IN DT JJ NN DT JJ NN TO VBG IN NNS IN VBG PRP RB VB NNS .\nAmy Katz Narrates .\tNNP NNP VBZ .\nCuba and Panama have said they will restore consular relations , months after Havana broke ties with Panama City for pardoning four men convicted in connection with an assassination attempt against Cuban President Fidel Castro .\tNNP CC NNP VBP VBN PRP MD VB JJ NNS , NNS IN NNP VBD NNS IN NNP NNP IN VBG CD NNS VBN IN NN IN DT NN NN IN JJ NNP NNP NNP .\nThe countries agreed to reopen their consulates , following a meeting Friday between Panamanian President Martin Torrijos and Cuban Vice President Carlos Lage .\tDT NNS VBD TO VB PRP$ NNS , VBG DT NN NNP IN JJ NNP NNP NNP CC JJ NNP NNP NNP NNP .\nThe meeting took place on the sidelines of the Ibero-American Summit in San Jose , Costa Rica , where heads of state were meeting to discuss a candidate to head the Organization of American States and other regional issues .\tDT NN VBD NN IN DT NNS IN DT JJ NNP IN NNP NNP , NNP NNP , WRB NNS IN NN VBD VBG TO VB DT NN TO VB DT NNP IN NNP NNPS CC JJ JJ NNS .\nCuba severed ties with Panama in August , hours after Panamanian President Mireya Moscoso , in her final days in office , pardoned the men , preventing their extradition to Cuba .\tNNP VBD NNS IN NNP IN NNP , NNS IN JJ NNP NNP NNP , IN PRP$ JJ NNS IN NN , VBD DT NNS , VBG PRP$ NN IN NNP .\nThey were convicted of plotting to kill Mr. Castro during the 2000 Ibero-American summit in Panama City .\tPRP VBD VBN IN VBG TO VB NNP NNP IN DT CD JJ NN IN NNP NNP .\nThe Israeli army has killed a Palestinian youth in the northern Gaza Strip and wounded at least three other people .\tDT JJ NN VBZ VBN DT JJ NN IN DT JJ NNP NNP CC VBN IN JJS CD JJ NNS .\nThe army says it targeted a man who was collecting a rocket launcher from an area used to fire rockets at Israel recently .\tDT NN VBZ PRP VBD DT NN WP VBD VBG DT NN NN IN DT NN VBN TO VB NNS IN NNP RB .\nPalestinian medical sources say the Israeli strike killed a teenager .\tJJ JJ NNS VBP DT JJ NN VBD DT NN .\nThe Israeli military began an offensive in Gaza after militants kidnapped an Israeli soldier in June .\tDT JJ NN VBD DT NN IN NNP IN NNS VBD DT JJ NN IN NNP .\nMore than 200 Palestinians have been killed in the offensive .\tJJR IN CD NNS VBP VBN VBN IN DT NN .\nOn Sunday , Palestinian Prime Minister Ismail Haniyeh said his Hamas-led government will not recognize Israel .\tIN NNP , JJ NNP NNP NNP NNP VBD PRP$ JJ NN MD RB VB NNP .\nHe said an Arab peace plan for the region is problematic because it requires Palestinians to recognize Israel in exchange for an Israeli pullout from Palestinian territories .\tPRP VBD DT JJ NN NN IN DT NN VBZ JJ IN PRP VBZ NNS TO VB NNP IN NN IN DT JJ NN IN JJ NNS .\nHe spoke after a week of deadly political infighting between Hamas and the rival Fatah party of President Mahmoud Abbas .\tPRP VBD IN DT NN IN JJ JJ NN IN NNP CC DT JJ NNP NN IN NNP NNP NNP .\nU.S. automaker Chrysler has opened a $ 570 million engine plant in northern Mexico .\tNNP NN NNP VBZ VBN DT $ CD CD NN NN IN JJ NNP .\nDuring the ceremonial startup of the Saltillo plant Friday , Mexican President Felipe Calderon said Chrysler 's sixth plant in Mexico will create 700 jobs .\tIN DT JJ NN IN DT NNP NN NNP , JJ NNP NNP NNP VBD NNP POS JJ NN IN NNP MD VB CD NNS .\nMr. Calderon said Mexico has become a worldwide leader in the auto industry .\tNNP NNP VBD NNP VBZ VBN DT JJ NN IN DT NN NN .\nChrysler plans to build its new fuel-efficient Pentastar V-6 engine for Chrysler , Dodge , Jeep and Ram vehicles .\tNNP VBZ TO VB PRP$ JJ JJ NNP NNP NN IN NNP , NNP , NNP CC NNP NNS .\nMexican officials say the new plant will have the capacity to build 4,40,000 engines per year .\tJJ NNS VBP DT JJ NN MD VB DT NN TO VB CD NNS IN NN .\nA U.S. jury has found that drug maker Merck is not liable for the heart attack suffered by a man taking its painkiller Vioxx .\tDT NNP NN VBZ VBN IN NN NN NNP VBZ RB JJ IN DT NN NN VBN IN DT NN VBG PRP$ NN NNP .\nThe New Jersey jurists agreed with Merck that job stress and health risks caused the 60-year old postal worker to have a heart attack four years ago .\tDT NNP NNP NNS VBD IN NNP IN NN NN CC NN NNS VBD DT JJ JJ JJ NN TO VB DT NN NN CD NNS RB .\nThe plaintiff argued Vioxx was responsible .\tDT NN VBD NNP VBD JJ .\nThe jury also rejected the man 's claim that Merck failed to properly warn users about the drug 's risks .\tDT NN RB VBD DT NN POS NN IN NNP VBD TO RB VB NNS IN DT NN POS NNS .\nMerck withdrew the popular drug last year after a study showed it doubled the risk of heart problems in long-term users .\tNNP VBD DT JJ NN JJ NN IN DT NN VBD PRP VBD DT NN IN NN NNS IN JJ NNS .\nMerck is facing thousands of other lawsuits over Vioxx .\tNNP VBZ VBG NNS IN JJ NNS IN NNP .\nThursday 's verdict is only the second in a Vioxx case .\tNNP POS NN VBZ RB DT NN IN DT NNP NN .\nIn the first , Merck was ordered to pay millions of dollars to the widow of a Vioxx user .\tIN DT JJ , NNP VBD VBN TO VB NNS IN NNS TO DT NN IN DT NNP NN .\nMerck is appealing that decision .\tNNP VBZ VBG DT NN .\nThe rumors are TRUE : Nicole Ritchie is pregnant .\tDT NNS VBP JJ IN NNP NNP VBZ JJ .\nSpeaking to ABC News interviewer Dianne Sawyer , the 25-year-old co-star of TV 's The Simple Life said she is almost four months along in her pregnancy .\tVBG TO NNP NNP NN NNP NNP , DT JJ NN IN NN POS DT NNP NNP VBD PRP VBZ RB CD NNS IN IN PRP$ NN .\nShe said the father is her boyfriend , Joel Madden of the rock band Good Charlotte .\tPRP VBD DT NN VBZ PRP$ NN , NNP NNP IN DT JJ NN NNP NNP .\nRitchie also spoke about her guilty plea last week to driving under the influence and the resulting four-day jail sentence .\tNNP RB VBD IN PRP$ JJ NN JJ NN TO VBG IN DT NN CC DT VBG JJ NN NN .\n' I have a responsibility and it 's something that I did wrong , and if I could personally apologize to every single person that has lost a loved one from drunk driving , I would , ' she said .\t`` PRP VBP DT NN CC PRP VBZ DT IN PRP VBD JJ , CC IN PRP MD RB VB TO DT JJ NN WDT VBZ VBN DT JJ CD IN JJ NN , PRP MD , `` PRP VBD .\n' And unfortunately I ca n't , but this is my way of paying my dues and taking responsibility and being an adult . '\t`` CC RB PRP MD RB , CC DT VBZ PRP$ NN IN VBG PRP$ NNS CC VBG NN CC VBG DT NN . ``\nThe interview airs August 2 and 3 on Good Morning America , and later August 3 on 20/20 .\tDT NN VBZ NNP CD CC CD IN NNP NNP NNP , CC RB NNP CD IN NNP .\nU.S. Senator John Warner of the southeastern state of Virginia , a prominent Republican figure in the debate over the war in Iraq , says he will retire after finishing his term in 2009 .\tNNP NNP NNP NNP IN DT JJ NN IN NNP , DT JJ JJ NN IN DT NN IN DT NN IN NNP , VBZ PRP MD VB IN VBG PRP$ NN IN CD .\nWarner told supporters outside of the University of Virginia Friday that he will not seek a sixth term in the 2008 elections .\tNNP VBD NNS IN IN DT NNP IN NNP NNP IN PRP MD RB VB DT JJ NN IN DT CD NNS .\nThe former chairman of the powerful Senate Armed Services Committee has openly criticized President Bush 's handling of the war in Iraq .\tDT JJ NN IN DT JJ NNP NNP NNP NNP VBZ RB VBN NNP NNP POS NN IN DT NN IN NNP .\nHe called on Mr. Bush earlier this month to begin withdrawing some U.S. troops from Iraq .\tPRP VBD IN NNP NNP RBR DT NN TO VB VBG DT NNP NNS IN NNP .\nHis retirement will leave open what would have been a relatively safe seat for Republicans in the fight for Senate control in the elections .\tPRP$ NN MD VB JJ WP MD VB VBN DT RB JJ NN IN NNS IN DT NN IN NNP NN IN DT NNS .\nDemocrats will now have a better chance to protect or expand their one-seat majority in the Senate .\tNNS MD RB VB DT JJR NN TO VB CC VB PRP$ JJ NN IN DT NNP .\nWhen he leaves office , the 80-year-old former Navy secretary will have served 30 years as a U.S. senator .\tWRB PRP VBZ NN , DT JJ JJ NNP NN MD VB VBN CD NNS IN DT NNP NN .\nThe United Nations says December 's Indian Ocean tsunami caused around $ 520 million in damage to fishing industries in seven of the worst hit countries .\tDT NNP NNP VBZ NNP POS NNP NNP NN VBD IN $ CD CD IN NN TO NN NNS IN CD IN DT RBS VBN NNS .\nThe U.N. 's Food and Agricultural Organization ( FAO ) said the tsunami destroyed or damaged more than 1,11,000 fishing vessels in the region .\tDT NNP POS NNP CC NNP NNP LRB NNP RRB VBD DT NN VBD CC VBD JJR IN CD NN NNS IN DT NN .\nIt said the loss was significant in a region where fishing provides a vital source of food .\tPRP VBD DT NN VBD JJ IN DT NN WRB NN VBZ DT JJ NN IN NN .\nThe FAO 's estimate includes damage to fishing industries in Indonesia , Maldives , Somalia , Sri Lanka and Thailand .\tDT NNP POS NN VBZ NN TO NN NNS IN NNP , NNP , NNP , NNP NNP CC NNP .\nThe agency says it has sent experts to help rebuild fishing industry infrastructure lost in the disaster and is developing strategies for long-term recovery in the region .\tDT NN VBZ PRP VBZ VBN NNS TO VB VB NN NN NN VBN IN DT NN CC VBZ VBG NNS IN JJ NN IN DT NN .\nOfficials in Indonesia say another person has died from bird flu , bringing the country 's death toll from the disease to 96 since the outbreak started in 2003 .\tNNS IN NNP VBP DT NN VBZ VBN IN NN NN , VBG DT NN POS NN NN IN DT NN TO CD IN DT NN VBD IN CD .\nThe latest victim was a 16-year-old girl from the town of Bekasi , on the eastern outskirts of Jakarta .\tDT JJS NN VBD DT JJ NN IN DT NN IN NNP , IN DT JJ NNS IN NNP .\nOfficials say she died Tuesday .\tNNS VBP PRP VBD NNP .\nMonday , officials reported that a 32-year-old woman from an area just west of Jakarta died of bird flu last week , at her home in the city of Tangerang .\tNNP , NNS VBD IN DT JJ NN IN DT NN RB JJS IN NNP VBD IN NN NN JJ NN , IN PRP$ NN IN DT NN IN NNP .\nA statement from the health ministry said the woman 's family kept chickens in their backyard .\tDT NN IN DT NN NN VBD DT NN POS NN VBD NNS IN PRP$ NN .\nHumans are usually infected with bird flu by direct contact with infected poultry , but experts fear the H5N1 virus may mutate into a form easily transmitted between people .\tNNS VBP RB VBN IN NN NN IN JJ NN IN JJ NN , CC NNS VBP DT NNP NN MD VB IN DT NN RB VBN IN NNS .\nScientists fear such a mutation could spark a global pandemic with a potential death toll of millions .\tNNS VBP JJ DT NN MD VB DT JJ NN IN DT JJ NN NN IN NNS .\nThailand says it has photo evidence to prove its claim that Islamic militants responsible for violence in Thailand 's Muslim-majority south are training in neighboring Malaysia .\tNNP VBZ PRP VBZ NN NN TO VB PRP$ NN IN NNP NNS JJ IN NN IN NNP POS JJ NN VBP VBG IN VBG NNP .\nThai Deputy Interior Minister Sutham Saengprathum says the photos show the militants training in Malaysia 's northern Kelantan state , which borders southern Thailand .\tJJ NNP NNP NNP NNP NNP VBZ DT NNS VBP DT NNS VBG IN NNP POS JJ NNP NN , WDT VBZ JJ NNP .\nHe said if Malaysia wants to see the photos , Bangkok will provide them .\tPRP VBD IN NNP VBZ TO VB DT NNS , NNP MD VB PRP .\nThai Prime Minister Thaksin Shinawatra has said he believes some of the insurgents have been trained in Malaysia , Indonesia and southern Thailand .\tJJ NNP NNP NNP NNP VBZ VBN PRP VBZ DT IN DT NNS VBP VBN VBN IN NNP , NNP CC JJ NNP .\nMalaysia and Indonesia have demanded proof of Bangkok 's allegations .\tNNP CC NNP VBP VBN NN IN NNP POS NNS .\nMore than 500 people have been killed this year in an insurgency that some say is supported by extremist Muslims in Indonesia and Malaysia .\tJJR IN CD NNS VBP VBN VBN DT NN IN DT NN IN DT VBP VBZ VBN IN NN NNS IN NNP CC NNP .\nAnti-Japanese protests in the western Chinese city of Shanghai turned violent Saturday , with protesters pelting the Japanese consulate with rocks , bottles and eggs .\tJJ NNS IN DT JJ JJ NN IN NNP VBD JJ NNP , IN NNS VBG DT JJ NN IN NNS , NNS CC NNS .\nSeveral thousand people took to the streets of Shanghai as part of a new wave of anti-Japanese protests over Japan 's bid for a permanent seat on the U.N. Security Council and Tokyo 's alleged downplaying of war atrocities .\tJJ CD NNS VBD TO DT NNS IN NNP IN NN IN DT JJ NN IN JJ NNS IN NNP POS NN IN DT JJ NN IN DT NNP NNP NNP CC NNP POS JJ NN IN NN NNS .\nIn Beijing , police are out in force waiting for protests to begin in the capital .\tIN NNP , NNS VBP RB IN NN VBG IN NNS TO VB IN DT NN .\nState Councilor Tang Jiaxuan told the official Xinhua news agency that China 's government is urging people to protest in a calm and orderly manner .\tNNP NNP NNP NNP VBD DT JJ NNP NN NN IN NNP POS NN VBZ VBG NNS TO VB IN DT JJ CC JJ NN .\nJapan 's Foreign Minister , Nobutaka Machimura , arrives Sunday in Beijing for talks with his Chinese counterpart , Li Zhaoxing , to discuss relations between the two countries .\tNNP POS NNP NNP , NNP NNP , VBZ NNP IN NNP IN NNS IN PRP$ JJ NN , NNP NNP , TO VB NNS IN DT CD NNS .\nOrganizers of the 2012 Summer Olympics in London have promised the ' greenest games ' in history and sought to soothe concerns about the rising cost of the event .\tNNS IN DT CD NNP NNPS IN NNP VBP VBN DT `` JJS NNS `` IN NN CC VBD TO VB NNS IN DT VBG NN IN DT NN .\nWith 2,012 days to go until the Games get under way , organizers said the design would champion low waste , low carbon emissions and environmentally friendly transportation .\tIN CD NNS TO VB IN DT NNPS VBP IN NN , NNS VBD DT NN MD JJ JJ NN , JJ NN NNS CC RB JJ NN .\nThe Olympic Delivery Authority has promised to cut emissions 50 percent by generating energy on site and using renewable energy .\tDT NNP NNP NNP VBZ VBN TO VB NNS CD NN IN VBG NN IN NN CC VBG JJ NN .\nPrime Minister Tony Blair said London is farther ahead in preparations at this stage than any other previous Olympic host city .\tNNP NNP NNP NNP VBD NNP VBZ RB RB IN NNS IN DT NN IN DT JJ JJ JJ NN NN .\nThe British government wants to have the Olympic budget finalized early this year , but costs have already risen substantially since London won the bid in July of 2005 .\tDT JJ NN VBZ TO VB DT NNP NN VBN RB DT NN , CC NNS VBP RB VBN RB IN NNP VBD DT NN IN NNP IN CD .\nA select committee report due Wednesday is expected to be highly critical of the government 's financing of the Games .\tDT JJ NN NN JJ NNP VBZ VBN TO VB RB JJ IN DT NN POS NN IN DT NNPS .\nChina 's giant pandas have been on endangered species lists for nearly 30 years .\tNNP POS JJ NNS VBP VBN IN JJ NNS NNS IN RB CD NNS .\nThere are only about 1,600 pandas still living in the wild in China .\tEX VBP RB IN CD NNS RB VBG IN DT NN IN NNP .\nOne of the 2008 Olympic mascots is modeled on a panda called Jing Jing .\tCD IN DT CD JJ NNS VBZ VBN IN DT NN VBN NNP NNP .\nConservationists hope she will help draw attention to the threats facing the giant panda -- one of China 's national symbols .\tNNS VBP PRP MD VB VB NN TO DT NNS VBG DT JJ NN IN CD IN NNP POS JJ NNS .\nSam Beattie reports from Jing Jing 's home in Sichuan province .\tNNP NNP VBZ IN NNP NNP POS NN IN NNP NN .\nBritish defense officials say 14 British military personnel have been killed in a crash of a NATO aircraft in southern Afghanistan .\tJJ NN NNS VBP CD JJ JJ NNS VBP VBN VBN IN DT NN IN DT NNP NN IN JJ NNP .\nA NATO spokesman says the aircraft went off the radar and crashed in an open area near Kandahar Saturday .\tDT NNP NN VBZ DT NN VBD IN DT NN CC VBD IN DT JJ NN IN NNP NNP .\nOfficials say the aircraft was supporting a NATO mission in the country 's south , but there is no indication of enemy action causing the crash .\tNNS VBP DT NN VBD VBG DT NNP NN IN DT NN POS NN , CC EX VBZ DT NN IN NN NN VBG DT NN .\nThe crash comes as NATO forces launched an offensive to drive Taleban remnants out of Kandahar .\tDT NN VBZ IN NNP NNS VBD DT NN TO VB NNP NNS IN IN NNP .\nOfficials say ' Operation Medusa ' is aimed at removing the Taleban threat so that stability , reconstruction and development can be achieved in the area .\tNNS VBP `` NNP NNP `` VBZ VBN IN VBG DT NNP NN RB IN NN , NN CC NN MD VB VBN IN DT NN .\nSri Lankan authorities say a prominent Tamil journalist was found shot dead Friday in Colombo , hours after he was abducted by several attackers as he left a restaurant .\tNNP NNP NNS VBP DT JJ NNP NN VBD VBN VBN JJ NNP IN NNP , NNS IN PRP VBD VBN IN JJ NNS IN PRP VBD DT NN .\nDharmeratnam Sivaram was a board member of the pro-rebel TamilNet Web site and a columnist for Sri Lanka 's english newspaper , the Daily Mirror .\tNNP NNP VBD DT NN NN IN DT JJ NNP NNP NN CC DT NN IN NNP NNP POS NNP NN , DT NNP NNP .\nMr. Sivaram 's Web site became popular for ongoing reports on the Sri Lankan civil war and was a prominent supporter of the Tamil Tiger rebel movement .\tNNP NNP POS NNP NN VBD JJ IN JJ NNS IN DT NNP NNP JJ NN CC VBD DT JJ NN IN DT NNP NNP NN NN .\nMr. Sivaram , who was also brutally attacked in 2001 , was found near a lake gagged with gunshot wounds to the head .\tNNP NNP , WP VBD RB RB VBN IN CD , VBD VBN IN DT NN VBN IN NN NNS TO DT NN .\nNo one claimed responsibility for the killing .\tDT NN VBD NN IN DT NN .\nJapan and North Korea say they are considering a resumption of bilateral talks as part of efforts to normalize relations .\tNNP CC NNP NNP VBP PRP VBP VBG DT NN IN JJ NNS IN NN IN NNS TO VB NNS .\nJapanese media reported Monday that the two countries hope to arrange to hold the talks in Beijing in early November .\tJJ NNS VBD NNP IN DT CD NNS VBP TO VB TO VB DT NNS IN NNP IN JJ NNP .\nThe talks could come before six-party talks on North Korea 's nuclear ambitions resume .\tDT NNS MD VB IN JJ NNS IN NNP NNP POS JJ NNS VBP .\nJapan and North Korea have not had formal bilateral talks for about a year .\tNNP CC NNP NNP VBP RB VBN JJ JJ NNS IN RB DT NN .\nTokyo and Pyongyang are at odds over North Korea 's nuclear weapons program and the North 's kidnapping of Japanese citizens in the 1970s and 1980s .\tNNP CC NNP VBP IN NNS IN NNP NNP POS JJ NNS NN CC DT NNP POS NN IN JJ NNS IN DT NNS CC NNS .\nA human rights group has accused coalition forces in Iraq of failing to secure evidence considered vital to the upcoming war crimes trial of former Iraqi leader Saddam Hussein .\tDT JJ NNS NN VBZ VBN NN NNS IN NNP IN VBG TO VB NN VBN JJ TO DT JJ NN NNS NN IN JJ JJ NN NNP NNP .\nHuman Rights Watch , in a report released Thursday , said coalition forces failed to stop people from stealing thousands of Iraqi government documents in the months after the 2003 invasion of Iraq .\tNNP NNP NNP , IN DT NN VBN NNP , VBD NN NNS VBD TO VB NNS IN VBG NNS IN JJ NN NNS IN DT NNS IN DT CD NN IN NNP .\nThe group also accused troops of failing to stop people from damaging several mass graves in the war-torn country .\tDT NN RB VBD NNS IN VBG TO VB NNS IN VBG JJ NN NNS IN DT JJ NN .\nThe Associated Press quotes a U.S. Defense Department spokeswoman as saying it has not reviewed the report .\tDT NNP NNP VBZ DT NNP NNP NNP NN IN VBG PRP VBZ RB VBN DT NN .\nSaddam Hussein was arraigned in July at a U.S. military base on the outskirts of Baghdad .\tNNP NNP VBD VBN IN NNP IN DT NNP NN NN IN DT NNS IN NNP .\nHe faces charges of war crimes , genocide and crimes against humanity .\tPRP VBZ NNS IN NN NNS , NN CC NNS IN NN .\nEgypt 's government and the World Health Organization say three Egyptian children have been hospitalized with the deadly form of avian flu .\tNNP POS NN CC DT NNP NNP NNP VBP CD JJ NNS VBP VBN VBN IN DT JJ NN IN JJ NN .\nThe children come from different parts of the country .\tDT NNS VBP IN JJ NNS IN DT NN .\nWHO says they are receiving treatment and are in stable condition .\tNNP VBZ PRP VBP VBG NN CC VBP IN JJ NN .\nThe organization says the children had a history of contact with dead birds .\tDT NN VBZ DT NNS VBD DT NN IN NN IN JJ NNS .\nThirty two Egyptians have contracted the H5N1 form of avian flu .\tCD CD NNS VBP VBN DT NNP NN IN JJ NN .\nThirteen of them have died .\tCD IN PRP VBP VBN .\nEgypt has had the largest number of human bird flu cases outside of Asia .\tNNP VBZ VBN DT JJS NN IN JJ NN NN NNS IN IN NNP .\nThe head of the U.N. investigation into the Iraq oil-for-food program says Saddam Hussein illegally obtained more money from oil smuggling than from corruption in the U.N. program .\tDT NN IN DT NNP NN IN DT NNP NN NN VBZ NNP NNP RB VBD JJR NN IN NN NN IN IN NN IN DT NNP NN .\nFormer U.S. Federal Reserve Chairman Paul Volcker says the smuggling began before the start of the oil-for-food program , and was known to the United Nations Security Council .\tJJ NNP NNP NNP NNP NNP NNP VBZ DT NN VBD IN DT NN IN DT NN NN , CC VBD VBN TO DT NNP NNP NNP NNP .\nIn an interview with the U.S. government-funded alHurra television station , Mr. Volcker said there is a lot of confusion about how much money Saddam obtained from the oil-for-food program itself .\tIN DT NN IN DT NNP JJ NNP NN NN , NNP NNP VBD EX VBZ DT NN IN NN IN WRB JJ NN NNP VBD IN DT NN NN PRP .\nHe refused to provide specific estimates , but said large amounts that have been reported in the media were from smuggling and not from funds diverted from the program .\tPRP VBD TO VB JJ NNS , CC VBD JJ NNS WDT VBP VBN VBN IN DT NNS VBD IN VBG CC RB IN NNS VBN IN DT NN .\nThe United Nations created the oil-for-food program after the first Gulf War to allow Iraq to sell oil and use the profits for the Iraqi people 's humanitarian needs .\tDT NNP NNPS VBD DT NN NN IN DT JJ NNP NNP TO VB NNP TO VB NN CC VB DT NNS IN DT JJ NNS POS JJ NNS .\nKyrgyzstan 's Justice Ministry says four people , including parliament member Tynychbek Akmatbayev , have been killed at a prison near Bishkek after inmates took them hostage .\tNNP POS NNP NNP VBZ CD NNS , VBG NN NN NNP NNP , VBP VBN VBN IN DT NN IN NNP IN NNS VBD PRP NN .\nInterior Minister Murat Sutalinov is at the prison to head negotiations with the inmates .\tNNP NNP NNP NNP VBZ IN DT NN TO VB NNS IN DT NNS .\nThe ministry gave no other details .\tDT NN VBD DT JJ NNS .\nIt is not clear if the hostage-takers made any demands .\tPRP VBZ RB JJ IN DT NNS VBD DT NNS .\nMr. Akmatbayev was involved in negotiations on Wednesday at another Kyrgyz prison where a riot over poor living conditions forced the staff to evacuate earlier this week .\tNNP NNP VBD VBN IN NNS IN NNP IN DT JJ NN WRB DT NN IN JJ NN NNS VBD DT NN TO VB RBR DT NN .\nThat prison , also near Bishkek , remained surrounded by security forces on Thursday .\tDT NN , RB IN NNP , VBD VBN IN NN NNS IN NNP .\nA commercial airplane taking off from Western Europe has landed in Iraq for the first time in nearly 20 years .\tDT JJ NN VBG RP IN NNP NNP VBZ VBN IN NNP IN DT JJ NN IN RB CD NNS .\nThe plane , operated by France 's Aigle Azur airline , took off from Charles De Gaulle airport in Paris late Saturday and touched down at Baghdad International Airport early Sunday .\tDT NN , VBN IN NNP POS NNP NNP NN , VBD RP IN NNP NNP NNP NN IN NNP JJ NNP CC VBD RP IN NNP NNP NNP JJ NNP .\nOfficials said this first flight was largely ceremonial , and that most of the passengers were French diplomats and business leaders .\tNNS VBD DT JJ NN VBD RB JJ , CC IN JJS IN DT NNS VBD JJ NNS CC NN NNS .\nOne of the passengers , French Foreign Trade Minister Anne-Marie Idrac , called it a historic day for cooperation between France and Iraq .\tCD IN DT NNS , JJ NNP NNP NNP NNP NNP , VBD PRP DT JJ NN IN NN IN NNP CC NNP .\nRegular service between Paris and Baghdad is not expected to start for at least several weeks .\tJJ NN IN NNP CC NNP VBZ RB VBN TO VB IN IN JJS JJ NNS .\nAigle Azur is just one of a number of airlines to start flying to Baghdad .\tNNP NNP VBZ RB CD IN DT NN IN NNS TO VB VBG TO NNP .\nEtihad and Emirates airlines , both operating out of the United Arab Emirates , started flying to Baghdad earlier this year .\tNNP CC NNP NNS , DT VBG IN IN DT NNP NNP NNPS , VBD VBG TO NNP RBR DT NN .\nA new government report shows U.S. businesses added a moderate 1,11,000 new jobs in January .\tDT JJ NN NN VBZ NNP NNS VBD DT JJ CD JJ NNS IN NNP .\nThe Labor Department Friday issued a report that also showed the U.S. unemployment rate increased for the first time in three months - to 4.6 percent .\tDT NNP NNP NNP VBD DT NN WDT RB VBD DT NNP NN NN VBD IN DT JJ NN IN CD NNS IN IN CD NN .\nAccording to the report , American workers earned an average of $ 17.09 an hour in January - a slight increase from the previous month .\tVBG TO DT NN , JJ NNS VBD DT NN IN $ CD DT NN IN NNP IN DT JJ NN IN DT JJ NN .\nAnalysts say the Department of Labor report will help ease worries that a tight labor market will significantly inflate wages and costs .\tNNS VBP DT NNP IN NNP NN MD VB VB NNS IN DT JJ NN NN MD RB VB NNS CC NNS .\nEarlier this week , the U.S. central bank decided to maintain a key interest rate , despite the risk of inflation .\tRBR DT NN , DT NNP JJ NN VBD TO VB DT JJ NN NN , IN DT NN IN NN .\nVenezuelan President Hugo Chavez has denounced Colombia 's defense minister as an obstacle to peace and a pawn of the United States .\tJJ NNP NNP NNP VBZ VBN NNP POS NN NN IN DT NN TO NN CC DT NN IN DT NNP NNPS .\nMr. Chavez reacted sharply Sunday to the defense minister 's remarks about a meeting between Mr. Chavez and Colombian President Alvaro Uribe .\tNNP NNP VBD RB NNP TO DT NN NN POS NNS IN DT NN IN NNP NNP CC JJ NNP NNP NNP .\nThe two presidents met Friday to try to mend ties between their countries .\tDT CD NNS VBD NNP TO VB TO VB NNS IN PRP$ NNS .\nAfter the meeting , Colombian Defense Minister Juan Manuel Santos said he hoped Venezuela would follow through with promises made during the meeting .\tIN DT NN , JJ NNP NNP NNP NNP NNP VBD PRP VBD NNP MD VB IN IN NNS VBN IN DT NN .\nDuring a televised speech Sunday , Mr. Chavez called on President Uribe to put his defense minister in his place .\tIN DT JJ NN NNP , NNP NNP VBD IN NNP NNP TO VB PRP$ NN NN IN PRP$ NN .\nTensions between the two countries rose in March when Colombia attacked a rebel camp in Ecuador .\tNNS IN DT CD NNS VBD IN NNP WRB NNP VBD DT NN NN IN NNP .\nVenezuela responded by sending troops to the Colombian border .\tNNP VBD IN VBG NNS TO DT JJ NN .\nChina has lashed out at a U.S. report critical of Chinese policies on religious freedom , saying such criticism could harm U.S. - China relations .\tNNP VBZ VBN RP IN DT NNP NN JJ IN JJ NNS IN JJ NN , VBG JJ NN MD VB NNP IN NNP NNS .\nIn its annual report issued Wednesday , the U.S. Commission on International Religious Freedom said China continues to be responsible for pervasive and severe violations of religious freedom , regularly imprisoning and harassing religious leaders and practitioners .\tIN PRP$ JJ NN VBN NNP , DT NNP NNP IN NNP NNP NNP VBD NNP VBZ TO VB JJ IN JJ CC JJ NNS IN JJ NN , RB VBG CC VBG JJ NNS CC NNS .\nIn a statement Saturday Chinese Foreign Ministry spokesman Liu Jianchao accused the U.S. body of attempting to interfere with Chinese internal affairs under the guise of religious freedom .\tIN DT NN NNP JJ NNP NNP NN NNP NNP VBD DT NNP NN IN VBG TO VB IN JJ JJ NNS IN DT NN IN JJ NN .\nHe said such criticism runs counter to the good development of U.S - China relations .\tPRP VBD JJ NN VBZ NN TO DT JJ NN IN NNP IN NNP NNS .\nLiu said China protects the religious freedom of Chinese citizens according to law , and that citizens enjoy full freedom of religion .\tNNP VBD NNP VBZ DT JJ NN IN JJ NNS VBG TO NN , CC IN NNS VBP JJ NN IN NN .\nChina 's communist government allows worship only in state-approved and state-monitored churches , temples and mosques .\tNNP POS JJ NN VBZ NN RB IN JJ CC JJ NNS , NNS CC NNS .\nPeople who worship in unauthorized ways are subject to arrest .\tNNS WP VBP IN JJ NNS VBP JJ TO NN .\nPresident Bush has issued 14 pardons to convicted criminals , and has commuted the prison sentences of two others .\tNNP NNP VBZ VBN CD NNS TO VBN NNS , CC VBZ VBN DT NN NNS IN CD NNS .\nThe pardons , announced Monday , include no high-profile names .\tDT NNS , VBN NNP , VBP DT JJ NNS .\nThey were for people convicted of such acts as bank embezzlement , making FALSE statements to the federal government , unlawfully killing wildlife , and committing drug offenses .\tPRP VBD IN NNS VBN IN JJ NNS IN NN NN , VBG JJ NNS TO DT JJ NN , RB VBG NN , CC VBG NN NNS .\nIncluding Monday 's actions , Mr. Bush has granted 171 pardons and commuted eight sentences while U.S. president .\tIN NNP POS NNS , NNP NNP VBZ VBN CD NNS CC VBN CD NNS IN NNP NN .\nPardons are one of the president 's absolute powers , and in recent years it has become typical for the president to issue pardons as he prepares to leave office .\tNNS VBP CD IN DT NN POS JJ NNS , CC IN JJ NNS PRP VBZ VBN JJ IN DT NN TO VB NNS IN PRP VBZ TO VB NN .\nWhite House officials say he made the pardon decisions on a case-by-case basis , and will continue to review clemency requests .\tNNP NNP NNS VBP PRP VBD DT NN NNS IN DT JJ NN , CC MD VB TO VB NN NNS .\nUganda 's government and rebels of the Lord 's Resistance Army are nearing a peace deal to end more than 20 years of conflict .\tNNP POS NN CC NNS IN DT NNP POS NN NNP VBP VBG DT NN NN TO VB JJR IN CD NNS IN NN .\nOfficials close to the negotiations say an accord signed Friday provides for the disarmament and demobilization of the LRA .\tNNS RB TO DT NNS VBP DT NN VBN NNP VBZ IN DT NN CC NN IN DT NNP .\nThe two sides signed a permanent cease-fire agreement last Saturday during peace talks in Sudan .\tDT CD NNS VBD DT JJ NN NN JJ NNP IN NN NNS IN NNP .\nHowever , there is still uncertainty the rebels will sign the final peace deal until rebel leader Joseph Kony is granted immunity from international prosecution .\tRB , EX VBZ RB NN DT NNS MD VB DT JJ NN NN IN NN NN NNP NNP VBZ VBN NN IN JJ NN .\nKony is one of five LRA officials sought by the International Criminal Court for alleged war crimes .\tNNP VBZ CD IN CD NNP NNS VBN IN DT NNP NNP NNP IN JJ NN NNS .\nLRA fighters are accused of murdering thousands of civilians and raping and mutilating others during the long insurgency in northern Uganda .\tNNP NNS VBP VBN IN VBG NNS IN NNS CC VBG CC VBG NNS IN DT JJ NN IN JJ NNP .\nWorld number one men 's tennis player Roger Federer has been nearly unbeatable in the past year .\tNN NN CD NNS POS NN NN NNP NNP VBZ VBN RB JJ IN DT JJ NN .\nBut his warmup for the Australian Open has abruptly ended with a rare loss .\tCC PRP$ NN IN DT NNP NNP VBZ RB VBN IN DT JJ NN .\nThe Swiss star was upset Wednesday by German Tommy Haas in the opening match of the Kooyong Classic in Melbourne .\tDT JJ NN VBD VBN NNP IN JJ NNP NNP IN DT NN NN IN DT NNP NNP IN NNP .\nBecause he was playing in exhibition tournament , the loss will not count on his Association of Tennis Professionals Tour record .\tIN PRP VBD VBG IN NN NN , DT NN MD RB VB IN PRP$ NN IN NNP NNPS NNP NN .\nThe 41st ranked Haas fended off three break points while serving for the match and closed a 03-Jun , 06-Apr , 06-Apr win with an ace .\tDT CD VBN NNP VBD RP CD NN NNS IN VBG IN DT NN CC VBD DT CD , CD , CD NN IN DT NN .\nFederer said he is completely healthy and has no concerns that the ankle problem that curtailed his last season would flare up before the Australian Open , which starts Monday .\tNNP VBD PRP VBZ RB JJ CC VBZ DT NNS IN DT NN NN WDT VBD PRP$ JJ NN MD VB RP IN DT NNP NNP , WDT VBZ NNP .\nThe European Space Agency says it has received the first images and scientific readings from the surface of Saturn 's moon Titan .\tDT NNP NNP NNP VBZ PRP VBZ VBN DT JJ NNS CC JJ NNS IN DT NN IN NNP POS NN NNP .\nOfficials at agency headquarters in Germany Friday say information taken from the Huygens space probe show what looks like drainage channels on the moon .\tNNS IN NN NN IN NNP NNP VBP NN VBN IN DT NNP NN NN VBP WP VBZ IN NN NNS IN DT NN .\nThey say the surface has canyons that were most likely caused by some type of liquid .\tPRP VBP DT NN VBZ NNS WDT VBD RBS JJ VBN IN DT NN IN NN .\nThe space probe began transmitting data to the Cassini spacecraft while landing on Saturn 's largest moon earlier Friday .\tDT NN NN VBD VBG NNS TO DT NNP NN IN VBG IN NNP POS JJS NN RB NNP .\nScientists say the information from Huygens - operated jointly by the American , European and Italian space agencies - may provide clues about how primitive Earth evolved into a life-bearing planet .\tNNS VBP DT NN IN NNP : VBN RB IN DT JJ , JJ CC JJ NN NNS : MD VB NNS IN WRB JJ NNP VBD IN DT JJ NN .\nUgandan opposition leader Kizza Besigye has been released on bail , after a judge ruled his detention by the military was illegal .\tJJ NN NN NNP NNP VBZ VBN VBN IN NN , IN DT NN VBD PRP$ NN IN DT NN VBD JJ .\nPolice fired tear gas to disperse hundreds of Dr. Besigye 's supporters who took to the streets in Kampala after his release Monday .\tNNS VBD JJ NN TO VB NNS IN NNP NNP POS NNS WP VBD TO DT NNS IN NNP IN PRP$ NN NNP .\nUganda 's military had detained Dr. Besigye since November , when he returned from self-imposed exile to run against President Yoweri Museveni in next month 's presidential election .\tNNP POS NN VBD VBN NNP NNP IN NNP , WRB PRP VBD IN JJ NN TO VB IN NNP NNP NNP IN JJ NN POS JJ NN .\nA military tribunal has charged Dr. Besigye with terrorism and possessing illegal weapons .\tDT JJ NN VBZ VBN NNP NNP IN NN CC VBG JJ NNS .\nBut a Ugandan High Court Judge , John Bosco Katutsi , said his detention was illegal because the High Court had suspended the military trial .\tCC DT JJ NNP NNP NN , NNP NNP NNP , VBD PRP$ NN VBD JJ IN DT NNP NNP VBD VBN DT JJ NN .\nDr. Besigye still faces rape charges , for which a civilian trial began Monday .\tNNP NNP RB VBZ NN NNS , IN WDT DT JJ NN VBD NNP .\nHe has denied all the charges , which supporters say were trumped up to keep him from running for president .\tPRP VBZ VBN PDT DT NNS , WDT NNS VBP VBD VBN RP TO VB PRP IN VBG IN NN .\nU.S. President Barack Obama says improvements in the American health care system are inevitable .\tNNP NNP NNP NNP VBZ NNS IN DT JJ NN NN NN VBP JJ .\nMr. Obama made his comments in the White House Rose Garden Monday as he nominated an African-American woman , Regina Benjamin , to become the U.S. Surgeon General .\tNNP NNP VBD PRP$ NNS IN DT NNP NNP NNP NNP NNP IN PRP VBD DT JJ NN , NNP NNP , TO VB DT NNP NNP NNP .\nThe president said ' naysayers and cynics ' should not bet against the passage of health insurance legislation .\tDT NN VBD `` NNS CC NNS `` MD RB VB IN DT NN IN NN NN NN .\nHe also said inaction on the issue is not an option .\tPRP RB VBD NN IN DT NN VBZ RB DT NN .\nMr. Obama has vowed to sign a health care bill into law this year .\tNNP NNP VBZ VBN TO VB DT NN NN NN IN NN DT NN .\nDemocrats in the House of Representatives say they are nearly ready to unveil their health care reform plan .\tNNS IN DT NNP IN NNPS VBP PRP VBP RB JJ TO VB PRP$ NN NN NN NN .\nControversy over extending health coverage to uninsured Americans centers on how to pay for it .\tNN IN VBG NN NN TO JJ NNS VBZ IN WRB TO VB IN PRP .\nIt is expected to cost $ 1 trillion over 10 years .\tPRP VBZ VBN TO VB $ CD CD IN CD NNS .\nWorld Bank member nations meeting in Washington have approved a debt relief plan for 17 African and Latin American countries that could total $ 37 billion over 40 years .\tNNP NNP NN NNS VBG IN NNP VBP VBN DT NN NN NN IN CD JJ CC JJ JJ NNS WDT MD VB $ CD CD IN CD NNS .\nWorld Bank President Paul Wolfowitz said two-thirds of the bank members have now approved the plan , meaning the bank could start forgiving debts in July .\tNNP NNP NNP NNP NNP VBD NNS IN DT NN NNS VBP RB VBN DT NN , VBG DT NN MD VB VBG NNS IN NNP .\nThe move follows July 's pledge from the wealthy G-8 countries to cancel the debt of the world 's poorest countries , many of which are located in Africa .\tDT NN VBZ NNP POS NN IN DT JJ NNP NNS TO VB DT NN IN DT NN POS JJS NNS , NN IN WDT VBP VBN IN NNP .\nThe 17 countries now eligible for World Bank debt relief are Benin , Bolivia , Burkina Faso , Ethiopia , Ghana , Guyana , Honduras , Madagascar , Mali , Mozambique , Nicaragua , Niger , Rwanda , Senegal , Tanzania , Uganda and Zambia .\tDT CD NNS RB JJ IN NNP NNP NN NN VBP NNP , NNP , NNP NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nIran has closed government offices and schools in Tehran for two days because of wind-blown dust that has polluted the capital .\tNNP VBZ VBN NN NNS CC NNS IN NNP IN CD NNS IN IN JJ NN WDT VBZ VBN DT NN .\nGovernment authorities have declared Tuesday and Wednesday a public holiday , and Iranian media say many domestic airline flights have been canceled .\tNN NNS VBP VBN NNP CC NNP DT JJ NN , CC JJ NNS VBP JJ JJ NN NNS VBP VBN VBN .\nMedical authorities are advising people with heart and respiratory problems to stay inside .\tJJ NNS VBP VBG NNS IN NN CC JJ NNS TO VB RB .\nIran 's Press TV says Tehran 's Air Quality Control Company has found the amount of potentially harmful particulate in the air has reached dangerous levels .\tNNP POS NNP NNP VBZ NNP POS NNP NNP NNP NNP VBZ VBN DT NN IN RB JJ NN IN DT NN VBZ VBN JJ NNS .\nThe dust has blown in from Saudi Arabia and neighboring Iraq , where a severe sandstorm recently blanketed the capital , Baghdad .\tDT NN VBZ VBN IN IN NNP NNP CC JJ NNP , WRB DT JJ NN RB VBD DT NN , NNP .\nSandstorms can be caused by heavy winds blowing across deserts , or across land that has lost its fertile top soil and greenery .\tNNS MD VB VBN IN JJ NNS VBG IN NNS , CC IN NN WDT VBZ VBN PRP$ JJ JJ NN CC NN .\nShortly before midnight a suicide bomber blew himself up in a crowd of young Israelis waiting to get into a beachfront nightclub in Tel Aviv .\tRB IN NN DT NN NN VBD PRP RP IN DT NN IN JJ NNS VBG TO VB IN DT NN NN IN NNP NNP .\nIsraeli police say the bomber was spotted and prevented from entering the club .\tJJ NNS VBP DT NN VBD VBN CC VBN IN VBG DT NN .\nThey say if he had gotten inside the carnage would have been even worse .\tPRP VBP IN PRP VBD VBN IN DT NN MD VB VBN RB RBR .\nIt is unclear who was behind the attack with major Palestinian militant groups saying they had nothing to do with it .\tPRP VBZ JJ WP VBD IN DT NN IN JJ JJ NN NNS VBG PRP VBD DT TO VB IN PRP .\nA statement released by Palestinian President Mahmoud Abbas in Ramallah vowed to track down and punish those responsible , saying this was an attempt to sabotage the peace process .\tDT NN VBN IN JJ NNP NNP NNP IN NNP VBD TO VB RB CC VB DT JJ , VBG DT VBD DT NN TO VB DT NN NN .\nThe bombing shatters weeks of calm after Mr. Abbas declared a truce during a summit with Israeli Prime Minister Ariel Sharon in Egypt earlier this month .\tDT NN VBZ NNS IN NN IN NNP NNP VBD DT NN IN DT NN IN JJ NNP NNP NNP NNP IN NNP RBR DT NN .\nIndonesian officials say they have signed an initial agreement with Russia to build a space launch center on the remote island of Biak off the coast of Papua New Guinea .\tJJ NNS VBP PRP VBP VBN DT JJ NN IN NNP TO VB DT NN NN NN IN DT JJ NN IN NNP IN DT NN IN NNP NNP NNP .\nAn Indonesian foreign ministry spokesman says senior officials from both countries reached the preliminary agreement last week .\tDT JJ JJ NN NN VBZ JJ NNS IN DT NNS VBD DT JJ NN JJ NN .\nThey say the island is well-suited for the project because of its proximity to the equator , which makes it easier to launch satellites into some Earth orbits .\tPRP VBP DT NN VBZ JJ IN DT NN IN IN PRP$ NN TO DT NN , WDT VBZ PRP JJR TO VB NNS IN DT NNP NNS .\nThe spokesman says a formal agreement on the project will be signed in June when Indonesian President Susilo Bambang Yudhoyono is scheduled to visit Moscow .\tDT NN VBZ DT JJ NN IN DT NN MD VB VBN IN NNP WRB JJ NNP NNP NNP NNP VBZ VBN TO VB NNP .\nAn Algerian man goes on trial Monday in France for terrorist attacks on the Paris subway in 1995 .\tDT JJ NN VBZ IN NN NNP IN NNP IN NN NNS IN DT NNP NN IN CD .\nProsecutors say Rachid Ramda helped fund at least three bombings on the Paris metro .\tNNS VBP NNP NNP VBD VB IN JJS CD NNS IN DT NNP NN .\nIf he is convicted , Ramda could get life in prison .\tIN PRP VBZ VBN , NNP MD VB NN IN NN .\nThe 38-year-old is already serving a 10-year sentence in France after he was convicted last year on terrorism charges .\tDT JJ VBZ RB VBG DT JJ NN IN NNP IN PRP VBD VBN JJ NN IN NN NNS .\nPolice say Ramda operated from London where investigators say they found evidence that he sent money to terrorists .\tNNS VBP NNP VBD IN NNP WRB NNS VBP PRP VBD NN IN PRP VBD NN TO NNS .\nHe is accused of helping fund attacks carried out by an Algerian militant organization the Armed Islamic Group .\tPRP VBZ VBN IN VBG NN NNS VBD RP IN DT JJ JJ NN DT NNP NNP NNP .\nBritish police arrested Ramda in 1995 .\tJJ NN VBN NNP IN CD .\nHe fought extradition to France for 10 years .\tPRP VBD NN TO NNP IN CD NNS .\nIn Monday 's trial , Ramda is facing charges of being an accomplice to at least three bombings on the Paris subway , including the July 25 , 1995 attack that killed eight people and injured more than 150 .\tIN NNP POS NN , NNP VBZ VBG NNS IN VBG DT NN TO IN JJS CD NNS IN DT NNP NN , VBG DT NNP CD , CD NN WDT VBD CD NNS CC VBD JJR IN CD .\nThe United Nations says Sudanese refugees have begun returning from the Central African Republic under a new deal between the countries and the U.N. refugee agency .\tDT NNP NNP VBZ JJ NNS VBP VBN VBG IN DT NNP NNP NNP IN DT JJ NN IN DT NNS CC DT NNP NN NN .\nThe U.N. says the deal , which was signed Wednesday , will allow some 16,000 Sudanese refugees living in the CAR to voluntarily return home .\tDT NNP VBZ DT NN , WDT VBD VBN NNP , MD VB DT CD JJ NNS VBG IN DT NNP TO RB VB NN .\nIt says the first group of refugees was scheduled to fly home Thursday .\tPRP VBZ DT JJ NN IN NNS VBD VBN TO VB NN NNP .\nFive thousand refugees are expected to return to Sudan by April .\tCD CD NNS VBP VBN TO VB TO NNP IN NNP .\nThe rest will go home by the end of the year .\tDT NN MD VB NN IN DT NN IN DT NN .\nThe deal is one of several involving Sudan reached this week by the refugee agency and Sudan 's neighbors .\tDT NN VBZ CD IN JJ VBG NNP VBD DT NN IN DT NN NN CC NNP POS NNS .\nThe U.N. says the other agreements will allow for the return of 13,000 Sudanese refugees living in the Democratic Republic of Congo , and for the return of nearly 7,000 Congolese refugees currently in Sudan .\tDT NNP VBZ DT JJ NNS MD VB IN DT NN IN CD JJ NNS VBG IN DT NNP NNP IN NNP , CC IN DT NN IN RB CD JJ NNS RB IN NNP .\nPolice in Japan say a teacher stabbed to death a 12-year-old girl Saturday in the country 's third killing of a school girl in less than three weeks .\tNNS IN NNP VBP DT NN VBN TO NN DT JJ NN NNP IN DT NN POS JJ NN IN DT NN NN IN JJR IN CD NNS .\nYu Hagino , 23 , was arrested at the murder scene , a school in the western city of Uji .\tNNP NNP , CD , VBD VBN IN DT NN NN , DT NN IN DT JJ NN IN NNP .\nPolice say the suspect confessed to stabbing the girl with a knife after arguing with her .\tNNS VBP DT NN VBD TO VBG DT NN IN DT NN IN VBG IN PRP .\nThe killing follows the recent murders of two school girls in the space of just over a week .\tDT NN VBZ DT JJ NNS IN CD NN NNS IN DT NN IN RB IN DT NN .\nThe two were killed in separate incidents as they walked home alone from elementary school along deserted roads .\tDT CD VBD VBN IN JJ NNS IN PRP VBD NN RB IN JJ NN IN JJ NNS .\nRadical Islamic cleric Omar Bakri Mohammed has called on all Muslims to leave Europe .\tJJ JJ NN NNP NNP NNP VBZ VBN IN DT NNS TO VB NNP .\nIn an interview with French television to be broadcast Monday , Mr. Bakri says Muslims will one day return to Europe , and the Islamic flag will fly over Downing Street , the home of Britain 's prime minister .\tIN DT NN IN JJ NN TO VB VBN NNP , NNP NNP VBZ NNPS MD CD NN VB TO NNP , CC DT JJ NN MD VB IN NNP NNP , DT NN IN NNP POS JJ NN .\nThe interview took place in Beirut where Mr. Bakri lives after the British government stripped him of his residency in its campaign to rein in radical Islamic leaders .\tDT NN VBD NN IN NNP WRB NNP NNP VBZ IN DT JJ NN VBD PRP IN PRP$ NN IN PRP$ NN TO VB IN JJ JJ NNS .\nMr. Bakri triggered British outrage after the July 7 bombings in London when he said he would never tip off police if he knew a Muslim was about to carry out an attack .\tNNP NNP VBD JJ NN IN DT NNP CD NNS IN NNP WRB PRP VBD PRP MD RB VB IN NN IN PRP VBD DT NN VBD IN TO VB RP DT NN .\nIn the France 3 interview , Mr. Bakri says the backgrounds of the four suicide bombers in the London attacks prove the message of al-Qaida chief Osama bin Laden has reached moderate communities .\tIN DT NNP CD NN , NNP NNP VBZ DT NNS IN DT CD NN NNS IN DT NNP NNS VBP DT NN IN NNP NN NNP NNP NNP VBZ VBN JJ NNS .\nIran 's defense minister has denounced remarks by the top U.S. military commander , who said Washington has not ruled out the use of force against Iran to prevent it from making nuclear weapons .\tNNP POS NN NN VBZ VBN NNS IN DT JJ NNP JJ NN , WP VBD NNP VBZ RB VBN IN DT NN IN NN IN NNP TO VB PRP IN VBG JJ NNS .\nJoint Chiefs of Staff Chairman Mike Mullen said Sunday that the U.S. has a plan to strike Iran .\tNNP NNP IN NNP NN NNP NNP VBD NNP IN DT NNP VBZ DT NN TO VB NNP .\nBut Admiral Mullen said he hopes the military option is not needed .\tCC NNP NNP VBD PRP VBZ DT JJ NN VBZ RB VBN .\nIran 's defense minister , Brigadier General Ahmad Vahidi , said Tuesday that U.S. threats to attack his country violate the United Nations charter .\tNNP POS NN NN , NNP NNP NNP NNP , VBD NNP IN NNP NNS TO VB PRP$ NN VBP DT NNP NNP NN .\nHe warned that Tehran has drawn up defensive plans that would make its enemies regret any attack .\tPRP VBD IN NNP VBZ VBN RP JJ NNS WDT MD VB PRP$ NNS VBP DT NN .\nThe United States and other Western countries accuse Iran of secretly developing nuclear weapons under cover of a civilian energy program - a charge Iran denies .\tDT NNP NNPS CC JJ JJ NNS VBP NNP IN RB VBG JJ NNS IN NN IN DT JJ NN NN IN DT NN NNP VBZ .\nAdmiral Mullen said he hopes the combination of sanctions and diplomatic efforts will resolve the dispute .\tNNP NNP VBD PRP VBZ DT NN IN NNS CC JJ NNS MD VB DT NN .\nGeorgia 's president has announced plans for his country to get emergency natural gas supplies from Iran to help end the country 's shortage of both gas and electricity .\tNNP POS NN VBZ VBN NNS IN PRP$ NN TO VB NN JJ NN NNS IN NNP TO VB VB DT NN POS NN IN DT NN CC NN .\nPresident Mikhail Saakashvili told cabinet members Friday that gas from Iran is expected to begin flowing into Georgia beginning Sunday or , at the latest , Monday .\tNNP NNP NNP VBD NN NNS NNP IN NN IN NNP VBZ VBN TO VB VBG IN NNP VBG NNP CC , IN DT JJS , NNP .\nResidents in the former Soviet republic have been enduring freezing weather with limited supplies after explosions on pipelines delivering Russian natural gas .\tNNS IN DT JJ JJ NN VBP VBN VBG JJ NN IN JJ NNS IN NNS IN NNS VBG JJ JJ NN .\nRussian authorities deny Georgian charges that they deliberately cut supplies , and insist the pipelines were sabotaged .\tJJ NNS VBP JJ NNS IN PRP RB VBD NNS , CC VBP DT NNS VBD VBN .\nRepairs are due to be completed by Sunday .\tNNS VBP JJ TO VB VBN IN NNP .\nGeorgia is heavily dependent on Russian natural gas .\tNNP VBZ RB JJ IN JJ JJ NN .\nPresident Saakashvili says the agreement with Iran shows his country has alternative sources .\tNNP NNP VBZ DT NN IN NNP VBZ PRP$ NN VBZ JJ NNS .\nMillions of Georgians have also been without electricity because of a breakdown of a unit at a power station , as well as downed power lines .\tNNS IN NNS VBP RB VBN IN NN IN IN DT NN IN DT NN IN DT NN NN , RB RB IN JJ NN NNS .\nPeru 's former President , Alberto Fujimori , has told authorities he is trying to form a political alliance to support his bid to run in next April 's presidential election .\tNNP POS JJ NN , NNP NNP , VBZ VBN NNS PRP VBZ VBG TO VB DT JJ NN TO VB PRP$ NN TO VB IN JJ NNP POS JJ NN .\nIn a visit to the Peruvian consulate in Tokyo Wednesday , Mr. Fujimori had his signature validated on a document joining his Si Cumple party with two other political parties .\tIN DT NN TO DT JJ NN IN NNP NNP , NNP NNP VBD PRP$ NN VBD IN DT NN VBG PRP$ NNP NNP NN IN CD JJ JJ NNS .\nThe consulate said it notarized his signature , but not the contents of the document .\tDT NN VBD PRP VBD PRP$ NN , CC RB DT NNS IN DT NN .\nThe disgraced ex-president and son of Japanese parents fled to Japan in 2000 , where he was granted citizenship .\tDT JJ NN CC NN IN JJ NNS VBD TO NNP IN CD , WRB PRP VBD VBN NN .\nThe exiled president is wanted in Peru to face charges of corruption and human rights abuses related to the death squad murders of 25 people .\tDT VBN NN VBZ VBN IN NNP TO VB NNS IN NN CC JJ NNS NNS VBN IN DT NN NN NNS IN CD NNS .\nMr. Fujimori , Peru 's hard-line ruler from 1990 to 2000 , has denied the charges , calling them politically motivated .\tNNP NNP , NNP POS JJ NN IN CD IN CD , VBZ VBN DT NNS , VBG PRP RB JJ .\nTokyo has refused requests from Lima for his extradition .\tNNP VBZ VBN NNS IN NNP IN PRP$ NN .\nThe British Embassy in Sudan 's capital has re-opened to the public , four days after it was closed because of a possible terrorist threat .\tDT JJ NN IN NNP POS NN VBZ VBN TO DT NN , CD NNS IN PRP VBD VBN IN IN DT JJ JJ NN .\nThe embassy said in a statement Thursday that ' additional security ' has allowed it to resume normal consular and visa services .\tDT NN VBD IN DT NN NNP IN `` JJ NN `` VBZ VBN PRP TO VB JJ NN CC NN NNS .\nThe statement also thanked the Sudanese government for its cooperation .\tDT NN RB VBD DT JJ NN IN PRP$ NN .\nEarlier this week , the government said it had broken up a plot to attack several Western diplomatic missions in the capital , Khartoum .\tRBR DT NN , DT NN VBD PRP VBD VBN RP DT NN TO VB JJ JJ JJ NNS IN DT NN , NNP .\nThe state news agency reported that police had arrested eight Sudanese men and confiscated arms and explosives .\tDT NN NN NN VBD IN NNS VBD VBN CD JJ NNS CC VBN NNS CC NNS .\nThe British Embassy has advised British citizens to avoid travel to Khartoum .\tDT JJ NN VBZ VBN JJ NNS TO VB NN IN NNP .\nKenyan police have opened fire at hundreds of people demonstrating against cartoons depicting the Prophet Muhammad , as protests across the Muslim world showed no signs of abating .\tJJ NNS VBP VBN NN IN NNS IN NNS VBG IN NNS VBG DT NNP NNP , IN NNS IN DT NNP NN VBD DT NNS IN VBG .\nAt least one Kenyan was wounded Friday when protesters tried to march on the Danish embassy in Nairobi , shouting anti-Denmark slogans and burning Danish flags .\tIN JJS CD NN VBD VBN NNP WRB NNS VBD TO VB IN DT JJ NN IN NNP , VBG JJ NNS CC VBG JJ NNS .\nMuslims also demonstrated Friday in cities across the Middle East as well as in India , Pakistan , Afghanistan , Bangladesh , Malaysia , and Venezuela .\tNNS RB VBD NNP IN NNS IN DT NNP NNP RB RB IN IN NNP , NNP , NNP , NNP , NNP , CC NNP .\nIn France , a Muslim organization - the French Council of the Muslim Faith - said it was launching legal action against French newspapers that published the cartoons , one of which depicts the Prophet Muhammad wearing a turban shaped like a bomb .\tIN NNP , DT NNP NN IN DT JJ NN IN DT NNP NNP : VBD PRP VBD VBG JJ NN IN JJ NNS WDT VBD DT NNS , CD IN WDT VBZ DT NNP NNP VBG DT NN VBN IN DT NN .\nMalaysian Prime Minister Abdullah Ahmad Badawi told an international conference Friday the Muslim world and the West must stop demonizing each other and ' accept one another as equals . '\tJJ NNP NNP NNP NNP NNP VBD DT JJ NN NNP DT NNP NN CC DT NNP MD VB VBG DT NN CC `` VB CD DT IN NNS . ``\nThe death toll from a coal mining accident in northwestern China rose to 32 Wednesday after searchers recovered the body of the last missing miner .\tDT NN NN IN DT NN NN NN IN JJ NNP VBD TO CD NNP IN NNS VBD DT NN IN DT JJ JJ NN .\nChina 's state-run media say 39 people were working at the privately-owned coal mine in Shaanxi province on Saturday when a gas explosion occurred .\tNNP POS JJ NNS VBP CD NNS VBD VBG IN DT JJ NN NN IN NNP NN IN NNP WRB DT NN NN VBD .\nSeven miners managed to reach the surface , but the others were trapped .\tCD NNS VBD TO VB DT NN , CC DT NNS VBD VBN .\nThe Xinhua news agency says police have detained the owner and managers of the mine , but provided no other details .\tDT NNP NN NN VBZ NNS VBP VBN DT NN CC NNS IN DT NN , CC VBD DT JJ NNS .\nChinese mines are among the most dangerous in the world .\tJJ NNS VBP IN DT RBS JJ IN DT NN .\nThousands of people are killed every year in explosions , cave-ins and floods , despite government crackdowns on safety violations .\tNNS IN NNS VBP VBN DT NN IN NNS , NNS CC NNS , IN NN NNS IN NN NNS .\nIndia and Pakistan plan to hold a third round of peace talks in January with a focus on security , the Kashmir issue and confidence-building measures between the nuclear rivals .\tNNP CC NNP VBP TO VB DT JJ NN IN NN NNS IN NNP IN DT NN IN NN , DT NNP NN CC JJ NNS IN DT JJ NNS .\nThe two-day talks will begin on January 17 and they will be led by the countries ' foreign secretaries .\tDT JJ NNS MD VB IN NNP CD CC PRP MD VB VBN IN DT NNS POS JJ NNS .\nThey will review progress made so far and also chart a course for future negotiations .\tPRP MD VB NN VBN RB RB CC RB VB DT NN IN JJ NNS .\nThe talks will be under a peace process that the two sides began in January 2004 .\tDT NNS MD VB IN DT NN NN IN DT CD NNS VBD IN NNP CD .\nA foreign office spokeswoman in Islamabad also said that the two sides have been holding secret talks on possible reduction of forces in Kashmir and a Pakistani proposal of self-rule in Kashmir .\tDT JJ NN NN IN NNP RB VBD IN DT CD NNS VBP VBN VBG JJ NNS IN JJ NN IN NNS IN NNP CC DT JJ NN IN JJ IN NNP .\nShe did not give any more details and also declined to reveal at what level the talks are being held .\tPRP VBD RB VB DT JJR NNS CC RB VBD TO VB IN WDT NN DT NNS VBP VBG VBN .\nIndia has not made any comment about the talks .\tNNP VBZ RB VBN DT NN IN DT NNS .\nIraqi officials say at least two people were killed and several others wounded in a car bomb blast in central Baghdad Tuesday .\tJJ NNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBD IN DT NN NN NN IN JJ NNP NNP .\nEarlier reports said the attack was carried out by a suicide bomber .\tRBR NNS VBD DT NN VBD VBN RP IN DT NN NN .\nIt came as the U.S. military announced it had rounded up 428 suspects over the past 30 hours in a major operation against insurgents in a western suburb of the capital .\tPRP VBD IN DT NNP NN VBD PRP VBD VBN RP CD NNS IN DT JJ CD NNS IN DT JJ NN IN NNS IN DT JJ NN IN DT NN .\nOn Monday , dozens of people were killed and scores were hurt in a series of car bombings and other attacks in cities and towns across Iraq .\tIN NNP , NNS IN NNS VBD VBN CC NNS VBD VBN IN DT NN IN NN NNS CC JJ NNS IN NNS CC NNS IN NNP .\nAlso Monday , an al-Qaida-linked group claimed responsibility for gunning down a top Iraqi security official ( Wael al-Rubaei ) and his driver in Baghdad .\tRB NNP , DT JJ NN VBD NN IN VBG RP DT JJ JJ NN NN LRB NNP NNP RRB CC PRP$ NN IN NNP .\nIran 's hard-line Guardian Council has approved a bill that would block United Nations inspections of its nuclear facilities and allow it to resume uranium enrichment if it is referred to the U.N. Security Council .\tNNP POS JJ NNP NNP VBZ VBN DT NN WDT MD VB NNP NNP NNS IN PRP$ JJ NNS CC VB PRP TO VB NN NN IN PRP VBZ VBN TO DT NNP NNP NNP .\nState media report Saturday that the 12-member council approved the measure after deciding it does not contradict the constitution or Islamic law .\tNN NNS VBP NNP IN DT JJ NN VBD DT NN IN VBG PRP VBZ RB VB DT NN CC JJ NN .\nThe parliament already approved the bill last month .\tDT NN RB VBD DT NN JJ NN .\nThe final step will be President Mahmoud Ahmadinejad 's signature .\tDT JJ NN MD VB NNP NNP NNP POS NN .\nThe move could jeopardize nuclear talks with Europe that Iran said it expects will resume within weeks .\tDT NN MD VB JJ NNS IN NNP IN NNP VBD PRP VBZ MD VB IN NNS .\nThose talks collapsed in August , when Tehran restarted converting uranium - the precursor of enrichment .\tDT NNS VBD IN NNP , WRB NNP VBD VBG NN IN DT NN IN NN .\nLast year , Tehran suspended enrichment as a good faith measure to allay international concerns it is secretly pursuing nuclear weapons , a charge its government denies .\tJJ NN , NNP VBD NN IN DT JJ NN NN TO VB JJ NNS PRP VBZ RB VBG JJ NNS , DT NN PRP$ NN VBZ .\nZambian officials say reports that President Levy Mwanawasa has died are FALSE .\tJJ NNS VBP NNS IN NNP NNP NNP VBZ VBN VBP JJ .\nInformation Minister Mike Mulongoti made a televised address Thursday to say the foreign media reports are not TRUE .\tNNP NNP NNP NNP VBD DT JJ NN NNP TO VB DT JJ NNS NNS VBP RB JJ .\nHe said President Mwanawasa remains in stable condition in a Paris hospital , and is being treated for hypertension .\tPRP VBD NNP NNP VBZ IN JJ NN IN DT NNP NN , CC VBZ VBG VBN IN NN .\nMr. Mwanawasa was flown to France Tuesday after suffering a stroke Sunday while in Egypt for an African Union summit .\tNNP NNP VBD VBN IN NNP NNP IN VBG DT NN NNP IN IN NNP IN DT NNP NNP NN .\nThe summit was dominated by the political crisis in Zimbabwe , and the absence of Mr. Mwanawasa , a critic of Zimbabwean President Robert Mugabe , was said to hurt attempts to put more pressure on Harare .\tDT NN VBD VBN IN DT JJ NN IN NNP , CC DT NN IN NNP NNP , DT NN IN JJ NNP NNP NNP , VBD VBN TO VB NNS TO VB JJR NN IN NNP .\nMr. Mwanawasa is 59 years old and has served as Zambia 's president since 2002 .\tNNP NNP VBZ CD NNS JJ CC VBZ VBN IN NNP POS NN IN CD .\nHe is also the current leader of the Southern African Development Community .\tPRP VBZ RB DT JJ NN IN DT NNP NNP NNP NNP .\nHe suffered a mild stroke two years ago .\tPRP VBD DT JJ NN CD NNS RB .\nU.S. President Barack Obama has named Gene Sperling as the new head of the National Economic Council , which oversees the administration 's economic policies .\tNNP NNP NNP NNP VBZ VBN NNP NNP IN DT JJ NN IN DT NNP NNP NNP , WDT VBZ DT NN POS JJ NNS .\nSperling had the same job in President Bill Clinton 's administration .\tNNP VBD DT JJ NN IN NNP NNP NNP POS NN .\nHe succeeds Lawrence Summers , another top economic official from the Clinton-era .\tPRP VBZ NNP NNPS , DT JJ JJ NN IN DT NN .\nSperling has spent the first two years of the Obama administration as a counselor to Treasury Secretary Timothy Geithner .\tNNP VBZ VBN DT JJ CD NNS IN DT NNP NN IN DT NN TO NNP NNP NNP NNP .\nMr. Obama made the announcement Friday during a visit to a window manufacturer located outside of Washington , D.C.\tNNP NNP VBD DT NN NNP IN DT NN TO DT NN NN VBN IN IN NNP , NNP\nSperling 's appointment is the latest major staff change for the Obama administration as it begins dealing with a new Republican majority in the House of Representatives , and planning for the president 's likely re-election campaign in 2012 .\tNNP POS NN VBZ DT JJS JJ NN NN IN DT NNP NN IN PRP VBZ VBG IN DT JJ JJ NN IN DT NNP IN NNPS , CC VBG IN DT NN POS JJ NN NN IN CD .\nOn Thursday , Mr. Obama named another ex-Clinton official , William Daley , as his new chief of staff , replacing Rahm Emmanuel .\tIN NNP , NNP NNP VBD DT JJ NN , NNP NNP , IN PRP$ JJ NN IN NN , VBG NNP NNP .\nAuthorities in Bosnia-Herzegovina say they have arrested a former Bosnian Serb police officer for his suspected role in the 1995 massacre of Muslims near the eastern Bosnian town of Srebrenica .\tNNS IN NNP VBP PRP VBP VBN DT JJ JJ JJ NN NN IN PRP$ JJ NN IN DT CD NN IN NNS IN DT JJ JJ NN IN NNP .\nThe state prosecutor 's office says 37-year-old Dragan Neskovic was arrested Wednesday in the northeastern town of Bijeljina on suspicion of genocide .\tDT NN NN POS NN VBZ JJ NNP NNP VBD VBN NNP IN DT JJ NN IN NNP IN NN IN NN .\nNo further details were released .\tDT JJ NNS VBD VBN .\nMore than 8,000 Muslim men and boys were killed by Serb forces in July 1995 in what was supposed to have been a United Nations safe haven .\tJJR IN CD NNP NNS CC NNS VBD VBN IN JJ NNS IN NNP CD IN WP VBD VBN TO VB VBN DT NNP NNP JJ NN .\nThe Srebrenica killings are considered the worst European massacre since World War II .\tDT NNP NNS VBP VBN DT JJS JJ NN IN NNP NNP NNP .\nThe U.N. war crimes tribunal in The Hague has already sentenced 14 Serbs for their key roles in the killings .\tDT NNP NN NNS NN IN DT NNP VBZ RB VBN CD NNS IN PRP$ JJ NNS IN DT NNS .\nFormer Bosnian Serb leader Radovan Karadzic is currently on trial there , charged with genocide and crimes against humanity .\tJJ JJ JJ NN NNP NNP VBZ RB IN NN RB , VBN IN NN CC NNS IN NN .\nThe Bosnian war crimes court was established in 2005 to ease the workload of the Hague-based tribunal .\tDT JJ NN NNS NN VBD VBN IN CD TO VB DT NN IN DT JJ NN .\nChina 's official Xinhua news agency says archaeologists have discovered the ruins of 29 villages that date back more than 4,500 years .\tNNP POS JJ NNP NN NN VBZ NNS VBP VBN DT NNS IN CD NNS WDT VBP RB JJR IN CD NNS .\nThe report said the ancient communities were discovered in the northern part of Shaanxi province , a region known for its archaeological treasures .\tDT NN VBD DT JJ NNS VBD VBN IN DT JJ NN IN NNP NN , DT NN VBN IN PRP$ JJ NNS .\nXinhua says the ruins show that people had mastered building techniques and had constructed houses and stone walls around their community .\tNNP VBZ DT NNS VBP IN NNS VBD VBN NN NNS CC VBD VBN NNS CC NN NNS IN PRP$ NN .\nIt said a total of 96 houses were unearthed , as well as the ruins of a sacrificial altar .\tPRP VBD DT NN IN CD NNS VBD JJ , RB RB IN DT NNS IN DT JJ NN .\nThe report quoted an official with the Shaanxi Provincial Archaeological Research Institute as saying the discovery will help scientists better understand the environment during the Neolithic period , also known as the New Stone Age .\tDT NN VBD DT NN IN DT NNP NNP NNP NNP NNP IN VBG DT NN MD VB NNS RBR VB DT NN IN DT JJ NN , RB VBN IN DT NNP NNP NNP .\nA United Nations expert on extrajudicial killings says he would like to visit Thailand to investigate last month 's deaths of 87 Muslim protesters .\tDT NNP NNPS NN IN JJ NNS VBZ PRP MD VB TO VB NNP TO VB JJ NN POS NNS IN CD NNP NNS .\nPhilip Alston said he is deeply concerned by the October 25 incident .\tNNP NNP VBD PRP VBZ RB VBN IN DT NNP CD NN .\nHe said a visit to Thailand would allow him to speak with those involved and to recommend ways to bring peace and stability to the region .\tPRP VBD DT NN TO NNP MD VB PRP TO VB IN DT VBN CC TO VB NNS TO VB NN CC NN TO DT NN .\nThailand has not responded to Mr. Alston 's request .\tNNP VBZ RB VBN TO NNP NNP POS NN .\nMeanwhile , Thailand 's revered King Bhumibol Adulyadej warned that the country could fall into ruin if the violence in the south does not end .\tRB , NNP POS JJ NNP NNP NNP VBD IN DT NN MD VB IN NN IN DT NN IN DT NN VBZ RB VB .\nHe urged security forces to better cooperate to deal with the region 's turmoil .\tPRP VBD NN NNS TO RB VB TO VB IN DT NN POS NN .\nHundreds of people have been killed since January when an insurgency flared up in Thailand 's three Muslim-majority southern provinces .\tNNS IN NNS VBP VBN VBN IN NNP WRB DT NN VBD RP IN NNP POS CD JJ JJ NNS .\nIsraeli soldiers have killed two Palestinians in the southern Gaza Strip .\tJJ NNS VBP VBN CD NNS IN DT JJ NNP NNP .\nWitnesses say the two men were killed early Friday near the security barrier separating southern Gaza with Israel .\tNNS VBP DT CD NNS VBD VBN RB NNP IN DT NN NN VBG JJ NNP IN NNP .\nIsraeli military officials say troops had spotted the men attempting to plant bombs along the barrier .\tJJ JJ NNS VBP NNS VBD VBN DT NNS VBG TO VB NNS IN DT NN .\nThe killings were the latest in a series of clashes between the Israeli army and Palestinian militants .\tDT NNS VBD DT JJS IN DT NN IN NNS IN DT JJ NN CC JJ NNS .\nIsraeli soldiers killed five Palestinians Thursday during an army operation in the West Bank city of Nablus .\tJJ NNS VBD CD NNS NNP IN DT NN NN IN DT NNP NNP NN IN NNP .\nOfficials say three of the dead were wanted militants from the al-Aqsa Martyrs ' Brigades , a violent offshoot of the mainstream Fatah Party .\tNNS VBP CD IN DT NN VBD VBN NNS IN DT NNP NNP POS NNP , DT JJ NN IN DT NN NNP NNP .\nPalestinian President Mahmoud Abbas and incoming Hamas Prime Minister Ismail Haniyeh Friday denounced the Israeli military 's sweep through the Nablus refugee camps .\tJJ NNP NNP NNP CC JJ NNP NNP NNP NNP NNP NNP VBD DT JJ NN POS NN IN DT NNP NN NNS .\nThe head of U.S. troops in the Horn of Africa says terrorists and insurgents may begin leaving war zones in Afghanistan and Iraq and head for east Africa .\tDT NN IN NNP NNS IN DT NNP IN NNP VBZ NNS CC NNS MD VB VBG NN NNS IN NNP CC NNP CC VB IN JJ NNP .\nMajor General Timothy Ghormley says officials are concerned that instability and weak governments in east Africa could draw international terrorist groups seeking to establish a base of operations .\tNNP NNP NNP NNP VBZ NNS VBP VBN IN NN CC JJ NNS IN JJ NNP MD VB JJ JJ NNS VBG TO VB DT NN IN NNS .\nGeneral Ghormley says the joint task force in Djibouti has been helping to train foreign soldiers and build anti-terrorist capabilities of governments in the region .\tNNP NNP VBZ DT JJ NN NN IN NNP VBZ VBN VBG TO VB JJ NNS CC VB JJ NNS IN NNS IN DT NN .\nHowever , U.S. forces have yet to enter Somalia , which has been without a functioning central government for more than 10 years .\tRB , NNP NNS VBP RB TO VB NNP , WDT VBZ VBN IN DT VBG JJ NN IN JJR IN CD NNS .\nEarlier this year , Ethiopian Prime Minister Meles Zenawi warned an al-Qaida cell is already operating out of Somalia 's capital , Mogadishu .\tRBR DT NN , JJ NNP NNP NNP NNP VBD DT NNP NN VBZ RB VBG IN IN NNP POS NN , NNP .\nUgandan Lord 's Resistance Army rebels are seeking a 12-month suspension in the arrest warrants against their leaders issued by the International Criminal Court .\tJJ NNP POS NNP NNP NNS VBP VBG DT JJ NN IN DT NN NNS IN PRP$ NNS VBN IN DT NNP NNP NNP .\nJames Obita , the technical advisor to the rebels ' negotiating team , tells VOA the rebels will ask for the suspension when peace talks with the Ugandan government resume Thursday in Juba , southern Sudan .\tNNP NNP , DT JJ NN TO DT NNS POS VBG NN , VBZ NNP DT NNS MD VB IN DT NN WRB NN NNS IN DT JJ NN VBP NNP IN NNP , JJ NNP .\nHe says in connection with that request , the rebels will propose an ' alternative justice system ' to deal with war crimes committed during the rebels ' 20-year uprising in northern Uganda .\tPRP VBZ IN NN IN DT NN , DT NNS MD VB DT `` JJ NN NN `` TO VB IN NN NNS VBN IN DT NNS POS JJ NN IN JJ NNP .\nLRA fighters are accused of killing and mutilating thousands of civilians during the conflict .\tNNP NNS VBP VBN IN VBG CC VBG NNS IN NNS IN DT NN .\nThe International Criminal Court has indicted five top rebel leaders on war crimes charges .\tDT NNP NNP NNP VBZ VBN CD JJ NN NNS IN NN NNS NNS .\nThe LRA has demanded those charges be dropped as a condition for signing any peace deal .\tDT NNP VBZ VBN DT NNS VB VBN IN DT NN IN VBG DT NN NN .\nThe 10-month-old peace talks have achieved some progress , including a ceasefire that the sides extended in April .\tDT JJ NN NNS VBP VBN DT NN , VBG DT NN IN DT NNS VBN IN NNP .\nA group linked to al-Qaida in Iraq is denying Iraqi government reports that its leader was recently arrested .\tDT NN VBN TO NNP IN NNP VBZ VBG JJ NN NNS IN PRP$ NN VBD RB VBN .\nThe Islamic State of Iraq says the man it claims is its leader , Abu Omar al-Baghdadi , is fine .\tDT NNP NNP IN NNP VBZ DT NN PRP VBZ VBZ PRP$ NN , NNP NNP NNP , VBZ JJ .\nThe group says on an Islamist Web site it does not know the person who Iraqi authorities arrested last month and presented as al-Baghdadi .\tDT NN VBZ IN DT JJ NN NN PRP VBZ RB VB DT NN WP JJ NNS VBD JJ NN CC VBN IN NNP .\nThe Iraqi army said it captured the Sunni insurgent leader in the Iraqi capital , Baghdad .\tDT JJ NN VBD PRP VBD DT NNP JJ NN IN DT JJ NN , NNP .\nThe United States did not confirm the report .\tDT NNP NNPS VBD RB VB DT NN .\nIraqi authorities in the past have announced the arrest or killing of major insurgent leaders , to only later say the reports were FALSE .\tJJ NNS IN DT NN VBP VBN DT NN CC NN IN JJ JJ NNS , TO RB RB VBP DT NNS VBD JJ .\nIn addition , U.S. military commander General Kevin Bergner previously had said al-Baghdadi may not be a real person , but rather a fictional character created to put an Iraqi face on the otherwise foreign leadership of al-Qaida in Iraq .\tIN NN , NNP JJ NN NNP NNP NNP RB VBD VBN NNP MD RB VB DT JJ NN , CC RB DT JJ NN VBN TO VB DT JJ NN IN DT RB JJ NN IN NNP IN NNP .\nU.S. military officials have announced changes to military trials of terrorism suspects being held at the U.S. naval base in Guantanamo Bay , Cuba .\tNNP JJ NNS VBP VBN NNS TO JJ NNS IN NN NNS VBG VBN IN DT NNP JJ NN IN NNP NNP , NNP .\nAir Force Brigadier General Thomas Hemingway said Wednesday the so-called ' improvements ' will bring the process closer to the American judge-and-jury system .\tNNP NNP NNP NNP NNP NNP VBD NNP DT JJ `` NNS `` MD VB DT NN RBR TO DT JJ NN NN .\nHe said the presiding officer at the trial will function more like a judge than under the previous system , and other officers will act like a jury .\tPRP VBD DT VBG NN IN DT NN MD VB RBR IN DT NN IN IN DT JJ NN , CC JJ NNS MD VB IN DT NN .\nSome human rights groups rejected the changes for not going far enough , noting there is still no option for appeal to an independent court .\tDT JJ NNS NNS VBD DT NNS IN RB VBG RB RB , VBG EX VBZ RB DT NN IN NN TO DT JJ NN .\nU.S. military officials have filed charges against four detainees at Guantanamo , where more than 500 terror suspects are being held .\tNNP JJ NNS VBP VBN NNS IN CD NNS IN NNP , WRB JJR IN CD NN NNS VBP VBG VBN .\nMeantime Center for Constitutional Rights said some prisoners have launched a hunger strike to protest their conditions .\tRB NNP IN NNP NNP VBD DT NNS VBP VBN DT NN NN TO VB PRP$ NNS .\nA landmine blast in southern Afghanistan has killed nine Afghan soldiers .\tDT NN NN IN JJ NNP VBZ VBN CD JJ NNS .\nThe Taleban later claimed responsibility for the blast in Kandahar province .\tDT NNP RB VBD NN IN DT NN IN NNP NN .\nAn Afghan Army spokesman said the troops were traveling towards the nearby Pakistani border when their vehicle hit the mine .\tDT JJ NNP NN VBD DT NNS VBD VBG IN DT JJ JJ NN WRB PRP$ NN VBD DT NN .\nU.S.-led forces are hunting down remnants of Afghanistan 's ousted Taleban regime who frequently carry out hit and run attacks on coalition and Afghan government forces , mainly in the country 's eastern and southern regions .\tJJ NNS VBP VBG RP NNS IN NNP POS JJ NNP NN WP RB VBP RP NN CC VB NNS IN NN CC JJ NN NNS , RB IN DT NN POS JJ CC JJ NNS .\nFour key Palestinian militant groups say they are ending a truce aimed at easing attacks on Israel .\tCD JJ JJ JJ NNS VBP PRP VBP VBG DT NN VBN IN VBG NNS IN NNP .\nIn separate statements issued Sunday , Hamas and the Popular Resistance Committees said they were no longer bound by the truce deal brokered last March by Palestinian Authority President Mahmoud Abbas .\tIN JJ NNS VBN NNP , NNP CC DT NNP NNP NNS VBD PRP VBD RB RB VBN IN DT NN NN VBN JJ NNP IN NNP NNP NNP NNP NNP .\nThe al-Aqsa Martyrs Brigades and Islamic Jihad also scrapped the deal , and said they had fired rockets early today into southern Israel .\tDT NNP NNP NNP CC NNP NNP RB VBD DT NN , CC VBD PRP VBD VBN NNS RB NN IN JJ NNP .\nIn a separate development , gunmen in the Gaza Strip stormed a club for United Nations workers and blew up a hall where alcohol was served .\tIN DT JJ NN , NNS IN DT NNP NNP VBD DT NN IN NNP NNPS NNS CC VBD RP DT NN WRB NN VBD VBN .\nThere were no reports of injuries and no claim of responsibility .\tEX VBD DT NNS IN NNS CC DT NN IN NN .\nA short while later , gunmen in Gaza kidnapped an Italian activist near Khan Younis , but later released him .\tDT JJ NN RB , NNS IN NNP VBD DT JJ NN IN NNP NNP , CC RB VBD PRP .\nCoalition troops in Iraq have captured a suspected al-Qaida terrorist during a raid on the home of a senior Sunni Arab politician , Adnan al-Dulaymi .\tNN NNS IN NNP VBP VBN DT JJ NNP NN IN DT NN IN DT NN IN DT JJ NNP NNP NN , NNP NNP .\nU.S. officials say they believe the man was involved in planning car bomb attacks on Baghdad 's Green Zone , which houses government , diplomatic and military offices .\tNNP NNS VBP PRP VBP DT NN VBD VBN IN VBG NN NN NNS IN NNP POS NNP NNP , WDT VBZ NN , JJ CC JJ NNS .\nThe man is identified as a bodyguard at Mr. Dulaymi 's home in the Iraqi capital .\tDT NN VBZ VBN IN DT NN IN NNP NNP POS NN IN DT JJ NN .\nOfficials say the raid does not imply the politician himself is involved in illegal activity .\tNNS VBP DT NN VBZ RB VB DT NN PRP VBZ VBN IN JJ NN .\nOn Friday , Iraqi authorities imposed a curfew in Baghdad , because of fears of new violence .\tIN NNP , JJ NNS VBD DT NN IN NNP , IN IN NNS IN JJ NN .\nThe ban on pedestrians and vehicles was expected to remain in effect until Sunday .\tDT NN IN NNS CC NNS VBD VBN TO VB IN NN IN NNP .\nIn the northern city of Tal Afar , a car bomb exploded Saturday , killing two people and wounding 30 others .\tIN DT JJ NN IN NNP NNP , DT NN NN VBD NNP , VBG CD NNS CC VBG CD NNS .\nThe U.S. military says the Iraqi army has captured three suspected al-Qaida in Iraq leaders involved in roadside bomb attacks .\tDT NNP NN VBZ DT JJ NN VBZ VBN CD JJ NNP IN NNP NNS VBN IN NN NN NNS .\nStatements Wednesday say the suspects were detained in separate operations north of Baghdad in Kirkuk province , and in the towns of Tarmiyah and Judaidah .\tNNS NNP VBP DT NNS VBD VBN IN JJ NNS NN IN NNP IN NNP NN , CC IN DT NNS IN NNP CC NNP .\nThe military says U.S. Special Forces advised the Iraqi army in all three operations .\tDT NN VBZ NNP NNP NNP VBD DT JJ NN IN DT CD NNS .\nThe U.S. military also says Iraqi special operations forces detained seven suspected criminals in and around Baghdad 's Sadr City district , a stronghold of radical Shi'ite cleric Moqtada al-Sadr .\tDT NNP NN RB VBZ JJ JJ NNS NNS VBD CD JJ NNS IN CC IN NNP POS NNP NNP NN , DT NN IN JJ NNP NN NNP NNP .\nU.S. and Iraqi soldiers have been fighting Shi'ite militants in Sadr City in recent weeks as part of a crackdown on illegal militias .\tNNP CC JJ NNS VBP VBN VBG NNP NNS IN NNP NNP IN JJ NNS IN NN IN DT NN IN JJ NNS .\nThe United Nations reports a halt to international aid work in the displaced persons ' camps of Zalinge , in Sudan 's Darfur region .\tDT NNP NNPS VBZ DT NN TO JJ NN NN IN DT JJ NNS POS NNS IN NNP , IN NNP POS NNP NN .\nThe U.N. refugee agency says international groups suspended their activities in the camps after a mob killed three water workers on Thursday .\tDT NNP NN NN VBZ JJ NNS VBD PRP$ NNS IN DT NNS IN DT NN VBN CD NN NNS IN NNP .\nIt was unclear what caused the violence .\tPRP VBD JJ WP VBD DT NN .\nFriday , spokesman Ron Redmond said agency is ' extremely concerned ' about what he called the continued deterioration in Darfur 's security situation .\tNNP , NN NNP NNP VBD NN VBZ `` RB JJ `` IN WP PRP VBD DT JJ NN IN NNP POS NN NN .\nRedmond listed a number of attacks on relief groups over the past week , including one where an aid worker was shot dead in North Darfur .\tNNP VBD DT NN IN NNS IN NN NNS IN DT JJ NN , VBG CD WRB DT NN NN VBD VBN JJ IN NNP NNP .\nWorld leaders have been pressing Sudan to accept a U.N. peacekeeping force in Darfur .\tNN NNS VBP VBN VBG NNP TO VB DT NNP NN NN IN NNP .\nThe government is still rejecting any U.N. deployment to the region , where more than three years of violence has killed nearly 2,00,000 people , and displaced some two million others .\tDT NN VBZ RB VBG DT NNP NN TO DT NN , WRB JJR IN CD NNS IN NN VBZ VBN RB CD NNS , CC VBD DT CD CD NNS .\nIraq 's parliament has approved six new government ministers , including four from the country 's Sunni minority which held power under Saddam Hussein .\tNNP POS NN VBZ VBN CD JJ NN NNS , VBG CD IN DT NN POS NNP NN WDT VBD NN IN NNP NNP .\nHowever , the Sunni Human Rights appointee Hashem Ashibli quickly turned down the post , leaving a single vacancy in the 33-member cabinet .\tRB , DT NNP NNP NNP NN NNP NNP RB VBD RP DT NN , VBG DT JJ NN IN DT JJ NN .\nHe said he could not accept a position awarded on a sectarian basis .\tPRP VBD PRP MD RB VB DT NN VBN IN DT JJ NN .\nA Sunni Arab , Saadoun al-Dulaimi , has been approved as defense minister , and a Shi'ite ( Ibrahim Bahr al-Uloum ) will head the all-important oil ministry .\tDT NNP NN , NNP NNP , VBZ VBN VBN IN NN NN , CC DT NN LRB NNP NNP NNP RRB MD VB DT JJ NN NN .\nTop slots in the ministries of industry and electricity were also filled , along with a third deputy prime minister position .\tJJ NNS IN DT NNS IN NN CC NN VBD RB VBN , IN IN DT JJ NN JJ NN NN .\nMeanwhile , Iraqi police say gunmen assassinated a senior member of the Transportation Ministry Zoba Yass and his driver today in Baghdad .\tRB , JJ NNS VBP NNS VBD DT JJ NN IN DT NNP NNP NNP NNP CC PRP$ NN NN IN NNP .\nSeparately , U.S. officials say coalition forces killed six insurgents and captured 54 suspects early Sunday near the western border town of al-Qaim .\tRB , NNP NNS VBP NN NNS VBD CD NNS CC VBD CD NNS JJ NNP IN DT JJ NN NN IN NNP .\nThe U.S. government is delivering more bad news on the country 's struggling economy , saying first time claims for unemployment benefits are at a 26-year high .\tDT NNP NN VBZ VBG RBR JJ NN IN DT NN POS VBG NN , VBG JJ NN NNS IN NN NNS VBP IN DT JJ NN .\nThe Labor Department report , issued Thursday , said the number of laid-off workers applying for benefits for the first time soared to 6,26,000 last week .\tDT NNP NNP NN , VBN NNP , VBD DT NN IN JJ NNS VBG IN NNS IN DT JJ NN VBD TO CD JJ NN .\nOfficials said the total number of workers receiving unemployment benefits is now close to 4.8 million , another record .\tNNS VBD DT JJ NN IN NNS VBG NN NNS VBZ RB JJ TO CD CD , DT NN .\nA comprehensive government report on unemployment is due out Friday .\tDT JJ NN NN IN NN VBZ JJ IN NNP .\nEconomists surveyed by news organizations predict the nationwide jobless rate will rise three-tenths of a percent to hit 7.5 percent .\tNNS VBN IN NN NNS VBP DT JJ NN NN MD VB NNS IN DT NN TO VB CD NN .\nDespite the rising claims for unemployment insurance , U.S. companies are squeezing more productivity out of their shrinking workforces .\tIN DT VBG NNS IN NN NN , NNP NNS VBP VBG JJR NN IN IN PRP$ NN NNS .\nA second Labor Department report Thursday said productivity - a measure of how much an employee produces per hour - rose more than three percent for the last three months of 2008 .\tDT JJ NNP NNP NN NNP VBD NN IN DT NN IN WRB RB DT NN VBZ IN NN : VBD JJR IN CD NN IN DT JJ CD NNS IN CD .\nAt least 17 people , including seven children , were killed and more than 70 others wounded in an explosion Monday at a home used for religious education in Pakistan 's Punjab province .\tIN JJS CD NNS , VBG CD NNS , VBD VBN CC JJR IN CD NNS VBN IN DT NN NNP IN DT NN VBN IN JJ NN IN NNP POS NNP NN .\nOfficials in the Mian Channu area said they believe the blast , which also flattened more than 20 nearby houses , was caused by a cache of explosives stored in the house .\tNNS IN DT NNP NNP NN VBD PRP VBP DT NN , WDT RB VBD JJR IN CD JJ NNS , VBD VBN IN DT NN IN NNS VBN IN DT NN .\nThey said the rescuers were trying to recover people still trapped in the rubble .\tPRP VBD DT NNS VBD VBG TO VB NNS RB VBN IN DT NN .\nThe house belongs to a Muslim cleric who has been accused of recruiting fighters for a banned militant group .\tDT NN VBZ TO DT NNP NN WP VBZ VBN VBN IN VBG NNS IN DT VBN JJ NN .\nIt is unclear what triggered the blast , but local police searching through the debris say they found rocket launchers , grenades , and several suicide-bomber jackets .\tPRP VBZ JJ WP VBD DT NN , CC JJ NN VBG IN DT NN VBP PRP VBD NN NNS , NNS , CC JJ NN NNS .\nPakistani Prime Minister Yusuf Raza Gilani condemned the blast and ordered an inquiry into the incident .\tJJ NNP NNP NNP NNP NNP VBD DT NN CC VBD DT NN IN DT NN .\nA U.S. immigration judge has denied bail for Luis Posada Carriles , an asylum-seeking former CIA operative from Cuba .\tDT NNP NN NN VBZ VBN NN IN NNP NNP NNP , DT JJ JJ NNP NN IN NNP .\nU.S. authorities arrested the 77-year-old Posada Carriles in May after he illegally entered the country through Mexico .\tNNP NNS VBN DT JJ NNP NNP IN NNP IN PRP RB VBD DT NN IN NNP .\nPosada Carriles is wanted in Venezuela for his alleged role in a 1976 Cuban airliner bombing that killed 73 people .\tNNP NNP VBZ VBN IN NNP IN PRP$ JJ NN IN DT CD JJ NN NN WDT VBD CD NNS .\nSome 20 years ago , a Venezuelan court acquitted him of a role in the bombing .\tDT CD NNS RB , DT JJ NN VBN PRP IN DT NN IN DT NN .\nHe later escaped from prison while awaiting a new trial .\tPRP RB VBD IN NN IN VBG DT JJ NN .\nIn May , U.S. officials rejected a Venezuelan request for his arrest , citing a lack of evidence against the Cuban exile who holds Venezuelan citizenship .\tIN NNP , NNP NNS VBD DT JJ NN IN PRP$ NN , VBG DT NN IN NN IN DT JJ NN WP VBZ JJ NN .\nPakistani President Pervez Musharraf has sought the support of Pakistanis in the fight against religious extremism and terrorism .\tJJ NNP NNP NNP VBZ VBN DT NN IN NNS IN DT NN IN JJ NN CC NN .\nHe underlined the need of ridding the society of extremism and terrorism , saying they are hurting Pakistan 's image by their actions .\tPRP VBD DT NN IN VBG DT NN IN NN CC NN , VBG PRP VBP VBG NNP POS NN IN PRP$ NNS .\nIn a broadcast address to the nation Thursday , General Musharraf promised ' stern action ' against those involved in the printing , publication and distribution of hate material , including newspapers , magazines , pamphlets , and audio and video material .\tIN DT NN NN TO DT NN NNP , NNP NNP VBD `` JJ NN `` IN DT VBN IN DT NN , NN CC NN IN NN NN , VBG NNS , NNS , NNS , CC NN CC NN NN .\nHe said no outlawed organization will be allowed to collect donations and action will be taken against those who preach hate in mosques .\tPRP VBD DT JJ NN MD VB VBN TO VB NNS CC NN MD VB VBN IN DT WP VBP NN IN NNS .\nSome Western leaders have said Pakistan should do more to curb militancy , and that extremists were operating in Islamic schools , or madrassas .\tDT JJ NNS VBP VBN NNP MD VB JJR TO VB NN , CC IN NNS VBD VBG IN JJ NNS , CC NNS .\nGeneral Musharraf said all madrassas in Pakistan must be registered with the government by the end of this year .\tNNP NNP VBD DT NNS IN NNP MD VB VBN IN DT NN IN DT NN IN DT NN .\nU.S. health officials have called for updated quarantine procedures , including better access to airline and ship passenger lists , to protect Americans from infectious diseases , including bird flu .\tNNP NN NNS VBP VBN IN VBN NN NNS , VBG JJR NN TO NN CC NN NN NNS , TO VB NNS IN JJ NNS , VBG NN NN .\nThe changes , proposed by the U.S. Centers for Disease Control , would apply to planes and ships arriving from outside the United States as well as some domestic flights .\tDT NNS , VBN IN DT NNP NNPS IN NNP NNP , MD VB TO NNS CC NNS VBG IN IN DT NNP NNPS RB RB IN DT JJ NNS .\nThe CDC also called for giving U.S. health officials more authority to administer medical treatment and vaccinations to quarantined people .\tDT NNP RB VBD IN VBG NNP NN NNS RBR NN TO VB JJ NN CC NNS TO JJ NNS .\nHealth officials say the need for new regulations became apparent during the 2003 SARS , Severe Acute Respiratory Syndrome outbreak , when authorities found it difficult to get in touch with airline passengers who may have been exposed to the illness .\tNN NNS VBP DT NN IN JJ NNS VBD JJ IN DT CD NNP , NNP NNP NNP NNP NN , WRB NNS VBD PRP JJ TO VB IN NN IN NN NNS WP MD VB VBN VBN TO DT NN .\nThe proposals come amid growing concern about the spread of bird flu , which has killed more than 60 people in Asia since 2003 .\tDT NNS VBP IN VBG NN IN DT NN IN NN NN , WDT VBZ VBN JJR IN CD NNS IN NNP IN CD .\nPakistani police have arrested four alleged members of an Islamic militant group in connection with the murder of a prominent Shi'ite Muslim cleric earlier this year .\tJJ NNS VBP VBN CD JJ NNS IN DT JJ JJ NN IN NN IN DT NN IN DT JJ NNP NNP NN RBR DT NN .\nA senior police official , Saud Aziz , says the four wanted in connection with the slaying of Agha Ziauddin in the town of Gilgit in January were picked up in the city of Rawalpindi .\tDT JJ NN NN , NNP NNP , VBZ DT CD VBN IN NN IN DT NN IN NNP NNP IN DT NN IN NNP IN NNP VBD VBN RP IN DT NN IN NNP .\nThe murder sparked sectarian violence that left at least 14 people dead .\tDT NN VBD JJ NN WDT VBD IN JJS CD NNS JJ .\nThe official says the suspects belong to the Sunni Muslim Lashkar-e-Jhangvi and that they were plotting to attack Shi'ite events last week but changed their minds because of tight security .\tDT NN VBZ DT NNS VBP TO DT NNP NNP NNP CC IN PRP VBD VBG TO VB NNP NNS JJ NN CC VBD PRP$ NNS IN IN JJ NN .\nThe banned group is accused of killing hundreds of Pakistani Shi'ite Muslims in recent years and is believed to have links to the al-Qaida terrorist network .\tDT VBN NN VBZ VBN IN VBG NNS IN JJ NNP NNPS IN JJ NNS CC VBZ VBN TO VB NNS TO DT NNP NN NN .\nThe name ' Latvia ' originates from the ancient Latgalians , one of four eastern Baltic tribes that formed the ethnic core of the Latvian people ( ca. 8th - 12th centuries A.D. ) .\tDT NN `` NNP `` VBZ IN DT JJ NNS , CD IN CD JJ NNP NNS WDT VBD DT JJ NN IN DT JJ NNS LRB NN CD : JJ NNS NNP RRB .\nThe region subsequently came under the control of Germans , Poles , Swedes , and finally , Russians .\tDT NN RB VBD IN DT NN IN NNS , NNS , NNS , CC RB , NNS .\nA Latvian republic emerged following World War I , but it was annexed by the USSR in 1940 - an action never recognized by the US and many other countries .\tDT JJ NN VBD VBG NNP NNP NNP , CC PRP VBD VBN IN DT NNP IN CD IN DT NN RB VBN IN DT NNP CC JJ JJ NNS .\nLatvia reestablished its independence in 1991 following the breakup of the Soviet Union .\tNNP VBD PRP$ NN IN CD VBG DT NN IN DT NNP NNP .\nAlthough the last Russian troops left in 1994 , the status of the Russian minority ( some 30 % of the population ) remains of concern to Moscow .\tIN DT JJ JJ NNS VBD IN CD , DT NN IN DT JJ NN LRB DT CD NN IN DT NN RRB VBZ IN NN TO NNP .\nLatvia joined both NATO and the EU in the spring of 2004 .\tNNP VBD DT NNP CC DT NNP IN DT NN IN CD .\nBolivia is one of the poorest and least developed countries in Latin America .\tNNP VBZ CD IN DT JJS CC JJS JJ NNS IN NNP NNP .\nFollowing a disastrous economic crisis during the early 1980s , reforms spurred private investment , stimulated economic growth , and cut poverty rates in the 1990s .\tVBG DT JJ JJ NN IN DT JJ NNS , NNS VBD JJ NN , VBD JJ NN , CC VBD NN NNS IN DT NNS .\nThe period 2003 - 5 was characterized by political instability , racial tensions , and violent protests against plans - subsequently abandoned - to export Bolivia 's newly discovered natural gas reserves to large northern hemisphere markets .\tDT NN CD : CD VBD VBN IN JJ NN , JJ NNS , CC JJ NNS IN NNS IN RB VBN : TO VB NNP POS RB VBN JJ NN NNS TO JJ JJ NN NNS .\nIn 2005 , the government passed a controversial hydrocarbons law that imposed significantly higher royalties and required foreign firms then operating under risk-sharing contracts to surrender all production to the state energy company in exchange for a predetermined service fee .\tIN CD , DT NN VBD DT JJ NNS NN WDT VBD RB JJR NNS CC VBD JJ NNS RB VBG IN JJ NNS TO VB DT NN TO DT NN NN NN IN NN IN DT JJ NN NN .\nAfter higher prices for mining and hydrocarbons exports produced a fiscal surplus in 2008 , the global recession in 2009 slowed growth .\tIN JJR NNS IN NN CC NNS NNS VBD DT JJ NN IN CD , DT JJ NN IN CD VBD NN .\nNevertheless , Bolivia recorded the highest growth rate in South America that year .\tRB , NNP VBD DT JJS NN NN IN NNP NNP DT NN .\nDuring 2010 an increase in world commodity prices resulted in the biggest trade surplus in history .\tIN CD DT NN IN NN NN NNS VBD IN DT JJS NN NN IN NN .\nHowever , a lack of foreign investment in the key sectors of mining and hydrocarbons and higher food prices pose challenges for the Bolivian economy .\tRB , DT NN IN JJ NN IN DT JJ NNS IN NN CC NNS CC JJR NN NNS VBP NNS IN DT JJ NN .\nAutonomy for the Swazis of southern Africa was guaranteed by the British in the late 19th century ; independence was granted in 1968 .\tNN IN DT NNS IN JJ NNP VBD VBN IN DT NNS IN DT JJ JJ NN ; NN VBD VBN IN CD .\nStudent and labor unrest during the 1990s pressured King MSWATI III , the world 's last absolute monarch , to grudgingly allow political reform and greater democracy , although he has backslid on these promises in recent years .\tNN CC NN NN IN DT NNS VBD NNP NNP NNP , DT NN POS JJ JJ NN , TO RB VB JJ NN CC JJR NN , IN PRP VBZ VBN IN DT NNS IN JJ NNS .\nA constitution came into effect in 2006 , but the legal status of political parties remains unclear .\tDT NN VBD IN NN IN CD , CC DT JJ NN IN JJ NNS VBZ JJ .\nThe African United Democratic Party tried unsuccessfully to register as an official political party in mid 2006 .\tDT JJ NNP NNP NNP VBD RB TO VB IN DT JJ JJ NN IN JJ CD .\nTalks over the constitution broke down between the government and progressive groups in 2007 .\tNNS IN DT NN VBD RP IN DT NN CC JJ NNS IN CD .\nSwaziland recently surpassed Botswana as the country with the world 's highest known HIV / AIDS prevalence rate .\tNNP RB VBD NNP IN DT NN IN DT NN POS JJS VBN NNP CC NNP NN NN .\nFirst colonized by the Spanish , the islands came under British control in the early 19th century .\tRB VBN IN DT NNS , DT NNS VBD IN JJ NN IN DT JJ JJ NN .\nThe islands ' sugar industry was hurt by the emancipation of the slaves in 1834 .\tDT NNS POS NN NN VBD VBN IN DT NN IN DT NNS IN CD .\nManpower was replaced with the importation of contract laborers from India between 1845 and 1917 , which boosted sugar production as well as the cocoa industry .\tNN VBD VBN IN DT NN IN NN NNS IN NNP IN CD CC CD , WDT VBD NN NN RB RB IN DT NN NN .\nThe discovery of oil on Trinidad in 1910 added another important export .\tDT NN IN NN IN NNP IN CD VBD DT JJ NN .\nIndependence was attained in 1962 .\tNN VBD VBN IN CD .\nThe country is one of the most prosperous in the Caribbean thanks largely to petroleum and natural gas production and processing .\tDT NN VBZ CD IN DT RBS JJ IN DT NNP NNS RB TO NN CC JJ NN NN CC NN .\nTourism , mostly in Tobago , is targeted for expansion and is growing .\tNN , RB IN NNP , VBZ VBN IN NN CC VBZ VBG .\nThe government is coping with a rise in violent crime .\tDT NN VBZ VBG IN DT NN IN JJ NN .\nA GOATHERD , driving his flock from their pasture at eventide , found some Wild Goats mingled among them , and shut them up together with his own for the night .\tDT NN , VBG PRP$ NN IN PRP$ NN IN NN , VBD DT JJ NNS VBN IN PRP , CC VBD PRP RP RB IN PRP$ NN IN DT NN .\nThe next day it snowed very hard , so that he could not take the herd to their usual feeding places , but was obliged to keep them in the fold .\tDT JJ NN PRP VBD RB JJ , RB IN PRP MD RB VB DT NN TO PRP$ JJ NN NNS , CC VBD VBN TO VB PRP IN DT NN .\nHe gave his own goats just sufficient food to keep them alive , but fed the strangers more abundantly in the hope of enticing them to stay with him and of making them his own .\tPRP VBD PRP$ JJ NNS RB JJ NN TO VB PRP JJ , CC VBD DT NNS RBR RB IN DT NN IN VBG PRP TO VB IN PRP CC IN VBG PRP PRP$ NN .\nWhen the thaw set in , he led them all out to feed , and the Wild Goats scampered away as fast as they could to the mountains .\tWRB DT NN VBD IN , PRP VBD PRP DT RP TO VB , CC DT JJ NNS VBD RB RB JJ IN PRP MD TO DT NNS .\nThe Goatherd scolded them for their ingratitude in leaving him , when during the storm he had taken more care of them than of his own herd .\tDT NN VBD PRP IN PRP$ NN IN VBG PRP , WRB IN DT NN PRP VBD VBN RBR NN IN PRP IN IN PRP$ JJ NN .\nOne of them , turning about , said to him : ' That is the very reason why we are so cautious ; for if you yesterday treated us better than the Goats you have had so long , it is plain also that if others came after us , you would in the same manner prefer them to ourselves . '\tCD IN PRP , VBG RB , VBD TO PRP : `` DT VBZ DT JJ NN WRB PRP VBP RB JJ ; IN IN PRP NN VBD PRP JJR IN DT NNS PRP VBP VBN RB RB , PRP VBZ JJ RB IN IN NNS VBD IN PRP , PRP MD IN DT JJ NN VB PRP TO PRP . ``\nOld friends can not with impunity be sacrificed for new ones .\tJJ NNS MD RB IN NN VB VBN IN JJ NNS .\nA KIND-HEARTED Physician sitting at the bedside of a patient afflicted with an incurable and painful disease , heard a noise behind him , and turning saw a cat laughing at the feeble efforts of a wounded mouse to drag itself out of the room .\tDT JJ NN VBG IN DT NN IN DT NN VBN IN DT JJ CC JJ NN , VBD DT NN IN PRP , CC VBG VBD DT NN VBG IN DT JJ NNS IN DT VBN NN TO VB PRP IN IN DT NN .\n' You cruel beast ! ' cried he .\t`` PRP JJ NN . `` VBD PRP .\n' Why do n't you kill it at once , like a lady ? '\t`` WRB VBP RB PRP VB PRP IN RB , IN DT NN . ``\nRising , he kicked the cat out of the door , and picking up the mouse compassionately put it out of its misery by pulling off its head .\tVBG , PRP VBD DT NN IN IN DT NN , CC VBG RP DT NN RB VBD PRP IN IN PRP$ NN IN VBG RP PRP$ NN .\nRecalled to the bedside by the moans of his patient , the Kind-hearted Physician administered a stimulant , a tonic , and a nutrient , and went away .\tVBN TO DT NN IN DT NNS IN PRP$ NN , DT JJ NN VBD DT NN , DT JJ , CC DT NN , CC VBD RB .\nKids these days , they grow up too quickly and know entirely too much too soon .\tNNS DT NNS , PRP VBP RP RB RB CC VB RB RB RB RB RB .\nI mean this one friend of mine was trying to get his boy into Nursery Rhymes .\tPRP VBP DT CD NN IN NN VBD VBG TO VB PRP$ NN IN NN NN .\nAll that happened was that the boy told his shrink that his Father had a lot of problems , including a fixation that a cow could orbit the moon .\tDT DT VBD VBD IN DT NN VBD PRP$ NN IN PRP$ NN VBD DT NN IN NNS , VBG DT NN IN DT NN MD VB DT NN .\nThe fate of seven suspected Somali pirates who were captured by a Spanish warship is uncertain after Spanish prosecutors reversed plans to bring them to Spain to face trial .\tDT NN IN CD JJ JJ NNS WP VBD VBN IN DT JJ NN VBZ JJ IN JJ NNS VBD NNS TO VB PRP TO NNP TO VB NN .\nA Spanish judge , Fernando Andreu , ordered the Somali men released on Friday .\tDT JJ NN , NNP NNP , VBD DT JJ NNS VBN IN NNP .\nHowever , he refused the prosecution 's request to surrender them to Kenyan authorities , saying it would violate the law , since proceedings were already taking place in Spain .\tRB , PRP VBD DT NN POS NN TO VB PRP TO JJ NNS , VBG PRP MD VB DT NN , IN NNS VBD RB VBG NN IN NNP .\nA Spanish ship seized the men off the coast of Somalia Wednesday after their boat capsized during their alleged attempt to hijack a Panamanian-flagged vessel .\tDT JJ NN VBD DT NNS IN DT NN IN NNP NNP IN PRP$ NN VBN IN PRP$ JJ NN TO VB DT JJ NN .\nFrance is prosecuting 15 piracy suspects in its own courts , though it has transferred others to Kenya , including 11 who were handed over on Friday .\tNNP VBZ VBG CD NN NNS IN PRP$ JJ NNS , IN PRP VBZ VBN NNS TO NNP , VBG CD WP VBD VBN RP IN NNP .\nChina says it punished more than 1,200 health workers last year for such corruption as taking commissions from drug companies and accepting bribes from patients .\tNNP VBZ PRP VBD JJR IN CD NN NNS JJ NN IN JJ NN IN VBG NNS IN NN NNS CC VBG NNS IN NNS .\nThe official Xinhua news agency says investigators from China 's Health Ministry uncovered more than 200 cases of hospital staff members buying and selling medicine for personal profit .\tDT JJ NNP NN NN VBZ NNS IN NNP POS NNP NNP VBD JJR IN CD NNS IN NN NN NNS VBG CC VBG NN IN JJ NN .\nThe health workers are said to have received $ 1.3 million illegally .\tDT NN NNS VBP VBN TO VB VBN $ CD CD RB .\nAuthorities also found that some doctors took bribes for surgeries , even after patients paid their hospital fees .\tNNS RB VBD IN DT NNS VBD NNS IN NNS , RB IN NNS VBD PRP$ NN NNS .\nMore than 800 health workers were punished for charging illegal fees .\tJJR IN CD NN NNS VBD VBN IN VBG JJ NNS .\nChina 's Health Minister Gao Qiang said at a nationwide health meeting Saturday that most hospital staff members are doing a good job .\tNNP POS NNP NNP NNP NNP VBD IN DT JJ NN NN NNP IN JJS NN NN NNS VBP VBG DT JJ NN .\nBut he says those who become corrupt will be punished without mercy .\tCC PRP VBZ DT WP VBP JJ MD VB VBN IN NN .\nA vault built to safeguard seed samples of the world 's important food crops has opened in the remote Norwegian archipelago of Svalbard .\tDT NN VBN TO VB NN NNS IN DT NN POS JJ NN NNS VBZ VBN IN DT JJ JJ NN IN NNP .\nNorway 's Prime Minister Jens Stoltenberg and Nobel-Prize winning environmentalist Wangari Maathai on Tuesday placed the first seeds inside the vault , built in caverns 130 meters inside a frozen mountain .\tNNP POS JJ NN NNP NNP CC NNP VBG NN NNP NNP IN NNP VBD DT JJ NNS IN DT NN , VBN IN NNS CD NNS IN DT JJ NN .\nThe repository is designed to shield plant seeds and preserve crop diversity in the event of disaster such as climate change , epidemic or nuclear war .\tDT NN VBZ VBN TO VB NN NNS CC VB NN NN IN DT NN IN NN JJ IN NN NN , JJ CC JJ NN .\nThe vault has the capacity to store 4.5 million seed samples .\tDT NN VBZ DT NN TO VB CD CD NN NNS .\nThe Norwegian government spent $ 9 million to build the vault .\tDT JJ NN VBD $ CD CD TO VB DT NN .\nOther countries can deposit seeds without charge and reserve the right to withdraw them upon need .\tJJ NNS MD VB NNS IN NN CC VB DT NN TO VB PRP IN NN .\nMore than two dozen Iraqi civilians and policemen have been killed in a wave of bombings Wednesday in Baghdad and parts of central and northern Iraq meant to intimidate voters less than two weeks ahead of national elections .\tJJR IN CD NN JJ NNS CC NNS VBP VBN VBN IN DT NN IN NNS NNP IN NNP CC NNS IN JJ CC JJ NNP VBD TO VB NNS JJR IN CD NNS RB IN JJ NNS .\nFive bomb attacks were carried out in Baghdad .\tCD NN NNS VBD VBN RP IN NNP .\nWanted terrorist Abu Musab al-Zarqawi 's group ( al-Qaida in Iraq ) claimed responsibility for four of them , including one outside the Australian embassy .\tVBN JJ NNP NNP NNP POS NN LRB NNP IN NNP RRB VBD NN IN CD IN PRP , VBG CD IN DT JJ NN .\nThe U.S. military reported at least 26 people were killed and many others wounded in those blasts .\tDT NNP NN VBD IN JJS CD NNS VBD VBN CC JJ NNS VBN IN DT NNS .\nNorth of the capital , in Kirkuk , police say a human rights activist and a relative were killed , while in Irbil , a bomb targeted the convoy of the police academy chief , killing a bystander .\tNNP IN DT NN , IN NNP , NNS VBP DT JJ NNS NN CC DT NN VBD VBN , IN IN NNP , DT NN VBD DT NN IN DT NN NN NN , VBG DT NN .\nAnd in Dohuk , the provincial governor escaped injury when a bomb hit his convoy .\tCC IN NNP , DT JJ NN VBD NN WRB DT NN VBD PRP$ NN .\nA policeman was also killed in a car bombing south of Baghdad , near Hilla .\tDT NN VBD RB VBN IN DT NN VBG NN IN NNP , IN NNP .\nAn Israeli airstrike in the Gaza Strip has killed a top Islamic Jihad commander and at least six other people , a day after an Islamic Jihad suicide bomber killed five people in central Israel .\tDT JJ NN IN DT NNP NNP VBZ VBN DT JJ NNP NNP NN CC IN JJS CD JJ NNS , DT NN IN DT JJ NNP NN NN VBD CD NNS IN JJ NNP .\nThe Israeli military confirmed the Thursday evening helicopter strike near the Jabaliya refugee camp , saying it targeted an Islamic Jihad militant .\tDT JJ NN VBD DT NNP NN NN NN IN DT NNP NN NN , VBG PRP VBD DT JJ NN NN .\nPalestinians identified him as Shahdi Mohanna , the Islamic Jihad commander for the northern Gaza Strip .\tNNS VBD PRP IN NNP NNP , DT NNP NNP NN IN DT JJ NNP NNP .\nThey said three other Islamic Jihad activists and three civilians were also among the dead , and at least 15 people were wounded .\tPRP VBD CD JJ NNP NNP NNS CC CD NNS VBD RB IN DT NN , CC IN JJS CD NNS VBD VBN .\nEarlier Thursday , Israeli Prime Minister Ariel Sharon announced an offensive he said would not stop until the Palestinian Authority moves decisively to stop militant attacks .\tRBR NNP , JJ NNP NNP NNP NNP VBD DT NN PRP VBD MD RB VB IN DT JJ NNP VBZ RB TO VB NN NNS .\nHe also said he will not hold talks with Palestinian leader Mahmoud Abbas until the attacks stop .\tPRP RB VBD PRP MD RB VB NNS IN JJ NN NNP NNP IN DT NNS VBP .\nA draft peace proposal under consideration by the Afghan government could offer Taliban leaders exile overseas if they agree to stop fighting .\tDT NN NN NN IN NN IN DT JJ NN MD VB NNP NNS NN RB IN PRP VBP TO VB VBG .\nThe draft plan , seen by reporters for British news organizations Reuters and the Guardian newspaper , also calls for ' de-radicalization ' classes for insurgents and thousands of new jobs to be created for militants who renounce violence .\tDT NN NN , VBN IN NNS IN JJ NN NNS NNS CC DT NNP NN , RB VBZ IN `` NN `` NNS IN NNS CC NNS IN JJ NNS TO VB VBN IN NNS WP VBP NN .\nThe proposal comes weeks before a grand council of Afghans , known as a jirga , meets in Kabul on May 29 to discuss how to make peace with the insurgents .\tDT NN VBZ NNS IN DT JJ NN IN NNS , VBN IN DT NN , VBZ IN NNP IN NNP CD TO VB WRB TO VB NN IN DT NNS .\nPossible peace talks will be a key issue discussed when Afghan President Hamid Karzai meets with U.S. President Barack Obama in Washington this week .\tJJ NN NNS MD VB DT JJ NN VBN WRB JJ NNP NNP NNP VBZ IN NNP NNP NNP NNP IN NNP DT NN .\nRussia has ordered its fleet of Su-24 bombers grounded after one of the planes crashed during a training mission .\tNNP VBZ VBN PRP$ NN IN NNP NNS VBD IN CD IN DT NNS VBD IN DT NN NN .\nAir force officials said Thursday that a technical problem caused the early morning accident in the Far East Khabarovsk territory .\tNNP NN NNS VBD NNP IN DT JJ NN VBD DT JJ NN NN IN DT NNP NNP NNP NN .\nThey said preliminary investigation indicates that a technical problem rather than pilot error cause the crash .\tPRP VBD JJ NN VBZ IN DT JJ NN RB IN NN NN VBZ DT NN .\nRussian news media say rescue helicopters found the wreckage more than a 100 kilometers away from the airfield .\tJJ NN NNS VBP NN NNS VBD DT NN RBR IN DT CD NNS RB IN DT NN .\nThe two pilots had ejected safely before the crash and were taken to a military hospital for a medical examination .\tDT CD NNS VBD VBN RB IN DT NN CC VBD VBN TO DT JJ NN IN DT JJ NN .\nReports say there was no damage on the ground .\tNNS VBP EX VBD DT NN IN DT NN .\nThe bomber flights are to remain suspended until investigators establish the cause of the crash .\tDT NN NNS VBP TO VB JJ IN NNS VB DT NN IN DT NN .\nPro-Russian demonstrators in Crimea have protested against the arrival of a U.S. naval frigate in Sevastopol , the Ukrainian port where Russia 's Black Sea fleet is based .\tJJ NNS IN NNP VBP VBN IN DT NN IN DT NNP JJ NN IN NNP , DT JJ NN WRB NNP POS NNP NNP NN VBZ VBN .\nNews-agency reports from Sevastopol say the demonstrators shouted ' NATO out ' and ' Yankee go home ' during their protest Wednesday .\tNN NNS IN NNP VBP DT NNS VBD `` NNP IN `` CC `` NN VB RB `` IN PRP$ NN NNP .\nUkraine 's navy says the U.S. naval vessel is on a friendly visit to the Black Sea and is not taking part in any military exercises .\tNNP POS NN VBZ DT NNP JJ NN VBZ IN DT JJ NN TO DT NNP NNP CC VBZ RB VBG NN IN DT JJ NNS .\nSevastopol 's naval base dates back to Soviet times .\tNNP POS JJ NN VBZ RB TO JJ NNS .\nThrough a lease agreement with Ukraine , Russia will operate the facility until 2017 .\tIN DT NN NN IN NNP , NNP MD VB DT NN IN CD .\nUkraine 's campaign to win NATO membership has been strongly opposed by Moscow , which says it will not accept any further expansion of the western alliance on Russia 's borders .\tNNP POS NN TO VB NNP NN VBZ VBN RB VBN IN NNP , WDT VBZ PRP MD RB VB DT JJ NN IN DT JJ NN IN NNP POS NNS .\nEgypt 's largest opposition group defied authorities and held anti-government protests in Cairo Sunday .\tNNP POS JJS NN NN VBD NNS CC VBN JJ NNS IN NNP NNP .\nSeveral thousand riot police prevented the Muslim Brotherhood from holding a rally outside the Egyptian parliament as planned .\tJJ CD NN NN VBD DT NNP NNP IN VBG DT NN IN DT JJ NN IN VBN .\nInstead , members of the group gathered in front of a Cairo mosque , shouting demands for political reforms .\tRB , NNS IN DT NN VBD IN NN IN DT NNP NN , VBG NNS IN JJ NNS .\nAuthorities say they arrested at least 50 protesters .\tNNS VBP PRP VBN IN JJS CD NNS .\nEstimates of the crowd range from several hundred to 3,000 .\tNNS IN DT NN VBP IN JJ CD TO CD .\nSmaller protests took place at two other Cairo locations .\tJJR NNS VBD NN IN CD JJ NNP NNS .\nEgyptian authorities had arrested another 50 Brotherhood members before the protests .\tJJ NNS VBD VBN DT CD NNP NNS IN DT NNS .\nThe Muslim Brotherhood calls for replacing Egypt 's secular government with an Islamic state .\tDT NNP NNP VBZ IN VBG NNP POS JJ NN IN DT JJ NN .\nThe group was formally banned in 1954 , but its members , running in elections as independents , hold enough seats to make the Brotherhood the largest opposition group in Egypt 's parliament .\tDT NN VBD RB VBN IN CD , CC PRP$ NNS , VBG IN NNS IN NNS , VBP JJ NNS TO VB DT NN DT JJS NN NN IN NNP POS NN .\nRussia says it is commissioning its first unit of new mobile intercontinental ballistic missiles .\tNNP VBZ PRP VBZ VBG PRP$ JJ NN IN JJ JJ JJ JJ NNS .\nMonday told Russian television the new version of the Topol-M missile is capable of penetrating multi-layered missile defense systems .\tNNP VBD JJ NN DT JJ NN IN DT NNP NN VBZ JJ IN VBG JJ NN NN NNS .\nIvanov said the missiles will form the core of Russia 's strategic missile forces .\tNNP VBD DT NNS MD VB DT NN IN NNP POS JJ NN NNS .\nHe called them a new generation of the stationary Topol system already in service .\tPRP VBD PRP DT JJ NN IN DT JJ NNP NN RB IN NN .\nWestern analysts say Topol missiles were first deployed in Russian silos in the late 1990s .\tJJ NNS VBP NNP NNS VBD JJ VBN IN JJ NNS IN DT JJ NNS .\nThe new missiles reportedly can carry a 1,200 kilogram payload and have an estimated range of about 10,000 kilometers .\tDT JJ NNS RB MD VB DT CD NN NN CC VBP DT VBN NN IN IN CD NNS .\nThey are said to maneuver in ways that are difficult to detect .\tPRP VBP VBN TO VB IN NNS WDT VBP JJ TO VB .\nA massive blast at an ammunition shop in Afghanistan 's capital leveled shops and homes , killing at least six people and wounding around nine others .\tDT JJ NN IN DT NN NN IN NNP POS NN VBD NNS CC NNS , VBG IN JJS CD NNS CC VBG IN CD NNS .\nBystanders joined rescuers Wednesday to dig through the rubble of collapsed buildings in an attempt to find survivors .\tNNS VBD NNS NNP TO VB IN DT NN IN JJ NNS IN DT NN TO VB NNS .\nDescriptions of the scope of the damage vary , with reports saying several to 25 buildings in Kabul were destroyed .\tNNS IN DT NN IN DT NN VBP , IN NNS VBG JJ TO CD NNS IN NNP VBD VBN .\nPolice have not said what caused the blast in the ammunition store .\tNNS VBP RB VBN WP VBD DT NN IN DT NN NN .\nAlso Wednesday , a suicide bomber in eastern Afghanistan blew himself up near a police convoy .\tRB NNP , DT NN NN IN JJ NNP VBD PRP RP IN DT NN NN .\nPolice officers in Khost said at least four civilians were killed and more than 30 other people were injured , among them Afghan policemen .\tNNS NNS IN NNP VBD IN JJS CD NNS VBD VBN CC JJR IN CD JJ NNS VBD VBN , IN PRP JJ NNS .\nMembers of a violent Central American street gang have been sent to the southwestern U.S. state of Arizona to attack Minuteman Project volunteers , as they begin a month-long campaign to help patrol the southern U.S. border with Mexico .\tNNS IN DT JJ JJ JJ NN NN VBP VBN VBN TO DT JJ NNP NN IN NNP TO VB NNP NNP NNS , IN PRP VBP DT JJ NN TO VB VB DT JJ NNP NN IN NNP .\nJames Gilchrist , a Minuteman organizer frustrated by the U.S. government 's failure to control illegal immigration , tells the Washington Times newspaper that leaders of Mara Salvatrucha or MS-13 have sent gang members to confront his group in Arizona .\tNNP NNP , DT NNP NN VBN IN DT NNP NN POS NN TO VB JJ NN , VBZ DT NNP NNP NN IN NNS IN NNP NNP CC NNP VBP VBN NN NNS TO VB PRP$ NN IN NNP .\nMore than 1,000 civilian volunteers are expected to converge on the city of Tombstone Friday to begin a 30-day border patrol .\tJJR IN CD JJ NNS VBP VBN TO VB IN DT NN IN NNP NNP TO VB DT JJ NN NN .\nLikewise , Hispanics from the National Alliance for Human Rights are going to Tombstone to protest the Minuteman Project .\tRB , NNS IN DT NNP NNP IN NNP NNPS VBP VBG TO VB TO VB DT NNP NNP .\nLast year , 5,00,000 illegal aliens were caught in Arizona .\tJJ NN , CD JJ NNS VBD VBN IN NNP .\nMS-13 runs a major smuggling operation on the U.S.-Mexico border , running drugs , weapons and undocumented aliens from Central and South America into the United States .\tNNP VBZ DT JJ NN NN IN DT JJ NN , VBG NNS , NNS CC JJ NNS IN NNP CC NNP NNP IN DT NNP NNPS .\nThe World Bank has approved $ 257 million in loans for business development in Colombia and a project designed to improve the country 's environment .\tDT NNP NNP VBZ VBN $ CD CD IN NNS IN NN NN IN NNP CC DT NN VBN TO VB DT NN POS NN .\nIn a statement issued Thursday , the bank says its board of directors allocated $ 250 million to fund a business productivity and efficiency project designed to create businesses , improve their access to financing , and increase overall productivity in Colombia .\tIN DT NN VBN NNP , DT NN VBZ PRP$ NN IN NNS VBD $ CD CD TO VB DT NN NN CC NN NN VBN TO VB NNS , VB PRP$ NN TO NN , CC VB JJ NN IN NNP .\nThe Bank allocated another $ 7 million to Colombia for a sustainable development project , aimed at reducing air and water pollution , improve hygiene and urban environmental management .\tDT NNP VBD DT $ CD CD TO NNP IN DT JJ NN NN , VBN IN VBG NN CC NN NN , VB NN CC JJ JJ NN .\nThe bank is also loaning El Salvador $ 27 million to support a poverty reduction program known as Red Solidaria , designed to help the poorest Salvadorans by improving health , nutrition and education in the country .\tDT NN VBZ RB VBG NNP NNP $ CD CD TO VB DT NN NN NN VBN IN NNP NNP , VBN TO VB DT JJS NNS IN VBG NN , NN CC NN IN DT NN .\nItalian opposition politicians are demanding Prime Minister Silvio Berlusconi apologize for using an obscenity to refer to anyone who would vote against him in Sunday 's election .\tJJ NN NNS VBP VBG NNP NNP NNP NNP NN IN VBG DT NN TO VB TO DT WP MD VB IN PRP IN NNP POS NN .\nDuring a speech to a group of shopkeepers Tuesday , Mr. Berlusconi used a word regarded by many as an obscenity and by others as an insult .\tIN DT NN TO DT NN IN NNS NNP , NNP NNP VBD DT NN VBN IN JJ IN DT NN CC IN NNS IN DT NN .\nHe said using such language was rough but effective .\tPRP VBD VBG JJ NN VBD JJ CC JJ .\nThe remark came a day after Mr. Berlusconi traded insults in a political debate with his chief political rival , center-left leader Romano Prodi .\tDT NN VBD DT NN IN NNP NNP VBD NNS IN DT JJ NN IN PRP$ JJ JJ NN , JJ NN NNP NNP .\nBoth candidates assailed the other 's fiscal policies , with Mr. Berlusconi calling Prodi a ' useful idiot ' and Prodi saying the prime minister is like a ' drunkard clinging to a lamppost . '\tDT NNS VBD DT NN POS JJ NNS , IN NNP NNP VBG NNP DT `` JJ NN `` CC NNP VBG DT JJ NN VBZ IN DT `` NN VBG TO DT NN . ``\nVoters go to the polls Sunday and Monday to choose a new government .\tNNS VBP TO DT NNS NNP CC NNP TO VB DT JJ NN .\nPolls show many of the voters are undecided .\tNNS VBP NN IN DT NNS VBP JJ .\nIraqi police say a roadside bombing in Baghdad Saturday killed at least two people who were taking part in a Shi'ite Muslim religious procession .\tJJ NNS VBP DT NN NN IN NNP NNP VBD IN JJS CD NNS WP VBD VBG NN IN DT NNP NNP JJ NN .\nThe attack , in the New Baghdad district , also wounded eight others .\tDT NN , IN DT NNP NNP NN , RB VBD CD NNS .\nIraqi authorities have boosted security measures as hundreds of thousands of Shi'ite pilgrims flock to Iraq 's holy shrine city of Karbala for the solemn Ashura holiday .\tJJ NNS VBP VBN NN NNS IN NNS IN NNS IN NNP NNS VBP TO NNP POS JJ JJ NN IN NNP IN DT JJ NNP NN .\nWorshipers travel to the shrine each year to mourn the seventh-century killing of the grandson of the Prophet Muhammad .\tNNS VBP TO DT NN DT NN TO VB DT JJ NN IN DT NN IN DT NNP NNP .\nSeveral pilgrims were killed earlier this week in a spate of attacks targeting worshipers .\tJJ NNS VBD VBN RBR DT NN IN DT NN IN NNS VBG NNS .\nOn Friday , a roadside bomb blast killed at least six Shi'ites in the eastern Baghdad district of Sadr City .\tIN NNP , DT NN NN NN VBD IN JJS CD NNS IN DT JJ NNP NN IN NNP NNP .\nOther attacks this week in the city of Mosul targeted the Christian minority as they celebrated Christmas .\tJJ NNS DT NN IN DT NN IN NNP VBD DT JJ NN IN PRP VBD NNP .\nAre the streets in America really paved with gold ?\tVBP DT NNS IN NNP RB VBD IN NN .\nMoses Bittok probably thinks so .\tNNPS NNP RB VBZ RB .\nMr. Bittok , who immigrated from Kenya to the United States , learned last week he had a winning ticket worth nearly $ 2 million from an Iowa lottery .\tNNP NNP , WP VBD IN NNP TO DT NNP NNPS , VBD JJ NN PRP VBD DT NN NN JJ RB $ CD CD IN DT NNP NN .\nAnd get this - he realized he had won shortly after taking the oath of U.S. citizenship .\tCC VB DT : PRP VBD PRP VBD VBN RB IN VBG DT NN IN NNP NN .\nAs he cashed in his ticket , Mr. Bittok said - quote - ' It 's almost like you adopted a country and they netted you $ 1.8 million dollars . '\tIN PRP VBD IN PRP$ NN , NNP NNP VBD : NN : `` PRP VBZ RB IN PRP VBD DT NN CC PRP VBD PRP $ CD CD NNS . ``\nHe added that something like this can only happen in America .\tPRP VBD IN DT IN DT MD RB VB IN NNP .\nA top Japanese official is calling for U.N. economic sanctions against North Korea if Pyongyang tests a nuclear device .\tDT JJ JJ NN VBZ VBG IN NNP JJ NNS IN NNP NNP IN NNP VBZ DT JJ NN .\nShinzo Abe , acting secretary general of Japan 's ruling Liberal Democratic Party , said Sunday that it would be ' unthinkable ' for Tokyo to do nothing should North Korea conduct such a test .\tNNP NNP , VBG NN NN IN NNP POS NN NNP NNP NNP , VBD NNP IN PRP MD VB `` JJ `` IN NNP TO VB NN MD NNP NNP VB JJ DT NN .\nU.S. officials have warned that North Korea may be preparing for a nuclear test , citing satellite photos they say show suspicious activity near the coastal town of Kilju .\tNNP NNS VBP VBN IN NNP NNP MD VB VBG IN DT JJ NN , VBG NN NNS PRP VBP VB JJ NN IN DT JJ NN IN NNP .\nInterviewed on the television program Fox News Sunday ,\tVBN IN DT NN NN NNP NNP NNP ,\nU.S. National Security Adviser Stephen Hadley said a nuclear test would be an act of defiance , and prompt Washington and its allies to discuss new steps to punish the North Korean government .\tNNP NNP NNP NNP NNP NNP VBD DT JJ NN MD VB DT NN IN NN , CC VB NNP CC PRP$ NNS TO VB JJ NNS TO VB DT JJ JJ NN .\nNorth Korea has warned that it will consider any sanctions imposed against it a declaration of war .\tNNP NNP VBZ VBN IN PRP MD VB DT NNS VBN IN PRP DT NN IN NN .\nAuthorities in Iraq say a car bomb exploded in central Baghdad early Monday , killing at least three people and injuring two others .\tNNS IN NNP VBP DT NN NN VBD IN JJ NNP JJ NNP , VBG IN JJS CD NNS CC VBG CD NNS .\nThe blast occurred near one of the gates to the heavily fortified Green Zone , where the headquarters of the Iraqi government , U.S. forces and most foreign missions are located .\tDT NN VBD IN CD IN DT NNS TO DT RB VBN NNP NNP , WRB DT NN IN DT JJ NN , NNP NNS CC JJS JJ NNS VBP VBN .\nSeparately , the U.S. military says more than 35 insurgents were killed when coalition air strikes hit five targets in a small western town ( Obeidi ) near the Syrian border .\tRB , DT NNP NN VBZ JJR IN CD NNS VBD VBN WRB NN NN NNS VBD CD NNS IN DT JJ JJ NN LRB NNP RRB IN DT JJ NN .\nOfficials say 25 other insurgents were captured .\tNNS VBP CD JJ NNS VBD VBN .\nU.S. and Iraqi forces have been operating in the Euphrates River valley to stem the flow of insurgents and supplies from across the border , ahead of next month 's parliamentary elections .\tNNP CC JJ NNS VBP VBN VBG IN DT NNP NNP NN TO VB DT NN IN NNS CC NNS IN IN DT NN , RB IN JJ NN POS JJ NNS .\nOn Sunday , Iraq 's Sunni Arab leaders called for an end to large-scale military operations in mostly Sunni areas , saying they may discourage Sunnis from taking part in the vote .\tIN NNP , NNP POS NNP NNP NNS VBD IN DT NN TO JJ JJ NNS IN RB JJ NNS , VBG PRP MD VB NNP IN VBG NN IN DT NN .\nEuropean Union Health Commissioner Markos Kypriano says the EU is increasing its pledge for the fight against bird flu to $ 120 million .\tNNP NNP NNP NNP NNP NNP VBZ DT NNP VBZ VBG PRP$ NN IN DT NN IN NN NN TO $ CD CD .\nThe EU pledged the assistance in Beijing Tuesday at a donors conference organized by health experts to raise money to help developing countries contain bird flu .\tDT NNP VBD DT NN IN NNP NNP IN DT NNS NN VBN IN NN NNS TO VB NN TO VB VBG NNS VBP NN NN .\nThe World Bank and World Health Organization are hoping to raise $ 1.5 billion from rich countries to help poorer nations fight bird flu and prevent a global pandemic .\tDT NNP NNP CC NNP NNP NNP VBP VBG TO VB $ CD CD IN JJ NNS TO VB JJR NNS VBP NN NN CC VB DT JJ NN .\nThe United States is expected to announce its pledge on Wednesday .\tDT NNP NNPS VBZ VBN TO VB PRP$ NN IN NNP .\nSwiss drugmaker Roche said it will donate another batch of Tamiflu , an anti-viral medication , to treat an additional two million people in the event of a bird flu pandemic .\tJJ NN NNP VBD PRP MD VB DT NN IN NNP , DT JJ NN , TO VB DT JJ CD CD NNS IN DT NN IN DT NN NN NN .\nA World Health Organization official , Margaret Chan , told the meeting there is a great risk of an epidemic , although the timing and severity is uncertain .\tDT NNP NNP NNP NN , NNP NNP , VBD DT NN EX VBZ DT JJ NN IN DT NN , IN DT NN CC NN VBZ JJ .\nThe Inter-American Development Bank says the world Haitian disapora sent more than $ 1.6 billion back to families on the impoverished island in 2006 .\tDT NNP NNP NNP VBZ DT NN JJ NN VBD JJR IN $ CD CD RB TO NNS IN DT JJ NN IN CD .\nThe bank said Tuesday the money sent to Haiti from overseas equals more than one-third of the country 's gross national product .\tDT NN VBD NNP DT NN VBN TO NNP IN RB VBZ JJR IN NN IN DT NN POS JJ JJ NN .\nMore than $ 1 billion came from the United States and the large Haitian communities in Boston , Miami , and New~York .\tJJR IN $ CD CD VBD IN DT NNP NNPS CC DT JJ JJ NNS IN NNP , NNP , CC NNP .\nOther large contributions came from Canada , France , and the Bahamas .\tJJ JJ NNS VBD IN NNP , NNP , CC DT NNPS .\nThe bank says many of the recipients of overseas money have incomes less than $ 500 a year .\tDT NN VBZ NN IN DT NNS IN JJ NN VBP NNS JJR IN $ CD DT NN .\nThey use the extra funds for basic expenses , while others invest it in small businesses and education for their children .\tPRP VBP DT JJ NNS IN JJ NNS , IN NNS VBP PRP IN JJ NNS CC NN IN PRP$ NNS .\nUkraine 's Prime Minister Yury Yekhanurov says the signing of a controversial natural gas deal with Russia has been postponed again .\tNNP POS NNP NNP NNP NNP VBZ DT NN IN DT JJ JJ NN NN IN NNP VBZ VBN VBN RB .\nThe signing had already been delayed from Saturday to Wednesday .\tDT NN VBD RB VBN VBN IN NNP TO NNP .\nBut Mr. Yekhanurov says experts continue to work on the documents .\tCC NNP NNP VBZ NNS VBP TO VB IN DT NNS .\nThe draft agreement calls for Ukraine to pay Russia nearly twice as much for natural gas .\tDT NN NN VBZ IN NNP TO VB NNP RB RB RB JJ IN JJ NN .\nThe new price would be $ 95 per 1,000 cubic meters , up from the previous rate of $ 50 .\tDT JJ NN MD VB $ CD IN CD JJ NNS , RB IN DT JJ NN IN $ CD .\nThe two sides reached the deal January 4 , after a three-day suspension of Russian gas deliveries to Ukraine .\tDT CD NNS VBD DT NN NNP CD , IN DT JJ NN IN JJ NN NNS TO NNP .\nThe agreement triggered a political crisis in Ukraine , and parliament voted to dismiss the government .\tDT NN VBD DT JJ NN IN NNP , CC NN VBD TO VB DT NN .\nThe Chinese government has called for new measures to prevent the economy from overheating .\tDT JJ NN VBZ VBN IN JJ NNS TO VB DT NN IN VBG .\nThe official Xinhua news agency reports the State Council moved on Friday to tighten controls on fixed asset investments and money supply after concluding they increased excessively in the first quarter .\tDT JJ NNP NN NN VBZ DT NNP NNP VBD IN NNP TO VB NNS IN JJ NN NNS CC NN NN IN VBG PRP VBD RB IN DT JJ NN .\nChina 's banks doled out $ 156 billion in new loans in the first quarter , more than half the target for all of 2006 .\tNNP POS NNS VBD RP $ CD CD IN JJ NNS IN DT JJ NN , JJR IN PDT DT NN IN DT IN CD .\nThe Chinese economy is growing at a rapid pace , topping nine percent in the last two years .\tDT JJ NN VBZ VBG IN DT JJ NN , VBG CD NN IN DT JJ CD NNS .\nLeaders are concerned the pace could raise inflation rates or lead to investment in unnecessary projects .\tNNS VBP VBN DT NN MD VB NN NNS CC VB TO NN IN JJ NNS .\nThe central bank said the growth of the broad money supply rose nearly 19 percent on a year-on-year basis to $ 3.9 trillion by the end of March .\tDT JJ NN VBD DT NN IN DT JJ NN NN VBD RB CD NN IN DT JJ NN TO $ CD CD IN DT NN IN NNP .\nA media rights group says Burma 's military-led government has released two Burmese journalists working for a Japanese television station .\tDT NNS NNS NN VBZ NNP POS JJ NN VBZ VBN CD JJ NNS VBG IN DT JJ NN NN .\nReporters Without Borders and the Burma Media Association welcomed the release of the reporters after two days of detention .\tNNS IN NNS CC DT NNP NNP NNP VBD DT NN IN DT NNS IN CD NNS IN NN .\nThey say the journalists are in good shape - despite being shaken by the incident .\tPRP VBP DT NNS VBP IN JJ NN IN IN VBG VBN IN DT NN .\nThe two journalists were arrested Monday after they went to a port near Rangoon to verify the arrival of a North Korean cargo ship .\tDT CD NNS VBD VBN NNP IN PRP VBD TO DT NN IN NNP TO VB DT NN IN DT JJ JJ NN NN .\nThe reporters , Aung Shwe Oo and his daughter , Daw Sint Sint Aung , both work for Nippon News Network 's Bangkok bureau .\tDT NNS , NNP NNP NNP CC PRP$ NN , NNP NNP NNP NNP , DT VBP IN NNP NNP NNP POS NNP NN .\nImages of the Indian Ocean floor show a giant landslide at the starting point of the earthquake triggered tsunami that devastated regional coastlines on December 26 .\tNNS IN DT NNP NNP NN VBP DT JJ NN IN DT VBG NN IN DT NN VBD NNS WDT VBD JJ NNS IN NNP CD .\nThe digital map has been produced by a British survey ship HMS Scott that has been collecting data off the coast of Indonesia 's Sumatra Island since early January .\tDT JJ NN VBZ VBN VBN IN DT JJ NN NN NNP NNP WDT VBZ VBN VBG NNS IN DT NN IN NNP POS NNP NNP IN JJ NNP .\nThe probe of the area where two pieces of ocean floor collided shows a ridge of mud hundreds of meters thick where the seawater was forced up to form the tsunami .\tDT NN IN DT NN WRB CD NNS IN NN NN VBD VBZ DT NN IN NN NNS IN NNS JJ WRB DT NN VBD VBN RP TO VB DT NN .\nScientists on the ship say that while the data will not help predict when earthquakes will occur , it could help in warning of future tsunamis .\tNNS IN DT NN VBP IN IN DT NNS MD RB VB VB WRB NNS MD VB , PRP MD VB IN NN IN JJ NNS .\nA Republican Congressman says he is temporarily stepping down from a House committee-chairman position while he is being investigated for corruption .\tDT JJ NN VBZ PRP VBZ RB VBG RP IN DT NNP NN NN IN PRP VBZ VBG VBN IN NN .\nOhio Representative Bob Ney is the second lawmaker to relinquish a House leadership post in recent months .\tNNP NN NNP NNP VBZ DT JJ NN TO VB DT NNP NN NN IN JJ NNS .\nHe said in a statement Sunday that the allegations against him have become a distraction to lawmakers , including those in the committee he chaired , the House Administration Committee .\tPRP VBD IN DT NN NNP IN DT NNS IN PRP VBP VBN DT NN TO NNS , VBG DT IN DT NN PRP VBD , DT NNP NNP NNP .\nNey has been identified as the unnamed lawmaker that lobbyist Jack Abramoff said accepted lavish gifts and financial contributions in exchange for favors and support .\tNNP VBZ VBN VBN IN DT JJ NN IN NN NNP NNP VBD VBN JJ NNS CC JJ NNS IN NN IN NNS CC NN .\nAbramoff has pleaded guilty to fraud and tax evasion .\tNNP VBZ VBN JJ TO NN CC NN NN .\nNey denies any wrongdoing .\tNNP VBZ DT NN .\nTexas representative Tom DeLay stepped down as House Majority Leader late last year after being indicted for alleged campaign finance violations .\tNNP NN NNP NNP VBD RP IN NNP NNP NNP RB JJ NN IN VBG VBN IN JJ NN NN NNS .\nDeLay had close ties to Abramoff and some of the congressman 's aides are being investigated in the Abramoff scandal .\tNNP VBD JJ NNS TO NNP CC DT IN DT NN POS NNS VBP VBG VBN IN DT NNP NN .\nOne of the suspected bombers in the failed July 21 attacks on London 's transport system is being extradited from Italy to Britain .\tCD IN DT JJ NNS IN DT VBN NNP CD NNS IN NNP POS NN NN VBZ VBG VBN IN NNP TO NNP .\nA plane carrying Ethiopian-born Hamdi Issac , also known as Osman Hussain , left Rome 's Ciampino airport around midday Thursday , for London .\tDT NN VBG JJ NNP NNP , RB VBN IN NNP NNP , VBD NNP POS NNP NN IN NN NNP , IN NNP .\nItalian police arrested the British citizen in Rome a week after the July 21 attacks , which caused no fatalities but brought chaos to London two weeks after suicide bombers killed 52 people in the British capital .\tJJ NNS VBN DT JJ NN IN NNP DT NN IN DT NNP CD NNS , WDT VBD DT NNS CC VBD NN TO NNP CD NNS IN NN NNS VBD CD NNS IN DT JJ NN .\nHamdi Issac has admitted to taking part in the second set of attacks but has said the action was meant to scare people , not kill them .\tNNP NNP VBZ VBN TO VBG NN IN DT JJ NN IN NNS CC VBZ VBN DT NN VBD VBN TO VB NNS , RB VB PRP .\nItaly 's highest court upheld his extradition order on September 13 .\tNNP POS JJS NN VBD PRP$ NN NN IN NNP CD .\nThe surging Mississippi River spilled over levees in two towns in the state of Illinois and is threatening to deluge other parts of the central United States .\tDT VBG NNP NNP VBD IN NNS IN CD NNS IN DT NN IN NNP CC VBZ VBG TO VB JJ NNS IN DT JJ NNP NNPS .\nThe Army Corps of Engineers says 20 levees in the central U.S. have already overflowed - and up to 30 more are in danger of overflowing .\tDT NNP NNP IN NNP VBZ CD NNS IN DT JJ NNP VBP RB VBN : CC RB TO CD JJR VBP IN NN IN VBG .\nCentral U.S. river towns are at risk as floodwaters that submerged parts of two of the state of Iowa 's largest cities are now flowing downstream .\tNNP NNP NN NNS VBP IN NN IN NNS WDT VBD NNS IN CD IN DT NN IN NNP POS JJS NNS VBP RB VBG NN .\nResidents have joined members of the National Guard in a desperate effort to strengthen levees with sandbags .\tNNS VBP VBN NNS IN DT NNP NNP IN DT JJ NN TO VB NNS IN NNS .\nMeanwhile , Iowa is cleaning up after widespread flooding inundated homes , destroyed crops and cut off highways and bridges .\tRB , NNP VBZ VBG RP IN JJ NN VBD NNS , VBD NNS CC VBD RP NNS CC NNS .\nAt the White House Tuesday , U.S. President George Bush expressed concern for the flood victims .\tIN DT NNP NNP NNP , NNP NNP NNP NNP VBD NN IN DT NN NNS .\nHe is to visit Iowa Thursday to inspect the damage .\tPRP VBZ TO VB NNP NNP TO VB DT NN .\nA U.S. government audit shows that at least 232 civilians have been killed while working on U.S. reconstruction projects in Iraq .\tDT NNP NN NN VBZ IN IN JJS CD NNS VBP VBN VBN IN VBG IN NNP NN NNS IN NNP .\nThe report by the Special Inspector General for Iraq Reconstruction indicates the death toll of those employees for private contractors increased 93 percent in recent months ( the fourth quarter of 2004 ) .\tDT NN IN DT NNP NNP NNP IN NNP NNP VBZ DT NN NN IN DT NNS IN JJ NNS VBD CD NN IN JJ NNS LRB DT JJ NN IN CD RRB .\nIn addition to those killed , 728 claims were filed for employees who missed more than four days of work .\tIN NN TO DT VBN , CD NNS VBD VBN IN NNS WP VBD JJR IN CD NNS IN NN .\nThe inspector 's report says ' Iraq 's unsettled security environment continues to present grave risks for contractors and employees . '\tDT NN POS NN VBZ `` NNP POS JJ NN NN VBZ TO VB JJ NNS IN NNS CC NNS . ``\nThe quarterly report sent to U.S. Congress based its information on statistics from the U.S. Labor Department compiled from workers ' compensation claims filed by all U.S. government contractors .\tDT JJ NN VBN TO NNP NNP VBD PRP$ NN IN NNS IN DT NNP NNP NNP VBN IN NNS POS NN NNS VBN IN DT NNP NN NNS .\nFormer Chilean dictator Augusto Pinochet has been indicted on human rights charges and placed under house arrest .\tJJ JJ NN NNP NNP VBZ VBN VBN IN JJ NNS NNS CC VBN IN NN NN .\nJudge Victor Montiglio charged General Pinochet in connection with the kidnapping and disappearance of seven people in the early years of his 1973 to 1990 rule .\tNNP NNP NNP VBD NNP NNP IN NN IN DT NN CC NN IN CD NNS IN DT JJ NNS IN PRP$ CD TO CD NN .\nThe charges are part of a human rights case known as ' Operation Colombo , ' in which 119 dissidents disappeared while in custody .\tDT NNS VBP NN IN DT JJ NNS NN VBN IN `` NNP NNP , `` IN WDT CD NNS VBN IN IN NN .\nMr. Montiglio 's indictment Thursday comes six days after he questioned the ex-dictator and the former head of the secret police , Manuel Contreras , to determine responsibility for the disappearance of the 119 Pinochet foes .\tNNP NNP POS NN NNP VBZ CD NNS IN PRP VBD DT NN CC DT JJ NN IN DT JJ NN , NNP NNP , TO VB NN IN DT NN IN DT CD NNP NNS .\nThis is the second indictment in two days against the former dictator .\tDT VBZ DT JJ NN IN CD NNS IN DT JJ NN .\nGeneral Pinochet , who turns 90 on Friday , had just made bail following his indictment Wednesday on charges of tax evasion , corruption and using FALSE passports in a case involving an estimated $ 27 million hidden in foreign bank accounts .\tNNP NNP , WP VBZ CD IN NNP , VBD RB VBN NN VBG PRP$ NN NNP IN NNS IN NN NN , NN CC VBG JJ NNS IN DT NN VBG DT VBN $ CD CD VBN IN JJ NN NNS .\nLeaders of the South American trade bloc Mercosur are meeting in Venezuela to formally welcome Venezuela into the group .\tNNS IN DT NNP NNP NN NN NNP VBP VBG IN NNP TO RB VB NNP IN DT NN .\nPresidents of member nations Argentina , Brazil , Paraguay and Uruguay are to sign a document Tuesday extending voting rights and lower tariffs to Venezuela .\tNNS IN NN NNS NNP , NNP , NNP CC NNP VBP TO VB DT NN NNP VBG NN NNS CC JJR NNS TO NNP .\nWith the new member , officials say the trade bloc will account for $ 1 trillion in annual economic activity and include 250 million people .\tIN DT JJ NN , NNS VBP DT NN NN MD VB IN $ CD CD IN JJ JJ NN CC VBP CD CD NNS .\nBolivian President Evo Morales also is to attend the summit for talks with his Brazilian counterpart Luiz Inacio Lula da Silva to discuss the price of gas exports to Brazil .\tJJ NNP NNP NNP RB VBZ TO VB DT NN IN NNS IN PRP$ JJ NN NNP NNP NNP NNP NNP TO VB DT NN IN NN NNS TO NNP .\nBolivia is an associate member of Mercosur , formed in 1991 .\tNNP VBZ DT JJ NN IN NNP , VBN IN CD .\nMeanwhile , Paraguay 's President Nicanor Duarte has threatened to abandon the group because of alleged protectionist trade policies by Brazil and Argentina .\tRB , NNP POS NNP NNP NNP VBZ VBN TO VB DT NN IN IN JJ NN NN NNS IN NNP CC NNP .\nA strong earthquake shook Indonesia 's Aceh province just before midnight Saturday ( about 1657 UTC ) , causing residents to flee their homes in panic .\tDT JJ NN VBD NNP POS NNP NN RB IN NN NNP LRB IN CD NNP RRB , VBG NNS TO VB PRP$ NNS IN NN .\nThe magnitude 5.8 quake was centered 33 kilometers under the Indian Ocean and about 33 kilometers northwest of the provincial capital of Banda Aceh .\tDT NN CD NN VBD VBN CD NNS IN DT NNP NNP CC IN CD NNS JJS IN DT JJ NN IN NNP NNP .\nOfficials say there have been no reports of damage or casualties , but residents of the city ran out of their homes in panic after the quake jolted them awake .\tNNS VBP EX VBP VBN DT NNS IN NN CC NNS , CC NNS IN DT NN VBD IN IN PRP$ NNS IN NN IN DT NN VBD PRP JJ .\nA magnitude 9 quake off the west coast of Aceh triggered the December 26 tsunamis , which the U.S. Geological Survey says killed more than 2,75,000 people around the Indian Ocean .\tDT NN CD NN IN DT JJS NN IN NNP VBD DT NNP CD NNS , WDT DT NNP NNP NNP VBZ VBN JJR IN CD NNS IN DT NNP NNP .\nThat includes 1,31,000 in Aceh .\tDT VBZ CD IN NNP .\nU.S. Democratic senators have criticized President Bush 's proposal to revamp Social Security , on the eve of the retirement program 's 70th anniversary .\tNNP JJ NNS VBP VBN NNP NNP POS NN TO VB NNP NNP , IN DT NN IN DT NN NN POS JJ NN .\nSenator John Kerry , the 2004 democratic presidential candidate , said in a radio address delivered in Spanish Saturday that the president 's proposal to add private investments accounts to the program will hurt Hispanics .\tNNP NNP NNP , DT CD JJ JJ NN , VBD IN DT NN NN VBN IN JJ NNP IN DT NN POS NN TO VB JJ NNS NNS IN DT NN MD VB NNS .\nDemocratic Senator Ken Salazar , from Colorado said in a separate English-language radio address Saturday the president is fabricating a crisis in the retirement program so he can push through his proposals to change it .\tJJ NNP NNP NNP , IN NNP VBD IN DT JJ JJ NN NN NNP DT NN VBZ VBG DT NN IN DT NN NN IN PRP MD VB IN PRP$ NNS TO VB PRP .\nPresident Bush says his plans will help the program avoid severe funding shortfalls over the next few decades .\tNNP NNP VBZ PRP$ NNS MD VB DT NN VB JJ NN NNS IN DT JJ JJ NNS .\nA key part of his proposal is to allow younger workers to privately invest some of their Social Security funds which are now managed by the government .\tDT JJ NN IN PRP$ NN VBZ TO VB JJR NNS TO RB VB DT IN PRP$ NNP NNP NNS WDT VBP RB VBN IN DT NN .\nMore than 60 African migrants have drowned while crossing the Gulf of Aden on their way to Yemen .\tJJR IN CD JJ NNS VBP VBN IN VBG DT NNP IN NNP IN PRP$ NN TO NNP .\nWitnesses say at least 15 others swam to safety after their vessel sank close to the Yemeni coast .\tNNS VBP IN JJS CD NNS VBP TO VB IN PRP$ NN VBD RB TO DT JJ NN .\nThe boat originated from Somalia and most of those on board are believed to have been Somalians .\tDT NN VBD IN NNP CC JJS IN DT IN NN VBP VBN TO VB VBN NNPS .\nIt is not clear how the boat capsized .\tPRP VBZ RB JJ WRB DT NN VBD .\nMigrants frequently attempt the crossing to escape violence in Somalia and often rely on smugglers to help them cross .\tNNS RB VBP DT NN TO VB NN IN NNP CC RB VBP IN NNS TO VB PRP VB .\nThey often face abuse at the hands of smugglers , with many forced to disembark offshore to avoid Yemeni coast guard patrols .\tPRP RB VBP NN IN DT NNS IN NNS , IN JJ VBN TO VB RB TO VB JJ NN NN NNS .\nEarlier this month , the U.N. High Commissioner for Refugees estimated 20,000 people have made the crossing this year and said at least 439 people have died and another 489 are missing .\tRBR DT NN , DT NNP NNP NNP IN NNP VBD CD NNS VBP VBN DT NN DT NN CC VBD IN JJS CD NNS VBP VBN CC DT CD VBP VBG .\nPolice in Afghanistan say attackers have shot and killed an Afghan senator who briefly served as prime minister in the early 1990s .\tNNS IN NNP VBP NNS VBP VBN CC VBN DT JJ NN WP RB VBD IN JJ NN IN DT JJ NNS .\nAuthorities say Abdul Saboor Farid was killed late Wednesday outside his home in the capital , Kabul .\tNNS VBP NNP NNP NNP VBD VBN JJ NNP IN PRP$ NN IN DT NN , NNP .\nMr. Farid was Afghanistan 's prime minister for one month in 1992 during the chaos of a civil war that followed the defeat of the Soviet army .\tNNP NNP VBD NNP POS JJ NN IN CD NN IN CD IN DT NN IN DT JJ NN WDT VBD DT NN IN DT JJ NN .\nThe motive for the senator 's killing is not clear .\tDT NN IN DT NN POS NN VBZ RB JJ .\nIn another development , police say a remote-controlled roadside bomb tore through the side of an Afghan army bus Thursday in Kabul , killing the driver and wounding 29 people .\tIN DT NN , NNS VBP DT JJ NN NN VBD IN DT NN IN DT JJ NN NN NNP IN NNP , VBG DT NN CC VBG CD NNS .\nTaleban militants claimed responsibility for the attack .\tNNP NNS VBD NN IN DT NN .\nMeanwhile , the British defense ministry says a British soldier serving with the NATO-led coalition in Afghanistan was killed during fighting with militants in the south .\tRB , DT JJ NN NN VBZ DT JJ NN VBG IN DT JJ NN IN NNP VBD VBN IN VBG IN NNS IN DT NN .\nNATO has launched large-scale military operations in the region recently to pre-empt an expected Taleban offensive .\tNNP VBZ VBN JJ JJ NNS IN DT NN RB TO VB DT VBN NNP NN .\nInsurgents in Iraq killed at least nine people in attacks Sunday northeast of Baghdad .\tNNS IN NNP VBD IN JJS CD NNS IN NNS NNP NN IN NNP .\nPolice say a roadside bomb killed four policemen and wounded nine in Baquba .\tNNS VBP DT NN NN VBD CD NNS CC VBD CD IN NNP .\nIn another town , Balad Ruz , police say a rocket attack on a policeman 's house killed the man 's brother and four children .\tIN DT NN , NNP NNP , NNS VBP DT NN NN IN DT NN POS NN VBD DT NN POS NN CC CD NNS .\nMilitary officials say on Saturday U.S. soldiers killed three gunmen who fired on a patrol in the northern town of Baiji .\tJJ NNS VBP IN NNP NNP NNS VBD CD NNS WP VBD IN DT NN IN DT JJ NN IN NNP .\nIn northern Iraq , police say the bodies of an elderly tribal leader , Ibrahim Ali al-Nuimei , and his son were found near the town of Kirkuk .\tIN JJ NNP , NNS VBP DT NNS IN DT JJ JJ NN , NNP NNP NNP , CC PRP$ NN VBD VBN IN DT NN IN NNP .\nIn a separate development , the trial of ousted leader Saddam Hussein is scheduled to resume Tuesday with a new presiding judge , and a Western diplomat says members of the former Baathist regime may testify .\tIN DT JJ NN , DT NN IN JJ NN NNP NNP VBZ VBN TO VB NNP IN DT JJ NN NN , CC DT JJ NN VBZ NNS IN DT JJ NNP NN MD VB .\nThe United States Government , Wednesday [ May 14 ] officially added polar bears to the list of threatened animals under the Endangered Species Act .\tDT NNP NNP NNP , NNP LRB NNP CD RRB RB VBD JJ NNS TO DT NN IN JJ NNS IN DT NNP NNP NNP .\nBush administration scientists decided the species is at risk of becoming endangered .\tNNP NN NNS VBD DT NNS VBZ IN NN IN VBG VBN .\nOfficials cited warming trends and loss of sea ice as threatening the bears , opening a debate over whether to regulate greenhouse gases to protect the bear and its habitat .\tNNS VBD NN NNS CC NN IN NN NN IN VBG DT NNS , VBG DT NN IN IN TO VB NN NNS TO VB DT NN CC PRP$ NN .\nPaul Sisco reports .\tNNP NNP VBZ .\nIranian media report that inspectors from the U.N. International Atomic Energy Agency will travel to Iran early next month .\tJJ NNS VBP IN NNS IN DT NNP NNP NNP NNP NNP MD VB TO NNP RB JJ NN .\nNews reports Saturday quote an unnamed Iranian official as saying a delegation will visit on August 6 to discuss technical issues and regulations .\tNNP NNS NNP VBP DT JJ JJ NN IN VBG DT NN MD VB IN NNP CD TO VB JJ NNS CC NNS .\nSeparately , the United Nations ' nuclear agency is set to inspect Iran 's heavy water nuclear reactor in a matter of days .\tRB , DT NNP NNPS POS JJ NN VBZ VBN TO VB NNP POS JJ NN JJ NN IN DT NN IN NNS .\nThat reactor is under construction in the industrial city of Arak .\tDT NN VBZ IN NN IN DT JJ NN IN NNP .\nIt will produce plutonium once it is completed .\tPRP MD VB NN RB PRP VBZ VBN .\nEnriched plutonium and uranium can be used to build nuclear weapons .\tVBN NN CC NN MD VB VBN TO VB JJ NNS .\nThe U.N. Security Council has imposed two sets of sanctions on Iran because of its refusal to suspend uranium enrichment .\tDT NNP NNP NNP VBZ VBN CD NNS IN NNS IN NNP IN IN PRP$ NN TO VB NN NN .\nThe United States and its Western allies accuse Iran of trying to develop nuclear weapons , but Iran says its atomic program is for peaceful purposes .\tDT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS , CC NNP VBZ PRP$ JJ NN VBZ IN JJ NNS .\nInsurgents have launched two deadly attacks against Shi'ites in Iraq , just hours after U.S. Secretary of Defense Donald Rumsfeld paid a surprise visit to American troops in the country .\tNNS VBP VBN CD JJ NNS IN NNS IN NNP , RB NNS IN NNP NNP IN NNP NNP NNP VBD DT NN NN TO JJ NNS IN DT NN .\nIn the first attack , gunmen entered a bakery in a mainly Shi'ite neighborhood in Baghdad , killing at least nine people .\tIN DT JJ NN , NNS VBD DT NN IN DT RB JJ NN IN NNP , VBG IN JJS CD NNS .\nA short time later , a car bomb exploded outside a Shi'ite mosque in the town of Balad Ruz , northeast of Baghdad .\tDT JJ NN RB , DT NN NN VBD IN DT NNP NN IN DT NN IN NNP NNP , NN IN NNP .\nAbu Musab al-Zarqawi 's group claimed responsibility for that blast that killed 13 and injured 23 others .\tNNP NNP NNP POS NN VBD NN IN DT NN WDT VBD CD CC VBD CD NNS .\nAn American soldier was also killed when a bomb exploded in western Baghdad .\tDT JJ NN VBD RB VBN WRB DT NN VBD IN JJ NNP .\nThe violence came as Mr. Rumsfeld visited U.S. troops in Mosul and Baghdad .\tDT NN VBD IN NNP NNP VBD NNP NNS IN NNP CC NNP .\nHe also observed Iraqi police and special forces perform training exercises , before he met with Iraqi interim Prime Minister Iyad Allawi .\tPRP RB VBD JJ NN CC JJ NNS VBP NN NNS , IN PRP VBD IN JJ JJ NNP NNP NNP NNP .\nNigerian authorities say kidnappers have released a Polish oil worker seized last week in the country 's restive Niger Delta region .\tJJ NNS VBP NNS VBP VBN DT JJ NN NN VBN JJ NN IN DT NN POS JJ NNP NNP NN .\nThe officials say the Polish national was released late Sunday .\tDT NNS VBP DT JJ NN VBD VBN JJ NNP .\nHe was seized Thursday by six gunmen near the southern city of Warri .\tPRP VBD VBN NNP IN CD NNS IN DT JJ NN IN NNP .\nAbduction for ransom or to press political demands is frequent in the oil-rich Niger Delta .\tNN IN NN CC TO VB JJ NNS VBZ JJ IN DT NN NNP NNP .\nIn all , more than 100 foreign oil workers have been kidnapped in the region this year .\tIN DT , JJR IN CD JJ NN NNS VBP VBN VBN IN DT NN DT NN .\nMost have been released unharmed , often after a payment of ransom .\tJJS VBP VBN VBN JJ , RB IN DT NN IN NN .\nSome kidnappings have been carried out by criminal gangs , while others are the work of militants who want impoverished local villages to get more of the region 's oil wealth .\tDT NNS VBP VBN VBN RP IN JJ NNS , IN NNS VBP DT NN IN NNS WP VBP JJ JJ NNS TO VB JJR IN DT NN POS NN NN .\nThe attacks on the oil industry have caused Nigeria to cut oil production by almost 25 percent .\tDT NNS IN DT NN NN VBP VBN NNP TO VB NN NN IN RB CD NN .\nU.S. Treasury officials have frozen the assets of an Ohio-based nonprofit group because they say it has ties to the Palestinian militant organization Hamas .\tNNP NNP NNS VBP VBN DT NNS IN DT JJ JJ NN IN PRP VBP PRP VBZ NNS TO DT JJ JJ NN NNP .\nOfficials said Sunday that the group named KindHearts has coordinated with Hamas leaders and has ties to two other U.S.-based charities accused of links to terrorism .\tNNS VBD NNP IN DT NN VBN NNP VBZ VBN IN NNP NNS CC VBZ NNS TO CD JJ JJ NNS VBN IN NNS TO NN .\nThose groups were shut down by U.S. officials in late 2001 .\tDT NNS VBD VBN RP IN NNP NNS IN JJ CD .\nKindHearts describes itself on its Web site as a nonprofit charitable organization administering humanitarian aid to the world 's poor .\tNNP VBZ PRP IN PRP$ NNP NN IN DT JJ JJ NN VBG JJ NN TO DT NN POS NN .\nKindHearts officials have not commented on the alleged links to terrorism .\tNNP NNS VBP RB VBN IN DT JJ NNS TO NN .\nHamas dominated recent Palestinian elections , but U.S. officials regard it as a terrorist organization .\tNNP VBD JJ JJ NNS , CC NNP NNS VBP PRP IN DT JJ NN .\nThe group refuses to recognize Israel 's right to exist and has organized suicide attacks against Israeli targets in the past .\tDT NN VBZ TO VB NNP POS NN TO VB CC VBZ VBN NN NNS IN JJ NNS IN DT NN .\nChina says it has designated three parks in outlying parts of Beijing to be used for public protests during the Olympic Games next month .\tNNP VBZ PRP VBZ VBN CD NNS IN VBG NNS IN NNP TO VB VBN IN JJ NNS IN DT NNP NNPS JJ NN .\nChina 's head of Olympic security , Liu Shaowu , made the announcement Wednesday at a news conference .\tNNP POS NN IN NNP NN , NNP NNP , VBD DT NN NNP IN DT NN NN .\nHe said protesters may stage demonstrations if they apply to the government for a permit and are approved .\tPRP VBD NNS MD VB NNS IN PRP VBP TO DT NN IN DT NN CC VBP VBN .\nHe did not answer questions about whether foreigners could protest in the parks , or whether there would be restrictions on what people could protest about .\tPRP VBD RB VB NNS IN IN NNS MD VB IN DT NNS , CC IN EX MD VB NNS IN WP NNS MD VB RB .\nThe city of Athens , Greece , designated such protest areas when it hosted the Olympic Games in 2004 .\tDT NN IN NNP , NNP , VBN JJ NN NNS WRB PRP VBD DT NNP NNPS IN CD .\nThe International Olympic Committee bars demonstrations at Olympic venues .\tDT NNP NNP NNP VBZ NNS IN NNP NNS .\nThe international portion of the Olympic torch relay was marred in some cities earlier this year by protests against China 's rule in Tibet .\tDT JJ NN IN DT NNP NN NN VBD VBN IN DT NNS RBR DT NN IN NNS IN NNP POS NN IN NNP .\nChildhood obesity affects children in most countries in the world according to the International Obesity Task Force .\tNNP NN VBZ NNS IN JJS NNS IN DT NN VBG TO DT NNP NNP NNP NNP .\nNow , a new study shows that one of the most effective ways of preventing obesity -- exercise -- is something children are not getting enough of .\tRB , DT JJ NN VBZ IN CD IN DT RBS JJ NNS IN VBG NN : NN : VBZ DT NNS VBP RB VBG RB IN .\nVOA 's Carol Pearson reports .\tNNP POS NNP NNP VBZ .\nThe last Australian aid agency operating in Iraq says it is pulling out .\tDT JJ JJ NN NN VBG IN NNP VBZ PRP VBZ VBG RP .\nWorld Vision Australia chief Tim Costello says the situation in Iraq is too dangerous for its staff to remain .\tNNP NNP NNP NN NNP NNP VBZ DT NN IN NNP VBZ RB JJ IN PRP$ NN TO VB .\nHe says the work the organization has been doing in Iraq will be handed over to local officials and any unspent funds will be returned to donors .\tPRP VBZ DT NN DT NN VBZ VBN VBG IN NNP MD VB VBN IN TO JJ NNS CC DT JJ NNS MD VB VBN TO NNS .\nMr. Costello says the agency made the decision to leave Iraq before the apparent murder of international aid worker Margaret Hassan .\tNNP NNP VBZ DT NN VBD DT NN TO VB NNP IN DT JJ NN IN JJ NN NN NNP NNP .\nWorld Vision Australia 's Iraqi head of operations , Mohammed Hushiar , was killed in late September in the northern city of Mosul .\tNNP NNP NNP POS JJ NN IN NNS , NNP NNP , VBD VBN IN JJ NNP IN DT JJ NN IN NNP .\nA published report says the Bush administration is pressing Iraqi leaders to end their political stalemate and form a new government .\tDT JJ NN VBZ DT NNP NN VBZ VBG JJ NNS TO VB PRP$ JJ NN CC VB DT JJ NN .\nThe New York Times newspaper says Secretary of State Condoleezza Rice telephoned Iraq 's President Jalal Talabani on Friday to urge that the government be formed as soon as possible .\tDT NNP NNP NNP NN VBZ NNP IN NNP NNP NNP VBD NNP POS NNP NNP NNP IN NNP TO VB IN DT NN VB VBN RB RB IN JJ .\nIt says Ms. Rice and Vice President Dick Cheney conveyed the same message in a White House meeting with Adil Abdul Mahdi , a leading Shi'ite politician named as one of the new Iraqi vice presidents .\tPRP VBZ NNP NNP CC NNP NNP NNP NNP VBD DT JJ NN IN DT NNP NNP NN IN NNP NNP NNP , DT VBG NNP NN VBN IN CD IN DT JJ JJ NN NNS .\nU.S. officials have said repeatedly that Iraqis must form their own government without American intervention .\tNNP NNS VBP VBN RB IN NNS MD VB PRP$ JJ NN IN JJ NN .\nBut efforts to name a new cabinet in Baghdad have failed , although nearly three months have passed since the Iraqi elections .\tCC NNS TO VB DT JJ NN IN NNP VBP VBN , IN RB CD NNS VBP VBN IN DT JJ NNS .\nMany Iraqis blame the political turmoil for a recent upsurge in violence .\tJJ NNS VBP DT JJ NN IN DT JJ NN IN NN .\nIsraeli Prime Minister Ehud Olmert is scheduled to meet with Palestinian President Mahmoud Abbas Wednesday in Jerusalem .\tJJ NNP NNP NNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP NNP IN NNP .\nPalestinian negotiator Saeb Erekat said the talks will focus on permanent-status issues , Israeli checkpoints and the fate of Palestinian prisoners .\tJJ NN NNP NNP VBD DT NNS MD VB IN JJ NNS , JJ NNS CC DT NN IN JJ NNS .\nThe meeting , at Mr. Olmert 's official residence , will be the first between the two since Mr. Olmert announced that he will step down after his Kadima Party chooses a new leader in September .\tDT NN , IN NNP NNP POS JJ NN , MD VB DT NN IN DT CD IN NNP NNP VBD IN PRP MD VB RB IN PRP$ NNP NNP VBZ DT JJ NN IN NNP .\nThe two leaders re-started peace talks in November with the goal of reaching a deal by this year 's end .\tDT CD NNS JJ NN NNS IN NNP IN DT NN IN VBG DT NN IN DT NN POS NN .\nAuthorities in Afghanistan say nine Afghan soldiers and 10 Taleban rebels have been killed in two separate ambushes in the country 's restive south .\tNNS IN NNP VBP CD JJ NNS CC CD NNP NNS VBP VBN VBN IN CD JJ NNS IN DT NN POS JJ NN .\nA provincial government official says suspected Taleban rebels attacked the soldiers late Thursday when they were on patrol in the remote Chakul area of southern Helmand province .\tDT JJ NN NN VBZ JJ NNP NNS VBD DT NNS JJ NNP WRB PRP VBD IN NN IN DT JJ NNP NN IN JJ NNP NN .\nLater , a person claiming to be a Taleban spokesman claimed responsibility for the attack .\tRB , DT NN VBG TO VB DT NNP NN VBD NN IN DT NN .\nThe U.S. military said 10 Taleban rebels also were killed Thursday during a U.S. helicopter raid in southeastern Khost province after five Afghan soldiers were wounded in an ambush .\tDT NNP NN VBD CD NNP NNS RB VBD VBN NNP IN DT NNP NN NN IN JJ NNP NN IN CD JJ NNS VBD VBN IN DT NN .\nTaleban activity has eased during the harshest Afghan winter in decades , but officials believe upcoming warmer weather will result in a renewed surge of violence .\tNNP NN VBZ VBN IN DT JJS JJ NN IN NNS , CC NNS VBP VBG JJR NN MD VB IN DT JJ NN IN NN .\nBritain 's defense ministry has defended its decision to allow the sailors and marines freed by Iran last week to sell their stories - a reversal of usual policy .\tNNP POS NN NN VBZ VBN PRP$ NN TO VB DT NNS CC NNS VBN IN NNP JJ NN TO VB PRP$ NNS IN DT NN IN JJ NN .\nOn Sunday , the ministry said that huge public interest made the circumstances exceptional .\tIN NNP , DT NN VBD IN JJ JJ NN VBD DT NNS JJ .\nMembers of the opposition Conservative Party immediately challenged the decision .\tNNS IN DT NN NNP NNP RB VBD DT NN .\nMany families of British troops killed in Iraq and Afghanistan have also said they find the decision distasteful .\tJJ NNS IN JJ NNS VBN IN NNP CC NNP VBP RB VBD PRP VBP DT NN NN .\nThe two officers among the 15 service members detained in Iran for 13 days have said they have chosen not to profit from stories of their captivity , but others in the group have reportedly made lucrative deals with British media .\tDT CD NNS IN DT CD NN NNS VBN IN NNP IN CD NNS VBP VBN PRP VBP VBN RB TO VB IN NNS IN PRP$ NN , CC NNS IN DT NN VBP RB VBN JJ NNS IN JJ NNS .\nSeveral of the the former captives have said they were mistreated during their detention .\tNN IN DT DT JJ NNS VBP VBN PRP VBD VBN IN PRP$ NN .\nHowever , a video released Monday , by Iran shows the sailors and marines relaxing and socializing during their captivity .\tRB , DT NN VBN NNP , IN NNP VBZ DT NNS CC NNS VBG CC VBG IN PRP$ NN .\nThe weather in the western U.S. state of California has helped firefighters gain greater control of a massive wildfire that is burning near the populous city of Santa Barbara .\tDT NN IN DT JJ NNP NN IN NNP VBZ VBN NNS VB JJR NN IN DT JJ NN WDT VBZ VBG IN DT JJ NN IN NNP NNP .\nFire officials said the winds were calmer overnight and a dense fog rolled in Saturday morning helping firefighters gain control of 30 percent of the blaze , compared to 10 percent on Friday .\tNN NNS VBD DT NNS VBD JJR JJ CC DT NN NN VBD IN NNP NN VBG NNS VB NN IN CD NN IN DT NN , VBN TO CD NN IN NNP .\nAuthorities said the fire has burned 35 square kilometers and has damaged 80 homes in the area known for its large mansions and scenic ocean views .\tNNS VBD DT NN VBZ VBN CD JJ NNS CC VBZ VBN CD NNS IN DT NN VBN IN PRP$ JJ NNS CC JJ NN NNS .\nBefore now , strong overnight winds and dry conditions had been making it difficult to keep the blaze from spreading .\tIN RB , JJ JJ NNS CC JJ NNS VBD VBN VBG PRP JJ TO VB DT NN IN VBG .\nThe fire , which began on May 5 , has forced the evacuation of more than 30,000 .\tDT NN , WDT VBD IN NNP CD , VBZ VBN DT NN IN JJR IN CD .\nMore than 4,200 personnel are battling the wildfire .\tJJR IN CD NNS VBP VBG DT NN .\nA top aide to Iraqi Prime Minister Nouri al-Maliki says the government has launched an inquiry into the conduct of the execution of Saddam Hussein and how it was secretly filmed and distributed .\tDT JJ NN TO JJ NNP NNP NNP NNP VBZ DT NN VBZ VBN DT NN IN DT NN IN DT NN IN NNP NNP CC WRB PRP VBD RB VBN CC VBN .\nThe official execution tape , which had no sound , showed the former dictator being led to the gallows but not his actual hanging .\tDT JJ NN NN , WDT VBD DT NN , VBD DT JJ NN VBG VBN TO DT NNS CC RB PRP$ JJ NN .\nHowever , video captured on a mobile phone camera showed footage and sound of Saddam being taunted and then dropping to his death .\tRB , NN VBD IN DT JJ NN NN VBD NN CC NN IN NNP VBG VBN CC RB VBG TO PRP$ NN .\nIn the mobile phone footage , one person can be heard shouting ' Moqtada , ' the name of a radical Shi'ite cleric and opponent of Saddam .\tIN DT JJ NN NN , CD NN MD VB VBN VBG `` NNP , `` DT NN IN DT JJ NNP NN CC NN IN NNP .\nThe unauthorized video has caused anger among many Saddam supporters , who say it shows that the execution was a sectarian act against the deposed Sunni Arab leader .\tDT JJ NN VBZ VBN NN IN JJ NNP NNS , WP VBP PRP VBZ IN DT NN VBD DT JJ NN IN DT VBN NNP NNP NN .\nTuesday , Sunni Arab mourners in Saddam 's hometown Tikrit and other cities marched to pay their respects to the former dictator .\tNNP , NNP NNP NNS IN NNP POS NN NN CC JJ NNS VBD TO VB PRP$ NNS TO DT JJ NN .\nLocal officials in Afghanistan 's northeastern Nuristan Province say three Afghans who had been kidnapped earlier in the week have been found unharmed .\tJJ NNS IN NNP POS JJ NNP NNP VBP CD NNS WP VBD VBN VBN RBR IN DT NN VBP VBN VBN JJ .\nThe three had been reported abducted from a house in the Kamdesh district of Nuristan Province .\tDT CD VBD VBN VBN VBN IN DT NN IN DT NNP NN IN NNP NNP .\nAt least two of the three Afghans were election workers .\tIN JJS CD IN DT CD NNS VBD NN NNS .\nNo further details were immediately available .\tDT JJ NNS VBD RB JJ .\nMore than three years after a U.S.-led coalition ousted the Taleban regime , loyalists are waging an escalating guerrilla campaign ahead of Afghanistan 's September parliamentary vote .\tJJR IN CD NNS IN DT JJ NN VBD DT NNP NN , NNS VBP VBG DT VBG NN NN RB IN NNP POS NNP JJ NN .\nIn recent days in Kandahar Province , a judge and a district administrator were killed in attacks believed to have been carried out by insurgents .\tIN JJ NNS IN NNP NNP , DT NN CC DT NN NN VBD VBN IN NNS VBN TO VB VBN VBN RP IN NNS .\nMore than 700 people have been killed in the violence this year .\tJJR IN CD NNS VBP VBN VBN IN DT NN DT NN .\nWorld famous Russian cellist and conductor , Mstislav Rostropovich , who appeared frail at his 80th birthday celebration last month , has been hospitalized in Moscow for the second time this year .\tNNP JJ JJ NN CC NN , NNP NNP , WP VBD NN IN PRP$ JJ NN NN JJ NN , VBZ VBN VBN IN NNP IN DT JJ NN DT NN .\nA spokesman for the cellist said Thursday he is undergoing routine treatment .\tDT NN IN DT NN VBD NNP PRP VBZ VBG JJ NN .\nFollowing his earlier hospitalization in February , Russian news media reported that he was being treated for cancer .\tVBG PRP$ JJR NN IN NNP , JJ NN NNS VBD IN PRP VBD VBG VBN IN NN .\nAt the time , Russian President Vladimir Putin visited the hospital to confer a medal honoring Rostropovich for his extraordinary achievements in music .\tIN DT NN , JJ NNP NNP NNP VBD DT NN TO VB DT JJ NN NNP IN PRP$ JJ NNS IN NN .\nRostropovich and his wife , soprano Galina Vishnevskaya , left the Soviet Union in 1974 in response to political persecution .\tNNP CC PRP$ NN , NN NNP NNP , VBD DT NNP NNP IN CD IN NN TO JJ NN .\nThey returned to Russia after the fall of the Soviet Union and are running a charitable organization aiding orphaned children .\tPRP VBD TO NNP IN DT NN IN DT NNP NNP CC VBP VBG DT JJ NN VBG VBN NNS .\nThe U.S. Internet giant Google is planning to install solar panels at its headquarters in the western state of California to run some of its operations with energy from the sun .\tDT NNP NN NN NNP VBZ VBG TO VB JJ NNS IN PRP$ NN IN DT JJ NN IN NNP TO VB DT IN PRP$ NNS IN NN IN DT NN .\nThe leading Internet search engine says it will install enough solar grids at its complex in Mountain View , California to generate 1.6 megawatts of electricity .\tDT VBG NNP NN NN VBZ PRP MD VB RB JJ NNS IN PRP$ NN IN NNP NNP , NNP TO VB CD NNS IN NN .\nThat 's enough energy to light up about 1,000 California homes .\tDT VBZ JJ NN TO VB RP IN CD NNP NNS .\nThe company hopes the sun will produce 30 percent of the power needed to run its 93,000 square meter complex .\tDT NN VBZ DT NN MD VB CD NN IN DT NN VBN TO VB PRP$ CD JJ NN NN .\nGoogle says it wants to set an example that renewable energy can be profitable .\tNNP VBZ PRP VBZ TO VB DT NN IN JJ NN MD VB JJ .\nThe Israeli parliament has rejected a bill calling for a national referendum on Prime Minister Ariel Sharon 's plan to evacuate settlers and troops from the Gaza Strip and four small West Bank enclaves later this year .\tDT JJ NN VBZ VBN DT NN VBG IN DT JJ NN IN NNP NNP NNP NNP POS NN TO VB NNS CC NNS IN DT NNP NNP CC CD JJ NNP NNP NNS RBR DT NN .\nMonday 's vote of 72-39 all but ends attempts by withdrawal opponents to derail the Gaza pullout .\tNNP POS NN IN CD DT CC VBZ NNS IN NN NNS TO VB DT NNP NN .\nUnder the withdrawal plan , all 21 Jewish settlements in Gaza are to be evacuated , along with four of 120 settlements in the occupied West Bank .\tIN DT NN NN , DT CD JJ NNS IN NNP VBP TO VB VBN , IN IN CD IN CD NNS IN DT JJ NNP NNP .\nA referendum would have delayed the withdrawal for months from its July starting date .\tDT NN MD VB VBN DT NN IN NNS IN PRP$ NNP NN NN .\nMeanwhile , Israeli troops raided the West Bank Palestinian town of Jenin today , arresting eight accused members of Islamic Jihad .\tRB , JJ NNS VBD DT NNP NNP JJ NN IN NNP NN , VBG CD VBN NNS IN NNP NNP .\nThe Israeli army alleges the suspects were making crude rockets and mortars for future attacks .\tDT JJ NN VBZ DT NNS VBD VBG JJ NNS CC NNS IN JJ NNS .\nPopular American tennis star Andre Agassi has been knocked out of the quarterfinals at the Delray Beach International in Florida .\tJJ JJ NN NN NNP NNP VBZ VBN VBN IN IN DT NNS IN DT NNP NNP NNP IN NNP .\nThe top seed and former world number one lost in straight sets Friday to Spain 's Guillermo Garcia-Lopez , 06-Apr , 06-Feb .\tDT JJ NN CC JJ NN NN CD VBN IN JJ NNS NNP TO NNP POS NNP NNP , CD , CD .\nThe Spaniard next takes on defending champion Xavier Malisse of Belgium in the semifinals .\tDT NN NN VBZ IN VBG JJ NNP NNP IN NNP IN DT NNS .\nThe third-seeded Malisse rallied after dropping the first set to eliminate sixth-seeded Florian Mayer of Germany 06-Jul , 06-Feb , 06-Mar .\tDT JJ NNP VBD IN VBG DT JJ NN TO VB JJ NNP NNP IN NNP CD , CD , CD .\nMeanwhile , fourth-seeded Tommy Haas of Germany beat Luxembourg 's Gilles Muller in straight sets ( 06-Mar , 06-Feb ) .\tRB , JJ NNP NNP IN NNP VBD NNP POS NNP NNP IN JJ NNS LRB CD , CD RRB .\nHaas next plays eighth-seeded American Vince Spadea , a straight-sets winner over Lee Hyung-taik of South Korea ( 06-Mar , 06-Mar ) .\tNNP RB VBZ JJ JJ NNP NNP , DT JJ NN IN NNP NNP IN NNP NNP LRB CD , CD RRB .\nUnited Nations investigators have begun questioning top Syrian officials about the assassination of former Lebanese Prime Minister Rafik Hariri .\tNNP NNPS NNS VBP VBN VBG JJ JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP .\nDiplomatic sources say five Syrian officials are being questioned at U.N. offices in Vienna .\tJJ NNS VBP CD JJ NNS VBP VBG VBN IN NNP NNS IN NNP .\nThe interviews are expected to continue until Wednesday .\tDT NNS VBP VBN TO VB IN NNP .\nThe sources say the suspects arrived in the Austrian capital late Sunday .\tDT NNS VBP DT NNS VBD IN DT JJ NN JJ NNP .\nDamascus recently agreed to allow its officials to be questioned outside Syria .\tNNP RB VBD TO VB PRP$ NNS TO VB VBN IN NNP .\nSyria denies any involvement in the February 14 bombing in Beirut that killed Mr. Hariri and 20 other people .\tNNP VBZ DT NN IN DT NNP CD VBG IN NNP WDT VBD NNP NNP CC CD JJ NNS .\nHowever , a report by a U.N. commission in October implicated top Syrian and Lebanese officials .\tRB , DT NN IN DT NNP NN IN NNP VBD JJ JJ CC JJ NNS .\nThe U.N. Security Council has warned Syria to cooperate fully with the probe or face consequences .\tDT NNP NNP NNP VBZ VBN NNP TO VB RB IN DT NN CC VB NNS .\nEarlier this year , Syria was forced to withdraw its troops from Lebanon under intense domestic and international pressure .\tRBR DT NN , NNP VBD VBN TO VB PRP$ NNS IN NNP IN JJ JJ CC JJ NN .\nAides to U.S. Senator - and former first lady - Hillary Rodham Clinton have confirmed that the New~York senator has invited supporters from the state of Iowa to her Washington , D.C. home for a private political fundraising event .\tNNS TO NNP NNP : CC JJ JJ NN : NNP NNP NNP VBP VBN IN DT NNP NN VBZ VBN NNS IN DT NN IN NNP TO PRP$ NNP , NNP NN IN DT JJ JJ NN NN .\nSenator Clinton is facing re-election in New York in 2006 , but the invitation of Iowa supporters raises speculation that a 2008 bid for the U.S. presidency is likely .\tNNP NNP VBZ VBG NN IN NNP NNP IN CD , CC DT NN IN NNP NNS VBZ NN IN DT CD NN IN DT NNP NN VBZ JJ .\nIowa is traditionally the first state to hold political caucuses in which candidates from the same party compete against each other for their party 's presidential nomination .\tNNP VBZ RB DT JJ NN TO VB JJ NNS IN WDT NNS IN DT JJ NN VBP IN DT NN IN PRP$ NN POS JJ NN .\nMrs. Clinton 's former national finance director from her 2000 Senate campaign is currently on trial in Los Angeles federal court on charges he lied to regulators about the cost of a lavish Hollywood fundraiser .\tNNP NNP POS JJ JJ NN NN IN PRP$ CD NNP NN VBZ RB IN NN IN NNP NNP JJ NN IN NNS PRP VBD TO NNS IN DT NN IN DT JJ NNP NN .\nNeither Mrs. Clinton nor her husband , the former president , are accused of any wrongdoing .\tDT NNP NNP CC PRP$ NN , DT JJ NN , VBP VBN IN DT NN .\nBurmese pro-democracy leader Aung San Suu Kyi met Saturday with a top United Nations official .\tJJ JJ NN NNP NNP NNP NNP VBD NNP IN DT JJ NNP NNP NN .\nAung San Suu Kyi spoke to reporters Saturday at her lakeside home in Rangoon , and praised the talks with Vijay Nambiar , chief of staff for U.N. Secretary-General Ban Ki-moon .\tNNP NNP NNP NNP VBD TO NNS NNP IN PRP$ NN NN IN NNP , CC VBD DT NNS IN NNP NNP , NN IN NN IN NNP NNP NNP NNP .\nThe 65-year-old Nobel peace prize laureate has been vocal about pursuing democratic reforms since her release November 13 from more than seven years of house arrest .\tDT JJ NNP NN NN NN VBZ VBN JJ IN VBG JJ NNS IN PRP$ NN NNP CD IN JJR IN CD NNS IN NN NN .\nBut she has also been careful not to verbally challenge Burma 's ruling generals .\tCC PRP VBZ RB VBN JJ RB TO RB VB NNP POS NN NNS .\nNambiar also met Saturday with Burma 's foreign minister .\tNNP RB VBD NNP IN NNP POS JJ NN .\nHe also planned to meet with diplomats and recently-elected lawmakers .\tPRP RB VBD TO VB IN NNS CC JJ NNS .\nPakistani officials say security forces have arrested at least three al-Qaida suspects after a gunfight near the Afghan border .\tJJ NNS VBP NN NNS VBP VBN IN JJS CD NNP NNS IN DT NN IN DT JJ NN .\nThey say police opened fire Monday on a car carrying the suspects outside the northwestern city of Peshawar and forced it to stop .\tPRP VBP NNS VBD NN NNP IN DT NN VBG DT NNS IN DT JJ NN IN NNP CC VBD PRP TO VB .\nReports say one of the suspects escaped while the others were arrested .\tNNS VBP CD IN DT NNS VBD IN DT NNS VBD VBN .\nThis comes less than a week after Pakistani officials said a senior al-Qaida explosives expert was killed in a raid on a suspected insurgent hideout in the tribal region of North Waziristan bordering Afghanistan .\tDT VBZ JJR IN DT NN IN JJ NNS VBD DT JJ NNP NNS NN VBD VBN IN DT NN IN DT JJ JJ NN IN DT JJ NN IN NNP NNP VBG NNP .\nEgyptian-born Muhsin Musa Matwali Atwah was wanted in connection with the 1998 bombings of the U.S. embassies in Kenya and Tanzania .\tJJ NNP NNP NNP NNP VBD VBN IN NN IN DT CD NNS IN DT NNP NNS IN NNP CC NNP .\nThe United States offered a $ 5 million reward for his capture .\tDT NNP NNPS VBD DT $ CD CD NN IN PRP$ NN .\nSix other Islamic militants were killed in the raid .\tCD JJ JJ NNS VBD VBN IN DT NN .\nRebels in eastern Sudan say government war planes have been bombing a rebel area near the border with Eritrea , wounding several people .\tNNS IN JJ NNP VBP NN NN NNS VBP VBN VBG DT NN NN IN DT NN IN NNP , VBG JJ NNS .\nA spokesman with rebels known as the Eastern Front said Friday , the bombing began Thursday in the Barka Valley region near the town of Tokar , 120 kilometers south Port Sudan on the Red Sea .\tDT NN IN NNS VBN IN DT NNP NNP VBD NNP , DT NN VBD NNP IN DT NNP NNP NN IN DT NN IN NNP , CD NNS JJ NNP NNP IN DT NNP NNP .\nThe French news agency quotes a rebel spokesman as saying many civilians have been injured by the bombs , and much livestock has been killed .\tDT JJ NN NN VBZ DT NN NN IN VBG JJ NNS VBP VBN VBN IN DT NNS , CC RB NN VBZ VBN VBN .\nHe says the bombings continue Friday .\tPRP VBZ DT NNS VBP NNP .\nThere has been no independent verification of the air strikes .\tEX VBZ VBN DT JJ NN IN DT NN NNS .\nFighting broke out between the rebels and government troops near Tokar early this week .\tNN VBD RP IN DT NNS CC NN NNS IN NNP RB DT NN .\nTwo Sudanese rebel factions joined forces in February to form the Eastern Front .\tCD JJ NN NNS VBD NNS IN NNP TO VB DT NNP NNP .\nPope Benedict XVI has visited the Italian city of L'Aquilla and other central Italian locales devastated earlier this month by a deadly earthquake .\tNNP NNP NNP VBZ VBN DT JJ NN IN NNP CC JJ JJ JJ NNS VBN RBR DT NN IN DT JJ NN .\nThe pontiff Tuesday visited several sites in L'Aquilla , a medieval walled city of 70,000 residents .\tDT NN NNP VBD JJ NNS IN NNP , DT JJ JJ NN IN CD NNS .\nHis stops included the site of a partially-collapsed college dormitory , and the ruins of the 13th century Santa Maria di Collemaggio basilica .\tPRP$ NNS VBD DT NN IN DT JJ NN NN , CC DT NNS IN DT JJ NN NNP NNP NNP NNP NN .\nSpeaking to survivors , he called for ' an examination of conscience ' by builders and inspectors accused of shoddy construction practices linked to the collapse of numerous buildings .\tVBG TO NNS , PRP VBD IN `` DT NN IN NN `` IN NNS CC NNS VBN IN JJ NN NNS VBN TO DT NN IN JJ NNS .\nBenedict earlier visited the village of Onna , where 40 of 300 residents perished .\tNNP RB VBD DT NN IN NNP , WRB CD IN CD NNS VBN .\nThe 6.4 magnitude quake on April 6 reduced large sections of the Abruzzo region to rubble .\tDT CD NN NN IN NNP CD VBD JJ NNS IN DT NNP NN TO NN .\nThe Italian government has earmarked more than $ 10 billion for reconstruction in the region .\tDT JJ NN VBZ VBN JJR IN $ CD CD IN NN IN DT NN .\nExperts say it will take about $ 16 billion to rebuild the area .\tNNS VBP PRP MD VB RB $ CD CD TO VB DT NN .\nThe top U.S. military commander in Afghanistan says Taleban insurgents could stage a high-profile attack over the next six to nine months , despite what he called their more limited ' terrorist capabilities . '\tDT JJ NNP JJ NN IN NNP VBZ NNP NNS MD VB DT JJ NN IN DT JJ CD CC CD NNS , IN WP PRP VBD PRP$ JJR JJ `` JJ NNS . ``\nLieutenant General David Barno told reporters Saturday the Taleban fighters are becoming more desperate to ' change the course of events in Afghanistan . '\tNN NNP NNP NNP VBD NNS NNP DT NNP NNS VBP VBG RBR JJ TO `` VB DT NN IN NNS IN NNP . ``\nGeneral Barno said he expects a small hard-core remnant of the Taleban to continue fighting even as the group 's military strength fades away .\tNNP NNP VBD PRP VBZ DT JJ JJ NN IN DT NNP TO VB VBG RB IN DT NN POS JJ NN VBZ RB .\nAfghanistan is scheduled to hold parliamentary elections on September 18 , a little less than one year after the country 's first direct and democratic presidential elections .\tNNP VBZ VBN TO VB JJ NNS IN NNP CD , DT RB JJR IN CD NN IN DT NN POS JJ JJ CC JJ JJ NNS .\nThree world leaders who had key roles in the reunification of Germany gathered Saturday to share their memories of the collapse of the Berlin Wall .\tCD NN NNS WP VBD JJ NNS IN DT NN IN NNP VBD NNP TO VB PRP$ NNS IN DT NN IN DT NNP NNP .\nGermany 's ex-chancellor Helmut Kohl , former U.S. president George Herbert Walker Bush , and former Soviet leader Mikhail Gorbachev were honored at a gathering in Berlin for their efforts in reunifying Germany .\tNNP POS NN NNP NNP , JJ NNP NN NNP NNP NNP NNP , CC JJ JJ NN NNP NNP VBD VBN IN DT NN IN NNP IN PRP$ NNS IN VBG NNP .\nFormer Chancellor Kohl now speaks with difficulty after a stroke and is confined to a wheelchair .\tJJ NN NNP RB VBZ IN NN IN DT NN CC VBZ VBN TO DT NN .\nHe said that although Germany 's history was not always proud , Germans should be proud of their country 's reunification .\tPRP VBD IN IN NNP POS NN VBD RB RB JJ , NNS MD VB JJ IN PRP$ NN POS NN .\nAt the close of World War II , Germany was divided into two separate countries governed under separate ideologies of democracy and communism .\tIN DT NN IN NNP NNP NNP , NNP VBD VBN IN CD JJ NNS VBN IN JJ NNS IN NN CC NN .\nThe wall was built starting in 1961 and came to symbolize the divide between the so-called Iron Curtain and the democratic West .\tDT NN VBD VBN VBG IN CD CC VBD TO VB DT NN IN DT JJ NNP NNP CC DT JJ NNP .\nThe wall was breached on November 9 , 1989 as a worldwide audience watched on live television .\tDT NN VBD VBN IN NNP CD , CD IN DT JJ NN VBN IN JJ NN .\nThousands of Icelanders marked the 90th anniversary of sovereignty from Denmark Monday by demanding the government resign over the country 's economic crisis .\tNNS IN NNS VBD DT JJ NN IN NN IN NNP NNP IN VBG DT NN VB IN DT NN POS JJ NN .\nHundreds of marchers tried to storm central bank headquarters in Reykjavik .\tNNS IN NNS VBD TO VB JJ NN NN IN NNP .\nThey left after a tense hour-long standoff with riot police .\tPRP VBD IN DT NN JJ NN IN NN NNS .\nThe global financial crisis has left Iceland 's economy in shambles .\tDT JJ JJ NN VBZ VBN NNP POS NN IN NNS .\nThree major banks have collapsed , unemployment has soared , and the value of the krona has plunged .\tCD JJ NNS VBP VBN , NN VBZ VBN , CC DT NN IN DT NN VBZ VBN .\nPrime Minister Geir Haarde has refused to resign or call for early elections .\tJJ NN NNP NNP VBZ VBN TO VB CC VB IN JJ NNS .\nHe blames Iceland 's economic calamity on commercial bankers .\tPRP VBZ NNP POS JJ NN IN JJ NNS .\nThe government was forced to ask the International Monetary Fund and several countries for a multi-billion-dollar loan .\tDT NN VBD VBN TO VB DT NNP NNP NNP CC JJ NNS IN DT JJ NN .\nGlobal health experts said cancer will become the leading cause of death in the world by 2010 , overtaking heart disease .\tJJ NN NNS VBD NN MD VB DT VBG NN IN NN IN DT NN IN CD , VBG NN NN .\nA World Health Organization report issued Tuesday said one factor behind cancer 's growing deadliness is rising cigarette smoking in developing countries .\tDT NNP NNP NNP NN VBN NNP VBD CD NN IN NN POS VBG NN VBZ VBG NN NN IN VBG NNS .\n40 percent of the world 's smokers are thought to live in China and India alone .\tCD NN IN DT NN POS NNS VBP VBN TO VB IN NNP CC NNP RB .\nThe WHO report said an estimated 12 million people will be diagnosed with some form of cancer this year .\tDT NNP NN VBD DT VBN CD CD NNS MD VB VBN IN DT NN IN NN DT NN .\nIt predicts that 7.6 million of them will die .\tPRP VBZ IN CD CD IN PRP MD VB .\nHealth experts predicted the number of people who die from cancer will soon be greater than deaths from AIDS , tuberculosis and malaria combined .\tNN NNS VBD DT NN IN NNS WP VBP IN NN MD RB VB JJR IN NNS IN NNP , NN CC NN VBN .\nThe WHO said the number of new cancer patients may rise to 27 million a year by 2030 , with 17 million people dying from the disease .\tDT NNP VBD DT NN IN JJ NN NNS MD VB TO CD CD DT NN IN CD , IN CD CD NNS VBG IN DT NN .\nA civil liberties group says it has obtained documents that allegedly show U.S. military forces tried to suppress reports about the abuse of Iraqi prisoners .\tDT JJ NNS NN VBZ PRP VBZ VBN NNS WDT RB VBP NNP JJ NNS VBD TO VB NNS IN DT NN IN JJ NNS .\nThe documents - released by the American Civil Liberties Union on Tuesday - say staff members of the Pentagon 's Defense Intelligence Agency ( DIA ) witnessed several incidents of abuse , including prisoners being assaulted , deprived of sleep and humiliated .\tDT NNS IN VBN IN DT NNP NNP NNPS NNP IN NNP : VBP NN NNS IN DT NNP POS NNP NNP NNP LRB NNP RRB VBD JJ NNS IN NN , VBG NNS VBG VBN , VBN IN NN CC VBN .\nThe documents also included complaints that DIA personnel had their e-mails monitored by special forces , and were ordered ' not to talk to anyone in the U.S. ' about what they witnessed .\tDT NNS RB VBD NNS IN NNP NNS VBD PRP$ NNS VBN IN JJ NNS , CC VBD VBN `` RB TO VB TO DT IN DT NNP `` IN WP PRP VBD .\nThe ACLU obtained the documents after a federal court ordered the Pentagon to comply with a year-old request under the U.S. Freedom of Information Act .\tDT NNP VBD DT NNS IN DT JJ NN VBD DT NNP TO VB IN DT JJ NN IN DT NNP NNP IN NNP NNP .\nGeorgian Prime Minister Zurab Zhvania says he supports democracy in Ukraine and hopes the upcoming Ukrainian presidential election will be free and fair .\tJJ NNP NNP NNP NNP VBZ PRP VBZ NN IN NNP CC VBZ DT VBG JJ JJ NN MD VB JJ CC JJ .\nMr. Zhvania , who is currently visiting the United States , made the comment Wednesday in an interview with the Voice of America .\tNNP NNP , WP VBZ RB VBG DT NNP NNPS , VBD DT NN NNP IN DT NN IN DT NNP IN NNP .\nHe also expressed satisfaction with his U.S. visit , which began Sunday , and says the United States has a great deal of interest in Georgia .\tPRP RB VBD NN IN PRP$ NNP NN , WDT VBD NNP , CC VBZ DT NNP NNPS VBZ DT JJ NN IN NN IN NNP .\nMr. Zhvania has met with a number of high-level U.S. officials , including National Security Advisor Condoleezza Rice .\tNNP NNP VBZ VBN IN DT NN IN JJ NNP NNS , VBG NNP NNP NNP NNP NNP .\nHe quoted Ms. Rice as saying that Washington recognizes Georgia 's territorial integrity in regards to Abkhazia , a pro-Russian enclave in Georgia that has run its own affairs since the early 1990s .\tPRP VBD NNP NNP IN VBG IN NNP VBZ NNP POS JJ NN IN NNS TO NNP , DT JJ NN IN NNP WDT VBZ VBN PRP$ JJ NNS IN DT JJ NNS .\nMr. Zhvania concludes his visit Thursday .\tNNP NNP VBZ PRP$ NN NNP .\nSouth Korean police detained a group of anti-Japanese protesters in Seoul Friday after stopping their attempt to hold a mock funeral for Japanese Prime Minister Junichiro Koizumi .\tJJ JJ NN VBD DT NN IN JJ NNS IN NNP NNP IN VBG PRP$ NN TO VB DT NN NN IN JJ NNP NNP NNP NNP .\nHundreds of riot police surrounded about 30 demonstrators who carried an empty coffin and Mr. Koizumi 's picture to a park near the Japanese embassy for the funeral .\tNNS IN NN NNS VBN IN CD NNS WP VBD DT JJ NN CC NNP NNP POS NN TO DT NN IN DT JJ NN IN DT NN .\nEarlier , the same group burned a coffin and an effigy of Japanese Ambassador Toshiyuki Takano in front of his residence .\tRB , DT JJ NN VBD DT NN CC DT NN IN JJ NN NNP NNP IN NN IN PRP$ NN .\nThey also fired flaming arrows , which failed to reach the house .\tPRP RB VBD VBG NNS , WDT VBD TO VB DT NN .\nAnti-Japanese sentiment runs high in South Korea over territorial claims both countries make to a group of small islands controlled by South Korea , and over Tokyo 's approval of history books that critics say downplay Japan 's wartime atrocities .\tJJ NN VBZ JJ IN NNP NNP IN JJ NNS DT NNS VBP TO DT NN IN JJ NNS VBN IN NNP NNP , CC IN NNP POS NN IN NN NNS IN NNS VBP NN NNP POS NN NNS .\nVenezuela 's defense minister says his country is considering building unmanned planes and may look to allied countries - such as Iran - for help .\tNNP POS NN NN VBZ PRP$ NN VBZ VBG VBG JJ NNS CC MD VB TO JJ NNS : JJ IN NNP : IN NN .\nDefense Minister General Raul Baduel said Monday in Caracas that Venezuela has made progress in the development of pilotless planes .\tNN NN NNP NNP NNP VBD NNP IN NNP IN NNP VBZ VBN NN IN DT NN IN JJ NNS .\nHe also said that Venezuela will look to other countries for help in maintaining its aging U.S.-made F-5 fighter jets .\tPRP RB VBD IN NNP MD VB TO JJ NNS IN NN IN VBG PRP$ NN JJ NN NN NNS .\nVenezuela has had trouble maintaining the planes since the United States began blocking arms sales to the South American country .\tNNP VBZ VBN NN VBG DT NNS IN DT NNP NNPS VBD VBG NNS NNS TO DT NNP NNP NN .\nIran 's foreign minister says nuclear talks remain stalled between his government and European negotiators .\tNNP POS JJ NN VBZ JJ NNS VBP VBN IN PRP$ NN CC JJ NNS .\nSpeaking to reporters Wednesday in Tehran , Kamal Kharrazi said Iran has always sought a short-term suspension of its uranium enrichment activities , but Britain , France and Germany are pressing for a permanent one .\tVBG TO NNS NNP IN NNP , NNP NNP VBD NNP VBZ RB VBN DT JJ NN IN PRP$ NN NN NNS , CC NNP , NNP CC NNP VBP VBG IN DT JJ CD .\nIran has suspended its enrichment activities as a good faith gesture during negotiations , but said it will decide in three months whether to continue the suspension .\tNNP VBZ VBN PRP$ NN NNS IN DT JJ NN NN IN NNS , CC VBD PRP MD VB IN CD NNS IN TO VB DT NN .\nHighly enriched uranium can be used to make fuel for nuclear weapons .\tRB VBN NN MD VB VBN TO VB NN IN JJ NNS .\nThe head of Iran 's Atomic Energy Organization , Gholamreza Aghazadeh , called on the Europeans to speed up the talks .\tDT NN IN NNP POS NNP NNP NNP , NNP NNP , VBD IN DT NNS TO VB RP DT NNS .\nIn remarks today , he expressed hope the negotiations would protect Iran 's scientific achievements , which he says the Islamic Republic will never give up .\tIN NNS NN , PRP VBD NN DT NNS MD VB NNP POS JJ NNS , WDT PRP VBZ DT NNP NNP MD RB VB RP .\nPresident Bush has declared a state of emergency for the Gulf Coast state of Louisiana , as it braces for the expected onslaught of Hurricane Katrina , set to make landfall on Monday .\tNNP NNP VBZ VBN DT NN IN NN IN DT NNP NNP NN IN NNP , IN PRP VBZ IN DT VBN NN IN NNP NNP , VBN TO VB NN IN NNP .\nSaturday 's emergency declaration authorizes federal officials to coordinate all disaster relief efforts and provide appropriate assistance in several Louisiana parishes .\tNNP POS NN NN VBZ JJ NNS TO VB DT NN NN NNS CC VB JJ NN IN JJ NNP NNS .\nHours earlier , Louisiana and neighboring Mississippi declared their own states of emergency in preparation for the storm , and evacuations of low-lying areas began .\tNNS RB , NNP CC JJ NNP VBD PRP$ JJ NNS IN NN IN NN IN DT NN , CC NNS IN JJ NNS VBD .\nOil rigs in the Gulf of Mexico were evacuated as well , as the 11th named storm of this year 's Atlantic hurricane season churned over the Gulf 's warm waters .\tNN NNS IN DT NNP IN NNP VBD VBN RB RB , IN DT JJ VBN NN IN DT NN POS NNP NN NN VBD IN DT NNP POS JJ NNS .\nAt last report , Katrina had 185 kilometer-per-hour winds as it moved slowly toward the west-northwest .\tIN JJ NN , NNP VBD CD JJ NNS IN PRP VBD RB IN DT NN .\nHurricane Katrina slammed into southeast Florida Thursday , leaving at least seven people dead .\tNNP NNP VBD IN NN NNP NNP , VBG IN JJS CD NNS JJ .\nIsrael 's security cabinet has approved a plan to release 900 Palestinian prisoners and withdraw troops from the Palestinian town of Jericho .\tNNP POS NN NN VBZ VBN DT NN TO VB CD JJ NNS CC VB NNS IN DT JJ NN IN NNP .\nThe plan calls for Israel to free 500 Palestinians after next week 's Israeli-Palestinian summit , and 400 others over the next three months .\tDT NN VBZ IN NNP TO VB CD NNS IN JJ NN POS JJ NN , CC CD NNS IN DT JJ CD NNS .\nAbout 8,000 Palestinians are in Israeli custody .\tIN CD NNS VBP IN JJ NN .\nBoth sides say they hope to reach agreement at the Cairo summit on a formal truce ending more than four years of violence .\tDT NNS VBP PRP VBP TO VB NN IN DT NNP NN IN DT JJ NN VBG JJR IN CD NNS IN NN .\nMeanwhile , Palestinian gunmen interrupted a two-week old de~facto truce Thursday with an attack on an Israeli military vehicle that wounded an Israeli soldier in the occupied Gaza Strip .\tRB , JJ NNS VBN DT JJ JJ JJ NN NNP IN DT NN IN DT JJ JJ NN WDT VBD DT JJ NN IN DT JJ NNP NNP .\nWitnesses said Israeli soldiers returned fire and killed one Palestinian gunman .\tNNS VBD JJ NNS VBD NN CC VBD CD JJ NN .\nThe attack came despite renewed efforts by the Palestinian Authority to stop militants from attacking Israeli targets .\tDT NN VBD IN VBN NNS IN DT JJ NNP TO VB NNS IN VBG JJ NNS .\nIt was not immediately clear what , if any , effect it would have on summit plans .\tPRP VBD RB RB JJ WP , IN DT , NN PRP MD VB IN NN NNS .\nA Russian spacecraft carrying an American space tourist and two cosmonauts has docked with the International Space Station .\tDT JJ NN VBG DT JJ NN NN CC CD NNS VBZ VBN IN DT NNP NNP NNP .\nThe Soyuzcapsule reached the space station Monday -- two days after lifting off from Kazakhstan .\tDT NNP VBD DT NN NN NNP IN CD NNS IN VBG RP IN NNP .\nIt carried cosmonauts Fyodor Yurchikhin and Oleg Kotov and American computer software billionaire Charles Simonyi .\tPRP VBD NNS NNP NNP CC NNP NNP CC JJ NN NN NN NNP NNP .\nHe paid $ 25 million for the privilege of a spaceflight and visit to the space station .\tPRP VBD $ CD CD IN DT NN IN DT NN CC NN TO DT NN NN .\nSimonyi brought with him a gourmet dinner to be eaten Thursday , which Russia marks as Cosmonauts Day -- the anniversary of Yuri Gagarin 's first manned space flight in 1961 .\tNNP VBD IN PRP DT NN NN TO VB VBN NNP , WDT NNP VBZ IN NNP NNP IN DT NN IN NNP NNP POS JJ JJ NN NN IN CD .\nThe current space station crew -- Russian Mikhail Tyurin and American astronauts Miguel Lopez-Alegria and Sunita Williams -- return to Earth with Simonyi on April 20 .\tDT JJ NN NN NN : JJ NNP NNP CC JJ NNS NNP NNP CC NNP NNP : VBP TO NNP IN NNP IN NNP CD .\nPalestinian President Mahmoud Abbas says he wants a clear position from the United States regarding implementation of the ' road map ' plan for peace in the Middle East .\tJJ NNP NNP NNP VBZ PRP VBZ DT JJ NN IN DT NNP NNPS VBG NN IN DT `` NN NN `` NN IN NN IN DT NNP NNP .\nMr. Abbas made his comment to reporters as he arrived in Washington late Tuesday for his meeting Thursday with President Bush .\tNNP NNP VBD PRP$ NN TO NNS IN PRP VBD IN NNP JJ NNP IN PRP$ NN NNP IN NNP NNP .\nA White House spokesman said Wednesday that Mr. Bush believes the road map is the best plan for achieving his vision of two states , Israel and Palestine , living peacefully side by side .\tDT NNP NNP NN VBD NNP IN NNP NNP VBZ DT NN NN VBZ DT JJS NN IN VBG PRP$ NN IN CD NNS , NNP CC NNP , VBG RB NN IN NN .\nThe 2003 plan calls for Palestinians to crack down on terror groups and build democratic institutions ahead of final status negotiations aimed at ending the Israeli-Palestinian conflict .\tDT CD NN VBZ IN NNS TO VB RP IN NN NNS CC VB JJ NNS RB IN JJ NN NNS VBN IN VBG DT JJ NN .\nMr. Abbas said he will also ask for economic aid , and the two men are expected to discuss Israel 's plan to withdraw from the Gaza Strip .\tNNP NNP VBD PRP MD RB VB IN JJ NN , CC DT CD NNS VBP VBN TO VB NNP POS NN TO VB IN DT NNP NNP .\nA published report in Spain says the armed Basque separatist group ETA has taken responsibility for five attacks in the northern part of the country in recent months .\tDT VBN NN IN NNP VBZ DT JJ NNP NN NN NNP VBZ VBN NN IN CD NNS IN DT JJ NN IN DT NN IN JJ NNS .\nThe Gara newspaper Tuesday published an ETA statement saying it carried out the five attacks in June and July .\tDT NNP NN NNP VBD DT NNP NN VBG PRP VBD IN DT CD NNS IN NNP CC NNP .\nETA says one target was La Peineta stadium , which was the centerpiece of Spain 's failed bid to host the 2012 Olympics .\tNNP VBZ CD NN VBD NNP NNP NN , WDT VBD DT NN IN NNP POS VBN NN TO VB DT CD NNS .\nSpanish Prime Minister Jose Luis Rodriguez Zapatero has offered to hold peace talks with ETA if it renounces violence .\tJJ NNP NNP NNP NNP NNP NNP VBZ VBN TO VB NN NNS IN NNP IN PRP VBZ NN .\nETA has been blamed for more than 800 deaths since the 1960s , when it began its armed campaign for a separate Basque homeland in northern Spain .\tNNP VBZ VBN VBN IN JJR IN CD NNS IN DT NNS , WRB PRP VBD PRP$ JJ NN IN DT JJ NN NN IN JJ NNP .\nThe Who cancelled a March 13 concert in Tampa , Florida , after lead singer Roger Daltrey fell ill .\tDT NNP VBD DT NNP CD NN IN NNP , NNP , IN NN NN NNP NNP VBD RB .\nThe 63-year-old Daltrey walked offstage during the first song ; guitarist Pete Townshend later told the crowd he was suffering from bronchitis and could barely speak .\tDT JJ NNP VBD NN IN DT JJ NN ; NN NNP NNP RB VBD DT NN PRP VBD VBG IN NN CC MD RB VB .\nThe crowd of 9,000 then cheered when Townshend said the show had been rescheduled for March 25 .\tDT NN IN CD RB VBD WRB NNP VBD DT NN VBD VBN VBN IN NNP CD .\nThe Who is currently touring in support of Endless Wire , its first album since 1982 .\tDT NNP VBZ RB VBG IN NN IN JJ NNP , PRP$ JJ NN IN CD .\nThe band next performs March 17 in Mexico City .\tDT NN IN VBZ NNP CD IN NNP NNP .\nThe U.S. State Department says the already poor human rights situation in Nepal worsened in the past year , with security forces and insurgents alike committing serious human rights abuses .\tDT NNP NNP NNP VBZ DT RB JJ JJ NNS NN IN NNP VBD IN DT JJ NN , IN NN NNS CC NNS RB VBG JJ JJ NNS NNS .\nHowever , the report says the governments of India and Sri Lanka generally respected the rights of citizens , although serious problems remain .\tRB , DT NN VBZ DT NNS IN NNP CC NNP NNP RB VBD DT NNS IN NNS , IN JJ NNS VBP .\nThe State Department criticizes Sri Lanka 's government and the Tamil Tiger rebel group for violating a ceasefire accord in place since 2002 .\tDT NNP NNP VBZ NNP NNP POS NN CC DT NNP NNP NN NN IN VBG DT JJ NN IN NN IN CD .\nIt also says Indian officials have used anti-terrorism laws to justify the use of excessive force against insurgents in Jammu and Kashmir .\tPRP RB VBZ JJ NNS VBP VBN JJ NNS TO VB DT NN IN JJ NN IN NNS IN NNP CC NNP .\nThe report describes the human rights situation as poor in Afghanistan , a country recovering from 20 years of war .\tDT NN VBZ DT JJ NNS NN IN JJ IN NNP , DT NN VBG IN CD NNS IN NN .\nIt notes violence against women and minorities , as well as restrictions on personal freedoms .\tPRP VBZ NN IN NNS CC NNS , RB RB IN NNS IN JJ NNS .\nSimilarly , the report says the human rights situations in Bangladesh and Pakistan remain poor , as extrajudicial killings and politically motivated violence continue .\tRB , DT NN VBZ DT JJ NNS NNS IN NNP CC NNP VBP JJ , IN JJ NNS CC RB JJ NN VBP .\nPalestinian leader Mahmoud Abbas says he may resign if a Hamas-led government prevents him from advancing the Mideast peace process .\tJJ NN NNP NNP VBZ PRP MD VB IN DT JJ NN VBZ PRP IN VBG DT JJ NN NN .\nIn a British ( ITV ) television interview broadcast Sunday , Mr. Abbas said Hamas must abide by existing Palestinian Authority commitments recognizing Israel and denouncing the use of violence .\tIN DT JJ LRB NNP RRB NN NN NN NNP , NNP NNP VBD NNP MD VB IN VBG JJ NNP NNS VBG NNP CC VBG DT NN IN NN .\nHe said that if he can not continue his policies regarding Israel , he will resign .\tPRP VBD IN IN PRP MD RB VB PRP$ NNS VBG NNP , PRP MD VB .\nMr. Abbas was elected for a four-year term as president of the Palestinian Authority in January , 2005 .\tNNP NNP VBD VBN IN DT JJ NN IN NN IN DT JJ NNP IN NNP , CD .\nHamas , considered a terrorist organization by the West , wrested control of the legislature from the ruling Fatah party in parliamentary elections last month .\tNNP , VBN DT JJ NN IN DT NNP , VBD NN IN DT NN IN DT NN NNP NN IN JJ NNS JJ NN .\nHamas leader and Palestinian Prime Minister-designate Ismail Haniyeh said Sunday his militant group is ready to recognize Israel , if Israel gives the Palestinian people a state on lands occupied since the 1967 war .\tNNP NN CC JJ NNP NNP NNP NNP VBD NNP PRP$ JJ NN VBZ JJ TO VB NNP , IN NNP VBZ DT JJ NNS DT NN IN NNS VBN IN DT CD NN .\nEuropean Union Trade Commissioner Peter Mandelson has called on EU governments to release blocked Chinese textile shipments , saying a failure to do so could cause economic hardship in Europe .\tNNP NNP NNP NNP NNP NNP VBZ VBN IN NNP NNS TO VB VBN JJ NN NNS , VBG DT NN TO VB RB MD VB JJ NN IN NNP .\nThe announcement followed talks with Beijing aimed at revising a June textile quota agreement limiting shipments to Europe .\tDT NN VBD NNS IN NNP VBN IN VBG DT NNP NN NN NN VBG NNS TO NNP .\nThose quotas filled so quickly that millions of items of Chinese-made clothing were left stranded at customs checkpoints .\tDT NNS VBN RB RB IN NNS IN NNS IN JJ NN VBD VBN VBN IN NNS NNS .\nMr. Mandelson Tuesday said the economic consequences of not allowing the goods to enter Europe will be severe for small retailers .\tNNP NNP NNP VBD DT JJ NNS IN RB VBG DT NNS TO VB NNP MD VB JJ IN JJ NNS .\nHe said delaying the shipments could also cause higher prices and shortages in the next few months .\tPRP VBD VBG DT NNS MD RB VB JJR NNS CC NNS IN DT JJ JJ NNS .\nEU textile producers say the imports are harming their business , but retailers say they have already paid for the Chinese clothing and want the items released .\tNNP NN NNS VBP DT NNS VBP VBG PRP$ NN , CC NNS VBP PRP VBP RB VBN IN DT JJ NN CC VB DT NNS VBN .\nIraqi officials say authorities have regained control of the southern city of Diwaniyah , after fierce clashes with Shi'ite militiamen that claimed more than 70 lives .\tJJ NNS VBP NNS VBP VBN NN IN DT JJ NN IN NNP , IN JJ NNS IN NNP NNS WDT VBD JJR IN CD NNS .\nThe office of Prime Minister Nouri al-Maliki says 23 government soldiers and 50 gunmen were killed in the fighting Monday .\tDT NN IN NNP NNP NNP NNP VBZ CD NN NNS CC CD NNS VBD VBN IN DT NN NNP .\nSeveral civilians also were reported to have died .\tJJ NNS RB VBD VBN TO VB VBN .\nThe fighting ended after a deal was reached between officials and Shi'ite militiamen loyal to radical Shi'ite cleric Moqtada al-Sadr .\tDT NN VBD IN DT NN VBD VBN IN NNS CC NNP NNS JJ TO JJ NNP NN NNP NNP .\nMeanwhile , some 30 Iraqis were killed and a number of others wounded in a fuel pipeline explosion near Diwaniyah .\tRB , DT CD NNS VBD VBN CC DT NN IN NNS VBN IN DT NN NN NN IN NNP .\nThe victims may have been trying to syphon fuel at the time of the blast .\tDT NNS MD VB VBN VBG TO VB NN IN DT NN IN DT NN .\nIn Baghdad , police say they found the bodies of at least 20 people who had been shot and dumped in the capital .\tIN NNP , NNS VBP PRP VBD DT NNS IN IN JJS CD NNS WP VBD VBN VBN CC VBN IN DT NN .\nThe U.S. military has reported the deaths of 10 American soldiers in hostile action in Iraq since Sunday .\tDT NNP NN VBZ VBN DT NNS IN CD JJ NNS IN JJ NN IN NNP IN NNP .\nSri Lankan military officials say at least 18 Tamil rebels and two government soldiers have died in separate clashes .\tNNP NNP JJ NNS VBP IN JJS CD NNP NNS CC CD NN NNS VBP VBN IN JJ NNS .\nOfficials said Sunday that the navy attacked a rebel camp on Iranativu island off the northern coast Saturday , destroying a rebel boat and killing four Tamil fighters .\tNNS VBD NNP IN DT NN VBD DT NN NN IN NNP NN IN DT JJ NN NNP , VBG DT NN NN CC VBG CD NNP NNS .\nThe military says the other 14 rebels died in fighting across several northern districts Saturday .\tDT JJ VBZ DT JJ CD NNS VBD IN VBG IN JJ JJ NNS NNP .\nThe military reports rebel casualties almost daily , and both sides are known to exaggerate the number of people killed .\tDT JJ VBZ NN NNS RB RB , CC DT NNS VBP VBN TO VB DT NN IN NNS VBN .\nThe latest fighting raged despite a cease-fire offered by the rebels to take place during a regional summit in the capital , Colombo .\tDT JJS NN VBD IN DT NN VBN IN DT NNS TO VB NN IN DT JJ NN IN DT NN , NNP .\nThe rebels have been fighting for an independent homeland for ethnic Tamils in Sri Lanka 's north and east since 1983 .\tDT NNS VBP VBN VBG IN DT JJ NN IN JJ NNS IN NNP NNP POS NN CC NN IN CD .\nThey complain of discrimination by the ethnic Sinhalese majority .\tPRP VBP IN NN IN DT JJ JJ NN .\nPresident Bush has signed legislation reaffirming U.S. support for the continued expansion of NATO .\tNNP NNP VBZ VBN NN VBG NNP NN IN DT JJ NN IN NNP .\nThe measure designates Albania , Croatia , Georgia , Macedonia and Ukraine as eligible to receive financial assistance as they pursue NATO membership .\tDT NN VBZ NNP , NNP , NNP , NNP CC NNP IN JJ TO VB JJ NN IN PRP VB NNP NN .\nIt also specifies that funds for military assistance for these countries should be included in next year 's budget .\tPRP RB VBZ IN NNS IN JJ NN IN DT NNS MD VB VBN IN JJ NN POS NN .\nBut the White House announcement did not specify a figure .\tCC DT NNP NNP NN VBD RB VB DT NN .\nAl-Qaida 's deputy leader , Ayman al-Zawahiri , has warned that the Persian Gulf region and Israel will be the terrorist group 's next targets .\tNNP POS NN NN , NNP NNP , VBZ VBN IN DT NNP NNP NN CC NNP MD VB DT JJ NN POS JJ NNS .\nThe Egyptian-born Zawahiri issued the threat in a videotaped message that was broadcast Monday - the fifth anniversary of the September 11 attacks on the United States .\tDT JJ NNP VBD DT NN IN DT VBN NN WDT VBD VBN NNP IN DT JJ NN IN DT NNP CD NNS IN DT NNP NNPS .\nZawahiri warned of ' new events ' and suggested that militants should target Western economic interests .\tNNP VBD IN `` JJ NNS `` CC VBD IN NNS MD VB JJ JJ NNS .\nThe deputy-leader also accused Western powers of stealing ' Muslim ' oil .\tDT NN RB VBD JJ NNS IN VBG `` NNP `` NN .\nZawahiri stressed that Western leaders should be more concerned about attacks in the Gulf or Israel than violence in Iraq or Afghanistan .\tNNP VBD IN JJ NNS MD VB RBR JJ IN NNS IN DT NNP CC NNP IN NN IN NNP CC NNP .\nHe also made the first indirect threat against United Nations peacekeepers bound for Lebanon .\tPRP RB VBD DT JJ JJ NN IN NNP NNPS NNS VBN IN NNP .\nZawahiri said the force is ' hostile to Islam . '\tNNP VBD DT NN VBZ `` JJ TO NNP . ``\nThe message was not dated , but Zawahiri referred to the war between Israel and Hezbollah guerrillas .\tDT NN VBD RB VBN , CC NNP VBD TO DT NN IN NNP CC NNP NNS .\nAn animal rights group says more than 40 dolphins are being held under what it calls ' appalling ' conditions in the Solomon Islands .\tDT NN NNS NN VBZ JJR IN CD NNS VBP VBG VBN IN WP PRP VBZ `` VBG `` NNS IN DT NNP NNP .\nThe World Society for the Protection of Animals says the dolphins are being kept in cages in overcrowded , shallow and polluted pens off the island of Gavutu in the Pacific island nation .\tDT NNP NNP IN DT NN IN NNS VBZ DT NNS VBP VBG VBN IN NNS IN JJ , JJ CC JJ NNS IN DT NN IN NNP IN DT NNP NN NN .\nThe group says the dolphins suffer from cuts , scratches and sunburn , and appear to be undernourished and stressed .\tDT NN VBZ DT NNS VBP IN NNS , NNS CC NN , CC VBP TO VB VBN CC VBN .\nThe group urged the Solomon Islands to rehabilitate and release the dolphins into the wild .\tDT NN VBD DT NNP NNP TO VB CC VB DT NNS IN DT NN .\nLast year , 28 dolphins were transported by plane from the Solomon Islands to Mexico , sparking international criticism .\tJJ NN , CD NNS VBD VBN IN NN IN DT NNP NNP TO NNP , VBG JJ NN .\nA reporters ' advocacy group has condemned the shutdown of a Somali radio station and the detention of two of its reporters .\tDT NNS POS NN NN VBZ VBN DT NN IN DT JJ NN NN CC DT NN IN CD IN PRP$ NNS .\nThe New York-based Committee to Protect Journalists says it is alarmed by the closure of Radio Shabelle in the city of Baidoa on Sunday .\tDT NNP VBN NNP TO VB NNP VBZ PRP VBZ VBN IN DT NN IN NNP NNP IN DT NN IN NNP IN NNP .\nSomalia 's transitional government shut down the station after it broadcast a report saying 300 Ethiopian soldiers had crossed into Somalia .\tNNP POS JJ NN VBD RP DT NN IN PRP VBD DT NN VBG CD JJ NNS VBD VBN IN NNP .\nEthiopia has denied the report .\tNNP VBZ VBN DT NN .\nThe advocacy group quotes Radio Shabelle 's deputy director Mohamed Amiin as saying militiamen entered its premises and detained the two journalists , Mohamed Adawe and Ali Mohamed Saed , for about eight hours .\tDT NN NN VBZ NNP NNP POS NN NN NNP NNP IN VBG NNS VBD PRP$ NNS CC VBD DT CD NNS , NNP NNP CC NNP NNP NNP , IN IN CD NNS .\nIt says the government gave no explanation for its action .\tPRP VBZ DT NN VBD DT NN IN PRP$ NN .\nThe station remained off the air on Monday .\tDT NN VBD IN DT NN IN NNP .\nDeputy Director Amiin says the station stands by its report that Ethiopian troops took up positions at Baidoa 's airport on Saturday .\tNNP NNP NNP VBZ DT NN VBZ IN PRP$ NN IN JJ NNS VBD RP NNS IN NNP POS NN IN NNP .\nThe U.S. military says the trials of three Army reservists charged with abusing detainees at the Abu Ghraib prison will be moved to the United States .\tDT NNP NN VBZ DT NNS IN CD NNP NNS VBN IN VBG NNS IN DT NNP NNP NN MD VB VBN TO DT NNP NNPS .\nIn a statement released late Wednesday , officials say the courts martial of Specialist Charles Graner , Sergeant Javal Davis , and Specialist Sabrina Harman would be held early next year in Fort Hood , Texas instead of Baghdad .\tIN DT NN VBN JJ NNP , NNS VBP DT NNS NN IN NNP NNP NNP , NNP NNP NNP , CC NNP NNP NNP MD VB VBN RB JJ NN IN NNP NNP , NNP IN IN NNP .\nNo reason for the change of venue was given .\tDT NN IN DT NN IN NN VBD VBN .\nThree other U.S. troops have pleaded guilty in connection with prisoner abuse at the Baghdad prison .\tCD JJ NNP NNS VBP VBN JJ IN NN IN NN NN IN DT NNP NN .\nMost of those charged were part of a military police company based in the U.S. state of Maryland .\tJJS IN DT VBN VBD NN IN DT JJ NN NN VBN IN DT NNP NN IN NNP .\nThe prisoner abuse scandal erupted in April when photographs of U.S. soldiers taunting and humiliating naked Iraqi prisoners became public , sparking worldwide condemnation .\tDT NN NN NN VBD IN NNP WRB NNS IN NNP NNS VBG CC VBG JJ JJ NNS VBD JJ , VBG JJ NN .\nA Mexican diplomat says he has met with the leader of Colombia 's second largest rebel group in an effort to broker a peace deal between the group and the Colombian government .\tDT JJ NN VBZ PRP VBZ VBN IN DT NN IN NNP POS JJ JJS NN NN IN DT NN TO NN DT NN NN IN DT NN CC DT JJ NN .\nMexico 's Andres Valencia told reporters late Tuesday his talks with National Liberation Army ( ELN ) leader Francisco Galan focused on ways to reduce differences between the rebels and the government in order to set up a possible meeting between the two sides in Mexico .\tNNP POS NNP NNP VBD NNS RB NNP PRP$ NNS IN NNP NNP NNP LRB NNP RRB NN NNP NNP VBD IN NNS TO VB NNS IN DT NNS CC DT NN IN NN TO VB RP DT JJ NN IN DT CD NNS IN NNP .\nThe Colombian government is demanding the group disarm and cease its practice of kidnapping citizens .\tDT JJ NN VBZ VBG DT NN NN CC VB PRP$ NN IN VBG NNS .\nWhile other paramilitary groups in the nation have grown rich from the drug trade , the ELN funds itself through kidnapping .\tIN JJ JJ NNS IN DT NN VBP VBN JJ IN DT NN NN , DT NNP VBZ PRP IN NN .\nA top U.S. official says the importance of opium cultivation to Afghanistan 's economy is declining .\tDT JJ NNP NN VBZ DT NN IN NN NN TO NNP POS NN VBZ VBG .\nRichard Boucher , the U.S. assistant secretary of state for south and central Asian affairs , says about one third of the Afghan economy was based on opium last year .\tNNP NNP , DT NNP NN NN IN NN IN NN CC JJ JJ NNS , VBZ IN CD NN IN DT JJ NN VBD VBN IN NN JJ NN .\nBut he added that its production was diminishing due to the growth of the regular economy , including the cultivation of other crops .\tCC PRP VBD IN PRP$ NN VBD VBG JJ TO DT NN IN DT JJ NN , VBG DT NN IN JJ NNS .\nHe said more needed to be done to develop economic alternatives to opium production in Afghanistan .\tPRP VBD RBR VBN TO VB VBN TO VB JJ NNS TO NN NN IN NNP .\nThe country is the world 's number one producer of opium , a key ingredient in heroin .\tDT NN VBZ DT NN POS NN CD NN IN NN , DT JJ NN IN NN .\nBoucher is attending an international conference in Berlin on the reconstruction of Afghanistan .\tNNP VBZ VBG DT JJ NN IN NNP IN DT NN IN NNP .\nLast week , the Bush administration announced it would spend more than $ 10 billion in Afghanistan for security and reconstruction .\tJJ NN , DT NNP NN VBD PRP MD VB JJR IN $ CD CD IN NNP IN NN CC NN .\nA U.S.-based human rights group says recently gathered information could lead to new charges against a notorious former Iraqi general who is accused of ordering the 1988 massacre of Kurds in northern Iraq .\tDT JJ JJ NNS NN VBZ RB VBN NN MD VB TO JJ NNS IN DT JJ JJ JJ NN WP VBZ VBN IN VBG DT CD NN IN NNS IN JJ NNP .\nIn a report issued Thursday , Human Rights Watch says the new information implicates Ali Hassan al-Majid - known as ' Chemical Ali ' - in the execution of hundreds of Shi'ite Muslims during an uprising in the southern city of Basra in 1999 .\tIN DT NN VBN NNP , NNP NNP NNP VBZ DT JJ NN VBZ NNP NNP NNP : VBN IN `` NNP NNP `` : IN DT NN IN NNS IN NNP NNPS IN DT NN IN DT JJ NN IN NNP IN CD .\nIraqi officials say they expect Chemical Ali to be among the first of several top lieutenants of Saddam Hussein 's regime to go on trial for a range of crimes , including crimes against humanity and genocide .\tJJ NNS VBP PRP VBP NNP NNP TO VB IN DT NN IN JJ JJ NNS IN NNP NNP POS NN TO VB IN NN IN DT NN IN NNS , VBG NNS IN NN CC NN .\nIn December , Iraq 's interim Prime Minister Iyad Allawi said the trials of top officials of the ousted regime would begin within weeks .\tIN NNP , NNP POS JJ NNP NNP NNP NNP VBD DT NNS IN JJ NNS IN DT JJ NN MD VB IN NNS .\nBut so far , no trial dates have been set .\tCC RB RB , DT NN NNS VBP VBN VBN .\nA fugitive leader of the Palestinian militant group Hamas has appeared in a videotape calling Israel 's withdrawal from the Gaza Strip a victory for Palestinian militants .\tDT JJ NN IN DT JJ JJ NN NNP VBZ VBN IN DT NN VBG NNP POS NN IN DT NNP NNP DT NN IN JJ NNS .\nMohammed Deif , who has eluded Israeli authorities for more than a decade , said Israel 's pullout is a humiliation suffered at the hands of the armed resistance .\tNNP NNP , WP VBZ VBN JJ NNS IN JJR IN DT NN , VBD NNP POS NN VBZ DT NN VBN IN DT NNS IN DT JJ NN .\nThe alleged bombmaker , who Israel accuses of being behind a string of suicide bombings , appeared in the video in profile with a dark shadow over his face .\tDT JJ NN , WP NNP NNS IN VBG IN DT NN IN NN NNS , VBD IN DT NN IN NN IN DT JJ NN IN PRP$ NN .\nHe warned the Palestinian Authority not to try to disarm the militant groups .\tPRP VBD DT JJ NNP RB TO VB TO VB DT JJ NNS .\nBut he did call for dialogue ' to protect our Palestinian blood . '\tCC PRP VBD VB IN NN `` TO VB PRP$ JJ NN . ``\nWestern news agencies in Gaza received copies of the tape overnight Saturday .\tJJ NN NNS IN NNP VBD NNS IN DT NN JJ NNP .\nThey say they believe the tape is authentic .\tPRP VBP PRP VBP DT NN VBZ JJ .\nPope John Paul II has urged believers to proudly display the signs of their faith , saying the practice does not encourage intolerance or infringe on the separation of church and state .\tNNP NNP NNP NNP VBZ VBN NNS TO RB VB DT NNS IN PRP$ NN , VBG DT NN VBZ RB VB NN CC NN IN DT NN IN NN CC NN .\nIn an apostolic letter to Roman Catholics launching the Year of the Eucharist , the pope made no mention of specific problems .\tIN DT JJ NN TO NNP NNPS VBG DT NN IN DT NNP , DT NN VBD DT NN IN JJ NNS .\nBut the message follows sharp controversy in France over a government ban on conspicuous religious symbols such as Muslim headscarves , Jewish skullcaps or large crucifixes in the country 's schools .\tCC DT NN VBZ JJ NN IN NNP IN DT NN NN IN JJ JJ NNS JJ IN NNP NNS , JJ NNS CC JJ NNS IN DT NN POS NNS .\nThe pontiff also repeated his concern that too few Catholics are giving due reverence to the Eucharist or properly marking Sunday as the Lord 's Day .\tDT NN RB VBD PRP$ NN IN RB JJ NNS VBP VBG JJ NN TO DT NN CC RB VBG NNP IN DT NNP POS NN .\nHe also described faith as a means of counteracting violence and a way of bringing attention to such problems as poverty and hunger in the world .\tPRP RB VBD NN IN DT NN IN VBG NN CC DT NN IN VBG NN TO JJ NNS IN NN CC NN IN DT NN .\nFormer U.S. President Bill Clinton says that publishing cartoons of the Prophet Muhammad was a mistake , but that violent protests by Muslims have wasted a chance to build bridges with the West .\tJJ NNP NNP NNP NNP VBZ IN VBG NNS IN DT NNP NNP VBD DT NN , CC IN JJ NNS IN NNPS VBP VBN DT NN TO VB NNS IN DT NNP .\nClinton was speaking in Pakistan , the scene of some of the worst rallies against the drawings , where he was visiting survivors of last year 's South Asian earthquake and launching an HIV / AIDS project .\tNNP VBD VBG IN NNP , DT NN IN DT IN DT JJS NNS IN DT NNS , WRB PRP VBD VBG NNS IN JJ NN POS NNP NNP NN CC VBG DT NNP NNP NNP NN .\nHe said he strongly disagrees with the publication of the cartoons , considered blasphemous by Muslims , and has no objection to the Muslim protests if they are peaceful .\tPRP VBD PRP RB VBZ IN DT NN IN DT NNS , VBN JJ IN NNPS , CC VBZ DT NN TO DT NNP NNS IN PRP VBP JJ .\nBut he said by holding violent demonstrations that have killed 18 people , Muslims have missed an opportunity to build better ties with the West .\tCC PRP VBD IN VBG JJ NNS WDT VBP VBN CD NNS , NNPS VBP VBN DT NN TO VB JJR NNS IN DT NNP .\nClinton arrived in Islamabad early Friday for a day-long trip and held talks with Pakistani President Pervez Musharraf and Prime Minister Shaukat Aziz .\tNNP VBD IN NNP JJ NNP IN DT JJ NN CC VBD NNS IN JJ NNP NNP NNP CC NNP NNP NNP NNP .\nIran says it will allow United Nations nuclear experts to take environmental samples from a military site to disprove allegations Tehran is secretly developing nuclear weapons .\tNNP VBZ PRP MD VB NNP NNP JJ NNS TO VB JJ NNS IN DT JJ NN TO VB NNS NNP VBZ RB VBG JJ NNS .\nA foreign ministry spokesman Hamid Reza Asefi told reporters Sunday in Tehran that International Atomic Energy Agency inspectors would only take samples from so-called ' green areas ' at the military site , and not from inside the installation .\tDT JJ NN NN NNP NNP NNP VBD NNS NNP IN NNP IN NNP NNP NNP NNP NNS MD RB VB NNS IN JJ `` JJ NNS `` IN DT JJ NN , CC RB IN IN DT NN .\nThe head of the IAEA , Mohamed ElBaradei , said last week Iran had agreed to allow access to the site at Parchin , near the capital , and that inspectors would arrive there soon .\tDT NN IN DT NNP , NNP NNP , VBD JJ NN NNP VBD VBN TO VB NN TO DT NN IN NNP , IN DT NN , CC IN NNS MD VB RB RB .\nThe IAEA has been seeking access to Parchin , which has long been used by Iran to research , develop and produce missiles and other high explosives .\tDT NNP VBZ VBN VBG NN TO NNP , WDT VBZ RB VBN VBN IN NNP TO VB , VB CC VB NNS CC JJ JJ NNS .\nThe United States accuses Iran of secretly developing nuclear weapons .\tDT NNP NNPS VBZ NNP IN RB VBG JJ NNS .\nIran asserts its nuclear program is only for producing electricity .\tNNP VBZ PRP$ JJ NN VBZ RB IN VBG NN .\nTurkish police have detained at least 50 suspected al-Qaida-linked militants in raids across nine provinces .\tJJ NNS VBP VBN IN JJS CD JJ JJ NNS IN NNS IN CD NNS .\nLocal media say the militants , thought to be members of a group ( the Islamic Jihad League ) tied to al-Qaida , were planning attacks against U.S. , Israeli and NATO targets in Turkey .\tJJ NNS VBP DT NNS , VBN TO VB NNS IN DT NN LRB DT NNP NNP NNP RRB VBN TO NNP , VBD VBG NNS IN NNP , JJ CC NNP NNS IN NNP .\nThey say the suspects may have had contact with al-Qaida 's second-in-command , Ayman al-Zawahri , and may have been trained in Afghanistan .\tPRP VBP DT NNS MD VB VBN NN IN NNP POS NN , NNP NNP , CC MD VB VBN VBN IN NNP .\nTurkey 's Hurriyet daily says police Thursday seized an unlicensed gun , documents , CDs and laptops during a search of homes and offices of suspected al-Qaida members in the eastern province of Van .\tNNP POS NNP NN VBZ NN NNP VBD DT JJ NN , NNS , NNS CC NNS IN DT NN IN NNS CC NNS IN JJ NNP NNS IN DT JJ NN IN NNP .\nA Moscow court has rejected the appeal of former Russian oil tycoon Mikhail Khodorkovsky against his conviction on fraud and tax evasion charges , but the court reduced his prison sentence from nine to eight years .\tDT NNP NN VBZ VBN DT NN IN JJ JJ NN NN NNP NNP IN PRP$ NN IN NN CC NN NN NNS , CC DT NN VBD PRP$ NN NN IN CD CC CD NNS .\nKhodorkovsky , once Russia 's richest man , was convicted in May in what his supporters call a political trial in retaliation for the tycoon 's backing of opposition politicians .\tNNP , RB NNP POS JJS NN , VBD VBN IN NNP IN WP PRP$ NNS VBP DT JJ NN IN NN IN DT NN POS NN IN NN NNS .\nThursday 's proceedings got underway after the court repeatedly rejected defense motions for a delay to allow them more preparation time .\tNNP POS NNS VBD NN IN DT NN RB VBD NN NNS IN DT NN TO VB PRP JJR NN NN .\nIn a statement to the court , Khodorkovsky proclaimed his innocence and accused bureaucrats opposed to his funding of the political opposition of responsibility for his conviction .\tIN DT NN TO DT NN , NNP VBD PRP$ NN CC VBD NNS VBN TO PRP$ NN IN DT JJ NN IN NN IN PRP$ NN .\nSupporters of the former chief of the giant Russian oil firm Yukos say authorities had rushed through the appeal to prevent Khodorkovsky from running in a December parliamentary by-election .\tNNS IN DT JJ NN IN DT JJ JJ NN NN NNP VBP NNS VBD VBN IN DT NN TO VB NNP IN VBG IN DT NNP JJ NN .\nThe African Union says it is temporarily suspending the deployment of troops to Sudan 's troubled Darfur region because of a fuel shortage .\tDT NNP NNP VBZ PRP VBZ RB VBG DT NN IN NNS TO NNP POS JJ NNP NN IN IN DT NN NN .\nAU officials say the suspension will last several weeks .\tNNP NNS VBP DT NN MD VB JJ NNS .\nThe Associated Press reports the fuel shortage was caused by the closure of a refinery in Sudan 's capital , Khartoum , for repairs .\tDT NNP NNP VBZ DT NN NN VBD VBN IN DT NN IN DT NN IN NNP POS NN , NNP , IN NNS .\nAU officials say heavy rains in Darfur are also hindering the deployment of troops as some roads have become impassable .\tNNP NNS VBP JJ NNS IN NNP VBP RB VBG DT NN IN NNS IN DT NNS VBP VBN JJ .\nSeveral thousand AU troops and police officers are already in Darfur .\tJJ CD NNP NNS CC NNS NNS VBP RB IN NNP .\nThe force is expected to number more than 7,000 when the deployment is completed .\tDT NN VBZ VBN TO VB JJR IN CD WRB DT NN VBZ VBN .\nThe force is monitoring a cease-fire between Darfur rebels and pro-government Arab militia .\tDT NN VBZ VBG DT NN IN NNP NNS CC JJ JJ NN .\nThe conflict has left 1,80,000 people dead and two million others displaced .\tDT NN VBZ VBN CD NNS JJ CC CD CD NNS VBD .\nChina says at least 37 miners died early Sunday in a coal mine accident in the central province of Henan .\tNNP VBZ IN JJS CD NNS VBD JJ NNP IN DT NN NN NN IN DT JJ NN IN NNP .\nThe official Xinhua news agency says seven other miners are being treated in the hospital for their injuries after what was called a gas ' outburst ' in the private mine near the city of Dengfeng .\tDT JJ NNP NN NN VBZ CD JJ NNS VBP VBG VBN IN DT NN IN PRP$ NNS IN WP VBD VBN DT NN `` JJS `` IN DT JJ NN IN DT NN IN NNP .\nThe report said 108 people were underground when the accident occurred , and 64 of them escaped .\tDT NN VBD CD NNS VBD RB WRB DT NN VBD , CC CD IN PRP VBD .\nThe accident happened one day after a fire at a coal mine in northeastern China killed at least five miners and trapped 30 .\tDT NN VBD CD NN IN DT NN IN DT NN NN IN JJ NNP VBD IN JJS CD NNS CC JJ CD .\nXinhua said the fire broke out Saturday at a mine in Hegang City , Heilongjiang province , while 44 miners were working underground .\tNNP VBD DT NN VBD RP NNP IN DT NN IN NNP NNP , NNP NN , IN CD NNS VBD VBG RB .\nChina 's coal mines are the world 's deadliest , with thousands of people dying every year in explosions , cave-ins and floods .\tNNP POS NN NNS VBP DT NN POS JJS , IN NNS IN NNS VBG DT NN IN NNS , NNS CC NNS .\nIraq says it will close its borders and extend curfew hours as part of an extensive security plan to foil insurgent attacks during Thursday 's parliamentary elections .\tNNP VBZ PRP MD VB PRP$ NNS CC VB NN NNS IN NN IN DT JJ NN NN TO VB JJ NNS IN NNP POS JJ NNS .\nThe Interior Ministry says the curfews will begin Tuesday and last until Saturday .\tDT NNP NNP VBZ DT NNS MD VB NNP CC JJ IN NNP .\nDuring that time , road travel will be restricted to vehicles with special permits .\tIN DT NN , NN NN MD VB VBN TO NNS IN JJ NNS .\nAll airports will be closed from Wednesday to Friday .\tDT NNS MD VB VBN IN NNP TO NNP .\nA coalition of Shi'ite religious parties is expected to win the biggest bloc of seats in the new legislature .\tDT NN IN NNP JJ NNS VBZ VBN TO VB DT JJS NN IN NNS IN DT JJ NN .\nBut analysts predict that no party will win an outright majority , and that a coalition of Shi'ites and Kurds will likely govern .\tCC NNS VBP IN DT NN MD VB DT JJ NN , CC IN DT NN IN NNS CC NNS MD RB VB .\nThe polls will be the first under the constitution ratified in October in a national referendum .\tDT NNS MD VB DT JJ IN DT NN VBN IN NNP IN DT JJ NN .\nMeanwhile , the U.S. military says an American soldier was killed Sunday when a roadside bomb exploded near his patrol in western Baghdad .\tRB , DT NNP NN VBZ DT JJ NN VBD VBN NNP WRB DT NN NN VBD IN PRP$ NN IN JJ NNP .\nA former White House aide to former U.S. President George Bush has been sentenced to 30 months in prison for stealing nearly $ 6,00,000 from a government-funded program that promotes democracy in Cuba .\tDT JJ NNP NNP NN TO JJ NNP NNP NNP NNP VBZ VBN VBN TO CD NNS IN NN IN VBG RB $ CD IN DT JJ NN WDT VBZ NN IN NNP .\nA federal judge sentenced Felipe Sixto on Wednesday for the theft of funds from the Center for a Free Cuba .\tDT JJ NN VBD NNP NNP IN NNP IN DT NN IN NNS IN DT NNP IN DT NNP NNP .\nSixto resigned as a special assistant to President Bush for intergovernmental affairs last year , after learning the center was taking legal action against him .\tNNP VBD IN DT JJ NN TO NNP NNP IN JJ NNS JJ NN , IN VBG DT NN VBD VBG JJ NN IN PRP .\nHe pleaded guilty to theft in December and apologized for the crime .\tPRP VBD JJ TO NN IN NNP CC VBN IN DT NN .\nSixto has admitted he bought bulk shipments of radios through two companies he created , then resold the equipment to the center at a higher price .\tNNP VBZ VBN PRP VBD JJ NNS IN NNS IN CD NNS PRP VBD , RB VBD DT NN TO DT NN IN DT JJR NN .\nHe was the center 's chief of staff before moving to the White House .\tPRP VBD DT NN POS NN IN NN IN VBG TO DT NNP NNP .\nThe Center for a Free Cuba is a non-profit institution dedicated to promoting human rights and democracy in Cuba .\tDT NNP IN DT NNP NNP VBZ DT JJ NN VBN TO VBG JJ NNS CC NN IN NNP .\nA moderate earthquake struck northwest Pakistan Sunday , but there were no immediate reports of damage or injuries .\tDT JJ NN VBD JJ NNP NNP , CC EX VBD DT JJ NNS IN NN CC NNS .\nThe U.S. Geological Survey measured the quake at a magnitude of 4.9 .\tDT NNP NNP NNP VBD DT NN IN DT NN IN CD .\nOfficials say the earthquake was centered in the Hindu Kush mountains of neighboring Afghanistan .\tNNS VBP DT NN VBD VBN IN DT NNP NNP NNS IN VBG NNP .\nPakistani officials say the earthquake was felt in the capital , Islamabad , as well as Peshawar and Chitral .\tJJ NNS VBP DT NN VBD VBN IN DT NN , NNP , RB RB IN NNP CC NNP .\nPolice officials say there were no reports of deaths , injuries or damages .\tNN NNS VBP EX VBD DT NNS IN NNS , NNS CC NNS .\nIraqi Sunni leaders say they want more seats on the parliamentary committee charged with drafting the country 's constitution or they will boycott the process .\tJJ NNP NNS VBP PRP VBP JJR NNS IN DT JJ NN VBN IN VBG DT NN POS NN CC PRP MD VB DT NN .\nA coalition of Sunni organizations said Wednesday they want to increase their current special allotment of 13 seats to 25 , strengthening their voice on a key committee that could have a total of some 75 seats .\tDT NN IN NNP NNS VBD NNP PRP VBP TO VB PRP$ JJ JJ NN IN CD NNS TO CD , VBG PRP$ NN IN DT JJ NN WDT MD VB DT NN IN DT CD NNS .\nThe Sunnis have already been granted 11 extra seats on the committee to make up for their small number of legislators - a result of the parliament election boycott by Sunni voters .\tDT NNPS VBP RB VBN VBN CD JJ NNS IN DT NN TO VB RP IN PRP$ JJ NN IN NNS IN DT NN IN DT NN NN NN IN NNP NNS .\nShi'ite leaders have not responded to the demands .\tNNP NNS VBP RB VBN TO DT NNS .\nMeanwhile , insurgent attacks across Iraq Tuesday killed at least 25 people , including three U.S. soldiers .\tRB , JJ NNS IN NNP NNP VBD IN JJS CD NNS , VBG CD NNP NNS .\nSeveral hundred anti-war protesters have begun their second week of demonstrations outside President Bush 's Crawford , Texas ranch .\tJJ CD JJ NNS VBP VBN PRP$ JJ NN IN NNS IN NNP NNP POS NNP , NNP NN .\nAt the center of the protests is a California woman whose son was killed in Iraq last year .\tIN DT NN IN DT NNS VBZ DT NNP NN WP$ NN VBD VBN IN NNP JJ NN .\nCindy Sheehan came to Crawford a week ago demanding to talk to Mr. Bush about the death of her son and the rationale behind the Iraq conflict .\tNNP NNP VBD IN NNP DT NN IN VBG TO VB TO NNP NNP IN DT NN IN PRP$ NN CC DT NN IN DT NNP NN .\nOn Saturday , dozens of anti-war demonstrators squared off with counter-protesters outside Mr. Bush 's ranch .\tIN NNP , NNS IN JJ NNS VBD RP IN NNS IN NNP NNP POS NN .\nAuthorities turned out in force to keep the two groups separated .\tNNS VBD RP IN NN TO VB DT CD NNS VBN .\nMr. Bush has said he understands the sentiments of anti-war protesters , but he repeated his position that U.S. troops will not be immediately withdrawn from Iraq .\tNNP NNP VBZ VBN PRP VBZ DT NNS IN JJ NNS , CC PRP VBD PRP$ NN IN NNP NNS MD RB VB RB VBN IN NNP .\nA presidential panel says U.S. intelligence about Iran 's arms capabilities is ' inadequate . '\tDT JJ NN VBZ NNP NN IN NNP POS NNS NNS VBZ `` JJ . ``\nThe New York Times says the panel investigating U.S. intelligence on global weapons proliferation will submit the classified report to President Bush later this month .\tDT NNP NNP NNP VBZ DT NN VBG NNP NN IN JJ NNS NN MD VB DT JJ NN TO NNP NNP RB DT NN .\nThe commission is expected to also be critical of American intelligence on North Korea , but the newspaper says officials describe the lack of information about Tehran 's capabilities as particularly worrisome .\tDT NN VBZ VBN TO RB VB JJ IN JJ NN IN NNP NNP , CC DT NN VBZ NNS VBP DT NN IN NN IN NNP POS NNS IN RB JJ .\nThe report says America lacks the intelligence on Tehran 's arms to allow firm judgments about its weapons programs .\tDT NN VBZ NNP VBZ DT NN IN NNP POS NNS TO VB JJ NNS IN PRP$ NNS NNS .\nThe United States says Iran is trying to covertly develop nuclear weapons .\tDT NNP NNP VBZ NNP VBZ VBG TO RB VB JJ NNS .\nTehran insists its nuclear program is for civilian purposes .\tNNP VBZ PRP$ JJ NN VBZ IN JJ NNS .\nThe International Atomic Energy Agency has been skeptical of Tehran 's claims , but says it has seen no evidence of an Iranian nuclear weapons program .\tDT NNP NNP NNP NNP VBZ VBN JJ IN NNP POS NNS , CC VBZ PRP VBZ VBN DT NN IN DT JJ JJ NNS NN .\nPolice in Pakistan say at least five soldiers were killed in a suicide attack in the country 's northwestern Swat Valley .\tNNS IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN NN IN DT NN POS JJ NNP NNP .\nSecurity officials say a suicide bomber rammed his explosives-laden vehicle into a security checkpoint in the town of Khawaza Kehla Saturday .\tNN NNS VBP DT NN NN VBD PRP$ JJ NN IN DT NN NN IN DT NN IN NNP NNP NNP .\nAt least four soldiers were wounded .\tIN JJS CD NNS VBD VBN .\nPakistan 's military launched an offensive in Swat and surrounding areas in late April after militants violated a peace deal and began advancing toward the capital , Islamabad .\tNNP POS NN VBD DT NN IN NNP CC VBG NNS IN JJ NNP IN NNS VBD DT NN NN CC VBD VBG IN DT NN , NNP .\nOfficials call the operation a success and say most of the Taliban insurgents have been driven from the region .\tNNS VBP DT NN DT NN CC VBP JJS IN DT NNP NNS VBP VBN VBN IN DT NN .\nHowever , Pakistani forces have encountered some lingering resistance .\tRB , JJ NNS VBP VBN DT VBG NN .\nThe military says eight militants were killed Saturday in a clash that erupted as soldiers searched another area of Swat Valley .\tDT NN VBZ CD NNS VBD VBN NNP IN DT NN WDT VBD IN NNS VBD DT NN IN NNP NNP .\nTwo others were detained .\tCD NNS VBD VBN .\nElsewhere in northwestern Pakistan , security officials say fighter jets targeted a suspected militant hideout in the South Waziristan tribal region Saturday .\tRB IN JJ NNP , NN NNS VBP NN NNS VBD DT JJ NN NN IN DT NNP NNP JJ NN NNP .\nIran 's top nuclear negotiator says Tehran will soon resume large-scale enrichment of uranium if Iran is referred to the United Nations Security Council .\tNNP POS JJ JJ NN VBZ NNP MD RB VB JJ NN IN NN IN NNP VBZ VBN TO DT NNP NNP NNP NNP .\nAli Larijani also told a news conference Wednesday that Iran 's main enrichment plant is ready for use .\tNNP NNP RB VBD DT NN NN NNP IN NNP POS JJ NN NN VBZ JJ IN NN .\nHe said all Iran has to do is inform the International Atomic Energy Agency that it would be resuming operations .\tPRP VBD DT NNP VBZ TO VB VBZ VB DT NNP NNP NNP NNP IN PRP MD VB VBG NNS .\nHis comments come one day before the IAEA board meets in Vienna .\tPRP$ NNS VBP CD NN IN DT NNP NN VBZ IN NNP .\nA draft resolution obtained by news agencies formally calls on the IAEA to report Iran to the U.N. Security Council over its nuclear activities .\tDT NN NN VBN IN NN NNS RB VBZ IN DT NNP TO VB NNP TO DT NNP NNP NNP IN PRP$ JJ NNS .\nBritish Foreign Secretary Jack Straw met his Iranian counterpart Manouchehr Mottaki in London today to tell him that Tehran has one last chance to convince the world that its nuclear program is peaceful .\tJJ NNP NNP NNP NNP VBD PRP$ JJ NN NNP NNP IN NNP NN TO VB PRP IN NNP VBZ CD JJ NN TO VB DT NN IN PRP$ JJ NN VBZ JJ .\nEuropean and U.S. leaders accuse Iran of secretly trying to develop nuclear weapons .\tJJ CC NNP NNS VBP NNP IN RB VBG TO VB JJ NNS .\nIran denies the charge .\tNNP VBZ DT NN .\nU.S. Secretary of State Condoleezza Rice says the Bush administration has a strategy to ' assure victory ' in Iraq .\tNNP NN IN NN NNP NNP VBZ DT NNP NN VBZ DT NN TO `` VB NN `` IN NNP .\nIn testimony before the Senate Foreign Relations Committee , Ms. Rice said the plan is to clear out areas under insurgent control , hold those areas securely , and build durable , national Iraqi institutions .\tIN NN IN DT NNP NNP NNP NNP , NNP NNP VBD DT NN VBZ TO VB RP NNS IN JJ NN , VBP DT NNS RB , CC VB JJ , JJ JJ NNS .\nShe said the United States will send in teams of diplomatic and military personnel working together to help Iraqis train police , and set up essential services .\tPRP VBD DT NNP NNPS MD VB IN NNS IN JJ CC JJ NNS VBG RB TO VB NNS VB NN , CC VB RP JJ NNS .\nMs. Rice 's testimony Wednesday comes just days after Iraqis voted in a referendum on a new constitution .\tNNP NNP POS NN NNP VBZ RB NNS IN NNS VBD IN DT NN IN DT JJ NN .\nSenators pressed the secretary for specifics , including when the 150-thousand U.S. troops in Iraq might start coming home .\tNNS VBD DT NN IN NNS , VBG WRB DT JJ NNP NNS IN NNP MD VB VBG NN .\nThe secretary refused to offer a timetable , saying any withdrawal depends on Iraqi forces being able to fight the insurgents independently .\tDT NN VBD TO VB DT NN , VBG DT NN VBZ IN JJ NNS VBG JJ TO VB DT NNS RB .\nEnglish and Irish colonists from St. Kitts first settled on Montserrat in 1632 ; the first African slaves arrived three decades later .\tJJ CC JJ NNS IN NNP NNP RB VBD IN NNP IN CD ; DT JJ JJ NNS VBD CD NNS RB .\nThe British and French fought for possession of the island for most of the 18th century , but it finally was confirmed as a British possession in 1783 .\tDT NNS CC NNS VBD IN NN IN DT NN IN JJS IN DT JJ NN , CC PRP RB VBD VBN IN DT JJ NN IN CD .\nThe island 's sugar plantation economy was converted to small farm landholdings in the mid 19th century .\tDT NN POS NN NN NN VBD VBN TO JJ NN NNS IN DT JJ JJ NN .\nMuch of this island was devastated and two-thirds of the population fled abroad because of the eruption of the Soufriere Hills Volcano that began on 18 July 1995 .\tNN IN DT NN VBD VBN CC NNS IN DT NN VBD RB IN IN DT NN IN DT NNP NNP NNP WDT VBD IN CD NNP CD .\nMontserrat has endured volcanic activity since , with the last eruption occurring in July 2003 .\tNNP VBZ VBN JJ NN IN , IN DT JJ NN VBG IN NNP CD .\nGeorgia 's economy sustained GDP growth of more than 10 % in 2006 - 7 , based on strong inflows of foreign investment and robust government spending .\tNNP POS NN VBD NN NN IN JJR IN CD NN IN CD : CD , VBN IN JJ NNS IN JJ NN CC JJ NN NN .\nHowever , GDP growth slowed in 2008 following the August 2008 conflict with Russia , and turned negative in 2009 as foreign direct investment and workers ' remittances declined in the wake of the global financial crisis , but rebounded in 2010 .\tRB , NN NN VBD IN CD VBG DT NNP CD NN IN NNP , CC VBD JJ IN CD IN JJ JJ NN CC NNS POS NNS VBD IN DT NN IN DT JJ JJ NN , CC VBD IN CD .\nGeorgia 's main economic activities include the cultivation of agricultural products such as grapes , citrus fruits , and hazelnuts ; mining of manganese and copper ; and output of a small industrial sector producing alcoholic and nonalcoholic beverages , metals , machinery , aircraft and chemicals .\tNNP POS JJ JJ NNS VBP DT NN IN JJ NNS JJ IN NNS , JJ NNS , CC NNS ; NN IN NN CC NN ; CC NN IN DT JJ JJ NN VBG JJ CC JJ NNS , NNS , NN , NN CC NNS .\nAreas of recent improvement include growth in the construction , banking services , and mining sectors , but reduced availability of external investment and the slowing regional economy are emerging risks .\tNNS IN JJ NN VBP NN IN DT NN , NN NNS , CC NN NNS , CC VBD NN IN JJ NN CC DT VBG JJ NN VBP VBG NNS .\nThe country imports nearly all its needed supplies of natural gas and oil products .\tDT NN VBZ RB PDT PRP$ JJ NNS IN JJ NN CC NN NNS .\nIt has sizeable hydropower capacity , a growing component of its energy supplies .\tPRP VBZ JJ NN NN , DT VBG NN IN PRP$ NN NNS .\nGeorgia has overcome the chronic energy shortages and gas supply interruptions of the past by renovating hydropower plants and by increasingly relying on natural gas imports from Azerbaijan instead of from Russia .\tNNP VBZ VBN DT JJ NN NNS CC NN NN NNS IN DT NN IN VBG NN NNS CC IN RB VBG IN JJ NN NNS IN NNP IN IN IN NNP .\nThe construction on the Baku-T'bilisi-Ceyhan oil pipeline , the Baku-T'bilisi-Erzerum gas pipeline , and the Kars-Akhalkalaki Railroad are part of a strategy to capitalize on Georgia 's strategic location between Europe and Asia and develop its role as a transit point for gas , oil and other goods .\tDT NN IN DT JJ NN NN , DT JJ NN NN , CC DT NNP NNP VBP NN IN DT NN TO VB IN NNP POS JJ NN IN NNP CC NNP CC VB PRP$ NN IN DT NN NN IN NN , NN CC JJ NNS .\nGeorgia has historically suffered from a chronic failure to collect tax revenues ; however , the government , since coming to power in 2004 , has simplified the tax code , improved tax administration , increased tax enforcement , and cracked down on petty corruption .\tNNP VBZ RB VBN IN DT JJ NN TO VB NN NNS ; RB , DT NN , IN VBG TO NN IN CD , VBZ VBN DT NN NN , VBD NN NN , VBN NN NN , CC VBN RP IN JJ NN .\nHowever , the economic downturn of 2008 - 9 eroded the tax base and led to a decline in the budget surplus and an increase in public borrowing needs .\tRB , DT JJ NN IN CD : CD VBD DT NN NN CC VBD TO DT NN IN DT NN NN CC DT NN IN JJ NN NNS .\nThe country is pinning its hopes for renewed growth on a determined effort to continue to liberalize the economy by reducing regulation , taxes , and corruption in order to attract foreign investment , but the economy faces a more difficult investment climate both domestically and internationally .\tDT NN VBZ VBG PRP$ NNS IN JJ NN IN DT JJ NN TO VB TO VB DT NN IN VBG NN , NNS , CC NN IN NN TO VB JJ NN , CC DT NN VBZ DT RBR JJ NN NN DT RB CC RB .\nAfter discarding socialist economic policies in the mid-1990s , Madagascar followed a World Bank- and IMF-led policy of privatization and liberalization that has been undermined since the start of the political crisis .\tIN VBG JJ JJ NNS IN DT NNS , NNP VBD DT NNP NNP CC JJ NN IN NN CC NN WDT VBZ VBN VBN IN DT NN IN DT JJ NN .\nThis strategy placed the country on a slow and steady growth path from an extremely low level .\tDT NN VBD DT NN IN DT JJ CC JJ NN NN IN DT RB JJ NN .\nAgriculture , including fishing and forestry , is a mainstay of the economy , accounting for more than one-fourth of GDP and employing 80 % of the population .\tNN , VBG NN CC NN , VBZ DT NN IN DT NN , VBG IN JJR IN NN IN NN CC VBG CD NN IN DT NN .\nExports of apparel have boomed in recent years primarily due to duty-free access to the US .\tNNS IN NN VBP VBN IN JJ NNS RB JJ TO JJ NN TO DT NNP .\nHowever , Madagascar 's failure to comply with the requirements of the African Growth and Opportunity Act ( AGOA ) led to the termination of the country 's duty-free access in January 2010 .\tRB , NNP POS NN TO VB IN DT NNS IN DT JJ NN CC NNP NNP LRB NNP RRB VBD TO DT NN IN DT NN POS JJ NN IN NNP CD .\nDeforestation and erosion , aggravated by the use of firewood as the primary source of fuel , are serious concerns .\tNN CC NN , VBN IN DT NN IN NN IN DT JJ NN IN NN , VBP JJ NNS .\nFormer President RAVALOMANANA worked aggressively to revive the economy following the 2002 political crisis , which triggered a 12 % drop in GDP that year .\tJJ NNP NNP VBD RB TO VB DT NN VBG DT CD JJ NN , WDT VBD DT CD NN NN IN NN IN NN .\nThe current political crisis which began in early 2009 has dealt additional blows to the economy .\tDT JJ JJ NN WDT VBD IN JJ CD VBZ VBN JJ NNS TO DT NN .\nTourism dropped more than 50 % in 2009 , compared with the previous year , and many investors are wary of entering the uncertain investment environment .\tNN VBD JJR IN CD NN IN CD , VBN IN DT JJ NN , CC JJ NNS VBP JJ IN VBG DT JJ NN NN .\nSettled by both Britain and France during the first half of the 19th century , the island was made a French possession in 1853 .\tVBN IN DT NNP CC NNP IN DT JJ NN IN DT JJ NN , DT NN VBD VBN DT JJ NN IN CD .\nIt served as a penal colony for four decades after 1864 .\tPRP VBD IN DT JJ NN IN CD NNS IN CD .\nAgitation for independence during the 1980s and early 1990s ended in the 1998 Noumea Accord , which over a period of 15 to 20 years will transfer an increasing amount of governing responsibility from France to New Caledonia .\tNN IN NN IN DT NNS CC JJ NNS VBD IN DT CD NNP NNP , WDT IN DT NN IN CD CC CD NNS MD VB DT JJ NN IN VBG NN IN NNP TO NNP NNP .\nThe agreement also commits France to conduct a referendum between 2014 and 2019 to decide whether New Caledonia should assume full sovereignty and independence .\tDT NN RB VBZ NNP TO VB DT NN IN CD CC CD TO VB IN NNP NNP MD VB JJ NN CC NN .\nALL the Goods were once driven out by the Ills from that common share which they each had in the affairs of mankind ; for the Ills by reason of their numbers had prevailed to possess the earth .\tPDT DT NNS VBD RB VBN RP IN DT NNS IN DT JJ NN WDT PRP DT VBD IN DT NNS IN NN ; IN DT NNS IN NN IN PRP$ NNS VBD VBN TO VB DT NN .\nThe Goods wafted themselves to heaven and asked for a righteous vengeance on their persecutors .\tDT NNS VBD PRP TO VB CC VBD IN DT JJ NN IN PRP$ NNS .\nThey entreated Jupiter that they might no longer be associated with the Ills , as they had nothing in common and could not live together , but were engaged in unceasing warfare ; and that an indissoluble law might be laid down for their future protection .\tPRP VBD NNP IN PRP MD RB RB VB VBN IN DT NNS , IN PRP VBD DT IN JJ CC MD RB VB RB , CC VBD VBN IN JJ NN ; CC IN DT JJ NN MD VB VBN RP IN PRP$ JJ NN .\nJupiter granted their request and decreed that henceforth the Ills should visit the earth in company with each other , but that the Goods should one by one enter the habitations of men .\tNNP VBD PRP$ NN CC VBD IN NN DT NNPS MD VB DT NN IN NN IN DT NN , CC IN DT NNS MD CD IN CD VBP DT NNS IN NNS .\nHence it arises that Ills abound , for they come not one by one , but in troops , and by no means singly : while the Goods proceed from Jupiter , and are given , not alike to all , but singly , and separately ; and one by one to those who are able to discern them .\tRB PRP VBZ IN NNPS VB , IN PRP VBP RB CD IN CD , CC IN NNS , CC IN DT NNS RB IN IN DT NNS VBP IN NNP , CC VBP VBN , RB RB TO DT , CC RB , CC RB ; CC CD IN CD TO DT WP VBP JJ TO VB PRP .\nTurkish security officials say Kurdish rebels have killed 13 Turkish soldiers in a southeastern province near the border with Iraq .\tJJ NN NNS VBP NNP NNS VBP VBN CD JJ NNS IN DT JJ NN IN DT NN IN NNP .\nReports from Turkey say the soldiers were killed Sunday in Sirnak province near an area where a Kurdish rebel was killed in earlier fighting .\tNNS IN NNP VBP DT NNS VBD VBN NNP IN NNP NN IN DT NN WRB DT JJ NN VBD VBN IN JJR NN .\nA Turkish army statement said an operation is under way to hunt down the attackers .\tDT JJ NN NN VBD DT NN VBZ IN NN TO VB RP DT NNS .\nIt also said Turkish troops shelled areas near the Iraqi border to try to prevent rebels from reaching their bases in northern Iraq .\tPRP RB VBD JJ NNS VBD NNS IN DT JJ NN TO VB TO VB NNS IN VBG PRP$ NNS IN JJ NNP .\nLast week , rebels from the Kurdistan Workers ' Party , or PKK , ambushed a minibus in Sirnak and killed 12 passengers , including village guards .\tJJ NN , NNS IN DT NNP NNP POS NNP , CC NNP , VBD DT NN IN NNP CC VBD CD NNS , VBG NN NNS .\nAnkara signed an agreement with Baghdad last month that commits Iraqi troops to crack down on PKK rebels who Turkey says use northern Iraq to attack Turkey .\tNNP VBD DT NN IN NNP JJ NN WDT VBZ JJ NNS TO VB RP IN NNP NNS WP NNP VBZ NN JJ NNP TO VB NNP .\nThe deal does not allow Turkey to send its troops into Iraq .\tDT NN VBZ RB VB NNP TO VB PRP$ NNS IN NNP .\nAfghanistan 's government says Afghan and U.S.-led troops have killed five Taleban insurgents in the east of the country .\tNNP POS NN VBZ JJ CC JJ NNS VBP VBN CD NNP NNS IN DT NN IN DT NN .\nThe Afghan Defense Ministry says the rebels were killed in a gun fight Saturday in the eastern province of Paktika .\tDT JJ NNP NNP VBZ DT NNS VBD VBN IN DT NN NN NNP IN DT JJ NN IN NNP .\nAfghan and coalition forces captured one insurgent .\tJJ CC NN NNS VBD CD NN .\nIn other fighting Saturday , a Canadian soldier was killed in Kandahar province when militants ambushed his patrol with a roadside bomb and gunfire .\tIN JJ NN NNP , DT JJ NN VBD VBN IN NNP NN WRB NNS VBD PRP$ NN IN DT NN NN CC NN .\nSeparately , Afghan police are searching for the gunmen who killed two German journalists early Saturday in a remote part of northern Afghanistan .\tRB , JJ NNS VBP VBG IN DT NNS WP VBD CD JJ NNS JJ NNP IN DT JJ NN IN JJ NNP .\nThe two Deutsche Welle journalists , a man and a woman , were shot dead as they spent the night in a tent in Baghlan province .\tDT CD NNP NNP NNS , DT NN CC DT NN , VBD VBN JJ IN PRP VBD DT NN IN DT NN IN NNP NN .\nThe area has been relatively calm this year , and the motive for the shooting is unknown .\tDT NN VBZ VBN RB JJ DT NN , CC DT NN IN DT NN VBZ JJ .\nGerman Foreign Minister Frank-Walter Steinmeier condemned the killings as atrocious and senseless .\tJJ NNP NNP NNP NNP VBD DT NNS IN JJ CC JJ .\nAmerican Idol narrowed the field of hopefuls to 16 March 1 , bouncing two women and two men .\tNNP NNP VBD DT NN IN NNS TO CD NNP CD , VBG CD NNS CC CD NNS .\nThis time , the axe fell on Alaina Alexander , who sang a tepid rendition of the Dixie Chicks ' ' Not Ready To Make Nice , ' and Nick Pedro , deemed lacking in charisma , according to judge Simon Cowell .\tDT NN , DT NN VBD IN NNP NNP , WP VBD DT JJ NN IN DT NNP NNPS POS `` RB JJ TO VB NNP , `` CC NNP NNP , VBD VBG IN NN , VBG TO VB NNP NNP .\nAlso removed were A.J. Tabaldo and Leslie Hunt , who both sang Nina Simone 's ' Feeling Good ' .\tRB VBN VBD NNP NNP CC NNP NNP , WP DT VBD NNP NNP POS `` VBG JJ `` .\nStill in the race , however , is 20-year-old New Jersey native Antonella Barba , whose racy photos have become an Internet sensation .\tRB IN DT NN , RB , VBZ JJ NNP NNP JJ NNP NNP , WP$ JJ NNS VBP VBN DT NNP NN .\nBurma 's detained democracy leader Aung San Suu Kyi has appealed to the ruling military against her home confinement .\tNNP POS JJ NN NN NNP NNP NNP NNP VBZ VBN TO DT NN NN IN PRP$ NN NN .\nA spokesman for her National League for Democracy says the appeal was sent by the party to the cabinet .\tDT NN IN PRP$ NNP NNP IN NNP VBZ DT NN VBD VBN IN DT NN TO DT NN .\nAung San Suu Kyi approved the final draft of her legal appeal during a meeting with her lawyer Kyi Win in September .\tNNP NNP NNP NNP VBD DT JJ NN IN PRP$ JJ NN IN DT NN IN PRP$ NN NNP NNP IN NNP .\nLast month , the military government released 9,000 prisoners , including ten political prisoners in an amnesty ahead of elections planned for 2010 .\tJJ NN , DT JJ NN VBD CD NNS , VBG JJ JJ NNS IN DT NN RB IN NNS VBN IN CD .\nThe NLD won a landslide victory in 1990 elections , but the military refused to acknowledge the win .\tDT NNP VBD DT NN NN IN CD NNS , CC DT NN VBD TO VB DT NN .\nThe Nobel Peace Prize laureate has been under house arrest for 13 of the last 19 years .\tDT NNP NNP NNP NN VBZ VBN IN NN NN IN CD IN DT JJ CD NNS .\nPope Benedict is calling for swift global action to overcome hunger in the troubled Darfur region of western Sudan .\tNNP NNP VBZ VBG IN JJ JJ NN TO VB NN IN DT JJ NNP NN IN JJ NNP .\nSpeaking Sunday , the pontiff said the most basic food needs of hundreds of thousands of people in Darfur are not being met .\tVBG NNP , DT NN VBD DT JJS JJ NN NNS IN NNS IN NNS IN NNS IN NNP VBP RB VBG VBN .\nEarlier this month , the World Food Program said lagging donations had forced it to reduce food rations to 1,050 calories per day - about half of an average person 's daily requirement .\tRBR DT NN , DT NNP NNP NNP VBD VBG NNS VBD VBN PRP TO VB NN NNS TO CD NNS IN NN : IN NN IN DT JJ NN POS JJ NN .\nThe Khartoum government and Darfur 's main rebel group signed a peace deal May fifth to end fighting that has killed more than 2,00,000 people and displaced more than 2.5 million others since 2003 .\tDT NNP NN CC NNP POS JJ NN NN VBD DT NN NN NNP NN TO VB VBG DT VBZ VBN JJR IN CD NNS CC VBN JJR IN CD CD NNS IN CD .\nBut African Union peacekeepers have been unable to stop militia attacks on civilians since then .\tCC NNP NNP NNS VBP VBN JJ TO VB NN NNS IN NNS IN RB .\nProsecutors in Ukraine say they want to question former President Leonid Kuchma about the death of an investigative reporter five years ago .\tNNS IN NNP VBP PRP VBP TO VB JJ NNP NNP NNP IN DT NN IN DT JJ NN CD NNS RB .\nOfficials will pose questions about Georgy Gongadze , an Internet journalist who had been critical of Mr. Kuchma 's government .\tNNS MD VB NNS IN NNP NNP , DT NNP NN WP VBD VBN JJ IN NNP NNP POS NN .\nNo date has been set for the interview .\tDT NN VBZ VBN VBN IN DT NN .\nThe journalist disappeared in September 2000 and his decapitated body was found weeks later .\tDT NN VBD IN NNP CD CC PRP$ JJ NN VBD VBN NNS RB .\nMr. Kuchma 's former bodyguard says he secretly recorded conversations during which the former leader allegedly implicates himself in the killing .\tNNP NNP POS JJ NN VBZ PRP RB VBD NNS IN WDT DT JJ NN RB VBZ PRP IN DT NN .\nThe former president has denied any involvement in Mr. Gongadze 's death .\tDT JJ NN VBZ VBN DT NN IN NNP NNP POS NN .\nFriday , his former interior minister , Yuri Kravchenko , apparently committed suicide hours before he was to be questioned in the case .\tNNP , PRP$ JJ JJ NN , NNP NNP , RB JJ NN NNS IN PRP VBD TO VB VBN IN DT NN .\nU.S. first lady Laura Bush has visited a center for missing children and praised the work of those trying to reunite the families separated by Hurricane Katrina .\tNNP JJ NN NNP NNP VBZ VBN DT NN IN VBG NNS CC VBD DT NN IN DT VBG TO VB DT NNS VBN IN NNP NNP .\nMrs. Bush greeted volunteers at the National Center for Missing and Exploited Children outside Washington Friday .\tNNP NNP VBD NNS IN DT NNP NNP IN NNP CC NNP NNP IN NNP NNP .\nThe center in Alexandria , Virginia says more than 2,000 children are still reported missing from the hurricane or are looking for their parents or other caregivers .\tDT NN IN NNP , NNP VBZ JJR IN CD NNS VBP RB VBN VBG IN DT NN CC VBP VBG IN PRP$ NNS CC JJ NNS .\nPhotographs and information of the missing , including adults , are posted on the center 's website .\tNN CC NN IN DT VBG , VBG NNS , VBP VBN IN DT NN POS NN .\nSome children are only listed by their first name , as their full identification is still unknown , nearly three weeks after the storm hit .\tDT NNS VBP RB VBN IN PRP$ JJ NN , IN PRP$ JJ NN VBZ RB JJ , RB CD NNS IN DT NN VBZ .\nThe American Red Cross also has a registry of the missing .\tDT NNP NNP NNP RB VBZ DT NN IN DT VBG .\nFormer president Jimmy Carter says the U.S. military should close its detention camp at Guantanamo Bay , Cuba , following allegations of prisoner abuse .\tJJ NN NNP NNP VBZ DT NNP NN MD VB PRP$ NN NN IN NNP NNP , NNP , VBG NNS IN NN NN .\nMr. Carter told an audience in Atlanta Tuesday that closing the camp and several other secret detention centers around the globe would show that the United States is committed to defending human rights .\tNNP NNP VBD DT NN IN NNP NNP IN VBG DT NN CC JJ JJ JJ NN NNS IN DT NN MD VB IN DT NNP NNPS VBZ VBN TO VBG JJ NNS .\nEarlier this week , a leading Democrat in the Senate called on President Bush to shut down the Guantanamo camp and launch a massive probe into alleged abuses there .\tRBR DT NN , DT VBG NNP IN DT NNP VBD IN NNP NNP TO VB RP DT NNP NN CC VB DT JJ NN IN JJ NNS RB .\nA report by the human rights group Amnesty International criticizes the U.S. military for holding terrorist suspects without charge and for other abuses .\tDT NN IN DT JJ NNS NN NNP NNP VBZ DT NNP NN IN VBG JJ NNS IN NN CC IN JJ NNS .\nDefense Secretary Donald Rumsfeld has rejected the Amnesty report as ' absurd , ' and he says U.S. officials have no plans to close the camp at Guantanamo .\tNNP NNP NNP NNP VBZ VBN DT JJ NN IN `` JJ , `` CC PRP VBZ NNP NNS VBP DT NNS TO VB DT NN IN NNP .\nNATO says it is investigating allegations that seven members of a private security company were killed Saturday during an Afghan and coalition force operation .\tNNP VBZ PRP VBZ VBG NNS IN CD NNS IN DT JJ NN NN VBD VBN NNP IN DT JJ CC NN NN NN .\nA coalition statement says the deadly shooting happened after its service members had ' peacefully detained ' a Haqqani facilitator in Paktiya province .\tDT NN NN VBZ DT JJ NN VBD IN PRP$ NN NNS VBD `` RB VBN `` DT NNP NN IN NNP NN .\nNATO says after the joint force used a bullhorn to call for occupants of a vehicle to ' exit peacefully , ' a man got out of the vehicle with an AK-47 .\tNNP VBZ IN DT JJ NN VBD DT NN TO VB IN NNS IN DT NN TO `` NN RB , `` DT NN VBD IN IN DT NN IN DT NNP .\nThe alliance says the security force assessed the man ' to be hostile ' and shot him .\tDT NN VBZ DT NN NN VBD DT NN `` TO VB JJ `` CC VBD PRP .\nNATO says several armed individuals then clashed with the force , resulting in seven deaths .\tNNP VBZ JJ JJ NNS RB VBD IN DT NN , VBG IN CD NNS .\nNATO says it is assessing who the individuals were .\tNNP VBZ PRP VBZ VBG WP DT NNS VBD .\nBrazilian security forces , backed by tanks and helicopters , have carried out an operation to recover stolen weapons from a slum in Rio de Janeiro .\tJJ NN NNS , VBN IN NNS CC NNS , VBP VBN RP DT NN TO VB JJ NNS IN DT NN IN NNP NNP NNP .\nMore than 1,000 soldiers and police officers searched Monday for 10 assault rifles and a nine-millimeter pistol stolen from army barracks by a group of armed men on Friday .\tJJR IN CD NNS CC NN NNS VBD NNP IN CD NN NNS CC DT JJ NN VBN IN NN NNS IN DT NN IN JJ NNS IN NNP .\nA homemade bomb was hurled at soldiers at the entrance of the Providencia slum in the early hours of Monday morning .\tDT JJ NN VBD VBN IN NNS IN DT NN IN DT NNP NN IN DT JJ NNS IN NNP NN .\nNo injuries were reported .\tDT NNS VBD VBN .\nSecurity officials say police and soldiers exchanged fire with slum residents .\tNN NNS VBP NNS CC NNS VBD NN IN NN NNS .\nRio is one of the world 's most violent cities .\tNNP VBZ CD IN DT NN POS RBS JJ NNS .\nIts slums are often the scene of gang and drug-related violence that kills hundreds of people each year .\tPRP$ NNS VBP RB DT NN IN NN CC JJ NN WDT VBZ NNS IN NNS DT NN .\nChina has issued a new set of rules that state-media said would better protect religious freedoms in the officially atheist country .\tNNP VBZ VBN DT JJ NN IN NNS IN NN VBD MD RB VB JJ NNS IN DT RB JJ NN .\nThe official Xinhua news agency said Sunday that the Religious Affairs Provisions explicitly specify the rights of religious groups , religious sites , and people .\tDT JJ NNP NN NN VBD NNP IN DT JJ NNP NNPS RB VB DT NNS IN JJ NNS , JJ NNS , CC NNS .\nThey also offer guidance on religious affairs involving state and public interests .\tPRP RB VBP NN IN JJ NNS VBG NN CC JJ NNS .\nXinhua called the rules a significant step forward in the protection of Chinese citizens ' religious freedom .\tNNP VBD DT NNS DT JJ NN RB IN DT NN IN JJ NNS POS JJ NN .\nThe U.S. State Department 's Annual Report on Religious Freedom last year rebuked China for poor respect for religious freedom and interference and harassment of people who do not belong to state churches .\tDT NNP NNP NNP POS NNP NNP IN NNP NNP JJ NN VBD NNP IN JJ NN IN JJ NN CC NN CC NN IN NNS WP VBP RB VB TO NN NNS .\nChina requires people to worship in state-sanctioned churches and cracks down on groups outside of the government 's control .\tNNP VBZ NNS TO VB IN JJ NNS CC VBZ RB IN NNS IN IN DT NN POS NN .\nA new public opinion poll in the United States says President Bush 's job approval rating has fallen to an all-time low of 45 percent because of the war in Iraq and rising gasoline prices .\tDT JJ JJ NN NN IN DT NNP NNPS VBZ NNP NNP POS NN NN NN VBZ VBN TO DT JJ NN IN CD NN IN IN DT NN IN NNP CC VBG NN NNS .\nThe ABC News-Washington Post survey published Wednesday found that just over half ( 53 percent ) of the 1,600 people surveyed said the war in Iraq is not worth fighting , while 57 percent disapprove of the president 's handling of the conflict .\tDT NNP NNP NNP NN VBN NNP VBD IN RB IN NN LRB CD NN RRB IN DT CD NNS VBN VBD DT NN IN NNP VBZ RB JJ NN , IN CD NN NN IN DT NN POS NN IN DT NN .\nThe survey also said 73 percent disapprove of President Bush 's efforts to control the soaring gasoline prices in the United States .\tDT NN RB VBD CD NN NN IN NNP NNP POS NNS TO VB DT VBG NN NNS IN DT NNP NNPS .\nThe poll said that Mr. Bush 's handing of the war against terrorism received 56 percent approval , the only issue on which he received a majority approval .\tDT NN VBD IN NNP NNP POS NN IN DT NN IN NN VBD CD NN NN , DT JJ NN IN WDT PRP VBD DT NN NN .\nThe poll of randomly selected Americans has a three percent margin of error .\tDT NN IN RB VBN NNS VBZ DT CD NN NN IN NN .\nKenyan police say thieves tried to break into the home of Sarah Obama , the grandmother of U.S. presidential hopeful Barack Obama .\tJJ NNS VBP NNS VBD TO VB IN DT NN IN NNP NNP , DT NN IN NNP JJ NN NNP NNP .\nThe 85-year-old Obama told police and Kenyan media that the break-in attempt occurred early Wednesday at her home in the western village of Kogelo .\tDT JJ NNP VBD NNS CC JJ NNS IN DT JJ NN VBD JJ NNP IN PRP$ NN IN DT JJ NN IN NNP .\nShe told a Kenyan newspaper , The Daily Nation , that the thieves tried to get into the house through the kitchen door and then tried to remove a solar panel from the roof .\tPRP VBD DT JJ NN , DT NNP NNP , IN DT NNS VBD TO VB IN DT NN IN DT NN NN CC RB VBD TO VB DT JJ NN IN DT NN .\nPolice say they have arrested four suspects in connection with the incident and are now giving Obama 24-hour protection .\tNNS VBP PRP VBP VBN CD NNS IN NN IN DT NN CC VBP RB VBG NNP JJ NN .\nBarack Obama was born to a white American mother and a Kenyan father .\tNNP NNP VBD VBN TO DT JJ JJ NN CC DT JJ NN .\nThe Democratic Party candidate is wildly popular among Kenyans , who take pride in his run for the presidency .\tDT JJ NNP NN VBZ RB JJ IN NNS , WP VBP NN IN PRP$ NN IN DT NN .\nSarah Obama is his step-grandmother .\tNNP NNP VBZ PRP$ NN .\nSupporters of Zimbabwean President Robert Mugabe have raised $ 2,50,000 to throw him a lavish birthday party , Saturday .\tNNS IN JJ NNP NNP NNP VBP VBN $ CD TO VB PRP DT JJ NN NN , NNP .\nThe state-run Herald newspaper says Mr. Mugabe 's 85th birthday will be celebrated in the town of Chinhoyi , north of the capital Harare .\tDT JJ NNP NN VBZ NNP NNP POS JJ NN MD VB VBN IN DT NN IN NNP , NN IN DT NN NN .\nPrime Minister Morgan Tsvangirai , the president 's longtime rival , plans to attend the event .\tNNP NNP NNP NNP , DT NN POS JJ NN , VBZ TO VB DT NN .\nThe two men recently entered into a unity government under intense pressure from regional leaders .\tDT CD NNS RB VBD IN DT NN NN IN JJ NN IN JJ NNS .\nMr. Tsvangirai has criticized the president 's birthday parties in the past , saying they waste money in a country crippled by poverty and food shortages .\tNNP NNP VBZ VBN DT NN POS NN NNS IN DT NN , VBG PRP VB NN IN DT NN VBN IN NN CC NN NNS .\nIraqi Kurdish negotiators say they will resume talks Monday with the country 's dominant Shi'ite alliance to hammer out details of a coalition government .\tJJ NNP NNS VBP PRP MD VB NNS NNP IN DT NN POS JJ NNP NN TO VB RP NNS IN DT NN NN .\nOne of the negotiators , Fuad Masoum , says there are further , important issues that need to be resolved before a government is formed .\tCD IN DT NNS , NNP NNP , VBZ EX VBP RB , JJ NNS WDT VBP TO VB VBN IN DT NN VBZ VBN .\nNegotiators have been hoping to agree on a government before Iraq 's National Assembly convenes for the first time on Wednesday .\tNNS VBP VBN VBG TO VB IN DT NN IN NNP POS NNP NNP VBZ IN DT JJ NN IN NNP .\nMeanwhile , a roadside bomb south of Baghdad killed two American security contractors Sunday .\tRB , DT NN NN NN IN NNP VBD CD JJ NN NNS NNP .\nTo the north , in Mosul , witnesses say three Iraqi civilians were killed when a U.S. helicopter fired on insurgents .\tTO DT NN , IN NNP , NNS VBP CD JJ NNS VBD VBN WRB DT NNP NN VBD IN NNS .\nAlso Sunday , a previously-unknown group claimed responsibility for last week 's bomb attack on a Shi'ite funeral that killed 50 people .\tRB NNP , DT JJ NN VBD NN IN JJ NN POS NN NN IN DT NNP NN WDT VBD CD NNS .\nIt says the attack was to demonstrate opposition to Shi'ites who are set to take control of Iraq 's new government .\tPRP VBZ DT NN VBD TO VB NN TO NNS WP VBP VBN TO VB NN IN NNP POS JJ NN .\nA prominent U.S. newspaper says Washington wants to expand a secret Central Intelligence Agency operation in Pakistan designed to eliminate Islamic militants ' havens near the Afghan border .\tDT JJ NNP NN VBZ NNP VBZ TO VB DT JJ NNP NNP NNP NN IN NNP VBD TO VB NNP NNS POS NNS IN DT JJ NN .\nThe Wall Street Journal reported late Friday the U.S. has asked Pakistan in recent weeks to allow more CIA officers and special operations military trainers into the country to participate in Washington 's efforts step up pressure on militants .\tDT NNP NNP NNP VBD JJ NNP DT NNP VBZ VBN NNP IN JJ NNS TO VB JJR NNP NNS CC JJ NNS JJ NNS IN DT NN TO VB IN NNP POS NNS VB RP NN IN NNS .\nThe report says Islamabad has refused the requests for additional personnel because it remains ' extremely wary ' of a larger U.S. ground presence in Pakistan .\tDT NN VBZ NNP VBZ VBN DT NNS IN JJ NNS IN PRP VBZ `` RB JJ `` IN DT JJR NNP NN NN IN NNP .\nThe newspaper reports the number of CIA personnel in Pakistan is ' highly classified , ' but says it ' has grown substantially ' in recent years .\tDT NN VBZ DT NN IN NNP NNS IN NNP VBZ `` RB VBN , `` CC VBZ PRP `` VBZ VBN RB `` IN JJ NNS .\nThe Wall Street Journal says Washington wants Islamabad to take ' more aggressive action ' against groups allied with al-Qaida .\tDT NNP NNP NNP VBZ NNP VBZ NNP TO VB `` RBR JJ NN `` IN NNS VBN IN NNP .\nThe death toll from a passenger train derailment in southern India has risen to at least 77 people , after rescue workers retrieved more bodies from the mangled wreckage .\tDT NN NN IN DT NN NN NN IN JJ NNP VBZ VBN TO IN JJS CD NNS , IN NN NNS VBD JJR NNS IN DT JJ NN .\nAuthorities say the accident occurred Saturday , near the town of Veligonda in southern Andhra Pradesh state .\tNNS VBP DT NN VBD NNP , IN DT NN IN NNP IN JJ NNP NNP NN .\nThey say heavy rains washed away a portion of the tracks and that the train derailed and fell into a swollen river .\tPRP VBP JJ NNS VBN RB DT NN IN DT NNS CC IN DT NN VBD CC VBD IN DT JJ NN .\nOfficials say at least 100 injured passengers were rescued from the seven cars that plunged into the flood waters , but that many more remain trapped inside .\tNNS VBP IN JJS CD JJ NNS VBD VBN IN DT CD NNS WDT VBD IN DT NN NNS , CC IN JJ JJR VBP JJ NN .\nIndian television images showed corpses lying on the soft marshy ground , many clad in brightly colored , but sodden clothes .\tJJ NN NNS VBD NNS VBG IN DT JJ NN NN , JJ NN IN RB VBN , CC JJ NNS .\nRescuers used ropes to help them wade through the water to reach the train carriages and then drag bodies onto higher land .\tNNS VBD NNS TO VB PRP VB IN DT NN TO VB DT NN NNS CC RB VB NNS IN JJR NN .\nA laboratory in Hong Kong has confirmed it was the deadly H5N1 strain of bird flu that killed two Indonesian children from the same family this month .\tDT NN IN NNP NNP VBZ VBN PRP VBD DT JJ NNP NN IN NN NN WDT VBD CD JJ NNS IN DT JJ NN DT NN .\nAn Indonesian Health Ministry official said Saturday the deaths in West Java province raise the country 's toll from bird flu to 14 confirmed cases .\tDT JJ NNP NNP NN VBD NNP DT NNS IN NNP NNP NN VB DT NN POS NN IN NN NN TO CD VBN NNS .\nA three-year-old boy died Tuesday at a provincial hospital .\tDT JJ NN VBD NNP IN DT JJ NN .\nHis 13-year-old sister died the previous week , and a third sibling is suffering symptoms of the virus .\tPRP$ JJ NN VBD DT JJ NN , CC DT JJ NN VBZ VBG NNS IN DT NN .\nElsewhere , Ukraine has confirmed a new outbreak of bird flu among birds in the southern Crimea Peninsula .\tRB , NNP VBZ VBN DT JJ NN IN NN NN IN NNS IN DT JJ NNP NNP .\nUkrainian officials say they do not yet know if the birds had the H5N1 strain .\tJJ NNS VBP PRP VBP RB RB VB IN DT NNS VBD DT NNP NN .\nThe World Health Organization has confirmed more than 80 deaths from bird flu in East Asia and Turkey since 2003 .\tDT NNP NNP NNP VBZ VBN JJR IN CD NNS IN NN NN IN NNP NNP CC NNP IN CD .\nAn outbreak of cholera in West Africa has killed at least 177 people and sickened more than 9,000 in Guinea-Bissau within the past month .\tDT NN IN NN IN NNP NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD IN NNP IN DT JJ NN .\nIn an attempt to control the outbreak , the government has banned the sale of water at markets .\tIN DT NN TO VB DT NN , DT NN VBZ VBN DT NN IN NN IN NNS .\nCholera is an intestinal infection usually spread through contaminated water or food .\tNN VBZ DT JJ NN RB VBN IN JJ NN CC NN .\nIt causes life-threatening dehydration if not treated .\tPRP VBZ JJ NN IN RB VBN .\nHealth officials say this year 's rainy season in Guinea-Bissau has created favorable conditions for the spread of the disease .\tNN NNS VBP DT NN POS NN NN IN NNP VBZ VBN JJ NNS IN DT NN IN DT NN .\nFlooded latrines can contaminate nearby well water .\tJJ NNS MD VB RB RB NN .\nThe World Health Organization says Burkina Faso , Guinea , Liberia , Mali , Mauritania , Niger and Senegal also have seen a rise in cholera cases .\tDT NNP NNP NNP VBZ NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP RB VBP VBN DT NN IN NN NNS .\nGermany 's highest court has ruled that random data profiling for terror suspects is legal only when the country faces a specific threat to security or lives .\tNNP POS JJS NN VBZ VBN IN JJ NNS VBG IN NN NNS VBZ JJ RB WRB DT NN VBZ DT JJ NN TO NN CC NNS .\nGermany 's Constitutional Court ruled Tuesday that the general threat of terror since September 11 , 2001 , does not warrant random profiling .\tNNP POS NNP NNP VBD NNP IN DT JJ NN IN NN IN NNP CD , CD , VBZ RB VB JJ NN .\nAnalysts say the ruling could force many German states to revise laws on random searches .\tNNS VBP DT NN MD VB JJ JJ NNS TO VB NNS IN JJ NNS .\nThe measure stems from the case of a Moroccan student in the German state of North Rhine-Westphalia , who challenged scanned data on five million men who were profiled following the 2001 terror attacks on the United States .\tDT NN VBZ IN DT NN IN DT JJ NN IN DT JJ NN IN NNP NNP , WP VBD VBN NNS IN CD CD NNS WP VBD VBN VBG DT CD NN NNS IN DT NNP NNPS .\nNo terror suspects were found in the data search .\tDT NN NNS VBD VBN IN DT NNS NN .\nBavarian Interior Minister Guenther Beckstein criticized today 's ruling , saying data profiling is an effective way to combat terrorism .\tJJ NNP NNP NNP NNP VBD NN POS NN , VBG NNS VBG VBZ DT JJ NN TO VB NN .\nIsraeli soldiers on stand by in the Gush Katif bloc of Jewish settlements leading to the site were Palestinian militants attacked an army post near Egypt-Gaza border Israeli security officials say three soldiers have been wounded in an attack by Palestinian militants .\tJJ NNS IN NN IN IN DT NNP NNP NN IN JJ NNS VBG TO DT NN VBD JJ NNS VBD DT NN NN IN NNP NN JJ NN NNS VBP CD NNS VBP VBN VBN IN DT NN IN JJ NNS .\nIsraeli officials say two militants fired light arms and rocket-propelled grenades at soldiers and civilians near any army post on the Gaza-Egypt border Sunday .\tJJ NNS VBP CD NNS VBD JJ NNS CC JJ NNS IN NNS CC NNS IN DT NN NN IN DT JJ NN NNP .\nAuthorities say the soldiers returned fire , killing one of the attackers .\tNNS VBP DT NNS VBD NN , VBG CD IN DT NNS .\nThe militant group Islamic Jihad said the attack was a joint operation between its militants and those affiliated with the Fatah movement of Palestinian leader Mahmoud Abbas .\tDT JJ NN NNP NNP VBD DT NN VBD DT JJ NN IN PRP$ NNS CC DT VBN IN DT NNP NN IN JJ NN NNP NNP .\nSierra Leone 's U.N.-backed war crimes tribunal has accused former Liberian President Charles Taylor of backing an attempt to kill Guinea 's president .\tNNP NNP POS JJ NN NNS NN VBZ VBN JJ JJ NNP NNP NNP IN VBG DT NN TO VB NNP POS NN .\nThe court 's chief prosecutor David Crane says the exiled former leader ordered the assassination of Guinean President Lansana Conte in January to punish him for allegedly supporting rebels in Liberia .\tDT NN POS NN NN NNP NNP VBZ DT VBN JJ NN VBD DT NN IN JJ NNP NNP NNP IN NNP TO VB PRP IN RB VBG NNS IN NNP .\nA spokesman for Mr. Taylor has denied the charge .\tDT NN IN NNP NNP VBZ VBN DT NN .\nHe has lived in exile in Nigeria since 2003 when he stepped down under pressure from advancing rebels and the United States .\tPRP VBZ VBN IN NN IN NNP IN CD WRB PRP VBD RB IN NN IN VBG NNS CC DT NNP NNPS .\nBefore Mr. Taylor left office , the special court indicted him on war crimes charges for backing rebels during Sierra Leone 's 10-year civil war .\tIN NNP NNP VBD NN , DT JJ NN VBD PRP IN NN NNS NNS IN VBG NNS IN NNP NNP POS JJ JJ NN .\nMeanwhile , the United States House of Representatives is expected to pass a resolution calling on Nigeria to hand Mr. Taylor to the tribunal .\tRB , DT NNP NNP NNP IN NNPS VBZ VBN TO VB DT NN VBG IN NNP TO VB NNP NNP TO DT NN .\nPanama says drug-running Colombian rebels have planted landmines in Panama near the two countries ' shared border .\tNNP VBZ JJ JJ NNS VBP VBN NNS IN NNP IN DT CD NNS POS JJ NN .\nPanamanian Security Minister Jose Mulino said Friday that whoever planted the mines is apparently ' protecting something ' in the area .\tJJ NNP NNP NNP NNP VBD NNP IN WP VBD DT NNS VBZ RB `` VBG DT `` IN DT NN .\nMulino did not say how many mines were found in the Darien region where two police officers were wounded last week in a mine blast .\tNNP VBD RB VB WRB JJ NNS VBD VBN IN DT NNP NN WRB CD NNS NNS VBD VBN JJ NN IN DT NN NN .\nThe region has been the scene of occasional incursions by rebels into Panamanian territory in the past .\tDT NN VBZ VBN DT NN IN JJ NNS IN NNS IN JJ NN IN DT NN .\nPalestinian officials say Israeli soldiers have shot and killed at least two Palestinians in separate incidents in the West Bank .\tJJ NNS VBP JJ NNS VBP VBN CC VBN IN JJS CD NNS IN JJ NNS IN DT NNP NNP .\nEarly Sunday , Israeli troops killed a member of the Al-Aqsa Martyrs Brigades in a refugee camp in Nablus .\tRB NNP , JJ NNS VBD DT NN IN DT NNP NNP NNP IN DT NN NN IN NNP .\nAn Israeli army spokesman said soldiers opened fire on two gunmen , killing one and wounding the other .\tDT JJ NN NN VBD NNS VBD NN IN CD NNS , VBG CD CC VBG DT JJ .\nIn the other incident , near Hebron , Israeli forces killed a man who was involved in a shootout between two Palestinian families .\tIN DT JJ NN , IN NNP , JJ NNS VBD DT NN WP VBD VBN IN DT NN IN CD JJ NNS .\nAn Israeli army spokesman says the man was armed .\tDT JJ NN NN VBZ DT NN VBD VBN .\nSeparately , in the Gaza Strip , Hamas security forces say they found a bomb near the Palestinian parliament building .\tRB , IN DT NNP NNP , NNP NN NNS VBP PRP VBD DT NN IN DT JJ NN NN .\nHamas blamed members of the rival Fatah movement for planting the device .\tNNP VBD NNS IN DT JJ NNP NN IN VBG DT NN .\nHamas seized control of Gaza in June after factional fighting with Fatah that killed more than 100 people .\tNNP VBD NN IN NNP IN NNP IN JJ NN IN NNP WDT VBD JJR IN CD NNS .\nThe Turkish Weightlifting Federation has been fined $ 1,00,000 and suspended from all international competitions until May 31 following a series of anti-doping violations .\tDT JJ NNP NNP VBZ VBN VBN $ CD CC VBN IN DT JJ NNS IN NNP CD VBG DT NN IN JJ NNS .\nIn a statement Tuesday after a meeting in Doha , Qatar , the International Weightlifting Federation 's executive committee sanctioned Turkey 's federation for ' bringing the sport of weightlifting into disrepute . '\tIN DT NN NNP IN DT NN IN NNP , NNP , DT NNP NNP NNP POS NN NN VBD NNP POS NN IN `` VBG DT NN IN VBG IN NN . ``\nThe fine must be paid before Turkey can be readmitted to the sport 's International Federation , with the money to be used for anti-doping activities .\tDT NN MD VB VBN IN NNP MD VB VBN TO DT NN POS NNP NNP , IN DT NN TO VB VBN IN JJ NNS .\nThe IWF also directed the Turkish Federation to identify and sanction athletes and coaches involved in the violations , and develop an anti-doping education program to be approved and monitored by the world body 's executive board .\tDT NNP RB VBD DT JJ NNP TO VB CC VB NNS CC NNS VBN IN DT NNS , CC VB DT JJ NN NN TO VB VBN CC VBN IN DT NN NN POS NN NN .\nBrazil 's president is pledging to invest at least $ 1.7 billion to develop Rio de Janeiro 's slums .\tNNP POS NN VBZ VBG TO VB IN JJS $ CD CD TO VB NNP NNP NNP POS NNS .\nIn a speech on Monday , Luiz Inacio Lula da Silva said the state should meet its obligations to slum dwellers or else drug traffickers will take over the shantytowns .\tIN DT NN IN NNP , NNP NNP NNP NNP NNP VBD DT NN MD VB PRP$ NNS TO NN NNS CC RB NN NNS MD VB RP DT NNS .\nHe added that Brazil can defeat organized crime only if the government improves the country 's poorest areas .\tPRP VBD IN NNP MD VB JJ NN RB IN DT NN VBZ DT NN POS JJS NNS .\nMr. da Silva spoke a few days after a police raid on drug gangs killed at least 13 people in a slum .\tNNP NNP NNP VBD DT JJ NNS IN DT NN NN IN NN NNS VBD IN JJS CD NNS IN DT NN .\nThe announced investment will provide basic services such as water and sewage systems , as well as basic facilities such as schools and hospitals .\tDT JJ NN MD VB JJ NNS JJ IN NN CC NN NNS , RB RB IN JJ NNS JJ IN NNS CC NNS .\nThe money is expected to benefit two million families in the state and city of Rio de Janeiro .\tDT NN VBZ VBN TO VB CD CD NNS IN DT NN CC NN IN NNP IN NNP .\nBrazil 's federal , state , and municipal governments will all contribute to the fund .\tNNP POS JJ , NN , CC JJ NNS MD RB VB TO DT NN .\nBefore Hurricane Gustav even made landfall , the American Red Cross had spent $ 12 million organizing 5,000 workers and supplies for disaster relief .\tIN NNP NNP RB VBD NN , DT NNP NNP NNP VBD VBN $ CD CD VBG CD NNS CC NNS IN NN NN .\nNow , hundreds of Red Cross chapters nationwide are getting ready for the next group of storms .\tRB , NNS IN NNP NNP NNS RB VBP VBG JJ IN DT JJ NN IN NNS .\nVOA 's Carolyn Presutti shows how that is accomplished .\tNNP POS NNP NNP VBZ WRB DT VBZ VBN .\nThe United Nations Security Council is expected to discuss a build-up of peacekeeping troops in Ivory Coast later Monday .\tDT NNP NNP NNP NNP VBZ VBN TO VB DT NN IN VBG NNS IN NNP NNP RB NNP .\nU.N. Secretary-General Kofi Annan has officially requested the transfer of 200 additional peacekeepers and a police unit from Liberia to protect U.N. personnel and property .\tNNP NNP NNP NNP VBZ RB VBN DT NN IN CD JJ NNS CC DT NN NN IN NNP TO VB NNP NNS CC NN .\nOn Sunday , Mr. Annan urged the Council for a quick approval .\tIN NNP , NNP NNP VBD DT NNP IN DT JJ NN .\nHe said in a statement that he is deeply concerned by continued threats against U.N. personnel and by reports that more violent protests and attacks are being planned .\tPRP VBD IN DT NN IN PRP VBZ RB VBN IN JJ NNS IN NNP NNS CC IN NNS IN JJR JJ NNS CC NNS VBP VBG VBN .\nThe U.N. evacuated hundreds of staffers from Ivory Coast last month after supporters of President Laurent Gbagbo assaulted U.N. compounds .\tDT NNP VBD NNS IN NNS IN NNP NNP JJ NN IN NNS IN NNP NNP NNP VBD NNP NNS .\nThe U.N. currently has 7,000 peacekeepers in Ivory Coast , working with 4,000 French troops trying to uphold a shaky peace agreement .\tDT NNP RB VBZ CD NNS IN NNP NNP , VBG IN CD JJ NNS VBG TO VB DT JJ NN NN .\nThe West African nation has been divided into a rebel-held north and government-controlled south since a 2002 civil war .\tDT JJ JJ NN VBZ VBN VBN IN DT JJ NN CC JJ NN IN DT CD JJ NN .\nU.S. Special Prosecutor Patrick Fitzgerald has met with a federal grand jury investigating the leak of a covert CIA operative 's identity .\tNNP NNP NNP NNP NNP VBZ VBN IN DT JJ JJ NN VBG DT NN IN DT JJ NNP NN POS NN .\nLawyers in the case have said Mr. Fitzgerald may ask the jury to issue charges against President Bush 's chief advisor , Karl Rove , and Vice President Dick Cheney 's chief of staff , Lewis Libby .\tNNS IN DT NN VBP VBN NNP NNP MD VB DT NN TO NN NNS IN NNP NNP POS JJ NN , NNP NNP , CC NNP NNP NNP NNP POS NN IN NN , NNP NNP .\nMr. Fitzgerald has been conducting a nearly two-year investigation into whether someone in the Bush administration blew the cover of a CIA operative ( Valerie Plame ) in 2003 .\tNNP NNP VBZ VBN VBG DT RB JJ NN IN IN DT IN DT NNP NN VBD DT NN IN DT NNP NN LRB NNP NNP RRB IN CD .\nIt is a federal crime to knowingly reveal a covert agent 's identity .\tPRP VBZ DT JJ NN TO RB VB DT JJ NN POS NN .\nThe grand jury is scheduled to expire Friday unless extended by a federal judge .\tDT JJ NN VBZ VBN TO VB NNP IN VBN IN DT JJ NN .\nThe White House has generally refused to comment on the probe , although media reports indicate Bush administration officials are bracing for at least one indictment .\tDT NNP NNP VBZ RB VBN TO VB IN DT NN , IN NNS NNS VBP NNP NN NNS VBP VBG IN IN JJS CD NN .\nUnited Nations Secretary-General Kofi Annan will formally present Monday a report that calls for major reforms of the world body .\tNNP NNP NNP NNP NNP MD RB VB NNP DT NN WDT VBZ IN JJ NNS IN DT NN NN .\nAmong changes Mr. Annan will call for during a speech to the General Assembly is expanding the Security Council from its current 15 members , which includes five permanent seats - the United States , Britain , France , China and Russia .\tIN NNS NNP NNP MD VB IN IN DT NN TO DT NNP NNP VBZ VBG DT NNP NNP IN PRP$ JJ CD NNS , WDT VBZ CD JJ NNS IN DT NNP NNPS , NNP , NNP , NNP CC NNP .\nIf the Council expands , India , Brazil , Germany and Japan are among nations wanting to be added as permanent members .\tIN DT NNP NNS , NNP , NNP , NNP CC NNP VBP IN NNS VBG TO VB VBN IN JJ NNS .\nAnother proposal is the creation of a smaller human rights panel to replace the current Commission on Human Rights .\tDT NN VBZ DT NN IN DT JJR JJ NNS NN TO VB DT JJ NNP IN NNP NNP .\nThe commission has been criticized for allowing some accused human rights abusers to use their membership to protect each other from condemnation .\tDT NN VBZ VBN VBN IN VBG DT VBN JJ NNS NNS TO VB PRP$ NN TO VB DT NN IN NN .\nCalls for U.N. reform have increased in recent years , fueled in part by financial scandal in the Iraq oil-for-food program , and the U.S. decision to invade Iraq without Security Council approval .\tNNS IN NNP NN VBP VBN IN JJ NNS , VBD IN NN IN JJ NN IN DT NNP NN NN , CC DT NNP NN TO VB NNP IN NNP NNP NN .\nThe U.N. nuclear agency says its investigation into an alleged secret nuclear reactor in Syria has made a ' good start ' after inspectors visited the site .\tDT NNP JJ NN VBZ PRP$ NN IN DT JJ JJ JJ NN IN NNP VBZ VBN DT `` JJ NN `` IN NNS VBD DT NN .\nChief inspector Olli Heinonen said Wednesday that he and two colleagues achieved what they wanted from their first trip to Syria as part of the investigation .\tJJ NN NNP NNP VBD NNP IN PRP CC CD NNS VBD WP PRP VBD IN PRP$ JJ NN TO NNP IN NN IN DT NN .\nThe International Atomic Energy Agency official was speaking on his return to Vienna after four days in Syria .\tDT NNP NNP NNP NNP NN VBD VBG IN PRP$ NN TO NNP IN CD NNS IN NNP .\nHeinonen said his team took samples at the Al Kibar complex in northeastern Syria that Washington says housed a covert nuclear reactor built with North Korean help .\tNNP VBD PRP$ NN VBD NNS IN DT NNP NNP NN IN JJ NNP IN NNP VBZ VBD DT JJ JJ NN VBN IN JJ JJ NN .\nIsraeli warplanes destroyed the building last September .\tJJ NNS VBD DT NN JJ NNP .\nHeinonen said the agency still has work to do in analyzing samples from the site .\tNNP VBD DT NN RB VBZ NN TO VB IN VBG NNS IN DT NN .\nHe did not say when U.N. inspectors may return to Syria .\tPRP VBD RB VB WRB NNP NNS MD VB TO NNP .\nDamascus denies U.S. intelligence allegations that it built a secret nuclear reactor and accuses Washington of fabricating evidence .\tNNP VBZ NNP NN NNS IN PRP VBD DT JJ JJ NN CC VBZ NNP IN VBG NN .\nNepal 's new government has released more Maoist rebels detained under a scrapped anti-terror law .\tNNP POS JJ NN VBZ VBN RBR JJ NNS VBN IN DT VBN JJ NN .\nAt least 182 rebels are now free .\tIN JJS CD NNS VBP RB JJ .\nThe government of interim Prime Minister Girija Prasad Koirala announced Monday that it was dropping terrorism charges against hundreds of rebels .\tDT NN IN JJ NNP NNP NNP NNP NNP VBD NNP IN PRP VBD VBG NN NNS IN NNS IN NNS .\nThey were imprisoned by the former royalist government of King Gyanendra .\tPRP VBD VBN IN DT JJ NN NN IN NNP NNP .\nFriends and relatives greeted the former prisoners Tuesday afternoon .\tNNS CC NNS VBD DT JJ NNS NNP NN .\nThe rebels raised their fists in a Maoist salute and chanted Maoist slogans .\tDT NNS VBD PRP$ NNS IN DT NNP NN CC VBD NNP NNS .\nA Maoist rebel spokesman , Krishna Mahara , says the government has promised to free 350 rebels , although hundreds more will remain in jail .\tDT NNP NN NN , NNP NNP , VBZ DT NN VBZ VBN TO VB CD NNS , IN NNS RBR MD VB IN NN .\nThe government decision to release the rebels came following talks on Sunday between Nepal 's home affairs minister , Krishna Prasad Sitaula , and Maoist leader Prachanda in a remote western village .\tDT NN NN TO VB DT NNS VBD VBG NNS IN NNP IN NNP POS NN NNS NN , NNP NNP NNP , CC NNP NN NNP IN DT JJ JJ NN .\nU.S. Democratic presidential hopeful Barack Obama has proposed a clampdown on energy speculation which he believes is responsible for record-high oil prices .\tNNP JJ JJ JJ NN NNP VBZ VBN DT NN IN NN NN WDT PRP VBZ VBZ JJ IN JJ NN NNS .\nSenator Obama Sunday announced the proposal , which would close a legal provision that exempts energy commodies from government oversight .\tNNP NNP NNP VBD DT NN , WDT MD VB DT JJ NN WDT VBZ NN NNS IN NN NN .\nCritics say the deregulation measure , signed in 2000 by then-President Bill Clinton , opened the way to uncontrolled speculation in the oil markets .\tNNS VBP DT NN NN , VBN IN CD IN JJ NNP NNP , VBD DT NN TO JJ NN IN DT NN NNS .\nThe price of gasoline has become a campaign issue between Obama and presumptive Republican nominee John McCain .\tDT NN IN NN VBZ VBN DT NN NN IN NNP CC JJ JJ NN NNP NNP .\nSenator McCain wants Congress to lift a ban on offshore oil drilling , while Obama says such a measure would not help the problem in the short term .\tNNP NNP VBZ NNP TO VB DT NN IN JJ NN NN , IN NNP VBZ PDT DT NN MD RB VB DT NN IN DT JJ NN .\nObama 's announcement concides with a major energy summit in Saudi Arabia on ways to rein in the high oil prices .\tNNP POS NN VBZ IN DT JJ NN NN IN NNP NNP IN NNS TO VB IN DT JJ NN NNS .\nThe teenage boy at the center of the latest Michael Jackson scandal says the pop star sexually molested him twice in the singer 's bedroom .\tDT NN NN IN DT NN IN DT JJS NNP NNP NN VBZ DT NN NN RB VBD PRP RB IN DT NN POS NN .\nThe accuser , who testified in a California court Thursday , was a 13-year old cancer patient at the time of the alleged incidents .\tDT NN , WP VBD IN DT NNP NN NNP , VBD DT JJ JJ NN NN IN DT NN IN DT JJ NNS .\nMr. Jackson had invited him and his family for a visit in 2003 .\tNNP NNP VBD VBN PRP CC PRP$ NN IN DT NN IN CD .\nThe teen also testified that the entertainer urged him to drink wine aboard his private jet and hard liquor at the singer 's ranch .\tDT NN RB VBD IN DT NN VBD PRP TO VB NN IN PRP$ JJ NN CC JJ NN IN DT NN POS NN .\nMr. Jackson has denied all the charges against him .\tNNP NNP VBZ VBN PDT DT NNS IN PRP .\nThursday 's testimony came after the judge threatened to jail Mr. Jackson and revoke his bail when he arrived more than one hour late for court .\tNNP POS NN VBD IN DT NN VBD TO VB NNP NNP CC VB PRP$ NN WRB PRP VBD JJR IN CD NN JJ IN NN .\nA Jackson spokesman said the star had been hospitalized for a serious back injury .\tDT NNP NN VBD DT NN VBD VBN VBN IN DT JJ NN NN .\nPakistan has denied allegations by Moscow that militants have been training on Pakistani territory to carry out terrorist attacks in Russia and the former Soviet central Asian nations .\tNNP VBZ VBN NNS IN NNP IN NNS VBP VBN VBG IN JJ NN TO VB RP JJ NNS IN NNP CC DT JJ JJ JJ JJ NNS .\nForeign ministry spokesman Jalil Abbas Jilani in Islamabad Saturday said there are no militant training facilities in Pakistan .\tJJ NN NN NNP NNP NNP IN NNP NNP VBD EX VBP DT JJ NN NNS IN NNP .\nHe said the role and sacrifices made by Islamabad , a key U.S. ally in the war on terror , have been acknowledged by the international community .\tPRP VBD DT NN CC NNS VBN IN NNP , DT JJ NNP NN IN DT NN IN NN , VBP VBN VBN IN DT JJ NN .\nHis comments come one day after Russian Foreign Minister Sergei Lavrov said Moscow had information that people are being trained in Afghanistan and Pakistan with the help of Taleban insurgents to carry out attacks inside Russia .\tPRP$ NNS VBP CD NN IN JJ NNP NNP NNP NNP VBD NNP VBD NN IN NNS VBP VBG VBN IN NNP CC NNP IN DT NN IN NNP NNS TO VB RP NNS IN NNP .\nHe also alleged that militants have already crossed into the Fergana Valley of Uzbekistan , Kyrgyzstan and Tajikistan .\tPRP RB VBD IN NNS VBP RB VBN IN DT NNP NNP IN NNP , NNP CC NNP .\nJordan says it will host a regional conference next week to discuss ways to help hundreds of thousands of Iraqi refugees who have fled their country 's violence .\tNNP VBZ PRP MD VB DT JJ NN JJ NN TO VB NNS TO VB NNS IN NNS IN JJ NNS WP VBP VBN PRP$ NN POS NN .\nThe state-owned Petra news agency said Thursday Jordan has invited officials from Syria , Egypt , Iraq , the Arab League and the United Nations to attend the meeting in Amman on July 26 .\tDT JJ NNP NN NN VBD NNP NNP VBZ VBN NNS IN NNP , NNP , NNP , DT NNP NNP CC DT NNP NNPS TO VB DT NN IN NNP IN NNP CD .\nPetra says representatives of Iran , Turkey , Russia and Japan also will take part as observers .\tNNP VBZ NNS IN NNP , NNP , NNP CC NNP RB MD VB NN IN NNS .\nIt says the delegates will discuss how to ease the burden of countries hosting large numbers of Iraqi refugees .\tPRP VBZ DT NNS MD VB WRB TO VB DT NN IN NNS VBG JJ NNS IN JJ NNS .\nThe U.N. refugee agency says Jordan has about 7,50,000 Iraqi refugees , while 1.4 million Iraqis have fled to Syria in recent years .\tDT NNP NN NN VBZ NNP VBZ RB CD JJ NNS , IN CD CD NNS VBP VBN TO NNP IN JJ NNS .\nThe agency has warned that Iraqi refugees in Syria and Jordan are putting severe strains on healthcare , education systems and housing .\tDT NN VBZ VBN IN JJ NNS IN NNP CC NNP VBP VBG JJ NNS IN NN , NN NNS CC NN .\nGreek journalists and public transportation workers are stopping work in the latest round of strikes protesting Greece 's economic austerity measures .\tJJ NNS CC JJ NN NNS VBP VBG NN IN DT JJS NN IN NNS VBG NNP POS JJ NN NNS .\nBus , subway , and tram services ceased in Greece 's capital Athens Thursday , while Greek journalists stopped radio and television broadcasts .\tNN , NN , CC NN NNS VBN IN NNP POS NN NNP NNP , IN JJ NNS VBD NN CC NN NNS .\nGreek newspapers planned not to print Friday .\tJJ NNS VBD RB TO NN NNP .\nGreece has seen several rounds of labor strikes since the government earlier this year began to raise taxes , freeze civil service pay , and cut pensions in efforts to decrease the country 's massive debt .\tNNP VBZ VBN JJ NNS IN NN NNS IN DT NN RBR DT NN VBD TO VB NNS , NN JJ NN NN , CC VBD NNS IN NNS TO VB DT NN POS JJ NN .\nGreece agreed to take those steps in return for a massive emergency loan from the European Union and International Monetary Fund .\tNNP VBD TO VB DT NNS IN NN IN DT JJ NN NN IN DT NNP NNP CC NNP NNP NNP .\nSouth Korea 's ambassador to China is being quoted saying the two countries could open talks on a free trade agreement next year .\tNNP NNP POS NN TO NNP VBZ VBG VBN VBG DT CD NNS MD VB NNS IN DT JJ NN NN JJ NN .\nThe report in the state-run China Daily quotes Ambassador Yu Woo-ik as saying the sides ' are expected to initiate official FTA talks in 2011 . '\tDT NN IN DT JJ NNP NNP VBZ NNP NNP NNP IN VBG DT NNS `` VBP VBN TO VB JJ NNP NNS IN CD . ``\nChina is Asia 's largest economy and South Korea is fourth-largest on the continent .\tNNP VBZ NNP POS JJS NN CC NNP NNP VBZ JJ IN DT NN .\nSouth Korea sends almost one-quarter of its exports to China , but faces growing competition from Taiwan , which just completed a trade agreement with China .\tNNP NNP VBZ RB NN IN PRP$ NNS TO NNP , CC VBZ VBG NN IN NNP , WDT RB VBD DT NN NN IN NNP .\nSouth Korea has been pursuing other trade deals to prop up its export-driven economy .\tNNP NNP VBZ VBN VBG JJ NN NNS TO VB RP PRP$ JJ NN .\nAn agreement signed last year with the European Union is pending , but a deal with the United States has been stalled in Congress since 2007 because of concerns from the American beef and auto industries .\tDT NN VBN JJ NN IN DT NNP NNP VBZ VBG , CC DT NN IN DT NNP NNPS VBZ VBN VBN IN NNP IN CD IN IN NNS IN DT JJ NN CC NN NNS .\nNews outlets in the United States are reporting that Christopher Hill , the lead American negotiator on North Korea , is expected to be nominated as the next U.S. ambassador to Iraq .\tNNP NNS IN DT NNP NNPS VBP VBG IN NNP NNP , DT JJ JJ NN IN NNP NNP , VBZ VBN TO VB VBN IN DT JJ NNP NN TO NNP .\nThere has been no official confirmation of the reports Monday on CBS , ABC , the Associated Press and Reuters , which quote unnamed officials who say Hill is expected to be the nominee .\tEX VBZ VBN DT JJ NN IN DT NNS NNP IN NNP , NNP , DT NNP NNP CC NNP , WDT VBP JJ NNS WP VBP NNP VBZ VBN TO VB DT NN .\nHill is currently the Assistant Secretary of State for East Asian and Pacific Affairs .\tNNP VBZ RB DT NNP NNP IN NNP IN NNP NNP CC NNP NNP .\nHill has previously served as ambassador to South Korea , Poland and Macedonia .\tNNP VBZ RB VBN IN NN TO NNP NNP , NNP CC NNP .\nHe was also special envoy to Kosovo .\tPRP VBD RB JJ NN TO NNP .\nBefore he started his career in the foreign service , Hill served as a Peace Corps volunteer in Cameroon .\tIN PRP VBD PRP$ NN IN DT JJ NN , NNP VBD IN DT NNP NNP NN IN NNP .\nIf nominated and confirmed by the U.S. Senate , Hill would replace another career diplomat , Ryan Crocker , as Washington 's top diplomat in Iraq .\tIN VBN CC VBN IN DT NNP NNP , NNP MD VB DT NN NN , NNP NNP , IN NNP POS JJ NN IN NNP .\nIsraeli police say a car bomb in central Tel Aviv has killed the suspected leader of one of the country 's top crime families .\tJJ NNS VBP DT NN NN IN JJ NNP NNP VBZ VBN DT JJ NN IN CD IN DT NN POS JJ NN NNS .\nOfficials say they believe a rival crime family targeted Ya'akov Alperon Monday , in the attack .\tNNS VBP PRP VBP DT JJ NN NN VBD NNP NNP NNP , IN DT NN .\nThe blast also slightly wounded two bystanders , including a 13-year-old boy .\tDT NN RB RB VBD CD NNS , VBG DT JJ NN .\nMedia reports say Alperon was returning from a court hearing for his son , Dror , who is facing extortion charges .\tNNS NNS VBP NNP VBD VBG IN DT NN NN IN PRP$ NN , NNP , WP VBZ VBG NN NNS .\nWitnesses say they heard a huge explosion , and some thought it was a terrorist attack .\tNNS VBP PRP VBD DT JJ NN , CC DT VBD PRP VBD DT JJ NN .\nIn June , another car bomb in Tel Aviv killed one of Israel 's top criminal lawyers , in what police said was a criminal , not a terrorist , act .\tIN NNP , DT NN NN IN NNP NNP VBD CD IN NNP POS JJ JJ NNS , IN WP NN VBD VBD DT JJ , RB DT JJ , NN .\nThe lawyer , Yoram Haham , had represented several notorious mobsters during his career as a criminal lawyer .\tDT NN , NNP NNP , VBD VBN JJ JJ NNS IN PRP$ NN IN DT JJ NN .\nU.S. President George Bush has issued a proclamation putting into effect a free trade agreement with Peru .\tNNP NNP NNP NNP VBZ VBN DT NN VBG IN NN DT JJ NN NN IN NNP .\nU.S. Trade Representative Susan Schwab said Friday the proclamation marks an important milestone in the relationship between the U.S. and Peru .\tNNP NNP NNP NNP NNP VBD NNP DT NN VBZ DT JJ NN IN DT NN IN DT NNP CC NNP .\nThe agreement gives Peru permanent , duty-free access to the U.S.\tDT NN VBZ NNP JJ , JJ NN TO DT NNP\nIn return , Peru will eliminate duties on most U.S. industrial and consumer products .\tIN NN , NNP MD VB NNS IN JJS NNP JJ CC NN NNS .\nThe pact was initially approved after discussions between President Bush and Peruvian President Alan Garcia , but Democrats in Congress forced U.S. officials to reopen negotiations and add stronger labor and environmental provisions .\tDT NN VBD RB VBN IN NNS IN NNP NNP CC JJ NNP NNP NNP , CC NNPS IN NNP VBD NNP NNS TO VB NNS CC VB JJR NN CC JJ NNS .\nPeru 's Congress this week passed modifications to earlier legislation to conform with the trade pact .\tNNP POS NNP DT NN VBD NNS TO JJR NN TO VB IN DT NN NN .\nThe agreement will take effect on the first of February .\tDT NN MD VB NN IN DT NN IN NNP .\nBurma has confirmed additional outbreaks of the H5N1 strain of bird flu virus among poultry in the suburbs of Rangoon .\tNNP VBZ VBN JJ NNS IN DT NNP NN IN NN NN NN IN NN IN DT NNS IN NNP .\nThe latest outbreaks were discovered in Hlinethaya , a western suburb of Rangoon .\tDT JJS NNS VBD VBN IN NNP , DT JJ NN IN NNP .\nEarlier this week Burmese authorities confirmed a new outbreak of the H5N1 virus on poultry farms , also in Rangoon 's western suburbs .\tRBR DT NN JJ NNS VBD DT JJ NN IN DT NNP NN IN NN NNS , RB IN NNP POS JJ NNS .\nNo human cases have been announced in the country .\tDT JJ NNS VBP VBN VBN IN DT NN .\nMore than 160 people have died from bird flu since late 2003 .\tJJR IN CD NNS VBP VBN IN NN NN IN JJ CD .\nMost of the victims came in contact with infected poultry .\tDT IN DT NNS VBD IN NN IN JJ NN .\nExperts fear the virus could mutate into a form that is easily transmissible by human-to-human contact .\tNNS VBP DT NN MD VB IN DT NN WDT VBZ RB JJ IN JJ NN .\nThe mayor of Los Angeles , Antonio Villaraigosa , says authorities know of no credible threats to the western U.S. city , following a warning from a suspected al-Qaida member .\tDT NN IN NNP NNP , NNP NNP , VBZ NNS VBP IN DT JJ NNS TO DT JJ NNP NN , VBG DT NN IN DT JJ NNP NN .\nThe warning came in a videotaped statement aired by the U.S. television network ABC on Sunday .\tDT NN VBD IN DT VBN NN VBN IN DT NNP NN NN NNP IN NNP .\nA masked man on the tape says ' Allah willing , ' Los Angeles and the Australian city of Melbourne will be attacked .\tDT VBN NN IN DT NN VBZ `` NNP JJ , `` NNP NNP CC DT JJ NN IN NNP MD VB VBN .\nABC says the tape was delivered to its office in Pakistan on Saturday .\tNNP VBZ DT NN VBD VBN TO PRP$ NN IN NNP IN NNP .\nIt says the speaker is probably Adam Gadahn , a U.S. citizen wanted for questioning by the FBI for possible terrorist activity .\tPRP VBZ DT NN VBZ RB NNP NNP , DT NNP NN VBN IN VBG IN DT NNP IN JJ JJ NN .\nOfficials in both Los Angeles and Melbourne say the tape was meant to instill fear , and have advised residents to go about their normal lives .\tNNS IN DT NNP NNP CC NNP VBP DT NN VBD VBN TO VB NN , CC VBP VBN NNS TO VB IN PRP$ JJ NNS .\nU.S. intelligence officials have refused to comment on whether the taped warning is authentic .\tNNP NN NNS VBP VBN TO VB IN IN DT VBN NN VBZ JJ .\nThe U.S. military says it has uncovered a large stockpile of weapons inside a Fallujah mosque led by a key insurgent leader .\tDT NNP NN VBZ PRP VBZ VBN DT JJ NN IN NNS IN DT NNP NN VBN IN DT JJ JJ NN .\nThe military did not specify the number of weapons found , but called it the ' largest weapons cache to date in the city ' - a one-time rebel bastion .\tDT JJ VBD RB VB DT NN IN NNS VBN , CC VBD PRP DT `` JJS NNS NN TO NN IN DT NN `` : DT JJ NN NN .\nU.S. and Iraqi government forces are continuing to sweep Fallujah after an assault on the city earlier this month .\tNNP CC JJ NN NNS VBP VBG TO NN NNP IN DT NN IN DT NN RBR DT NN .\nIn southern Iraqi city of Basra , police said they arrested five Arab foreigners suspected of planning attacks .\tIN JJ JJ NN IN NNP , NN VBD PRP VBN CD JJ NNS VBN IN NN NNS .\nA senior police official said the two Saudi nationals , two Tunisians and one Libyan , who were arrested late Wednesday , had escaped from Fallujah four days ago .\tDT JJ NN NN VBD DT CD NNP NNS , CD NNPS CC CD JJ , WP VBD VBN JJ NNP , VBD VBN IN NNP CD NNS RB .\nEuropean Union officials say transportation and other logistical problems are holding up some of the massive amounts of humanitarian aid European countries have offered to victims of Hurricane Katrina .\tNNP NNP NNS VBP NN CC JJ JJ NNS VBP VBG RP DT IN DT JJ NNS IN JJ NN JJ NNS VBP VBN TO NNS IN NNP NNP .\nIn Brussels Tuesday , a spokeswoman for the European Commission said a Swedish plane loaded with food and water treatment tools was ready to take off , but had not received approval from Washington to enter U.S. airspace .\tIN NNP NNP , DT NN IN DT NNP NNP VBD DT JJ NN VBN IN NN CC NN NN NNS VBD JJ TO VB RP , CC VBD RB VBN NN IN NNP TO VB NNP NN .\nShe said EU authorities have suggested to the Bush administration that aid could flow more easily if it was placed aboard military planes at U.S. air bases in Europe .\tPRP VBD NNP NNS VBP VBN TO DT NNP NN IN NN MD VB JJR RB IN PRP VBD VBN IN JJ NNS IN NNP NN NNS IN NNP .\nMore than 20 countries have offered emergency aid teams , tents , meals , water and aircraft to help in the massive relief effort .\tJJR IN CD NNS VBP VBN NN NN NNS , NNS , NNS , NN CC NN TO VB IN DT JJ NN NN .\nMeanwhile , U.S. officials say all aid flights from abroad will be directed to an Air Force base in Arkansas , before being sent to the devastated U.S. Gulf Coast .\tRB , NNP NNS VBP DT NN NNS IN RB MD VB VBN TO DT NNP NNP NN IN NNP , IN VBG VBN TO DT JJ NNP NNP NNP .\nThe United Nations nuclear agency says it has no information to support a recent media report of an undeclared nuclear facility in Syria .\tDT NNP NNP JJ NN VBZ PRP VBZ DT NN TO VB DT JJ NNS NN IN DT JJ JJ NN IN NNP .\nA spokeswoman , Melissa Fleming , for the International Atomic Energy Agency says her agency would investigate any relevant information on the subject .\tDT NN , NNP NNP , IN DT NNP NNP NNP NNP VBZ PRP$ NN MD VB DT JJ NN IN DT NN .\nShe said the IAEA expects any country with information about nuclear-related activity of another country to provide that information to the IAEA .\tPRP VBD DT NNP VBZ DT NN IN NN IN JJ NN IN DT NN TO VB DT NN TO DT NNP .\nThe New York Times newspaper reported Sunday that an Israeli air strike on Syria last month targeted a partially built nuclear reactor .\tDT NNP NNP NNP NN VBD NNP IN DT JJ NN NN IN NNP JJ NN VBD DT RB VBN JJ NN .\nThe article , which cited unidentified U.S. and foreign officials , said the nuclear reactor was modeled on one North Korea used for stockpiling nuclear fuel .\tDT NN , WDT VBD JJ NNP CC JJ NNS , VBD DT JJ NN VBD VBN IN CD NNP NNP VBD IN VBG JJ NN .\nU.S. officials said the site was identified by satellite photographs earlier this year .\tNNP NNS VBD DT NN VBD VBN IN NN NNS RBR DT NN .\nThe IAEA says it is in contact with Syrian authorities to verify the authenticity of the report .\tDT NNP VBZ PRP VBZ IN NN IN JJ NNS TO VB DT NN IN DT NN .\nThe United Nations envoy to the Middle East has urged Israel to accept a new Syrian proposal to renew peace talks .\tDT NNP NNPS NN TO DT NNP NNP VBZ VBN NNP TO VB DT JJ JJ NN TO VB NN NNS .\nTerje Roed-Larsen made the appeal in a meeting with the Israeli parliament 's Defense and Foreign Affairs Committee Tuesday .\tNNP NNP VBD DT NN IN DT NN IN DT JJ NN POS NN CC NNP NNP NNP NNP .\nMr. Roed-Larsen , who visited Damascus last week , said he feels Syria has stretched out , what he called , a genuine hand of peace and Israel should grab the opportunity .\tNNP NNP , WP VBD NNP JJ NN , VBD PRP VBZ NNP VBZ VBN RP , WP PRP VBD , DT JJ NN IN NN CC NNP MD VB DT NN .\nIsrael leaders have dismissed as insincere Syrian President Bashar al-Assad 's offer to resume peace talks without any preconditions .\tNNP NNS VBP VBN IN JJ JJ NNP NNP NNP POS NN TO VB NN NNS IN DT NNS .\nThey accuse Syria of harboring groups that want to destroy the Jewish state .\tPRP VBP NNP IN VBG NNS WDT VBP TO VB DT JJ NN .\nSyria and Israel last held peace talks in January 2000 .\tNNP CC NNP JJ JJ NN NNS IN NNP CD .\nColombian authorities say they have captured a wanted drug lord who allegedly led a major ring with his twin brother , who was killed by police earlier this week .\tJJ NNS VBP PRP VBP VBN DT JJ NN NN WP RB VBD DT JJ NN IN PRP$ NN NN , WP VBD VBN IN NNS RBR DT NN .\nAuthorities say Miguel Angel Mejia was captured early Friday in the Tolima region , about 100 kilometers west of Bogota .\tNNS VBP NNP NNP NNP VBD VBN RB NNP IN DT NNP NN , IN CD NNS JJS IN NNP .\nThe brother , Victor Manuel Mejia , was killed Tuesday at a farmhouse in the northern state of Antioquia , along with two of his associates .\tDT NN , NNP NNP NNP , VBD VBN NNP IN DT NN IN DT JJ NN IN NNP , IN IN CD IN PRP$ NNS .\nThe United States had offered a $ 5 million reward for information leading to the arrest and conviction of each of the brothers .\tDT NNP NNPS VBD VBN DT $ CD CD NN IN NN VBG TO DT NN CC NN IN DT IN DT NNS .\nThe two allegedly ran illegal drugs into the United States via Mexico .\tDT CD RB VBD JJ NNS IN DT NNP NNPS IN NNP .\nAuthorities say the brothers were also members of a right-wing paramilitary group that demobilized in recent years as part of a peace deal with the government .\tNNS VBP DT NNS VBD RB NNS IN DT JJ JJ NN WDT VBD IN JJ NNS IN NN IN DT NN NN IN DT NN .\nBut the twins went on the run instead of turning themselves in as part of the deal .\tCC DT NNS VBD IN DT NN RB IN VBG PRP IN IN NN IN DT NN .\nThe family of Brad Delp says his death was a suicide .\tDT NN IN NNP NNP VBZ PRP$ NN VBD DT NN .\nThe 55-year-old Delp , who sang in the multi-million-selling rock band Boston , was found March 9 by his fiancee at his home in the northeastern state of New Hampshire .\tDT JJ NNP , WP VBD IN DT JJ NN NN NNP , VBD VBN NNP CD IN PRP$ NN IN PRP$ NN IN DT JJ NN IN NNP NNP .\nToxicology tests by the state medical examiner 's office confirmed he committed suicide by sealing himself inside a bathroom with two charcoal grills .\tNN NNS IN DT NN JJ NN POS NN VBD PRP VBD NN IN VBG PRP IN DT NN IN CD JJ NNS .\nHe died from carbon monoxide poisoning .\tPRP VBD IN NN NN NN .\nDelp left two notes taped to a door , along with letters to his family and his fiancee , Pamela Sullivan .\tNNP VBD CD NNS VBN TO DT NN , IN IN NNS TO PRP$ NN CC PRP$ NN , NNP NNP .\nA police representative says the contents of the letters are not known .\tDT NN NN VBZ DT NNS IN DT NNS VBP RB VBN .\nBrad Delp 's family is reportedly planning a public memorial .\tNNP NNP POS NN VBZ RB VBG DT JJ NN .\nJohn Garang\tNNP NNP\nSouth Sudan 's leader John Garang says his former rebel group is ready to deploy up to 12,000 troops in war-torn west Sudan 's Darfur region to help displaced people return to their villages .\tNNP NNP POS NN NNP NNP VBZ PRP$ JJ NN NN VBZ JJ TO VB RP TO CD NNS IN JJ NN NNP POS NNP NN TO VB VBN NNS VB TO PRP$ NNS .\nIn an interview with VOA in Washington Wednesday , Mr. Garang said his Sudan People Liberation Army ( SPLA ) would be deployed alongside African Union troops .\tIN DT NN IN NNP IN NNP NNP , NNP NNP VBD PRP$ NNP NNS NNP NNP LRB NNP RRB MD VB VBN IN NNP NNP NNS .\nThe two-and-half year conflict in Darfur between mainly local rebels and pro-government militias has killed 1,80,000 people and displaced about two million others .\tDT JJ NN NN IN NNP IN RB JJ NNS CC JJ NNS VBZ VBN CD NNS CC VBD IN CD CD NNS .\nMr. Garang 's rebel group and the Sudanese government in Khartoum signed a peace accord in January ending more than 20 years of civil war .\tNNP NNP POS NN NN CC DT JJ NN IN NNP VBD DT NN NN IN NNP VBG JJR IN CD NNS IN JJ NN .\nUnder the accord Mr. Garang becomes first vice president of Sudan 's national government .\tIN DT NN NNP NNP VBZ JJ NN NN IN NNP POS JJ NN .\nIsolated grass fires continue to burn in the southern U.S. states of Oklahoma and Texas , but they have weakened since killing one elderly woman and scorching dozens of homes on Tuesday .\tVBN NN NNS VBP TO VB IN DT JJ NNP NNS IN NNP CC NNP , CC PRP VBP VBN IN VBG CD JJ NN CC VBG NNS IN NNS IN NNP .\nOfficials said decreased winds and slightly cooler temperatures have helped firefighters contain the blazes .\tNNS VBD JJ NNS CC RB JJR NNS VBP VBN NNS VBP DT NNS .\nBut there are worries that continuing drought conditions could lead to new fires .\tCC EX VBP NNS IN VBG NN NNS MD VB TO JJ NNS .\nThe initial fires are being blamed on children playing with fireworks or people being careless with discarded cigarettes .\tDT JJ NNS VBP VBG VBN IN NNS VBG IN NNS CC NNS VBG JJ IN VBN NNS .\nOn Tuesday , Texas governor Rick Perry dispatched National Guard troops to help battle the blazes and declared the fires a disaster .\tIN NNP , NNP NN NNP NNP VBD NNP NNP NNS TO VB VB DT NNS CC VBD DT NNS DT NN .\nU.S. Vice President Dick Cheney has left Singapore after his plane underwent repairs for a minor mechanical problem .\tNNP NNP NNP NNP NNP VBZ VBN NNP IN PRP$ NN VBD NNS IN DT JJ JJ NN .\nU.S. officials say Cheney 's plane made a scheduled stop Sunday at Singapore 's Paya Lebar Air Base to refuel .\tNNP NNS VBP NNP POS NN VBD DT JJ NN NNP IN NNP POS NNP NNP NNP NNP TO VB .\nWhile there , the plane underwent repairs for a minor electrical problem .\tIN RB , DT NN VBD NNS IN DT JJ JJ NN .\nOfficials did not describe the problem but said it was not a safety concern and had not affected flight plans .\tNNS VBD RB VB DT NN CC VBD PRP VBD RB DT NN NN CC VBD RB VBN NN NNS .\nEarlier , Australian Prime Minister John Howard had said Cheney 's plane was diverted to Singapore because of unspecified problems .\tRB , JJ NNP NNP NNP NNP VBD VBN NNP POS NN VBD VBN TO NNP IN IN JJ NNS .\nCheney traveled to Singapore from Australia , where he held talks with Mr. Howard and opposition leader Kevin Rudd .\tNNP VBD TO NNP IN NNP , WRB PRP VBD NNS IN NNP NNP CC NN NN NNP NNP .\nEarlier in the week , Cheney visited Japan and the U.S. Pacific island of Guam to discuss regional security issues , and rally support for the Iraq war .\tRBR IN DT NN , NNP VBD NNP CC DT NNP NNP NN IN NNP TO VB JJ NN NNS , CC VB NN IN DT NNP NN .\nFrench authorities have announced April 22 , 2007 , as the date for the first round of the country 's presidential election , with a run-off if needed on May 6 .\tJJ NNS VBP VBN NNP CD , CD , IN DT NN IN DT JJ NN IN DT NN POS JJ NN , IN DT NN IN VBN IN NNP CD .\nOfficials say voting for a new National Assembly , the lower house of parliament , will be held June 10 and June 17 .\tNNS VBP NN IN DT JJ NNP NNP , DT JJR NN IN NN , MD VB VBN NNP CD CC NNP CD .\nInterior Minister Nicolas Sarkozy is expected to be the presidential candidate of the ruling Union for a Popular Movement .\tNNP NNP NNP NNP VBZ VBN TO VB DT JJ NN IN DT NN NNP IN DT NNP NN .\nThe front-runner for the Socialist nomination is Segolene Royal , head of the Poitou-Charentes region in western France .\tDT NN IN DT JJ NN VBZ NNP NNP , NN IN DT NNP NN IN JJ NNP .\nThe term of incumbent President Jacques Chirac expires in May .\tDT NN IN JJ NNP NNP NNP VBZ IN NNP .\nThe French leader , who has been in office since 1995 , has not announced whether he plans to seek re-election .\tDT JJ NN , WP VBZ VBN IN NN IN CD , VBZ RB VBN IN PRP VBZ TO VB NN .\nBut most analysts do not believe he will seek another term .\tCC JJS NNS VBP RB VB PRP MD VB DT NN .\nBurmese officials have defended the recent 800 percent increase in fuel prices , saying the hike is a reasonable move to keep pace with world oil prices .\tJJ NNS VBP VBN DT JJ CD NN NN IN NN NNS , VBG DT NN VBZ DT JJ NN TO VB NN IN NN NN NNS .\nThe overnight increase last week raised prices for gasoline from less than four cents per liter to more than 30 cents per liter .\tDT JJ NN JJ NN VBD NNS IN NN IN JJR IN CD NNS IN NN TO JJR IN CD NNS IN NN .\nThe rate is still much lower than many other countries , but is relatively expensive for Burmese consumers .\tDT NN VBZ RB RB JJR IN JJ JJ NNS , CC VBZ RB JJ IN JJ NNS .\nBurma 's information minister Brigadier General Kyaw Hsann said the government has been subsidizing gasoline at a loss for years .\tNNP POS NN NN NNP NNP NNP NNP VBD DT NN VBZ VBN VBG NN IN DT NN IN NNS .\nReports indicate prices on everyday goods have jumped following the gas price hike .\tNNS VBP NNS IN JJ NNS VBP VBN VBG DT NN NN NN .\nThe information minister denied the rise was linked to fuel prices , blaming the increase on what he called greedy business people .\tDT NN NN VBD DT NN VBD VBN TO NN NNS , VBG DT NN IN WP PRP VBD JJ NN NNS .\nThe largest U.S. supplier of parts for the automotive industry has filed for bankruptcy protection .\tDT JJS NNP NN IN NNS IN DT JJ NN VBZ VBN IN NN NN .\nDelphi Corporation filed a motion with the federal bankruptcy court in New York Saturday to reorganize its U.S. operations .\tNNP NNP VBD DT NN IN DT JJ NN NN IN NNP NNP NNP TO VB PRP$ NNP NNS .\nDelphi , which split off from its former parent , General Motors , six years ago , recently failed to win financial concessions from unions .\tNNP , WDT VBD RP IN PRP$ JJ NN , NNP NNPS , CD NNS RB , RB VBD TO VB JJ NNS IN NNS .\nThe company 's chairman and chief executive officer , Robert Miller , told the Associated Press he hopes Delphi can emerge from bankruptcy protection within two years .\tDT NN POS NN CC JJ NN NN , NNP NNP , VBD DT NNP NNP PRP VBZ NNP MD VB IN NN NN IN CD NNS .\nHe said the firm will continue to negotiate with General Motors and its unions to lower labor costs .\tPRP VBD DT NN MD VB TO VB IN NNP NNPS CC PRP$ NNS TO JJR NN NNS .\nDelphi lost nearly $ 5 billion in 2004 and $ 750 million in the first half of this year .\tNNP VBD RB $ CD CD IN CD CC $ CD CD IN DT JJ NN IN DT NN .\nIt has a reported debt load of $ 6 billion .\tPRP VBZ DT VBN NN NN IN $ CD CD .\nFormer U.S. President Bill Clinton has checked into a New~York hospital in preparation for more surgery Thursday , this time to remove fluid and scar tissue from his left chest cavity .\tJJ NNP NNP NNP NNP VBZ VBN IN DT NNP NN IN NN IN JJR NN NNP , DT NN TO VB NN CC NN NN IN PRP$ NN NN NN .\nMr. Clinton said Wednesday he is not worried about his condition , a complication that doctors have described as uncommon but not high risk .\tNNP NNP VBD NNP PRP VBZ RB VBN IN PRP$ NN , DT NN IN NNS VBP VBN IN JJ CC RB JJ NN .\nSurgeons will drain fluid that has accumulated around the former president 's left lung after his quadruple heart bypass operation last September .\tNNS MD VB NN WDT VBZ VBN IN DT JJ NN POS NN NN IN PRP$ NN NN NN NN JJ NNP .\nHe is expected to be in the hospital for three to 10 days , but doctors say they expect a full recovery .\tPRP VBZ VBN TO VB IN DT NN IN CD CC CD NNS , CC NNS VBP PRP VBP DT JJ NN .\nThe 58-year-old Mr. Clinton spent the day before his surgery playing in a charity golf tournament for tsunami relief in the southeastern state of Florida .\tDT JJ NNP NNP VBD DT NN IN PRP$ NN NN IN DT NN NN NN IN NN NN IN DT JJ NN IN NNP .\nHe has told reporters he feels fine despite the condition , which causes some shortness of breath .\tPRP VBZ VBN NNS PRP VBZ RB IN DT NN , WDT VBZ DT NN IN NN .\nKuwait has found the deadly H5N1 variety of avian flu in one of two infected birds culled by authorities .\tNNP VBZ VBN DT JJ NNP NN IN JJ NN IN CD IN CD JJ NNS VBN IN NNS .\nThe strain was found in a migrating flamingo , while a second , imported bird had the milder H5N2 variant .\tDT NN VBD VBN IN DT NN NN , IN DT NN , VBN NN VBD DT JJR NNP NN .\nLater Friday , Thai officials said a one-year-old boy in Bangkok has been diagnosed with the virulent H5N1 strain , but is expected to fully recover .\tRB NNP , JJ NNS VBD DT JJ NN IN NNP VBZ VBN VBN IN DT JJ NNP NN , CC VBZ VBN TO RB VB .\nMeanwhile , Vietnam says it will set up a medical facility for Cambodian bird flu patients near the border between the two countries in an effort to contain the spread of the virus .\tRB , NNP VBZ PRP MD VB RP DT JJ NN IN JJ NN NN NNS IN DT NN IN DT CD NNS IN DT NN TO VB DT NN IN DT NN .\nHealth officials said the small ward will mean Cambodian patients do not have to travel more deeply into Vietnam for treatment .\tNNP NNS VBD DT JJ NN MD VB JJ NNS VBP RB VB TO VB RBR RB IN NNP IN NN .\nAnd on Thursday , China reported another outbreak of bird flu in a flock of chickens in northeastern Liaoning province , the country 's seventh outbreak in a month .\tCC IN NNP , NNP VBD DT NN IN NN NN IN DT NN IN NNS IN JJ NN NN , DT NN POS JJ NN IN DT NN .\nThe sentencing phase begins Tuesday for Army Private Lynndie England , who was convicted of abusing detainees at Iraq 's Abu Ghraib prison .\tDT NN NN VBZ NNP IN NNP NNP NNP NNP , WP VBD VBN IN VBG NNS IN NNP POS NNP NNP NN .\nOn Monday , a military jury in Fort Hood , Texas , found her guilty of maltreating detainees , committing an indecent act , and conspiracy .\tIN NNP , DT JJ NN IN NNP NNP , NNP , VBD PRP NN IN VBG NNS , VBG DT JJ NN , CC NN .\nShe faces up to 10 years in prison .\tPRP VBZ RP TO CD NNS IN NN .\nEngland became a central figure in the scandal after photographs emerged of her humiliating prisoners .\tNNP VBD DT JJ NN IN DT NN IN NNS VBD IN PRP$ JJ NNS .\nShe is seen grinning , and in one picture , holding a leash around the neck of a naked prisoner .\tPRP VBZ VBN VBG , CC IN CD NN , VBG DT NN IN DT NN IN DT JJ NN .\nHer lawyers argued she is overly compliant and was easily controlled by the accused ringleader of the abuse , then-Specialist Charles Graner , who is now serving a 10-year prison sentence .\tPRP$ NNS VBD PRP VBZ RB JJ CC VBD RB VBN IN DT VBN NN IN DT NN , JJ NNP NNP , WP VBZ RB VBG DT JJ NN NN .\nEarly this year , England pleaded guilty to abuse charges as part of a plea bargain , but a judge later canceled the deal and ordered the case to trial .\tRB DT NN , NNP VBD JJ TO VB NNS IN NN IN DT NN NN , CC DT NN RB VBD DT NN CC VBD DT NN TO NN .\nNepal 's main political parties say they are ready to hold talks with Maoists on forming a broad front against King Gyanendra , provided the rebels stop killing civilians .\tNNP POS JJ JJ NNS VBP PRP VBP JJ TO VB NNS IN NNS IN VBG DT JJ NN IN NNP NNP , VBD DT NNS VBP VBG NNS .\nA member of the main Nepali Congress party told reporters the parties will set up a team for talks with the rebels .\tDT NN IN DT JJ NNP NNP NN VBD NNS DT NNS MD VB RP DT NN IN NNS IN DT NNS .\nBut , he said , no date has been fixed .\tCC , PRP VBD , DT NN VBZ VBN VBN .\nHe said human rights groups and activists would be asked to monitor whether the rebels had ended their attacks on civilians before any dialogue is held .\tPRP VBD JJ NNS NNS CC NNS MD VB VBN TO VB IN DT NNS VBD VBN PRP$ NNS IN NNS IN DT NN VBZ VBN .\nThe decision by the seven parties came after Maoist leader Prachanda last month agreed to key conditions set by them .\tDT NN IN DT CD NNS VBD IN NNP NN NNP JJ NN VBD TO JJ NNS VBN IN PRP .\nPrachanda promised that the rebels would stop extortion and also targeting unarmed civilians .\tNNP VBD IN DT NNS MD VB NN CC RB VBG JJ NNS .\nThere has been no reaction by the royalist government , which describes the rebels as terrorists .\tEX VBZ VBN DT NN IN DT NN NN , WDT VBZ DT NNS IN NNS .\nMexican authorities have discovered the decapitated bodies of 12 men , including some believed to be soldiers , in the southern state of Guerrero .\tJJ NNS VBP VBN DT JJ NNS IN CD NNS , VBG DT VBN TO VB NNS , IN DT JJ NN IN NNP .\nEarlier media reported there were nine bodies found in and around the state capital , Chilpancingo .\tRBR NNS VBD EX VBD CD NNS VBN IN CC IN DT NN NN , NNP .\nAuthorities said the heads of the men were found in plastic bags in a separate , nearby location .\tNNS VBD DT NNS IN DT NNS VBD VBN IN NN NNS IN DT JJ , JJ NN .\nAuthorities found a sign near some of the bodies that read : ' For every one of mine that you kill , I will kill 10 . '\tNNS VBD DT NN IN DT IN DT NNS WDT VBP : `` IN DT CD IN NN IN PRP VBP , PRP MD VB CD . ``\nMexico is caught in a rising wave of violence as drug cartels battle for territory and fight a nationwide crackdown led by President Felipe Calderon , who has deployed tens of thousands of troops and federal police across Mexico to try to stop the violence .\tNNP VBZ VBN IN DT VBG NN IN NN IN NN NNS NN IN NN CC VB DT JJ NN VBN IN NNP NNP NNP , WP VBZ VBN NNS IN NNS IN NNS CC JJ NNS IN NNP TO VB TO VB DT NN .\nPolice say the cartels are battling for control of smuggling routes into the United States .\tNNS VBP DT NNS VBP VBG IN NN IN VBG NNS IN DT NNP NNPS .\nThere have been nearly 5400 drug-related homicides across Mexico this year .\tEX VBP VBN RB CD JJ NNS IN NNP DT NN .\nThe U.S. military says a soldier is being held in Iraq for allegedly killing two other American servicemen during an argument .\tDT NNP NN VBZ DT NN VBZ VBG VBN IN NNP IN RB VBG CD JJ JJ NNS IN DT NN .\nA military statement released Tuesday says Specialist Neftaly Platero was detained after the killing of two soldiers in Fallujah , Iraq , last Thursday .\tDT JJ NN VBN NNP VBZ NNP NNP NNP VBD VBN IN DT NN IN CD NNS IN NNP , NNP , JJ NNP .\nColonel Barry Johnson says a ' verbal altercation ' broke out among four soldiers .\tNNP NNP NNP VBZ DT `` JJ NN `` VBD RP IN CD NNS .\nThe military spokesman says Platero allegedly took out his weapon and began shooting at the other soldiers .\tDT JJ NN VBZ NNP RB VBD RP PRP$ NN CC VBD VBG IN DT JJ NNS .\nA third soldier was wounded in the incident .\tDT JJ NN VBD VBN IN DT NN .\nThe United Nations Food and Agriculture Organization says 36 countries are currently dependent on external food aid , and says civil strife and bad weather are primarily to blame .\tDT NNP NNPS NNP CC NNP NNP VBZ CD NNS VBP RB JJ IN JJ NN NN , CC VBZ JJ NN CC JJ NN VBP RB TO VB .\nThe organization says the majority of dependent countries continue to be in Africa , where 23 states rely on food assistance from abroad .\tDT NN VBZ DT NN IN JJ NNS VBP TO VB IN NNP , WRB CD NNS VBP IN NN NN IN RB .\nIn its report , the U.N. agency warns that conflict and drought in the troubled Sudanese region of Darfur will most likely lead to a below-average harvest .\tIN PRP$ NN , DT NNP NN VBZ IN NN CC NN IN DT JJ JJ NN IN NNP MD RBS JJ VB TO DT JJ NN .\nThe organization warned of diminishing crops in Eritrea and Kenya , and says below-normal rainfall in southern Africa could adversely affect Zimbabwe , Lesotho , and Swaziland\tDT NN VBD IN VBG NNS IN NNP CC NNP , CC VBZ JJ NN IN JJ NNP MD RB VB NNP , NNP , CC NNP\nThe report also says the food situation remains critical in the west African country of Mauritania , and says the conflict in Ivory Coast is disrupting agriculture and market activities there .\tDT NN RB VBZ DT NN NN VBZ JJ IN DT JJ JJ NN IN NNP , CC VBZ DT NN IN NNP NNP VBZ VBG NN CC NN NNS RB .\nA senior aide to Palestinian President Mahmoud Abbas said Saturday Mr. Abbas and Israeli Prime Minister Ehud Olmert will meet Monday in the West Bank town of Jericho .\tDT JJ NN TO JJ NNP NNP NNP VBD NNP NNP NNP CC JJ NNP NNP NNP NNP MD VB NNP IN DT NNP NNP NN IN NNP .\nThe announcement comes less than a week after U.S. Secretary of State Condolezza Rice met separately with each leader and called for a deeper dialogue between Israel and the Palestinians .\tDT NN VBZ JJR IN DT NN IN NNP NNP IN NNP NNP NNP VBD RB IN DT NN CC VBD IN DT JJR NN IN NNP CC DT NNS .\nMr. Abbas and Mr. Olmert have held periodic meetings in recent months .\tNNP NNP CC NNP NNP VBP VBN JJ NNS IN JJ NNS .\nAbbas aide Nabil Amr says this week 's meeting is an opportunity for both sides to make progress on key areas ahead of an international peace conference proposed for later this year in the United States .\tNNP NN NNP NNP VBZ DT NN POS NN VBZ DT NN IN DT NNS TO VB NN IN JJ NNS RB IN DT JJ NN NN VBN IN RB DT NN IN DT NNP NNPS .\nRice said during her trip to the region last week the international conference could ' advance Palestinian statehood . '\tNNP VBD IN PRP$ NN TO DT NN JJ NN DT JJ NN MD `` VB JJ NN . ``\nZambia 's deputy leader says President Levy Mwanawasa has undergone minor surgery in France to improve his breathing .\tNNP POS NN NN VBZ NNP NNP NNP VBZ VBN JJ NN IN NNP TO VB PRP$ NN .\nZambian Vice President Rupiah Banda says Tuesday the president is in stable condition following the operation which took place Monday afternoon .\tJJ NNP NNP NNP NNP VBZ NNP DT NN VBZ IN JJ NN VBG DT NN WDT VBD NN NNP NN .\nMr. Mwanawasa suffered a stroke during a visit to Egypt on June 29 and was transferred to a Paris military hospital last week for treatment .\tNNP NNP VBD DT NN IN DT NN TO VB IN NNP CD CC VBD VBN TO DT NNP JJ NN JJ NN IN NN .\nMr. Mwanawasa is 59 years old and has served as Zambian president since 2002 .\tNNP NNP VBZ CD NNS JJ CC VBZ VBN IN JJ NN IN CD .\nHe suffered a mild stroke in 2006 before being re-elected that year .\tPRP VBD DT JJ NN IN CD IN VBG VBN DT NN .\nMr. Mwanawasa also is the leader of the Southern African Development Community .\tNNP NNP RB VBZ DT NN IN DT JJ NNP NNP NNP .\nOrganizers of this week 's British Grand Prix Formula One race say that the competition will go ahead as scheduled despite Thursday 's bombings in Central London .\tNNS IN DT NN POS JJ NNP NNP NNP CD NN VBP IN DT NN MD VB RB IN VBN IN NNP POS NNS IN NNP NNP .\nRace organizers said in a statement that the Silverstone course has a well-established set of security measures that have been planned in detail with police and other agencies .\tNNP NNS VBD IN DT NN IN DT NNP NN VBZ DT JJ NN IN NN NNS WDT VBP VBN VBN IN NN IN NNS CC JJ NNS .\nThe statement said that organizers are confident the security is adequate to ensure the safety of all attending the race Sunday .\tDT NN VBD IN NNS VBP JJ DT NN VBZ JJ TO VB DT NN IN DT VBG DT NN NNP .\nPractice for the race is Friday with qualifying on Saturday .\tNN IN DT NN VBZ NNP IN VBG IN NNP .\nThe event was disrupted two years ago when a kilted protester ran onto the track during the race .\tDT NN VBD VBN CD NNS RB WRB DT VBN NN VBD IN DT NN IN DT NN .\nThe number two leader of the al-Qaida terror network has urged Muslims to oppose a referendum proposed by Palestinian President Mahmoud Abbas .\tDT NN CD NN IN DT NNP NN NN VBZ VBN NNS TO VB DT NN VBN IN JJ NNP NNP NNP .\nAyman al-Zawahiri made the statement in a videotape aired Friday by the Arabic television network al-Jazeera .\tNNP NNP VBD DT NN IN DT NN VBN NNP IN DT NNP NN NN NNP .\nHe said Palestine is a house of Islam and not subject to any compromise .\tPRP VBD NNP VBZ DT NN IN NNP CC RB JJ TO DT NN .\nMr. Abbas has proposed to hold a referendum on a Palestinian statehood plan that recognizes Israel .\tNNP NNP VBZ VBN TO VB DT NN IN DT JJ NN NN WDT VBZ NNP .\nMr. Abbas of the Fatah party has given the militant group Hamas until the end of the week to agree to the statehood plan or he will call the referendum .\tNNP NNP IN DT NNP NN VBZ VBN DT JJ NN NNP IN DT NN IN DT NN TO VB TO DT NN NN CC PRP MD VB DT NN .\nMr. Abbas has been in a power struggle with Hamas since the militant group took control of the Palestinian Authority earlier this year .\tNNP NNP VBZ VBN IN DT NN NN IN NNP IN DT JJ NN VBD NN IN DT JJ NNP RBR DT NN .\nFormer Portuguese Prime Minister Anibal Cavaco Silva was sworn-in Thursday as the country 's first center-right president in 32 years .\tJJ JJ JJ NN NNP NNP NNP VBD JJ NNP IN DT NN POS JJ JJ NN IN CD NNS .\nA number of foreign dignitaries attended the inauguration , including former U.S. President George H.W. Bush .\tDT NN IN JJ NNS VBD DT NN , VBG JJ NNP NNP NNP NNP NNP .\nMr. Cavaco Silva has promised to revitalize Portugal 's economy .\tNNP NNP NNP VBZ VBN TO VB NNP POS NN .\nHe says he is entirely ready to cooperate with the ruling Socialists to achieve his goals .\tPRP VBZ PRP VBZ RB JJ TO VB IN DT NN VBZ TO VB PRP$ NNS .\nThe country has been suffering with high unemployment and less than one percent economic growth .\tDT NN VBZ VBN VBG IN JJ NN CC JJR IN CD NN JJ NN .\nThe Portuguese president has no executive powers , but does have the authority to dissolve parliament , appoint prime ministers , and veto laws .\tDT JJ NN VBZ DT JJ NNS , CC VBZ VB DT NN TO VB NN , JJ JJ NNS , CC NN NNS .\nMr. Cavaco Silva was elected in January .\tNNP NNP NNP VBD VBN IN NNP .\nHe is Portugal 's first conservative president since the country became a democracy in 1974 .\tPRP VBZ NNP POS JJ JJ NN IN DT NN VBD DT NN IN CD .\nA report in Sunday 's New York Times says the Bush administration may have tried to influence Iraq 's January elections by covertly supporting certain political parties .\tDT NN IN NNP POS NNP NNP NNP VBZ DT NNP NN MD VB VBN TO VB NNP POS NNP NNS IN RB VBG JJ JJ NNS .\nThe report cites an article written by investigative journalist Seymour Hersh that will appear in the coming issue of The New Yorker magazine .\tDT NN VBZ DT NN VBN IN JJ NN NNP NNP WDT MD VB IN DT JJ NN IN DT NNP NNP NN .\nMr. Hersh asserts the administration proceeded with the plan despite Congressional objections .\tNNP NNP VBZ DT NN VBD IN DT NN IN JJ NNS .\nA National Security Council spokesman told the New York Times that , in the end , the president decided not to help individual candidates for Iraqi office .\tDT NNP NNP NNP NN VBD DT NNP NNP NNP IN , IN DT NN , DT NN VBD RB TO VB JJ NNS IN JJ NN .\nAs the newspaper noted , the response did not make clear whether certain parties were helped .\tIN DT NN VBD , DT NN VBD RB VB JJ IN JJ NNS VBD VBN .\nThe spokesman added that White House officials were concerned about what they saw as extensive Iranian support for pro-Shiite parties .\tDT NN VBD IN NNP NNP NNS VBD VBN IN WP PRP VBD IN JJ JJ NN IN JJ NNS .\nPresident Bush has repeatedly called for free and fair elections in Iraq and other Middle Eastern countries .\tNNP NNP VBZ RB VBN IN JJ CC JJ NNS IN NNP CC JJ NNP NNP NNS .\nThousands of Africans flocked to churches across the continent to remember Pope John Paul II , as many more gathered around televisions to watch his funeral in Rome .\tNNS IN NNS VBD TO NNS IN DT NN TO VB NNP NNP NNP NNP , IN JJ RBR VBN IN NNS TO VB PRP$ NN IN NNP .\nSeveral African states declared Friday a national holiday or a day of national mourning for the pope .\tJJ JJ NNS VBD NNP DT JJ NN CC DT NN IN JJ NN IN DT NN .\nState television broadcast the funeral live in countries such as Nigeria , South Africa , Ivory Coast and the Democratic Republic of Congo .\tNNP NN VBD DT JJ JJ IN NNS JJ IN NNP , NNP NNP , NNP NNP CC DT JJ NNP IN NNP .\nIn the capital of the Republic of Congo , Brazzaville , a giant television screen was set up for those without one at home .\tIN DT NN IN DT NNP IN NNP , NNP , DT JJ NN NN VBD VBN RP IN DT IN CD IN NN .\nOfficials in Madagascar say people gathered in town halls where the funeral was being shown on television powered by generators .\tNNS IN NNP VBP NNS VBD IN NN NNS WRB DT NN VBD VBG VBN IN NN VBN IN NNS .\nAfricans praised Pope John Paul II for his efforts to help the poor and promote peace during many trips to the continent , which now has one of the fastest growing Roman Catholic populations in the world .\tNNS VBD NNP NNP NNP NNP IN PRP$ NNS TO VB DT NN CC VB NN IN JJ NNS TO DT NN , WDT RB VBZ CD IN DT JJS VBG NNP NNP NNS IN DT NN .\nIsraeli Prime Minister Ariel Sharon has announced plans for a summit with Palestinian Authority President Mahmoud Abbas on June 21 in the Egyptian resort town of Sharm al-Sheikh .\tJJ NNP NNP NNP NNP VBZ VBN NNS IN DT NN IN JJ NNP NNP NNP NNP IN NNP CD IN DT JJ NN NN IN NNP NNP .\nA statement from the Israeli prime minister on Wednesday said officials from both sides will hold talks before the summit to discuss an ongoing truce and Israel 's planned withdrawal from the Gaza Strip in August .\tDT NN IN DT JJ JJ NN IN NNP VBD NNS IN DT NNS MD VB NNS IN DT NN TO VB DT JJ NN CC NNP POS VBN NN IN DT NNP NNP IN NNP .\nSeparately , Israeli police say they have arrested five members of the Islamic Jihad militant group who they said were planning to carry out a bomb attack in Jerusalem on Thursday .\tRB , JJ NNS VBP PRP VBP VBN CD NNS IN DT NNP NNP JJ NN WP PRP VBD VBD VBG TO VB RP DT NN NN IN NNP IN NNP .\nAlso the Israeli parliament was expected to hold a debate late Wednesday on plans to demolish the homes of nearly 90 Arab families in East Jerusalem to make room for a national park .\tRB DT JJ NN VBD VBN TO VB DT NN JJ NNP IN NNS TO VB DT NNS IN RB CD JJ NNS IN NNP NNP TO VB NN IN DT JJ NN .\nPalestinian officials have criticized the plan .\tJJ NNS VBP VBN DT NN .\nThe terrorist group al-Qaida in Iraq has criticized the country 's moderate Sunni Arabs for taking part in last month 's parliamentary elections and called on them to abandon electoral politics .\tDT NN NN NNP IN NNP VBZ VBN DT NN POS JJ NNP NNS IN VBG NN IN JJ NN POS JJ NNS CC VBN IN PRP TO VB JJ NNS .\nThe remark came in an audio tape posted on an Islamist web site Sunday .\tDT NN VBD IN DT NN NN VBN IN DT JJ NN NN NNP .\nThe speaker sounded like Abu Musab al-Zarqawi , but the authenticity of the tape could not be verified .\tDT NN VBD IN NNP NNP NNP , CC DT NN IN DT NN MD RB VB VBN .\nIn the tape , he denounced the Iraqi Islamic Party for endorsing a new constitution , and said the largest Sunni Arab party should not be involved in reconciliation because it will lead to the destruction of the Sunni community .\tIN DT NN , PRP VBD DT JJ NNP NNP IN VBG DT JJ NN , CC VBD DT JJS NNP NNP NN MD RB VB VBN IN NN IN PRP MD VB TO DT NN IN DT NNP NN .\nZarqawi said his group could have disrupted the December 15 balloting , but did not want to harm the Sunni people .\tNNP VBD PRP$ NN MD VB VBN DT NNP CD NN , CC VBD RB VB TO VB DT NNP NNS .\nHe also criticized Arab countries that met in Cairo in November to seek reconciliation between Iraq 's political factions .\tPRP RB VBD JJ NNS WDT VBD IN NNP IN NNP TO VB NN IN NNP POS JJ NNS .\nHe said those countries were out to destroy Iraq and cooperate with America .\tPRP VBD DT NNS VBD RB TO VB NNP CC VB IN NNP .\nEgyptian authorities have tentatively identified the remains of one of the bombers who struck a Red Sea resort on Saturday , killing scores of people .\tJJ NNS VBP RB VBN DT NNS IN CD IN DT NNS WP VBD DT NNP NNP NN IN NNP , VBG NNS IN NNS .\nSecurity sources say they believe a known Sinai militant , Youssef Badran , was at the wheel of a vehicle that exploded in front of a hotel .\tNN NNS VBP PRP VBP DT VBN NNP NN , NNP NNP , VBD IN DT NN IN DT NN WDT VBD IN NN IN DT NN .\nAuthorities were performing DNA tests Tuesday to confirm the identity .\tNNS VBD VBG NN NNS NNP TO VB DT NN .\nEgyptian sources say police have been looking for links between Saturday 's attacks and two Sinai bombings last year that killed 34 people .\tJJ NNS VBP NNS VBP VBN VBG IN NNS IN NNP POS NNS CC CD NNP NNS JJ NN WDT VBD CD NNS .\nThe possible links surfaced after two militant groups claiming credit for Saturday 's attack said they also carried out bombings last October near a resort in Taba .\tDT JJ NNS VBD IN CD JJ NNS VBG NN IN NNP POS NN VBD PRP RB VBD RP NNS JJ NNP IN DT NN IN NNP .\nMeanwhile , the Egyptian Health Ministry says 64 people died in the blasts , while local doctors say they account for 88 fatalities .\tRB , DT JJ NNP NNP VBZ CD NNS VBD IN DT NNS , IN JJ NNS VBP PRP VBP IN CD NNS .\nSeveral reports quote hospitals as saying the ministry count excludes some sets of body parts .\tJJ NNS VBP NNS IN VBG DT NN NN VBZ DT NNS IN NN NNS .\nIraq 's foreign minister says Syria is refusing to stop insurgents and foreign fighters from entering Iraq .\tNNP POS JJ NN VBZ NNP VBZ VBG TO VB NNS CC JJ NNS IN VBG NNP .\nHoshyar Zebari told the Associated Press Thursday Syria and other authoritarian governments in the region are frightened of Iraq 's efforts to build a democratic nation in the heart of the Middle East and want to see it fail .\tNNP NNP VBD DT NNP NNP NNP NNP CC JJ JJ NNS IN DT NN VBP VBN IN NNP POS NNS TO VB DT JJ NN IN DT NN IN DT NNP NNP CC VBP TO VB PRP VB .\nThe Iraqi foreign minister said these governments are not helping stem the flow of foreign fighters and weapons into Iraq , despite pledges to do so .\tDT JJ JJ NN VBD DT NNS VBP RB VBG VB DT NN IN JJ NNS CC NNS IN NNP , IN NNS TO VB RB .\nSyria 's U.N. Ambassador Fayssal Mekdad insisted Wednesday that his country has been cooperating with Iraq by deploying 10,000 troops on the border , erecting barriers and arresting hundreds of potential infiltrators .\tNNP POS NNP NNP NNP NNP VBD NNP IN PRP$ NN VBZ VBN VBG IN NNP IN VBG CD NNS IN DT NN , VBG NNS CC VBG NNS IN JJ NNS .\nEarlier this month , President Bush said Syria faces growing international isolation because of what he calls its failure to stop fighters from crossing its border into Iraq .\tRBR DT NN , NNP NNP VBD NNP VBZ VBG JJ NN IN IN WP PRP VBZ PRP$ NN TO VB NNS IN VBG PRP$ NN IN NNP .\nBurma 's military government has blamed ethnic Karen rebels for a land mine explosion that killed two people and wounded 11 others in the country 's east .\tNNP POS JJ NN VBZ VBN JJ NNP NNS IN DT NN NN NN WDT VBD CD NNS CC VBD CD NNS IN DT NN POS NN .\nBurmese state media said a passenger bus hit the explosive last Sunday as it was traveling in Karen State about 200 kilometers from Rangoon .\tJJ NN NNS VBD DT NN NN VBD DT JJ JJ NNP IN PRP VBD VBG IN NNP NNP IN CD NNS IN NNP .\nThe reports said the junta blamed the Karen National Union for the blast .\tDT NNS VBD DT NN VBD DT NNP NNP NNP IN DT NN .\nIt was not immediately clear why the incident was reported only Saturday - nearly a week later .\tPRP VBD RB RB JJ WRB DT NN VBD VBN RB NNP : RB DT NN RB .\nThe military has accused the Karen National Union of responsibility for a series of bombings in recent months , including a December blast in Karen state that killed seven people .\tDT NN VBZ VBN DT NNP NNP NNP IN NN IN DT NN IN NNS IN JJ NNS , VBG DT NNP NN IN NNP NN WDT VBD CD NNS .\nThe Karen National Union has been fighting for greater autonomy for ethnic Karen people in Burma for more than 60 years .\tDT NNP NNP NNP VBZ VBN VBG IN JJR NN IN JJ NNP NNS IN NNP IN JJR IN CD NNS .\nTraditional fishermen in poor countries around the world face tough competition from international industrial fishing operations .\tJJ NNS IN JJ NNS IN DT NN NN JJ NN IN JJ JJ NN NNS .\nIn the fishing-rich West African nation of Guinea , there are laws meant to preserve some waters for the local fishermen .\tIN DT JJ JJ JJ NN IN NNP , EX VBP NNS VBN TO VB DT NNS IN DT JJ NNS .\nBut a lack of money means these laws often are not enforced .\tCC DT NN IN NN VBZ DT NNS RB VBP RB VBN .\nKari Barber reports from Conakry that many traditional fishermen feel they are being squeezed out of their livelihoods .\tNNP NNP VBZ IN NNP IN JJ JJ NNS VBP PRP VBP VBG VBN IN IN PRP$ NNS .\nPresident Bush will pay tribute at a Memorial Day ceremony later Monday at Arlington National Cemetery to members of America 's military who died in combat .\tNNP NNP MD VB NN IN DT NNP NNP NN RB NNP IN NNP NNP NNP TO NNS IN NNP POS NN WP VBD IN NN .\nMr. Bush will make remarks and lay a wreath at the Tomb of the Unknowns which contains the remains of unidentified U.S. service members who died in World Wars I and II - and in the Korean War .\tNNP NNP MD VB NNS CC VBD DT NN IN DT NNP IN DT NNPS WDT VBZ DT NNS IN JJ NNP NN NNS WP VBD IN NNP NNPS NNP CC NNP : CC IN DT NNP NNP .\nOn Sunday thousands of motorcycle riders conducted a parade through downtown Washington to honor missing soldiers and prisoners of war .\tIN NNP NNS IN NN NNS VBD DT NN IN NN NNP TO VB VBG NNS CC NNS IN NN .\nIn the United States , the Memorial Day holiday marks the unofficial start of summer , and is an occassion for picnics and parties as well as for observances at military cemeteries around the country .\tIN DT NNP NNPS , DT NNP NNP NN VBZ DT JJ NN IN NN , CC VBZ DT NN IN NNS CC NNS RB RB IN IN NNS IN JJ NNS IN DT NN .\nA key U.S. congressional panel has approved legislation to reform the American health care system .\tDT JJ NNP JJ NN VBZ VBN NN TO VB DT JJ NN NN NN .\nThe House of Representatives ' Energy and Commerce committee voted 31 to 28 late Friday to back a measure aimed at extending health insurance to Americans not now covered .\tDT NNP IN NNP POS NNP CC NNP NN VBD CD TO CD JJ NNP TO VB DT NN VBN IN VBG NN NN TO NNS RB RB VBN .\nCongress is about to adjourn for an August recess .\tNNP VBZ IN TO VB IN DT NNP NN .\nBut now that the committee has approved the bill , it can move to the full House as early as September .\tCC RB IN DT NN VBZ VBN DT NN , PRP MD VB TO DT JJ NNP RB RB IN NNP .\nA major part of the legislation involves creating a public health insurance plan .\tDT JJ NN IN DT NN VBZ VBG DT JJ NN NN NN .\nHouse Speaker Nancy Pelosi - a Democrat - says the changes will stop the insurance industry from coming between doctors and patients .\tNNP NNP NNP NNP IN DT NNP : VBZ DT NNS MD VB DT NN NN IN VBG IN NNS CC NNS .\nBut minority Republicans say the proposal costs too much and is the first step toward a government takeover of health care .\tCC NN NNS VBP DT NN VBZ RB JJ CC VBZ DT JJ NN IN DT NN NN IN NN NN .\nBangladeshi authorities have slaughtered nearly 20,000 chickens after bird flu was detected at a government-run poultry farm .\tJJ NNS VBP VBN RB CD NNS IN NN NN VBD VBN IN DT JJ NN NN .\nOfficials Tuesday said the latest infection of the potentially deadly H5N1 virus occurred at the farm in Mirpur , just outside Bangladesh 's capital , Dhaka .\tNNS NNP VBD DT JJS NN IN DT RB JJ NNP NN VBD IN DT NN IN NNP , RB IN NNP POS NN , NNP .\nThe bird flu was first detected in Bangladesh in March of 2007 at a state-owned poultry farm .\tDT NN NN VBD RB VBN IN NNP IN NNP IN CD IN DT JJ NN NN .\nSince then , the government has slaughtered more than 3,00,000 chickens .\tIN RB , DT NN VBZ VBN JJR IN CD NNS .\nNo human cases of infection have been reported so far .\tDT JJ NNS IN NN VBP VBN VBN RB RB .\nOfficials say Bangladesh has about 1,50,000 poultry farms , with an annual turnover of $ 750 million .\tNNS VBP NNP VBZ IN CD NN NNS , IN DT JJ NN IN $ CD CD .\nRussia says it agrees with the United States that Iran must be prevented from acquiring nuclear weapons , but Moscow sees no reason to refer Tehran to the United Nations Security Council for possible sanctions .\tNNP VBZ PRP VBZ IN DT NNP NNPS IN NNP MD VB VBN IN VBG JJ NNS , CC NNP VBZ DT NN TO VB NNP TO DT NNP NNP NNP NNP IN JJ NNS .\nRussia 's Foreign Minister Sergei Lavrov made the comment Saturday , after talks in Moscow with U.S. Secretary of State Condoleezza Rice .\tNNP POS NNP NNP NNP NNP VBD DT NN NNP , IN NNS IN NNP IN NNP NNP IN NNP NNP NNP .\nMr. Lavrov said the issue should be handled within the International Atomic Energy Agency .\tNNP NNP VBD DT NN MD VB VBN IN DT NNP NNP NNP NNP .\nBut Secretary Rice insisted that the Security Council option remains open if Iran fails to agree to negotiations on its nuclear program .\tCC NNP NNP VBD IN DT NNP NNP NN VBZ JJ IN NNP VBZ TO VB TO NNS IN PRP$ JJ NN .\nIran denies U.S. and European accusations that it is secretly trying to develop atomic weapons .\tNNP VBZ NNP CC JJ NNS IN PRP VBZ RB VBG TO VB JJ NNS .\nSecretary Rice later met with Russian President Vladimir Putin , who praised the success of her trip through five Asian countries .\tNNP NNP RB VBD IN JJ NNP NNP NNP , WP VBD DT NN IN PRP$ NN IN CD JJ NNS .\nShe stops in Britain before returning home .\tPRP VBZ IN NNP IN VBG NN .\nThe U.S. attorney general has defended the use of sting operations against suspected terrorists during a speech to a Muslim rights group .\tDT NNP NN NN VBZ VBN DT NN IN VBG NNS IN JJ NNS IN DT NN TO DT NN NNS NN .\nEric Holder told Muslim Advocates that such operations are essential to identifying and preventing terror attacks on all citizens .\tNNP NNP VBD NNP VBZ IN JJ NNS VBP JJ IN VBG CC VBG NN NNS IN DT NNS .\nThe California-based group had expressed concern that Justice Department tactics bordered on entrapment in some cases .\tDT JJ NN VBD VBN NN IN NNP NNP NNS VBD IN NN IN DT NNS .\nDuring his speech , Holder defended a case last month , in which a Somali-born man in Oregon was arrested after trying to detonate what he thought was a bomb near Christmas tree lighting .\tIN PRP$ NN , NNP VBD DT NN JJ NN , IN WDT DT JJ NN IN NNP VBD VBN IN VBG TO VB WP PRP VBD VBD DT NN IN NNP NN NN .\nUndercover FBI agents provided the suspect with the fake bomb .\tNN NNP NNS VBD DT NN IN DT JJ NN .\nThe director of the Muslim Advocates says it still has concerns and that fairness should be the cornerstone of each probe .\tDT NN IN DT NNP NNP VBZ PRP RB VBZ NNS CC IN NN MD VB DT NN IN DT NN .\nUkraine 's foreign minister says the Commonwealth of Independent States has no future in its present form but indicated his country is not planning to quit the organization that groups 12 former Soviet republics .\tNNP POS JJ NN VBZ DT NNP IN NNP NNPS VBZ DT NN IN PRP$ JJ NN CC VBD PRP$ NN VBZ RB VBG TO VB DT NN IN VBZ CD JJ JJ NNS .\nBoris Tarasyuk told reporters in Kiev Tuesday that the commonwealth , long criticized for being dominated by Russia , has become stagnant .\tNNP NNP VBD NNS IN NNP NNP IN DT NN , RB VBN IN VBG VBN IN NNP , VBZ VBN JJ .\nGeorgia has said it is considering quitting the group .\tNNP VBZ VBN PRP VBZ VBG VBG DT NN .\nUkrainian authorities are currently preparing for a summit Monday of leaders from another grouping of former Soviet republics known as GUAM , a group that brings together Georgia , Ukraine , Azerbaijan and Moldova .\tJJ NNS VBP RB VBG IN DT NN NNP IN NNS IN DT NN IN JJ JJ NNS VBN IN NNP , DT NN WDT VBZ RB NNP , NNP , NNP CC NNP .\nTarasyuk says one purpose of next week 's meeting is to strengthen and reorganize the smaller group , which , he said , could bring in other countries .\tNNP VBZ CD NN IN JJ NN POS NN VBZ TO VB CC VB DT JJR NN , WDT , PRP VBD , MD VB IN JJ NNS .\nAn Israeli security guard has shot dead a Palestinian man in Jerusalem 's Old City after the Palestinian grabbed a gun from another Israeli guard and opened fire .\tDT JJ NN NN VBZ VBN JJ DT JJ NN IN NNP POS NNP NNP IN DT NN VBD DT NN IN DT JJ NN CC VBD NN .\nIsraeli police say the gunfight Friday began when the Palestinian snatched a gun from an Israeli guard outside a Jewish seminary in the Old City 's Christian quarter .\tJJ NNS VBP DT NN NNP VBD WRB DT NN VBD DT NN IN DT JJ NN IN DT JJ NN IN DT NNP NNP POS JJ NN .\nThey say the attacker , roughly 20 years old , shot and wounded the guard and fled .\tPRP VBP DT NN , RB CD NNS JJ , VBD CC VBD DT NN CC VBD .\nAnother Israeli guard chased the Palestinian and shot him dead after a brief exchange of fire .\tDT JJ NN VBD DT NN CC VBD PRP RB IN DT JJ NN IN NN .\nTen bystanders also were wounded by the gunfire .\tCD NNS RB VBD VBN IN DT NN .\nSeveral witnesses say the Israeli guard kept shooting after the attacker fell to the ground .\tJJ NNS VBP DT JJ NN VBD NN IN DT NN VBD TO DT NN .\nIsraeli police say the security guard acted appropriately in response to a terrorist incident .\tJJ NNS VBP DT NN NN VBD RB IN NN TO DT JJ NN .\nIn May , Israeli security forces killed two Palestinian gunmen who opened fire in an Arab neighborhood of East Jerusalem .\tIN NNP , JJ NN NNS VBD CD JJ NNS WP VBD NN IN DT JJ NN IN NNP NNP .\nTwo Israeli officers were wounded in that attack .\tCD JJ NNS VBD VBN IN DT NN .\nThe former U.S. administrator for Iraq has praised Sunday 's election as a victory for democracy , and says it has proved skeptics wrong .\tDT JJ NNP NN IN NNP VBZ VBN NNP POS NN IN DT NN IN NN , CC VBZ PRP VBZ VBN NNS JJ .\nSpeaking on American television ( NBC 's Today Show ) Monday , Paul Bremer said the election was a great victory for the Iraqi people , for democracy and for President Bush 's message of freedom .\tVBG IN JJ NN LRB NNP POS NN NN RRB NNP , NNP NNP VBD DT NN VBD DT JJ NN IN DT JJ NNS , IN NN CC IN NNP NNP POS NN IN NN .\nMr. Bremer said it is a mark of the resilience and courage of the Iraqi people that they have come this far .\tNNP NNP VBD PRP VBZ DT NN IN DT NN CC NN IN DT JJ NNS IN PRP VBP VBN DT RB .\nBut he added that despite the apparent success of the vote , he expects more violence ahead .\tCC PRP VBD IN IN DT JJ NN IN DT NN , PRP VBZ JJR NN RB .\nMr. Bremer also expressed optimism that Iraq would not fracture along ethnic and religious lines , and that the Sunni minority , which appears to have largely boycotted the vote , would have a voice in the new government .\tNNP NNP RB VBD NN IN NNP MD RB VB IN JJ CC JJ NNS , CC IN DT NNP NN , WDT VBZ TO VB RB VBN DT NN , MD VB DT NN IN DT JJ NN .\nSecurity sources in Yemen say tribesmen have blown up an oil pipeline in retaliation for raids targeting al-Qaida sympathizers .\tNN NNS IN NNP VBP NNS VBP VBN RP DT NN NN IN NN IN NNS VBG NNP NNS .\nOfficials say tribesman in eastern Maarib province sabotaged the pipeline Saturday , after government forces raided the homes of tribal leaders thought to be harboring al-Qaida operatives .\tNNS VBP NN IN JJ NNP NN VBD DT NN NNP , IN NN NNS VBD DT NNS IN JJ NNS VBN TO VB VBG NNP NNS .\nOn Wednesday , more than 20 people were wounded when security forces clashed with tribesmen in eastern Yemen during the operation to apprehend Hassan al-Aqili .\tIN NNP , JJR IN CD NNS VBD VBN WRB NN NNS VBN IN NNS IN JJ NNP IN DT NN TO VB NNP NNP .\nAqili is wanted for the death of a senior army officer , killed in an ambush last Saturday .\tNNP VBZ VBN IN DT NN IN DT JJ NN NN , VBN IN DT JJ JJ NNP .\nReigning champion Canada defeated Italy , 07-Feb , while Sweden defeated Kazakhstan , 07-Feb , in first-round action at the Olympic men 's ice hockey tournament in Turin .\tVBG NN NNP VBD NNP , CD , IN NNP VBD NNP , CD , IN JJ NN IN DT NNP NNS POS NN NN NN IN NNP .\nCanada scored five consecutive goals in the second period after Italy had tied the Group-A game 01-Jan . Jarome Iginla , Dany Heatley , Shane Doan , Martin St. Louis and Brad Richards all scored for Canada .\tNNP VBD CD JJ NNS IN DT JJ NN IN NNP VBD VBN DT NNP NN CD . NNP NNP , NNP NNP , NNP NNP , NNP NNP NNP CC NNP NNP DT VBN IN NNP .\nMeanwhile in Group-B , Daniel Tjarnqvist scored twice while brothers Daniel and Henrik Sedin had one goal each to lead Sweden past Kazakhstan in their first-round game .\tRB IN NNP , NNP NNP VBD RB IN NNS NNP CC NNP NNP VBD CD NN DT TO VB NNP JJ NNP IN PRP$ JJ NN .\nLater games have Finland against Switzerland , Germany playing the Czech Republic , Russia taking on Slovakia , and the United States against Latvia .\tRB NNS VBP NNP IN NNP , NNP VBG DT JJ NNP , NNP VBG IN NNP , CC DT NNP NNPS IN NNP .\nChina says it will deploy unmanned aircraft or drones over its Olympic sailing venue in the coastal city of Qingdao during the Beijing Games to watch for suspicious activities .\tNNP VBZ PRP MD VB JJ NN CC NNS IN PRP$ NNP NN NN IN DT JJ NN IN NNP IN DT NNP NNPS TO VB IN JJ NNS .\nThe state-run Xinhua news agency says police tested one of the drones Friday during a drill in the Shandong provincial capital of Jinan , not far from Qingdao .\tDT JJ NNP NN NN VBZ NN VBD CD IN DT NNS NNP IN DT NN IN DT NNP JJ NN IN NNP , RB RB IN NNP .\nReports say it is the first time that China has used the unmanned , low-flying reconnaissance aircraft .\tNNS VBP PRP VBZ DT JJ NN IN NNP VBZ VBN DT JJ , JJ NN NN .\nXinhua says the drones will scout out suspicious activity and transmit photos and video back to a command station .\tNNP VBZ DT NNS MD VB RP JJ NN CC NN NNS CC NN RB TO DT NN NN .\nIt did not say what threats the sailing event could face .\tPRP VBD RB VB WP NNS DT NN NN MD VB .\nChina has said terrorism is the biggest threat to the Beijing games and already claims to have foiled terrorist plots targeting athletes and foreigners during the Olympics .\tNNP VBZ VBN NN VBZ DT JJS NN TO DT NNP NNS CC RB VBZ TO VB VBN JJ NNS VBG NNS CC NNS IN DT NNS .\nIran 's chief religious leader is urging Arab nations to boycott an upcoming U.S.-hosted peace conference .\tNNP POS JJ JJ NN VBZ VBG JJ NNS TO VB DT JJ JJ NN NN .\nSupreme Leader Ayatollah Ali Khamenei issued the call Saturday during a sermon in Tehran .\tNN NN NNP NNP NNP VBD DT NN NNP IN DT NN IN NNP .\nThe conference next month is aimed at resolving the issue of Palestinian statehood , but Ayatollah Khamenei says the real goal is to prop up Israel , which he called the ' Zionist regime . '\tDT NN JJ NN VBZ VBN IN VBG DT NN IN JJ NN , CC NNP NNP VBZ DT JJ NN VBZ TO VB RP NNP , WDT PRP VBD DT `` NNP NN . ``\nThe cleric says previous peace conferences have been at the expense of the Palestinian people .\tDT NN VBZ JJ NN NNS VBP VBN IN DT NN IN DT JJ NNS .\nHe questioned the need for Arab states to attend the forum , since the Palestinians themselves are not taking part .\tPRP VBD DT NN IN JJ NNS TO VB DT NN , IN DT NNS PRP VBP RB VBG NN .\nHe did not mention talks between Israeli Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas , preparing for the conference .\tPRP VBD RB VB NNS IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP , VBG IN DT NN .\nIn Saturday 's sermon , the ayatollah also blamed the United States for the chaos in Iraq .\tIN NNP POS NN , DT NN RB VBD DT NNP NNPS IN DT NN IN NNP .\nPolice in Afghanistan say Afghan and NATO forces have killed 18 Taleban rebels in clashes in the country 's volatile southern region .\tNNS IN NNP VBP JJ CC NNP NNS VBP VBN CD NNP NNS IN NNS IN DT NN POS JJ JJ NN .\nThe fighting took place Tuesday near the village of Garmser in Helmand province .\tDT NN VBD NN NNP IN DT NN IN NNP IN NNP NN .\nThere were no casualties reported among the NATO and Afghan troops .\tEX VBD DT NNS VBN IN DT NNP CC JJ NNS .\nAlso on Tuesday , three British soldiers were killed in the same province when suspected Taleban insurgents ambushed a NATO patrol .\tRB IN NNP , CD JJ NNS VBD VBN IN DT JJ NN WRB VBN NNP NNS VBD DT NNP NN .\nNATO took over security operations this week from U.S.-led coalition forces in six southern Afghan provinces .\tNNP VBD RP NN NNS DT NN IN JJ NN NNS IN CD JJ JJ NNS .\nA car exploded just outside Afghanistan 's capital , Kabul , killing one person in the vehicle Wednesday , and wounding at least two others .\tDT NN VBD RB IN NNP POS NN , NNP , VBG CD NN IN DT NN NNP , CC VBG IN JJS CD NNS .\nPolice say they are not sure if the blast was a suicide attack .\tNNS VBP PRP VBP RB JJ IN DT NN VBD DT NN NN .\nAt least one of the people injured was in the vehicle at the time of the explosion .\tIN JJS CD IN DT NNS VBN VBD IN DT NN IN DT NN IN DT NN .\nColombian authorities say leftist rebels have attacked a military convoy in southern Colombia with explosives , killing 10 servicemen .\tJJ NNS VBP JJ NNS VBP VBN DT JJ NN IN JJ NNP IN NNS , VBG CD NNS .\nA military commander says the attack was carried out by the Revolutionary Armed Forces of Colombia ( FARC ) in Putumayo state , one of Colombia 's biggest cocaine-producing regions .\tDT JJ NN VBZ DT NN VBD VBN RP IN DT NNP NNP NNS IN NNP LRB NNP RRB IN NNP NN , CD IN NNP POS JJS JJ NNS .\nThe FARC , along with a smaller rebel group and rightist paramilitaries , is locked in a long-running war with the government that leaves thousands of people dead each year .\tDT NNP , IN IN DT JJR NN NN CC NN NNS , VBZ VBN IN DT JJ NN IN DT NN WDT VBZ NNS IN NNS JJ DT NN .\nSelf-sufficient Gibraltar benefits from an extensive shipping trade , offshore banking , and its position as an international conference center .\tJJ NNP NNS IN DT JJ NN NN , JJ NN , CC PRP$ NN IN DT JJ NN NN .\nTax rates are low to attract foreign investment .\tNN NNS VBP JJ TO VB JJ NN .\nThe British military presence has been sharply reduced and now contributes about 7 % to the local economy , compared with 60 % in 1984 .\tDT JJ JJ NN VBZ VBN RB VBN CC RB VBZ IN CD NN TO DT JJ NN , VBN IN CD NN IN CD .\nThe financial sector , tourism ( almost 5 million visitors in 1998 ) , gaming revenues , shipping services fees , and duties on consumer goods also generate revenue .\tDT JJ NN , NN LRB RB CD CD NNS IN CD RRB , VBG NNS , VBG NNS NNS , CC NNS IN NN NNS RB VBP NN .\nThe financial sector , tourism , and the shipping sector contribute 30 % , 30 % , and 25 % , respectively , of GDP .\tDT JJ NN , NN , CC DT NN NN VBP CD NN , CD NN , CC CD NN , RB , IN NN .\nTelecommunications , e-commerce , and e-gaming account for the remaining 15 % .\tNN , NN , CC JJ NN IN DT VBG CD NN .\nIn recent years , Gibraltar has seen major structural change from a public to a private sector economy , but changes in government spending still have a major impact on the level of employment .\tIN JJ NNS , NNP VBZ VBN JJ JJ NN IN DT NN TO DT JJ NN NN , CC NNS IN NN NN RB VBP DT JJ NN IN DT NN IN NN .\nPoland is an ancient nation that was conceived near the middle of the 10th century .\tNNP VBZ DT JJ NN WDT VBD VBN IN DT NN IN DT JJ NN .\nIts golden age occurred in the 16th century .\tPRP$ JJ NN VBD IN DT JJ NN .\nDuring the following century , the strengthening of the gentry and internal disorders weakened the nation .\tIN DT JJ NN , DT NN IN DT NN CC JJ NNS VBD DT NN .\nIn a series of agreements between 1772 and 1795 , Russia , Prussia , and Austria partitioned Poland among themselves .\tIN DT NN IN NNS IN CD CC CD , NNP , NNP , CC NNP VBD NNP IN PRP .\nPoland regained its independence in 1918 only to be overrun by Germany and the Soviet Union in World War II .\tNNP VBD PRP$ NN IN CD RB TO VB VBN IN NNP CC DT NNP NNP IN NNP NNP NNP .\nIt became a Soviet satellite state following the war , but its government was comparatively tolerant and progressive .\tPRP VBD DT JJ NN NN VBG DT NN , CC PRP$ NN VBD RB JJ CC JJ .\nLabor turmoil in 1980 led to the formation of the independent trade union ' Solidarity ' that over time became a political force and by 1990 had swept parliamentary elections and the presidency .\tNN NN IN CD VBD TO DT NN IN DT JJ NN NN `` NNP `` WDT IN NN VBD DT JJ NN CC IN CD VBD VBN JJ NNS CC DT NN .\nA ' shock therapy ' program during the early 1990s enabled the country to transform its economy into one of the most robust in Central Europe , but Poland still faces the lingering challenges of high unemployment , underdeveloped and dilapidated infrastructure , and a poor rural underclass .\tDT `` NN NN `` NN IN DT JJ NNS VBD DT NN TO VB PRP$ NN IN CD IN DT RBS JJ IN NNP NNP , CC NNP RB VBZ DT VBG NNS IN JJ NN , JJ CC JJ NN , CC DT JJ JJ NN .\nPoland joined NATO in 1999 and the European Union in 2004 .\tNNP VBD NNP IN CD CC DT NNP NNP IN CD .\nWith its transformation to a democratic , market-oriented country largely completed , Poland is an increasingly active member of Euro-Atlantic organizations .\tIN PRP$ NN TO DT JJ , JJ NN RB VBN , NNP VBZ DT RB JJ NN IN JJ NNS .\nThis thoroughly modern market economy features a high-tech agricultural sector , state-of-the-art industry with world-leading firms in pharmaceuticals , maritime shipping and renewable energy , and a high dependence on foreign trade .\tDT RB JJ NN NN VBZ DT JJ JJ NN , JJ NN IN JJ NNS IN NNS , NN NN CC JJ NN , CC DT JJ NN IN JJ NN .\nDenmark is a member of the European Union ( EU ) ; Danish legislation and regulations conform to EU standards on almost all issues .\tNNP VBZ DT NN IN DT NNP NNP LRB NNP RRB ; JJ NN CC NNS VBP IN NNP NNS IN RB DT NNS .\nDanes enjoy among the highest standards of living in the world and the Danish economy is characterized by extensive government welfare measures and an equitable distribution of income .\tNNS VBP IN DT JJS NNS IN VBG IN DT NN CC DT JJ NN VBZ VBN IN JJ NN NN NNS CC DT JJ NN IN NN .\nDenmark is a net exporter of food and energy and enjoys a comfortable balance of payments surplus , but depends on imports of raw materials for the manufacturing sector .\tNNP VBZ DT JJ NN IN NN CC NN CC VBZ DT JJ NN IN NNS NN , CC VBZ IN NNS IN JJ NNS IN DT NN NN .\nWithin the EU , Denmark is among the strongest supporters of trade liberalization .\tIN DT NNP , NNP VBZ IN DT JJS NNS IN NN NN .\nAfter a long consumption-driven upswing , Denmark 's economy began slowing in 2007 with the end of a housing boom .\tIN DT JJ JJ NN , NNP POS NN VBD VBG IN CD IN DT NN IN DT NN NN .\nHousing prices dropped markedly in 2008 - 9 .\tNN NNS VBD RB IN CD : CD .\nThe global financial crisis has exacerbated this cyclical slowdown through increased borrowing costs and lower export demand , consumer confidence , and investment .\tDT JJ JJ NN VBZ VBN DT JJ NN IN VBN NN NNS CC JJR NN NN , NN NN , CC NN .\nThe global financial crises cut Danish GDP by 0.9 % in 2008 and 5.2 % in 2009 .\tDT JJ JJ NNS VBD JJ NN IN CD NN IN CD CC CD NN IN CD .\nHistorically low levels of unemployment rose sharply with the recession but remain below 5 % , based on the national measure , about half the level of the EU ; harmonized to OECD standards the unemployment rate was about 8 % at the end of 2010 .\tRB JJ NNS IN NN VBD RB IN DT NN CC VBP IN CD NN , VBN IN DT JJ NN , IN PDT DT NN IN DT NNP ; VBN TO NNP NNS DT NN NN VBD IN CD NN IN DT NN IN CD .\nDenmark made a modest recovery in 2010 in part because of increased government spending .\tNNP VBD DT JJ NN IN CD IN NN IN IN VBN NN NN .\nAn impending decline in the ratio of workers to retirees will be a major long-term issue .\tDT JJ NN IN DT NN IN NNS TO NNS MD VB DT JJ JJ NN .\nDenmark maintained a healthy budget surplus for many years up to 2008 , but the budget balance swung into deficit during 2009 - 10 .\tNNP VBD DT JJ NN NN IN JJ NNS IN TO CD , CC DT NN NN VBD IN NN IN CD IN CD .\nNonetheless , Denmark 's fiscal position remains among the strongest in the EU .\tRB , NNP POS JJ NN VBZ IN DT JJS IN DT NNP .\nDespite previously meeting the criteria to join the European Economic and Monetary Union ( EMU ) , so far Denmark has decided not to join , although the Danish krone remains pegged to the euro .\tIN RB VBG DT NNS TO VB DT JJ NNP CC NNP NNP LRB NNP RRB , RB RB NNP VBZ VBN RB TO VB , IN DT JJ NN VBZ VBN TO DT NN .\nThe eastern half of the island of New Guinea - second largest in the world - was divided between Germany ( north ) and the UK ( south ) in 1885 .\tDT JJ NN IN DT NN IN NNP NNP IN JJ JJS IN DT NN : VBD VBN IN NNP LRB NN RRB CC DT NNP LRB NN RRB IN CD .\nThe latter area was transferred to Australia in 1902 , which occupied the northern portion during World War I and continued to administer the combined areas until independence in 1975 .\tDT JJ NN VBD VBN TO NNP IN CD , WDT VBD DT JJ NN IN NNP NNP NNP CC VBD TO VB DT JJ NNS IN NN IN CD .\nA nine-year secessionist revolt on the island of Bougainville ended in 1997 after claiming some 20,000 lives .\tDT JJ NN NN IN DT NN IN NNP VBD IN CD IN VBG DT CD NNS .\nThe UK established a protectorate over the Solomon Islands in the 1890s .\tDT NNP VBD DT NN IN DT NNP NNP IN DT NNS .\nSome of the most bitter fighting of World War II occurred on this archipelago .\tDT IN DT RBS JJ NN IN NNP NNP NNP VBD IN DT NN .\nSelf-government was achieved in 1976 and independence two years later .\tNN VBD VBN IN CD CC NN CD NNS RB .\nEthnic violence , government malfeasance , and endemic crime have undermined stability and civil society .\tNNP NN , NN NN , CC JJ NN VBP VBN NN CC JJ NN .\nIn June 2003 , then Prime Minister Sir Allan KEMAKEZA sought the assistance of Australia in reestablishing law and order ; the following month , an Australian-led multinational force arrived to restore peace and disarm ethnic militias .\tIN NNP CD , RB NNP NNP NNP NNP NNP VBD DT NN IN NNP IN VBG NN CC NN ; DT VBG NN , DT JJ JJ NN VBD TO VB NN CC NN JJ NNS .\nThe Regional Assistance Mission to the Solomon Islands ( RAMSI ) has generally been effective in restoring law and order and rebuilding government institutions .\tDT NNP NNP NNP TO DT NNP NNP LRB NNP RRB VBZ RB VBN JJ IN VBG NN CC NN CC NN NN NNS .\nTHE OLIVE-TREE ridiculed the Fig-Tree because , while she was green all the year round , the Fig-Tree changed its leaves with the seasons .\tDT NN VBD DT NN IN , IN PRP VBD JJ PDT DT NN NN , DT NN VBD PRP$ NNS IN DT NNS .\nA shower of snow fell upon them , and , finding the Olive full of foliage , it settled upon its branches and broke them down with its weight , at once despoiling it of its beauty and killing the tree .\tDT NN IN NN VBD IN PRP , CC , VBG DT NN JJ IN NN , PRP VBD IN PRP$ NNS CC VBD PRP RP IN PRP$ NN , IN RB VBG PRP IN PRP$ NN CC VBG DT NN .\nBut finding the Fig-Tree denuded of leaves , the snow fell through to the ground , and did not injure it at all .\tCC VBG DT NN VBN IN NNS , DT NN VBD IN TO DT NN , CC VBD RB VB PRP IN DT .\nAN Editor who was always vaunting the purity , enterprise , and fearlessness of his paper was pained to observe that he got no subscribers .\tDT NN WP VBD RB VBG DT NN , NN , CC NN IN PRP$ NN VBD VBN TO VB IN PRP VBD DT NNS .\nOne day it occurred to him to stop saying that his paper was pure and enterprising and fearless , and make it so .\tCD NN PRP VBD TO PRP TO VB VBG IN PRP$ NN VBD JJ CC JJ CC JJ , CC VB PRP RB .\n' If these are not good qualities , ' he reasoned , ' it is folly to claim them . '\t`` IN DT VBP RB JJ NNS , `` PRP VBD , `` PRP VBZ RB TO VB PRP . ``\nUnder the new policy he got so many subscribers that his rivals endeavoured to discover the secret of his prosperity , but he kept it , and when he died it died with him .\tIN DT JJ NN PRP VBD RB JJ NNS IN PRP$ NNS VBD TO VB DT NN IN PRP$ NN , CC PRP VBD PRP , CC WRB PRP VBD PRP VBD IN PRP .\nOn July 8 , 1947 , witnesses claim a spaceship with five aliens aboard crashed on a sheep-and-cattle ranch outside Roswell , an incident they say has been covered up by the military .\tIN NNP CD , CD , NNS VBP DT NN IN CD NNS IN VBN IN DT JJ NN IN NNP , DT NN PRP VBP VBZ VBN VBN RP IN DT NN .\nMarch 31 , 1948 , nine months after that day , Al Gore was born .\tNNP CD , CD , CD NNS IN DT NN , NNP NNP VBD VBN .\nThat clears up a lot of things .\tDT VBZ RP DT NN IN NNS .\nVenezuelan President Hugo Chavez has rallied hundreds of thousands of supporters in Caracas in advance of the December 3 presidential vote .\tJJ NNP NNP NNP VBZ VBN NNS IN NNS IN NNS IN NNP IN NN IN DT NNP CD JJ NN .\nMr. Chavez told the crowd Sunday that his goal is not to merely win , but to outdo previous triumphs in a way that is overwhelming and crushing .\tNNP NNP VBD DT NN NNP IN PRP$ NN VBZ RB TO RB VB , CC TO VB JJ NNS IN DT NN WDT VBZ JJ CC NN .\nPolls show Mr. Chavez well ahead of his opponent Manuel Rosales .\tNNS VBP NNP NNP RB RB IN PRP$ NN NNP NNP .\nMr. Chavez has built strong support in Venezuela for his criticism of the Bush administration and for programs he says will improve the lives of the nation 's poor .\tNNP NNP VBZ VBN JJ NN IN NNP IN PRP$ NN IN DT NNP NN CC IN NNS PRP VBZ MD VB DT NNS IN DT NN POS NN .\nMr. Rosales is the governor of Zulia state .\tNNP NNP VBZ DT NN IN NNP NN .\nHe has criticized Chavez ' ties to Cuba 's Fidel Castro , saying Venezuelans want modernity , not the Cubanization of their country .\tPRP VBZ VBN NNP POS NNS TO NNP POS NNP NNP , VBG NNS VBP NN , RB DT NN IN PRP$ NN .\nMr. Rosales held a campaign rally Saturday that also attracted hundreds of thousands of supporters .\tNNP NNP VBD DT NN NN NNP WDT RB VBD NNS IN NNS IN NNS .\nOfficials say a journalist with state-controlled Russian television was found dead in his Moscow apartment early Friday .\tNNS VBP DT NN IN JJ JJ NN VBD VBN JJ IN PRP$ NNP NN RB NNP .\nFirefighters who came to put out a fire at his apartment found the body of 32-year-old Ilyas Shurpayev .\tNNS WP VBD TO VB RP DT NN IN PRP$ NN VBD DT NN IN JJ NNP NNP .\nPolice said he appeared to have been strangled with a belt and had multiple stab wounds .\tNNS VBD PRP VBD TO VB VBN VBN IN DT NN CC VBD JJ NN NNS .\nShurpayev moved to Moscow from the mostly Muslim Dagestan province and had reported extensively from Russia 's violence-ridden North Caucasus region and neighboring areas of Georgia .\tNNP VBD TO NNP IN DT RB JJ NNP NN CC VBD VBN RB IN NNP POS JJ NNP NNP NN CC JJ NNS IN NNP .\nMore than a dozen journalists have been slain in contract-style killings in Russia since 2000 .\tJJR IN DT CD NNS VBP VBN VBN IN JJ NNS IN NNP IN CD .\nMany journalists appear to have been targeted for beatings and killings because of their attempts to report on allegations of official corruption .\tJJ NNS VBP TO VB VBN VBN IN NNS CC NNS IN IN PRP$ NNS TO VB IN NNS IN JJ NN .\nIranian state media are reporting that Iran is operating nearly 500 new uranium-enriching centrifuges at its Natanz nuclear facility .\tJJ NN NNS VBP VBG IN NNP VBZ VBG RB CD JJ JJ NNS IN PRP$ NNP JJ NN .\nThe Islamic Republic News Agency quoted Friday an unnamed source familiar with the program as saying that the centrifuges are part of 3,000 installed last year at the complex .\tDT NNP NNP NNP NNP VBD NNP DT JJ NN JJ IN DT NN IN VBG IN DT NNS VBP NN IN CD VBN JJ NN IN DT NN .\nOn Tuesday , Iranian President Mahmoud Ahmadinejad announced Tehran plans to install 6,000 new centrifuges at Natanz .\tIN NNP , JJ NNP NNP NNP VBD NNP VBZ TO VB CD JJ NNS IN NNP .\nMeanwhile , a senior Iranian nuclear official denied Iran is having technical difficulties in expanding its nuclear activities .\tRB , DT JJ JJ JJ NN VBD NNP VBZ VBG JJ NNS IN VBG PRP$ JJ NNS .\nIran currently faces three sets of United Nations Security Council sanctions and international isolation for its refusal to halt uranium enrichment , which can be used in building nuclear weapons .\tNNP RB VBZ CD NNS IN NNP NNP NNP NNP NNS CC JJ NN IN PRP$ NN TO VB NN NN , WDT MD VB VBN IN VBG JJ NNS .\nThe United States has accused Iran of secretly trying to develop nuclear weapons .\tDT NNP NNPS VBZ VBN NNP IN RB VBG TO VB JJ NNS .\nIran says its nuclear program is for peaceful purposes .\tNNP VBZ PRP$ JJ NN VBZ IN JJ NNS .\nAuthorities in Afghanistan say four policemen were killed and four others wounded by militants who attacked a security checkpoint in southern Kandahar province .\tNNS IN NNP VBP CD NNS VBD VBN CC CD NNS VBN IN NNS WP VBD DT NN NN IN JJ NNP NN .\nPolice say one militant also was killed during the assault - a drive-by shooting - late Sunday in Maywand district , west of Kandahar city .\tNNS VBP CD NN RB VBD VBN IN DT NN IN DT JJ NN IN JJ NNP IN NNP NN , NN IN NNP NN .\nLess than 24 hours earlier , two U.S. soldiers were wounded in an attack on their patrol in southern Zabul province .\tRBR IN CD NNS RBR , CD NNP NNS VBD VBN IN DT NN IN PRP$ NN IN JJ NNP NN .\nTwo weeks ago , American and Afghan forces launched a winter offensive , dubbed ' Operation Lightning Freedom ' , to hunt for Taleban militants ahead of planned parliamentary elections next year .\tCD NNS RB , NNP CC JJ NNS VBD DT NN NN , VBN `` NNP NNP NNP `` , TO VB IN NNP NNS RB IN JJ JJ NNS IN NN .\nThe operation is aimed at strengthening security to ensure that the parliamentary election , in about four months , can be conducted as smoothly as Afghanistan 's landmark presidential ballot in October .\tDT NN VBZ VBN IN VBG NN TO VB IN DT JJ NN , IN IN CD NNS , MD VB VBN RB RB IN NNP POS NN JJ NN IN NNP .\nAustralian Prime Minister John Howard says his government has received information about a specific terror threat against the country .\tJJ NNP NNP NNP NNP VBZ PRP$ NN VBZ VBN NN IN DT JJ NN NN IN DT NN .\nMr. Howard told a news conference Wednesday , the government received information this week that caused ' serious concern . '\tNNP NNP VBD DT NN NN NNP , DT NN VBD NN DT NN WDT VBD `` JJ NN . ``\nHe would not provide details .\tPRP MD RB VB NNS .\nThe prime minister said he would try to push new anti-terror legislation through parliament Wednesday , to help law enforcement agencies fight the threat .\tDT JJ NN VBD PRP MD VB TO VB JJ JJ NN IN NN NNP , TO VB NN NN NNS VBP DT NN .\nCounter-terrorism laws under consideration in Australia would allow suspects to be electronically watched or held in custody for up to 14 days without charge .\tNN NNS IN NN IN NNP MD VB NNS TO VB RB VBN CC VBN IN NN IN RB TO CD NNS IN NN .\nThey would also create tighter checks on citizenship applicants and authorize jail terms for inciting violence .\tPRP MD RB VB JJR NNS IN NN NNS CC VB NN NNS IN VBG NN .\nRights organizations have criticized the measures , saying they threaten civil liberties and violate international law .\tNNS NNS VBP VBN DT NNS , VBG PRP VBP JJ NNS CC VBP JJ NN .\nU.S. Senate investigators say the former head of the U.N. oil-for-food program for Iraq may have netted more than $ 1 million through oil deals with Saddam Hussein 's government .\tNNP NNP NNS VBP DT JJ NN IN DT NNP NN NN IN NNP MD VB VBN JJR IN $ CD CD IN NN NNS IN NNP NNP POS NN .\nA Senate panel has released Iraqi Oil Ministry documents that suggest program chief Benon Sevan was given the right to sell Iraqi oil contracts .\tDT NNP NN VBZ VBN JJ NNP NNP NNS WDT VBP NN NN NNP NNP VBD VBN DT NN TO VB JJ NN NNS .\nThe panel began hearings Tuesday on allegations of corruption in the now-defunct United Nations-run program .\tDT NN VBD NNS NNP IN NNS IN NN IN DT JJ NNP NNP NN .\nA U.N. commission headed by former U.S. Federal Reserve Chairman Paul Volcker is conducting a separate investigation into whether Mr. Sevan received money through the program .\tDT NNP NN VBN IN JJ NNP NNP NNP NNP NNP NNP VBZ VBG DT JJ NN IN IN NNP NNP VBD NN IN DT NN .\nThe commission 's preliminary report said Mr. Sevan solicited oil deals for a Panamanian company , an act the commission called a ' conflict of interest . '\tDT NN POS JJ NN VBD NNP NNP VBD NN NNS IN DT JJ NN , DT NN DT NN VBD DT `` NN IN NN . ``\nMr. Sevan has repeatedly denied any wrongdoing .\tNNP NNP VBZ RB VBN DT NN .\nThe death toll from a gas explosion at a Chinese coal mine has climbed to 87 , with rescuers still searching for 21 miners .\tDT NN NN IN DT NN NN IN DT JJ NN NN VBZ VBN TO CD , IN NNS RB VBG IN CD NNS .\nOfficials with the local coal mine safety bureau said Friday that gas density in the mine is so high it makes rescue efforts dangerous .\tNNS IN DT JJ NN NN NN NN VBD NNP IN NN NN IN DT NN VBZ RB JJ PRP VBZ NN NNS JJ .\nThe latest explosion happened Wednesday at the Liuguantun mine near Tangshan city in Hebei province .\tDT JJS NN VBD NNP IN DT NNP NN IN NNP NN IN NNP NN .\nOnly 30 miners are known to have survived the blast .\tRB CD NNS VBP VBN TO VB VBN DT NN .\nChina 's mines are the deadliest in the world .\tNNP POS NNS VBP DT JJS IN DT NN .\nThousands of miners are killed each year .\tNNS IN NNS VBP VBN DT NN .\nOn Tuesday , rescuers recovered the body of the last miner missing in a November 27 coal dust explosion in Heilongjiang province , bringing the number of deaths in that blast to 171 .\tIN NNP , NNS VBD DT NN IN DT JJ NN VBG IN DT NNP CD NN NN NN IN NNP NN , VBG DT NN IN NNS IN DT NN TO CD .\nChina 's Xinhua news agency reports the top Communist Party official in a northern Chinese city and 26 other officials have gone on trial for their alleged involvement in a deadly attack on a shantytown .\tNNP POS NNP NN NN VBZ DT JJ NNP NNP NN IN DT JJ JJ NN CC CD JJ NNS VBP VBN IN NN IN PRP$ JJ NN IN DT JJ NN IN DT NN .\nMore than 200 people attended the opening of the trial in Hebei province .\tJJR IN CD NNS VBD DT NN IN DT NN IN NNP NN .\nThe news agency says last June , hundreds of apparently hired thugs armed with guns , clubs and knives killed six people and injured dozens of others protesting land seizures in the village of Shengyou .\tDT NN NN VBZ JJ NNP , NNS IN RB VBN NNS VBN IN NNS , NNS CC NNS VBD CD NNS CC JJ NNS IN NNS VBG NN NNS IN DT NN IN NNP .\nVillagers were angry over the low compensation officials offered for their land .\tNNS VBD JJ IN DT JJ NN NNS VBN IN PRP$ NN .\nSuch disputes have become more common as Chinese developers turn residential and farm land into shopping malls , apartment buildings and other projects .\tJJ NNS VBP VBN RBR JJ IN JJ NNS VBP JJ CC NN NN IN NN NNS , NN NNS CC JJ NNS .\nResidents often accuse authorities of forcing them off land without proper compensation .\tNNS RB VBP NNS IN VBG PRP RP NN IN JJ NN .\nThe author of new book about Burmese military ruler Than Shwe describes the general as smarter and better informed than most people realize , but also ruthless and adept at manipulating others .\tDT NN IN JJ NN IN JJ JJ NN IN NNP VBZ DT JJ IN NN CC JJR VBN IN JJS NNS VBP , CC RB JJ CC JJ IN VBG NNS .\nDuring interviews promoting the book , entitled Unmasking Than Shwe , British journalist Benedict Rogers said he relied on conversations with Burmese military defectors and foreign diplomats to gain an insight into one of the world 's most secretive leaders .\tIN NNS VBG DT NN , VBN VBG NNP NNP , JJ NN NNP NNP VBD PRP VBD IN NNS IN JJ JJ NNS CC JJ NNS TO VB DT NN IN CD IN DT NN POS RBS JJ NNS .\nRogers says Than Shwe 's reputed interest in astrology should not lead outsiders to underestimate him .\tNNP VBZ NNP NNP POS JJ NN IN NN MD RB VB NNS TO VB PRP .\nHe said the general is an astute judge of people and trained in psychological warfare , making him an expert at divide-and-rule tactics .\tPRP VBD DT NN VBZ DT JJ NN IN NNS CC VBN IN JJ NN , VBG PRP DT NN IN JJ NNS .\nThe author says no one should believe that planned elections this year will loosen Than Shwe 's grip on power .\tDT NN VBZ DT NN MD VB IN JJ NNS DT NN MD VB NNP NNP POS NN IN NN .\nRogers also says the actions documented in his book provide ample grounds for Than Shwe to be brought to trial for war crimes and crimes against humanity .\tNNP RB VBZ DT NNS VBN IN PRP$ NN VB JJ NNS IN NNP NNP TO VB VBN TO NN IN NN NNS CC NNS IN NN .\nIsrael has re-opened its border crossings with the Gaza Strip .\tNNP VBZ VBN PRP$ NN NNS IN DT NNP NNP .\nMilitary spokesman Peter Lerner says the Sufa , Karni and the Nahal Oz crossings opened Wednesday .\tNNP NN NNP NNP VBZ DT NNP , NNP CC DT NNP NNP NNS VBD NNP .\nHe said cement shipments will delivered for the first time in a year into the Gaza Strip .\tPRP VBD NN NNS MD VBN IN DT JJ NN IN DT NN IN DT NNP NNP .\nThe border crossings were closed on Tuesday in response to a rocket attack on southern Israel on Monday .\tDT NN NNS VBD VBN IN NNP IN NN TO DT NN NN IN JJ NNP IN NNP .\nThere were no causalities in the incident .\tEX VBD DT NNS IN DT NN .\nIsraeli Prime Minister Ehud Olmert Tuesday warned Palestinian militants that Israel will respond militarily if they continue attacks from the Gaza Strip in violation of a truce .\tJJ NNP NNP NNP NNP NNP VBD JJ NNS IN NNP MD VB RB IN PRP VBP NNS IN DT NNP NNP IN NN IN DT NN .\nHe said Israel 's restraint in the face of rocket attacks up to now should not be interpreted as a weakness .\tPRP VBD NNP POS NN IN DT NN IN NN NNS IN TO RB MD RB VB VBN IN DT NN .\nSouth African health officials say they have confirmed six new cases of a deadly and extremely drug-resistant strain of tuberculosis .\tJJ JJ NN NNS VBP PRP VBP VBN CD JJ NNS IN DT JJ CC RB JJ NN IN NN .\nThe officials Wednesday said five of the patients diagnosed with so-called XDR-TB are from Gauteng province , which includes Johannesburg .\tDT NNS NNP VBD CD IN DT NNS VBN IN JJ NN VBP IN NNP NN , WDT VBZ NNP .\nA spokesman said three of the patients have been hospitalized , while authorities try to track down the other three .\tDT NN VBD CD IN DT NNS VBP VBN VBN , IN NNS VBP TO VB RP DT JJ CD .\nThe find has fueled fears the strain may be spreading .\tDT NN VBZ VBN NNS DT NN MD VB VBG .\nA recent outbreak in South Africa 's Kwazulu-Natal province killed at least 55 people .\tDT JJ NN IN NNP NNP POS NNP NN VBN IN JJS CD NNS .\nSouth African Health Minister Mento Tshabalala-Msimang has requested an urgent meeting with the World Health Organization to deal with the outbreak .\tJJ JJ NN NN NNP NNP VBZ VBN DT JJ NN IN DT NNP NNP NNP TO VB IN DT NN .\nThe world health body has warned that XDR-TB is a virulent form of tuberculosis resistant to most , perhaps all of the drugs used to treat it .\tDT NN NN NN VBZ VBN IN NNP VBZ DT JJ NN IN NN NN IN RBS , RB DT IN DT NNS VBN TO VB PRP .\nArsonists burned down an Afghan school for boys and girls in Kandahar early Sunday after another school was saved from the same fate in another part of the city .\tNNS VBD RP DT JJ NN IN NNS CC NNS IN NNP JJ NNP IN DT NN VBD VBN IN DT JJ NN IN DT NN IN DT NN .\nA local education official , provincial education chief Hayabullah Rafiqi , blames both incidents on Islamic insurgents .\tDT JJ NN NN , JJ NN NN NNP NNP , VBZ DT NNS IN JJ NNS .\nAt least two school workers were rescued from the Qabail Primary School before it burned down Sunday .\tIN JJS CD NN NNS VBD VBN IN DT NNP NNP NNP IN PRP VBD RP NNP .\nThe education official says that attack came hours after gunmen tried to set fire to another school in Kandahar , but its guards scared away the suspected Taleban arsonists .\tDT NN NN VBZ IN NN VBD NNS IN NNS VBD TO VB NN TO DT NN IN NNP , CC PRP$ NNS VBN RB DT JJ NNP NNS .\nThe Taleban is against educating women or sending them for work outside the house .\tDT NNP VBZ IN VBG NNS CC VBG PRP IN NN IN DT NN .\nThere has been a spate of attacks on schools that accept girls across Afghanistan since U.S.-led forces ousted the Taleban in 2001 .\tEX VBZ VBN DT NN IN NNS IN NNS WDT VBP NNS IN NNP IN JJ NNS VBD DT NNP IN CD .\nChinese President Hu Jintao marked New Year 's Eve Saturday with a speech stressing the country 's commitment to peaceful development .\tJJ NNP NNP NNP VBD NNP NNP POS NNP NNP IN DT NN VBG DT NN POS NN TO JJ NN .\nIn a speech broadcast on China Central Television , Mr. Hu said China 's development is peaceful , open , cooperative and harmonious .\tIN DT NN NN IN NNP NNP NNP , NNP NNP VBD NNP POS NN VBZ JJ , JJ , JJ CC JJ .\nHe said the Chinese people will strive for world peace through their own development .\tPRP VBD DT JJ NNS MD VB IN NN NN IN PRP$ JJ NN .\nThe Chinese leader offered New Year 's greetings to people in Taiwan , and said Beijing would seek peaceful reunification with the island , which China regards as a rogue territory .\tDT JJ NN VBD NNP NNP POS NNS TO NNS IN NNP , CC VBD NNP MD VB JJ NN IN DT NN , WDT NNP VBZ IN DT NN NN .\nHe added that China would never sway from the ' one China ' principle .\tPRP VBD IN NNP MD RB VB IN DT `` CD NNP `` NN .\nAfghan officials say a mass grave discovered in eastern Afghanistan is thought to contain the bodies of more than 500 soldiers of the communist regime that was toppled in 1992 .\tJJ NNS VBP DT NN NN VBN IN JJ NNP VBZ VBN TO VB DT NNS IN JJR IN CD NNS IN DT JJ NN WDT VBD VBN IN CD .\nInterior Ministry spokesman Yousuf Stanizai says the grave was discovered in Paktika and a team has been sent there to investigate .\tNNP NNP NN NNP NNP VBZ DT NN VBD VBN IN NNP CC DT NN VBZ VBN VBN RB TO VB .\nHe said there are reports that more than 500 bodies are in the grave .\tPRP VBD EX VBP NNS IN JJR IN CD NNS VBP IN DT NN .\nOfficials believe they were defeated soldiers of Soviet-backed President Najibullah , who were killed after they surrendered to the mujahedin fighters .\tNNS VBP PRP VBD VBN NNS IN JJ NNP NNP , WP VBD VBN IN PRP VBD TO DT NN NNS .\nMr. Najibullah was executed later by the Taleban in 1996 .\tNNP NNP VBD VBN RB IN DT NNP IN CD .\nIf proven TRUE , it would be the first mass grave found in Afghanistan containing communist soldiers .\tIN VBN JJ , PRP MD VB DT JJ NN NN VBN IN NNP VBG JJ NNS .\nOther graves have been found with the bodies of thousands of anti-communist mujahedin fighters .\tJJ NNS VBP VBN VBN IN DT NNS IN NNS IN JJ NN NNS .\nFrench rally driver Sebastien Loeb has continued his dominance of the Rally of Turkey , stretching his lead to more than one minute after the second day of the event .\tJJ NN NN NNP NNP VBZ VBN PRP$ NN IN DT NN IN NNP , VBG PRP$ NN TO JJR IN CD NN IN DT JJ NN IN DT NN .\nLoeb , in a Citroen , expanded his lead to 1.16 minutes over Subaru driver Petter Solberg of Norway .\tNNP , IN DT NNP , VBD PRP$ NN TO CD NNS IN NNP NN NNP NNP IN NNP .\nFormer world champion Marcus Gronholm of Finland in a Peugeot is third overall , 1.24 behind Loeb .\tJJ NN NN NNP NNP IN NNP IN DT NNP VBZ JJ JJ , CD IN NNP .\nMitsubishi 's Gigi Galli of Italy , who briefly led the rally Friday , dropped to ninth place after suffering a turbo charger malfunction in the 10th stage .\tNNP POS NNP NNP IN NNP , WP RB VBD DT NN NNP , VBD TO JJ NN IN VBG DT NN NN NN IN DT JJ NN .\nLoeb now has a total time of 3:34:33.2 hours .\tNNP RB VBZ DT JJ NN IN CD NNS .\nThe French driver leads the season standings with 45 points .\tDT JJ NN VBZ DT NN NNS IN CD NNS .\nPetter Solberg and Markko Martin of Estonia are tied for second with 34 points .\tNNP NNP CC NNP NNP IN NNP VBP VBN IN JJ IN CD NNS .\nSpain 's Interior Minister Jose Antonio Alonso says Croatian war crimes suspect General Ante Gotovina will be extradited to the United Nations tribunal in The Hague as soon possible .\tNNP POS NNP NNP NNP NNP NNP VBZ JJ NN NNS VBP NNP NNP NNP MD VB VBN TO DT NNP NNPS NN IN DT NNP IN RB JJ .\nHe did not specify a time , but police officials say they expect it to take place early Saturday .\tPRP VBD RB VB DT NN , CC NN NNS VBP PRP VBP PRP TO VB NN JJ NNP .\nPolice arrested General Gotovina in Spain 's Canary Islands Wednesday .\tNN VBN NNP NNP IN NNP POS NNP NNP NNP .\nThe tribunal indicted him in 2001 for the deaths of 150 civilians in a Serb-held region of Croatia in 1995 .\tDT NN VBD PRP IN CD IN DT NNS IN CD NNS IN DT JJ NN IN NNP IN CD .\nThe arrest has increased pressure on Serbia to capture the tribunal 's most wanted suspects , former Bosnian Serb leader Radovan Karadzic and military commander General Ratko Mladic .\tDT NN VBZ VBN NN IN NNP TO VB DT NN POS RBS JJ NNS , JJ JJ JJ NN NNP NNP CC JJ NN NNP NNP NNP .\nSerbian authorities Friday turned over to U.N. prosecutors a secret file on General Mladic , including a number of pages they earlier had withheld .\tJJ NNS NNP VBD RP TO NNP NNS DT JJ NN IN NNP NNP , VBG DT NN IN NNS PRP RB VBD VBN .\nIn Belgrade , visiting French Foreign Minister Philippe Douste-Blazy urged Serbian officials to arrest and surrender the two fugitives .\tIN NNP , VBG JJ NNP NNP NNP NNP VBD JJ NNS TO VB CC VB DT CD NNS .\nWestern security officials in Afghanistan say searchers have found the wreckage of an Afghan passenger jet missing since Thursday .\tJJ NN NNS IN NNP VBP NNS VBP VBN DT NN IN DT JJ NN NN VBG IN NNP .\nSecurity officials say the Kam Air Boeing 737 was found Friday near Kabul , the Afghan capital .\tNN NNS VBP DT NNP NNP NNP CD VBD VBN NNP IN NNP , DT JJ NN .\nIt was not immediately clear if any survivors were found .\tPRP VBD RB RB JJ IN DT NNS VBD VBN .\nAirline officials say the plane was carrying 104 people , including a number of foreigners .\tNN NNS VBP DT NN VBD VBG CD NNS , VBG DT NN IN NNS .\nNine of the passengers are believed to be Turkish nationals , and three were American women working for a health services agency .\tCD IN DT NNS VBP VBN TO VB JJ NNS , CC CD VBD JJ NNS VBG IN DT NN NNS NN .\nSix Russian crew members and two Afghan staff were also on board .\tCD JJ NN NNS CC CD JJ NN VBD RB IN NN .\nThe plane was traveling from the western city of Herat to Kabul , but was turned away from the capital 's airport because of a severe snow storm .\tDT NN VBD VBG IN DT JJ NN IN NNP TO NNP , CC VBD VBN RB IN DT NN POS NN IN IN DT JJ NN NN .\nOfficials say the pilot had contacted an airport in neighboring Pakistan seeking permission to land , but that the plane never arrived there .\tNNS VBP DT NN VBD VBN DT NN IN VBG NNP VBG NN TO NN , CC IN DT NN RB VBD RB .\nThousands of demonstrators have marched in Oaxaca , Mexico , to continue their call for the resignation of the state 's governor .\tNNS IN NNS VBP VBN IN NNP , NNP , TO VB PRP$ NN IN DT NN IN DT NN POS NN .\nA student was wounded Sunday when a gunmen fired on a group of protesters .\tDT NN VBD VBN NNP WRB DT NNS VBN IN DT NN IN NNS .\nThousands of protesters marched through the city center and gathered near Mexican federal police -- who were sent to restore order in Oaxaca .\tNNS IN NNS VBD IN DT NN NN CC VBD IN JJ JJ NNS : WP VBD VBN TO VB NN IN NNP .\nPolice searched vehicles for weapons .\tNNS VBD NNS IN NNS .\nFor the past five months , protesters have demanded the resignation of Oaxaca State Governor Ulises Ruiz over corruption allegations .\tIN DT JJ CD NNS , NNS VBP VBN DT NN IN NNP NNP NNP NNP NNP IN NN NNS .\nRuiz has refused to step down .\tNNP VBZ VBN TO VB RB .\nOn Wednesday , police re-opened a central square in the city after clearing out protesters .\tIN NNP , NN VBD DT JJ NN IN DT NN IN VBG RP NNS .\nAt least nine people , including a U.S. journalist , have been killed in the crisis in recent weeks .\tIN JJS CD NNS , VBG DT NNP NN , VBP VBN VBN IN DT NN IN JJ NNS .\nChinese authorities are being ordered to prepare for new flooding as the death toll from weeks of weather-related disasters continues to rise .\tJJ NNS VBP VBG VBN TO VB IN JJ NN IN DT NN NN IN NNS IN JJ NNS VBZ TO VB .\nThe official Xinhua news agency said Monday that two more periods of heavy rainfall are forecast across China .\tDT JJ NNP NN NN VBD NNP IN CD JJR NNS IN JJ NN VBP VBN IN NNP .\nIt said local authorities have been instructed to evacuate residents from high-risk areas and set up emergency shelters well in advance .\tPRP VBD JJ NNS VBP VBN VBN TO VB NNS IN JJ NNS CC VB RP NN NNS RB IN NN .\nMore than 2,300 people have died across China in weeks of flooding and mudslides triggered by torrential rains .\tJJR IN CD NNS VBP VBN IN NNP IN NNS IN NN CC NNS VBN IN JJ NNS .\nThe toll now stands at 1,254 dead in Zhouqu , a town in northwest Gansu province that was partly buried by mud a week ago .\tDT NN RB VBZ IN CD JJ IN NNP , DT NN IN JJ NNP NN WDT VBD RB VBN IN NN DT NN RB .\nA town official told the French news agency that roads to the town are still clogged with mud , hampering relief efforts .\tDT NN NN VBD DT JJ NN NN IN NNS TO DT NN VBP RB VBN IN NN , VBG NN NNS .\nGunmen killed at least 31 people in Pakistan 's southern port city of Karachi as a by-election was held Sunday to replace a lawmaker murdered earlier this year .\tNNS VBD IN JJS CD NNS IN NNP POS JJ JJ NN IN NNP IN DT NN VBD VBN NNP TO VB DT NN VBN RBR DT NN .\nThe violence broke out Saturday night when gunmen opened fire in several parts of the city ahead of the vote .\tDT NN VBD RP NNP NN WRB NNS VBD NN IN JJ NNS IN DT NN RB IN DT NN .\nPolice say they have arrested at least 20 suspects in connection with the killings .\tNNS VBP PRP VBP VBN IN JJS CD NNS IN NN IN DT NNS .\nThe election was being held to replace provincial lawmaker Raza Haider from the Muttahida Quami Movement ( MQM ) , who was gunned down in August .\tDT NN VBD VBG VBN TO VB JJ NN NNP NNP IN DT NNP NNP NNP LRB NNP RRB , WP VBD VBN RB IN NNP .\nThe assassination sparked four days of violence that killed at least 85 people .\tDT NN VBD CD NNS IN NN WDT VBD IN JJS CD NNS .\nMQM , which largely represents the Urdu-speaking community , and the rival Awami National Party , representing ethnic Pashtuns , blamed each other for the violence .\tNNP , WDT RB VBZ DT JJ NN , CC DT JJ NNP NNP NNP , VBG JJ NNS , VBN DT NN IN DT NN .\nKarachi has been plagued by ethnic and sectarian killings , crime and kidnappings .\tNNP VBZ VBN VBN IN JJ CC JJ NNS , NN CC NNS .\nIvory Coast 's prime minister says he is ' convinced ' that new African Union president Denis Sassou-Nguesso will fully support the U.N. peace plan for his country .\tNNP NNP POS JJ NN VBZ PRP VBZ `` VBN `` IN JJ NNP NNP NN NNP NNP MD RB VB DT NNP NN NN IN PRP$ NN .\nCharles Konan Banny spoke to reporters Sunday after meeting with the AU and Congolese president in the Republic of Congo 's capital , Brazzaville .\tNNP NNP NNP VBD TO NNS NNP IN VBG IN DT NNP CC JJ NN IN DT NNP IN NNP POS NN , NNP .\nMr. Sassou-Nguesso was named AU president last week after Sudan 's bid to head the 53-nation block failed because of concerns over its human rights record .\tNNP NNP VBD VBN NNP NN JJ NN IN NNP POS NN TO VB DT JJ NN VBD IN IN NNS IN PRP$ JJ NNS NN .\nMr. Banny heads a transitional government tasked with arranging elections in Ivory Coast , which has been split between rebel-held and government-controlled areas since a 2002 civil war .\tNNP NNP VBZ DT JJ NN VBD IN VBG NNS IN NNP NNP , WDT VBZ VBN VBN IN JJ CC JJ NNS IN DT CD JJ NN .\nThe United Nations removed some staff from Ivory Coast following attacks on U.N. offices there earlier this month .\tDT NNP NNPS VBD DT NN IN NNP NNP VBG NNS IN NNP NNS RB RBR DT NN .\nThe attacks were carried out by militant supporters of President Laurent Gbagbo , after U.N.-backed foreign mediators recommended that parliament be dissolved to advance the peace process .\tDT NNS VBD VBN RP IN JJ NNS IN NNP NNP NNP , IN JJ JJ NNS VBD DT NN VB VBN TO VB DT NN NN .\nThe White House has expressed doubts about a Russian proposal for a Middle East peace conference , saying diplomats should focus on Israel 's upcoming Gaza withdrawal .\tDT NNP NNP VBZ VBN NNS IN DT JJ NN IN DT NNP NNP NN NN , VBG NNS MD VB IN NNP POS JJ NNP NN .\nRussian President Vladimir Putin suggested holding such a conference Wednesday after meeting in Cairo with Egyptian President Hosni Mubarak .\tJJ NNP NNP NNP VBD VBG PDT DT NN NNP IN VBG IN NNP IN JJ NNP NNP NNP .\nBoth Russia and the United States sponsored the Middle East road map peace plan along with the European Union and United Nations .\tDT NNP CC DT NNP NNPS VBD DT NNP NNP NN NN NN NN IN IN DT NNP NNP CC NNP NNPS .\nMr. Putin 's talks in Egypt made him the first Russian leader to visit Cairo in four decades .\tNNP NNP POS NNS IN NNP VBD PRP DT JJ JJ NN TO VB NNP IN CD NNS .\nHe then went to Israel for talks Thursday with Israeli Prime Minister Ariel Sharon before he is to meet Friday with Palestinian leader Mahmoud Abbas in the West Bank .\tPRP RB VBD TO NNP IN NNS NNP IN JJ NNP NNP NNP NNP IN PRP VBZ TO VB NNP IN JJ NN NNP NNP IN DT NNP NNP .\nMr. Putin is the first Russian or Soviet leader to visit Israel .\tNNP NNP VBZ DT JJ JJ CC JJ NN TO VB NNP .\nUkrainian Prime Minister Yulia Tymoshenko says her government plans to review some 3,000 privatizations to ensure they were conducted fairly .\tJJ NNP NNP NNP NNP VBZ PRP$ NN VBZ TO VB DT CD NNS TO VB PRP VBD VBN RB .\nThe Interfax news agency quotes her as saying Wednesday that the state will get back what was illegally handed over to what she called ' private but dishonest hands . '\tDT NNP NN NN VBZ PRP IN VBG NNP IN DT NN MD VB RB WP VBD RB VBN IN TO WP PRP VBD `` JJ CC JJ NNS . ``\nShe has already ordered authorities to begin the process of returning the country 's largest steel mill , Kryvorizhstal , to government control .\tPRP VBZ RB VBN NNS TO VB DT NN IN VBG DT NN POS JJS NN NN , NNP , TO NN NN .\nA consortium that included the son-in-law , Viktor Pinchuk , of former Ukrainian President Leonid Kuchma purchased the complex last year for $ 800 million , far below its estimated market value .\tDT NN WDT VBD DT NN , NNP NNP , IN JJ JJ NNP NNP NNP VBD DT NN JJ NN IN $ CD CD , RB IN PRP$ JJ NN NN .\nMany privatizations in Ukraine took place under questionable circumstances after the fall of the Soviet Union .\tJJ NNS IN NNP VBD NN IN JJ NNS IN DT NN IN DT NNP NNP .\nChina says it plans to issue its first ever white paper on the country 's political democracy .\tNNP VBZ PRP VBZ TO VB PRP$ JJ RB JJ NN IN DT NN POS JJ NN .\nChina 's official Xinhua news agency said Tuesday that the Information Office of China 's State Council will issue the document Wednesday .\tNNP POS JJ NNP NN NN VBD NNP IN DT NNP NNP IN NNP POS NNP NNP MD VB DT NN NNP .\nThe announcement said the white paper will give a detailed account of the ' inception , development , contents and principles of the country 's political democracy . '\tDT NN VBD DT JJ NN MD VB DT JJ NN IN DT `` NN , NN , NNS CC NNS IN DT NN POS JJ NN . ``\nXinhua said the document will also mention the problems Beijing faces in building democracy .\tNNP VBD DT NN MD RB VB DT NNS NNP VBZ IN VBG NN .\nInternational rights organizations and several countries , including the United States , have criticized Beijing for not speeding the pace of political reform .\tJJ NNS NNS CC JJ NNS , VBG DT NNP NNPS , VBP VBN NNP IN RB VBG DT NN IN JJ NN .\nChina rejects the criticism , saying internal affairs should be handled by China 's government and citizens , not outsiders .\tNNP VBZ DT NN , VBG JJ NNS MD VB VBN IN NNP POS NN CC NNS , RB NNS .\nIraqi authorities say a roadside bomb struck a police patrol northeast of Baghdad late Wednesday , killing at least two police officers and wounding four others .\tJJ NNS VBP DT NN NN VBD DT NN NN NN IN NNP JJ NNP , VBG IN JJS CD NNS NNS CC VBG CD NNS .\nThe explosion occurred in the town of Jalawla in Diyala province .\tDT NN VBD IN DT NN IN NNP IN NNP NN .\nInsurgents frequently target local and international security forces .\tNNS RB VBP JJ CC JJ NN NNS .\nTurkish media are reporting that two bombs have exploded in the southern Turkish resort city of Antalya , wounding at least six people .\tJJ NNS VBP VBG IN CD NNS VBP VBN IN DT JJ JJ NN NN IN NNP , VBG IN JJS CD NNS .\nTurkey 's Anatolia news agency says the explosions Tuesday were in two different locations , but occurred just minutes apart .\tNNP POS NNP NN NN VBZ DT NNS NNP VBD IN CD JJ NNS , CC VBD RB NNS RB .\nOne of the bombs was planted in a trash can that exploded as workers were emptying it .\tCD IN DT NNS VBD VBN IN DT NN NN WDT VBD IN NNS VBD VBG PRP .\nAnatolia reports that the second blast also came from a trash can and wounded three people , including a tourist .\tNNP VBZ IN DT JJ NN RB VBD IN DT NN NN CC VBD CD NNS , VBG DT NN .\nIt is unclear who planted the bombs .\tPRP VBZ JJ WP VBD DT NNS .\nKurdish rebels from the banned Kurdistan Workers Party have recently launched several attacks on Turkish resort towns .\tJJ NNS IN DT VBN NNP NNP NNP VBP RB VBN JJ NNS IN JJ NN NNS .\nOther terrorist attacks in the country have been blamed on Islamic terrorists .\tJJ JJ NNS IN DT NN VBP VBN VBN IN NNP NNS .\nAntalya , on Turkey 's Mediterranean coast , is a popular vacation resort .\tNNP , IN NNP POS NNP NN , VBZ DT JJ NN NN .\nA lingering ankle injury will keep tennis great Andre Agassi from playing in the Australian Open , the first Grand Slam tennis tournament of the season .\tDT VBG NN NN MD VB NN JJ NNP NNP IN VBG IN DT NNP NNP , DT JJ NNP NNP NN NN IN DT NN .\nAgassi 's management company issued a statement in Australia Thursday saying the former Australian Open champion would not play in the event beginning January 16 .\tNNP POS NN NN VBD DT NN IN NNP NNP VBG DT JJ NNP NNP NN MD RB VB IN DT NN VBG NNP CD .\nThe 35-year-old Agassi has also withdrawn from the Kooyong exhibition event next week .\tDT JJ NNP VBZ RB VBN IN DT NNP NN NN JJ NN .\nAgassi sustained a severe sprain to his left ankle on October 12 while playing racquetball .\tNNP VBD DT JJ NN TO PRP$ JJ NN IN NNP CD IN VBG NN .\nThe injury initially forced his withdrawal from the Tennis Masters Cup in Shanghai in November .\tDT NN RB VBD PRP$ NN IN DT NNP NNP NNP IN NNP IN NNP .\nAgassi finished 2005 ranked number seven by the Association of Tennis Professionals .\tNNP VBD CD VBD NN CD IN DT NNP IN NNP NNPS .\nAgassi has won eight career Grand Slam titles .\tNNP VBZ VBN CD NN NNP NNP NNS .\nHalf of them were at the Australian Open .\tNN IN PRP VBD IN DT NNP NNP .\nIndia and Saudi Arabia have signed a memorandum of understanding to combat terrorism .\tNNP CC NNP NNP VBP VBN DT NN IN NN TO VB NN .\nThe two sides also inked three other agreements on bilateral investment promotion and protection , avoidance of double taxation , and cooperation in the field of youth affairs and sports .\tDT CD NNS RB VBD CD JJ NNS IN JJ NN NN CC NN , NN IN JJ NN , CC NN IN DT NN IN NN NNS CC NNS .\nThe accords were signed Wednesday following a meeting between Indian Prime Minister Manmohan Singh and visiting Saudi King Abdullah in New Delhi .\tDT NNS VBD VBN NNP VBG DT NN IN JJ NNP NNP NNP NNP CC VBG JJ NNP NNP IN NNP NNP .\nThe Saudi monarch is the guest of honor at Thursday 's Indian Republic Day celebrations .\tDT JJ NN VBZ DT NN IN NN IN NNP POS NNP NNP NNP NNS .\nDuring his four-day stay , aimed at boosting energy and trade ties between the two sides , he will also hold talks with President Abdul Kalam and other top ranking officials .\tIN PRP$ JJ NN , VBN IN VBG NN CC NN NNS IN DT CD NNS , PRP MD RB VB NNS IN NNP NNP NNP CC JJ JJ NN NNS .\nKing Abdullah arrived in India from China , where he signed several economic deals with Chinese President Hu Jintao .\tNNP NNP VBD IN NNP IN NNP , WRB PRP VBD JJ JJ NNS IN JJ NNP NNP NNP .\nAt least 43 people were killed Wednesday , when three car bombs exploded in close succession in central Baghdad .\tIN JJS CD NNS VBD VBN NNP , WRB CD NN NNS VBD IN JJ NN IN JJ NNP .\nNearly 80 other people were wounded .\tRB CD JJ NNS VBD VBN .\nPolice say two car bombs exploded within minutes of each other at a major bus station , that services cities in mainly Shi'ite southern Iraq .\tNNS VBP CD NN NNS VBD IN NNS IN DT NN IN DT JJ NN NN , IN NNS NNS IN RB NNP JJ NNP .\nA short time later , a suicide bomber detonated his explosives outside a nearby hospital as the wounded were arriving for treatment .\tDT JJ NN RB , DT NN NN VBD PRP$ NNS IN DT JJ NN IN DT VBN VBD VBG IN NN .\nWednesday 's violence comes as political leaders resume negotiations to try to hammer out a draft constitution .\tNNP POS NN VBZ IN JJ NNS VBP NNS TO VB TO VB RP DT NN NN .\nNegotiators took a one-day break in talks after missing Monday 's draft deadline .\tNNS VBD DT JJ NN IN NNS IN VBG NNP POS NN NN .\nParliament has voted an extension until midnight August 22 .\tNNP VBZ VBN DT NN IN NN NNP CD .\nIf there is no document by then , the interim constitution dictates that parliament and the government must be dissolved and new elections held .\tIN EX VBZ DT NN IN RB , DT JJ NN VBZ IN NN CC DT NN MD VB VBN CC JJ NNS VBN .\nA pro-U.S.-immigration rally has been held in the same Los Angeles park where a similar rally earlier this month ended in a clash between demonstrators and police .\tDT JJ NN VBZ VBN VBN IN DT JJ NNP NNP NN WRB DT JJ NN RBR DT NN VBD IN DT NN IN NNS CC NNS .\nHundreds of activists gathered in the city 's MacArthur Park Thursday after marching from a church , where they held a meeting .\tNNS IN NNS VBN IN DT NN POS NNP NNP NNP IN VBG IN DT NN , WRB PRP VBD DT NN .\nDemonstrators called for fair treatment for 12 million illegal immigrants in the United States .\tNNS VBD IN JJ NN IN CD CD JJ NNS IN DT NNP NNPS .\nHours earlier , the Bush administration reached agreement with several U.S. senators on a plan that would provide legal status and a path to citizenship to the immigrants .\tNNS RB , DT NNP NN VBD NN IN JJ NNP NNS IN DT NN WDT MD VB JJ NN CC DT NN TO NN TO DT NNS .\nAt a rally on May 1 , riot police fired rubber bullets at demonstrators and beat many of them with batons .\tIN DT NN IN NNP CD , NN NN VBD NN NNS IN NNS CC VBD NN IN PRP IN NNS .\nPolice said they responded after being hit by rocks and bottles .\tNNS VBD PRP VBD IN VBG VBN IN NNS CC NNS .\nThe FBI is investigating possible civil rights violations .\tDT NNP VBZ VBG JJ JJ NNS NNS .\nIraqi security forces have surrounded a town south of Baghdad where gunmen believed to be Sunni militants have taken at least 60 Shi'ite Muslims hostage .\tJJ NN NNS VBP VBN DT NN NN IN NNP WRB NNS VBN TO VB NNP NNS VBP VBN IN JJS CD NNP NNPS NN .\nAuthorities say the gunmen have threatened to kill the hostages in Madaen unless Shi'ites leave the town .\tNNS VBP DT NNS VBP VBN TO VB DT NNS IN NNP IN NNP VBP DT NN .\nThe town has a mixed population of Sunni and Shi'ite Muslims .\tDT NN VBZ DT JJ NN IN NNP CC NNP NNPS .\nThe abductions are the latest in a series of violent incidents throughout the country .\tDT NNS VBP DT JJS IN DT NN IN JJ NNS IN DT NN .\nA bomb explosion Saturday at a restaurant in Baquba a town north of Baghdad killed up to seven people , including at least two police officers .\tDT NN NN NNP IN DT NN IN NNP DT NN NN IN NNP VBD RP TO CD NNS , VBG IN JJS CD NNS NNS .\nMeanwhile , gunmen have killed one policeman and at least one Iraqi soldier in separate incidents in the city of Kirkuk .\tRB , NNS VBP VBN CD NN CC IN JJS CD JJ NN IN JJ NNS IN DT NN IN NNP .\nAnd further to the north , in Mosul , a car bomb damaged a U.S. military convoy .\tCC RB TO DT NN , IN NNP , DT NN NN VBD DT NNP JJ NN .\nCausality reports from that incident are not yet available .\tNN NNS IN DT NN VBP RB RB JJ .\nOfficials and witnesses in Somalia say at least one person was killed when a roadside bomb exploded in Mogadishu Saturday near the convoy of the capital city 's two deputy mayors .\tNNS CC NNS IN NNP VBP IN JJS CD NN VBD VBN WRB DT NN NN VBD IN NNP NNP IN DT NN IN DT NN NN POS CD JJ NNS .\nThe convoy was traveling through northern Mogadishu when the bomb was detonated .\tDT NN VBD VBG IN JJ NNP WRB DT NN VBD VBN .\nA teenage boy was killed , and four government troops were wounded .\tDT NN NN VBD VBN , CC CD NN NNS VBD VBN .\nThe deputy mayors narrowly avoided injury .\tDT NN NNS RB VBD NN .\nGuerrilla attacks have increased in Mogadishu since government troops allied with Ethiopian forces battled Islamist forces in March and April , killing more than 1,000 people .\tNNP NNS VBP VBN IN NNP IN NN NNS VBN IN JJ NNS VBD JJ NNS IN NNP CC NNP , VBG JJR IN CD NNS .\nSomalia has been without an effective government since 1991 , when warlords overthrew dictator Mohamed Siad Barre and then turned against each other .\tNNP VBZ VBN IN DT JJ NN IN CD , WRB NNS VBP NN NNP NNP NNP CC RB VBD IN DT NN .\nEthiopian Foreign Minister Seyoum Mesfin visited Somalia Saturday to discuss the security situation with government officials .\tJJ NNP NNP NNP NNP VBD NNP NNP TO VB DT NN NN IN NN NNS .\nOfficials in the Somali capital of Mogadishu say a bomb explosion near the mayor 's convoy Sunday has killed two people and wounded several others .\tNNS IN DT JJ NN IN NNP VBP DT NN NN IN DT NN POS NN NNP VBZ VBN CD NNS CC VBD JJ NNS .\nMogadishu mayor Mohammed Dheere and his convoy escaped unharmed .\tNNP NNP NNP NNP CC PRP$ NN VBD JJ .\nHe says security forces killed the suspected bomber as he tried to flee .\tPRP VBZ NN NNS VBD DT JJ NN IN PRP VBD TO VB .\nDheere told reporters his convoy was traveling on a road north of the city when the explosion occurred .\tNNP VBD NNS PRP$ NN VBD VBG IN DT NN NN IN DT NN WRB DT NN VBD .\nIt is unclear whether the device was a remote-controlled bomb or a grenade .\tPRP VBZ JJ IN DT NN VBD DT JJ NN CC DT NN .\nThe mayor blames remnants of the Islamic courts movement for the attack .\tDT NN VBZ NNS IN DT JJ NNS NN IN DT NN .\nLast Thursday , the convoy of Interim Prime Minister Ali Mohamed Gedi was also attacked while traveling in Mogadishu .\tJJ NNP , DT NN IN NNP NNP NNP NNP NNP NNP VBD RB VBN IN VBG IN NNP .\nNo injuries or deaths were reported in that incident .\tDT NNS CC NNS VBD VBN IN DT NN .\nThe owner of a Venezuelan pro-opposition television channel has told U.S. media that he has asked for political asylum in the United States .\tDT NN IN DT JJ NN NN NN VBZ VBN NNP NNS IN PRP VBZ VBN IN JJ NN IN DT NNP NNPS .\nGlobovision president Guillermo Zuloaga made the comment Wednesday in an interview with CNN 's Spanish language channel .\tNNP NN NNP NNP VBD DT NN NNP IN DT NN IN NNP POS JJ NN NN .\nZuloaga fled to the U.S. in June after the government in Caracas issued a warrant for his arrest based on fraud charges relating to another business , an auto dealership .\tNNP VBD TO DT NNP IN NNP IN DT NN IN NNP VBD DT NN IN PRP$ NN VBN IN NN NNS VBG TO DT NN , DT NN NN .\nZuloaga denied the charges and said Venezuelan President Hugo Chavez ordered his arrest on trumped-up charges .\tNNP VBD DT NNS CC VBD JJ NNP NNP NNP VBD PRP$ NN IN JJ NNS .\nZuloaga has also denied allegations of involvement in a $ 100-million scheme to assassinate the Venezuelan president .\tNNP VBZ RB VBN NNS IN NN IN DT $ CD NN TO VB DT JJ NN .\nMr. Chavez has waged a long-running campaign against Globovision .\tNNP NNP VBZ VBN DT JJ NN IN NNP .\nThe Inter-American Commission on Human Rights said earlier this year that it is concerned about the use of the punitive power of the state to silence opponents in Venezuela .\tDT JJ NNP IN NNP NNP VBD RBR DT NN IN PRP VBZ VBN IN DT NN IN DT JJ NN IN DT NN TO NN NNS IN NNP .\nThe British Broadcasting Corporation ( BBC ) says unidentified gunmen shot and wounded one of its journalists in the Somali capital , Mogadishu .\tDT NNP NNP NNP LRB NNP RRB VBZ JJ NNS VBD CC VBD CD IN PRP$ NNS IN DT JJ NN , NNP .\nThe broadcaster says Kate Peyton was rushed to a local hospital after the attack and underwent surgery .\tDT NN VBZ NNP NNP VBD VBN TO DT JJ NN IN DT NN CC VBD NN .\nHospital officials say she is in stable condition .\tNN NNS VBP PRP VBZ IN JJ NN .\nWitnesses say the attackers opened fire on Ms. Peyton outside her hotel ( Sahafi Hotel ) and fled the scene in a vehicle .\tNNS VBP DT NNS VBD NN IN NNP NNP IN PRP$ NN LRB NNP NNP RRB CC VBD DT NN IN DT NN .\nA colleague working with her was unhurt in the attack .\tDT NN VBG IN PRP VBD JJ IN DT NN .\nMs. Peyton had traveled from her home in South Africa this week to report on a visit by Somalia 's new government to Mogadishu .\tNNP NNP VBD VBN IN PRP$ NN IN NNP NNP DT NN TO VB IN DT NN IN NNP POS JJ NN TO NNP .\nSomali officials are readying plans to move the new government from its current base in Kenya later this month .\tJJ NNS VBP VBG NNS TO VB DT JJ NN IN PRP$ JJ NN IN NNP RB DT NN .\nSomalia has been without a central government for 14 years , having been ruled by warring factional leaders .\tNNP VBZ VBN IN DT JJ NN IN CD NNS , VBG VBN VBN IN VBG JJ NNS .\nAn Indian diplomat has been formally charged with spying for India 's longtime rival Pakistan .\tDT JJ NN VBZ VBN RB VBN IN VBG IN NNP POS JJ JJ NNP .\nOfficials say Madhuri Gupta was charged Tuesday under the Official Secrets Act .\tNNS VBP NNP NNP VBD VBN NNP IN DT NNP NNP NNP .\nShe is alleged to have passed classified information to Pakistan 's intelligence agency .\tPRP VBZ VBN TO VB VBN JJ NN TO NNP POS NN NN .\nThe 53-year-old junior diplomat worked at the press and information wing of the Indian embassy in Islamabad for three years .\tDT JJ JJ NN VBD IN DT NN CC NN NN IN DT JJ NN IN NNP IN CD NNS .\nGupta was taken into custody in April after being called back to New Delhi on the pretext of consultations .\tNNP VBD VBN IN NN IN NNP IN VBG VBN RB TO NNP NNP IN DT NN IN NNS .\nTensions run deep between India and Pakistan , whose dispute over Kashmir has led to decades of hostility and triggered three wars .\tNNS VBP RB IN NNP CC NNP , WP$ NN IN NNP VBZ VBN TO NNS IN NN CC VBD CD NNS .\nChina 's central government has formally launched its official Web site .\tNNP POS JJ NN VBZ RB VBN PRP$ JJ NNP NN .\nThe www.gov.cn site serves as a platform for the central and regional governments to release information and provide some online services .\tDT NNP NN VBZ IN DT NN IN DT JJ CC JJ NNS TO VB NN CC VB DT JJ NNS .\nThere is also an English-language section with information on recent government news , biographies of officials and information for travelers to the country .\tEX VBZ RB DT JJ NN IN NN IN JJ NN NN , NNS IN NNS CC NN IN NNS TO DT NN .\nChina 's official Xinhua news agency quotes the Web site 's editor-in-chief as saying the site works to increase government transparency and prevent ' miscommunication ' between the government and the people .\tNNP POS JJ NNP NN NN VBZ DT NNP NN POS NN IN VBG DT NN VBZ TO VB NN NN CC VB `` NN `` IN DT NN CC DT NNS .\nChina 's central government has come under criticism in recent months for moves that tighten control over the Internet .\tNNP POS JJ NN VBZ VBN IN NN IN JJ NNS IN NNS WDT VBP NN IN DT NNP .\nNew regulations forbid Internet news sites from publishing information that goes against what the government calls China 's security and public interest .\tJJ NNS VBD NNP NN NNS IN VBG NN WDT VBZ IN WP DT NN VBZ NNP POS NN CC JJ NN .\nA double suicide attack on a Pakistani military checkpoint near Quetta has killed at least 11 people and wounded several others .\tDT JJ NN NN IN DT JJ JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN JJ NNS .\nOfficials say the first bomber detonated explosives Thursday near a line of vehicles waiting at the checkpoint in southwestern Baluchistan province .\tNNS VBP DT JJ NN VBD NNS NNP IN DT NN IN NNS VBG IN DT NN IN JJ NNP NN .\nAs people gathered near the wreckage , a second suicide bomber triggered another explosion .\tIN NNS VBD IN DT NN , DT JJ NN NN VBD DT NN .\nAmong the dead are five Pakistani soldiers .\tIN DT NN VBP CD JJ NNS .\nBaluchistan province experiences regular bombing and shooting attacks , usually blamed on Baluch nationalists battling the central government for more autonomy and a larger share of the region 's oil and natural gas reserves .\tNNP NN VBZ JJ NN CC NN NNS , RB VBN IN NNP NNS VBG DT JJ NN IN JJR NN CC DT JJR NN IN DT NN POS NN CC JJ NN NNS .\nBut suicide attacks are more commonly carried out by pro-Taliban Islamic extremist groups , based north of Baluchistan in Pakistan 's tribal regions .\tCC NN NNS VBP RBR RB VBN RP IN JJ JJ NN NNS , VBN NN IN NNP IN NNP POS JJ NNS .\nAfghan police say U.S.-led forces have wounded at least six civilians in two separate incidents involving cars that ignored orders to stop .\tJJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS IN CD JJ NNS VBG NNS WDT VBD NNS TO VB .\nAuthorities in eastern Khost province say that , in the first incident late Monday , a newborn baby , her mother and two other women were hurt when soldiers opened fire at their car after the driver failed to stop .\tNNS IN JJ NNP NN VBP IN , IN DT JJ NN JJ NNP , DT JJ NN , PRP$ NN CC CD JJ NNS VBD VBN WRB NNS VBD NN IN PRP$ NN IN DT NN VBD TO VB .\nHours later , in the same province , a driver of a truck and a six-year-old boy were injured in a similar incident .\tNNS RB , IN DT JJ NN , DT NN IN DT NN CC DT JJ NN VBD VBN IN DT JJ NN .\nMeanwhile , the U.S. military in Afghanistan says Afghan and coalition troops killed five suspected Taleban insurgents Monday in northeastern Kunar province , where they launched a major offensive last week .\tRB , DT NNP NN IN NNP VBZ JJ CC NN NNS VBD CD JJ NNP NNS NNP IN JJ NNP NN , WRB PRP VBD DT JJ NN JJ NN .\nSome 2,500 troops are participating in ' Operation Mountain Lion ' aimed at disrupting insurgent activities by killing , incapacitating or capturing terrorists operating in the region .\tDT CD NNS VBP VBG IN `` NNP NNP NNP `` VBN IN VBG JJ NNS IN VBG , VBG CC VBG NNS VBG IN DT NN .\nThe Air Transport Association predicts fewer domestic airline passengers in the U.S. this summer , between June 1 and August 31 .\tDT NNP NNP NNP VBZ JJR JJ NN NNS IN DT NNP DT NN , IN NNP CD CC NNP CD .\nThe airline trade group says higher fuel prices and a weak economy have reduced airline carrying capacity which has led to higher ticket prices .\tDT NN NN NN VBZ JJR NN NNS CC DT JJ NN VBP VBN NN VBG NN WDT VBZ VBN TO JJR NN NNS .\nThose factors could have an impact on the number of passengers planning to travel in the U.S. during the traditionally busy summer vacation months .\tDT NNS MD VB DT NN IN DT NN IN NNS VBG TO VB IN DT NNP IN DT RB JJ NN NN NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nEnergy ministers of Russia and Ukraine have adjourned until Thursday their talks in Moscow on a huge price hike sought for deliveries by Russia 's state-run natural gas company , Gazprom .\tNN NNS IN NNP CC NNP VBP VBN IN NNP PRP$ NNS IN NNP IN DT JJ NN NN VBN IN NNS IN NNP POS JJ JJ NN NN , NNP .\nUkrainian Fuel and Energy Minister Ivan Plachkov and his Russian counterpart , Viktor Khristenko met late Wednesday and agreed to continue discussions .\tJJ NN CC NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP VBD JJ NNP CC VBD TO VB NNS .\nAfter the meeting Mr. Plachkov said he believes a compromise is possible .\tIN DT NN NNP NNP VBD PRP VBZ DT NN VBZ JJ .\nThe Gazprom is threatening to cut natural gas supplies to Ukraine on January 1 if no deal is reached .\tDT NNP VBZ VBG TO VB JJ NN NNS TO VB IN NNP CD IN DT NN VBZ VBN .\nUkraine 's Prime Minister Yuriy Yekhanurov has rejected Gazprom 's plans to more than quadruple natural gas prices , calling it an unacceptable move aimed at putting direct economic pressure on Ukraine .\tNNP POS NNP NNP NNP NNP VBZ VBN NNP POS NNS TO JJR IN JJ JJ NN NNS , VBG PRP DT JJ NN VBN IN VBG JJ JJ NN IN NNP .\nMr. Yekhanurov told officials in Kiev his country will take all necessary legal steps if the dispute is not resolved .\tNNP NNP VBD NNS IN NNP PRP$ NN MD VB DT JJ JJ NNS IN DT NN VBZ RB VBN .\nNepal 's Supreme Court has issued a stay-order to temporarily halt the closure of a private radio station that defied a ban on broadcasting news .\tNNP POS NNP NNP VBZ VBN DT NN TO RB VB DT NN IN DT JJ NN NN WDT VBD DT NN IN NN NN .\nJudge Anup Raj Sharma issued an interim order on Wednesday requiring Nepal 's royalist government to immediately suspend the closure of Nepal FM radio station .\tNNP NNP NNP NNP VBD DT JJ NN IN NNP VBG NNP POS NN NN TO RB VB DT NN IN NNP NNP NN NN .\nMr. Sharma also questioned the grounds on which the government closed down the station .\tNNP NNP RB VBD DT NNS IN WDT DT NN VBD IN DT NN .\nNow the station will continue operating until a final ruling by the Supreme Court determines its future .\tRB DT NN MD VB VBG IN DT JJ NN IN DT NNP NNP VBZ PRP$ NN .\nThe Ministry of Information and Communication issued a letter requesting the station be shut down because it defied a ban imposed by King Gyanendra .\tDT NNP IN NNP CC NNP VBD DT NN VBG DT NN VB VBN RB IN PRP VBD DT NN VBN IN NNP NNP .\nNepal FM aired programs that included weather forecasts , information on cultural events and government announcements .\tNNP NNP VBD NNS WDT VBD NN NNS , NN IN JJ NNS CC NN NNS .\nAfghan police say a suicide bomber has killed at least three people in the south of the country .\tJJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT NN IN DT NN .\nLocal police chief Jawid Ahmad said the bomber was also killed Saturday when he detonated his explosives while riding his motorcycle in the border town of Spin Boldak in Kandahar province .\tJJ NN NN NNP NNP VBD DT NN VBD RB VBN NNP WRB PRP VBD PRP$ NNS IN VBG PRP$ NN IN DT NN NN IN NNP NNP IN NNP NN .\nEight people , including women and children , were wounded in the attack .\tCD NNS , VBG NNS CC NNS , VBD VBN IN DT NN .\nSpin Boldak is a major crossing point between Afghanistan and Pakistan .\tNNP NNP VBZ DT JJ VBG NN IN NNP CC NNP .\nWednesday , a suicide bomber killed at least five security guards escorting a NATO convoy in a similar attack in the area .\tNNP , DT NN NN VBD IN JJS CD NN NNS VBG DT NNP NN IN DT JJ NN IN DT NN .\nSyria 's ambassador to the United States says his government will fully withdraw from Lebanon as soon as possible , perhaps in less than two months .\tNNP POS NN TO DT NNP NNP VBZ PRP$ NN MD RB VB IN NNP RB RB IN JJ , RB IN JJR IN CD NNS .\nSpeaking at Georgetown University in Washington , Wednesday Ambassador Imad Moustapha said the timing of the withdrawal will be determined by Syrian and Lebanese military officials , who are set to meet next week .\tVBG IN NNP NNP IN NNP , NNP NNP NNP NNP VBD DT NN IN DT NN MD VB VBN IN JJ CC JJ JJ NNS , WP VBP VBN TO VB JJ NN .\nEarlier , U.N. Secretary-General Kofi Annan said Syrian President Bashar al-Assad had agreed to present by early next month a firm timetable for the pullout .\tRB , NNP NNP NNP NNP VBD JJ NNP NNP NNP VBD VBN TO VB IN JJ JJ NN DT NN NN IN DT NN .\nMr. Annan also said he will soon release the findings of the U.N. investigation into the February assassination of former Lebanese Prime Minister Rafik Hariri .\tNNP NNP RB VBD PRP MD RB VB DT NNS IN DT NNP NN IN DT NNP NN IN JJ JJ NNP NNP NNP NNP .\nBut he added that a second probe may be needed .\tCC PRP VBD IN DT JJ NN MD VB VBN .\nMr. Annan spoke after news reports said early findings show signs of negligence and possible evidence tampering by Lebanese authorities .\tNNP NNP VBD IN NN NNS VBD JJ NNS VBP NNS IN NN CC JJ NN VBG IN JJ NNS .\nTwo Egyptian children have tested positive for bird flu , bringing the total number infected in the country to 29 .\tCD JJ NNS VBP VBN JJ IN NN NN , VBG DT JJ NN VBN IN DT NN TO CD .\nThe health ministry said Tuesday , the two children are from different areas south of Cairo .\tDT NN NN VBD NNP , DT CD NNS VBP IN JJ NNS RB IN NNP .\nThey were taken to the hospital and both are in stable condition .\tPRP VBD VBN TO DT NN CC DT VBP IN JJ NN .\nSunday , a three-year-old girl from the southern town of Aswan tested positive for the potentially deadly H5N1 strain of bird flu .\tNNP , DT JJ NN IN DT JJ NN IN NNP VBD JJ IN DT RB JJ NNP NN IN NN NN .\nThe girl 's condition is improving .\tDT NN POS NN VBZ VBG .\nEgypt has the largest number of human cases of bird flu outside Asia .\tNNP VBZ DT JJS NN IN JJ NNS IN NN NN IN NNP .\nAt least 13 people have died since the first confirmed case in the country about a year ago .\tIN JJS CD NNS VBP VBN IN DT NN VBD NN IN DT NN IN DT NN RB .\nThousands of people in the Haitian capital have demonstrated in support of presidential candidate Rene Preval .\tNNS IN NNS IN DT JJ NN VBP VBN IN NN IN JJ NN NNP NNP .\nAs election workers continued to tally votes in the close race , demonstrators gathered outside the election commission , with some demanding Preval be declared the winner .\tIN NN NNS VBD TO RB NNS IN DT JJ NN , NNS VBD IN DT NN NN , IN DT VBG NNP VB VBN DT NN .\nBut election officials said Saturday that the former president has just over 49 percent of the vote , with about three-quarters of the ballots counted .\tCC NN NNS VBD NNP IN DT JJ NN VBZ RB IN CD NN IN DT NN , IN IN NNS IN DT NNS VBN .\nHe needs to win a majority for an outright victory .\tPRP VBZ TO VB DT NN IN DT JJ NN .\nAnother former president , Leslie Manigat , is second with 12 percent .\tDT JJ NN , NNP NNP , VBZ JJ IN CD NN .\nInternational observers say the election was free and fair and have urged Haitians to respect the outcome .\tJJ NNS VBP DT NN VBD JJ CC JJ CC VBP VBN NNS TO VB DT NN .\nBut candidate Charles Baker , who has about eight percent of the vote , has called for an investigation into reports of people voting multiple times .\tCC NN NNP NNP , WP VBZ IN CD NN IN DT NN , VBZ VBN IN DT NN IN NNS IN NNS VBG JJ NNS .\nOfficials from the Federal Bureau of Investigations say violent crime in the U.S. has increased for a second straight year in 2006 .\tNNS IN DT NNP NNP IN NNS VBP JJ NN IN DT NNP VBZ VBN IN DT JJ JJ NN IN CD .\nIn its annual crime report , released Monday , the FBI says violent crime increased nationwide by 1.3 percent .\tIN PRP$ JJ NN NN , VBN NNP , DT NNP VBZ JJ NN VBN JJ IN CD NN .\nThe increase follows a rise of 2.3 percent in 2005 .\tDT NN VBZ DT NN IN CD NN IN CD .\nThe report shows that murders in large cities , with populations over one million , were up by 6.7 percent .\tDT NN VBZ IN NNS IN JJ NNS , IN NNS IN CD CD , VBD RP IN CD NN .\nThey include cities such as Miami in the southeastern state of Florida , Oakland in the western state of California and Phoenix in the southwestern state of Arizona and New York City , among others .\tPRP VBP NNS JJ IN NNP IN DT JJ NN IN NNP , NNP IN DT JJ NN IN NNP CC NNP IN DT JJ NN IN NNP CC NNP NNP NNP , IN NNS .\nAround the country incidences of forcible rape decreased by nearly two percent .\tIN DT NN NNS IN JJ NN VBN IN RB CD NN .\nRobbery saw an overall increase of near six percent .\tNNP VBD DT JJ NN IN JJ CD NN .\nThe statistics were collected from more than 11,700 law enforcement agencies nationwide .\tDT NNS VBD VBN IN JJR IN CD NN NN NNS JJ .\nDeposed Honduran President Manuel Zelaya has given the de~facto government until Monday to consider his counter-proposal for ending the country 's political crisis .\tJJ JJ NNP NNP NNP VBZ VBN DT JJ NN IN NNP TO VB PRP$ NN IN VBG DT NN POS JJ NN .\nA representative of the ousted leader , Ricardo Martinez , said if no agreement is reached by then , the dialogue is broken .\tDT NN IN DT JJ NN , NNP NNP , VBD IN DT NN VBZ VBN IN RB , DT NN VBZ VBN .\nMr. Zelaya 's proposal would authorize the Honduran Congress to decide whether to reinstate him .\tNNP NNP POS NN MD VB DT JJ NNP TO VB IN TO VB PRP .\nThe Zelaya camp rejected a proposal by Interim President Roberto Micheletti calling for the Supreme Court to make the decision .\tDT NNP NN VBD DT NN IN NNP NNP NNP NNP VBG IN DT NNP NNP TO VB DT NN .\nThe ousted leader 's chief negotiator called the proposal ' absurd . '\tDT JJ NN POS NN NN VBD DT NN `` JJ . ``\nMr. Micheletti has been under intense international pressure to restore Mr. Zelaya , since he was removed from power in a June 28 coup .\tNNP NNP VBZ VBN IN JJ JJ NN TO VB NNP NNP , IN PRP VBD VBN IN NN IN DT NNP CD NN .\nMr. Zelaya 's opponents say he was ousted because he was trying to illegally change the constitution to extend his term in office .\tNNP NNP POS NNS VBP PRP VBD VBN IN PRP VBD VBG TO RB VB DT NN TO VB PRP$ NN IN NN .\nJapan says it will deliver a second installment of food aid to North Korea , despite its disappointment with recent talks on the fate of Japanese nationals kidnapped by Pyongyang decades ago .\tNNP VBZ PRP MD VB DT JJ NN IN NN NN TO NNP NNP , IN PRP$ NN IN JJ NNS IN DT NN IN JJ NNS VBN IN NNP NNS RB .\nJapan announced the decision Wednesday , one day after saying it would consider imposing sanctions on North Korea , including a suspension of aid .\tNNP VBD DT NN NNP , CD NN IN VBG PRP MD VB VBG NNS IN NNP NNP , VBG DT NN IN NN .\nJapanese Chief Cabinet Secretary Hiroyuki Hosoda says Tokyo is analyzing new evidence from Pyongyang on the abductions .\tJJ NNP NNP NNP NNP NNP VBZ NNP VBZ VBG JJ NN IN NNP IN DT NNS .\nHe said such analysis could take time .\tPRP VBD JJ NN MD VB NN .\nFive Japanese kidnapped by North Korea returned to Japan two years ago .\tCD NNS VBN IN NNP NNP VBD TO NNP CD NNS RB .\nPyongyang contends eight others are dead .\tNNP VBZ CD NNS VBP JJ .\nJapan believes there are two additional abductees whom North Korea has never acknowledged .\tNNP VBZ EX VBP CD JJ NNS WP NNP NNP VBZ RB VBN .\nAn Israeli airstrike has killed a Palestinian man in the Gaza Strip , east of Gaza City .\tDT JJ NN VBZ VBN DT JJ NN IN DT NNP NNP , NN IN NNP NNP .\nThe Israeli military says aircraft fired at three Palestinian gunmen who were within meters of the security fence separating the Gaza Strip from Israel .\tDT JJ NN VBZ NN VBD IN CD JJ NNS WP VBD IN NNS IN DT NN NN VBG DT NNP NNP IN NNP .\nPalestinians give a different account .\tNNS VBP DT JJ NN .\nA Palestinian militant group , the Popular Resistance Committees , says a bystander was killed when an Israeli helicopter fired at a car carrying several of its fighters .\tDT JJ JJ NN , DT NNP NNP NNP , VBZ DT NN VBD VBN WRB DT JJ NN VBD IN DT NN VBG NN IN PRP$ NNS .\nThe violence comes three days before Palestinian parliamentary elections .\tDT NN VBZ CD NNS IN JJ JJ NNS .\nThe international medical aid group , Doctors Without Borders ( Medecins Sans Frontieres ) , says one of its aid workers was killed in Sudan 's western Darfur region during an attack by government troops .\tDT JJ JJ NN NN , NNS IN NNS LRB NNP NNP NNP RRB , VBZ CD IN PRP$ NN NNS VBD VBN IN NNP POS JJ NNP NN IN DT NN IN NN NNS .\nThe aid group said Wednesday the Sudanese employee was shot dead December 17 in front of the group 's warehouse in the town of Labado in the southern part of Darfur .\tDT NN NN VBD NNP DT JJ NN VBD VBN JJ NNP CD IN NN IN DT NN POS NN IN DT NN IN NNP IN DT JJ NN IN NNP .\nDoctors Without Borders also said 29 other local staff in the town are missing following fighting between government troops and rebels .\tNNP NNP NNP RB VBD CD JJ JJ NN IN DT NN VBP VBG VBG NN IN NN NNS CC NNS .\nIt says the slain man was the second Sudanese employee to be killed in the last three months .\tPRP VBZ DT NN NN VBD DT JJ JJ NN TO VB VBN IN DT JJ CD NNS .\nOn Tuesday , the British charity Save the Children announced it is evacuating all its staff from Darfur after four of its workers were killed in the past two months .\tIN NNP , DT JJ NN NNP NNP NNP VBD PRP VBZ VBG DT PRP$ NN IN NNP IN CD IN PRP$ NNS VBD VBN IN DT JJ CD NNS .\nIraqi President Jalal Talabani says in a statement he does not intend to seek re-election when his term expires at the end of the year .\tJJ NNP NNP NNP VBZ IN DT NN PRP VBZ RB VB TO VB NN WRB PRP$ NN VBZ IN DT NN IN DT NN .\nBut the Kurdish leader says he will remain active in politics .\tCC DT NNP NN VBZ PRP MD VB JJ IN NNS .\nThe 75-year-old Talabani has been president since 2005 .\tDT JJ NNP VBZ VBN NN IN CD .\nHe had heart surgery in the United States last year .\tPRP VBD NN NN IN DT NNP NNPS JJ NN .\nOfficials say he wants to take a rest .\tNNS VBP PRP VBZ TO VB DT NN .\nIraq 's prime minister , Nouri al-Maliki , holds most of the power in the country .\tNNP POS JJ NN , NNP NNP , VBZ JJS IN DT NN IN DT NN .\nParliament chooses the president and two vice presidents .\tNNP VBZ DT NN CC CD NN NNS .\nTheir terms end when a new parliament is elected at the end of this year .\tPRP$ NNS NN WRB DT JJ NN VBZ VBN IN DT NN IN DT NN .\nAfghanistan and its neighbors have ended a two-day conference in Kabul with a pledge to boost economic cooperation in a region reaching from China to Turkey and the Persian Gulf .\tNNP CC PRP$ NNS VBP VBN DT JJ NN IN NNP IN DT NN TO VB JJ NN IN DT NN VBG IN NNP TO NNP CC DT NNP NNP .\nIn a joint declaration , delegations from 12 nations pledged cooperation in areas including electricity , counternarcotics , and water resource management .\tIN DT JJ NN , NNS IN CD NNS VBD NN IN NNS VBG NN , NNS , CC NN NN NN .\nBritain co-chaired the Regional Economic Cooperation Conference as current holder of the G8 presidency .\tNNP VBD DT NNP NNP NNP NNP IN JJ NN IN DT NNP NN .\nBritish Foreign Office Minister Kim Howells said the Kabul Declaration marks the ' moment when Afghanistan has become a real player in bringing peace and stability to the region . '\tJJ NNP NNP NNP NNP NNP VBD DT NNP NNP VBZ DT `` NN WRB NNP VBZ VBN DT JJ NN IN VBG NN CC NN TO DT NN . ``\nThe meeting brought together six nations bordering Afghanistan -- Tajikistan , Uzbekistan , Turkmenistan , Iran , Pakistan and China , as well as India , Turkey , the United Arab Emirates , Kazakhstan and Kyrgyzstan .\tDT NN VBD RB CD NNS VBG NNP : NNP , NNP , NNP , NNP , NNP CC NNP , RB RB IN NNP , NNP , DT NNP NNP NNPS , NNP CC NNP .\nThe death toll from a fireworks explosion on a bus carrying guests from a wedding in eastern Pakistan has risen to at least 38 , with scores of others injured .\tDT NN NN IN DT NNS NN IN DT NN VBG NNS IN DT NN IN JJ NNP VBZ VBN TO IN JJS CD , IN NNS IN NNS VBN .\nPolice officials at the scene in Lahore warned the death toll may rise further since many of the injured are in serious condition .\tNN NNS IN DT NN IN NNP VBD DT NN NN MD VB RB IN NN IN DT NN VBP IN JJ NN .\nWitnesses say the bus was engulfed by flames in seconds Sunday , giving people no time to escape .\tNNS VBP DT NN VBD VBN IN NNS IN NNS NNP , VBG NNS DT NN TO VB .\nSome of the victims were burned beyond recognition .\tDT IN DT NNS VBD VBN IN NN .\nThe French news agency , AFP , quotes local residents as saying the blast occurred just seconds after one of the bus passengers was seen throwing firecrackers out of a rear window .\tDT JJ NN NN , NNP , VBZ JJ NNS IN VBG DT NN VBD RB NNS IN CD IN DT NN NNS VBD VBN VBG NNS IN IN DT NN NN .\nThe U.S. space shuttle Discovery 's upcoming mission to the International Space Station has been delayed again , as NASA continues work to repair the shuttle 's external fuel tank .\tDT NNP NN NN NNP POS JJ NN TO DT NNP NNP NNP VBZ VBN VBN RB , IN NNP VBZ NN TO VB DT NN POS JJ NN NN .\nThe U.S. space agency says it is now considering potential launch dates in late February , not early in the month as previously planned .\tDT NNP NN NN VBZ PRP VBZ RB VBG JJ NN NNS IN JJ NNP , RB RB IN DT NN IN RB VBN .\nCracks in some of the metal supports of Discovery 's fuel tank were discovered when a hydrogen leak led NASA to cancel a planned launch attempt in early November .\tNNS IN DT IN DT NN NNS IN NNP POS NN NN VBD VBN WRB DT NN NN VBD NNP TO VB DT JJ NN NN IN JJ NNP .\nNASA officials now say the shuttle could launch as early as February 24 .\tNNP NNS RB VBP DT NN MD VB RB JJ IN NNP CD .\nAt this point , the Discovery supply mission is the next-to-last in the agency 's 30-year shuttle program .\tIN DT NN , DT NNP NN NN VBZ DT NN IN DT NN POS JJ NN NN .\nBut another flight could be added mid-year , before the fleet is set to retire this year .\tCC DT NN MD VB VBN JJ , IN DT NN VBZ VBN TO VB DT NN .\nFinal results from last month 's presidential runoff election in Guinea-Bissau give the victory to former military ruler Joao Bernardo Vieira .\tJJ NNS IN JJ NN POS JJ NN NN IN NNP VBP DT NN TO JJ JJ NN NNP NNP NNP .\nElectoral officials say Mr. Vieira , also known as ' Nino , ' received 52 percent of the vote , compared with 48 percent for his rival , interim leader Malam Bacai Sanha .\tNNP NNS VBP NNP NNP , RB VBN IN `` NNP , `` VBD CD NN IN DT NN , VBN IN CD NN IN PRP$ JJ , JJ NN NNP NNP NNP .\nMr. Sanha has said he will not accept the results , alleging voter fraud .\tNNP NNP VBZ VBN PRP MD RB VB DT NNS , VBG NN NN .\nBoth candidates in the July 24 runoff election had pledged to end years of political instability .\tDT NNS IN DT NNP CD NN NN VBD VBN TO VB NNS IN JJ NN .\nGuinea-Bissau has been plagued by numerous coups and coup attempts since gaining independence from Portugal in 1974 .\tNNP VBZ VBN VBN IN JJ NNS CC NN NNS IN VBG NN IN NNP IN CD .\nMr. Viera took power in a 1980 coup and ruled 19 years until he was ousted during a civil war .\tNNP NNP VBD NN IN DT CD NN CC VBD CD NNS IN PRP VBD VBN IN DT JJ NN .\nSouth Korea says it will not stage another large-scale rescue of North Korean refugees .\tNNP NNP VBZ PRP MD RB VB DT JJ NN IN JJ JJ NNS .\nSouth Korean Unification Minister Chung Dong-young told reporters Tuesday that Seoul has no plans to repeat last July 's airlift of 468 North Korean refugees from a third country that was never officially identified but believed to be Vietnam .\tJJ JJ NNP NNP NNP NNP VBD NNS NNP IN NNP VBZ DT NNS TO VB JJ NNP POS NN IN CD JJ JJ NNS IN DT JJ NN WDT VBD RB RB VBN CC VBN TO VB NNP .\nThe mass defection angered North Korea , which responded by boycotting ministerial talks in August .\tDT NN NN VBD NNP NNP , WDT VBD IN VBG JJ NNS IN NNP .\nAnalysts say Mr. Chung 's comments may be part of efforts by South Korea to encourage North Korea to resume bilateral talks .\tNNS VBP NNP NNP POS NNS MD VB NN IN NNS IN NNP NNP TO VB NNP NNP TO VB JJ NNS .\nLast month , South Korea announced it would strengthen background checks on North Koreans seeking asylum in the South , as well as cut financial subsidies to North Korean defectors .\tJJ NN , NNP NNP VBD PRP MD VB NN NNS IN NNP NNS VBG NN IN DT NNP , RB RB IN VBN JJ NNS TO JJ JJ NNS .\nWorld oil prices rose Wednesday after Iran test-fired some missiles .\tNNP NN NNS VBD NNP IN NNP VBD DT NNS .\nInvestors assumed the tests indicate continued tensions between Iran , a major oil producer , and Israel and the United States , which might disrupt oil supplies at a time of strong demand and tight inventories .\tNNS VBD DT NNS VBP JJ NNS IN NNP , DT JJ NN NN , CC NNP CC DT NNP NNPS , WDT MD VB NN NNS IN DT NN IN JJ NN CC JJ NNS .\nThe price of oil for future delivery rose more than two dollars to go as high as $ 138.28 a barrel in New York trading .\tDT NN IN NN IN JJ NN VBD JJR IN CD NNS TO VB RB JJ IN $ CD DT NN IN NNP NNP NN .\nEarlier , U.S. government energy experts said members of the Organization of Petroleum Exporting Countries will have net export revenues of $ 1.2 trillion this year , nearly double the gain from 2007 .\tRB , NNP NN NN NNS VBD NNS IN DT NNP IN NNP NNP NNPS MD VB JJ NN NNS IN $ CD CD DT NN , RB RB DT NN IN CD .\nThe increase is driven by record-high oil prices which hit an all time high of $ 145.85 a barrel on July 3 .\tDT NN VBZ VBN IN JJ NN NNS WDT VBD DT DT NN NN IN $ CD DT NN IN NNP CD .\nThe average retail price of gasoline in the United States remains at a record high of just over $ 1.08 a liter ( $ 4.11 a gallon ) .\tDT JJ JJ NN IN NN IN DT NNP NNPS VBZ IN DT NN NN IN RB IN $ CD DT NN LRB $ CD DT NN RRB .\nA commander of Dutch troops in southern Afghanistan says forces from the Netherlands have killed dozens of suspected Taleban fighters in recent months .\tDT NN IN JJ NNS IN JJ NNP VBZ NNS IN DT NNP VBP VBN NNS IN JJ NNP NNS IN JJ NNS .\nIn an interview published Saturday in the Netherlands ' daily newspaper NRC Handelsblad , Colonel Henk Morsink said troops in troubled Uruzgan province recently have been involved in six clashes with insurgents .\tIN DT NN VBN NNP IN DT NNP POS JJ NN NNP NNP , NNP NNP NNP VBD NNS IN JJ NNP NN RB VBP VBN VBN IN CD NNS IN NNS .\nHe also said a senior Taleban leader is believed to be among those killed .\tPRP RB VBD DT JJ NNP NN VBZ VBN TO VB IN DT VBN .\nMorsink stressed that his figures are based on estimates that can not always be verified .\tNNP VBD IN PRP$ NNS VBP VBN IN NNS WDT MD RB RB VB VBN .\nMore Dutch troops , along with additional forces from Britain and Canada , will soon be deployed in Afghanistan 's volatile south , as NATO members increase troop levels in the country from 9,000 to 16,000 .\tRBR JJ NNS , IN IN JJ NNS IN NNP CC NNP , MD RB VB VBN IN NNP POS JJ NN , IN NNP NNS VBP NN NNS IN DT NN IN CD TO CD .\nA top U.S. diplomat is in Turkey for talks on the situation in neighboring Iraq as it prepares for elections January 30th .\tDT JJ NNP NN VBZ IN NNP IN NNS IN DT NN IN VBG NNP IN PRP VBZ IN NNS NNP CD .\nOutgoing Deputy Secretary of State Richard Armitage was slated to meet with Turkish Foreign Minister Abdullah Gul as well as top lawmakers and Turkey 's army chief-of-staff .\tVBG NNP NNP IN NNP NNP NNP VBD VBN TO VB IN JJ NNP NNP NNP NNP RB RB IN JJ NNS CC NNP POS NN NN .\nEarlier Sunday , in Syria , Mr. Armitage said Damascus has improved security along its border with Iraq .\tRBR NNP , IN NNP , NNP NNP VBD NNP VBZ VBN NN IN PRP$ NN IN NNP .\nBut he also urged Syrian leaders to do more , and repeated U.S. claims that members of Saddam Hussein 's ousted regime are ' going back and forth from Syria ' into Iraq .\tCC PRP RB VBD JJ NNS TO VB JJR , CC VBD NNP NNS IN NNS IN NNP NNP POS JJ NN VBP `` VBG RB CC RB IN NNP `` IN NNP .\nThe U.S. envoy spoke after meeting with Syrian President Bashar al-Assad .\tDT NNP NN VBD IN VBG IN JJ NNP NNP NNP .\nMr. Armitage visited northern Iraq on Saturday , and will also visit Jordan before returning home early this week .\tNNP NNP VBD JJ NNP IN NNP , CC MD RB VB NNP IN VBG NN RB DT NN .\nSouth Africa has lifted a 13-year ban on killing elephants , despite an outcry from conservationists and animal rights activists .\tNNP NNP VBZ VBN DT JJ NN IN VBG NNS , IN DT NN IN NNS CC NN NNS NNS .\nThe government earlier this year authorized the move , which took effect Thursday , as a way of controlling the rising elephant population , which has more than doubled since 1995 , to 18,000 .\tDT NN RBR DT NN VBD DT NN , WDT VBD NN NNP , IN DT NN IN VBG DT VBG NN NN , WDT VBZ JJR IN VBN IN CD , TO CD .\nIn related news , a conservation group says 14 elephants have been illegally killed during the last two weeks in the Democratic Republic of Congo 's Virunga National Park .\tIN JJ NN , DT NN NN VBZ CD NNS VBP VBN RB VBN IN DT JJ CD NNS IN DT JJ NNP IN NNP POS NNP NNP NNP .\nWildlife Direct says in a statement released Thursday that rebels , soldiers and local villagers killed the elephants .\tNNP NNP VBZ IN DT NN VBN NNP IN NNS , NNS CC JJ NNS VBD DT NNS .\nThe group blames the surge in poaching on the liberalization of the ivory trade being pushed by South Africa , and the increased presence of Chinese operators in the area who feed a demand for ivory in their home country .\tDT NN VBZ DT NN IN VBG IN DT NN IN DT NN NN VBG VBN IN NNP NNP , CC DT VBN NN IN JJ NNS IN DT NN WP VB DT NN IN NN IN PRP$ NN NN .\nThe park was estimated to have an elephant population of 350 as of 2006 .\tDT NN VBD VBN TO VB DT JJ NN IN CD IN IN CD .\nU.S. military officials say a television cameraman killed in Iraq Monday died in a gunbattle between Marines and insurgents , contradicting an account from his news agency .\tNNP JJ NNS VBP DT NN NN VBN IN NNP NNP VBD IN DT NN IN NNPS CC NNS , VBG DT NN IN PRP$ NN NN .\nDhia Najim , an Iraqi freelance cameraman working for Reuters , was shot and killed in the town of Ramadi , west of Baghdad .\tNNP NNP , DT JJ NN NN VBG IN NNP , VBD VBN CC VBN IN DT NN IN NNP , NN IN NNP .\nU.S. military officials say Mr. Najim was hit by a bullet in the neck while taping a clash between Marines and insurgents .\tNNP JJ NNS VBP NNP NNP VBD VBN IN DT NN IN DT NN IN VBG DT NN IN NNPS CC NNS .\nBut Reuters says video pictures taken at the time of Mr. Najim 's death show he was shot by a sniper and that there was no fighting at the time .\tCC NNP VBZ NN NNS VBN IN DT NN IN NNP NNP POS NN VBP PRP VBD VBN IN DT NN CC IN EX VBD DT NN IN DT NN .\nThe press freedom group , Reporters Without Borders , has called on the Pentagon to make what it calls a proper investigation .\tDT NN NN NN , NNPS NNP NNS , VBZ VBN IN DT NNP TO VB WP PRP VBZ DT JJ NN .\nRussia is warning it will take retaliatory steps if any country deploys weapons in space .\tNNP VBZ VBG PRP MD VB JJ NNS IN DT NN VBZ NNS IN NN .\nRussian Defense Minister Sergei Ivanov says Moscow 's position on the issue has remained unchanged for decades in that Russia remains categorically against the militarization of space .\tJJ NNP NNP NNP NNP VBZ NNP POS NN IN DT NN VBZ VBN JJ IN NNS IN DT NNP VBZ RB IN DT NN IN NN .\nHe made the comments Thursday in Kazakhstan .\tPRP VBD DT NNS NNP IN NNP .\nLast month , White House press secretary Scott McClellan said the United States is reviewing a draft updated national space policy - but that policy does not look at the weaponization of space .\tJJ NN , NNP NNP NN NN NNP NNP VBD DT NNP NNPS VBZ VBG DT NN VBN JJ NN NN : CC DT NN VBZ RB VB IN DT NN IN NN .\nHowever , he did say that protecting U.S. space systems is something that has to be considered .\tRB , PRP VBD VB IN VBG NNP NN NNS VBZ DT WDT VBZ TO VB VBN .\nThe Interfax news agency also quotes Mr. Ivanov as saying Moscow is prepared to negotiate an agreement on controlling tactical nuclear weapons - but only when all countries with such weapons keep them within their own territories .\tDT NNP NN NN RB VBZ NNP NNP IN VBG NNP VBZ VBN TO VB DT NN IN VBG JJ JJ NNS : CC RB WRB DT NNS IN JJ NNS VBP PRP IN PRP$ JJ NNS .\nThe United States has such weapons in Europe .\tDT NNP NNPS VBZ JJ NNS IN NNP .\nThe Israeli navy has ordered a Libyan ship carrying humanitarian aid to the Gaza Strip to turn back .\tDT JJ NN VBZ VBN DT JJ NN VBG JJ NN TO DT NNP NNP TO VB RP .\nOfficials say the ship , the Al Marwa , was carrying some 3,000 tons of aid when it was stopped by the Israeli navy .\tNNS VBP DT NN , DT NNP NNP , VBD VBG DT CD NNS IN NN WRB PRP VBD VBN IN DT JJ NN .\nIsrael says there was no physical confrontation when it ordered the ship to turn around .\tNNP VBZ EX VBD DT JJ NN WRB PRP VBD DT NN TO VB RP .\nPalestinian officials say the ship is now sailing to the Egyptian port of El-Arish .\tJJ NNS VBP DT NN VBZ RB VBG TO DT JJ NN IN JJ .\nGaza 's borders have been largely sealed by Israel and Egypt following a violent takeover by the militant Hamas last year .\tNNP POS NNS VBP VBN RB VBN IN NNP CC NNP VBG DT JJ NN IN DT JJ NNP JJ NN .\nThe blockade has been stepped up in recent weeks due to a surge in border clashes between the Israeli military and Palestinian militants .\tDT NN VBZ VBN VBN RP IN JJ NNS JJ TO DT NN IN NN NNS IN DT JJ JJ CC JJ NNS .\nThe regional government in Iraq 's Kurdish region has signed seven new foreign oil deals .\tDT JJ NN IN NNP POS NNP NN VBZ VBN CD JJ JJ NN NNS .\nThe Kurdish Regional Government said in a statement on its Web site Tuesday all revenues from petroleum activities in the Kurdish region will be shared proportionately throughout Iraq under Iraqi law .\tDT NNP NNP NNP VBD IN DT NN IN PRP$ NNP NN NNP DT NNS IN NN NNS IN DT NNP NN MD VB VBN RB IN NNP IN JJ NN .\nThe government in the Kurdish region of northern Iraq has approved its own law governing the oil industry , while the Iraqi national parliament is still working on a hydrocarbon law that would regulate the industry throughout the country .\tDT NN IN DT JJ NN IN JJ NNP VBZ VBN PRP$ JJ NN VBG DT NN NN , IN DT JJ JJ NN VBZ RB VBG IN DT NN NN WDT MD VB DT NN IN DT NN .\nIraqi oil minister Hussein al-Shahristani had declared as ' illegal ' a previous agreement between the Kurdish regional government and a foreign oil company , Hunt Oil .\tJJ NN NN NNP NNP VBD VBN IN `` JJ `` DT JJ NN IN DT JJ JJ NN CC DT JJ NN NN , NNP NNP .\nThe Kurdish regional government said the new contracts are for the Mala Omar and Shorish Blocks , the Akre-Bijeel Block , the Shaikan Block , the Rovi and Sarta Blocks , and a block in Dihok province .\tDT JJ JJ NN VBD DT JJ NNS VBP IN DT NNP NNP CC NNP NNPS , DT NNP NNP , DT NNP NNP , DT NNP CC NNP NNPS , CC DT NN IN NNP NN .\nIraq 's Shi'ite politicians have postponed until Sunday a decision to select a new prime minister .\tNNP POS NNP NNS VBP VBN IN NNP DT NN TO VB DT JJ JJ NN .\nThe United Iraqi Alliance met Saturday , to choose between two contenders - Prime Minister Ibrahim al-Jaafari and Vice President Adel Abdul-Mahdi .\tDT NNP JJ NNP VBD NNP , TO VB IN CD NNS IN NNP NNP NNP NNP CC NNP NNP NNP NNP .\nEach is supported by two major factions in the Shi'ite alliance .\tDT VBZ VBN IN CD JJ NNS IN DT NNP NN .\nBut Shi'ite sources say followers of radical Shi'ite cleric Moqtada al-Sadr wanted more time to discuss the candidates .\tCC NNP NNS VBP NNS IN JJ NNP NN NNP NNP VBD JJR NN TO VB DT NNS .\nIraq 's Shi'ite alliance won the largest number of parliament seats in the nation 's December 15th election .\tNNP POS NNP NN VBD DT JJS NN IN NN NNS IN DT NN POS NNP CD NN .\nUnder Iraq 's constitution , the new parliament should convene within the next two weeks .\tIN NNP POS NN , DT JJ NN MD VB IN DT JJ CD NNS .\nSeparately , Kuwait 's al-Rai television station says the kidnappers in Iraq of American journalist Jill Carroll are threatening to kill her if their demands are not met by February 26 .\tRB , NNP POS NNP NN NN VBZ DT NNS IN NNP IN JJ NN NNP NNP VBP VBG TO VB PRP IN PRP$ NNS VBP RB VBN IN NNP CD .\nThe militants previously had demanded that all Iraqi women prisoners be freed .\tDT NNS RB VBD VBN IN DT JJ NNS NNS VB VBN .\nThe Sri Lankan navy says it has arrested five Indian nationals and confiscated their trawler carrying 61,000 bomb detonators .\tDT NNP NNP NN VBZ PRP VBZ VBN CD JJ NNS CC VBD PRP$ NN VBG CD NN NNS .\nA navy spokesman said the five men were detained late Wednesday off the island 's northern coast , an area under Tamil Tiger rebel control , and were handed over to police .\tDT NN NN VBD DT CD NNS VBD VBN RB NNP IN DT NN POS JJ NN , DT NN IN NNP NNP NN NN , CC VBD VBN IN TO NNS .\nHe said authorities are trying to determine if the shipment was meant for the rebels .\tPRP VBD NNS VBP VBG TO VB IN DT NN VBD VBN IN DT NNS .\nThe seizure came hours after the government and the rebels agreed to hold a new round of peace talks in Switzerland , easing fears that the country may slide back into full-scale civil war .\tDT NN VBD NNS IN DT NN CC DT NNS VBD TO VB DT JJ NN IN NN NNS IN NNP , VBG NNS IN DT NN MD VB RB IN JJ JJ NN .\nMeanwhile , Sri Lanka 's stock market staged a major rally Thursday as investors cheered the agreement between Colombo and the rebels .\tRB , NNP NNP POS NN NN VBD DT JJ NN NNP IN NNS VBD DT NN IN NNP CC DT NNS .\nTamil rebels also released a Sri Lankan policeman in what they call a goodwill gesture , four months after capturing him when he strayed into rebel territory .\tNNP NNS RB VBD DT NNP NNP NN IN WP PRP VBP DT NN NN , CD NNS IN VBG PRP WRB PRP VBD IN JJ NN .\nGreek officials say a moderate earthquake has struck off the coast of some of the country 's islands in the Aegean Sea .\tJJ NNS VBP DT JJ NN VBZ VBN RP DT NN IN DT IN DT NN POS NNS IN DT NNP NNP .\nThe Athens Geodynamic Institute says Friday 's magnitude 5.1 quake was centered near the eastern islands of Kos and Astypaleia , about 300 kilometers from the Greek capital .\tDT NNP NNP NNP VBZ NNP POS NN CD NN VBD VBN IN DT JJ NNS IN NNP CC NNP , IN CD NNS IN DT JJ NN .\nThere were no immediate reports of damage or injuries .\tEX VBD DT JJ NNS IN NN CC NNS .\nIranian state television says the country 's Revolutionary Guards have test-fired several long-range missiles with the capability of carrying cluster bombs .\tJJ NN NN VBZ DT NN POS JJ NNS VBP VBN JJ JJ NNS IN DT NN IN VBG NN NNS .\nThe state-owned Al-Alam network says the missiles were launched Thursday from a desert site near the central Iranian town of Qom .\tDT JJ NNP NN VBZ DT NNS VBD VBN NNP IN DT NN NN IN DT JJ JJ NN IN NNP .\nThe tests mark the beginning of a 10-day Iranian military exercise that will also include drills in the Persian Gulf and Sea of Oman .\tDT NNS VBP DT NN IN DT JJ JJ JJ NN WDT MD RB VB NNS IN DT NNP NNP CC NNP IN NNP .\nThe Iranian report says the missile tests involve the Shahab-3 missile , which has a range of up to 2,000 kilometers .\tDT JJ NN VBZ DT NN NNS VBP DT JJ NN , WDT VBZ DT NN IN IN TO CD NNS .\nThe Revolutionary Guards are the ideological wing of the Iranian armed forces , and have a separate command structure from the regular army .\tDT JJ NNS VBP DT JJ NN IN DT JJ JJ NNS , CC VBP DT JJ NN NN IN DT JJ NN .\nIran is conducting military maneuvers after United States held naval exercises in the Persian Gulf earlier this week .\tNNP VBZ VBG JJ NNS IN NNP NNPS VBD JJ NNS IN DT NNP NNP RBR DT NN .\nThe U.S.-led drills involved 25 nations and were aimed at training forces to block the transport of weapons of mass destruction .\tDT JJ NNS VBN CD NNS CC VBD VBN IN NN NNS TO VB DT NN IN NNS IN NN NN .\nRussia is defending its plans to sell Venezuela assault rifles and helicopters .\tNNP VBZ VBG PRP$ NNS TO VB NNP NN NNS CC NNS .\nRussian Foreign Minister Sergei Lavrov dismissed concerns expressed by the United States that the guns and aircraft could fall into the hands of leftist rebels in Colombia .\tJJ NNP NNP NNP NNP VBD NNS VBN IN DT NNP NNPS IN DT NNS CC NN MD VB IN DT NNS IN JJ NNS IN NNP .\nMr. Lavrov said the arms deal is a bilateral issue in line with international law .\tNNP NNP VBD DT NNS NN VBZ DT JJ NN IN NN IN JJ NN .\nU.S. officials fear Venezuelan President Hugo Chavez , who has strained relations with Washington , could export small arms to rebel movements , including rebel groups in neighboring Colombia .\tNNP NNS VBP JJ NNP NNP NNP , WP VBZ VBN NNS IN NNP , MD VB JJ NNS TO JJ NNS , VBG NN NNS IN VBG NNP .\nA State Department spokesman says the United States has raised the issue with Russia on several occasions .\tDT NNP NNP NN VBZ DT NNP NNPS VBZ VBN DT NN IN NNP IN JJ NNS .\nEarlier this week , Venezuelan Vice President Jose Rangel said his country is buying the weapons to strengthen its national security and that the purchase should not concern Washington .\tRBR DT NN , JJ NNP NNP NNP NNP VBD PRP$ NN VBZ VBG DT NNS TO VB PRP$ JJ NN CC IN DT NN MD RB VB NNP .\nSecurity is tight in the Afghan capital , Kabul , on the eve of the inauguration of the country 's first parliament in more than 30 years .\tNN VBZ JJ IN DT JJ NN , NNP , IN DT NN IN DT NN IN DT NN POS JJ NN IN JJR IN CD NNS .\nPolice and troops were deployed days ahead of the Monday ceremony , during which 351 new lawmakers will be sworn in by President Hamid Karzai .\tNNS CC NNS VBD VBN NNS RB IN DT NNP NN , IN WDT CD JJ NNS MD VB VBN IN IN NNP NNP NNP .\nThe event will be attended by many foreign dignitaries , including U.S. Vice President Dick Cheney .\tDT NN MD VB VBN IN JJ JJ NNS , VBG NNP NNP NNP NNP NNP .\nConcerns that the Taleban insurgents could disrupt the opening of a landmark parliamentary session were heightened after rebels attacked a police checkpoint near Kandahar overnight , killing three policemen .\tNNS IN DT NNP NNS MD VB DT NN IN DT NN JJ NN VBD VBN IN NNS VBD DT NN NN IN NNP RB , VBG CD NNS .\nA Taleban insurgent was also killed in the ambush .\tDT NNP NN VBD RB VBN IN DT NN .\nMeanwhile , France 's Defense Minister Michele Alliot-Marie , visiting Kabul on Sunday , said Paris will increase the number of its troops in Afghanistan in 2006 when NATO expands operations there .\tRB , NNP POS NNP NNP NNP NNP , VBG NNP IN NNP , VBD NNP MD VB DT NN IN PRP$ NNS IN NNP IN CD WRB NNP VBZ NNS RB .\nRussian Defense Minister Sergei Ivanov says Russia will soon begin testing a new intercontinental ballistic missile system .\tJJ NNP NNP NNP NNP VBZ NNP MD RB VB VBG DT JJ JJ JJ NN NN .\nThe Russian minister told reporters his country would develop weapons based on the Topol-M mobile missiles and the sea-based Bulava system .\tDT JJ NN VBD NNS PRP$ NN MD VB NNS VBN IN DT JJ JJ NNS CC DT JJ NNP NN .\nThe Interfax news agency quotes Mr. Ivanov as saying Moscow plans to produce nuclear weapons that can penetrate any defense system .\tDT NNP NN NN VBZ NNP NNP IN VBG NNP VBZ TO VB JJ NNS WDT MD VB DT NN NN .\nDutch Prime Minister Jan Peter Balkenende says a ' no ' vote in next week 's referendum on the European Constitution would damage the country 's reputation as a champion of European integration .\tJJ NNP NNP NNP NNP NNP VBZ DT `` DT `` NN IN JJ NN POS NN IN DT NNP NNP MD VB DT NN POS NN IN DT NN IN JJ NN .\nIn an interview with Dutch newspapers Saturday Mr. Balkenende said European leaders currently view the Netherlands as a country that works ' constructively and critically ' with international institutions .\tIN DT NN IN JJ NNS NNP NNP NNP VBD JJ NNS RB VBP DT NNP IN DT NN WDT VBZ `` RB CC RB `` IN JJ NNS .\nReuters news agency quotes the Netherlands leader as urging voters not to use the referendum as an opportunity to express discontent with Dutch government policies , but to read the document and vote on its substance .\tNNP NN NN VBZ DT NNP NN IN VBG NNS RB TO VB DT NN IN DT NN TO VB NN IN JJ NN NNS , CC TO VB DT NN CC NN IN PRP$ NN .\nLatest public opinion polls indicate that more than half of Dutch citizens plan to vote against the treaty in the June first referendum .\tJJS JJ NN NNS VBP IN JJR IN NN IN JJ NNS VBP TO VB IN DT NN IN DT NNP JJ NN .\nDiabetics have a greater than average chance of having a heart attack or stroke .\tNNS VBP DT JJR IN JJ NN IN VBG DT NN NN CC NN .\nBut new research indicates that lowering blood pressure and cholesterol below recommended guidelines seems to reduce these risks .\tCC JJ NN VBZ IN VBG NN NN CC NN IN VBN NNS VBZ TO VB DT NNS .\nVOA 's Carol Pearson tells us about the study .\tNNP POS NNP NNP VBZ PRP IN DT NN .\nU.S. presidential candidates John McCain and Barack Obama have responded cautiously to North Korea 's declaration of its nuclear activities .\tNNP JJ NNS NNP NNP CC NNP NNP VBP VBN RB TO NNP NNP POS NN IN PRP$ JJ NNS .\nSenator McCain Thursday called the declaration ' a modest step forward , ' but said it was only a step covering one part of North Korea 's activities .\tNNP NNP NNP VBD DT NN `` DT JJ NN RB , `` CC VBD PRP VBD RB DT NN VBG CD NN IN NNP NNP POS NNS .\nHe said the expected destruction of a nuclear cooling tower Friday would be another step , but said it is important to remember that the goal is a full , permanent , and verifiable denuclearization of the Korean Peninsula .\tPRP VBD DT VBN NN IN DT JJ NN NN NNP MD VB DT NN , CC VBD PRP VBZ JJ TO VB IN DT NN VBZ DT JJ , JJ , CC JJ NN IN DT JJ NNP .\nSenator Obama said critical questions about North Korea 's nuclear program remain unanswered .\tNNP NNP VBD JJ NNS IN NNP NNP POS JJ NN VBP JJ .\nHe said sanctions against the country are an important part of leverage to pressure North Korea to act .\tPRP VBD NNS IN DT NN VBP DT JJ NN IN NN TO VB NNP NNP TO VB .\nPresident George Bush promised to lift trade restrictions now that North Korea submitted the declaration .\tNNP NNP NNP VBD TO VB NN NNS RB IN NNP NNP VBD DT NN .\nSales of new homes in the United States declined 1.6 percent in May , evidence that the slump in the housing market is continuing for a second year .\tNNS IN JJ NNS IN DT NNP NNPS VBD CD NN IN NNP , NN IN DT NN IN DT NN NN VBZ VBG IN DT JJ NN .\nTuesday 's report from the Commerce Department showed that if sales continued at May 's pace for a year , just 9,15,000 new homes would change hands .\tNNP POS NN IN DT NNP NNP VBD IN IN NNS VBD IN NNP POS NN IN DT NN , RB CD JJ NNS MD VB NNS .\nAnalysts blame rising interest rates and a glut of unsold homes for the decline .\tNNS VBP VBG NN NNS CC DT NN IN JJ NNS IN DT NN .\nBesides the housing market , consumers tell researchers they are also worried about jobs and high energy prices .\tIN DT NN NN , NNS VBP NNS PRP VBP RB VBN IN NNS CC JJ NN NNS .\nA separate report by a business group showed consumer confidence declining in June ( by 4.6 points to a reading of 103.9 ) .\tDT JJ NN IN DT NN NN VBD NN NN VBG IN NNP LRB IN CD NNS TO DT NN IN CD RRB .\nEconomists track consumer confidence for clues about the consumer spending that drives most of the U.S. economy .\tNNS VBP NN NN IN NNS IN DT NN NN WDT VBZ JJS IN DT NNP NN .\nA U.S. federal judge has awarded more than $ 90 million in Cuban assets to the families of two men executed in Cuba in 1961 after the failed Bay of Pigs invasion attempt .\tDT NNP JJ NN VBZ VBN JJR IN $ CD CD IN JJ NNS TO DT NNS IN CD NNS VBN IN NNP IN CD IN DT VBN NNP IN NNP NN NN .\nThe ruling Friday in the northeastern state of New York ordered a bank holding frozen Cuban assets to pay sums to the families of Howard Anderson and Thomas Ray , both Americans .\tDT NN NNP IN DT JJ NN IN NNP NNP VBD DT NN VBG JJ JJ NNS TO VB NNS TO DT NNS IN NNP NNP CC NNP NNP , DT NNS .\nAnderson was arrested and executed in Cuba for counter-revolutionary activities , while Ray 's CIA plane was shot down over Cuba .\tNNP VBD VBN CC VBN IN NNP IN JJ NNS , IN NNP POS NNP NN VBD VBN RB IN NNP .\nBoth men were executed by the Cuban government .\tDT NNS VBD VBN IN DT JJ NN .\nThe families of the men sued Cuba under a U.S. federal law allowing citizens to bring lawsuits against foreign governments in cases of terrorism .\tDT NNS IN DT NNS VBD NNP IN DT NNP JJ NN VBG NNS TO VB NNS IN JJ NNS IN NNS IN NN .\nThe Bay of Pigs invasion was a CIA-backed attempt by Cuban exiles to overthrow Fidel Castro .\tDT NNP IN NNP NN VBD DT JJ NN IN JJ NNS TO VB NNP NNP .\nSales of previously-owned homes in the United States declined in May as higher mortgage interest rates cut demand .\tNNS IN JJ NNS IN DT NNP NNPS VBD IN NNP IN JJR NN NN NNS VBD NN .\nTuesday 's report from a business group , the National Association of Realtors , says re-sales fell more than one percent .\tNNP POS NN IN DT NN NN , DT NNP NNP IN NNPS , VBZ NNS VBD JJR IN CD NN .\nIf home sales continued at this rate for a full year , 6.7 million homes would change hands .\tIN NN NNS VBD IN DT NN IN DT JJ NN , CD CD NNS MD VB NNS .\nTuesday 's report on existing home sales contrasts sharply with Monday 's figures on sales of newly-built homes , which increased .\tNNP POS NN IN VBG NN NNS VBZ RB IN NNP POS NNS IN NNS IN JJ NNS , WDT VBD .\nBut analysts say new home sales are likely to decline under pressure from rising interest rates .\tCC NNS VBP JJ NN NNS VBP JJ TO VB IN NN IN VBG NN NNS .\nU.S. central bankers are expected to announce another in a long series of interest rate increases later this week .\tNNP JJ NNS VBP VBN TO VB DT IN DT JJ NN IN NN NN NNS RB DT NN .\nA separate report said U.S. consumer confidence increased slightly this month .\tDT JJ NN VBD NNP NN NN VBD RB DT NN .\nConsumer confidence figures give experts clues about consumer spending , which drives most U.S. economic activity .\tNN NN NNS VBP NNS NNS IN NN NN , WDT VBZ RBS NNP JJ NN .\nRussia 's state-owned natural gas firm Gazprom has announced plans to buy a controlling stake in the Russian daily Izvestia .\tNNP POS JJ JJ NN NN NNP VBZ VBN NNS TO VB DT VBG NN IN DT JJ JJ NNP .\nA spokesman for Gazprom media says negotiations are almost complete , with an announcement in coming days .\tDT NN IN NNP NNS VBZ NNS VBP RB JJ , IN DT NN IN VBG NNS .\nThe Vedomosti business daily quotes industry officials as speculating the deal could be worth between $ 10 million to $ 20 million .\tDT NNP NN JJ NNS NN NNS IN VBG DT NN MD VB JJ IN $ CD CD TO $ CD CD .\nCritics call the move a Kremlin effort to tighten its influence on the media .\tNNS VBP DT NN DT NNP NN TO VB PRP$ NN IN DT NNS .\nThe government already controls national television and radio networks .\tDT NN RB VBZ JJ NN CC NN NNS .\nAn editor at Izvestia resigned last year in what he said was a dispute over the newspaper 's coverage of the Beslan school crisis in which more than 330 people were killed .\tDT NN IN NNP VBD JJ NN IN WP PRP VBD VBD DT NN IN DT NN POS NN IN DT NNP NN NN IN WDT JJR IN CD NNS VBD VBN .\nHe said he was forced to resign over coverage the paper 's leadership deemed too shocking .\tPRP VBD PRP VBD VBN TO VB IN NN DT NN POS NN VBD RB JJ .\nThe newspaper printed graphic pictures of the bloody siege .\tDT NN VBD JJ NNS IN DT JJ NN .\nSome speculated that coverage upset the Kremlin .\tDT VBD DT NN VB DT NNP .\nJennifer Lopez will come to your party - for a price .\tNNP NNP MD VB TO PRP$ NN IN IN DT NN .\nRussian banking tycoon Andrei Melnichenko is reportedly paying the singer-actress $ 2 million to perform at his wife 's 30th birthday party .\tJJ NN NN NNP NNP VBZ RB VBG DT JJ $ CD CD TO VB IN PRP$ NN POS JJ NN NN .\nInternational media report Lopez will receive $ 1.2 million for her 40 minute performance in the UK , with an additional $ 8,00,000 earmarked for expenses .\tJJ NNS NN NNP MD VB $ CD CD IN PRP$ CD JJ NN IN DT NNP , IN DT JJ $ CD VBN IN NNS .\nThe 35-year-old Melnichenko 's personal fortune is estimated near $ 5 billion .\tDT JJ NNP POS JJ NN VBZ VBN IN $ CD CD .\nIn other Jennifer Lopez news , the U.S. Magazine Us has named her its Style Icon of the Year ; she 'll pick up her prize at a ceremony in Hollywood .\tIN JJ NNP NNP NN , DT NNP NNP NNP VBZ VBN PRP PRP$ JJ NN IN DT NN ; PRP MD VB RP PRP$ NN IN DT NN IN NNP .\nThe top U.S. weapons inspector for Iraq says the search for weapons of mass destruction has ' gone as far as feasible ' and has found nothing .\tDT JJ NNP NNS NN IN NNP VBZ DT NN IN NNS IN NN NN VBZ `` VBN RB RB IN JJ `` CC VBZ VBN DT .\nThe assessment by CIA special advisor Charles Duelfer , head of the Iraq Survey Group , was contained in an addendum , posted on the Internet late Monday , to last year 's final report on Iraq 's weapons program .\tDT NN IN NNP JJ NN NNP NNP , NN IN DT NNP NNP NNP , VBD VBN IN DT NN , VBN IN DT NNP JJ NNP , TO JJ NN POS JJ NN IN NNP POS NNS NN .\nMr. Duelfer concludes there is no reason to keep many detainees who are held because of their knowledge of Iraq 's weapons program , saying that after more than 18 months , the weapons investigation and debriefing of weapons-related detainees has been exhausted .\tNNP NNP VBZ EX VBZ DT NN TO VB JJ NNS WP VBP VBN IN IN PRP$ NN IN NNP POS NNS NN , VBG IN IN JJR IN CD NNS , DT NNS NN CC NN IN JJ NNS VBZ VBN VBN .\nThe United States maintains that the Iraqi authorities will make the final decision whether to release those detainees .\tDT NNP NNPS VBZ IN DT JJ NNS MD VB DT JJ NN IN TO VB DT NNS .\nMr. Duelfer also warns that there is a risk some Iraqi scientists might share their skills with terrorists or insurgents , who are making concerted efforts to gain chemical weapons capabilities .\tNNP NNP RB VBZ IN EX VBZ DT NN DT JJ NNS MD VB PRP$ NNS IN NNS CC NNS , WP VBP VBG JJ NNS TO VB JJ NNS NNS .\nNATO has expressed its solidarity with Britain over Thursday 's deadly terrorist attacks in London .\tNNP VBZ VBN PRP$ NN IN NNP IN NNP POS JJ JJ NNS IN NNP .\nAmbassadors of the 26 alliance states , meeting in Brussels , condemned terrorism in all its forms and reaffirmed NATO 's determination to combat terrorism and defend the alliance 's values of freedom , tolerance and democracy .\tNNS IN DT CD NN NNS , NN IN NNP , VBD NN IN DT PRP$ NNS CC VBD NNP POS NN TO VB NN CC VB DT NN POS NNS IN NN , NN CC NN .\nEarlier , NATO Secretary-General Jaap de Hoop Scheffer condemned the bombings as heinous crimes and stressed that they underscored the need for alliance unity in fighting terrorism .\tRB , NNP NNP NNP NNP NNP NNP VBD DT NNS IN JJ NNS CC VBD IN PRP VBD DT NN IN NN NN IN VBG NN .\nSpanish police have arrested seven people suspected of helping fund Islamic militants with links to the al-Qaida terrorist group .\tJJ NNS VBP VBN CD NNS VBN IN VBG NN JJ NNS IN NNS TO DT NNP JJ NN .\nInterior Minister Jose Antonio Alonso says the seven , arrested in the Costa del Sol region of southern Spain , had provided funds and logistical support to the Algerian-based Salafist Group for Preaching and Combat .\tNNP NNP NNP NNP NNP VBZ DT CD , VBN IN DT NNP NNP NNP NN IN JJ NNP , VBD VBN NNS CC JJ NN TO DT JJ NNP NNP IN NNP CC NNP .\nSpanish authorities have stepped up efforts against Islamic militants since last year 's al-Qaida-linked bombings of Madrid commuter trains that killed 191 people .\tJJ NNS VBP VBN RP NNS IN NNP NNS IN JJ NN POS JJ NNS IN NNP NN NNS WDT VBD CD NNS .\nLast month , police arrested 11 people on charges of providing financial support for the same Algerian-based group in raids in other areas of southern Spain .\tJJ NN , NN VBN CD NNS IN NNS IN VBG JJ NN IN DT JJ JJ NN IN NNS IN JJ NNS IN JJ NNP .\nTwo senior U.S. diplomats are meeting with the new leader of southern Sudan 's former rebel movement Wednesday in an effort to ensure that the sudden death of Vice President John Garang will not derail the peace process .\tCD JJ NNP NNS VBP VBG IN DT JJ NN IN JJ NNP POS JJ NN NN NNP IN DT NN TO VB IN DT JJ NN IN NNP NNP NNP NNP MD RB VB DT NN NN .\nThe visit by Assistant Secretary of State for African Affairs Connie Newman and special envoy for Sudan Roger Winter follows two days of riots in response to news of the death of Mr. Garang , the former rebel leader who became Sudan 's vice president as part of a peace deal .\tDT NN IN NNP NNP IN NNP IN NNP NNP NNP NNP CC JJ NN IN NNP NNP NNP VBZ CD NNS IN NNS IN NN TO NN IN DT NN IN NNP NNP , DT JJ JJ NN WP VBD NNP POS NN NN IN NN IN DT NN NN .\nAt least 42 people died in the violence .\tIN JJS CD NNS VBD IN DT NN .\nMr. Garang was killed in a helicopter crash Saturday evening .\tNNP NNP VBD VBN IN DT NN NN NNP NN .\nHe was a key player in the deal that ended 21 years of civil war between rebels in southern Sudan and the Khartoum government .\tPRP VBD DT JJ NN IN DT NN WDT VBD CD NNS IN JJ NN IN NNS IN JJ NNP CC DT NNP NN .\nThe U.S. diplomats plan to hold talks with government officials in Khartoum after their meetings in the south of the country .\tDT NNP NNS VBP TO VB NNS IN NN NNS IN NNP IN PRP$ NNS IN DT NN IN DT NN .\nA lawyers for two British journalists being held in Zimbabwe has accused prosecutors of deliberately delaying the proceedings after state witnesses failed to turn up at court .\tDT NNS IN CD JJ NNS VBG VBN IN NNP VBZ VBN NNS IN RB VBG DT NNS IN NN NNS VBD TO VB RP IN NN .\nBeatrice Mtetwa told the court in the northern town of Norton Friday that prosecutors are seeking ' to prolong the accused 's agony . '\tNNP NNP VBD DT NN IN DT JJ NN IN NNP NNP IN NNS VBP VBG `` TO VB DT NN POS NN . ``\nThe Sunday Telegraph 's chief foreign correspondent Toby Harnden and photographer Julian Simmonds have been in custody for more than a week on charges of reporting on last week 's parliamentary elections without accreditation .\tDT NNP NNP POS JJ JJ NN NNP NNP CC NN NNP NNP VBP VBN IN NN IN JJR IN DT NN IN NNS IN VBG IN JJ NN POS JJ NNS IN NN .\nThe journalists were granted bail last week .\tDT NNS VBD VBN NN JJ NN .\nBut the state appealed , forcing the men to remain in custody .\tCC DT NN VBD , VBG DT NNS TO VB IN NN .\nMs. Mtetwa said Friday 's proceedings lasted less than one hour because not all of the state 's witnesses showed up in court .\tNNP NNP VBD NNP POS NNS VBD JJR IN CD NN IN RB DT IN DT NN POS NNS VBD RP IN NN .\nReports from Baghdad say two bombs have exploded near a market in central Baghdad , killing at least 10 people .\tNNS IN NNP VBP CD NNS VBP VBN IN DT NN IN JJ NNP , VBG IN JJS CD NNS .\nPolice say the second bomb was detonated Tuesday after a crowd had gathered at the site of the first blast , near a shop just outside the Bab al-Sharjee market .\tNNS VBP DT JJ NN VBD VBN NNP IN DT NN VBD VBN IN DT NN IN DT JJ NN , IN DT NN RB IN DT NNP NNP NN .\nHours earlier , two Iraqi civilians were killed and four policemen were wounded in two separate roadside bombings in southern Iraq ( at Yousifiyah , south of Baghdad , and in Basra province ) .\tNNS RB , CD JJ NNS VBD VBN CC CD NNS VBD VBN IN CD JJ NN NNS IN JJ NNP LRB IN NNP , NN IN NNP , CC IN NNP NN RRB .\nA U.S. military announcement today says three Marines were killed Monday near the restive town of Hit in western Anbar province .\tDT NNP JJ NN NN VBZ CD NNS VBD VBN NNP IN DT JJ NN IN NNP IN JJ NNP NN .\nA fourth Marine has died of wounds suffered in a similar attack in the same region on Sunday .\tDT JJ NN VBZ VBN IN NNS VBN IN DT JJ NN IN DT JJ NN IN NNP .\nThe U.S. military in Iraq has sent a team of forensic experts to the northern city of Mosul to investigate the cause of Tuesday 's massive explosion at an American military base that killed 22 people and wounded 72 others .\tDT NNP NN IN NNP VBZ VBN DT NN IN JJ NNS TO DT JJ NN IN NNP TO VB DT NN IN NNP POS JJ NN IN DT JJ JJ NN WDT VBD CD NNS CC VBD CD NNS .\nInitial reports said the base 's dining hall was struck by either a mortar or rocket .\tJJ NNS VBD DT NN POS NN NN VBD VBN IN RB DT NN CC NN .\nBut the military says it is not ruling out anything .\tCC DT NN VBZ PRP VBZ RB VBG RP DT .\nThe militant group that claimed responsibility for the attack said it was carried out by a suicide bomber .\tDT JJ NN WDT VBD NN IN DT NN VBD PRP VBD VBN RP IN DT NN NN .\nAmong the dead were 14 American military personnel , four U.S civilian contractors and four Iraqi security force members .\tIN DT NN VBD CD JJ JJ NNS , CD NNS JJ NNS CC CD JJ NN NN NNS .\nMost of the wounded were also American servicemen .\tJJS IN DT VBN VBD RB JJ NNS .\nWednesday , the streets of Mosul were deserted and the city 's five bridges were closed .\tNNP , DT NNS IN NNP VBD VBN CC DT NN POS CD NNS VBD VBN .\nAmerican tanks and troops were positioned across the city and helicopters hovered overhead .\tJJ NNS CC NNS VBD VBN IN DT NN CC NNS VBD RB .\nThe Rock and Roll Hall of Fame has inducted its newest members at a star-studded ceremony in New York City .\tDT NNP CC NNP NNP IN NNP VBZ VBN PRP$ JJS NNS IN DT JJ NN IN NNP NNP NNP .\nThe 2006 class of inductees includes heavy metal band Black Sabbath , punk rockers the Sex Pistols , southern rock mainstays Lynyrd Skynyrd , and the late jazz legend Miles Davis .\tDT CD NN IN NNS VBZ JJ NN NN NNP NNP , NN NNS DT NN NNS , JJ NN NNS NNP NNP , CC DT JJ NN NN NNP NNP .\nMembers of the new wave band Blondie also were inducted into the Hall of Fame , Monday .\tNNS IN DT JJ NN NN NNP RB VBD VBN IN DT NNP IN NNP , NNP .\nThe hall also gave a lifetime achievement award to trumpeter Herb Alpert and business partner Jerry Moss , the founders of A&M Records .\tDT NN RB VBD DT NN NN NN TO VB NNP NNP CC NN NN NNP NNP , DT NNS IN NNP NNP .\nMusicians become eligible for Hall of Fame consideration 25 years after their first recording .\tNNS VBP JJ IN NNP IN NNP NN CD NNS IN PRP$ JJ NN .\nThe Hall of Fame has a museum in Cleveland , Ohio to honor the history and personalities of rock music .\tDT NNP IN NNP VBZ DT NN IN NNP , NNP TO VB DT NN CC NNS IN NN NN .\nRussia says a strain of bird flu virus found infecting fowl in Siberia is the deadly H5N1 strain that can be transmitted to humans .\tNNP VBZ DT NN IN NN NN NN VBD VBG NN IN NNP VBZ DT JJ NNP NN WDT MD VB VBN TO NNS .\nA spokesman for the agricultural ministry in Moscow Friday said the investigation of the bird flu outbreak in Russia 's Novosibirsk region indicated the need for wider quarantine measures .\tDT NN IN DT JJ NN IN NNP NNP VBD DT NN IN DT NN NN NN IN NNP POS NNP NN VBD DT NN IN JJR NN NNS .\nThe outbreak in Siberia began earlier this month when large numbers of chicken , geese and other fowl began dying .\tDT NN IN NNP VBD RBR DT NN WRB JJ NNS IN NN , NNS CC JJ NN VBD VBG .\nStrains of the virus have been hitting flocks throughout Asia , and more than 50 people in southeast Asia have died from exposure to the virus since 2003 .\tNNS IN DT NN VBP VBN VBG NNS IN NNP , CC JJR IN CD NNS IN JJ NNP VBP VBN IN NN TO DT NN IN CD .\nHealth experts fear a global pandemic if the virus mutates into a form easily passed among humans .\tNNP NNS VBP DT JJ NN IN DT NN VBZ IN DT NN RB VBN IN NNS .\nTwo car bomb blasts near the Shi'ite shrine city of Karbala in southern Iraq have killed at least 20 people and wounded more than 50 others .\tCD NN NN NNS IN DT NNP NN NN IN NNP IN JJ NNP VBP VBN IN JJS CD NNS CC VBN JJR IN CD NNS .\nIraqi officials say the attacks targeted Shi'ite pilgrims heading to Karbala for an important Sh'ite holiday this week .\tJJ NNS VBP DT NNS VBD NNP NNS VBG TO NNP IN DT JJ NNP NN DT NN .\nEarlier Monday , another car bomb exploded in front of the Baghdad offices of Al-Arabiya television , killing at least four people and wounding 16 others .\tRBR NNP , DT NN NN VBD IN NN IN DT NNP NNS IN NNP NN , VBG IN JJS CD NNS CC VBG CD NNS .\nAl-Arabiya staffers said the explosion badly damaged the building and left a huge crater .\tNNP NNS VBD DT NN RB VBD DT NN CC VBD DT JJ NN .\nIraqi officials had previously warned the network about the threat of an insurgent attack .\tJJ NNS VBD RB VBN DT NN IN DT NN IN DT JJ NN .\nMonday 's bombing was not the first time Al-Arabiya has been targeted in Iraq .\tNNP POS NN VBD RB DT JJ NN NNP VBZ VBN VBN IN NNP .\nThe network 's Baghdad bureau chief escaped harm in 2008 after a bomb was found strapped to his car .\tDT NN POS NNP NN NN VBD NN IN CD IN DT NN VBD VBN JJ TO PRP$ NN .\nThe Arabic-language station is owned by Saudi Arabia and based in Dubai .\tDT JJ NN VBZ VBN IN NNP NNP CC VBN IN NNP .\nA Jewish settler in the West Bank has been indicted by an Israeli court in the shooting deaths of four Palestinians in northern Israel earlier this month .\tDT JJ NN IN DT NNP NNP VBZ VBN VBN IN DT JJ NN IN DT NN NNS IN CD NNS IN JJ NNP RBR DT NN .\nDefendant Asher Weisgan has been in Israeli custody since allegedly opening fire on a group of Palestinian workers at an industrial zone at the West Bank settlement of Shiloh on August 17 .\tNN NNP NNP VBZ VBN IN JJ NN IN RB VBG NN IN DT NN IN JJ NNS IN DT JJ NN IN DT NNP NNP NN IN NNP IN NNP CD .\nAt the time of the assault , police said a gunman seized a rifle from an Israeli security officer at the work zone and then shot and killed two Palestinians he had driven to the job site .\tIN DT NN IN DT NN , NN VBD DT NN VBD DT NN IN DT JJ NN NN IN DT NN NN CC RB VBD CC VBD CD NNS PRP VBD VBN TO DT NN NN .\nHe then opened fire on a crowd of nearby workers , killing two more and wounding a fifth worker .\tPRP RB VBD NN IN DT NN IN JJ NNS , VBG CD JJR CC VBG DT JJ NN .\nPolice said the attacker launched the attack to protest Israel 's recently concluded evacuation of the Gaza Strip .\tNNS VBD DT NN VBD DT NN TO VB NNP POS RB VBN NN IN DT NNP NNP .\nThe leader of Germany 's Social Democratic Party says he will not run again for that post and might not serve in a new cabinet .\tDT NN IN NNP POS NNP NNP NNP VBZ PRP MD RB VB RB IN DT NN CC MD RB VB IN DT JJ NN .\nFranz Muentefering spoke Monday after the Social Democrats ' executive committee named a left-wing party member to run for party general secretary , rejecting Mr. Muentefering 's chosen candidate .\tNNP NNP VBD NNP IN DT NNP NNPS POS NN NN VBD DT JJ NN NN TO VB IN NN JJ NN , VBG NNP NNP POS JJ NN .\nThe committee nominated Andrea Nahles to run , rejecting Kajo Wasserhoevel .\tDT NN VBD NNP NNP TO VB , VBG NNP NNP .\nMr. Muentefering was set to become vice chancellor in a government led by Christian Democrat Chancellor-designate Angela Merkel .\tNNP NNP VBD VBN TO VB NN NN IN DT NN VBN IN NNP NNP NNP NNP NNP .\nThe Social Democrats will elect their general secretary in mid-November .\tDT NNP NNPS MD VB PRP$ JJ NN IN NNP .\nIraqi Shi'ite leaders say they have made their final compromise proposal to Sunni Arabs on the text of a new constitution .\tJJ NNP NNS VBP PRP VBP VBN PRP$ JJ NN NN TO VB NNS IN DT NN IN DT JJ NN .\nA Shi'ite official said Friday the proposal addresses the two main Sunni Arab objections : federalism , and efforts to exclude former members of Saddam Hussein 's Ba'ath Party from public life .\tDT NNP NN VBD NNP DT NN VBZ DT CD JJ NNP NNP NNS IN NN , CC NNS TO VB JJ NNS IN NNP NNP POS NNP NNP IN JJ NN .\nThe announcement comes following a phone call from President Bush to Abdul-Aziz al-Hakim , the leader of Iraq 's largest Shi'ite party .\tDT NN VBZ VBG DT NN NN IN NNP NNP TO NNP NNP , DT NN IN NNP POS JJS JJ NN .\nThe White House says it is doing everything it can to assist the Iraqis in moving the democratic process forward .\tDT NNP NNP VBZ PRP VBZ VBG DT PRP MD TO VB DT NNS IN VBG DT JJ NN RB .\nIn other developments , the U.S. military launched multiple airstrikes Friday against a building sheltering about 50 suspected terrorists in the western province of Al-Anbar , close to the Syrian border .\tIN JJ NNS , DT NNP NN VBD JJ NNS NNP IN DT NN VBG IN CD JJ NNS IN DT JJ NN IN NNP , RB TO DT JJ NN .\nNo casualty figures were released .\tDT NN NNS VBD VBN .\nThe Russian state-owned oil firm Rosneft has rejected a statement by the giant natural gas company Gazprom about their planned merger .\tDT JJ JJ NN NN NNP VBZ VBN DT NN IN DT JJ JJ NN NN NNP IN PRP$ JJ NN .\nWednesday , Gazprom chief Alexei Miller said the Yuganskneftegaz production unit would become an independent state company led by Rosneft head Sergei Bogdanchikov .\tNNP , NNP NN NNP NNP VBD DT NNP NN NN MD VB DT JJ NN NN VBN IN NNP NN NNP NNP .\nRosneft Thursday said the statement does not correspond with reality , and should be taken as opinion .\tNNP NNP VBD DT NN VBZ RB VB IN NN , CC MD VB VBN IN NN .\nThe merger would give the state a controlling stake in Gazprom , which would allow the lifting of a ban on foreign ownership of its shares .\tDT NN MD VB DT NN DT VBG NN IN NNP , WDT MD VB DT NN IN DT NN IN JJ NN IN PRP$ NNS .\nThe government had seized Yuganskneftegaz for failure to pay taxes and sold it at auction last year .\tDT NN VBD VBN NNP IN NN TO VB NNS CC VBD PRP IN NN JJ NN .\nRosneft acquired the unit from a previously unknown company that purchased it at the auction .\tNNP VBD DT NN IN DT RB JJ NN WDT VBD PRP IN DT NN .\nCritics accuse the Kremlin of trying to tighten control of the oil market and retaliate for former Yukos chief Mikhail Khodorkovsky 's support of the political opposition , charges authorities deny .\tNNS VBP DT NNP IN VBG TO VB NN IN DT NN NN CC VB IN JJ NNP NN NNP NNP POS NN IN DT JJ NN , NNS NNS VBP .\nIranian President Mahmoud Ahmadinejad has called for closer cooperation with Syria , as both countries face continuing diplomatic pressure from Western governments .\tJJ NNP NNP NNP VBZ VBN IN JJR NN IN NNP , IN DT NNS VBP VBG JJ NN IN JJ NNS .\nMr. Ahmadinejad 's comments Sunday in Tehran came in a joint news conference with visiting Syrian President Bashar al-Assad .\tNNP NNP POS NNS NNP IN NNP VBD IN DT JJ NN NN IN VBG JJ NNP NNP NNP .\nThe Iranian news agency quotes Mr. Ahmadinejad as saying common threats require more bilateral cooperation to protect the Middle East from foreign aggression .\tDT JJ NN NN VBZ NNP NNP IN VBG JJ NNS VBP JJR JJ NN TO VB DT NNP NNP IN JJ NN .\nBoth governments remain on a U.S. list of countries supporting terrorism , and Washington accuses both countries of failing to stop Islamic insurgents from crossing their borders into Iraq .\tDT NNS VBP IN DT NNP NN IN NNS VBG NN , CC NNP VBZ DT NNS IN VBG TO VB JJ NNS IN VBG PRP$ NNS IN NNP .\nAdditionally , the United States and European governments accuse Iran of seeking to build atomic weapons .\tRB , DT NNP NNPS CC JJ NNS VBP NNP IN VBG TO VB JJ NNS .\nBoth governments deny the charges .\tDT NNS VBP DT NNS .\nAuthorities in Angola say 14 more people have died from the Marburg virus , raising the death toll from the outbreak to 146 .\tNNS IN NNP VBP CD JJR NNS VBP VBN IN DT NNP NN , VBG DT NN NN IN DT NN TO CD .\nThis makes it the worst outbreak of the Ebola-like virus since 123 people died in the neighboring Democratic Republic of Congo between 1998 and 2000 .\tDT VBZ PRP DT JJS NN IN DT JJ NN IN CD NNS VBD IN DT JJ NNP NNP IN NNP IN CD CC CD .\nThe World Health Organization has deployed 20 experts to Angola to help combat the virus , which is characterized by headaches , vomiting and diarrhea .\tDT NNP NNP NNP VBZ VBN CD NNS TO NNP TO VB VB DT NN , WDT VBZ VBN IN NNS , VBG CC NN .\nThe outbreak has been mainly confined to the northern province of Uige .\tDT NN VBZ VBN RB VBN TO DT JJ NN IN NNP .\nStore owners in the capital city of Luanda say panicked residents have bought out all their stocks of household bleach to help guard against the virus .\tNNP NNS IN DT NN NN IN NNP VBP JJ NNS VBP VBN RP DT PRP$ NNS IN NN NN TO VB VB IN DT NN .\nEthiopia 's elections body has rejected opposition calls for a re-run of last month 's parliamentary poll , won by the ruling party in a landslide .\tNNP POS NNS NN VBZ VBN NN NNS IN DT NN IN JJ NN POS JJ NN , VBN IN DT VBG NN IN DT NN .\nA coalition of six parties said the May 23 election was rigged , and that voters and opposition candidates were harassed .\tDT NN IN CD NNS VBD DT NNP CD NN VBD VBN , CC IN NNS CC NN NNS VBD VBN .\nThe National Electoral Board said Wednesday that the opposition claims were not backed by any evidence .\tDT NNP NNP NNP VBD NNP IN DT NN NNS VBD RB VBN IN DT NN .\nElection results showed the ruling EPRDF coalition and allied parties taking 534 out of 537 parliamentary seats .\tNN NNS VBD DT VBG NNP NN CC JJ NNS VBG CD IN IN CD JJ NNS .\nOpposition leaders say the government 's near-total victory could not be accomplished without cheating .\tNN NNS VBP DT NN POS JJ NN MD RB VB VBN IN NN .\nBoth the United States and the European Union criticized the election as falling short of international standards .\tDT DT NNP NNPS CC DT NNP NNP VBD DT NN IN VBG JJ IN JJ NNS .\nEthiopian officials have said the voting was free , fair , and democratic .\tJJ NNS VBP VBN DT NN VBD JJ , JJ , CC JJ .\nThe election was Ethiopia 's first parliamentary poll since a disputed 2005 vote that led to violent unrest .\tDT NN VBD NNP POS JJ JJ NN IN DT JJ CD NN WDT VBD TO JJ NN .\nSecurity forces killed nearly 200 people while putting down demonstrations after that poll .\tNN NNS VBD RB CD NNS IN VBG RP NNS IN DT NN .\nElection authorities in Liberia have begun releasing returns from the country 's first post-war election , in which large numbers turned out to elect a new president and parliament .\tNNP NNS IN NNP VBP VBN VBG NNS IN DT NN POS JJ JJ NN , IN WDT JJ NNS VBD RP TO VB DT JJ NN CC NN .\nWith ballots from about one percent of the polling stations counted , former World Bank economist Ellen Johnson-Sirleaf has 24 percent of the vote .\tIN NNS IN IN CD NN IN DT NN NNS VBD , JJ NNP NNP NN NNP NNP VBZ CD NN IN DT NN .\nSoccer ( football ) star George Weah , one of her opponents in the presidential race , has 21 percent .\tNNP LRB NN RRB NN NNP NNP , CD IN PRP$ NNS IN DT JJ NN , VBZ CD NN .\nThe head of Liberia 's National Elections Commission , Frances Johnson Morris , says it could take three to seven days of vote counting before the new leader is known .\tDT NN IN NNP POS NNP NNPS NNP , NNP NNP NNP , VBZ PRP MD VB CD CC CD NNS IN NN NN IN DT JJ NN VBZ VBN .\nUnited Nations Secretary General Kofi Annan and the U.S. ambassador to Liberia , Donald Booth , have praised Liberians for conducting a peaceful and orderly election .\tNNP NNP NNP NNP NNP NNP CC DT NNP NN TO NNP , NNP NNP , VBP VBN NNS IN VBG DT JJ CC JJ NN .\nLiberia 's vote is seen as a step toward restoring stability to a country beset by war and corruption .\tNNP POS NN VBZ VBN IN DT NN IN VBG NN TO DT NN VBN IN NN CC NN .\nThe Philippines will keep its peacekeeping force in Haiti despite a sniper attack on a Filipino enlisted man Thursday .\tDT NNPS MD VB PRP$ NN NN IN NNP IN DT NN NN IN DT NN JJ NN NNP .\nStaff Sergeant Rodrigo Galam was standing guard outside the Christopher Hotel in Port-au-Prince when he came under sniper fire .\tNNP NNP NNP NNP VBD VBG NN IN DT NNP NNP IN NNP WRB PRP VBD IN NN NN .\nHis body armor saved him from injury by deflecting two bullets .\tPRP$ NN NN VBD PRP IN NN IN VBG CD NNS .\nThe hotel will be the future headquarters of the UN peacekeeping forces in the country .\tDT NN MD VB DT JJ NN IN DT NNP NN NNS IN DT NN .\nPhilippine ambassador to the United Nations Lauro Baja said in a statement that the attack would not in any way alter Manila 's resolve to help bring peace and stability to Haiti .\tJJ NN TO DT NNP NNPS NNP NNP VBD IN DT NN IN DT NN MD RB IN DT NN VB NNP POS NN TO VB VB NN CC NN TO NNP .\nThe Philippines deployed 135 troops to Haiti in December .\tDT NNPS VBD CD NNS TO NNP IN NNP .\nIRAQ-POVERTY ( Washington )\tNNP LRB NNP RRB\nRep. Tony Hall , D-Ohio , urges the United Nations to allow a freer flow of food and medicine into Iraq .\tNNP NNP NNP , NNP , VBZ DT NNP NNPS TO VB DT JJR NN IN NN CC NN IN NNP .\nHall , who recently returned from a trip to Iraq , said U.N. economic sanctions have hurt millions of civilians there .\tNNP , WP RB VBD IN DT NN IN NNP , VBD NN JJ NNS VBP VBN NNS IN NNS RB .\nBy AUSTIN ZALKIN .\tIN NNP NNP .\nThe economy suffers from the typical Pacific island problems of geographic isolation , few resources , and a small population .\tDT NN VBZ IN DT JJ NNP NN NNS IN JJ NN , JJ NNS , CC DT JJ NN .\nGovernment expenditures regularly exceed revenues , and the shortfall is made up by critically needed grants from New Zealand that are used to pay wages to public employees .\tNN NNS RB VBP NNS , CC DT NN VBZ VBN RP IN RB VBN NNS IN NNP NNP WDT VBP VBN TO VB NNS TO JJ NNS .\nNiue has cut government expenditures by reducing the public service by almost half .\tNNP VBZ VBN NN NNS IN VBG DT JJ NN IN RB NN .\nThe agricultural sector consists mainly of subsistence gardening , although some cash crops are grown for export .\tDT JJ NN VBZ RB IN NN NN , IN DT NN NNS VBP VBN IN NN .\nIndustry consists primarily of small factories to process passion fruit , lime oil , honey , and coconut cream .\tNN VBZ RB IN JJ NNS TO VB NN NN , JJ NN , NN , CC NN NN .\nThe sale of postage stamps to foreign collectors is an important source of revenue .\tDT NN IN JJ NNS TO JJ NNS VBZ DT JJ NN IN NN .\nThe island in recent years has suffered a serious loss of population because of emigration to New Zealand .\tDT NN IN JJ NNS VBZ VBN DT JJ NN IN NN IN IN NN TO NNP NNP .\nEfforts to increase GDP include the promotion of tourism and financial services , although the International Banking Repeal Act of 2002 resulted in the termination of all offshore banking licenses .\tNNS TO VB NN VBP DT NN IN NN CC JJ NNS , IN DT NNP NNP NNP NNP IN CD VBD IN DT NN IN DT JJ NN NNS .\nEconomic aid from New Zealand in FY08/09 was US $ 5.7 million .\tJJ NN IN NNP NNP IN NNP VBD NNP $ CD CD .\nNiue suffered a devastating typhoon in January 2004 , which decimated nascent economic programs .\tNNP VBD DT JJ NN IN NNP CD , WDT VBD JJ JJ NNS .\nWhile in the process of rebuilding , Niue has been dependent on foreign aid .\tIN IN DT NN IN NN , NNP VBZ VBN JJ IN JJ NN .\nBritish influence and control over what would become Nigeria and Africa 's most populous country grew through the 19th century .\tJJ NN CC NN IN WP MD VB NNP CC NNP POS JJS JJ NN VBD IN DT JJ NN .\nA series of constitutions after World War II granted Nigeria greater autonomy ; independence came in 1960 .\tDT NN IN NNS IN NNP NNP NNP VBD NNP JJR NN ; NN VBD IN CD .\nFollowing nearly 16 years of military rule , a new constitution was adopted in 1999 , and a peaceful transition to civilian government was completed .\tVBG RB CD NNS IN JJ NN , DT JJ NN VBD VBN IN CD , CC DT JJ NN TO JJ NN VBD VBN .\nThe government continues to face the daunting task of reforming a petroleum-based economy , whose revenues have been squandered through corruption and mismanagement , and institutionalizing democracy .\tDT NN VBZ TO VB DT JJ NN IN VBG DT JJ NN , WP$ NNS VBP VBN VBN IN NN CC NN , CC VBG NN .\nIn addition , Nigeria continues to experience longstanding ethnic and religious tensions .\tIN NN , NNP VBZ TO VB JJ JJ CC JJ NNS .\nAlthough both the 2003 and 2007 presidential elections were marred by significant irregularities and violence , Nigeria is currently experiencing its longest period of civilian rule since independence .\tIN DT DT CD CC CD JJ NNS VBD VBN IN JJ NNS CC NN , NNP VBZ RB VBG PRP$ JJS NN IN JJ NN IN NN .\nThe general elections of April 2007 marked the first civilian-to-civilian transfer of power in the country 's history .\tDT JJ NNS IN NNP CD VBD DT JJ JJ NN IN NN IN DT NN POS NN .\nIn January 2010 , Nigeria assumed a nonpermanent seat on the UN Security Council for the 2010 - 11 term .\tIN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD IN CD NN .\nBritain conquered Burma over a period of 62 years ( 1824 - 1886 ) and incorporated it into its Indian Empire .\tNNP VBD NNP IN DT NN IN CD NNS LRB CD : CD RRB CC VBD PRP IN PRP$ JJ NN .\nBurma was administered as a province of India until 1937 when it became a separate , self-governing colony ; independence from the Commonwealth was attained in 1948 .\tNNP VBD VBN IN DT NN IN NNP IN CD WRB PRP VBD DT JJ , JJ NN ; NN IN DT NNP VBD VBN IN CD .\nGen. NE WIN dominated the government from 1962 to 1988 , first as military ruler , then as self-appointed president , and later as political kingpin .\tNNP NNP NNP VBD DT NN IN CD TO CD , RB IN JJ NN , RB IN JJ NN , CC RB IN JJ NN .\nIn September 1988 , the military deposed NE WIN and established a new ruling junta .\tIN NNP CD , DT NN VBD NNP NNP CC VBD DT JJ NN NN .\nDespite multiparty legislative elections in 1990 that resulted in the main opposition party - the National League for Democracy ( NLD ) - winning a landslide victory , the junta refused to hand over power .\tIN JJ JJ NNS IN CD WDT VBD IN DT JJ NN NN IN DT NNP NNP IN NNP LRB NNP RRB IN VBG DT NN NN , DT NN VBD TO VB IN NN .\nNLD leader and Nobel Peace Prize recipient AUNG SAN SUU KYI , who was under house arrest from 1989 to 1995 and 2000 to 2002 , was imprisoned in May 2003 and subsequently transferred to house arrest .\tNNP NN CC NNP NNP NNP NN NNP NNP NNP NNP , WP VBD IN NN NN IN CD TO CD CC CD TO CD , VBD VBN IN NNP CD CC RB VBN TO NN NN .\nShe was finally released in November 2010 .\tPRP VBD RB VBN IN NNP CD .\nAfter the ruling junta in August 2007 unexpectedly increased fuel prices , tens of thousands of Burmese marched in protest , led by prodemocracy activists and Buddhist monks .\tIN DT NN NN IN NNP CD RB VBD NN NNS , NNS IN NNS IN NNS VBD IN NN , VBN IN NN NNS CC NN NNS .\nIn late September 2007 , the government brutally suppressed the protests , killing at least 13 people and arresting thousands for participating in the demonstrations .\tIN JJ NNP CD , DT NN RB VBD DT NNS , VBG IN JJS CD NNS CC VBG NNS IN VBG IN DT NNS .\nSince then , the regime has continued to raid homes and monasteries and arrest persons suspected of participating in the pro-democracy protests .\tIN RB , DT NN VBZ VBN TO VB NNS CC NNS CC NN NNS VBN IN VBG IN DT JJ NNS .\nBurma in early May 2008 was struck by Cyclone Nargis , which claimed over 1,38,000 dead and tens of thousands injured and homeless .\tNNP IN JJ NNP CD VBD VBN IN NNP NNP , WDT VBD IN CD JJ CC NNS IN NNS VBN CC NN .\nDespite this tragedy , the junta proceeded with its May constitutional referendum , the first vote in Burma since 1990 .\tIN DT NN , DT NN VBD IN PRP$ NNP JJ NN , DT JJ NN IN NNP IN CD .\nParliamentary elections held in November 2010 , considered flawed by many in the international community , saw the junta 's Union Solidarity and Development Party garnering over 75 % of the seats .\tJJ NNS VBN IN NNP CD , VBN VBN IN NN IN DT JJ NN , VBD DT NN POS NNP NNP CC NNP NNP VBG IN CD NN IN DT NNS .\nParliament convened in January 2011 and selected former Prime Minister THEIN SEIN as president .\tNNP VBD IN NNP CD CC VBN JJ NNP NNP NNP NNP IN NN .\nThe vast majority of national-level appointees named by THEIN SEIN are former or current military officers .\tDT JJ NN IN JJ NNS VBN IN NNP NNP VBP JJ CC JJ JJ NNS .\nGrenada relies on tourism as its main source of foreign exchange especially since the construction of an international airport in 1985 .\tNNP VBZ IN NN IN PRP$ JJ NN IN JJ NN RB IN DT NN IN DT JJ NN IN CD .\nHurricanes Ivan ( 2004 ) and Emily ( 2005 ) severely damaged the agricultural sector - particularly nutmeg and cocoa cultivation - which had been a key driver of economic growth .\tNNP NNP LRB CD RRB CC RB LRB CD RRB RB VBN DT JJ NN : RB NN CC NN NN : WDT VBD VBN DT JJ NN IN JJ NN .\nGrenada has rebounded from the devastating effects of the hurricanes but is now saddled with the debt burden from the rebuilding process .\tNNP VBZ VBN IN DT JJ NNS IN DT NNS CC VBZ RB VBN IN DT NN NN IN DT NN NN .\nPublic debt-to-GDP is nearly 110 % , leaving the THOMAS administration limited room to engage in public investments and social spending .\tNNP NNP VBZ RB CD NN , VBG DT NNP NN JJ NN TO VB IN JJ NNS CC JJ NN .\nStrong performances in construction and manufacturing , together with the development of tourism and an offshore financial industry , have also contributed to growth in national output ; however , economic growth was stagnant in 2010 after a sizeable contraction in 2009 , because of the global economic slowdown 's effects on tourism and remittances .\tJJ NNS IN NN CC NN , RB IN DT NN IN NN CC DT JJ JJ NN , VBP RB VBN TO NN IN JJ NN ; RB , JJ NN VBD JJ IN CD IN DT JJ NN IN CD , IN IN DT JJ JJ NN POS NNS IN NN CC NNS .\nOne day a countryman going to the nest of his Goose found there an egg all yellow and glittering .\tCD NN DT NN VBG TO DT NN IN PRP$ NN VBD EX DT NN DT NN CC NN .\nWhen he took it up it was as heavy as lead and he was going to throw it away , because he thought a trick had been played upon him .\tWRB PRP VBD PRP RP PRP VBD RB JJ IN NN CC PRP VBD VBG TO VB PRP RB , IN PRP VBD DT NN VBD VBN VBN IN PRP .\nBut he took it home on second thoughts , and soon found to his delight that it was an egg of pure gold .\tCC PRP VBD PRP NN IN JJ NNS , CC RB VBD TO PRP$ NN IN PRP VBD DT NN IN JJ NN .\nEvery morning the same thing occurred , and he soon became rich by selling his eggs .\tDT NN DT JJ NN VBD , CC PRP RB VBD JJ IN VBG PRP$ NNS .\nAs he grew rich he grew greedy ; and thinking to get at once all the gold the Goose could give , he killed it and opened it only to find nothing .\tIN PRP VBD JJ PRP VBD NN ; CC VBG TO VB IN RB PDT DT NN DT NNP MD VB , PRP VBD PRP CC VBD PRP RB TO VB DT .\nGreed oft o'er reaches itself .\tNN RB RB VBZ PRP .\nA Doe had had the misfortune to lose one of her eyes , and could not see any one approaching her on that side .\tDT NN VBD VBN DT NN TO VB CD IN PRP$ NNS , CC MD RB VB DT CD VBG PRP IN DT NN .\nSo to avoid any danger she always used to feed on a high cliff near the sea , with her sound eye looking towards the land .\tRB TO VB DT NN PRP RB VBD TO VB IN DT JJ NN IN DT NN , IN PRP$ JJ NN VBG IN DT NN .\nBy this means she could see whenever the hunters approached her on land , and often escaped by this means .\tIN DT NN PRP MD VB WRB DT NNS VBD PRP IN NN , CC RB VBN IN DT NN .\nBut the hunters found out that she was blind of one eye , and hiring a boat rowed under the cliff where she used to feed and shot her from the sea .\tCC DT NNS VBD RP IN PRP VBD JJ IN CD NN , CC VBG DT NN VBN IN DT NN WRB PRP VBD TO VB CC VBD PRP IN DT NN .\n' Ah , ' cried she with her dying voice ,\t`` UH , `` VBD PRP IN PRP$ JJ NN ,\n' You can not escape your fate . '\t`` PRP MD RB VB PRP$ NN . ``\nA WOLF followed a flock of sheep for a long time and did not attempt to injure one of them .\tDT NN VBD DT NN IN NNS IN DT JJ NN CC VBD RB VB TO VB CD IN PRP .\nThe Shepherd at first stood on his guard against him , as against an enemy , and kept a strict watch over his movements .\tDT NN IN RB VBN IN PRP$ NN IN PRP , IN IN DT NN , CC VBD DT JJ NN IN PRP$ NNS .\nBut when the Wolf , day after day , kept in the company of the sheep and did not make the slightest effort to seize them , the Shepherd began to look upon him as a guardian of his flock rather than as a plotter of evil against it ; and when occasion called him one day into the city , he left the sheep entirely in his charge .\tCC WRB DT NN , NN IN NN , VBD IN DT NN IN DT NNS CC VBD RB VB DT JJS NN TO VB PRP , DT NN VBD TO VB RB PRP IN DT NN IN PRP$ NN RB IN IN DT NN IN NN IN PRP ; CC WRB NN VBD PRP CD NN IN DT NN , PRP VBD DT NNS RB IN PRP$ NN .\nThe Wolf , now that he had the opportunity , fell upon the sheep , and destroyed the greater part of the flock .\tDT NN , RB IN PRP VBD DT NN , VBD IN DT NNS , CC VBD DT JJR NN IN DT NN .\nWhen the Shepherd returned to find his flock destroyed , he exclaimed :\tWRB DT NN VBD TO VB PRP$ NN VBD , PRP VBD :\n' I have been rightly served ; why did I trust my sheep to a Wolf ? '\t`` PRP VBP VBN RB VBN ; WRB VBD PRP VB PRP$ NNS TO DT NN . ``\nDocuments released by the White House show that the Democratic National Committee asked Al Gore to make 140 calls to campaign donors , but he only connected on 56 of them .\tNNS VBN IN DT NNP NNP VBP IN DT NNP NNP NNP VBD NNP NNP TO VB CD NNS TO NN NNS , CC PRP RB VBN IN CD IN PRP .\nThe other 84 hung up because he sounds just like a dial tone .\tDT JJ CD VBD RP IN PRP VBZ RB IN DT NN NN .\nWhen NASA first started sending up astronauts , they quickly discovered that ball-point pens would not work in zero gravity .\tWRB NNP RB VBD VBG RP NNS , PRP RB VBD IN JJ NNS MD RB VB IN CD NN .\nTo combat this problem , NASA scientists spent a decade and $ 12 billion developing a pen that writes in zero gravity , upside down , underwater , on almost any surface including glass and at temperatures ranging from below freezing to over 300 C .\tTO VB DT NN , NNP NNS VBD DT NN CC $ CD CD VBG DT NN WDT VBZ IN CD NN , RB RB , NN , IN RB DT NN VBG NN CC IN NNS VBG IN IN VBG TO IN CD NNS .\nThe Russians use a pencil .\tDT NNS VBP DT NN .\nKrygyz President Kurmanbek Bakiyev says he is ready for any new proposals from the U.S. government to stabilize the situation in Afghanistan .\tJJ NNP NNP NNP VBZ PRP VBZ JJ IN DT JJ NNS IN DT NNP NN TO VB DT NN IN NNP .\nMr. Bakiyev made his comments to the British Broadcasting Corporation Wednesday .\tNNP NNP VBD PRP$ NNS TO DT NNP NNP NNP NNP .\nBut Kyrgyz officials said Thursday the government will not reverse its decision to evict U.S. forces from a key military base that supports Western troops in Afghanistan .\tCC JJ NNS VBD NNP DT NN MD RB VB PRP$ NN TO VB NNP NNS IN DT JJ JJ NN WDT VBZ JJ NNS IN NNP .\nLast week , Kyrgyzstan ordered U.S. forces to leave the Manas air base within six months after President Bakiyev signed the decision into law .\tJJ NN , NNP VBD NNP NNS TO VB DT NNP NN NN IN CD NNS IN NNP NNP VBD DT NN IN NN .\nU.S. Defense Secretary Robert Gates said he believes the issue is not ' closed , ' and that the U.S. will try to reach a new agreement with Kyrgyzstan .\tNNP NNP NNP NNP NNP VBD PRP VBZ DT NN VBZ RB `` VBN , `` CC IN DT NNP MD VB TO VB DT JJ NN IN NNP .\nAs an alternative , Gates said the U.S. is considering other supply routes .\tIN DT NN , NNP VBD DT NNP VBZ VBG JJ NN NNS .\nManas Air Base is currently the only U.S. military supply route in Central Asia .\tNNP NNP NNP VBZ RB DT JJ NNP JJ NN NN IN NNP NNP .\nA top U.S. military officer said Tajikistan and Uzbekistan have agreed to allow the transit of non-lethal U.S. cargo through their territory to Afghanistan .\tDT JJ NNP JJ NN VBD NNP CC NNP VBP VBN TO VB DT NN IN JJ NNP NN IN PRP$ NN TO NNP .\nWashington also has received permission from Russia and Kazakhstan to send supplies to Afghanistan by rail .\tNNP RB VBZ VBN NN IN NNP CC NNP TO VB NNS IN NNP IN NN .\nPresident Bakiyev had complained that Washington was not paying enough rent for the base .\tNNP NNP VBD VBN IN NNP VBD RB VBG JJ NN IN DT NN .\nHe announced plans to close it after Russia pledged to give Kyrgyzstan about $ 2 billion in loans and aid .\tPRP VBD NNS TO VB PRP IN NNP VBD TO VB NNP IN $ CD CD IN NNS CC NN .\nMost U.S. and NATO shipments into Afghanistan have been arriving by road through Pakistan , but those convoys have increasingly come under attack from Taliban and al-Qaida militants .\tJJS NNP CC NNP NNS IN NNP VBP VBN VBG IN NN IN NNP , CC DT NNS VBP RB VBN IN NN IN NNP CC NNP NNS .\nPalestinian security officials say a clash between Israeli troops and Palestinian militants near the West Bank town of Jenin has left three militants dead .\tJJ NN NNS VBP DT NN IN JJ NNS CC JJ NNS IN DT NNP NNP NN IN NNP VBZ VBN CD NNS JJ .\nThe officials identified the victims as a local leader of the Al Aqsa Martyrs Brigades and two members of Islamic Jihad .\tDT NNS VBD DT NNS IN DT JJ NN IN DT NNP NNP NNP NNP CC CD NNS IN NNP NNP .\nThey say the fighting erupted when Israeli troops raided Jenin early Thursday morning .\tPRP VBP DT NN VBD WRB JJ NNS VBD NNP JJ NNP NN .\nWednesday , Israel 's military warned it may bombard the Gaza Strip town of Beit Hanoun , if necessary , to stop Palestinian rocket fire into Israel .\tNNP , NNP POS NN VBD PRP MD VB DT NNP NNP NN IN NNP NNP , IN JJ , TO VB JJ NN NN IN NNP .\nThe militants have been firing rockets from the area , despite earlier pledges to stop such attacks .\tDT NNS VBP VBN VBG NNS IN DT NN , IN JJR NNS TO VB JJ NNS .\nIn Washington , a State Department spokesman Sean McCormack said Secretary of State Condoleezza Rice has been pressing both sides to end the violence .\tIN NNP , DT NNP NNP NN NNP NNP VBD NNP IN NNP NNP NNP VBZ VBN VBG DT NNS TO VB DT NN .\nPresident Bush is to meet with Palestinian leader Mahmoud Abbas at the White House next month for talks on peace efforts .\tNNP NNP VBZ TO VB IN JJ NN NNP NNP IN DT NNP NNP JJ NN IN NNS IN NN NNS .\nThe U.S. military says the death toll from Thursday 's suicide bomb attack on a Shi'ite funeral in the northern city of Mosul has risen to 50 .\tDT NNP NN VBZ DT NN NN IN NNP POS NN NN NN IN DT NNP NN IN DT JJ NN IN NNP VBZ VBN TO CD .\nMore than 80 other people were injured in the blast , many critically .\tJJR IN CD JJ NNS VBD VBN IN DT NN , JJ RB .\nNo group has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nFriday , grieving families buried their dead in private , canceling plans for a mass funeral procession because of fears it would be attacked .\tNNP , VBG NNS VBN PRP$ JJ IN JJ , VBG NNS IN DT NN NN NN IN IN NNS PRP MD VB VBN .\nOn the political front , Iraq 's main Shi'ite alliance , which swept the January 30 elections , is finalizing a deal with Kurdish leaders to form a coalition ahead of the new parliament 's first session next Wednesday .\tIN DT JJ NN , NNP POS JJ NNP NN , WDT VBD DT NNP CD NNS , VBZ VBG DT NN IN JJ NNS TO VB DT NN RB IN DT JJ NN POS JJ NN JJ NNP .\nAnd a Polish newspaper quoted Warsaw 's defense minister Jerzy Szmajdzinski , as saying Poland will withdraw several hundred of its troops from Iraq in July .\tCC DT JJ NN VBN NNP POS NN NN NNP NNP , IN VBG NNP MD VB JJ CD IN PRP$ NNS IN NNP IN NNP .\nThe leaders of the 53-member African Union have opened their two-day summit , where they will focus on debt relief and a greater voice in the United Nations .\tDT NNS IN DT JJ NNP NNP VBP VBN PRP$ JJ NN , WRB PRP MD VB IN NN NN CC DT JJR NN IN DT NNP NNPS .\nThe African summit beginning Monday is being held just days before the leaders of the Group of Eight industrialized nations gather in Scotland to discuss debt relief for the war-torn , poverty-stricken continent .\tDT JJ NN VBG NNP VBZ VBG VBN RB NNS IN DT NNS IN DT NNP IN CD JJ NNS VBP IN NNP TO VB NN NN IN DT JJ , JJ NN .\nThe G-8 summit is expected to give final approval to an agreement that forgives $ 40 billion of debt held by the world 's poorest nations , mostly in Africa .\tDT NNP NN VBZ VBN TO VB JJ NN TO DT NN WDT VBZ $ CD CD IN NN VBN IN DT NN POS JJS NNS , RB IN NNP .\nThe AU leaders are also expected to support a proposal calling for the continent to get two permanent seats and two non-permanent seats on an expanded U.N. Security Council .\tDT NNP NNS VBP RB VBN TO VB DT NN VBG IN DT NN TO VB CD JJ NNS CC CD JJ NNS IN DT JJ NNP NNP NNP .\nA secular coalition led by Iraq 's former prime minister has taken a slight lead in overall votes as ballot counting from parliamentary elections continues - but it remains behind in the key provincial tally .\tDT JJ NN VBN IN NNP POS JJ JJ NN VBZ VBN DT JJ NN IN JJ NNS IN NN NN IN JJ NNS VBZ : CC PRP VBZ IN IN DT JJ JJ NN .\nWith about 93 percent of the ballots counted , election officials said Saturday that former Prime Minister Ayad Allawi 's secularists lead the Shi'ite coalition headed by current Prime Minister Nouri al-Maliki by about 8,000 votes .\tIN IN CD NN IN DT NNS VBN , NN NNS VBD NNP IN JJ NNP NNP NNP NNP POS NNS VBP DT NNP NN VBN IN JJ NNP NNP NNP NNP IN RB CD NNS .\nThe lead has repeatedly shifted between Mr. Allawi and Prime Minister Maliki since the March 7 vote .\tDT NN VBZ RB VBN IN NNP NNP CC NNP NNP NNP IN DT NNP CD NN .\nBut Mr. Maliki 's State of Law coalition is still ahead in seven of Iraq 's 18 provinces - compared to five provinces held by Mr. Allawi 's Iraqiya alliance .\tCC NNP NNP POS NN IN NN NN VBZ RB RB IN CD IN NNP POS CD NNS IN VBN TO CD NNS VBN IN NNP NNP POS NNP NN .\nSeats in Iraq 's 325-member parliament are won according to how well a coalition does in a province , not according to the overall vote .\tNNS IN NNP POS JJ NN VBP VBN VBG TO WRB RB DT NN VBZ IN DT NN , RB VBG TO DT JJ NN .\nOfficials say they hope to have final results by the end of the month .\tNNS VBP PRP VBP TO VB JJ NNS IN DT NN IN DT NN .\nPakistan 's Prime Minister Shaukat Aziz has arrived in New Delhi for talks with Indian leaders to review the on-going peace process between the two neighbors .\tNNP POS NNP NNP NNP NNP VBZ VBN IN NNP NNP IN NNS IN JJ NNS TO VB DT JJ NN NN IN DT CD NNS .\nA day before his arrival , Mr. Aziz warned not to expect a breakthrough during his talks with Prime Minister Manmohan Singh , which he described as part of a continuing dialogue .\tDT NN IN PRP$ NN , NNP NNP VBD RB TO VB DT NN IN PRP$ NNS IN NNP NNP NNP NNP , WDT PRP VBD IN NN IN DT VBG NN .\nOn Monday , Mr. Aziz said India 's reduction in troops in disputed Kashmir has helped reduce tensions .\tIN NNP , NNP NNP VBD NNP POS NN IN NNS IN JJ NNP VBZ VBN VB NNS .\nBut he added that a permanent solution is likely to be some time off .\tCC PRP VBD IN DT JJ NN VBZ JJ TO VB DT NN RP .\nMr. Aziz also plans to meet Kashmiri separatist leaders during his visit .\tNNP NNP RB VBZ TO VB JJ JJ NNS IN PRP$ NN .\nHis trip to India is part of a regional tour as the outgoing chairman of the South Asian Association for Regional Cooperation , or SAARC .\tPRP$ NN TO NNP VBZ NN IN DT JJ NN IN DT JJ NN IN DT NNP NNP NNP IN NNP NNP , CC NNP .\nAccording to the World Bank , 300 million people in China - a number roughly equal to the population of the United States - live on less than a dollar a day .\tVBG TO DT NNP NNP , CD CD NNS IN NNP IN DT NN RB JJ TO DT NN IN DT NNP NNPS : VBP IN JJR IN DT NN DT NN .\nAs China 's government works to control record high inflation , the country 's poor are struggling to put food on the table .\tIN NNP POS NN VBZ TO VB JJ JJ NN , DT NN POS NN VBP VBG TO VB NN IN DT NN .\nAnd the recent earthquake , officials say , is likely to fuel even higher inflation because of the damage to the country 's agriculture .\tCC DT JJ NN , NNS VBP , VBZ JJ TO VB RB JJR NN IN IN DT NN TO DT NN POS NN .\nSam Beattie reports from Beijing .\tNNP NNP VBZ IN NNP .\nGerman authorities have released a Lebanese man arrested in connection with an alleged plot against Iraqi interim Prime Minister Iyad Allawi .\tJJ NNS VBP VBN DT JJ NN VBN IN NN IN DT JJ NN IN JJ JJ NNP NNP NNP NNP .\nBut prosecutors have issued arrest orders against three others accused of planning to attack Mr. Allawi during his visit to Germany last week .\tCC NNS VBP VBN NN NNS IN CD NNS VBN IN VBG TO VB NNP NNP IN PRP$ NN TO NNP JJ NN .\nProsecutors identified the three as suspected members of the Islamic militant group Ansar al-Islam , which U.S. authorities have linked to al-Qaida .\tNNS VBD DT CD IN JJ NNS IN DT NNP JJ NN NNP NNP , WDT NNP NNS VBP VBN TO NNP .\nAuthorities detained the suspects in several German cities just hours before a meeting Friday between Mr. Allawi and German Chancellor Gerhard Schroeder in Berlin .\tNNS VBD DT NNS IN JJ JJ NNS RB NNS IN DT NN NNP IN NNP NNP CC JJ NNP NNP NNP IN NNP .\nThe Iraqi leader changed his travel plans after the alleged plot was uncovered .\tDT JJ NN VBD PRP$ NN NNS IN DT JJ NN VBD VBN .\nU.S. embassy officials in Iraq say an American teen who skipped school and flew to Baghdad without his parents ' permission is on his way home .\tNNP NN NNS IN NNP VBP DT JJ NN WP VBD NN CC VBD TO VB IN PRP$ NNS POS NN VBZ IN PRP$ NN NN .\nIn a brief statement Friday , the U.S. consul-general in Baghdad announced that 16-year-old Farris Hassan has left Iraq .\tIN DT JJ NN NNP , DT NNP NN IN NNP VBD IN JJ NNP NNP VBZ VBN NNP .\nThe boy , of Iraqi descent , says he went to the war-torn country to pursue his interest in news reporting , cultivated in a high school journalism class .\tDT NN , IN JJ NN , VBZ PRP VBD TO DT JJ NN TO VB PRP$ NN IN NN NN , VBN IN DT JJ NN NN NN .\nThe student from Florida bought a plane ticket and left the United States on December 11 , arriving in Kuwait , where he called his parents .\tDT NN IN NNP VBD DT NN NN CC VBD DT NNP NNPS IN NNP CD , VBG IN NNP , WRB PRP VBD PRP$ NNS .\nHe later flew to Iraq on a flight from Lebanon .\tPRP RB VBD TO NNP IN DT NN IN NNP .\nEarlier this week , the boy entered the Iraqi offices of the Associated Press news agency .\tRBR DT NN , DT NN VBD DT JJ NNS IN DT NNP NNP NN NN .\nJournalists immediately called the U.S. embassy , where officials had been looking for the teen , at his parents ' request .\tNNS RB VBD DT NNP NN , WRB NNS VBD VBN VBG IN DT NN , IN PRP$ NNS POS NN .\nThe Israeli army says troops raided the West Bank town of Jenin Monday , arresting eight militants suspected of involvement in making crude rockets and mortars .\tDT JJ NN VBZ NNS VBD DT NNP NNP NN IN NNP NNP , VBG CD NNS VBN IN NN IN VBG JJ NNS CC NNS .\nThe army says the detained men are members of the Islamic Jihad militant group .\tDT NN VBZ DT JJ NNS VBP NNS IN DT NNP NNP JJ NN .\nIt says one soldier was slightly wounded during the operation .\tPRP VBZ CD NN VBD RB VBN IN DT NN .\nOn Sunday , Israel delayed handing over the town of Qalqilya to Palestinian security control , saying the Palestinians have failed to move against militants in Jericho and Tulkarem - the two towns already transferred to them .\tIN NNP , NNP VBD VBG IN DT NN IN NNP TO JJ NN NN , VBG DT NNS VBP VBN TO VB IN NNS IN NNP CC NNP IN DT CD NNS RB VBN TO PRP .\nQalqilya is the third of five West Bank towns Israel is to hand over to Palestinian security control under an agreement the two sides reached last month .\tNNP VBZ DT NN IN CD NNP NNP NNS NNP VBZ TO VB IN TO JJ NN NN IN DT NN DT CD NNS VBD JJ NN .\nThere is no word on when the remaining two towns - Jenin and Ramallah - will be transferred .\tEX VBZ DT NN IN WRB DT VBG CD NNS IN NNP CC NNP : MD VB VBN .\nA powerful earthquake has shaken the area around Tibet in China .\tDT JJ NN VBZ VBN DT NN IN NNP IN NNP .\nThe U.S. Geological Survey says the quake had a 6.9 magnitude and was centered about 245 kilometers north of Qamdo prefecture , which borders China 's Sichuan province .\tDT NNP NNP NNP VBZ DT NN VBD DT CD NN CC VBD VBN IN CD NNS RB IN NNP NN , WDT VBZ NNP POS JJ NN .\nAt least one strong aftershock with a 5.2 magnitude struck about 30 minutes later .\tIN JJS CD JJ NN IN DT CD NN VBD IN CD NNS RB .\nThere were no early reports about damage or injuries .\tEX VBD DT JJ NNS IN NN CC NNS .\nA massive 7.9 quake hit Sichuan province in 2008 , killing close to 90,000 people .\tDT JJ CD NN VBD NNP NN IN CD , VBG RB TO CD NNS .\nOfficials at the United States Embassy in Nepal say they are alarmed by the possibility of an alliance between Maoist rebels and political parties in the Himalayan kingdom .\tNNS IN DT NNP NNPS NNP IN NNP VBP PRP VBP VBN IN DT NN IN DT NN IN NNP NNS CC JJ NNS IN DT NNP NN .\nAn official statement released by the Embassy says the United States supports the restoration of democracy in Nepal as well as the prevention of a Maoist takeover .\tDT JJ NN VBN IN DT NNP VBZ DT NNP NNPS VBZ DT NN IN NN IN NNP RB RB IN DT NN IN DT NNP NN .\nNepal 's seven major political parties recently offered to talk to the Maoists about forming a broad front opposed to King Gyanendra on the condition that the rebels end violent attacks aimed at civilians .\tNNP POS CD JJ JJ NNS RB VBD TO VB TO DT NNS IN VBG DT JJ NN VBN TO NNP NNP IN DT NN IN DT NNS VBP JJ NNS VBN IN NNS .\nThe king assumed emergency powers earlier this year and ousted the kingdom 's four-party government for failing to make progress in the battle against the rebels , who have been fighting since 1996 to overthrow the monarchy .\tDT NN VBD NN NNS RBR DT NN CC VBD DT NN POS JJ NN IN VBG TO VB NN IN DT NN IN DT NNS , WP VBP VBN VBG IN CD TO VB DT NN .\nSome economists say cyclone damage to Burma 's key rice-growing areas might cut supplies of the key food and lead to a further increase in global rice prices .\tDT NNS VBP NN NN TO NNP POS JJ JJ NNS MD VB NNS IN DT JJ NN CC VB TO DT JJ NN IN JJ NN NNS .\nBurma , also known as Myanmar , was expected to export about 4,00,000 metric tons of rice this year .\tNNP , RB VBN IN NNP , VBD VBN TO VB IN CD JJ NNS IN NN DT NN .\nThe President of the Thai Rice Exporters Association , Chookiat Ophaswongse , says in a story by the Bloomberg financial news service that , Burma may now have to import rice instead .\tDT NNP IN DT JJ NNP NNP NNP , NNP NNP , VBZ IN DT NN IN DT NNP JJ NN NN IN , NNP MD RB VB TO VB NN RB .\nRice is the staple food for about half of the world 's population and its prices hit record highs in late April after some other rice-producing nations put restrictions on some exports .\tNN VBZ DT NN NN IN IN NN IN DT NN POS NN CC PRP$ NNS VBD NN NNS IN JJ NNP IN DT JJ JJ NNS VBD NNS IN DT NNS .\nWhile in Pakistan , President Bush tried to learn the game of cricket and how it differs from baseball .\tIN IN NNP , NNP NNP VBD TO VB DT NN IN NN CC WRB PRP VBZ IN NN .\nMr. Bush bowled and batted several times on a small cricket pitch set up on the grounds of the U.S. embassy , as students from the Islamabad College for Boys looked on and encouraged him .\tNNP NNP VBD CC VBD JJ NNS IN DT JJ NN NN VBD RP IN DT NNS IN DT NNP NN , IN NNS IN DT NNP NNP IN NNPS VBD IN CC VBD PRP .\nHe got a quick lesson on how to hold the bat from the chairman of the Pakistan Cricket Board , Shaharyar Khan .\tPRP VBD DT JJ NN IN WRB TO VB DT NN IN DT NN IN DT NNP NNP NNP , NNP NNP .\nKhan also explained to the former owner of a Texas baseball team how cricket , the popular sport of the old British empire , differs from baseball .\tNNP RB VBD TO DT JJ NN IN DT NNP NN NN WRB NN , DT JJ NN IN DT JJ JJ NN , NNS IN NN .\nPakistani cricket team captain Inzamam-ul-Haq and famous batsman Salman Butt were also on hand to share their expertise with Mr. Bush .\tJJ NN NN NN NNP CC JJ NN NNP NNP VBD RB IN NN TO VB PRP$ NN IN NNP NNP .\nThe government of Nepal is responding to international criticism of controversial municipal elections held earlier this week .\tDT NN IN NNP VBZ VBG TO JJ NN IN JJ JJ NNS VBN RBR DT NN .\nA statement from Nepal 's foreign ministry Saturday called the criticism objectionable and unacceptable .\tDT NN IN NNP POS JJ NN NNP VBD DT NN JJ CC JJ .\nThe statement further urged foreign governments to refrain from making what it described as ' insolent comments ' about Nepal 's internal affairs .\tDT NN RB VBD JJ NNS TO VB IN VBG WP PRP VBD IN `` JJ NNS `` IN NNP POS JJ NNS .\nThe response followed allegations by several other countries , including India , Japan , Britain and the United States , who all said Wednesday 's vote was flawed .\tDT NN VBD NNS IN JJ JJ NNS , VBG NNP , NNP , NNP CC DT NNP NNPS , WP DT VBD NNP POS NN VBD VBN .\nSeven major opposition parties boycotted the vote and the election sparked almost daily anti-government demonstrations .\tCD JJ NN NNS VBD DT NN CC DT NN VBD RB JJ NN NNS .\nThe vice chairman of Nepal 's cabinet , the royal council of ministers , Tulsi Giri , is promising to proceed with general elections in April regardless of whether opposition parties participate .\tDT NN NN IN NNP POS NN , DT JJ NN IN NNS , NNP NNP , VBZ VBG TO VB IN JJ NNS IN NNP RB IN IN NN NNS VBP .\nKing Gyanendra took absolute power last year with a promise to crush the Maoist rebellion and restore multi-party democracy .\tNNP NNP VBD JJ NN JJ NN IN DT NN TO VB DT NNP NN CC VB JJ NN .\nRussian energy giant Gazprom has blasted European calls to ratify an agreement to guarantee Russian gas shipments to Europe .\tJJ NN NN NNP VBZ VBN JJ NNS TO VB DT NN TO VB JJ NN NNS TO NNP .\nGazprom deputy chief executive Alexander Medvedev Tuesday criticized a proposed energy charter between the EU and Russia , saying the document no longer represents market conditions .\tNNP NN NN NN NNP NNP NNP VBD DT VBN NN NN IN DT NNP CC NNP , VBG DT NN RB RB VBZ NN NNS .\nPart of the charter would require Russia to effectively allow third-party access to the state-owned Gazprom 's export pipeline network .\tNN IN DT NN MD VB NNP TO RB VB JJ NN TO DT JJ NNP POS NN NN NN .\nEurope currently relies on Russia for a quarter of its natural gas .\tNNP RB VBZ IN NNP IN DT NN IN PRP$ JJ NN .\nGazprom officials have threatened to sell the gas elsewhere if European countries move to limit the company 's expansion .\tNNP NNS VBP VBN TO VB DT NN RB IN JJ NNS VBP TO VB DT NN POS NN .\nEarlier this year , Gazprom temporarily cut gas supplies to Ukraine in a price dispute .\tRBR DT NN , NNP RB VBD NN NNS TO VB IN DT NN NN .\nThe blockage sharply reduced deliveries to other European countries , prompting calls from some EU members for applying the bloc 's anti-monopoly rules to the Russian firm .\tDT NN RB VBD NNS TO JJ JJ NNS , VBG NNS IN DT NNP NNS IN VBG DT NN POS JJ NNS TO DT JJ NN .\nFormer Croatian General Ante Gotovina , who many Croats still consider a hero , goes on trial Tuesday in The Hague for war crimes committed during the closing months of the war in Croatia in 1995 .\tJJ JJ NNP NNP NNP , WP JJ NNS RB VBP DT NN , VBZ IN NN NNP IN DT NN IN NN NNS VBN IN DT NN NNS IN DT NN IN NNP IN CD .\nThe United Nations War Crimes Tribunal has charged Gotovina and two other ex-generals - Ivan Cermak and Mladen Markac - with doing nothing while soldiers murdered at least 37 ethnic Serbs in Krajina .\tDT NNP NNP NNP NNP NNP VBZ VBN NNP CC CD JJ NNS : NNP NNP CC NNP NNP : IN VBG DT IN NNS VBN IN JJS CD JJ NNS IN NNP .\nThe troops also burned and plundered villages , and stabbed civilians who tried to escape .\tDT NNS RB VBD CC VBD NNS , CC VBD NNS WP VBD TO VB .\nThe court says some family members were forced to watch their relatives being killed .\tDT NN VBZ DT NN NNS VBD VBN TO VB PRP$ NNS VBG VBN .\nAll three defendants have pleaded not guilty .\tDT CD NNS VBP VBN RB JJ .\nGotovina was indicted in 2001 but was at large until his arrest four years later in the Canary Islands .\tNNP VBD VBN IN CD CC VBD IN JJ IN PRP$ NN CD NNS RB IN DT NNP NNP .\nMany Croats regard Gotovina as a national hero for re-taking Croatian land seized by Serb rebels .\tJJ NNS VBP NNP IN DT JJ NN IN JJ JJ NN VBN IN JJ NNS .\nWestern and Muslim leaders and activists are meeting in Austria for a conference on Islam and ways to promote understanding between Muslims and non-Muslims .\tNNP CC NNP NNS CC NNS VBP VBG IN NNP IN DT NN IN NNP CC NNS TO VB NN IN NNPS CC NNPS .\nAustrian Foreign Minister Ursula Plassnik says the three-day ' Islam in a Pluralistic World ' is also aimed at increasing dialogue between different religions .\tJJ JJ NN NNP NNP VBZ DT JJ `` NNP IN DT JJ NN `` VBZ RB VBN IN VBG NN IN JJ NNS .\nScheduled speakers include Afghan President Hamid Karzai and Iraqi President Jalal Talabani who is expected to discuss Islam 's role in a world of interwoven interests and economies .\tVBN NNS VBP JJ NNP NNP NNP CC JJ NNP NNP NNP WP VBZ VBN TO VB NNP POS NN IN DT NN IN JJ NNS CC NNS .\nOther attendees include former Iranian president Mohammed Khatami and Iranian human rights attorney Shirin Ebadi , who won the 2003 Nobel Peace Prize .\tJJ NNS VBP JJ JJ NN NNP NNP CC JJ JJ NNS NN NNP NNP , WP VBD DT CD NNP NNP NNP .\nThe conference comes as the riots in France have forced new dialogue on how Muslims are viewed in European society .\tDT NN VBZ IN DT NNS IN NNP VBP VBN JJ NN IN WRB NNS VBP VBN IN JJ NN .\nIf the housing crisis is not pressing enough , rising credit card debt is creating more hardship for many Americans .\tIN DT NN NN VBZ RB VBG RB , VBG NN NN NN VBZ VBG JJR NN IN JJ NNS .\nAn analysis by the newspaper USA Today shows credit card debt grew between 2001 and early 2006 , fueled in part , by rising home equity , the value of a home minus its outstanding loans .\tDT NN IN DT NN NNP NNP VBZ NN NN NN VBD IN CD CC RB CD , VBN IN NN , IN VBG NN NN , DT NN IN DT NN NN PRP$ JJ NNS .\nSome consumer advocates blame the banking industry for taking advantage of homeowners who now find themselves in a credit trap .\tDT NN NNS VBP DT NN NN IN VBG NN IN NNS WP RB VBP PRP IN DT NN NN .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nAl-Qaida 's number two leader has appeared in a video praising Abu Musab al-Zarqawi , the leader of al-Qaida in Iraq killed on June seventh by a U.S. air strike .\tNNP POS NN CD NN VBZ VBN IN DT NN VBG NNP NNP NNP , DT NN IN NNP IN NNP VBD IN NNP JJ IN DT NNP NN NN .\nAyman al-Zawahiri 's video aired Friday on Al Jazeera .\tNNP NNP POS NN VBD NNP IN NNP NNP .\nIn it , Zawahiri appeared in front of a portrait of Zarqawi .\tIN PRP , NNP VBD IN NN IN DT NN IN NNP .\nHe called Zarqawi the prince of martyrs and said that no member of al-Qaida would die without avenging him .\tPRP VBD NNP DT NN IN NNS CC VBD IN DT NN IN NNP MD VB IN VBG PRP .\nHe also criticized several Iraqi government officials and the U.S. Ambassador to Iraq .\tPRP RB VBD JJ JJ NN NNS CC DT NNP NN TO NNP .\nZawahiri did not mention Zarqawi 's successor as leader of al-Qaida in Iraq , Abu Hamza al-Muhajer .\tNNP VBD RB VB NNP POS NN IN NN IN NNP IN NNP , NNP NNP NNP .\nThe omission may mean the tape was made before Muhajer was appointed or that Zawahiri does not endorse him .\tDT NN MD VB DT NN VBD VBN IN NNP VBD VBN CC IN NNP VBZ RB VB PRP .\nZawahiri , along with al-Qaida chief Osama bin Laden , is thought to be hiding somewhere along the rugged border dividing Afghanistan and Pakistan .\tNNP , IN IN NNP NN NNP NNP NNP , VBZ VBN TO VB VBG RB IN DT JJ NN VBG NNP CC NNP .\nThousands of Cubans gathered around the U.S. diplomatic office in Havana Tuesday , to demonstrate against what President Fidel Castro has called ' provocations ' from Washington .\tNNS IN NNS VBD IN DT NNP JJ NN IN NNP NNP , TO VB IN WP NNP NNP NNP VBZ VBN `` NNS `` IN NNP .\nThe marchers are protesting an electronic message board posted on the side of the building that since last week has been displaying passages from the Universal Declaration of Human Rights and quotes from slain American civil rights leader , Martin Luther King .\tDT NNS VBP VBG DT JJ NN NN VBD IN DT NN IN DT NN IN IN JJ NN VBZ VBN VBG NNS IN DT NNP NNP IN NNP NNPS CC NNS IN JJ JJ JJ NNS NN , NNP NNP NNP .\nMr. Castro called for the march on Sunday during a speech on national television , accusing Washington of human rights violations in Iraq and Afghanistan .\tNNP NNP VBD IN DT NN IN NNP IN DT NN IN JJ NN , VBG NNP IN JJ NNS NNS IN NNP CC NNP .\nTuesday 's march also was timed to coincide with the court appearance of Cuban exile Luis Posada Carriles , who is being held at a U.S. federal detention center on immigration charges .\tNNP POS NN RB VBD VBN TO VB IN DT NN NN IN JJ NN NNP NNP NNP , WP VBZ VBG VBN IN DT NNP JJ NN NN IN NN NNS .\nCuba says the Bush administration is protecting Posada Carriles , who is wanted for his alleged role in the bombing of a Cuban airliner in 1976 .\tNNP VBZ DT NNP NN VBZ VBG NNP NNP , WP VBZ VBN IN PRP$ JJ NN IN DT NN IN DT JJ NN IN CD .\nNigeria 's president has inaugurated the nation 's energy board with a promise to commission the country 's first nuclear power plant within 10 to 12 years .\tNNP POS NN VBZ VBN DT NN POS NN NN IN DT NN TO NN DT NN POS JJ JJ NN NN IN CD CC CD NNS .\nPresident Olusegun Obasanjo said Monday in the capital , Abuja , that the nuclear capacity would be strictly for peaceful purposes to strengthen the nation 's electrical system .\tNNP NNP NNP VBD NNP IN DT NN , NNP , IN DT JJ NN MD VB RB IN JJ NNS TO VB DT NN POS JJ NN .\nHe stressed that Nigeria is ' unequivocally committed to the Nuclear Non-Proliferation Treaty . '\tPRP VBD IN NNP VBZ `` RB VBN TO DT NNP NNP NNP . ``\nMr. Obasanjo made the comments to the Nigeria Atomic Energy Commission , which he chairs .\tNNP NNP VBD DT NNS TO DT NNP NNP NNP NNP , WDT PRP VBZ .\nHe said the commission will be working to enhance electricity capabilities for Nigeria 's impoverished population .\tPRP VBD DT NN MD VB VBG TO VB NN NNS IN NNP POS JJ NN .\nIsrael says clashes have broken out between Israeli forces and Hezbollah guerrillas on the Lebanon border for a second straight day .\tNNP VBZ NNS VBP VBN RP IN JJ NNS CC NNP NNS IN DT NNP NN IN DT JJ JJ NN .\nThe Israeli army said the fighting in the Shebaa Farms region erupted early Thursday , and was continuing .\tDT JJ NN VBD DT NN IN DT NNP NNP NN VBD RB NNP , CC VBD VBG .\nBut , a Hezbollah spokesman told Reuters news service in Beirut that guerrilla fighters did not respond to Israeli firing .\tCC , DT NNP NN VBD NNP NN NN IN NNP IN NN NNS VBD RB VB TO JJ NN .\nWednesday , one Israeli soldier and one Hezbollah fighter were killed , when guerillas fired rockets on Israeli military positions , and Israeli warplanes bombed targets in a village nearby .\tNNP , CD JJ NN CC CD NNP NN VBD VBN , WRB NNS VBD NNS IN JJ JJ NNS , CC JJ NNS VBD NNS IN DT NN RB .\nShebaa Farms has been the focus of Hezbollah attacks and Israeli counter-attacks since Israel withdrew from southern Lebanon in 2000 , after a 22-year occupation .\tNNP NNP VBZ VBN DT NN IN NNP NNS CC JJ NNS IN NNP VBD IN JJ NNP IN CD , IN DT JJ NN .\nLebanon and Syria say the area is Lebanese .\tNNP CC NNP VBP DT NN VBZ JJ .\nBut cartographers say it belongs to a part of Syria that has been occupied by Israel since the 1967 war .\tCC NNS VBP PRP VBZ TO DT NN IN NNP WDT VBZ VBN VBN IN NNP IN DT CD NN .\nSouth Africa 's ruling party has promised to improve services and create jobs for the country 's poor majority .\tNNP NNP POS NN NN VBZ VBN TO VB NNS CC VB NNS IN DT NN POS JJ NN .\nPresident Thabo Mbeki unveiled a $ 65 billion spending plan Sunday at a rally launching the African National Congress ' campaign for municipal elections .\tNNP NNP NNP VBD DT $ CD CD NN NN NNP IN DT NN VBG DT NNP NNP NNP POS NN IN JJ NNS .\nThe ANC 's election manifesto says the money would be used to build roads , dams , power plants , rail networks , and communications infrastructure .\tDT NNP POS NN NN VBZ DT NN MD VB VBN TO VB NNS , NNS , NN NNS , NN NNS , CC NNS NN .\nIt says every household will have access to running water , electricity , and decent sanitation by 2012 .\tPRP VBZ DT NN MD VB NN TO VBG NN , NN , CC JJ NN IN CD .\nThe ANC has ruled South Africa since the end of apartheid in 1994 but faces growing dissent over poor basic services and Mr. Mbeki 's firing of popular Deputy President Jacob Zuma .\tDT NNP VBZ VBN NNP NNP IN DT NN IN NN IN CD CC VBZ VBG NN IN JJ JJ NNS CC NNP NNP POS NN IN JJ NNP NNP NNP NNP .\nThe ANC says Mr. Zuma , who faces rape and corruption charges , will still help the party campaign for the March 1 elections .\tDT NNP VBZ NNP NNP , WP VBZ NN CC NN NNS , MD RB VB DT NN NN IN DT NNP CD NNS .\nGerman Chancellor Gerhard Schroeder and his challenger , Angela Merkel , are campaigning in the eastern city of Dresden ahead of Sunday 's vote for the only seat left undecided in this month 's parliamentary elections .\tJJ NNP NNP NNP CC PRP$ NN , NNP NNP , VBP VBG IN DT JJ NN IN NNP RB IN NNP POS NN IN DT JJ NN VBD JJ IN DT NN POS JJ NNS .\nBoth sides hope to gain an edge in talks on a new government after the inconclusive September 18 balloting left Ms. Merkel 's Christian Democrats just three seats ahead of the Chancellor 's Social Democrats .\tDT NNS VBP TO VB DT NN IN NNS IN DT JJ NN IN DT JJ NNP CD NN VBD NNP NNP POS NNP NNPS RB CD NNS RB IN DT NNP POS NNP NNPS .\nThe two sides have been discussing forming a so-called ' Grand Coalition ' of their two parties after neither side could get enough backing in parliament to form a government .\tDT CD NNS VBP VBN VBG VBG DT JJ `` NNP NNP `` IN PRP$ CD NNS IN DT NN MD VB JJ NN IN NN TO VB DT NN .\nBut the talks are stalled because both Chancellor Schroeder and Ms. Merkel continue to claim the right to be the next chancellor .\tCC DT NNS VBP VBN IN DT NNP NNP CC NNP NNP VBP TO VB DT NN TO VB DT JJ NN .\nSunday 's Dresden vote was delayed for two weeks by the death of a candidate from a far-right party shortly before the election .\tNNP POS NNP NN VBD VBN IN CD NNS IN DT NN IN DT NN IN DT JJ NN RB IN DT NN .\nGerman Chancellor Gerhard Schroeder has confirmed that he will not be part of the country 's next government to be headed by Christian Democratic Union leader Angela Merkel .\tJJ NNP NNP NNP VBZ VBN IN PRP MD RB VB NN IN DT NN POS JJ NN TO VB VBN IN NNP NNP NNP NN NNP NNP .\nMr. Schroeder made the comment Wednesday in a speech to trade union members in his hometown of Hanover .\tNNP NNP VBD DT NN NNP IN DT NN TO VB NN NNS IN PRP$ NN IN NNP .\nMs. Merkel 's conservative party narrowly beat Mr. Schroeder 's Social Democrats in the September 18 parliamentary elections .\tNNP NNP POS JJ NN RB VBD NNP NNP POS NNP NNPS IN DT NNP CD JJ NNS .\nThe two parties agreed to a coalition deal Monday under which Ms. Merkel will become the new chancellor while the Social Democrats control a majority of cabinet posts .\tDT CD NNS VBD TO DT NN NN NNP IN WDT NNP NNP MD VB DT JJ NN IN DT NNP NNPS VBP DT NN IN NN NNS .\nIn Washington , a White House spokesman says President Bush telephoned Ms. Merkel to congratulate her on her selection as chancellor .\tIN NNP , DT NNP NNP NN VBZ NNP NNP VBD NNP NNP TO VB PRP IN PRP$ NN IN NN .\nMr. Bush said he looks forward to working with her to build a strong foundation of U.S.-German relations .\tNNP NNP VBD PRP VBZ RB TO VBG IN PRP TO VB DT JJ NN IN JJ NNS .\nA new United Nations report says insurgent and terrorist violence in Afghanistan sharply increased last year , with more than 8,000 conflict-related deaths .\tDT JJ NNP NNPS NN VBZ JJ CC JJ NN IN NNP RB VBD JJ NN , IN JJR IN CD JJ NNS .\nIn his report issued Monday , U.N. Secretary-General Ban Ki-moon said he is concerned that a fifth of those killed were civilians .\tIN PRP$ NN VBN NNP , NNP NN NNP NNP VBD PRP VBZ VBN IN DT NN IN DT VBN VBD NNS .\nHe also cited increased attacks on humanitarian workers and aid convoys .\tPRP RB VBD VBN NNS IN JJ NNS CC NN NNS .\nMr. Ban said Taliban insurgents , related armed groups and drug trafficking all represent serious threats to Afghanistan 's stability , with violence spreading to the previously calm northwest .\tNNP NNP VBD NNP NNS , VBN JJ NNS CC NN NN DT VBP JJ NNS TO NNP POS NN , IN NN VBG TO DT RB JJ NN .\nHis report also highlights the way the conflict has changed from a conventional war between western forces and the Taliban to an insurgency using suicide attacks , assassinations , abductions and roadside bombings .\tPRP$ NN RB VBZ DT NN DT NN VBZ VBN IN DT JJ NN IN JJ NNS CC DT NNP TO DT NN VBG NN NNS , NNS , NNS CC NN NNS .\nAs expected , Mr. Ban recommended that the mandate for the U.N. mission in Afghanistan - which expires later this month - be extended for another year .\tIN VBN , NNP NNP VBD IN DT NN IN DT NNP NN IN NNP : WDT VBZ RB DT NN : VB VBN IN DT NN .\nThe U.S. military says one U.S. Marine and one Afghan government soldier have been killed in fighting with militants in eastern Afghanistan .\tDT NNP NN VBZ CD NNP NNP CC CD JJ NN NN VBP VBN VBN IN VBG IN NNS IN JJ NNP .\nA military statement says four other Afghan soldiers were wounded in the clash Thursday as they tried to ' disrupt enemy forces ' in Kunar province to prepare for next month 's parliamentary elections .\tDT JJ NN VBZ CD JJ JJ NNS VBD VBN IN DT NN NNP IN PRP VBD TO `` VB NN NNS `` IN NNP NN TO VB IN JJ NN POS JJ NNS .\nThe wounded Afghan soldiers were taken to a nearby U.S. base in the city of Asadabad for treatment .\tDT JJ JJ NNS VBD VBN TO DT JJ NNP NN IN DT NN IN NNP IN NN .\nTwo of them later returned to duty .\tCD IN PRP RB VBD TO NN .\nThe deaths came on the same day that two U.S. soldiers were killed by a roadside bomb in the southern province of Kandahar .\tDT NNS VBD IN DT JJ NN IN CD NNP NNS VBD VBN IN DT NN NN IN DT JJ NN IN NNP .\nViolence in Afghanistan has surged in recent months as Taleban insurgents try to sabotage next month 's parliamentary polls .\tNN IN NNP VBZ VBN IN JJ NNS IN NNP NNS VBP TO VB JJ NN POS JJ NNS .\nRescuers in Latin America have resumed their search Friday for survivors of mudslides and floodwaters triggered by Hurricane Stan .\tNNS IN NNP NNP VBP VBN PRP$ NN NNP IN NNS IN NNS CC NNS VBN IN NNP NNP .\nAt least 223 people have been killed and many others are missing in Latin America after several days of heavy rains , mudslides and flooding from the storm , which came ashore Tuesday on Mexico 's eastern Gulf Coast .\tIN JJS CD NNS VBP VBN VBN CC JJ NNS VBP VBG IN NNP NNP IN JJ NNS IN JJ NNS , NNS CC NN IN DT NN , WDT VBD RB NNP IN NNP POS JJ NNP NNP .\nRescuers in Guatemala Thursday pulled 40 bodies from a mudslide about 100 kilometers west of Guatemala City .\tNNS IN NNP NNP VBD CD NNS IN DT NN IN CD NNS JJS IN NNP NNP .\nScores of other people were killed in Mexico and Central America after the storm ripped through the region , knocking down power lines and ripping apart houses .\tNNS IN JJ NNS VBD VBN IN NNP CC NNP NNP IN DT NN VBD IN DT NN , VBG RP NN NNS CC VBG RB NNS .\nTens of thousands of people fled their homes , and many remain homeless .\tNNS IN NNS IN NNS VBD PRP$ NNS , CC JJ VBP JJ .\nThe United Nations says it is rushing assistance to El Salvador and Costa Rica , and remains ready to mobilize international support for emergency relief and recovery efforts .\tDT NNP NNP VBZ PRP VBZ VBG NN TO NNP NNP CC NNP NNP , CC VBZ JJ TO VB JJ NN IN NN NN CC NN NNS .\nBurmese officials say ethnic Karen rebels attacked a convoy of trucks and buses on a highway in southern Burma , killing eight people and wounding 15 others .\tJJ NNS VBP JJ NNP NNS VBD DT NN IN NNS CC NNS IN DT NN IN JJ NNP , VBG CD NNS CC VBG CD NNS .\nOfficials say a gunfight broke out between security forces and the Karen National Union rebels during the pre-dawn attack Thursday on two trucks and 12 passenger buses along the Dawei-Ye highway between Dawei and Rangoon .\tNNS VBP DT NN VBD RP IN NN NNS CC DT NNP NNP NNP NNS IN DT JJ NN NNP IN CD NNS CC CD NN NNS IN DT JJ NN IN NNP CC NNP .\nAmong the dead were a university student and a teacher .\tIN DT NN VBD DT NN NN CC DT NN .\nThe vehicles included two buses carrying students and lecturers from Dawei University .\tDT NNS VBD CD NNS VBG NNS CC NNS IN NNP NNP .\nThe rebels are reported to have taken about $ 3,400 in cash and jewelry from passengers before the gunmen fled .\tDT NNS VBP VBN TO VB VBN RB $ CD IN NN CC NN IN NNS IN DT NNS VBD .\nThe KNU is the only major rebel group not to have signed a cease-fire with the military government .\tDT NNP VBZ DT RB JJ NN NN RB TO VB VBN DT NN IN DT JJ NN .\nPakistan 's President Asif Ali Zardari is meeting Britain 's Prime Minister David Cameron on Thursday for the first time since the British leader 's remarks suggesting that Islamabad is promoting ' the export of terror . '\tNNP POS NNP NNP NNP NNP VBZ VBG NNP POS NNP NNP NNP NNP IN NNP IN DT JJ NN IN DT JJ NN POS NNS VBG IN NNP VBZ VBG `` DT NN IN NN . ``\nMr. Zardari will have dinner with Mr. Cameron at the British prime minister 's country retreat Chequers , outside London .\tNNP NNP MD VB NN IN NNP NNP IN DT JJ JJ NN POS NN NN NNP , IN NNP .\nThe leaders hold formal talks on Friday .\tDT NNS VBP JJ NNS IN NNP .\nDuring a trip to India last week , Prime Minister Cameron suggested Pakistan was not doing enough to counter terrorist groups within its borders that threaten India , Afghanistan and other nations .\tIN DT NN TO NNP JJ NN , NNP NNP NNP VBD NNP VBD RB VBG RB TO VB JJ NNS IN PRP$ NNS WDT VBP NNP , NNP CC JJ NNS .\nThe comments angered Pakistan .\tDT NNS VBD NNP .\nEarlier this week President Zardari told the French newspaper Le Monde that Pakistan is paying the ' highest price of human life ' in the war on terrorism .\tRBR DT NN NNP NNP VBD DT JJ NN NNP NNP IN NNP VBZ VBG DT `` JJS NN IN JJ NN `` IN DT NN IN NN .\nMr. Cameron has stood by his remarks .\tNNP NNP VBZ VBN IN PRP$ NNS .\nPresident Zardari traveled to Britain from France on Tuesday .\tNNP NNP VBD TO NNP IN NNP IN NNP .\nEuropean Union officials have confirmed the first outbreak of the deadly H5N1 strain of bird flu in an EU country this year .\tNNP NNP NNS VBP VBN DT JJ NN IN DT JJ NNP NN IN NN NN IN DT NNP NN DT NN .\nEuropean Commission officials say laboratory tests have confirmed the presence of the deadly strain in geese found dead in Csongrad County in southeastern Hungary .\tJJ NNP NNS VBP NN NNS VBP VBN DT NN IN DT JJ NN IN NNS VBN JJ IN NNP NNP IN JJ NNP .\nThey say tests were conducted because of an abnormally high mortality rate among the birds .\tPRP VBP NNS VBD VBN IN IN DT RB JJ NN NN IN DT NNS .\nHungarian officials have slaughtered all 3,000 birds in the affected flock .\tJJ NNS VBP VBN DT CD NNS IN DT JJ NN .\nThey also have set up a three-kilometer protection zone and a 10-kilometer surveillance zone around the area .\tPRP RB VBP VBN RP DT JJ NN NN CC DT JJ NN NN IN DT NN .\nThe discovery is the first in an EU country since last August .\tDT NN VBZ DT NN IN DT NNP NN IN JJ NNP .\nEU experts are to meet Friday to review the situation .\tNNP NNS VBP TO VB NNP TO VB DT NN .\nMeanwhile , Croatia has banned poultry imports from Hungary following the announcement .\tRB , NNP VBZ VBN JJ NNS IN NNP VBG DT NN .\nBird flu has killed more than 150 people worldwide since 2003 , mostly in Asia .\tNN NN VBZ VBN JJR IN CD NNS JJ IN CD , RB IN NNP .\nThe U.S. men 's national football team has completed a 10-day training camp in Cary , North Carolina ahead of the World Cup finals next month in Germany .\tDT NNP NNS POS JJ NN NN VBZ VBN DT JJ NN NN IN NNP , NNP NNP RB IN DT NNP NNP NNS JJ NN IN NNP .\nU.S. coach Bruce Arena says he is satisfied that his team is healthy and ready for the first of three tuneup games .\tNNP NN NNP NNP VBZ PRP VBZ VBN IN PRP$ NN VBZ JJ CC JJ IN DT NN IN CD NN NNS .\nAt Sunday 's final practice , Arena reminded his players numerous times not to fight too hard for the ball and save their aggression for World Cup games .\tIN NNP POS JJ NN , NNP VBD PRP$ NNS JJ NNS RB TO VB RB JJ IN DT NN CC VB PRP$ NN IN NNP NNP NNS .\nThe Americans host Morocco on Tuesday in Nashville , Tennessee before facing Venezuela on Friday in Cleveland , Ohio .\tDT NNS VBP NNP IN NNP IN NNP , NNP IN VBG NNP IN NNP IN NNP , NNP .\nThe last warmup game is next Sunday against Latvia in East Hartford , Connecticut .\tDT JJ NN NN VBZ JJ NNP IN NNP IN NNP NNP , NNP .\nThe Americans , who made an impressive quarterfinal run at the 2002 World Cup , will face the Czech Republic , Italy and Ghana next month at the global football tournament .\tDT NNS , WP VBD DT JJ JJ NN IN DT CD NNP NNP , MD VB DT JJ NNP , NNP CC NNP JJ NN IN DT JJ NN NN .\nRussia has criticized a recent White House report that calls for greater democratic reforms in Russia 's neighbors .\tNNP VBZ VBN DT JJ NNP NNP NN WDT VBZ IN JJR JJ NNS IN NNP POS NNS .\nIn a statement Monday , Russia 's foreign ministry said the report showed that U.S. officials are seeking an active democracy-building role in the region .\tIN DT NN NNP , NNP POS JJ NN VBD DT NN VBD IN NNP NNS VBP VBG DT JJ JJ NN IN DT NN .\nIt warned that , in its words , ' artificial ' and ' forceful ' attempts at planting democracy in other countries may not be successful .\tPRP VBD IN , IN PRP$ NNS , `` JJ `` CC `` JJ `` NNS IN VBG NN IN JJ NNS MD RB VB JJ .\nIt added that no one has a monopoly on interpreting the basis of democracy .\tPRP VBD IN DT NN VBZ DT NN IN VBG DT NN IN NN .\nThe statement follows the release last week of President Bush 's new national security strategy , which criticized Russia for falling off the path to democracy .\tDT NN VBZ DT NN JJ NN IN NNP NNP POS JJ JJ NN NN , WDT VBD NNP IN VBG RP DT NN TO NN .\nReferring to Russia , it said recent trends ' regrettably point toward a diminishing commitment to democratic freedoms and institutions . '\tVBG TO NNP , PRP VBD JJ NNS `` RB NN IN DT VBG NN TO JJ NNS CC NNS . ``\nMr. Bush said future relations will depend on Russia 's domestic and foreign policies .\tNNP NNP VBD JJ NNS MD VB IN NNP POS JJ CC JJ NNS .\nA top international security organization has urged the candidates in Kyrgyzstan 's July 10 presidential election to agree to a code of conduct for the sake of the country 's stability .\tDT JJ JJ NN NN VBZ VBN DT NNS IN NNP POS NNP CD JJ NN TO VB TO DT NN IN NN IN DT NN IN DT NN POS NN .\nThe statement by the Organization for Security and Cooperation in Europe comes more than two months after a popular uprising ousted President Askar Akayev .\tDT NN IN DT NNP IN NNP CC NNP IN NNP VBZ JJR IN CD NNS IN DT JJ NN VBD NNP NNP NNP .\nMr. Akayev fled to Russia in March after a revolt spurred by complaints over vote-rigging in parliamentary elections earlier this year .\tNNP NNP VBD TO NNP IN NNP IN DT NN VBN IN NNS IN NN IN JJ NNS RBR DT NN .\nEarlier Wednesday , several dozen young people forced their way into Kyrgyzstan 's Supreme Court building and evicted supporters of rival political groups who occupied the building since April .\tRBR NNP , JJ NN JJ NNS VBD PRP$ NN IN NNP POS NNP NNP NN CC VBN NNS IN JJ JJ NNS WP VBD DT NN IN NNP .\nWitnesses say several people were injured in the fighting .\tNNS VBP JJ NNS VBD VBN IN DT NN .\nThe activists forced to flee the building backed politicians who had been disqualified by courts from running in this year 's parliamentary elections .\tDT NNS VBN TO VB DT NN VBD NNS WP VBD VBN VBN IN NNS IN VBG IN DT NN POS JJ NNS .\nA Venezuela-based television station begins limited broadcasts Sunday as a counter to what its creators say is biased media coverage by European and U.S.-run channels .\tDT JJ NN NN VBZ JJ NNS NNP IN DT NN TO WP PRP$ NNS VBP VBZ JJ NNS NN IN JJ CC JJ NNS .\nTelesur is a joint venture funded by Venezuela , Argentina , Cuba and Uruguay .\tNNP VBZ DT JJ NN VBN IN NNP , NNP , NNP CC NNP .\nOrganizers say they aim to develop a hemispheric television network to provide programs from a Latin American perspective .\tNNS VBP PRP VBP TO VB DT JJ NN NN TO VB NNS IN DT JJ JJ NN .\nThe U.S. House of Representatives on Wednesday passed an amendment authorizing radio and television broadcasts to Venezuela .\tDT NNP NNP IN NNPS IN NNP VBD DT NN VBG NN CC NN NNS TO NNP .\nThe amendment was to a bill authorizing State Department programs .\tDT NN VBD TO DT NN VBG NNP NNP NNS .\nThe amendment 's author , Florida Republican Connie Mack , said the U.S. broadcasts would offer what he called a consistently accurate , objective and comprehensive source of news to Venezuela .\tDT NN POS NN , NNP NNP NNP NNP , VBD DT NNP NNS MD VB WP PRP VBD DT RB JJ , JJ CC JJ NN IN NN TO NNP .\nThe measure still requires Senate approval .\tDT NN RB VBZ NNP NN .\nVenezuelan President Hugo Chavez says his government will ' jam the signal ' of any broadcasts from the United States .\tJJ NNP NNP NNP VBZ PRP$ NN MD `` VB DT NN `` IN DT NNS IN DT NNP NNPS .\nUkrainian lawmakers have set Tuesday for a repeat vote on Yulia Tymoshenko 's nomination as prime minster .\tJJ NNS VBP VBN NNP IN DT NN NN IN NNP NNP POS NN IN JJ NN .\nMembers of the unicameral parliament Verkhovna Rada also agreed Friday to vote by raising hands to ensure transparency .\tNNS IN DT JJ NN NNP NNP RB VBD NNP TO VB IN VBG NNS TO VB NN .\nMs. Tymoshenko failed to win the absolute majority by one vote Tuesday .\tNNP NNP VBD TO VB DT JJ NN IN CD NN NNP .\nMs. Tymoshenko accused her political rivals of tampering with the electronic voting system , saying the device failed to register two votes cast in her favor .\tNNP NNP VBD PRP$ JJ NNS IN VBG IN DT JJ NN NN , VBG DT NN VBD TO VB CD NNS VBN IN PRP$ NN .\nThe vote will follow President Viktor Yushchenko 's decision Wednesday to again nominate her for the post .\tDT NN MD VB NNP NNP NNP POS NN NNP TO RB VB PRP IN DT NN .\nBelgian tennis star Justine Henin-Hardenne has won the women 's title at the Sydney International tournament in Australia .\tJJ NN NN NNP NNP VBZ VBN DT NNS POS NN IN DT NNP NNP NN IN NNP .\nShe lost the first set and trailed Italian Francesca Schiavone 04-Jan in the second set before rallying to win Friday 's final , 04-Jun , 07-May , 07-May .\tPRP VBD DT JJ NN CC VBD JJ NNP NNP CD IN DT JJ NN IN VBG TO VB NNP POS JJ , CD , CD , CD .\nTwo years ago , Henin-Hardenne won this tournament and went on to take the season 's first major at the Australian Open two weeks later .\tCD NNS RB , NNP VBD DT NN CC VBD IN TO VB DT NN POS JJ JJ IN DT JJ NNP CD NNS RB .\nThis year 's Australian Open begins Monday .\tDT NN POS JJ NN VBZ NNP .\nEarlier in the day , in a men 's semifinal , American James Blake overcame a 04-Feb first-set deficit to upset second-seeded Nikolay Davydenko of Russia , 06-Apr , 06-Feb .\tRBR IN DT NN , IN DT NNS POS JJ , JJ NNP NNP VBD DT JJ JJ NN TO VB JJ NNP NNP IN NNP , CD , CD .\nBlake will play the Sydney final on Saturday against Russia 's Igor Andreev , who beat Andreas Seppi of Italy , 06-Feb , 02-Jun , 06-Feb .\tNNP MD VB DT NNP JJ IN NNP IN NNP POS NNP NNP , WP VBD NNP NNP IN NNP , CD , CD , CD .\nAndreev and Blake will be vying for their fourth career ATP tournament wins .\tNNP CC NNP MD VB VBG IN PRP$ JJ NN NNP NN NNS .\nUkrainian troops have joined their U.S. counterparts in NATO military exercises as tensions mount over the aspirations of former Soviet republics to enter the alliance .\tJJ NNS VBP VBN PRP$ NNP NNS IN NNP JJ NNS IN NNS VBP IN DT NNS IN JJ JJ NNS TO VB DT NN .\nThe two-week NATO ' Sea Breeze ' exercises along the Black Sea coast also include forces from Armenia , Azerbaijan , Georgia , and key countries of western Europe .\tDT JJ NNP `` NNP NNP `` NNS IN DT NNP NNP NN RB VBP NNS IN NNP , NNP , NNP , CC JJ NNS IN JJ NNP .\nTurkey , Macedonia and Latvia are also participating .\tNNP , NNP CC NNP VBP RB VBG .\nThe exercises include naval and air maneuvers as well as large-scale armored exercises .\tDT NNS VBP JJ CC NN NNS RB RB IN JJ JJ NNS .\nSeparate maneuvers are being held this week in Georgia .\tJJ NNS VBP VBG VBN DT NN IN NNP .\nArmenian , Azerbaijani , Ukrainian and U.S. troops are participating .\tJJ , NNP , JJ CC NNP NNS VBP VBG .\nSmall groups of anti-NATO protesters were reported encamped along the Ukrainian coast .\tJJ NNS IN JJ NNS VBD VBN VBN IN DT JJ NN .\nUkraine and Georgia are actively seeking NATO membership , despite official warnings that Moscow will not tolerate an additional NATO presence on its borders .\tNNP CC NNP VBP RB VBG NNP NN , IN JJ NNS IN NNP MD RB VB DT JJ NNP NN IN PRP$ NNS .\nLast month , Ukraine 's pro-Western leadership hosted a NATO delegation , which was also confronted by several hundred anti-alliance protesters .\tJJ NN , NNP POS JJ NN VBD DT NNP NN , WDT VBD RB VBN IN JJ CD JJ NNS .\nNew York City Mayor Michael Bloomberg says a strike by the city 's transit union is ' morally reprehensible . '\tNNP NNP NNP NNP NNP NNP VBZ DT NN IN DT NN POS NN NN VBZ `` RB JJ . ``\nThe union went on strike early this Tuesday morning after negotiations broke down with the state 's transportation authority .\tDT NN VBD IN NN RB DT NNP NN IN NNS VBD RP IN DT NN POS NN NN .\nThe walkout will shutdown the city 's huge bus and subway network , and throw the daily commute of its seven million customers into chaos .\tDT NN MD VB DT NN POS JJ NN CC NN NN , CC VB DT JJ NN IN PRP$ CD CD NNS IN NN .\nMr. Bloomberg says he will ask a judge to take legal action against the union .\tNNP NNP VBZ PRP MD VB DT NN TO VB JJ NN IN DT NN .\nContract talks between the two sides have deadlocked over such issues as wage increases and at what age new employees will be eligible to receive a full pension .\tNN NNS IN DT CD NNS VBP VBN IN JJ NNS IN NN NNS CC IN WP NN JJ NNS MD VB JJ TO VB DT JJ NN .\nUnion head Roger Toussaint calls the dispute a fight over whether ' hard work will be rewarded with a decent retirement . '\tNN NN NNP NNP VBZ DT NN DT NN IN IN `` JJ NN MD VB VBN IN DT JJ NN . ``\nAn emergency plan is in effect to prevent massive traffic jams on New York 's streets .\tDT NN NN VBZ IN NN TO VB JJ NN NNS IN NNP NNP POS NNS .\nFormer U.S. president Bill Clinton has signed an agreement with the Cambodian government to expand medical treatment for children living with H.I.V. and AIDS .\tJJ NNP NN NNP NNP VBZ VBN DT NN IN DT JJ NN TO VB JJ NN IN NNS VBG IN NNP CC NNP .\nMr. Clinton and Cambodian Prime Minister Hun Sen signed the deal Monday in the capital , Phnom Penh .\tNNP NNP CC JJ NNP NNP NNP NNP VBD DT NN NNP IN DT NN , NNP NNP .\nThe former president is in Cambodia to tour AIDS-related projects and local organizations supported by his development group , the Clinton Foundation H.I.V./AIDS Initiative .\tDT JJ NN VBZ IN NNP TO VB JJ NNS CC JJ NNS VBN IN PRP$ NN NN , DT NNP NNP NNP NNP .\nMr. Clinton praised the government for making ' steadfast ' efforts to fight H.I.V . He said there is hope Cambodia can be a model for the rest of Asia and possibly the world .\tNNP NNP VBD DT NN IN VBG `` JJS `` NNS TO VB NNP . PRP VBD EX VBZ NN NNP MD VB DT NN IN DT NN IN NNP CC RB DT NN .\nCambodia has reduced adult infection rates from about three percent in 1998 , to just under two percent in 2004 .\tNNP VBZ VBN NN NN NNS IN IN CD NN IN CD , TO RB IN CD NN IN CD .\nThe country still has one of the highest AIDS prevalence rates in the region .\tDT NN RB VBZ CD IN DT JJS NNP NN NNS IN DT NN .\nPrime Minister Hun Sen says Mr. Clinton 's visit will raise awareness about H.I.V. and help prevent discrimination against people living with the virus .\tNNP NNP NNP NNP VBZ NNP NNP POS NN MD VB NN IN NNP CC VB VB NN IN NNS VBG IN DT NN .\nBritain 's defense ministry has launched what it calls an urgent military police investigation into alleged abuse of Iraqi prisoners caught on videotape .\tNNP POS NN NN VBZ VBN WP PRP VBZ DT JJ JJ NN NN IN JJ NN IN JJ NNS VBN IN NN .\nA ministry statement says it condemns all acts of abuse and brutality and treats allegations of wrongdoing very seriously .\tDT NN NN VBZ PRP VBZ DT NNS IN NN CC NN CC VBZ NNS IN NN RB RB .\nBritish television broadcast the videotape Sunday after it was released by the News of the World newspaper .\tJJ NN VBD DT NN NNP IN PRP VBD VBN IN DT NN IN DT NNP NN .\nThe British soldiers are seen beating detained young Iraqi protesters with batons and kicking them .\tDT JJ NNS VBP VBN VBG JJ JJ JJ NNS IN NNS CC VBG PRP .\nThe newspaper says the tape was shot in 2004 in southern Iraq .\tDT NN VBZ DT NN VBD VBN IN CD IN JJ NNP .\nBritish Prime Minister Tony Blair said Sunday the incident will be fully investigated .\tJJ NNP NNP NNP NNP VBD NNP DT NN MD VB RB VBN .\nHe says the overwhelming majority of British troops in Iraq are doing a great job helping Iraq become a democracy .\tPRP VBZ DT JJ NN IN JJ NNS IN NNP VBP VBG DT JJ NN VBG NNP VB DT NN .\nA medical official in the Somali capital , Mogadishu , says at least 17 people have been killed in fighting between Islamist militants and government forces .\tDT JJ NN IN DT JJ NN , NNP , VBZ IN JJS CD NNS VBP VBN VBN IN VBG IN NNP NNS CC NN NNS .\nAli Muse , who is head of Mogadishu 's ambulance service , says at least 45 others were wounded in the fighting Wednesday .\tNNP NNP , WP VBZ NN IN NNP POS NN NN , VBZ IN JJS CD NNS VBD VBN IN DT NN NNP .\nMogadishu residents say insurgents attacked African Union peacekeepers , prompting soldiers to launch an artillery barrage .\tNNP NNS VBP NNS VBN NNP NNP NNS , VBG NNS TO VB DT NN NN .\nMany of those killed died when shells landed in the city 's busy Bakara market .\tNN IN DT VBN VBD WRB NNS VBD IN DT NN POS JJ NNP NN .\nInsurgent groups al-Shabab and Hizbul Islam are trying to topple the government and establish a strict Islamic state .\tJJ NNS JJ CC JJ NNP VBP VBG TO VB DT NN CC VB DT JJ JJ NN .\nThe current government controls only parts of Mogadishu and relies on AU peacekeepers in order to stay in power .\tDT JJ NN VBZ RB NNS IN NNP CC VBZ IN NNP NNS IN NN TO VB IN NN .\nSomalia has experienced nearly two decades of violence and lawlessness since the fall of the last functioning central government .\tNNP VBZ VBN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ JJ NN .\nThe founder of Microsoft , Bill Gates , has received a rousing welcome in Vietnam by thousands of university students eager for a glimpse of the world 's richest man .\tDT NN IN NNP , NNP NNP , VBZ VBN DT VBG JJ IN NNP IN NNS IN NN NNS JJ IN DT NN IN DT NN POS JJS NN .\nStudents climbed trees and pushed through crowds at Hanoi University Saturday , where Gates was delivering a speech on information technology .\tNNS VBD NNS CC VBD IN NNS IN NNP NNP NNP , WRB NNP VBD VBG DT NN IN NN NN .\nEarlier , Gates met Prime Minister Phan Van Khai and President Tran Duc Luong , who both took time away from the ruling Communist Party National Congress .\tRB , NNP VBD NNP NNP NNP NNP NNP CC NNP NNP NNP NNP , WP DT VBD NN RB IN DT NN NNP NNP NNP NNP .\nDuring the meeting , the Vietnamese leaders and Gates signed an agreement to use Microsoft software in Vietnam 's government systems .\tIN DT NN , DT JJ NNS CC NNP VBD DT NN TO VB NNP NN IN NNP POS NN NNS .\nGates ' trip to Hanoi is seen as another major boost for Vietnam 's high-tech sector .\tNNP POS NN TO NNP VBZ VBN IN DT JJ NN IN NNP POS JJ NN .\nEarlier this year , the government landed a high tech deal when leading chipmaker Intel Corporation announced it was building a plant in the country .\tRBR DT NN , DT NN VBD DT JJ NN NN WRB VBG NN NNP NNP VBD PRP VBD VBG DT NN IN DT NN .\nThe World Health Organization says a massive shortfall of a key malaria drug will last well into next year , leaving poor countries with about half of what they need to fight the disease .\tDT NNP NNP NNP VBZ DT JJ NN IN DT JJ NN NN MD VB RB IN JJ NN , VBG JJ NNS IN IN NN IN WP PRP VBP TO VB DT NN .\nThe WHO says Chinese suppliers have not shipped enough of a key ingredient used to make anti-malaria drugs to companies which manufacture the combination therapy .\tDT NNP VBZ JJ NNS VBP RB VBN RB IN DT JJ NN VBN TO VB JJ NNS TO NNS WDT VBP DT NN NN .\nThe ingredient , called artemisinin , is extracted from a plant primarily grown in China .\tDT NN , VBN NN , VBZ VBN IN DT NN RB VBN IN NNP .\nThe WHO says it will set up a system of priorities to deliver the drug to those who need it most .\tDT NNP VBZ PRP MD VB RP DT NN IN NNS TO VB DT NN TO DT WP VBP PRP RBS .\nIt says the combination therapy is the most effective way to fight the deadliest form of malaria , called falciparum .\tPRP VBZ DT NN NN VBZ DT RBS JJ NN TO VB DT JJS NN IN NN , VBD NN .\nThe mosquito-born disease has become resistant to treatment with older , more traditional medication .\tDT JJ NN VBZ VBN JJ TO NN IN JJR , RBR JJ NN .\nThe WHO estimates that malaria kills more than one million people worldwide , with more than 90 percent of fatalities occurring in sub-Saharan Africa .\tDT NNP VBZ IN NN VBZ JJR IN CD CD NNS JJ , IN JJR IN CD NN IN NNS VBG IN JJ NNP .\nKandani Ngwira , who works for a newspaper that publishes scandals involving public figures , says he has been taken into custody and not told why\tNNP NNP , WP VBZ IN DT NN WDT VBZ NNS VBG JJ NNS , VBZ PRP VBZ VBN VBN IN NN CC RB VBN WRB\nA Malawi journalist who works for a newspaper that publishes scandals involving public figures has confirmed his own arrest .\tDT NNP NN WP VBZ IN DT NN WDT VBZ NNS VBG JJ NNS VBZ VBN PRP$ JJ NN .\nKandani Ngwira contacted media outlets on Tuesday , saying he had been taken into custody and not told why .\tNNP NNP VBD NNS NNS IN NNP , VBG PRP VBD VBN VBN IN NN CC RB VBN WRB .\nNgwira works for the Weekly Times , a newspaper that the Malawian government tried to ban in November of last year .\tNNP VBZ IN DT NNP NNP , DT NN IN DT JJ NN VBD TO VB IN NNP IN JJ NN .\nNational police spokesman , Willy Mwaluka , says he had no information about Ngwira 's detention .\tJJ NN NN , NNP NNP , VBZ PRP VBD DT NN IN NNP POS NN .\nThe journalist says he was arrested in Blantyre and transported to the capital , Lilongwe .\tDT NN VBZ PRP VBD VBN IN NNP CC VBN TO DT NN , NNP .\nBlantyre Newspapers Limited , which owns the Weekly Times says it is providing a lawyer for Ngwira .\tNNP NNP NNP , WDT VBZ DT NNP NNP VBZ PRP VBZ VBG DT NN IN NNP .\nIsrael and some Palestinian militant groups say they are willing to observe a cease-fire , if certain conditions are met .\tNNP CC DT JJ JJ NNS VBP PRP VBP JJ TO VB DT NN , IN JJ NNS VBP VBN .\nThe Al Aqsa Martyrs ' Brigades , the armed wing of the Fatah movement , said Saturday it would agree to a truce if Israel promises to release Palestinian prisoners and stop military operations , including raids to make arrests , and targeted killings of Palestinian militants .\tDT NNP NNP NNP POS NNS , DT JJ NN IN DT NNP NN , VBD NNP PRP MD VB TO DT NN IN NNP VBZ TO VB JJ NNS CC VB JJ NNS , VBG NNS TO VB NNS , CC JJ NNS IN JJ NNS .\nOther groups have made similar comments .\tJJ NNS VBP VBN JJ NNS .\nFor its part , Israel signaled it could ease military operations against Palestinian gunmen if they halt attacks against Israelis .\tIN PRP$ NN , NNP VBD PRP MD VB JJ NNS IN JJ NNS IN PRP VBP NNS IN NNS .\nThe conciliatory messages follow efforts by Palestinian leader Mahmoud Abbas to persuade militants to end their campaign of anti-Israeli attacks so he can negotiate for a Palestinian state on Israeli-occupied lands .\tDT JJ NNS VBP NNS IN JJ NN NNP NNP TO VB NNS TO VB PRP$ NN IN JJ NNS IN PRP MD VB IN DT JJ NN IN JJ NNS .\nIndia 's industrial production has increased at its fastest pace in 16 months , another sign that Asia 's third largest economy is pulling out of the international financial crisis .\tNNP POS JJ NN VBZ VBN IN PRP$ JJS NN IN CD NNS , DT NN IN NNP POS JJ JJS NN VBZ VBG IN IN DT JJ JJ NN .\nThe government statistics agency said Wednesday that manufacturing output surged 7.8 percent in June from a year earlier .\tDT NN NNS NN VBD NNP IN VBG NN VBD CD NN IN NNP IN DT NN RBR .\nThe 16 nations using the euro as their currency have not done as well .\tDT CD NNS VBG DT NN IN PRP$ NN VBP RB VBN RB RB .\nEurozone industrial output fell 17 percent in June , compared to last year .\tNNP JJ NN VBD CD NN IN NNP , VBN TO JJ NN .\nJob cuts and a shorter supply of bank loans has weakened consumer demand , depressing Europe 's industrial output .\tNNP NNS CC DT JJR NN IN NN NNS VBZ VBN NN NN , VBG NNP POS JJ NN .\nData released in London Wednesday showed Britain 's unemployment rate has hit a 14-year high , with 2.43 million people out of work .\tNNS VBN IN NNP NNP VBD NNP POS NN NN VBZ VBN DT JJ JJ , IN CD CD NNS IN IN NN .\nThe number of jobless increased by 7.8 percent ( 2,20,000 jobs ) in the three months to June .\tDT NN IN NN VBN IN CD NN LRB CD NNS RRB IN DT CD NNS TO NNP .\nA senior Russian veterinary official says a bird and animal market in southern Moscow is the source of last week 's bird flu outbreak on nearby farms .\tDT JJ JJ JJ NN VBZ DT NN CC NN NN IN JJ NNP VBZ DT NN IN JJ NN POS NN NN NN IN JJ NNS .\nAlexei Alexeyenko said Sunday the section of the market where the outbreak began has been closed .\tNNP NNP VBD NNP DT NN IN DT NN WRB DT NN VBD VBZ VBN VBN .\nTests are also being carried out on the dead birds to determine if they carried the H5N1 strain , which is deadly to humans .\tNNS VBP RB VBG VBN RP IN DT JJ NNS TO VB IN PRP VBD DT NNP NN , WDT VBZ JJ TO NNS .\nRussian authorities say they found bird flu on two farms south and north of Moscow .\tJJ NNS VBP PRP VBD JJ NN IN CD NNS RB CC RB IN NNP .\nThey say they do not yet know the origin of the dead birds found in the market , but the Moscow region 's chief veterinary official , Valery Sitnikov , said bio-terrorism can not be ruled out .\tPRP VBP PRP VBP RB RB VB DT NN IN DT JJ NNS VBN IN DT NN , CC DT NNP NN POS NN JJ NN , NNP NNP , VBD NN MD RB VB VBN RP .\nThe H5N1 bird flu strain has killed 167 people since 2003 .\tDT NNP NN NN NN VBZ VBN CD NNS IN CD .\nMost of the victims were Asians .\tJJS IN DT NNS VBD NNS .\nNorth Korea has invited Washington 's chief U.S. nuclear negotiator to Pyongyang to discuss the North 's nuclear program .\tNNP NNP VBZ VBN NNP POS JJ NNP JJ NN TO NNP TO VB DT NNP POS JJ NN .\nThe North 's Deputy Foreign Minister , Choe Su Hon , said Pyongyang would impose no conditions on a visit by U.S. Assistant Secretary of State Christopher Hill .\tDT NNP POS NNP NNP NNP , NNP NNP NNP , VBD NNP MD VB DT NNS IN DT NN IN NNP NNP NNP IN NNP NNP NNP .\nWashington has not commented on the proposal .\tNNP VBZ RB VBN IN DT NN .\nAlso Thursday , North Korea said the United States should provide it with civilian nuclear reactors ' as soon as possible ' to build confidence in Monday 's nuclear disarmament agreement .\tRB NNP , NNP NNP VBD DT NNP NNPS MD VB PRP IN JJ JJ NNS `` RB RB IN JJ `` TO VB NN IN NNP POS JJ NN NN .\nWashington has rejected that demand .\tNNP VBZ VBN DT NN .\nMeanwhile , Japan 's Kyodo news agency reports Pyongyang has agreed to talks with Japan in October on a range of issues , including Pyongyang 's nuclear weapons program .\tRB , NNP POS NNP NN NN VBP NNP VBZ VBN TO NNS IN NNP IN NNP IN DT NN IN NNS , VBG NNP POS JJ NNS NN .\nTheir disputes include North Korea 's missile program and the unresolved cases of Japanese citizens kidnapped by Pyongyang in the 1970s and 80s .\tPRP$ NNS VBP NNP NNP POS NN NN CC DT JJ NNS IN JJ NNS VBN IN NNP IN DT NNS CC NNS .\nLawyers for a former California gang leader have asked the state supreme court to block his execution Tuesday , while California Governor Arnold Schwarzenegger considers granting clemency .\tNNS IN DT JJ NNP NN NN VBP VBN DT NN JJ NN TO VB PRP$ NN NNP , IN NNP NNP NNP NNP VBZ VBG NN .\nStanley ' Tookie ' Williams has been convicted of four murders and was the co-founder of the infamous Crips street gang .\tNNP `` NNP `` NNP VBZ VBN VBN IN CD NNS CC VBD DT NN IN DT JJ NNP NN NN .\nHis case has attracted international attention because Williams is the author of a series of children 's books warning young people about the dangers of gangs .\tPRP$ NN VBZ VBN JJ NN IN NNP VBZ DT NN IN DT NN IN NNS POS NNS VBG JJ NNS IN DT NNS IN NNS .\nHis lawyers argue that the books are evidence that Williams has turned his life around during his 24 years in prison .\tPRP$ NNS VBP IN DT NNS VBP NN IN NNP VBZ VBN PRP$ NN IN IN PRP$ CD NNS IN NN .\nWilliams has apologized for his gang activity , but denies committing the 1979 murders .\tNNP VBZ VBN IN PRP$ NN NN , CC VBZ VBG DT CD NNS .\nIn an earlier appeal , the California high court upheld Williams ' conviction .\tIN DT JJR NN , DT NNP JJ NN VBD NNP POS NN .\nMr. Schwarzenegger 's decision on clemency is expected Monday .\tNNP NNP POS NN IN NN VBZ VBN NNP .\nIn two other death penalty cases he has refused clemency appeals .\tIN CD JJ NN NN NNS PRP VBZ VBN NN NNS .\nSaturday is the last day for Iran 's presidential hopefuls to apply as candidates in the June election .\tNNP VBZ DT JJ NN IN NNP POS JJ NNS TO VB IN NNS IN DT NNP NN .\nApplicants on the final day include former state broadcasting chief Ali Larijani , a conservative who once was an advisor to Supreme Leader Ayatollah Ali Khamenei .\tNNS IN DT JJ NN VBP JJ NN NN NN NNP NNP , DT NN WP RB VBD DT NN TO NNP NNP NNP NNP NNP .\nFormer foreign minister Ibrahim Yazdi also signed up for the ballot to elect a successor to President Mohammad Khatami .\tJJ JJ NN NNP NNP RB VBD RP IN DT NN TO VB DT NN TO NNP NNP NNP .\nHundreds of people have applied to run in the election - among them highly favored two-time president Akbar Hashemi Rafsanjani .\tNNS IN NNS VBP VBN TO VB IN DT NN : IN PRP RB JJ JJ NN NNP NNP NNP .\nThe past chief of the national police , Bager Qalibaf , and the mayor of Tehran , Mahmoud Ahmadinejad , are also seeking the presidency .\tDT JJ NN IN DT JJ NN , NNP NNP , CC DT NN IN NNP , NNP NNP , VBP RB VBG DT NN .\nAfter the registration period ends , applicants will be screened by the Guardians Council , which will determine the make-up of the presidential ballot .\tIN DT NN NN VBZ , NNS MD VB VBN IN DT NNPS NNP , WDT MD VB DT NN IN DT JJ NN .\nThe leader of the Shi'ite militant group Hezbollah is blaming President Bush for last week 's sectarian violence in Lebanon .\tDT NN IN DT NNP JJ NN NNP VBZ VBG NNP NNP IN JJ NN POS JJ NN IN NNP .\nSpeaking to a large crowd in Beirut Tuesday , Hassan Nasrallah accused Mr. Bush and U.S. Secretary of State Condoleezza Rice of seeking to spark a civil war in Lebanon .\tVBG TO DT JJ NN IN NNP NNP , NNP NNP VBD NNP NNP CC NNP NNP IN NNP NNP NNP IN VBG TO VB DT JJ NN IN NNP .\nHe also asserted that the Bush administration ordered Israel to attack Hezbollah positions in the country last year .\tPRP RB VBD IN DT NNP NN VBD NNP TO VB NNP NNS IN DT NN JJ NN .\nThe July-August war between Israel and Hezbollah killed about 1,200 people in Lebanon and about 160 Israelis .\tDT JJ NN IN NNP CC NNP VBD IN CD NNS IN NNP CC IN CD NNS .\nOn Monday , President Bush said Hezbollah , along with Syria and Iran , are responsible for last week 's violence in Lebanon between government supporters and the Hezbollah-led opposition .\tIN NNP , NNP NNP VBD NNP , IN IN NNP CC NNP , VBP JJ IN JJ NN POS NN IN NNP IN NN NNS CC DT JJ NN .\nSeven people were killed and more than 100 wounded .\tCD NNS VBD VBN CC JJR IN CD VBD .\nSome in Lebanon are concerned that sectarian tensions will spin out of control and might lead to a civil war like the one that raged from 1975 to 1990 .\tDT IN NNP VBP VBN IN JJ NNS MD VB IN IN NN CC MD VB TO DT JJ NN IN DT CD WDT VBD IN CD TO CD .\nUnited Nations Secretary-General Kofi Annan says it is very unlikely that security operations in Iraq would be transferred from U.S.-led troops to U.N. peacekeepers .\tNNP NNP NNP NNP NNP VBZ PRP VBZ RB JJ IN NN NNS IN NNP MD VB VBN IN JJ NNS TO NNP NNS .\nSpeaking on the sidelines of a security conference in Munich , Mr. Annan said at this stage , the United Nations hopes to help more with Iraq 's post-war reconstruction .\tVBG IN DT NNS IN DT NN NN IN NNP , NNP NNP VBD IN DT NN , DT NNP NNP VBZ TO VB RBR IN NNP POS JJ NN .\nMr. Annan told the British Broadcasting Corporation the world body could help with training ministry officials and rebuilding the war-damaged country .\tNNP NNP VBD DT NNP NNP NNP DT NN NN MD VB IN NN NN NNS CC VBG DT JJ NN .\nOn another issue , Mr. Annan said he has no plans to resign over allegations of bribes and kickbacks in the U.N.-supervised oil-for-food program in Iraq .\tIN DT NN , NNP NNP VBD PRP VBZ DT NNS TO VB IN NNS IN NNS CC NNS IN DT JJ NN NN IN NNP .\nCompetitive diving is one of the sports guaranteed to attract a large audience at the Summer Olympics in Beijing .\tJJ NN VBZ CD IN DT NNS VBN TO VB DT JJ NN IN DT NNP NNPS IN NNP .\nRecreational diving is also a growing amateur sport in the U.S.\tJJ NN VBZ RB DT VBG NN NN IN DT NNP\nUnfortunately , the joy of jumping off the diving board at the local swimming pool has too often been spoiled by a trip to the emergency room .\tRB , DT NN IN VBG RP DT VBG NN IN DT JJ NN NN VBZ RB RB VBN VBN IN DT NN TO DT NN NN .\nVOA 's Melinda Smith has details of a new study showing that at least 6,000 children in the U.S. are hurt every year in diving accidents .\tNNP POS NNP NNP VBZ NNS IN DT JJ NN VBG IN IN JJS CD NNS IN DT NNP VBP VBN DT NN IN VBG NNS .\nVenezuelan authorities say a new outbreak of fighting among inmates at a crowded prison has left six more prisoners dead .\tJJ NNS VBP DT JJ NN IN NN IN NNS IN DT JJ NN VBZ VBN CD JJR NNS JJ .\nEarlier this week , 16 prisoners were killed at Uribana prison when rival gangs fought for control of two cell blocks .\tRBR DT NN , CD NNS VBD VBN IN NNP NN WRB JJ NNS VBD IN NN IN CD NN NNS .\nNational guard troops were called to maintain order at the prison , located west of the capital , Caracas .\tNNP NN NNS VBD VBN TO VB NN IN DT NN , VBN NN IN DT NN , NNP .\nRiots , murders and other violence are common in Venezuela 's overcrowded prisons .\tNNS , NNS CC JJ NN VBP JJ IN NNP POS JJ NNS .\nAn official with Canada 's spy agency has said that potential terrorists already reside inside the country , and that some have been schooled in al-Qaida training camps .\tDT NN IN NNP POS NN NN VBZ VBN IN JJ NNS RB VBP IN DT NN , CC IN DT VBP VBN VBN IN NNP NN NNS .\nJack Hooper , the deputy director of the Canadian Security Intelligence Service , spoke Monday in Ottawa to a legislative committee studying Canada 's involvement in Afghanistan .\tNNP NNP , DT NN NN IN DT NNP NNP NNP NNP , VBD NNP IN NNP TO DT JJ NN VBG NNP POS NN IN NNP .\nHooper told the lawmakers Canada faces a threat from home-grown terrorists .\tNNP VBD DT NNS NNP VBZ DT NN IN JJ NNS .\nHe said that all the circumstances which produced the London transit bombing are present now in Canada .\tPRP VBD IN PDT DT NNS WDT VBD DT NNP NN NN VBP JJ RB IN NNP .\nHooper said that many of the home-grown terrorists are Canadian citizens .\tNNP VBD IN NN IN DT JJ NNS VBP JJ NNS .\nHe also cautioned that his agency has been able to investigate only 10 percent of the immigrants who have come to Canada during the past five years from Pakistan and Afghanistan .\tPRP RB VBD IN PRP$ NN VBZ VBN JJ TO VB RB CD NN IN DT NNS WP VBP VBN TO NNP IN DT JJ CD NNS IN NNP CC NNP .\nVenezuelan President Hugo Chavez has met twice with the ailing former Cuban leader Fidel Castro during a short visit to Havana .\tJJ NNP NNP NNP VBZ VBN RB IN DT JJ JJ JJ NN NNP NNP IN DT JJ NN TO NNP .\nCuba 's state-run media says the first meeting took place after Mr. Chavez arrived Friday night .\tNNP POS JJ NNS VBZ DT JJ NN VBD NN IN NNP NNP VBD NNP NN .\nThe Venezuelan leader met again with Mr. Castro and his brother , Cuban President Raul Castro , on Saturday before Mr. Chavez 's afternoon departure .\tDT JJ NN VBD RB IN NNP NNP CC PRP$ NN , JJ NNP NNP NNP , IN NNP IN NNP NNP POS NN NN .\nThe former Cuban president and Mr. Chavez were reported to have discussed their countries ' ' fruitful ties ' and the global economic crisis and its consequences for Latin America and the Caribbean .\tDT JJ JJ NN CC NNP NNP VBD VBN TO VB VBN PRP$ NNS POS `` JJ NNS `` CC DT JJ JJ NN CC PRP$ NNS IN NNP NNP CC DT NNP .\nNo images of Fidel Castro were released from the meetings .\tDT NNS IN NNP NNP VBD VBN IN DT NNS .\nHe has not been seen in public since 2006 when he underwent surgery and ceded power to his younger brother .\tPRP VBZ RB VBN VBN IN JJ IN CD WRB PRP VBD NN CC JJ NN TO PRP$ JJR NN .\nThe trip to Cuba was President Chavez 's first since winning a referendum this month that removes term limits on his presidency and allows him to seek re-election .\tDT NN TO NNP VBD NNP NNP POS JJ IN VBG DT NN DT NN WDT VBZ NN NNS IN PRP$ NN CC VBZ PRP TO VB NN .\nThe Organization of American States says it will send election observers to monitor Suriname 's parliamentary elections to be held May 25 .\tDT NNP IN NNP NNP VBZ PRP MD VB NN NNS TO VB NNP POS JJ NNS TO VB VBN NNP CD .\nThe OAS and Suriname officials agreed to the monitors Friday in Washington .\tDT NNP CC NNP NNS VBD TO DT NNS NNP IN NNP .\nThe ruling coalition in Suriname faces opposition from the National Democratic Party , which says its leader , former dictator Desi Bouterse , would become president if the party wins the elections .\tDT NN NN IN NNP VBZ NN IN DT NNP NNP NNP , WDT VBZ PRP$ NN , JJ NN NNP NNP , MD VB NN IN DT NN VBZ DT NNS .\nThe United States has warned that relations with Suriname would suffer if Bouterse takes power .\tDT NNP NNP VBZ VBN IN NNS IN NNP MD VB IN NNP VBZ NN .\nHe was convicted in the Netherlands six years ago for illegal drug trafficking , and sentenced to 11 years in prison .\tPRP VBD VBN IN DT NNP CD NNS RB IN JJ NN NN , CC VBD TO CD NNS IN NN .\nHowever , he was never sent to the Netherlands as the two countries do not have an extradition agreement .\tRB , PRP VBD RB VBN TO DT NNP IN DT CD NNS VBP RB VB DT NN NN .\nBouterse , who is an elected member of parliament , led a successful military coup in Suriname in 1980 , and ruled the South American country for nearly a decade .\tNNP , WP VBZ DT JJ NN IN NN , VBD DT JJ JJ NN IN NNP IN CD , CC VBD DT JJ JJ NN IN RB DT NN .\nThe Vatican says Pope John Paul has canceled his scheduled audiences for the next few days because he has the flu .\tDT NNP VBZ NNP NNP NNP VBZ VBN PRP$ JJ NNS IN DT JJ JJ NNS IN PRP VBZ DT NN .\nThe Roman Catholic pontiff also canceled his audiences on Monday .\tDT NNP NNP NN RB VBD PRP$ NNS IN NNP .\nIt is the first time in more than one year the pope has had to miss an audience due to illness .\tPRP VBZ DT JJ NN IN JJR IN CD NN DT NN VBZ VBN TO VB DT NN JJ TO NN .\nJohn Paul began to fall ill on Sunday , and doctors advised him to cut back on his activities .\tNNP NNP VBD TO VB RB IN NNP , CC NNS VBD PRP TO VB RP IN PRP$ NNS .\nThe Vatican Tuesday issued a brief statement announcing the cancellations on the pope 's schedule , but did not release any specific information about his condition .\tDT NNP NNP VBD DT JJ NN VBG DT NNS IN DT NN POS NN , CC VBD RB VB DT JJ NN IN PRP$ NN .\nThe increasingly frail , 84-year-old pope suffers from Parkinson 's disease and arthritis , but continues to maintain a full travel schedule , hold audiences and perform his papal duties .\tDT RB JJ , JJ NN NNS IN NNP POS NN CC NN , CC VBZ TO VB DT JJ NN NN , NN NNS CC VB PRP$ NN NNS .\nPresident Bush has called on Congress to make his tax cuts permanent , saying they will keep the economy on track to cut the deficit in half by 2009 .\tNNP NNP VBZ VBN IN NNP TO VB PRP$ NN NNS JJ , VBG PRP MD VB DT NN IN NN TO VB DT NN IN NN IN CD .\nIn a radio address to the nation Saturday , Mr. Bush said some Democrats in Congress want to repeal the tax cuts or let them expire over the next few years .\tIN DT NN NN TO DT NN NNP , NNP NNP VBD DT NNS IN NNP VBP TO VB DT NN NNS CC VB PRP VB IN DT JJ JJ NNS .\nMr. Bush said the cuts instituted in 2001 have put $ 880 billion back into the hands of American citizens .\tNNP NNP VBD DT NNS VBN IN CD VBP VBN $ CD CD RB IN DT NNS IN JJ NNS .\nHe said giving citizens more spending power helps the economy grow .\tPRP VBD VBG NNS RBR JJ NN VBZ DT NN VB .\nMr. Bush said eliminating the tax cuts will present American families with a big tax increase that they do not expect and will not want .\tNNP NNP VBD VBG DT NN NNS MD VB JJ NNS IN DT JJ NN NN IN PRP VBP RB VB CC MD RB VB .\nIsrael completed its handover of the West Bank town of Tulkarem to the Palestinians Tuesday .\tNNP VBD PRP$ NN IN DT NNP NNP NN IN NNP TO DT NNS NNP .\nTulkarem is the second town transferred to the Palestinians , after Jericho last week .\tNNP VBZ DT JJ NN VBN TO DT NNS , IN NNP JJ NN .\nThe transfer of five West Bank towns is one of the steps Israeli and Palestinian leaders agreed to at a summit in Egypt last month .\tDT NN IN CD NNP NNP NNS VBZ CD IN DT NNS JJ CC JJ NNS VBD TO IN DT NN IN NNP JJ NN .\nIsrael has yet to hand over three other towns - Qalqiliya , Bethlehem and Ramallah .\tNNP VBZ RB TO VB RP CD JJ NNS : NNP , NNP CC NNP .\nMeanwhile , Israel confirmed plans to build 3,500 new homes in Maale Adumin , the largest Jewish settlement in the West Bank .\tRB , NNP VBD NNS TO VB CD JJ NNS IN NNP NNP , DT JJS JJ NN IN DT NNP NNP .\nPalestinians condemned the move as a violation of the internationally-backed ' Road Map ' peace plan and said it threatens the newly-energized Middle East peace process .\tNNS VBD DT NN IN DT NN IN DT JJ `` NNP NNP `` NN NN CC VBD PRP VBZ DT JJ NNP NNP NN NN .\nThe peace plan calls on Israel to freeze its settlement activity in the West Bank .\tDT NN NN VBZ IN NNP TO VB PRP$ NN NN IN DT NNP NNP .\nIt also requires the Palestinians to dismantle militant groups .\tPRP RB VBZ DT NNS TO VB JJ NNS .\nA group of armed men stormed into a bar in western Mexico and threw five human heads on the floor in an incident apparently linked to illegal drug trafficking .\tDT NN IN JJ NNS VBD IN DT NN IN JJ NNP CC VBD CD JJ NNS IN DT NN IN DT NN RB VBN TO JJ NN NN .\nWitnesses say the 20 men fired shots in the air as they entered the bar in Michoacan state before dawn Wednesday .\tNNS VBP DT CD NNS VBD NNS IN DT NN IN PRP VBD DT NN IN NNP NN IN NN NNP .\nThe group also left a note saying the killings were part of what it called ' divine justice . '\tDT NN RB VBD DT NN VBG DT NNS VBD NN IN WP PRP VBD `` NN NN . ``\nOfficials say relatives of three of the victims had identified their bodies and claimed they were not connected to illegal drug gangs .\tNNS VBP NNS IN CD IN DT NNS VBD VBN PRP$ NNS CC VBD PRP VBD RB VBN TO JJ NN NNS .\nMexican police have found several victims from similar attacks earlier this year .\tJJ NNS VBP VBN JJ NNS IN JJ NNS RBR DT NN .\nMexico 's President-elect Felipe Calderon has vowed to crack down on violent crime when he takes office in December .\tNNP POS JJ NNP NNP VBZ VBN TO VB RP IN JJ NN WRB PRP VBZ NN IN NNP .\nPakistani authorities say at least 18 women and children were killed in a stampede in the southern city of Karachi , where they were waiting to get free flour .\tJJ NNS VBP IN JJS CD NNS CC NNS VBD VBN IN DT NN IN DT JJ NN IN NNP , WRB PRP VBD VBG TO VB JJ NN .\nMedical officials say at least 25 others were injured in the crush in the city 's crowded Khori Garden neighborhood .\tJJ NNS VBP IN JJS CD NNS VBD VBN IN DT NN IN DT NN POS JJ NNP NNP NN .\nA private charity group was giving out the flour in honor of the Muslim holy month of Ramadan .\tDT JJ NN NN VBD VBG RP DT NN IN NN IN DT NNP JJ NN IN NNP .\nDozens of impoverished women and children had gathered in the narrow lanes and alleys outside the distribution point .\tNNS IN JJ NNS CC NNS VBD VBN IN DT JJ NNS CC NNS IN DT NN NN .\nWitnesses say some people on line started pushing , and panic ensued when a security guard used force to restore order .\tNNS VBP DT NNS IN NN VBD VBG , CC NN VBD WRB DT NN NN VBD NN TO VB NN .\nOfficials say most of the victims died of suffocation .\tNNS VBP JJS IN DT NNS VBD IN NN .\nPakistani Prime Minister Yousuf Raza Gilani ordered medical treatment for the injured and an investigation into the incident .\tJJ NNP NNP NNP NNP NNP VBD JJ NN IN DT NN CC DT NN IN DT NN .\nPolice have detained the event 's organizer , saying they were not notified of the planned distribution .\tNNS VBP VBN DT NN POS NN , VBG PRP VBD RB VBN IN DT JJ NN .\nA group of Israeli actors , writers and directors is vowing not to perform in Jewish settlements in the West Bank .\tDT NN IN JJ NNS , NNS CC NNS VBZ VBG RB TO VB IN JJ NNS IN DT NNP NNP .\nMore than 50 members of Israel 's theater community have signed a petition to boycott performances at a state-funded theater in the northern West Bank settlement of Ariel .\tJJR IN CD NNS IN NNP POS NN NN VBP VBN DT NN TO VB NNS IN DT JJ NN IN DT JJ NNP NNP NN IN NNP .\nPrime Minister Benjamin Netanyahu told his Cabinet Sunday that the Israeli government does not need to provide funding to the performers taking part in the boycott .\tNNP NNP NNP NNP VBD PRP$ NNP NNP IN DT JJ NN VBZ RB VB TO VB NN TO DT NNS VBG NN IN DT NN .\nMr. Netanyahu said the performers ' actions play into the hands of international efforts to delegitimize Israel with economic and cultural boycotts .\tNNP NNP VBD DT NNS POS NNS VBP IN DT NNS IN JJ NNS TO VB NNP IN JJ CC JJ NNS .\nThe protest comes as Israeli and Palestinian leaders prepare to meet in Washington this week to resume stalled Middle East peace talks .\tDT NN VBZ IN JJ CC JJ NNS VBP TO VB IN NNP DT NN TO VB VBN NNP NNP NN NNS .\nBoth Israelis and Palestinians say they hold little hope that U.S.-mediated direct talks will yield any results or make progress toward ending the decades-old conflict in the Middle East .\tDT NNS CC NNS VBP PRP VBP JJ NN IN JJ JJ NNS MD VB DT NNS CC VB NN IN VBG DT JJ NN IN DT NNP NNP .\nSomalia 's transitional government-in-exile met Tuesday to try to bridge deep divisions over plans to relocate to the war-shattered nation .\tNNP POS JJ NN VBD NNP TO VB TO VB JJ NNS IN NNS TO VB TO DT JJ NN .\nA group of Somali ministers walked out of a meeting Monday , before a majority voted to return to Somalia but not to the capital , Mogadishu , which the prime minister says is too dangerous .\tDT NN IN JJ NNS VBD IN IN DT NN NNP , IN DT NN VBD TO VB TO NNP CC RB TO DT NN , NNP , WDT DT JJ NN VBZ VBZ RB JJ .\nThe ministers voted instead to relocate to the central towns of Baidoa and Jowhar until security improves in the capital .\tDT NNS VBD RB TO VB TO DT JJ NNS IN NNP CC NNP IN NN VBZ IN DT NN .\nThe Somali government currently operates out of Nairobi , Kenya .\tDT JJ NN RB VBZ IN IN NNP , NNP .\nLawmakers are also bitterly divided over plans to deploy a peacekeeping force to provide security once the government returns to Somalia .\tNNS VBP RB RB VBN IN NNS TO VB DT NN NN TO VB NN IN DT NN NNS TO NNP .\nThe regional bloc - IGAD - has decided to initially exclude troops from nations bordering Somalia .\tDT JJ NN : NNP : VBZ VBN TO RB VB NNS IN NNS VBG NNP .\nOpponents of the force say border nations have backed violent factions during years of civil war .\tNNS IN DT NN VBP NN NNS VBP VBN JJ NNS IN NNS IN JJ NN .\nA Saudi Interior Ministry spokesman says three French nationals have been killed in northwestern Saudi Arabia .\tDT JJ NNP NNP NN VBZ CD JJ NNS VBP VBN VBN IN JJ NNP NNP .\nThe spokesman says gunmen shot at a group of nine French nationals as they rested at a roadside , killing three and injuring at least one other .\tDT NN VBZ NNS VBD IN DT NN IN CD JJ NNS IN PRP VBD IN DT NN , VBG CD CC VBG IN JJS CD JJ .\nThe spokesman says the group was traveling to the holy city of Mecca , where some of them were to perform the minor pilgrimage known as Omra .\tDT NN VBZ DT NN VBD VBG TO DT JJ NN IN NNP , WRB DT IN PRP VBD TO VB DT JJ NN VBN IN NNP .\nOnly Muslims are allowed in Mecca .\tRB NNPS VBP VBN IN NNP .\nThe spokesman said the French nationals were residents of the Saudi kingdom .\tDT NN VBD DT JJ NNS VBD NNS IN DT NNP NN .\nIt was not immediately clear who was responsible for the killings .\tPRP VBD RB RB JJ WP VBD JJ IN DT NNS .\nSaudi Arabia has been battling al-Qaida militants in the kingdom , and the terrorist group has targeted Westerners in the past .\tNNP NNP VBZ VBN VBG NNP NNS IN DT NN , CC DT JJ NN VBZ VBN NNS IN DT NN .\nSeveral hundred inmates who escaped from a prison in Haiti are believed to still be at large Sunday , after an attack on the national penitentiary left one guard dead .\tJJ CD NNS WP VBD IN DT NN IN NNP VBP VBN TO RB VB IN JJ NNP , IN DT NN IN DT JJ JJ NN CD NN NN .\nHaitian officials say as many as 500 of the prison 's 1,200 detainees may have escaped .\tJJ NNS VBP RB JJ IN CD IN DT NN POS CD NNS MD VB VBN .\nIt is unclear how many have been recaptured .\tPRP VBZ JJ WRB JJ VBP VBN VBN .\nThe prisoners fled after gunmen fired on the facility Saturday .\tDT NNS VBD IN NNS VBD IN DT NN NNP .\nThe French news agency , AFP , quotes a government source as saying the raid was aimed at freeing drug traffickers .\tDT JJ NN NN , NNP , VBZ DT NN NN IN VBG DT NN VBD VBN IN VBG NN NNS .\nTwo high-ranking officials from the government of ousted Haitian President Jean Bertrand Aristide were among the prisoners who were quickly recaptured .\tCD JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP VBD IN DT NNS WP VBD RB VBN .\nHaitian authorities say former Prime Minister Yvon Neptune and former Interior Minister Jocelerme Privert are back in custody .\tJJ NNS VBP JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP VBP RB IN NN .\nBoth men have yet to be indicted .\tDT NNS VBP RB TO VB VBN .\nThey are accused of violence against Aristide opponents .\tPRP VBP VBN IN NN IN NNP NNS .\nU.N. Secretary General Kofi Annan says the situation between Ethiopia and Eritrea has reached a ' dangerous stalemate ' and suggested possible changes to the U.N. mission in the region .\tNNP NNP NNP NNP NNP VBZ DT NN IN NNP CC NNP VBZ VBN DT `` JJ NN `` CC VBD JJ NNS TO DT NNP NN IN DT NN .\nMr. Annan presented the U.N. Security Council with six options for the U.N. mission , ranging from maintaining the status quo to a full withdrawal .\tNNP NNP VBD DT NNP NNP NNP IN CD NNS IN DT NNP NN , VBG IN VBG DT NN NN TO DT JJ NN .\nOther options include moving the U.N. mission headquarters from Eritrea to Ethiopia and downgrading the operation to either an observer or liaison effort .\tJJ NNS VBP VBG DT NNP NN NN IN NNP TO NNP CC VBG DT NN TO DT DT NN CC NN NN .\nMr. Annan did not recommend any particular option and said none offered an ideal way out of the stalemate .\tNNP NNP VBD RB VB DT JJ NN CC VBD NN VBD DT JJ NN IN IN DT NN .\nBoth Eritrea and Ethiopia have increased troops along their shared border .\tDT NNP CC NNP VBP VBN NNS IN PRP$ JJ NN .\nEritrea has also imposed restrictions on U.N. peacekeepers in its territory .\tNNP VBZ RB VBN NNS IN NNP NNS IN PRP$ NN .\nThe Security Council has threatened sanctions against both countries if the situation is not reversed .\tDT NNP NNP VBZ VBN NNS IN DT NNS IN DT NN VBZ RB JJ .\nIn this photograph released by the Iraqi Special Tribunal on June 13 , 2005 , former Iraqi dictator Saddam Hussein is seen being questioned by investigating magistrates Iraq 's special tribunal has filed its first charges against former president Saddam Hussein for crimes committed during his 24-year rule .\tIN DT NN VBN IN DT JJ NNP NNP IN NNP CD , CD , JJ JJ NN NNP NNP VBZ VBN VBG VBN IN VBG NNS NNP POS JJ NN VBZ VBN PRP$ JJ NNS IN JJ NN NNP NNP IN NNS VBN IN PRP$ JJ NN .\nThe chief investigating judge says the ousted dictator has been charged in connection with the 1982 deaths of dozens of villagers in Dujail .\tDT NN VBG NN VBZ DT JJ NN VBZ VBN VBN IN NN IN DT CD NNS IN NNS IN NNS IN NNP .\nAuthorities allege the villagers were killed in retaliation for an attempted assassination of Saddam .\tNNS VBP DT NNS VBD VBN IN NN IN DT JJ NN IN NNP .\nThe judge told reporters a trial date could be announced within days .\tDT NN VBD NNS DT NN NN MD VB VBN IN NNS .\nHe also said other investigations are continuing or nearing their final stages .\tPRP RB VBD JJ NNS VBP VBG CC VBG PRP$ JJ NNS .\nThe Dujail case is widely seen as relatively uncomplicated compared to cases of alleged genocide and crimes against humanity still under investigation .\tDT NNP NN VBZ RB VBN IN RB JJ VBN TO NNS IN JJ NN CC NNS IN NN RB IN NN .\nLebanese Prime Minister Saad Hariri has denied a newspaper report that says he will ask a U.N. tribunal to stop its investigation into the 2005 assassination of his father , former Prime Minister Rafiq Hariri .\tJJ JJ NN NNP NNP VBZ VBN DT NN NN WDT VBZ PRP MD VB DT NNP NN TO VB PRP$ NN IN DT CD NN IN PRP$ NN , JJ NNP NNP NNP NNP .\nMr. Hariri 's office said Wednesday the report by Ad-Diyar newspaper was not accurate .\tNNP NNP POS NN VBD NNP DT NN IN JJ NN VBD RB JJ .\nMedia reports say the tribunal may soon indict members of the Shi'ite militant group Hezbollah in the killing of Rafiq Hariri and 22 other people in a 2005 blast in downtown Beirut .\tNN NNS VBP DT NN MD RB VB NNS IN DT NNP JJ NN NNP IN DT NN IN NNP NNP CC CD JJ NNS IN DT CD NN IN NN NNP .\nHezbollah denies involvement and promises a backlash if its members are indicted .\tNNP VBZ NN CC VBZ DT NN IN PRP$ NNS VBP VBN .\nHezbollah , part of the nation 's fragile political coalition , is deemed a terrorist group by Western nations .\tNNP , NN IN DT NN POS JJ JJ NN , VBZ VBN DT JJ NN IN JJ NNS .\nNew data from China 's National Bureau of Statistics show inflation in the country at an 11-year high of 8.7 percent .\tJJ NNS IN NNP POS NNP NNP IN NNPS VBP NN IN DT NN IN DT JJ NN IN CD NN .\nThat is nearly double what Chinese leaders set as a goal for 2008 -- a rate of 4.8 percent .\tDT VBZ RB JJ WP JJ NNS VBD IN DT NN IN CD IN DT NN IN CD NN .\nSam Beattie reports for VOA from Beijing .\tNNP NNP VBZ IN NNP IN NNP .\nTurkish Prime Minister Recep Tayyip Erdogan has paid a rare visit to mainly Kurdish southeastern Turkey , where he repeated government promises to solve problems in the restive region .\tJJ JJ NN NNP NNP NNP VBZ VBN DT JJ NN TO RB VB JJ NNP , WRB PRP VBD NN NNS TO VB NNS IN DT JJ NN .\nSpeaking Sunday in Diyarbakir , Mr. Erdogan told a political conference his government wants to eradicate imbalances between the impoverished region and the rest of Turkey .\tVBG NNP IN NNP , NNP NNP VBD DT JJ NN PRP$ NN VBZ TO VB NNS IN DT JJ NN CC DT NN IN NNP .\nMr. Erdogan 's visit coincides with an upsurge in violence blamed on the outlawed Kurdistan Workers Party said to be operating from bases in northern Iraq .\tNNP NNP POS NN VBZ IN DT NN IN NN VBN IN DT JJ NNP NNP NNP VBN TO VB VBG IN NNS IN JJ NNP .\nDozens of soldiers and suspected Kurdish rebels have been killed in recent months .\tNNS IN NNS CC JJ JJ NNS VBP VBN VBN IN JJ NNS .\nThe prime minister also condemned last week 's bombing of a minibus carrying soldiers ' children home from school in the city of Hakkari .\tDT JJ NN RB VBD JJ NN POS NN IN DT NN VBG NNS POS NNS NN IN NN IN DT NN IN NNP .\nAuthorities say 11 children were among the 17 people wounded .\tNNS VBP CD NNS VBD IN DT CD NNS VBN .\nKurds in Turkey began a campaign for an independent homeland in the southeast in 1984 .\tNNS IN NNP VBD DT NN IN DT JJ NN IN DT NN IN CD .\nMore than 30,000 people have been killed since then .\tJJR IN CD NNS VBP VBN VBN IN RB .\nVenezuelan President Hugo Chavez has begun a visit to Brazil for talks with President Luiz Inacio Lula da Silva on energy cooperation and regional issues .\tJJ NNP NNP NNP VBZ VBN DT NN TO NNP IN NNS IN NNP NNP NNP NNP NNP NNP IN NN NN CC JJ NNS .\nPresident Chavez arrived in the northern city of Recife Wednesday to meet with the Brazilian leader and tour the construction site of a refinery that , once completed , is expected to process 2,00,000 barrels of oil daily .\tNNP NNP VBD IN DT JJ NN IN NNP NNP TO VB IN DT JJ NN CC VB DT NN NN IN DT NN IN , RB VBN , VBZ VBN TO VB CD NNS IN NN NN .\nOfficials have said the project will involve Brazil 's state-run Petrobras oil company and Venezuela 's state-run Petroleos de Venezuela , PDVSA .\tNNS VBP VBN DT NN MD VB NNP POS JJ NNP NN NN CC NNP POS VBN NNP NNP NNP , NNP .\nSeparately , the presidents were expected to discuss Venezuela 's pending membership in the South American trade bloc , Mercosur , which groups Argentina , Brazil , Paraguay and Uruguay .\tRB , DT NNS VBD VBN TO VB NNP POS VBG NN IN DT JJ JJ NN NN , NNP , WDT VBZ NNP , NNP , NNP CC NNP .\nMercosur accounts for $ 1 trillion in annual economic activity and includes 250 million people .\tNNP VBZ IN $ CD CD IN JJ JJ NN CC VBZ CD CD NNS .\nThe United Nations nuclear agency says Iran has started enriching uranium at an underground facility .\tDT NNP NNP JJ NN VBZ NNP VBZ VBN VBG NN IN DT JJ NN .\nThe International Atomic Energy Agency also says Iran has set up more than 1,000 centrifuges for enrichment at the plant at Natanz .\tDT NNP NNP NNP NNP RB VBZ NNP VBZ VBN RP JJR IN CD NNS IN NN IN DT NN IN NNP .\nThe IAEA made the claim in a confidential document .\tDT NNP VBD DT NN IN DT JJ NN .\nThe enrichment process can be used to create fuel for nuclear reactors or in the creation of nuclear weapons .\tDT NN NN MD VB VBN TO VB NN IN JJ NNS CC IN DT NN IN JJ NNS .\nLast week , Iran said it had reached an industrial scale in uranium enrichment .\tJJ NN , NNP VBD PRP VBD VBN DT JJ NN IN NN NN .\nBut nuclear experts said Iran 's program was not yet at that level .\tCC JJ NNS VBD NNP POS NN VBD RB RB IN DT NN .\nThe United States and its allies have accused Iran of trying to develop atomic weapons .\tDT NNP NNPS CC PRP$ NNS VBP VBN NNP IN VBG TO VB JJ NNS .\nIran says its nuclear program is for the peaceful production of energy .\tNNP VBZ PRP$ JJ NN VBZ IN DT JJ NN IN NN .\nThe popular Web site Twitter is now functioning after a cyber attack took the service offline for several hours .\tDT JJ NNP NN NNP VBZ RB VBG IN DT NN NN VBD DT NN NN IN JJ NNS .\nTwitter said in a status blog earlier Thursday it was ' defending against a denial-of-service attack . '\tNNP VBD IN DT NN NN RB NNP PRP VBD `` VBG IN DT JJ NN . ``\nUsers of the social networking Web site Facebook also encountered problems on Thursday .\tNNS IN DT JJ NN NNP NN NNP RB VBD NNS IN NNP .\nUnlike Twitter , Facebook never became completely inaccessible , but users did experience long delays while accessing their online profiles .\tIN NNP , NNP RB VBD RB JJ , CC NNS VBD VB JJ NNS IN VBG PRP$ JJ NNS .\nIt is not clear if the attacks on the Web sites are related , but Twitter and Facebook officials say they are working with online search engine Google to investigate .\tPRP VBZ RB JJ IN DT NNS IN DT NNP NNS VBP VBN , CC NNP CC NNP NNS VBP PRP VBP VBG IN JJ NN NN NNP TO VB .\nEven though both sites are now functioning , Twitter says users will continue to experience longer load times and slow response .\tRB IN DT NNS VBP RB VBG , NNP VBZ NNS MD VB TO VB JJR NN NNS CC JJ NN .\nThe Twitter outage follows a wave of similar cyber attacks last month that disrupted access to several high-profile U.S. Web sites , including the White House site .\tDT NNP NN VBZ DT NN IN JJ NN NNS JJ NN WDT VBD NN TO JJ JJ NNP NNP NNS , VBG DT NNP NNP NN .\nA U.S. judge has agreed to review the government 's decision to repatriate 15 Cuban migrants after they reached an abandoned bridge in the Florida Keys .\tDT NNP NN VBZ VBN TO VB DT NN POS NN TO VB CD JJ NNS IN PRP VBD DT JJ NN IN DT NNP NNPS .\nU.S. District Judge Federico Moreno Thursday questioned the government 's reasoning for sending back the migrants earlier this week .\tNNP NNP NNP NNP NNP NNP VBD DT NN POS NN IN VBG RP DT NNS RBR DT NN .\nMoreno called the bridge ' as American as apple pie ' - an expression common in the U.S. to indicate something is certainly American - even though it does not connect to dry land .\tNNP VBD DT NN `` RB JJ IN NN NN `` : DT NN NN IN DT NNP TO VB DT VBZ RB JJ IN RB IN PRP VBZ RB VB TO JJ NN .\nA Cuban advocacy group had filed a legal complaint on behalf of the repatriated Cubans .\tDT JJ NN NN VBD VBN DT JJ NN IN NN IN DT JJ NNS .\nThe U.S. employs a ' wet foot , dry foot ' policy for illegal Cuban immigrants .\tDT NNP VBZ DT `` JJ NN , JJ NN `` NN IN JJ JJ NNS .\nThe policy allows Cuban refugees who reach U.S. soil to stay in the United States , while those intercepted at sea are sent back home .\tDT NN VBZ JJ NNS WP VBP NNP NN TO VB IN DT NNP NNPS , IN DT VBN IN NN VBP VBN RB NN .\nInsurgents in Iraq launched a series of new attacks on Saturday , killing at least seven people , including two British contractors .\tNNS IN NNP VBD DT NN IN JJ NNS IN NNP , VBG IN JJS CD NNS , VBG CD JJ NNS .\nBritish officials say the two contractors were traveling in a British consular convoy that was hit by a roadside bomb .\tJJ NNS VBP DT CD NNS VBD VBG IN DT JJ JJ NN WDT VBD VBN IN DT NN NN .\nThe attack in the relatively quiet town of Basra also injured two Iraqi children .\tDT NN IN DT RB JJ NN IN NNP RB VBD CD JJ NNS .\nIn Baghdad , Iraqi police said a suicide car bomber attacked a police checkpoint , killing at least five people and injuring 25 others .\tIN NNP , JJ NNS VBD DT NN NN NN VBD DT NN NN , VBG IN JJS CD NNS CC VBG CD NNS .\nMeanwhile , a Sunni Arab leader , Sheikh Khalaf al-Ilayan , said he was not hurt in an assassination attempt by gunmen wearing Iraqi military uniforms .\tRB , DT NNP NNP NN , NNP NNP NNP , VBD PRP VBD RB VBN IN DT NN NN IN NNS VBG JJ JJ NNS .\nAnd officials said kidnappers seized an Iraqi health ministry official from her Baghdad home .\tCC NNS VBD NNS VBD DT JJ NN NN NN IN PRP$ NNP NN .\nPolice also reported finding the bodies of three Baghdad airport employees kidnapped earlier this week .\tNNS RB VBD VBG DT NNS IN CD NNP NN NNS VBN RBR DT NN .\nIndia won its first home test series against Pakistan in 27 years when the third and final test in Bangalore ended in a draw .\tNNP VBD PRP$ JJ NN NN NN IN NNP IN CD NNS WRB DT JJ CC JJ NN IN NNP VBD IN DT NN .\nIndian spin bowler Anil Kumble took five wickets in Pakistan 's second innings as the visitors reached 162-7 before bad light ended play .\tJJ NN NN NNP NNP VBD CD NNS IN NNP POS JJ NN IN DT NNS VBD CD IN JJ NN VBD NN .\nThe score was in response to India 's second innings score of 284-6 declared .\tDT NN VBD IN NN TO NNP POS JJ NN NN IN CD VBN .\nThe final score : India 626 and 284-6 declared .\tDT JJ NN IN NNP CD CC CD VBN .\nPakistan 537 and 162-7 .\tNNP CD CC CD .\nIndia had not won a home test series with Pakistan since 1980 .\tNNP VBD RB VBN DT NN NN NN IN NNP IN CD .\nThe host nation won the first test by six wickets and the second test was a draw .\tDT NN NN VBD DT JJ NN IN CD NNS CC DT JJ NN VBD DT NN .\nIndia won the five-match one-day series , 03-Feb .\tNNP VBD DT JJ JJ NN , CD .\nAn Ethiopian court has convicted former President Mengistu Haile Mariam of genocide .\tDT JJ NN VBZ VBN JJ NNP NNP NNP NNP IN NN .\nThe 12-year trial of Colonel Mengistu ended Tuesday in Addis Ababa , when a three-judge panel found him guilty of genocide and other charges .\tDT JJ NN IN NNP NNP VBD NNP IN NNP NNP , WRB DT JJ NN VBD PRP JJ IN NN CC JJ NNS .\nThe former dictator was convicted in absentia .\tDT JJ NN VBD VBN IN NN .\nHe fled to Zimbabwe in 1991 after he was ousted by a guerrilla campaign led by current Prime Minister Meles Zenawi .\tPRP VBD TO VB IN CD IN PRP VBD VBN IN DT NN NN VBN IN JJ NNP NNP NNP NNP .\nOnly 34 of the more than 70 people accused of atrocities were present in court Tuesday .\tRB CD IN DT JJR IN CD NNS VBN IN NNS VBD JJ IN NN NNP .\nA total of 25 were tried in absentia , while 14 others have died since the trial began in 1994 .\tDT NN IN CD VBD VBN IN NN , IN CD NNS VBP VBN IN DT NN VBD IN CD .\nThose convicted of crimes against humanity and genocide could be sentenced to death .\tDT VBN IN NNS IN NN CC NN MD VB VBN TO NN .\nMengistu 's rule from 1974 to 1991 is considered among the most brutal in Africa .\tNNP POS NN IN CD TO CD VBZ VBN IN DT RBS JJ IN NNP .\nAn estimated 50,000 people , including students , political figures and members of the middle class , were killed for opposing his regime .\tDT VBN CD NNS , VBG NNS , JJ NNS CC NNS IN DT JJ NN , VBD VBN IN VBG PRP$ NN .\nA Libyan official is denying reports that up to 20 Somali prisoners have been killed during an attempted jailbreak in the city of Banghazi .\tDT JJ NN VBZ VBG NNS WDT RB TO CD JJ NNS VBP VBN VBN IN DT JJ NN IN DT NN IN NNP .\nLibya 's ambassador to Somalia told reporters in Mogadishu Tuesday that there was no prison escape that he is aware of , and that no Somali prisoners have been killed .\tNNP POS NN TO NNP VBD NNS IN NNP NNP IN EX VBD DT NN NN IN PRP VBZ JJ IN , CC IN DT JJ NNS VBP VBN VBN .\nOn Monday , VOA 's Somali service interviewed a prisoner , Abdullahi Abdi Siad , who said five inmates were killed when guards opened fire during the escape attempt .\tIN NNP , NNP POS JJ NN VBD DT NN , NNP NNP NNP , WP VBD CD NNS VBD VBN WRB NNS VBD NN IN DT NN NN .\nThe prisoner added that guards put the death toll at 20 .\tDT NN VBD IN NNS VBD DT NN NN IN CD .\nThat is the number reported Tuesday by two Somali news outlets .\tDT VBZ DT NN VBN NNP IN CD JJ NN NNS .\nBritain has pressured Libya to improve conditions in its prisons , which were once notorious for overcrowding , poor sanitation , and poor health care .\tNNP VBZ VBN NNP TO VB NNS IN PRP$ NNS , WDT VBD RB JJ IN VBG , JJ NN , CC JJ NN NN .\nThe British Foreign Office says on its Web site that conditions have improved in recent years , though overcrowding remains a problem .\tDT NNP NNP NNP VBZ IN PRP$ NNP NN IN NNS VBP VBN IN JJ NNS , IN VBG VBZ DT NN .\nFour U.S. soldiers have been killed in Afghanistan by a roadside bomb in eastern Kunar province .\tCD NNP NNS VBP VBN VBN IN NNP IN DT NN NN IN JJ NNP NN .\nA U.S. military statement said the soldier 's vehicle was hit by an improvised explosive device while on patrol Sunday .\tDT NNP JJ NN VBD DT NN POS NN VBD VBN IN DT JJ JJ NN IN IN NN NNP .\nAlso Sunday , Sibghatullah Mujaddedi , who chairs the upper house of Afghanistan 's parliament , escaped with minor injuries from a suicide bombing in Kabul .\tRB NNP , NNP NNP , WP VBZ DT JJ NN IN NNP POS NN , VBD IN JJ NNS IN DT NN VBG IN NNP .\nThe bombing killed two bystanders and two suicide bombers .\tDT NN VBD CD NNS CC CD NN NNS .\nMujaddedi said he believed Pakistan 's intelligence agency organized the bombing .\tNNP VBD PRP VBD NNP POS NN NN VBD DT NN .\nPakistan denied the charge .\tNNP VBD DT NN .\nMeanwhile , the Taleban claimed responsibility Sunday for kidnapping four Albanians and four Afghan men working for U.S. forces in southern Afghanistan .\tRB , DT NNP VBD NN NNP IN VBG CD NNS CC CD JJ NNS VBG IN NNP NNS IN JJ NNP .\nTaleban spokesman , Qari Mohammed Yousaf said his group kidnapped the men Saturday .\tNNP NN , NNP NNP NNP VBD PRP$ NN VBD DT NNS NNP .\nHe also said the Taleban 's fugitive leader Mullah Mohammad Omar would decide what would happen to the men .\tPRP RB VBD DT NNP POS JJ NN NNP NNP NNP MD VB WP MD VB TO DT NNS .\nAll eight worked for a cleaning company employed by coalition forces .\tDT CD VBD IN DT NN NN VBN IN NN NNS .\nAuthorities in Indian Kashmir say suspected Islamic militants have detonated a grenade , wounding at least six people , including two policemen .\tNNS IN JJ NNP VBP JJ JJ NNS VBP VBN DT NN , VBG IN JJS CD NNS , VBG CD NNS .\nThe authorities say the blast occurred Saturday near a security post in a crowded business district in the heart of Srinagar .\tDT NNS VBP DT NN VBD NNP IN DT NN NN IN DT JJ NN NN IN DT NN IN NNP .\nThey say the attackers apparently missed their intended target , a patrol of paramilitary soldiers .\tPRP VBP DT NNS RB VBD PRP$ JJ NN , DT NN IN JJ NNS .\nThe wounded were taken to nearby hospitals .\tDT VBN VBD VBN TO JJ NNS .\nPolice cordoned off the area and were searching for the attackers .\tNNS VBD RP DT NN CC VBD VBG IN DT NNS .\nNo one has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nMuslim separatists in Indian Kashmir have been fighting for an independent Kashmir or its merger with neighboring Pakistan since 1989 .\tNNP NNS IN JJ NNP VBP VBN VBG IN DT JJ NNP CC PRP$ NN IN VBG NNP IN CD .\nTheir fight against Indian rule has killed tens of thousands of people .\tPRP$ NN IN JJ NN VBZ VBN NNS IN NNS IN NNS .\nRussia 's energy minister says United Nations sanctions will not get in the way of the country 's plans to develop Iran 's oil and gas sectors .\tNNP POS NN NN VBZ NNP NNP NNS MD RB VB IN DT NN IN DT NN POS NNS TO VB NNP POS NN CC NN NNS .\nRussian Energy Minister Sergei Shmatko met with his Iranian counterpart , Masud Mir-Kazemi , in Moscow Wednesday to sign a ' road map ' document outlining energy cooperation .\tJJ NNP NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP , IN NNP NNP TO VB DT `` NN NN `` NN VBG NN NN .\nShmatko said Russian companies are prepared to deliver oil products to Iran , despite sanctions .\tNNP VBD JJ NNS VBP VBN TO VB NN NNS TO NNP , IN NNS .\nRussian state energy company Gazprom has agreed to help Iran further develop its oil and natural gas fields , but most projects are currently on hold because of sanctions .\tJJ NN NN NN NNP VBZ VBN TO VB NNP RB VB PRP$ NN CC JJ NN NNS , CC JJS NNS VBP RB IN NN IN IN NNS .\nWestern governments have urged their companies to cut ties with Iran because of its controversial nuclear program .\tJJ NNS VBP VBN PRP$ NNS TO VB NNS IN NNP IN IN PRP$ JJ JJ NN .\nWestern nations accuse Iran of seeking to develop nuclear weapons under cover of a civilian energy program , a charge Tehran denies .\tJJ NNS VBP NNP IN VBG TO VB JJ NNS IN NN IN DT JJ NN NN , DT NN NNP VBZ .\nThe United States says there are more than 13,000 American military personnel giving relief support to nations affected by the Asian tsunami .\tDT NNP NNPS VBZ EX VBP JJR IN CD JJ JJ NNS VBG NN NN TO NNS VBN IN DT JJ NN .\nAdmiral Thomas Fargo , who is commander of the U.S. Pacific Command , said Tuesday more personnel and ships are pouring into the region .\tNNP NNP NNP , WP VBZ NN IN DT NNP NNP NNP , VBD NNP JJR NNS CC NNS VBP VBG IN DT NN .\nHe said the military initially dispatched ships that could treat drinking water and that carried medical and engineering supplies .\tPRP VBD DT NN RB VBD NNS WDT MD VB NN NN CC DT VBD JJ CC NN NNS .\nAdmiral Fargo added that the military is looking at sending the hospital ship , Mercy , to the region .\tNNP NNP VBD IN DT NN VBZ VBG IN VBG DT NN NN , NNP , TO DT NN .\nHe said authorities are considering configuring the ship for humanitarian assistance and staffing it largely with members of non-governmental organizations .\tPRP VBD NNS VBP VBG VBG DT NN IN JJ NN CC VBG PRP RB IN NNS IN JJ NNS .\nSo far , the U.S. military has delivered more than 200 tons of relief supplies .\tRB RB , DT NNP NN VBZ VBN JJR IN CD NNS IN NN NNS .\nThose supplies and equipment are being delivered by helicopters , cargo planes and ships .\tDT NNS CC NN VBP VBG VBN IN NNS , NN NNS CC NNS .\nThe Israeli army says Palestinian militants detonated a car bomb near a shrine in the West Bank city of Nablus overnight , but caused no injuries or damage .\tDT JJ NN VBZ JJ NNS VBD DT NN NN IN DT NN IN DT NNP NNP NN IN NNP JJ , CC VBD DT NNS CC NN .\nA spokesman said the bomb went off next to Joseph 's Tomb shortly after midnight , when Israeli troops were guarding a small group religious Jews praying inside .\tDT NN VBD DT NN VBD RB JJ TO NNP POS NNP RB IN NN , WRB JJ NNS VBD VBG DT JJ NN VBZ NNPS VBG NN .\nMeanwhile , Israel 's Vice Prime Minister and Labor Party leader Shimon Peres held talks with Palestinian Cabinet Minister Mohmmed Dahlan in Tel Aviv late Wednesday .\tRB , NNP POS NNP NNP NNP CC NNP NNP NN NNP NNP VBD NNS IN JJ NNP NNP NNP NNP IN NNP NNP JJ NNP .\nIt was the first high level contact between the two sides since last week 's suicide bombing in Tel Aviv that killed five Israelis .\tPRP VBD DT JJ JJ NN NN IN DT CD NNS IN JJ NN POS NN VBG IN NNP NNP WDT VBD CD NNS .\nMr. Peres told Israeli radio one of the topics he discussed was a possible hand over to the Palestinians of businesses held by Jewish settlers in the Gaza Strip , when Israel pulls out of the territory later this year .\tNNP NNP VBD JJ NN NN IN DT NNS PRP VBD VBD DT JJ NN IN TO DT NNS IN NNS VBN IN JJ NNS IN DT NNP NNP , WRB NNP VBZ IN IN DT NN RB DT NN .\nThe U.S. official overseeing relief efforts for Hurricane Katrina says rescuers are finding many fewer bodies than expected .\tDT NNP NN VBG NN NNS IN NNP NNP VBZ NNS VBP VBG JJ JJR NNS IN VBN .\nIn an interview with the television program Fox News Sunday , Coast Guard Vice Admiral Thad Allen said it was hard to estimate a final death toll from the disaster .\tIN DT NN IN DT NN NN NNP NNP NNP , NNP NNP NNP NNP NNP NNP VBD PRP VBD JJ TO VB DT JJ NN NN IN DT NN .\nBut the admiral joined a growing chorus of officials suggesting fears that Katrina killed up to 10,000 people may be unfounded .\tCC DT NN VBD DT VBG NN IN NNS VBG NNS WDT NNP VBD RP TO CD NNS MD VB JJ .\nAuthorities continue a block-by-block search for bodies in the city of New Orleans as floodwaters there continue to recede .\tNNS VBP DT JJ NN IN NNS IN DT NN IN NNP NNP IN NNS RB VBP TO VB .\nThe official death from Katrina toll now stands at nearly 400 , with 154 in New Orleans .\tDT JJ NN IN NNP NN RB VBZ IN RB CD , IN CD IN NNP NNP .\nPresident Bush returns to the southern U.S. coast later Sunday to get a first-hand look at the cleanup and recovery effort .\tNNP NNP NNS TO DT JJ NNP NN RB NNP TO VB DT JJ NN IN DT NN CC NN NN .\nInvestigators in China have ruled out terrorism in the crash of a passenger plane Sunday that claimed the lives of 54 people .\tNNS IN NNP VBP VBN RP NN IN DT NN IN DT NN NN NNP WDT VBD DT NNS IN CD NNS .\nState media said Monday that investigators sent from Beijing had n't determined the cause of the crash but found no evidence of sabotage .\tNNP NNS VBD NNP IN NNS VBN IN NNP VBD RB VBN DT NN IN DT NN CC VBD DT NN IN NN .\nThe China Eastern Airlines Shanghai-bound jet plunged into a lake just seconds after taking off from Baotou city in Inner Mongolia .\tDT NNP NNP NNPS JJ NN VBD IN DT NN RB NNS IN VBG RP IN NNP NN IN NNP NNP .\nWitnesses said they heard a blast while the plane was still in the air .\tNNS VBD PRP VBD DT NN IN DT NN VBD RB IN DT NN .\nAll 53 people on board and one on the ground were killed .\tDT CD NNS IN NN CC CD IN DT NN VBD VBN .\nDivers have yet to find the two in-flight recorders that could help determine the cause of the accident .\tNNS VBP RB TO VB DT CD JJ NNS WDT MD VB VB DT NN IN DT NN .\nThe plane was a Canadian-made CRJ-200 .\tDT NN VBD DT JJ NNP .\nChina has grounded all its other CRJ-200s .\tNNP VBZ VBN DT PRP$ JJ NNPS .\nPakistani helicopter gunships and fighter jets pounded militant hide-outs in the country 's northwest Saturday , killing at least 12 militants .\tJJ NN NNS CC NN NNS VBD JJ NNS IN DT NN POS JJS NNP , VBG IN JJS CD NNS .\nSecurity officials say the airstrikes targeted three suspected militant positions in Orakzai region , where a military transport helicopter crashed the day before , killing at least 26 military personnel .\tNN NNS VBP DT NNS VBD CD JJ JJ NNS IN NNP NN , WRB DT JJ NN NN VBD DT NN IN , VBG IN JJS CD JJ NNS .\nPakistani officials say the helicopter crashed Friday outside the city of Peshawar due to a technical failure .\tJJ NNS VBP DT NN VBD NNP IN DT NN IN NNP JJ TO DT JJ NN .\nBut the Taliban claims it shot down the aircraft .\tCC DT NNP VBZ PRP VBD IN DT NN .\nElsewhere in the northwest , clashes between a pro-government tribal militia and militants killed at least 12 people late Friday in the remote Mohmand region , along the Afghan border .\tRB IN DT NN , NNS IN DT JJ JJ NN CC NNS VBD IN JJS CD NNS JJ NNP IN DT JJ NNP NN , IN DT JJ NN .\nPakistan 's military has been fighting Taliban militants throughout the country 's northwest for more than two months .\tNNP POS NN VBZ VBN VBG NNP NNS IN DT NN POS JJS IN JJR IN CD NNS .\nSecurity officials also are on high alert following the launch this week of a major U.S. offensive against Taliban militants in neighboring Afghanistan .\tNN NNS RB VBP IN JJ NN VBG DT NN DT NN IN DT JJ NNP NN IN NNP NNS IN VBG NNP .\nA leading Syrian human rights activist , who faces trial for allegedly defaming Syria 's image , has been awarded a prestigious international human rights award .\tDT VBG JJ JJ NNS NN , WP VBZ NN IN RB VBG NNP POS NN , VBZ VBN VBN DT JJ JJ JJ NNS NN .\nSyrian lawyer-activist Aktham Naisse was chosen unanimously by the 11 international human rights groups that make up the Geneva-based Martin Ennals Foundation .\tJJ NN NNP NNP VBD VBN RB IN DT CD JJ JJ NNS NNS WDT VBP RP DT JJ NNP NNP NNP .\nIn announcing the 2005 award , the jury panel said the 53-year-old Mr. Naise has for 30 years ' embodied the soul of the democratic movement in Syria . '\tIN VBG DT CD NN , DT NN NN VBD DT JJ NNP NNP VBZ IN CD NNS `` VBD DT NN IN DT JJ NN IN NNP . ``\nMr. Naisse was arrested last April in Damascus , one month after his group - the Committees for the Defense of Democratic Liberties and Human Rights in Syria - organized a rare protest outside Syria 's parliament .\tNNP NNP VBD VBN JJ NNP IN NNP , CD NN IN PRP$ NN IN DT NNS IN DT NN IN JJ NNS CC JJ NNS IN NNP : VBD DT JJ NN IN NNP POS NN .\nThe protest highlighted demands for political reform and the repeal of Syria 's emergency laws .\tDT NN VBD NNS IN JJ NN CC DT NN IN NNP POS NN NNS .\nThe group says he faces trial next week , January 16 , on charges of ' disseminating FALSE information aimed at weakening the state . '\tDT NN VBZ PRP VBZ NN JJ NN , NNP CD , IN NNS IN `` VBG JJ NN VBN IN VBG DT NN . ``\nThe U.S. military says at least two Marines are dead and three Marines and a sailor are missing after a suicide car bomb blast struck their convoy in Fallujah late Thursday .\tDT NNP NN VBZ IN JJS CD NNS VBP JJ CC CD NNS CC DT NN VBP VBG IN DT NN NN NN NN VBD PRP$ NN IN NNP JJ NNP .\nThe military says that 13 other service members were wounded in the attack , which took place as the convoy was traveling through the city .\tDT JJ VBZ IN CD JJ NN NNS VBD VBN IN DT NN , WDT VBD NN IN DT NN VBD VBG IN DT NN .\nOfficials released no further details about the incident .\tNNS VBD DT JJ NNS IN DT NN .\nIn Baghdad , a British security firm guarding Iraq 's main airport has temporarily stopped work because of a contract dispute with the Iraqi government .\tIN NNP , DT JJ NN NN VBG NNP POS JJ NN VBZ RB VBN NN IN IN DT NN NN IN DT JJ NN .\nFollowing the move , all commercial flights at the airport were halted .\tVBG DT NN , DT JJ NNS IN DT NN VBD VBN .\nAnd in Mosul , local officials say one Iraqi woman was killed by an errant mortar round fired at a nearby police academy .\tCC IN NNP , JJ NNS VBP CD JJ NN VBD VBN IN DT JJ NN NN VBN IN DT JJ NN NN .\nA congressional investigation says tens of millions of dollars of U.S. taxpayer funds are indirectly being paid to Afghan warlords , public officials and even the Taliban to ensure safe passage of U.S. supply convoys in Afghanistan .\tDT JJ NN VBZ NNS IN NNS IN NNS IN NNP NN NNS VBP RB VBG VBN TO JJ NNS , JJ NNS CC RB DT NNP TO VB JJ NN IN NNP NN NNS IN NNP .\nA lengthy report released late Monday says eight Afghan-based private contractors working with the Defense Department through a $ 2.1 billion transportation contract are paying several thousand dollars per truck for guards .\tDT JJ NN VBN JJ NNP VBZ CD JJ JJ NNS VBG IN DT NNP NNP IN DT $ CD CD NN NN VBP VBG JJ CD NNS IN NN IN NNS .\nThe contract covers at least 70 percent of all goods and services used by U.S. forces .\tDT NN VBZ IN JJS CD NN IN DT NNS CC NNS VBN IN NNP NNS .\nCongressional investigators say trucking contractors raised the issue with military officials , but their concerns were never properly addressed .\tJJ NNS VBP NN NNS VBD DT NN IN JJ NNS , CC PRP$ NNS VBD RB RB VBN .\nThe report was completed by the House of Representative 's national security subcommittee , which will hold hearings on the report Tuesday .\tDT NN VBD VBN IN DT NNP IN NNP POS JJ NN NN , WDT MD VB NNS IN DT NN NNP .\nThe U.S. military says it has begun investigating reports of corruption in Afghanistan , and has created a task force to determine the impact of its contracting processes on corruption .\tDT NNP NN VBZ PRP VBZ VBN VBG NNS IN NN IN NNP , CC VBZ VBN DT NN NN TO VB DT NN IN PRP$ NN NNS IN NN .\nReports from Iran say police have exchanged gunfire with militants following an explosion near a school in the southeastern part of the country .\tNNS IN NNP VBP NNS VBP VBN NN IN NNS VBG DT NN IN DT NN IN DT JJ NN IN DT NN .\nIranian news agencies said late Friday that police in the city of Zahedan cordoned off the neighborhood where the incident took place .\tJJ NN NNS VBD JJ NNP IN NN IN DT NN IN NNP VBD RP DT NN WRB DT NN VBD NN .\nElectrical power to the area was cut off .\tJJ NN TO DT NN VBD VBN RP .\nIt is not clear if there were casualties .\tPRP VBZ RB JJ IN EX VBD NNS .\nOn Wednesday , a car bomb blast in the same city killed 11 Iranian Revolutionary Guards .\tIN NNP , DT NN NN NN IN DT JJ NN VBD CD JJ JJ NNS .\nA Sunni Muslim group , Jundollah , claimed responsibility for that attack .\tDT NNP NNP NN , NNP , VBD NN IN DT NN .\nOfficials say the group is linked to al-Qaida .\tNNS VBP DT NN VBZ VBN TO NNP .\nZahedan is the capital of Sistan-Baluchistan province , which borders Pakistan and Afghanistan .\tNNP VBZ DT NN IN NNP NN , WDT VBZ NNP CC NNP .\nIran has accused the United States of backing militants in the sensitive border area to destabilize the country .\tNNP VBZ VBN DT NNP NNPS IN VBG NNS IN DT JJ NN NN TO VB DT NN .\nFamily members carry coffin of police officer Mohamed Badr for burial in Baghdad Insurgents in Iraq launched a third straight day of stepped-up attacks Sunday , killing at least nine Iraqis .\tNN NNS VBP NN IN NN NN NNP NNP IN NN IN NNP NNS IN NNP VBD DT JJ JJ NN IN JJ NNS NNP , VBG IN JJS CD NNS .\nAuthorities say five Iraqi policemen manning a security checkpoint were shot to death in a surprise attack shortly after dawn .\tNNS VBP CD JJ NNS VBG DT NN NN VBD VBN TO NN IN DT NN NN RB IN NN .\nLater , a car-bomb attack on a U.S. military convoy in southeast Baghdad killed at least four Iraqi civilians and injured 12 others .\tRB , DT NN NN IN DT NNP JJ NN IN NN NNP VBD IN JJS CD JJ NNS CC VBN CD NNS .\nViolence in Iraq has increased dramatically since Thursday , when the nation 's first democratically elected government was formed following the fall of Saddam Hussein .\tNN IN NNP VBZ VBN RB IN NNP , WRB DT NN POS JJ RB VBN NN VBD VBN VBG DT NN IN NNP NNP .\nSuicide attacks , car bombings and other guerrilla strikes in Baghdad and nearby areas have killed at least 75 people since Friday .\tNN NNS , NN NNS CC JJ NN NNS IN NNP CC JJ NNS VBP VBN IN JJS CD NNS IN NNP .\nThe U.S. military says coalition forces have killed 25 militants and arrested 10 more during a series of raids across Afghanistan .\tDT NNP NN VBZ NN NNS VBP VBN CD NNS CC VBN CD JJR IN DT NN IN NNS IN NNP .\nA military statement says 15 militants were killed Wednesday during a raid on suspected militants in the southern city of Kandahar .\tDT JJ NN VBZ CD NNS VBD VBN NNP IN DT NN IN JJ NNS IN DT JJ NN IN NNP .\nThe U.S. says two other operations took place in southeastern Afghanistan , where ten militants were killed in separate raids .\tDT NNP VBZ CD JJ NNS VBD NN IN JJ NNP , WRB JJ NNS VBD VBN IN JJ NNS .\nElsewhere , government officials say unknown gunmen killed five police officers in southern Helmand province .\tRB , NN NNS VBP JJ NNS VBD CD NNS NNS IN JJ NNP NN .\nAuthorities suspect fellow police officers linked to the Taliban may have taken part in the deadly attack .\tNNS VBP JJ NN NNS VBN TO DT NNP MD VB VBN NN IN DT JJ NN .\nFive other police officers also went missing .\tCD JJ NN NNS RB VBD VBG .\nAt least six people have been killed and more than a dozen others wounded in a bomb explosion in the southwestern Pakistani city of Quetta .\tIN JJS CD NNS VBP VBN VBN CC JJR IN DT NN NNS VBD IN DT NN NN IN DT JJ JJ NN IN NNP .\nThe bomb exploded Friday near a military truck parked in the center of the city , the capital of Baluchistan province .\tDT NN VBD NNP IN DT JJ NN VBN IN DT NN IN DT NN , DT NN IN NNP NN .\nOfficials say the bomb was strapped to a bicycle .\tNNS VBP DT NN VBD VBN TO DT NN .\nInformation Minister Sheikh Rashid Ahmed condemned the blast , calling it a heinous act that would not go unpunished .\tNNP NNP NNP NNP NNP VBD DT NN , VBG PRP DT JJ NN WDT MD RB VB JJ .\nA recent increase in violence in Baluchistan has been blamed on local tribesmen , who want a bigger share of the revenue from the region 's mineral and oil resources .\tDT JJ NN IN NN IN NNP VBZ VBN VBN IN JJ NNS , WP VBP DT JJR NN IN DT NN IN DT NN POS NN CC NN NNS .\nPakistan 's military says at least 30 militants and six soldiers have been killed during fighting Sunday in the North Waziristan tribal region .\tNNP POS NN VBZ IN JJS CD NNS CC CD NNS VBP VBN VBN IN VBG NNP IN DT NNP NNP JJ NN .\nAn army spokesman ( Major General Waheed Arshad ) says that security forces attacked the pro-Taleban militants after they ambushed a military convoy Saturday evening near the town of Mir Ali .\tDT NN NN LRB NNP NNP NNP NNP RRB VBZ IN NN NNS VBD DT JJ NNS IN PRP VBD DT JJ NN NNP NN IN DT NN IN NNP NNP .\nHe says fighting was also taking place in other parts of the area .\tPRP VBZ NN VBD RB VBG NN IN JJ NNS IN DT NN .\nViolence has been escalating in Pakistan 's northern tribal regions bordering Afghanistan since July , when a peace pact with militants broke down in North Waziristan , and army commandos stormed a radical mosque in the capital , Islamabad .\tNN VBZ VBN VBG IN NNP POS JJ JJ NNS VBG NNP IN NNP , WRB DT NN NN IN NNS VBD RP IN NNP NNP , CC NN NNS VBD DT JJ NN IN DT NN , NNP .\nThe United States and North Korea have held a third one-on-one meeting as they seek to narrow still wide differences on how to dismantle Pyongyang 's nuclear program .\tDT NNP NNPS CC NNP NNP VBP VBN DT JJ JJ NN IN PRP VBP TO VB RB JJ NNS IN WRB TO VB NNP POS JJ NN .\nU.S. officials say U.S. Assistant Secretary of State Christopher Hill and North Korean Vice Foreign Minister Kim Kye-gwan met for two hours Thursday in Beijing , on the sidelines of the six-nation negotiations being hosted by China .\tNNP NNS VBP NNP NNP NNP IN NNP NNP NNP CC NNP JJ NNP NNP NNP NNP NNP VBD IN CD NNS NNP IN NNP , IN DT NNS IN DT JJ NNS VBG VBN IN NNP .\nThere was no immediate word on how the talks went or what was discussed .\tEX VBD DT JJ NN IN WRB DT NNS VBD CC WP VBD VBN .\nWednesday the United States and North Korea each said the other must make the first move to denuclearize the Korean peninsula .\tNNP DT NNP NNPS CC NNP NNP DT VBD DT JJ MD VB DT JJ NN TO VB DT JJ NN .\nThe six-nation talks include the two Koreas , the United States , China , Japan and Russia .\tDT JJ NNS VBP DT CD NNP , DT NNP NNPS , NNP , NNP CC NNP .\nThe native Amerindian population of Cuba began to decline after the European discovery of the island by Christopher COLUMBUS in 1492 and following its development as a Spanish colony during the next several centuries .\tDT JJ JJ NN IN NNP VBD TO VB IN DT JJ NN IN DT NN IN NNP NNP IN CD CC VBG PRP$ NN IN DT JJ NN IN DT JJ JJ NNS .\nLarge numbers of African slaves were imported to work the coffee and sugar plantations , and Havana became the launching point for the annual treasure fleets bound for Spain from Mexico and Peru .\tJJ NNS IN JJ NNS VBD VBN TO VB DT NN CC NN NNS , CC NNP VBD DT NN NN IN DT JJ NN NNS VBN IN NNP IN NNP CC NNP .\nSpanish rule eventually provoked an independence movement and occasional rebellions that were harshly suppressed .\tJJ NN RB VBD DT NN NN CC JJ NNS WDT VBD RB VBN .\nUS intervention during the Spanish-American War in 1898 assisted the Cubans in overthrowing Spanish rule .\tNNP NN IN DT JJ NNP IN CD VBD DT NNS IN VBG JJ NN .\nThe Treaty of Paris established Cuban independence from the US in 1902 after which the island experienced a string of governments mostly dominated by the military and corrupt politicians .\tDT NNP IN NNP VBD JJ NN IN DT NNP IN CD IN WDT DT NN VBD DT NN IN NNS RB VBN IN DT JJ CC JJ NNS .\nFidel CASTRO led a rebel army to victory in 1959 ; his iron rule held the subsequent regime together for nearly five decades .\tNNP NNP VBD DT NN NN TO NN IN CD ; PRP$ NN NN VBD DT JJ NN RB IN RB CD NNS .\nHe stepped down as president in February 2008 in favor of his younger brother Raul CASTRO . Cuba 's Communist revolution , with Soviet support , was exported throughout Latin America and Africa during the 1960s , 1970s , and 1980s .\tPRP VBD RP IN NN IN NNP CD IN NN IN PRP$ JJR NN NNP NNP . NNP POS JJ NN , IN JJ NN , VBD VBN IN NNP NNP CC NNP IN DT NNS , NNS , CC NNS .\nThe country faced a severe economic downturn in 1990 following the withdrawal of former Soviet subsidies worth $ 4 billion to $ 6 billion annually .\tDT NN VBD DT JJ JJ NN IN CD VBG DT NN IN JJ JJ NNS JJ $ CD CD TO $ CD CD RB .\nCuba at times portrays the US embargo , in place since 1961 , as the source if its difficulties .\tNNP IN NNS VBZ DT NNP NN , IN NN IN CD , IN DT NN IN PRP$ NNS .\nIllicit migration to the US - using homemade rafts , alien smugglers , air flights , or via the southwest border - is a continuing problem .\tJJ NN TO DT NNP : VBG JJ NNS , JJ NNS , NN NNS , CC IN DT JJS NN : VBZ DT VBG NN .\nThe US Coast Guard intercepted 982 individuals attempting to cross the Straits of Florida in fiscal year 2009 .\tDT NNP NNP NNP VBD CD NNS VBG TO VB DT NNS IN NNP IN JJ NN CD .\nCote d'Ivoire is heavily dependent on agriculture and related activities , which engage roughly 68 % of the population .\tNNP NNP VBZ RB JJ IN NN CC JJ NNS , WDT VBP RB CD NN IN DT NN .\nCote d'Ivoire is the world 's largest producer and exporter of cocoa beans and a significant producer and exporter of coffee and palm oil .\tNNP NNP VBZ DT NN POS JJS NN CC NN IN NN NNS CC DT JJ NN CC NN IN NN CC NN NN .\nConsequently , the economy is highly sensitive to fluctuations in international prices for these products , and , to a lesser extent , in climatic conditions .\tRB , DT NN VBZ RB JJ TO NNS IN JJ NNS IN DT NNS , CC , TO DT JJR NN , IN JJ NNS .\nCocoa , oil , and coffee are the country 's top export revenue earners , but the country is also producing gold .\tNN , NN , CC NN VBP DT NN POS JJ NN NN NNS , CC DT NN VBZ RB VBG NN .\nSince the end of the civil war in 2003 , political turmoil has continued to damage the economy , resulting in the loss of foreign investment and slow economic growth .\tIN DT NN IN DT JJ NN IN CD , JJ NN VBZ VBN TO VB DT NN , VBG IN DT NN IN JJ NN CC JJ JJ NN .\nGDP grew by more than 2 % in 2008 and around 4 % per year in 2009 - 10 .\tNN VBD IN JJR IN CD NN IN CD CC RB CD NN IN NN IN CD IN CD .\nPer capita income has declined by 15 % since 1999 , but registered a slight improvement in 2009 - 10 .\tIN NN NN VBZ VBN IN CD NN IN CD , CC VBD DT JJ NN IN CD IN CD .\nPower cuts caused by a turbine failure in early 2010 slowed economic activity .\tNN NNS VBN IN DT NN NN IN JJ CD VBD JJ NN .\nCote d'Ivoire in 2010 signed agreements to restructure its Paris Club bilateral , other bilateral , and London Club debt .\tNNP NNP IN CD VBD NNS TO VB PRP$ NNP NNP NN , JJ NN , CC NNP NNP NN .\nCote d'Ivoire 's long term challenges include political instability and degrading infrastructure .\tNNP NNP POS JJ NN NNS VBP JJ NN CC VBG NN .\nAn independent kingdom for much of its long history , Korea was occupied by Japan beginning in 1905 following the Russo-Japanese War .\tDT JJ NN IN NN IN PRP$ JJ NN , NNP VBD VBN IN NNP VBG IN CD VBG DT JJ NNP .\nFive years later , Japan formally annexed the entire peninsula .\tCD NNS RB , NNP RB VBD DT JJ NN .\nFollowing World War II , Korea was split with the northern half coming under Soviet-sponsored Communist control .\tVBG NNP NNP NNP , NNP VBD VBN IN DT JJ NN VBG IN JJ JJ NN .\nAfter failing in the Korean War ( 1950 - 53 ) to conquer the US-backed Republic of Korea ( ROK ) in the southern portion by force , North Korea ( DPRK ) , under its founder President KIM Il Sung , adopted a policy of ostensible diplomatic and economic ' self-reliance ' as a check against outside influence .\tIN VBG IN DT NNP NNP LRB CD IN CD RRB TO VB DT JJ NNP IN NNP LRB NNP RRB IN DT JJ NN IN NN , NNP NNP LRB NNP RRB , IN PRP$ NN NNP NNP NNP NNP , VBD DT NN IN JJ JJ CC JJ `` NN `` IN DT NN IN JJ NN .\nThe DPRK demonized the US as the ultimate threat to its social system through state-funded propaganda , and molded political , economic , and military policies around the core ideological objective of eventual unification of Korea under Pyongyang 's control .\tDT NNP VBD DT NNP IN DT JJ NN TO PRP$ JJ NN IN JJ NN , CC VBD JJ , JJ , CC JJ NNS IN DT NN JJ NN IN JJ NN IN NNP IN NNP POS NN .\nKIM Il Sung 's son , the current ruler KIM Jong Il , was officially designated as his father 's successor in 1980 , assuming a growing political and managerial role until the elder KIM 's death in 1994 .\tNNP NNP NNP POS NN , DT JJ NN NNP NNP NNP , VBD RB VBN IN PRP$ NN POS NN IN CD , VBG DT VBG JJ CC JJ NN IN DT NN NNP POS NN IN CD .\nIn 2010 , KIM Jong Il began the process of preparing the way for his youngest son , KIM Jong Un , to succeed him in power .\tIN CD , NNP NNP NNP VBD DT NN IN VBG DT NN IN PRP$ JJS NN , NNP NNP NNP , TO VB PRP IN NN .\nAfter decades of economic mismanagement and resource misallocation , the DPRK since the mid-1990s has relied heavily on international aid to feed its population .\tIN NNS IN JJ NN CC NN NN , DT NNP IN DT NNS VBZ VBN RB IN JJ NN TO VB PRP$ NN .\nNorth Korea 's history of regional military provocations , proliferation of military-related items , long-range missile development , WMD programs including tests of nuclear devices in 2006 and 2009 , and massive conventional armed forces are of major concern to the international community .\tNNP NNP POS NN IN JJ JJ NNS , NN IN JJ NNS , JJ NN NN , NNP NNS VBG NNS IN JJ NNS IN CD CC CD , CC JJ JJ JJ NNS VBP IN JJ NN TO DT JJ NN .\nThe regime has marked 2012 , the centenary of KIM Il Sung 's birth , a banner year ; to that end , the country has been focused on development of the economy .\tDT NN VBZ VBN CD , DT NN IN NNP NNP NNP POS NN , DT NN NN ; TO DT NN , DT NN VBZ VBN VBN IN NN IN DT NN .\nThe Czech Republic is a stable and prosperous market economy , which harmonized its laws and regulations with those of the EU prior to its EU accession in 2004 .\tDT JJ NNP VBZ DT JJ CC JJ NN NN , WDT VBD PRP$ NNS CC NNS IN DT IN DT NNP RB TO PRP$ NNP NN IN CD .\nWhile the conservative , inward looking Czech financial system has remained relative healthy , the small , open , export-driven Czech economy remains very sensitive to changes in the economic performance of its main export markets , especially Germany .\tIN DT JJ , JJ VBG JJ JJ NN VBZ VBN JJ JJ , DT JJ , JJ , JJ JJ NN VBZ RB JJ TO NNS IN DT JJ NN IN PRP$ JJ NN NNS , RB NNP .\nWhen Western Europe and Germany fell into recession in late 2008 , demand for Czech goods plunged , leading to double digit drops in industrial production and exports .\tWRB NNP NNP CC NNP VBD IN NN IN JJ CD , NN IN JJ NNS VBD , VBG TO VB NN NNS IN JJ NN CC NNS .\nAs a result , real GDP fell 4.1 % in 2009 , with most of the decline occurring during the first quarter .\tIN DT NN , JJ NN VBD CD NN IN CD , IN JJS IN DT NN VBG IN DT JJ NN .\nReal GDP , however , has slowly recovered with positive quarter-on-quarter growth starting in the second half of 2009 and continuing throughout 2010 .\tJJ NN , RB , VBZ RB VBN IN JJ NN NN VBG IN DT JJ NN IN CD CC VBG IN CD .\nThe auto industry remains the largest single industry and , together with its suppliers , accounts for as much as 20 % of Czech manufacturing .\tDT NN NN VBZ DT JJS JJ NN CC , RB IN PRP$ NNS , NNS IN RB JJ IN CD NN IN JJ NN .\nThe Czech Republic produced more than a million cars for the first time in 2010 , over 80 % of which were exported .\tDT JJ NNP VBD JJR IN DT CD NNS IN DT JJ NN IN CD , IN CD NN IN WDT VBD VBN .\nForeign and domestic businesses alike voice concerns about corruption , especially in public procurement .\tJJ CC JJ NNS RB NN NNS IN NN , RB IN JJ NN .\nOther long term challenges include dealing with a rapidly aging population , funding an unsustainable pension and health care system , and diversifying away from manufacturing and toward a more high-tech , services-based , knowledge economy .\tJJ JJ NN NNS VBP VBG IN DT RB VBG NN , VBG DT JJ NN CC NN NN NN , CC VBG RB IN NN CC IN DT RBR JJ , JJ , NN NN .\nA BULL was striving with all his might to squeeze himself through a narrow passage which led to his stall .\tDT NN VBD VBG IN DT PRP$ NN TO VB PRP IN DT JJ NN WDT VBD TO PRP$ NN .\nA young Calf came up , and offered to go before and show him the way by which he could manage to pass .\tDT JJ NN VBD RB , CC VBD TO VB RB CC VB PRP DT NN IN WDT PRP MD VB TO VB .\n' Save yourself the trouble , ' said the Bull ;\t`` VB PRP DT NN , `` VBD DT NN ;\n' I knew that way long before you were born . '\t`` PRP VBD DT NN RB IN PRP VBD VBN . ``\nA WOLF , passing by , saw some Shepherds in a hut eating a haunch of mutton for their dinner .\tDT NN , VBG IN , VBD DT NNS IN DT NN VBG DT NN IN NN IN PRP$ NN .\nApproaching them , he said , ' What a clamor you would raise if I were to do as you are doing ! '\tVBG PRP , PRP VBD , `` WP DT NN PRP MD VB IN PRP VBD TO VB IN PRP VBP VBG . ``\nTwo neighbors had been fighting each other for nigh on four decades .\tCD NNS VBD VBN VBG DT NN IN NN IN CD NNS .\nBob buys a Great Dane and teaches it to use the bathroom in Bill 's yard .\tNNP VBZ DT NNP NNP CC VBZ PRP TO VB DT NN IN NNP POS NN .\nFor one whole year Bill ignores the dog .\tIN CD JJ NN NNP VBZ DT NN .\nSo Bob then buys a cow and teaches it to use the bathroom in Bill 's yard .\tRB NNP RB VBZ DT NN CC VBZ PRP TO VB DT NN IN NNP POS NN .\nAfter about a year and a half of Bob 's cow crapping in Bill 's yard ; being ignored all the while , a semi pulls up in front of Bill 's house .\tIN IN DT NN CC DT NN IN NNP POS NN NN IN NNP POS NN ; VBG VBN PDT DT NN , DT NN VBZ RP IN NN IN NNP POS NN .\nBob runs over and demands to know what 's in the 18-wheeler .\tNNP VBZ IN CC NNS TO VB WP VBZ IN DT JJ .\n' My new pet elephant , ' Bill replies solemly .\t`` PRP$ JJ NN NN , `` NN VBZ RB .\nInscribed in stone over the great front doors of an old church being restored was : ' This is the Gate of Heaven . '\tVBN IN NN IN DT JJ JJ NNS IN DT JJ NN VBG VBN VBD : `` DT VBZ DT NN IN NNP . ``\nJust below it someone had placed a small cardboard sign which read : ' Use Other Entrance . '\tRB IN PRP DT VBD VBN DT JJ NN NN WDT VBD : `` NNP JJ NNP . ``\nOfficials Wednesday said Savo Todovic requested more time to fully comprehend the 18 charges against him .\tNNS NNP VBD NNP NNP VBD JJR NN TO RB VB DT CD NNS IN PRP .\nHe was extradited to the tribunal after surrendering to police in the Bosnian Serb Republic on Saturday .\tPRP VBD VBN TO DT NN IN VBG TO NNS IN DT JJ JJ NNP IN NNP .\nProsecutors indicted Mr. Todovic for his role as deputy commander of a notorious Serb prison , The Dom , in the city of Foca in eastern Bosnia-Herzegovina .\tNNS VBD NNP NNP IN PRP$ NN IN JJ NN IN DT JJ JJ NN , DT NNP , IN DT NN IN NNP IN JJ NNP .\nThey say he selected detainees for killings , beatings , interrogations and forced labor .\tPRP VBP PRP VBN NNS IN NNS , NNS , NNS CC VBN NN .\nMr. Todovic is the first suspect the Bosnian Serb government has handed over to The Hague war crimes tribunal .\tNNP NNP VBZ DT JJ NN DT JJ JJ NN VBZ VBN RP TO DT NNP NN NNS JJ .\nInternational officials have been pressing the Bosnian Serbs to cooperate with the court in the arrest and extradition of war crimes suspects as required by the Dayton Peace Accord that halted the Bosnian conflict .\tJJ NNS VBP VBN VBG DT JJ NNS TO VB IN DT NN IN DT NN CC NN IN NN NNS VBZ IN VBN IN DT NNP NNP NNP WDT VBD DT JJ NN .\nAn international meeting set to begin in Ethiopia on Thursday will focus on how to reverse African poverty and gain greater support from developed nations , including more debt relief .\tDT JJ NN VBN TO VB IN NNP IN NNP MD VB IN WRB TO VB JJ NN CC NN JJR NN IN JJ NNS , VBG JJR NN NN .\nThe British-sponsored Commission for Africa is intended , in part , to map out an African policy agenda for Britain to press when it heads the G8 and European Union in 2005 .\tDT JJ NNP IN NNP VBZ VBN , IN NN , TO VB RP DT JJ NN NN IN NNP TO VB WRB PRP VBZ DT NNP CC NNP NNP IN CD .\nThe commission aims to propose action from the West on boosting aid , making trade rules more fair for African exporters , and obtaining more debt relief .\tDT NN VBZ TO VB NN IN DT NNP IN VBG NN , VBG NN NNS RBR JJ IN JJ NNS , CC VBG JJR NN NN .\nIndustrialized nations at meetings of the G7 nations on Friday and the International Monetary Fund and World Bank Saturday and Sunday failed to agree on a strategy for reducing the heavy burden of debt faced by some of the world 's poorest nations .\tVBN NNS IN NNS IN DT NNP NNS IN NNP CC DT NNP NNP NNP CC NNP NNP NNP CC NNP VBD TO VB IN DT NN IN VBG DT JJ NN IN NN VBN IN DT IN DT NN POS JJS NNS .\nSpain 's King Juan Carlos has defended the country 's parliamentary monarchy as a guarantor of national stability .\tNNP POS NNP NNP NNP VBZ VBN DT NN POS JJ NN IN DT NN IN JJ NN .\nThe monarch told university students in the northern city of Oviedo that the monarchy had contributed to the longest period of stability and prosperity in democratic Spain .\tDT NN VBD NN NNS IN DT JJ NN IN NNP IN DT NN VBD VBN TO DT JJS NN IN NN CC NN IN JJ NNP .\nHis speech came more than two weeks after separatists in Catalonia burned posters of the king and his wife , Queen Sofia , in the town of Girona , northeast of Barcelona .\tPRP$ NN VBD JJR IN CD NNS IN NNS IN NNP VBD NNS IN DT NN CC PRP$ NN , NNP NNP , IN DT NN IN NNP , NN IN NNP .\nThe separatists also shouted pro-independence slogans , such as ' Catalonians have no king . '\tDT NNS RB VBD JJ NNS , JJ IN `` NNS VBP DT NN . ``\nBoth the Socialist government of Prime Minister Jose Luis Rodriguez Zapatero and the opposition Popular Party have defended and backed the monarch .\tDT DT JJ NN IN NNP NNP NNP NNP NNP NNP CC DT NN NNP NNP VBP VBN CC VBN DT NN .\nOutside Catalonia and the Separatist Basque region to the west , Juan Carlos remains extremely popular .\tJJ NNP CC DT NNP NNP NN TO DT NN , NNP NNP VBZ RB JJ .\nMany Spaniards respect him for helping to thwart a rightist military coup in 1981 and strengthening democracy in the country .\tJJ NNS VB PRP IN VBG TO VB DT JJ JJ NN IN CD CC VBG NN IN DT NN .\nMore than 2,00,000 people have been left without electricity in Spain 's Canary Islands after a powerful tropical storm ripped through the area , killing at least seven people .\tJJR IN CD NNS VBP VBN VBN IN NN IN NNP POS NNP NNP IN DT JJ JJ NN VBN IN DT NN , VBG IN JJS CD NNS .\nLocal officials say tropical storm Delta struck the region Monday , hitting the islands of Tenerife and La Palma the hardest .\tJJ NNS VBP JJ NN NNP VBD DT NN NNP , VBG DT NNS IN NNP CC NNP NNP DT JJS .\nThe storm forced ports and airports to close .\tDT NN VBD NNS CC NNS TO VB .\nThe victims were a man who fell from his roof as he attempted to repair it and six migrants who drowned when their boat sank while it was trying to reach the islands from Africa .\tDT NNS VBD DT NN WP VBD IN PRP$ NN IN PRP VBD TO VB PRP CC CD NNS WP VBD WRB PRP$ NN VBD IN PRP VBD VBG TO VB DT NNS IN NNP .\nWeather officials say the storm is expected to weaken as it heads toward northwestern Africa .\tNNP NNS VBP DT NN VBZ VBN TO VB IN PRP VBZ IN JJ NNP .\nChina 's state-run media say a 19-year-old Chinese soldier has been hospitalized with bird flu .\tNNP POS JJ NNS VBP DT JJ JJ NN VBZ VBN VBN IN NN NN .\nIt is not immediately clear if the soldier has been infected with the often deadly H5N1 strain of bird flu .\tPRP VBZ RB RB JJ IN DT NN VBZ VBN VBN IN DT RB JJ NNP NN IN NN NN .\nFifteen people have died in China since the outbreak in 2003 .\tCD NNS VBP VBN IN NNP IN DT NN IN CD .\nWorldwide , the virus has killed 186 people , mostly in Southeast Asia .\tRB , DT NN VBZ VBN CD NNS , RB IN NNP NNP .\nThe virus is mainly passed on to humans through contact with infected poultry .\tDT NN VBZ RB VBN IN TO NNS IN NN IN JJ NN .\nBut experts fear the virus could spark a pandemic if it mutates into a form easily transmissible upon human to human contact .\tCC NNS VBP DT NN MD VB DT JJ IN PRP VBZ IN DT NN RB JJ IN JJ TO JJ NN .\nPresident Barack Obama calls on Congress to provide new incentives to encourage Americans to make homes more energy-efficient .\tNNP NNP NNP VBZ IN NNP TO VB JJ NNS TO VB NNS TO VB NNS RBR JJ .\nU.S. President Barack Obama is calling on Congress to provide new incentives that would encourage Americans to make their homes more energy-efficient .\tNNP NNP NNP NNP VBZ VBG IN NNP TO VB JJ NNS WDT MD VB NNS TO VB PRP$ NNS RBR JJ .\nSpeaking Tuesday at a large hardware store near Washington , Mr. Obama said the incentives would help consumers cut their energy costs enough to pay for the changes they make .\tVBG NNP IN DT JJ NN NN IN NNP , NNP NNP VBD DT NNS MD VB NNS VB PRP$ NN NNS RB TO VB IN DT NNS PRP VBP .\nHe also said it would help the economy by boosting consumer spending , and would put a lot of people to work in the construction industry , which has high unemployment .\tPRP RB VBD PRP MD VB DT NN IN VBG NN NN , CC MD VB DT NN IN NNS TO VB IN DT NN NN , WDT VBZ JJ NN .\nThe plan is part of a program the president previously announced to spur job creation .\tDT NN VBZ NN IN DT NN DT NN RB VBD TO VB NN NN .\nIt also calls for tax cuts for business and more spending on roads , broadband networks and other infrastructure .\tPRP RB VBZ IN NN NNS IN NN CC JJR NN IN NNS , NN NNS CC JJ NN .\nGulbuddin Hekmatyar In Afghanistan , 17 members of the Hezb-e-Islami militant group have laid down their arms and surrendered to authorities in the southeast of the country .\tNNP NNP IN NNP , CD NNS IN DT NNP JJ NN VBP VBN RP PRP$ NNS CC VBD TO NNS IN DT NN IN DT NN .\nThe Hezb-e-Islami is led by former Afghan prime minister Gulbuddin Hekmatyar , who is on the United States ' most wanted list of terror suspects .\tDT NNP VBZ VBN IN JJ JJ JJ NN NNP NNP , WP VBZ IN DT NNP NNPS POS RBS JJ NN IN NN NNS .\nThe governor of Khost province , Merajudeen Patan told reporters the 17 men are from different districts of Paktia and Khost provinces , and that they have returned from Pakistan to join the political process and help rebuild war-torn Afghanistan .\tDT NN IN NNP NN , NNP NNP VBD NNS DT CD NNS VBP IN JJ NNS IN NNP CC NNP NNS , CC IN PRP VBP VBN IN NNP TO VB DT JJ NN CC VB VB JJ NNP .\nAfghan President Hamid Karzai offered an amnesty to rank-and-file Taleban fighters last year .\tJJ NNP NNP NNP VBD DT NN TO JJ NNP NNS JJ NN .\nHe said all but a hard core of 150 militants wanted for human rights violations would be able to rejoin the political process .\tPRP VBD DT CC DT JJ NN IN CD NNS VBN IN JJ NNS NNS MD VB JJ TO VB DT JJ NN .\nU.S. border officials have found a tunnel under the U.S.-Mexican border in southern California and say they suspect it was used to smuggle drugs or people .\tNNP NN NNS VBP VBN DT NN IN DT JJ NN IN JJ NNP CC VB PRP VBP PRP VBD VBN TO VB NNS CC NNS .\nA spokeswoman for the Immigration and Customs Enforcement Agency says the tunnel is near the border town of San Ysidro , south of San Diego .\tDT NN IN DT NNP CC NNP NNP NNP VBZ DT NN VBZ IN DT NN NN IN NNP NNP , RB IN NNP NNP .\nShe says the tunnel is about 11 meters long and one meter square in diameter .\tPRP VBZ DT NN VBZ IN CD NNS RB CC CD NN NN IN NN .\nShe says trash and other evidence was found in the tunnel indicating it had been used recently .\tPRP VBZ NN CC JJ NN VBD VBN IN DT NN VBG PRP VBD VBN VBN RB .\nEach year , thousands of people illegally enter the United States from Mexico .\tDT NN , NNS IN NNS RB VBP DT NNP NNPS IN NNP .\nU.S. lawmakers recently ordered construction of security fencing along the border to curb illegal crossing .\tNNP NNS RB VBD NN IN NN VBG IN DT NN TO VB JJ VBG .\nMillions of Americans are gathering with family and friends Thursday , to reflect on their blessings for the Thanksgiving holiday .\tNNS IN NNS VBP VBG IN NN CC NNS NNP , TO VB IN PRP$ NNS IN DT NNP NN .\nIn towns and cities across the United States , Thanksgiving is marked by parades , charity events and traditional turkey dinners .\tIN NNS CC NNS IN DT NNP NNPS , NNP VBZ VBN IN NNS , NN NNS CC JJ NN NNS .\nThe American Automobile Association estimates that some 37-million Americans will travel 80 kilometers or more from home this holiday , a slight increase over last year .\tDT NNP NNP NNP VBZ IN DT JJ NNS MD VB CD NNS CC JJR IN NN DT NN , DT JJ NN IN JJ NN .\nAfter several weeks of almost non-stop travel , President Bush is spending the holiday at his ranch in Crawford , Texas to spend a few quiet days with his family .\tIN JJ NNS IN RB JJ NN , NNP NNP VBZ VBG DT NN IN PRP$ NN IN NNP , NNP TO VB DT JJ JJ NNS IN PRP$ NN .\nMr. Bush said Wednesday he is thinking of American military personnel serving abroad , as well as their families .\tNNP NNP VBD NNP PRP VBZ VBG IN JJ JJ NNS VBG RB , RB RB IN PRP$ NNS .\nHe said Americans are thankful for their sacrifices .\tPRP VBD NNS VBP JJ IN PRP$ NNS .\nThanksgiving is observed each year on the fourth Thursday in November .\tNNP VBZ VBN DT NN IN DT JJ NNP IN NNP .\nIt dates back to 1621 , when European settlers and native American Indians ate together to celebrate a bountiful harvest .\tPRP VBZ RB TO CD , WRB JJ NNS CC JJ JJ NNS VBP RB TO VB DT JJ NN .\nBolivia 's elections court has confirmed that President Evo Morales ' party won more than half the seats in the nation 's constituent assembly election last week .\tNNP POS NNS NN VBZ VBN IN NNP NNP NNP POS NN VBD JJR IN PDT DT NNS IN DT NN POS JJ NN NN JJ NN .\nThe official count released Tuesday shows that Mr. Morales ' Movement Toward Socialism ( MAS ) party won 137 of the assembly 's 255 seats .\tDT JJ NN VBN NNP VBZ IN NNP NNP POS NNP NNP NNP LRB NNP RRB NN VBD CD IN DT NN POS CD NNS .\nThat result leaves MAS short of the two-thirds needed to control the assembly , which will rewrite the constitution .\tDT NN VBZ NNP NN IN DT NNS VBN TO VB DT NN , WDT MD VB DT NN .\nComing in second was the main opposition PODEMOS alliance with 60 seats .\tVBG IN NN VBD DT JJ NN NNP NN IN CD NNS .\nA referendum held at the same time on whether the national government will grant Bolivian states greater autonomy failed in a majority of states .\tDT NN VBN IN DT JJ NN IN IN DT JJ NN MD VB JJ NNS JJR NN VBD IN DT NN IN NNS .\nChad 's parliamentary election has been postponed for two years as part of a deal between the government and the opposition parties that boycotted last year 's presidential election .\tNNP POS JJ NN VBZ VBN VBN IN CD NNS IN NN IN DT NN IN DT NN CC DT NN NNS WDT VBD JJ NN POS JJ NN .\nPresident Idriss Deby and a coalition of about 20 opposition parties called ' Coordination for the Defense of the Constitution ' signed the agreement Monday after six months of negotiations .\tNNP NNP NNP CC DT NN IN IN CD NN NNS VBD `` NN IN DT NN IN DT NNP `` VBD DT NN NNP IN CD NNS IN NNS .\nThe new accord delays elections until December 2009 to allow for the creation of computerized and tamper-proof electoral lists , as well as biometric voting cards to prevent fraud .\tDT JJ NN NNS NNS IN NNP CD TO VB IN DT NN IN JJ CC JJ JJ NNS , RB RB IN JJ NN NNS TO VB NN .\nIn the meantime , members of the opposition will have more of a role in the current government .\tIN DT NN , NNS IN DT NN MD VB JJR IN DT NN IN DT JJ NN .\nSome analysts say the agreement will do little to change Chad 's political climate , considering President Deby has managed to keep a firm hold on power .\tDT NNS VBP DT NN MD VB RB TO VB NNP POS JJ NN , VBG NNP NNP VBZ VBN TO VB DT JJ NN IN NN .\nOpposition parties boycotted the 2006 presidential balloting that led to Mr. Deby 's re-election .\tNN NNS VBD DT CD JJ NN WDT VBD TO NNP NNP POS NN .\nThey accused the ruling party of electoral corruption .\tPRP VBD DT VBG NN IN JJ NN .\nThe United Nations has condemned the killing of a U.N. security officer in southern Somalia .\tDT NNP NNP VBZ VBN DT NN IN DT NNP NN NN IN JJ NNP .\nMohamuud Musse Gurage , a Somali national , was shot by two unidentified gunmen Monday night in the port town of Kismayo in Somalia 's Lower Juba region .\tNNP NNP NNP , DT JJ NN , VBD VBN IN CD JJ NNS NNP NN IN DT JJ NN IN NNP IN NNP POS NNP NNP NN .\nThe United Nations says it has evacuated its staffers from the area .\tDT NNP NNP VBZ PRP VBZ VBN PRP$ NNS IN DT NN .\nForeigners and Somali nationals with international ties have been targeted by assassins in Somalia , which has been ruled by warring factions since the collapse of the government in 1991 .\tNNS CC JJ NNS IN JJ NNS VBP VBN VBN IN NNS IN NNP , WDT VBZ VBN VBN IN VBG NNS IN DT NN IN DT NN IN CD .\nA fragile transitional administration is now in place following peace talks in Kenya but security concerns continue .\tDT JJ JJ NN VBZ RB IN NN VBG NN NNS IN NNP CC NN NNS VBP .\nIn July , prominent Somali peace activist Abdulkadir Yahya Ali was gunned down in the capital , Mogadishu .\tIN NNP , JJ JJ NN NN NNP NNP NNP VBD VBN RP IN DT NN , NNP .\nAnd a journalist with the British Broadcasting Corporation was murdered outside her hotel in the capital in February .\tCC DT NN IN DT NNP NNP NNP VBD VBN IN PRP$ NN IN DT NN IN NNP .\nThe U.S. military says it expects an increase in insurgent attacks in Iraq as its newly elected government forms and final results from last month 's general elections are released .\tDT NNP NN VBZ PRP VBZ DT NN IN JJ NNS IN NNP IN PRP$ RB VBN NN NNS CC JJ NNS IN JJ NN POS JJ NNS VBP VBN .\nBrigadier-General Don Alston says insurgents will use Iraq 's transition to a new government as an opportunity to try to derail the democratic process .\tNNP NNP NNP VBZ NNS MD VB NNP POS NN TO DT JJ NN IN DT NN TO VB TO VB DT JJ NN .\nHe spoke Thursday as Iraq was in a relative period of calm during the Muslim holiday of Eid Al-Adha .\tPRP VBD NNP IN NNP VBD IN DT JJ NN IN NN IN DT NNP NN IN NNP NNP .\nMeanwhile , lawyers for former Iraqi deputy prime minister Tareq Aziz say he is in poor health and may have just weeks to live .\tRB , NNS IN JJ JJ NN JJ NN NNP NNP VBP PRP VBZ IN JJ NN CC MD VB RB NNS TO VB .\nThey say Aziz , one of the most recognizable figures of Saddam Hussein 's former regime , is suffering from numerous ailments .\tPRP VBP NNP , CD IN DT RBS JJ NNS IN NNP NNP POS JJ NN , VBZ VBG IN JJ NNS .\nBut U.S. officials say Aziz has suffered no serious deterioration while he has been in U.S. custody .\tCC NNP NNS VBP NNP VBZ VBN DT JJ NN IN PRP VBZ VBN IN NNP NN .\nA U.S. military helicopter has crashed northwest of Baghdad .\tDT NNP JJ NN VBZ VBN NN IN NNP .\nThere is no immediate word on casualties .\tEX VBZ DT JJ NN IN NNS .\nThe U.S. military confirmed that an Apache attack helicopter with two pilots on board went down around 11 a.m. local time in a field , and that an investigation is under way to determine the cause of the crash .\tDT NNP NN VBD IN DT NNP NN NN IN CD NNS IN NN VBD RB IN CD RB JJ NN IN DT NN , CC IN DT NN VBZ IN NN TO VB DT NN IN DT NN .\nIn Baghdad , authorities say two Iraqi civilians were killed in a roadside bomb blast near a police station in a Sunni district of the city .\tIN NNP , NNS VBP CD JJ NNS VBD VBN IN DT NN NN NN IN DT NN NN IN DT NNP NN IN DT NN .\nElsewhere in the capital , at least two people , including a child , were killed in a drive-by shooting , and the U.S. military says a soldier was killed by small-arms fire while investigating a burning vehicle .\tRB IN DT NN , IN JJS CD NNS , VBG DT NN , VBD VBN IN DT JJ NN , CC DT NNP NN VBZ DT NN VBD VBN IN NNS NN IN VBG DT NN NN .\nSunday , at least 30 people , including many policemen , were killed in a series of car bombings in the northern city of Mosul .\tNNP , IN JJS CD NNS , VBG JJ NNS , VBD VBN IN DT NN IN NN NNS IN DT JJ NN IN NNP .\nGerman Chancellor Angela Merkel is headed to Washington to meet with President Bush Wednesday .\tJJ NNP NNP NNP VBZ VBN TO NNP TO VB IN NNP NNP NNP .\nThe two leaders are expected to focus on the international response to Iran 's controversial nuclear program .\tDT CD NNS VBP VBN TO VB IN DT JJ NN TO NNP POS JJ JJ NN .\nGermany has held months of negotiations with Tehran , alongside Britain and France .\tNNP VBZ VBN NNS IN NNS IN NNP , IN NNP CC NNP .\nThis is Ms. Merkel 's second trip to the United States since she took office last November .\tDT VBZ NNP NNP POS JJ NN TO DT NNP NNPS IN PRP VBD NN JJ NNP .\nMs. Merkel will travel to New York for several hours on Thursday for economic meetings , and will return to Washington later that day to speak at the American Jewish Committee , which works to safeguard Jews and Jewish life worldwide .\tNNP NNP MD VB TO NNP NNP IN JJ NNS IN NNP IN JJ NNS , CC MD VB TO NNP RB DT NN TO VB IN DT NNP NNP NNP , WDT VBZ TO VB NNPS CC JJ NN NN .\nSome officials in Washington and Berlin view the visits as a chance for the two allies to re-build ties that were strong during the Cold War , but frayed over differences between President Bush and former Chancellor Gerhard Schroeder over the Iraq war .\tDT NNS IN NNP CC NNP VBP DT NNS IN DT NN IN DT CD NNS TO JJ NNS WDT VBD JJ IN DT NNP NNP , CC VBD IN NNS IN NNP NNP CC JJ NNP NNP NNP IN DT NNP NN .\nRussian officials say they are destroying thousands of domestic birds in an effort to contain the spread of a bird flu outbreak that began in Siberia and has spread west to the Ural mountains region .\tJJ NNS VBP PRP VBP VBG NNS IN JJ NNS IN DT NN TO VB DT NN IN DT NN NN NN WDT VBD IN NNP CC VBZ VBN RB TO DT NNP NNS NN .\nHealth officials and the Emergency Situations Ministry say the outbreak of the highly potent H5N1 strain of virus could pose a threat to humans .\tNNP NNS CC DT NNP NNP NNP VBP DT NN IN DT RB JJ NNP NN IN NN MD VB DT NN TO NNS .\nThey also say it could spread to the Mediterranean area and the Middle East as birds migrate westward to avoid the harsh Russian winter .\tPRP RB VBP PRP MD VB TO DT NNP NN CC DT NNP NNP IN NNS VBP RB TO VB DT JJ JJ NN .\nOfficials say the illness , which can be fatal , has not yet spread to humans in Russia .\tNNS VBP DT NN , WDT MD VB JJ , VBZ RB RB VBN TO NNS IN NNP .\nAt least 60 people in southeast Asia have died from bird flu since 2003 .\tIN JJS CD NNS IN JJ NNP VBP VBN IN NN NN IN CD .\nOn Monday , authorities said the virus had been discovered in the Chelyabinsk region , but it is not clear whether it was the H5N1 strain .\tIN NNP , NNS VBD DT NN VBD VBN VBN IN DT NNP NN , CC PRP VBZ RB JJ IN PRP VBD DT NNP NN .\nMillions of Muslims across South Asia have celebrated the annual Eid al-Fitr Islamic holiday , marking the end of the month-long Ramadan .\tNNS IN NNPS IN NNP NNP VBP VBN DT JJ NNP NNP NNP NN , VBG DT NN IN DT JJ NNP .\nAnd millions of them will celebrate it on Wednesday because of different sightings of the new moon at different places .\tCC NNS IN PRP MD VB PRP IN NNP IN IN JJ NNS IN DT JJ NN IN JJ NNS .\nAfghan President Hamid Karzai called on the world 's Muslims to help his country rid itself of insurgents .\tJJ NNP NNP NNP VBD IN DT NN POS NNS TO VB PRP$ NN VB PRP IN NNS .\nIn New Delhi , government offices closed , and thousands packed into the main 17th-century mosque known as ' Jama Masjid ' Tuesday morning to pray .\tIN NNP NNP , NN NNS VBD , CC NNS VBD IN DT JJ JJ NN VBN IN `` NNP NNP `` NNP NN TO VB .\nEid was also celebrated Tuesday in the eastern Indian states of Bihar and West Bengal , and southern Karnataka and Kerala states .\tNNP VBD RB VBN NNP IN DT JJ JJ NNS IN NNP CC NNP NNP , CC JJ NNP CC NNP NNS .\nBut in other parts of the country it will be observed on Wednesday .\tCC IN JJ NNS IN DT NN PRP MD VB VBN IN NNP .\nIn Bangladesh , Eid will also fall on Wednesday .\tIN NNP , NNP MD RB VB IN NNP .\nIn Pakistan , the official day of Eid will be Wednesday , though in some parts people celebrated it on Tuesday .\tIN NNP , DT JJ NN IN NNP MD VB NNP , IN IN DT NNS NNS VBD PRP IN NNP .\nThe European Parliament has started its own investigation into reports of CIA secret prisons in Eastern Europe .\tDT NNP NNP VBZ VBN PRP$ JJ NN IN NNS IN NNP JJ NNS IN NNP NNP .\nThe lawmakers agreed Thursday in Brussels to set up a 46-member committee to look into the matter .\tDT NNS VBD NNP IN NNP TO VB RP DT JJ NN TO VB IN DT NN .\nSeveral EU countries have set up their own probes .\tJJ NNP NNS VBP VBN RP PRP$ JJ NNS .\nThe committee will recommend what political action should be taken against any country deemed to be involved .\tDT NN MD VB WP JJ NN MD VB VBN IN DT NN VBN TO VB VBN .\nReports saying the CIA has secret detention centers in Europe first appeared in November in the Washington Post newspaper .\tNNS VBG DT NNP VBZ JJ NN NNS IN NNP RB VBD IN NNP IN DT NNP NNP NN .\nHuman rights groups subsequently singled out Poland and Romania as possible sites for such facilities .\tJJ NNS NNS RB VBD RP NNP CC NNP IN JJ NNS IN JJ NNS .\nBoth countries denied any involvement .\tDT NNS VBD DT NN .\nMeanwhile , Bulgaria 's Foreign Minister Ivaylo Kalfin has denied there are secret CIA prisons in his country .\tRB , NNP POS NNP NNP NNP NNP VBZ VBN EX VBP JJ NNP NNS IN PRP$ NN .\nHis comment comes after a Swiss newspaper said local security officials had intercepted an Egyptian government document mentioning CIA prisons in several eastern European countries including Bulgaria and Ukraine .\tPRP$ NN VBZ IN DT JJ NN VBD JJ NN NNS VBD VBN DT JJ NN NN VBG NNP NNS IN JJ JJ JJ NNS VBG NNP CC NNP .\nSeven & I Holdings , the Japanese company that owns 7-Eleven convenience stores in the U.S. , Japan and elsewhere , has reached a deal to take over department stores Seibu and Sogo .\tNNP CC NNP NNPS , DT JJ NN WDT VBZ NNP NN NNS IN DT NNP , NNP CC RB , VBZ VBN DT NN TO VB RP NN NNS NNP CC NNP .\nThe $ 1.1 billion acquisition will make Seven & I the largest retailer in Japan by sales .\tDT $ CD CD NN MD VB NNP CC NNP DT JJS NN IN NNP IN NNS .\nUnder the deal announced Monday , Seven & I will buy a 65 percent stake in Millennium Retailing , which runs the Seibu and Sogo chains .\tIN DT NN VBN NNP , NNP CC NNP MD VB DT CD NN NN IN NNP NNP , WDT VBZ DT NNP CC NNP NNS .\nMillennium is currently controlled by an affiliate of Japanese brokerage Nomura Securities .\tNNP VBZ RB VBN IN DT NN IN JJ NN NNP NNPS .\nSeven & I plans to buy up the remaining shares of Millennium by March of next year .\tNNP CC NNP VBZ TO VB RP DT VBG NNS IN NN IN NNP IN JJ NN .\nThe takeover of Seibu and Sogo will help 7-Eleven 's parent company expand into the luxury retail market , at a time when Japanese consumer spending is surging .\tDT NN IN NNP CC NNP MD VB NNP POS NN NN VB IN DT NN JJ NN , IN DT NN WRB JJ NN NN VBZ VBG .\nNight time curfews have gone into effect in more than 30 French cities and towns , and the country 's worst unrest in decades is showing signs of abating .\tNNP NN NNS VBP VBN IN NN IN JJR IN CD JJ NNS CC NNS , CC DT NN POS JJS NN IN NNS VBZ VBG NNS IN VBG .\nPolice say 482 vehicles were burned across the country overnight , and 203 people were arrested .\tNNS VBP CD NNS VBD VBN IN DT NN JJ , CC CD NNS VBD VBN .\nBut there were no reports of injuries , and police say the number of violent incidents has dropped since the curfews took effect .\tCC EX VBD DT NNS IN NNS , CC NNS VBP DT NN IN JJ NNS VBZ VBN IN DT NNS VBD NN .\nPolice say a school in the eastern town of Belfort was destroyed overnight and vandalism at an electricity station caused a power blackout in Lyon .\tNNS VBP DT NN IN DT JJ NN IN NNP VBD VBN JJ CC NN IN DT NN NN VBD DT NN NN IN NNP .\nThe area around Paris was reported quiet , despite the absence of curfews there .\tDT NN IN NNP VBD VBN JJ , IN DT NN IN NNS RB .\nMuslim youths of North African descent have mainly been responsible for the two weeks of riots .\tNNP NNS IN JJ JJ NN VBP RB VBN JJ IN DT CD NNS IN NNS .\nThe government has promised to address what many French say are the causes of the violence - unemployment , poor schools and housing , and racism .\tDT NN VBZ VBN TO VB WP JJ NNS VBP VBP DT NNS IN DT NN IN NN , JJ NNS CC NN , CC NN .\nThe Committee to Protect Journalists says it is alarmed by Niger 's attempt to censor coverage of hunger and malnutrition in parts of the West African nation .\tDT NNP TO VB NNP VBZ PRP VBZ VBN IN NNP POS NN TO VB NN IN NN CC NN IN NNS IN DT JJ JJ NN .\nIn a statement from New York , the media rights group was reacting to the Niger government 's move revoking permission for a local BBC team to report on hunger issues .\tIN DT NN IN NNP NNP , DT NNS NNS NN VBD VBG TO DT NNP NN POS NN VBG NN IN DT JJ NNP NN TO VB IN NN NNS .\nThe CPJ said the government was putting its desire to protect its image ahead of the desperate needs of its own citizens .\tDT NNP VBD DT NN VBD VBG PRP$ NN TO VB PRP$ NN RB IN DT JJ NNS IN PRP$ JJ NNS .\nIt called on the government to allow full coverage of the humanitarian needs of the local population .\tPRP VBD IN DT NN TO VB JJ NN IN DT JJ NNS IN DT JJ NN .\nOn Wednesday , a Niger government spokesman , Ben Omar , told VOA Hausa service that journalists were giving incorrect impressions about the country 's food situation .\tIN NNP , DT NNP NN NN , NNP NNP , VBD NNP NNP NN IN NNS VBD VBG JJ NNS IN DT NN POS NN NN .\nAid agencies say that some three million people suffered from severe food shortages in Niger in 2005 .\tJJ NNS VBP IN DT CD CD NNS VBD IN JJ NN NNS IN NNP IN CD .\nThe World Health Organization is urging greater cooperation among nations to tackle the growing number of cross-border threats to public health .\tDT NNP NNP NNP VBZ VBG JJR NN IN NNS TO VB DT VBG NN IN JJ NNS TO JJ NN .\nTo mark World Health Day Saturday , the WHO issued a report that warns of emerging international threats to health security .\tTO VB NNP NNP NNP NNP , DT NNP VBD DT NN WDT VBZ IN VBG JJ NNS TO NN NN .\nThe report says infectious diseases such as HIV / AIDs , Ebola , the SARS ( Severe Acute Respiratory Syndrome ) outbreak in Asia , and human cases of the H5N1 bird flu have emerged in unprecedented numbers .\tDT NN VBZ JJ NNS JJ IN NNP CC NNP , NNP , DT NNS LRB NNP NNP NNP NNP RRB NN IN NNP , CC JJ NNS IN DT NNP NN NN VBP VBN IN JJ NNS .\nThe WHO says natural disasters , environmental change , bioterrorism and chemical spills also pose major challenges .\tDT NNP VBZ JJ NNS , JJ NN , NN CC NN NNS RB VBP JJ NNS .\nWHO Director-General Margaret Chan said countries have to share responsibility and take pre-emptive action against such threats .\tNNP NN NNP NNP VBD NNS VBP TO VB NN CC VB JJ NN IN JJ NNS .\nAs part of that effort , the Geneva-based U.N. body has revised its international regulations to help countries identify and respond earlier to health challenges .\tIN NN IN DT NN , DT JJ NNP NN VBZ VBN PRP$ JJ NNS TO VB NNS VB CC VB JJR TO NN NNS .\nIndonesian health officials say a 16-year-old boy who had tested positive for bird flu has died .\tJJ NN NNS VBP DT JJ NN WP VBD VBN JJ IN NN NN VBZ VBN .\nIf confirmed by the World Health Organization , the death would be Indonesia 's 43rd from the deadly H5N1 bird flu virus .\tIN VBN IN DT NNP NNP NNP , DT NN MD VB NNP POS CD IN DT JJ NNP NN NN NN .\nHealth Ministry officials say the patient had been in contact with sick chickens in the West Java district of Bekasi .\tNNP NNP NNS VBP DT NN VBD VBN IN NN IN JJ NNS IN DT NNP NNP NN IN NNP .\nOfficials say samples from the boy are being sent to a laboratory in the United States for secondary testing .\tNNS VBP NNS IN DT NN VBP VBG VBN TO DT NN IN DT NNP NNPS IN JJ NN .\nHealth experts are closely watching Indonesia .\tNNP NNS VBP RB VBG NNP .\nSeven members of a single family died in a north Sumatra village last May .\tCD NNS IN DT JJ NN VBD IN DT JJ NNP NN JJ NNP .\nThe deaths were the largest cluster of its kind since the global outbreak began in 2003 , and raised concerns about human-to-human transmission of the virus .\tDT NNS VBD DT JJS NN IN PRP$ NN IN DT JJ NN VBD IN CD , CC VBD NNS IN JJ NN IN DT NN .\nThe international press freedom watchdog group , Reporters Without Borders , is condemning what it calls a ' climate of violence ' against the media in Afghanistan .\tDT JJ NN NN NN NN , NNS IN NNS , VBZ VBG WP PRP VBZ DT `` NN IN NN `` IN DT NNS IN NNP .\nIn an open letter to President Hamid Karzai Thursday , the group expressed concern about recent violence and disciplinary actions against media outlets in the country .\tIN DT JJ NN TO NNP NNP NNP NNP , DT NN VBD NN IN JJ NN CC JJ NNS IN NNS NNS IN DT NN .\nThe organization cited an incident Wednesday in which media representatives were barred from parliamentary proceedings after a legislator complained of video that showed her asleep during debates aired on national television .\tDT NN VBD DT NN NNP IN WDT NNS NNS VBD VBN IN JJ NNS IN DT NN VBD IN NN WDT VBD PRP$ JJ IN NNS VBN IN JJ NN .\nThe letter also addresses alleged acts of violence against reporters and the government 's detention of a radio journalist for more than seven months without evidence .\tDT NN RB VBZ JJ NNS IN NN IN NNS CC DT NN POS NN IN DT NN NN IN JJR IN CD NNS IN NN .\nA spokesman for the Afghan embassy in Washington , Ashraf Haidari , told VOA Thursday that the country 's constitution guarantees freedom of expression .\tDT NN IN DT JJ NN IN NNP , NNP NNP , VBD NNP NNP IN DT NN POS NN VBZ NN IN NN .\nHe said the growth of private radio stations and hundreds of newspapers illustrates the Afghan government is protecting the media .\tPRP VBD DT NN IN JJ NN NNS CC NNS IN NNS VBZ DT JJ NN VBZ VBG DT NNS .\nSpain 's National Court has sentenced a Spanish citizen , released last year from the U.S. detention facility at Guantanamo Bay , Cuba , to six years in prison for membership in al-Qaida .\tNNP POS NNP NNP VBZ VBN DT JJ NN , VBN JJ NN IN DT NNP NN NN IN NNP NNP , NNP , IN CD NNS IN NN IN NN IN NNP .\nThe court announced the sentence in the case of Hamed Aberrahman Ahmed Wednesday .\tDT NN VBD DT NN IN DT NN IN NNP NNP NNP NNP .\nProsecutors say Mr. Ahmed had gone to Afghanistan to train with Osama bin Laden 's followers .\tNNS VBP NNP NNP VBD VBN TO NNP TO VB IN NNP NNP NNP POS NNS .\nHe has denied al-Qaida membership .\tPRP VBZ VBN NNP NN .\nMr. Ahmed was arrested in Pakistan in late 2001 .\tNNP NNP VBD VBN IN NNP IN JJ CD .\nPakistani authorities later handed him over to U.S. forces , who sent him to the military detention facility at Guantanamo Bay .\tJJ NNS RB VBD PRP IN TO NNP NNS , WP VBD PRP TO DT JJ NN NN IN NNP NNP .\nU.S authorities turned him over to Spain in February of last year .\tNNP NNS VBD PRP RP TO NNP IN NNP IN JJ NN .\nUnited Nations Secretary-General Kofi Annan says he expects the Bosnian Serb government to follow up its apology for the 1995 Srebrenica massacre with a drive to arrest and prosecute those responsible for the killings .\tNNP NNP NNP NNP NNP VBZ PRP VBZ DT JJ JJ NN TO VB RP PRP$ NN IN DT CD NNP NN IN DT NN TO VB CC VB DT JJ IN DT NNS .\nMr. Annan 's spokesman , Fred Eckhard , says the UN chief welcomes last week 's Bosnian Serb apology and condolences to the relatives of Srebrenica massacre victims .\tNNP NNP POS NN , NNP NNP , VBZ DT NNP NN VBZ JJ NN POS JJ JJ NN CC NNS TO DT NNS IN NNP NN NNS .\nThe Bosnian Serb government has acknowledged that Bosnian Serb forces killed almost 8,000 Muslim men and boys in July 1995 , after overrunning the Muslim enclave of Srebrenica .\tDT JJ JJ NN VBZ VBN IN JJ JJ NNS VBD RB CD NNP NNS CC NNS IN NNP CD , IN VBG DT NNP NN IN NNP .\nFollowing the apology , Bosnian Serb President Dragan Cavic urged indicted war crimes suspects to surrender to authorities , saying it is crucial for the future of the Bosnia Serb Republic .\tVBG DT NN , JJ JJ NNP NNP NNP VBD VBN NN NNS VBZ TO VB TO NNS , VBG PRP VBZ JJ IN DT NN IN DT NNP JJ NNP .\nIn connection with the massacre , the U.N. war crimes court in The Hague has indicted several Bosnian Serb officials and commanders , some of whom remain at large .\tIN NN IN DT NN , DT NNP NN NNS NN IN DT NNP VBZ VBN JJ JJ JJ NNS CC NNS , DT IN WP VBP IN JJ .\nThe trial of Saddam Hussein and seven co-defendants has resumed in Baghdad after a five-day break .\tDT NN IN NNP NNP CC CD NNS VBZ VBN IN NNP IN DT JJ NN .\nThe prosecution is presenting experts Monday , in an effort to confirm signatures of the former Iraqi leader and his co-defendants on documents related to the crackdown on Shi'ites in the 1980s .\tDT NN VBZ VBG NNS NNP , IN DT NN TO VB NNS IN DT JJ JJ NN CC PRP$ NNS IN NNS VBN TO DT NN IN NNS IN DT NNS .\nThe chief judge , Raouf Abdel Rahman , ruled last Wednesday that Saddam 's handwriting was authentic on documents related to the incident .\tDT NN NN , NNP NNP NNP , VBD JJ NNP IN NNP POS NN VBD JJ IN NNS VBN TO DT NN .\nThe ousted Iraqi dictator and the seven co-defendants are on trial for the 1982 killing of more than 140 Iraqi Shi'ites in the village of Dujail .\tDT JJ JJ NN CC DT CD NNS VBP IN NN IN DT CD NN IN JJR IN CD JJ NNS IN DT NN IN NNP .\nThe United Nations human rights envoy for Burma is calling on that country 's government to substantially improve human rights before the 2010 elections .\tDT NNP NNPS JJ NNS NN IN NNP VBZ VBG IN DT NN POS NN TO RB VB JJ NNS IN DT CD NNS .\nIn a report Wednesday , envoy Tomas Ojea Quintana said that if the elections take place in an atmosphere in which human rights are fully respected , the vote will be seen as credible .\tIN DT NN NNP , NN NNP NNP NNP VBD IN IN DT NNS VBP NN IN DT NN IN WDT JJ NNS VBP RB VBN , DT NN MD VB VBN IN JJ .\nHe outlined a series of measures that Burma should take , including amending laws that limit fundamental rights , such as freedom of expression , opinion and peaceful assembly .\tPRP VBD DT NN IN NNS WDT NNP MD VB , VBG VBG NNS WDT VBP JJ NNS , JJ IN NN IN NN , NN CC JJ NN .\nThe U.N. envoy said political prisoners should be released .\tDT NNP NN VBD JJ NNS MD VB VBN .\nHe said such a move would inspire political participation in the upcoming elections .\tPRP VBD PDT DT NN MD VB JJ NN IN DT JJ NNS .\nThe envoy also suggested a number of changes for Burma 's judiciary , including guaranteeing due process and setting up mechanisms to investigate human rights abuses .\tDT NN RB VBD DT NN IN NNS IN NNP POS NN , VBG NN JJ NN CC VBG RP NNS TO VB JJ NNS NNS .\nArgentine media is reporting that a Cuban dissident has sought refuge at the Argentine embassy in Havana .\tJJ NNS VBZ VBG IN DT JJ NN VBZ VBN NN IN DT JJ NN IN NNP .\nThe Argentine newspaper La Nacion reported Thursday renowned brain surgeon Hilda Molina and her 84-year-old mother had entered the embassy to request political asylum .\tDT JJ NN NNP NNP VBD NNP VBD NN NN NNP NNP CC PRP$ JJ NN VBD VBN DT NN TO VB JJ NN .\nDr. Molina has been petitioning the Cuban government to allow her to travel to Argentina to see her son , who lives in exile there .\tNNP NNP VBZ VBN VBG DT JJ NN TO VB PRP TO VB TO NNP TO VB PRP$ NN , WP VBZ IN NN RB .\nEarlier this month , Argentine President Nestor Kirchner wrote to his Cuban counterpart , Fidel Castro , asking him to allow Dr. Molina to visit Argentina .\tRBR DT NN , JJ NNP NNP NNP VBD TO PRP$ JJ NN , NNP NNP , VBG PRP TO VB NNP NNP TO VB NNP .\nMr. Castro responded that Dr. Molina 's family should visit her in Cuba .\tNNP NNP VBD IN NNP NNP POS NN MD VB PRP IN NNP .\nUkraine has denied reports there are secret prisons run by the U.S. Central Intelligence Agency on Ukrainian territory .\tNNP VBZ VBN NNS EX VBP JJ NNS VBN IN DT NNP NNP NNP NNP IN JJ NN .\nForeign Ministry spokesman , Vasilily Filipchuk Tuesday called a Swiss media report saying Ukraine allowed the covert U.S. interrogation centers on its soil ' absurd . '\tNNP NNP NN , NNP NNP NNP VBD DT JJ NNS NN VBG NNP VBD DT JJ NNP NN NNS IN PRP$ NN `` JJ . ``\nRussia 's Novosti news agency says Ukraine 's penitentiary and security service officials also dismissed the Swiss report .\tNNP POS NNP NN NN VBZ NNP POS JJ CC NN NN NNS RB VBD DT JJ NN .\nThe Swiss newspaper Sonntags-Blick says Swiss security officials intercepted an Egyptian government document mentioning secret CIA prisons in several eastern European nations , including Ukraine , Romania , Macedonia , Bulgaria as well as in Serbia 's province of Kosovo .\tDT JJ NN NNP VBZ JJ NN NNS VBD DT JJ NN NN VBG JJ NNP NNS IN JJ JJ JJ NNS , VBG NNP , NNP , NNP , NNP RB RB IN IN NNP POS NN IN NNP .\nIran 's foreign minister has postponed a visit to Saudi Arabia , which was to be part of a tour of Gulf States aimed at gathering support for Iran 's controversial nuclear program .\tNNP POS JJ NN VBZ VBN DT NN TO NNP NNP , WDT VBD TO VB NN IN DT NN IN NNP NNP VBN IN VBG NN IN NNP POS JJ JJ NN .\nManouchehr Mottaki was to hold talks with his Saudi counterpart Prince Saud al-Faisal in Jeddah Wednesday .\tNNP NNP VBD TO VB NNS IN PRP$ JJ NN NNP NNP NNP IN NNP NNP .\nInstead he traveled to the United Arab Emirates , following talks in Oman .\tIN PRP VBD TO DT NNP NNP NNPS , VBG NNS IN NNP .\nIranian and Saudi officials said the meeting was postponed because of differences in the men 's schedules , and the two would meet in the future .\tJJ CC JJ NNS VBD DT NN VBD VBN IN IN NNS IN DT NNS POS NNS , CC DT CD MD VB IN DT NN .\nThey also dismissed reports of tension between the two nations sparked by the Iraq war .\tPRP RB VBD NNS IN NN IN DT CD NNS VBN IN DT NNP NN .\nPrince Saud has expressed concerns over Iran 's alleged interference in Iraq , including the entry of people , money and weapons to Iraq .\tNNP NNP VBZ VBN NNS IN NNP POS JJ NN IN NNP , VBG DT NN IN NNS , NN CC NNS TO NNP .\nIran has denied the allegations .\tNNP VBZ VBN DT NNS .\nNews reports quote American officials as saying police in Zambia have detained a man whom U.S. authorities suspect of involvement in the deadly July 7 bombings in London .\tNN NNS VBP JJ NNS IN VBG NNS IN NNP VBP VBN DT NN WP NNP NNS VBP IN NN IN DT JJ NNP CD NNS IN NNP .\nThe reports Thursday by CNN Television and The Los Angeles Times newspaper identify the man as Haroon Rashid Aswat , a British citizen of South Asian descent in his early 30s .\tDT NNS NNP IN NNP NNP CC DT NNP NNP NNP NN VB DT NN IN NNP NNP NNP , DT JJ NN IN NNP NNP NN IN PRP$ JJ NNS .\nThe reports say U.S. and Zambian officials are holding talks to determine where to prosecute Mr. Aswat .\tDT NNS VBP NNP CC JJ NNS VBP VBG NNS TO VB WRB TO VB NNP NNP .\nReports say Mr. Aswat came to the attention of U.S. authorities in connection with alleged attempts to set up an al-Qaida training camp in the western United States several years ago .\tNNS VBP NNP NNP VBD TO DT NN IN NNP NNS IN NN IN JJ NNS TO VB RP DT NNP NN NN IN DT JJ NNP NNPS JJ NNS RB .\nSeparately , British police are still conducting a nationwide manhunt for the three remaining fugitive suspects in last week 's failed bomb attacks on the London transit system .\tRB , JJ NNS VBP RB VBG DT JJ NN IN DT CD VBG JJ NNS IN JJ NN POS VBN NN NNS IN DT NNP NN NN .\nPolice arrested a fourth suspect Wednesday .\tNNS VBN DT JJ NN NNP .\nAfrican Union observers say Sudan has failed to meet a deadline to abide by a cease-fire and stop attacking rebels in the western Darfur region .\tNNP NNP NNS VBP NNP VBZ VBN TO VB DT NN TO VB IN DT NN CC VB VBG NNS IN DT JJ NNP NN .\nAU officials reported fresh fighting Sunday , after mediators in Nigeria threatened to take Sudan and the rebels to the U.N. Security Council .\tNNP NNS VBD JJ NN NNP , IN NNS IN NNP VBD TO VB NNP CC DT NNS TO DT NNP NNP NNP .\nUnknown gunmen also fired Sunday at an African Union helicopter in Darfur .\tJJ NNS RB VBD NNP IN DT NNP NNP NN IN NNP .\nThere are no reports of casualties .\tEX VBP DT NNS IN NNS .\nSudanese Foreign Minister Mustafa Osman had earlier announced an immediate halt to all military operations in Darfur and asked the United Nations to make the same demand of the rebels .\tJJ NNP NNP NNP NNP VBD RB VBN DT JJ NN TO DT JJ NNS IN NNP CC VBN DT NNP NNPS TO VB DT JJ NN IN DT NNS .\nBut a rebel spokesman told the Reuters News Agency that Sudan has failed to keep earlier promises to stop attacks .\tCC DT NN NN VBD DT NNP NNP NNP IN NNP VBZ VBN TO VB JJR NNS TO VB NNS .\nFighting between largely Arab pro-government militias and non-Arab rebels in Darfur has left tens of thousands dead , including many civilians .\tVBG IN RB JJ JJ NNS CC JJ NNS IN NNP VBZ VBN NNS IN NNS JJ , VBG JJ NNS .\nA top U.N. official says indirect talks between the Ugandan government and northern rebels have provided the best chance for peace in 18 years of conflict .\tDT JJ NNP NN VBZ JJ NNS IN DT JJ NN CC JJ NNS VBP VBN DT JJS NN IN NN IN CD NNS IN NN .\nU.N. Emergency Relief Coordinator Jan Egeland praised the Ugandan government Wednesday for its renewed efforts to seek dialogue .\tNNP NNP NNP NNP NNP NNP VBD DT JJ NN NNP IN PRP$ JJ NNS TO VB NN .\nMr. Egeland says the conflict has forced up to 90 percent of the population in some areas of northern Uganda from their homes , adding that hundreds of thousands of lives are at stake .\tNNP NNP VBZ DT NN VBZ VBN RP TO CD NN IN DT NN IN DT NNS IN JJ NNP IN PRP$ NNS , VBG IN NNS IN NNS IN NNS VBP IN NN .\nRebels from the Lord 's Resistance Army are notorious for attacking civilians and kidnapping children for use as soldiers or sex slaves .\tNNS IN DT NNP POS NN NNP VBP JJ IN VBG NNS CC VBG NNS IN NN IN NNS CC NN NNS .\nOver the last few weeks , the rebels and the Ugandan government declared a temporary cease-fire and held talks through mediators .\tIN DT JJ JJ NNS , DT NNS CC DT JJ NN VBD DT JJ NN CC VBD NNS IN NNS .\nThe government says it is extending the truce for another week in the hopes of starting formal peace talks by then .\tDT NN VBZ PRP VBZ VBG DT NN IN DT NN IN DT NNS IN VBG JJ NN NNS IN RB .\nSouth Africa has offered a higher wage increase to public service workers in an effort to avert a strike by some 9,00,000 members of the civil service .\tNNP NNP VBZ VBN DT JJR NN NN TO JJ NN NNS IN DT NN TO VB DT NN IN DT CD NNS IN DT JJ NN .\nThe public services ministry announced Thursday it has offered to raise salaries by 7 percent .\tDT JJ NNS NN VBD NNP PRP VBZ VBN TO VB NNS IN CD NN .\nThe previous offer was 6.5 percent , but unions are demanding an 8.6 percent raise .\tDT JJ NN VBD CD NN , CC NNS VBP VBG DT CD NN NN .\nThe ministry said its offer of about $ 86 ( 630 rand ) for a housing allowance had not changed .\tDT NN VBD PRP$ NN IN IN $ CD LRB CD NNS RRB IN DT NN NN VBD RB VBN .\nUnions have asked for nearly $ 140 ( 1,000 rand ) .\tNNS VBP VBN IN RB $ CD LRB CD NN RRB .\nOne union , the 2,10,000 member Public Servants Association , had threatened to begin its strike Thursday .\tCD NN , DT CD NN NNP NNP NNP , VBD VBN TO VB PRP$ NN NNP .\nThe other workers have threatened to walk off their jobs next week .\tDT JJ NNS VBP VBN TO VB RP PRP$ NNS JJ NN .\nPublic Service and Administration Minister Richard Baloyi has called for any strikes to be delayed until he is able to meet with union leaders Thursday .\tNNP NNP CC NNP NNP NNP NNP VBZ VBN IN DT NNS TO VB VBN IN PRP VBZ JJ TO VB IN NN NNS NNP .\nPeru 's President has urged the use of the military to destroy jungle factories that produce cocaine .\tNNP POS NN VBZ VBN DT NN IN DT JJ TO VB NN NNS WDT VBP NN .\nAlan Garcia said Monday in Lima that Peru should use its military attack aircraft to bomb and machine-gun coca processing facilities and the airports used to transport drugs .\tNNP NNP VBD NNP IN NNP IN NNP MD VB PRP$ JJ NN NN TO VB CC VB NN VBG NNS CC DT NNS VBN TO VB NNS .\nMr. Garcia announced Sunday that Peru would resume the destruction of coca crops in Peru 's Amazon region .\tNNP NNP VBD NNP IN NNP MD VB DT NN IN NN NNS IN NNP POS NNP NN .\nOfficials had previously agreed to allow farmers to produce coca , a key raw material in the production of cocaine .\tNNS VBD RB VBN TO VB NNS TO VB NN , DT JJ JJ NN IN DT NN IN NN .\nA United Nations report released last year said Peru is the world 's second largest cocaine producer behind Colombia .\tDT NNP NNPS NN VBN JJ NN VBD NNP VBZ DT NN POS JJ JJS NN NN IN NNP .\nAccording to the report , Peru produces some 30 percent of the world 's cocaine .\tVBG TO DT NN , NNP VBZ DT CD NN IN DT NN POS NN .\nAfrican Union leaders have convened their summit in Khartoum Monday with host Sudan 's bid to head the continental bloc casting a cloud over the meeting .\tNNP NNP NNS VBP VBN PRP$ NN IN NNP NNP IN NN NNP POS NN TO VB DT JJ NN VBG DT NN IN DT NN .\nFive African leaders have appealed to Sudanese President Omar al-Bashir to withdraw his bid to hold the AU chairmanship because of ongoing violence in Sudan 's western Darfur region .\tCD JJ NNS VBP VBN IN JJ NNP NNP NNP TO VB PRP$ NN TO VB DT NNP NN IN IN JJ NN IN NNP POS JJ NNP NN .\nTens of thousands of people have been killed and two million displaced since fighting broke out in 2003 between government-backed Arab militias , known as Janjaweed , and rebel forces .\tNNS IN NNS IN NNS VBP VBN VBN CC CD CD VBN IN NN VBD RP IN CD IN JJ JJ NNS , VBN IN NNP , CC JJ NNS .\nMilitia fighters are accused of carrying out atrocities against civilians .\tNNP NNS VBP VBN IN VBG RP NNS IN NNS .\nThe United States has accused Mr. al-Bashir 's government of committing genocide in Darfur .\tDT NNP NNPS VBZ VBN NNP NNP POS NN IN VBG NN IN NNP .\nHuman rights group have also been very critical of Sudan , and Darfur rebels have threatened to boycott AU-sponsored peace talks if Khartoum assumes chairmanship of the 53-nation African Union .\tJJ NNS NN VBP RB VBN RB JJ IN NNP , CC NNP NNS VBP VBN TO VB JJ NN NNS IN NNP VBZ NN IN DT JJ NNP NNP .\nTaiwan 's future president , Ma Ying-jeou , is a U.S.-educated lawyer who served as minister for justice and minister without portfolio during the 1990s .\tNNP POS JJ NN , NNP NNP , VBZ DT JJ NN WP VBD IN NN IN NN CC NN IN NN IN DT NNS .\nMr. Ma unseated Chen Shui-bian , the current president , as Taipei mayor in 1998 .\tNNP NNP VBD NNP NNP , DT JJ NN , IN NNP NN IN CD .\nLast August , Mr. Ma was cleared of corruption charges filed against him .\tJJ NNP , NNP NNP VBD VBN IN NN NNS VBN IN PRP .\nThe charges prompted his resignation as party chairman .\tDT NNS VBD PRP$ NN IN NN NN .\nProsecutors accused him of misusing $ 3,65,000 in government funds while Taipei mayor .\tNNS VBD PRP IN VBG $ CD IN NN NNS IN NNP NN .\nMr. Ma has vowed not to provoke China with independence moves , so the two sides can co-exist and promote economic integration .\tNNP NNP VBZ VBN RB TO VB NNP IN NN NNS , IN DT CD NNS MD VB CC VB JJ NN .\nHe has said he wants to open direct air and shipping links with China .\tPRP VBZ VBN PRP VBZ TO VB JJ NN CC NN NNS IN NNP .\nTibetan leader cancels foreign travel .\tJJ NN VBZ JJ NN .\nTibetan exiles in India fasted and prayed for peace on Saturday , and their spiritual leader , the Dalai Lama , joined in from a hospital bed in Mumbai .\tJJ NNS IN NNP VBD CC VBD IN NN IN NNP , CC PRP$ JJ NN , DT NNP NNP , VBD IN IN DT NN NN IN NNP .\nThe 73-year-old Tibetan Buddhist leader is being treated for abdominal pain .\tDT JJ JJ NNP NN VBZ VBG VBN IN JJ NN .\nBut a spokesman says he still joined in the 12-hour fast after doctors gave him permission to do so .\tCC DT NN VBZ PRP RB VBD IN DT JJ JJ IN NNS VBD PRP NN TO VB RB .\nThe Dalai Lama canceled two upcoming foreign trips to undergo medical tests , after experiencing discomfort during recent travels .\tDT NNP NNP VBD CD JJ JJ NNS TO VB JJ NNS , IN VBG NN IN JJ NNS .\nHe spends several months a year traveling to promote Tibetan causes , and recently returned to India after a visit to France .\tPRP VBZ JJ NNS DT NN VBG TO VB JJ NNS , CC RB VBD TO NNP IN DT NN TO NNP .\nA spokesman says he expects the Tibetan leader to return to his home in Dharamsala , in northern India , in a day or two .\tDT NN VBZ PRP VBZ DT JJ NN TO VB TO PRP$ NN IN NNP , IN JJ NNP , IN DT NN CC CD .\nPalestinian Prime Minister Ahmed Qureia has asked the United States for help in stopping Israel from expanding its largest West Bank settlement .\tJJ NNP NNP NNP NNP VBZ VBN DT NNP NNPS IN NN IN VBG NNP IN VBG PRP$ JJS NNP NNP NN .\nIn Ramallah Thursday , Mr. Qureia asked visiting envoys Elliott Abrams and David Welch for a ' clear and firm ' U.S. position on Israeli plans to build 3,500 new homes in the Maale Adumim settlement near Jerusalem .\tIN NNP NNP , NNP NNP VBD VBG NNS NNP NNP CC NNP NNP IN DT `` JJ CC JJ `` NNP NN IN JJ NNS TO VB CD JJ NNS IN DT NNP NNP NN IN NNP .\nThe Israeli plan appears to clash with the U.S.-backed ' road map ' peace blueprint , which calls for a halt to settlement expansion on all Palestinian land captured by Israel in the 1967 war .\tDT JJ NN VBZ TO VB IN DT JJ `` NN NN `` NN NN , WDT VBZ IN DT NN TO NN NN IN DT JJ NN VBN IN NNP IN DT CD NN .\nAnalysts say the latest expansion is aimed at linking Maale Adumim to greater Jerusalem , which Israel claims as its eternal capital .\tNNS VBP DT JJS NN VBZ VBN IN VBG NNP NNP TO JJR NNP , WDT NNP VBZ IN PRP$ JJ NN .\nPalestinians want Arab East Jerusalem as the capital of a future state .\tNNS VBP NNP NNP NNP IN DT NN IN DT JJ NN .\nWednesday , the two U.S. diplomats asked Israeli Prime Minister Ariel Sharon to clarify the expansion plans .\tNNP , DT CD NNP NNS VBD JJ NNP NNP NNP NNP TO VB DT NN NNS .\nEuropean Union Commission President Jose Manuel Barroso is expected in Moscow Thursday to prepare for next month 's summit between Russian President Vladimir Putin and EU leaders .\tNNP NNP NNP NNP NNP NNP NNP VBZ VBN IN NNP NNP TO VB IN JJ NN POS NN IN JJ NNP NNP NNP CC NNP NNS .\nThe EU Commission says Mr. Barroso 's talks with President Putin aim at finding ways to improve cooperation with Russia .\tDT NNP NNP VBZ NNP NNP POS NNS IN NNP NNP NN IN VBG NNS TO VB NN IN NNP .\nThe summit , on May 10 , will take place one day after ceremonies in Moscow commemorating the 60th anniversary of the end of World War II in Europe .\tDT NN , IN NNP CD , MD VB NN CD NN IN NNS IN NNP VBG DT JJ NN IN DT NN IN NNP NNP NNP IN NNP .\nThe two sides are trying to create four major areas of cooperation : the economy ; freedom , security and justice ; external security ; and research , education and culture .\tDT CD NNS VBP VBG TO VB CD JJ NNS IN NN IN DT NN ; NN , NN CC NN ; JJ NN ; CC NN , NN CC NN .\nHowever , officials say there remain areas of disagreement , including on the introduction of a more liberal visa policy between the EU and Russia .\tRB , NNS VBP EX VBP NNS IN NN , VBG IN DT NN IN DT RBR JJ NN NN IN DT NNP CC NNP .\nThe Sudanese army has strongly denied involvement in a series of raids on villages and a displaced persons camp in Darfur in which at least 44 people were killed .\tDT JJ NN VBZ RB VBN NN IN DT NN IN NNS IN NNS CC DT JJ NNS NN IN NNP IN WDT IN JJS CD NNS VBD VBN .\nOn Saturday , the African Union accused Sudanese government forces of coordinating attacks with pro-government militiamen , known as the Janjaweed , of launching attacks in the western region over the past two weeks .\tIN NNP , DT NNP NNP VBD JJ NN NNS IN VBG NNS IN JJ NNS , VBN IN DT NNP , IN VBG NNS IN DT JJ NN IN DT JJ CD NNS .\nThe Sudanese army says the information provided by A.U. Ambassador Baba Gana Kingibe is incorrect and unreliable .\tDT JJ NN VBZ DT NN VBN IN NNP NNP NNP NNP NNP VBZ JJ CC JJ .\nMeanwhile , the Sudanese government and two Darfur rebel groups began face to face talks in Nigeria Monday for first the first time since opening the latest round of negotiations in mid-September .\tRB , DT JJ NN CC CD NNP NN NNS VBD NN TO VB NNS IN NNP NNP IN RB DT JJ NN IN VBG DT JJS NN IN NNS IN NNP .\nThe proceedings began with a condemnation of the recent violence from the African Union 's chief mediator , Salim Ahmed Salim , who said attacks on civilians and continued banditry in Darfur are not understandable .\tDT NNS VBD IN DT NN IN DT JJ NN IN DT NNP NNP POS JJ NN , NNP NNP NNP , WP VBD NNS IN NNS CC JJ NN IN NNP VBP RB JJ .\nA bad economy can impact people 's health as well as their wealth .\tDT JJ NN MD VB NNS POS NN RB RB IN PRP$ NN .\nCarol Pearson reports on the impact plunging stock markets are having on Americans .\tNNP NNP VBZ IN DT NN VBG NN NNS VBP VBG IN NNS .\nThe largest civil rights organization of American Sikhs has expressed outrage at a new U.S. airport security policy that allows random searches of turbans .\tDT JJS JJ NNS NN IN JJ NNS VBZ VBN NN IN DT JJ NNP NN NN NN WDT VBZ JJ NNS IN NNS .\nThe Sikh Coalition said it had been informed by the U.S. Transportation Security Administration that under new guidelines the religious headdress could be subject to pat-downs even if the turban wearers had passed a metal detector test .\tDT NNP NNP VBD PRP VBD VBN VBN IN DT NNP NNP NNP NNP IN IN JJ NNS DT JJ NN MD VB JJ TO NNS RB IN DT NN NNS VBD VBN DT NN NN NN .\nOn its website , the Coalition says it is concerned that the new policy amounts to religious profiling .\tIN PRP$ NN , DT NN VBZ PRP VBZ VBN IN DT JJ NN VBZ TO JJ NN .\nThe organization urged Sikhs to sign a petition to the TSA to demonstrate grassroots concern with the new procedures .\tDT NN VBD NNS TO VB DT NN TO DT NNP TO VB NNS NN IN DT JJ NNS .\nIt also asked all Sikhs to document their experience with the new headgear screening procedures .\tPRP RB VBD DT NNS TO VB PRP$ NN IN DT JJ JJ NN NNS .\nThe TSA said on its website it does not conduct ethnic or religious profiling .\tDT NNP VBD IN PRP$ NN PRP VBZ RB VB JJ CC JJ NN .\nBritain 's Prime Minister Tony Blair has called for automatically deporting foreigners who commit crimes , following criticism of the country 's deportation program .\tNNP POS NNP NNP NNP NNP VBZ VBN IN RB VBG NNS WP VBP NNS , VBG NN IN DT NN POS NN NN .\nMr. Blair spoke in the House of Commons Wednesday , saying that the government 's deportation system has been failing for years .\tNNP NNP VBD IN DT NNP IN NNP NNP , VBG IN DT NN POS NN NN VBZ VBN VBG IN NNS .\nHe added that Home Secretary Charles Clarke is working to fix those problems and ensure that foreigners are sent to their home countries after serving their prison sentences .\tPRP VBD IN NNP NNP NNP NNP VBZ VBG TO VB DT NNS CC VB IN NNS VBP VBN TO PRP$ NN NNS IN VBG PRP$ NN NNS .\nBut opposition lawmakers are calling for Clarke to resign .\tCC NN NNS VBP VBG IN NNP TO VB .\nThey say he is to blame for the failure to deport more than 1,000 former prisoners since 1999 , including some violent criminals .\tPRP VBP PRP VBZ TO VB IN DT NN TO VB JJR IN CD JJ NNS IN CD , VBG DT JJ NNS .\nRecent media reports say a suspect in the killing of a police officer last year is a Somali man who was not deported after an earlier prison term .\tJJ NNS NNS VBP DT NN IN DT NN IN DT NN NN JJ NN VBZ DT JJ NN WP VBD RB VBN IN DT JJR NN NN .\nThe criticism of the ruling Labor Party comes ahead of local elections on Thursday .\tDT NN IN DT NN NNP NNP VBZ RB IN JJ NNS IN NNP .\nOpinion polls indicate Labor candidates will fare poorly .\tNN NNS VBP NN NNS MD VB RB .\nPolice have broken up a Europe-wide child trafficking ring involving mostly Bulgarian children trained in petty crime .\tNNS VBP VBN RP DT JJ NN NN NN VBG RB JJ NNS VBN IN JJ NN .\nItalian police led the operation , arresting 41 Bulgarian nationals in Italy , Bulgaria , Austria , and Germany .\tJJ NNS VBD DT NN , VBG CD JJ NNS IN NNP , NNP , NNP , CC NNP .\nInvestigators said Monday impoverished Bulgarian families sold more than 100 children to the traffickers who then smuggled them across Europe to carry out such petty crimes as picking pockets .\tNNS VBD NNP VBD JJ NNS VBD JJR IN CD NNS TO DT NNS WP RB VBD PRP IN NNP TO VB RP JJ JJ NNS IN NN NNS .\nThe investigators said the suspects shared some of the stolen money with the parents .\tDT NNS VBD DT NNS VBD DT IN DT VBN NN IN DT NNS .\nPolice also said some of the children were sexually abused .\tNNS RB VBD DT IN DT NNS VBD RB VBN .\nIraqis living outside the country can begin voting Tuesday in the country 's parliamentary elections .\tNNS VBG IN DT NN MD VB VBG NNP IN DT NN POS JJ NNS .\nExpatriates will be able to cast ballots through Thursday , the day when Iraq itself holds the elections .\tNNS MD VB JJ TO VB NNS IN NNP , DT NN WRB NNP PRP VBZ DT NNS .\nFifteen countries have set up polling stations for Iraqis living abroad .\tCD NNS VBP VBN RP NN NNS IN NNS VBG RB .\nAuthorities in Iraq are preparing tough security measures for Thursday 's elections .\tNNS IN NNP VBP VBG JJ NN NNS IN NNP POS NNS .\nThe country 's borders will be closed , road traffic will be restricted except for vehicles with special permits , and night-time curfews will be extended starting tonight .\tDT NN POS NNS MD VB VBN , NN NN MD VB VBN IN IN NNS IN JJ NNS , CC JJ NNS MD VB VBN VBG NN .\nEarly voting was held in Iraq Monday for soldiers , prisoners and hospital patients .\tRB NN VBD VBN IN NNP NNP IN NNS , NNS CC NN NNS .\nMeanwhile , Iraqi police say gunmen shot dead a leading Sunni Muslim Arab politician .\tRB , JJ NNS VBP NNS VBD RB DT VBG NNP NNP NNP NN .\nMizhar al-Dulaimi of the Free Progressive Iraqi Party was killed while campaigning in Ramadi , the capital of western Anbar province .\tNNP NNP IN DT NNP NNP JJ NNP VBD VBN IN VBG IN NNP , DT NN IN JJ NNP NN .\nHe had been urging Iraqis to vote in the parliamentary election .\tPRP VBD VBN VBG NNS TO VB IN DT JJ NN .\nBurma has opened a three-day World Buddhist Summit , which has been marred by the pullout of its main sponsor .\tNNP VBZ VBN DT JJ NNP NNP NNP , WDT VBZ VBN VBN IN DT NN IN PRP$ JJ NN .\nBurmese Prime Minister General Soe Win joined monks , officials and other delegates from several countries at Thursday 's opening ceremony in Rangoon .\tJJ NNP NNP NNP NNP NNP VBD NNS , NNS CC JJ NNS IN JJ NNS IN NNP POS NN NN IN NNP .\nChinese state-run media report Thai Prime Minister Thaksin Shinawatra and Lao Prime Minister Bounnyang Vorachit also attended the ceremony .\tJJ JJ NNS NN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP RB VBD DT NN .\nJapan 's Nenbutsushu Buddhist sect announced last month that it will not provide funding for the summit .\tNNP POS NNP NNP NN VBD JJ NN IN PRP MD RB VB NN IN DT NN .\nThe pullout came after October 's ouster of Burmese Prime Minister General Khin Nyunt .\tDT NN VBD IN NNP POS NN IN JJ NNP NNP NNP NNP NNP .\nPrevious World Buddhist Summits have been held in Japan , Thailand and Cambodia .\tJJ NNP NNP NNPS VBP VBN VBN IN NNP , NNP CC NNP .\nAn Israeli television station has broadcast the first video images of Israel 's controversial Dimona nuclear facility .\tDT JJ NN NN VBZ VBN DT JJ NN NNS IN NNP POS JJ NNP JJ NN .\nThe privately owned station , Channel 10 , showed the video Friday as part of a documentary about the plant .\tDT RB VBN NN , NNP CD , VBD DT NN NNP IN NN IN DT NN IN DT NN .\nIt did not explain how the video was obtained , but it said the showing had been authorized by Israeli military censors .\tPRP VBD RB VB WRB DT NN VBD VBN , CC PRP VBD DT NN VBD VBN VBN IN JJ JJ NNS .\nThe Israeli government has prohibited journalists from viewing the Dimona plant and has denied safety inspections by foreign nuclear experts .\tDT JJ NN VBZ VBN NNS IN VBG DT NNP NN CC VBZ VBN NN NNS IN JJ JJ NNS .\nIn 1986 , the first still pictures of the facility were released by former technician , Mordechai Vanunu .\tIN CD , DT JJ RB NNS IN DT NN VBD VBN IN JJ NN , NNP NNP .\nHe was later jailed for 18 years on treason charges .\tPRP VBD RB VBN IN CD NNS IN NN NNS .\nForeign experts say Dimona is being used to produce nuclear warheads .\tJJ NNS VBP NNP VBZ VBG VBN TO VB JJ NNS .\nIsrael has neither acknowledged nor denied having a nuclear arsenal .\tNNP VBZ RB VBN CC VBN VBG DT JJ NN .\nAfghan President Hamid Karzai has described as ridiculous a message by al-Qaida leader Osama bin Laden that calls on European nations to stop supporting the U.S.-led mission in Afghanistan .\tJJ NNP NNP NNP VBZ VBN IN JJ DT NN IN NNP NN NNP NNP NNP WDT VBZ IN JJ NNS TO VB VBG DT JJ NN IN NNP .\nA statement from Mr. Karzai 's office said bin Laden 's remarks are contrary to Islamic culture and human values .\tDT NN IN NNP NNP POS NN VBD NNP NNP POS NNS VBP JJ TO JJ NN CC JJ NNS .\nIt also said bin Laden is the reason terrorism plagues the country and blamed the al-Qaida chief for causing the deaths of thousands of innocent Afghans .\tPRP RB VBD NNP NNP VBZ DT NN NN VBZ DT NN CC VBD DT NNP NN IN VBG DT NNS IN NNS IN JJ NNS .\nOn Thursday , excerpts of a recorded message said to be the voice of Bin Laden was broadcast on the Arabic television network Al-Jazeera .\tIN NNP , NNS IN DT JJ NN VBN TO VB DT NN IN NNP NNP VBD VBN IN DT JJ NN NN NNP .\nOn it , bin Laden says he is responsible for the September 11th , 2001 , attacks on the United States , and that the Afghan people had nothing to do with them .\tIN PRP , NNP NNP VBZ PRP VBZ JJ IN DT NNP CD , CD , NNS IN DT NNP NNPS , CC IN DT JJ NNS VBD DT TO VB IN PRP .\nHe also calls on Europeans to stand against Washington and allied governments that are fighting extremists and overseeing reconstruction projects in Afghanistan .\tPRP RB VBZ IN NNS TO VB IN NNP CC JJ NNS WDT VBP VBG NNS CC VBG NN NNS IN NNP .\nA top Hamas leader says the Palestinian militant group is willing to discuss options for statehood in the West Bank and Gaza Strip as well as a truce with Israel .\tDT JJ NNP NN VBZ DT JJ JJ NN VBZ JJ TO VB NNS IN NN IN DT NNP NNP CC NNP NNP RB RB IN DT NN IN NNP .\nHassan Youssef , the top Hamas official in the West Bank , is quoted by news agencies as saying the group could accept a long-term truce and the creation of an independent Palestinian state within the 1967 borders , a reference to lands Israel captured in the 1967 Middle East War .\tNNP NNP , DT JJ NNP NN IN DT NNP NNP , VBZ VBN IN NN NNS IN VBG DT NN MD VB DT JJ NN CC DT NN IN DT JJ JJ NN IN DT CD NNS , DT NN TO NNS NNP VBD IN DT CD NNP NNP NNP .\nThe comments may indicate a shift in Hamas ' long-standing policy of destroying Israel and replacing it with a Palestinian state .\tDT NNS MD VB DT NN IN NNP POS JJ NN IN VBG NNP CC VBG PRP IN DT JJ NN .\nMeanwhile , earlier Friday , Israeli troops shot dead a member of the Islamic Jihad militant group in the West Bank .\tRB , JJR NNP , JJ NNS VBD JJ DT NN IN DT NNP NNP JJ NN IN DT NNP NNP .\nIsraeli army officials say the militant was carrying a weapon when he was shot .\tJJ NN NNS VBP DT NN VBD VBG DT NN WRB PRP VBD VBN .\nThe United States has rejected a North Korean demand to lift sanctions against Pyongyang as a condition for resuming nuclear disarmament talks .\tDT NNP NNP VBZ VBN DT JJ JJ NN TO VB NNS IN NNP IN DT NN IN VBG JJ NN NNS .\nState Department spokesman Sean McCormack said Tuesday the two issues are not related .\tNNP NNP NN NNP NNP VBD NNP DT CD NNS VBP RB VBN .\nHe said he does not see why the sanctions are preventing the North Korean government from rejoining six-party talks .\tPRP VBD PRP VBZ RB VB WRB DT NNS VBP VBG DT JJ JJ NN IN VBG JJ NNS .\nWhite House spokesman Scott McClellan said Tuesday the North Korean demand is another pretext to delay the talks .\tNNP NNP NN NNP NNP VBD NNP DT JJ JJ NN VBZ DT NN TO VB DT NNS .\nTuesday , North Korea said it will not return to the talks until the United States ends economic sanctions against Pyongyang .\tNNP , NNP NNP VBD PRP MD RB VB TO DT NNS IN DT NNP NNPS VBZ JJ NNS IN NNP .\nIn October , Washington blacklisted eight North Korean companies allegedly involved in proliferation of weapons of mass destruction .\tIN NNP , NNP VBD CD JJ JJ NNS RB VBN IN NN IN NNS IN NN NN .\nU.S. officials also accuse Pyongyang of counterfeiting , money laundering and drug trafficking .\tNNP NNS RB VBP NNP IN VBG , NN NN CC NN NN .\nThe list of Khalid Sheikh Mohammed 's confessions released by the Defense Department , ranges from real terror attacks to plots that never happened .\tDT NN IN NNP NNP NNP POS NNS VBN IN DT NNP NNP , VBZ IN JJ NN NNS TO NNS WDT RB VBD .\nOne claim was censored .\tCD NN VBD VBN .\nMohammed claimed responsibility for beheading Wall Street Journal reporter Daniel Pearl in Pakistan in 2002 .\tNNP VBD NN IN VBG NNP NNP NNP NN NNP NNP IN NNP IN CD .\nHe also took responsibility for a ' shoe-bombing ' plot to bring down two U.S. airplanes .\tPRP RB VBD NN IN DT `` JJ `` NN TO VB RP CD NNP NNS .\nMohammed said he planned dozens of other attacks that never happened , including plots to kill former U.S. presidents Jimmy Carter and Bill Clinton , the late Pope John Paul II , and Pakistani President Pervez Musharraf .\tNNP VBD PRP VBD NNS IN JJ NNS WDT RB VBD , VBG NNS TO VB JJ NNP NNS NNP NNP CC NNP NNP , DT JJ NNP NNP NNP NNP , CC JJ NNP NNP NNP .\nHe also said he planned to blow up the Panama Canal , and to destroy U.S. embassies in Indonesia , Australia and Japan .\tPRP RB VBD PRP VBD TO VB RP DT NNP NNP , CC TO VB NNP NNS IN NNP , NNP CC NNP .\nIndian authorities say at least 32 people have been killed in two road accidents in northern and western parts of the country .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN IN CD NN NNS IN JJ CC JJ NNS IN DT NN .\nOfficials in Indian Kashmir say at least 15 people died when a bus veered off a steep mountain road and plunged into a gorge .\tNNS IN JJ NNP VBP IN JJS CD NNS VBD WRB DT NN VBD RP DT JJ NN NN CC VBD IN DT NN .\nReports from the area say at least 15 other people were injured but survived Wednesday 's accident .\tNNS IN DT NN VBP IN JJS CD JJ NNS VBD VBN CC VBN NNP POS NN .\nSurvivors say the driver lost control of the bus on a sharp curve , and the vehicle plunged 250 meters down a mountainside .\tNNS VBP DT NN VBD NN IN DT NN IN DT JJ NN , CC DT NN VBD CD NNS IN DT NN .\nVillagers and police used ropes to reach the wreck .\tNNS CC NNS VBD NNS TO VB DT NN .\nHours later , in western Gujarat state , a truck carrying sacks of salt and 19 people overturned and crashed into a flooded ditch .\tNNS RB , IN JJ NNP NN , DT NN VBG NNS IN NN CC CD NNS VBD CC VBD IN DT VBN NN .\nLocal officials say 17 people did not survive the plunge .\tJJ NNS VBP CD NNS VBD RB VB DT NN .\nU.S. Secretary of State Condoleezza Rice , who is on a tour of the Middle East , met with Egyptian President Hosni Mubarak Wednesday .\tNNP NNP IN NNP NNP NNP , WP VBZ IN DT NN IN DT NNP NNP , VBD IN JJ NNP NNP NNP NNP .\nRice and Mr. Mubarak were to discuss the aftermath of the militant group Hamas 's victory in the Palestinian elections .\tNNP CC NNP NNP VBD TO VB DT NN IN DT JJ NN NNP POS NN IN DT JJ NNS .\nShe also met with Egyptian democracy activists Wednesday .\tPRP RB VBD IN JJ NN NNS NNP .\nFew details were given about those meetings .\tJJ NNS VBD VBN IN DT NNS .\nRice 's Middle East tour is aimed at convincing Arab governments to take a stance against a Hamas-led Palestinian government .\tNNP POS NNP NNP NN VBZ VBN IN VBG JJ NNS TO VB DT NN IN DT JJ JJ NN .\nHer next stop will be Saudi Arabia and then she will wrap up her tour in the United Arab Emirates .\tPRP$ JJ NN MD VB NNP NNP CC RB PRP MD VB RP PRP$ NN IN DT NNP NNP NNPS .\nOn Tuesday , Rice met with Egyptian Foreign Minister Ahmed Aboul Gheit in Cairo .\tIN NNP , NNP VBD IN JJ NNP NNP NNP NNP NNP IN NNP .\nDuring their meeting , Rice said Hamas must choose between terrorism and politics if it wants to successfully lead a Palestinian government .\tIN PRP$ NN , NNP VBD NNP MD VB IN NN CC NNS IN PRP VBZ TO RB VB DT JJ NN .\nEgypt says it will build a nuclear power plant to meet its growing energy needs .\tNNP VBZ PRP MD VB DT JJ NN NN TO VB PRP$ VBG NN NNS .\nThe country 's energy minister Hassan Younes told the state-owned newspaper Al-Ahram that Egypt plans to build a 1000 Megawatt nuclear power plant on the Mediterranean coast .\tDT NN POS NN NN NNP NNP VBD DT JJ NN NNP IN NNP VBZ TO VB DT CD NNP JJ NN NN IN DT NNP NN .\nHe said the project will cost $ 1.5 billion and that the government will seek foreign investment .\tPRP VBD DT NN MD VB $ CD CD CC IN DT NN MD VB JJ NN .\nThe announcement comes three days after President Hosni Mubarak said Egypt should create a nuclear program for peaceful uses .\tDT NN VBZ CD NNS IN NNP NNP NNP VBD NNP MD VB DT JJ NN IN JJ NNS .\nEgypt abandoned plans for nuclear energy in 1986 after the accident at the Soviet nuclear plant in Chernobyl .\tNNP VBD NNS IN JJ NN IN CD IN DT NN IN DT JJ JJ NN IN NNP .\nCairo has been largely silent on the dispute between Iran and major powers over Tehran 's nuclear enrichment activities .\tNNP VBZ VBN RB JJ IN DT NN IN NNP CC JJ NNS IN NNP POS JJ NN NNS .\nThe U.S. believes Iran is trying to build a nuclear weapon .\tDT NNP VBZ NNP VBZ VBG TO VB DT JJ NN .\nEgypt has long called for a Middle East free of nuclear weapons .\tNNP VBZ RB VBN IN DT NNP NNP NN IN JJ NNS .\nU.S. Secretary of State Condoleezza Rice says Iran is a very dangerous state with dangerous policies .\tNNP NNP IN NNP NNP NNP VBZ NNP VBZ DT RB JJ NN IN JJ NNS .\nIn a television interview on CNBC 's Closing Bell Friday , Rice said while Washington is committed to a diplomatic solution , Iran must know ' there are coercive elements ' to U.S. policy as well .\tIN DT NN NN IN NNP POS NNP NNP NNP , NNP VBD IN NNP VBZ VBN TO DT JJ NN , NNP MD VB `` EX VBP JJ NNS `` TO NNP NN RB RB .\nShe said that with Iran becoming ' increasingly dangerous , ' the United States and its allies are discussing new sanctions to further curb Tehran 's access to the international financial system .\tPRP VBD IN IN NNP VBG `` RB JJ , `` DT NNP NNPS CC PRP$ NNS VBP VBG JJ NNS TO JJ VB NNP POS NN TO DT JJ JJ NN .\nShe said that despite two U.N. Chapter 7 resolutions - the U.N. 's most serious Security Council resolution - Iran continues to pursue technologies that could lead to a nuclear weapon .\tPRP VBD IN IN CD NNP NN CD NNS IN DT NNP POS RBS JJ NNP NNP NN : NNP VBZ TO VB NNS WDT MD VB TO DT JJ NN .\nWhen asked if the United States should consider military retaliation , Rice said President Bush ' is never going to take his options off the table . '\tWRB VBN IN DT NNP NNPS MD VB JJ NN , NNP VBD NNP NNP `` VBZ RB VBG TO VB PRP$ NNS IN DT NN . ``\nTehran denies it is trying to build a nuclear weapon .\tNNP VBZ PRP VBZ VBG TO VB DT JJ NN .\nPalestinians in Israel and Lebanon turned out Friday to mark what they call the Naqba , or ' catastrophe ' of Israel 's creation 62 years ago .\tNNS IN NNP CC NNP VBD RP NNP TO VB WP PRP VBP DT NNP , CC `` NN `` IN NNP POS NN CD NNS RB .\nDemonstrators staged protests in the Hamas-controlled Gaza Strip and in Beirut .\tNNS VBD NNS IN DT JJ NNP NNP CC IN NNP .\nLebanon is home to thousands of Palestinian refugees .\tNNP VBZ NN TO NNS IN JJ NNS .\nChief Palestinian negotiator Saeb Erekat released a statement saying the Naqba continues .\tJJ JJ NN NNP NNP VBD DT NN VBG DT NNP VBZ .\nHe accused Israel of refusing to recognize the ' basic rights ' of Palestinians .\tPRP VBD NNP IN VBG TO VB DT `` JJ NNS `` IN NNS .\nMore than 7,00,000 Palestinians are estimated to have fled , or were forced from their homes during the Arab-Israeli war , which began in 1948 .\tJJR IN CD NNS VBP VBN TO VB VBN , CC VBD VBN IN PRP$ NNS IN DT JJ NN , WDT VBD IN CD .\nMeanwhile , authorities in Israel say a Palestinian teenager in the West Bank was found dead Friday from a gunshot wound .\tRB , NNS IN NNP VBP DT JJ NN IN DT NNP NNP VBD VBN JJ NNP IN DT NN NN .\nPalestinians allege Jewish settlers shot the teenager after he threw rocks at their cars .\tNNS VBP JJ NNS VBD DT NN IN PRP VBD NNS IN PRP$ NNS .\nVenezuela 's National Assembly has approved new joint venture deals with foreign oil companies , months after the companies were forced to give up their majority stakes to government control .\tNNP POS NNP NNP VBZ VBN JJ JJ NN NNS IN JJ NN NNS , NNS IN DT NNS VBD VBN TO VB RP PRP$ NN NNS TO NN NN .\nThe agreements approved Tuesday create mixed companies consisting of Venezuela 's state oil company and foreign minority partners ( France 's Total , Norway 's Statoil , Britain 's BP , and U.S.-based Chevron ) .\tDT NNS VBN NNP VBP JJ NNS VBG IN NNP POS NN NN NN CC JJ NN NNS LRB NNP POS NNP , NNP POS NNP , NNP POS NNP , CC JJ NNP RRB .\nAs part of the deals , the foreign companies will make multi-million dollar payments .\tIN NN IN DT NNS , DT JJ NNS MD VB JJ NN NNS .\nThis money will be subtracted from the amount Venezuela owes the companies for taking over their majority stakes in oil fields and refining plants .\tDT NN MD VB VBN IN DT NN NNP VBZ DT NNS IN VBG RP PRP$ NN NNS IN NN NNS CC NN NNS .\nChevron 's agreement does not include a monetary contribution clause .\tNNP POS NN VBZ RB VB DT JJ NN NN .\nVenezuela 's President Hugo Chavez seized majority control of the oil operations in the Orinoco Basin in May , offering foreign companies minority stakes .\tNNP POS NNP NNP NNP VBD NN NN IN DT NN NNS IN DT NNP NNP IN NNP , VBG JJ NNS NN NNS .\nA report from the investigative arm of the U.S. Congress says a new tracking system is needed to see if economic sanctions against Iran are effective .\tDT NN IN DT JJ NN IN DT NNP NNP VBZ DT JJ NN NN VBZ VBN TO VB IN JJ NNS IN NNP VBP JJ .\nThe Government Accountability Office , GAO , says several U.S. agencies need to measure if sanctions are helping to curtail Iran 's alleged support of terrorist groups .\tDT NNP NNP NNP , NNP , VBZ JJ NNP NNS VBP TO VB IN NNS VBP VBG TO VB NNP POS JJ NN IN JJ NNS .\nThe report says the agencies also need to assess the status of Iran 's controversial nuclear program .\tDT NN VBZ DT NNS RB VBP TO VB DT NN IN NNP POS JJ JJ NN .\nThe United States imposed economic sanctions on Iran in 1987 , but this new report from the GAO says the impact of those long running sanctions is difficult to determine .\tDT NNP NNPS VBD JJ NNS IN NNP IN CD , CC DT JJ NN IN DT NNP VBZ DT NN IN DT JJ VBG NNS VBZ JJ TO VB .\nThe report comes as President Bush completes a visit to the Middle East aimed , in part , at securing support for increased pressure on Iran .\tDT NN VBZ IN NNP NNP VBZ DT NN TO DT NNP NNP VBN , IN NN , IN VBG NN IN JJ NN IN NNP .\nPalestinian officials say security forces have arrested two Palestinian militants over rocket attacks on Jewish settlements in the Gaza Strip .\tJJ NNS VBP NN NNS VBP VBN CD JJ NNS IN NN NNS IN JJ NNS IN DT NNP NNP .\nAuthorities said Friday the members of the al-Aqsa Martyrs Brigades were detained for questioning .\tNNS VBD NNP DT NNS IN DT JJ NNPS NNPS VBD VBN IN VBG .\nThe group is loosely affiliated with the ruling Fatah movement .\tDT NN VBZ RB VBN IN DT NN NNP NN .\nAn al-Aqsa spokesman confirmed that two of the group 's militants had been detained .\tDT NNP NN VBD IN CD IN DT NN POS NNS VBD VBN VBN .\nPalestinian President Mahmoud Abbas recently vowed to use an ' iron fist ' against militants to enforce a truce between Israel and the Palestinians .\tJJ NNP NNP NNP RB VBD TO VB DT `` NN RB `` IN NNS TO VB DT NN IN NNP CC DT NNS .\nIranian media report that Iran 's supreme leader has told President Mahmoud Ahmadinejad to dismiss his chosen top deputy , after the selection angered conservative Iranians .\tJJ NNS NN IN NNP POS JJ NN VBZ VBN NNP NNP NNP TO VB PRP$ JJ JJ NN , IN DT NN VBD JJ NNS .\nSemi-official news agencies in Iran quote the deputy speaker of the parliament Mohammad Hassan Aboutorabi-Fard as saying Ayatollah Ali Khamenei sent Mr. Ahmadinejad a letter calling for the removal of the first vice president .\tJJ NN NNS IN NNP VBP DT NN NN IN DT NN NNP NNP NNP IN VBG NNP NNP NNP VBD NNP NNP DT NN VBG IN DT NN IN DT JJ NN NN .\nEsfandiar Rahim Mashaie has been sharply criticized for stating last year that Iran is a friend of all people in the world , including Israelis .\tNNP NNP NNP VBZ VBN RB VBN IN VBG JJ NN IN NNP VBZ DT NN IN DT NNS IN DT NN , VBG NNS .\nIran does not recognize Israel .\tNNP VBZ RB VB NNP .\nTo this point , Mr. Ahmadinejad has refused to back down on his selection of Mashaie , despite pressure to do so .\tTO DT NN , NNP NNP VBZ VBN TO VB RP IN PRP$ NN IN NNP , IN NN TO VB RB .\nLeading conservative Iranian cleric Ayatollah Ahmad Khatami also has called on Mr. Ahmadinejad to reconsider Mashaie 's appointment , saying it defies the president 's constituency .\tVBG JJ JJ NN NNP NNP NNP RB VBZ VBN IN NNP NNP TO VB NNP POS NN , VBG PRP VBZ DT NN POS NN .\nMashaie and Ahmadinejad have family ties .\tNNP CC NNP VBP NN NNS .\nMashaie 's daughter is married to Mr. Ahmadinejad 's son .\tNNP POS NN VBZ VBN TO NNP NNP POS NN .\nBurma 's state-run media say the military government has dismissed eight deputy Cabinet ministers and one supreme court judge , without giving reasons for the moves .\tNNP POS JJ NNS VBP DT JJ NN VBZ VBN CD NN NN NNS CC CD JJ NN NN , IN VBG NNS IN DT NNS .\nThose dismissed include the Deputy Minister of Defense , Major-General Khin Maung Win , and Deputy Minister of Industry Thein Thun .\tDT VBN VBP DT NNP NNP IN NNP , NNP NNP NNP NNP , CC NNP NNP IN NNP NNP NNP .\nThe dismissed Supreme Court judge was Khin Maung Aye .\tDT VBN NNP NNP NN VBD NNP NNP NNP .\nNew appointments to fill the posts were not announced .\tJJ NNS TO VB DT NNS VBD RB VBN .\nSince assuming power in 1988 , the leaders of the present regime and its cabinet have undergone a number of changes .\tIN VBG NN IN CD , DT NNS IN DT JJ NN CC PRP$ NN VBP VBN DT NN IN NNS .\nLast month , the government dismissed two Cabinet ministers and appointed four new ministers and four new deputy ministers .\tJJ NN , DT NN VBD CD NNP NNS CC VBN CD JJ NNS CC CD JJ NN NNS .\nPakistan says the commander of its paramilitary Frontier Corps was wounded when his helicopter came under rocket attack in troubled Baluchistan province Thursday .\tNNP VBZ DT NN IN PRP$ JJ NNP NNP VBD VBN WRB PRP$ NN VBD IN NN NN IN JJ NNP NN NNP .\nOfficials say Major-General Shujaat Zamir Dar was on an inspection flight when he was hit in the leg by shrapnel from the exploding rocket .\tNNS VBP JJ NNP NNP NNP VBD IN DT NN NN WRB PRP VBD VBN IN DT NN IN NN IN DT VBG NN .\nThe helicopter 's pilot flew the aircraft safely back to its base .\tDT NN POS NN VBD DT NN RB RB TO PRP$ NN .\nWednesday , rebels fired eight rockets during a visit to southwestern Pakistan by President Pervez Musharraf .\tNNP , NNS VBD CD NNS IN DT NN TO JJ NNP IN NNP NNP NNP .\nNo one was injured in the attack , which was claimed by the separatist Baluchistan Liberation Army .\tDT NN VBD VBN IN DT NN , WDT VBD VBN IN DT JJ NNP NNP NNP .\nPresident Musharraf was laying the foundation for a military garrison outside the town of Kohlu , ( 300 kilometers ) east of the provincial capital , Quetta .\tNNP NNP VBD VBG DT NN IN DT JJ NN IN DT NN IN NNP , LRB CD NNS RRB NN IN DT JJ NN , NNP .\nBaluch rebels have been fighting a low-level insurgency against Pakistan 's central government for years .\tNNP NNS VBP VBN VBG DT JJ NN IN NNP POS JJ NN IN NNS .\nThey want more jobs and higher royalties from Islamabad in return for their region 's natural resources .\tPRP VBP JJR NNS CC JJR NNS IN NNP IN NN IN PRP$ NN POS JJ NNS .\nFrench workers at a U.S.-run manufacturing plant in southeastern France have detained four managers , to protest plans to cut hundreds of jobs .\tJJ NNS IN DT JJ NN NN IN JJ NNP VBP VBN CD NNS , TO VB NNS TO VB NNS IN NNS .\nThe workers at a Caterpillar heavy equipment plant in Grenoble were refusing Tuesday to let the managers , including the factory director , leave the premises .\tDT NNS IN DT NNP JJ NN NN IN NNP VBD VBG NNP TO VB DT NNS , VBG DT NN NN , VB DT NNS .\nCaterpillar is set to cut 733 workers at two plants in France .\tNNP VBZ VBN TO VB CD NNS IN CD NNS IN NNP .\nThe seizures , on the eve of the G20 global economic summit in London , mark the third time in recent weeks that French workers have hijacked executives to protest job losses .\tDT NNS , IN DT NN IN DT NNP JJ JJ NN IN NNP , NN DT JJ NN IN JJ NNS IN JJ NNS VBP VBN NNS TO VB NN NNS .\nPolice did not intervene in the earlier incidents , and the hostages were released unharmed .\tNNS VBD RB VB IN DT JJR NNS , CC DT NNS VBD VBN JJ .\nThe French news agency quoted a union official , Benoit Nicolas , as saying a deal resulting in the release of the latest captives was within reach .\tDT JJ NN NN VBN DT NN NN , NNP NNP , IN VBG DT NN VBG IN DT NN IN DT JJS NNS VBD IN NN .\nUS officials say an al-Qaida leader killed in a drone attack in northwestern Pakistan was not Osama bin Laden .\tNNP NNS VBP DT NNP NN VBN IN DT NN NN IN JJ NNP VBD RB NNP NNP NNP .\nU.S. officials say a top al-Qaida leader has been killed in a drone attack in restive northwestern Pakistan .\tNNP NNS VBP DT JJ NNP NN VBZ VBN VBN IN DT NN NN IN JJ JJ NNP .\nThe officials did not identify the person killed , but they said it was not al-Qaida leader Osama bin Laden .\tDT NNS VBD RB VB DT NN VBN , CC PRP VBD PRP VBD RB NNP NN NNP NNP NNP .\nA U.S. television network , NBC , first reported the drone attack earlier this week .\tDT NNP NN NN , NNP , RB VBD DT NN NN RBR DT NN .\nThe exact date of the attack is unclear .\tDT JJ NN IN DT NN VBZ JJ .\nEarlier this week , Pakistani officials said a suspected U.S. drone attack killed at least three people in northwestern Pakistan .\tRBR DT NN , JJ NNS VBD DT JJ NNP NN NN VBD IN JJS CD NNS IN JJ NNP .\nIntelligence officials say the pace of attacks by drones ( unmanned aircraft ) has increased under the Obama administration .\tNN NNS VBP DT NN IN NNS IN NNS LRB JJ NN RRB VBZ VBN IN DT NNP NN .\nThe U.S. State Department says it is encouraged by Nicaragua 's decision to ratify the Central American Free Trade Agreement ( CAFTA ) .\tDT NNP NNP NNP VBZ PRP VBZ VBN IN NNP POS NN TO VB DT NNP NNP NNP NNP NNP LRB NNP RRB .\nIn a statement issued Tuesday , Deputy Spokesman Adam Ereli called the economic pact ' Nicaragua 's best opportunity ' to gain the benefits of trade and investment .\tIN DT NN VBN NNP , NNP NNP NNP NNP VBD DT JJ NN `` NNP POS JJS NN `` TO VB DT NNS IN NN CC NN .\nHe also said Nicaragua has taken positive political steps since Deputy Secretary of State Robert Zoellick visited last week .\tPRP RB VBD NNP VBZ VBN JJ JJ NNS IN NNP NNP IN NNP NNP NNP VBD JJ NN .\nPresident Bush has said the deal will strengthen democracy and reduce poverty in the Latin American nations that have signed the bill .\tNNP NNP VBZ VBN DT NN MD VB NN CC VB NN IN DT JJ JJ NNS WDT VBP VBN DT NN .\nThe economic deal removes trade barriers between the United States and Costa Rica , El Salvador , Guatemala , Honduras , Nicaragua and the Dominican Republic .\tDT JJ NN VBZ NN NNS IN DT NNP NNPS CC NNP NNP , NNP NNP , NNP , NNP , NNP CC DT NNP NNP .\nIn the United States , supporters of the plan say it will open new markets for U.S. goods and services .\tIN DT NNP NNPS , NNS IN DT NN VBP PRP MD VB JJ NNS IN NNP NNS CC NNS .\nCritics say it will send U.S. jobs to Central America , where labor is cheaper .\tNNS VBP PRP MD VB NNP NNS TO NNP NNP , WRB NN VBZ JJR .\nAn Iranian official says his country will continue cooperating with the U.N. nuclear agency to prevent the imposition of more Security Council sanctions .\tDT JJ NN VBZ PRP$ NN MD VB VBG IN DT NNP JJ NN TO VB DT NN IN JJR NNP NNP NNS .\nForeign Ministry spokesman Mohammad Ali Hosseini made the comment Sunday .\tNNP NNP NN NNP NNP NNP VBD DT NN NNP .\nOn Friday , world powers meeting at the U.N. agreed to put off until November efforts to approve new sanctions .\tIN NNP , NN NNS VBG IN DT NNP VBD TO VB RP IN NNP NNS TO VB JJ NNS .\nBut , the United States , other permanent Security Council members and Germany said they will seek a third round of sanctions against Iran unless diplomacy can resolve the dispute by November .\tCC , DT NNP NNPS , JJ JJ NNP NNP NNS CC NNP VBD PRP MD VB DT JJ NN IN NNS IN NNP IN NN MD VB DT NN IN NNP .\nThe United States and its allies accuse Tehran of trying to build atomic weapons under the cover of a civilian nuclear program .\tDT NNP NNPS CC PRP$ NNS VBP NNP IN VBG TO VB JJ NNS IN DT NN IN DT JJ JJ NN .\nIran denies the charge .\tNNP VBZ DT NN .\nThe United States , France and Britain favor imposing new sanctions on Iran for its refusal to suspend sensitive nuclear activities .\tDT NNP NNPS , NNP CC NNP VBP VBG JJ NNS IN NNP IN PRP$ NN TO VB JJ JJ NNS .\nRussia and China say Tehran should be given more time before further sanctions are imposed .\tNNP CC NNP VBP NNP MD VB VBN JJR NN IN JJ NNS VBP VBN .\nThe U.S. ambassador to the United Nations is dismissing charges by Venezuela 's foreign minister that he was mistreated by New York airport security , calling the diplomat 's protest ' street theater . '\tDT NNP NN TO DT NNP NNP VBZ VBG NNS IN NNP POS JJ NN IN PRP VBD VBN IN NNP NNP NN NN , VBG DT NN POS NN `` NN NN . ``\nU.S. envoy John Bolton said Monday , there was no incident at the John F. Kennedy airport , where Venezuela 's Nicolas Maduro was detained by authorities Saturday .\tNNP NN NNP NNP VBD NNP , EX VBD DT NN IN DT NNP NNP NNP NN , WRB NNP POS NNP NNP VBD VBN IN NNS NNP .\nMaduro says officials frisked and physically threatened him .\tNNP VBZ NNS VBD CC RB VBD PRP .\nBolton said Maduro purchased his plane ticket in a time and manner that raised security concerns , and instead of complying with a secondary screening , Bolton says Maduro called reporters about the incident .\tNNP VBD NNP VBD PRP$ NN NN IN DT NN CC NN WDT VBD NN NNS , CC RB IN VBG IN DT JJ NN , NNP VBZ NNP VBD NNS IN DT NN .\nBolton labeled Maduro 's actions ' propaganda . '\tNNP VBD NNP POS NNS `` NN . ``\nMaduro rejected a U.S. apology for the incident , which capped a tense week for U.S.-Venezuelan relations .\tNNP VBD DT NNP NN IN DT NN , WDT VBD DT JJ NN IN JJ NNS .\nAt the U.N. General Assembly last week , Venezuelan President Hugo Chavez called President Bush ' the devil . '\tIN DT NNP NNP NNP JJ NN , JJ NNP NNP NNP VBD NNP NNP `` DT NN . ``\nThe United Nations war crimes tribunal has reduced to 40 years the life prison term of a former Bosnian Serb mayor convicted of overseeing detention camps for Croats and Muslims .\tDT NNP NNPS NN NNS JJ VBZ VBN TO CD NNS DT NN NN NN IN DT JJ JJ JJ NN VBN IN VBG NN NNS IN NNS CC NNS .\nThe appeals chamber of the Hague-based court Wednesday said Milomir Stakic 's conviction would stand , but cut his prison term .\tDT NNS NN IN DT JJ NN NNP VBD NNP NNP POS NN MD VB , CC VBD PRP$ NN NN .\nThe court said the lower judge had made errors in the sentencing procedure , but called the impact of the problem limited .\tDT NN VBD DT JJR NN VBD VBN NNS IN DT NN NN , CC VBD DT NN IN DT NN VBN .\nIn 2003 , Stakic was the first person to be sentenced to life in prison by the tribunal .\tIN CD , NNP VBD DT JJ NN TO VB VBN TO NN IN NN IN DT NN .\nHe was convicted of helping to set up three prison camps near the town of Prijedor , in northwestern Bosnia-Herzegovina where he was mayor .\tPRP VBD VBN IN VBG TO VB RP CD NN NNS IN DT NN IN NNP , IN JJ NNP WRB PRP VBD NN .\nThe court acquitted him of genocide charges .\tDT NN VBN PRP IN NN NNS .\nMore than 20,000 Bosnian Muslims and Croats were driven from their homes in Prijedor , and more than 15,000 were killed .\tJJR IN CD JJ NNPS CC NNS VBD VBN IN PRP$ NNS IN NNP , CC JJR IN CD VBD VBN .\nPolice in Chile have used water canons and teargas to disperse student demonstrators calling for educational reform .\tNNS IN NNP VBP VBN NN NNS CC NNS TO VB NN NNS VBG IN JJ NN .\nAbout 1,000 students attempted to march through downtown Santiago Monday .\tIN CD NNS VBN TO VB IN NN NNP NNP .\nThey were met by police who broke up the protest .\tPRP VBD VBN IN NNS WP VBD RP DT NN .\nStudents threw rocks at police vehicles and tried to block roads with burning tires .\tNNS VBD NNS IN NN NNS CC VBD TO VB NNS IN NN NNS .\nThe protest was smaller than one conducted last week by some 8,00,000 students .\tDT NN VBD JJR IN CD VBN JJ NN IN DT CD NNS .\nThe students demanded free public transportation and fee waivers for college entrance exams .\tDT NNS VBD JJ JJ NN CC NN NNS IN NN NN NNS .\nThey also wanted reform of the education law created under former dictator General Augusto Pinochet .\tPRP RB VBD NN IN DT NN NN VBN IN JJ NN NNP NNP NNP .\nNegotiations between the students and the government ended Friday with no agreement .\tNNS IN DT NNS CC DT NN VBD NNP IN DT NN .\nPresident Michelle Bachelet has promised to reduce fares for student bus passes , but rejected demands for free transportation , saying it is too costly .\tNNP NNP NNP VBZ VBN TO VB NNS IN NN NN NNS , CC VBD NNS IN JJ NN , VBG PRP VBZ RB JJ .\nShi'ite negotiators in Iraq have announced a compromise deal that will place 25 more Sunnis on the pan-Iraqi committee drafting a new constitution .\tNNP NNS IN NNP VBP VBN DT NN NN WDT MD VB CD JJR NNS IN DT JJ NN VBG DT JJ NN .\nThursday 's agreement breaks weeks of deadlock over the size and conditions of Sunni participation on the drafting committee .\tNNP POS NN VBZ NNS IN NN IN DT NN CC NNS IN NNP NN IN DT VBG NN .\nUnder the deal , 15 Sunnis will join two others already on the committee .\tIN DT NN , CD NNS MD VB CD NNS RB IN DT NN .\nThe remaining 10 Sunnis will serve as advisors .\tDT VBG CD NNS MD VB IN NNS .\nIraqi President Jalal Talabani , a Sunni Kurd , last week backed Sunni Arab demands for 25 seats on the panel .\tJJ NNP NNP NNP , DT NNP NNP , JJ NN VBD NNP NNP NNS IN CD NNS IN DT NN .\nBut Prime Minister Ibrahim Jaafari and fellow Shi'ites argued that any more than 15 Sunni seats would create an imbalance on the 55-member panel .\tCC NNP NNP NNP NNP CC JJ NNS VBD IN DT JJR IN CD NNP NNS MD VB DT NN IN DT JJ NN .\nBoth the United States and the European Union have backed calls for greater Sunni participation on the committee , which has four months to write a permanent constitution before a referendum set for October .\tDT DT NNP NNPS CC DT NNP NNP VBP VBN NNS IN JJR NNP NN IN DT NN , WDT VBZ CD NNS TO VB DT JJ NN IN DT NN VBN IN NNP .\nBritish film director Mike Leigh has canceled a trip to Israel to protest against a proposed loyalty oath .\tJJ NN NN NNP NNP VBZ VBN DT NN TO NNP TO VB IN DT VBN NN NN .\nIsrael 's Cabinet last week passed a bill that would require non-Jewish immigrants to pledge loyalty to a ' Jewish and democratic ' state - language seen as discriminatory toward Israel 's Arab minority .\tNNP POS NNP JJ NN VBD DT NN WDT MD VB JJ NNS TO NN NN TO DT `` JJ CC JJ `` NN IN NN VBN IN JJ IN NNP POS JJ NN .\nLeigh , the award-winning director of Naked and Secrets & Lies , said he was no longer prepared to take part in the ' great masters ' program at the Sam Spiegel Film & Television School in Jerusalem .\tNNP , DT JJ NN IN NNP CC NNP CC NNP , VBD PRP VBD RB RB VBN TO VB NN IN DT `` JJ NNS `` NN IN DT NNP NNP NNP CC NNP NNP IN NNP .\nIn a letter to school director Renen Schorr , Leigh , who is Jewish , said he opposed Israel 's policies toward Palestinians and called the loyalty oath the ' last straw . '\tIN DT NN TO NN NN NNP NNP , NNP , WP VBZ JJ , VBD PRP VBD NNP POS NNS IN NNS CC VBD DT NN NN DT `` JJ NN . ``\nBangladesh is planning what a U.N. agency calls the biggest measles vaccination campaign in history , hoping to inoculate 33.5 million children between the age of nine months and 10 years .\tNNP VBZ VBG WP DT NNP NN VBZ DT JJS NNS NN NN IN NN , VBG TO VB CD CD NNS IN DT NN IN CD NNS CC CD NNS .\nOfficials in Dhaka say the three-week program , organized with the United Nations Children 's Fund , will help curb the disease that kills an estimated 20,000 Bangladeshi children every year .\tNNS IN NNP VBP DT JJ NN , VBN IN DT NNP NNP NNP POS NNP , MD VB VB DT NN WDT VBZ DT JJ CD JJ NNS DT NN .\nThe U.N. agency 's spokesman says the campaign will start on February 25 and will end on March 16 .\tDT NNP NN POS NN VBZ DT NN MD VB IN NNP CD CC MD VB IN NNP CD .\nThe agency says the program will involve approximately 50,000 skilled vaccinators and 7,50,000 volunteers .\tDT NN VBZ DT NN MD VB RB CD JJ NNS CC CD NNS .\nThe Bangladeshi government developed and adopted the plan of action to control measles in accordance with the current World Health Organization and UNICEF Global Measles Reduction strategy .\tDT JJ NN VBD CC VBD DT NN IN NN TO VB NNS IN NN IN DT JJ NNP NNP NNP CC NNP NNP NNP NNP NN .\nThe price of crude oil dropped more than two percent in New York trading Wednesday , falling to the lowest level in about a month .\tDT NN IN JJ NN VBD JJR IN CD NN IN NNP NNP NN NNP , VBG TO DT JJS NN IN RB DT NN .\nThe price of a barrel of crude oil for future delivery was off nearly $ 2 and went as low as $ 73.83 .\tDT NN IN DT NN IN JJ NN IN JJ NN VBD IN RB $ CD CC VBD RB JJ IN $ CD .\nThe decline came as a government report said the total supply of crude oil and refined fuels in the United States was more than 1.1 billion barrels , the highest level in at least two decades .\tDT NN VBD IN DT NN NN VBD DT JJ NN IN JJ NN CC JJ NNS IN DT NNP NNPS VBD JJR IN CD CD NNS , DT JJS NN IN IN JJS CD NNS .\nAn abundant supply of petroleum products generally pushes prices downward .\tDT JJ NN IN NN NNS RB VBZ NNS RB .\nOfficials in Thailand say at least 47 Burmese refugees have left a camp on the Thai-Burma border this week to begin life in the United States .\tNNS IN NNP VBP IN JJS CD JJ NNS VBP VBN DT NN IN DT NNP NN DT NN TO VB NN IN DT NNP NNPS .\nThe officials say the group of ethnic Karen refugees are the latest to leave the Than Him camp since the resettlement operation began August 15 .\tDT NNS VBP DT NN IN JJ NNP NNS VBP DT JJS TO VB DT NNP NNP NN IN DT NN NN VBD NNP CD .\nThe U.S. government has agreed to allow at least 2,500 of the refugees to resettle in the United States by the end of this year .\tDT NNP NN VBZ VBN TO VB IN JJS CD IN DT NNS TO VB IN DT NNP NNPS IN DT NN IN DT NN .\nThe refugees fled to escape fighting between Karen guerrillas and the Burmese army .\tDT NNS VBD TO VB VBG IN NNP NNS CC DT JJ NN .\nSome have been in the overcrowded camp for more than 20 years .\tDT VBP VBN IN DT JJ NN IN JJR IN CD NNS .\nThe United States issued a waiver to its immigration laws in May to allow many of the refugees to apply for resettlement in the U.S.\tDT NNP NNPS VBD DT NN TO PRP$ NN NNS IN NNP TO VB NN IN DT NNS TO VB IN NN IN DT NNP\nThe U.S. embassy in Iraq says a rocket attack on Baghdad 's heavily fortified Green Zone has killed three people and wounded 15 others .\tDT NNP NN IN NNP VBZ DT NN NN IN NNP POS RB VBN NNP NNP VBZ VBN CD NNS CC VBD CD NNS .\nThe embassy said those killed in the attack Thursday include two Ugandans and a Peruvian .\tDT NN VBD DT VBN IN DT NN NNP VBP CD NNS CC DT NN .\nAll of the victims were working for an American security contractor .\tDT IN DT NNS VBD VBG IN DT JJ NN NN .\nThe Green Zone is home to Iraqi government buildings as well as the U.S. embassy .\tDT NNP NNP VBZ NN TO JJ NN NNS RB RB IN DT NNP NN .\nElsewhere in Iraq Thursday , gunmen killed at least two people in separate attacks , including a Sunni cleric .\tRB IN NNP NNP , NNS VBD IN JJS CD NNS IN JJ NNS , VBG DT NNP NN .\nPolice say the cleric ( Fathi al-Nuaimi ) was killed in the northern city of Mosul .\tNNS VBP DT NN LRB NNP NNP RRB VBD VBN IN DT JJ NN IN NNP .\nIn another attack in the city , gunmen killed a bystander after opening fire on a policeman .\tIN DT NN IN DT NN , NNS VBD DT NN IN VBG NN IN DT NN .\nPolice say the officer and another civilian were wounded in the attack .\tNNS VBP DT NN CC DT JJ VBD VBN IN DT NN .\nMosul has remained an active area for insurgents , even as security in other parts of the country has improved and violence has diminished .\tNNP VBZ VBN DT JJ NN IN NNS , RB IN NN IN JJ NNS IN DT NN VBZ VBN CC NN VBZ VBN .\nOil prices fell more than two percent Wednesday as the U.S. government reported a bigger-than-expected rise in crude supplies .\tNN NNS VBD RBR IN CD NN NNP IN DT NNP NN VBD DT JJ NN IN NN NNS .\nThe price of oil fell $ 1.16 from Tuesday 's close ( or 2.2 percent ) to $ 52.82 a barrel on the New York Mercantile Exchange .\tDT NN IN NN VBD $ CD IN NNP POS NN LRB CC CD NN RRB TO $ CD DT NN IN DT NNP NNP NNP NNP .\nA U.S. government report said U.S. crude supplies rose by 3.3 million barrels in the week that ended March 20 to a total of 356.6 million barrels .\tDT NNP NN NN VBD NNP NN NNS VBD IN CD CD NNS IN DT NN WDT VBD NNP CD TO DT NN IN CD CD NNS .\nAnalysts had expected a rise of just over one million barrels .\tNNS VBD VBN DT NN IN RB IN CD CD NNS .\nOil prices had jumped to a 3-month high of $ 54 a barrel Monday on expectations that a U.S. government plan to help ailing banks will trigger an economic recovery and boost energy demand .\tNN NNS VBD VBN TO DT JJ NN IN $ CD DT NN NNP IN NNS IN DT NNP NN NN TO VB JJ NNS MD VB DT JJ NN CC VB NN NN .\nChinese President Hu Jintao is offering aid to some of the world 's poorest countries - but made much of the deal contingent on the state 's recognition of China over Taiwan .\tJJ NNP NNP NNP VBZ VBG NN TO DT IN DT NN POS JJS NNS : CC VBD NN IN DT NN JJ IN DT NN POS NN IN NNP IN NNP .\nAddressing the U.N. General Assembly Wednesday in New York , President Hu said China will eliminate tariffs on most products from the 39 least-developed countries with diplomatic ties to China .\tVBG DT NNP NNP NNP NNP IN NNP NNP , NNP NNP VBD NNP MD VB NNS IN JJS NNS IN DT CD JJ NNS IN JJ NNS TO NNP .\nHe also announced a series of aid measures for poor countries that includes job training , medicines , debt forgiveness and a $ 10 billion loan program .\tPRP RB VBD DT NN IN NN NNS IN JJ NNS WDT VBZ NN NN , NNS , NN NN CC DT $ CD CD NN NN .\nHe did not make clear whether all the aid measures he mentioned would apply only to China 's diplomatic partners .\tPRP VBD RB VB JJ IN PDT DT NN NNS PRP VBD MD VB RB TO NNP POS JJ NNS .\nBeijing does not allow countries to recognize both China and Taiwan , which it sees as a renegade province .\tNNP VBZ RB VB NNS TO VB DT NNP CC NNP , WDT PRP VBZ IN DT NN NN .\nPalestinian Authority President Mahmoud Abbas is in Turkey , for talks on the stalled Middle East peace process and the impact of a European freeze on aid to the Hamas-led Palestinian government .\tJJ NNP NNP NNP NNP VBZ IN NNP , IN NNS IN DT VBN NNP NNP NN NN CC DT NN IN DT JJ NN IN NN TO DT JJ JJ NN .\nMr. Abbas is to meet with Turkish President Ahmet Necdet Sezer and Prime Minister Recep Tayyip Erdogan during his two-day visit .\tNNP NNP VBZ TO VB IN JJ NNP NNP NNP NNP CC NNP NNP NNP NNP NNP IN PRP$ JJ NN .\nHe visits Norway , Finland and France later this week .\tPRP VBZ NNP , NNP CC NNP RB DT NN .\nThe United States and the European Union cut off direct aid to the Palestinian government earlier this year , after Hamas refused to renounce violence and recognize Israel .\tDT NNP NNPS CC DT NNP NNP VBD RP JJ NN TO DT JJ NN RBR DT NN , IN NNP VBD TO VB NN CC VB NNP .\nTurkey maintains close ties with both Israel and the Palestinians , and has frequently offered to mediate their long-standing conflict .\tNNP VBZ JJ NNS IN DT NNP CC DT NNS , CC VBZ RB VBN TO VB PRP$ JJ NN .\nIn February , the Ankara government angered Israel when it hosted a Hamas delegation for talks described as a push to persuade Hamas to renounce violence .\tIN NNP , DT NNP NN VBD NNP WRB PRP VBD DT NNP NN IN NNS VBN IN DT NN TO VB NNP TO VB NN .\nPakistani officials say security forces have killed at least 23 militants in fighting that took place during a search operation in the country 's northwest .\tJJ NNS VBP NN NNS VBP VBN IN JJS CD NNS IN VBG WDT VBD NN IN DT NN NN IN DT NN POS NN .\nThe clash took place in Khyber Pakhtunkhwa province on Tuesday , a day after militants launched a suicide bomb attack near a paramilitary base , killing one soldier .\tDT NN VBD NN IN NNP NNP NN IN NNP , DT NN IN NNS VBD DT NN NN NN IN DT JJ NN , VBG CD NN .\nOfficials say Tuesday 's gunbattle began when militants opened fire on troops searching the area .\tNNS VBP NNP POS NN VBD WRB NNS VBD NN IN NNS VBG DT NN .\nPakistan 's military carried out a major offensive against the Taliban in Lower Dir and neighboring Swat Valley last year .\tNNP POS NN VBD RP DT JJ NN IN DT NNP IN NNP NNP CC JJ NNP NNP JJ NN .\nZimbabwe 's main labor union says two South African-based trade union workers were deported Wednesday shortly after they arrived in Harare where they were planning to discuss the establishment of a trade union school .\tNNP POS JJ NN NN VBZ CD NNP JJ NN NN NNS VBD VBN NNP RB IN PRP VBD IN NNP WRB PRP VBD VBG TO VB DT NN IN DT NN NN NN .\nThe Zimbabwe Congress of Trade Unions ( ZCTU ) said immigration officials told Bobbie Marie and Vihemina Prout to return home , because they did not have a clearance from the Ministry of Labor to meet union officials .\tDT NNP NNP IN NNP NNP LRB NNP RRB VBD NN NNS VBD NNP NNP CC NNP NNP TO VB NN , IN PRP VBD RB VB DT NN IN DT NNP IN NNP TO VB NN NNS .\nZCTU secretary-general Wellington Chibebe said the latest deportation proves that Zimbabwe is a nation ' under seige . '\tNNP JJ NNP NNP VBD DT JJS NN VBZ IN NNP VBZ DT NN `` IN NN . ``\nLast week , Zimbabwe expelled a delegation of the South African trade union COSATU , which tried to conduct a fact-finding mission in the country .\tJJ NN , NNP VBD DT NN IN DT JJ JJ NN NN NNP , WDT VBD TO VB DT JJ NN IN DT NN .\nThe European Union 's Court of Human Rights has fined Russia for banning homosexual parades in Moscow .\tDT NNP NNP POS NNP IN NNP NNP VBZ VBN NNP IN VBG JJ NNS IN NNP .\nThe Strasbourg-based court ruled Thursday that gay rights organizer Nikolai Alexeyev was discriminated against based on sexual orientation .\tDT JJ NN VBD NNP IN JJ NNS NN NNP NNP VBD VBN IN VBN IN JJ NN .\nIt ordered Russia to pay more than $ 41,000 in damages and court costs to Alexeyev .\tPRP VBD NNP TO VB JJR IN $ CD IN NNS CC NN NNS TO NNP .\nAlexeyev told the court he and other organizers were denied permission to hold gay pride marches in 2006 , 2007 and 2008 .\tNNP VBD DT NN PRP CC JJ NNS VBD VBN NN TO VB JJ NN NNS IN CD , CD CC CD .\nThe European rights court said the risk of a disturbance stemming from a demonstration was not sufficient to justify banning the parade .\tDT JJ NNS NN VBD DT NN IN DT NN VBG IN DT NN VBD RB JJ TO VB VBG DT NN .\nFormer Moscow Mayor Yury Luzhkov once described gay parades as ' satanic . '\tJJ NNP NNP NNP NNP RB VBD JJ NNS IN `` JJ . ``\nHe was fired last month by Russian President Dmitry Medvedev .\tPRP VBD VBN JJ NN IN JJ NNP NNP NNP .\nMembers of a delegation from the Congress of South African Trade Unions ( COSATU ) say they have been denied entry to Zimbabwe as they arrived in the capital , Harare for a fact-finding mission early Wednesday .\tNNS IN DT NN IN DT NNP IN NNP NNP NNP NNP LRB NNP RRB VBP PRP VBP VBN VBN NN TO VB IN PRP VBD IN DT NN , NNP IN DT JJ NN JJ NNP .\nThe delegation members told reporters they were met at the airport by Zimbabwean officials who turned the group back .\tDT NN NNS VBD NNS PRP VBD VBN IN DT NN IN JJ NNS WP VBD DT NN RB .\nThe delegation is expected to return to Johannesburg later today .\tDT NN VBZ VBN TO VB TO NNP RB NN .\nZimbabwe 's government expelled a similar delegation last October and had warned the COSATU members that they would be deported or jailed .\tNNP POS NN VBD DT JJ NN JJ NNP CC VBD VBN DT NNP NNS IN PRP MD VB VBN CC VBN .\nThe labor group said it intended to investigate Zimbabwe 's political climate ahead of general elections scheduled for next month .\tDT NN NN VBD PRP VBD TO VB NNP POS JJ NN RB IN JJ NNS VBN IN JJ NN .\nGerman Defense Minister Karl Theodor zu Guttenberg says Army Inspector General Wolfgang Schneiderhan failed to provide adequate information about the incident in which civilians were killed .\tJJ NNP NNP NNP NNP NNP NNP VBZ NNP NNP NNP NNP NNP VBD TO VB JJ NN IN DT NN IN WDT NNS VBD VBN .\nGermany 's top army officer has resigned over an investigation into a September air strike in Afghanistan in which civilians were among those killed .\tNNP POS JJ NN NN VBZ VBN IN DT NN IN DT NNP NN NN IN NNP IN WDT NNS VBD IN DT VBN .\nGerman Defense Minister Karl Theodor zu Guttenberg announced Thursday that General Wolfgang Schneiderhan had resigned .\tJJ NNP NNP NNP NNP NNP NNP VBD NNP IN NNP NNP NNP VBD VBN .\nGuttenberg told parliament that Schneiderhan failed to provide adequate information about the incident .\tNNP VBD NN IN NNP VBD TO VB JJ NN IN DT NN .\nAn Afghan government-appointed commission said 30 civilians were killed in the September 4 air strike in northern Kunduz province .\tDT JJ JJ NN VBD CD NNS VBD VBN IN DT NNP CD NN NN IN JJ NNP NN .\nA commission investigator says 69 Taliban members were also killed after a German commander ordered the NATO strike on militants who had seized two fuel trucks .\tDT NN NN VBZ CD NNP NNS VBD RB VBN IN DT JJ NN VBD DT NNP NN IN NNS WP VBD VBN CD NN NNS .\nInitial NATO investigations indicated that civilians were among the victims .\tJJ NNP NNS VBD IN NNS VBD IN DT NNS .\nTurkish authorities say troops killed 10 Kurdish rebels in two operations since Monday .\tJJ NNS VBP NNS VBD CD JJ NNS IN CD NNS IN NNP .\nThe officials say seven rebels were killed in fighting with soldiers in Siirt province .\tDT NNS VBP CD NNS VBD VBN IN VBG IN NNS IN NNP NN .\nThree other rebels were shot and killed in Van province .\tCD JJ NNS VBD VBN CC VBN IN NNP NN .\nAuthorities believe the three entered the area from Iran .\tNNS VBP DT CD VBD DT NN IN NNP .\nTurkey 's military has recently intensified operations against the separatist Kurdistan Workers Party ( PKK ) .\tNNP POS NN VBZ RB VBN NNS IN DT JJ NNP NNP NNP LRB NNP RRB .\nThe PKK has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 .\tDT NNP VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD .\nThe United States , the European Union and Turkey classify the PKK as a terrorist group .\tDT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN .\nThe Sultanate of Brunei 's influence peaked between the 15th and 17th centuries when its control extended over coastal areas of northwest Borneo and the southern Philippines .\tDT NNP IN NNP POS NN VBD IN DT JJ CC JJ NNS WRB PRP$ NN VBD IN JJ NNS IN JJ NNP CC DT JJ NNP .\nBrunei subsequently entered a period of decline brought on by internal strife over royal succession , colonial expansion of European powers , and piracy .\tNNP RB VBD DT NN IN NN VBN RP IN JJ NN IN JJ NN , JJ NN IN JJ NNS , CC NN .\nIn 1888 , Brunei became a British protectorate ; independence was achieved in 1984 .\tIN CD , NNP VBD DT JJ NN ; NN VBD VBN IN CD .\nThe same family has ruled Brunei for over six centuries .\tDT JJ NN VBZ VBN NNP IN IN CD NNS .\nBrunei benefits from extensive petroleum and natural gas fields , the source of one of the highest per capita GDPs in Asia .\tNNP NNS IN JJ NN CC JJ NN NNS , DT NN IN CD IN DT JJS IN NN NNS IN NNP .\nFirst inhabited by Arawak and later by Carib Indians , the Virgin Islands were settled by the Dutch in 1648 and then annexed by the English in 1672 .\tRB VBN IN NNP CC RB IN NNP NNS , DT NNP NNP VBD VBN IN DT NNS IN CD CC RB VBN IN DT NNS IN CD .\nThe islands were part of the British colony of the Leeward Islands from 1872 - 1960 ; they were granted autonomy in 1967 .\tDT NNS VBD NN IN DT JJ NN IN DT NNP NNP IN CD IN CD ; PRP VBD VBN NN IN CD .\nThe economy is closely tied to the larger and more populous US Virgin Islands to the west ; the US dollar is the legal currency .\tDT NN VBZ RB VBN TO DT JJR CC JJR JJ NNP NNP NNP TO DT NN ; DT NNP NN VBZ DT JJ NN .\nAided by peace and neutrality for the whole of the 20th century , Sweden has achieved an enviable standard of living under a mixed system of high-tech capitalism and extensive welfare benefits .\tVBN IN NN CC NN IN DT NN IN DT JJ NN , NNP VBZ VBN DT JJ NN IN VBG IN DT JJ NN IN JJ NN CC JJ NN NNS .\nIt has a modern distribution system , excellent internal and external communications , and a skilled labor force .\tPRP VBZ DT JJ NN NN , JJ JJ CC JJ NNS , CC DT JJ NN NN .\nIn September 2003 , Swedish voters turned down entry into the euro system concerned about the impact on the economy and sovereignty .\tIN NNP CD , JJ NNS VBD RP NN IN DT NN NN VBN IN DT NN IN DT NN CC NN .\nTimber , hydropower , and iron ore constitute the resource base of an economy heavily oriented toward foreign trade .\tNNP , NN , CC NN NN VBP DT NN NN IN DT NN RB VBN IN JJ NN .\nPrivately owned firms account for about 90 % of industrial output , of which the engineering sector accounts for 50 % of output and exports .\tRB VBN NNS VBP IN RB CD NN IN JJ NN , IN WDT DT NN NN VBZ IN CD NN IN NN CC NNS .\nAgriculture accounts for little more than 1 % of GDP and of employment .\tNNP NNS IN RB JJR IN CD NN IN NN CC IN NN .\nUntil 2008 , Sweden was in the midst of a sustained economic upswing , boosted by increased domestic demand and strong exports .\tIN CD , NNP VBD IN DT NN IN DT JJ JJ NN , VBN IN VBN JJ NN CC JJ NNS .\nThis and robust finances offered the center-right government considerable scope to implement its reform program aimed at increasing employment , reducing welfare dependence , and streamlining the state 's role in the economy .\tDT CC JJ NNS VBD DT JJ NN JJ NN TO VB PRP$ NN NN VBN IN VBG NN , VBG NN NN , CC VBG DT NN POS NN IN DT NN .\nDespite strong finances and underlying fundamentals , the Swedish economy slid into recession in the third quarter of 2008 and growth continued downward in 2009 as deteriorating global conditions reduced export demand and consumption .\tIN JJ NNS CC VBG NNS , DT JJ NN VBD IN NN IN DT JJ NN IN CD CC NN VBD JJ IN CD IN VBG JJ NNS VBN NN NN CC NN .\nStrong exports of commodities and a return to profitability by Sweden 's banking sector drove the strong rebound in 2010 .\tJJ NNS IN NNS CC DT NN TO NN IN NNP POS NN NN VBD DT JJ NN IN CD .\nEl Salvador achieved independence from Spain in 1821 and from the Central American Federation in 1839 .\tNNP NNP VBD NN IN NNP IN CD CC IN DT NNP NNP NNP IN CD .\nA 12-year civil war , which cost about 75,000 lives , was brought to a close in 1992 when the government and leftist rebels signed a treaty that provided for military and political reforms .\tDT JJ JJ NN , WDT VBD IN CD NNS , VBD VBN TO DT NN IN CD WRB DT NN CC JJ NNS VBD DT NN WDT VBD IN JJ CC JJ NNS .\nA HARE one day ridiculed the short feet and slow pace of the Tortoise , who replied , laughing :\tDT NN CD NN VBD DT JJ NNS CC JJ NN IN DT NN , WP VBD , VBG :\n' Though you be swift as the wind , I will beat you in a race . '\t`` IN PRP VB JJ IN DT NN , PRP MD VB PRP IN DT NN . ``\nThe Hare , believing her assertion to be simply impossible , assented to the proposal ; and they agreed that the Fox should choose the course and fix the goal .\tDT NN , VBG PRP$ NN TO VB RB JJ , VBN TO DT NN ; CC PRP VBD IN DT NN MD VB DT NN CC VB DT NN .\nOn the day appointed for the race the two started together .\tIN DT NN VBN IN DT NN DT CD VBD RB .\nThe Tortoise never for a moment stopped , but went on with a slow but steady pace straight to the end of the course .\tDT NN RB IN DT NN VBD , CC VBD IN IN DT JJ CC JJ NN RB TO DT NN IN DT NN .\nThe Hare , lying down by the wayside , fell fast asleep .\tDT NN , VBG RP IN DT NN , VBD RB JJ .\nAt last waking up , and moving as fast as he could , he saw the Tortoise had reached the goal , and was comfortably dozing after her fatigue .\tIN JJ VBG RP , CC VBG RB RB IN PRP MD , PRP VBD DT NN VBD VBN DT NN , CC VBD RB VBG IN PRP$ NN .\nSlow but steady wins the race .\tNNP CC JJ NNS DT NN .\nAN OWL , in her wisdom , counseled the Birds that when the acorn first began to sprout , to pull it all up out of the ground and not allow it to grow .\tDT NN , IN PRP$ NN , VBD DT NNS WDT WRB DT NN RB VBD TO VB , TO VB PRP DT RP IN IN DT NN CC RB VB PRP TO VB .\nShe said acorns would produce mistletoe , from which an irremediable poison , the bird-lime , would be extracted and by which they would be captured .\tPRP VBD NNS MD VB NN , IN WDT DT JJ NN , DT NN , MD VB VBN CC IN WDT PRP MD VB VBN .\nThe Owl next advised them to pluck up the seed of the flax , which men had sown , as it was a plant which boded no good to them .\tDT NN RB VBD PRP TO VB RP DT NN IN DT NN , WDT NNS VBD VBN , IN PRP VBD DT NN WDT VBD DT JJ TO PRP .\nAnd , lastly , the Owl , seeing an archer approach , predicted that this man , being on foot , would contrive darts armed with feathers which would fly faster than the wings of the Birds themselves .\tCC , RB , DT NNP , VBG DT NN NN , VBD IN DT NN , VBG IN NN , MD VB NNS VBN IN NNS WDT MD VB JJR IN DT NNS IN DT NNS PRP .\nThe Birds gave no credence to these warning words , but considered the Owl to be beside herself and said that she was mad .\tDT NNS VBD DT NN TO DT NN NNS , CC VBD DT NN TO VB IN PRP CC VBD IN PRP VBD JJ .\nBut afterwards , finding her words were TRUE , they wondered at her knowledge and deemed her to be the wisest of birds .\tCC NNS , VBG PRP$ NNS VBD JJ , PRP VBD IN PRP$ NN CC VBD PRP TO VB DT JJS IN NNS .\nHence it is that when she appears they look to her as knowing all things , while she no longer gives them advice , but in solitude laments their past folly .\tNN PRP VBZ IN WRB PRP VBZ PRP VBP TO PRP IN VBG DT NNS , IN PRP RB RB VBZ PRP NN , CC IN NN NNS PRP$ JJ NN .\nSix Afghan police officers and two U.S. soldiers have been killed in separate roadside bombings in southern Afghanistan .\tCD JJ NN NNS CC CD NNP NNS VBP VBN VBN IN JJ NN NNS IN JJ NNP .\nAfghan officials say the police officers were killed and four others wounded Monday when a bomb ripped through their vehicle in the Khakrez district of Kandahar province .\tJJ NNS VBP DT NN NNS VBD VBN CC CD NNS VBD NNP WRB DT NN VBN IN PRP$ NN IN DT NNP NN IN NNP NN .\nThe Taliban claimed responsibility for the attack .\tDT NNP VBD NN IN DT NN .\nTwo American soldiers were killed in separate bomb attacks in the south Monday .\tCD JJ NNS VBD VBN IN JJ NN NNS IN DT NN NNP .\nNATO did not give details .\tNNP VBD RB VB NNS .\nMilitants have stepped up attacks as U.S.-led NATO and Afghan forces work to clear Kandahar and surrounding areas of Taliban insurgents .\tNNS VBP VBN RP NNS IN JJ NNP CC JJ NNS VBP TO JJ NNP CC VBG NNS IN NNP NNS .\nThe latest violence comes as the Afghan government prepares to host a major international conference on Afghanistan in Kabul Tuesday .\tDT JJS NN VBZ IN DT JJ NN VBZ TO VB DT JJ JJ NN IN NNP IN NNP NNP .\nVOA 's Creole Service has set up a hotline to help Haitians everywhere reach their loved ones , after Tuesday 's devastating earthquake destroyed much of the capital , Port-au-Prince .\tNNP POS NNP NNP VBZ VBN RP DT NN TO VB NNS RB VBP PRP$ VBN NNS , IN NNP POS JJ NN VBD NN IN DT NN , NNP .\nPeople can call the Creole service at 202-205-9942 to leave messages for their family members that will be broadcast on the service 's radio programs .\tNNS MD VB DT NNP NNP IN NNP TO VB NNS IN PRP$ NN NNS WDT MD VB VBN IN DT NN POS NN NNS .\nMessages can be left in either Creole or English .\tNNS MD VB VBN IN DT NNP CC NNP .\nCreole service chief Ronald Cesar says VOA Creole also has extended its broadcast hours and is reaching out on Facebook and Twitter .\tNNP NN NN NNP NNP VBZ NNP NNP RB VBZ VBN PRP$ NN NNS CC VBZ VBG RP IN NNP CC NNP .\nVOA continues to broadcast on shortwave .\tNNP VBZ TO VB IN NN .\nBut because most of its satellite affiliates in Haiti are off the air , the Creole service also is using a Florida-based AM frequency to reach listeners in the country .\tCC IN JJS IN PRP$ NN NNS IN NNP VBP IN DT NN , DT NNP NN RB VBZ VBG DT JJ NNP NN TO VB NNS IN DT NN .\nThe French government said it has arrested the suspected military leader of the Basque terrorist group ETA near the Spanish border .\tDT JJ NN VBD PRP VBZ VBN DT JJ JJ NN IN DT JJ JJ NN NNP IN DT JJ NN .\nFrom Paris , Lisa Bryant reports for VOA the arrest marks a further blow for hardline members of ETA .\tIN NNP , NNP NNP VBZ IN NNP DT NN VBZ DT JJ NN IN JJ NNS IN NNP .\nThe French government said it had arrested suspected ETA miliatry leader Garikoitz Aspiazu Rubina along with a female colleague early Monday in the Pyrenees region near the border with Spain .\tDT JJ NN VBD PRP VBD VBN JJ NNP NN NN NNP NNP NNP IN IN DT JJ NN RB NNP IN DT NNP NN IN DT NN IN NNP .\nInterior Minister Michele Alliot-Marie outlined some details of the arrests to French radio .\tNNP NNP NNP NNP VBD DT NNS IN DT NNS TO JJ NN .\nAlliot-Marie said Aspiazu Rubina - known by his alias Txeroki - was suspected of killing two young police officers a year ago .\tNNP VBD NNP NNP : VBN IN PRP$ NNS NNP : VBD VBN IN VBG CD JJ NN NNS DT NN RB .\nSpain has also been hunting for him on suspicion of being behind a number of other attacks there .\tNNP VBZ RB VBN VBG IN PRP IN NN IN VBG IN DT NN IN JJ NNS RB .\nThey include a 2006 bombing of a Madrid airport that killed two people .\tPRP VBP DT CD NN IN DT NNP NN WDT VBD CD NNS .\nBoth France and Spain have hailed the arrest as a blow to ETA , which is blamed for more than 800 deaths in Spain during its 40-year campaign for an independent Basque state .\tDT NNP CC NNP VBP VBN DT NN IN DT NN TO NNP , WDT VBZ VBN IN JJR IN CD NNS IN NNP IN PRP$ JJ NN IN DT JJ JJ NN .\nSpanish Prime Minister Jose Luis Rodriguez Zapatero said ETA was weaker and Spanish democracy was stronger because of the arrest .\tJJ NNP NNP NNP NNP NNP NNP VBD NNP VBD JJR CC JJ NN VBD JJR IN IN DT NN .\nAnalysts said it further undermines ETA 's hard-line leadership , which has already suffered from the arrests of a number of its members in recent years as part of stepped up French and Spanish efforts against the group .\tNNS VBD PRP RB VBZ NNP POS JJ NN , WDT VBZ RB VBN IN DT NNS IN DT NN IN PRP$ NNS IN JJ NNS IN NN IN VBN IN JJ CC JJ NNS IN DT NN .\nSome experts believe the arrests may give voice to moderates in the Basque group who back dialogue rather than arms to achieve their aims .\tDT NNS VBP DT NNS MD VB NN TO NNS IN DT NNP NN WP VBP NN RB IN NNS TO VB PRP$ NNS .\nETA has been blamed for killing five people after renouncing a unilateral ceasefire in 2007 .\tNNP VBZ VBN VBN IN VBG CD NNS IN VBG DT JJ NN IN CD .\nThe U.S. military says coalition soldiers in Iraq have killed 24 insurgents who attacked a coalition convoy outside Baghdad .\tDT NNP NN VBZ NN NNS IN NNP VBP VBN CD NNS WP VBD DT NN NN IN NNP .\nAuthorities say six troops and seven insurgents were wounded in the fighting , which occurred late Sunday about 30 kilometers southeast of the capital .\tNNS VBP CD NNS CC CD NNS VBD VBN IN DT NN , WDT VBD JJ NNP IN CD NNS NN IN DT NN .\nElsewhere , authorities say a car bomb exploded Monday in the center of Samarra , wounding at least 10 people .\tRB , NNS VBP DT NN NN VBD NNP IN DT NN IN NNP , VBG IN JJS CD NNS .\nThe Associated Press says a truck loaded with explosives apparently detonated prematurely near a hospital .\tDT NNP NNP VBZ DT NN VBN IN NNS RB VBD RB IN DT NN .\nSeparately , one U.S. soldier was killed in an insurgent attack in Kirkuk , while another soldier and a Marine were killed during security operations in Al Anbar province , west of Baghdad .\tRB , CD NNP NN VBD VBN IN DT JJ NN IN NNP , IN DT NN CC DT NN VBD VBN IN NN NNS IN NNP NNP NN , NN IN NNP .\nU.S. auto giant General Motors is reported to be in preliminary talks with Chrysler about a possible merger .\tNNP NN NN NNP NNP VBZ VBN TO VB IN JJ NNS IN NNP IN DT JJ NN .\nThe New York Times and The Wall Street Journal cite people familiar with the discussions .\tDT NNP NNP NNP CC DT NNP NNP NNP VBP NNS JJ IN DT NNS .\nThey say the talks began last month between GM and Cerberus Capital Management , a private equity firm that owns Chrysler .\tPRP VBP DT NNS VBD JJ NN IN NNP CC NNP NNP NNP , DT JJ NN NN WDT VBZ NNP .\nThe possible merger could reduce the so-called ' Big Three ' automakers of Detroit to the Big Two .\tDT JJ NN MD VB DT JJ `` NNP CD `` NNS IN NNP TO DT NNP CD .\nFord is also based in Detroit .\tNNP VBZ RB VBN IN NNP .\nThe New York Times reports Cerberus is also in talks with other automakers , including Nissan and Renault .\tDT NNP NNP NNP VBZ NNP VBZ RB IN NNS IN JJ NNS , VBG NNP CC NNP .\nThe global financial crisis has increased fears the Unites States ' biggest automakers could be forced into bankruptcy .\tDT JJ JJ NN VBZ VBN NNS DT NNP NNPS POS JJS NNS MD VB VBN IN NN .\nCar sales have fallen sharply and analysts say potential car buyers can not get loans .\tNN NNS VBP VBN RB CC NNS VBP JJ NN NNS MD RB VB NNS .\nDelegates to the United Nations Climate Change conference in Montreal have agreed to launch more talks on long term cuts in greenhouse gasses after marathon negotiations extended into an unscheduled 13th day .\tNNS TO DT NNP NNPS NNP NNP NN IN NNP VBP VBN TO VB JJR NNS IN JJ NN NNS IN NN NNS IN NN NNS VBD IN DT JJ JJ NN .\nThe officials reached agreement early Saturday after all-night meetings .\tDT NNS VBD NN JJ NNP IN JJ NNS .\nThe talks had stalled when the U.S. delegation did not approve the text of a Canadian proposal for future talks on the issue .\tDT NNS VBD VBN WRB DT NNP NN VBD RB VB DT NN IN DT JJ NN IN JJ NNS IN DT NN .\nPresident Bush withdrew from the current Kyoto Protocol in 2001 , saying its limits on greenhouse gasses would harm the U.S. economy because developing countries were not held to the same standards .\tNNP NNP VBD IN DT JJ NNP NNP IN CD , VBG PRP$ NNS IN NN NNS MD VB DT NNP NN IN VBG NNS VBD RB VBN TO DT JJ NNS .\nFormer president Bill Clinton says the Bush administration is ' flat wrong . '\tJJ NN NNP NNP VBZ DT NNP NN VBZ `` JJ JJ . ``\nAlso Saturday , Kyoto Protocol members agreed to hold more talks among themselves on emission cuts beyond the current phase of the treaty which ends in 2012 .\tRB NNP , NNP NNP NNS VBD TO VB JJR NNS IN PRP IN NN NNS IN DT JJ NN IN DT NN WDT VBZ IN CD .\nAfrican Union mediators who are brokering peace talks among warring parties in Sudan 's Darfur region have extended by 48 hours a deadline on negotiations .\tNNP NNP NNS WP VBP VBG NN NNS IN VBG NNS IN NNP POS NNP NN VBP VBN IN CD NNS DT NN IN NNS .\nThe initial deadline expired at midnight Sunday , but the lead mediator for the AU , Salim Ahmed Salim said early Monday the deadline was extended following a request from the United States .\tDT JJ NN VBD IN NN NNP , CC DT NN NN IN DT NNP , NNP NNP NNP VBD JJ NNP DT NN VBD VBN VBG DT NN IN DT NNP NNPS .\nThe government of Sudan had said it was prepared to sign the peace agreement which was the result of two years of talks .\tDT NN IN NNP VBD VBN PRP VBD VBN TO VB DT NN NN WDT VBD DT NN IN CD NNS IN NNS .\nBut rebel groups said on Sunday they would not sign and insisted on changes .\tCC NN NNS VBD IN NNP PRP MD RB VB CC VBD IN NNS .\nThe rebels said they wanted better terms for integrating their forces into the Sudanese army , and for disarming pro-government Janjaweed militias .\tDT NNS VBD PRP VBD JJR NNS IN VBG PRP$ NNS IN DT JJ NN , CC IN VBG JJ NNP NNS .\nThree years of violence in Darfur between government-backed forces and Darfur rebels have left tens of thousands of people dead and more than two million displaced .\tCD NNS IN NN IN NNP IN JJ NNS CC NNP NNS VBP VBN NNS IN NNS IN NNS JJ CC JJR IN CD CD VBD .\nU.N. troops have exchanged gunfire with gang members in Haiti 's largest slum in the first such confrontation in weeks .\tNNP NNS VBP VBN NN IN NN NNS IN NNP POS JJS NN IN DT JJ JJ NN IN NNS .\nU.N. officials late Thursday said the trouble happened Wednesday , in the Cite Soleil slum after gunmen shot at the peacekeepers .\tNNP NNS JJ NNP VBD DT NN VBD NNP , IN DT NNP NNP NN IN NNS VBD IN DT NNS .\nOfficials could not confirm reports of casualties but said no peacekeepers were injured .\tNNS MD RB VB NNS IN NNS CC VBD DT NNS VBD VBN .\nCite Soleil was a focal point of violence following the February 2004 ouster of President Jean-Bertrand Aristide .\tNNP NNP VBD DT JJ NN IN NN VBG DT NNP CD NN IN NNP NNP NNP .\nAlso this week , Haiti 's Parliament approved a new Cabinet in a vote that formally confirms President Rene Preval 's choice for prime minister , Jacques Edouard Alexis .\tRB DT NN , NNP POS NNP VBD DT JJ NNP IN DT NN WDT RB VBZ NNP NNP NNP POS NN IN JJ NN , NNP NNP NNP .\nPresident Preval was sworn in last month after winning elections in February .\tNNP NNP VBD VBN IN JJ NN IN VBG NNS IN NNP .\nTurkish media say the prosecutor 's office has started a legal process to shut the country 's main pro-Kurdish political party , alleging it has ties to Kurdish rebels .\tJJ NNS VBP DT NN POS NN VBZ VBN DT JJ NN TO VB DT NN POS JJ JJ JJ NN , VBG PRP VBZ NNS IN JJ NNS .\nThe reports say Turkey 's chief prosecutor , Abdurrahman Yalcinkaya , filed a case at the Constitutional Court to ban the Democratic Society Party - the DTP .\tDT NNS VBP NNP POS NN NN , NNP NNP , VBD DT NN IN DT NNP NNP TO VB DT JJ NNP NNP IN DT NNP .\nThe move follows the DTP 's call for autonomy for the mainly Kurdish region of southeastern Turkey as a way to resolve more than two decades of separatist violence spearheaded by the Kurdistan Workers Party - the PKK .\tDT NN VBZ DT NNP POS NN IN NN IN DT RB JJ NN IN JJ NNP IN DT NN TO VB JJR IN CD NNS IN JJ NN VBN IN DT NNP NNP NNP IN DT NNP .\nIn the past , Turkey has banned pro-Kurdish parties for links to PKK rebels .\tIN DT NN , NNP VBZ VBN JJ NNS IN NNS TO NNP NNS .\nTurkey has been pressing Iraq to crack down on PKK guerrillas who shelter in northern Iraq .\tNNP VBZ VBN VBG NNP TO VB RP IN NNP NNS WP VBP IN JJ NNP .\nTurkey has also threatened cross-border military operations against the PKK .\tNNP VBZ RB VBN JJ JJ NNS IN DT NNP .\nThe Iraqi election commission says the main Shi'ite coalition has maintained a strong showing in Sunday 's landmark elections .\tDT JJ NN NN VBZ DT JJ NNP NN VBZ VBN DT JJ NN IN NNP POS NN NNS .\nPartial results show the United Iraqi Alliance , which has the support of influential Shi'ite cleric Grand Ayatollah Ali al-Sistani , with 2.2 million of the 3.3 million votes counted so far .\tJJ NNS VBP DT NNP JJ NNP , WDT VBZ DT NN IN JJ NNP NN NNP NNP NNP NNP , IN CD CD IN DT CD CD NNS VBN RB RB .\nThe party of interim Prime Minister Iyad Allawi is in second place with less than 20 percent support .\tDT NN IN JJ NNP NNP NNP NNP VBZ IN JJ NN IN JJR IN CD NN NN .\nThe results so far are from mainly Shi'ite regions , and a complete tabulation is not expected for another week .\tDT NNS RB RB VBP IN RB JJ NNS , CC DT JJ NN VBZ RB VBN IN DT NN .\nMeanwhile , the U.S. military says an American soldier was killed Thursday when a troop convoy was hit by a roadside bomb in the northern city of Mosul .\tRB , DT NNP NN VBZ DT JJ NN VBD VBN NNP WRB DT NN NN VBD VBN IN DT NN NN IN DT JJ NN IN NNP .\nThousands of Ugandans took to the streets Monday to celebrate the release on bail of opposition leader Kizza Besigye .\tNNS IN NNS VBD TO DT NNS NNP TO VB DT NN IN NN IN NN NN NNP NNP .\nDr. Besigye walked out of a Kampala courthouse Monday after a Ugandan High Court judge , John Bosco Katutsi , ruled his detention by the military was illegal .\tNNP NNP VBD IN IN DT NNP NN NNP IN DT JJ NNP NNP NN , NNP NNP NNP , VBD PRP$ NN IN DT NN VBD JJ .\nPolice fired tear gas to disperse the celebrating supporters .\tNNS VBD JJ NN TO VB DT VBG NNS .\nThe military had held Dr. Besigye since November , when he returned from self-imposed exile to run in next month 's elections against President Yoweri Museveni .\tDT NN VBD VBN NNP NNP IN NNP , WRB PRP VBD IN JJ NN TO VB IN JJ NN POS NNS IN NNP NNP NNP .\nA military tribunal has charged Dr. Besigye with terrorism and illegal firearms possession .\tDT JJ NN VBZ VBN NNP NNP IN NN CC JJ NNS NN .\nBut the judge said the military 's authority to hold him expired last month , when the High Court ordered the tribunal suspended .\tCC DT NN VBD DT NN POS NN TO VB PRP VBN JJ NN , WRB DT NNP NNP VBD DT NN VBD .\nDr. Besigye still faces civilian charges of rape and treason .\tNNP NNP RB VBZ JJ NNS IN NN CC NN .\nHe has denied all the charges , which supporters say are politically motivated .\tPRP VBZ VBN PDT DT NNS , WDT NNS VBP VBP RB JJ .\nOfficial Iranian news reports say parliament has rejected President Mahmoud Ahmadinejad 's third nominee for the post of oil minister .\tNNP JJ NN NNS VBP NN VBZ VBN NNP NNP NNP POS JJ NN IN DT NN IN NN NN .\nThe reports say Mohsen Tasalouti - a trained architect - failed Wednesday to win a vote of confidence , after lawmakers argued he was not qualified to run the all-important ministry .\tDT NNS VBP NNP NNP IN DT JJ NN : VBD NNP TO VB DT NN IN NN , IN NNS VBD PRP VBD RB VBN TO VB DT JJ NN .\nOil exports generate 80 percent of Iran 's public revenues .\tNN NNS VBP CD NN IN NNP POS JJ NNS .\nThe president 's first nominee for the post , Ali Saeedlou was rejected in August by lawmakers who said he was not qualified .\tDT NN POS JJ NN IN DT NN , NNP NNP VBD VBN IN NNP IN NNS WP VBD PRP VBD RB VBN .\nA second nominee , General Sadeq Mahsouli - a Revolutionary Guards commander with no oil experience - withdrew his candidacy earlier this month when it became clear parliament would reject him as well .\tDT JJ NN , NNP NNP NNP IN DT JJ NNP NN IN DT NN NN : VBD PRP$ NN RBR DT NN WRB PRP VBD JJ NN MD VB PRP RB RB .\nThe ministry is currently being run by a deputy oil minister under former President Mohammed Khatami .\tDT NN VBZ RB VBG VBN IN DT JJ NN NN IN JJ NNP NNP NNP .\nIsrael 's elder statesman , Nobel laureate Shimon Peres , has been ousted as the Labor party leader by a trade unionist who says he will quit the ruling coalition government and force early elections .\tNNP POS NN NN , NNP NN NNP NNP , VBZ VBN VBN IN DT NNP NN NN IN DT NN NN WP VBZ PRP MD VB DT NN NN NN CC NN JJ NNS .\nTrade union chief Amir Peretz won a vote among 1,00,000 rank-and-file Labor Party members Thursday .\tNNP NN NN NNP NNP VBD DT NN IN CD JJ NNP NNP NNS NNP .\nA short while after his upset win , Mr. Peretz said he would press Prime Minister Ariel Sharon to set a date for national elections .\tDT JJ NN IN PRP$ JJ NN , NNP NNP VBD PRP MD VB NNP NNP NNP NNP TO VB DT NN IN JJ NNS .\nMr. Peretz linked Labor 's pullout from the ruling coalition to party opposition to free market reforms and spending cuts .\tNNP NNP VBD NNP POS NN IN DT NN NN TO NN NN TO JJ NN NNS CC NN NNS .\nMr. Peres brought his party into the ruling coalition last year as a junior partner to help back Prime Minister Sharon 's evacuation of Jewish settlers from the Gaza Strip .\tNNP NNP VBD PRP$ NN IN DT NN NN JJ NN IN DT JJ NN TO VB RB NNP NNP NNP POS NN IN JJ NNS IN DT NNP NNP .\nMost analysts had expected Mr. Peres , a former prime minister , to retain his party 's leadership post .\tJJS NNS VBD VBN NNP NNP , DT JJ JJ NN , TO VB PRP$ NN POS NN NN .\nA spokesman for Iran 's Supreme National Security Council is denying a report that says the council head and top nuclear negotiator Hassan Rowhani has resigned .\tDT NN IN NNP POS NNP NNP NNP NNP VBZ VBG DT NN WDT VBZ DT NN NN CC JJ JJ NN NNP NNP VBZ VBN .\nSpokesman Ali Agha-Mohammadi says the resignation announcement published Wednesday by the state news agency IRNA was ' completely ' FALSE .\tNNP NNP NNP VBZ DT NN NN VBN NNP IN DT NN NN NN NNP VBD `` RB `` JJ .\nThe IRNA report quoted an informed source as saying Mr. Rowhani , who heads ongoing nuclear talks with the European Union , has sent his resignation letter to outgoing President Mohammed Khatami .\tDT NNP NN VBD DT JJ NN IN VBG NNP NNP , WP VBZ JJ JJ NNS IN DT NNP NNP , VBZ VBN PRP$ NN NN TO VBG NNP NNP NNP .\nThere has been growing media speculation in recent days that Mr. Rowhani would quit to allow President-elect Mahmoud Ahmadinejad to fill the position .\tEX VBZ VBN VBG NNS NN IN JJ NNS IN NNP NNP MD VB TO VB JJ NNP NNP TO VB DT NN .\nIndia and Burma have signed several new agreements to build stronger economic and defense ties , during a visit to India by Burma 's reclusive military ruler .\tNNP CC NNP VBP VBN JJ JJ NNS TO VB JJR JJ CC NN NNS , IN DT NN TO NNP IN NNP POS JJ JJ NN .\nSenior General Than Shwe , received a formal welcome Tuesday in New Delhi , where he met Prime Minister Manmohan Singh and other Indian officials .\tNNP NNP NNP NNP , VBD DT JJ JJ NNP IN NNP NNP , WRB PRP VBD NNP NNP NNP NNP CC JJ JJ NNS .\nThe two countries signed five agreements following the talks , including a plan to jointly combat arms smuggling across their shared border .\tDT CD NNS VBD CD NNS VBG DT NNS , VBG DT NN TO RB VB NNS VBG IN PRP$ JJ NN .\nIndia also agreed to help Burma in a host of projects such as building roads , developing waterways , and a port .\tNNP RB VBD TO VB NNP IN DT NN IN NNS JJ IN NN NNS , VBG NNS , CC DT NN .\nRights groups have criticized India for engaging with Burma , citing concerns about the Burmese government 's continued repression of its political opponents .\tNNS NNS VBP VBN NNP IN VBG IN NNP , VBG NNS IN DT JJ NN POS JJ NN IN PRP$ JJ NNS .\nPro-democracy activists have held demonstrations in New Delhi to protest against Than Shwe 's five-day visit .\tJJ NNS VBP VBN NNS IN NNP NNP TO VB IN NNP NNP POS JJ NN .\nAside from their shared border , Burma is of important strategic interest to India because of its large natural gas reserves .\tRB IN PRP$ JJ NN , NNP VBZ IN JJ JJ NN TO NNP IN IN PRP$ JJ JJ NN NNS .\nGunmen in the Somali capital , Mogadishu , have killed the head of the U.N. Development Program for Somalia .\tNNS IN DT JJ NN , NNP , VBP VBN DT NN IN DT NNP NNP NNP IN NNP .\nOsman Ali Ahmed was shot dead Sunday as he left a Mogadishu mosque .\tNNP NNP NNP VBD VBN JJ NNP IN PRP VBD DT NNP NN .\nWitnesses say another man also was wounded in the attack .\tNNS VBP DT NN RB VBD VBN IN DT NN .\nNo one has claimed responsibility .\tDT NN VBZ VBN NN .\nAttacks on aid workers and other officials are common in Somalia , where Islamist insurgents are fighting the Ethiopian-backed interim government .\tNNS IN NN NNS CC JJ NNS VBP JJ IN NNP , WRB NNP NNS VBP VBG DT JJ JJ NN .\nOn Saturday , a land mine killed a Mogadishu city official and at least three security guards .\tIN NNP , DT NN NN VBD DT NNP NN NN CC IN JJS CD NN NNS .\nSomalia has not had a fully functioning central government since 1991 , when warlords overthrew dictator Mohamed Siad Barre and turned on each other .\tNNP VBZ RB VBN DT RB VBG JJ NN IN CD , WRB NNS VBP NN NNP NNP NNP CC VBD IN DT NN .\nThe United States has called North Korea 's missile programs a global threat after the communist nation reportedly fired two missiles near its border with China .\tDT NNP NNP VBZ VBN NNP NNP POS NN NNS DT JJ NN IN DT JJ NN RB VBD CD NNS IN PRP$ NN IN NNP .\nMedia reports differed on whether the missiles were launched as a test or by mistake .\tNNS NNS VBD IN IN DT NNS VBD VBN IN DT NN CC IN NN .\nHowever , a White House spokesman , Scott McClellan , said the launches were similar to previous tests carried out by North Korea .\tRB , DT NNP NNP NN , NNP NNP , VBD DT NNS VBD JJ TO JJ NNS VBN RP IN NNP NNP .\nPyongyang has offered no public information about the missile launches .\tNNP VBZ VBN DT JJ NN IN DT NN NNS .\nMeanwhile , the chief U.S. negotiator at stalled nuclear talks , Christopher Hill , says North Korea is blocking progress in the negotiations .\tRB , DT JJ NNP NN IN VBN JJ NNS , NNP NNP , VBZ NNP NNP VBZ VBG NN IN DT NNS .\nEarlier Wednesday , a senior North Korean diplomat , Li Gun , repeated Pyongyang 's refusal to return to talks over its nuclear program until the United States lifts financial sanctions on North Korean assets .\tRBR NNP , DT JJ JJ JJ NN , NNP NNP , VBD NNP POS NN TO VB IN NNS IN PRP$ JJ NN IN DT NNP NNPS VBZ JJ NNS IN JJ JJ NNS .\nThe United Nations anti-drug chief has called for a strong military action by NATO forces to destroy the opium industry in southern Afghanistan .\tDT NNP NNP JJ NN VBZ VBN IN DT JJ JJ NN IN NNP NNS TO VB DT NN NN IN JJ NNP .\nHead of the U.N. Office on Drugs and Crime Antonio Maria Costa Tuesday urged NATO countries to give the alliance the mandate to stop what he called the vicious circle of drugs funding terrorists and terrorists protecting drug traffickers .\tNNP IN DT NNP NNP IN NNP CC NNP NNP NNP NNP NNP VBD NNP NNS TO VB DT NN DT NN TO VB WP PRP VBD DT JJ NN IN NNS VBG NNS CC NNS VBG NN NNS .\nIn an unrelated development , a U.S.-led coalition soldier died and another one was injured when their armored vehicle rolled over during a combat mission in eastern Kunar province late Monday .\tIN DT JJ NN , DT JJ NN NN VBD CC DT CD VBD VBN WRB PRP$ JJ NN VBD RP IN DT NN NN IN JJ NNP NN JJ NNP .\nSeparately , unknown gunmen kidnapped a Colombian aid worker and two Afghan employees of a French-funded aid agency in central Wardak province .\tRB , JJ NNS VBD DT JJ NN NN CC CD JJ NNS IN DT JJ NN NN IN JJ NNP NN .\nLocal officials say the three disappeared Sunday and that police are looking for them .\tJJ NNS VBP DT CD VBN NNP CC IN NNS VBP VBG IN PRP .\nIt is not clear why they were in the remote area .\tPRP VBZ RB JJ WRB PRP VBD IN DT JJ NN .\nThe U.S. has reopened its embassy and other offices in South Africa , three days after closing them because of a security threat .\tDT NNP VBZ VBN PRP$ NN CC JJ NNS IN NNP NNP , CD NNS IN VBG PRP IN IN DT NN NN .\nU.S. Embassy spokeswoman Sharon Hudson-Dean said the embassy in Pretoria and other facilities were open for business Friday .\tNNP NNP NN NNP NNP VBD DT NN IN NNP CC JJ NNS VBD JJ IN NN NNP .\nU.S. officials have not given any details about the threat that prompted them to close the embassy , three consulates , and U.S. aid offices on Tuesday .\tNNP NNS VBP RB VBN DT NNS IN DT NN WDT VBD PRP TO VB DT NN , CD NNS , CC NNP NN NNS IN NNP .\nHowever , a South African newspaper said the United States took action following a threat from an al-Qaida splinter group .\tRB , DT JJ JJ NN VBD DT NNP NNPS VBD NN VBG DT NN IN DT NNP NN NN .\nIn a Thursday report , The Pretoria News said the splinter group telephoned the embassy Monday and apparently gave detailed information about possible attacks against several U.S. government buildings in South Africa .\tIN DT NNP NN , DT NNP NNP VBD DT NN NN VBD DT NN NNP CC RB VBD JJ NN IN JJ NNS IN JJ NNP NN NNS IN NNP NNP .\nThe newspaper says its information is from ' well-placed security sources . '\tDT NN VBZ PRP$ NN VBZ IN `` JJ NN NNS . ``\nIt cites an intelligence source as saying the call to the embassy is believed to have come from South Africa .\tPRP VBZ DT NN NN IN VBG DT NN TO DT NN VBZ VBN TO VB VBN IN NNP NNP .\nDefending champion Serena Williams of the United States has advanced to the third round of the Australian Open tennis tournament in Melbourne , taking less than an hour to beat Camille Pin of France 06-Mar , 06-Jan .\tVBG NN NNP NNP IN DT NNP NNPS VBZ VBN TO DT JJ NN IN DT JJ NNP NN NN IN NNP , VBG JJR IN DT NN TO VB NNP NNP IN NNP CD , CD .\nTop seeded American Lindsay Davenport won her second round match today , beating Karolina Sprem of Croatia 07-Jun , 06-Mar .\tNN VBN JJ NNP NNP VBD PRP$ JJ NN NN NN , VBG NNP NNP IN NNP CD , CD .\nFourth seeded Maria Sharapova of Russia dispatched of Ashley Harkleroad of the United States in straight sets , 06-Jan , 07-May .\tJJ VBN NNP NNP IN NNP VBD IN NNP NNP IN DT NNP NNPS IN JJ NNS , CD , CD .\nOther women advancing Wednesday included sixth seeded Nadia Petrova of Russia and eighth-seeded Justine Henin-Hardenne of Belgium .\tJJ NNS VBG NNP VBD JJ JJ NNP NNP IN NNP CC JJ NNP NNP IN NNP .\nOn the men 's side , second seeded Andy Roddick of the United States advanced to the third round , after beating South African Wesley Moodie , 07-May , 06-Mar , 06-Feb .\tIN DT NNS POS NN , JJ JJ NNP NNP IN DT NNP NNPS VBD TO DT JJ NN , IN VBG JJ JJ NNP NNP , CD , CD , CD .\nAlso winning their second round matches were seventh seeded Ivan Ljubicic of Croatia , eighth seed Gaston Gaudio of Argentina and number 20 James Blake of the United States .\tRB VBG PRP$ JJ NN NNS VBD JJ JJ NNP NNP IN NNP , JJ NN NNP NNP IN NNP CC NN CD NNP NNP IN DT NNP NNPS .\nA group of Croatian activists , opposed to President Bush 's visit , have signed a huge postcard inviting the U.S. president not to return to their country .\tDT NN IN JJ NNS , VBN TO NNP NNP POS NN , VBP VBN DT JJ NN VBG DT NNP NN RB TO VB TO PRP$ NN .\nThe activists Saturday presented the postcard , which included the phrase ' Do n't Come Back , ' to the Croatian Foreign Ministry , after police prevented them from presenting it to Mr. Bush directly .\tDT NNS NNP VBD DT NN , WDT VBD DT NN `` VBP RB VB RB , `` TO DT JJ NNP NNP , IN NN VBD PRP IN VBG PRP TO NNP NNP RB .\nThey hope the ministry will send it on to the United States .\tPRP VBP DT NN MD VB PRP IN TO DT NNP NNPS .\nThose signing urged Mr. Bush , among other things , to halt activities that hurt the environment , ratify the Kyoto Protocol , withdraw U.S. troops from the Middle East and close down the terrorist detention center at the U.S. Naval base in Guantanamo Bay , Cuba .\tDT NN VBD NNP NNP , IN JJ NNS , TO VB NNS WDT VBP DT NN , VB DT NNP NNP , VB NNP NNS IN DT NNP NNP CC RB IN DT JJ NN NN IN DT NNP NNP NN IN NNP NNP , NNP .\nAn African Union official says two of the mission 's peacekeepers have been killed in an ambush in Sudan 's volatile Darfur region .\tDT NNP NNP NN VBZ CD IN DT NN POS NNS VBP VBN VBN IN DT NN IN NNP POS JJ NNP NN .\nThe acting head of the AU mission in Sudan , Jean-Baptiste Natama , said the two peacekeeping soldiers , as well as two civilian contractors , were killed Saturday during a surprise attack in South Darfur .\tDT JJ NN IN DT NNP NN IN NNP , NNP NNP , VBD DT CD NN NNS , RB RB IN CD JJ NNS , VBD VBN NNP IN DT NN NN IN NNP NNP .\nMore than 6,000 African Union peacekeepers are deployed to the region .\tJJR IN CD NNP NNP NNS VBP VBN TO DT NN .\nFighting between Sudanese rebels and government-backed Arab militia in Darfur has killed tens of thousands of people and driven more than two million others from their homes since 2003 .\tVBG IN JJ NNS CC JJ JJ NN IN NNP VBZ VBN NNS IN NNS IN NNS CC VBN JJR IN CD CD NNS IN PRP$ NNS IN CD .\nVenezuelan President Hugo Chavez has accused the United States of supporting an alleged separatist movement in Venezuela 's oil-rich Zulia state .\tJJ NNP NNP NNP VBZ VBN DT NNP NNPS IN VBG DT JJ JJ NN IN NNP POS JJ NNP NN .\nMr. Chavez said on Venezuelan television this week that the United States backs an effort in Zulia state by a group called Rumbo Propio , or ' our own path , ' to hold a referendum on breaking away from the government in Caracas .\tNNP NNP VBD IN JJ NN DT NN IN DT NNP NNPS VBZ DT NN IN NNP NN IN DT NN VBN NNP NNP , CC `` PRP$ JJ NN , `` TO VB DT NN IN VBG RB IN DT NN IN NNP .\nThe head of the ruling MVR party , William Lara , has accused the U.S. Ambassador to Venezuela , William Brownfield , of meeting with the group .\tDT NN IN DT NN NNP NN , NNP NNP , VBZ VBN DT NNP NN TO NNP , NNP NNP , IN NN IN DT NN .\nBut the U.S. embassy in Caracas told the Daily Journal newspaper there is no record of such a meeting .\tCC DT NNP NN IN NNP VBD DT NNP NNP NN EX VBZ DT NN IN JJ DT NN .\nOfficials announced this week that Rumbo Propio is under investigation for possible treason .\tNNS VBD DT NN IN NNP NNP VBZ IN NN IN JJ NN .\nPresident Chavez has repeatedly accused the United States of plotting to overthrow his government .\tNNP NNP VBZ RB VBN DT NNP NNPS IN VBG TO VB PRP$ NN .\nPresident Bush and Macedonian Prime Minister Vlado Buckovski have met at the White House to discuss reforms in Macedonia and the situation in Iraq .\tNNP NNP CC JJ NNP NNP NNP NNP VBP VBN IN DT NNP NNP TO VB NNS IN NNP CC DT NN IN NNP .\nFollowing their talks , Mr. Bush praised Macedonia for showing the world it is possible for people of different backgrounds to live together in peace .\tVBG PRP$ NNS , NNP NNP VBD NNP IN VBG DT NN PRP VBZ JJ IN NNS IN JJ NNS TO VB RB IN NN .\nHe said his discussions with Mr. Buckovski also covered Macedonia 's aspirations to join NATO .\tPRP VBD PRP$ NNS IN NNP NNP RB VBD NNP POS NNS TO VB NNP .\nMr. Bush also thanked Mr. Buckovski for sending Macedonian troops to Iraq and Afghanistan .\tNNP NNP RB VBD NNP NNP IN VBG JJ NNS TO NNP CC NNP .\nThe Macedonian leader said his forces will stay in those countries for as long as they are needed .\tDT JJ NN VBD PRP$ NNS MD VB IN DT NNS IN RB JJ IN PRP VBP VBN .\nMr. Buckovski is also meeting at the Pentagon with U.S. Defense Secretary Donald Rumsfeld .\tNNP NNP VBZ RB VBG IN DT NNP IN NNP NNP NNP NNP NNP .\nFriday , he will be in New York for a United Nations Development Program donors ' conference on Macedonia .\tNNP , PRP MD VB IN NNP NNP IN DT NNP NNP NNP NNP NNS POS NN IN NNP .\nHe winds up his U.S. trip with a stop in Detroit for a meeting with Macedonian-American community leaders .\tPRP VBZ RP PRP$ NNP NN IN DT NN IN NNP IN DT NN IN JJ NN NNS .\nThe Palestinian parliament has approved a new cabinet dominated by technocrats and professional appointees .\tDT JJ NN VBZ VBN DT JJ NN VBN IN NNS CC JJ NNS .\nThe approval Thursday comes after Prime Minister Ahmed Qureia bowed to lawmakers ' demands to replace several officials closely associated with the late Palestinian leader Yasser Arafat .\tDT NN NNP VBZ IN NNP NNP NNP NNP VBD TO NNS POS NNS TO VB JJ NNS RB VBN IN DT JJ JJ NN NNP NNP .\nThe new lineup includes Arafat-allies Nabil Shaath , who becomes deputy prime minister , and Nasser al-Qidwa , Mr. Arafat 's nephew , who replaces Mr. Shaath as foreign minister .\tDT JJ NN VBZ NNS NNP NNP , WP VBZ JJ JJ NN , CC NNP NNP , NNP NNP POS NN , WP VBZ NNP NNP IN JJ NN .\nSaeb Erekat , who was an Arafat ally and former minister of negotiations , was left out .\tNNP NNP , WP VBD DT NNP NN CC JJ NN IN NNS , VBD VBN RP .\nThe cabinet was approved after President Mahmoud Abbas pressured the dominant Fatah faction to accept a revised lineup .\tDT NN VBD VBN IN NNP NNP NNP VBD DT JJ NNP NN TO VB DT JJ NN .\nMr. Abbas made reform of the Palestinian Authority a key platform of his recent presidential campaign .\tNNP NNP VBD NN IN DT JJ NNP DT JJ NN IN PRP$ JJ JJ NN .\nThe Authority was plagued with corruption under Mr. Arafat , who died in November .\tDT NNP VBD VBN IN NN IN NNP NNP , WP VBD IN NNP .\nParliament approved the new cabinet in a vote of 54 to 12 with four abstentions .\tNNP VBD DT JJ NN IN DT NN IN CD CC CD IN CD NNS .\nLondon-based Amnesty International has called on Iranian authorities to release dozens of journalists it says are in jail after being arrested during protests since the disputed June 12 election .\tJJ NNP NNP VBZ VBN IN JJ NNS TO VB NNS IN NNS PRP VBZ VBP IN NN IN VBG VBN IN NNS IN DT JJ NNP CD NN .\nThe human rights group says the journalists are at risk of torture in detention .\tDT JJ NNS NN VBZ DT NNS VBP IN NN IN NN IN NN .\nAmnesty International says most of the journalists being jailed worked for the newspaper Kalameh Sabz , which was established by the runner-up in the poll , Mir Hossein Mousavi .\tNNP NNP VBZ JJS IN DT NNS VBG VBN VBD IN DT NN NNP NNP , WDT VBD VBN IN DT NN IN DT NN , NNP NNP NNP .\nA spokesman for the group said the organization assumes Iran 's government is trying to hide evidence of abuse , and further silence any critical voice .\tDT NN IN DT NN VBD DT NN VBZ NNP POS NN VBZ VBG TO VB NN IN NN , CC JJ NN DT JJ NN .\nIn addition to the imprisonment of journalists , Amnesty condemns efforts by authorities to interrupt the Internet inside Iran , ban coverage of the unrest in local publications and prevent foreign journalists from doing their work properly .\tIN NN TO DT NN IN NNS , NNP NNS NNS IN NNS TO VB DT NNP IN NNP , NN NN IN DT NN IN JJ NNS CC VB JJ NNS IN VBG PRP$ NN RB .\nNigerian police say armed men wearing camouflage uniforms have kidnapped a German oil industry worker in the country 's Niger Delta region .\tJJ NNS VBP JJ NNS VBG NN NNS VBP VBN DT JJ NN NN NN IN DT NN POS NNP NNP NN .\nA police spokesman says the kidnappers took the worker from his car near the southern city of Port Harcourt Thursday .\tDT NN NN VBZ DT NNS VBD DT NN IN PRP$ NN IN DT JJ NN IN NNP NNP NNP .\nThe German man works for the company Bilfinger Berger .\tDT JJ NN VBZ IN DT NN NNP NNP .\nPolice have not named any suspects in the case .\tNNS VBP RB VBN DT NNS IN DT NN .\nKidnappings are common in the delta region .\tNNS VBP JJ IN DT NN NN .\nLocal militants want residents to receive more of the region 's oil revenues .\tJJ NNS VBP NNS TO VB JJR IN DT NN POS NN NNS .\nOn Monday , Nigerian militants released eight soldiers and 16 oil workers they had held hostage at an oil pumping station for a week .\tIN NNP , JJ NNS VBN CD NNS CC CD NN NNS PRP VBD VBN NN IN DT NN VBG NN IN DT NN .\nNigeria normally produces about 2.5 million barrels of oil per day .\tNNP RB VBZ IN CD CD NNS IN NN IN NN .\nBut recent attacks on oil facilities and the kidnappings have slashed production by at least 20 percent since February .\tCC JJ NNS IN NN NNS CC DT NNS VBP VBN NN IN IN JJS CD NN IN NNP .\nTwo of the fastest men in the world , Jamaicans Asafa Powell and Usain Bolt , have finished in first and second place respectively in the 100-meter race at the DN Galan meet in Stockholm .\tCD IN DT JJS NNS IN DT NN , NNS NNP NNP CC NNP NNP , VBP VBN IN JJ CC JJ NN RB IN DT JJ NN IN DT NNP NNP VB IN NNP .\nPowell won the highly anticipated rematch Tuesday in 9.88 seconds .\tNNP VBD DT RB VBN NN NNP IN CD NNS .\nBolt was slow out of the starting blocks , but nearly caught up and finished just one-100th of one second back .\tNNP VBD JJ IN IN DT VBG NNS , CC RB VBD RP CC VBD RB JJ IN CD NN RB .\nBolt set the world record of 9.72 seconds on May 31 , breaking Powell 's mark by two-100ths of one second .\tNNP VBD DT NN NN IN CD NNS IN NNP CD , VBG NNP POS NN IN NNS IN CD NN .\nBut at the Beijing Olympics next month , both Jamaicans will also battle American sprinter Tyson Gay , who ran the fastest time ever recorded for the 100 meter distance .\tCC IN DT NNP NNPS JJ NN , DT NNS MD RB VB JJ NN NNP NNP , WP VBD DT JJS NN RB VBN IN DT CD NN NN .\nGay clocked a wind-assisted time of 9.68 seconds on June 30 .\tNNP VBD DT JJ NN IN CD NNS IN NNP CD .\nThe United States says it will send a team of diplomats to the Horn of Africa region to try to resolve the border dispute between Eritrea and Ethiopia .\tDT NNP NNPS VBZ PRP MD VB DT NN IN NNS TO DT NNP IN NNP NN TO VB TO VB DT NN NN IN NNP CC NNP .\nThe U.S. ambassador to the United Nations , John Bolton , says the delegation will focus on ' how to begin implementation of the border demarcation process . '\tDT NNP NN TO DT NNP NNP , NNP NNP , VBZ DT NN MD VB IN `` WRB TO VB NN IN DT NN NN NN . ``\nHe said the delegation will be led by U.S. Assistant Secretary of State for African affairs Jendayi Frazer .\tPRP VBD DT NN MD VB VBN IN NNP NNP NNP IN NNP IN JJ NNS NNP NNP .\nMr. Bolton spoke to reporters after the U.N. Security Council discussed Eritrea and Ethiopia in a closed-door meeting Monday .\tNNP NNP VBD TO NNS IN DT NNP NNP NNP VBD NNP CC NNP IN DT JJ NN NNP .\nEritrea says the U.N. has done too little to make Ethiopia accept a borderline drawn by an independent panel .\tNNP VBZ DT NNP VBZ VBN RB JJ TO VB NNP VB DT NN VBN IN DT JJ NN .\nU.N. officials have said the situation on the two countries ' border remains ' tense and potentially volatile . '\tNNP NNS VBP VBN DT NN IN DT CD NNS POS NN VBZ `` NN CC RB JJ . ``\nEritrea and Ethiopia fought a border war between 1998 and 2000 that killed 70,000 people .\tNNP CC NNP VBD DT NN NN IN CD CC CD WDT VBD CD NNS .\nThousands of anti-globalization activists marched in the streets of Hong Kong Sunday as the city prepares to host the World Trade Organization 's ( WTO ) annual summit .\tNNS IN JJ NNS VBD IN DT NNS IN NNP NNP NNP IN DT NN VBZ TO VB DT NNP NNP NNP POS LRB NNP RRB JJ NN .\nThe peaceful two-hour march by nearly 4,000 protesters was said to have a carnival-like atmosphere , with dozens of groups holding gaudy props while wearing colorful costumes .\tDT JJ JJ NN IN RB CD NNS VBD VBN TO VB DT JJ NN , IN NNS IN NNS VBG JJ NNS IN VBG JJ NNS .\nThe march was the first of three large demonstrations planned for the summit .\tDT NN VBD DT NN IN CD JJ NNS VBN IN DT NN .\nAnother will be held Tuesday when the ministerial conference kicks off .\tDT MD VB VBN NNP WRB DT JJ NN VBZ RP .\nThe final protest rally is scheduled for the closing day next Sunday .\tDT JJ NN NN VBZ VBN IN DT NN NN IN NNP .\nAuthorities in Hong Kong have been worried about a repeat of the violence , which marred previous trade meetings in Cancun and Seattle .\tNNS IN NNP NNP VBP VBN VBN IN DT NN IN DT NN , WDT VBD JJ NN NNS IN NNP CC NNP .\nThousands of police have been put on alert for the Hong Kong summit .\tNNS IN NNS VBP VBN VBN IN NN IN DT NNP NNP NN .\nBrother of Iraqi policeman cries over coffin during funeral in Baghdad , Friday\tNNP IN JJ NN NNS IN NN IN NN IN NNP , NNP\nA series of insurgent attacks across Iraq killed at least 30 people Saturday , including a number of police recruits .\tDT NN IN JJ NNS IN NNP VBD IN JJS CD NNS NNP , VBG DT NN IN NN NNS .\nA suicide bomber blew himself up outside a police recruiting station in central Baghdad , killing at least 16 people .\tDT NN NN VBD PRP RP IN DT NN NN NN IN JJ NNP , VBG IN JJS CD NNS .\nAl-Qaida in Iraq claimed responsibility in an Internet posting , although the statement 's authenticity could not be confirmed .\tNNP IN NNP VBD NN IN DT NN VBG , IN DT NN POS NN MD RB VB VBN .\nTwo separate suicide bomb attacks in a city south of Baghdad - one at a police checkpoint and a second attack targeting civilians - left another 10 people dead .\tCD JJ NN NN NNS IN DT NN NN IN NNP IN CD IN DT NN NN CC DT JJ NN VBG NNS : VBD DT CD NNS JJ .\nA bomb hidden in a vegetable cart exploded south of Baghdad as the funeral procession for a slain top Shi'ite cleric passed close by , killing two people .\tDT NN VBN IN DT JJ NN VBD RB IN NNP IN DT JJ NN IN DT NN JJ NNP NN VBD RB IN , VBG CD NNS .\nNo one in the funeral party was injured .\tDT NN IN DT JJ NN VBD VBN .\nGunmen and roadside bombs also targeted police officials and Iraqi soldiers in separate attacks elsewhere in Iraq .\tNNS CC NN NNS RB VBD NN NNS CC JJ NNS IN JJ NNS RB IN NNP .\nThree-time U.S. college basketball champion coach Mike Krzyzewski of Duke University has been officially named as the U.S. men 's national team coach .\tJJ NNP NN NN NN NN NNP NNP IN NNP NNP VBZ VBN RB VBN IN DT NNP NNS POS JJ NN NN .\nHis primary task is to bring the Olympic title back to the United States .\tPRP$ JJ NN VBZ TO VB DT NNP NN RB TO DT NNP NNPS .\nThe announcement by USA Basketball Wednesday came two weeks after Krzyzewski 's appointment was widely reported .\tDT NN IN NNP NNP NNP VBD CD NNS IN NNP POS NN VBD RB VBN .\nThe move puts a college coach in charge of the U.S. team for the first times since National Basketball Players first began playing in the 1992 Olympics .\tDT NN VBZ DT NN NN IN NN IN DT NNP NN IN DT JJ NNS IN NNP NNP NNPS RB VBD VBG IN DT CD NNS .\nThe United States ' ' Dream Team ' won gold at the 1992 Barcelona Games .\tDT NNP NNPS POS `` VB NNP `` VBD NN IN DT CD NNP NNPS .\nTeams with NBA players repeated the feat in 1996 and 2000 .\tNNS IN NNP NNS VBD DT NN IN CD CC CD .\nBut the U.S. team finished sixth in the 2002 World Championship and took the bronze medal in Athens last year .\tCC DT NNP NN VBD RB IN DT CD NNP NNP CC VBD DT NN NN IN NNP JJ NN .\nThe United Nations says it is investigating Eritrean claims that Ethiopian troops entered its territory and attacked a village .\tDT NNP NNP VBZ PRP VBZ VBG JJ NNS IN JJ NNS VBD PRP$ NN CC VBD DT NN .\nEritrea 's Information Ministry said Wednesday Ethiopian troops crossed into a remote Eritrean village in late November , set fire to 10 houses and kidnapped five people .\tNNP POS NNP NNP VBD NNP JJ NNS VBD IN DT JJ JJ NN IN JJ NNP , VBD NN TO CD NNS CC VBD CD NNS .\nThe commander of the U.N. peacekeeping force for Eritrea and Ethiopia said Thursday an investigation is underway .\tDT NN IN DT NNP NN NN IN NNP CC NNP VBD NNP DT NN VBZ JJ .\nHe said the 1,000 kilometer border between the two countries continues ' peaceful and stable , ' despite allegations of an Ethiopian incursion .\tPRP VBD DT CD NN NN IN DT CD NNS VBZ `` JJ CC JJ , `` IN NNS IN DT JJ NN .\nEthiopia and Eritrea fought a two and a half year border war between 1998 and 2000 that left more than 70,000 people dead .\tNNP CC NNP VBD DT CD CC DT JJ NN NN NN IN CD CC CD WDT VBD JJR IN CD NNS JJ .\nBoth countries agreed to a ceasefire and international mediation , including an independent boundary commission whose decision would be final and binding .\tDT NNS VBD TO DT NN CC JJ NN , VBG DT JJ JJ NN WP$ NN MD VB JJ CC JJ .\nChina is denying a United Nations investigator 's report of widespread torture in China , and accuses the envoy of jumping to conclusions .\tNNP VBZ VBG DT NNP NNP NN POS NN IN JJ NN IN NNP , CC VBZ DT NN IN VBG TO NNS .\nSpeaking Tuesday in Beijing , a Foreign Ministry spokesman , Qin Gang , said the U.N. rapporteur on torture , Manfred Nowak , presented a report that was not factual because he only visited three Chinese cities during his two-week visit .\tVBG NNP IN NNP , DT NNP NNP NN , NNP NNP , VBD DT NNP NN IN NN , NNP NNP , VBD DT NN WDT VBD RB JJ IN PRP RB VBD CD JJ NNS IN PRP$ JJ NN .\nThe spokesman also denied Mr. Nowak 's claim that Chinese officials obstructed his fact-finding mission , particularly when visiting detention centers .\tDT NN RB VBD NNP NNP POS NN IN JJ NNS VBD PRP$ JJ NN , RB WRB VBG NN NNS .\nMr. Nowak told VOA that officials monitored his interviews with lawyers and family members of prisoners .\tNNP NNP VBD NNP IN NNS VBD PRP$ NNS IN NNS CC NN NNS IN NNS .\nHowever , he said he was able to determine that torture is widespread , including beatings , the use of electric shock batons , and dunking in filthy water .\tRB , PRP VBD PRP VBD JJ TO VB DT NN VBZ JJ , VBG NNS , DT NN IN JJ NN NNS , CC VBG IN JJ NN .\nMr. Nowak 's visit to China included stops in Tibet and the Muslim-majority region of Xinjiang .\tNNP NNP POS NN TO NNP VBD NNS IN NNP CC DT JJ NN IN NNP .\nThe trip resulted from 10 years of negotiations .\tDT NN VBD IN CD NNS IN NNS .\nA Russian general says placing elements of a U.S. anti-missile system in Poland and the Czech Republic would be a ' clear threat ' to Moscow .\tDT JJ NN VBZ VBG NNS IN DT NNP JJ NN IN NNP CC DT JJ NNP MD VB DT `` JJ NN `` TO NNP .\nLieutenant General Vladimir Popovkin , the chief of Russia 's Space Forces , disputed the U.S. contention that the system 's sole aim was to defend Europe against intercontinental missiles fired by hostile states outside the region .\tNNP NNP NNP NNP , DT NN IN NNP POS NNP NNP , VBD DT NNP NN IN DT NN POS JJ NN VBD TO VB NNP IN JJ NNS VBN IN JJ NNS IN DT NN .\nPoland and the Czech Republic have agreed to start detailed discussions with Washington on hosting anti-missile defenses .\tNNP CC DT JJ NNP VBP VBN TO VB JJ NNS IN NNP IN VBG JJ NNS .\nRussian officials have repeatedly opposed the project , calling it a veiled attempt to change the strategic balance between Russia and the West .\tJJ NNS VBP RB VBN DT NN , VBG PRP DT VBN NN TO VB DT JJ NN IN NNP CC DT NNP .\nBoth Poland and the Czech Republic are former communist Warsaw Pact countries that are now NATO members .\tDT NNP CC DT JJ NNP VBP JJ JJ NNP NNP NNS WDT VBP RB NNP NNS .\nIsrael is pushing ahead with its campaign against Palestinian rocket attacks , with a series of air strikes Monday that killed at least five Palestinians .\tNNP VBZ VBG RB IN PRP$ NN IN JJ NN NNS , IN DT NN IN NN NNS NNP WDT VBD IN JJS CD NNS .\nIn the deadliest attack , an air strike on a car killed at least four Islamic Jihad militants in the northern Gaza Strip .\tIN DT JJS NN , DT NN NN IN DT NN VBN IN JJS CD NNP NNP NNS IN DT JJ NNP NNP .\nOn Sunday , Palestinian officials said an Israeli air strike on the Gaza City home of a Hamas lawmaker killed eight people .\tIN NNP , JJ NNS VBD DT JJ NN NN IN DT NNP NNP NN IN DT NNP NN VBD CD NNS .\nThe attack outraged Hamas , which promised revenge .\tDT NN VBD NNP , WDT VBD NN .\nIsrael launched the attack hours after its security Cabinet said it would intensify operations in Gaza to stop Palestinian militants from firing rockets into Israel .\tNNP VBD DT NN NNS IN PRP$ NN NNP VBD PRP MD VB NNS IN NNP TO VB JJ NNS IN VBG NNS IN NNP .\nCabinet ministers threatened to target Hamas leaders .\tNNP NNS VBD TO VB NNP NNS .\nNearly 40 Palestinians have been killed since Israel began its campaign last week .\tRB CD NNS VBP VBN VBN IN NNP VBD PRP$ NN JJ NN .\nEuropean Union Foreign Policy chief Javier Solana has left on a visit to the Middle East to urge an end to the violence .\tNNP NNP NNP NNP NN NNP NNP VBZ VBN IN DT NN TO DT NNP NNP TO VB DT NN TO DT NN .\nPalestinian health officials say a Hamas militant is dead and that 16 people have been wounded in an explosion Saturday at a home in Gaza City .\tJJ NN NNS VBP DT NNP NN VBZ JJ CC IN CD NNS VBP VBN VBN IN DT NN NNP IN DT NN IN NNP NNP .\nOfficials say two of the wounded are in critical condition .\tNNS VBP CD IN DT VBN VBP IN JJ NN .\nWitnesses say the home belonged to the victim , a Hamas activist named Nader Abu Shaban .\tNNS VBP DT NN VBD TO DT NN , DT NNP NN VBN NNP NNP NNP .\nOfficials say the cause of the explosion is under investigation .\tNNS VBP DT NN IN DT NN VBZ IN NN .\nSeveral Palestinians have been killed after explosives being stored , or made , in their homes accidentally detonated .\tJJ NNS VBP VBN VBN IN NNS VBG VBN , CC VBN , IN PRP$ NNS RB VBD .\nA leading Hong Kong newspaper is reporting that Chief Executive Tung Chee-hwa has informed his cabinet he is stepping down .\tDT VBG NNP NNP NN VBZ VBG IN NNP NNP NNP NNP VBZ VBN PRP$ NN PRP VBZ VBG RP .\nTuesday 's South China Morning Post quotes an unidentified cabinet minister who says Mr. Tung is quitting because he is tired and his health is not good .\tNNP POS NNP NNP NNP NNP VBZ DT JJ NN NN WP VBZ NNP NNP VBZ VBG IN PRP VBZ JJ CC PRP$ NN VBZ RB JJ .\nNo timetable was given .\tDT NN VBD VBN .\nHong Kong media reported last week that Mr. Tung had submitted his resignation to Beijing .\tNNP NNP NNS VBD JJ NN IN NNP NNP VBD VBN PRP$ NN TO NNP .\nHe has made no official comment on those reports .\tPRP VBZ VBN DT JJ NN IN DT NNS .\nMr. Tung has two years remaining on his five-year term .\tNNP NNP VBZ CD NNS VBG IN PRP$ JJ NN .\nPro-democracy advocates fear Beijing will give his successor a fresh five-year term , further blocking hopes for greater autonomy .\tNN NNS VBP NNP MD VB PRP$ NN DT JJ JJ NN , RB VBG NNS IN JJR NN .\nBut a senior Chinese official says any successor would have to complete Mr. Tung 's term in office .\tCC DT JJ JJ NN VBZ DT NN MD VB TO VB NNP NNP POS NN IN NN .\nPakistan says the kidnapped employee of its Baghdad embassy appears to have been abducted for ransom .\tNNP VBZ DT VBN NN IN PRP$ NNP NN VBZ TO VB VBN VBN IN NN .\nA Foreign Ministry spokesman Jalil Abbas told reporters in Islamabad Monday that Malik Mohammed Javed is safe and well and is in contact with senior officials at the embassy .\tDT NNP NNP NN NNP NNP VBD NNS IN NNP NNP IN NNP NNP NNP VBZ JJ CC RB CC VBZ IN NN IN JJ NNS IN DT NN .\nMr. Javed has not been seen since Saturday , when he left home for evening prayers at a Baghdad Mosque .\tNNP NNP VBZ RB VBN VBN IN NNP , WRB PRP VBD NN IN NN NNS IN DT NNP NNP .\nScores of foreigners have been kidnapped in Iraq over the past year , some by groups with political demands , others by criminals seeking ransom .\tNNS IN NNS VBP VBN VBN IN NNP IN DT JJ NN , DT IN NNS IN JJ NNS , NNS IN NNS VBG NN .\nThere has been no word about three Romanian journalists and an Iraqi assistant kidnapped nearly two weeks ago on the outskirts of Baghdad .\tEX VBZ VBN DT NN IN CD JJ NNS CC DT JJ NN VBN RB CD NNS RB IN DT NNS IN NNP .\nThe fate of an Iraqi general abducted last week is also not known .\tDT NN IN DT JJ NN VBN JJ NN VBZ RB RB VBN .\nA suicide bomber has killed at least 30 people and wounded nearly 20 others on a bus in Baghdad .\tDT NN NN VBZ VBN IN JJS CD NNS CC VBN RB CD NNS IN DT NN IN NNP .\nThe bus was crowded with people , traveling to the mostly Shi'ite city , Nasiriyah , southeast of Baghdad .\tDT NN VBD VBN IN NNS , VBG TO DT RB JJ NN , NNP , NN IN NNP .\nThe bus was about to depart the al-Nahda station in the east Baghdad town of Rusafa , early Thursday , when the attack occurred .\tDT NN VBD IN TO VB DT JJ NN IN DT JJ NNP NN IN NNP , JJ NNP , WRB DT NN VBD .\nWitnesses told police that they believe a suicide bomber , wearing an explosive belt , climbed onto the bus minutes before the explosion .\tNNS VBD NNS IN PRP VBP DT NN NN , VBG DT JJ NN , VBD IN DT NN NNS IN DT NN .\nThe bus station is a major hub for vehicles traveling to and from the mostly Shi'ite cities in the south of the country .\tDT NN NN VBZ DT JJ NN IN NNS VBG TO CC IN DT RB JJ NNS IN DT NN IN DT NN .\nIn August , three car bombs exploded at the station , killing more than 40 people .\tIN NNP , CD NN NNS VBD IN DT NN , VBG JJR IN CD NNS .\nSuicide attacks have been on the rise ahead of crucial national elections in Iraq next Thursday .\tNN NNS VBP VBN IN DT NN RB IN JJ JJ NNS IN NNP JJ NNP .\nThe al-Qaida in Iraq terrorist group has claimed responsibility for several of the large attacks .\tDT NNP IN NNP JJ NN VBZ VBN NN IN NN IN DT JJ NNS .\nGrieving families in northern Iraq have canceled plans for a mass funeral for dozens of suicide bomb victims because of concerns it would be attacked .\tVBG NNS IN JJ NNP VBP VBN NNS IN DT NN NN IN NNS IN NN NN NNS IN IN NNS PRP MD VB VBN .\nReligious leaders say families and politicians agreed to hold private funerals across the city of Mosul , Friday .\tJJ NNS VBP NNS CC NNS VBD TO VB JJ NNS IN DT NN IN NNP , NNP .\nThe decision came as a mortar round landed near a Shi'ite mosque where a suicide bomber blew himself up Thursday , killing 47 people and wounding more than 80 others .\tDT NN VBD IN DT NN NN VBD IN DT NNP NN WRB DT NN NN VBD PRP RP NNP , VBG CD NNS CC VBG JJR IN CD NNS .\nOn the political front , Iraq 's main Shi'ite alliance , which swept the January 30 elections , was finalizing a deal with Kurdish leaders to form a coalition ahead of the new parliament 's first session next Wednesday .\tIN DT JJ NN , NNP POS JJ NNP NN , WDT VBD DT NNP CD NNS , VBD VBG DT NN IN JJ NNS TO VB DT NN RB IN DT JJ NN POS JJ NN JJ NNP .\nMeanwhile , a Polish newspaper quoted Defense Minister Jerzy Szmajdzinski as saying Poland will withdraw several hundred of its troops from Iraq in July .\tRB , DT JJ NN VBN NNP NNP NNP NNP IN VBG NNP MD VB JJ CD IN PRP$ NNS IN NNP IN NNP .\nThe price of oil hit another new record Friday - $ 147 a barrel .\tDT NN IN NN VBD DT JJ NN NNP IN $ CD DT NN .\nU.S. airlines are lightening their loads by cutting back on luxuries that weigh down airplanes .\tNNP NNS VBP VBG PRP$ NNS IN VBG RP IN NNS WDT VBP RP NNS .\nMeanwhile , the U.S. Congress is considering proposed laws that some say would help stabilize the price of oil .\tRB , DT NNP NNP VBZ VBG VBN NNS IN DT VBP MD VB VB DT NN IN NN .\nVOA 's Carolyn Presutti reports .\tNNP POS NNP NNP VBZ .\nHundreds of Afghan students have held a protest over an American magazine report that copies of the Koran were desecrated at the U.S. jail in Guantanamo Bay , Cuba .\tNNS IN JJ NNS VBP VBN DT NN IN DT JJ NN NN IN NNS IN DT NNP VBD VBN IN DT NNP NN IN NNP NNP , NNP .\nThe students marched through the eastern city of Jalalabad Tuesday chanting ' Death to America ' and burning an effigy of President Bush .\tDT NNS VBD IN DT JJ NN IN NNP NNP VBG `` NN TO NNP `` CC VBG DT NN IN NNP NNP .\nA recent edition of U.S. Newsweek magazine reports that in an effort to rattle imprisoned terrorism suspects , American interrogators placed Korans on toilets and in one case flushed one of the holy books down the toilet .\tDT JJ NN IN NNP NNP NN VBZ IN IN DT NN TO VB JJ NN NNS , JJ NNS VBD NNS IN NNS CC IN CD NN VBD CD IN DT JJ NNS IN DT NN .\nThe government of neighboring Pakistan has called for an inquiry into the matter .\tDT NN IN VBG NNP VBZ VBN IN DT NN IN DT NN .\nThe United States is holding more than 500 people at the U.S. naval base in Guantanamo Bay , many of them al-Qaida and Taleban suspects captured following the September 11 , 2001 attacks on America .\tDT NNP NNPS VBZ VBG JJR IN CD NNS IN DT NNP JJ NN IN NNP NNP , NN IN PRP NNP CC NNP NNS VBN VBG DT NNP CD , CD NNS IN NNP .\nA U.S. rights organization says a group of jailed Burmese activists are staging a hunger strike to demand medical treatment for an injured colleague .\tDT NNP NNS NN VBZ DT NN IN JJ JJ NNS VBP VBG DT NN NN TO VB JJ NN IN DT JJ NN .\nThe Washington-based U.S. Campaign for Burma says 41 detained pro-democracy activists have been on a hunger strike since August 30 .\tDT JJ NNP NN IN NNP VBZ CD VBD JJ NNS VBP VBN IN DT NN NN IN NNP CD .\nIt says they are demanding treatment for another jailed activist whose leg was broken during his arrest by Burmese police .\tPRP VBZ PRP VBP VBG NN IN DT JJ NN WP$ NN VBD VBN IN PRP$ NN IN JJ NNS .\nThe rights group also is calling on Burma 's military government to give Red Cross workers access to the prisoners .\tDT NNS NN RB VBZ VBG IN NNP POS JJ NN TO VB NNP NNP NNS NN TO DT NNS .\nAuthorities have barred the International Committee of the Red Cross from Burmese prisons since December 2005 .\tNNS VBP VBN DT NNP NNP IN DT NNP NNP IN JJ NNS IN NNP CD .\nBurma 's opposition says police have arrested more than 100 activists in a crackdown on recent protests around the country .\tNNP POS NN VBZ NNS VBP VBN JJR IN CD NNS IN DT NN IN JJ NNS IN DT NN .\nThe government puts the figure at around 50 .\tDT NN VBZ DT NN IN IN CD .\nBurmese activists have held a series of rare public demonstrations in recent weeks to protest the government 's decision to sharply increase the price of fuel .\tJJ NNS VBP VBN DT NN IN JJ JJ NNS IN JJ NNS TO VB DT NN POS NN TO RB VB DT NN IN NN .\nMexican authorities are investigating an explosion at an oil pipeline in Puebla State that killed at least 28 people , including at least 12 children .\tJJ NNS VBP VBG DT NN IN DT NN NN IN NNP NNP WDT VBD IN JJS CD NNS , VBG IN JJS CD NNS .\nOfficials say the blast may have been set off by thieves trying to steal crude oil , but have not ruled out a possible mechanical malfunction .\tNNS VBP DT NN MD VB VBN VBN RP IN NNS VBG TO VB JJ NN , CC VBP RB VBN IN DT JJ JJ NN .\nPuebla state officials described the scene in the town of San Martin Texmelucan as ' rivers of fire in the streets . '\tNNP NN NNS VBD DT NN IN DT NN IN NNP NNP NNP IN `` NNS IN NN IN DT NNS . ``\nAt least 30 homes were destroyed and dozens more damaged , forcing people to flee for their lives .\tIN JJS CD NNS VBD VBN CC NNS RBR JJ , VBG NNS TO VB IN PRP$ NNS .\nMore than 50 people were injured .\tJJR IN CD NNS VBD VBN .\nThe state-owned Pemex oil company said the pipeline was carrying crude oil under high pressure .\tDT JJ NNP NN NN VBD DT NN VBD VBG JJ NN IN JJ NN .\nFuel theft is rampant in the area , with hundreds of millions of dollars lost each year .\tNN NN VBZ JJ IN DT NN , IN NNS IN NNS IN NNS VBN DT NN .\nAmerican gymnast Paul Hamm has announced that he will not be able to compete at the Beijing Olympics and defend his men 's all-around title .\tJJ NN NNP NNP VBZ VBN IN PRP MD RB VB JJ TO VB IN DT NNP NNPS CC VB PRP$ NNS POS JJ NN .\nHamm officially notified USA Gymnastics and the U.S. Olympic Committee on Monday that he is withdrawing from the team .\tNNP RB VBD NNP NNP CC DT NNP NNP NNP IN NNP IN PRP VBZ VBG IN DT NN .\nHe said his right hand , which he broke at the national championships in May , had not healed enough for him to compete .\tPRP VBD PRP$ JJ NN , WDT PRP VBD IN DT JJ NNS IN NNP , VBD RB VBN RB IN PRP TO VB .\nHamm also hurt his rotator cuff in an accelerated recovery effort designed to get him ready for the Beijing Games .\tNNP RB VBD PRP$ NN NN IN DT JJ NN NN VBN TO VB PRP JJ IN DT NNP NNPS .\nThe 25-year-old Hamm decided it would be better for the team to take a fully healthy gymnast to Beijing in his place .\tDT JJ NNP VBD PRP MD VB JJR IN DT NN TO VB DT RB JJ NN TO NNP IN PRP$ NN .\nThe loss is a blow to the American squad 's medal hopes .\tDT NN VBZ DT NN TO DT NNP NN POS JJ NNS .\nHamm had been expected to participate in all six events in team qualifying and probably all six in the team finals as well .\tNNP VBD VBN VBN TO VB IN DT CD NNS IN NN VBG CC RB DT CD IN DT NN NNS RB RB .\nOne of three alternates will take Hamm 's spot in Beijing .\tCD IN CD NNS MD VB NNP POS NN IN NNP .\nUkrainian officials say they are considering imposition of a quarantine throughout the country 's Crimean Peninsula after a British laboratory confirmed that the bird flu in the area is a variety deadly to humans .\tJJ NNS VBP PRP VBP VBG NN IN DT NN IN DT NN POS JJ NNP IN DT JJ NN VBD IN DT NN NN IN DT NN VBZ DT NN JJ TO NNS .\nAgriculture Ministry spokesman , Oleksander Horobets , says the British laboratory confirmed that the virus is the deadly H5N1 strain that has killed more than 70 people in East Asia since 2003 .\tNNP NNP NN , NNP NNPS , VBZ DT JJ NN VBD IN DT NN VBZ DT JJ NNP NN WDT VBZ VBN JJR IN CD NNS IN NNP NNP IN CD .\nHe said authorities in the next few days will consider further measures .\tPRP VBD NNS IN DT JJ JJ NNS MD VB JJ NNS .\nPresident Viktor Yushchenko declared a state of emergency after the virus was first detected in northeastern Crimea earlier this month and then spread to at least 15 villages .\tNNP NNP NNP VBD DT NN IN NN IN DT NN VBD RB VBN IN JJ NNP RBR DT NN CC RB VBD TO IN JJS CD NNS .\nAuthorities have destroyed more than 60,000 domestic birds despite strong opposition from villagers who depend on them for food .\tNNS VBP VBN JJR IN CD JJ NNS IN JJ NN IN NNS WP VBP IN PRP IN NN .\nThe poultry are thought to have contracted the virus from migrating wild birds that travel by the millions over the area .\tDT NN VBP VBN TO VB VBN DT NN IN VBG JJ NNS IN NN IN DT NNS IN DT NN .\nPakistani authorities say a bomb blast at a Shi'ite mosque in the North West Frontier Province has killed four people and wounded at least three others .\tJJ NNS VBP DT NN NN IN DT NNP NN IN DT NNP NNP NNP NNP VBZ VBN CD NNS CC VBN IN JJS CD NNS .\nPolice say the bomb went off Monday as worshipers were leaving the mosque in Dera Ismail Khan after evening prayers .\tNNS VBP DT NN VBD RB NNP IN NNS VBD VBG DT NN IN NNP NNP NNP IN NN NNS .\nThe bomb destroyed the mosque 's front wall and damaged its dome .\tDT NN VBD DT NN POS NN NN CC VBD PRP$ NN .\nPolice cordoned off the area as people searched the rubble for survivors .\tNNS VBD RP DT NN IN NNS VBD DT NN IN NNS .\nNo one has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nDera Ismail Khan has a history of sectarian violence .\tNNP NNP NNP VBZ DT NN IN JJ NN .\nLast month , gunmen killed at least six Shi'ite Muslims in two suspected sectarian attacks in the city .\tJJ NN , NNS VBD IN JJS CD NNP NNPS IN CD JJ JJ NNS IN DT NN .\nPakistan has a history of violence between the majority Sunni and minority Shi'ite Muslims .\tNNP VBZ DT NN IN NN IN DT NN NNP CC NN NNP NNPS .\nThe communities generally coexist peacefully , but militants from both sides have attacked each other since the 1980s , killing thousands of people .\tDT NNS RB VBP RB , CC NNS IN DT NNS VBP VBN DT NN IN DT NNS , VBG NNS IN NNS .\nEnvironment ministers from haze-hit Southeast Asian nations are gathering in Indonesia to discuss ways to combat annual blazes that create a choking cloud of smoke over the region .\tNN NNS IN JJ JJ JJ NNS VBP VBG IN NNP TO VB NNS TO VB JJ NNS WDT VBP DT VBG NN IN NN IN DT NN .\nMinisters from Indonesia , Singapore , Malaysia , Thailand and Brunei are meeting Friday in the Indonesian town of Pekanbara on Sumatra island , one of the worst areas hit by haze each year .\tNNS IN NNP , NNP , NNP , NNP CC NNP VBP VBG NNP IN DT JJ NN IN NNP IN NNP NN , CD IN DT JJS NNS VBN IN NN DT NN .\nJakarta said Thursday that it would sign a regional treaty to boost cooperation in tackling the problem .\tNNP VBD NNP IN PRP MD VB DT JJ NN TO VB NN IN VBG DT NN .\nPresident Susilo Bambang Yudhyono apologized earlier this week for the smoke that has blanketed the region .\tNNP NNP NNP NNP VBD RBR DT NN IN DT NN WDT VBZ VBN DT NN .\nMalaysia , Singapore and other regional neighbors have been calling on Indonesia to take serious action against the fires , lit each year by plantation companies and farmers to clear land .\tNNP , NNP CC JJ JJ NNS VBP VBN VBG IN NNP TO VB JJ NN IN DT NNS , NN DT NN IN NN NNS CC NNS TO JJ NN .\nThe haze hit its worst levels from 1997 to 1998 , costing the Southeast Asian region $ 9 billion in losses from declines in tourism and business activities .\tDT NN VBD PRP$ JJS NNS IN CD TO CD , VBG DT JJ JJ NN $ CD CD IN NNS IN NNS IN NN CC NN NNS .\nJordan 's King Abdullah says his country is seeking its own nuclear energy program .\tNNP POS NNP NNP VBZ PRP$ NN VBZ VBG PRP$ JJ JJ NN NN .\nIn an interview with Israel 's Haaretz newspaper Friday , King Abdullah said Jordan wants nuclear power for peaceful purposes and has been discussing plans with the West .\tIN DT NN IN NNP POS NNP NN NNP , NNP NNP VBD NNP VBZ JJ NN IN JJ NNS CC VBZ VBN VBG NNS IN DT NNP .\nIn response to a question about Iran 's nuclear program , King Abdullah said that Jordan had previously advocated a nuclear-free Middle East , but he said ' the rules have changed ' throughout the region .\tIN NN TO DT NN IN NNP POS JJ NN , NNP NNP VBD IN NNP VBD RB VBN DT JJ NNP NNP , CC PRP VBD `` DT NNS VBP VBN `` IN DT NN .\nHe also noted that Egypt and the Gulf Cooperation Council have begun looking into nuclear programs .\tPRP RB VBD IN NNP CC DT NNP NNP NNP VBP VBN VBG IN JJ NNS .\nKing Abdullah said he believes that any country with a nuclear program should conform to international regulations .\tNNP NNP VBD PRP VBZ IN DT NN IN DT JJ NN MD VB TO JJ NNS .\nThe United States and its Western allies say Iran is trying to develop nuclear weapons .\tDT NNP NNPS CC PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS .\nTehran denies the charges .\tNNP VBZ DT NNS .\nA Los Angeles judge has ruled that Phil Spector 's ex-girlfriend may testify that he twice pointed guns at her head .\tDT NNP NNP NN VBZ VBN IN NNP NNP POS NN MD VB IN PRP RB VBD NNS IN PRP$ NN .\nThe April 10 ruling means that jurors at the music producer 's murder trial will hear that Spector has twice before engaged in what prosecutors allege are strikingly similar gun incidents .\tDT NNP CD NN VBZ IN NNS IN DT NN NN POS NN NN MD VB IN NNP VBZ RB RB VBN IN WP NNS VBP VBP RB JJ NN NNS .\nPhil Spector 's lawyers unsuccessfully attempted to bar the testimony of Devra Robitaille , his ex-girlfriend and employee .\tNNP NNP POS NNS RB VBD TO VB DT NN IN NNP NNP , PRP$ NN CC NN .\nThey claimed her evidence , citing incidents from the 1970s and '80s , was irrelevent and would delay the start of the trial .\tPRP VBD PRP$ NN , VBG NNS IN DT NNS CC NNS , VBD JJ CC MD VB DT NN IN DT NN .\nOpening statments in the case are expected to begin in late April or early May .\tVBG NNS IN DT NN VBP VBN TO VB IN JJ NNP CC JJ NNP .\nPhil Spector , a pop music producer famed for his ' wall of sound ' technique , is accused of the fatal 2003 shooting of actress Lana Clarkson .\tNNP NNP , DT NN NN NN VBN IN PRP$ `` NN IN NN `` NN , VBZ VBN IN DT JJ CD NN IN NN NNP NNP .\nHe has pleaded innocent , saying she committed suicide .\tPRP VBZ VBN JJ , VBG PRP VBD NN .\nAustrian alpine skier Benjamin Raich has padded his lead atop the season 's overall standings by winning a World Cup super-combined event in Wengen , Switzerland .\tJJ NN NN NNP NNP VBZ VBN PRP$ NN IN DT NN POS JJ NNS IN VBG DT NNP NNP JJ NN IN NNP , NNP .\nAmerican Bode Miller was second-fastest in the morning 's downhill run and appeared to have won after the afternoon slalom but was disqualified for straddling a gate just meters from the finish line .\tNNP NNP NNP VBD JJ IN DT NN POS NN NN CC VBD TO VB VBN IN DT NN NN CC VBD VBN IN VBG DT NN RB NNS IN DT NN NN .\nRaich was only 13th after the downhill run , but he skied a fast slalom leg to win with a combined time ( of 2.38.46 ) that was 0.19 seconds faster than Kjetil Andre Aamodt of Norway ( 0.110474537 ) .\tNNP VBD RB JJ IN DT NN NN , CC PRP VBD DT JJ NN NN TO VB IN DT JJ NN LRB IN CD RRB WDT VBD CD NNS RBR IN NNP NNP NNP IN NNP LRB CD RRB .\nItalian Peter Fill posted his first career podium result in a World Cup event , placing third ( 0.110625 ) .\tJJ NNP NNP VBD PRP$ JJ NN NN NN IN DT NNP NNP NN , VBG JJ LRB CD RRB .\nThe super-combi is a new version of the traditional combined race .\tDT NN VBZ DT JJ NN IN DT JJ JJ NN .\nIt adds the times from a shortened downhill run in the morning to a single slalom leg a few hours later .\tPRP VBZ DT NNS IN DT VBN NN NN IN DT NN TO DT JJ NN NN DT JJ NNS RB .\nIraqi police say a suicide car bomber attacked a security checkpoint in central Baghdad Monday , killing at least two people and wounding five others , mostly policemen .\tJJ NNS VBP DT NN NN NN VBD DT NN NN IN JJ NNP NNP , VBG IN JJS CD NNS CC VBG CD NNS , RB NNS .\nThe attack took place near a gate into the Iraqi capital 's heavily fortified Green Zone , where most U.S. and Iraqi government offices are located .\tDT NN VBD NN IN DT NN IN DT JJ NN POS RB VBN NNP NNP , WRB RBS NNP CC JJ NN NNS VBP VBN .\nSeparately , the U.S. military said two American airmen were killed and another wounded in a roadside bomb blast on Sunday near an airbase ( Taji ) north of Baghdad .\tRB , DT NNP NN VBD CD JJ NNS VBD VBN CC DT VBN IN DT NN NN NN IN NNP IN DT NN LRB NNP RRB NN IN NNP .\nIn another development , the trial of ousted leader Saddam Hussein is scheduled to resume Tuesday , but it is not yet clear who will preside in court .\tIN DT NN , DT NN IN JJ NN NNP NNP VBZ VBN TO VB NNP , CC PRP VBZ RB RB JJ WP MD VB IN NN .\nNews reports say senior officials are urging chief judge Rizgar Muhammad Amin to stay on .\tNNP NNS VBP JJ NNS VBP VBG JJ NN NNP NNP NNP TO VB IN .\nThe jurist resigned earlier this month after criticism of his handling of the trial .\tDT NN VBD RBR DT NN IN NN IN PRP$ NN IN DT NN .\nThe tribunal has not yet accepted his resignation .\tDT NN VBZ RB RB VBN PRP$ NN .\nMajor U.S. professional sports organizations are adding a financial boost to relief efforts following Hurricane Katrina .\tNNP NNP JJ NNS NNS VBP VBG DT JJ NN TO NN NNS VBG NNP NNP .\nThe National Football League says it is donating $ 1 million to the American Red Cross to assist hurricane victims in Louisiana , Mississippi and Alabama .\tDT NNP NNP NNP VBZ PRP VBZ VBG $ CD CD TO DT NNP NNP NNP TO VB NN NNS IN NNP , NNP CC NNP .\nThe NFL also says it is working on other ways to assist .\tDT NNP RB VBZ PRP VBZ VBG IN JJ NNS TO VB .\nThe National Basketball Association and Women 's NBA are combining their aid efforts .\tDT NNP NNP NNP CC NNP POS NNP VBP VBG PRP$ NN NNS .\nPlayers are making donations and helping directly with the U.S. Federal Emergency Management Agency .\tNNS VBP VBG NNS CC VBG RB IN DT NNP NNP NNP NNP NNP .\nThe American Red Cross is raising money at WNBA playoff games in Los Angeles and Indiana .\tDT NNP NNP NNP VBZ VBG NN IN NNP NN NNS IN NNP NNP CC NNP .\nMajor League Baseball teams are also gathering money and donating items to help .\tNNP NNP NNP NNS VBP RB VBG NN CC VBG NNS TO VB .\nClothes and non-perishable food items were collected Wednesday at Dodger Stadium in Los Angeles .\tNNS CC JJ NN NNS VBD VBN NNP IN NNP NNP IN NNP NNP .\nCongolese President Joseph Kabila has suspended mining in a volatile region of the eastern Democratic Republic of Congo .\tJJ NNP NNP NNP VBZ VBN NN IN DT JJ NN IN DT JJ JJ NNP IN NNP .\nPresident Kabila ordered the suspension during a visit to the mining hub town of Walikale , reportedly to try to clean up the sector and weed out rebel groups fueling conflict there .\tNNP NNP VBD DT NN IN DT NN TO DT NN NN NN IN NNP , RB TO VB TO VB RP DT NN CC VBD RP JJ NNS VBG NN RB .\nMore than 240 people were raped near Walikale during attacks by Rwandan Hutu and Congolese rebels between July 30 and August 3 .\tJJR IN CD NNS VBD VBN IN NNP IN NNS IN JJ NNP CC JJ NNS IN NNP CD CC NNP CD .\nIt was not immediately clear if the president 's ban applied to areas outside of Walikale .\tPRP VBD RB RB JJ IN DT NN POS NN VBD TO NNS IN IN NNP .\nEastern Congo 's provinces are rich in minerals like coltan and cassiterite , which are used by Western companies in the manufacturing of mobile phones and computers .\tNNP NNP POS NNS VBP JJ IN NNS IN NN CC NN , WDT VBP VBN IN JJ NNS IN DT NN IN JJ NNS CC NNS .\nHowever , control over those minerals has fueled persistent conflict between armed militias competing for dominance .\tRB , NN IN DT NNS VBZ VBN JJ NN IN JJ NNS VBG IN NN .\nThe conflict is also fueled by ethnic hatred leftover from the 1994 slaughter of Tutsis in neighboring Rwanda as well as Congo 's civil wars .\tDT NN VBZ RB VBN IN JJ NN VBN IN DT CD NN IN NNP IN VBG NNP RB RB IN NNP POS JJ NNS .\nU.S. military officials in Iraq say American soldiers and Iraqi police have detained more than 50 people during raids in search of insurgents around the city of Baquba , north of Baghdad .\tNNP JJ NNS IN NNP VBP JJ NNS CC JJ NNS VBP VBN JJR IN CD NNS IN NNS IN NN IN NNS IN DT NN IN NNP , NN IN NNP .\nA statement Sunday says a number of weapons were also found during Saturday 's raids , around the towns of Buhriz and Hib Hib .\tDT NN NNP VBZ DT NN IN NNS VBD RB VBN IN NNP POS NNS , IN DT NNS IN NNP CC NNP NNP .\nElsewhere Saturday , at least 10 Iraqis and a U.S. Marine were killed in several insurgent attacks across the country .\tRB NNP , IN JJS CD NNS CC DT NNP NN VBD VBN IN JJ JJ NNS IN DT NN .\nIn another development , Dinesh Dharmendra Rajaratnam , a Sri Lankan truck driver set free by Iraqi militants last week after he was kidnapped in October , returned home Sunday , where he was reunited with his family .\tIN DT NN , NNP NNP NNP , DT NNP NNP NN NN VBN JJ IN JJ NNS JJ NN IN PRP VBD VBN IN NNP , VBD NN NNP , WRB PRP VBD VBN IN PRP$ NN .\nPakistan has successfully tested a surface-to-surface missile with a range of 2,500 kilometers .\tNNP VBZ RB VBN DT JJ NN IN DT NN IN CD NNS .\nIn a military statement Saturday , the South Asian country said the test was the second for the Hatf Six missile , which was earlier tested in March of 2005 .\tIN DT JJ NN NNP , DT NNP NNP NN VBD DT NN VBD DT JJ IN DT NNP CD NN , WDT VBD RB VBN IN NNP IN CD .\nPrime Minister Shaukat Aziz witnessed the test , which was carried out at an undisclosed location .\tNNP NNP NNP NNP VBD DT NN , WDT VBD VBN RP IN DT JJ NN .\nAziz congratulated the scientists , engineers and the technical staff of Pakistan 's Strategic Organization .\tNNP VBD DT NNS , NNS CC DT JJ NN IN NNP POS NNP NNP .\nThe military statement said Hatf Six is Pakistan 's longest range ballistic missile system and can carry nuclear and conventional warheads with great accuracy .\tDT JJ NN VBD NNP CD VBZ NNP POS JJS NN JJ NN NN CC MD VB JJ CC JJ NNS IN JJ NN .\nRegional rivals Pakistan and India have routinely conducted missile tests since they both conducted underground nuclear tests in 1998 .\tJJ NNS NNP CC NNP VBP RB VBN NN NNS IN PRP DT VBD JJ JJ NNS IN CD .\nThe U.S. defense secretary is in Macedonia , where he will participate in a meeting of the region 's defense ministers .\tDT NNP NN NN VBZ IN NNP , WRB PRP MD VB IN DT NN IN DT NN POS NN NNS .\nRobert Gates arrived Tuesday in the southwestern town of Ohrid for the annual meeting of the Southeast Europe Defense Ministers .\tNNP NNP VBD NNP IN DT JJ NN IN NNP IN DT JJ NN IN DT NNP NNP NNP NNP .\nHe will attend an informal meeting of NATO defense officials in the Hungarian capital , Budapest , on Thursday and Friday .\tPRP MD VB DT JJ NN IN NNP NN NNS IN DT JJ NN , NNP , IN NNP CC NNP .\nMacedonia is a candidate for NATO membership , but alliance member Greece has blocked Macedonia 's bid because Macedonia shares its name with a Greek province .\tNNP VBZ DT NN IN NNP NN , CC NN NN NNP VBZ VBN NNP POS NN IN NNP VBZ PRP$ NN IN DT JJ NN .\nGates arrived today from Kosovo , the Serbian province that declared independence in February .\tNNP VBD NN IN NNP , DT JJ NN WDT VBD NN IN NNP .\nIn the capital , Pristina , Gates reaffirmed U.S. support for Kosovo 's territorial integrity and vowed to maintain a U.S. military presence there until at least 2009 .\tIN DT NN , NNP , NNP VBD NNP NN IN NNP POS JJ NN CC VBD TO VB DT NNP JJ NN RB IN IN JJS CD .\nSecretary Gates is the most senior U.S. official to visit Kosovo since it declared independence .\tNNP NNP VBZ DT RBS JJ NNP NN TO VB NNP IN PRP VBD NN .\nMore than 1,000 people gathered in Istanbul Saturday to protest attacks by separatist Kurdish rebels in southeast Turkey .\tJJR IN CD NNS VBD IN NNP NNP TO VB NNS IN JJ JJ NNS IN JJ NNP .\nDemonstrators walked silently through the streets of the capital carrying Turkish flags and banners calling for an end to terror .\tNNS VBD RB IN DT NNS IN DT NN VBG JJ NNS CC NNS VBG IN DT NN TO NN .\nThe marchers were responding to a call by the Turkish military for mass opposition to the attacks by the Kurdistan Workers Party , known as the PKK .\tDT NNS VBD VBG TO DT NN IN DT JJ NN IN NN NN TO DT NNS IN DT NNP NNP NNP , VBN IN DT NNP .\nThe Turkish government , along with the United States and the European Union , consider the Kurdish group a terrorist organization .\tDT JJ NN , IN IN DT NNP NNPS CC DT NNP NNP , VBP DT NNP NN DT JJ NN .\nThe PKK has been fighting for autonomy since 1984 and an estimated 30-thousand people have died in the violence .\tDT NNP VBZ VBN VBG IN NN IN CD CC DT JJ JJ NNS VBP VBN IN DT NN .\nUnited Nations Secretary-General Kofi Annan has strongly condemned the killing of an African Union interpreter in the Kalma refugee camp in Sudan 's Darfur region .\tNNP NNP NNP NNP NNP VBZ RB VBN DT NN IN DT NNP NNP NN IN DT NNP NN NN IN NNP POS NNP NN .\nOn Monday , the top U.N. humanitarian official Jan Egeland fled the camp when a large group of demonstrators asking for protection from peacekeepers turned violent .\tIN NNP , DT JJ NNP JJ NN NNP NNP VBD DT NN WRB DT JJ NN IN NNS VBG IN NN IN NNS VBD JJ .\nThe U.N. group fled , but a translator was later killed by the angry mob .\tDT NNP NN VBD , CC DT NN VBD RB VBN IN DT JJ NN .\nIn a statement issued Tuesday , Mr. Annan also criticized other recent attacks on humanitarian groups working in Darfur and Chad , including a U.N. staff member who was shot and critically wounded last week in eastern Chad .\tIN DT NN VBN NNP , NNP NNP RB VBD JJ JJ NNS IN JJ NNS VBG IN NNP CC NNP , VBG DT NNP NN NN WP VBD VBN CC RB VBN JJ NN IN JJ NNP .\nSecretary of State Condoleezza Rice is scheduled to appear at the U.N. Security Council today to call for speeding up the deployment of peacekeepers to the Darfur region .\tNNP IN NNP NNP NNP VBZ VBN TO VB IN DT NNP NNP NNP NN TO VB IN VBG RP DT NN IN NNS TO DT NNP NN .\nSudan is under pressure to allow the United Nations to take over peacekeeping efforts from the African Union .\tNNP VBZ IN NN TO VB DT NNP NNPS TO VB RP VBG NNS IN DT NNP NNP .\nElection officials in Afghanistan say they have dismissed some 50 employees for suspected fraud in last month 's legislative elections .\tNN NNS IN NNP VBP PRP VBP VBN DT CD NNS IN JJ NN IN JJ NN POS JJ NNS .\nChief of operations for the joint U.N.-Afghan election commission , Richard Atwood , says more than 650 ballot boxes - or about three percent of votes - have been taken out of the counting process because of suspicions they were stuffed .\tNNP IN NNS IN DT JJ JJ NN NN , NNP NNP , VBZ JJR IN CD NN NNS : CC IN CD NN IN NNS : VBP VBN VBN IN IN DT NN NN IN IN NNS PRP VBD VBN .\nBut Mr. Atwood ruled out a recount , saying the fraud was not widespread and does not affect the integrity of the election .\tCC NNP NNP VBD RP DT NN , VBG DT NN VBD RB JJ CC VBZ RB VB DT NN IN DT NN .\nAccusations of irregularities in the count of the September 18 vote sparked demonstrations across the country .\tNNS IN NNS IN DT NN IN DT NNP CD NN VBD NNS IN DT NN .\nMeanwhile , human rights advocates warned that many of the winning candidates have links to armed groups , and that at least two former members of the Taleban have been elected to parliament .\tRB , JJ NNS NNS VBD IN NN IN DT JJ NNS VBP NNS TO JJ NNS , CC IN IN JJS CD JJ NNS IN DT NNP VBP VBN VBN TO NN .\nCuba has officially ended circulation of the U.S. dollar , a move Cuban leader Fidel Castro says is in response to tightening U.S. sanctions .\tNNP VBZ RB VBN NN IN DT NNP NN , DT NN JJ NN NNP NNP VBZ VBZ IN NN TO VBG NNP NNS .\nThe ban on the dollar went into effect Monday , preventing hotels , stores and restaurants from using the currency .\tDT NN IN DT NN VBD IN NN NNP , VBG NNS , NNS CC NNS IN VBG DT NN .\nThose business will now only accept a ' convertible peso ' which has a face value equal to the dollar , but no value internationally .\tDT NN MD RB RB VB DT `` JJ NN `` WDT VBZ DT NN NN JJ TO DT NN , CC DT NN RB .\nMr. Castro announced the dollar ban two weeks ago .\tNNP NNP VBD DT NN NN CD NNS RB .\nThe Cuban government has also encouraged Cubans living abroad to send money to their relatives in other currency , such as British pounds or Euros .\tDT JJ NN VBZ RB VBN NNS VBG RB TO VB NN TO PRP$ NNS IN JJ NN , JJ IN JJ NNS CC NNS .\nCuba legalized the dollar in 1993 in the face of an economic crisis sparked by the collapse of the Soviet Union .\tNNP VBD DT NN IN CD IN DT NN IN DT JJ NN VBN IN DT NN IN DT NNP NNP .\nIn many rural areas of North America , cowboy churches are attracting people that might shy away from traditional Christian churches .\tIN JJ JJ NNS IN NNP NNP , NN NNS VBP VBG NNS WDT MD VB RB IN JJ JJ NNS .\nThese religious gatherings are generally held during the week and feature a very casual style .\tDT JJ NNS VBP RB VBN IN DT NN CC VB DT RB JJ NN .\nFor producer Yi Suli , Elaine Lu has more on one cowboy church in North Carolina .\tIN NN NNP NNP , NNP NNP VBZ RBR IN CD NN NN IN NNP NNP .\nAnother tropical storm has formed in the Atlantic Ocean , one day before the busiest and costliest Atlantic hurricane season on record officially comes to a close .\tDT JJ NN VBZ VBN IN DT NNP NNP , CD NN IN DT JJS CC JJS JJ NN NN IN NN RB VBZ TO DT NN .\nU.S. forecasters say Tropical Storm Epsilon took shape Tuesday and was slowly moving westward over the central Atlantic Ocean .\tNNP NNS VBP JJ NN NNP VBD NN NNP CC VBD RB VBG RB IN DT JJ NNP NNP .\nAt last report , the storm was nearly 1,300 kilometers east of Bermuda .\tIN JJ NN , DT NN VBD RB CD NNS NN IN NNP .\nOfficials say Epsilon is not expected to directly affect Bermuda , but they warn that dangerous surf conditions are possible in the next day or two .\tNNS VBP NNP VBZ RB VBN TO RB VB NNP , CC PRP VBP IN JJ NN NNS VBP JJ IN DT JJ NN CC CD .\nThis year , an unprecedented 26 tropical storms have raged in the Atlantic since the season began on June first .\tDT NN , DT JJ CD JJ NNS VBP VBN IN DT NNP IN DT NN VBD IN NNP RB .\nHalf of those strengthened into hurricanes .\tNN IN DT VBN IN NNS .\nThe busy season meant forecasters exhausted their list of names , forcing them to use the Greek alphabet to name storms for the first time .\tDT JJ NN VBD NNS VBD PRP$ NN IN NNS , VBG PRP TO VB DT NNP NN TO VB NNS IN DT JJ NN .\nThey also warn the next hurricane season could be just as bad .\tPRP RB VBP DT JJ NN NN MD VB RB IN JJ .\nPolice in Mexico say they have found nine bodies - seven men and two women - buried near the drug-smuggling hub of Ciudad Juarez , just across the U.S. border .\tNNS IN NNP VBP PRP VBP VBN CD NNS IN CD NNS CC CD NNS IN VBN IN DT JJ NN IN NNP NNP , RB IN DT NNP NN .\nInvestigators say they have not ruled out finding more bodies at the site .\tNNS VBP PRP VBP RB VBN IN VBG JJR NNS IN DT NN .\nThousands of soldiers and federal police are posted around Juarez in an effort to quell violence involving warring drug gangs .\tNNS IN NNS CC JJ NNS VBP VBN IN NNP IN DT NN TO VB NN VBG VBG NN NNS .\nThe cartels are fighting for control of trafficking routes into the United States .\tDT NNS VBP VBG IN NN IN VBG NNS IN DT NNP NNPS .\nThe turf wars have turned Juarez into Mexico 's most violent city .\tDT NN NNS VBP VBN NNP IN NNP POS JJS JJ NN .\nIt is located just across the border from the U.S. city of El~Paso , Texas .\tPRP VBZ VBN RB IN DT NN IN DT NNP NN IN NNP , NNP .\nRescue workers in central China are searching for 59 police trainees who were swept away in a landslide triggered by Typhoon Longwang 's torrential rain .\tNN NNS IN JJ NNP VBP VBG IN CD NNS NNS WP VBD VBN RB IN DT NN VBN IN NNP NNP POS JJ NN .\nChina 's official Xinhua news agency says the police recruits were in two training school barracks in Fuzhou , Fujian Province late Sunday night when the buildings were swept away .\tNNP POS JJ NNP NN NN VBZ DT NN NNS VBD IN CD NN NN NNS IN NNP , NNP NNP JJ NNP NN WRB DT NNS VBD VBN RB .\nCurrently three people are confirmed dead from the storm .\tRB CD NNS VBP VBN JJ IN DT NN .\nThe typhoon also killed one person in Taiwan before it hit China 's mainland .\tDT NN RB VBD CD NN IN NNP IN PRP VBD NNP POS NN .\nIn a separate development , Xinhua says authorities have evacuated about 13,000 people from their homes in central China along , the Hanjiang River , a tributary of the Yangtze River .\tIN DT JJ NN , NNP VBZ NNS VBP VBN IN CD NNS IN PRP$ NNS IN JJ NNP IN , DT NNP NNP , DT NN IN DT NNP NNP .\nIt says heavy rains in Hubei province have cut off several roads , and more rain is expected in the next two days .\tPRP VBZ JJ NNS IN NNP NN VBP VBN RP JJ NNS , CC JJR NN VBZ VBN IN DT JJ CD NNS .\nPolice in Pakistani-controlled Kashmir say five girls have been killed by a cluster bomb .\tNNS IN JJ NNP VBP CD NNS VBP VBN VBN IN DT NN NN .\nAuthorities say the young girls were playing with the toy-shaped explosive when it went off Friday in Kel village , near the line of control dividing Pakistani and Indian Kashmir .\tNNS VBP DT JJ NNS VBD VBG IN DT JJ NN WRB PRP VBD RB NNP IN NNP NN , IN DT NN IN NN VBG JJ CC NNP NNP .\nOfficials say such cluster bombs were used in large numbers by Indian forces along the line of control before a ceasefire three years ago .\tNNS VBP JJ NN NNS VBD VBN IN JJ NNS IN JJ NNS IN DT NN IN NN IN DT JJ CD NNS RB .\nThey say the Pakistani army has defused many bombs , grenades and toy-shaped bomblets , but that some are still lying in the farm fields .\tPRP VBP DT JJ NN VBZ VBN JJ NNS , NNS CC JJ NNS , CC IN DT VBP RB VBG IN DT NN NNS .\nPakistan and India have a history of bitter relations and fought three wars over Kashmir .\tNNP CC NNP VBP DT NN IN JJ NNS CC VBD CD NNS IN NNP .\nSporadic clashes and shelling along the border ceased following the ceasefire .\tJJ NNS CC VBG IN DT NN VBD VBG DT NN .\nPakistan and India also have started a peace process to resolve the Kashmir conflict .\tNNP CC NNP RB VBP VBN DT NN NN TO VB DT NNP NN .\nTurkey 's parliament has set the dates for a presidential election after an earlier attempt in April to select a new president was blocked .\tNNP POS NN VBZ VBN DT NNS IN DT JJ NN IN DT JJR NN IN NNP TO VB DT JJ NN VBD VBN .\nThe parliament Friday set the first round of voting for August 20 , followed by a second round on August 24 and a third round on August 28 .\tDT NN NNP VBD DT JJ NN IN NN IN NNP CD , VBN IN DT JJ NN IN NNP CD CC DT JJ NN IN NNP CD .\nThe presidency is decided by a vote of parliament members only , not by a nationwide vote of Turkish citizens .\tDT NN VBZ VBN IN DT NN IN NN NNS RB , RB IN DT JJ NN IN JJ NNS .\nIn April , a secularist campaign blocked the Islamist-rooted governing party of Prime Minister Recep Tayyip Erdogan from electing a member of his party as president .\tIN NNP , DT NN NN VBD DT JJ VBG NN IN NNP NNP NNP NNP NNP IN VBG DT NN IN PRP$ NN IN NN .\nTurkey 's newly-elected parliament on Thursday voted overwhelmingly to choose ruling Justice and Development Party member Koksal Toptan , a secular politician , as the new speaker .\tNNP POS JJ NN IN NNP VBD RB TO VB VBG NNP CC NNP NNP NN NNP NNP , DT JJ NN , IN DT JJ NN .\nThe prominent tribe of Jordanian-born terrorist leader Abu Musab al-Zarqawi has published a declaration disowning him .\tDT JJ NN IN JJ JJ NN NNP NNP NNP VBZ VBN DT NN VBG PRP .\nIn a half-page notice printed Sunday in Jordanian newspapers , 57 members of the al-Khalayleh family , including Zarqawi 's brother and cousin , said they are severing all links to the fugitive ' until doomsday . '\tIN DT NN NN VBN NNP IN JJ NNS , CD NNS IN DT NNP NN , VBG NNP POS NN CC NN , VBD PRP VBP VBG DT NNS IN DT NN `` IN NN . ``\nThe family also pledged strong allegiance to Jordan 's King Abdullah , who Zarqawi threatened last week to kill .\tDT NN RB VBD JJ NN TO NNP POS NNP NNP , WP NNP VBD JJ NN TO VB .\nThe family statement was published two days after the al-Qaida in Iraq leader defended the November 9 bombings at three hotels in Amman that killed 59 people .\tDT NN NN VBD VBN CD NNS IN DT NNP IN NNP NN VBD DT NNP CD NNS IN CD NNS IN NNP WDT VBD CD NNS .\nHe also warned of more attacks .\tPRP RB VBD IN JJR NNS .\nThe family statement said anyone who carries out such attacks in Jordan is not Jordanian and has nothing to do with Jordan .\tDT NN NN VBD DT WP VBZ RP JJ NNS IN NNP VBZ RB JJ CC VBZ DT TO VB IN NNP .\nU.S. President Barack Obama is scheduled to meet Tuesday with Spanish Prime Minister Jose Luis Rodriguez Zapatero .\tNNP NNP NNP NNP VBZ VBN TO VB NNP IN JJ NNP NNP NNP NNP NNP NNP .\nThe two leaders are to have a working lunch at the White House and then make statements to reporters .\tDT CD NNS VBP TO VB DT VBG NN IN DT NNP NNP CC RB VB NNS TO NNS .\nLater Tuesday , President Obama , first lady Michelle Obama , Vice President Joe Biden and his wife , Jill Biden , are to attend a concert on the White House South Lawn celebrating Hispanic musical heritage .\tRB NNP , NNP NNP , JJ NN NNP NNP , NNP NNP NNP NNP CC PRP$ NN , NNP NNP , VBP TO VB DT NN IN DT NNP NNP NNP NNP VBG JJ JJ NN .\nThe concert will include a number of well-known Hispanic performers including Gloria Estefan , Marc Anthony , Jose Feliciano , George Lopez and Thalia .\tDT NN MD VB DT NN IN JJ JJ NNS VBG NNP NNP , NNP NNP , NNP NNP , NNP NNP CC NNP .\nThe president is to make brief remarks at the beginning of the concert .\tDT NN VBZ TO VB JJ NNS IN DT NN IN DT NN .\nThe event is to be televised nationally at a later date .\tDT NN VBZ TO VB VBN RB IN DT JJ NN .\nThe incoming administration of U.S. President-elect Barack Obama is assembling a team of advisors and staffers , most of whom worked for the last Democratic administration under former President Bill Clinton .\tDT JJ NN IN NNP NNP NNP NNP VBZ VBG DT NN IN NNS CC NNS , JJS IN WP VBD IN DT JJ JJ NN IN JJ NNP NNP NNP .\nMr. Obama has put together a team of experts to conduct a review of the State , Defense and Treasury Departments .\tNNP NNP VBZ VBN RB DT NN IN NNS TO VB DT NN IN DT NNP , NNP CC NNP NNS .\nThe six team leaders picked for the task all worked under Mr. Clinton .\tDT CD NN NNS VBD IN DT NN DT VBN IN NNP NNP .\nDemocratic officials say Vice President-elect Joe Biden has picked as his chief of staff Ron Klain , who was chief of staff for former Vice President Al Gore .\tJJ NNS VBP NN NNP NNP NNP VBZ VBN IN PRP$ NN IN NN NNP NNP , WP VBD NN IN NN IN JJ NNP NNP NNP NNP .\nBiden and his wife Jill are scheduled to meet outgoing Vice President Dick Cheney Thursday for a tour of the official vice presidential residence in Washington .\tNNP CC PRP$ NN NNP VBP VBN TO VB JJ NNP NNP NNP NNP NNP IN DT NN IN DT JJ NN JJ NN IN NNP .\nThursday 's meeting on the vice presidential transition follows talks Monday between President George Bush and President-elect Obama .\tNNP POS NN IN DT NN JJ NN VBZ NNS NNP IN NNP NNP NNP CC NNP NNP .\nInterpol police in Afghanistan says four Taleban prisoners who escaped from one of Afghanistan 's prisons earlier this year have been recaptured in Bulgaria and Uzbekistan .\tNNP NN IN NNP VBZ CD NNP NNS WP VBD IN CD IN NNP POS NNS RBR DT NN VBP VBN VBN IN NNP CC NNP .\nThe Interpol chief said Monday that the four men were captured last month .\tDT NNP NN VBD NNP IN DT CD NNS VBD VBN JJ NN .\nTwo were captured in Bulgaria and two in Uzbekistan , and they will be sent back to Afghanistan as soon as identification procedures have been completed .\tCD VBD VBN IN NNP CC CD IN NNP , CC PRP MD VB VBN RB TO NNP RB RB IN NN NNS VBP VBN VBN .\nThe four were among seven Taleban inmates who disguised themselves as visitors to escape the high security Pol-e-Charkhi prison on the outskirts of Kabul .\tDT CD VBD IN CD NNP NNS WP VBN PRP IN NNS TO VB DT JJ NN NNP NN IN DT NNS IN NNP .\nThe other three remain at large .\tDT JJ CD VBP IN JJ .\nAt the time of the escape , the prisoners did not wear special uniforms .\tIN DT NN IN DT NN , DT NNS VBD RB VB JJ NNS .\nSo the seven militants duped the guards by marking their hands with a fake ink stamp similar to one used to identify visitors to the jail .\tIN DT CD NNS VBD DT NNS IN VBG PRP$ NNS IN DT JJ NN NN JJ TO CD VBN TO VB NNS TO DT NN .\nRussian President Dmitri Medvedev has sent parliament a draft law on extending the term of the country 's president from four to six years .\tJJ NNP NNP NNP VBZ VBN NN DT NN NN IN VBG DT NN IN DT NN POS NN IN CD CC CD NNS .\nThe Russian leader first made the proposal in his state-of-the-nation address last week .\tDT JJ NN RB VBD DT NN IN PRP$ NN NN JJ NN .\nThe measure also calls for extending the term of the lower house of parliament , the State Duma , from four to five years .\tDT NN RB VBZ IN VBG DT NN IN DT JJR NN IN NN , DT NNP NNP , IN CD CC CD NNS .\nSome Russian news reports raised the possibility the changes would require new presidential elections in Russia .\tDT JJ NN NNS VBD DT NN DT NNS MD VB JJ JJ NNS IN NNP .\nThis , they said , would allow former Russian President Vladimir Putin , who now is Russia 's prime minister , to quickly seek to return to the presidency .\tDT , PRP VBD , MD VB JJ JJ NNP NNP NNP , WP RB VBZ NNP POS JJ NN , TO RB VB TO VB TO DT NN .\nBut Russian officials have downplayed the possibility , noting that the changes would not apply to Mr. Medvedev 's current term .\tCC JJ NNS VBP VBN DT NN , VBG IN DT NNS MD RB VB TO NNP NNP POS JJ NN .\nTaiwan says it is asking the United States to clarify recent comments by a top State Department official who indirectly likened the island to a ' landmine ' in U.S.-China relations .\tNNP VBZ PRP VBZ VBG DT NNP NNPS TO VB JJ NNS IN DT JJ NNP NNP NN WP RB VBD DT NN TO DT `` NN `` IN NNP NNS .\nState Department officials were not immediately available to comment on the request .\tNNP NNP NNS VBD RB RB JJ TO VB IN DT NN .\nIn a televised interview this month with U.S. Public Broadcasting , Deputy Secretary of State Richard Armitage was asked where the landmines are in China 's relationship with the United States .\tIN DT JJ NN DT NN IN NNP NNP NNP , NNP NNP IN NNP NNP NNP VBD VBN WRB DT NNS VBP IN NNP POS NN IN DT NNP NNPS .\nHe replied that Taiwan is ' probably the biggest . '\tPRP VBD IN NNP VBZ `` RB DT JJS . ``\nMr. Armitage also repeated the U.S. official policy that recognizes Taiwan as part of China 's territory , and he mentioned the Taiwan Relations Act that requires the United States to keep military forces in the Pacific to deter an attack .\tNNP NNP RB VBD DT NNP NN NN WDT VBZ NNP IN NN IN NNP POS NN , CC PRP VBD DT NNP NNP NNP WDT VBZ DT NNP NNPS TO VB JJ NNS IN DT NNP TO VB DT NN .\nThe interview was broadcast on December 10 , but Mr. Armitage 's remarks were not published on the State Department 's website until Monday .\tDT NN VBD VBN IN NNP CD , CC NNP NNP POS NNS VBD RB VBN IN DT NNP NNP POS NN IN NNP .\nFreed American hostage Jill Carroll , 28 , arrived at Ramstein Air Base in Germany Saturday as she headed home to the United States after 82 days in captivity in Iraq .\tNNP NNP NN NNP NNP , CD , VBD IN NNP NNP NNP IN NNP NNP IN PRP VBD NN TO DT NNP NNPS IN CD NNS IN NN IN NNP .\nThe journalist was released by her abductors Thursday .\tDT NN VBD VBN IN PRP$ NNS NNP .\nCarroll 's father says the video in which she praised her Iraqi captors was made under duress .\tNNP POS NN VBZ DT NN IN WDT PRP VBD PRP$ JJ NNS VBD VBN IN NN .\nJim Carroll says his daughter felt compelled to make statements strongly critical of President Bush in order to be released by her captors .\tNNP NNP VBZ PRP$ NN VBD VBN TO VB NNS RB JJ IN NNP NNP IN NN TO VB VBN IN PRP$ NNS .\nFollowing her release Thursday , her kidnappers released a video , taped before she was set free , in which she praised the Iraqi insurgency and criticized the U.S. war effort .\tVBG PRP$ NN NNP , PRP$ NNS VBD DT NN , VBN IN PRP VBD VBN JJ , IN WDT PRP VBD DT JJ NN CC VBD DT NNP NN NN .\nIndonesian officials say the World Health Organization has confirmed the country 's eighth human death from bird flu .\tJJ NNS VBP DT NNP NNP NNP VBZ VBN DT NN POS JJ JJ NN IN NN NN .\nThe officials said Saturday , tests conducted at a laboratory in Hong Kong show that a 25-year-old woman who died earlier this week had the H5N1 strain of the virus .\tDT NNS VBD NNP , NNS VBN IN DT NN IN NNP NNP VBP IN DT JJ NN WP VBD RBR DT NN VBD DT NNP NN IN DT NN .\nMeanwhile , officials in Ukraine have reported the country 's first outbreak of bird flu in poultry .\tRB , NNS IN NNP VBP VBN DT NN POS JJ NN IN NN NN IN NN .\nThe Agriculture Ministry says the virus was detected in Ukraine 's Crimea peninsula , but it is not known yet if the virus is the strain that is dangerous to humans .\tDT NNP NNP VBZ DT NN VBD VBN IN NNP POS NNP NN , CC PRP VBZ RB VBN RB IN DT NN VBZ DT NN WDT VBZ JJ TO NNS .\nBird flu has killed nearly 70 people in Asia since 2003 , and has also spread among poultry flocks in many European countries .\tNN NN VBZ VBN RB CD NNS IN NNP IN CD , CC VBZ RB VBN IN JJ NNS IN JJ JJ NNS .\nHealth experts fear the virus could mutate into a form that could be easily transmitted between humans and kill millions of people .\tNN NNS VBP DT NN MD VB IN DT NN WDT MD VB RB VBN IN NNS CC VB NNS IN NNS .\nEgypt 's state-run media have predicted an overwhelming victory for incumbent President Hosni Mubarak , based on preliminary election results .\tNNP POS JJ NNS VBP VBN DT JJ NN IN JJ NNP NNP NNP , VBN IN JJ NN NNS .\nNewspapers Friday proclaimed a fifth term for Mr. Mubarak , reporting he won more than 80 percent of the votes in the country 's 26 governorates .\tNNS NNP VBD DT JJ NN IN NNP NNP , VBG PRP VBD RBR IN CD NN IN DT NNS IN DT NN POS CD NNS .\nVoter turnout was low , by some estimates only around 30 percent of the 32 million registered voters , but state media downplayed its significance with editorials praising Mr. Mubarak .\tNNP NN VBD JJ , IN DT NNS RB IN CD NN IN DT CD CD JJ NNS , CC NN NNS VBD PRP$ NN IN NNS VBG NNP NNP .\nThe 77-year-old leader faced nine challengers , including Ayman Nour of the liberal Tomorrow ( Ghad ) Party , who appears to have come in a very distant second , ahead of Noaman Gomaa of the Wafd Party .\tDT JJ NN VBD CD NNS , VBG NNP NNP IN DT JJ NN LRB NNP RRB NNP , WP VBZ TO VB VBN IN DT RB JJ NN , RB IN NNP NNP IN DT NNP NNP .\nIndependent monitors and Western news agencies reported multiple problems with Wednesday 's election , including vote-buying and intimidation .\tJJ NNS CC JJ NN NNS VBD JJ NNS IN NNP POS NN , VBG JJ CC NN .\nBut the election commission rejected a petition from Mr. Nour demanding a revote .\tCC DT NN NN VBD DT NN IN NNP NNP VBG DT NN .\nFinal results are expected by Saturday .\tJJ NNS VBP VBN IN NNP .\nVenezuela 's oil minister has said OPEC countries have reached consensus to cut back crude oil production by one million barrels a day , beginning December first .\tNNP POS NN NN VBZ VBN NNP NNS VBP VBN NN TO VB RB JJ NN NN IN CD CD NNS DT NN , VBG NNP NN .\nOPEC says it is currently producing 28 million barrels per day .\tNNP VBZ PRP VBZ RB VBG CD CD NNS IN NN .\nRafael Ramirez said Friday in a television interview that OPEC oil ministers agree on the cut and will hold a meeting to discuss the mechanics of the cut .\tNNP NNP VBD NNP IN DT NN NN IN NNP NN NNS VBP IN DT NN CC MD VB DT NN TO VB DT NNS IN DT NN .\nAn Opec official said a meeting is expected on October 20 in Qatar .\tDT NNP NN VBD DT NN VBZ VBN IN NNP CD IN NNP .\nRamirez said Venezuela would try to keep the price of oil above $ 55 a barrel .\tNNP VBD NNP MD VB TO VB DT NN IN NN IN $ CD DT NN .\nHe said Venezuela has already implemented a 50,000 barrel per day output reduction .\tPRP VBD NNP VBZ RB VBN DT CD NN IN NN NN NN .\nThe White House announced Saturday that U.S. President Barack Obama will travel to Russia , Italy and Ghana in July .\tDT NNP NNP VBD NNP IN NNP NNP NNP NNP MD VB TO NNP , NNP CC NNP IN NNP .\nMr. Obama will visit Moscow from July 6 to 8 for meetings with Russian President Dmitri Medvedev .\tNNP NNP MD VB NNP IN NNP CD TO CD IN NNS IN JJ NNP NNP NNP .\nThe two leaders are expected to talk about ways to reduce the stockpile of nuclear weapons , cooperate on nonproliferation and resolve differences over a U.S. planned missile defense system in central Europe .\tDT CD NNS VBP VBN TO VB IN NNS TO VB DT NN IN JJ NNS , VB IN NN CC VB NNS IN DT NNP JJ NN NN NN IN JJ NNP .\nThe president will travel to L'Aquila , Italy to attend a G-8 summit of industrialized nations from July 8 to 10 .\tDT NN MD VB TO NNP , NNP TO VB DT JJ NN IN JJ NNS IN NNP CD TO CD .\nPresident Obama and world leaders are expected to discuss the economy , energy , and climate change .\tNNP NNP CC NN NNS VBP VBN TO VB DT NN , NN , CC NN NN .\nMr. Obama will then travel to the sub-Saharan African country of Ghana , where he will visit the city of Accra on July 10 and 11 .\tNNP NNP MD RB VB TO DT JJ JJ NN IN NNP , WRB PRP MD VB DT NN IN NNP IN NNP CD CC CD .\nMr. Obama will meet with Ghanaian President John Atta-Mills to discuss a range of bilateral and regional issues .\tNNP NNP MD VB IN JJ NNP NNP NNP TO VB DT NN IN JJ CC JJ NNS .\nPolice in Afghanistan say an explosion in the capital , Kabul , has killed two policemen and wounded their commander .\tNNS IN NNP VBP DT NN IN DT NN , NNP , VBZ VBN CD NNS CC VBD PRP$ NN .\nOfficials say the commander , Ali Shah Paktiawal , appears to have been the target of Wednesday attack .\tNNS VBP DT NN , NNP NNP NNP , VBZ TO VB VBN DT NN IN NNP NN .\nHe is the head of criminal investigations in the Afghan capital .\tPRP VBZ DT NN IN JJ NNS IN DT JJ NN .\nPaktiawal survived the blast with injuries , but two of his officers died .\tNNP VBD DT NN IN NNS , CC CD IN PRP$ NNS VBD .\nPolice say the bomb exploded when Paktiawal and his team were investigating the deaths of three of their colleagues .\tNNS VBP DT NN VBD WRB NNP CC PRP$ NN VBD VBG DT NNS IN CD IN PRP$ NNS .\nThe three were killed in an overnight attack on a police post in the western outskirts of Kabul .\tDT CD VBD VBN IN DT JJ NN IN DT NN NN IN DT JJ NNS IN NNP .\nA Taliban spokesman claimed responsibility for both attacks .\tDT NNP NN VBD NN IN DT NNS .\nThe World Health Organization ( WHO ) says Indonesia has one of the fastest growing HIV epidemics in Asia .\tDT NNP NNP NNP LRB NNP RRB VBZ NNP VBZ CD IN DT JJS VBG NNP NNS IN NNP .\nThe U.N. body published a report Saturday saying drug users and sex workers account for most of the spread of the virus that causes AIDS .\tDT NNP NN VBD DT NN NNP VBG NN NNS CC NN NNS VBP IN JJS IN DT NN IN DT NN WDT VBZ NNP .\nThe report says HIV has become a particular concern in the remote eastern province of Papua , where infection rates are more than 20 times the national average .\tDT NN VBZ NNP VBZ VBN DT JJ NN IN DT JJ JJ NN IN NNP , WRB NN NNS VBP JJR IN CD NNS DT JJ NN .\nHealth authorities say about two percent of Papua 's population is infected with HIV .\tNNP NNS VBP IN CD NN IN NNP POS NN VBZ VBN IN NNP .\nU.N. officials say Indonesia 's underdeveloped health care system and lack of resources make it difficult for the country to deal with HIV and AIDS .\tNNP NNS VBP NNP POS JJ NN NN NN CC NN IN NNS VBP PRP JJ IN DT NN TO VB IN NNP CC NNP .\nAbout 7,000 AIDS cases have been reported in Indonesia , although the real figure is believed to be much higher .\tIN CD NNP NNS VBP VBN VBN IN NNP , IN DT JJ NN VBZ VBN TO VB RB JJR .\nBrazilian police say they have broken up a smuggling network , involving foreign diplomats from at least five embassies .\tJJ NNS VBP PRP VBP VBN RP DT NN NN , VBG JJ NNS IN IN JJS CD NNS .\nPolice say the foreign envoys used their diplomatic privileges help smuggle items into the country tax free .\tNNS VBP DT JJ NNS VBD PRP$ JJ NNS VBP VB NNS IN DT NN NN JJ .\nThe luxury products such as whiskey and perfumes were sold to the upper class in the capital of Brasilia .\tDT NN NNS JJ IN NN CC NNS VBD VBN TO DT JJ NN IN DT NN IN NNP .\nFederal police said Friday that embassies from three African and two Middle Eastern countries were allegedly part of the ring .\tJJ NNS VBD NNP IN NNS IN CD JJ CC CD NNP NNP NNS VBD RB NN IN DT NN .\nU.S. Vice President Dick Cheney is heading Sunday to the Middle East for visits to Oman , Saudia Arabia , Israel , the West Bank , and Turkey .\tNNP NNP NNP NNP NNP VBZ VBG NNP TO DT NNP NNP IN NNS TO NNP , NNP NNP , NNP , DT NNP NNP , CC NNP .\nU.S officials say Mr. Cheney 's talks will cover Iraq , the situations in Lebanon and Syria , Iran 's rising influnce in the region , violence in Gaza , and soaring gasoline prices in the United States .\tNNP NNS VBP NNP NNP POS NNS MD VB NNP , DT NNS IN NNP CC NNP , NNP POS VBG NN IN DT NN , NN IN NNP , CC VBG NN NNS IN DT NNP NNPS .\nHe is expected to encourage Saudi Arabia to step up diplomatic ties with Iraq .\tPRP VBZ VBN TO VB NNP NNP TO VB RP JJ NNS IN NNP .\nCheney also is expected to encourage Israel and the Palestinians to move forward with a peace deal .\tNNP RB VBZ VBN TO VB NNP CC DT NNS TO VB RB IN DT NN NN .\nIn Turkey , the U.S. vice president is expected to discuss Turkey 's recent incursion against Iraq-based rebels of the Kurdistan Workers Party .\tIN NNP , DT NNP NN NN VBZ VBN TO VB NNP POS JJ NN IN JJ NNS IN DT NNP NNP NNP .\nPope Benedict has marked the start of the new year with a call for protection of the family , which he said is vital for world peace .\tNNP NNP VBZ VBN DT NN IN DT JJ NN IN DT NN IN NN IN DT NN , WDT PRP VBD VBZ JJ IN NN NN .\nIn the homily at his first Mass of 2008 , the pontiff called the family the primary means for assuring peace .\tIN DT NN IN PRP$ JJ NNP IN CD , DT NN VBD DT NN DT JJ NNS IN VBG NN .\nAnd he warned that any negation of family rights threatens the foundations of peace .\tCC PRP VBD IN DT NN IN NN NNS VBZ DT NNS IN NN .\nThe pope has frequently turned to the topic of the traditional family based on marriage between a man and a woman , responding to calls by activists for recognition of same-sex marriage .\tDT NN VBZ RB VBN TO DT NN IN DT JJ NN VBN IN NN IN DT NN CC DT NN , VBG TO NNS IN NNS IN NN IN JJ NN .\nThe Roman Catholic Church celebrates January first as its World Day of Peace .\tDT NNP NNP NNP VBZ NNP RB IN PRP$ NNP NNP IN NNP .\nThe international aid group Doctors Without Borders ( Medecins Sans Frontieres ) says it is outraged by the arrest of its regional head in Sudan over a report accusing Sudanese soldiers and militiamen of rape .\tDT JJ NN NN NNS IN NNS LRB NNP NNP NNP RRB VBZ PRP VBZ VBN IN DT NN IN PRP$ JJ NN IN NNP IN DT NN VBG JJ NNS CC NNS IN NN .\nMonday , officials arrested Paul Foreman and accused him of publishing FALSE information for failing to turn over medical records supporting the report .\tNNP , NNS VBN NNP NNP CC VBD PRP IN VBG JJ NN IN VBG TO VB RP JJ NNS VBG DT NN .\nThat report says some 400 rape victims identified their attackers as soldiers or members of the pro-government militia .\tDT NN VBZ DT CD NN NNS VBD PRP$ NNS IN NNS CC NNS IN DT JJ NN .\nBut Mr. Foreman says he will not violate doctor-patient confidentiality by handing over the documents .\tCC NNP NNP VBZ PRP MD RB VB JJ NN IN VBG IN DT NNS .\nHe has been released on bail , and authorities told him not to leave the country .\tPRP VBZ VBN VBN IN NN , CC NNS VBD PRP RB TO VB DT NN .\nSudan 's Attorney General Mohamed Farid says Mr. Foreman should have submitted the report to the government before publishing it .\tNNP POS NNP NNP NNP NNP VBZ NNP NNP MD VB VBN DT NN TO DT NN IN VBG PRP .\nIf he is found guilty , Mr. Foreman could serve up to three years in prison .\tIN PRP VBZ VBN JJ , NNP NNP MD VB RP TO CD NNS IN NN .\nPresident Bush says the United States must change its habits and reduce its dependence on foreign oil .\tNNP NNP VBZ DT NNP NNPS MD VB PRP$ NNS CC VB PRP$ NN IN JJ NN .\nPresident Bush says the country 's reliance on fossil fuels harms the environment and puts Americans at the mercy of nations that do not enjoy the same freedoms .\tNNP NNP VBZ DT NN POS NN IN JJ NNS VBZ DT NN CC VBZ NNS IN DT NN IN NNS WDT VBP RB VB DT JJ NNS .\nAmerican consumers , for their part , appear to be changing their habits , but they are doing so for more practical reasons .\tJJ NNS , IN PRP$ NN , VBP TO VB VBG PRP$ NNS , CC PRP VBP VBG RB IN JJR JJ NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nIran says Russia is selling Tehran advanced anti-aircraft missiles , but did not say when they will arrive .\tNNP VBZ NNP VBZ VBG NNP JJ JJ NNS , CC VBD RB VB WRB PRP MD VB .\nThe S-300 air defense system has a radar that can track many targets at the same time , and missiles that can hit targets anywhere from just above the treetops to 27 kilometers in the sky .\tDT JJ NN NN NN VBZ DT NN WDT MD VB JJ NNS IN DT JJ NN , CC NNS WDT MD VB NNS RB IN RB IN DT NNS TO CD NNS IN DT NN .\nThe S-300 compliments a shorter-range Russian system sold to Iran earlier .\tDT NNP VBZ DT JJ JJ NN VBN TO NNP RB .\nIran 's announcement that it is upgrading its air defenses was made during a time of international tensions over Iranian nuclear programs that western nations fear could be used to make nuclear weapons .\tNNP POS NN IN PRP VBZ VBG PRP$ NN NNS VBD VBN IN DT NN IN JJ NNS IN JJ JJ NNS IN JJ NNS VBP MD VB VBN TO VB JJ NNS .\nThe United States has never ruled out military action against the suspected nuclear weapons projects , but a recently published U.S. intelligence report said Iran stopped its nuclear weapons program several years ago .\tDT NNP NNPS VBZ RB VBN RP JJ NN IN DT JJ JJ NNS NNS , CC DT RB VBN NNP NN NN VBD NNP VBD PRP$ JJ NNS NN JJ NNS RB .\nIranian President Mohammad Khatami is on an official visit to Venezuela , where he is expected to sign a number of bilateral agreements with President Hugo Chavez .\tJJ NNP NNP NNP VBZ IN DT JJ NN TO NNP , WRB PRP VBZ VBN TO VB DT NN IN JJ NNS IN NNP NNP NNP .\nOil and commercial accords are aimed at strengthening ties between the two nations , both of which have been the focus of criticism from the United States .\tNN CC JJ NNS VBP VBN IN VBG NNS IN DT CD NNS , DT IN WDT VBP VBN DT NN IN NN IN DT NNP NNPS .\nThe Bush administration has been a vocal opponent of Iran 's nuclear program , and of Venezuelan President Chavez 's treatment of the opposition and the media in his country .\tDT NNP NN VBZ VBN DT JJ NN IN NNP POS JJ NN , CC IN JJ NNP NNP POS NN IN DT NN CC DT NNS IN PRP$ NN .\nThe United States is Venezuela 's largest oil customer .\tDT NNP NNPS VBZ NNP POS JJS NN NN .\nPresident Khatami will also attend the inauguration of a tractor assembly plant .\tNNP NNP MD RB VB DT NN IN DT NN NN NN .\nIndia celebrated its 58th Republic Day Friday , with military parades in the nation 's capital and various cities across the country .\tNNP VBD PRP$ JJ NNP NNP NNP , IN JJ NNS IN DT NN POS NN CC JJ NNS IN DT NN .\nSecurity forces were on high alert for suspected insurgent attacks , but there were no reports of violence during the festivities .\tNNP NNS VBD IN JJ NN IN JJ JJ NNS , CC EX VBD DT NNS IN NN IN DT NNS .\nRussian President Vladimir Putin joined Prime Minister Manmohan Singh and President Abdul Kalam as the guest of honor for this year 's celebrations in New Delhi .\tJJ NNP NNP NNP VBD NNP NNP NNP NNP CC NNP NNP NNP IN DT NN IN NN IN DT NN POS NNS IN NNP NNP .\nOn Thursday , New Delhi police said they arrested a suspected militant carrying more than two kilograms of explosives .\tIN NNP , NNP NNP NN VBD PRP VBN DT JJ NN VBG JJR IN CD NNS IN NNS .\nIndia 's Republic Day marks the founding of the Indian republic in 1950 , three years after its independence from Britain .\tNNP POS NNP NNP VBZ DT NN IN DT JJ NN IN CD , CD NNS IN PRP$ NN IN NNP .\nCampaigning has begun for Afghanistan 's first parliamentary polls since the fall of the Taleban in 2001 , amid warnings by a human rights group that female candidates need more protection .\tNN VBZ VBN IN NNP POS JJ JJ NNS IN DT NN IN DT NNP IN CD , IN NNS IN DT JJ NNS NN IN JJ NNS VBP JJR NN .\nOn Wednesday , authorities launched a month of official campaigning featuring free radio or television slots for each of the nearly 6,000 candidates running for the national assembly or for local councils .\tIN NNP , NNS VBD DT NN IN JJ NN VBG JJ NN CC NN NNS IN DT IN DT RB CD NNS VBG IN DT JJ NN CC IN JJ NNS .\nThe campaign will end on September 15 , three days ahead of the September 18 vote .\tDT NN MD VB IN NNP CD , CD NNS RB IN DT NNP CD NN .\nThe polls have already been pushed back twice from last year , and the United Nations has said it could be the most challenging elections the international community has ever organized .\tDT NNS VBP RB VBN VBN RB RB IN JJ NN , CC DT NNP NNP VBZ VBN PRP MD VB DT RBS JJ NNS DT JJ NN VBZ RB VBN .\nHuman Rights Watch says the fairness of the vote will be jeopardized if Afghan and international authorities do not do more to shield the nearly 600 female candidates .\tNNP NNP NNP VBZ DT NN IN DT NN MD VB VBN IN JJ CC JJ NNS VBP RB VB JJR TO VB DT RB CD JJ NNS .\nRussian and Chinese forces are wrapping up the second phase of joint military exercises as they prepare for live-fire drills to begin Tuesday in eastern China 's Shandong Peninsula .\tJJ CC JJ NNS VBP VBG RP DT JJ NN IN JJ JJ NNS IN PRP VBP IN JJ NNS TO VB NNP IN JJ NNP POS NNP NNP .\nNearly 10,000 troops from land , sea , and air forces of both nations are participating in the first-ever large-scale war games between the two countries .\tRB CD NNS IN NN , NN , CC NN NNS IN DT NNS VBP VBG IN DT JJ JJ NN NNS IN DT CD NNS .\nThe China Daily newspaper says the third phase of the eight-day exercise , dubbed ' Peace Mission 2005 , ' will involve firing with live ammunition by warplanes and military vessels as part of an amphibious landing on the Shandong peninsula .\tDT NNP NNP NN VBZ DT JJ NN IN DT JJ NN , VBD `` NNP NNP CD , `` MD VB VBG IN JJ NN IN NNS CC JJ NNS IN NN IN DT JJ NN IN DT NNP NN .\nThe joint maneuvers began in the Russian port city of Vladivostok Thursday .\tDT JJ NNS VBD IN DT JJ JJ NN IN NNP NNP .\nThe United States is not attending as an observer , but says it is closely monitoring the drills .\tDT NNP NNPS VBZ RB VBG IN DT NN , CC VBZ PRP VBZ RB VBG DT NNS .\nA Ugandan official says a massive landslide in eastern Uganda has killed at least 106 people .\tDT JJ NN VBZ DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NNS .\nMinister of State for Disasters Mussa Ecweru told VOA 's Swahili service that 300 people remain missing .\tNNP IN NNP IN NNP NNP NNP VBD NNP POS NNP NN IN CD NNS VBP JJ .\nThe landslide engulfed three villages in the Bududa region near Mount Elgon late on Monday , following more than a week of heavy rain in the area .\tDT NN VBD CD NNS IN DT NNP NN IN NNP NNP RB IN NNP , VBG JJR IN DT NN IN JJ NN IN DT NN .\nPolice and armed forces are taking part in efforts to find survivors .\tNNS CC JJ NNS VBP VBG NN IN NNS TO VB NNS .\nOfficials say the mudslide destroyed homes , markets , schools , and a health clinic .\tNNS VBP DT NN VBD NNS , NNS , NNS , CC DT NN NN .\nFrance says it will conduct a fourth search for additional wreckage of an Air France jet that crashed into the Atlantic last year with 228 people on board .\tNNP VBZ PRP MD VB DT JJ NN IN JJ NN IN DT NNP NNP NN WDT VBD IN DT NNP JJ NN IN CD NNS IN NN .\nThe French Transport Ministry said Thursday that the latest search should begin in February .\tDT JJ NN NNP VBD NNP IN DT JJS NN MD VB IN NNP .\nOfficials were quoted as saying the ' best equipment currently available ' will be used .\tNNS VBD VBN IN VBG DT `` JJS NN RB JJ `` MD VB VBN .\nAir France Flight 447 crashed off Brazil 's coast in June 2009 as it headed to Paris from Rio de Janeiro .\tNNP NNP NNP CD VBD RP NNP POS NN IN NNP CD IN PRP VBD TO NNP IN NNP IN NNP .\nThe initial search found wreckage and bodies , but the flight data recorders , which could provide clues as to what happened to the aircraft , have not been found .\tDT JJ NN VBD NN CC NNS , CC DT NN NNS NNS , WDT MD VB NNS IN TO WP VBD TO DT NN , VBP RB VBN VBN .\nSearch teams looking for the missing recorders called off operations in May after failing to locate them .\tNNP NNS VBG IN DT VBG NNS VBD RP NNS IN NNP IN VBG TO VB PRP .\nThe plane went down in water some 7,000 meters-deep above a mountainous ocean floor .\tDT NN VBD RB IN NN DT CD NN IN DT JJ NN NN .\nA preliminary report concluded that a faulty speed-sensing system may have led to the crash .\tDT JJ NN VBD IN DT JJ JJ NN MD VB VBN TO DT NN .\nProsecutors in Indonesia have asked a panel of judges for the death penalty against an Australian accused of being a mastermind of a drug smuggling ring on the resort island of Bali .\tNNS IN NNP VBP VBN DT NN IN NNS IN DT NN NN IN DT NN VBN IN VBG DT NN IN DT NN VBG NN IN DT NN NN IN NNP .\nThe defendant , Andrew Chan , is one of nine people arrested last April for allegedly trying to smuggle about eight kilograms of heroin out of Bali .\tDT NN , NNP NNP , VBZ CD IN CD NNS VBN JJ NNP IN RB VBG TO VB IN CD NNS IN NN IN IN NNP .\nEarlier this week , prosecutors sought the death penalty for the group 's alleged ringleader Myuran Sukumaran .\tRBR DT NN , NNS VBD DT NN NN IN DT NN POS JJ NN NNP NNP .\nThey have requested life sentences for six other male defendants , and a 20 year prison term for the only female defendant .\tPRP VBP VBN NN NNS IN CD JJ JJ NNS , CC DT CD NN NN NN IN DT JJ JJ NN .\nThe trial is the latest of several high-profile drug cases in Indonesia involving Australians .\tDT NN VBZ DT JJS IN JJ JJ NN NNS IN NNP VBG NNS .\nIndonesia 's Supreme Court recently reinstated a 20-year prison sentence for an Australian Schapelle Corby , convicted of marijuana smuggling .\tNNP POS NNP NNP RB VBD DT JJ NN NN IN DT JJ NNP NNP , VBN IN NN NN .\nThousands of ethnic Albanians have marched through Kosovo 's capital , Pristina , to protest the killing of a police officer last week .\tNNS IN JJ NNS VBP VBN IN NNP POS NN , NNP , TO VB DT NN IN DT NN NN JJ NN .\nThe demonstrators carried photographs of the officer , Triumf Riza , who was shot to death in a parking lot .\tDT NNS VBD NNS IN DT NN , NNP NNP , WP VBD VBN TO NN IN DT NN NN .\nReaction to the shooting has highlighted citizens ' frustration with the high rate of crime in the area .\tNN TO DT NN VBZ VBN NNS POS NN IN DT JJ NN IN NN IN DT NN .\nThe United Nations administrator of Kosovo , Joachim Ruecker , released a statement expressing full support for the demonstrators .\tDT NNP NNPS NN IN NNP , NNP NNP , VBD DT NN VBG JJ NN IN DT NNS .\nHe called the murder of the policeman ' a heinous crime and a terrible tragedy . '\tPRP VBD DT NN IN DT NN `` DT JJ NN CC DT JJ NN . ``\nHe said the outpouring of emotion after Riza 's death is a sign that the people of Kosovo do not accept crime and violence .\tPRP VBD DT NN IN NN IN NNP POS NN VBZ DT NN IN DT NNS IN NNP VBP RB VB NN CC NN .\nKosovo has been under U.N. administration since 1999 .\tNNP VBZ VBN IN NNP NN IN CD .\nUganda 's Health Ministry says the country has confirmed its first case of H1N1 swine flu .\tNNP POS NNP NNP VBZ DT NN VBZ VBN PRP$ JJ NN IN NNP NN NN .\nUgandan health official James Kakooza said Thursday that a 40-year-old British man tested positive for the virus after arriving in Entebbe on June 26 .\tJJ NN NN NNP NNP VBD NNP IN DT JJ JJ NN VBN JJ IN DT NN IN VBG IN NNP IN NNP CD .\nKakooza said the man came from London through Nairobi , Kenya .\tNNP VBD DT NN VBD IN NNP IN NNP , NNP .\nUganda is the seventh sub-Saharan nation to report swine flu cases - along with Kenya , Cape Verde , Ethiopia , Ivory Coast , Mauritius , and South Africa .\tNNP VBZ DT JJ JJ NN TO VB JJ NN NNS : IN IN NNP , NNP NNP , NNP , NNP NNP , NNP , CC NNP NNP .\nThe World Health Organization said that as of Wednesday , 332 people have died from the swine flu virus , and more than 77,000 people have been diagnosed worldwide .\tDT NNP NNP NNP VBD IN IN IN NNP , CD NNS VBP VBN IN DT NN NN NN , CC JJR IN CD NNS VBP VBN VBN NN .\nIn June , the WHO declared an influenza pandemic for the first time in more than 40 years .\tIN NNP , DT NNP VBD DT NN NN IN DT JJ NN IN JJR IN CD NNS .\nThe H1N1 strain of swine flu is a highly contagious new virus that quickly spread around the world this year .\tDT NNP NN IN NN NN VBZ DT RB JJ JJ NN WDT RB VBD IN DT NN DT NN .\nSaudi Arabia has an oil-based economy with strong government controls over major economic activities .\tNNP NNP VBZ DT JJ NN IN JJ NN NNS IN JJ JJ NNS .\nIt possesses about 20 % of the world 's proven petroleum reserves , ranks as the largest exporter of petroleum , and plays a leading role in OPEC .\tPRP VBZ IN CD NN IN DT NN POS JJ NN NNS , VBZ IN DT JJS NN IN NN , CC VBZ DT VBG NN IN NNP .\nThe petroleum sector accounts for roughly 80 % of budget revenues , 45 % of GDP , and 90 % of export earnings .\tDT NN NN NNS IN RB CD NN IN NN NNS , CD NN IN NN , CC CD NN IN NN NNS .\nSaudi Arabia is encouraging the growth of the private sector in order to diversify its economy and to employ more Saudi nationals .\tNNP NNP VBZ VBG DT NN IN DT JJ NN IN NN TO VB PRP$ NN CC TO VB RBR JJ NNS .\nDiversification efforts are focusing on power generation , telecommunications , natural gas exploration , and petrochemical sectors .\tNN NNS VBP VBG IN NN NN , NNS , JJ NN NN , CC NN NNS .\nAlmost 6 million foreign workers play an important role in the Saudi economy , particularly in the oil and service sectors , while Riyadh is struggling to reduce unemployment among its own nationals .\tRB CD CD JJ NNS VBP DT JJ NN IN DT JJ NN , RB IN DT NN CC NN NNS , IN NNP VBZ VBG TO VB NN IN PRP$ JJ NNS .\nSaudi officials are particularly focused on employing its large youth population , which generally lacks the education and technical skills the private sector needs .\tJJ NNS VBP RB VBN IN VBG PRP$ JJ NN NN , WDT RB VBZ DT NN CC JJ NNS DT JJ NN NNS .\nRiyadh has substantially boosted spending on job training and education , most recently with the opening of the King Abdallah University of Science and Technology - Saudi Arabia 's first co-educational university .\tNNP VBZ RB VBN NN IN NN NN CC NN , RBS RB IN DT NN IN DT NNP NNP NNP IN NNP CC NNP : NNP NNP POS JJ JJ NN .\nAs part of its effort to attract foreign investment , Saudi Arabia acceded to the WTO in December 2005 after many years of negotiations .\tIN NN IN PRP$ NN TO VB JJ NN , NNP NNP VBD TO DT NNP IN NNP CD IN JJ NNS IN NNS .\nThe government has begun establishing six ' economic cities ' in different regions of the country to promote foreign investment and plans to spend $ 373 billion between 2010 and 2014 on social development and infrastructure projects to advance Saudi Arabia 's economic development .\tDT NN VBZ VBN VBG CD `` JJ NNS `` IN JJ NNS IN DT NN TO VB JJ NN CC VBZ TO VB $ CD CD IN CD CC CD IN JJ NN CC NN NNS TO VB NNP NNP POS JJ NN .\nThe first Sinhalese arrived in Sri Lanka late in the 6th century B.C. , probably from northern India .\tDT JJ NN VBD IN NNP NNP RB IN DT JJ NN NNP , RB IN JJ NNP .\nBuddhism was introduced in about the mid-third century B.C. , and a great civilization developed at the cities of Anuradhapura ( kingdom from circa 200 B.C. to circa A.D. 1000 ) and Polonnaruwa ( from about 1070 to 1200 ) .\tNNP VBD VBN IN IN DT JJ NN NNP , CC DT JJ NN VBD IN DT NNS IN NNP LRB NN IN NN CD NNP TO VB NNP CD RRB CC NNP LRB IN IN CD TO CD RRB .\nIn the 14th century , a south Indian dynasty established a Tamil kingdom in northern Sri Lanka .\tIN DT JJ NN , DT JJ JJ NN VBD DT NNP NN IN JJ NNP NNP .\nThe coastal areas of the island were controlled by the Portuguese in the 16th century and by the Dutch in the 17th century .\tDT JJ NNS IN DT NN VBD VBN IN DT NNS IN DT JJ NN CC IN DT NNS IN DT JJ NN .\nThe island was ceded to the British in 1796 , became a crown colony in 1802 , and was formally united under British rule by 1815 .\tDT NN VBD VBN TO DT JJ IN CD , VBD DT JJ NN IN CD , CC VBD RB VBN IN JJ NN IN CD .\nAs Ceylon , it became independent in 1948 ; its name was changed to Sri Lanka in 1972 .\tIN NNP , PRP VBD JJ IN CD ; PRP$ NN VBD VBN TO NNP NNP IN CD .\nTensions between the Sinhalese majority and Tamil separatists erupted into war in 1983 .\tNNS IN DT NNP NN CC NNP NNS VBD IN NN IN CD .\nAfter two decades of fighting , the government and Liberation Tigers of Tamil Eelam ( LTTE ) formalized a cease-fire in February 2002 with Norway brokering peace negotiations .\tIN CD NNS IN NN , DT NN CC NN NNS IN NNP NNP LRB NNP RRB VBD DT NN IN NNP CD IN NNP VBG NN NNS .\nViolence between the LTTE and government forces intensified in 2006 , but the government regained control of the Eastern Province in 2007 .\tNN IN DT NNP CC NN NNS VBD IN CD , CC DT NN VBD NN IN DT NNP NNP IN CD .\nBy May 2009 , the government announced that its military had defeated the remnants of the LTTE .\tIN NNP CD , DT NN VBD IN PRP$ NN VBD VBN DT NNS IN DT NNP .\nSince the end of the conflict , the government has resettled tens of thousands of internally displaced persons and has undertaken a number of massive infrastructure projects to reconstruct its economy .\tIN DT NN IN DT NN , DT NN VBZ VBN NNS IN NNS IN RB JJ NNS CC VBZ VBN DT NN IN JJ NN NNS TO VB PRP$ NN .\nThe Pacific Ocean is a major contributor to the world economy and particularly to those nations its waters directly touch .\tDT NNP NNP VBZ DT JJ NN TO DT NN NN CC RB TO DT NNS PRP$ NNS RB RB .\nIt provides low-cost sea transportation between East and West , extensive fishing grounds , offshore oil and gas fields , minerals , and sand and gravel for the construction industry .\tPRP VBZ JJ NN NN IN NNP CC NNP , JJ NN NNS , JJ NN CC NN NNS , NNS , CC NN CC NN IN DT NN NN .\nIn 1996 , over 60 % of the world 's fish catch came from the Pacific Ocean .\tIN CD , IN CD NN IN DT NN POS NN NN VBD IN DT NNP NNP .\nExploitation of offshore oil and gas reserves is playing an ever-increasing role in the energy supplies of the US , Australia , NZ , China , and Peru .\tNN IN JJ NN CC NN NNS VBZ VBG DT JJ NN IN DT NN NNS IN DT NNP , NNP , NNP , NNP , CC NNP .\nThe high cost of recovering offshore oil and gas , combined with the wide swings in world prices for oil since 1985 , has led to fluctuations in new drillings .\tDT JJ NN IN VBG JJ NN CC NN , VBN IN DT JJ NNS IN NN NNS IN NN IN CD , VBZ VBN TO NNS IN JJ NNS .\nThe Polynesian Maori reached New Zealand in about A.D. 800 .\tDT JJ NNP VBD NNP NNP IN IN NNP CD .\nIn 1840 , their chieftains entered into a compact with Britain , the Treaty of Waitangi , in which they ceded sovereignty to Queen Victoria while retaining territorial rights .\tIN CD , PRP$ NNS VBD IN DT NN IN NNP , DT NNP IN NNP , IN WDT PRP VBD NN TO NNP NNP IN VBG JJ NNS .\nIn that same year , the British began the first organized colonial settlement .\tIN DT JJ NN , DT NNS VBD DT JJ JJ NN NN .\nA series of land wars between 1843 and 1872 ended with the defeat of the native peoples .\tDT NN IN NN NNS IN CD CC CD VBN IN DT NN IN DT JJ NNS .\nThe British colony of New Zealand became an independent dominion in 1907 and supported the UK militarily in both world wars .\tDT JJ NN IN NNP NNP VBD DT JJ NN IN CD CC VBD DT NNP RB IN DT NN NNS .\nNew Zealand 's full participation in a number of defense alliances lapsed by the 1980s .\tNNP NNP POS JJ NN IN DT NN IN NN NNS VBD IN DT NNS .\nIn recent years , the government has sought to address longstanding Maori grievances .\tIN JJ NNS , DT NN VBZ VBN TO VB JJ NNP NNS .\nBelarus has seen limited structural reform since 1995 , when President LUKASHENKO launched the country on the path of ' market socialism . '\tNNP VBZ VBN JJ JJ NN IN CD , WRB NNP NNP VBD DT NN IN DT NN IN `` NN NN . ``\nIn keeping with this policy , LUKASHENKO reimposed administrative controls over prices and currency exchange rates and expanded the state 's right to intervene in the management of private enterprises .\tIN VBG IN DT NN , NNP VBD JJ NNS IN NNS CC NN NN NNS CC VBD DT NN POS NN TO VB IN DT NN IN JJ NNS .\nSince 2005 , the government has re-nationalized a number of private companies .\tIN CD , DT NN VBZ VBN DT NN IN JJ NNS .\nIn addition , businesses have been subjected to pressure by central and local governments , including arbitrary changes in regulations , numerous rigorous inspections , retroactive application of new business regulations , and arrests of ' disruptive ' businessmen and factory owners .\tIN NN , NNS VBP VBN VBN TO NN IN JJ CC JJ NNS , VBG JJ NNS IN NNS , JJ JJ NNS , JJ NN IN JJ NN NNS , CC NNS IN `` JJ `` NNS CC NN NNS .\nContinued state control over economic operations hampers market entry for businesses , both domestic and foreign .\tVBN NN NN IN JJ NNS NNS NN NN IN NNS , DT JJ CC JJ .\nGovernment statistics indicate GDP growth was strong , surpassing 10 % in 2008 , despite the roadblocks of a tough , centrally directed economy with a high rate of inflation and a low rate of unemployment .\tNN NNS VBP NN NN VBD JJ , VBG CD NN IN CD , IN DT NNS IN DT JJ , RB VBN NN IN DT JJ NN IN NN CC DT JJ NN IN NN .\nHowever , the global crisis pushed the country into recession in 2009 , and GDP grew only 0.2 % for the year .\tRB , DT JJ NN VBD DT NN IN NN IN CD , CC NN VBD RB CD NN IN DT NN .\nSlumping foreign demand hit the industrial sector hard .\tVBG JJ NN VBD DT JJ NN RB .\nMinsk has depended on a standby-agreement with the IMF to assist with balance of payments shortfalls .\tNNP VBZ VBN IN DT NN IN DT NNP TO VB IN NN IN NNS NNS .\nIn line with IMF conditions , in 2009 , Belarus devalued the ruble more than 40 % and tightened some fiscal and monetary policies .\tIN NN IN NNP NNS , IN CD , NNP VBD DT NN RBR IN CD NN CC VBD DT JJ CC JJ NNS .\nOn 1 January 2010 , Russia , Kazakhstan and Belarus launched a customs union , with unified trade regulations and customs codes still under negotiation .\tIN CD NNP CD , NNP , NNP CC NNP VBD DT NNS NN , IN JJ NN NNS CC NNS NNS RB IN NN .\nIn late January , Russia and Belarus amended their 2007 oil supply agreement .\tIN JJ NNP , NNP CC NNP VBD PRP$ CD NN NN NN .\nThe new terms raised prices for above quota purchases , increasing Belarus ' current account deficit .\tDT JJ NNS VBD NNS IN IN NN NNS , VBG NNP POS JJ NN NN .\nGDP grew 4.8 % in 2010 , in part , on the strength of renewed export growth .\tNN VBD CD NN IN CD , IN NN , IN DT NN IN VBN NN NN .\nIn December 2010 , Belarus , Russia and Kazakhstan signed an agreement to form a Common Economic Space and Russia removed all Belarusian oil duties .\tIN NNP CD , NNP , NNP CC NNP VBD DT NN TO VB DT JJ NNP NNP CC NNP VBD DT JJ NN NNS .\nA BULL finding a lion 's cub asleep gored him to death with his horns .\tDT NN VBG DT NN POS NN JJ VBD PRP TO NN IN PRP$ NNS .\nThe Lioness came up , and bitterly lamented the death of her whelp .\tDT NN VBD RB , CC RB VBD DT NN IN PRP$ NN .\nA wild-boar Hunter , seeing her distress , stood at a distance and said to her , ' Think how many men there are who have reason to lament the loss of their children , whose deaths have been caused by you . '\tDT NN NNP , VBG PRP$ NN , VBD IN DT NN CC VBD TO PRP , `` VBP WRB JJ NNS EX VBP WP VBP NN TO VB DT NN IN PRP$ NNS , WP$ NNS VBP VBN VBN IN PRP . ``\nTHE HARES waged war with the Eagles , and called upon the Foxes to help them .\tDT NNS VBD NN IN DT NNS , CC VBD IN DT NNS TO VB PRP .\nThey replied , ' We would willingly have helped you , if we had not known who you were , and with whom you were fighting . '\tPRP VBD , `` PRP MD RB VB VBN PRP , IN PRP VBD RB VBN WP PRP VBD , CC IN WP PRP VBD VBG . ``\nCount the cost before you commit yourselves .\tVB DT NN IN PRP VBP NNS .\nSAVE petrol by pushing your car to your destination .\tVB NN IN VBG PRP$ NN IN PRP$ NN .\nInvariably passers-by will think you 've broken down and help .\tRB NNS MD VB PRP VBP VBN RP CC VB .\nAmerican billionaire Bill Gates is donating another $ 258 million to the fight against malaria , which kills more than one million people each year , mostly African children .\tJJ NN NNP NNP VBZ VBG DT $ CD CD TO DT NN IN NN , WDT VBZ JJR IN CD CD NNS DT NN , RB JJ NNS .\nThe Bill and Melinda Gates Foundation announced Sunday it is granting the money to groups working on new drugs , a vaccine and better mosquito control to stop malaria .\tDT NNP CC NNP NNP NNP VBD NNP PRP VBZ VBG DT NN TO NNS VBG IN JJ NNS , DT NN CC JJR NN NN TO VB NN .\nA new report by a the Malaria Research and Development Alliance says the $ 258 million donation equals more than three-quarters of the entire global spending on research into the disease last year .\tDT JJ NN IN DT DT NNP NNP CC NNP NNP VBZ DT $ CD CD NN VBZ JJR IN NNS IN DT JJ JJ NN IN NN IN DT NN JJ NN .\nMr. Gates told reporters Sunday it is ' a tragedy that the world has done so little ' to stop the disease that kills 2,000 African children every day .\tNNP NNP VBD NNS NNP PRP VBZ `` DT NN IN DT NN VBZ VBN RB RB `` TO VB DT NN WDT VBZ CD JJ NNS DT NN .\nMr. Gates , who founded computer software giant Microsoft , is the world 's wealthiest person .\tNNP NNP , WP VBD NN NN NN NNP , VBZ DT NN POS JJS NN .\nThe United Nations says an upsurge in violence in Sudan 's western Darfur region is threatening security and humanitarian aid to hundreds of thousands of people .\tDT NNP NNP VBZ DT NN IN NN IN NNP POS JJ NNP NN VBZ JJ NN CC JJ NN TO NNS IN NNS IN NNS .\nU.N. spokeswoman Radhia Achouri says about two-thirds of south Darfur are considered hazardous and no-go areas because of recent attacks on peacekeepers .\tNNP NN NNP NNP VBZ IN NNS IN JJ NNP VBP VBN JJ CC JJ NNS IN IN JJ NNS IN NNS .\nIn the western Darfur city of Geneina , U.N. staff face increased constraints in delivering aid due to banditry and clashes between rebels and government-backed militias .\tIN DT JJ NNP NN IN NNP , NNP NN VBP JJ NNS IN VBG NN JJ TO NN CC NNS IN NNS CC JJ NNS .\nIn recent days , African Union peacekeepers and civilians have been killed or kidnapped in violence that AU officials have blamed on Darfur 's main rebel group , the Sudan Liberation Movement .\tIN JJ NNS , NNP NNP NNS CC NNS VBP VBN VBN CC VBN IN NN IN NNP NNS VBP VBN IN NNP POS JJ NN NN , DT NNP NNP NNP .\nMore than two million people have been displaced and tens of thousands of others killed during more than two years of conflict .\tJJR IN CD CD NNS VBP VBN VBN CC NNS IN NNS IN NNS VBN IN JJR IN CD NNS IN NN .\nThe government of Afghanistan says reprimands of U.S. soldiers involved in burning the bodies of two dead Taleban insurgents is a very lenient punishment .\tDT NN IN NNP VBZ NNS IN NNP NNS VBN IN VBG DT NNS IN CD JJ NNP NNS VBZ DT RB JJ NN .\nThe U.S. military said Saturday that the soldiers will face disciplinary action over the incident , but will not be prosecuted .\tDT NNP NN VBD NNP IN DT NNS MD VB JJ NN IN DT NN , CC MD RB VB VBN .\nIt said an investigation concluded the troops burned the bodies for hygienic purposes , but that junior officers who ordered the cremation will be reprimanded for showing a lack of cultural and religious understanding .\tPRP VBD DT NN VBD DT NNS VBD DT NNS IN JJ NNS , CC IN JJ NNS WP VBD DT NN MD VB VBN IN VBG DT NN IN JJ CC JJ NN .\nThe Afghan Foreign Ministry said that whatever the purpose and the reason , the burning of human bodies is unacceptable to Islam and local traditions , and by no means should be repeated .\tDT JJ NNP NNP VBD IN WDT DT NN CC DT NN , DT NN IN JJ NNS VBZ JJ TO NNP CC JJ NNS , CC IN DT NNS MD VB VBN .\nNews of the incident surfaced last month when an Australian television channel aired a video purportedly showing the American soldiers burning the bodies of two militants they had killed near Kandahar .\tNN IN DT NN VBD JJ NN WRB DT JJ NN NN VBD DT NN RB VBG DT JJ NNS VBG DT NNS IN CD NNS PRP VBD VBN IN NNP .\nWorld oil prices rose in early trading Tuesday , ending a three-day slide .\tNNP NN NNS VBD IN JJ NN NNP , VBG DT JJ NN .\nThe price of crude oil for future delivery gained 2.5 percent during trading in New York to more than $ 72 a barrel .\tDT NN IN JJ NN IN JJ NN VBD CD NN IN NN IN NNP NNP TO JJR IN $ CD DT NN .\nOil industry analysts say the increase is due to renewed interest in oil , and other commodities , from investors who are worried about the declining value of the U.S. dollar .\tNN NN NNS VBP DT NN VBZ JJ TO JJ NN IN NN , CC JJ NNS , IN NNS WP VBP VBN IN DT VBG NN IN DT NNP NN .\nThe U.S. dollar lost value compared to other currencies Tuesday after Russian President Dmitri Medvedev suggested the world should lessen its dependence on the dollar , which many countries use to pay off their debts .\tDT NNP NN VBD NN VBN TO JJ NNS NNP IN JJ NNP NNP NNP VBD DT NN MD VB PRP$ NN IN DT NN , WDT JJ NNS VBP TO VB RP PRP$ NNS .\nOil prices have more than doubled since the beginning of this year as investors have grown increasing optimistic that the world will eventually pull out of recession , causing demand for oil to increase .\tNN NNS VBP JJR IN VBN IN DT NN IN DT NN IN NNS VBP VBN VBG JJ IN DT NN MD RB VB IN IN NN , VBG NN IN NN TO VB .\nStill , oil is trading far below the all-time high of $ 147 a barrel set last July .\tRB , NN VBZ VBG RB IN DT JJ NN IN $ CD DT NN VBN JJ NNP .\nUkrainian President Viktor Yushchenko is warning parliament not to hold a planned opening of its fall session Tuesday , saying any decisions it makes will be illegitimate .\tJJ NNP NNP NNP VBZ VBG NN RB TO VB DT JJ NN IN PRP$ NN NN NNP , VBG DT NNS PRP VBZ MD VB JJ .\nMr. Yushchenko said in a nationwide television address Monday that under the constitution , the parliament would have no authority .\tNNP NNP VBD IN DT JJ NN NN NNP IN IN DT NN , DT NN MD VB DT NN .\nHe called the opposition members provocateurs and said their plan to hold an opening session is an attempt to derail parliamentary elections later this month .\tPRP VBD DT NN NNS NNS CC VBD PRP$ NN TO VB DT NN NN VBZ DT NN TO VB JJ NNS RB DT NN .\nMr. Yushchenko dissolved parliament in March , accusing his chief political opponent , Prime Minister Viktor Yanukovych , of illegally enticing Yushchenko supporters to join the opposition .\tNNP NNP VBD NN IN NNP , VBG PRP$ JJ JJ NN , NNP NNP NNP NNP , IN RB VBG NNP NNS TO VB DT NN .\nThe lawmakers refused to dissolve and many still say their parliament still exists .\tDT NNS VBD TO VB CC JJ RB VBP PRP$ NN RB VBZ .\nThe president and prime minister agreed to hold early general elections on September 30 .\tDT NN CC JJ NN VBD TO VB JJ JJ NNS IN NNP CD .\nU.S. Senator Edward Kennedy , a Democratic Party leader who is suffering from brain cancer , has returned to Washington to work on the issue of health care reform .\tNNP NNP NNP NNP , DT JJ NNP NN WP VBZ VBG IN NN NN , VBZ VBN TO NNP TO VB IN DT NN IN NN NN NN .\nSenator Kennedy released a statement Monday , saying he would lay the groundwork for early action by Congress on health reform after President-elect Barack Obama takes office in January .\tNNP NNP VBD DT NN NNP , VBG PRP MD VB DT NN IN JJ NN IN NNP IN NN NN IN JJ NNP NNP VBZ NN IN NNP .\nKennedy also said he was grateful for the prayers and good wishes he has received in recent months .\tNNP RB VBD PRP VBD JJ IN DT NNS CC JJ NNS PRP VBZ VBN IN JJ NNS .\nThe Massachusetts senator , who was first elected in 1962 , underwent surgery in June for a malignant brain tumor .\tDT NNP NN , WP VBD JJ VBN IN CD , JJ NN IN NNP IN DT JJ NN NN .\nHe made a brief appearance in the Senate in July , and delivered a speech supporting Mr. Obama at the Democratic National Convention in August .\tPRP VBD DT JJ NN IN DT NNP IN NNP , CC VBD DT NN VBG NNP NNP IN DT NNP NNP NNP IN NNP .\nTwo of his brothers , President John F. Kennedy and Senator Robert Kennedy , were assassinated in the 1960s .\tCD IN PRP$ NNS , NNP NNP NNP NNP CC NNP NNP NNP , VBD VBN IN DT NNS .\nAnother brother , Joseph Kennedy , was killed while serving in World War II .\tDT NN , NNP NNP , VBD VBN IN VBG IN NNP NNP NNP .\nPolice in Denmark have arrested four Danish Muslims suspected of plotting a terror attack in Europe .\tNNS IN NNP VBP VBN CD JJ NNS VBN IN VBG DT NN NN IN NNP .\nThe four , aged between 16 and 20 , were arrested in and around Copenhagen on Thursday and ordered held while police conduct an investigation .\tDT CD , VBN IN CD CC CD , VBD VBN IN CC IN NNP IN NNP CC VBN VBN IN NNS VBP DT NN .\nThe arrests were made on a tip the Danish intelligence service PET had received from another country .\tDT NNS VBD VBN IN DT NN DT JJ NN NN NN VBD VBN IN DT NN .\nAuthorities say the arrests are linked to an investigation in Bosnia , in which a Turk , a Swede and a Bosnian were arrested in Sarajevo on October 19 and 20 on suspicion of preparing a terrorist attack .\tNNS VBP DT NNS VBP VBN TO DT NN IN NNP , IN WDT DT NN , DT NN CC DT NN VBD VBN IN NNP IN NNP CD CC CD IN NN IN VBG DT JJ NN .\nFollowing the July 7 bus and subway bombings in London , Denmark , an American ally in Iraq , has also been identified as a terrorist target .\tVBG DT NNP CD NN CC NN NNS IN NNP , NNP , DT JJ NN IN NNP , VBZ RB VBN VBN IN DT JJ NN .\nDozens of people in Vietnam staged a short anti-Japan protest outside the Japanese Embassy in Hanoi Sunday .\tNNS IN NNS IN NNP VBD DT JJ JJ NN IN DT JJ NNP IN NNP NNP .\nThe demonstrators , wearing headbands and carrying banners in Chinese characters , stood outside the embassy and shouted slogans .\tDT NNS , VBG NNS CC VBG NNS IN JJ NNS , VBD IN DT NN CC VBD NNS .\nThe protesters were believed to be Chinese nationals living in Vietnam .\tDT NNS VBD VBN TO VB JJ NNS VBG IN NNP .\nA heavy presence of Vietnamese police was on hand to prevent violence .\tDT JJ NN IN JJ NN VBD IN NN TO VB NN .\nDemonstrations are rare in Vietnam where the communist government keeps a tight lid on dissent .\tNNS VBP JJ IN NNP WRB DT JJ NN VBZ DT JJ NN IN NN .\nToday 's demonstration comes after days of violent protests in China over Japan 's wartime past and its bid for a permanent seat on the U.N. Security Council .\tNN POS NN VBZ IN NNS IN JJ NNS IN NNP IN NNP POS NN NN CC PRP$ NN IN DT JJ NN IN DT NNP NNP NNP .\nInsurgents in Iraq killed nine American troops Thursday in the latest violence in the run up to Iraq 's January 30th elections .\tNNS IN NNP VBD CD JJ NNS NNP IN DT JJS NN IN DT NN RP TO NNP POS NNP JJ NNS .\nSeven of the U.S. soldiers were killed when their vehicle hit an improvised explosive device in Baghdad during a routine patrol .\tCD IN DT NNP NNS VBD VBN WRB PRP$ NN VBD DT JJ JJ NN IN NNP IN DT JJ NN .\nTo the west of the capital , in Al Anbar province , two U.S. Marines were killed while conducting security operations .\tIN DT JJS IN DT NN , IN NNP NNP NN , CD NNP NNS VBD VBN IN VBG NN NNS .\nThe attacks came as Iraq 's interim prime minister , Iyad Allawi , extended emergency laws for another month .\tDT NNS VBD IN NNP POS JJ JJ NN , NNP NNP , VBD NN NNS IN DT NN .\nThe laws , which have been in place for two months , give Iraq 's government the power to impose curfews and restrict movement between cities .\tDT NNS , WDT VBP VBN IN NN IN CD NNS , VBP NNP POS NN DT NN TO VB NNS CC VB NN IN NNS .\nMeanwhile , the French newspaper Liberation , says it has not heard from its Baghdad correspondent , Florence Aubenas , and her Iraqi interpreter in over 24 hours , raising concerns for their safety .\tRB , DT JJ NN NN , VBZ PRP VBZ RB VBN IN PRP$ NNP NN , NNP NNP , CC PRP$ JJ NN IN IN CD NNS , VBG NNS IN PRP$ NN .\nPakistani officials say Sunni and Shi'ite militants are battling each other for a third day in the country 's North-West Frontier Province .\tJJ NNS VBP NNP CC NNP NNS VBP VBG DT NN IN DT JJ NN IN DT NN POS JJ NNP NNP .\nA Pakistani administrator in the tribal region , Sahibzada Mohammed Anis , says the confirmed death toll from the fighting is 15 , with scores of people wounded .\tDT JJ NN IN DT JJ NN , NNP NNP NNP , VBZ DT VBN NN NN IN DT NN VBZ CD , IN NNS IN NNS VBN .\nOn Saturday , another official said 40 people had been killed .\tIN NNP , DT NN VBD CD NNS VBD VBN VBN .\nThe administrator says tribal elders are trying to negotiate an end to the violence .\tDT NN VBZ JJ NNS VBP VBG TO VB DT NN TO DT NN .\nHeavy fighting between majority Sunnis and minority Shi'ites erupted Friday in and around the town of Parachinar in the semi-autonomous Kurram region .\tJJ NN IN NN NNS CC NN NNS VBD NNP IN CC IN DT NN IN NNP IN DT JJ NNP NN .\nPakistani officials say the fighting in Parachinar subsided Saturday after the military imposed a curfew and government helicopters patrolled the area .\tJJ NNS VBP DT NN IN NNP VBD NNP IN DT NN VBD DT NN CC NN NNS VBD DT NN .\nBut , they say battles continued Sunday in nearby villages .\tCC , PRP VBP NNS VBD NNP IN JJ NNS .\nThe cause of the sectarian violence has not been independently confirmed , but residents say it began after one group held a demonstration denouncing the other sect .\tDT NN IN DT JJ NN VBZ RB VBN RB VBN , CC NNS VBP PRP VBD IN CD NN VBD DT NN VBG DT JJ NN .\nColombian police say U.S. and Colombian drug enforcement agents have dismantled a major narcotics smuggling operation .\tJJ NNS VBP NNP CC JJ NN NN NNS VBP VBN DT JJ NNS VBG NN .\nAuthorities say the drug ring had been smuggling huge amounts of heroin and cocaine into the United States from Latin America .\tNNS VBP DT NN NN VBD VBN VBG JJ NNS IN NN CC NN IN DT NNP NNPS IN NNP NNP .\nAt least 27 people were arrested in the operation , most of them in Colombia .\tIN JJS CD NNS VBD VBN IN DT NN , JJS IN PRP IN NNP .\nPolice say they also confiscated 61 kilograms of heroin and at least 129 kilograms of cocaine , worth more than seven million dollars .\tNNS VBP PRP RB VBD CD NNS IN NN CC IN JJS CD NNS IN NN , JJ JJR IN CD CD NNS .\nColombia is the world 's largest producer of cocaine , most of which is shipped to the United States .\tNNP VBZ DT NN POS JJS NN IN NN , JJS IN WDT VBZ VBN TO DT NNP NNPS .\nMacedonia 's delegation says it is leaving the NATO summit in Bucharest early to protest the alliance 's failure to invite it to begin membership talks because of a dispute over the country 's name .\tNNP POS NN VBZ PRP VBZ VBG DT NNP NN IN NNP RB TO VB DT NN POS NN TO VB PRP TO VB NN NNS IN IN DT NN IN DT NN POS NN .\nForeign Minister Antonio Milososki told reporters in the Romanian capital that the Macedonian delegation will leave shortly after a meeting with U.S. President George W. Bush .\tNNP NNP NNP NNP VBD NNS IN DT JJ NN IN DT JJ NN MD VB RB IN DT NN IN NNP NNP NNP NNP NNP .\nThe Macedonian News Agency ( MIA ) reports that President Branko Crvenkovski and Prime Minister Nikola Gruevski have canceled all other meetings scheduled for later Thursday and Friday .\tDT NNP NNP NNP LRB NNP RRB VBZ IN NNP NNP NNP CC NNP NNP NNP NNP VBP VBN DT JJ NNS VBN IN RB NNP CC NNP .\nNATO leaders said Macedonia fulfilled requirements for a membership , but held off extending the invitation after Greece threatened a veto .\tNNP NNS VBD NNP VBD NNS IN DT NN , CC VBD RP VBG DT NN IN NNP VBD DT NN .\nGreece demands that Macedonia change its name , which is the same as the name of a northern Greek province .\tNNP VBZ IN NNP VB PRP$ NN , WDT VBZ DT JJ IN DT NN IN DT JJ JJ NN .\nGreece contends that the former Yugoslav republic 's refusal to change its name implies territorial claims , a charge Macedonia denies .\tNNP VBZ IN DT JJ JJ NN POS NN TO VB PRP$ NN VBZ JJ NNS , DT NN NNP VBZ .\nIraqi police say a roadside bomb blast south of Baghdad has killed seven police officers .\tJJ NNS VBP DT NN NN NN NN IN NNP VBZ VBN CD NNS NNS .\nThe policemen were in a convoy traveling on a road east of the city of Diwaniyah .\tDT NNS VBD IN DT NN VBG IN DT NN NN IN DT NN IN NNP .\nThe region south of Baghdad is known for frequent clashes between rival Shi'ite groups and violence against U.S.-led forces .\tDT NN NN IN NNP VBZ VBN IN JJ NNS IN JJ NNP NNS CC NN IN JJ NNS .\nNorth of Baghdad , authorities say a suicide truck bomber hit a checkpoint operated by Kurdish peshmerga militiamen at Jalawla in Diyala province , killing one and wounding 10 .\tNNP IN NNP , NNS VBP DT NN NN NN VBD DT NN VBN IN NNP NN NNS IN NNP IN NNP NN , VBG CD CC VBG CD .\nSeparately , the U.S. military says coalition forces detained 15 suspects in operations targeting al-Qaida in Iraq terrorists in central and northern parts of the country early Wednesday .\tRB , DT NNP NN VBZ NN NNS VBD CD NNS IN NNS VBG NNP IN NNP NNS IN JJ CC JJ NNS IN DT NN JJ NNP .\nAfghan police and U.S. troops in the eastern city of Jalalabad have opened fire to break up rioting by students angry at alleged desecration of the Koran at the U.S. jail in Guantanamo Bay , Cuba .\tJJ NNS CC NNP NNS IN DT JJ NN IN NNP VBP VBN NN TO VB RP NN IN NNS JJ IN JJ NN IN DT NNP IN DT NNP NN IN NNP NNP , NNP .\nLocal health officials say at least three people were killed and some 60 others wounded -- some seriously .\tJJ NN NNS VBP IN JJS CD NNS VBD VBN CC DT CD NNS VBD : DT RB .\nDemonstrators chanting ' Death to America ' marched through streets Wednesday , smashing cars , damaging shops and throwing stones at U.S. troops .\tNNS VBG `` NN TO NNP `` VBD IN NNS NNP , VBG NNS , JJ NNS CC VBG NNS IN NNP NNS .\nProtests erupted after Newsweek magazine reported that interrogators at Guantanamo placed copies of the Muslim holy book on toilets to rattle terrorist suspects .\tNNS VBD IN NNP NN VBD IN NNS IN NNP VBD NNS IN DT NNP JJ NN IN NNS TO VB JJ NNS .\nThe United States has condemned the alleged desecration of the Koran , saying such activity would be reprehensible and contrary to U.S. policy .\tDT NNP NNPS VBZ VBN DT JJ NN IN DT NNP , VBG JJ NN MD VB JJ CC JJ TO NNP NN .\nThe U.S. military says any kind of violation of the religious rights of detainees will be treated very seriously .\tDT NNP NN VBZ DT NN IN NN IN DT JJ NNS IN NNS MD VB VBN RB RB .\nIraqi authorities say two car bombs in Baghdad have killed at least 23 people .\tJJ NNS VBP CD NN NNS IN NNP VBP VBN IN JJS CD NNS .\nMore than 80 people were wounded in the blasts , which went off in short succession .\tJJR IN CD NNS VBD VBN IN DT NNS , WDT VBD RP IN JJ NN .\nThe two blasts went off within moments of each other , one at a busy intersection near a security ministry building in the north of the capital .\tDT CD NNS VBD RP IN NNS IN DT NN , CD IN DT JJ NN IN DT NN NN NN IN DT NN IN DT NN .\nThe second car bomb exploded in western Baghdad , outside a mobile phone company and close by a popular restaurant .\tDT JJ NN NN VBD IN JJ NNP , IN DT JJ NN NN CC NN IN DT JJ NN .\nThere were no immediate claims of responsibility .\tEX VBD DT JJ NNS IN NN .\nIn a third incident Sunday , authorities said that at least one man was killed when a home-made bomb attached to his car exploded .\tIN DT JJ NN NNP , NNS VBD IN IN JJS CD NN VBD VBN WRB DT JJ NN VBN TO PRP$ NN VBD .\nThe bombings are the deadliest since the U.S. officially changed the name of its mission in Iraq earlier this month from one of combat to advice and training , a move accompanied by a drawdown in U.S. forces .\tDT NNS VBP DT JJS IN DT NNP RB VBD DT NN IN PRP$ NN IN NNP RBR DT NN IN CD IN NN TO NN CC NN , DT NN VBN IN DT NN IN NNP NNS .\nA U.S. newspaper says the Bush administration has been unsuccessfully trying to find someone to oversee the ongoing wars in Iraq and Afghanistan .\tDT NNP NN VBZ DT NNP NN VBZ VBN RB VBG TO VB DT TO VB DT JJ NNS IN NNP CC NNP .\nThe Washington Post says the White House wants to appoint a so-called ' czar ' to coordinate both the civilian and military efforts on the two battle fronts .\tDT NNP NNP VBZ DT NNP NNP VBZ TO VB DT JJ `` NN `` TO VB DT DT JJ CC JJ NNS IN DT CD NN NNS .\nThe Postsays the person would report directly to President Bush , and would have the authority to issue directions to the State Department , Pentagon and other agencies .\tDT NNPS DT NN MD VB RB TO NNP NNP , CC MD VB DT NN TO VB NNS TO DT NNP NNP , NNP CC JJ NNS .\nThe report says the White House has offered the job to at least three retired top-ranked generals , and all three have declined the post .\tDT NN VBZ DT NNP NNP VBZ VBN DT NN TO IN JJS CD JJ JJ NNS , CC DT CD VBP VBN DT NN .\nFormer U.S. Marine General John J. ' Jack ' Sheehan , one of the generals , says Vice President Dick Cheney and others who still believe the Iraq war can be won , continue to hold more power within the administration than ' pragmatists looking for a way out of Iraq . '\tJJ NNP NNP NNP NNP NNP `` NNP `` NNP , CD IN DT NNS , VBZ NNP NNP NNP NNP CC NNS WP RB VBP DT NNP NN MD VB VBN , VBP TO VB JJR NN IN DT NN IN `` NNS VBG IN DT NN IN IN NNP . ``\nAuthorities in Belarus have detained several key members of the campaign staff of opposition presidential candidate Alexander Milinkevich .\tNNS IN NNP VBP VBN JJ JJ NNS IN DT NN NN IN NN JJ NN NNP NNP .\nThe detentions came after the candidate held a rally outside a movie theater in the capital , Minsk , ahead of the country 's March 19 presidential election .\tDT NNS VBD IN DT NN VBD DT NN IN DT NN NN IN DT NN , NNP , RB IN DT NN POS NNP CD JJ NN .\nThe opposition website , Charter97 identifies one of those detained as Vintsuk Vyachorka , leader of the Belarus Popular Front .\tDT NN NN , NNP VBZ CD IN DT VBN IN NNP NNP , NN IN DT NNP NNP NNP .\nThe website says other campaign workers had no information about the detainees for several hours , but then learned they had been taken to a Minsk prison .\tDT NN VBZ JJ NN NNS VBD DT NN IN DT NNS IN JJ NNS , CC RB VBD PRP VBD VBN VBN TO DT NNP NN .\nThe incident is the latest instance of harassment of candidates challenging President Alexander Lukashenko in the election .\tDT NN VBZ DT JJS NN IN NN IN NNS VBG NNP NNP NNP IN DT NN .\nMr. Lukashenko has ruled the former Soviet republic since 1994 , and is seeking a third term .\tNNP NNP VBZ VBN DT JJ JJ NN IN CD , CC VBZ VBG DT JJ NN .\nThe West has criticized him for his poor human rights record and for quashing political opposition .\tDT NNP VBZ VBN PRP IN PRP$ JJ JJ NNS NN CC IN VBG JJ NN .\nThe United States has called him Europe 's last dictator .\tDT NNP NNP VBZ VBN PRP NNP POS JJ NN .\nA U.S. government oversight agency says Afghanistan 's reconstruction program has no coherent spending strategy to implement its goals .\tDT NNP NN NN NN VBZ NNP POS NN NN VBZ DT JJ NN NN TO VB PRP$ NNS .\nA report by the U.S. Congress 's Special Inspector General for Afghanistan Reconstruction released late Thursday says the U.S. has appropriated , but not fully spent , $ 32 billion for humanitarian aid in the country , while other nations have donated $ 25 billion .\tDT NN IN DT NNP NNP POS JJ NNP NNP IN NNP NNP VBD JJ NNP VBZ DT NNP VBZ VBN , CC RB RB VBN , $ CD CD IN JJ NN IN DT NN , IN JJ NNS VBP VBN $ CD CD .\nThe report found that reconstruction efforts have been fragmented and lack a central plan to complete U.S. goals .\tDT NN VBD IN NN NNS VBP VBN VBN CC VBP DT JJ NN TO VB NNP NNS .\nThose goals include rebuilding Afghan infrastructure , re-establishing political institutions , providing services to the Afghan people , and maintaining security necessary for reconstruction projects .\tDT NNS VBP VBG JJ NN , JJ JJ NNS , VBG NNS TO DT JJ NNS , CC VBG NN JJ IN NN NNS .\nThe report also says government officials in Afghanistan want a greater say in building plans .\tDT NN RB VBZ NN NNS IN NNP VBP DT JJR NN IN NN NNS .\nCongress created the Office of the Special Inspector General for Afghanistan Reconstruction under the authority of the National Defense Authorization Act for Fiscal Year 2008 .\tNNP VBD DT NNP IN DT NNP NNP NNP IN NNP NNP IN DT NN IN DT NNP NNP NNP NNP IN NNP NNP CD .\nThe measure was signed into law one year ago .\tDT NN VBD VBN IN NN CD NN RB .\nBurmese activists have gathered outside the Russian Embassy in Malaysia to call on Moscow to end its support for building a nuclear research center in Burma .\tJJ NNS VBP VBN IN DT JJ NNP IN NNP TO VB IN NNP TO VB PRP$ NN IN VBG DT JJ NN NN IN NNP .\nSome 50 protesters took part in the demonstration Tuesday .\tDT CD NNS VBD NN IN DT NN NNP .\nIn May , Russia announced that it had agreed to help build a nuclear research center in Burma .\tIN NNP , NNP VBD IN PRP VBD VBN TO VB VB DT JJ NN NN IN NNP .\nThe United States has expressed concern about the deal , saying Burma does not have the regulatory or safety provisions to successfully handle that type of nuclear program .\tDT NNP NNPS VBZ VBN NN IN DT NN , VBG NNP VBZ RB VB DT JJ CC NN NNS TO RB VB DT NN IN JJ NN .\nRussia and China have become major suppliers of arms to Burma since the West imposed sanctions in 1988 over Burma 's poor human rights record .\tNNP CC NNP VBP VBN JJ NNS IN NNS TO NNP IN DT NNP VBD NNS IN CD IN NNP POS JJ JJ NNS NN .\nFormer Czech President Vaclav Havel has delivered a letter to the Belarus Embassy in Prague , calling on Belarusian President Alexander Lukashenko to step down .\tJJ JJ NNP NNP NNP VBZ VBN DT NN TO DT NNP NNP IN NNP , VBG IN JJ NNP NNP NNP TO VB RB .\nMr. Havel says he was denied entry to the building Tuesday and left the letter in the embassy 's mailbox .\tNNP NNP VBZ PRP VBD VBN NN TO DT NN NNP CC VBD DT NN IN DT NN POS NN .\nHe said the letter was meant as an act of solidarity with those in Belarus struggling for more freedom .\tPRP VBD DT NN VBD VBN IN DT NN IN NN IN DT IN NNP VBG IN JJR NN .\nHe added that the Czech people know the importance of such solidarity .\tPRP VBD IN DT JJ NNS VBP DT NN IN JJ NN .\nMr. Havel also called on European Union countries to , in his words , resist evil from the very beginning and not wait for what he called ' catastrophic consequences . '\tNNP NNP RB VBD IN NNP NNP NNS TO , IN PRP$ NNS , VB NN IN DT JJ NN CC RB VB IN WP PRP VBD `` JJ NNS . ``\nAn international human rights group is urging NATO to stop transferring detainees to Afghan security forces because of reports they torture their prisoners .\tDT JJ JJ NNS NN VBZ VBG NNP TO VB VBG NNS TO JJ NN NNS IN IN NNS PRP VBP PRP$ NNS .\nAmnesty International says the NATO-led International Security Assistance Force could be exposing prisoners to mistreatment and abuse by placing them in the custody of the Afghan National Directorate of Security .\tNNP NNP VBZ DT JJ NNP NNP NNP NNP MD VB VBG NNS TO NN CC NN IN VBG PRP IN DT NN IN DT JJ NNP NNP IN NNP .\nThe rights group wants ISAF to temporarily suspend all prisoner handovers to Afghan authorities until proper safeguards are in place .\tDT NNS NN VBZ NNP TO RB VB DT NN NNS TO JJ NNS IN JJ NNS VBP IN NN .\nThe group says , in particular , ISAF troops from Belgium , Britain , Canada , Norway and the Netherlands could be in violation of an agreement they signed with the Afghan government on prison transfer and monitoring .\tDT NN VBZ , IN JJ , JJ NNS IN NNP , NNP , NNP , NNP CC DT NNP MD VB IN NN IN DT NN PRP VBD IN DT JJ NN IN NN NN CC NN .\nAmnesty says the agreement does not provide enough safeguards .\tNNP VBZ DT NN VBZ RB VB JJ NNS .\nAmnesty International called on those countries not to rely on bilateral agreements to protect prisoners from harsh treatment once they are transferred .\tNNP NNP VBD IN DT NNS RB TO VB IN JJ NNS TO VB NNS IN JJ NN IN PRP VBP VBN .\nThe rights group is calling for a complete reform of the Afghan detention system .\tDT NNS NN VBZ VBG IN DT JJ NN IN DT JJ NN NN .\nVietnamese health officials say a woman in the north of the country has died from bird flu as a new outbreak is reported in southern China .\tJJ NN NNS VBP DT NN IN DT NN IN DT NN VBZ VBN IN NN NN IN DT JJ NN VBZ VBN IN JJ NNP .\nThe director of Vietnam 's preventive medicine department , Nguyen Huy Nga , said the 23-year-old teacher died Monday after testing positive for H5N1 strain of avian influenza .\tDT NN IN NNP POS JJ NN NN , NNP NNP NNP , VBD DT JJ NN VBD NNP IN VBG JJ IN NNP NN IN JJ NN .\nHer death brings the number of people in Vietnam killed by the virus to 50 , out of 105 total human infections .\tPRP$ NN VBZ DT NN IN NNS IN NNP VBN IN DT NN TO CD , IN IN CD JJ JJ NNS .\nIn separate news , Chinese health officials Monday reported a new outbreak in the southern province of Guizhou .\tIN JJ NN , JJ NN NNS NNP VBD DT JJ NN IN DT JJ NN IN NNP .\nAuthorities said nearly 4,000 poultry have died from the disease and a further 2,38,000 have been culled .\tNNS VBD RB CD NN VBP VBN IN DT NN CC DT JJ CD VBP VBN VBN .\nChina earlier announced the death in Guangdong province of a 44-year-old woman - the country 's 19th fatality and the third this year .\tNNP RB VBD DT NN IN NNP NN IN DT JJ NN IN DT NN POS JJ NN CC DT NN DT NN .\nWal-Mart said Friday it will pay the U.S. government $ 11 million to settle charges that it used illegal immigrants to clean its stores in the United States .\tNNP VBD NNP PRP MD VB DT NNP NN $ CD CD TO VB NNS IN PRP VBD JJ NNS TO VB PRP$ NNS IN DT NNP NNPS .\nWal-Mart is the world 's biggest retailer , with $ 256 billion in sales , 1.5 million employees , and more than 5,000 stores in the United States and eight other nations .\tNNP VBZ DT NN POS JJS NN , IN $ CD CD IN NNS , CD CD NNS , CC JJR IN CD NNS IN DT NNP NNPS CC CD JJ NNS .\nNews reports say since 1998 , federal authorities have found hundreds of cases of illegal immigrants working for contractors in Wal-Marts across the country .\tNNP NNS VBP IN CD , JJ NNS VBP VBN NNS IN NNS IN JJ NNS VBG IN NNS IN NNP IN DT NN .\nThe company says it did not adequately check to see whether employees hired by cleaning contractors could work in the United States legally .\tDT NN VBZ PRP VBD RB RB VB TO VB IN NNS VBN IN VBG NNS MD VB IN DT NNP NNPS RB .\nThe company vowed to do better in the future .\tDT NN VBD TO VB RB IN DT NN .\nTrade unions in Nigeria have begun a planned three-day nationwide strike over a salary dispute with the government .\tNNP NNS IN NNP VBP VBN DT JJ JJ JJ NN IN DT NN NN IN DT NN .\nThe two unions want the government to raise the monthly minimum wage to $ 120 , a significant increase over the current $ 50 minimum salary .\tDT CD NNS VBP DT NN TO VB DT JJ NN NN TO $ CD , DT JJ NN IN DT JJ $ CD JJ NN .\nWitnesses say many state and government workers in Nigeria 's largest city , Lagos , and Abuja , the capital , are not on the job .\tNNS VBP JJ NN CC NN NNS IN NNP POS JJS NN , NNP , CC NNP , DT NN , VBP RB IN DT NN .\nThe Nigeria Labor Congress and the Trade Union Congress decided to go ahead with the strike despite an emergency meeting with President Goodluck Jonathan Tuesday evening .\tDT NNP NNP NNP CC DT NNP NNP NNP VBD TO VB RB IN DT NN IN DT NN NN IN NNP NNP NNP NNP NN .\nBut the union leaders plan to meet later Wednesday to discuss their next course of action .\tCC DT NN NNS VBP TO VB RB NNP TO VB PRP$ JJ NN IN NN .\nThe two labor federations represent workers in most sectors of Nigeria 's economy .\tDT CD NN NNS VBP NNS IN JJS NNS IN NNP POS NN .\nPalestinian President Mahmud Abbas and the exiled political leader of the militant group Hamas have held a rare meeting in Cairo , their first since their parties formed a coalition government .\tJJ NNP NNP NNP CC DT VBN JJ NN IN DT JJ NN NNP VBP VBN DT JJ NN IN NNP , PRP$ JJ IN PRP$ NNS VBD DT NN NN .\nMr. Abbas of the moderate Fatah movement and Hamas ' political chief Khaled Mashaal met Friday in Cairo .\tNNP NNP IN DT JJ NNP NN CC NNP POS JJ NN NNP NNP VBD NNP IN NNP .\nThey had been expected to discuss an exchange of prisoners with Israel , the internal situation in the Palestinian territory , and an effort to lift international sanctions against the Palestinian government .\tPRP VBD VBN VBN TO VB DT NN IN NNS IN NNP , DT JJ NN IN DT JJ NN , CC DT NN TO VB JJ NNS IN DT JJ NN .\nDetails of the meeting have not been released .\tNNS IN DT NN VBP RB VBN VBN .\nThe rival Palestinian groups Fatah and Hamas formed a unity government in March .\tDT JJ JJ NNS NNP CC NNP VBD DT NN NN IN NNP .\nThe two sides hoped to end a Western embargo against the Palestinian authority and to end months of factional fighting that killed more than 130 people .\tDT CD NNS VBD TO VB DT JJ NN IN DT JJ NN CC TO VB NNS IN JJ NN WDT VBD JJR IN CD NNS .\nA suicide bomber in the Russia 's Chechnya republic killed six people and wounded at least 10 others outside a theater in the capital of Grozny on Sunday .\tDT NN NN IN DT NNP POS NNP NN VBD CD NNS CC VBD IN JJS CD NNS IN DT NN IN DT NN IN NNP IN NNP .\nFour of the victims were police officers who stopped the bomber from getting inside the concert hall just before a show was to start .\tCD IN DT NNS VBD NNS NNS WP VBD DT NN IN VBG IN DT NN NN RB IN DT NN VBD TO VB .\nOther victims included a Turk and a Georgian .\tJJ NNS VBD DT NN CC DT NN .\nThe bomber , who was also killed , has not yet been identified .\tDT NN , WP VBD RB VBN , VBZ RB RB VBN VBN .\nChechen President Ramzan Kadyrov says the attack will not stop efforts to wipe out Chechen rebels .\tJJ NNP NNP NNP VBZ DT NN MD RB VB NNS TO VB RP JJ NNS .\nRussian forces have been fighting Islamic separatists in southern Russia for most of the last 15 years .\tJJ NNS VBP VBN VBG JJ NNS IN JJ NNP IN JJS IN DT JJ CD NNS .\nThe state-run Russian company building Iran 's nuclear power station says the launch date has been postponed because of Iran 's payment delays .\tDT JJ JJ NN VBG NNP POS JJ NN NN VBZ DT NN NN VBZ VBN VBN IN IN NNP POS NN NNS .\nOfficials at Atomstroyexport say it is impossible to launch the reactor in September .\tNNS IN NNP VBP PRP VBZ JJ TO VB DT NN IN NNP .\nThey added there will be no delivery of nuclear fuel this month as earlier agreed .\tPRP VBD EX MD VB DT NN IN JJ NN DT NN IN JJR VBD .\nRussia has accused Iran of missing payments on the nuclear plant .\tNNP VBZ VBN NNP IN VBG NNS IN DT JJ NN .\nIran has denied the claim .\tNNP VBZ VBN DT NN .\nIranian and Russian officials met in Moscow last week , but failed to solve their financial dispute .\tJJ CC JJ NNS VBD IN NNP JJ NN , CC VBD TO VB PRP$ JJ NN .\nRussia 's Interfax news agency quotes a Russian foreign ministry spokesman , Andre Krivtsov , as saying Moscow hopes the two countries will find a mutual solution to their funding problem .\tNNP POS NNP NN NN VBZ DT JJ JJ NN NN , NNP NNP , IN VBG NNP VBZ DT CD NNS MD VB DT JJ NN TO PRP$ NN NN .\nThe United Nations Security Council has expressed concern that Iran could use uranium enrichment technology to develop nuclear weapons .\tDT NNP NNP NNP NNP VBZ VBN NN IN NNP MD VB NN NN NN TO VB JJ NNS .\nIran says its nuclear program is only for energy purposes .\tNNP VBZ PRP$ JJ NN VBZ RB IN NN NNS .\nA 15-member U.N. Security Council delegation is in Haiti to assess the work of peacekeepers trying to stabilize the country following last year 's ouster of President Jean-Bertrand Aristide .\tDT JJ NNP NNP NNP NN VBZ IN NNP TO VB DT NN IN NNS VBG TO VB DT NN VBG JJ NN POS NN IN NNP NNP NNP .\nBrazilian Ambassador Ronaldo Sardenberg is leading the delegation , which arrived in Port-au-Prince Wednesday for the four-day visit .\tJJ NN NNP NNP VBZ VBG DT NN , WDT VBD IN NNP NNP IN DT JJ NN .\nThe fact-finding trip comes at a time when the Security Council is preparing to vote on extending the mandate of the U.N. peacekeeping force in the country , which expires at the end of May .\tDT JJ NN VBZ IN DT NN WRB DT NNP NNP VBZ VBG TO VB IN VBG DT NN IN DT NNP NN NN IN DT NN , WDT VBZ IN DT NN IN NNP .\nU.N. peacekeepers and the interim government have been struggling to contain violence in Haiti since Mr. Aristide was removed from power in February 2004 .\tNNP NNS CC DT JJ NN VBP VBN VBG TO VB NN IN NNP IN NNP NNP VBD VBN IN NN IN NNP CD .\nMr. Sardenberg has described the situation in the country as ' dire . '\tNNP NNP VBZ VBN DT NN IN DT NN IN `` JJ . ``\nPeruvian officials say they will not free a U.S. woman serving a 20-year sentence for terrorist collaboration , even if a regional human rights court orders her release .\tJJ NNS VBP PRP MD RB VB DT NNP NN VBG DT JJ NN IN JJ NN , RB IN DT JJ JJ NNS NN VBZ PRP$ NN .\nForeign Minister Manuel Rodriguez said Saturday if the Inter-American Court of Human Rights orders Lori Berenson 's release , Peru would refuse .\tNNP NNP NNP NNP VBD NNP IN DT JJ NNP IN NNP NNPS NNS NNP NNP POS NN , NNP MD VB .\nThe Costa Rica-based court is set to discuss the case this coming week .\tDT NNP JJ NN VBZ VBN TO VB DT NN DT JJ NN .\nBerenson was arrested in 1995 and accused of involvement in a failed attempt by the rebel Tupac Amaru Revolutionary Movement to seize Peru 's Congress .\tNNP VBD VBN IN CD CC VBN IN NN IN DT VBN NN IN DT NN NNP NNP NNP NNP TO VB NNP POS NNP .\nA military court initially convicted and sentenced Berenson to life in prison for treason .\tDT JJ NN RB VBN CC VBN NNP TO NN IN NN IN NN .\nThat sentence was overturned and she was re-tried by a civilian court .\tDT NN VBD VBN CC PRP VBD VBN IN DT JJ NN .\nShe was acquitted of being an active member of the rebel group but convicted of helping the guerrillas plan the attack on the Congress .\tPRP VBD VBN IN VBG DT JJ NN IN DT NN NN CC VBN IN VBG DT NNS VBP DT NN IN DT NNP .\nBerenson has maintained her innocence .\tNNP VBZ VBN PRP$ NN .\nSaudi state media say authorities have destroyed nearly 1,60,000 birds following the discovery of bird flu south of the capital , Riyadh .\tJJ NN NNS VBP NNS VBP VBN RB CD NNS VBG DT NN IN NN NN NN IN DT NN , NNP .\nThe Saudi Press Agency reports Tuesday that the birds tested positive for the H5N1 strain of bird flu , which can be deadly to humans .\tDT NNP NNP NNP VBZ NNP IN DT NNS VBD JJ IN DT NNP NN IN NN NN , WDT MD VB JJ TO NNS .\nThe outbreak was discovered on a farm in the al-Kharj region , about 80 kilometers south of the capital .\tDT NN VBD VBN IN DT NN IN DT JJ NN , IN CD NNS RB IN DT NN .\nAuthorities destroyed thousands of birds in the region last November to contain another outbreak of the virus .\tNNS VBD NNS IN NNS IN DT NN JJ NNP TO VB DT NN IN DT NN .\nVarious forms of bird flu are common in birds and rarely affect humans .\tJJ NNS IN NN NN VBP JJ IN NNS CC RB VBP NNS .\nThe World Health Organization says the H5N1 strain of the virus has killed at least 223 people worldwide since 2003 .\tDT NNP NNP NNP VBZ DT NNP NN IN DT NN VBZ VBN IN JJS CD NNS JJ IN CD .\nSaudi Arabia has not reported any human cases of the disease .\tNNP NNP VBZ RB VBN DT JJ NNS IN DT NN .\nVictims generally contract the disease from sick or dead birds , but health authorities are concerned the virus could change into a form easily passed between humans .\tNNP RB NN DT NN IN JJ CC JJ NNS , CC NN NNS VBP VBN DT NN MD VB IN DT NN RB VBN IN NNS .\nPolice in central Pakistan 's Punjab province say three suspected militants were killed Saturday when a bomb they were carrying on a bicycle accidentally exploded .\tNNS IN JJ NNP POS NNP NN VBP CD JJ NNS VBD VBN NNP WRB DT NN PRP VBD VBG IN DT NN RB VBD .\nThe explosion happened in Cheecha Watni , a town about 100 kilometers from the city of Multan .\tDT NN VBD IN NNP NNP , DT NN IN CD NNS IN DT NN IN NNP .\nIt is not immediately clear what sort of attack the men were planning .\tPRP VBZ RB RB JJ WP NN IN NN DT NNS VBD VBG .\nPolice say at least two of the suspected militants were students at a local seminary , and had links to Sipah-e-Sahaba , an outlawed Sunni Muslim group .\tNNS VBP IN JJS CD IN DT JJ NNS VBD NNS IN DT JJ NN , CC VBD NNS TO NNP , DT JJ NNP NNP NN .\nPolice have been on high alert in Pakistan after a series of suicide bomb attacks in recent weeks .\tNNS VBP VBN IN JJ NN IN NNP IN DT NN IN NN NN NNS IN JJ NNS .\nLast week , a suicide bombing killed at least 15 people in a courtroom in Baluchistan province .\tJJ NN , DT NN VBG VBN IN JJS CD NNS IN DT NN IN NNP NN .\nAt least 36 suspects have been detained in connection with that attack .\tIN JJS CD NNS VBP VBN VBN IN NN IN DT NN .\nBaluchistan borders Afghanistan and Iran .\tNNP NNS NNP CC NNP .\nIt is widely believed to be used by Taleban leaders for planning attacks against Afghan and U.S.-led forces in Afghanistan .\tPRP VBZ RB VBN TO VB VBN IN NNP NNS IN VBG NNS IN JJ CC JJ NNS IN NNP .\nSeveral bomb explosions in Afghanistan , blamed on Taleban insurgents , have killed four American troops and two Afghan policemen , and wounded two U.S. Embassy officials .\tJJ NN NNS IN NNP , VBN IN NNP NNS , VBP VBN CD JJ NNS CC CD JJ NNS , CC VBD CD NNP NNP NNS .\nA roadside bomb in southern Zabul province killed the four soldiers and wounded three others early Sunday .\tDT NN NN IN JJ NNP NN VBD DT CD NNS CC VBD CD NNS JJ NNP .\nA U.S. commander , Major-General Jason Kamiya , said the blast would not weaken the resolve of coalition forces .\tDT NNP NN , NNP NNP NNP , VBD DT NN MD RB VB DT NN IN NN NNS .\nIn another part of the province , two Afghan policemen were killed in a similar blast .\tIN DT NN IN DT NN , CD JJ NNS VBD VBN IN DT JJ NN .\nMeanwhile , in the western outskirts of Kabul , a roadside bomb exploded near a convoy of U.S. Embassy vehicles , slightly wounding two officials .\tRB , IN DT JJ NNS IN NNP , DT NN NN VBD IN DT NN IN NNP NNP NNS , RB VBG CD NNS .\nIn the southern province of Kandahar , gunmen on motorcycles killed a pro-government cleric , while in the eastern province of Kunar , rebels ambushed two tankers supplying fuel to U.S. military base .\tIN DT JJ NN IN NNP , NNS IN NNS VBD DT JJ NN , IN IN DT JJ NN IN NNP , NNS VBD CD NNS VBG NN TO NNP JJ NN .\nPalestinian political rivals Hamas and Fatah have called-off scheduled talks on forming a unity government .\tJJ JJ NNS NNP CC NNP VBP JJ VBN NNS IN VBG DT NN NN .\nIn an apparent sign that deep differences remain , aides to President Mahmoud Abbas said he canceled Tuesday 's meeting with Hamas leaders in Gaza .\tIN DT JJ NN IN JJ NNS VBP , NNS TO NNP NNP NNP VBD PRP VBD NNP POS NN IN NNP NNS IN NNP .\nNo new meeting date was announced .\tDT JJ NN NN VBD VBN .\nEarlier , Hamas said it is serious about reaching a deal on a unity government .\tRB , NNP VBD PRP VBZ JJ IN VBG DT NN IN DT NN NN .\nMr. Abbas has said any unity government including Hamas would have to accept interim peace deals with Israel .\tNNP NNP VBZ VBN DT NN NN VBG NNP MD VB TO VB JJ NN NNS IN NNP .\nHamas leaders say they want to share power with Fatah , but they will not accept language that explicitly recognizes Israel .\tNNP NNS VBP PRP VBP TO VB NN IN NNP , CC PRP MD RB VB NN WDT RB VBZ NNP .\nThe militant group 's charter calls for the destruction of the Jewish state .\tDT JJ NN POS NN VBZ IN DT NN IN DT JJ NN .\nHamas has said that it would instead support a long term truce with Israel .\tNNP VBZ VBN IN PRP MD RB VB DT JJ NN NN IN NNP .\nThe Palestinian president has accused Hamas of violating an agreement reached earlier this month on the political platform for a unity government .\tDT JJ NN VBZ VBN NNP IN VBG DT NN VBN RBR DT NN IN DT JJ NN IN DT NN NN .\nHamas denies the charge .\tNNP VBZ DT NN .\nA meeting between Israeli Prime Minister Benjamin Netanyahu and U.S. Middle East envoy George Mitchell has been postponed so the two sides have more time to prepare .\tDT NN IN JJ NNP NNP NNP NNP CC NNP NNP NNP NN NNP NNP VBZ VBN VBN IN DT CD NNS VBP JJR NN TO VB .\nThe Israeli prime minister was due to meet with Mitchell in Paris , France , Thursday , but an Israeli official said his side is seeking to conduct ' more professional work ' on the issues before the meeting .\tDT JJ JJ NN VBD JJ TO VB IN NNP IN NNP , NNP , NNP , CC DT JJ NN VBD PRP$ NN VBZ VBG TO VB `` RBR JJ NN `` IN DT NNS IN DT NN .\nIsraeli Defense Minister Ehud Barack is expected to meet Mitchell instead in Washington next week .\tJJ NNP NNP NNP NNP VBZ VBN TO VB NNP RB IN NNP JJ NN .\nOfficials close to Mr. Netanyahu denied Israeli media reports that the meeting was called off because of a disagreement over Israeli settlement activity .\tNNS RB TO NNP NNP VBD JJ NNS NNS IN DT NN VBD VBN RP IN IN DT NN IN JJ NN NN .\nThe United States has said Israel must halt settlement expansion in the occupied West Bank as part of a comprehensive peace plan .\tDT NNP NNP VBZ VBN NNP MD VB NN NN IN DT JJ NNP NNP IN NN IN DT JJ NN NN .\nIsrael has resisted the notion , saying some degree of expansion must continue to support the natural growth of settler communities .\tNNP VBZ VBN DT NN , VBG DT NN IN NN MD VB TO VB DT JJ NN IN NN NNS .\nU.S. and Iraqi forces have ended a four-day operation , Spear , aimed at clearing insurgent bases and training camps in western Iraq .\tNNP CC JJ NNS VBP VBN DT JJ NN , NNP , VBN IN VBG JJ NNS CC NN NNS IN JJ NNP .\nMilitary officials say forces killed some 50 fighters and discovered more than a dozen car bombs in and around the town of Karabilah during the campaign .\tJJ NNS VBP NNS VBD DT CD NNS CC VBD JJR IN DT NN NN NNS IN CC IN DT NN IN NNP IN DT NN .\nU.S. officials also say a roadside bomb killed an American soldier in a separate incident in western Iraq .\tNNP NNS RB VBP DT NN NN VBD DT JJ NN IN DT JJ NN IN JJ NNP .\nIn Baghdad , the new U.S. ambassador to Iraq , Zalmay Khalilzad , expressed horror at ongoing attacks by insurgents against Iraqi civilians .\tIN NNP , DT JJ NNP NN TO NNP , NNP NNP , VBD NN IN JJ NNS IN NNS IN JJ NNS .\nMr. Khalilzad made the comment after presenting his credentials to President Jalal Talabani in a meeting Tuesday .\tNNP NNP VBD DT NN IN VBG PRP$ NNS TO NNP NNP NNP IN DT NN NNP .\nMeantime , a top U.S. military commander , General John Vines , says some U.S. forces may begin leaving the country after elections scheduled for later this year .\tRB , DT JJ NNP JJ NN , NNP NNP NNP , VBZ DT NNP NNS MD VB VBG DT NN IN NNS VBN IN RB DT NN .\nIranian state television says a bus carrying pilgrims on their way to holy sites in Iraq has crashed into a warehouse in western Iran , killing at least 28 people .\tJJ NN NN VBZ DT NN VBG NNS IN PRP$ NN IN JJ NNS IN NNP VBZ VBN IN DT NN IN JJ NNP , VBG IN JJS CD NNS .\nMonday 's reports say nine others were injured when the bus crashed near Ilam , some 710 kilometers southwest of Tehran .\tNNP POS NNS VBP CD NNS VBD VBN WRB DT NN VBD IN NNP , DT CD NNS JJS IN NNP .\nOfficials blamed high speed and mechanical problems for the accident .\tNNS VBD JJ NN CC JJ NNS IN DT NN .\nIran has one of the worst road safety records in the world .\tNNP VBZ CD IN DT JJS NN NN NNS IN DT NN .\nOfficial statistics show that more than 26,000 people die in road accidents in Iran each year due to unsafe vehicles , disregard for traffic rules and inadequate emergency services .\tJJ NNS VBP IN JJR IN CD NNS VBP IN NN NNS IN NNP DT NN RB TO JJ NNS , VB IN NN NNS CC JJ NN NNS .\nIraq 's government says Prime Minister Nouri al-Maliki will make his first official visit to Iran on Monday .\tNNP POS NN VBZ NNP NNP NNP NNP MD VB PRP$ JJ JJ NN TO NNP IN NNP .\nOfficials say his two-day visit will focus on security issues and promoting bilateral relations .\tNNS VBP PRP$ JJ NN MD VB IN NN NNS CC VBG JJ NNS .\nEarlier this week , Iraqi Deputy Prime Minister Barham Saleh led a delegation of officials on a visit to Iran aimed at enhancing economic ties between the two nations .\tRBR DT NN , JJ NNP NNP NNP NNP NNP VBD DT NN IN NNS IN DT NN TO NNP VBN IN VBG JJ NNS IN DT CD NNS .\nIraq and Iran fought a bloody war in the 1980s when then-Iraqi leader Saddam Hussein was in power .\tNNP CC NNP VBD DT JJ NN IN DT NNS WRB JJ NN NNP NNP VBD IN NN .\nThe neighboring countries have tried to build closer ties in recent years .\tDT JJ NNS VBP VBN TO VB JJR NNS IN JJ NNS .\nThe U.S. national security advisor says Pakistan , Afghanistan and the United States have to cooperate more closely if they are to stem the threat posed by terrorists operating in Pakistan 's border areas .\tDT NNP JJ NN NN VBZ NNP , NNP CC DT NNP NNPS VBP TO VB RBR RB IN PRP VBP TO VB DT NN VBN IN NNS VBG IN NNP POS NN NNS .\nStephen Hadley made the comment at a news conference in Kabul , following a meeting with Afghan President Hamid Karzai .\tNNP NNP VBD DT NN IN DT NN NN IN NNP , VBG DT NN IN JJ NNP NNP NNP .\nMr. Hadley said Washington is working very closely with both Pakistan and Afghanistan to counter the threat .\tNNP NNP VBD NNP VBZ VBG RB RB IN DT NNP CC NNP TO VB DT NN .\nBut , he said , this is a very hard problem and there is no quick fix .\tCC , PRP VBD , DT VBZ DT RB JJ NN CC EX VBZ DT JJ NN .\nThe U.S. official stressed the only way to successfully counter the threat is to learn to work effectively together .\tDT NNP NN VBD DT JJ NN TO RB VB DT NN VBZ TO VB TO VB RB RB .\nHe said that although all three nations had made progress , they have a responsibility to do a lot more .\tPRP VBD IN IN DT CD NNS VBD VBN NN , PRP VBP DT NN TO VB DT NN RBR .\nPakistan has agreed to allow Indian diplomats to visit a jailed Indian man who was sentenced to death for spying .\tNNP VBZ VBN TO VB JJ NNS TO VB DT JJ JJ NN WP VBD VBN TO NN IN VBG .\nA spokesman for Pakistan 's foreign ministry said Friday , that officials for the two countries will work out a date for the visit .\tDT NN IN NNP POS JJ NN VBD NNP , IN NNS IN DT CD NNS MD VB RP DT NN IN DT NN .\nIndia has been pressing its neighbor for access to the man , Sarabjit Singh , whose 1991 conviction on spying and involvement in a series of bombings was upheld last week by Pakistan 's Supreme Court .\tNNP VBZ VBN VBG PRP$ NN IN NN TO DT NN , NNP NNP , WP$ CD NN IN VBG CC NN IN DT NN IN NNS VBD VBN JJ NN IN NNP POS NNP NNP .\nSingh 's family denies the charges , saying he is a farmer who accidentally strayed onto Pakistani soil 15 years ago .\tNNP POS NN VBZ DT NNS , VBG PRP VBZ DT NN WP RB VBD IN JJ NN CD NNS RB .\nThe Indian government has been pressing Pakistan to spare the man 's life .\tDT JJ NN VBZ VBN VBG NNP TO VB DT NN POS NN .\nPresident Bush has started the new year by visiting wounded troops at a military hospital in San Antonio , Texas .\tNNP NNP VBZ VBN DT JJ NN IN VBG JJ NNS IN DT JJ NN IN NNP NNP , NNP .\nThe president traveled from his ranch in Crawford to the medical facility at Fort Sam Houston earlier today .\tDT NN VBD IN PRP$ NN IN NNP TO DT JJ NN IN NNP NNP NNP RB NN .\nA White House spokesman said he would award nine Purple Hearts to wounded soldiers .\tDT NNP NNP NN VBD PRP MD VB CD NNP NNS TO JJ NNS .\nMr. Bush is expected to return to Washington later today , wrapping up his week-long Christmas holiday in Texas .\tNNP NNP VBZ VBN TO VB TO NNP RB NN , VBG RP PRP$ JJ NNP NN IN NNP .\nMr. Bush faces several key issues at the start of the new year , including lobbying Congress to reapprove the Patriot Act , ushering his Supreme Court nominee Samuel Alito through the Senate confirmation process , and overseeing military deployments in Afghanistan and Iraq as some lawmakers call for troop withdrawals .\tNNP NNP VBZ JJ JJ NNS IN DT NN IN DT JJ NN , VBG VBG NNP TO VB DT NNP NNP , VBG PRP$ NNP NNP NN NNP NNP IN DT NNP NN NN , CC VBG JJ NNS IN NNP CC NNP IN DT NNS VBP IN NN NNS .\nIsrael 's Defense Minister - harshly criticized for his performance during last summer 's war in Lebanon - says he will leave the defense ministry , probably after his Labor party holds a leadership election late this month .\tNNP POS NNP NNP : RB VBN IN PRP$ NN IN JJ NN POS NN IN NNP : VBZ PRP MD VB DT NN NN , RB IN PRP$ NN NN VBZ DT NN NN RB DT NN .\nAmir Peretz said in a Saturday interview on Israeli Television ( Channel 2 ) he intends to hand the defense ministry portfolio over to the Kadima party and ask for the finance ministry in exchange .\tNNP NNP VBD IN DT NNP NN IN JJ NNP LRB NNP CD RRB PRP VBZ TO VB DT NN NN NN IN TO DT NNP NN CC VB IN DT NN NN IN NN .\nPeretz and Israeli Prime Minister Ehud Olmert have been under pressure to resign since the release of a report that said the two men were responsible for serious failures in the war in Lebanon .\tNNP CC JJ NNP NNP NNP NNP VBP VBN IN NN TO VB IN DT NN IN DT NN WDT VBD DT CD NNS VBD JJ IN JJ NNS IN DT NN IN NNP .\nMany Israelis consider the war a failure because Israel did not defeat Hezbollah or get back the two soldiers whose kidnapping by the Islamic militant group triggered the war .\tJJ NNS VBP DT NN DT NN IN NNP VBD RB VB NNP CC VB RB DT CD NNS WP$ NN IN DT NNP NN NN VBD DT NN .\nHundreds of protesters in Russia 's republic of Ingushetia have demanded the resignation of its president .\tNNS IN NNS IN NNP POS NN IN NNP VBP VBN DT NN IN PRP$ NN .\nA heavy security presence shadowed Monday 's rally in the city of Nazran as protesters called for the resignation of President Murat Zyazikov , a former KGB general who was elected in 2002 with significant Kremlin support .\tDT JJ NN NN VBD NNP POS NN IN DT NN IN NNP IN NNS VBN IN DT NN IN NNP NNP NNP , DT JJ NNP NN WP VBD VBN IN CD IN JJ NNP NN .\nPolice in the predominantly Muslim republic reportedly arrested one of the protest organizers , Boris Arsamokov .\tNNS IN DT RB JJ NN RB VBN CD IN DT NN NNS , NNP NNP .\nThe Associated Press reports that participants also demanded the Kremlin redraw the boundary between Ingushetia and North Ossetia to return territory that belonged to ethnic Ingush .\tDT NNP NNP VBZ IN NNS RB VBD DT NNP VB DT NN IN NNP CC NNP NNP TO VB NN WDT VBD TO JJ NNP .\nNorth Ossetia is a neighboring republic dominated by Orthodox Christians .\tNNP NNP VBZ DT JJ NN VBN IN NNP NNPS .\nIngushetia also borders Chechnya , where separatists have fought pro-Moscow forces for more than five years .\tNNP RB NNS NNP , WRB NNS VBP VBN JJ NNS IN JJR IN CD NNS .\nProsecutors at the trial of Saddam Hussein have presented a document they said is signed by Saddam approving the execution of 148 Shi'ite Muslim villagers .\tNNS IN DT NN IN NNP NNP VBP VBN DT NN PRP VBD VBZ VBN IN NNP VBG DT NN IN CD NNP NNP NNS .\nThe prosecutors Tuesday said the June 1984 document confirmed the death sentences passed by a tribunal .\tDT NNS NNP VBD DT NNP CD NN VBD DT NN NNS VBN IN DT NN .\nSaddam and seven others are on trial for the killings in Dujail , which happened in a crackdown following an assassination attempt against Saddam .\tNNP CC CD NNS VBP IN NN IN DT NNS IN NNP , WDT VBD IN DT NN VBG DT NN NN IN NNP .\nTheir trial resumed briefly Tuesday after a two week break with the defendants and their legal team present .\tPRP$ NN VBD RB NNP IN DT CD NN NN IN DT NNS CC PRP$ JJ NN NN .\nThey had boycotted previous sessions .\tPRP VBD VBN JJ NNS .\nChief Judge Raouf Abdel-Rahman announced the five-judge panel rejected a defense request to remove him and the chief prosecutor from the trial .\tNNP NNP NNP NNP VBD DT JJ NN VBD DT NN NN TO VB PRP CC DT JJ NN IN DT NN .\nSaddam 's head defense lawyer Khalil al-Dulaimi said he would appeal the decision and asked for a halt in the court 's proceedings .\tNNP POS NN NN NN NNP NNP VBD PRP MD VB DT NN CC VBD IN DT NN IN DT NN POS NNS .\nHe then walked out of the court .\tPRP RB VBD IN IN DT NN .\nThe trial has been adjourned until Wednesday .\tDT NN VBZ VBN VBN IN NNP .\nThe defendants face hanging if convicted .\tDT NNS VBP VBG IN VBN .\nThousands of people demonstrated in northern Japan Saturday in advance of next week 's summit of leaders of the world 's eight richest nations .\tNNS IN NNS VBN IN JJ NNP NNP IN NN IN JJ NN POS NN IN NNS IN DT NN POS CD JJS NNS .\nThe protesters gathered in the city of Sapporo to demand the Group of Eight leaders take action on a number of issues , including soaring food prices .\tDT NNS VBD IN DT NN IN NNP TO VB DT NNP IN CD NNS VBP NN IN DT NN IN NNS , VBG VBG NN NNS .\nThey also denounced the G8 itself for such ills as war , discrimination , poverty and global climate change .\tPRP RB VBD DT NNP PRP IN JJ NNS IN NN , NN , NN CC JJ NN NN .\nForeign activists , farmers and non-governmental organizations made up the ranks of the protesters .\tJJ NNS , NNS CC JJ NNS VBD RP DT NNS IN DT NNS .\nThousands of riot police were deployed along the march route .\tNNS IN NN NNS VBD VBN IN DT NN NN .\nOfficials say at least four people were arrested .\tNNS VBP IN JJS CD NNS VBD VBN .\nSapporo is the capital of Hokkaido Island .\tNNP VBZ DT NN IN NNP NNP .\nThe G8 leaders will convene at a nearby luxury resort on Monday for a three-day summit .\tDT NNP NNS MD VB IN DT JJ NN NN IN NNP IN DT JJ NN .\nThe G8 includes the United States , Japan , Russia , France , Britain , Canada , Italy and Germany .\tDT NNP VBZ DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nBBC journalist Alan Johnston , released Wednesday by Palestinian kidnappers in the Gaza Strip , has received an award for human rights reporting from Amnesty International .\tNNP NN NNP NNP , VBN NNP IN JJ NNS IN DT NNP NNP , VBZ VBN DT NN IN JJ NNS VBG IN NNP NNP .\nAmnesty International 's director for Britain , Kate Allen , said the judges of the annual media awards were determined not to let Johnston 's kidnapping affect their judgment .\tNNP NNP POS NN IN NNP , NNP NNP , VBD DT NNS IN DT JJ NNS NNS VBD VBN RB TO VB NNP POS NN VBP PRP$ NN .\nShe said they were impressed by his insight and commitment to telling stories of everyday life in Gaza .\tPRP VBD PRP VBD VBN IN PRP$ NN CC NN TO VBG NNS IN JJ NN IN NNP .\nThe award was one of nine that Amnesty gave out during a ceremony in London Wednesday just hours after Johnston 's release .\tDT NN VBD CD IN CD IN NNP VBD RP IN DT NN IN NNP NNP RB NNS IN NNP POS NN .\nHis father accepted the award for him , saying , ' It 's been quite a day . '\tPRP$ NN VBD DT NN IN PRP , VBG , `` PRP VBZ VBN RB DT NN . ``\nJohnston was the only Western reporter based in Gaza when he was abducted in March .\tNNP VBD DT JJ JJ NN VBN IN NNP WRB PRP VBD VBN IN NNP .\nAfter his release , he compared his four months in captivity to being buried alive . '\tIN PRP$ NN , PRP VBD PRP$ CD NNS IN NN TO VBG VBN JJ . ``\nThe White House says it can not intervene in the New York City public transit strike , but it has encouraged the parties involved to resolve their differences .\tDT NNP NNP VBZ PRP MD RB VB IN DT NNP NNP NNP JJ NN NN , CC PRP VBZ VBN DT NNS VBN TO VB PRP$ NNS .\nA White House spokesman , Scott McClellan , told reporters Wednesday that federal mediators have offered to help resolve the conflict over city transit workers ' pay and pension issues .\tDT NNP NNP NN , NNP NNP , VBD NNS NNP IN JJ NNS VBP VBN TO VB VB DT NN IN NN NN NNS POS NN CC NN NNS .\nMeanwhile , New Yorkers commuted to work for the second day on foot , on bicycle , or crowded four-at-a-time into taxi cabs .\tRB , NNP NNPS VBD TO VB IN DT JJ NN IN NN , IN NN , CC JJ NN IN NN NNS .\nThe city 's subway and buses shut down early Tuesday after talks deadlocked between the city and the Transport Workers Union .\tDT NN POS NN CC NNS VBD RP RB NNP IN NNS VBD IN DT NN CC DT NNP NNP NNP .\nLater that day , a judge imposed a fine against the union of $ 1 million for each day of the strike .\tRB DT NN , DT NN VBD DT NN IN DT NN IN $ CD CD IN DT NN IN DT NN .\nMerchants are concerned about plummeting sales just before the Christmas and New Year holidays - normally the busiest shopping days of the year .\tNNS VBP VBN IN VBG NNS RB IN DT NNP CC NNP NNP NNS IN RB DT JJS NN NNS IN DT NN .\nThe United States says it is being forced to suspend food aid to North Korea because of Pyongyang 's decision to stop allowing the United Nations to distribute the food .\tDT NNP NNPS VBZ PRP VBZ VBG VBN TO VB NN NN TO NNP NNP IN IN NNP POS NN TO VB VBG DT NNP NNPS TO VB DT NN .\nState Department spokesman Adam Ereli said Thursday U.S. policy requires that international relief workers be able to monitor the distribution of its food .\tNNP NNP NN NNP NNP VBD NNP NNP NN VBZ IN JJ NN NNS VB JJ TO VB DT NN IN PRP$ NN .\nThat safeguard will disappear when the U.N. World Food Program ( WFP ) stops distributing food in North Korea this month .\tDT NN MD VB WRB DT NNP NNP NNP NNP LRB NNP RRB VBZ VBG NN IN NNP NNP DT NN .\nMr. Ereli said it is a common practice for North Korea to ' ignore the needs of its people ' and ' let them starve for inexplicable reasons . '\tNNP NNP VBD PRP VBZ DT JJ NN IN NNP NNP TO `` VB DT NNS IN PRP$ NNS `` CC `` VB PRP VB IN JJ NNS . ``\nNorth Korea announced in August that it no longer wanted U.N. food aid because it said domestic food production had improved .\tNNP NNP VBD IN NNP IN PRP RB RBR VBD NNP NN NN IN PRP VBD JJ NN NN VBD VBN .\nThe WFP said it would close all its food-processing plants in North Korea by the end of this month .\tDT NNP VBD PRP MD VB DT PRP$ JJ NNS IN NNP NNP IN DT NN IN DT NN .\nDanish police are holding seven people suspected of planning terrorist attacks in the Scandinavian country .\tJJ NNS VBP VBG CD NNS VBN IN VBG JJ NNS IN DT JJ NN .\nAuthorities say security police launched a raid early Tuesday and detained nine suspects in Vollsmose , a mostly immigrant neighborhood in the city of Odense .\tNNS VBP NN NNS VBD DT NN JJ NNP CC VBD CD NNS IN NNP , DT RB JJ NN IN DT NN IN NNP .\nPolice released two of the suspects .\tNNS VBD CD IN DT NNS .\nJustice Minister Lene Espersen said police seized materials used to make explosives , and she said most of the suspects are thought to be Danish citizens of foreign origin .\tNNP NNP NNP NNP VBD NNS VBD NNS VBN TO VB NNS , CC PRP VBD JJS IN DT NNS VBP VBN TO VB JJ NNS IN JJ NN .\nEspersen declined to disclose further details but she said evidence showed the group had been plotting to stage an attack somewhere in Denmark .\tNNP VBD TO VB JJ NNS CC PRP VBD NN VBD DT NN VBD VBN VBG TO VB DT NN RB IN NNP .\nLast month , authorities charged four suspects with trying to obtain explosives to carry out a terrorist attack .\tJJ NN , NNS VBD CD NNS IN VBG TO VB NNS TO VB RP DT JJ NN .\nAlso in early August , a Moroccan-born Dane was charged with inciting Muslims to carry out terrorist acts .\tRB IN JJ NNP , DT JJ NN VBD VBN IN VBG NNS TO VB RP JJ NNS .\nPolice in northwest Pakistan say suspected Taliban militants have blown up a primary school that educated girls .\tNNS IN JJ NNP VBP VBN NNP NNS VBP VBN RP DT JJ NN IN VBN NNS .\nOfficials say there were no casualties in Tuesday 's blast because the school was closed for the Eid al-Fitr holiday marking the end of the Muslim holy month of Ramadan .\tNNS VBP EX VBD DT NNS IN NNP POS NN IN DT NN VBD VBN IN DT JJ JJ NN VBG DT NN IN DT NNP JJ NN IN NNP .\nAl-Qaida and Taliban-linked militants who oppose the education of women have destroyed hundreds of girls schools across the country .\tNNP CC JJ NNS WP VBP DT NN IN NNS VBP VBN NNS IN NNS NNS IN DT NN .\nOn Monday , police killed a suicide bomber trying to assassinate a regional education minister , also in the northwest .\tIN NNP , NN VBD DT NN NN VBG TO VB DT JJ NN NN , RB IN DT NN .\nIn other violence , Pakistani security forces say they have arrested 11 suspected militants , including three Afghanis , during security operations in Malakand and Swat districts .\tIN JJ NN , JJ NN NNS VBP PRP VBP VBN CD JJ NNS , VBG CD NNP , IN NN NNS IN NNP CC NNP NNS .\nIn a statement released Tuesday , officials say they also found four inter-linked tunnels and bomb-proof bunkers during a separate search operation near Swat 's Biakand area .\tIN DT NN VBN NNP , NNS VBP PRP RB VBD CD JJ NNS CC JJ NNS IN DT JJ NN NN IN NNP POS NNP NN .\nNATO says two alliance soldiers have been killed and three others wounded in a firefight with Taliban insurgents in eastern Afghanistan .\tNNP VBZ CD NN NNS VBP VBN VBN CC CD NNS VBN IN DT NN IN NNP NNS IN JJ NNP .\nIn a statement , the NATO-led International Security Assistance Force says the fighting erupted when insurgents ambushed a joint NATO-Afghan troop patrol in the Korangal Valley of Kunar province late Thursday .\tIN DT NN , DT JJ NNP NNP NNP NNP VBZ DT NN VBD WRB NNS VBD DT JJ JJ NN NN IN DT NNP NNP IN NNP NN JJ NNP .\nNATO did not identify the nationalities of the dead and wounded soldiers .\tNNP VBD RB VB DT NNS IN DT JJ CC JJ NNS .\nNATO and U.S. forces are battling a resurgent Taliban presence in Afghanistan .\tNNP CC NNP NNS VBP VBG DT JJ NNP NN IN NNP .\nThe group increasingly has used suicide attacks and roadside bomb blasts since U.S.-led forces ousted it from power in the late 2001 .\tDT NN RB VBZ VBN NN NNS CC NN NN NNS IN JJ NNS VBD PRP IN NN IN DT JJ CD .\nStaff from Arabic television station al-Jazeera protested Thursday around the Middle East in the wake of a British news report that alleged President Bush considered bombing the channel 's headquarters last year .\tNN IN JJ NN NN NNP VBD NNP IN DT NNP NNP IN DT NN IN DT JJ NN NN WDT VBD NNP NNP VBD VBG DT NN POS NN JJ NN .\nDozens of al-Jazeera reporters and staff members demonstrated outside the station 's headquarters in Doha , Qatar and in other cities .\tNNS IN NNP NNS CC NN NNS VBD IN DT NN POS NN IN NNP , NNP CC IN JJ NNS .\nThey called for an investigation into the allegations raised in the Daily Mirror article , which was based on an allegedly leaked official memorandum .\tPRP VBD IN DT NN IN DT NNS VBN IN DT NNP NNP NN , WDT VBD VBN IN DT RB JJ NN NN .\nIn Cairo , Beirut and Gaza City , al-Jazeera staffers were joined by colleagues from other Arab media .\tIN NNP , NNP CC NNP NNP , NNP NNS VBD VBN IN NNS IN JJ JJ NNS .\nThe White House has dismissed the tabloid report as ' outlandish and inconceivable . '\tDT NNP NNP VBZ VBN DT JJ NN IN `` JJ CC JJ . ``\nAfter its front-page story Tuesday , the Daily Mirror and two other British papers said Britain 's government threatened them with legal action if they publish further details of the top secret document .\tIN PRP$ JJ NN NNP , DT NNP NNP CC CD JJ JJ NNS VBD NNP POS NN VBD PRP IN JJ NN IN PRP VB JJ NNS IN DT JJ NN NN .\nThe United States is temporarily closing its consulate in the Mexican border city of Nuevo Laredo because of escalating violence .\tDT NNP NNPS VBZ RB VBG PRP$ NN IN DT JJ NN NN IN NNP NNP IN IN VBG NN .\nIn a statement from Mexico City Friday , Ambassador Tony Garza said the consulate will close for one week , beginning August 1 .\tIN DT NN IN NNP NNP NNP , NNP NNP NNP VBD DT NN MD VB IN CD NN , VBG NNP CD .\nHe says Thursday 's battle on the streets of Nuevo Laredo forced the closure to assess the security situation for employees and travelers .\tPRP VBZ NNP POS NN IN DT NNS IN NNP NNP VBD DT NN TO VB DT NN NN IN NNS CC NNS .\nRival gangs clashed with machine guns , grenades and a rocket launcher late Thursday .\tJJ NNS VBN IN NN NNS , NNS CC DT NN NN JJ NNP .\nNo one was killed , but the neighborhood has been described as resembling a war zone .\tDT NN VBD VBN , CC DT NN VBZ VBN VBN IN VBG DT NN NN .\nThe closure announcement comes days after the ambassador asked the U.S. State Department to extend its travel advisory warning Americans about attacks in Mexico .\tDT NN NN VBZ NNS IN DT NN VBD DT NNP NNP NNP TO VB PRP$ NN JJ NN NNS IN NNS IN NNP .\nMore than 100 people have been killed in the town since June , including 18 policemen , as gangs compete for drug-smuggling routes into the United States .\tJJR IN CD NNS VBP VBN VBN IN DT NN IN NNP , VBG CD NNS , IN NNS VBP IN JJ NNS IN DT NNP NNPS .\nPakistan has sentenced five people to death for plotting to kill President Pervez Musharraf two years ago .\tNNP VBZ VBN CD NNS TO NN IN VBG TO VB NNP NNP NNP CD NNS RB .\nArmy spokesman Major General Shaukat Sultan said Friday that the sentences were given to one soldier and four civilians involved in the plot to ram an explosives-laden vehicle into Mr. Musharraf 's motorcade .\tNNP NN NNP NNP NNP NNP VBD NNP IN DT NNS VBD VBN TO CD NN CC CD NNS VBN IN DT NN TO VB DT JJ NN IN NNP NNP POS NN .\nThe president was unhurt in the attack in Rawalpindi , but 15 others died .\tDT NN VBD JJ IN DT NN IN NNP , CC CD NNS VBD .\nEarlier this month , authorities hanged a soldier linked to that attack and an earlier plot against the president .\tRBR DT NN , NNS VBD DT NN VBN TO DT NN CC DT JJR NN IN DT NN .\nMr. Musharraf has become a target for Islamic militants since joining the U.S.-led war on terrorism after the September 11 , 2001 attacks in the United States .\tNNP NNP VBZ VBN DT NN IN JJ NNS IN VBG DT JJ NN IN NN IN DT NNP CD , CD NNS IN DT NNP NNPS .\nPakistani officials say the suspected mastermind of the plot uncovered in London last week to blow up U.S.-bound airplanes is hiding in a mountainous region of northeastern Afghanistan .\tJJ NNS VBP DT JJ NN IN DT NN NN IN NNP JJ NN TO VB RP JJ NNS VBZ VBG IN DT JJ NN IN JJ NNP .\nThe officials said Friday they told the U.S. military that the suspect , an al-Qaida operative , is believed to be in Afghanistan 's Kunar province , which borders Pakistan .\tDT NNS VBD NNP PRP VBD DT NNP NN IN DT NN , DT NNP NN , VBZ VBN TO VB IN NNP POS NNP NN , WDT VBZ NNP .\nThey have not disclosed his name .\tPRP VBP RB VBN PRP$ NN .\nThey say the information was obtained by interrogators questioning British suspect Rashid Rauf , who was arrested in eastern Pakistan and is regarded as a key figure in the foiled plot .\tPRP VBP DT NN VBD VBN IN NNS VBG JJ NN NN NNP , WP VBD VBN IN JJ NNP CC VBZ VBN IN DT JJ NN IN DT VBN NN .\nTwenty-three people are in detention in Britain , and Pakistan is holding seven suspects in the plot .\tCD NNS VBP IN NN IN NNP , CC NNP VBZ VBG CD NNS IN DT NN .\nA flurry of reports Tuesday shows problems for the U.S. economy in the services , retail , factory , and housing sectors .\tDT NN IN NNS NNP VBZ NNS IN DT NNP NN IN DT NNS , JJ , NN , CC NN NNS .\nServices make up the vast majority of the world 's largest economy , but were hit hard in December as consumers cut spending and housing slumped .\tNNPS VBP RP DT JJ NN IN DT NN POS JJS NN , CC VBD VBN RB IN NNP IN NNS VBP NN CC NN VBD .\nHowever , the industry group the Institute for Supply Management that tracks the data says December 's figures showed the services sector shrinking at a slower rate than the prior month .\tRB , DT NN NN DT NNP IN NNP NNP WDT VBZ DT NN VBZ NNP POS NNS VBD DT NNS NN NN IN DT JJR NN IN DT JJ NN .\nRetail sales are also troubled .\tJJ NNS VBP RB VBN .\nBig discounts following the Christmas holiday , December 25 , had consumers shopping for bargains , but were not enough to help retailers salvage a disappointing holiday shopping season .\tJJ NNS VBG DT NNP NN , NNP CD , VBD NNS VBG IN NNS , CC VBD RB RB TO VB NNS VB DT JJ NN NN NN .\nAn industry group , the International Council of Shopping Centers , says sales fell almost one percent last week , compared to the same time last year .\tDT NN NN , DT NNP NNP IN NNP NNP , VBZ NNS VBD RB CD NN JJ NN , VBN TO DT JJ NN JJ NN .\nOther reports Tuesday show U.S. factory orders falling sharply and pending home resales off sharply in November .\tJJ NNS NNP VBZ NNP NN NNS VBG RB CC VBG NN VBZ RP RB IN NNP .\nJanice Karpinski\tNNP NNP\nThe U.S. Army has demoted the reserve officer who commanded the military police unit at Iraq 's Abu Ghraib in a highly publicized prisoner abuse scandal .\tDT NNP NNP VBZ VBN DT NN NN WP VBD DT JJ NN NN IN NNP POS NNP NNP IN DT RB JJ NN NN NN .\nThe Army says Brigadier General Janice Karpinski was found guilty of dereliction of duty , and , upon President Bush 's approval , she was demoted to colonel .\tDT NNP VBZ NN NNP NNP NNP VBD VBN JJ IN NN IN NN , CC , IN NNP NNP POS NN , PRP VBD VBN IN NN .\nHowever , the Army says no action or lack of action by General Karpinski contributed specifically to the abuse of detainees at Abu Ghraib .\tRB , DT NNP VBZ DT NN CC NN IN NN IN NNP NNP VBD RB TO DT NN IN NNS IN NNP NNP .\nGeneral Karpinski is the highest-ranking U.S. officer to be punished in the wake of the prison scandal .\tNNP NNP VBZ DT JJ NNP NN TO VB VBN IN DT NN IN DT NN NN .\nEarlier this week , a U.S. military judge threw out the guilty plea of Army Private First Class Lynndie England in connection with the scandal .\tRBR DT NN , DT NNP JJ NN VBD RP DT JJ NN IN NNP NNP NNP NNP NNP NNP IN NN IN DT NN .\nHer case will now be sent back to military authorities for further consideration .\tPRP$ NN MD RB VB VBN RB TO JJ NNS IN JJ NN .\nInternational human rights groups say gunmen in the Democratic Republic of Congo have killed a prominent rights activist in the east of the country .\tJJ JJ NNS NNS VBP NNS IN DT JJ NNP IN NNP VBP VBN DT JJ NNS NN IN DT NN IN DT NN .\nIn a joint statement Monday , Amnesty International , Human Rights Watch , and Front Line called on Congo 's government to investigate the slaying of Pascal Kabungulu Kibembi .\tIN DT JJ NN NNP , NNP NNP , NNP NNP NNP , CC NNP NNP VBD IN NNP POS NN TO VB DT NN IN NNP NNP NNP .\nHe was executive director of the human rights group Heirs of Justice , based in Congo 's South Kivu region .\tPRP VBD JJ NN IN DT JJ NNS NN NNP IN NNP , VBN IN NNP POS NNP NNP NN .\nThe organizations say that on Sunday , three armed men in uniform broke into Mr. Kabungulu 's home in Bukavu , and shot him in front of his family .\tDT NNS VBP IN IN NNP , CD JJ NNS IN NN VBD IN NNP NNP POS NN IN NNP , CC VBD PRP IN NN IN PRP$ NN .\nThe groups are urging the Congolese government to find and prosecute those responsible and to develop an effective plan to protect human rights workers .\tDT NNS VBP VBG DT JJ NN TO VB CC VB DT JJ CC TO VB DT JJ NN TO VB JJ NNS NNS .\nThey say some rights activists have fled the country because of increased threats .\tPRP VBP DT NNS NNS VBP VBN DT NN IN IN VBN NNS .\nWitnesses say nearly 20 dead whales have washed up Wednesday on a beach in Dakar , Senegal .\tNNS VBP RB CD JJ NNS VBP VBN RP NNP IN DT NN IN NNP , NNP .\nDakar journalist Ricci Shryock tells VOA national police are removing the carcasses in trucks .\tNNP NN NNP NNP VBZ NNP JJ NNS VBP VBG DT NNS IN NNS .\nShe said the whales measure some 3.5 to 4.5 meters .\tPRP VBD DT NNS NN DT CD TO CD NNS .\nLocal villagers say as many as 100 whales swam up to shore late Tuesday night .\tJJ NNS VBP RB JJ IN CD NNS VBD RP TO VB JJ NNP NN .\nFisherman were able to tow some of the animals out to sea .\tNNP VBD JJ TO VB DT IN DT NNS IN TO NN .\nIt is unclear why the animals swam close to shore .\tPRP VBZ JJ WRB DT NNS VBP RB TO VB .\nU.S. President Barack Obama called the heads of the nation 's largest banks to the White House for talks Friday , in the latest effort to find ways to bolster the battered U.S. economy .\tNNP NNP NNP NNP VBD DT NNS IN DT NN POS JJS NNS TO DT NNP NNP IN NNS NNP , IN DT JJS NN TO VB NNS TO VB DT JJ NNP NN .\nEarlier this week , the Obama administration proposed a plan to help troubled banks by using a government and private partnership to buy up to $ 1 trillion in bad loans and other ' toxic assets ' from them .\tRBR DT NN , DT NNP NN VBD DT NN TO VB JJ NNS IN VBG DT NN CC JJ NN TO VB RP TO $ CD CD IN JJ NNS CC JJ `` JJ NNS `` IN PRP .\nThursday , Treasury Secretary Timothy Geithner urged Congress to approve the administration 's plan to expand the government 's powers to monitor large financial firms .\tNNP , NNP NNP NNP NNP VBD NNP TO VB DT NN POS NN TO VB DT NN POS NNS TO VB JJ JJ NNS .\nThere may be some faint signs the effort is working .\tEX MD VB DT NN NNS DT NN VBZ VBG .\nEconomic data published Friday shows consumer spending rose slightly and consumer sentiment improved a small amount in February .\tJJ NNS VBN NNP VBZ NN NN VBD RB CC NN NN VBD DT JJ NN IN NNP .\nEconomists track consumer spending and their views of the economy because consumer demand drives two-thirds of U.S. economic activity .\tNNS VBP NN NN CC PRP$ NNS IN DT NN IN NN NN VBZ NNS IN NNP JJ NN .\nU.S. military officials say the death toll from Wednesday 's helicopter crash in southeastern Afghanistan has risen to 16 , including at least four American crew members .\tNNP JJ NNS VBP DT NN NN IN NNP POS NN NN IN JJ NNP VBZ VBN TO CD , VBG IN JJS CD JJ NN NNS .\nA U.S. statement says two other people listed on the flight manifest are missing .\tDT NNP NN VBZ CD JJ NNS VBN IN DT NN NN VBP VBG .\nThe Chinook helicopter was returning to Bagram air base from Ghazni province , southwest of the capital , Kabul , when it went down near Ghazni city .\tDT NNP NN VBD VBG TO NNP NN NN IN NNP NN , NN IN DT NN , NNP , WRB PRP VBD RB IN NNP NN .\nThe U.S. military suggests severe weather was to blame for what is the deadliest military crash in Afghanistan since the start of U.S.-led operations to oust the Taleban in late 2001 .\tDT NNP NN VBZ JJ NN VBD TO VB IN WP VBZ DT JJS JJ NN IN NNP IN DT NN IN JJ NNS TO VB DT NNP IN JJ CD .\nThe European Union will start talks with Bosnia on Friday on an accord to move the country closer to joining the 25-nation bloc .\tDT NNP NNP MD VB NNS IN NNP IN NNP IN DT NN TO VB DT NN RBR TO VBG DT JJ NN .\nThe EU Enlargement Commissioner Olli Rehn will travel to Bosnia to open talks on the Stabilization and Association Agreement .\tDT NNP NNP NNP NNP NNP MD VB TO NNP TO VB NNS IN DT NNP CC NNP NNP .\nEU foreign ministers say Bosnia 's progress on the agreement depends on its willingness to continue reforms and cooperate with the U.N. war crimes tribunal .\tNNP JJ NNS VBP NNP POS NN IN DT NN VBZ IN PRP$ NN TO VB NNS CC VB IN DT NNP NN NNS JJ .\nTwo key Bosnian war crimes suspects , Bosnian Serb leader Radovan Karadzic and army commander Ratko Mladic , remain at large .\tCD JJ JJ NN NNS VBZ , JJ JJ NN NNP NNP CC NN NN NNP NNP , VBP IN JJ .\nThe EU Monday also extended the mandate for the more than 6,000 peacekeeping troops in Bosnia through next year .\tDT NNP NNP RB VBD DT NN IN DT JJR IN CD VBG NNS IN NNP IN JJ NN .\nThe EU decisions came as senior Bosnian and U.N. diplomats meet in Washington to mark the 10th anniversary of the Dayton Peace Accords , which ended the three-year war in Bosnia-Herzegovina .\tDT NNP NNS VBD IN JJ JJ CC NNP NNS VBP IN NNP TO VB DT JJ NN IN DT NNP NNP NNP , WDT VBD DT JJ NN IN NNP .\nRussian Defense Minister Sergei Ivanov has accused some NATO countries of illegally supplying Soviet-made arms to Georgia .\tJJ NNP NNP NNP NNP VBZ VBN DT NNP NNS IN RB VBG JJ NNS TO NNP .\nThe Russian official Friday did not name the countries allegedly involved , but he said they were from among the seven formerly communist-ruled East European countries that joined the alliance in 2004 .\tDT JJ NN NNP VBD RB VB DT NNS RB VBN , CC PRP VBD PRP VBD IN IN DT CD RB JJ JJ JJ NNS WDT VBD DT NN IN CD .\nIvanov made his comments following a meeting with defense ministers of the 26 NATO countries in the Slovenian seaside resort of Portoroz .\tNNP VBD PRP$ NNS VBG DT NN IN NN NNS IN DT CD NNP NNS IN DT JJ NN NN IN NNP .\nGeorgian officials filed espionage charges against Russian military officers this week .\tJJ NNS VBD NN NNS IN JJ JJ NNS DT NN .\nIvanov alleged the move was part of efforts to force Moscow to withdraw its troops from Georgia and clear the way for Georgian authorities to pursue a military solution in secessionist areas of the country .\tNNP VBD DT NN VBD NN IN NNS TO VB NNP TO VB PRP$ NNS IN NNP CC VB DT NN IN JJ NNS TO VB DT JJ NN IN JJ NNS IN DT NN .\nNATO Secretary-General Jaap de Hoop Scheffer called on both sides to de-escalate tensions .\tNNP NNP NNP IN NNP NNP VBD IN DT NNS TO VB NNS .\nEarlier this month , NATO angered Russia by approving intensified dialogue with Georgia .\tRBR DT NN , NNP VBD NNP IN VBG JJ NN IN NNP .\nPakistan has released 17 former Guantanamo Bay detainees who had been freed from U.S. custody nine months ago and detained for further investigation on their return to Pakistan .\tNNP VBZ VBN CD JJ NNP NNP NNS WP VBD VBN VBN IN NNP NN CD NNS RB CC VBD IN JJ NN IN PRP$ NN TO NNP .\nThe released men are part of a group of 35 Pakistani detainees who were cleared by U.S. authorities last September .\tDT VBN NNS VBP NN IN DT NN IN CD JJ NNS WP VBD VBN IN NNP NNS JJ NNP .\nA religious affairs adviser for the government in Punjab province says the men were finally released today after they promised not to take part in militant activities .\tDT JJ NNS NN IN DT NN IN NNP NN VBZ DT NNS VBD RB VBN NN IN PRP VBD RB TO VB NN IN JJ NNS .\nHundreds of Pakistanis went to Afghanistan to fight alongside the Taleban militia against the United States .\tNNS IN NNS VBD TO NNP TO VB IN DT NNP NN IN DT NNP NNPS .\nAfter the Taleban regime was ousted in late 2001 , many Pakistanis were jailed in Afghanistan , and some were sent to Guantanamo .\tIN DT NNP NN VBD VBN IN JJ CD , JJ NNS VBD VBN IN NNP , CC DT VBD VBN TO NNP .\nUnited Nations Secretary General Kofi Annan says he believes another investigation will be necessary into last month 's assassination of former Lebanese prime minister Rafik Hariri .\tNNP NNP NNP NNP NNP NNP VBZ PRP VBZ DT NN MD VB JJ IN JJ NN POS NN IN JJ JJ JJ NN NNP NNP .\nIn a speech Wednesday to Arab leaders meeting in Algiers , Mr. Annan said that within the next few days he expects to release a report on a fact-finding mission into the February 14th killing .\tIN DT NN NNP TO JJ NNS NN IN NNP , NNP NNP VBD IN IN DT JJ JJ NNS PRP VBZ TO VB DT NN IN DT JJ NN IN DT NNP JJ NN .\nBut he added that another more comprehensive probe might be necessary .\tCC PRP VBD IN DT RBR JJ NN MD VB JJ .\nNews reports from Lebanon say the U.N. fact-finding report is expected to accuse Lebanese authorities of negligence and evidence tampering .\tNNP NNS IN NNP VBP DT NNP JJ NN VBZ VBN TO VB JJ NNS IN NN CC NN NN .\nLebanon 's pro-Syrian government has said it was investigating the massive bombing in Beirut that killed Mr. Hariri .\tNNP POS JJ NN VBZ VBN PRP VBD VBG DT JJ NN IN NNP WDT VBD NNP NNP .\nBut there has been no official statement on the probe .\tCC EX VBZ VBN DT JJ NN IN DT NN .\nMeanwhile , Mr. Annan said he expected the withdrawal of Syrian troops from Lebanon to be completed before Lebanese parliamentary elections set for May .\tRB , NNP NNP VBD PRP VBD DT NN IN JJ NNS IN NNP TO VB VBN IN JJ JJ NNS VBN IN NNP .\nRussian Defense Minister Sergei Ivanov says the government is cutting its troops in Chechnya by 1,000 .\tJJ NNP NNP NNP NNP VBZ DT NN VBZ VBG PRP$ NNS IN NNP IN CD .\nMr. Ivanov made the announcement Friday at a military installation in the southern Russian city of Rostov-on-Don .\tNNP NNP VBD DT NN NNP IN DT JJ NN IN DT JJ JJ NN IN NNP .\nHe gave no reason for the action .\tPRP VBD DT NN IN DT NN .\nThe Itar-Tass news agency says airborne troops and marine units in the mountainous regions of Chechnya will be withdrawn .\tDT JJ NN NN VBZ JJ NNS CC JJ NNS IN DT JJ NNS IN NNP MD VB VBN .\nMr. Ivanov says the only forces that will remain next year in the war-torn breakaway republic will be an infantry division and Defense Ministry commando forces .\tNNP NNP VBZ DT JJ NNS WDT MD VB JJ NN IN DT JJ NN NN MD VB DT NN NN CC NNP NNP NN NNS .\nRussia has been fighting separatists in Chechnya for most of the past decade , in a conflict that has devastated the region .\tNNP VBZ VBN VBG NNS IN NNP IN JJS IN DT JJ NN , IN DT NN WDT VBZ VBN DT NN .\nPresident Vladimir Putin has repeatedly said the fighting is dying down , but the violence continues .\tNNP NNP NNP VBZ RB VBN DT NN VBZ VBG RP , CC DT NN VBZ .\nU.N. Secretary-General Kofi Annan has urged all Iraqis to refrain from acts of violence and put aside their differences , in the wake of Monday 's suicide car bombing in Hilla that killed at least 125 people .\tNNP NNP NNP NNP VBZ VBN DT NNS TO VB IN NNS IN NN CC VB RP PRP$ NNS , IN DT NN IN NNP POS NN NN NN IN NNP WDT VBD IN JJ CD NNS .\nA statement issued through his spokesman condemned the attack as a flagrant violation of international law that seeks to undermine the prospects of peace , democracy and prosperity .\tDT NN VBN IN PRP$ NN VBD DT NN IN DT JJ NN IN JJ NN WDT VBZ TO VB DT NNS IN NN , NN CC NN .\nThe attack , the deadliest of its kind since the fall of Saddam Hussein 's regime in 2003 , wounded more than 100 other people .\tDT NN , DT JJS IN PRP$ NN IN DT NN IN NNP NNP POS NN IN CD , VBD RBR IN CD JJ NNS .\nWitnesses say the bomber drove a car into a crowd of people seeking medical checkups needed for government jobs .\tNNS VBP DT NN VBD DT NN IN DT NN IN NNS VBG JJ NNS VBN IN NN NNS .\nThere has been no claim of responsibility .\tEX VBZ VBN DT NN IN NN .\nThe White House condemned the attack .\tDT NNP NNP VBD DT NN .\nU.S. lawmaker Connie Mack says Arabic-language al-Jazeera television , which has allied with Latin America 's Telesur network , is nothing more than a mouthpiece for terrorists .\tNNP NN NNP NNP VBZ NNP NNP NN , WDT VBZ VBN IN NNP NNP POS NNP NN , VBZ DT JJR IN DT NN IN NNS .\nThe Republican congressman from the southeastern U.S. state of Florida tells VOA he is very concerned about that alliance .\tDT JJ NN IN DT JJ NNP NN IN NNP VBZ NNP PRP VBZ RB JJ IN DT NN .\nEarlier , he said it would create a global network for terrorists and other enemies of freedom .\tRB , PRP VBD PRP MD VB DT JJ NN IN NNS CC JJ NNS IN NN .\nHe is calling for Congress to pass a plan authorizing the U.S. government to begin radio and television broadcasts into Venezuela .\tPRP VBZ VBG IN NNP TO VB DT NN VBG DT NNP NN TO VB NN CC NN NNS IN NNP .\nThursday , Venezuela 's Communications Ministry said Congressman Mack 's comments represent a veiled threat that the United States will attack Telesur 's headquarters in Caracas .\tNNP , NNP POS NNP NNP VBD NNP NNP POS NNS VBP DT VBN NN IN DT NNP NNPS MD VB NNP POS NN IN NNP .\nA spokesman for the State Department said Friday it is not up to the U.S. government to dictate what sort of business deals media organizations can make .\tDT NN IN DT NNP NNP VBD NNP PRP VBZ RB RB TO DT NNP NN TO VB WP NN IN NN NNS NNS NNS MD VB .\nPresident Bush will visit the U.S. Gulf Coast Sunday as the region continues to clean-up from Hurricane Katrina .\tNNP NNP MD VB DT NNP NNP NNP NNP IN DT NN VBZ TO VB IN NNP NNP .\nThe visit will be Mr. Bush 's third trip to the area since the devastating storm hit nearly two weeks ago .\tDT NN MD VB NNP NNP POS JJ NN TO DT NN IN DT JJ NN VBD RB CD NNS RB .\nCleanup and recovery efforts in New Orleans are showing signs of progress .\tNN CC NN NNS IN NNP NNP VBP VBG NNS IN NN .\nThe U.S. Army Corps of Engineers now says it will take 40 days to pump the floodwaters out of the city , cutting its original estimate in half .\tDT NNP NNP NNP IN NNPS RB VBZ PRP MD VB CD NNS TO VB DT NNS IN IN DT NN , VBG PRP$ JJ NN IN NN .\nThe city 's Louis Armstrong International Airport will reopen to passenger traffic on Tuesday .\tDT NN POS NNP NNP NNP NNP MD VB TO NN NN IN NNP .\nMeanwhile , the block-to-block search continues for those killed when Katrina hit landfall .\tRB , DT JJ NN VBZ IN DT VBN WRB NNP VBD NN .\nOfficials now cautiously say the death toll may be far lower than the thousands originally feared .\tNNS RB RB VBP DT NN NN MD VB RB JJR IN DT NNS RB VBN .\nThe death toll now stands at nearly 400 across the region , with 154 in New Orleans .\tDT NN NN RB VBZ IN RB CD IN DT NN , IN CD IN NNP NNP .\nMaoist rebels in Nepal have raided a western town , in one of their largest assaults since ending a unilateral ceasefire earlier this month .\tNNP NNS IN NNP VBP VBN DT JJ NN , IN CD IN PRP$ JJS NNS IN VBG DT JJ NN RBR DT NN .\nSecurity officials say at least six policemen were missing , but no casualties were reported when the rebels fired on a police station as well as banks and offices in the town of Dhangadi overnight .\tNN NNS VBP IN JJS CD NNS VBD VBG , CC DT NNS VBD VBN WRB DT NNS VBN IN DT NN NN RB RB IN NNS CC NNS IN DT NN IN NNP RB .\nThe officials say Nepalese soldiers returned fire , and reclaimed control of the town after a prolonged gunbattle .\tDT NNS VBP JJ NNS VBD NN , CC VBD NN IN DT NN IN DT JJ NN .\nMaoist rebels have carried out a series of attacks in western Nepal since they canceled a four-month long truce on January second .\tNNP NNS VBP VBN RP DT NN IN NNS IN JJ NNP IN PRP VBD DT JJ JJ NN IN NNP NN .\nThe guerillas say they resumed hostilities because Nepal 's royalist government refused to match the ceasefire .\tDT NNS VBP PRP VBD NNS IN NNP POS NN NN VBD TO VB DT NN .\nThe Maoists have been fighting to overthrow Nepal 's monarchy since 1996 .\tDT NNS VBP VBN VBG TO VB NNP POS NN IN CD .\nAt least 12,000 people have died in the fighting .\tIN JJS CD NNS VBP VBN IN DT NN .\nThe foreign ministers of Japan and South Korea have discussed their strained relations in a meeting on the sidelines of an Asian summit in Malaysia 's capital , Kuala Lumpur .\tDT JJ NNS IN NNP CC NNP NNP VBP VBN PRP$ JJ NNS IN DT NN IN DT NNS IN DT JJ NN IN NNP POS NN , NNP NNP .\nDuring talks Saturday , Seoul 's Foreign Minister Ban Ki-moon told his Japanese counterpart , Taro Aso , that visits by Japan 's prime minister to a controversial war shrine are disrupting bilateral relations .\tIN NNS NNP , NNP POS NNP NNP NNP NNP VBD PRP$ JJ NN , NNP NNP , IN NNS IN NNP POS JJ NN TO DT JJ NN NN VBP VBG JJ NNS .\nThe shrine honors Japan 's war dead , including convicted war criminals .\tDT NN VBZ NNP POS NN NN , VBG VBN NN NNS .\nCritics , including South Korea and China , say the shrine glorifies Japan 's wartime past .\tNNS , VBG NNP NNP CC NNP , VBP DT NN VBZ NNP POS NN NN .\nBut Japanese Prime Minister Junichiro Koizumi says he visits the shrine to pray for peace .\tCC JJ NNP NNP NNP NNP VBZ PRP VBZ DT NN TO VB IN NN .\nThursday , China ruled out holding a meeting with senior leaders from Japan and South Korea during the regional summit , which officially begins Monday .\tNNP , NNP VBD RP VBG DT NN IN JJ NNS IN NNP CC NNP NNP IN DT JJ NN , WDT RB VBZ NNP .\nThe three nations have met on the sidelines of the Association of Southeast Asian Nations summit for the past six years .\tDT CD NNS VBP VBN IN DT NNS IN DT NNP IN NNP NNP NNP NN IN DT JJ CD NNS .\nNATO has acknowledged responsibility for killing 12 Afghan civilians during a major U.S.-led offensive against the Taliban in southern Afghanistan .\tNNP VBZ VBN NN IN VBG CD JJ NNS IN DT JJ JJ NN IN DT NNP IN JJ NNP .\nNATO says the civilians were killed when two rockets fired at insurgents missed their intended target .\tNNP VBZ DT NNS VBD VBN WRB CD NNS VBN IN NNS VBD PRP$ JJ NN .\nAfghan President Hamid Karzai expressed sadness at the incident .\tJJ NNP NNP NNP VBD NN IN DT NN .\nHe has ordered an investigation into the deaths in the Nad Ali district .\tPRP VBZ VBN DT NN IN DT NNS IN DT NNP NNP NN .\nThe large-scale military operation began early Saturday , concentrated on the farming community of Marjah in southern Helmand province .\tDT JJ JJ NN VBD JJ NNP , VBD IN DT JJ NN IN NNP IN JJ NNP NN .\nSome 15,000 U.S. , British and Afghan soldiers are involved in the offensive , designed to oust the Taliban from an area that has been an insurgent stronghold .\tDT CD NNP , JJ CC JJ NNS VBP VBN IN DT NN , VBN TO VB DT NNP IN DT NN WDT VBZ VBN DT JJ NN .\nAfghan officials said Sunday that at least 27 insurgents have been killed during the fighting .\tJJ NNS VBD NNP IN IN JJS CD NNS VBP VBN VBN IN DT NN .\nNATO says one American and one British soldier were killed on the first day of the offensive .\tNNP VBZ CD NNP CC CD JJ NN VBD VBN IN DT JJ NN IN DT NN .\nDuring an interview Sunday on CNN , U.S. National Security Advisor James Jones described the operation as going well .\tIN DT NN NNP IN NNP , NNP NNP NNP NNP NNP NNP VBD DT NN IN VBG RB .\nU.S. Secretary of State Condoleezza Rice says the Bush administration is still considering setting up a diplomatic mission in Iran .\tNNP NN IN NN NNP NNP VBZ DT NNP NN VBZ RB VBG VBG RP DT JJ NN IN NNP .\nRice refuted an Associated Press report that the administration had decided to hand the issue to its successor .\tNNP VBD DT NNP NNP NN IN DT NN VBD VBN TO VB DT NN TO PRP$ NN .\nShe told reporters that Washington continues to look at the idea .\tPRP VBD NNS IN NNP VBZ TO VB IN DT NN .\nOn a flight from India to Kazakhstan for talks on other matters , Rice called the idea interesting .\tIN DT NN IN NNP TO NNP IN NNS IN JJ NNS , NNP VBD DT NN JJ .\nShe did not comment further .\tPRP VBD RB VB RB .\nThe United States and Iran are at odds over the Middle East country 's nuclear program .\tDT NNP NNPS CC NNP VBP IN NNS IN DT NNP NNP NN POS JJ NN .\nIran has ignored U.N. resolutions demanding that it stop uranium enrichment .\tNNP VBZ VBN NNP NNS VBG IN PRP VB NN NN .\nU.S. and European governments fear that Iran is trying to build a nuclear bomb .\tNNP CC JJ NNS VBP IN NNP VBZ VBG TO VB DT JJ NN .\nTehran denies that and says it wants only to produce low-grade fuel for nuclear energy .\tNNP VBZ DT CC VBZ PRP VBZ RB TO VB JJ NN IN JJ NN .\nThe same enrichment process also could be used to produce highly enriched uranium for nuclear weapons .\tDT JJ NN NN RB MD VB VBN TO VB RB VBN NN IN JJ NNS .\nSri Lanka 's military says rebels have ambushed a navy bus in the east of the country , wounding 12 sailors and sparking a gunbattle in which two civilians also died .\tNNP NNP POS JJ VBZ NNS VBP VBN DT NN NN IN DT NN IN DT NN , VBG CD NNS CC VBG DT NN IN WDT CD NNS RB VBD .\nOfficials blame Tamil rebels for Tuesday 's attack in Trincomalee .\tNNS VBP NNP NNS IN NNP POS NN IN NNP .\nThey say the rebels set off a fragmentation mine as the navy bus passed by , and then opened fire on the bus with small arms .\tPRP VBP DT NNS VBN RP DT NN NN IN DT NN NN VBN IN , CC RB VBD NN IN DT NN IN JJ NNS .\nOfficials say the sailors shot back , and two civilians were killed in the crossfire .\tNNS VBP DT NNS VBD RB , CC CD NNS VBD VBN IN DT NN .\nSri Lanka 's government says at least 69 security personnel have been killed by rebels since early December .\tNNP NNP POS NN VBZ IN JJS CD NN NNS VBP VBN VBN IN NNS IN JJ NNP .\nThe violence has severely strained a ceasefire signed by both sides in 2002 .\tDT NN VBZ RB VBN DT NN VBN IN DT NNS IN CD .\nRussian officials say they will send a naval task force to the Caribbean later this year for possible joint exercises with Venezuelan forces .\tJJ NNS VBP PRP MD VB DT JJ NN NN TO DT NNP RB DT NN IN JJ JJ NNS IN JJ NNS .\nA Russian Foreign Ministry spokesman , Andrei Nesterenk , says the nuclear-powered battle cruiser Peter the Great will lead the naval mission , which will also include the destroyer Admiral Chabanenko and other vessels including a fuel tanker .\tDT JJ NNP NNP NN , NNP NNP , VBZ DT JJ NN NN NNP DT NNP MD VB DT JJ NN , WDT MD RB VB DT NN NNP NNP CC JJ NNS VBG DT NN NN .\nThe spokesman said anti-submarine aircraft will also be sent to Venezuela , possibly in November .\tDT NN VBD JJ NN MD RB VB VBN TO NNP , RB IN NNP .\nThe spokesman said the visit was planned long before the outbreak of the Georgian conflict and is not directed against any third country .\tDT NN VBD DT NN VBD VBN RB IN DT NN IN DT JJ NN CC VBZ RB VBN IN DT JJ NN .\nRussian authorities have accused the United States of rearming Georgia while using military vessels to deliver humanitarian aid to the Caucasus country .\tJJ NNS VBP VBN DT NNP NNPS IN VBG NNP IN VBG JJ NNS TO VB JJ NN TO DT NNP NN .\nU.S. officials have denied the charge Venezuela 's leftist President Hugo Chavez , a harsh critic of the U.S. government , has forged closer ties with Moscow , including arms purchases and other economic deals .\tNNP NNS VBP VBN DT NN NNP POS JJ NNP NNP NNP , DT JJ NN IN DT NNP NN , VBZ VBN JJR NNS IN NNP , VBG NNS NNS CC JJ JJ NNS .\nThe U.S. military in Iraq says a roadside bomb has killed one of its troops south of the capital , Baghdad .\tDT NNP NN IN NNP VBZ DT NN NN VBZ VBN CD IN PRP$ NNS RB IN DT NN , NNP .\nThe military says the soldier was killed Thursday when his vehicle hit the bomb during a combat patrol near Iskandariyah .\tDT NN VBZ DT NN VBD VBN NNP WRB PRP$ NN VBD DT NN IN DT NN NN IN NNP .\nThe United States invaded Iraq in 2003 , citing concerns about alleged weapons of mass destruction programs .\tDT NNP NNPS VBD NNP IN CD , VBG NNS IN JJ NNS IN NN NN NNS .\nNo such weapons were found .\tDT JJ NNS VBD VBN .\nIraqi officials say the country 's deputy minister of electricity , Raad al-Harith , and seven of his bodyguards have been freed hours after their abduction in Baghdad .\tJJ NNS VBP DT NN POS JJ NN IN NN , NNP NNP , CC CD IN PRP$ NNS VBP VBN VBN NNS IN PRP$ NN IN NNP .\nThe fate of 12 other bodyguards kidnapped with them is not known .\tDT NN IN CD JJ NNS VBN IN PRP VBZ RB VBN .\nGunmen wearing camouflage uniforms intercepted the minister 's convoy early Tuesday .\tNNS VBG NN NNS VBD DT NN POS NN RB NNP .\nThe abduction was the second high-profile kidnapping in Baghdad in less than a week .\tDT NN VBD DT JJ JJ NN IN NNP IN JJR IN DT NN .\nOn Saturday , gunmen kidnapped a Sunni Arab legislator , Tayseer al-Mashhadani , and seven of her bodyguards .\tIN NNP , NNS VBD DT NNP NNP NN , NNP NNP , CC CD IN PRP$ NNS .\nSunni lawmakers have since boycotted parliament and demanded her release .\tNNP NNS VBP IN VBN NN CC VBD PRP$ NN .\nSeparately , the U.S. military says coalition forces detained three suspected al-Qaida in Iraq terrorists , including a senior member of the group , Monday during a raid near Tikrit .\tRB , DT NNP NN VBZ NN NNS VBD CD JJ NNP IN NNP NNS , VBG DT JJ NN IN DT NN , NNP IN DT NN IN NNP .\nThe U.S. military also says Iraqi soldiers rescued three Red Crescent employees from kidnappers Monday near the Al-Nida Mosque in Baghdad .\tDT NNP NN RB VBZ JJ NNS VBD CD NNP NNP NNS IN NNS NNP IN DT NNP NNP IN NNP .\nThe U.S. space agency NASA is counting down toward a nighttime launch of the space shuttle Endeavouron a 16-day mission to the International Space Station .\tDT NNP NN NN NNP VBZ VBG RP IN DT JJ NN IN DT NN NN NNP DT JJ NN TO DT NNP NNP NNP .\nThe shuttle is scheduled to launch early Tuesday morning with seven astronauts and some high-tech freight on board .\tDT NN VBZ VBN TO VB JJ NNP NN IN CD NNS CC DT JJ NN IN NN .\nEndeavour will deliver the first module of a Japanese space laboratory and a Canadian robot designed to handle some of the jobs performed by spacewalking astronauts .\tNNP MD VB DT JJ NN IN DT JJ NN NN CC DT JJ NN VBN TO VB DT IN DT NNS VBN IN VBG NNS .\nThe Japanese lab is called Kibo , a Japanese word for hope .\tDT JJ NN VBZ VBN NNP , DT JJ NN IN NN .\nIf shuttle flights go according to schedule , its final module should be delivered next year to the space station .\tIN NN NNS VBP VBG TO NN , PRP$ JJ NN MD VB VBN JJ NN TO DT NN NN .\nThe Canadian robot , called Dextre , can be operated by the crew inside the station or by flight controllers on the ground .\tDT JJ NN , VBN NNP , MD VB VBN IN DT NN IN DT NN CC IN NN NNS IN DT NN .\nAstronauts intend to perform five spacewalks during their stay at the space station .\tNNS VBP TO VB CD NNS IN PRP$ NN IN DT NN NN .\nThe 16-day mission will be the longest shuttle mission to the space station to date .\tDT JJ NN MD VB DT JJS NN NN TO DT NN NN TO NN .\nTop Palestinian officials have arrived in Lebanon for the first visit by Palestinian leadership in more than two decades .\tJJ NN NNS VBP VBN IN NNP IN DT JJ NN IN JJ NN IN JJR IN CD NNS .\nThe head of the Palestine Liberation Organization , Mahmoud Abbas , and Prime Minister Ahmed Qureia are due to meet with Lebanese President Emile Lahoud and other top officials Wednesday .\tDT NN IN DT NNP NNP NNP , NNP NNP , CC NNP NNP NNP NNP VBP JJ TO VB IN JJ NNP NNP NNP CC JJ JJ NNS NNP .\nMonday , Mr. Abbas was in Syria for landmark talks with Syrian President Bashar al-Assad to discuss plans for future peace efforts with Israel .\tNNP , NNP NNP VBD IN NNP IN NN NNS IN JJ NNP NNP NNP TO VB NNS IN JJ NN NNS IN NNP .\nThe trips by Palestinian leaders to Lebanon and Syria are aimed at improving relations that were strained under Palestinian leader Yasser Arafat , who died last month .\tDT NNS IN JJ NNS TO NNP CC NNP VBP VBN IN VBG NNS WDT VBD VBN IN JJ NN NNP NNP , WP VBD JJ NN .\nBoth countries opposed Mr. Arafat 's signing of the Oslo peace accords in 1993 , saying the agreement derailed a joint Arab approach to peace with Israel .\tDT NNS VBD NNP NNP POS NN IN DT NNP NN NNS IN CD , VBG DT NN VBD DT JJ JJ NN TO NN IN NNP .\nMore than 100 countries with delegates at a global conference on racism have agreed on a declaration calling for an end to intolerance and xenophobia .\tJJR IN CD NNS IN NNS IN DT JJ NN IN NN VBP VBN IN DT NN VBG IN DT NN TO NN CC NN .\nThe declaration , adopted Tuesday in Geneva , reaffirms a 2001 statement issued at the first United Nations conference on racism in Durban , South Africa .\tDT NN , VBN NNP IN NNP , VBZ DT CD NN VBN IN DT JJ NNP NNPS NN IN NN IN NNP , NNP NNP .\nThe decision Tuesday by consensus came a day after Iranian President Mahmoud Ahmadinejad stirred controversy with an address in which he described Israel as ' cruel , repressive and racist . '\tDT NN NNP IN NN VBD DT NN IN JJ NNP NNP NNP VBD NN IN DT NN IN WDT PRP VBD NNP IN `` JJ , JJ CC JJ . ``\nMr. Ahmadinejad 's address sparked a walkout by delegates from 23 European Union nations .\tNNP NNP POS NN VBD DT NN IN NNS IN CD NNP NNP NNS .\nThe United States and eight other Western countries boycotted the conference over fears that it would become a forum for anti-Semitism .\tDT NNP NNPS CC CD JJ JJ NNS VBD DT NN IN NNS IN PRP MD VB DT NN IN NN .\nU.N. and Western diplomats criticized the Iranian president 's remarks as outrageous , anti-Semitic and an incitement to hatred .\tNNP CC NNP NNS VBD DT JJ NN POS NNS IN JJ , JJ CC DT NN IN NN .\nU.N. Secretary-General Ban Ki-moon said the Iranian leader used the meeting ' to accuse , divide and even incite . '\tNNP NNP NNP NNP VBD DT JJ NN VBD DT NN `` TO VB , VB CC RB VB . ``\nIsrael says it has launched fresh airstrikes against Palestinian militant targets in the Gaza Strip .\tNNP VBZ PRP VBZ VBN JJ NNS IN JJ JJ NNS IN DT NNP NNP .\nArmy officials say Israeli aircraft attacked at least eight roads and bridges Sunday leading to sites used by militants to launch rockets into Israeli territory .\tNN NNS VBP JJ NN VBD IN JJS CD NNS CC NNS NNP VBG TO NNS VBN IN NNS TO VB NNS IN JJ NN .\nIt was not immediately clear if there were any casualties .\tPRP VBD RB RB JJ IN EX VBD DT NNS .\nOn Saturday , Palestinian officials said a Palestinian militant was killed and three others wounded in an explosion in the Gaza Strip .\tIN NNP , JJ NNS VBD DT JJ NN VBD VBN CC CD NNS VBD IN DT NN IN DT NNP NNP .\nSecurity officials said Israeli aircraft fired a missile at a car carrying the militant ( said to be a member of the Abu Rish Brigades ) .\tNN NNS VBD JJ NN VBD DT NN IN DT NN VBG DT NN LRB VBN TO VB DT NN IN DT NNP NNP NNP RRB .\nIsrael denied the report .\tNNP VBD DT NN .\nOfficials in Pakistan say suspected tribal rebels blew up three natural gas pipelines Saturday in southwestern Baluchistan province .\tNNS IN NNP VBP JJ JJ NNS VBD RP CD JJ NN NNS NNP IN JJ NNP NN .\nGas company officials say the attacks disrupted natural gas supplies to several districts , but caused no injuries .\tNNP NN NNS VBP DT NNS VBD JJ NN NNS TO JJ NNS , CC VBD DT NNS .\nNo one immediately claimed responsibility for the bombings .\tDT NN RB VBD NN IN DT NNS .\nElsewhere , Pakistani security forces say they attacked a militant hideout near the Afghan border , killing between 15 and 20 suspected militants .\tRB , JJ NN NNS VBP PRP VBD DT JJ NN IN DT JJ NN , VBG IN CD CC CD JJ NNS .\nA military statement said the operation began before dawn in the North Waziristan tribal region , where foreign militants and their local supporters are hiding .\tDT JJ NN VBD DT NN VBD IN NN IN DT NNP NNP JJ NN , WRB JJ NNS CC PRP$ JJ NNS VBP VBG .\nPakistan is trying to clear its rugged , semi-autonomous border lands of militants , many of whom fled there after the overthrow of the Taleban in Afghanistan .\tNNP VBZ VBG TO VB PRP$ JJ , JJ NN NNS IN NNS , NN IN WP VBD RB IN DT NN IN DT NNP IN NNP .\nThe White House says President George Bush has reaffirmed strong U.S.-Pakistani relations , in a phone call he made to Pakistan 's President Pervez Musharraf .\tDT NNP NNP VBZ NNP NNP NNP VBZ VBN JJ JJ NNS , IN DT NN NN PRP VBD TO NNP POS NNP NNP NNP .\nFriday 's conversation between the two leaders took place a day after Mr. Musharraf dismissed media speculation he is ready to resign .\tNNP POS NN IN DT CD NNS VBD NN DT NN IN NNP NNP VBD NNS NN PRP VBZ JJ TO VB .\nHe also said there are no differences between him and the chief of the country 's powerful military , General Ashfaq Parvez Kayani .\tPRP RB VBD EX VBP DT NNS IN PRP CC DT NN IN DT NN POS JJ NN , NNP NNP NNP NNP .\nMr. Musharraf was referring to a report in a Pakistani newspaper , The News Daily , that speculated he was about to quit following a meeting with the general on Wednesday .\tNNP NNP VBD VBG TO DT NN IN DT JJ NN , DT NNP NNP , WDT VBD PRP VBD IN TO VB VBG DT NN IN DT NN IN NNP .\nThe military said the two men discussed routine matters .\tDT NN VBD DT CD NNS VBD JJ NNS .\nThe landmark trial of a Congolese war crimes suspect has been temporarily adjourned after the first witness suddenly recanted his earlier testimony .\tDT NN NN IN DT JJ NN NNS VBP VBZ VBN RB VBN IN DT JJ NN RB VBD PRP$ JJR NN .\nThe young man was testifying Wednesday against Thomas Lubanga , the first suspect to go on trial at the International Criminal Court in The Hague .\tDT JJ NN VBD VBG NNP IN NNP NNP , DT JJ NN TO VB IN NN IN DT NNP NNP NNP IN DT NNP .\nThe witness , whose name was not released , initially said Lubanga 's men recruited him off a street and sent him to a military training camp .\tDT NN , WP$ NN VBD RB VBN , RB VBD NNP POS NNS VBD PRP RP DT NN CC VBD PRP TO DT JJ NN NN .\nBut after a break , the witness told the court his earlier account was incorrect .\tCC IN DT NN , DT NN VBD DT NN PRP$ JJR NN VBD JJ .\nProsecutor Fatou Bensouda requested a delay to investigate what caused the man to change his testimony , and to review measures designed to protect his safety .\tNNP NNP NNP VBD DT NN TO VB WP VBD DT NN TO VB PRP$ NN , CC TO VB NNS VBN TO VB PRP$ NN .\nLubanga , a former Congolese militia leader , is accused of recruiting and using children under the age of 15 as soldiers during hostilities in the eastern Democratic Republic of Congo .\tNNP , DT JJ JJ NN NN , VBZ VBN IN NN CC VBG NNS IN DT NN IN CD IN NNS IN NNS IN DT JJ JJ NNP IN NNP .\nA published report says U.S. military officials in Iraq knew that American forces were abusing detainees throughout that country , more than a month before mistreatment at the Abu Ghraib prison was uncovered .\tDT JJ NN VBZ NNP JJ NNS IN NNP VBD IN JJ NNS VBD VBG NNS IN DT NN , JJR IN DT NN IN NN IN DT NNP NNP NN VBD VBN .\nThe Washington Post newspaper Wednesday , says a confidential report about the abuse was given to Army generals in Iraq in December 2003 , before military investigators received photographs of the abuses at Abu Ghraib .\tDT NNP NNP NN NNP , VBZ DT JJ NN IN DT NN VBD VBN TO NNP NNS IN NNP IN NNP CD , IN JJ NNS VBD NNS IN DT NNS IN NNP NNP .\nThat Abu Ghraib scandal became public several months later when news media published photographs of the abuse .\tDT NNP NNP NN VBD JJ JJ NNS RB WRB NN NNS VBN NNS IN DT NN .\nThe Post says the confidential report was written by retired Colonel Stuart Herrington .\tDT NNP VBZ DT JJ NN VBD VBN IN JJ NNP NNP NNP .\nHe disclosed that members of a special joint military and Central Intelligence Agency task force TF-121 were abusing detainees throughout Iraq and using a secret interrogation facility to hide their activities .\tPRP VBD IN NNS IN DT JJ JJ NN CC NNP NNP NNP NN NN NNP VBD VBG NNS IN NNP CC VBG DT JJ NN NN TO VB PRP$ NNS .\nA Pentagon official told the Post the Herrington report was taken very seriously , and that its findings were passed on to U.S. Central Command .\tDT NNP NN VBD DT NNP DT NNP NN VBD VBN RB RB , CC IN PRP$ NNS VBD VBN IN TO NNP NNP NNP .\nAt least 15 more Iraqi police and national guardsmen have been killed , as insurgents press their campaign to disrupt upcoming national elections .\tIN JJS CD JJR JJ NN CC JJ NNS VBP VBN VBN , IN NNS VBP PRP$ NN TO VB JJ JJ NNS .\nA suicide car-bomb explosion in Baghdad near the headquarters of Prime Minister Iyad Allawi 's political party killed two police and a civilian and wounded more than 20 people .\tDT NN NN NN IN NNP IN DT NN IN NNP NNP NNP NNP POS JJ NN VBD CD NNS CC DT JJ CC VBD JJR IN CD NNS .\nNorth of the capital , U.S. authorities say a car bombing near a U.S. military base in Balad killed four Iraqi guardsmen and wounded 14 .\tNNP IN DT NN , NNP NNS VBP DT NN VBG IN DT NNP JJ NN IN NNP VBD CD JJ NNS CC VBD CD .\nIn Tikrit , six guardsmen were reported killed by roadside bombs , and two more Iraqi officers were killed at a checkpoint in the nearby town of Baiji .\tIN NNP , CD NNS VBD VBN VBN IN NN NNS , CC CD JJR JJ NNS VBD VBN IN DT NN IN DT JJ NN IN NNP .\nSeparately , officials say a policeman was killed in Mosul when he tried to move a decapitated body that was rigged with explosives .\tRB , NNS VBP DT NN VBD VBN IN NNP WRB PRP VBD TO VB DT JJ NN WDT VBD VBN IN NNS .\nSecurity officials say they expected an increase in insurgent attacks before January 30 elections .\tNN NNS VBP PRP VBD DT NN IN JJ NNS IN NNP CD NNS .\nMexico 's Institutional Revolutionary Party has selected Roberto Madrazo as its candidate for the 2006 presidential election .\tNNP POS NNP NNP NNP VBZ VBN NNP NNP IN PRP$ NN IN DT CD JJ NN .\nMr. Madrazo easily defeated challenger Everado Moreno during Sunday 's PRI primary election .\tNNP NNP RB VBD NN NNP NNP IN NNP POS NNP JJ NN .\nMr. Madrazo is a former Tobasco state governor who headed the PRI until recently .\tNNP NNP VBZ DT JJ NNP NN NN WP VBD DT NNP IN RB .\nHis nomination was virtually assured after his main challenger Arturo Montiel dropped out last month amid allegations of corruption .\tPRP$ NN VBD RB VBN IN PRP$ JJ NN NNP NNP VBD RP JJ NN IN NNS IN NN .\nThe presidential primary is the party first since it was defeated by President Vicente Fox and his National Action Party in 2000 after the PRI held power for seven decades .\tDT JJ NN VBZ DT NN RB IN PRP VBD VBN IN NNP NNP NNP CC PRP$ NNP NNP NNP IN CD IN DT NNP VBD NN IN CD NNS .\nDuring that time , Mexican presidents handpicked their successors in the party .\tIN DT NN , JJ NNS VBD PRP$ NNS IN DT NN .\nWith conservative president Fox not allowed to run again , Mr. Madrazo will face conservative Felipe Calderon and leftist Andres Manual Lopez Obrador in next July 's election .\tIN JJ NN NNP RB VBD TO VB RB , NNP NNP MD VB JJ NNP NNP CC JJ NNP NNP NNP NNP IN JJ NNP POS NN .\nMr. Obrador is currently leading most opinion polls .\tNNP NNP VBZ RB VBG RBS NN NNS .\nU.S. Congressional officials say the White House intends to seek $ 40 billion in emergency funds to finance the next phase of recovery from Hurricane Katrina .\tNNP NNP NNS VBP DT NNP NNP VBZ TO VB $ CD CD IN NN NNS TO VB DT JJ NN IN NN IN NNP NNP .\nPresident Bush has already signed a $ 10.5 billion emergency package for hurricane victims .\tNNP NNP VBZ RB VBN DT $ CD CD NN NN IN NN NNS .\nBut one U.S. lawmaker , Senate Democratic leader Harry Reid , says the hurricane could cost the federal government $ 150 billion .\tCC CD NNP NN , NNP JJ NN NNP NNP , VBZ DT NN MD VB DT JJ NN $ CD CD .\nEarlier , Mr. Bush said he plans to oversee an investigation into what went wrong with the government 's response to Hurricane Katrina .\tRB , NNP NNP VBD PRP VBZ TO VB DT NN IN WP VBD JJ IN DT NN POS NN TO NNP NNP .\nHis administration has come under heavy criticism over the government 's relief efforts following the powerful storm .\tPRP$ NN VBZ VBN IN JJ NN IN DT NN POS NN NNS VBG DT JJ NN .\nFederal Emergency Management Agency Chief Michael Brown has also been the focus of widespread criticism .\tNNP NNP NNP NNP NNP NNP NNP VBZ RB VBN DT NN IN JJ NN .\nSome U.S. lawmakers have called for his removal , but the White House has rejected calls for top federal emergency officials to be replaced .\tDT NNP NNS VBP VBN IN PRP$ NN , CC DT NNP NNP VBZ VBN NNS IN JJ JJ NN NNS TO VB VBN .\nIran 's supreme leader Ayatollah Ali Khamenei said Saturday the United States and Israel are his country 's main enemies .\tNNP POS JJ NN NNP NNP NNP VBD NNP DT NNP NNPS CC NNP VBP PRP$ NN POS JJ NNS .\nIn a televised speech , Khamenei said hatred toward the U.S. is growing around the world .\tIN DT JJ NN , NNP VBD NN IN DT NNP VBZ VBG IN DT NN .\nHis remarks come just three days after the United States rejected an Iranian suggestion to hold higher-level talks on the security situation in Iraq .\tPRP$ NNS VBP RB CD NNS IN DT NNP NNPS VBD DT JJ NN TO VB JJ NNS IN DT NN NN IN NNP .\nIran suggested the talks as U.S. and Iranian ambassadors to Iraq met in Baghdad to discuss Iraq 's security .\tNNP VBD DT NNS IN NNP CC JJ NNS TO NNP VBD IN NNP TO VB NNP POS NN .\nThe U.S. has accused Iran of supplying weapons and training to Shi'ite militias in Iraq .\tDT NNP VBZ VBN NNP IN VBG NNS CC NN IN NNP NNS IN NNP .\nIran denies the charge .\tNNP VBZ DT NN .\nKhamenei 's comments came as he marked the birthday of Imam Ali , the first Imam of Shia Muslims .\tNNP POS NNS VBD IN PRP VBD DT NN IN NNP NNP , DT JJ NN IN NNP NNPS .\nThe United States and Iran have had little official contact for 27 years .\tDT NNP NNPS CC NNP VBP VBN JJ JJ NN IN CD NNS .\nWashington broke off diplomatic relations in April 1980 several months after Iranian activists seized the U.S. embassy in Tehran and took its staff hostage .\tNNP VBD RP JJ NNS IN NNP CD JJ NNS IN JJ NNS VBD DT NNP NN IN NNP CC VBD PRP$ NN NN .\nThe Palestinian militant group Islamic Jihad says it has ordered its gunmen in the Gaza Strip to stop firing rockets at Israeli targets while Israel prepares for and completes its Gaza evacuation .\tDT JJ JJ NN NNP NNP VBZ PRP VBZ VBN PRP$ NNS IN DT NNP NNP TO VB VBG NNS IN JJ NNS IN NNP VBZ IN CC VBZ PRP$ NNP NN .\nThe group issued a statement Wednesday , a day after errant rocket fire into southern Israel killed a Palestinian child and wounded eight other Palestinians .\tDT NN VBD DT NN NNP , DT NN IN JJ NN NN IN JJ NNP VBD DT JJ NN CC VBD CD JJ NNS .\nThe Jihad statement denied responsibility .\tDT NNP NN VBD NN .\nMeanwhile , thousands of Jewish settlers and their right-wing supporters are protesting for a second straight day in southern Israel against the mid-August Gaza evacuation .\tRB , NNS IN JJ NNS CC PRP$ JJ NNS VBP VBG IN DT JJ JJ NN IN JJ NNP IN DT JJ NNP NN .\nThe protesters , encamped near the Israeli border town of Ofakim , have vowed to march to nearby Gaza later Wednesday , despite Israeli warnings that 15,000 police deployed in the area will stop them .\tDT NNS , VBN IN DT JJ NN NN IN NNP , VBP VBN TO VB TO JJ NNP RB NNP , IN JJ NNS IN CD NNS VBN IN DT NN MD VB PRP .\nIsrael closed Gaza to all Israeli non-residents last month , and police and troops have blocked earlier attempts by protesters to enter the territory .\tNNP VBD NNP TO DT JJ NNS JJ NN , CC NNS CC NNS VBP VBN JJR NNS IN NNS TO VB DT NN .\nAustralia 's cricket team has scored 376-7 by stumps on the first day of its second test match against India in Sydney .\tNNP POS NN NN VBZ VBN CD IN NNS IN DT JJ NN IN PRP$ JJ NN NN IN NNP IN NNP .\nAfter winning the toss and electing to bat first , Australia lost four wickets in rapid succession .\tIN VBG DT NN CC VBG TO VB RB , NNP VBD CD NNS IN JJ NN .\nHowever , Andrew Symonds was able to lift his team out of trouble with an unbeaten 137 runs , his second career test century .\tRB , NNP NNP VBD JJ TO VB PRP$ NN IN IN NN IN DT JJ CD NNS , PRP$ JJ NN NN NN .\nIndian bowler R. P. Singh was Apr-28 in 21 overs .\tJJ NN NNP NNP NNP VBD CD IN CD NNS .\nHarbhajan Singh finished Feb-88 .\tNNP NNP VBD CD .\nSymonds resurrected the home team 's innings with partnerships of 173 with Brad Hogg and 69 with Brett Lee .\tNNP VBD DT NN NN POS NNS IN NNS IN CD IN NNP NNP CC CD IN NNP NNP .\nHogg was caught out for 79 runs while Lee was not out for 31 .\tNNP VBD VBN RP IN CD NNS IN NNP VBD RB RP IN CD .\nAustralia won the first test of the series by 337 runs in Melbourne .\tNNP VBD DT JJ NN IN DT NN IN CD NNS IN NNP .\nThe Aussies are hoping to win their 16th test match in a row .\tDT NNS VBP VBG TO VB PRP$ JJ NN NN IN DT NN .\nThe third test starts in Perth on January 16th .\tDT JJ NN VBZ IN NNP IN NNP CD .\nAuthorities in Indian Kashmir say at least 15 people died when a bus veered off a steep mountain road and plunged into a gorge .\tNNS IN JJ NNP VBP IN JJS CD NNS VBD WRB DT NN VBD RP DT JJ NN NN CC VBD IN DT NN .\nReports from the area Wednesday say at least 15 other people on the bus were injured but survived the accident .\tNNS IN DT NN NNP VBP IN JJS CD JJ NNS IN DT NN VBD VBN CC VBD DT NN .\nSurvivors ' accounts indicate the driver lost control of the bus on a sharp curve , and the vehicle plunged 250 meters down a mountainside .\tNNS POS NNS VBP DT NN VBD NN IN DT NN IN DT JJ NN , CC DT NN VBD CD NNS IN DT NN .\nVillagers and police used ropes to reach the wreck .\tNNS CC NNS VBD NNS TO VB DT NN .\nThe bus had been traveling through the Tajouri district , nearly 200 kilometers northwest of Jammu city , Indian Kashmir 's winter capital .\tDT NN VBD VBN VBG IN DT NNP NN , RB CD NNS JJS IN NNP NN , NNP NNP POS NN NN .\nThe United States is formally protesting China 's decision to deny a visa to U.S. Olympic gold medalist and Darfur anti-violence campaigner Joey Cheek .\tDT NNP NNPS VBZ RB VBG NNP POS NN TO VB DT NN TO NNP NNP NN NN CC NNP JJ NN NNP NNP .\nWhite House spokeswoman Dana Perino said Wednesday the U.S. is disturbed to learn that China has refused his visa .\tNNP NNP NN NNP NNP VBD NNP DT NNP VBZ VBN TO VB DT NNP VBZ VBN PRP$ NN .\nCheek , a speedskater who competed in the 2006 Winter Olympics , had planned to go to Beijing to support Olympic athletes who are members of Team Darfur .\tNNP , DT NN WP VBD IN DT CD NNP NNPS , VBD VBN TO VB TO NNP TO VB NNP NNS WP VBP NNS IN NNP NNP .\nThe group aims to call attention to the humanitarian crisis in Sudan 's Darfur region .\tDT NN VBZ TO VB NN TO DT JJ NN IN NNP POS NNP NN .\nChina is a major investor in Sudan and has come under increasing pressure to help end the violence in Darfur .\tNNP VBZ DT JJ NN IN NNP CC VBZ VBN IN VBG NN TO VB VB DT NN IN NNP .\nInternational experts say more than 2,00,000 people have died and some 2.5 million have been displaced from their homes since Darfur rebel groups rose up against the Sudanese government in 2003 .\tJJ NNS VBP JJR IN CD NNS VBP VBN CC DT CD CD VBP VBN VBN IN PRP$ NNS IN NNP NN NNS VBD RP IN DT JJ NN IN CD .\nSudan says Western governments and media have exaggerated the scale of the conflict .\tNNP VBZ JJ NNS CC NNS VBP VBN DT NN IN DT NN .\nTaliban militants have shot and killed a man for teaching English in eastern Afghanistan , sparking a gunbattle that left two militants and two policemen dead .\tNNP NNS VBP VBN CC VBN DT NN IN VBG NNP IN JJ NNP , VBG DT NN WDT VBD CD NNS CC CD NNS JJ .\nProvincial officials Thursday said the man was teaching English courses at a school in the eastern Paktia province when he was killed Wednesday .\tJJ NNS NNP VBD DT NN VBD VBG NNP NNS IN DT NN IN DT JJ NNP NN WRB PRP VBD VBN NNP .\nPolice arrived on the scene and clashed with militants , resulting in casualties on both sides .\tNNS VBD IN DT NN CC VBN IN NNS , VBG IN NNS IN DT NNS .\nTaliban militants have destroyed a number of schools in Afghanistan and repeatedly target those seen as sympathetic to foreign governments .\tNNP NNS VBP VBN DT NN IN NNS IN NNP CC RB VB DT VBN IN JJ TO JJ NNS .\nSeparately , U.S-led coalition troops Thursday said they killed several militants in an operation on Wednesday in the southern Helmand province .\tRB , JJ NN NNS NNP VBD PRP VBD JJ NNS IN DT NN IN NNP IN DT JJ NNP NN .\nThis year has been the deadliest in Afghanistan since a U.S.-led invasion ousted the Taliban government in 2001 .\tDT NN VBZ VBN DT JJS IN NNP IN DT JJ NN VBD DT NNP NN IN CD .\nTaliban militants have established strongholds in the south and east , attacking U.S. and NATO troops and Afghan soldiers in ambushes and suicide bombings .\tNNP NNS VBP VBN NNS IN DT NN CC NN , VBG NNP CC NNP NNS CC JJ NNS IN NNS CC NN NNS .\nPolish prime minister-designate Donald Tusk says he wants to pull Polish troops out of Iraq next year .\tJJ JJ JJ NNP NNP VBZ PRP VBZ TO VB JJ NNS IN IN NNP JJ NN .\nIn an interview Wednesday with a daily newspaper , Polska , Tusk is quoted as saying his new government would want to finish the mission of the 900 troops still in Iraq .\tIN DT NN NNP IN DT JJ NN , NNP , NNP VBZ VBN IN VBG PRP$ JJ NN MD VB TO VB DT NN IN DT CD NNS RB IN NNP .\nTusk also said he wants to continue good relations with Washington , but needs more information before deciding whether to back U.S. plans to build part of a European missile defense system in Poland .\tNNP RB VBD PRP VBZ TO VB JJ NNS IN NNP , CC VBZ JJR NN IN VBG IN TO VB NNP NNS TO VB NN IN DT JJ NN NN NN IN NNP .\nHe says he wants to know if housing 10 U.S. interceptor missiles in Poland increases or diminishes security .\tPRP VBZ PRP VBZ TO VB IN NN CD NNP NN NNS IN NNP VBZ CC VBZ NN .\nIn Washington , a White House spokeswoman , Dana Perino , expressed appreciation for the cooperation of countries working with the U.S. led coalition in Iraq .\tIN NNP , DT NNP NNP NN , NNP NNP , VBD NN IN DT NN IN NNS VBG IN DT NNP VBD NN IN NNP .\nShe said the United States understands the difficulties in continuing the troop presence , but stressed their importance in guaranteeing security .\tPRP VBD DT NNP NNPS VBZ DT NNS IN VBG DT NN NN , CC VBD PRP$ NN IN VBG NN .\nSigns are mounting that the dominant Fatah faction of Palestinian President Mahmoud Abbas may consider delaying key parliamentary elections scheduled for July .\tNNS VBP VBG IN DT JJ NNP NN IN JJ NNP NNP NNP MD VB VBG JJ JJ NNS VBN IN NNP .\nThe issue has emerged one month after the militant Palestinian Islamic group Hamas announced that it would end a nearly decade-long boycott and participate in the July elections .\tDT NN VBZ VBN CD NN IN DT JJ JJ JJ NN NNP VBD IN PRP MD VB DT RB JJ NN CC VB IN DT NNP NNS .\nPalestinian lawmakers say the election may be delayed because a modified election law may not be adopted in time .\tJJ NNS VBP DT NN MD VB VBN IN DT VBN NN NN MD RB VB VBN IN NN .\nBut other officials say parliamentary leaders want to delay the vote for fear Hamas , which has gained considerable public support , would undercut Fatah 's power in parliament .\tCC JJ NNS VBP JJ NNS VBP TO VB DT NN IN NN NNP , WDT VBZ VBN JJ JJ NN , MD VB NNP POS NN IN NN .\nHamas emerged as a key player in Palestinian politics after winning an overwhelming victory in its Gaza Strip strongholds in January 's municipal elections .\tNNP VBD IN DT JJ NN IN JJ NNS IN VBG DT JJ NN IN PRP$ NNP NNP NNS IN NNP POS JJ NNS .\nJunoon means ' obsession ' in the Urdu language .\tNNP VBZ `` NN `` IN DT NNP NN .\nIt is the name of one of Pakistan 's and perhaps South Asia 's most popular rock bands .\tPRP VBZ DT NN IN CD IN NNP POS CC RB NNP NNP POS RBS JJ NN NNS .\nThe group is based in Karachi , and was formed in 1990 by guitarist , songwriter and medical doctor Salman Ahmad .\tDT NN VBZ VBN IN NNP , CC VBD VBN IN CD IN NN , NN CC JJ NN NNP NNP .\nSometimes when Junoon performs in the United States , an American-based singer of Indian origin , known as Falu , opens for the group .\tRB WRB NNP VBZ IN DT NNP NNPS , DT JJ NN IN JJ NN , VBN IN NNP , VBZ IN DT NN .\nVOA 's Ravi Khanna brings us a glimpse of Falu 's life and music , based on an interview by VOA 's Ethnomusicologist , Brian Q. Silver .\tNNP POS NNP NNP VBZ PRP DT NN IN NNP POS NN CC NN , VBN IN DT NN IN NNP POS NNP , NNP NNP NNP .\nAn international donor 's conference has opened in Beijing , where world health officials hope to raise $ 1.5 billion to help stop the spread of bird flu .\tDT JJ NN POS NN VBZ VBN IN NNP , WRB NN NN NNS VBP TO VB $ CD CD TO VB VB DT NN IN NN NN .\nOfficials from about 90 countries are attending the two-day meeting sponsored by The World Bank , European Union , and China .\tNNS IN IN CD NNS VBP VBG DT JJ NN VBN IN DT NNP NNP , NNP NNP , CC NNP .\nUnited Nations bird flu official , Dr. David Nabarro , says the $ 1.5 billion is to help poor countries set up prevention programs .\tNNP NNP NN NN NN , NNP NNP NNP , VBZ DT $ CD CD VBZ TO VB JJ NNS VBD RP NN NNS .\nHe says much more would be needed if bird flu becomes a global pandemic .\tPRP VBZ RB JJR MD VB VBN IN NN NN VBZ DT JJ NN .\nHealth experts fear the deadly H5N1 strain could mutate into one that is easily spread among humans and create a worldwide catastrophe .\tNNP NNS VBP DT JJ NNP NN MD VB IN CD WDT VBZ RB VBN IN NNS CC VB DT JJ NN .\nBird flu has killed more than 80 people in southeast Asia , China , and Turkey since 2003 .\tNN NN VBZ VBN JJR IN CD NNS IN JJ NNP , NNP , CC NNP IN CD .\nRussian President Dmitri Medvedev has arrived the Kazakhstan capital , Astana , on his first trip abroad since taking office earlier this month .\tJJ NNP NNP NNP VBZ VBN DT NNP NN , NNP , IN PRP$ JJ NN RB IN VBG NN RBR DT NN .\nMr. Medvedev will also travel to China , arriving in Beijing on Saturday .\tNNP NNP MD RB VB TO NNP , VBG IN NNP IN NNP .\nTraditionally new Russian leaders visit European countries on their first official foreign trips .\tRB JJ JJ NNS VBP JJ NNS IN PRP$ JJ JJ JJ NNS .\nHowever , the visit to Asia highlights the importance that Russia places on energy resources in the region .\tRB , DT NN IN NNP VBZ DT NN IN NNP VBZ IN NN NNS IN DT NN .\nMr. Medvedev is expected to discuss energy and space cooperation .\tNNP NNP VBZ VBN TO VB NN CC NN NN .\nSince the collapse of the Soviet Union , Moscow has tried to regain influence over the former Central Asian republics .\tIN DT NN IN DT NNP NNP , NNP VBZ VBN TO VB NN IN DT JJ NNP NNP NNS .\nRussia has competed with the West and China over access to oil and gas reserves in Central Asia .\tNNP VBZ VBN IN DT NNP CC NNP IN NN TO NN CC NN NNS IN NNP NNP .\nMr. Medvedev is due to visit Germany in early June on his first official trip to a European country .\tNNP NNP VBZ JJ TO VB NNP IN JJ NNP IN PRP$ JJ JJ NN TO DT JJ NN .\nThe African Union says gunmen in Sudan 's troubled Darfur region have killed another A.U. peacekeeper .\tDT NNP NNP VBZ NNS IN NNP POS JJ NNP NN VBP VBN DT NNP NN .\nAn A.U. spokesman says the unidentified attackers shot the peacekeeper and stole his vehicle late Saturday near the entrance of an A.U. compound in Al-Fasher , the capital of North Darfur state .\tDT NNP NN VBZ DT JJ NNS VBD DT NN CC VB PRP$ NN JJ NNP IN DT NN IN DT NNP NN IN NNP , DT NN IN NNP NNP NN .\nThe nationality of the dead peacekeeper was not disclosed .\tDT NN IN DT JJ NN VBD RB VBN .\nSeven A.U. troops have been killed in Darfur so far this month .\tCD NNP NNS VBP VBN VBN IN NNP RB RB DT NN .\nU.S. Deputy Secretary of State John Negroponte had visited the A.U. compound in Al-Fasher Saturday .\tNNP NNP NNP IN NNP NNP NNP VBD VBN DT NNP NN IN NNP NNP .\nHe is in Sudan to try to persuade the government to permit the deployment of U.N. troops in Darfur .\tPRP VBZ IN NNP TO VB TO VB DT NN TO VB DT NN IN NNP NNS IN NNP .\nThe 7,000 A.U. peacekeepers currently in Darfur are poorly-equipped and have failed to ease the violence obstructing humanitarian work in the region .\tDT CD NNP NNS RB IN NNP VBP JJ CC VBP VBN TO VB DT NN VBG JJ NN IN DT NN .\nA Rwandan peacekeeper with the A.U. force was shot dead last Tuesday , while gunmen killed five Senegalese peacekeepers on April 1 .\tDT JJ NN IN DT NNP NN VBD VBN JJ JJ NNP , IN NNS VBD CD JJ NNS IN NNP CD .\nThe moderate faction of Indian Kashmir 's main political separatist alliance says it will urge Pakistani President Pervez Musharraf to include them in talks with India on the future of the divided region .\tDT JJ NN IN JJ NNP POS JJ JJ NN NN VBZ PRP MD VB JJ NNP NNP NNP TO VB PRP IN NNS IN NNP IN DT NN IN DT VBN NN .\nThe chairman of the alliance , Mirwaiz Umar Farooq , says he intends to tell General Musharraf that the Kashmir dispute can not be solved without the inclusion of Kashmiris .\tDT NN IN DT NN , NNP NNP NNP , VBZ PRP VBZ TO VB NNP NNP IN DT NNP NN MD RB VB VBN IN DT NN IN NNP .\nThe Pakistani leader is due to meet the separatists in New Delhi during a visit Sunday to watch an India-Pakistan cricket match .\tDT JJ NN VBZ JJ TO VB DT NNS IN NNP NNP IN DT NN NNP TO VB DT JJ NN NN .\nThe two South Asian nuclear rivals have twice gone to war over Kashmir since they gained independence from Britain .\tDT CD NNP NNP JJ NNS VBP RB VBN TO NN IN NNP IN PRP VBD NN IN NNP .\nBut their relations have improved since the launch of a peace process last year .\tCC PRP$ NNS VBP VBN IN DT NN IN DT NN NN JJ NN .\nThe process received a boost last week when the two sides re-opened a historic bus route across the military line-of-control for the first time in nearly 60 years .\tDT NN VBD DT NN JJ NN WRB DT CD NNS VBD DT JJ NN NN IN DT JJ NN IN DT JJ NN IN RB CD NNS .\nTurkish Prime Minister Recep Tayyip Erdogan says the recent outbreak of bird flu in Turkey is under control , as health officials confirmed the country 's 15th human case of the H5N1 virus .\tJJ JJ NN NNP NNP NNP VBZ DT JJ NN IN NN NN IN NNP VBZ IN NN , IN NN NNS VBD DT NN POS JJ JJ NN IN DT NNP NN .\nMr. Erdogan said agricultural officials continue to closely monitor the situation .\tNNP NNP VBD JJ NNS VBP TO RB VB DT NN .\nAgricultural workers say they have slaughtered some 3,00,000 birds and have stepped up an information campaign to inform people about the dangers posed by infected birds .\tJJ NNS VBP PRP VBP VBN DT CD NNS CC VBP VBN RP DT NN NN TO VB NNS IN DT NNS VBN IN JJ NNS .\nSome 70 people in Turkey are hospitalized with symptoms of avian influenza , but the Associated Press quotes health officials as saying most of them have tested negative for bird flu .\tDT CD NNS IN NNP VBP VBN IN NNS IN JJ NN , CC DT NNP NNP VBZ NN NNS IN VBG JJS IN PRP VBP VBN JJ IN NN NN .\nIn Ukraine , health officials Tuesday confirmed new cases of H5N1 in birds at three poultry farms on the Crimean peninsula .\tIN NNP , NN NNS NNP VBD JJ NNS IN NNP IN NNS IN CD JJ NNS IN DT JJ NN .\nBird flu has killed more than 70 people in Asia since 2003 , and at least two people in Turkey .\tNN NN VBZ VBN JJR IN CD NNS IN NNP IN CD , CC IN JJS CD NNS IN NNP .\nDemocratic Party officials say U.S. Senator Christopher Dodd of the northeastern state of Connecticut will seek the 2008 Democratic presidential nomination .\tNNP NNP NNS VBP NNP NNP NNP NNP IN DT JJ NN IN NNP MD VB DT CD JJ JJ NN .\nThe 62-year-old veteran lawmaker is expected to announce his candidacy Thursday on a nationally syndicated radio show .\tDT JJ NN NN VBZ VBN TO VB PRP$ NN NNP IN DT RB VBN NN NN .\nThe son of a former U.S. senator , Dodd was elected to the House of Representatives in 1974 , and served three terms before his election to the Senate in 1980 .\tDT NN IN DT JJ NNP NN , NNP VBD VBN TO DT NNP IN NNPS IN CD , CC VBD CD NNS IN PRP$ NN TO DT NNP IN CD .\nHe voted to authorize military action against Iraq in 2002 , but has since become a vocal critic of President Bush 's handling of the war .\tPRP VBD TO VB JJ NN IN NNP IN CD , CC VBZ IN VBN DT JJ NN IN NNP NNP POS NN IN DT NN .\nDodd joins a growing field of official candidates , including former Senator John Edwards of North Carolina , Iowa Governor Tom Vilsack , and Representative Dennis Kucinich of Ohio .\tNNP VBZ DT VBG NN IN JJ NNS , VBG JJ NNP NNP NNP IN NNP NNP , NNP NNP NNP NNP , CC NNP NNP NNP IN NNP .\nTwo other sitting senators , New York 's Hillary Rodham Clinton and Barack Obama of Illinois , are also considering seeking the nomination .\tCD JJ VBG NNS , NNP NNP POS NNP NNP NNP CC NNP NNP IN NNP , VBP RB VBG VBG DT NN .\nThe U.S. military has released more than 400 male Iraqi prisoners , after an Iraqi-led review board found no reason to continue to keep them in custody .\tDT NNP NN VBZ VBN JJR IN CD JJ JJ NNS , IN DT JJ NN NN VBD DT NN TO VB TO VB PRP IN NN .\nThe releases were announced Saturday .\tDT NNS VBD VBN NNP .\nA U.S. statement said that since August 2004 the cases of about 28,000 detainees have been examined and about half of them have been released .\tDT NNP NN VBD IN IN NNP CD DT NNS IN IN CD NNS VBP VBN VBN CC IN NN IN PRP VBP VBN VBN .\nMeanwhile , authorities say a U.S. soldier was killed Saturday by a roadside bomb in Baghdad .\tRB , NNS VBP DT NNP NN VBD VBN NNP IN DT NN NN IN NNP .\nSeparately , at least three Iraq police were killed in another roadside explosion in the city .\tRB , IN JJS CD NNP NNS VBD VBN IN DT NN NN IN DT NN .\nAlso , police say the bodies of two blindfolded and bound men were found in Baghdad - apparent victims of reprisal attacks by Shi'ite and Sunni extremists .\tRB , NNS VBP DT NNS IN CD VBN CC VBN NNS VBD VBN IN NNP : JJ NNS IN JJ NNS IN NNP CC NNP NNS .\nThe Iraqi Interior Ministry is probing allegations that Shi'ite death squads are operating within Iraqi police ranks .\tDT JJ NNP NNP VBZ VBG NNS WDT NNP NN NNS VBP VBG IN JJ NN NNS .\nRussia 's upper house of parliament has approved President Vladimir Putin 's controversial plan to end direct elections to choose regional governors , and allow the Kremlin to appoint them instead .\tNNP POS JJ NN IN NN VBZ VBN NNP NNP NNP POS JJ NN TO VB JJ NNS TO VB JJ NNS , CC VB DT NNP TO VB PRP RB .\nThe Federation Council adopted the measure Wednesday by 145 votes to one , with two abstentions .\tDT NNP NNP VBD DT NN NNP IN CD NNS TO CD , IN CD NNS .\nIt now goes to the Kremlin to become law with Mr. Putin 's signature .\tPRP RB VBZ TO DT NNP TO VB NN IN NNP NNP POS NN .\nThe president says such changes are necessary to block terrorists from trying to influence Russia 's local elections .\tDT NN VBZ JJ NNS VBP JJ TO VB NNS IN VBG TO VB NNP POS JJ NNS .\nBut critics across the political spectrum say the plan is a step back from democracy .\tCC NNS IN DT JJ NN VBP DT NN VBZ DT NN RB IN NN .\nUnder the new law , the Kremlin would select gubernatorial candidates , whose appointments would require confirmation by regional lawmakers .\tIN DT JJ NN , DT NNP MD VB JJ NNS , WP$ NNS MD VB NN IN JJ NNS .\nIf a provincial parliament rejects a governor chosen by Moscow , the new law says Mr. Putin has the authority to dissolve that legislature .\tIN DT JJ NN VBZ DT NN VBN IN NNP , DT JJ NN VBZ NNP NNP VBZ DT NN TO VB DT NN .\nFrench President Jacques Chirac is preparing for a high-profile television appearance to try to boost uncertain prospects for French ratification of the European Union constitution .\tJJ NNP NNP NNP VBZ VBG IN DT JJ NN NN TO VB TO VB JJ NNS IN JJ NN IN DT NNP NNP NN .\nMr. Chirac will open his public campaign for the constitution this Thursday evening in a televised debate with an audience of 80 young voters .\tNNP NNP MD VB PRP$ JJ NN IN DT NN DT NNP NN IN DT JJ NN IN DT NN IN CD JJ NNS .\nHis appearance follows a string of opinion polls that have shown French voters planning to reject the constitution in a referendum on May 29 .\tPRP$ NN VBZ DT NN IN NN NNS WDT VBP VBN JJ NNS VBG TO VB DT NN IN DT NN IN NNP CD .\nPollsters say opponents plan to vote against the constitution to highlight their fear of Turkish EU membership or to register their discontent with Mr. Chirac 's socio-economic policies .\tNNS VBP NNS VBP TO VB IN DT NN TO VB PRP$ NN IN JJ NNP NN CC TO VB PRP$ NN IN NNP NNP POS JJ NNS .\nSome critics say the constitution could cost French jobs and destroy the country 's social welfare system .\tDT NNS VBP DT NN MD VB JJ NNS CC VB DT NN POS JJ NN NN .\nThe constitution , aimed at streamlining EU decision-making , requires ratification by all of the union 's 25 member states to take effect .\tDT NN , VBN IN VBG NNP NN , VBZ NN IN DT IN DT NN POS CD NN NNS TO VB NN .\nWorld oil prices soared to yet another record high in Thursday 's trading , increasing the threat of inflation and dimming prospects for global economic growth .\tNNP NN NNS VBD TO RB DT NN NN IN NNP POS NN , VBG DT NN IN NN CC VBG NNS IN JJ JJ NN .\nThe price of crude oil for future delivery went as high as $ 145.85 a barrel in New York trading .\tDT NN IN JJ NN IN JJ NN VBD RB JJ IN $ CD DT NN IN NNP NNP NN .\nAnalysts blamed the price hikes on a weak U.S. dollar , concerns about conflict in the Middle East , and lower crude oil inventories .\tNNS VBD DT NN NNS IN DT JJ NNP NN , NNS IN NN IN DT NNP NNP , CC JJR JJ NN NNS .\nRaising the price of oil boosts the cost of making many goods and increases the cost of delivering everything , so soaring energy costs are increasing the threat of inflation .\tVBG DT NN IN NN VBZ DT NN IN VBG JJ NNS CC VBZ DT NN IN VBG DT , RB VBG NN NNS VBP VBG DT NN IN NN .\nThursday , the European Central Bank tried to fight inflation by raising interest rates a quarter of a point to 4.25 percent .\tNNP , DT NNP NNP NNP VBD TO VB NN IN VBG NN NNS DT NN IN DT NN TO CD NN .\nIncreasing interest rates slows the economy by raising the cost of borrowing money to buy equipment to expand businesses or purchase homes .\tVBG NN NNS VBZ DT NN IN VBG DT NN IN VBG NN TO VB NN TO VB NNS CC NN NNS .\nZimbabwe is preparing to nullify thousands of legal challenges by white farmers who had their land seized under the country 's controversial land reform program .\tNNP VBZ VBG TO VB NNS IN JJ NNS IN JJ NNS WP VBD PRP$ NN VBN IN DT NN POS JJ NN NN NN .\nA report in Zimbabwe 's Sunday Mail newspaper says authorities will file court papers Monday to officially end the litigation under a new constitutional amendment that nationalizes all seized farms and bans any legal challenges .\tDT NN IN NNP POS NNP NNP NN VBZ NNS MD VB NN NNS NNP TO RB VB DT NN IN DT JJ JJ NN WDT VBZ DT VBN NNS CC VBZ DT JJ NNS .\nAn official in the attorney general 's office says 4,000 cases pending before the courts will be nullified .\tDT NN IN DT NN NN POS NN VBZ CD NNS VBG IN DT NNS MD VB VBN .\nPresident Robert Mugabe began the land seizures in 2000 and transferred ownership to landless blacks .\tNNP NNP NNP VBD DT NN NNS IN CD CC VBD NN TO JJ NNS .\nMr. Mugabe says the land seizures were necessary to correct ownership imbalances created under British colonial rule .\tNNP NNP VBZ DT NN NNS VBD JJ TO VB NN NNS VBN IN JJ NN NN .\nBut critics say the program has been a failure and has led to the collapse of Zimbabwe 's economy .\tCC NNS VBP DT NN VBZ VBN DT NN CC VBZ VBN TO DT NN IN NNP POS NN .\nA court in Venezuela has ordered four people detained for their alleged involvement in the assassination of a leading government prosecutor .\tDT NN IN NNP VBZ VBN CD NNS VBN IN PRP$ JJ NN IN DT NN IN DT JJ NN NN .\nThose ordered held by the court Friday include newspaper editor Patricia Poleo and businessman Nelson Mezerhane .\tDT VBN VBN IN DT NN NNP VBP NN NN NNP NNP CC NN NNP NNP .\nThey are accused of plotting the assassination of Danilo Anderson , who was leading the prosecution of hundreds of people accused of backing a 2002 coup against President Hugo Chavez .\tPRP VBP VBN IN VBG DT NN IN NNP NNP , WP VBD VBG DT NN IN NNS IN NNS VBN IN VBG DT CD NN IN NNP NNP NNP .\nMr. Anderson was killed by a car bomb last November .\tNNP NNP VBD VBN IN DT NN NN JJ NNP .\nMs. Poleo and Mr. Mezerhane are accused of plotting the assassination with two others who have been detained - retired general Eugenio Anez Nunez and Salvador Romani , a Cuban dissident .\tNNP NNP CC NNP NNP VBP VBN IN VBG DT NN IN CD NNS WP VBP VBN VBN : JJ JJ NNP NNP NNP CC NNP NNP , DT JJ NN .\nSince Mr. Anderson 's killing last year , Venezuelan police have arrested at least two other suspects , while two others were killed in a gunfight with police .\tIN NNP NNP POS NN JJ NN , JJ NNS VBP VBN IN JJS CD JJ NNS , IN CD NNS VBD VBN IN DT NN IN NNS .\nPakistani Prime Minister Yousuf Raza Gilani has arrived in the country 's southern port city of Karachi to try to quell unrest that has killed at least 85 people .\tJJ NNP NNP NNP NNP NNP VBZ VBN IN DT NN POS JJ JJ NN IN NNP TO VB TO VB NN WDT VBZ VBN IN JJS CD NNS .\nMonday 's assassination of provincial lawmaker Raza Haider triggered four days of riots , with protesters opening fire and burning vehicles and shops .\tNNP POS NN IN JJ NN NNP NNP VBD CD NNS IN NNS , IN NNS VBG NN CC NN NNS CC NNS .\nHaider was a member of the Muttahida Quami Movement or MQM , which is part of the ruling political coalition in both Sindh province and the federal government .\tNNP VBD DT NN IN DT NNP NNP NNP CC NNP , WDT VBZ NN IN DT VBG JJ NN IN DT NNP NN CC DT JJ NN .\nThe party , which largely represents the Urdu-speaking community , and the Awami National Party or ANP , which represents ethnic Pashtuns , have blamed each other for the violence .\tDT NN , WDT RB VBZ DT JJ NN , CC DT NNP NNP NNP CC NNP , WDT VBZ JJ NNS , VBP VBN DT NN IN DT NN .\nPakistan 's Interior Minister Rehman Malik has said Taliban-linked militants looking to fuel political tensions were behind Haider 's assassination .\tNNP POS NNP NNP NNP NNP VBZ VBN JJ NNS VBG TO VB JJ NNS VBD IN NNP POS NN .\nMalik met with representatives from both the MQM and ANP on Friday .\tNNP VBD IN NNS IN DT DT NNP CC NNP IN NNP .\nPolitical leaders were due to meet with Prime Minister Gilani later in the day .\tJJ NNS VBD JJ TO VB IN NNP NNP NNP RB IN DT NN .\nPakistan and India have ushered in the new year by exchanging lists of their civilian nuclear facilities .\tNNP CC NNP VBP VBN IN DT JJ NN IN VBG NNS IN PRP$ JJ JJ NNS .\nPakistan 's Foreign Ministry Tuesday said the two countries participated in the annual exchange , as part of a 1998 agreement prohibiting attacks on each other 's nuclear installations .\tNNP POS NNP NNP NNP VBD DT CD NNS VBD IN DT JJ NN , IN NN IN DT CD NN VBG NNS IN DT NN POS JJ NNS .\nThe lists of nuclear facilities were handed over at India and Pakistan 's respective foreign ministries in New Delhi and Islamabad .\tDT NNS IN JJ NNS VBD VBN RP IN NNP CC NNP POS JJ JJ NNS IN NNP NNP CC NNP .\nIndia and Pakistan have fought three wars since partition in 1947 .\tNNP CC NNP VBP VBN CD NNS IN NN IN CD .\nBut relations have improved since the two countries launched a slow moving peace process in 2004 to resolve their disputes , including the conflict over Kashmir .\tCC NNS VBP VBN IN DT CD NNS VBD DT JJ NN NN NN IN CD TO VB PRP$ NNS , VBG DT NN IN NNP .\nIndia and Pakistan both conducted nuclear weapons tests in 1998 .\tNNP CC NNP DT VBN JJ NNS NNS IN CD .\nThe White House says President Bush will make an evening address to the nation on Monday , the fifth anniversary of the September 11 attacks on the United States .\tDT NNP NNP VBZ NNP NNP MD VB DT NN NN TO DT NN IN NNP , DT JJ NN IN DT NNP CD NNS IN DT NNP NNPS .\nIt will be the latest in a series of speeches about terrorism that the President has made in the past two weeks .\tPRP MD VB DT JJS IN DT NN IN NNS IN NN IN DT NNP VBZ VBN IN DT JJ CD NNS .\nHe has been highlighting what he calls the nation 's progress in the war on terrorism , ahead of key midterm elections in November .\tPRP VBZ VBN VBG WP PRP VBZ DT NN POS NN IN DT NN IN NN , RB IN JJ NN NNS IN NNP .\nA presidential spokesman said Friday that Mr. Bush 's speech will be non-political and will focus on what the September 11 attacks have meant to the nation .\tDT JJ NN VBD NNP IN NNP NNP POS NN MD VB JJ CC MD VB IN WP DT NNP CD NNS VBP VBN TO DT NN .\nOn Sunday and Monday the president is scheduled to visit the sites of the attacks in New York City , Shanksville , Pennsylvania and the Pentagon in Washington .\tIN NNP CC NNP DT NN VBZ VBN TO VB DT NNS IN DT NNS IN NNP NNP NNP , NNP , NNP CC DT NNP IN NNP .\nDemocrats accuse Mr. Bush of emphasizing anti-terror efforts lately to distract from the increasingly unpopular war in Iraq .\tNNPS VBP NNP NNP IN VBG JJ NNS RB TO VB IN DT RB JJ NN IN NNP .\nThe foreign relations committee of Pakistan 's upper house of parliament has condemned what it called the Israeli ' aggression ' on Lebanon and urged the international community to pressure the Jewish state to halt the strikes .\tDT JJ NNS NN IN NNP POS JJ NN IN NN VBZ VBN WP PRP VBD DT JJ `` NN `` IN NNP CC VBD DT JJ NN TO VB DT JJ NN TO VB DT NNS .\nThe demand came through a unanimously adopted resolution at a special session of the Senate committee held in Islamabad .\tDT NN VBD IN DT RB VBN NN IN DT JJ NN IN DT NNP NN VBN IN NNP .\nPakistan has no diplomatic relations with Israel .\tNNP VBZ DT JJ NNS IN NNP .\nSome 800 Pakistani students staged demonstrations in the southern port city of Karachi to protest against the Israeli action .\tDT CD JJ NNS VBD NNS IN DT JJ JJ NN IN NNP TO VB IN DT JJ NN .\nIn neighboring Bangladesh , Foreign Minister M. Morshed Khan urged Western countries ' to restrain Israel ' from such attacks and said many Western countries use a double standard in dealing with the Middle East .\tIN VBG NNP , NNP NNP NNP NNP NNP VBD JJ NNS `` TO VB NNP `` IN JJ NNS CC VBD JJ JJ NNS VBP DT JJ NN IN VBG IN DT NNP NNP .\nJapanese Prime Minister Junichiro Koizumi launched his political campaign Saturday for the snap general election he has called on September 11 .\tJJ NNP NNP NNP NNP VBD PRP$ JJ NN NNP IN DT NN JJ NN PRP VBZ VBN IN NNP CD .\nThe prime minister says the focal point of the election will be his proposal for privatization of Japan 's national postal system , a sprawling business empire that includes savings institutions with three trillion dollars in assets .\tDT JJ NN VBZ DT JJ NN IN DT NN MD VB PRP$ NN IN NN IN NNP POS JJ JJ NN , DT VBG NN NN WDT VBZ NNS NNS IN CD CD NNS IN NNS .\nMr. Koizumi dissolved Parliament and called a general election about two weeks ago after Japan 's upper house voted down postal reforms - with members of the ruling Liberal Democratic Party joining the majority .\tNNP NNP VBD NNP CC VBD DT JJ NN IN CD NNS IN IN NNP POS JJ NN VBD RP JJ NNS IN IN NNS IN DT NN NNP NNP NNP VBG DT NN .\nLDP leaders have withdrawn support for lawmakers who voted ' no ' on August 8 , and say they will not be allowed to run for re-election .\tNNP NNS VBP VBN NN IN NNS WP VBD `` DT `` IN NNP CD , CC VBP PRP MD RB VB VBN TO VB IN NN .\nA Yomiuri newspaper poll this week shows support for Mr. Koizumi has risen to 53.2 percent , up 5.5 percentage points since he dissolved Parliament .\tDT NNP NN NN DT NN VBZ NN IN NNP NNP VBZ VBN TO CD NN , IN CD NN NNS IN PRP VBD NNP .\nPresidents from most South American countries have gathered in Brazil for a meeting of the Mercosur trading group .\tNNS IN JJS JJ JJ NNS VBP VBN IN NNP IN DT NN IN DT NNP NN NN .\nThe two-day meeting in Rio de Janeiro began Thursday .\tDT JJ NN IN NNP NNP NNP VBD NNP .\nOne of the main issues under discussion is how to make Mercosur more responsive to the social concerns of the member countries .\tCD IN DT JJ NNS IN NN VBZ WRB TO VB NNP RBR JJ TO DT JJ NNS IN DT NN NNS .\nThe push for a change of direction for the five-member alliance is coming from Venezuela 's leftist President Hugo Chavez .\tDT NN IN DT NN IN NN IN DT JJ NN VBZ VBG IN NNP POS JJ NNP NNP NNP .\nEcuador and Bolivia , both also led by leftist governments , are seeking to join the group .\tNNP CC NNP , DT RB VBN IN JJ NNS , VBP VBG TO VB DT NN .\nOfficials say the trade bloc now accounts for one trillion dollars in annual economic activity and includes 250 million people .\tNNS VBP DT NN NN RB VBZ IN CD CD NNS IN JJ JJ NN CC VBZ CD CD NNS .\nArgentina , Brazil , Paraguay and Uruguay formed Mercosur in 1991 .\tNNP , NNP , NNP CC NNP VBD NNP IN CD .\nVenezuela joined in July of last year .\tNNP VBD IN NNP IN JJ NN .\nChile and Bolivia are associate members .\tNNP CC NNP VBP JJ NNS .\nAfghan officials say President Hamid Karzai is considering offering a government post to a powerful regional warlord , despite concerns over his role in alleged human rights abuses .\tJJ NNS VBP NNP NNP NNP VBZ VBG VBG DT NN NN TO DT JJ JJ NN , IN NNS IN PRP$ NN IN JJ JJ NNS NNS .\nA presidential spokesman Jawed Ludin told a news briefing in Kabul Tuesday that General Abdul Rashid Dostum held several meetings with the president to discuss a possible government position .\tDT JJ NN NNP NNP VBD DT NN NN IN NNP NNP IN NNP NNP NNP NNP VBD JJ NNS IN DT NN TO VB DT JJ NN NN .\nAsked about charges that General Dostum was guilty of human rights abuses and war crimes , the spokesman said it was a completely different issue .\tVBN IN NNS IN NNP NNP VBD JJ IN JJ NNS NNS CC NN NNS , DT NN VBD PRP VBD DT RB JJ NN .\nHe stressed that everyone in Afghanistan has the right to fulfill their responsibilities and be given opportunity to do so .\tPRP VBD IN DT IN NNP VBZ DT NN TO VB PRP$ NNS CC VB VBN NN TO VB RB .\nGeneral Dostum 's faction helped U.S.-led coalition forces oust the former Taleban regime in 2001 .\tNNP NNP POS NN VBD JJ NN NNS VB DT JJ NNP NN IN CD .\nHe finished fourth in last year 's presidential elections and narrowly escaped an assassination attempt in January .\tPRP VBD JJ IN JJ NN POS JJ NNS CC RB VBD DT NN NN IN NNP .\nEconomic activity is limited to providing services to military personnel and contractors located on the island .\tJJ NN VBZ VBN IN VBG NNS TO NN NNS CC NNS VBN IN DT NN .\nAll food and manufactured goods must be imported .\tDT NN CC JJ NNS MD VB VBN .\nFinancial services - banking , fund management , insurance - account for about 23 % of employment and about 55 % of total income in this tiny , prosperous Channel Island economy .\tNN NNS IN NN , NN NN , NN : VBP IN RB CD NN IN NN CC IN CD NN IN JJ NN IN DT JJ , JJ NNP NNP NN .\nTourism , manufacturing , and horticulture , mainly tomatoes and cut flowers , have been declining .\tNN , NN , CC NN , RB NNS CC VBN NNS , VBP VBN VBG .\nFinancial services , construction , retail , and the public sector have been growing .\tNN NNS , NN , JJ , CC DT JJ NN VBP VBN VBG .\nLight tax and death duties make Guernsey a popular tax haven .\tJJ NN CC NN NNS VBP NNP DT JJ NN NN .\nThe evolving economic integration of the EU nations is changing the environment under which Guernsey operates .\tDT VBG JJ NN IN DT NNP NNS VBZ VBG DT NN IN WDT NNP VBZ .\nThe Jamaican economy is heavily dependent on services , which now account for more than 60 % of GDP .\tDT JJ NN VBZ RB JJ IN NNS , WDT RB VBP IN JJR IN CD NN IN NN .\nThe country continues to derive most of its foreign exchange from tourism , remittances , and bauxite / alumina .\tDT NN VBZ TO VB JJS IN PRP$ JJ NN IN NN , NNS , CC NN CC NN .\nRemittances account for nearly 15 % of GDP and exports of bauxite and alumina make up about 10 % .\tNNS VBP IN RB CD NN IN NN CC NNS IN NN CC NN VBP RP IN CD NN .\nThe bauxite / alumina sector was most affected by the global downturn while the tourism industry was resilient , experiencing an increase of 4 % in tourist arrivals .\tDT JJ NN NN NN VBD RBS VBN IN DT JJ NN IN DT NN NN VBD JJ , VBG DT NN IN CD NN IN NN NNS .\nTourism revenues account for roughly 10 % of GDP , and both arrivals and revenues grew in 2010 , up 4 % and 6 % respectively .\tNNP NNS VBP IN RB CD NN IN NN , CC DT NNS CC NNS VBD IN CD , RB CD NN CC CD NN RB .\nThe Economic growth faces many challenges : high crime and corruption , large-scale unemployment and underemployment , and a debt-to-GDP ratio of more than 120 % .\tDT JJ NN VBZ JJ NNS IN JJ NN CC NN , JJ NN CC NN , CC DT JJ NN IN JJR IN CD NN .\nJamaica 's onerous public debt burden - the fourth highest in the world on a per capita basis - is the result of government bailouts to ailing sectors of the economy , most notably to the financial sector in the mid-to-late 1990s .\tNNP POS JJ JJ NN NN IN DT JJ JJS IN DT NN IN DT IN NN NN : VBZ DT NN IN NN NNS TO JJ NNS IN DT NN , RBS RB TO DT JJ NN IN DT JJ NNS .\nIn early 2010 , the Jamaican government created the Jamaica Debt Exchange ( JDX ) in order to retire high-priced domestic bonds and significantly reduce annual debt servicing .\tIN JJ CD , DT JJ NN VBD DT NNP NNP NNP LRB NNP RRB IN NN TO VB JJ JJ NNS CC RB VB JJ NN NN .\nThe Government of Jamaica signed a $ 1.27 billion , 27-month Standby Agreement with the International Monetary Fund for balance of payment support in February 2010 .\tDT NN IN NNP VBD DT $ CD CD , JJ NNP NN IN DT NNP NNP NNP IN NN IN NN NN IN NNP CD .\nOther multilaterals have also provided millions of dollars in loans and grants .\tJJ NNS VBP RB VBN NNS IN NNS IN NNS CC NNS .\nDespite the improvement , debt servicing costs still hinder the government 's ability to spend on infrastructure and social programs , particularly as job losses rise in a shrinking economy .\tIN DT NN , NN NN NNS RB VB DT NN POS NN TO VB IN NN CC JJ NNS , RB IN NN NNS VBP IN DT VBG NN .\nThe GOLDING administration faces the difficult prospect of having to achieve fiscal discipline in order to maintain debt payments , while simultaneously attacking a serious crime problem that is hampering economic growth .\tDT NNP NN VBZ DT JJ NN IN VBG TO VB JJ NN IN NN TO VB NN NNS , IN RB VBG DT JJ NN NN WDT VBZ VBG JJ NN .\nHigh unemployment exacerbates the crime problem , including gang violence that is fueled by the drug trade .\tJJ NN VBZ DT NN NN , VBG NN NN WDT VBZ VBN IN DT NN NN .\nSince the 1960s , South Korea has achieved an incredible record of growth and global integration to become a high-tech industrialized economy .\tIN DT NNS , NNP NNP VBZ VBN DT JJ NN IN NN CC JJ NN TO VB DT JJ JJ NN .\nFour decades ago , GDP per capita was comparable with levels in the poorer countries of Africa and Asia .\tCD NNS RB , NN IN NN VBD JJ IN NNS IN DT JJR NNS IN NNP CC NNP .\nIn 2004 , South Korea joined the trillion dollar club of world economies , and currently is among the world 's 20 largest economies .\tIN CD , NNP NNP VBD DT CD NN NN IN NN NNS , CC RB VBZ IN DT NN POS CD JJS NNS .\nInitially , a system of close government and business ties , including directed credit and import restrictions , made this success possible .\tRB , DT NN IN JJ NN CC NN NNS , VBG VBN NN CC NN NNS , VBD DT NN JJ .\nThe government promoted the import of raw materials and technology at the expense of consumer goods , and encouraged savings and investment over consumption .\tDT NN VBD DT NN IN JJ NNS CC NN IN DT NN IN NN NNS , CC VBD NNS CC NN IN NN .\nThe Asian financial crisis of 1997 - 98 exposed longstanding weaknesses in South Korea 's development model including high debt / equity ratios and massive short-term foreign borrowing .\tDT JJ JJ NN IN CD IN CD JJ JJ NNS IN NNP NNP POS NN NN VBG JJ NN NN NN NNS CC JJ JJ JJ NN .\nGDP plunged by 6.9 % in 1998 , and then recovered by 9 % in 1999 - 2000 .\tNN VBD IN CD NN IN CD , CC RB VBN IN CD NN IN CD IN CD .\nKorea adopted numerous economic reforms following the crisis , including greater openness to foreign investment and imports .\tNNP VBD JJ JJ NNS VBG DT NN , VBG JJR NN TO JJ NN CC NNS .\nGrowth moderated to about 4 - 5 % annually between 2003 and 2007 .\tNN VBD TO IN CD : CD NN RB IN CD CC CD .\nWith the global economic downturn in late 2008 , South Korean GDP growth slowed to 0.2 % in 2009 .\tIN DT JJ JJ NN IN JJ CD , JJ JJ NN NN VBD TO CD NN IN CD .\nIn the third quarter of 2009 , the economy began to recover , in large part due to export growth , low interest rates , and an expansionary fiscal policy , and growth exceeded 6 % in 2010 .\tIN DT JJ NN IN CD , DT NN VBD TO VB , IN JJ NN JJ TO VB NN , JJ NN NNS , CC DT JJ JJ NN , CC NN VBD CD NN IN CD .\nThe South Korean economy 's long term challenges include a rapidly aging population , inflexible labor market , and overdependence on manufacturing exports to drive economic growth .\tDT JJ JJ NN POS JJ NN NNS VBP DT RB VBG NN , JJ NN NN , CC NN IN VBG NNS TO VB JJ NN .\nOfficials in Afghanistan say Taleban , al-Qaida and hundreds of other inmates at a high-security prison in Kabul have taken control of a prison block after clashing with security guards .\tNNS IN NNP VBP NNP , NNP CC NNS IN JJ NNS IN DT JJ NN IN NNP VBP VBN NN IN DT NN NN IN VBG IN NN NNS .\nPrison officials say the riot erupted Saturday night after a group of prisoners refused to wear new prison uniforms intended to prevent inmates from mingling with visitors and possibly escaping .\tNN NNS VBP DT NN VBD NNP NN IN DT NN IN NNS VBD TO VB JJ NN VBZ VBN TO VB NNS IN VBG IN NNS CC RB VBG .\nSeven Taleban inmates used such a method to escape last month .\tCD NNP VBZ VBN PDT DT NN TO VB JJ NN .\nOfficials say at least 1,300 prisoners were involved in the riot .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NN .\nShots were heard at the Pul-e-Charkhi prison Saturday and early Sunday .\tNNS VBD VBN IN DT NNP NN NNP CC JJ NNP .\nAuthorities say no guards were hurt , but several prisoners were injured .\tNNS VBP DT NNS VBD VBN , CC JJ NNS VBD VBN .\nPul-e-Charkhi prison is a huge facility built in the 1970s where thousands of Afghans opposing communist rule in the 1980s were tortured and killed .\tNNP NN VBZ DT JJ NN VBN IN DT NNS WRB NNS IN NNS VBG JJ NN IN DT NNS VBD VBN CC VBN .\nThe prison now holds common criminals as well as al-Qaida and Taleban-linked militants .\tDT NN RB VBZ JJ NNS RB RB IN NNP CC JJ NNS .\nWitnesses in Somalia 's capital say an exchange of mortar fire has killed at least seven people and injured 12 others .\tNNS IN NNP POS NN VBP DT NN IN NN NN VBZ VBN IN JJS CD NNS CC VBN CD NNS .\nResidents say Wednesday 's fighting began when an African Union plane landed at Mogadishu 's main airport in defiance of a ban by the Islamist militant group al-Shabab .\tNNS VBP NNP POS NN VBD WRB DT NNP NNP NN VBD IN NNP POS JJ NN IN NN IN DT NN IN DT NNP JJ NN NNP .\nThe insurgents fired mortars at the airport , triggering a counter-attack .\tDT NNS VBD NNS IN DT NN , VBG DT NN .\nIt is not clear whether those shells came from African Union peacekeepers , Ethiopian troops , or Somali government forces .\tPRP VBZ RB JJ IN DT NNS VBD IN NNP NNP NNS , JJ NNS , CC JJ NN NNS .\nAl-Shabab warned last month that it would attack any planes landing or taking off from the airport .\tNNP VBD JJ NN IN PRP MD VB DT NNS NN CC VBG RP IN DT NN .\nThe group said the flights benefit Ethiopia , which has thousands of troops in Somalia backing the interim government .\tDT NN VBD DT NNS VBP NNP , WDT VBZ NNS IN NNS IN NNP VBG DT JJ NN .\nThe Somali government has urged airlines to use the airport despite the threat .\tDT JJ NN VBZ VBN NNS TO VB DT NN IN DT NN .\nOn at least two other occasions , Islamists fired on the facility after planes successfully landed .\tIN IN JJS CD JJ NNS , NNS VBD IN DT NN IN NNS RB VBD .\nOne of Iraq 's top Sunni political groups has agreed to support a new constitution in Saturday 's referendum , after reaching a deal with negotiators to consider future changes to the draft .\tCD IN NNP POS JJ NNP JJ NNS VBZ VBN TO VB DT JJ NN IN NNP POS NN , IN VBG DT NN IN NNS TO VB JJ NNS TO DT NN .\nIraq 's Shi'ite and Kurdish-dominated parliament is to discuss the deal at a special session later Wednesday .\tNNP POS NNP CC JJ NN VBZ TO VB DT NN IN DT JJ NN RB NNP .\nLate Tuesday , Iraq 's main Sunni Arab political party ( the Iraqi Islamic Party ) announced its support for the draft constitution , after Shi'ite and Kurdish negotiators agreed to allow Parliament to consider amendments to the constitution .\tRB NNP , NNP POS JJ NNP NNP JJ NN LRB DT JJ NNP NNP RRB VBD PRP$ NN IN DT NN NN , IN NNP CC NNP NNS VBD TO VB NNP TO VB NNS TO DT NN .\nIt is unclear if other Sunni groups not involved in negotiations will reverse their calls for voters to reject the constitution .\tPRP VBZ JJ IN JJ NNP NNS RB VBN IN NNS MD VB PRP$ NNS IN NNS TO VB DT NN .\nU.S. officials have also been pressing Sunnis to back the constitution in the hope it will weaken the insurgency and enable the withdrawal of foreign troops .\tNNP NNS VBP RB VBN VBG NNP TO VB DT NN IN DT NN PRP MD VB DT NN CC VB DT NN IN JJ NNS .\nIn Baghdad today , Iraqi police say at least six people were injured when a suicide car bomber struck a government convoy .\tIN NNP NN , JJ NNS VBP IN JJS CD NNS VBD VBN WRB DT NN NN NN VBD DT NN NN .\nU.S. Senator Trent Lott has introduced a bill to re-establish the Federal Emergency Management Agency as an independent group reporting directly to the President .\tNNP NNP NNP NNP VBZ VBN DT NN TO VB DT NNP NNP NNP NNP IN DT JJ NN VBG RB TO DT NNP .\nThe Republican from Mississippi says thousands of people in his state are still without enough help more than five months after Hurricane Katrina .\tDT NNP IN NNP VBZ NNS IN NNS IN PRP$ NN VBP RB IN JJ NN JJR IN CD NNS IN NNP NNP .\nHe blamed the bureaucratic inefficiencies created when FEMA was placed under the Department of Homeland Security .\tPRP VBD DT JJ NNS VBN WRB NNP VBD VBN IN DT NNP IN NNP NNP .\nFEMA was merged into the department in a massive federal restructuring after the September 11 , 2001 terrorist attacks .\tNNP VBD VBN IN DT NN IN DT JJ JJ NN IN DT NNP CD , CD JJ NNS .\nSenator Lott says he questioned the wisdom of the move at the time .\tNNP NNP VBZ PRP VBD DT NN IN DT NN IN DT NN .\nFormer FEMA Director James Lee Witt said Thursday that FEMA has become a disgrace since the merger .\tJJ NNP NNP NNP NNP NNP VBD NNP IN NNP VBZ VBN DT NN IN DT NN .\nWitt , who headed the agency during the Clinton administration , said the continued emphasis on terrorism has ' minimized and demoralized emergency management . '\tNNP , WP VBD DT NN IN DT NNP NN , VBD DT VBN NN IN NN VBZ `` VBN CC VBN NN NN . ``\nMillions of striking workers brought parts of India to a standstill Tuesday as they protested price hikes and alleged anti-labor policies .\tNNS IN JJ NNS VBD NNS IN NNP TO DT NN NNP IN PRP VBD NN NNS CC VBN JJ NNS .\nLeftist trade unions called the nationwide day-long strike to express building anger and frustration over the rising cost of living and plans by government to disinvest from public sector companies .\tJJ NN NNS VBD DT JJ JJ NN TO VB NN NN CC NN IN DT VBG NN IN VBG CC NNS IN NN TO VB IN JJ NN NNS .\nThe strikes , which only materialized in the eastern state of West Bengal and the southwestern state of Kerala , shut down schools , shops , banks and disrupted some airline flights .\tDT NNS , WDT RB VBD IN DT JJ NN IN NNP NNP CC DT JJ NN IN NNP , VBD RP NNS , NNS , NNS CC VBD DT NN NNS .\nAbout one million bank employees joined in the work stoppage .\tIN CD CD NN NNS VBD IN DT NN NN .\nTuesday 's demonstrations come two months after main opposition parties led a one-day strike over fuel prices hikes , leaving some regions at a similar standstill .\tNNP POS NNS VBP CD NNS IN JJ NN NNS VBD DT JJ NN IN NN NNS NNS , VBG DT NNS IN DT JJ NN .\nInflation in India has been nearing double digits in recent months .\tNN IN NNP VBZ VBN VBG JJ NNS IN JJ NNS .\nBulgaria has extradited the nephew of former Turkish president Suleyman Demirel to Turkey , where he is wanted for massive fraud .\tNNP VBZ VBN DT NN IN JJ JJ NN NNP NNP TO NNP , WRB PRP VBZ VBN IN JJ NN .\nYahya Murat Demirel and his wife , Aysegul Esenler , were arrested in the Black Sea port city of Bourgas on December 31 when they tried to enter Bulgaria illegally .\tNNP NNP NNP CC PRP$ NN , NNP NNP , VBD VBN IN DT NNP NNP JJ NN IN NNP IN NNP CD WRB PRP VBD TO VB NNP RB .\nMr. Demirel had been forbidden by Turkish courts to leave the country , where he is on trial in connection with the collapse of Turkish Egebank , which he owned .\tNNP NNP VBD VBN VBN IN JJ NNS TO VB DT NN , WRB PRP VBZ IN NN IN NN IN DT NN IN JJ NNP , WDT PRP VBD .\nHe and his wife were delivered to Turkish authorities Friday morning .\tPRP CC PRP$ NN VBD VBN IN JJ NNS NNP NN .\nCampaigning draws to a close Sunday in Egypt 's first multi-candidate presidential election .\tNN VBZ TO DT JJ NNP IN NNP POS JJ JJ JJ NN .\nIncumbent president Hosni Mubarak , who faces nine rivals , is expected to hold a final rally of his ruling National Democratic party today before Wednesday 's poll .\tJJ NN NNP NNP , WP VBZ CD NNS , VBZ VBN TO VB DT JJ NN IN PRP$ VBG NNP NNP NN NN IN NNP POS NN .\nDespite facing electoral opponents for the first time , President Mubarak is widely expected to win a fifth term .\tIN VBG JJ NNS IN DT JJ NN , NNP NNP VBZ RB VBN TO VB DT JJ NN .\nAyman Nour , one of Mr. Mubarak 's most prominent opponents , addressed a crowd in the heart of Cairo late Saturday after touring the country .\tNNP NNP , CD IN NNP NNP POS JJS JJ NNS , VBD DT NN IN DT NN IN NNP JJ NNP IN VBG DT NN .\nMr. Nour and his Ghad party have led the most aggressive campaign , linking the Mubarak government to years of oppression , economic crisis , and joblessness .\tNNP NNP CC PRP$ NNP NN VBP VBN DT RBS JJ NN , VBG DT NNP NN TO NNS IN NN , JJ NN , CC NN .\nIn February , President Mubarak proposed holding contested presidential elections to replace a system where parliament nominated a single candidate for approval in a referendum .\tIN NNP , NNP NNP VBD VBG VBN JJ NNS TO VB DT NN WRB NN VBD DT JJ NN IN NN IN DT NN .\nThe U.S. military says rescue teams have reached the wreckage of a helicopter that went down Tuesday in eastern Afghanistan , but there is still no word on the fate of the 17 U.S. troops on board .\tDT NNP NN VBZ NN NNS VBP VBN DT NN IN DT NN WDT VBD RB NNP IN JJ NNP , CC EX VBZ RB DT NN IN DT NN IN DT CD NNP NNS IN NN .\nA spokesman , Lt. Col. Jerry O'Hara , told reporters in Kabul Thursday that military rescuers are at the site and that recovery operations are continuing .\tDT NN , NNP NNP NNP NNP , VBD NNS IN NNP NNP IN JJ NNS VBP IN DT NN CC IN NN NNS VBP VBG .\nHe did not elaborate .\tPRP VBD RB VB .\nMilitary officials say it appears the Chinook helicopter was brought down by hostile fire .\tJJ NNS VBP PRP VBZ DT NNP NN VBD VBN RP IN JJ NN .\nThe helicopter crashed in remote mountainous terrain west of Kunar province 's capital , Asadabad , while transporting troops as part of an ongoing operation against suspected Taleban and al-Qaida terrorists .\tDT NN VBD IN JJ JJ NN NN IN NNP NN POS NN , NNP , IN VBG NNS IN NN IN DT JJ NN IN JJ NNP CC NNP NNS .\nShortly after the crash , the Taleban said it shot down the aircraft .\tRB IN DT NN , DT NNP VBD PRP VBD IN DT NN .\nThe Egyptian ambassador to Pakistan says no Pakistanis were involved in Saturday 's bombings in the Red Sea resort of Sharm el-Sheikh that killed nearly 90 people .\tDT JJ NN TO NNP VBZ DT NNS VBD VBN IN NNP POS NNS IN DT NNP NNP NN IN NNP NNP WDT VBD RB CD NNS .\nAmbassador Hussein Haridy said Tuesday that Egyptian authorities have not accused any Pakistani of involvement in those attacks .\tNNP NNP NNP VBD NNP IN JJ NNS VBP RB VBN DT NNS IN NN IN DT NNS .\nMonday , Egyptian police circulated photographs of several Pakistanis who had arrived in Sharm el-Sheikh earlier this month but later disappeared after leaving their passports at a hotel .\tNNP , JJ NN VBD NNS IN JJ NNS WP VBD VBN IN NNP NNP RBR DT NN CC RB VBD IN VBG PRP$ NNS IN DT NN .\nAlso Monday , police clashed with Bedouin tribesmen as they searched for suspects in the mountains of Sinai 's interior .\tRB NNP , NN VBD IN NNP NNS IN PRP VBD IN NNS IN DT NNS IN NNP POS NN .\nAnd in Washington , President and Mrs. Bush visited the Egyptian embassy to express their condolences .\tCC IN NNP , NNP CC NNP NNP VBD DT JJ NN TO VB PRP$ NNS .\nAn electric company in the sunny western U.S. state of California plans to begin installing solar panels on rooftops of commercial buildings to produce environmentally friendly energy .\tDT JJ NN IN DT JJ JJ NNP NN IN NNP VBZ TO VB VBG JJ NNS IN NNS IN JJ NNS TO VB RB JJ NN .\nVOA 's Paul Sisco has the story .\tNNP POS NNP NNP VBZ DT NN .\nIran 's main reformist party is accusing President Mahmoud Ahmadinejad of hurting the nation 's poor .\tNNP POS JJ NN NN VBZ VBG NNP NNP NNP IN VBG DT NN POS NN .\nAt an annual meeting of the Islamic Iran Participation Front Thursday , party leader Mohsen Mirdamadi attacked both the president 's foreign and economic policies .\tIN DT JJ NN IN DT NNP NNP NNP NNP NNP , NN NN NNP NNP VBD DT DT NN POS JJ CC JJ NNS .\nThe party hopes to field former president Mohammad Khatami to challenge Mr. Ahmadinejad in next year 's presidential election .\tDT NN VBZ TO VB JJ NN NNP NNP TO VB NNP NNP IN JJ NN POS JJ NN .\nMr. Khatami has not yet said if he will run .\tNNP NNP VBZ RB RB VBN IN PRP MD VB .\nMr. Ahmadinejad said Wednesday Iran must base its budget on oil worth as little as $ 30 a barrel .\tNNP NNP VBD NNP NNP MD VB PRP$ NN IN NN NN RB RB IN $ CD DT NN .\nIt is a drastic downward revision likely to lead to spending cuts .\tPRP VBZ DT JJ JJ NN JJ TO VB TO NN NNS .\nIn recent months , when oil was nearly $ 150 a barrel , the president promised to spread the nation 's oil wealth .\tIN JJ NNS , WRB NN VBD RB $ CD DT NN , DT NN VBD TO VB DT NN POS NN NN .\nBut with the plummeting price , and inflation at about 30 percent , he has had to postpone his economic reform plans .\tCC IN DT VBG NN , CC NN IN IN CD NN , PRP VBZ VBN TO VB PRP$ JJ NN NNS .\nPolice in northwestern Pakistan say a suicide car bomber has killed four police officers and wounded at least eight other people .\tNNS IN JJ NNP VBP DT NN NN NN VBZ VBN CD NNS NNS CC VBN IN JJS CD JJ NNS .\nLocal authorities say the attacker blew up his explosives-laden car early Wednesday on the outskirts of Peshawar , the capital of Khyber Pakhtoonkhaw province .\tJJ NNS VBP DT NN VBD RP PRP$ JJ NN JJ NNP IN DT NNS IN NNP , DT NN IN NNP NNP NN .\nThe blast came a day after Pakistani security forces killed 11 militants in clashes in nearby Orakzai tribal region .\tDT NN VBD DT NN IN JJ NN NNS VBD CD NNS IN NNS IN JJ NNP JJ NN .\nPakistan 's military launched an anti-Taliban offensive in Orakzai in March to target militants who are believed to have fled an earlier offensive in South Waziristan .\tNNP POS NN VBD DT JJ NN IN NNP IN NNP TO VB NNS WP VBP VBN TO VB VBN DT JJR NN IN NNP NNP .\nIn other violence , gunmen killed a university professor in a drive-by shooting in Quetta , the capital of southwestern Baluchistan province .\tIN JJ NN , NNS VBD DT NN NN IN DT JJ NN IN NNP , DT NN IN JJ NNP NN .\nKenyan police say they have asked U.S. officials from the FBI to help investigate the killing of three policemen .\tJJ NNS VBP PRP VBP VBN NNP NNS IN DT NNP TO VB VB DT NN IN CD NNS .\nPolice commissioner Mathew Iteere said Saturday that he expects the FBI to join in the probe .\tNN NN NNP NNP VBD NNP IN PRP VBZ DT NNP TO VB IN DT NN .\nKenyan police say they hope to draw on the FBI 's experience dealing with explosives and tracing the origins of arms .\tJJ NNS VBP PRP VBP TO VB IN DT NNP POS NN VBG IN NNS CC VBG DT NNS IN NNS .\nThe three policemen were killed in two attacks in the capital , Nairobi , Friday .\tDT CD NNS VBD VBN IN CD NNS IN DT NN , NNP , NNP .\nOne police officer was killed when a grenade was thrown into his vehicle .\tCD NN NN VBD VBN WRB DT NN VBD VBN IN PRP$ NN .\nThe two other officers were killed in a gun attack when two men on a motorbike opened fire .\tDT CD JJ NNS VBD VBN IN DT NN NN WRB CD NNS IN DT NN VBD NN .\nPolice say the two attackers were chased by police and shot and killed .\tNNS VBP DT CD NNS VBD VBN IN NN CC VBN CC VBN .\nOfficials are trying to identify the attackers and determine the motive for the killings .\tNNS VBP VBG TO VB DT NNS CC VB DT NN IN DT NNS .\nThe opposition in Kyrgyzstan has chosen a former prime minister as its candidate to challenge incumbent President Kurmanbek Bakiyev in upcoming elections .\tDT NN IN NNP VBZ VBN DT JJ JJ NN IN PRP$ NN TO VB JJ NNP NNP NNP IN VBG NNS .\nSocial Democratic Party leader Almazbek Atambayev addressed supporters after he was named on Monday .\tNNP NNP NNP NN NNP NNP VBD NNS IN PRP VBD VBN IN NNP .\nHe repeated opposition charges the government is trying to fix the polls , set for July 23 .\tPRP VBD NN NNS DT NN VBZ VBG TO VB DT NNS , VBN IN NNP CD .\nAtambayev has run for president twice before ; once in 2000 , and again five years later .\tNNP VBZ VBN IN NN RB RB ; RB IN CD , CC RB CD NNS RB .\nIn 2007 , he served as prime minister to Mr. Bakiyev , but later broke with the president .\tIN CD , PRP VBD IN JJ NN TO NNP NNP , CC RB VBD IN DT NN .\nThe opposition in Kyrgyzstan is fractured and has been hurt by the arrests of some of its members .\tDT NN IN NNP VBZ VBN CC VBZ VBN VBN IN DT NNS IN DT IN PRP$ NNS .\nIt has accused the government of intimidation .\tPRP VBZ VBN DT NN IN NN .\nThe president has strongly denied the allegations .\tDT NN VBZ RB VBN DT NNS .\nIsraeli officials say they will allow 16 Palestinians who were expelled to the Gaza Strip to return home to the West Bank Friday , in the latest goodwill gesture to the Palestinians .\tJJ NNS VBP PRP MD VB CD NNS WP VBD VBN TO DT NNP NNP TO VB NN TO DT NNP NNP NNP , IN DT JJS NN NN TO DT NNS .\nThe 16 are the first of an expected 55 to be allowed to return after the Israeli army expelled them for security reasons .\tDT CD VBP DT NN IN DT VBN CD TO VB VBN TO VB IN DT JJ NN VBD PRP IN NN NNS .\nAlso Thursday , the Israeli army announced that Defense Minister Shaul Mofaz decided to stop the controversial practice of destroying the family homes of Palestinians suspected of carrying out suicide attacks against Israeli targets .\tRB NNP , DT JJ NN VBD IN NNP NNP NNP NNP VBD TO VB DT JJ NN IN VBG DT NN NNS IN NNS VBN IN VBG RP NN NNS IN JJ NNS .\nThe army referred to a study that found the policy did little to deter militant attacks and that it spawned hatred towards Israel in the Palestinian territories .\tDT NN VBD TO DT NN WDT VBD DT NN VBD RB TO VB JJ NNS CC IN PRP VBD NN IN NNP IN DT JJ NNS .\nU.S. Senator Edward Kennedy is undergoing further tests at a hospital in the northeastern state of Massachusetts - two days after having a seizure .\tNNP NNP NNP NNP VBZ VBG JJ NNS IN DT NN IN DT JJ NN IN NNP IN CD NNS IN VBG DT NN .\nA spokeswoman for Kennedy Monday said it is not clear when his doctor will release information about his condition .\tDT NN IN NNP NNP VBD PRP VBZ RB JJ WRB PRP$ NN MD VB NN IN PRP$ NN .\nThe 76-year-old Democrat is expected to stay in the hospital for the next couple of days .\tDT JJ NNP VBZ VBN TO VB IN DT NN IN DT JJ NN IN NNS .\nAssociates of Kennedy said Sunday he was resting , eating and watching sports on television .\tNNP IN NNP VBD NNP PRP VBD VBG , VBG CC VBG NNS IN NN .\nKennedy , who has had health problems in the past , was rushed to the hospital on Saturday after suffering a seizure .\tNNP , WP VBZ VBN NN NNS IN DT NN , VBD VBN TO DT NN IN NNP IN VBG DT NN .\nThe Massachusetts lawmaker has served in the Senate for more than 45 years , and is the youngest brother of the late President John F. Kennedy , who was assassinated in 1963 .\tDT NNP NN VBZ VBN IN DT NNP IN JJR IN CD NNS , CC VBZ DT JJS NN IN DT JJ NNP NNP NNP NNP , WP VBD VBN IN CD .\nDanish naval officials said they have turned over five suspected Somali pirates to officials in the Netherlands .\tJJ JJ NNS VBD PRP VBP VBN RP CD JJ JJ NNS TO NNS IN DT NNP .\nA spokesman for the Danish Navy said Tuesday that the men have been handed over to a Dutch representative in Bahrain and are expected to be flown to the Netherlands to stand trial .\tDT NN IN DT JJ NNP VBD NNP IN DT NNS VBP VBN VBN IN TO DT JJ NN IN NNP CC VBP VBN TO VB VBN TO DT NNP TO VB NN .\nThe navy said the men were captured January 2 after they allegedly attacked a Dutch cargo ship off the coast of Somalia .\tDT NN VBD DT NNS VBD VBN NNP CD IN PRP RB VBD DT JJ NN NN IN DT NN IN NNP .\nThe Danish combat ship Absalon came to the scene and fired a flare at the pirates ' boat , which caught fire and began to sink .\tDT JJ NN NN NNP VBD TO DT NN CC VBD DT NN IN DT NNS POS NN , WDT VBD NN CC VBD TO VB .\nThe alleged pirates were pulled from the sea and had been held prisoner on the Absalon since the incident .\tDT JJ NNS VBD VBN IN DT NN CC VBD VBN VBN NN IN DT NNP IN DT NN .\nThe Danish ship is part of an international anti-piracy force patrolling the waters off Somalia .\tDT JJ NN VBZ NN IN DT JJ NN NN VBG DT NNS IN NNP .\nSomali pirates have hijacked three ships this year , after seizing more 40 vessels during 2008 .\tJJ NNS VBP VBN CD NNS DT NN , IN VBG JJR CD NNS IN CD .\nArab diplomats are due to meet with Lebanese leaders in Beirut Monday to discuss an Arab League proposal to resolve the political crisis in the country .\tJJ NNS VBP JJ TO VB IN JJ NNS IN NNP NNP TO VB DT JJ NNP NN TO VB DT JJ NN IN DT NN .\nSudanese presidential adviser Mustafa Ismail will meet government and opposition leaders after talks with Syrian officials in Damascus .\tJJ JJ NN NNP NNP MD VB NN CC NN NNS IN NNS IN JJ NNS IN NNP .\nArab League Secretary-General Amr Moussa will join him in Beirut Tuesday .\tNNP NNP NNP NNP NNP MD VB PRP IN NNP NNP .\nBoth men held separate talks in Beirut last week .\tDT NNS VBD JJ NNS IN NNP JJ NN .\nHundreds of thousands of Hezbollah protesters and allies of the Shi'ite militant group attended a rally in central Beirut Sunday .\tNNS IN NNS IN NNP NNS CC NNS IN DT NNP JJ NN VBD DT NN IN JJ NNP NNP .\nThe demonstrators were pressing demands for a national unity government that grants more power to Hezbollah and its allies .\tDT NNS VBD VBG NNS IN DT JJ NN NN WDT VBZ JJR NN TO NNP CC PRP$ NNS .\nIsmail told Arabiya television that all parties in Lebanon had agreed to Arab League mediation .\tNNP VBD NNP NN IN DT NNS IN NNP VBD VBN TO NNP NNP NN .\nThe mediation proposal is reported to include a unity government , early national elections and passage of a U.N.-proposed international tribunal to try suspects in last year 's assassination of former Prime Minister Rafik al-Hariri .\tDT NN NN VBZ VBN TO VB DT NN NN , JJ JJ NNS CC NN IN DT JJ JJ NN TO VB NNS IN JJ NN POS NN IN JJ NNP NNP NNP NNP .\nSouth Africa 's public sector unions are threatening to strike during the World Cup because of a wage dispute .\tNNP NNP POS JJ NN NNS VBP VBG TO VB IN DT NNP NNP IN IN DT NN NN .\nThe unions , which represent some 1.2 million workers , issued the threat on Thursday after rejecting the government 's latest wage offer .\tDT NNS , WDT VBP DT CD CD NNS , VBD DT NN IN NNP IN VBG DT NN POS JJS NN NN .\nA strike would put nurses and police officers off the job as South Africa hosts one of the world 's biggest sporting events .\tDT NN MD VB NNS CC NN NNS IN DT NN IN NNP NNP VBZ CD IN DT NN POS JJS VBG NNS .\nManie de Clerq , head of the Public Servants Association , says a strike may also include immigration officials , who may be needed to help World Cup tourists .\tNNP NNP NNP , NN IN DT NNP NNP NNP , VBZ DT NN MD RB VB NN NNS , WP MD VB VBN TO VB NNP NNP NNS .\nOther South African unions have taken advantage of the World Cup to demand and receive significant pay increases .\tJJ JJ JJ NNS VBP VBN NN IN DT NNP NNP TO VB CC VB JJ NN NNS .\nMost recently , port and railroad workers received an 11 percent wage hike after a three-week strike .\tJJS RB , NN CC NN NNS VBD DT CD NN NN NN IN DT JJ NN .\nThe public sector unions are demanding an 8.5 percent pay increase .\tDT JJ NN NNS VBP VBG DT CD NN NN NN .\nThe government has offered 6.2 percent .\tDT NN VBZ VBN CD NN .\nGunmen attacked a truck stop just outside of the Pakistani capital Wednesday , killing seven people and torching a convoy of tankers and trucks bound for NATO forces in Afghanistan .\tNNS VBD DT NN NN RB IN IN DT JJ NN NNP , VBG CD NNS CC VBG DT NN IN NNS CC NNS VBN IN NNP NNS IN NNP .\nPakistani officials say 10 to 15 gunmen began shooting at the depot , just 10 kilometers from Islamabad , early Wednesday before setting about 60 containers on fire .\tJJ NNS VBP CD TO CD NNS VBD VBG IN DT NN , RB CD NNS IN NNP , JJ NNP IN VBG IN CD NNS IN NN .\nThey say the attackers then fled in cars and on motorcycles .\tPRP VBP DT NNS RB VBD IN NNS CC IN NNS .\nOfficials say some of the casualties were truck drivers .\tNNS VBP DT IN DT NNS VBD NN NNS .\nOne driver says he was sitting inside his truck when the attack began and heard the gunmen saying ' kill the drivers ' and not to let anyone escape .\tCD NN VBZ PRP VBD VBG IN PRP$ NN WRB DT NN VBD CC VBD DT NNS VBG `` VBP DT NNS `` CC RB TO VB DT NN .\nMilitants have attacked trucks carrying supplies for U.S. and NATO forces in the past , but this is the first attack to take place so close to Islamabad .\tNNS VBP VBN NNS VBG NNS IN NNP CC NNP NNS IN DT NN , CC DT VBZ DT JJ NN TO VB NN RB RB TO NNP .\nOfficials are investigating and surveying the damage as the charred trucks sit jumbled together at the depot .\tNNS VBP VBG CC VBG DT NN IN DT JJ NNS VBP VBN RB IN DT NN .\nThe Italian Foreign Ministry says a group of tourists , including 21 Italians , have been found in southeastern Niger a day after an attack by bandits .\tDT JJ NNP NNP VBZ DT NN IN NNS , VBG CD NNS , VBP VBN VBN IN JJ NNP DT NN IN DT NN IN NNS .\nDetails of the incident are sketchy , but the ministry said in a statement Tuesday that the tourists may have been kidnapped in Niger near the border with Chad on Monday .\tNNS IN DT NN VBP JJ , CC DT NN VBD IN DT NN NNP IN DT NNS MD VB VBN VBN IN NNP IN DT NN IN NNP IN NNP .\nIt added that the group may have been held for a ransom demand .\tPRP VBD IN DT NN MD VB VBN VBN IN DT NN NN .\nEarlier , the ministry said it was sending a diplomat to Niger from its mission in Ivory Coast in an effort to resolve the situation .\tRB , DT NN VBD PRP VBD VBG DT NN IN NNP IN PRP$ NN IN NNP NNP IN DT NN TO VB DT NN .\nRussian officials say drawings by an acclaimed Russian artist worth millions of dollars have vanished from a state archive .\tJJ NNS VBP NNS IN DT JJ JJ NN JJ NNS IN NNS VBP VBN IN DT NN NN .\nAuthorities said Tuesday that about 2,000 drawings by avant-garde artist and architect Yakov Chernikhov are missing from the state archive of literature and art .\tNNS VBD NNP IN IN CD NNS IN JJ NN CC NN NNP NNP VBP VBG IN DT NN NN IN NN CC NN .\nOfficials say 274 drawings have been found with antiques dealers and will be returned .\tNNS VBP CD NNS VBP VBN VBN IN NNS NNS CC MD VB VBN .\nThis is the second major art theft announced in Russia in the past week .\tDT VBZ DT JJ JJ NN NN VBN IN NNP IN DT JJ NN .\nLast week , officials said more than 220 objects had been taken from St. Petersburg 's famed Hermitage museum .\tJJ NN , NNS VBD JJR IN CD NNS VBD VBN VBN IN NNP NNP POS JJ NN NN .\nAt least three people have been detained in connection with that crime , including the husband and son of a museum curator .\tIN JJS CD NNS VBP VBN VBN IN NN IN DT NN , VBG DT NN CC NN IN DT NN NN .\nAuthorities say several of the items have been recovered , including a gilded silver cross and a silver ladle found Tuesday outside the St. Petersburg headquarters of the Russian security service , the F.S.B .\tNNS VBP NN IN DT NNS VBP VBN VBN , VBG DT JJ NN NN CC DT NN NN VBN NNP IN DT NNP NNP NN IN DT JJ NN NN , DT NNP .\nDoctors at Jerusalem 's Hadassah Hospital have inserted a feeding tube into the stomach of Israeli Prime Minister Ariel Sharon .\tNNS IN NNP POS NNP NNP VBP VBN DT NN NN IN DT NN IN JJ NNP NNP NNP NNP .\nA hospital statement says Mr. Sharon remained in critical but stable condition after the procedure , called a gastrostomy .\tDT NN NN VBZ NNP NNP VBD IN JJ CC JJ NN IN DT NN , VBD DT NN .\nIt did not say why the operation was necessary .\tPRP VBD RB VB WRB DT NN VBD JJ .\nOne stroke expert says the procedure is recommended when patients are not expected to make a swift recovery .\tCD NN NN VBZ DT NN VBZ VBN WRB NNS VBP RB VBN TO VB DT JJ NN .\nMr. Sharon suffered a massive stroke on January 4 .\tNNP NNP VBD DT JJ NN IN NNP CD .\nSurgical teams at the hospital operated twice on the prime minister to reduce swelling in the brain .\tJJ NNS IN DT NN VBD RB IN DT JJ NN TO VB VBG IN DT NN .\nSince then , attempts to bring Mr. Sharon out of a coma have been unsuccessful .\tIN RB , NNS TO VB NNP NNP IN IN DT NN VBP VBN JJ .\nMr. Sharon did open his eyes briefly .\tNNP NNP VBD VB PRP$ NNS RB .\nMedical experts have said it is unlikely that the prime minister , if he does emerge from the coma , will be able to resume normal activities .\tJJ NNS VBP VBN PRP VBZ JJ IN DT JJ NN , IN PRP VBZ VB IN DT NN , MD VB JJ TO VB JJ NNS .\nDeputy prime minister Ehud Olmert is serving as acting prime minister .\tNNP JJ NN NNP NNP VBZ VBG IN JJ JJ NN .\nA Lebanese prosecutor has charged a retired general and three other people with spying for Israel .\tDT JJ NN VBZ VBN DT JJ JJ CC CD JJ NNS IN VBG IN NNP .\nRetired Brigadier General Abid al-Aalam , his wife , nephew and a fourth suspect were charged Thursday with providing information to Israel about military and civilian Lebanese and Syrian centers , with the aim of facilitating Israeli attacks .\tJJ NNP NNP NNP NNP , PRP$ NN , NN CC DT JJ NN VBD VBN NNP IN VBG NN TO NNP IN JJ CC JJ JJ CC JJ NNS , IN DT NN IN VBG JJ NNS .\nIf convicted , the four could face the death penalty .\tIN VBN , DT CD MD VB DT NN NN .\nAalam , his wife , Hayat Saloumi and nephew were arrested earlier this month on suspicion of espionage .\tNNP , PRP$ NN , NNP NNP CC NN VBD VBN RBR DT NN IN NN IN NN .\nThe fourth suspect remains at large .\tDT JJ NN VBZ IN JJ .\nJudicial officials say Aalam also is charged with the illegal possession of weapons , and that he and his wife allegedly crossed into Israel without permission .\tJJ NNS VBP NNP RB VBZ VBN IN DT JJ NN IN NNS , CC IN PRP CC PRP$ NN RB VBD IN NNP IN NN .\nIsrael and the Lebanese militant group Hezbollah fought a 34-day war in 2006 , which killed 1,200 Lebanese and nearly 160 Israelis .\tNNP CC DT JJ JJ NN NNP VBD DT JJ NN IN CD , WDT VBD CD JJ CC RB CD NNS .\nThe United Nations says about 20,000 people have crossed into Uganda to escape fighting in the eastern Democratic Republic of Congo .\tDT NNP NNP VBZ IN CD NNS VBP VBN IN NNP TO VB VBG IN DT JJ JJ NNP IN NNP .\nA statement from the U.N. refugee agency Sunday says the refugees are camped at two locations and lack food , water , shelter and sanitation .\tDT NN IN DT NNP NN NN NNP VBZ DT NNS VBP VBN IN CD NNS CC VBP NN , NN , NN CC NN .\nThe fighting erupted Thursday when forces loyal to renegade DRC Army General Laurent Nkunda occupied several towns and villages .\tDT NN VBD NNP WRB NNS JJ TO VB NNP NNP NNP NNP NNP VBD JJ NNS CC NNS .\nDRC government soldiers chased them out of some areas but clashes have continued , with U.N. peacekeepers aiding the government .\tNNP NN NNS VBD PRP IN IN DT NNS CC NNS VBP VBN , IN NNP NNS VBG DT NN .\nThe fighting is around the town of Rutshuru in North Kivu province .\tDT NN VBZ IN DT NN IN NNP IN NNP NNP NN .\nU.N. and government troops have been trying to subdue various rebel and militia groups in the area in preparation for nationwide elections later this year .\tNNP CC NN NNS VBP VBN VBG TO VB JJ NN CC NN NNS IN DT NN IN NN IN JJ NNS RBR DT NN .\nA United Nations Human Rights Council investigation has criticized Israel 's military for attacking civilians in Lebanon during the conflict with Hezbollah earlier this year .\tDT NNP NNP NNP NNP NNP NN VBZ VBN NNP POS JJ IN VBG NNS IN NNP IN DT NN IN NNP RBR DT NN .\nIn a report issued Tuesday , a team of rights experts said the civilian attacks were ' flagrant violations ' of human rights laws .\tIN DT NN VBN NNP , DT NN IN NNS NNS VBD DT JJ NNS VBD `` JJ NNS `` IN JJ NNS NNS .\nThey also said Israel 's military engaged in a pattern of ' excessive , indiscriminate and disproportionate use of force ' in the month-long conflict .\tPRP RB VBD NNP POS JJ VBN IN DT NN IN `` JJ , JJ CC JJ NN IN NN `` IN DT JJ NN .\nThe report also accused Hezbollah militants of using United Nations officials as human shields to launch attacks against Israeli forces in Lebanon .\tDT NN RB VBD NNP NNS IN VBG NNP NNP NNS IN JJ NNS TO VB NNS IN JJ NNS IN NNP .\nBut the inquiry did not include a mandate to study Hezbollah actions in the conflict .\tCC DT NN VBD RB VB DT NN TO VB NNP NNS IN DT NN .\nAlso Tuesday , the rights group Amnesty International urged U.N. officials to do an independent probe into alleged violations during the conflict .\tRB NNP , DT NNS NN NNP NNP VBD NNP NNS TO VB DT JJ NN IN JJ NNS IN DT NN .\nItalian car company Fiat says it is interested in taking over Opel , the German division of financially troubled U.S. carmaker General Motors .\tJJ NN NN NNP VBZ PRP VBZ JJ IN VBG RP NNP , DT JJ NN IN RB JJ NNP NN NNP NNPS .\nFiat chief Luca Cordero di Montezemolo told Italy 's Corriere della Sera newspaper that Opel is an ' ideal partner . '\tNNP NN NNP NNP NNP NNP VBD NNP POS NNP NN NNP NN IN NNP VBZ DT `` JJ NN . ``\nHe said a takeover would be an ' extraordinary opportunity . '\tPRP VBD DT NN MD VB DT `` JJ NN . ``\nOpel has been suffering through the world economic crisis along with many other global automakers .\tNNP VBZ VBN VBG IN DT NN JJ NN IN IN JJ JJ JJ NNS .\nBut the German government says it has no plans to offer direct help to Opel .\tCC DT JJ NN VBZ PRP VBZ DT NNS TO VB JJ NN IN NNP .\nFiat is involved in plans to buy another beleaguered U.S. car company , Chrysler , which entered into bankruptcy protection last week .\tNNP VBZ VBN IN NNS TO VB DT JJ NNP NN NN , NNP , WDT VBD IN NN NN JJ NN .\nU.S. military prosecutors have filed terror-related charges against an Afghan detainee accused of launching missiles toward U.S.-occupied areas in Afghanistan several years ago .\tNNP JJ NNS VBP VBN JJ NNS IN DT JJ NN VBN IN VBG NNS IN JJ NNS IN NNP JJ NNS RB .\nMohamed Kamin , who is believed to be 30 years old , was charged Wednesday with one count of providing material support for terrorism .\tNNP NNP , WP VBZ VBN TO VB CD NNS JJ , VBD VBN NNP IN CD NN IN VBG JJ NN IN NN .\nThe charge must be approved by the Defense Department before Kamin can be tried .\tDT NN MD VB VBN IN DT NNP NNP IN NNP MD VB VBN .\nKamin allegedly trained at an al-Qaida camp .\tNNP RB VBN IN DT NNP NN .\nHe is also accused of conducting surveillance on U.S. military bases .\tPRP VBZ RB VBN IN VBG NN IN NNP JJ NNS .\nHe is the 14th detainee at the U.S. military base in Guantanamo Bay , Cuba , selected for prosecution under a special U.S. military war-crimes tribunal .\tPRP VBZ DT JJ NN IN DT NNP JJ NN IN NNP NNP , NNP , VBN IN NN IN DT JJ NNP JJ NNS JJ .\nThe Guantanamo facility holds at least 275 terror suspects captured in Afghanistan and elsewhere .\tDT NNP NN VBZ IN JJS CD NN NNS VBN IN NNP CC RB .\nCuba 's government says it will raise pension payments to retirees and increase the salaries of some government workers .\tNNP POS NN VBZ PRP MD VB NN NNS TO NNS CC VB DT NNS IN DT NN NNS .\nSunday 's announcement says the pay hikes will target those workers who earn the least amount of money .\tNNP POS NN VBZ DT NN NNS MD VB DT NNS WP VBP DT JJS NN IN NN .\nA statement from the government says the increases will apply to pensioners and some employees who work in the Cuban court system .\tDT NN IN DT NN VBZ DT NNS MD VB TO NNS CC DT NNS WP VBP IN DT JJ NN NN .\nIt says other workers will have to wait for pay increases because the country ' does n't have the necessary resources at the moment . '\tPRP VBZ JJ NNS MD VB TO VB IN NN NNS IN DT NN `` VBZ RB VB DT JJ NNS IN DT NN . ``\nThe move comes after much speculation that pay hikes were coming .\tDT NN VBZ IN JJ NN IN NN NNS VBD VBG .\nNew Cuban President Raul Castro has spoken publicly about making changes to the government 's salary structure .\tJJ JJ NNP NNP NNP VBZ VBN RB IN VBG NNS TO DT NN POS NN NN .\nSince taking office , Mr. Castro has instituted a series of reforms , among them authorizing Cubans to buy mobile phones and computers .\tIN VBG NN , NNP NNP VBZ VBN DT NN IN NNS , IN PRP VBG NNS TO VB JJ NNS CC NNS .\nThe White House says it is renewing a U.S. ban on trade with Burma because it says the actions and policies of Rangoon 's military government are hostile to U.S. interests .\tDT NNP NNP VBZ PRP VBZ VBG DT NNP NN IN NN IN NNP IN PRP VBZ DT NNS CC NNS IN NNP POS JJ NN VBP JJ TO NNP NNS .\nA White House statement Tuesday said the ban enacted in 1997 has been renewed for another year because Burma 's military government is committing large-scale repression of the Burmese democratic opposition .\tDT NNP NNP NN NNP VBD DT NN VBN IN CD VBZ VBN VBN IN DT NN IN NNP POS JJ NN VBZ VBG JJ NN IN DT JJ JJ NN .\nAlso Tuesday , the State Department issued a warning to Americans traveling in Burma , telling them to use caution in public places because of the danger of more bombings like the three blasts that killed at least 20 people in Rangoon on May 7 .\tRB NNP , DT NNP NNP VBD DT NN TO NNS VBG IN NNP , VBG PRP TO VB NN IN JJ NNS IN IN DT NN IN JJR NNS IN DT CD NNS WDT VBD IN JJS CD NNS IN NNP IN NNP CD .\nBurmese authorities Tuesday doubled the reward for anyone giving information leading to the bombers ' arrests .\tJJ NNS NNP VBD DT NN IN DT VBG NN VBG TO DT NNS POS NNS .\nThe new reward equals nearly $ 11,000 .\tDT JJ NN VBZ RB $ CD .\nA declassified letter from a U.S. congressional leader suggests the National Security Agency ( NSA ) may have begun domestic eavesdropping without specific permission from President Bush .\tDT JJ NN IN DT NNP JJ NN VBZ DT NNP NNP NNP LRB NNP RRB MD VB VBN JJ NN IN JJ NN IN NNP NNP .\nThe letter from House Minority Leader Nancy Pelosi , dated October 2001 , asked General Michael Hayden , then NSA chief , if the president had specifically approved the expansion of NSA surveillance powers described in a House intelligence committee briefing .\tDT NN IN NNP NNP NNP NNP NNP , JJ NNP CD , VBD NNP NNP NNP , RB NNP NN , IN DT NN VBD RB VBN DT NN IN NNP NN NNS VBN IN DT NNP NN NN NN .\nGeneral Hayden replied later that month that he used only ' his authorities ' to adjust NSA information-collecting and reporting policies .\tNNP NNP VBD RB DT NN IN PRP VBD RB `` PRP$ NNS `` TO VB NNP NN CC NN NNS .\nParts of both letters were edited for security reasons .\tNNS IN DT NNS VBD VBN IN NN NNS .\nNewspaper reports revealed the domestic spying program last month .\tNNP NNS VBD DT JJ NN NN JJ NN .\nPresident Bush has said he ordered the agency , which normally monitors foreign communications , to begin domestic wiretapping in order to fight terrorism .\tNNP NNP VBZ VBN PRP VBD DT NN , WDT RB VBZ JJ NNS , TO VB JJ NN IN NN TO VB NN .\nCritics say the operation disregards U.S. privacy law .\tNNS VBP DT NN VBZ NNP NN NN .\nThe Pakistani army says its troops pushed farther into a northwestern militant stronghold Sunday , a day after the military said it captured the hometown of a Taliban leader .\tDT JJ NN VBZ PRP$ NNS VBD RB IN DT JJ JJ NN NNP , DT NN IN DT NN VBD PRP VBD DT NN IN DT NNP NN .\nThe military says helicopters provided air support as Pakistani ground troops pushed from the strategic town of Kotkai and moved deeper into South Waziristan along the Afghan border .\tDT JJ VBZ NNS VBD NN NN IN JJ NN NNS VBD IN DT JJ NN IN NNP CC VBD JJR IN NNP NNP IN DT JJ NN .\nKotkai is the hometown of Taliban chief Hakimullah Mehsud .\tNNP VBZ DT NN IN NNP NN NNP NNP .\nElsewhere , authorities say a suicide bomber killed one police officer east of the capital , Islamabad , on Sunday .\tRB , NNS VBP DT NN NN VBD CD NN NN NN IN DT NN , NNP , IN NNP .\nOfficials say the bomber detonated his explosives when police stopped his car for a search .\tNNS VBP DT NN VBD PRP$ NNS WRB NNS VBD PRP$ NN IN DT NN .\nPolice say they detained another man who had been in the car but left the vehicle before the bomb exploded .\tNNS VBP PRP VBD DT NN WP VBD VBN IN DT NN CC VBD DT NN IN DT NN VBD .\nMeanwhile , the Pakistani army has raised the death toll from Saturday 's helicopter crash in the Bajur tribal region .\tRB , DT JJ NN VBZ VBN DT NN NN IN NNP POS NN NN IN DT NNP JJ NN .\nIt says six soldiers died in what officials are calling an accident .\tPRP VBZ CD NNS VBD IN WP NNS VBP VBG DT NN .\nA senior leader for the Palestinian militant group Hamas is in Egypt to resume talks on the future of Egypt 's border with the Hamas-controlled Gaza Strip .\tDT JJ NN IN DT JJ JJ NN NNP VBZ IN NNP TO VB NNS IN DT NN IN NNP POS NN IN DT JJ NNP NNP .\nPalestinian and Egyptian security sources say Mahmoud al-Zahar crossed into Egypt Thursday with a small delegation of Hamas officials .\tJJ CC JJ NN NNS VBP NNP NNP VBD IN NNP NNP IN DT JJ NN IN NNP NNS .\nThey say the delegation will meet with Egyptian security officials in the Mediterranean coastal town of El~Arish for talks on the border situation .\tPRP VBP DT NN MD VB IN JJ NN NNS IN DT NNP JJ NN IN NNP IN NNS IN DT NN NN .\nHundreds of thousands of Palestinians streamed into Egypt to buy food and supplies after Hamas militants blew up a section of the border wall last month in response to an Israeli blockade of Gaza .\tNNS IN NNS IN NNS VBD IN NNP TO VB NN CC NNS IN NNP NNS VBD RP DT NN IN DT NN NN JJ NN IN NN TO DT JJ NN IN NNP .\nEgyptian forces resealed the barrier February 3 .\tJJ NNS VBD DT NN NNP CD .\nZahar met with Egyptian authorities in Cairo earlier this month to discuss ways to restore control at the Gaza border .\tNNP VBD IN JJ NNS IN NNP RBR DT NN TO VB NNS TO VB NN IN DT NNP NN .\nEgypt has since said it will no longer tolerate Palestinians trying to enter the country illegally through the border .\tNNP VBZ IN VBN PRP MD RB RB VB NNS VBG TO VB DT NN RB IN DT NN .\nRomania 's main opposition candidate has called for a repeat of Sunday 's first round of presidential and parliamentary elections , alleging widespread electoral fraud .\tNNP POS JJ NN NN VBZ VBN IN DT NN IN NNP POS JJ NN IN JJ CC JJ NNS , VBG JJ JJ NN .\nAmong other allegations , centrist coalition leader Traian Basescu said Tuesday the ruling Social Democrats chartered dozens of buses to allow supporters to go from precinct to precinct and cast ballots several times .\tIN JJ NNS , JJ NN NN NNP NNP VBD NNP DT NN NNP NNPS VBD NNS IN NNS TO VB NNS TO VB IN NN TO VB CC VB NNS JJ NNS .\nWith 90 percent of the votes counted , Prime Minister Adrian Nastase and his Social Democrats lead Mr. Basescu 's centrist alliance 36 percent to 31 percent in the parliamentary election .\tIN CD NN IN DT NNS VBN , NNP NNP NNP NNP CC PRP$ NNP NNPS VBP NNP NNP POS JJ NN CD NN TO CD NN IN DT JJ NN .\nThe presidential election tally has Mr. Nastase ahead of Mr. Basescu 40 to 34 percent .\tDT JJ NN RB VBZ NNP NNP RB IN NNP NNP CD TO CD NN .\nThe two candidates are scheduled to face each other in a runoff election on December 12 .\tDT CD NNS VBP VBN TO VB DT NN IN DT NN NN IN NNP CD .\nPro Democratia , a Romanian civil rights group , says it will pull its election monitors from the second round of voting to protest reported irregularities .\tNNP NNP , DT JJ JJ NNS NN , VBZ PRP MD VB PRP$ NN NNS IN DT JJ NN IN NN TO VB VBN NNS .\nThe death toll from Saturday 's roof collapse in southern Poland has risen to 65 as rescue workers pulled three more bodies from the wreckage .\tDT NN NN IN NNP POS NN NN IN JJ NNP VBZ VBN TO CD IN NN NNS VBD CD JJR NNS IN DT NN .\nAmong the victims recovered Tuesday was a Hungarian , bringing to nine the number of foreigners who died in the accident .\tIN DT NNS VBN NNP VBD DT NN , VBG TO CD DT NN IN NNS WP VBD IN DT NN .\nThe eight other foreigners were from Slovakia , the Czech Republic , Germany , the Netherlands and Belgium .\tDT CD JJ NNS VBD IN NNP , DT JJ NNP , NNP , DT NNP CC NNP .\nAt least 160 other people were injured .\tIN JJS CD JJ NNS VBD VBN .\nAbout 500 people from across Europe were in a large exhibition hall in the Katowice area when the building 's snow-covered roof caved in .\tIN CD NNS IN IN NNP VBD IN DT JJ NN NN IN DT NNP NN WRB DT NN POS JJ NN VBN IN .\nA team of experts is trying to determine why the building collapsed .\tDT NN IN NNS VBZ VBG TO VB WRB DT NN VBD .\nPolish authorities blame the weight of the snow on the roof .\tJJ NNS VBP DT NN IN DT NN IN DT NN .\nPresident Bush has outlined the agenda for his second term in office and has asked for the support of all Americans , but Democrats have expressed reservations .\tNNP NNP VBZ VBN DT NN IN PRP$ JJ NN IN NN CC VBZ VBN IN DT NN IN DT NNS , CC NNPS VBP VBN NNS .\nIn his weekly radio address Saturday , Mr. Bush promised to reach out to international allies to promote global development and progress , defeat terrorists and encourage democracy .\tIN PRP$ JJ NN NN NNP , NNP NNP VBD TO VB RP TO JJ NNS TO VB JJ NN CC NN , NN NNS CC VB NN .\nIn this country , he pledged to introduce medical malpractice , education and tax code reform and to save the threatened U.S. Social Security system .\tIN DT NN , PRP VBD TO VB JJ NN , NN CC NN NN NN CC TO VB DT JJ NNP NNP NNP NN .\nResponding to the President 's remarks in her own radio address , House Democratic Leader Nancy Pelosi said Democrats stand ready to work with Mr. Bush .\tVBG TO DT NNP POS NNS IN PRP$ JJ NN NN , NNP NNP NNP NNP NNP VBD NNPS VBP JJ TO VB IN NNP NNP .\nBut the minority leader said they will fight the President 's plans on Social Security if he proposes to privatize the system or cut benefits .\tCC DT NN NN VBD PRP MD VB DT NNP POS NNS IN NNP NNP IN PRP VBZ TO VB DT NN CC NN NNS .\nMs. Pelosi proposed a nationwide transportation construction bill that she said would create 1.7 million new jobs .\tNNP NNP VBD DT JJ NN NN NN IN PRP VBD MD VB CD CD JJ NNS .\nAn independent polling firm in Venezuela says President Hugo Chavez is gaining support for a February 15 referendum that would abolish term limits and allow him to seek re-election indefinitely .\tDT JJ NN NN IN NNP VBZ NNP NNP NNP VBZ VBG NN IN DT NNP CD NN WDT MD VB NN NNS CC VB PRP TO VB NN RB .\nThe Datanalisis firm says a survey of 1,300 people indicates that more than 51 percent of voters support a constitutional amendment to end term limits for all elected officials .\tDT NNP NN VBZ DT NN IN CD NNS VBZ IN JJR IN CD NN IN NNS VBP DT JJ NN TO VB NN NNS IN DT VBN NNS .\nLast month , another Datanalisis poll put support for President Chavez 's proposal at below 40 percent .\tJJ NN , DT NNP NN VBD NN IN NNP NNP POS NN IN IN CD NN .\nThe current constitution bans the president from running again when his term ends in 2012 .\tDT JJ NN VBZ DT NN IN VBG RB WRB PRP$ NN VBZ IN CD .\nIn late 2007 , voters narrowly rejected a package of measures including one that would have eliminated presidential term limits .\tIN JJ CD , NNS RB VBD DT NN IN NNS VBG CD WDT MD VB VBN JJ NN NNS .\nIn a speech at that time , Mr. Chavez said the defeat was only ' for now ' and that he would continue his battle to build socialism .\tIN DT NN IN DT NN , NNP NNP VBD DT NN VBD RB `` IN RB `` CC IN PRP MD VB PRP$ NN TO VB NN .\nMr. Chavez was first elected in 1998 .\tNNP NNP VBD JJ VBN IN CD .\nHe won approval for a new constitution the following year .\tPRP VBD NN IN DT JJ NN DT JJ NN .\nGeorgian President Mikhail Saakashvili is expected in Kiev Friday to take part in a New Year 's Eve celebration rally with Ukraine 's apparent president-elect Viktor Yushchenko and his supporters .\tJJ NNP NNP NNP VBZ VBN IN NNP NNP TO VB NN IN DT NNP NNP POS NNP NN NN IN NNP POS JJ JJ NNP NNP CC PRP$ NNS .\nThe two men , who have warm personal ties , will ring in the new year together , days after Ukraine 's Central Election Commission declared Mr. Yushchenko the winner of last Sunday 's runoff election .\tDT CD NNS , WP VBP JJ JJ NNS , MD VB IN DT JJ NN RB , NNS IN NNP POS NNP NNP NNP VBD NNP NNP DT NN IN JJ NNP POS NN NN .\nMr. Saakashvili came to power in January after accusing his country 's government of electoral fraud and mounting a protest movement that forced then-Georgian leader Eduard Shevardnadze out of power .\tNNP NNP VBD TO NN IN NNP IN VBG PRP$ NN POS NN IN JJ NN CC VBG DT NN NN WDT VBD JJ NN NNP NNP IN IN NN .\nMr. Yushchenko 's supporters have cited Mr. Saakashvili 's ' rose revolution ' as an inspiration for their own movement .\tNNP NNP POS NNS VBP VBN NNP NNP POS `` VBD NN `` IN DT NN IN PRP$ JJ NN .\nMeanwhile , Ukraine 's Central Election Commission has rejected complaints of election fraud filed by Kremlin-backed Prime Minister Viktor Yanukovych , who ran against Mr. Yushchenko .\tRB , NNP POS NNP NNP NNP VBZ VBN NNS IN NN NN VBN IN VBN NNP NNP NNP NNP , WP VBD IN NNP NNP .\nBut a spokesman for the prime minister says he will not concede the election .\tCC DT NN IN DT JJ NN VBZ PRP MD RB VB DT NN .\nAn influential Iranian cleric is calling on Muslim nations to help Lebanon 's Hezbollah guerrillas in their fight against Israel .\tDT JJ JJ NN VBZ VBG IN NNP NNS TO VB NNP POS NNP NNS IN PRP$ NN IN NNP .\nAyatollah Ahmad Jannati , who heads the powerful Guardian Council , told the Iranian Students News Agency Tuesday that he wants Muslims worldwide to provide arms for Hezbollah , as well political and financial support for the militants .\tNNP NNP NNP , WP VBZ DT JJ NNP NNP , VBD DT JJ NNP NNP NNP NNP IN PRP VBZ NNPS VBP TO VB NNS IN NNP , RB RB JJ CC JJ NN IN DT NNS .\nIsrael , the United States and allied Western states accuse Syria and Iran of supporting Hezbollah with arms and cash .\tNNP , DT NNP NNPS CC JJ JJ NNS VBP NNP CC NNP IN VBG NNP IN NNS CC NN .\nIran says it provides only moral and diplomatic support for the Shi'ite Islamic group .\tNNP VBZ PRP VBZ RB JJ CC JJ NN IN DT NNP NNP NN .\nThe Olympic torch relay has reached Turin in northern Italy , where the 20th Olympic Winter Games open Friday .\tDT JJ NN NN VBZ VBN NNP IN JJ NNP , WRB DT JJ NNP NNP NNPS VBP NNP .\nThe Olympic flame was carried by more than 10,000 torchbearers in a 64-day journey that covered 11,300 kilometers .\tDT JJ NN VBD VBN IN JJR IN CD NNS IN DT JJ NN WDT VBD CD NNS .\nThe flame was lit at Olympia in Greece two months ago .\tDT NN VBD VBN IN NNP IN NNP CD NNS RB .\nShortly before midday local time Thursday , the torch entered Turin through the Piazza Massaua .\tRB IN NN JJ NN NNP , DT NN VBD NNP IN DT NNP NNP .\nIt was received by the City Police Band before being carried to the city center .\tPRP VBD VBN IN DT NNP NNP NNP IN VBG VBN TO DT NN NN .\nTurin-born Livio Berruti , the 200-meter gold medalist at the 1960 Olympics , will light the cauldron in Piazza Palazzo di Citta .\tJJ NNP NNP , DT JJ NN NN IN DT CD NNPS , MD VB DT NN IN NNP NNP NNP NNP .\nBut the identity of person who will light the Olympic cauldron on Friday remains a tightly guarded secret .\tCC DT NN IN NN WP MD VB DT NNP NN IN NNP VBZ DT RB VBN NN .\nThe games end February 26 .\tDT NNS VBP NNP CD .\nTogo 's election commission says ruling party candidate Faure Gnassingbe is the winner of Sunday 's presidential election .\tNNP POS NN NN VBZ VBG NN NN NNP NNP VBZ DT NN IN NNP POS JJ NN .\nThe commission chief ( Kissem Tchangai-Walla ) says Mr. Gnassingbe , son of the late longtime leader Gnassingbe Eyadema , won with just over 60 percent of votes cast .\tDT NN NN LRB NNP NNP RRB VBZ NNP NNP , NN IN DT JJ JJ NN NNP NNP , VBD IN RB IN CD NN IN NNS VBN .\nMinutes after the announcement , angry opposition youths poured onto the streets of Togo 's capital , Lome , setting up burning barricades , throwing rocks and attacking cars .\tNNS IN DT NN , JJ NN NNS VBD IN DT NNS IN NNP POS NN , NNP , VBG RP NN NNS , VBG NNS CC VBG NNS .\nStreet violence and allegations of fraud on both sides marred Sunday 's election , which was organized under pressure by West African leaders after the military briefly installed Mr. Gnassingbe following his father 's death in February .\tNN NN CC NNS IN NN IN DT NNS VBD NNP POS NN , WDT VBD VBN IN NN IN JJ JJ NNS IN DT JJ RB VBD NNP NNP VBG PRP$ NN POS NN IN NNP .\nAccording to the electoral commission , opposition candidate Emmanual Akitani-Bob won just over 38 percent of the vote .\tVBG TO DT JJ NN , NN NN NNP NNP VBD RB IN CD NN IN DT NN .\nThe third candidate , Harry Olympio , came in last with under one-percent ( 0.55 ) .\tDT JJ NN , NNP NNP , VBD IN JJ IN IN JJ LRB CD RRB .\nA convoy of dozens of trucks transporting a massive oil drilling machine arrived Friday at the site of the San Jose gold and copper mine in Chile , where 33 miners are trapped .\tDT NN IN NNS IN NNS VBG DT JJ NN NN NN VBD NNP IN DT NN IN DT NNP NNP NN CC NN NN IN NNP , WRB CD NNS VBP VBN .\nThe drill is the third one being employed to try to rescue the miners , who have now been underground for 36 days .\tDT NN VBZ DT JJ CD VBG VBN TO VB TO VB DT NNS , WP VBP RB VBN JJ IN CD NNS .\nIt has been labeled ' Plan C ' and it is hoped that it will speed the rescue effort .\tPRP VBZ VBN VBN `` NNP NNP `` CC PRP VBZ VBN IN PRP MD VB DT NN NN .\nHowever , freedom for the trapped miners is likely to still be months away .\tRB , NN IN DT JJ NNS VBZ JJ TO RB VB NNS RB .\nThe 33 men were trapped by a mine cave-in on August 5 .\tDT CD NNS VBD VBN IN DT NN NN IN NNP CD .\nBut it was not until August 22 that they were discovered alive .\tCC PRP VBD RB IN NNP CD IN PRP VBD VBN JJ .\nRescuers have been sending food , medicine and relatives ' letters through a chute to where the miners are located , 700 meters below the surface .\tNNS VBP VBN VBG NN , NN CC NNS POS NNS IN DT NN IN WRB DT NNS VBP VBN , CD NNS IN DT NN .\nA White House report has called for changes in the government 's response to disasters such as Hurricane Katrina .\tDT NNP NNP NN VBZ VBN IN NNS IN DT NN POS NN TO NNS JJ IN NNP NNP .\nThe report , by domestic security adviser Frances Townsend , says 11 reforms are urgently needed before the start of a new hurricane season in June .\tDT NN , IN JJ NN NN NNP NNP , VBZ CD NNS VBP RB VBN IN DT NN IN DT JJ NN NN IN NNP .\nPresident Bush discussed the report with his cabinet Thursday , saying the reforms will help the government be better prepared for future disasters .\tNNP NNP VBD DT NN IN PRP$ NN NNP , VBG DT NNS MD VB DT NN VB RB VBN IN JJ NNS .\nThe changes include improved coordination with military officials during relief operations , a review of local evacuation plans and getting help more quickly to disaster victims .\tDT NNS VBP VBN NN IN JJ NNS IN NN NNS , DT NN IN JJ NN NNS CC VBG NN RBR RB TO NN NNS .\nThe report also found flaws in the government 's response to Hurricane Katrina last year , such as failures in disaster management and planning .\tDT NN RB VBD NNS IN DT NN POS NN TO NNP NNP JJ NN , JJ IN NNS IN NN NN CC NN .\nEarlier this month , a congressional investigation blamed failures at all levels of government for the suffering and loss of life in the Gulf Coast storm .\tRBR DT NN , DT JJ NN VBD NNS IN DT NNS IN NN IN DT NN CC NN IN NN IN DT NNP NNP NN .\nTyphoon Longwang has hit mainland China after pounding Taiwan Sunday , where it left one person dead and disrupted flights and electricity .\tNN NNP VBZ VBN JJ NNP IN VBG NNP NNP , WRB PRP VBD CD NN JJ CC VBD NNS CC NN .\nOfficials say it hit China 's Fujian province with strong winds and heavy rains .\tNNS VBP PRP VBD NNP POS JJ NN IN JJ NNS CC JJ NNS .\nMore than 3,00,000 people were evacuated .\tJJR IN CD NNS VBD VBN .\nIn Taiwan , a 60-year-old man died after he was hit by flying debris .\tIN NNP , DT JJ NN VBD IN PRP VBD VBN IN VBG NN .\nA woman is missing and feared dead after being washed away by flash floods in the central town of Hoping .\tDT NN VBZ VBG CC VBD JJ IN VBG VBN RB IN NN NNS IN DT JJ NN IN NNP .\nAnd 46 people were injured during the typhoon , most by flying debris .\tCC CD NNS VBD VBN IN DT NN , JJS IN VBG NN .\nEuropean Union representatives are traveling to the Middle East Sunday in hopes of persuading Israeli and Palestinian leaders to move toward a humanitarian truce in the Gaza Strip .\tNNP NNP NNS VBP VBG TO DT NNP NNP NNP IN NNS IN VBG JJ CC JJ NNS TO VB IN DT JJ NN IN DT NNP NNP .\nThe EU says it is sending Czech Foreign Minister Karel Schwarzenburg along with the EU 's external relations commissioner and Schwarzenburg 's French and Swedish counterparts .\tDT NNP VBZ PRP VBZ VBG JJ NNP NNP NNP NNP IN IN DT NNP POS JJ NNS NN CC NNP POS JJ CC JJ NNS .\nIt says the team will visit Egypt today before meeting with Israel 's Prime Minister Ehud Olmert and President Shimon Peres in Jerusalem on Monday .\tPRP VBZ DT NN MD VB NNP NN IN VBG IN NNP POS NNP NNP NNP NNP CC NNP NNP NNP IN NNP IN NNP .\nThe team will then go to the West Bank town of Ramallah and finish up its Middle East trip in Jordan on Tuesday .\tDT NN MD RB VB TO DT NNP NNP NN IN NNP CC VB RP PRP$ NNP NNP NN IN NNP IN NNP .\nThe EU says French President Nicolas Sarkozy will also attend the meeting in Ramallah with Palestinian President Mahmoud Abbas .\tDT NNP VBZ JJ NNP NNP NNP MD RB VB DT NN IN NNP IN JJ NNP NNP NNP .\nMr. Sarkozy also plans to visit Israel , Egypt , Syria and Lebanon this week .\tNNP NNP RB VBZ TO VB NNP , NNP , NNP CC NNP DT NN .\nThe European Union is the biggest foreign aid donor to the Palestinian territories .\tDT NNP NNP VBZ DT JJS JJ NN NN TO DT JJ NNS .\nFrance 's interior minister says at least 10 French citizens are in Iraq ready to become suicide bombers .\tNNP POS JJ NN VBZ IN JJS CD JJ NNS VBP IN NNP JJ TO VB NN NNS .\nNicolas Sarkozy told France-3 television Monday that French intelligence has lost track of at least 10 young Frenchmen who have gone to Iraq .\tNNP NNP VBD JJ NN NNP IN JJ NN VBZ VBN NN IN IN JJS CD JJ NNS WP VBP VBN TO NNP .\nHe said 10 others have died in combat or suicide bombings or are prisoners of the U.S. led coalition .\tPRP VBD CD NNS VBP VBN IN NN CC NN NNS CC VBP NNS IN DT NNP VBD NN .\nFrance has no soldiers in Iraq .\tNNP VBZ DT NNS IN NNP .\nMr. Sarkozy defended the government 's planned new anti-terrorism measures , saying the risk of an attack in France is very high .\tNNP NNP VBD DT NN POS JJ JJ NN NNS , VBG DT NN IN DT NN IN NNP VBZ RB JJ .\nThe new measures include more video surveillance on the streets and public places , and increased monitoring of overseas travelers .\tDT JJ NNS VBP RBR NN NN IN DT NNS CC JJ NNS , CC VBN NN IN JJ NNS .\nMr. Sarkozy said a French citizen who suddenly goes to Afghanistan for three months should account for his travels .\tNNP NNP VBD DT JJ NN WP RB VBZ TO NNP IN CD NNS MD VB IN PRP$ NNS .\nThe United Nations has certified the list of registered voters in the Ivory Coast ahead of next month 's presidential elections .\tDT NNP NNP VBZ VBN DT NN IN JJ NNS IN DT NNP NNP RB IN JJ NN POS JJ NNS .\nOn Friday , U.N. representative Choi Youn-jin called the voter list ' fair , solid and balanced ' .\tIN NNP , NNP NN NNP NNP VBD DT NN NN `` JJ , JJ CC JJ `` .\nThe Ivory Coast presidential election is set for October 31 .\tDT NNP NNP JJ NN VBZ VBN IN NNP CD .\nThe election has been postponed multiple times during the past five years due in part to disputes about the nationality of names listed on the official voters ' list .\tDT NN VBZ VBN VBN JJ NNS IN DT JJ CD NNS JJ IN NN TO NNS IN DT NN IN NNS VBN IN DT JJ NNS POS NN .\nThe civil war that has spilt the country for most of the decade centers around land reform and grounds for citizenship , in a nation of migrant workers helping the world 's largest producer and exporter of cocoa beans .\tDT JJ NN WDT VBZ VBN DT NN IN JJS IN DT NN NNS IN NN NN CC NNS IN NN , IN DT NN IN JJ NNS VBG DT NN POS JJS NN CC NN IN NN NNS .\nThe U.S. Environmental Protection Agency celebrated Earth Day this week in Washington ( 22 April ) by showcasing environmentally friendly new designs that could be the wave of the future .\tDT NNP NNP NNP NNP VBD NNP NNP DT NN IN NNP LRB CD NNP RRB IN VBG RB JJ JJ NNS WDT MD VB DT NN IN DT NN .\nProducer Zulima Palacio prepared this report .\tNN NNP NNP VBD DT NN .\nA prominent human rights group says Hamas militants committed war crimes when they launched rocket attacks against Israel .\tDT JJ JJ NNS NN VBZ NNP NNS VBN NN NNS WRB PRP VBD NN NNS IN NNP .\nA Human Rights Watch spokesman said Hamas rocket attacks that targeted Israeli citizens were ' unlawful and unjustifiable ' .\tDT NNP NNP NNP NN VBD NNP NN NNS WDT VBD JJ NNS VBD `` JJ CC JJ `` .\nA new report released by the group says Hamas militants fired rockets that placed about 8,00,000 Israeli civilians at risk and killed two Israeli girls .\tDT JJ NN VBN IN DT NN VBZ NNP NNS VBD NNS WDT VBD IN CD JJ NNS IN NN CC VBD CD JJ NNS .\nIt also says militants that launched rockets from densely populated areas placed Gaza civilians at risk of Israeli counter strikes .\tPRP RB VBZ NNS WDT VBD NNS IN RB JJ NNS VBN NNP NNS IN NN IN JJ NN NNS .\nThe report focuses on Hamas tactics used just before and during Israel 's three-week offensive in Gaza , from last November to mid-January .\tDT NN VBZ IN NNP NNS VBN RB RB CC IN NNP POS JJ NN IN NNP , IN JJ NNP TO NNP .\nHuman Rights Watch and other rights groups have repeatedly accused Israel of committing war crimes .\tNNP NNP NNP CC JJ NNS NNS VBP RB VBN NNP IN VBG NN NNS .\nAt least 1,300 Palestinians and 13 Israelis were killed during the Israeli offensive .\tIN JJS CD NNS CC CD NNS VBD VBN IN DT JJ NN .\nSome of the latest secret U.S. cables released by WikiLeaks say Saudi Arabia proposed deploying an Arab military force backed by the U.N. , U.S. and NATO to crush Hezbollah forces in Lebanon .\tDT IN DT JJS JJ NNP NNS VBN IN NNS VBP NNP NNP VBD VBG DT JJ JJ NN VBN IN DT NNP , NNP CC NNP TO VB NNP NNS IN NNP .\nAccording to the cables , Saudi Foreign Minister Saud al-Faisal said in May 2008 that what he called a ' security response ' was needed to prevent the militant group - and its patron , Iran - from taking power in the Lebanese capital , Beirut .\tVBG TO DT NNS , NNP NNP NNP NNP NNP VBD IN NNP CD IN WP PRP VBD DT `` NN NN `` VBD VBN TO VB DT JJ NN : CC PRP$ NN , NNP : IN VBG NN IN DT JJ NN , NNP .\nThe exchange between al-Faisal and U.S. diplomat David Satterfield took place days after Hezbollah had briefly seized control of large sections of Beruit during fighting with pro-government supporters .\tDT NN IN JJ CC NNP NN NNP NNP VBD NN NNS IN NNP VBD RB VBN NN IN JJ NNS IN NNP IN VBG IN JJ NNS .\nAl-Faisal told Satterfield that only the Lebanese prime minister , Jordan , Egypt and the Arab League were aware of the plan .\tNNP VBD NNP IN RB DT JJ JJ NN , NNP , NNP CC DT NNP NNP VBD JJ IN DT NN .\nThe U.S. responded by questioning the political and military feasibility of the plan .\tDT NNP VBD IN VBG DT JJ CC JJ NN IN DT NN .\nThe U.S. space agency , NASA , is preparing to put a long-armed lander on the icy north pole of Mars to search for water and possible signs of life .\tDT NNP NN NN , NNP , VBZ VBG TO VB DT JJ NN IN DT NN NN NN IN NNP TO VB IN NN CC JJ NNS IN NN .\nScientists working on the Phoenix Mars project said Thursday they plan to launch the $ 386 million spacecraft in August 2007 and land 10 months later .\tNNS VBG IN DT NNP NNP NN VBD NNP PRP VBP TO VB DT $ CD CD NN IN NNP CD CC NN CD NNS RB .\nThe probe will use its long robotic arm to dig into the ice and terrain to gather soil samples near the arctic surface .\tDT NN MD VB PRP$ JJ JJ NN TO VB IN DT NN CC NN TO VB NN NNS IN DT JJ NN .\nScientists say ice is interesting because if there is any life on Mars , it is most likely to be found near water .\tNNS VBP NN VBZ JJ IN IN EX VBZ DT NN IN NNP , PRP VBZ RBS JJ TO VB VBN IN NN .\nAn earlier mission called Mars Odyssey first detected icy soil at the north pole of Mars in 2002 .\tDT JJR NN VBN NNP NNP RB VBD NN NN IN DT JJ NN IN NNP IN CD .\nThe U.S. military in Iraq says coalition forces have captured a suspected terrorist with close ties to Iran 's elite Quds force .\tDT NNP NN IN NNP VBZ NN NNS VBP VBN DT JJ JJ IN JJ NNS TO NNP POS NN VBZ NN .\nA military statement Friday said the suspect was detained in a raid Thursday near Baqubah , and that he allegedly facilitated the transport of weapons and personnel from Iran to Iraq .\tDT JJ NN NNP VBD DT NN VBD VBN IN DT NN NNP IN NNP , CC IN PRP RB VBD DT NN IN NNS CC NNS IN NNP TO NNP .\nThe statement said the suspect also is believed to have facilitated the flow of sophisticated roadside bombs into Iraq from Iran to be used against coalition forces .\tDT NN VBD DT NN RB VBZ VBN TO VB VBN DT NN IN JJ NN NNS IN NNP IN NNP TO VB VBN IN NN NNS .\nThe bombs - known as explosively formed projectiles or EFPs - can penetrate armor .\tDT NNS : VBN IN RB VBN NNS CC NNS : MD VB NN .\nIran has denied U.S. charges that it is providing weapons and training to Shi'ite militants in Iraq .\tNNP VBZ VBN NNP NNS IN PRP VBZ VBG NNS CC NN IN NNP NNS IN NNP .\nIran and the U.S. discussed Iraq 's security situation in May , during the highest-level talks between the two countries in nearly 30 years .\tNNP CC DT NNP VBD NNP POS NN NN IN NNP , IN DT JJ NNS IN DT CD NNS IN RB CD NNS .\nBoth sides have said they are ready for a second round of talks on Iraq .\tDT NNS VBP VBN PRP VBP JJ IN DT JJ NN IN NNS IN NNP .\nVenezuelan President Hugo Chavez has arrived in Syria for a three-day diplomatic visit .\tJJ NNP NNP NNP VBZ VBN IN NNP IN DT JJ JJ NN .\nSyrian state media say President Bashar al-Assad met Mr. Chavez Tuesday at the airport in Damascus .\tJJ NN NNS VBP NNP NNP NNP VBD NNP NNP NNP IN DT NN IN NNP .\nThe two leaders are expected to hold talks on bilateral cooperation .\tDT CD NNS VBP VBN TO VB NNS IN JJ NN .\nThe Venezuelan president has built close ties with Syria , Iran and other countries in the Middle East , while relations have grown tense with Israel .\tDT JJ NN VBZ VBN JJ NNS IN NNP , NNP CC JJ NNS IN DT NNP NNP , IN NNS VBP VBN NN IN NNP .\nEarlier this month , Israel recalled its ambassador to Venezuela after Mr. Chavez said that Israeli attacks against Hezbollah in Lebanon were ' genocide . '\tRBR DT NN , NNP VBD PRP$ NN TO NNP IN NNP NNP VBD IN JJ NNS IN NNP IN NNP VBD `` NN . ``\nPreviously , President Chavez withdrew Venezuela 's ambassador to Israel to show what he called his ' indignation ' over the Israeli military offensive in Lebanon .\tRB , NNP NNP VBD NNP POS NN TO NNP TO VB WP PRP VBD PRP$ `` NN `` IN DT JJ JJ NN IN NNP .\nThe World Health Organization estimates that between five and 10 percent of us suffer from depression at any given time .\tDT NNP NNP NNP VBZ IN IN CD CC CD NN IN PRP VBP IN NN IN DT VBN NN .\nBut fewer than a third of those with depression receive appropriate care .\tCC JJR IN DT NN IN DT IN NN VBP JJ NN .\nIn the United States , more than 21 million people suffer from depression .\tIN DT NNP NNPS , JJR IN CD CD NNS VBP IN NN .\nFor millions , no treatment works .\tIN NNS , DT NN VBZ .\nNow , doctors are trying an experimental technique that shows promise in treating some difficult cases of depression .\tRB , NNS VBP VBG DT JJ NN WDT VBZ NN IN VBG DT JJ NNS IN NN .\nVOA 's Carol Pearson reports .\tNNP POS NNP NNP VBZ .\nThe agency that monitors daily images of the Arctic ice pack reports the ice in early September reached its minimum but did not retreat as much this year as last .\tDT NN WDT VBZ JJ NNS IN DT NNP NN NN VBZ DT NN IN JJ NNP VBD PRP$ NN CC VBD RB VB RB RB DT NN IN JJ .\nBut scientists warn that in about the last decade , the world 's sea ice has melted faster than expected .\tCC NNS VBP IN IN IN DT JJ NN , DT NN POS NN NN VBZ VBN RBR IN VBN .\nThe National Snow and Ice Data Center in Boulder , Colorado , which monitors the daily updates of NASA 's satellite images , says the northern winter ice now has begun to re-form .\tDT NNP NNP CC NNP NNP NNP IN NNP , NNP , WDT VBZ DT JJ NNS IN NNP POS NN NNS , VBZ DT JJ NN NN RB VBZ VBN TO VB .\nVOA 's Paul Sisco spoke with NASA Ice Science Project chief scientist Jay Zwally about this year 's near record summer melt .\tNNP POS NNP NNP VBD IN NNP NNP NNP NNP NN NN NNP NNP IN DT NN POS JJ NN NN NN .\nVenezuelan President Hugo Chavez is in Havana for talks with Cuban leader Fidel Castro .\tJJ NNP NNP NNP VBZ IN NNP IN NNS IN JJ NN NNP NNP .\nThe two close allies met at the Palace of the Revolution Tuesday .\tDT CD JJ NNS VBD IN DT NNP IN DT NN NNP .\nTheir agenda was not made public , but experts say they likely discussed Cuba 's energy needs .\tPRP$ NN VBD RB VBN JJ , CC NNS VBP PRP RB VBD NNP POS NN NNS .\nVenezuela provides about one-third of Cuba 's oil .\tNNP VBZ IN NN IN NNP POS NN .\nMr. Castro has appeared in public in a wheelchair since an accidental fall in October .\tNNP NNP VBZ VBN IN NN IN DT NN IN DT JJ NN IN NNP .\nBut he was shown standing next to Mr. Chavez in an official photo taken when he welcomed him at the Havana airport late Monday .\tCC PRP VBD VBN VBG JJ TO NNP NNP IN DT JJ NN VBN WRB PRP VBD PRP IN DT NNP NN JJ NNP .\nThe two countries have close political , economic and cultural ties .\tDT CD NNS VBP JJ JJ , JJ CC JJ NNS .\nHavana has sent hundreds of health care workers and teachers to its South American ally .\tNNP VBZ VBN NNS IN NN NN NNS CC NNS TO PRP$ JJ JJ NN .\nPolice in South Korea have arrested a man and six women who they say used the Internet to buy and sell human eggs , in violation of the country 's bioethics law .\tNNS IN NNP NNP VBP VBN DT NN CC CD NNS WP PRP VBP VBD DT NN TO VB CC VB JJ NNS , IN NN IN DT NN POS NNS NN .\nSeoul police arrested the man Saturday .\tNNP NN VBN DT NN NNP .\nThey say he is in his late 20s and identified him only as Kim .\tPRP VBP PRP VBZ IN PRP$ JJ NNS CC VBD PRP RB IN NNP .\nPolice say the women sold or bought the eggs , using web sites created by Mr. Kim to arrange the deals .\tNNS VBP DT NNS VBD CC VBD DT NNS , VBG NN NNS VBN IN NNP NNP TO VB DT NNS .\nPolice said the deals involved thousands of dollars .\tNNS VBD DT NNS VBN NNS IN NNS .\nUnder South Korean law , buyers and sellers of human eggs or sperm face up to three years in prison .\tIN JJ JJ NN , NNS CC NNS IN JJ NNS CC NN VBP RP TO CD NNS IN NN .\nThe broker faces two years .\tDT NN VBZ CD NNS .\nAn Indonesian newspaper is reporting that Indonesian police have arrested a man believed to have played a key role in September 's car bombing outside the Australian Embassy in Jakarta .\tDT JJ NN VBZ VBG IN JJ NNS VBP VBN DT NN VBN TO VB VBN DT JJ NN IN NNP POS NN VBG IN DT JJ NN IN NNP .\nIndonesia 's leading newspaper , Kompas , quotes police sources as saying Iwan Darmawan , also known as Rois , was arrested two weeks ago on Java island .\tNNP POS JJ NN , NNP , VBZ NN NNS IN VBG NNP NNP , RB VBN IN NNP , VBD VBN CD NNS RB IN NNP NN .\nThe newspaper quoted the police sources as saying Mr. Darmawan is accused of having a key planning role in the September 9 embassy attack , which killed 10 people .\tDT NN VBD DT NN NNS IN VBG NNP NNP VBZ VBN IN VBG DT JJ NN NN IN DT NNP CD NN NN , WDT VBD CD NNS .\nHe is also accused of being involved in the 2002 Bali bombings , as well as last year 's car bombing attack on a Jakarta luxury hotel .\tPRP VBZ RB VBN IN VBG VBN IN DT CD NNP NNS , RB RB IN JJ NN POS NN VBG NN IN DT NNP NN NN .\nPolice have said two Malaysian militants , who remain at large , are the masterminds of the embassy attack .\tNNS VBP VBN CD JJ NNS , WP VBP IN JJ , VBP DT NNS IN DT NN NN .\nA Sri Lankan aid agency with ties to Tamil Tiger rebels says two of 10 reportedly kidnapped employees have returned to their families , but that eight others are still missing .\tDT NNP NNP NN NN IN NNS TO NNP NNP NNS VBZ CD IN CD RB VBN NNS VBP VBN TO PRP$ NNS , CC IN CD NNS VBP RB VBG .\nThe Tamil Rehabilitation Organization says five aid workers disappeared Tuesday after leaving Batticaloa district by vehicle .\tDT NNP NNP NNP VBZ CD NN NNS VBD NNP IN VBG NNP NN IN NN .\nIt says a day earlier , five other staff members traveling from the same district also were kidnapped .\tPRP VBZ DT NN RBR , CD JJ NN NNS VBG IN DT JJ NN RB VBD VBN .\nAgency officials say they are not sure exactly what happened because the two employees , both women , are too scared to talk .\tNNP NNS VBP PRP VBP RB JJ RB WP VBD IN DT CD NNS , DT NNS , VBP RB JJ TO VB .\nThe rebels have accused Sri Lankan authorities of being behind the abductions .\tDT NNS VBP VBN NNP NNP NNS IN VBG IN DT NNS .\nThe authorities say the claims are untrue .\tDT NNS VBP DT NNS VBP JJ .\nAfter the first reported kidnapping , the rebels threatened to pull out of upcoming peace talks in Switzerland unless the government does more to protect Tamils .\tIN DT JJ JJ NN , DT NNS VBD TO VB IN IN VBG NN NNS IN NNP IN DT NN VBZ JJR TO VB NNS .\nHere are prices of some key commodities traded in New York :\tRB VBP NNS IN DT JJ NNS VBN IN NNP NNP :\nCrude oil for June delivery rose $ 0.7 Thursday , closing at $ 50.83 cents a barrel .\tJJ NN IN NNP NN VBD $ CD NNP , VBG IN $ CD NNS DT NN .\nCoffee for May delivery fell a bit more than two cents to close at $ 1.224 per pound .\tNNP IN NNP NN VBD DT NN RBR IN CD NNS TO VB IN $ CD IN NN .\nCocoa for May delivery fell $ 16 to close at $ 1452 per ton .\tNNP IN NNP NN VBD $ CD TO VB IN $ CD IN NN .\nCopper for May delivery settled at $ 1.459 per pound , unchanged from yesterday .\tNN IN NNP NN VBD IN $ CD IN NN , JJ IN NN .\nIsraeli doctors say the condition of former Prime Minister Ariel Sharon has deteriorated more than six months after he fell into a coma .\tJJ NNS VBP DT NN IN JJ NNP NNP NNP NNP VBZ VBN JJR IN CD NNS IN PRP VBD IN DT NN .\nA spokesman for the hospital treating Mr. Sharon says over the past two days , doctors have identified a deterioration in his kidney function and changes in brain tissue .\tDT NN IN DT NN VBG NNP NNP VBZ IN DT JJ CD NNS , NNS VBP VBN DT NN IN PRP$ NN NN CC NNS IN NN NN .\nThe hospital in Tel Aviv says doctors are carrying out more tests to determine the appropriate treatment for Mr. Sharon .\tDT NN IN NNP NNP VBZ NNS VBP VBG RP JJR NNS TO VB DT JJ NN IN NNP NNP .\nHe went into the coma after suffering a massive brain hemorrhage January 4 .\tPRP VBD IN DT NN IN VBG DT JJ NN NN NNP CD .\nUkrainian President Viktor Yushchenko has visited eastern Ukraine , the stronghold of his election rival , former Prime Minister Viktor Yanukovych .\tJJ NNP NNP NNP VBZ VBN JJ NNP , DT NN IN PRP$ NN NN , JJ NNP NNP NNP NNP .\nHappy supporters and hostile opponents greeted the Ukrainian leader as he arrived in Donetsk Thursday for a brief visit .\tJJ NNS CC JJ NNS VBD DT JJ NN IN PRP VBD IN NNP NNP IN DT JJ NN .\nMr. Yushchenko said he was in the mining region for a friendly visit , decried the economic problems facing the area , and pledged to help improve the lives of citizens .\tNNP NNP VBD PRP VBD IN DT NN NN IN DT JJ NN , VBD DT JJ NNS VBG DT NN , CC VBD TO VB VB DT NNS IN NNS .\nHe also introduced the region 's new governor , Vadym Chuprun .\tPRP RB VBD DT NN POS JJ NN , NNP NNP .\nMost area residents backed Mr. Yanukovych in last year 's presidential election .\tJJS NN NNS VBD NNP NNP IN JJ NN POS JJ NN .\nSome politicians even suggested autonomy for eastern Ukraine as the country dealt with months of political uncertainty before and after a flawed November presidential election .\tDT NNS RB VBD NN IN JJ NNP IN DT NN VBD IN NNS IN JJ NN IN CC IN DT JJ NNP JJ NN .\nMr. Yushchenko went on to win a court-ordered re-vote in December , but was not officially declared the winner until January , while the Supreme Court reviewed election complaints from Mr. Yanukovych .\tNNP NNP VBD IN TO VB DT JJ NN IN NNP , CC VBD RB RB VBD DT NN IN NNP , IN DT NNP NNP VBN NN NNS IN NNP NNP .\nTurkey has warned France that ties between the two countries will suffer what it called ' irreparable damage ' if French lawmakers approve a measure making denial of the Armenian genocide 90 years ago a criminal offense .\tNNP VBZ VBN NNP IN NNS IN DT CD NNS MD VB WP PRP VBD `` JJ NN `` IN JJ NNS VBP DT NN VBG NN IN DT JJ NN CD NNS IN DT JJ NN .\nA Turkish Foreign Ministry spokesman , Namik Tan , told reporters in Ankara his country 's views on the issue are being conveyed to French officials .\tDT JJ NNP NNP NN , NNP NNP , VBD NNS IN NNP PRP$ NN POS NNS IN DT NN VBP VBG VBN TO JJ NNS .\nThe proposed bill would provide fines and imprisonment for denying that Armenians in the Ottoman Empire were victims of genocide during World War One If adopted , the bill would follow a 2001 French parliament decision that the deaths of one and a half million Armenians amounted to genocide .\tDT JJ NN MD VB NNS CC NN IN VBG DT NNS IN DT NNP NNP VBD NNS IN NN IN NNP NNP CD IN VBN , DT NN MD VB DT CD JJ NN NN IN DT NNS IN CD CC DT NN CD NNS VBD IN NN .\nThat vote infuriated Turkey , which acknowledges the deaths of hundreds of thousands of Armenians but insists that as many Turks also died in civil strife and a Russian-backed Armenian uprising against Ottoman rule .\tDT NN VBD NNP , WDT VBZ DT NNS IN NNS IN NNS IN NNS CC VBZ IN IN JJ NNS RB VBD IN JJ NN CC DT JJ JJ NN IN NNP NN .\nHundreds of Cubans lined up outside the Spanish embassy in Havana Monday , hoping to apply for citizenship based on their Spanish ancestry .\tNNS IN NNS VBD RP IN DT JJ NN IN NNP NNP , VBG TO VB IN NN VBN IN PRP$ JJ NN .\nA law now in effect in Spain offers citizenship to the descendants of Spaniards who fled the country for political reasons .\tDT NN RB IN NN IN NNP VBZ NN TO DT NNS IN NNS WP VBD DT NN IN JJ NNS .\nThe measure targets families who emigrated during and after the Spanish Civil War and the ensuing dictatorship of General Francisco Franco .\tDT NN VBZ NNS WP VBD IN CC IN DT JJ NNP NNP CC DT VBG NN IN NNP NNP NNP .\nThose accepted do not have to renounce their current citizenship .\tDT VBN VBP RB VB TO VB PRP$ JJ NN .\nBut citizens of communist Cuba must get permission from the Havana government to travel to Spain if they are accepted for Spanish citizenship .\tCC NNS IN JJ NNP MD VB NN IN DT NNP NN TO VB TO NNP IN PRP VBP VBN IN JJ NN .\nOfficials estimate that some 5,00,000 people living in Latin American countries such as Cuba , Argentina , Mexico , Venezuela , Chile and Uruguay are eligible for citizenship .\tNNS VBP IN DT CD NNS VBG IN JJ JJ NNS JJ IN NNP , NNP , NNP , NNP , NNP CC NNP VBP JJ IN NN .\nArgentina alone is expected to have some 3,00,000 eligible beneficiaries .\tNNP RB VBZ VBN TO VB DT CD JJ NNS .\nPeople in Bangladesh are bracing for a cyclone that will likely make landfall in the next few days .\tNNS IN NNP VBP VBG IN DT NN WDT MD RB VB NN IN DT JJ JJ NNS .\nCyclone Nargis is about 1,000 kilometers from the southeastern port city of Chittagong .\tNNP NNP VBZ IN CD NNS IN DT JJ JJ NN IN NNP .\nMeteorologists are warning the storm could become a powerful Category Four cyclone .\tNNS VBP VBG DT NN MD VB DT JJ NNP NNP NN .\nAuthorities are telling residents to stay alert and be prepared to evacuate .\tNNS VBP VBG NNS TO VB NN CC VB VBN TO VB .\nThere is also concern the storm has the potential to damage a bumper rice crop , although the country 's Agriculture Ministry spokesman , Abdulla Al-Shahin , is denying reports officials have asked farmers to rush harvesting the rice .\tEX VBZ RB NN DT NN VBZ DT JJ TO VB DT NN NN NN , IN DT NN POS NNP NNP NN , NNP NNP , VBZ VBG NNS NNS VBP VBN NNS TO VB VBG DT NN .\nFarmers in Bangladesh have been in the fields harvesting the crop .\tNNP IN NNP VBP VBN IN DT NNS VBG DT NN .\nCompleting the harvest could take another two weeks .\tVBG DT NN MD VB DT CD NNS .\nThe country is still recovering from Cyclone Sidr , which hit last November , killing an estimated 3,500 people and leaving another two million homeless .\tDT NN VBZ RB VBG IN NNP NNP , WDT VBD JJ NNP , VBG DT JJ CD NNS CC VBG DT CD CD NN .\nThe cyclone also destroyed roughly two million tons of rice .\tDT NN RB VBD RB CD CD NNS IN NN .\nChina 's prime minister says his country is moving toward a more flexible foreign exchange rate , but that it will be done gradually .\tNNP POS JJ NN VBZ PRP$ NN VBZ VBG IN DT RBR JJ JJ NN NN , CC IN PRP MD VB VBN RB .\nWen Jiabao spoke to reporters Wednesday after a meeting with European Union officials in The Hague , Netherlands .\tNNP NNP VBD TO NNS NNP IN DT NN IN NNP NNP NNS IN DT NNP , NNP .\nHe said China plans to move away from its current system , which pegs the Chinese yuan to the U.S. dollar , and toward a free-floating exchange .\tPRP VBD NNP VBZ TO VB RB IN PRP$ JJ NN , WDT VBZ DT JJ NN TO DT NNP NN , CC IN DT JJ NN .\nBut he said China will make the change on its own timetable , to preserve the nation 's economic stability .\tCC PRP VBD NNP MD VB DT NN IN PRP$ JJ NN , TO VB DT NN POS JJ NN .\nThe United States and other nations have pressed China to end its fixed rate , saying it keeps the yuan 's value unfairly low , making Chinese goods cheaper than their competition in the global marketplace .\tDT NNP NNPS CC JJ NNS VBP VBN NNP TO VB PRP$ JJ NN , VBG PRP VBZ DT NN POS NN RB JJ , VBG JJ NNS JJR IN PRP$ NN IN DT JJ NN .\nThe United Nations refugee agency says four armed men attacked one of its field offices in Darfur , shooting a guard in the leg .\tDT NNP NNP NN NN VBZ CD JJ NNS VBD CD IN PRP$ NN NNS IN NNP , VBG DT NN IN DT NN .\nSpokeswoman Jennifer Pagonis says no one else was hurt in the attack .\tNN NNP NNP VBZ DT NN RB VBD VBN IN DT NN .\nIt occurred late Monday in Habila , in western Darfur .\tPRP VBD JJ NNP IN NNP , IN JJ NNP .\nShe says the men stole communications equipment before leaving .\tPRP VBZ DT NNS VBP NNS NN IN VBG .\nIt is unclear whether the attackers belonged to any of the rebel groups or government-backed militias active in the western Sudanese region .\tPRP VBZ JJ IN DT NNS VBD TO DT IN DT NN NNS CC JJ NNS JJ IN DT JJ JJ NN .\nViolence still plagues Darfur despite a recent peace agreement between the Sudanese government and Darfur rebel groups .\tNN RB VBZ NNP IN DT JJ NN NN IN DT JJ NN CC NNP NN NNS .\nSome rebels have refused to sign the accord .\tDT NNS VBP VBN TO VB DT NN .\nIt is designed to end more than three years of fighting that has killed more than 1,80,000 people .\tPRP VBZ VBN TO VB JJR IN CD NNS IN VBG DT VBZ VBN JJR IN CD NNS .\nA new report from the International Monetary Fund urges officials in Latin America to help the poor cope with rising food prices to help fend off social unrest .\tDT JJ NN IN DT NNP NNP NNP VBZ NNS IN NNP NNP TO VB DT NN VB IN VBG NN NNS TO VB VB RP JJ NN .\nFriday 's IMF report also says the region has been helped by a boom in prices for the commodities that it sells , helping these nations weather an economic downturn in the United States , a key trading partner .\tNNP POS NNP NN RB VBZ DT NN VBZ VBN VBN IN DT NN IN NNS IN DT NNS IN PRP VBZ , VBG DT NNS VBP DT JJ NN IN DT NNP NNPS , DT JJ NN NN .\nBut the report also predicts that commodity prices will decline and that Latin America 's economic growth rate will slow by two percent , to just 3.6 percent in 2009 .\tCC DT NN RB VBZ IN NN NNS MD VB CC IN NNP NNP POS JJ NN NN MD VB IN CD NN , TO RB CD NN IN CD .\nThe slowing growth rate may help policy makers in the region continue their relatively successful recent efforts to contain inflation .\tDT VBG NN NN MD VB NN NNS IN DT NN VBP PRP$ RB JJ JJ NNS TO VB NN .\nTropical Storm Beta , the record 23rd storm of the Atlantic hurricane season , has strengthened since developing in the southwestern Caribbean late Wednesday .\tJJ NN NN , DT NN CD NN IN DT NNP NN NN , VBZ VBN IN VBG IN DT JJ NNP JJ NNP .\nThe U.S. National Hurricane Center says Beta is expected to dump up to 25 centimeters of rain across western Panama , Costa Rica , northeastern Honduras , Nicaragua , and the Colombian islands of San Andres and Providencia .\tDT NNP NNP NNP NNP VBZ NN VBZ VBN TO VB RP TO CD NNS IN NN IN JJ NNP , NNP NNP , JJ NNP , NNP , CC DT JJ NNS IN NNP NNP CC NNP .\nAt last report the storm was located 115 kilometers south-southeast of San Andres Island and about 260 kilometers east of Bluefields , Nicaragua .\tIN JJ NN DT NN VBD VBN CD NNS NN IN NNP NNP NNP CC IN CD NNS NN IN NNP , NNP .\nForecasters say Beta is expected to continue slowly drifting north , bringing its center near San Andres on Friday .\tNNS VBP NN VBZ VBN TO VB RB VBG RB , VBG PRP$ NN IN NNP NNP IN NNP .\nColombia has issued a hurricane warning for San Andres and Providencia .\tNNP VBZ VBN DT NN NN IN NNP NNP CC NNP .\nA hurricane watch is in effect for Nicaragua 's entire Caribbean coast .\tDT NN NN VBZ IN NN IN NNP POS JJ JJ NN .\nTropical Storm Beta is not expected to threaten the United States .\tJJ NN NNP VBZ RB VBN TO VB DT NNP NNPS .\nThe National Football League playoffs continue Saturday when the Pittsburgh Steelers host the New York Jets and Atlanta takes on Saint Louis .\tDT NNP NNP NNP NNS VBP NNP WRB DT NNP NNPS VBP DT NNP NNP NNPS CC NNP VBZ IN NNP NNP .\nThe Jets are coming off last week 's 20-17 overtime win over the San Diego Chargers .\tDT NNPS VBP VBG RB JJ NN POS CD NN NN IN DT NNP NNP NNPS .\nPittsburgh had last week off , and beat the Jets , 17-Jun , the last time the two teams played in December .\tNNP VBD JJ NN RB , CC VBD DT NNPS , CD , DT JJ NN DT CD NNS VBD IN NNP .\nMeanwhile , the Atlanta Falcons host a Saint Louis Rams team that is coming off a 27-20 win over the Seattle Seahawks .\tRB , DT NNP NNPS VBP DT NNP NNP NNP NN WDT VBZ VBG RP DT CD NN IN DT NNP NNP .\nThe Falcons had a first-round bye and beat the Rams in their only meeting this year , 34-17 , at the Georgia Dome .\tDT NNPS VBD DT JJ NN CC VB DT NNPS IN PRP$ JJ NN DT NN , CD , IN DT NNP NNP .\nThe playoffs continue Sunday when the reigning Super Bowl champion New England Patriots host the Indianapolis Colts , and the Philadelphia Eagles take on Minnesota .\tDT NNS VBP NNP WRB DT VBG NNP NNP NN NNP NNP NNPS NN DT NNP NNP , CC DT NNP NNPS VBP IN NNP .\nThe United States has welcomed Ukraine 's decision to invalidate the results of a disputed presidential runoff election .\tDT NNP NNP VBZ VBN NNP POS NN TO VB DT NNS IN DT JJ JJ NN NN .\nWhite House spokesman Scott McClellan called Friday 's court ruling an important step toward a peaceful , democratic resolution that reflects the will of the people .\tNNP NNP NN NNP NNP VBD NNP POS NN VBG DT JJ NN IN DT JJ , JJ NN WDT VBZ DT NN IN DT NNS .\nMeanwhile , two top European officials are returning to Ukraine to help mediate the dispute .\tRB , CD JJ JJ NNS VBP VBG TO VB TO VB VB DT NN .\nThe Organization for Security and Cooperation in Europe says its secretary general , Jan Kubis , will make his third such visit to Ukraine in a week , beginning Friday .\tDT NNP IN NNP CC NNP IN NNP VBZ PRP$ NN NN , NNP NNP , MD VB PRP$ JJ JJ NN TO NNP IN DT NN , VBG NNP .\nThe OSCE says Mr. Kubis will seek ways the 55-nation group can help resolve Ukraine 's political situation .\tDT NNP VBZ NNP NNP MD VB NNS DT JJ NN MD VB VB NNP POS JJ NN .\nLithuanian President Valdas Adamkus will also visit , for the third time in 10 days .\tJJ NNP NNP NNP MD RB VB , IN DT JJ NN IN CD NNS .\nEarlier , Russia 's lower house of parliament accused Western European institutions of aggravating tensions over the election .\tRB , NNP POS JJR NN IN NN VBD JJ JJ NNS IN VBG NNS IN DT NN .\nThe presidents of Venezuela , Bolivia , and Argentina met Friday in the southern Bolivian town of Tarija .\tDT NNS IN NNP , NNP , CC NNP VBD NNP IN DT JJ JJ NN IN NNP .\nVenezuela 's Hugo Chavez , Bolivia 's Evo Morales , and Argentina 's Nestor Kirchner signed agreements to share the costs of energy production .\tNNP POS NNP NNP , NNP POS NNP NNPS , CC NNP POS NNP NNP VBD NNS TO VB DT NNS IN NN NN .\nThey agreed to fund the construction of a gas-separation plant near Bolivia 's border with Argentina .\tPRP VBD TO VB DT NN IN DT NN NN IN NNP POS NN IN NNP .\nMr. Chavez has been campaigning for more integration of the energy industry in South America .\tNNP NNP VBZ VBN VBG IN JJR NN IN DT NN NN IN NNP NNP .\nBolivia is his last stop on a four-nation tour meant to promote South American energy production .\tNNP VBZ PRP$ JJ NN IN DT JJ NN VBN TO VB JJ JJ NN NN .\nThe four nations on Chavez 's tour include Argentina , Uruguay , Ecuador , and Bolivia .\tDT CD NNS IN NNP POS NN VBP NNP , NNP , NNP , CC NNP .\nHe announced intentions to buy as much as one-billion-dollars worth of Argentine bonds and guaranteed Uruguay access to Venezuelan oil for decades .\tPRP VBD NNS TO VB RB JJ IN JJ NN IN JJ NNS CC VBN NNP NN TO JJ NN IN NNS .\nMr. Chavez has been lobbying to join the South American trade block Mercosur , which is comprised of Argentina , Brazil , Paraguay , and Uruguay .\tNNP NNP VBZ VBN VBG TO VB DT NNP NNP NN NN NNP , WDT VBZ VBN IN NNP , NNP , NNP , CC NNP .\nThe United States and Britain have called for international pressure against Syria after a U.N. report implicated Syrian officials in the killing of former Lebanese Prime Minister Rafik Hariri .\tDT NNP NNPS CC NNP VBP VBN IN JJ NN IN NNP IN DT NNP NN VBD JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP .\nU.S. Secretary of State Condoleezza Rice and British Foreign Secretary Jack Straw made the appeal in a joint interview with British radio on Sunday .\tNNP NNP IN NNP NNP NNP CC JJ NNP NNP NNP NNP VBD DT NN IN DT JJ NN IN JJ NN IN NNP .\nMs. Rice said a firm response is needed .\tNNP NNP VBD DT NN NN VBZ VBN .\nThe U.N. report also said that Syrian officials gave FALSE testimony to investigators in the case .\tDT NNP NN RB VBD IN JJ NNS VBD JJ NN TO NNS IN DT NN .\nSyrian officials have denied the allegations .\tJJ NNS VBP VBN DT NNS .\nAnd Sunday , a key Syrian political group - National Progressive Front - rejected the U.N. report , saying it was based on testimony from people lacking credibility .\tCC NNP , DT JJ JJ JJ NN : NNP NNP NNP : VBD DT NNP NN , VBG PRP VBD VBN IN NN IN NNS VBG NN .\nSyria 's official news agency reported President Bashar al-Assad sent a message to members of the U.N. Security Council , which is expected to consider sanctions over the killing .\tNNP POS JJ NN NN VBD NNP NNP NNP VBD DT NN TO NNS IN DT NNP NNP NNP , WDT VBZ VBN TO VB NNS IN DT NN .\nThe U.S. House of Representatives has narrowly passed a plan to cut federal spending by nearly $ 40 billion over the next five years .\tDT NNP NNP IN NNP VBZ RB VBN DT NN TO VB JJ NN IN RB $ CD CD IN DT JJ CD NNS .\nThe bill includes cuts in health care and other social welfare programs .\tDT NN VBZ NNS IN NN NN CC JJ JJ NN NNS .\nLawmakers approved the measure by a vote of 212-to-206 .\tNNS VBD DT NN IN DT NN IN CD .\nDuring the overnight session , the house also passed a $ 453 billion dollar defense bill by a vote of 308-to-106 .\tIN DT JJ NN , DT NN RB VBD DT $ CD CD NN NN NN IN DT NN IN CD .\nIt includes money for hurricane relief , bird flu preventive measures , oil drilling in Alaska 's Arctic wildlife refuge , and military operations in Iraq and Afghanistan .\tPRP VBZ NN IN NN NN , NN NN JJ NNS , NN NN IN NNP POS NNP NN NN , CC JJ NNS IN NNP CC NNP .\nMany Democrats complained they were forced to approve the oil drilling provision , which they oppose , because it was attached to the defense bill .\tJJ NNPS VBD PRP VBD VBN TO VB DT NN NN NN , WDT PRP VBP , IN PRP VBD VBN TO DT NN NN .\nThe measures will be debated by the Senate this week .\tDT NNS MD VB VBN IN DT NNP DT NN .\nLawmakers are trying to finish major pieces of legislation before a long holiday recess .\tNNS VBP VBG TO VB JJ NNS IN NN IN DT JJ NN NN .\nThe chairman of Ghana 's independent electoral commission says there is one more constituency yet to be determined before declaring the winner of Sunday 's election run-off .\tDT NN IN NNP NNS JJ JJ NN VBZ EX VBZ CD JJR NN RB TO VB VBN IN VBG DT NN IN NNP POS NN NN .\nChairman Kojo Afari Djan , however said the winner of the election would be determined Friday after voters in Tain constituency in the Brong Ahafo region cast their votes .\tNNP NNP NNP NNP , RB VBD DT NN IN DT NN MD VB VBN NNP IN NNS IN NNP NN IN DT NNP NNP NN VBD PRP$ NNS .\nThis comes after both the ruling New Patriotic party ( NPP ) and main opposition National Democratic Congress ( NDC ) parties made allegations of fraud , which forced the electoral commission to suspend voting in that constituency .\tDT VBZ IN DT DT NN NNP NNP NN LRB NNP RRB CC JJ NN NNP NNP NNP LRB NNP RRB NNS VBD NNS IN NN , WDT VBD DT JJ NN TO VB NN IN DT NN .\nTain is expected to be a stronghold of the opposition NDC .\tNNP VBZ VBN TO VB DT NN IN DT NN NNP .\nAn Australian man has been jailed for more than five years for duping people into sending him millions of dollars in a global Internet scam .\tDT JJ NN VBZ VBN VBN IN JJR IN CD NNS IN VBG NNS IN VBG PRP NNS IN NNS IN DT JJ NN NN .\nNick Marinellis pleaded guilty Monday in the New South Wales District Court to 10 counts of fraud for taking part in a hoax called the Nigerian Scam .\tNNP NNP VBD JJ NNP IN DT NNP NNP NNP NNP NNP TO CD NNS IN NN IN VBG NN IN DT NN VBN DT JJ NNP .\nThe deception promises people millions from Nigerian bank accounts in return for an ' administration fee . '\tDT NN VBZ NNS NNS IN JJ NN NNS IN NN IN DT `` NN NN . ``\nProsecutors say Marinellis fleeced his victims of $ 3.8 million .\tNNS VBP NNP VBD PRP$ NNS IN $ CD CD .\nConocoPhillips , the third-largest U.S.-based oil company , reports an 89 percent jump in profits to a record $ 3.8 billion for the third quarter .\tNNS , DT JJ JJ NN NN , VBZ DT CD NN NN IN NNS TO DT NN $ CD CD IN DT JJ NN .\nEarnings for the three-month period ending in September reflected strong prices for the company 's crude oil and natural gas .\tNNS IN DT JJ NN VBG IN NNP VBD JJ NNS IN DT NN POS JJ NN CC JJ NN .\nConocoPhillips ' officials say their U.S. Gulf Coast operations were ' significantly ' hurt by hurricanes , but say repairs to refineries and other facilities are well under way .\tNNS POS NNS VBP PRP$ NNP NNP NNP NNS VBD `` RB `` VBN IN NNS , CC VBP NNS TO NNS CC JJ NNS VBP RB IN NN .\nThey call the company 's operating performance ' good . '\tPRP VBP DT NN POS NN NN `` JJ . ``\nConoco is the first of the major U.S. oil companies to report third-quarter earnings .\tNNP VBZ DT NN IN DT JJ NNP NN NNS TO VB JJ NNS .\nExxonMobil , the world 's largest publicly traded company , is scheduled to release results on Thursday .\tNNP , DT NN POS JJS RB VBN NN , VBZ VBN TO VB NNS IN NNP .\nChevron , the number two producer , is set to report earnings on October 28 .\tNNP , DT NN CD NN , VBZ VBN TO VB NNS IN NNP CD .\nAn investment analyst says those companies are also expected to report increased profits .\tDT NN NN VBZ DT NNS VBP RB VBN TO VB JJ NNS .\nRussia 's state-controlled natural gas monopoly Gazprom says it is seeking to more than double the gas price for neighboring Georgia , amid a simmering political crisis between the two sides .\tNNP POS JJ JJ NN NN NNP VBZ PRP VBZ VBG TO JJR IN VB DT NN NN IN VBG NNP , IN DT VBG JJ NN IN DT CD NNS .\nGazprom officials said Thursday that it plans to charge Tbilisi $ 230 per 1,000 cubic meters of gas , up from $ 110 now .\tNNP NNS VBD NNP IN PRP VBZ TO VB NNP $ CD IN CD JJ NNS IN NN , RB IN $ CD RB .\nThe announcement comes after Georgia 's Foreign Minister Gela Bezhuashvili held talks in Moscow Wednesday with Russian Foreign Minister Sergei Lavrov - the first high-level meeting between the countries since tensions increased over alleged spying .\tDT NN VBZ IN NNP POS NNP NNP NNP NNP VBD NNS IN NNP NNP IN JJ NNP NNP NNP NNP IN DT JJ JJ NN IN DT NNS IN NNS VBD IN JJ NN .\nGeorgia arrested four Russian military officers on suspicion of spying in September , releasing them a few days later .\tNNP VBN CD JJ JJ NNS IN NN IN VBG IN NNP , VBG PRP DT JJ NNS RB .\nMoscow retaliated by cutting all transportation and postal links with Georgia .\tNNP VBD IN VBG DT NN CC JJ NNS IN NNP .\nTensions between the two countries were already high because of the presence of Russian peacekeepers in the two breakaway Georgian regions of Abkhazia and South Ossetia .\tNNS IN DT CD NNS VBD RB JJ IN IN DT NN IN JJ NNS IN DT CD JJ JJ NNS IN NNP CC NNP NNP .\nThe president of Iraq 's Kurdish autonomous region , Massoud Barzani , has rejected the Iraq Study Group 's recommendations on ways to stabilize the country .\tDT NN IN NNP POS NNP JJ NN , NNP NNP , VBZ VBN DT NNP NNP NNP POS NNS IN NNS TO VB DT NN .\nIn a statement Friday , Barzani said the U.S. group 's report has some unrealistic and inappropriate recommendations .\tIN DT NN NNP , NNP VBD DT NNP NN POS NN VBZ DT JJ CC JJ NNS .\nHe said , in his words , ' we are in no way abiding by the report . '\tPRP VBD , IN PRP$ NNS , `` PRP VBP IN DT NN VBG IN DT NN . ``\nBarzani - a longtime U.S. ally - criticized the report 's authors for never visiting the Kurdish region of northern Iraq in their months-long fact finding mission .\tNNP IN DT JJ NNP NN : VBD DT NN POS NNS IN RB VBG DT JJ NN IN JJ NNP IN PRP$ JJ NN VBG NN .\nHe particularly criticized the report 's recommendation on Kirkuk , an ethnically mixed city that is key to Northern Iraq 's oil industry .\tPRP RB VBD DT NN POS NN IN NNP , DT RB JJ NN WDT VBZ JJ TO NNP NNP POS NN NN .\nIraq 's constitution calls for referendum on the issue before the end of 2007 , but the report calls for international arbitration to decide the city 's future because a referendum would be explosive .\tNNP POS NN VBZ IN NN IN DT NN IN DT NN IN CD , CC DT NN VBZ IN JJ NN TO VB DT NN POS NN IN DT NN MD VB JJ .\nBarzani says delaying the vote will have grave consequences .\tNNP VBZ VBG DT NN MD VB JJ NNS .\nThe Organization of Petroleum Exporting Countries kept oil production targets unchanged at a meeting Friday in Vienna , rebuffing a request from President Bush to increase output .\tDT NNP IN NNP NNP NNPS VBD NN NN NNS JJ IN DT NN NNP IN NNP , VBG DT NN IN NNP NNP TO VB NN .\nMany members of OPEC have said current high oil prices are the result of speculation by investors , not a shortage of oil on the market .\tJJ NNS IN NNP VBP VBN JJ JJ NN NNS VBP DT NN IN NN IN NNS , RB DT NN IN NN IN DT NN .\nOil producers are also concerned that economic problems in the United States could depress demand for energy , which would push down the price of oil .\tNN NNS VBP RB VBN IN JJ NNS IN DT NNP NNPS MD VB NN IN NN , WDT MD VB RP DT NN IN NN .\nOPEC pumps about 40 percent of the world 's oil , while the United States is the world 's largest economy and energy consumer .\tNNP VBZ IN CD NN IN DT NN POS NN , IN DT NNP NNPS VBZ DT NN POS JJS NN CC NN NN .\nAn audit by a U.S. inspector says the U.S.-led authority that governed Iraq after the 2003 invasion failed to keep track of nearly $ 9 billion it transferred to Iraqi ministries .\tDT NN IN DT NNP NN VBZ DT JJ NN WDT VBD NNP IN DT CD NN VBD TO VB NN IN RB $ CD CD PRP VBD TO JJ NNS .\nThe audit released Sunday by the U.S. Special Inspector General for Iraq Reconstruction says the Coalition Provisional Authority failed to establish control systems to verify how the money was spent , which opened it to corruption .\tDT NN VBN NNP IN DT NNP NNP NNP NNP IN NNP NNP VBZ DT NNP NNP NNP VBD TO VB NN NNS TO VB WRB DT NN VBD VBN , WDT VBD PRP TO NN .\nIn some instances , money was used to pay what the report calls ' ghost ' employees , explaining that out of 8,206 guards on the payroll at one ministry , only 602 could be accounted for .\tIN DT NNS , NN VBD VBN TO VB WP DT NN VBZ `` NN `` NNS , VBG IN IN IN CD NNS IN DT NN IN CD NN , RB CD MD VB VBN IN .\nFormer CPA chief Paul Bremer rejected the findings , saying the report assumes western-style accounting procedures could have been quickly set up during wartime .\tJJ NNP NN NNP NNP VBD DT NNS , VBG DT NN VBZ JJ NN NNS MD VB VBN RB VBN RP IN NN .\nMr. Bremer says delaying payment to Iraqi public servants could have created additional security threats .\tNNP NNP VBZ VBG NN TO JJ JJ NNS MD VB VBN JJ NN NNS .\nThe European Union 's second highest court has ruled the bloc has the right to freeze the assets of citizens the United Nations suspects of terrorist links .\tDT NNP NNP POS JJ JJS NN VBZ VBN DT NN VBZ DT NN TO VB DT NNS IN NNS DT NNP NNP NNS IN JJ NNS .\nThe Luxembourg-based Court of First Instance says the EU has the right freeze the accounts of individuals in connection with the fight against international terrorism .\tDT JJ NN IN NNP NNP VBZ DT NNP VBZ DT NN VB DT NNS IN NNS IN NN IN DT NN IN JJ NN .\nIt issued the ruling Wednesday in response to a case brought by at least three people whose assets were frozen because of suspected links to Osama bin Laden .\tPRP VBD DT NN NNP IN NN TO DT NN VBN IN IN JJS CD NNS WP$ NNS VBD VBN IN IN JJ NNS TO NNP NNP NNP .\nThe court added that freezing assets does not violate universally recognized human rights .\tDT NN VBD IN VBG NNS VBZ RB VB RB VBN JJ NNS .\nThe U.N. Security Council in 1999 called on nations to freeze the assets of groups and individuals with suspected links to Osama bin Laden 's al-Qaida network and Afghanistan 's ousted Taleban regime .\tDT NNP NNP NNP IN CD VBD IN NNS TO VB DT NNS IN NNS CC NNS IN JJ NNS TO NNP NNP NNP POS NNP NN CC NNP POS JJ NNP NN .\nBrazilians have soundly rejected a proposal to ban all gun sales in the country .\tNNS VBP RB VBN DT NN TO VB DT NN NNS IN DT NN .\nWith over 90 percent of the vote counted , the electoral court says that 64 percent of those who went to the polls voted against the ban in Sunday 's referendum , while 36 percent favored it .\tIN IN CD NN IN DT NN VBN , DT JJ NN VBZ IN CD NN IN DT WP VBD TO DT NNS VBD IN DT NN IN NNP POS NN , IN CD NN VBD PRP .\nOver 36 thousand people were shot and killed in Brazil last year .\tIN CD CD NNS VBD VBN CC VBN IN NNP JJ NN .\nThe United Nations ranks Brazil second in the world in gun deaths , behind only Venezuela .\tDT NNP NNPS VBZ NNP NN IN DT NN IN NN NNS , IN RB NNP .\nSupporters of the ban on gun sales said that people voted against it because they have no confidence in the government and its ability to provide security .\tNNS IN DT NN IN NN NNS VBD IN NNS VBD IN PRP IN PRP VBP DT NN IN DT NN CC PRP$ NN TO VB NN .\nIn recent weeks opponents had waged a media campaign , arguing that average Brazilians need guns to protect themselves from drug gangs and thieves .\tIN JJ NNS NNS VBD VBN DT NNS NN , VBG IN JJ NNS VBP NNS TO VB PRP IN NN NNS CC NNS .\nFinal results are expected Monday .\tJJ NNS VBP VBN NNP .\nFloods and landslides in the wake of Hurricane Stan have killed at least 617 people throughout Central America and Mexico .\tNNS CC NNS IN DT NN IN NNP NNP VBP VBN IN JJS CD NNS IN NNP NNP CC NNP .\nMore than 500 people were killed in Guatemala , which sustained the worst blow from last week 's storm .\tJJR IN CD NNS VBD VBN IN NNP , WDT VBD DT JJS NN IN JJ NN POS NN .\nAt least 1,400 other people are missing and presumed dead in the Guatemalan village of Panabaj .\tIN JJS CD JJ NNS VBP VBG CC VBN JJ IN DT JJ NN IN NNP .\nThe Mayan Indian village was buried in a mudslide triggered by Stan 's torrential rains .\tDT JJ JJ NN VBD VBN IN DT NN VBN IN NNP POS JJ NNS .\nRescue workers are digging through tons of mud and rock searching for victims , but the town may eventually be declared a mass burial site .\tNN NNS VBP VBG IN NNS IN NN CC NN VBG IN NNS , CC DT NN MD RB VB VBN DT NN NN NN .\nThe remainder of the dead are scattered throughout El Salvador , Nicaragua and Mexico .\tDT NN IN DT NN VBP VBN IN NNP NNP , NNP CC NNP .\nEntire families are either dead or missing in some communities .\tNNP NNS VBP RB JJ CC JJ IN DT NNS .\nThe disaster has left thousands of people homeless .\tDT NN VBZ VBN NNS IN NNS JJ .\nRescue crews have been unable to reach some isolated communities because many bridges and roads were washed out in the storm .\tNN NNS VBP VBN JJ TO VB DT JJ NNS IN JJ NNS CC NNS VBD VBN RP IN DT NN .\nGermans could find out who their next leader will be after Monday 's coalition talks between Chancellor Gerhard Schroeder and conservative leader Angela Merkel .\tNNS MD VB RP WP PRP$ JJ NN MD VB IN NNP POS NN NNS IN NNP NNP NNP CC JJ NN NNP NNP .\nThe two ended several hours of discussions Sunday without comment .\tDT CD VBD JJ NNS IN NNS NNP IN NN .\nBut German news reports say a deal could be announced Monday in which Ms. Merkel would become the new chancellor while giving additional cabinet posts to the rival party .\tCC JJ NN NNS VBP DT NN MD VB VBN NNP IN WDT NNP NNP MD VB DT JJ NN IN VBG JJ NN NNS TO DT JJ NN .\nMs. Merkel 's Christian Democrats won four more seats than Mr. Schroeder 's Social Democrats in last month 's parliamentary elections .\tNNP NNP POS NNP NNPS VBD CD JJR NNS IN NNP NNP POS NNP NNPS IN JJ NN POS JJ NNS .\nNeither party won a mandate , and Mr. Schroeder has so far refused to concede defeat .\tDT NN VBD DT NN , CC NNP NNP VBZ RB RB VBN TO VB NN .\nEven after a deal is struck , both parties say it would take weeks to form a new government .\tRB IN DT NN VBZ VBN , DT NNS VBP PRP MD VB NNS TO VB DT JJ NN .\nA public display of affection got Richard Gere in trouble with Indian moviegoers .\tDT JJ NN IN NN VBD NNP NNP IN NN IN JJ NNS .\nIrate fans burned the Hollywood actor in effigy April 16 , after he repeatedly kissed movie actress Shilpa Shetty during an AIDS awareness event in New Delhi .\tJJ NNS VBD DT NNP NN IN JJ NNP CD , IN PRP RB VBD NN NN NNP NNP IN DT NNP NN NN IN NNP NNP .\nThe 58-year-old Gere was in India to participate in a safe sex campaign directed at truck drivers .\tDT JJ NNP VBD IN NNP TO VB IN DT JJ NN NN VBD IN NN NNS .\nOf all nations , India has the largest number of people living with HIV .\tIN DT NNS , NNP VBZ DT JJS NN IN NNS VBG IN NNP .\nDuring the ceremony , Gere repeatedly kissed Shetty 's hand and cheeks .\tIN DT NN , NNP RB VBD NNP POS NN CC NNS .\nProtesters say the actions , shown repeatedly on Indian television , violate standards of propriety .\tNNS VBP DT NNS , VBN RB IN JJ NN , VBP NNS IN NN .\nThirty-one-year-old Shilpa Shetty attracted headlines earlier this year after winning Britain 's ' Celebrity Big Brother ' reality TV contest .\tJJ NNP NNP VBD NNS RBR DT NN IN VBG NNP POS `` NNP NNP NNP `` NN NN NN .\nHer spokesman Dale Bhagwagar said the media should concentrate on AIDS education rather than sensationalizing trivial incidents .\tPRP$ NN NNP NNP VBD DT NNS MD VB IN NNP NN RB IN VBG JJ NNS .\nUkrainian President Viktor Yushchenko has marked his first 100 days in office with a vow to maintain the struggle against poverty as his main priority .\tJJ NNP NNP NNP VBZ VBN PRP$ JJ CD NNS IN NN IN DT NN TO VB DT NN IN NN IN PRP$ JJ NN .\nHe made the comments in pre-recorded message marking the 100-day milestone .\tPRP VBD DT NNS IN JJ NN VBG DT JJ NN .\nMr. Yushchenko was elected in a re-vote in December after the country 's Supreme Court threw out flawed November elections .\tNNP NNP VBD VBN IN DT JJ IN NNP IN DT NN POS NNP NNP VBD RP JJ NNP NNS .\nTens of thousands of Yushchenko supporters had packed the streets of Kiev to demand the fresh election .\tNNS IN NNS IN NNP NNS VBD VBN DT NNS IN NNP TO VB DT JJ NN .\nDuring his time in office , pensions and some incomes have increased , and he has sought to expand integration with the West .\tIN PRP$ NN IN NN , NNS CC DT NNS VBP VBN , CC PRP VBZ VBN TO VB NN IN DT NNP .\nA recent public opinion poll from the Democratic Initiatives Foundation put his approval rating at 60 percent .\tDT JJ JJ NN NN IN DT JJ NNP NNP VBD PRP$ NN NN IN CD NN .\nBut some in Ukraine have complained about the economy and inflation after a decision to revalue the national currency .\tCC DT IN NNP VBP VBN IN DT NN CC NN IN DT NN TO VB DT JJ NN .\nMembers of the former government say they are victims of political persecution as the new administration pursues anti-corruption efforts .\tNNS IN DT JJ NN VBP PRP VBP NNS IN JJ NN IN DT JJ NN VBZ JJ NNS .\nU.S weather forecasters say hurricane warnings have been posted for Mexico 's Yucatan peninsula as Hurricane Wilma continues to churn slowly through the Caribbean .\tNNP NN NNS VBP NN NNS VBP VBN VBN IN NNP POS NNP NN IN NNP NNP VBZ TO VB RB IN DT NNP .\nA statement from the National Hurricane Center says Wilma is still a strong category 4 hurricane with winds near 250 kilometers per hour .\tDT NN IN DT NNP NNP NNP VBZ NNP VBZ RB DT JJ NN CD NN IN NNS IN CD NNS IN NN .\nIt is centered 345 kilometers southeast of Cozumel , Mexico .\tPRP VBZ VBN CD NNS NN IN NNP , NNP .\nIt warns that the storm could strengthen again later Thursday .\tPRP VBZ IN DT NN MD VB RB RB NNP .\nMeteorologists say that if Wilma comes ashore in the Yucatan , it will bring a storm surge of two to three meters above normal along with large , battering waves .\tNNS VBP IN IN NNP VBZ RB IN DT NNP , PRP MD VB DT NN NN IN CD CC CD NNS IN JJ IN IN JJ , VBG NNS .\nForecasters say Wilma is moving west to northwest at 13 kilometers per hour .\tNNS VBP NNP VBZ VBG RB TO VB IN CD NNS IN NN .\nComputer models show it turning sharply toward the east and the Florida coast later this week . .\tNN NNS VBP PRP VBG RB IN DT NN CC DT NNP NN RB DT NN . .\nAt least 10 people in Haiti were killed in mudslides caused by the storm .\tIN JJS CD NNS IN NNP VBD VBN IN NNS VBN IN DT NN .\nPolice in Belarus have detained about 40 activists who tried to stage a protest outside the Russian embassy in Minsk .\tNNS IN NNP VBP VBN IN CD NNS WP VBD TO VB DT NN IN DT JJ NN IN NNP .\nAuthorities blocked off access to the embassy before the planned protest and picked up the activists as they gathered .\tNNS VBD RP NN TO DT NN IN DT JJ NN CC VBD RP DT NNS IN PRP VBD .\nThose detained included United Civic Party leader Anatol Liabedzka .\tDT VBN VBD NNP NNP NNP NN NNP NNP .\nOpposition activists gather in various locations in Minsk on the 16th of each month to mark a day of solidarity with political prisoners .\tNN NNS VBP IN JJ NNS IN NNP IN DT CD IN DT NN TO VB DT NN IN NN IN JJ NNS .\nThe date was chosen after a leading opposition activist , Anatoly Krasovsky , disappeared on September 16 , 1999 .\tDT NN VBD VBN IN DT VBG NN NN , NNP NNP , VBD IN NNP CD , CD .\nActivists say they chose the Russian embassy as the site of Sunday 's protest in hopes of bringing the situation in Belarus to the attention of the Group of Eight summit in the Russian city of St. Petersburg .\tNNS VBP PRP VBD DT JJ NN IN DT NN IN NNP POS NN IN NNS IN VBG DT NN IN NNP TO DT NN IN DT NNP IN NNP NN IN DT JJ NN IN NNP NNP .\nActivists in Belarus have repeatedly staged protests since the country 's March presidential election which western governments and opposition groups have described as fraudulent .\tNNS IN NNP VBP RB VBN NNS IN DT NN POS NNP JJ NN WDT JJ NNS CC NN NNS VBP VBN IN JJ .\nNATO foreign ministers meeting in Brussels have agreed the alliance will boost its training force for Iraqi security forces .\tNNP JJ NNS VBG IN NNP VBP VBN DT NN MD VB PRP$ NN NN IN JJ NN NNS .\nNATO Secretary-General Jaap de Hoop Scheffer says the number of personnel will increase from its current level of 60 to 300 officers .\tNNP NN NNP NNP NNP NNP VBZ DT NN IN NNS MD VB IN PRP$ JJ NN IN CD TO CD NNS .\nHe says several countries , including Poland , Hungary and the Netherlands have volunteered to provide troops .\tPRP VBZ JJ NNS , VBG NNP , NNP CC DT NNP VBP VBN TO VB NNS .\nOther countries like France and Germany have refused to contribute , saying they do not want the alliance to be drawn into peacekeeping duties in Iraq .\tJJ NNS IN NNP CC NNP VBP VBN TO VB , VBG PRP VBP RB VB DT NN TO VB VBN IN VBG NNS IN NNP .\nThe ministers also discussed expanding the 5,000 strong NATO-led peacekeeping force in Afghanistan .\tDT NNS RB VBD VBG DT CD JJ JJ NN NN IN NNP .\nAt a separate meeting , the NATO ministers and their Russian counterpart , Sergei Lavrov , urged Ukrainians to work to ensure a free , fair and violence-free process in the upcoming run-off presidential election .\tIN DT JJ NN , DT NNP NNS CC PRP$ JJ NN , NNP NNP , VBD NNS TO VB TO VB DT JJ , JJ CC JJ NN IN DT JJ NN JJ NN .\nThe NATO meeting was the last for U.S. Secretary of State Colin Powell , who is leaving the Bush administration .\tDT NNP NN VBD DT JJ IN NNP NNP IN NNP NNP NNP , WP VBZ VBG DT NNP NN .\nBritain 's American colonies broke with the mother country in 1776 and were recognized as the new nation of the United States of America following the Treaty of Paris in 1783 .\tNNP POS JJ NNS VBD IN DT NN NN IN CD CC VBD VBN IN DT JJ NN IN DT NNP NNPS IN NNP VBG DT NNP IN NNP IN CD .\nDuring the 19th and 20th centuries , 37 new states were added to the original 13 as the nation expanded across the North American continent and acquired a number of overseas possessions .\tIN DT JJ CC JJ NNS , CD JJ NNS VBD VBN TO DT JJ CD IN DT NN VBN IN DT NNP NNP NN CC VBD DT NN IN JJ NNS .\nThe two most traumatic experiences in the nation 's history were the Civil War ( 1861 - 65 ) , in which a northern Union of states defeated a secessionist Confederacy of 11 southern slave states , and the Great Depression of the 1930s , an economic downturn during which about a quarter of the labor force lost its jobs .\tDT CD RBS JJ NNS IN DT NN POS NN VBD DT NNP NNP LRB CD IN CD RRB , IN WDT DT JJ NNP IN NNS VBD DT JJ NN IN CD JJ NN NNS , CC DT NNP NNP IN DT NNS , DT JJ NN IN WDT IN DT NN IN DT NN NN VBD PRP$ NNS .\nBuoyed by victories in World Wars I and II and the end of the Cold War in 1991 , the US remains the world 's most powerful nation state .\tVBN IN NNS IN NNP NNP NNP CC NNP CC DT NN IN DT NNP NNP IN CD , DT NNP VBZ DT NN POS RBS JJ NN NN .\nOver a span of more than five decades , the economy has achieved steady growth , low unemployment and inflation , and rapid advances in technology .\tIN DT NN IN JJR IN CD NNS , DT NN VBZ VBN JJ NN , JJ NN CC NN , CC JJ NNS IN NN .\nThis desolate , arctic , mountainous island was named after a Dutch whaling captain who indisputably discovered it in 1614 ( earlier claims are inconclusive ) .\tDT NN , JJ , JJ NN VBD VBN IN DT JJ NN NN WP RB VBD PRP IN CD LRB JJR NNS VBP JJ RRB .\nVisited only occasionally by seal hunters and trappers over the following centuries , the island came under Norwegian sovereignty in 1929 .\tVBN RB RB IN NN NNS CC NNS IN DT VBG NNS , DT NN VBD IN JJ NN IN CD .\nThe long dormant Beerenberg volcano resumed activity in 1970 ; the most recent eruption occurred in 1985 .\tDT JJ NN NNP NNP VBD NN IN CD ; DT RBS JJ NN VBD IN CD .\nIt is the northernmost active volcano on earth .\tPRP VBZ DT JJ JJ NN IN NN .\nThe Turks and Caicos economy is based on tourism , offshore financial services , and fishing .\tDT NNS CC NNPS NN VBZ VBN IN NN , JJ JJ NNS , CC NN .\nMost capital goods and food for domestic consumption are imported .\tJJS NN NNS CC NN IN JJ NN VBP VBN .\nThe US is the leading source of tourists , accounting for more than three-quarters of the 1,75,000 visitors that arrived in 2004 .\tDT NNP VBZ DT VBG NN IN NNS , NN IN JJR IN NNS IN DT CD NNS WDT VBD IN CD .\nMajor sources of government revenue also include fees from offshore financial activities and customs receipts .\tJJ NNS IN NN NN RB VBP NNS IN JJ JJ NNS CC NNS NNS .\nBermuda was first settled in 1609 by shipwrecked English colonists headed for Virginia .\tNNP VBD JJ VBN IN CD IN JJ JJ NNS VBN IN NNP .\nTourism to the island to escape North American winters first developed in Victorian times .\tNN TO DT NN TO VB JJ JJ NNS RB VBD IN JJ NNS .\nTourism continues to be important to the island 's economy , although international business has overtaken it in recent years .\tNN VBZ TO VB JJ TO DT NN POS NN , IN JJ NN VBZ VBN PRP IN JJ NNS .\nBermuda has developed into a highly successful offshore financial center .\tNNP VBZ VBN IN DT RB JJ JJ JJ NN .\nAlthough a referendum on independence from the UK was soundly defeated in 1995 , the present government has reopened debate on the issue .\tIN DT NN IN NN IN DT NNP VBD RB VBN IN CD , DT JJ NN VBZ VBN NN IN DT NN .\nEuropeans began to set up trading posts in the area of Bangladesh in the 16th century ; eventually the British came to dominate the region and it became part of British India .\tNNS VBD TO VB RP NN NNS IN DT NN IN NNP IN DT JJ NN ; RB DT NNS VBD TO VB DT NN CC PRP VBD NN IN JJ NNP .\nIn 1947 , West Pakistan and East Bengal ( both primarily Muslim ) separated from India ( largely Hindu ) and jointly became the new country of Pakistan .\tIN CD , NNP NNP CC NNP NNP LRB DT RB NNP RRB VBD IN NNP LRB RB NNP RRB CC RB VBD DT JJ NN IN NNP .\nEast Bengal became East Pakistan in 1955 , but the awkward arrangement of a two-part country with its territorial units separated by 1,600 km left the Bengalis marginalized and dissatisfied .\tNNP NNP VBD NNP NNP IN CD , CC DT JJ NN IN DT JJ NN IN PRP$ JJ NNS VBN IN CD NN VBD DT NNS VBN CC VBN .\nEast Pakistan seceded from its union with West Pakistan in 1971 and was renamed Bangladesh .\tNNP NNP VBD IN PRP$ NN IN NNP NNP IN CD CC VBD VBN NNP .\nA military-backed , emergency caretaker regime suspended parliamentary elections planned for January 2007 in an effort to reform the political system and root out corruption .\tDT JJ , NN NN NN VBD JJ NNS VBN IN NNP CD IN DT NN TO VB DT JJ NN CC VB RP NN .\nIn contrast to the strikes and violent street rallies that had marked Bangladeshi politics in previous years , the parliamentary elections finally held in late December 2008 were mostly peaceful and Sheikh HASINA Wajed was elected prime minister .\tIN NN TO DT NNS CC JJ NN NNS WDT VBD VBN JJ NNS IN JJ NNS , DT JJ NNS RB VBN IN JJ NNP CD VBD RB JJ CC NNP NNP NNP VBD VBN JJ NN .\nAbout a third of this extremely poor country floods annually during the monsoon rainy season , hampering economic development .\tIN DT NN IN DT RB JJ NN NNS RB IN DT NN NN NN , VBG JJ NN .\nTHE HARES harangued the assembly , and argued that all should be equal .\tDT NNS VBD DT NN , CC VBD IN DT MD VB JJ .\nThe Lions made this reply :\tDT NNS VBD DT NN :\n' Your words , O Hares ! are good ; but they lack both claws and teeth such as we have . '\t`` PRP$ NNS , UH NNS . VBP JJ ; CC PRP VBP DT NNS CC NNS JJ IN PRP VBP . ``\nThe U.S. military in Iraq says coalition forces have killed an estimated 70 terrorists in separate operations in areas of Al Anbar province west of Baghdad .\tDT NNP NN IN NNP VBZ NN NNS VBP VBN DT VBN CD NNS IN JJ NNS IN NNS IN NNP NNP NN NN IN NNP .\nA military statement says 20 insurgents were killed Sunday when U.S. troops called in aircraft to bomb a group of suspects preparing to plant roadside bombs near Ramadi .\tDT JJ NN VBZ CD NNS VBD VBN NNP WRB NNP NNS VBD IN NN TO VB DT NN IN NNS VBG TO VB NN NNS IN NNP .\nThe military says another 50 insurgents were killed in clashes and air strikes in the region .\tDT NN VBZ DT CD NNS VBD VBN IN NNS CC NN NNS IN DT NN .\nLocal residents say at least half of the dead were civilians .\tJJ NNS VBP IN JJS NN IN DT NN VBD NNS .\nMeanwhile , President Bush praised Iraqis for turning out in large numbers to vote in Saturday 's constitutional referendum , despite the threat of insurgent violence .\tRB , NNP NNP VBD NNS IN VBG RP IN JJ NNS TO VB IN NNP POS JJ NN , IN DT NN IN JJ NN .\nMr. Bush also praised U.S. and Iraqi security forces for preventing violence at polling stations .\tNNP NNP RB VBD NNP CC JJ NN NNS IN VBG NN IN VBG NNS .\nAs the vote count continues , Iraqi officials say initial results indicate that voters have approved the constitution , including in two key Sunni Arab dominated provinces ( Diyala and Nineva ) where analysts had expected residents to vote against the charter .\tIN DT NN NN VBZ , JJ NNS VBP JJ NNS VBP IN NNS VBP VBN DT NN , VBG IN CD JJ NNP NNP VBD NNS LRB NNP CC NNP RRB WRB NNS VBD VBN NNS TO VB IN DT NN .\nMaoist rebels in Nepal say they will stop military operations during the country 's most popular religious festival .\tNNP NNS IN NNP VBP PRP MD VB JJ NNS IN DT NN POS RBS JJ JJ NN .\nRebel leader Pushpa Kamal Dahal , who is also known as Prachanda , said Friday the insurgents will halt attacks from October 20 - 28 in recognition of the festival of Dasain .\tNNP NN NNP NNP NNP , WP VBZ RB VBN IN NNP , VBD NNP DT NNS MD VB NNS IN NNP CD : CD IN NN IN DT NN IN NNP .\nThe rebels have observed similar cease-fires in the past .\tDT NNS VBP VBN JJ NNS IN DT NN .\nThe insurgency for a communist state to replace Nepal 's constitutional monarchy has killed more than 10,000 people since it began in 1996 .\tDT NN IN DT JJ NN TO VB NNP POS JJ NN VBZ VBN JJR IN CD NNS IN PRP VBD IN CD .\nLebanon 's government has removed the country 's top prosecutor and fired three security chiefs , in a push to purge the new administration of pro-Syrian influence .\tNNP POS NN VBZ VBN DT NN POS JJ NN CC VBD CD NN NNS , IN DT NN TO VB DT JJ NN IN JJ NN .\nPrime Minister Najib Mikati 's cabinet also appointed a new police commander and a new head of military intelligence .\tNNP NNP NNP NNP POS NN RB VBD DT JJ NN NN CC DT JJ NN IN JJ NN .\nThursday 's moves came as a United Nations team arrived in Lebanon to prepare for an international probe of the assassination of former Prime Minister Rafik Hariri .\tNNP POS NNS VBD IN DT NNP NNP NN VBD IN NNP TO VB IN DT JJ NN IN DT NN IN JJ NNP NNP NNP NNP .\nA second U.N. team is verifying that Syria 's military and intelligence withdrawal from the country on Tuesday is complete .\tDT JJ NNP NN VBZ VBG IN NNP POS JJ CC NN NN IN DT NN IN NNP VBZ JJ .\nMr. Hariri was killed February 14 in a Beirut bombing that stunned Lebanon and reverberated in Western capitals .\tNNP NNP VBD VBN NNP CD IN DT NNP NN WDT VBD NNP CC VBN IN JJ NNS .\nThe Lebanese opposition accused Beirut and its Syrian sponsors of complicity in the assassination , despite denials from both capitals .\tDT JJ NN VBN NNP CC PRP$ JJ NNS IN NN IN DT NN , IN NNS IN DT NNS .\nTwo weeks later later , massive protests led to the downfall of Lebanon 's pro-Syrian Prime Minister Omar Karami and his government .\tCD NNS RB RB , JJ NNS VBD TO DT NN IN NNP POS JJ NNP NNP NNP NNP CC PRP$ NN .\nGerman Chancellor Angela Merkel is in India for talks on economic cooperation and climate change .\tJJ NNP NNP NNP VBZ IN NNP IN NNS IN JJ NN CC NN NN .\nMs. Merkel arrived in New Delhi Monday , in her first visit to the country as chancellor .\tNNP NNP VBD IN NNP NNP NNP , IN PRP$ JJ NN TO DT NN IN NN .\nShe is expected to meet Tuesday with Prime Minister Manmohan Singh and President Prabtibha Patil .\tPRP VBZ VBN TO VB NNP IN NNP NNP NNP NNP CC NNP NNP NNP .\nMs. Merkel also has meetings scheduled with India 's vice president , parliamentary leader , and opposition leader .\tNNP NNP RB VBZ NNS VBN IN NNP POS NN NN , JJ NN , CC NN NN .\nThe officials are expected to discuss political cooperation , efforts to slow global warming and trade ties .\tDT NNS VBP VBN TO VB JJ NN , NNS TO VB JJ NN CC NN NNS .\nThe German leader said in a speech Friday that Germany should expand its ties with India , as it has with China , both nations which have seen their economies grow rapidly in recent years .\tDT JJ NN VBD IN DT NN NNP IN NNP MD VB PRP$ NNS IN NNP , IN PRP VBZ IN NNP , DT NNS WDT VBP VBN PRP$ NNS VBP RB IN JJ NNS .\nTrade between India and Germany amounts to about $ 15 billion a year .\tNNP IN NNP CC NNP VBZ TO IN $ CD CD DT NN .\nThe United Nations refugee agency says many residents who fled the Iraqi city of Fallujah before a November U.S.-led offensive to crush insurgents , are waiting until after the January 30 elections to decide whether they will return .\tDT NNP NNP NN NN VBZ JJ NNS WP VBD DT JJ NN IN NNP IN DT NNP JJ NN TO VB NNS , VBP VBG IN IN DT NNP CD NNS TO VB IN PRP MD VB .\nAbout half of the city , which is home to more than a quarter-of-a-million people , has been re-opened for returning residents .\tIN NN IN DT NN , WDT VBZ NN TO JJR IN DT JJ NNS , VBZ VBN VBN IN VBG NNS .\nBut the U.N. agency estimates that fewer than 10,000 have returned to stay .\tCC DT NNP NN VBZ IN JJR IN CD VBP VBN TO VB .\nThrough interviews conducted by its local partners , the refugee agency says many Fallujans are reluctant to return because of the tense security situation and the lack of services , including hospitals , water and electricity .\tIN NNS VBN IN PRP$ JJ NNS , DT NN NN VBZ JJ NNPS VBP JJ TO VB IN IN DT JJ NN NN CC DT NN IN NNS , VBG NNS , NN CC NN .\nMany are waiting until after the parliamentary elections to see how the situation is affected .\tNN VBP VBG IN IN DT JJ NNS TO VB WRB DT NN VBZ VBN .\nOthers have bought land outside Fallujah , indicating they do not plan to return to the devastated city .\tNNS VBP VBN NN IN NNP , VBG PRP VBP RB VB TO VB TO DT JJ NN .\nPakistan President Pervez Musharraf has directed law enforcement agencies to launch a national crackdown against banned extremist organizations , targeting their weapons , finances and meeting places .\tNNP NNP NNP NNP VBZ VBN NN NN NNS TO VB DT JJ NN IN VBN NN NNS , VBG PRP$ NNS , NNS CC NN NNS .\nIn a meeting of many top police officers from across the country on Friday , General Musharraf issued a stern directive .\tIN DT NN IN JJ JJ NNS NNS IN IN DT NN IN NNP , NNP NNP VBD DT JJ NN .\nHe demanded that all hate material , including pamphlets , books , CDs and videos be removed from all Pakistani public markets by December .\tPRP VBD IN DT NN NN , VBG NNS , NNS , NNS CC NNS VB VBN IN DT JJ JJ NNS IN NNP .\nThe president says the crackdown is intended to stop the ' extremist minority ' harming Pakistan 's interests and tarnishing the image of Islam .\tDT NN VBZ DT NN VBZ VBN TO VB DT `` NN NN `` VBG NNP POS NNS CC VBG DT NN IN NNP .\nPakistan 's new campaign against extremism follows last week 's suicide bombings in London .\tNNP POS JJ NN IN NN VBZ JJ NN POS NN NNS IN NNP .\nThree of the four bombers are alleged to be Pakistani Britons .\tCD IN DT CD NNS VBP VBN TO VB JJ NNS .\nA series of car bombs in and around Baghdad has targeted mainly Iraqi security forces , killing one person and wounding at least 11 others .\tDT NN IN NN NNS IN CC IN NNP VBZ VBN RB JJ NN NNS , VBG CD NN CC VBG IN JJS CD NNS .\nPolice said a roadside bomb in Taji , north of the city , killed a civilian and wounded five other people .\tNNS VBD DT NN NN IN NNP , NN IN DT NN , VBD DT JJ CC JJ CD JJ NNS .\nIn Baghdad 's Adhamiya neighborhood , at least two bombs strapped to parked cars wounded six people .\tIN NNP POS NNP NN , IN JJS CD NNS VBD TO VB NNS VBN CD NNS .\nThe attacks come as troops tightened security around Shi'ite mosques , shrines and political party offices ahead of a massive funeral procession for prominent Shi'ite leader Abdul Aziz al-Hakim .\tDT NNS VBP IN NNS VBD NN IN NNP NNS , NNS CC JJ NN NNS RB IN DT JJ NN NN IN JJ NNP NN NNP NNP NNP .\nThousands of people are expected to mourn the leader of the Supreme Iraqi Islamic Council later this week before he is buried in the holy city Najaf .\tNNS IN NNS VBP VBN TO VB DT NN IN DT NNP JJ NNP NNP RB DT NN IN PRP VBZ VBN IN DT JJ NN NNP .\nHakim died Wednesday in Tehran following a two-year battle with lung cancer .\tNNP VBD NNP IN NNP VBG DT JJ NN IN NN NN .\nThe U.S. military in Iraq says three Marines have died of wounds sustained due to enemy action in western Al Anbar province .\tDT NNP NN IN NNP VBZ CD NNS VBP VBN IN NNS VBN JJ TO NN NN IN JJ NNP NNP NN .\nA statement issued Thursday said the Marines died Wednesday but did not provide further details .\tDT NN VBN NNP VBD DT NNPS VBD NNP CC VBD RB VB JJ NNS .\nAlso Thursday , Iraqi witnesses said U.S. forces opened fire on a minibus in Baghdad , killing four people and wounding eight .\tRB NNP , JJ NNS VBD NNP NNS VBD NN IN DT NN IN NNP , VBG CD NNS CC VBG CD .\nThey say the bus was carrying workers through the city 's Sadr City neighborhood .\tPRP VBP DT NN VBD VBG NNS IN DT NN POS NNP NNP NN .\nThe U.S. military has not commented on the report .\tDT NNP NN VBZ RB VBN IN DT NN .\nAnd Iraqi officials say 100 people were killed in insurgent attacks and sectarian violence across the country Wednesday .\tCC JJ NNS VBP CD NNS VBD VBN IN JJ NNS CC JJ NN IN DT NN NNP .\nA U.N. report says more than 3,700 Iraqi civilians were killed in October - - the highest monthly toll since U.S. forces invaded the country in 2003 .\tDT NNP NN VBZ JJR IN CD JJ NNS VBD VBN IN NNP : : DT JJS JJ NN IN NNP NNS VBD DT NN IN CD .\nA new United Nations report says melting glaciers and ice sheets caused by global warming could disrupt drinking and agricultural water supplies for up to 40 percent of the world 's population .\tDT JJ NNP NNPS NN VBZ VBG NNS CC NN NNS VBN IN JJ NN MD VB NN CC JJ NN NNS IN RB TO CD NN IN DT NN POS NN .\nThe report released Monday said the depletion of ice caps could also contribute to global warming because the ice sheets reflect the sun 's heat away from the Earth 's surface .\tDT NN VBN NNP VBD DT NN IN NN NNS MD RB VB TO JJ NN IN DT NN NNS VBP DT NN POS NN RB IN DT NNP POS NN .\nIt also warns that such low-lying countries as Bangladesh and Indonesia could face severe flooding by melting glaciers and rising sea levels .\tPRP RB VBZ IN JJ JJ NNS IN NNP CC NNP MD VB JJ NN IN VBG NNS CC VBG NN NNS .\nGlobal warming will be a major topic at this week 's Group of Eight summit in Germany .\tJJ NN MD VB DT JJ NN IN DT NN POS NNP IN CD NN IN NNP .\nGerman Chancellor and summit host Angela Merkel says she will not compromise in getting the G8 nations to agree to cut greenhouse gas emissions that contribute to global warming .\tJJ NN CC NN NN NNP NNP VBZ PRP MD RB VB IN VBG DT NNP NNS TO VB TO VB NN NN NNS WDT VBP TO JJ NN .\nThe United Nations Security Council on Thursday unanimously agreed to extend the U.N. mission in Afghanistan for another year .\tDT NNP NNP NNP NNP IN NNP RB VBD TO VB DT NNP NN IN NNP IN DT NN .\nThe 15-member council 's approval focuses on improving U.N. coordination with the Afghan government and NATO-led forces fighting Taliban insurgents .\tDT JJ NN POS NN VBZ IN VBG NNP NN IN DT JJ NN CC JJ NNS VBG NNP NNS .\nThe resolution also empowers the new U.N. special envoy in Afghanistan - Norwegian diplomat Kai Eide - to directly coordinate support provided by international donors to the Afghan government .\tDT NN RB VBZ DT JJ NNP JJ NN IN NNP IN JJ NN NNP NNP : TO RB VB NN VBN IN JJ NNS TO DT JJ NN .\nA lack of coordination among dozens of aid agencies has led to failed reconstruction projects .\tDT NN IN NN IN NNS IN NN NNS VBZ VBN TO VBN NN NNS .\nThe United States and Britain hailed the adoption of the resolution .\tDT NNP NNPS CC NNP VBD DT NN IN DT NN .\nMeanwhile , violence in Afghanistan continues .\tRB , NN IN NNP VBZ .\nAn exchange of gunfire between British troops and Afghan police in southern Helmand province Thursday left an Afghan policeman dead .\tDT NN IN NN IN JJ NNS CC JJ NNS IN JJ NNP NN NNP VBD DT JJ NN NN .\nLocal officials say British soldiers opened fire on the policemen patrolling in Lashkar Gah , the provincial capital .\tJJ NNS VBP JJ NNS VBD NN IN DT JJ NN IN NNP NNP , DT JJ NN .\nThe incident is under investigation .\tDT NN VBZ IN NN .\nTens of thousands of flag-waving Lebanese mourners packed central Beirut Thursday for the funeral of outspoken Syrian critic Gebran Tueni .\tNNS IN NNS IN JJ JJ NNS VBD JJ NNP NNP IN DT NN IN JJ JJ NN NNP NNP .\nThe 48-year-old publisher and parliamentarian was killed Monday in a Beirut car bombing .\tDT JJ NN CC NN VBD VBN NNP IN DT NNP NN NN .\nBanks , businesses and schools closed today , as a huge contingent of Lebanese police and soldiers deployed in Beirut 's Martyrs Square to ensure security for the funeral .\tNNS , NNS CC NNS VBD NN , IN DT JJ NN IN JJ NNS CC NNS VBN IN NNP POS NNP NNP TO VB NN IN DT NN .\nMr. Tueni is the third anti-Syrian figure to be killed since the February 14 assassination of former Prime Minister Rafik Hariri .\tNNP NNP VBZ DT JJ JJ NN TO VB VBN IN DT NNP CD NN IN JJ NNP NNP NNP NNP .\nMass protests triggered by the Hariri murder forced Syria to end its three-decade military presence in Lebanon .\tNN NNS VBN IN DT NNP NN VBD NNP TO VB PRP$ JJ JJ NN IN NNP .\nIn similar scenes today , crowds denounced Damascus and demanded that Lebanon 's pro-Syrian President Emile Lahoud step down .\tIN JJ NNS NN , NNS VBD NNP CC VBD IN NNP POS JJ NNP NNP NNP VB RB .\nSyria has denied involvement in any of the killings .\tNNP VBZ VBN NN IN DT IN DT NNS .\nThe U.S.-based toy giant , Mattel , has recalled about 1,55,000 of its toys in the United States because they contain small parts that pose a risk of choking for children .\tDT JJ NN NN , NNP , VBZ VBN IN CD IN PRP$ NNS IN DT NNP NNPS IN PRP VBP JJ NNS WDT VBP DT NN IN VBG IN NNS .\nA statement from the U.S. Consumer Product Safety Commission said Tuesday the recall involves a play kitchen learning toy made in Mexico and imported by Fisher-Price , a division of Mattel .\tDT NN IN DT NNP NNP NNP NNP NNP VBD NNP DT NN VBZ DT NN NN VBG NN VBN IN NNP CC VBN IN NNP , DT NN IN NNP .\nThe commission said there have been 48 reports of small parts separating from the toy , including two reports of children gagging on pieces and one of a child who choked on a piece .\tDT NN VBD EX VBP VBN CD NNS IN JJ NNS VBG IN DT NN , VBG CD NNS IN NNS VBG IN NNS CC CD IN DT NN WP VBD IN DT NN .\nThe European Commission has confirmed that Mattel also is recalling about 17,000 toys in Europe because of the same child safety concerns .\tDT JJ NNP VBZ VBN IN NNP RB VBZ VBG IN CD NNS IN NNP IN IN DT JJ NN NN NNS .\nMattel has recalled tens of millions of Chinese-made toys in recent months because of what are described as design flaws and toxic levels of lead .\tNNP VBZ VBN NNS IN NNS IN JJ NNS IN JJ NNS IN IN WP VBP VBN IN NN NNS CC JJ NNS IN NN .\nTurkish authorities say 20 people have been wounded in a bomb blast at a resort in western Turkey .\tJJ NNS VBP CD NNS VBP VBN VBN IN DT NN NN IN DT NN IN JJ NNP .\nThe explosion occurred Sunday in the Aegean coastal town Cesme , a popular tourist destination near the port city of Izmir .\tDT NN VBD NNP IN DT NNP JJ NN NNP , DT JJ NN NN IN DT JJ NN IN NNP .\nThere has been no claim of responsibility for the blast .\tEX VBZ VBN DT NN IN NN IN DT NN .\nThe regional governor said two foreigners were among the injured , but did not identify their nationalities .\tDT JJ NN VBD CD NNS VBD IN DT NN , CC VBD RB VB PRP$ NNS .\nIn April , a bomb attack in the nearby resort town Ksusadasi left a police officer dead .\tIN NNP , DT NN NN IN DT JJ NN NN NNP VBD DT NN NN NN .\nA Kurdish separatist group claimed responsibility for that blast .\tDT NNP NN NN VBD NN IN DT NN .\nThe Saudi branch of the al-Qaida terror network is promising more attacks on Saudi oil facilities , after failing in an attempt to bomb the world 's largest oil refinery , located on the kingdom 's Gulf coast .\tDT JJ NN IN DT NNP NN NN VBZ VBG JJR NNS IN JJ NN NNS , IN VBG IN DT NN TO VB DT NN POS JJS NN NN , VBN IN DT NN POS NNP NN .\nIn a statement , al-Qaida in the Arabian Peninsula said their militants will not stop attacks until ' infidels ' ( Westerners ) have been eliminated from Saudi soil .\tIN DT NN , NNP IN DT NNP NNP VBD PRP$ NNS MD RB VB NNS IN `` NNS `` LRB NNS RRB VBP VBN VBN IN JJ NN .\nThe Internet statement , posted Saturday , has not been authenticated .\tDT NNP NN , VBN NNP , VBZ RB VBN VBN .\nIt identifies the two terrorists who died in Friday 's attack , and calls the assault on the Abqaiq facility a success .\tPRP VBZ DT CD NNS WP VBD IN NNP POS NN , CC VBZ DT NN IN DT NNP NN DT NN .\nAuthorities say both of the attackers were on a Saudi list of 36 most-wanted militants .\tNNS VBP DT IN DT NNS VBD IN DT JJ NN IN CD JJ NNS .\nSaudi authorities say two security officers also died in Friday 's attack , and said the explosion did not affect operations at the plant .\tJJ NNS VBP CD NN NNS RB VBD IN NNP POS NN , CC VBD DT NN VBD RB VB NNS IN DT NN .\nA Lebanese lawmaker wounded in the February bombing in Beirut that killed former Prime Minister Rafik Hariri has died of his injuries .\tDT JJ NN VBN IN DT NNP NN IN NNP WDT VBD JJ NNP NNP NNP NNP VBZ VBN IN PRP$ NNS .\nFormer Lebanese minister of economy Bassel Fleihan passed away Monday in a hospital in Paris .\tJJ JJ NN IN NN NNP NNP VBD RB NNP IN DT NN IN NNP .\nMr. Fleihan was riding in the car with Mr. Hariri on February 14 when a huge bomb detonated outside their motorcade .\tNNP NNP VBD VBG IN DT NN IN NNP NNP IN NNP CD WRB DT JJ NN VBN IN PRP$ NN .\nThe blast instantly killed the former prime minister .\tDT NN RB VBD DT JJ JJ NN .\nMr. Fleihan , one of Mr. Hariri 's top aides , suffered severe burns over most of his body .\tNNP NNP , CD IN NNP NNP POS JJ NNS , VBD JJ NNS IN JJS IN PRP$ NN .\nReports from Beirut say Mr. Fleihan is the 21st victim to die as a result of the bombing .\tNNS IN NNP VBP NNP NNP VBZ DT JJ NN TO VB IN DT NN IN DT NN .\nU.S. authorities have declared a public health emergency for the entire Gulf Coast region and warned of the possible spread of diseases in the aftermath of Hurricane Katrina .\tNNP NNS VBP VBN DT JJ NN NN IN DT JJ NNP NNP NN CC VBD IN DT JJ NN IN NNS IN DT NN IN NNP NNP .\nHealth and Human Services Secretary Michael Leavitt warned of worsening sanitary and health conditions in the stricken areas , and said officials are gravely concerned about potential outbreaks of cholera , typhoid and other illnesses .\tNNP CC NNP NNP NNP NNP NNP VBD IN VBG JJ CC NN NNS IN DT JJ NNS , CC VBD NNS VBP RB VBN IN JJ NNS IN NN , NN CC JJ NNS .\nHe called on residents to use caution when consuming food and not to drink standing water .\tPRP VBD IN NNS TO VB NN WRB VBG NN CC RB TO VB JJ NN .\nHe told a news conference in Washington that authorities are setting up a network of up to 40 medical shelters that will have a total of up to 10,000 beds .\tPRP VBD DT NN NN IN NNP IN NNS VBP VBG RP DT NN IN RB TO CD JJ NNS WDT MD VB DT NN IN RB TO CD NNS .\nHe said those who need further treatment will be moved to facilities elsewhere .\tPRP VBD DT WP VBP JJ NN MD VB VBN TO NNS RB .\nHomeland Security Chief Michael Chertoff said the situation in the region remains very dangerous .\tNNP NNP NNP NNP NNP VBD DT NN IN DT NN VBZ RB JJ .\nOfficials have warned of unstable structures and have called on residents not to return to the affected areas .\tNNS VBP VBN IN JJ NNS CC VBP VBN RP NNS RB TO VB TO DT JJ NNS .\nAn aid group says more than 54,000 North Koreans are dead or missing after widespread flooding .\tDT NN NN VBZ JJR IN CD NNP NNS VBP JJ CC JJ IN JJ NN .\nThe South Korea-based Good Friends organization released that figure Wednesday and added that another 2.5 million people are believed to have been left homeless .\tDT NNP JJ JJ NNS NN VBN IN NN NNP CC VBD IN DT CD CD NNS VBP VBN TO VB VBN VBN NN .\nThe new estimate is far higher than earlier death tolls .\tDT JJ NN VBZ RB JJR IN JJR NN NNS .\nThe North Korean government has estimated the death toll in the hundreds .\tDT JJ JJ NN VBZ VBN DT NN NN IN DT NNS .\nEarlier this month , South Korea announced it will give an aid package worth more than $ 10 million to independent aid groups to help flood victims in North Korea .\tRBR DT NN , NNP NNP VBD PRP MD VB DT NN NN JJ JJR IN $ CD CD TO JJ NN NNS TO VB NN NNS IN NNP NNP .\nNorth Korean officials formally requested the help from South Korea , after initially turning down aid offers from foreign relief agencies .\tJJ JJ NNS RB VBD DT NN IN NNP NNP , IN RB VBG RP NN NNS IN JJ NN NNS .\nSeasonal rains have caused landslides and destroyed vital crops , raising concerns the impoverished country could face famine .\tJJ NNS VBP VBN NNS CC VBD JJ NNS , VBG NNS DT JJ NN MD VB NN .\nTony Blair Russian officials say British Prime Minister Tony Blair will not attend the upcoming World War II commemorations in Moscow .\tNNP NNP JJ NNS VBP JJ NNP NNP NNP NNP MD RB VB DT JJ NNP NNP NNP NNS IN NNP .\nThe Kremlin Friday said Mr. Blair expressed regret that intensive work on forming a new Cabinet would prevent him from attending the ceremonies Monday .\tDT NNP NNP VBD NNP NNP VBD NN IN JJ NN IN VBG DT JJ NNP MD VB PRP IN VBG DT NNS NNP .\nMr. Blair 's Labor Party on Thursday won a third straight general election victory .\tNNP NNP POS NNP NNP IN NNP VBD DT JJ JJ JJ NN NN .\nThe Kremlin says Mr. Blair announced the decision in a phone call to Russian President Vladimir Putin .\tDT NNP VBZ NNP NNP VBD DT NN IN DT NN NN TO JJ NNP NNP NNP .\nDozens of world leaders , including President Bush , are to attend the events in Moscow .\tNNS IN NN NNS , VBG NNP NNP , VBP TO VB DT NNS IN NNP .\nAdolfo Aguilar Zinser , Mexico 's former ambassador to the United Nations , has died in an automobile accident in central Mexico .\tNNP NNP NNP , NNP POS JJ NN TO DT NNP NNP , VBZ VBN IN DT NN NN IN JJ NNP .\nAuthorities in the state of Morelos say the 55-year-old ex-diplomat was driving on a highway Sunday when his vehicle hit a bus .\tNNS IN DT NN IN NNP VBP DT JJ NN VBD VBG IN DT NN NNP WRB PRP$ NN VBD DT NN .\nMr. Aguilar Zinser was a vocal opponent of the U.S.-led invasion of Iraq during his tenure at the UN . Mexican President Vicente Fox removed Mr. Aguilar Zinser from the UN post after he accused the United States of treating Mexico with disdain .\tNNP NNP NNP VBD DT JJ NN IN DT JJ NN IN NNP IN PRP$ NN IN DT NNP . JJ NNP NNP NNP VBD NNP NNP NNP IN DT NNP NN IN PRP VBD DT NNP NNPS IN VBG NNP IN NN .\nMr. Aguilar Zinser spent years as a leftist politician in the Mexican legislature .\tNNP NNP NNP VBD NNS IN DT JJ NN IN DT JJ NN .\nBut he later joined forces with the conservative Fox , and played a key role in Mr. Fox 's historic election in 2000 .\tCC PRP RB VBD NNS IN DT JJ NNP , CC VBD DT JJ NN IN NNP NNP POS JJ NN IN CD .\nHe served Mr. Fox as national security advisor before taking the UN post .\tPRP VBD NNP NNP IN JJ NN NN IN VBG DT NNP NN .\nSeismologists say a strong earthquake has struck off the coast of the South Pacific island nation , Vanuatu .\tNNS VBP DT JJ NN VBZ VBN RP DT NN IN DT NNP NNP NN NN , NNP .\nOfficials at the Pacific Tsunami Warning Center in the U.S. state of Hawaii say there is no threat of a tsunami .\tNNS IN DT NNP NNP NNP NNP IN DT NNP NN IN NNP VBP EX VBZ DT NN IN DT NN .\nThe U.S. Geological Survey says the 6.7 magnitude quake hit 75 kilometers southeast of the city of Lugansville on Vanuatu 's second largest island of Espiritu Santo .\tDT NNP NNP NNP VBZ DT CD NN NN VBD CD NNS NN IN DT NN IN NNP IN NNP POS JJ JJS NN IN NNP NNP .\nScientists say the earthquake 's epicenter was 150 kilometer below the earth 's surface .\tNNS VBP DT NN POS NN VBD CD NN IN DT NN POS NN .\nThere are no immediate reports of any injuries or major property damage .\tEX VBP DT JJ NNS IN DT NNS CC JJ NN NN .\nVanuatu is an archipelago of some 80 islands located about 2,200 kilometers off the northeast coast of Australia .\tNNP VBZ DT NN IN DT CD NNS VBN IN CD NNS IN DT NN NN IN NNP .\nBritish police have questioned Prime Minister Tony Blair in their investigation of charges that his Labor Party awarded seats in the upper house of parliament in exchange for millions of dollars in political contributions .\tJJ NNS VBP VBN NNP NNP NNP NNP IN PRP$ NN IN NNS IN PRP$ NNP NNP VBD NNS IN DT JJ NN IN NN IN NN IN NNS IN NNS IN JJ NNS .\nA spokesman for the prime minister says the informal interview took place Thursday at his Downing Street office .\tDT NN IN DT JJ NN VBZ DT JJ NN VBD NN NNP IN PRP$ NNP NNP NN .\nHe said Mr. Blair did not have a lawyer present and was treated as a witness rather than a suspect .\tPRP VBD NNP NNP VBD RB VB DT NN NN CC VBD VBN IN DT NN RB IN DT NN .\nThe probe was launched after the Scottish National Party alleged that Mr. Blair had nominated wealthy businessmen for non-elected seats in the House of Lords in exchange for loans to his Labor Party .\tDT NN VBD VBN IN DT NNP NNP NNP VBD IN NNP NNP VBD VBN JJ NNS IN JJ NNS IN DT NNP IN NNPS IN NN IN NNS TO PRP$ NNP NNP .\nEarlier this year , authorities said they were probing questionable loans worth 26 million dollars that helped bankroll the Labor Party 's 2005 elections campaign .\tRBR DT NN , NNS VBD PRP VBD VBG JJ NNS JJ CD CD NNS WDT VBD VB DT NNP NNP POS CD NNS NN .\nPolice arrested Labor 's chief fundraiser , Michael Levy , earlier this year in connection with the probe .\tNNS VBN NN POS NN NN , NNP NNP , RBR DT NN IN NN IN DT NN .\nThey later released him on bail .\tPRP RB VBD PRP IN NN .\nVenezuelan President Hugo Chavez is expected Wednesday to present his proposals for constitutional reform to the National Assembly .\tJJ NNP NNP NNP VBZ VBN NNP TO VB PRP$ NNS IN JJ NN TO DT NNP NNP .\nSpecific plans for the reforms have not been released , but Chavez has previously said he would like to end presidential term limits .\tJJ NNS IN DT NNS VBP RB VBN VBN , CC NNP VBZ RB VBN PRP MD VB TO VB JJ NN NNS .\nCurrently the president may serve no more than two six-year terms .\tRB DT NN MD VB DT JJR IN CD JJ NNS .\nThe National Assembly is expected to approve his changes , as it is controlled by Chavez supporters .\tDT NNP NNP VBZ VBN TO VB PRP$ NNS , IN PRP VBZ VBN IN NNP NNS .\nIf the plan passes the legislature , Venezuelan citizens must vote in a referendum to accept or reject it .\tIN DT NN VBZ DT NN , JJ NNS MD VB IN DT NN TO VB CC VB PRP .\nHealth officials in Bangladesh are launching a campaign to vaccinate at least 18 million children against polio after a nine-year-old girl was diagnosed with the disease earlier this year .\tNNP NNS IN NNP VBP VBG DT NN TO VB IN JJS CD CD NNS IN NN IN DT JJ NN VBD VBN IN DT NN RBR DT NN .\nThe health ministry says the campaign will start Sunday and will focus on children under the age of five .\tDT NN NN VBZ DT NN MD VB NNP CC MD VB IN NNS IN DT NN IN CD .\nThe government had thought it had eradicated polio , with no new cases reported since 2000 .\tDT NN VBD VBN PRP VBD VBN NN , IN DT JJ NNS VBN IN CD .\nBut last month , polio was confirmed in a girl from the eastern district of Chandpur .\tCC JJ NN , NN VBD VBN IN DT NN IN DT JJ NN IN NNP .\nThe girl was first stricken in January .\tDT NN VBD JJ NN IN NNP .\nThe World Health Organization reports that a lab in India linked the virus carried by the girl to a strain found in India where polio is still common .\tDT NNP NNP NNP VBZ IN DT NN IN NNP VBD DT NN VBN IN DT NN TO DT NN VBN IN NNP WRB NN VBZ RB JJ .\nSouth Korea 's military says it is preparing for the possibility that North Korea may try to provoke a naval skirmish along their disputed sea border .\tNNP NNP POS JJ VBZ PRP VBZ VBG IN DT NN IN NNP NNP MD VB TO VB DT JJ NN IN PRP$ JJ NN NN .\nA Defense Ministry report to parliament Wednesday said the military is preparing for the possibility that the North may launch attacks on naval ships or seize South Korean fishing boats .\tDT NNP NNP NN TO NN NNP VBD DT NN VBZ VBG IN DT NN IN DT NNP MD VB NNS IN JJ NNS CC VB JJ JJ NN NNS .\nRelations have been steadily deteriorating in recent weeks as Pyongyang has sealed off its border .\tNNP VBP VBN RB VBG IN JJ NNS IN NNP VBZ VBN RP PRP$ NN .\nNorth Korea has also ordered the expulsion of hundreds of South Koreans working at a joint industrial estate in the North .\tNNP NNP VBZ RB VBN DT NN IN NNS IN NNP NNS VBG IN DT JJ JJ NN IN DT NNP .\nThe North says its actions are in protest of what it calls ' South Korea 's confrontational policies . '\tDT NNP VBZ PRP$ NNS VBP IN NN IN WP PRP VBZ `` NNP NNP POS JJ NNS . ``\nTies have steadily worsened since conservative South Korean President Lee Myung-bak stepped into office in February .\tNNS VBP RB VBN IN JJ JJ JJ NNP NNP NNP VBD IN NN IN NNP .\nMr. Lee campaigned on pledges to take a tougher stance on cross-border ties .\tNNP NNP VBD IN NNS TO VB DT JJR NN IN JJ NNS .\nHis election marked the end of 10 years of liberal rule in South Korea .\tPRP$ NN VBD DT NN IN CD NNS IN JJ NN IN NNP NNP .\nPope Benedict left Rome Saturday for Australia , where he will join hundreds of thousands of young people celebrating World Youth Day .\tNNP NNP VBD NNP NNP IN NNP , WRB PRP MD VB NNS IN NNS IN JJ NNS VBG NNP NNP NNP .\nThe pope told reporters that he would use his 10-day pilgrimage to Australia to offer apologies to victims of sexual abuse by priests , as he did during his recent trip to the United States .\tDT NN VBD NNS IN PRP MD VB PRP$ JJ NN TO NNP TO VB NNS TO NNS IN JJ NN IN NNS , IN PRP VBD IN PRP$ JJ NN TO DT NNP NNPS .\nHe called such abuse ' incompatible ' with behavior required of priests .\tPRP VBD JJ NN `` JJ `` IN NN VBN IN NNS .\nIn a telegram to Italian President Giorgio Napolitano just before leaving , the pope said he was filled with a great desire to meet the youth of the entire world to exhort them to become courageous witnesses of the love of Christ .\tIN DT NN TO JJ NNP NNP NNP RB IN VBG , DT NN VBD PRP VBD VBN IN DT JJ NN TO VB DT NN IN DT JJ NN TO VB PRP TO VB JJ NNS IN DT NN IN NNP .\nThe pope will arrive in Darwin , Australia on Sunday .\tDT NN MD VB IN NNP , NNP IN NNP .\nPakistani intelligence officials say an air strike by a suspected U.S. drone ( unmanned aircraft ) has killed at least six people in a northwestern tribal region near the Afghan border .\tJJ NN NNS VBP DT NN NN IN DT JJ NNP NN LRB JJ NN RRB VBZ VBN IN JJS CD NNS IN DT JJ JJ NN IN DT JJ NN .\nOfficials said the missile struck a house next to a Muslim school in South Waziristan , in an area believed to be a stronghold of al-Qaida militants .\tNNS VBD DT NN VBD DT NN IN TO DT NN NN IN NNP NNP , IN DT NN VBN TO VB DT NN IN NNP NNS .\nThey said the identities of those killed in the strike were not immediately known .\tPRP VBD DT NNS IN DT VBN IN DT NN VBD RB RB VBN .\nThere have been more than 30 missile strikes targeting alleged militants in Pakistan since August .\tEX VBP VBN JJR IN CD NN NNS VBG JJ NNS IN NNP IN NNP .\nThey are believed to have been carried out by U.S. remote-controlled aircraft .\tPRP VBP VBN TO VB VBN VBN RP IN NNP JJ NN .\nU.S. authorities have refused to confirm or deny responsibility for the attacks .\tNNP NNS VBP VBN TO VB CC VB NN IN DT NNS .\nThe Pakistani government has strongly condemned the air strikes , saying they undermine Pakistan 's counter-terrorism efforts .\tDT JJ NN VBZ RB VBN DT NN NNS , VBG PRP VBP NNP POS NN NNS .\nU.S. officials say Uzbekistan has given the United States formal notice that it must leave an airbase that is a key link for military and humanitarian supplies sent into Afghanistan .\tNNP NNS VBP NNP VBZ VBN DT NNP NNPS JJ NN IN PRP MD VB DT NN WDT VBZ DT JJ NN IN JJ CC JJ NNS VBN IN NNP .\nState Department spokeswoman Nancy Beck said Saturday Uzbekistan delivered a notice to the U.S. embassy in Tashkent late last week informing officials of the termination of the agreement to use the Karshi-Khanabad airbase .\tNNP NNP NN NNP NNP VBD NNP NNP VBD DT NN TO DT NNP NN IN NNP RB JJ NN VBG NNS IN DT NN IN DT NN TO VB DT NNP NN .\nThe Central Asian nation asked the United States to remove all of its aircraft , personnel and equipment from the base within six months .\tDT JJ JJ NN VBD DT NNP NNPS TO VB DT IN PRP$ NN , NNS CC NN IN DT NN IN CD NNS .\nUzbekistan did not give a reason for the move , but Ms. Beck said this was a bilateral agreement that could be terminated at any time by either nation .\tNNP VBD RB VB DT NN IN DT NN , CC NNP NNP VBD DT VBD DT JJ NN WDT MD VB VBN IN DT NN IN DT NN .\nRelations between Tashkent and Washington have been tense since May , when President Islam Karimov 's government killed hundreds of people while suppressing protest demonstrations in Andijan province , near the border with Kyrgyzstan .\tNN IN NNP CC NNP VBP VBN JJ IN NNP , WRB NNP NNP NNP POS NN VBD NNS IN NNS IN VBG NN NNS IN NNP NN , IN DT NN IN NNP .\nIndonesia 's health ministry says a 31-year-old woman has died of bird flu , raising the national death toll from the disease to 102 .\tNNP POS NN NN VBZ DT JJ NN VBZ VBN IN NN NN , VBG DT JJ NN NN IN DT NN TO CD .\nOfficials say the woman died late Thursday , at a Jakarta hospital .\tNNS VBP DT NN VBD JJ NNP , IN DT NNP NN .\nShe is at least the seventh person to die this year from the disease .\tPRP VBZ IN JJS DT JJ NN TO VB DT NN IN DT NN .\nThey say the woman was from Tangerang , a city outside of Jakarta , and that she lived in a neighborhood with backyard farms and near a traditional market that sells poultry .\tPRP VBP DT NN VBD IN NNP , DT NN IN IN NNP , CC IN PRP VBD IN DT NN IN JJ NNS CC IN DT JJ NN WDT VBZ NN .\nMost cases in Indonesia involve contact with infected poultry .\tJJS NNS IN NNP VBP NN IN JJ NN .\nBird flu has killed more people in Indonesia than any other country since it began spreading in Southeast Asia in late 2003 .\tNNP NNP VBZ VBN JJR NNS IN NNP IN DT JJ NN IN PRP VBD VBG IN NNP NNP IN JJ CD .\nThe World Health Organization says 224 people around the world have died from the deadly H5N1 strain of bird flu since 2003 .\tDT NNP NNP NNP VBZ CD NNS IN DT NN VBP VBN IN DT JJ NNP NN IN NN NN IN CD .\nHealth experts fear it will mutate into a form that could be easily spread among humans , triggering a global pandemic .\tNNP NNS VBP PRP MD VB IN DT NN WDT MD VB RB VBN IN NNS , VBG DT JJ NN .\nThe boom in wind power is creating opportunities in some economically depressed areas of the United States .\tDT NN IN NN NN VBZ VBG NNS IN DT RB JJ NNS IN DT NNP NNPS .\nIn the Great Plains states of the country , where wind is in plentiful supply , the growing number of wind energy projects is helping to supplement declining farm incomes and creating new jobs .\tIN DT NNP NNPS NNS IN DT NN , WRB NN VBZ IN JJ NN , DT VBG NN IN NN NN NNS VBZ VBG TO VB VBG NN NNS CC VBG JJ NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nPakistani security officials said a suspected U.S. drone ( unmanned ) aircraft has fired missiles at a site in the tribal region of northwestern Pakistan .\tJJ NN NNS VBD DT JJ NNP NN LRB JJ RRB NN VBZ VBN NNS IN DT NN IN DT JJ NN IN JJ NNP .\nOfficials said the missiles struck a compound Saturday in South Waziristan , near the Afghan border , killing at least eight people .\tNNS VBD DT NNS VBD DT NN NNP IN NNP NNP , IN DT JJ NN , VBG IN JJS CD NNS .\nTheir identities were not immediately known .\tPRP$ NNS VBD RB RB VBN .\nThe region is seen as a stronghold of al-Qaida and Pakistani Taliban militants .\tDT NN VBZ VBN IN DT NN IN NNP CC JJ NNP NNS .\nSuspected U.S. drones have carried out at least 30 missile strikes on militant targets in northwest Pakistan over the past year .\tVBN NNP NNS VBP VBN RP IN JJS CD NN NNS IN JJ NNS IN JJ NNP IN DT JJ NN .\nThe United States rarely discusses the strikes , which Pakistan has criticized as counterproductive and a violation of its sovereignty .\tDT NNP NNPS RB VBZ DT NNS , WDT NNP VBZ VBN IN JJ CC DT NN IN PRP$ NN .\nThe latest missile attack comes as Pakistani security forces are battling extremist militants elsewhere in northwestern Pakistan , around the Swat valley .\tDT JJS NN NN VBZ IN JJ NN NNS VBP VBG NN NNS RB IN JJ NNP , IN DT NNP NN .\nNew Orleans Mayor Ray Nagin says his city can only support half the population it did before Hurricane Katrina struck in August .\tNNP NNP NNP NNP NNP VBZ PRP$ NN MD RB VB PDT DT NN PRP VBD IN NNP NNP VBD IN NNP .\nIn an interview with the Washington Post published Wednesday , Mayor Nagin says New Orleans ' shattered infrastructure can support about 2,50,000 residents over the next year .\tIN DT NN IN DT NNP NNP VBN NNP , NNP NNP VBZ NNP NNP POS JJ NN MD VB IN CD NNS IN DT JJ NN .\nThat compares with nearly 5,00,000 people who lived in the city before the hurricane .\tDT VBZ IN RB CD NNS WP VBD IN DT NN IN DT NN .\nMr. Nagin says more than 2,50,000 homes are uninhabitable and that some neighborhoods are still lacking basic services .\tNNP NNP VBZ JJR IN CD NNS VBP JJ CC IN DT NNS VBP RB VBG JJ NNS .\nThousands of New Orleans residents who evacuated the city remain in temporary housing in other cities and states .\tNNS IN NNP NNP NNS WP VBD DT NN VBP IN JJ NN IN JJ NNS CC NNS .\nMayor Nagin has vowed to resurrect the city , some 80 percent of which was flooded after Katrina .\tNNP NNP VBZ VBN TO VB DT NN , DT CD NN IN WDT VBD VBN IN NNP .\nAuthorities in Turkey have released five people who had been detained since Saturday on suspicion of planning to attack Turkish Prime Minister Recep Tayyip Erdogan .\tNNS IN NNP VBP VBN CD NNS WP VBD VBN VBN IN NNP IN NN IN VBG TO VB JJ NNP NNP NNP NNP NNP .\nThe Anatolia news agency said police rounded them up in the southern city of Adana , shortly before the prime minister visited the city for an election campaign rally .\tDT NNP NN NN VBD NN VBD PRP RP IN DT JJ NN IN NNP , RB IN DT JJ NN VBD DT NN IN DT NN NN NN .\nJudicial officials did not say why the five were released , and provided no details about the alleged plot .\tNNP NNS VBD RB VB WRB DT CD VBD VBN , CC VBD DT NNS IN DT JJ NN .\nThe Pakistani government has summoned envoys of nine European countries to protest the publication of cartoons of the prophet Mohammed .\tDT JJ NN VBZ VBN NNS IN CD JJ NNS TO VB DT NN IN NNS IN DT NN VBN .\nOn Saturday , diplomats from France , Germany , Italy , Spain , Switzerland , the Netherlands , Hungary , Norway and the Czech Republic were called to the Foreign Ministry in Islamabad to hear the protest from the world 's second-largest Muslim nation .\tIN NNP , NNS IN NNP , NNP , NNP , NNP , NNP , DT NNP , NNP , NNP CC DT JJ NNP VBD VBN TO DT NNP NNP IN NNP TO VB DT NN IN DT NN POS JJ NNP NN .\nA spokesperson said the diplomats were told that freedom of expression is not a license to disparage the values and beliefs of other people .\tDT NN VBD DT NNS VBD VBN IN NN IN NN VBZ RB DT NN TO VB DT NNS CC NNS IN JJ NNS .\nThe cartoons , published in European newspapers , have enraged Muslims because Islamic tradition forbids any depiction of the prophet Mohammed to prevent idolatry .\tDT NNS , VBN IN JJ NNS , VBP VBN NNS IN JJ NN VBZ DT NN IN DT NN VBN TO VB NN .\nThe diplomatic protest comes a day after Pakistan 's parliament denounced the publication of the cartoons .\tDT JJ NN VBZ DT NN IN NNP POS NN VBD DT NN IN DT NNS .\nA Russia envoy says North Korean leader Kim Jong-il has confirmed Pyongyang will not develop nuclear weapons and continues to support the six-party agreement reached last month .\tDT NNP NN VBZ JJ JJ NN NNP NNP VBZ VBN NNP MD RB VB JJ NNS CC VBZ TO VB DT JJ NN VBN JJ NN .\nRussia 's Interfax news agency says presidential envoy Konstantin Pulikovsky just returned from North Korea 's 60th anniversary celebrations for the founding of the country 's communist party .\tNNP POS NNP NN NN VBZ JJ NN NNP NNP RB VBD IN NNP NNP POS JJ NN NNS IN DT NN IN DT NN POS JJ NN .\nThe agency quotes Mr. Pulikovsky as saying he met with the North Korean leader , and he clearly confirmed his country 's renunciation of nuclear weapons .\tDT NN VBZ NNP NNP IN VBG PRP VBD IN DT JJ JJ NN , CC PRP RB VBD PRP$ NN POS NN IN JJ NNS .\nThe Russian envoy also reported the 63-year-old leader is in excellent health , saying ' he is lively and joyful . '\tDT JJ NN RB VBD DT JJ NN VBZ IN JJ NN , VBG `` PRP VBZ JJ CC JJ . ``\nNorth Korea agreed last month during six-nation talks in Beijing to abandon its nuclear weapons program in return for economic aid , energy assistance and security assurances .\tNNP NNP VBD JJ NN IN JJ NNS IN NNP TO VB PRP$ JJ NNS NN IN NN IN JJ NN , NN NN CC NN NNS .\nThe next round of talks is scheduled for November .\tDT JJ NN IN NNS VBZ VBN IN NNP .\nIsraeli President Shimon Peres has strongly denied a report that he offered nuclear warheads to the white minority South African government in 1975 when he was the Israeli defense minister .\tJJ NNP NNP NNP VBZ RB VBN DT NN IN PRP VBD JJ NNS TO DT JJ NN JJ JJ NN IN CD WRB PRP VBD DT JJ NN NN .\nIn a statement Monday , Mr. Peres said ' there exists no basis in reality for the claims published ' by the British newspaper , The Guardian .\tIN DT NN NNP , NNP NNP VBD `` EX VBZ DT NN IN NN IN DT NNS VBN `` IN DT JJ NN , DT NNP .\nMr. Peres said The Guardian wrote its article based on the ' selective interpretation of South African documents and not on concrete facts . '\tNNP NNP VBD DT NNP VBD PRP$ NN VBN IN DT `` JJ NN IN JJ JJ NNS CC RB IN JJ NNS . ``\nThe report published Sunday quoted newly released South African documents about top secret meetings in which Mr. Peres allegedly offered the warheads to South African officials in 1975 .\tDT NN VBN NNP VBD RB VBN JJ JJ NNS IN JJ JJ NNS IN WDT NNP NNP RB VBD DT NNS TO JJ JJ NNS IN CD .\nIsrael has never confirmed or denied the widely held belief that it has nuclear weapons .\tNNP VBZ RB VBN CC VBN DT RB VBN NN IN PRP VBZ JJ NNS .\nSouth Africa developed nuclear weapons during white minority rule , but dismantled its nuclear program in 1991 .\tNNP NNP VBD JJ NNS IN JJ NN NN , CC VBD PRP$ JJ NN IN CD .\nDemocratic presidential candidate Barack Obama says if elected president he plans to make college affordable for everyone .\tJJ JJ NN NNP NNP VBZ IN VBN NN PRP VBZ TO VB NN JJ IN DT .\nSpeaking to students at a community college in Michigan Tuesday , Obama discussed several initiatives he says he would implement including a $ 4,000 tax credit for students who can not afford college .\tVBG TO NNS IN DT NN NN IN NNP NNP , NNP VBD JJ NNS PRP VBZ PRP MD VB VBG DT $ CD NN NN IN NNS WP MD RB VB NN .\nHe also said he would require student loans be provided by the federal government .\tPRP RB VBD PRP MD VB NN NNS VB VBN IN DT JJ NN .\nThe Illinois senator said there would be requirements to receive the tax credit , including 100 hours of community service .\tDT NNP NN VBD EX MD VB NNS TO VB DT NN NN , VBG CD NNS IN NN NN .\nOn Monday , former U.S. Vice President Al Gore endorsed Obama , saying in Detroit , Michigan , that Obama is the candidate to lead the country toward a better future .\tIN NNP , JJ NNP NNP NNP NNP NNP VBD NNP , VBG IN NNP , NNP , IN NNP VBZ DT NN TO VB DT NN IN DT JJR NN .\nThe presumptive Republican presidential nominee , John McCain , is campaigning Tuesday in Texas , where the veteran Arizona lawmaker is to call for the lifting of a ban on offshore U.S. oil and natural gas exploration .\tDT JJ JJ JJ NN , NNP NNP , VBZ VBG NNP IN NNP , WRB DT NN NNP NN VBZ TO VB IN DT NN IN DT NN IN JJ NNP NN CC JJ NN NN .\nIraqi officials say President Jalal Talabani has arrived in Jordan for medical treatment after falling ill from hard work in recent days .\tJJ NNS VBP NNP NNP NNP VBZ VBN IN NNP IN JJ NN IN VBG RB IN JJ NN IN JJ NNS .\nIraqi sources say President Talabani experienced a drop in blood pressure , but the sources ruled out a possible heart attack .\tJJ NNS VBP NNP NNP VBD DT NN IN NN NN , CC DT NNS VBD RP DT JJ NN NN .\nHis son , Qubad Talabani , told VOA Kurdish service that his father is suffering from exhaustion and dehydration .\tPRP$ NN , NNP NNP , VBD NNP NNP NN IN PRP$ NN VBZ VBG IN NN CC NN .\nMedia reports quoting the officials say Mr. Talabani will be treated at a hospital in the Jordanian capital , Amman .\tNNS NNS VBG DT NNS VBP NNP NNP MD VB VBN IN DT NN IN DT JJ NN , NNP .\nA statement from Mr. Talabani 's office said there is no cause for concern .\tDT NN IN NNP NNP POS NN VBD EX VBZ DT NN IN NN .\nThe Iraqi president is in his early 70s .\tDT JJ NN VBZ IN PRP$ JJ NNS .\nIsraeli Prime Minister Ariel Sharon 's office says he and Palestinian leader Mahmoud Abbas spoke by telephone Sunday and agreed to meet in the near future .\tJJ NNP NNP NNP NNP POS NN VBZ PRP CC JJ NN NNP NNP VBD IN NN NNP CC VBD TO VB IN DT JJ NN .\nThe two leaders were to have met today , but the meeting was canceled after a 10-day upsurge in violence .\tDT CD NNS VBD TO VB VBN NN , CC DT NN VBD VBN IN DT JJ NN IN NN .\nEarlier today , Israel suspended its Gaza offensive , following a lull in rocket attacks by Palestinian militants .\tRBR NN , NNP VBD PRP$ NNP NN , VBG DT NN IN NN NNS IN JJ NNS .\nThe army said it will restart the operation if the rocket fire resumes .\tDT NN VBD PRP MD VB DT NN IN DT NN NN VBZ .\nIn a separate development , Israel is warning vacationers to avoid Egypt 's Red Sea resorts over the upcoming Jewish holidays .\tIN DT JJ NN , NNP VBZ VBG NNS TO VB NNP POS NNP NNP NNS IN DT JJ JJ NNS .\nA government statement says Israeli tourists could be kidnapped by pro-Palestinian militants .\tDT NN NN VBZ JJ NNS MD VB VBN IN JJ NNS .\nThousands of Israelis ignored a similar warning last year ahead of bombings that killed 34 people at two Sinai resort areas .\tNNS IN NNS VBD DT JJ NN JJ NN RB IN NNS WDT VBD CD NNS IN CD NNP NN NNS .\nIndonesia says it has captured one of the nation 's most wanted terrorist suspect , Abdullah Sonata .\tNNP VBZ PRP VBZ VBN CD IN DT NN POS RBS JJ JJ NN , NNP NNP .\nAuthorities said two of his aides were arrested and another follower was killed during coordinated raids Wednesday on the main island of Java .\tNNS VBD CD IN PRP$ NNS VBD VBN CC DT NN VBD VBN IN VBN NNS NNP IN DT JJ NN IN NNP .\nSonata , a follower of the deceased terror leader Noordin Mohammed Top , is accused of playing a key role in recruiting terrorists and setting up a training camp that was discovered last month in western Aceh province .\tNNP , DT NN IN DT JJ NN NN NNP NNP NNP , VBZ VBN IN VBG DT JJ NN IN VBG NNS CC VBG RP DT NN NN WDT VBD VBN JJ NN IN JJ NNP NN .\nPolice said participants in the camp had been planning an armed attack on luxury hotels favored by tourists and an assault aimed at killing the president and foreign guests during independence celebrations in August .\tNNS VBD NNS IN DT NN VBD VBN VBG DT JJ NN IN NN NNS VBN IN NNS CC DT NN VBN IN VBG DT NN CC JJ NNS IN NN NNS IN NNP .\nA bomb hidden inside a backpack was also discovered during Wednesday 's raids , police said .\tDT NN VBN IN DT NN VBD RB VBN IN NNP POS NNS , NN VBD .\nA day earlier , a court sentenced two men to prison for assisting Noordin Top , who was killed during a police raid in Central Java last September .\tDT NN RB , DT NN VBN CD NNS TO NN IN VBG NNP NNP , WP VBD VBN IN DT NN NN IN NNP NNP JJ NNP .\nA New York-based media rights group is urging the Iraqi government to reverse a ban on journalists from the immediate aftermath of bomb attacks .\tDT NNP JJ NNS NNS NN VBZ VBG DT JJ NN TO VB DT NN IN NNS IN DT JJ NN IN NN NNS .\nThe government announced earlier this month that reporters will not be allowed at a bombing site for one hour following an attack .\tDT NN VBD RBR DT NN IN NNS MD RB VB VBN IN DT VBG NN IN CD NN VBG DT NN .\nReasons given for the ban include protecting reporters from secondary attacks and preserving evidence from attacks .\tNNS VBN IN DT NN VBP VBG NNS IN JJ NNS CC VBG NN IN NNS .\nHowever , the executive director of the Committee to Protect Journalists , Joel Simon , says the restriction appears to be an attempt to limit media coverage of unwelcome news .\tRB , DT NN NN IN DT NNP TO VB NNS , NNP NNP , VBZ DT NN VBZ TO VB DT NN TO VB NNS NN IN JJ NN .\nIn a letter to Iraqi Prime Minister Nouri al-Maliki , Simon says there is no justification for news coverage to be obstructed .\tIN DT NN TO JJ NNP NNP NNP NNP , NNP VBZ EX VBZ DT NN IN NN NN TO VB VBN .\nHe called on the prime minister to allow the press to carry out its reporting without hindrance .\tPRP VBD IN DT JJ NN TO VB DT NN TO VB RP PRP$ NN IN NN .\nThe International Whaling Commission is meeting in the northern U.S. state of Alaska to decide whether to drop a moratorium on commercial whale hunting .\tDT NNP NNP NNP VBZ VBG IN DT JJ NNP NN IN NNP TO VB IN TO VB DT NN IN JJ NN NN .\nThe ban was enacted in 1986 to help prevent several species of great whales from becoming extinct .\tDT NN VBD VBN IN CD TO VB VB JJ NNS IN JJ NNS IN VBG NN .\nRepresentatives from 75 member countries will debate the issue during their annual meeting , which ends Thursday .\tNNS IN CD NN NNS MD VB DT NN IN PRP$ JJ NN , WDT VBZ NNP .\nPro-whaling nations such as Japan , Norway and Iceland argue that the ban can be lifted since whale populations have recovered .\tJJ NNS JJ IN NNP , NNP CC NNP VBP IN DT NN MD VB VBN IN NN NNS VBP VBN .\nApproval from 56 member nations would be needed to overturn the ban .\tNNP IN CD NN NNS MD VB VBN TO VB DT NN .\nLast year , IWC members voted 31-30 against a similar motion to repeal the ban .\tJJ NN , NNP NNS VBD CD IN DT JJ NN TO VB DT NN .\nNorway and Iceland are currently the only member nations to openly ignore the moratorium .\tNNP CC NNP VBP RB DT JJ NN NNS TO RB VB DT NN .\nJapan , which kills about 1,000 whales a year , says it hunts the animals strictly for scientific purposes , although the meat is sold to restaurants and shops .\tNNP , WDT VBZ IN CD NNS DT NN , VBZ PRP VBZ DT NNS RB IN JJ NNS , IN DT NN VBZ VBN TO NNS CC NNS .\nIndonesian prosecutors are seeking an eight-year jail term for the governor of tsunami-hit Aceh province , who is accused of misusing more than $ 1 million in government funds to buy a helicopter .\tJJ NNS VBP VBG DT JJ NN NN IN DT NN IN JJ NNP NN , WP VBZ VBN IN VBG JJR IN $ CD CD IN NN NNS TO VB DT NN .\nProsecutors said Monday that Abdullah Puteh did not comply with state bidding regulations when he purchased a Russian helicopter for the province .\tNNS VBD NNP IN NNP NNP VBD RB VB IN NN NN NNS WRB PRP VBD DT JJ NN IN DT NN .\nThe governor was arrested prior to last year 's tsunami .\tDT NN VBD VBN RB TO JJ NN POS NN .\nMr. Puteh , who denies the allegations , also faces a fine of up to $ 1,07,000 if he is convicted .\tNNP NNP , WP VBZ DT NNS , RB VBZ DT NN IN RB TO $ CD IN PRP VBZ VBN .\nThe case is seen as a key test of President Susilo Bambang Yudhoyono 's anti-corruption drive .\tDT NN VBZ VBN IN DT JJ NN IN NNP NNP NNP NNP POS JJ NN .\nInsurgents pressing a campaign of violence against Iraq 's Shi'ite Muslims struck again Saturday , detonating a car bomb at a market on the outskirts of Baghdad , killing at least 14 people .\tNNS VBG DT NN IN NN IN NNP POS NNP NNPS VBD RB NNP , VBG DT NN NN IN DT NN IN DT NNS IN NNP , VBG IN JJS CD NNS .\nHospital and security officials say at least 10 other people were wounded in the early evening attack in a poor Shi'ite Nahrawan neighborhood .\tNN CC NN NNS VBP IN JJS CD JJ NNS VBD VBN IN DT JJ NN NN IN DT JJ NNP NNP NN .\nSince Wednesday , a wave of bombings and shootings in and around Baghdad has killed more than 200 people and injured some 600 others .\tIN NNP , DT NN IN NNS CC NNS IN CC IN NNP VBZ VBN JJR IN CD NNS CC VBD DT CD NNS .\nMeanwhile , the U.S. military reports it has captured two key al-Qaida leaders in the northern city of Mosul .\tRB , DT NNP NN VBZ PRP VBZ VBN CD NN NNP NNS IN DT JJ NN IN NNP .\nThe military says the men - Taha Ibrahim Yasin Becher and Hamed Sa'eed Ismael Mustafa - directed the terrorist organization 's daily operations and were responsible for numerous attacks against Iraqi and coalition forces .\tDT NN VBZ DT NNS IN NNP NNP NNP NNP CC NNP NNP NNP NNP : VBD DT JJ NN POS JJ NNS CC VBD JJ IN JJ NNS IN JJ CC NN NNS .\nIsrael 's justice ministry says it has ordered a criminal investigation into Prime Minister Ehud Olmert 's role in the sale of an Israeli bank two years ago .\tNNP POS NN NN VBZ PRP VBZ VBN DT JJ NN IN NNP NNP NNP NNP POS NN IN DT NN IN DT JJ NN CD NNS RB .\nMedia reports say police will question Mr. Olmert about allegations that he tried to help two friends buy Bank Leumi , one of Israel 's largest financial institutions , which was going private .\tNNS NNS VBP NNS MD VB NNP NNP IN NNS IN PRP VBD TO VB CD NNS VBP NNP NNP , CD IN NNP POS JJS JJ NNS , WDT VBD VBG JJ .\nThe friends were unsuccessful in their bids .\tDT NNS VBD JJ IN PRP$ NNS .\nIsraeli media have said police might also want to question Mr. Olmert about another case involving appointments he made to a business authority when he was industry minister in 2004 .\tJJ NNS VBP VBN NN MD RB VB TO VB NNP NNP IN DT NN VBG NNS PRP VBD TO DT NN NN WRB PRP VBD NN NN IN CD .\nThe investigation announced Tuesday is the latest involving the prime minister .\tDT NN VBN NNP VBZ DT JJS VBG DT JJ NN .\nThe state comptroller has already investigated Mr. Olmert 's real estate dealings but has found no wrongdoing .\tDT NN NN VBZ RB VBN NNP NNP POS JJ NN NNS CC VBZ VBN DT NN .\nRecently Mr. Olmert 's personal secretary , Shula Zaken , was placed under house arrest as part of a corruption probe .\tRB NNP NNP POS JJ NN , NNP NNP , VBD VBN IN NN NN IN NN IN DT NN NN .\nA top U.S. official says the levee system that failed in New Orleans earlier this year will be rebuilt ' stronger and safer than ever before ' .\tDT JJ NNP NN VBZ DT NN NN WDT VBD IN NNP NNP RBR DT NN MD VB VBN `` JJR CC JJR IN RB IN `` .\nBut the federal head of reconstruction efforts , Donald Powell Thursday stopped short of saying the new , reinforced levees would withstand a hurricane stronger than Katrina , which triggered the levee failure in August .\tCC DT JJ NN IN NN NNS , NNP NNP NNP VBD RB IN VBG DT JJ , JJ NNS MD VB DT NN JJR IN NNP , WDT VBD DT NN NN IN NNP .\nKatrina was a Category Three storm , on a scale that reaches a devastating Category Five .\tNNP VBD DT NNP CD NN , IN DT NN WDT VBZ DT JJ NNP CD .\nAt the same White House news conference , New Orleans Mayor Ray Nagin said it is time for his city 's residents to return home .\tIN DT JJ NNP NNP NN NN , NNP NNP NNP NNP NNP VBD PRP VBZ NN IN PRP$ NN POS NNS TO VB NN .\nHe said the city now has the three things needed to lure residents and businesses back - tax incentives , money for new housing and reconstruction , and the new levee system , set to be completed before the beginning of next year 's hurricane season .\tPRP VBD DT NN RB VBZ DT CD NNS VBN TO VB NNS CC NNS RB : NN NNS , NN IN JJ NN CC NN , CC DT JJ NN NN , VBN TO VB VBN IN DT NN IN JJ NN POS NN NN .\nFormer Salvadoran President Francisco Flores has withdrawn his candidacy to head the Organization of America States , just days ahead of the scheduled vote .\tJJ JJ NNP NNP NNP VBZ VBN PRP$ NN TO VB DT NNP IN NNP NNPS , RB NNS RB IN DT VBN NN .\nMr. Flores ' decision to step aside Friday leaves two candidates in Monday 's election -- Chilean Interior Minister Jose Miguel Insulza and Mexican Foreign Minister Luis Ernesto Derbez .\tNNP NNP POS NN TO VB RB NNP VBZ CD NNS IN NNP POS NN : JJ NNP NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP .\nOfficials from 34 nations will meet in Washington to choose a new secretary-general .\tNNS IN CD NNS MD VB IN NNP TO VB DT JJ NN .\nMr. Flores said he wanted to avoid splitting regional votes with Mexico 's candidate , Mr. Derbez .\tNNP NNP VBD PRP VBD TO VB VBG JJ NNS IN NNP POS NN , NNP NNP .\nThe United States , which endorsed Mr. Flores ' candidacy , says it respects his decision .\tDT NNP NNPS , WDT VBD NNP NNP POS NN , VBZ PRP VBZ PRP$ NN .\nA State Department official says Washington will consult with its OAS partners to elect the best possible candidate .\tDT NNP NNP NN VBZ NNP MD VB IN PRP$ NNP NNS TO VB DT JJS JJ NN .\nThe post became vacant in October , when former Costa Rican President Miguel Angel Rodriguez resigned to face corruption charges at home .\tDT NN VBD JJ IN NNP , WRB JJ NNP JJ NNP NNP NNP NNP VBD TO VB NN NNS IN NN .\nThe top United Nations investigator into the murder of former Lebanese Prime Minister Rafik Hariri has presented his latest findings to Secretary-General Kofi Annan .\tDT JJ NNP NNPS NN IN DT NN IN JJ JJ NNP NNP NNP NNP VBZ VBN PRP$ JJS NNS TO JJ NNP NNP .\nThe report from Detlev Mehlis is to be delivered to the U.N. Security Council Monday , and Mr. Mehlis will brief the council Tuesday .\tDT NN IN NNP NNP VBZ TO VB VBN TO DT NNP NNP NNP NNP , CC NNP NNP MD VB DT NN NNP .\nMr. Mehlis has said the probe should continue and said he plans to request more interviews with Syrian officials .\tNNP NNP VBZ VBN DT NN MD VB CC VBD PRP VBZ TO VB JJR NNS IN JJ NNS .\nAn earlier report from U.N. investigators implicated Lebanese and Syrian officials in Mr. Hariri 's death .\tDT JJR NN IN NNP NNS VBD JJ CC JJ NNS IN NNP NNP POS NN .\nMeanwhile , Syria 's President Bashar al-Assad told Russian television that he would punish any Syrians proven to have been involved in the February killing .\tRB , NNP POS NNP NNP NNP VBD JJ NN IN PRP MD VB DT NNS VBN TO VB VBN VBN IN DT NNP NN .\nHe also warned against possible sanctions by the U.N. Security Council , which has sought to pressure Syria to cooperate with the U.N. probe .\tPRP RB VBD IN JJ NNS IN DT NNP NNP NNP , WDT VBZ VBN TO VB NNP TO VB IN DT NNP NN .\nThe Colombian Army says it has killed the number two leader of the powerful rebel group Revolutionary Armed Forces of Colombia or FARC .\tDT JJ NNP VBZ PRP VBZ VBN DT NN CD NN IN DT JJ NN NN NNP NNP NNS IN NNP CC NNP .\nDefense Minister Juan Manuel Santos said Saturday that the army killed Raul Reyes , a top rebel commander who often served as a FARC spokesman .\tNNP NNP NNP NNP NNP VBD NNP IN DT NN VBD NNP NNP , DT JJ NN NN WP RB VBD IN DT NNP NN .\nSantos said Reyes was killed during a combat operation along the southern border with Ecuador .\tNNP VBD NNP VBD VBN IN DT NN NN IN DT JJ NN IN NNP .\nThe death is a victory for Colombian President Alvaro Uribe who has been under increasing international pressure to ease the long-running conflict with the country 's main leftist rebel group .\tDT NN VBZ DT NN IN JJ NNP NNP NNP WP VBZ VBN IN VBG JJ NN TO VB DT JJ NN IN DT NN POS JJ JJ NN NN .\nFARC is believed to be holding about 750 prisoners in jungle hideouts .\tNNP VBZ VBN TO VB VBG IN CD NNS IN NN NNS .\nThe government has been negotiating the swap of hostages , four of whom were released to Venezuelan authorities on Wednesday .\tDT NN VBZ VBN VBG DT NN IN NNS , CD IN WP VBD VBN TO JJ NNS IN NNP .\nThe new leader of Israel 's main opposition Labor Party is threatening to back a plan to topple Prime Minister Ariel Sharon 's government and force early elections .\tDT JJ NN IN NNP POS JJ NN NNP NNP VBZ VBG TO VB DT NN TO VB NNP NNP NNP NNP POS NN CC NN JJ NNS .\nAmir Peretz says he wants to meet with Mr. Sharon by Wednesday when a bill will be introduced by a smaller opposition party , National Religious Party , calling for parliament to be dissolved .\tNNP NNP VBZ PRP VBZ TO VB IN NNP NNP IN NNP WRB DT NN MD VB VBN IN DT JJR NN NN , NNP NNP NNP , VBG IN NN TO VB VBN .\nMr. Peretz says he will back the measure if he does not meet with Mr. Sharon before then .\tNNP NNP VBZ PRP MD VB DT NN IN PRP VBZ RB VB IN NNP NNP IN RB .\nMr. Peretz made the comments after the prime minister postponed a meeting planned for Sunday .\tNNP NNP VBD DT NNS IN DT JJ NN VBD DT NN VBN IN NNP .\nIsrael is not scheduled to hold parliamentary elections until next November , but Mr. Peretz is proposing they be held by March .\tNNP VBZ RB VBN TO VB JJ NNS IN JJ NNP , CC NNP NNP VBZ VBG PRP VB VBN IN NNP .\nHe defeated Shimon Peres for the Labor Party leadership in elections Thursday , vowing to pull the party from Mr. Sharon 's fragile coalition government .\tPRP VBD NNP NNP IN DT NNP NNP NN IN NNS NNP , VBG TO VB DT NN IN NNP NNP POS JJ NN NN .\nGoogle , one of the Internet 's most successful companies , is gearing up to compete better with its popular rival , Facebook .\tNNP , CD IN DT NNP POS JJS JJ NNS , VBZ VBG RP TO VB RB IN PRP$ JJ NN , NNP .\nThe Wall Street Journal reports Google is holding talks with makers of on-line games in the hope of boosting profits by offering a new service to its many customers .\tDT NNP NNP NNP VBZ NNP VBZ VBG NNS IN NNS IN JJ NNS IN DT NN IN VBG NNS IN VBG DT JJ NN TO PRP$ JJ NNS .\nAdvertisers pay the Internet giants for the right to post advertising that reaches the hundreds of millions of people who use the services .\tNNS VBP DT NN NNS IN DT NN TO VB NN WDT VBZ DT NNS IN NNS IN NNS WP VBP DT NNS .\nThe fast-growing on-line gaming sector of the industry could boost revenue by attracting larger audiences and holding them for a longer time .\tDT JJ JJ NN NN IN DT NN MD VB NN IN VBG JJR NNS CC VBG PRP IN DT JJR NN .\nNigerian police are searching for 15 school children who were kidnapped in southeastern Nigeria by gunmen .\tJJ NNS VBP VBG IN CD NN NNS WP VBD VBN IN JJ NNP IN NNS .\nPolice said Tuesday the kidnappers hijacked the school bus the children were riding in and have demanded a ransom of more than $ 1,00,000 .\tNNS VBD NNP DT NNS VBD DT NN NN DT NNS VBD VBG IN CC VB VBN DT NN IN JJR IN $ CD .\nThey say the attack took place early Monday while the nursery and primary school children were being driven to the Abayi International School , in Abia state .\tPRP VBP DT NN VBD NN RB NNP IN DT NN CC JJ NN NNS VBD VBG VBN TO DT NNP NNP NNP , IN NNP NN .\nThere have been a number of kidnappings for ransom in Abia state , near Nigeria 's oil-rich Niger Delta region .\tEX VBP VBN DT NN IN NNS IN NN IN NNP NN , IN NNP POS NN NNP NNP NN .\nMost of the kidnappings in the Niger Delta initially involved foreign oil workers , but more recently attackers have also targeted the children and relatives of wealthy Nigerians .\tJJS IN DT NNS IN DT NNP NNP RB VBD JJ NN NNS , CC RBR RB NNS VBP RB VBN DT NNS CC NNS IN JJ NNS .\nMost of those who are abducted are later released unharmed , usually after a ransom is paid .\tJJS IN DT WP VBP VBN VBP RB VBN JJ , RB IN DT NN VBZ VBN .\nAn Ariane rocket has lifted off from Kourou , French Guiana , carrying seven satellites , including at least one that is to gather intelligence for France 's military .\tDT NNP NN VBZ VBN RP IN NNP , NNP NNP , VBG CD NNS , VBG IN JJS CD WDT VBZ TO VB NN IN NNP POS NN .\nThe Helios 2A military satellite , launched from the European Space Agency 's center , is to gather both optical and infrared intelligence .\tDT NNP NNP JJ NN , VBN IN DT NNP NNP NNP POS NN , VBZ TO VB DT JJ CC JJ NN .\nThe other satellites include the Parasol designed to study cloud formations in the upper atmosphere .\tDT JJ NNS VBP DT NNP VBD TO VB NN NNS IN DT JJ NN .\nIsraeli Prime Minister Ariel Sharon has ordered his government to cut all contact with the Palestinian Authority after a militant attack late Thursday killed six Israeli civilians .\tJJ NNP NNP NNP NNP VBZ VBN PRP$ NN TO VB DT NN IN DT JJ NNP IN DT JJ NN RB NNP VBD CD JJ NNS .\nMr. Sharon 's office said there would be no contact until newly elected Palestinian President Mahmoud Abbas reins in the militants and halts attacks .\tNNP NNP POS NN VBD EX MD VB DT NN IN RB VBN JJ NNP NNP NNP NNS IN DT NNS CC NNS NNS .\nAll border crossings with Gaza were also closed .\tDT NN NNS IN NNP VBD RB VBN .\nPalestinian Cabinet minister Saeb Erekat called on Mr. Sharon to reconsider his decision , saying the best way to restart the peace process is to resume dialogue .\tJJ NNP NN NNP NNP VBD IN NNP NNP TO VB PRP$ NN , VBG DT JJS NN TO VB DT NN NN VBZ TO VB NN .\nEarlier Friday , Mr. Abbas , who is to be sworn-in Saturday , condemned both the militant attack , as well as deadly Israeli raids in the occupied territories , saying they do not benefit the peace process .\tRBR NNP , NNP NNP , WP VBZ TO VB JJ NNP , VBD DT DT JJ NN , RB RB IN JJ JJ NNS IN DT JJ NNS , VBG PRP VBP RB VB DT NN NN .\nThe militant groups Hamas , the Popular Resistance Committee and al-Aqsa Martyrs Brigades all claimed responsibility for Thursday 's attack on the Karni crossing between Israel and the Gaza Strip .\tDT JJ NNS NNP , DT NNP NNP NNP CC NNP NNP NNP DT VBD NN IN NNP POS NN IN DT NNP VBG IN NNP CC DT NNP NNP .\nRussia says it withdrew its last troops based in Georgia Thursday , months ahead of schedule .\tNNP VBZ PRP VBD PRP$ JJ NNS VBN IN NNP NNP , NNS RB IN NN .\nA train carrying the last 150 Russian troops and military equipment left the Georgian city of Batumi on the Black Sea late Wednesday night and crossed into Armenia early Thursday .\tDT NN VBG DT JJ CD JJ NNS CC JJ NN VBD DT JJ NN IN NNP IN DT NNP NNP JJ NNP NN CC VBD IN NNP RB NNP .\nIt marks the end of two centuries of Russia 's military presence in Georgia .\tPRP VBZ DT NN IN CD NNS IN NNP POS JJ NN IN NNP .\nHowever , Russia still maintains peacekeeping forces in Georgia 's breakaway regions of Abkhazia and South Ossetia .\tRB , NNP RB VBZ VBG NNS IN NNP POS JJ NNS IN NNP CC NNP NNP .\nGeorgian President Mikhail Saakashvili has accused the Russian troops of supporting the separatists and wants the Russian peacekeepers replaced with United Nations forces .\tJJ NNP NNP NNP VBZ VBN DT JJ NNS IN VBG DT NNS CC VBZ DT JJ NNS VBN IN NNP NNP NNS .\nRussia has based troops at former Soviet bases in Georgia since 1991 and had promised to pull them all out by 2008 .\tNNP VBZ VBN NNS IN JJ JJ NNS IN NNP IN CD CC VBD VBN TO VB PRP DT RP IN CD .\nInvestors got a mixed bag of U.S. economic information on Friday .\tNNS VBD DT JJ NN IN NNP JJ NN IN NNP .\nThe huge General Electric corporation reported an 18 percent increase in profits in the last three months of 2004 .\tDT JJ NNP NNP NN VBD DT CD NN NN IN NNS IN DT JJ CD NNS IN CD .\nGE officials say strong industrial sales along with an ' excellent ' global economy helped them make nearly $ 5.4 billion during the period .\tNNP NNS VBP JJ JJ NNS IN IN DT `` JJ `` JJ NN VBD PRP VB RB $ CD CD IN DT NN .\nMeasured by its value on the stock market , GE is the biggest U.S. corporation .\tVBN IN PRP$ NN IN DT NN NN , NNP VBZ DT JJS NNP NN .\nResearchers say U.S. consumers have a different view of the economy .\tNNS VBP NNP NNS VBP DT JJ NN IN DT NN .\nOn Friday the University of Michigan said its index of consumer confidence declined 1.3 percent in early January , to a reading of 95.8 .\tIN NNP DT NNP IN NNP VBD PRP$ NN IN NN NN VBD CD NN IN JJ NNP , TO DT NN IN CD .\nExperts track consumer confidence for hints about future consumer spending , which drives much of the economic activity in the United States .\tNNS VBP NN NN IN NNS IN JJ NN NN , WDT VBZ NN IN DT JJ NN IN DT NNP NNPS .\nThe senior leader of Hamas says the Palestinian militant group will not disarm or change its policies toward Israel , following its landslide election victory .\tDT JJ NN IN NNP VBZ DT JJ JJ NN MD RB VB CC VB PRP$ NNS IN NNP , VBG PRP$ NN NN NN .\nSpeaking from his base in Damascus , Syria , Khaled Mashaal said Saturday Hamas and the Palestinian people will be as effective in politics and reform as in fighting Israel .\tVBG IN PRP$ NN IN NNP , NNP , NNP NNP VBD NNP NNP CC DT JJ NNS MD VB IN JJ IN NNS CC NN IN IN VBG NNP .\nHe also rejected international threats to cut off Palestinian aid , saying the Palestinian people will not be blackmailed .\tPRP RB VBD JJ NNS TO VB RP JJ NN , VBG DT JJ NNS MD RB VB VBN .\nHamas , which routed the Fatah party in parliamentary elections Wednesday , has claimed numerous suicide attacks against Israel in recent years and has vowed to destroy the Jewish state .\tNNP , WDT VBD DT NNP NN IN JJ NNS NNP , VBZ VBN JJ NN NNS IN NNP IN JJ NNS CC VBZ VBN TO VB DT JJ NN .\nTensions remain high in the Palestinian territories Saturday with fresh calls for demonstrations by Fatah party activists .\tNNS VBP JJ IN DT JJ NNS NNP IN JJ NNS IN NNS IN NNP NN NNS .\nWitnesses say Fatah gunmen climbed the roof of the Palestinian parliament in Ramallah and fired shots in the air as supporters cheered below .\tNNS VBP NNP NNS VBD DT NN IN DT JJ NN IN NNP CC VBD NNS IN DT NN IN NNS VBD IN .\nPope Benedict is urging nuclear-armed nations to get rid of their arsenals .\tNNP NNP VBZ VBG JJ NNS TO VB JJ IN PRP$ NNS .\nThe pope issued the plea Saturday at the Vatican after Japan 's new ambassador to the Holy See presented his credentials to the pontiff .\tDT NN VBD DT NN NNP IN DT NNP IN NNP POS JJ NN TO DT NNP NNP VBD PRP$ NNS TO DT NN .\nPope Benedict called nuclear weapons a source of tension and mistrust .\tNNP NNP VBD JJ NNS DT NN IN NN CC NN .\nHe said the 65th anniversary of bombings of the Japanese cities of Hiroshima and Nagasaki should serve as a reminder of the horror nuclear weapons can cause .\tPRP VBD DT JJ NN IN NNS IN DT JJ NNS IN NNP CC NNP MD VB IN DT NN IN DT NN JJ NNS MD VB .\nThe United States dropped atomic bombs on both cities in August of 1945 , killing more than 200 people .\tDT NNP NNPS VBD JJ NNS IN DT NNS IN NNP IN CD , VBG JJR IN CD NNS .\nJapan surrendered unconditionally shortly afterwards , ending World War Two .\tNNP VBD RB RB RB , VBG NNP NNP CD .\nPope Benedict praised Japan for setting an example since the bombings , for always trying to find peaceful solutions to conflicts .\tNNP NNP VBD NNP IN VBG DT NN IN DT NNS , IN RB VBG TO VB JJ NNS TO NNS .\nBritain 's High Court has cleared the way for a Tunisian terror suspect to be extradited to Spain to face charges of helping the September 11 hijackers .\tNNP POS NNP NNP VBZ VBN DT NN IN DT JJ NN NN TO VB VBN TO NNP TO VB NNS IN VBG DT NNP CD NNS .\nHedi Ben Yousseff Boudhiba is accused of belonging to an al-Qaida cell that provided FALSE passports and money to the planners of 2001 attacks on New York and Washington .\tNNP NNP NNP NNP VBZ VBN IN VBG TO DT NNP NN WDT VBD JJ NNS CC NN TO DT NNS IN CD NNS IN NNP NNP CC NNP .\nBoudhiba was arrested in Liverpool in August of 2004 as he tried to board a flight to Barcelona .\tNNP VBD VBN IN NNP IN NNP IN CD IN PRP VBD TO VB DT NN TO NNP .\nBritain agreed to extradite Boudhiba to Spain after he was indicted by a Spanish judge .\tNNP VBD TO VB NNP TO NNP IN PRP VBD VBN IN DT JJ NN .\nLawyers for the 45-year-old Tunisian tried to block the move , arguing he is mentally disabled .\tNNS IN DT JJ NN VBD TO VB DT NN , VBG PRP VBZ RB VBN .\nBut British Justice Janet Smith rejected Boudhiba 's appeal , saying she was confident Spanish authorities would determine if he is fit to stand trial .\tCC JJ NNP NNP NNP VBD NNP POS NN , VBG PRP VBD JJ JJ NNS MD VB IN PRP VBZ JJ TO VB NN .\nThe Israeli military has proposed a plan to destroy up to 3,000 Palestinian homes in the southern Gaza Strip , in order to dig a huge trench meant to halt Palestinian weapons smuggling from nearby Egypt .\tDT JJ NN VBZ VBN DT NN TO VB RP TO CD JJ NNS IN DT JJ NNP NNP , IN NN TO VB DT JJ NN VBN TO VB JJ NNS VBG IN JJ NNP .\nIsrael 's Maariv newspaper says the plan presented to the Israeli Attorney General proposes a trench along the five-kilometer border separating southern Gaza from Egypt .\tNNP POS NNP NN VBZ DT NN VBN TO DT JJ NNP NNP VBZ DT NN IN DT JJ NN VBG JJ NNP IN NNP .\nOne scenario calls for a 10-meter wide trench that would destroy 200 homes .\tCD NN VBZ IN DT JJ JJ NN WDT MD VB CD NNS .\nA 20-meter wide proposal would eliminate 700 homes , while a 30-meter trench would destroy 3,000 homes .\tDT JJ JJ NN MD VB CD NNS , IN DT JJ NN MD VB CD NNS .\nIsrael began soliciting bids last year for a 25-meter wide trench authorities hoped to have dug before Israel 's planned Gaza withdrawal later this year .\tNNP VBD VBG NNS JJ NN IN DT JJ JJ NN NNS VBD TO VB NN IN NNP POS JJ NNP NN RB DT NN .\nThe Gaza Egypt border is rife with weapons smuggling and is the scene of frequent fighting between Israeli troops and Palestinians .\tDT NNP NNP NN VBZ JJ IN NNS VBG CC VBZ DT NN IN JJ NN IN JJ NNS CC NNS .\nHealth workers have fanned out in northern and western Sudan to vaccinate more than five million children against the crippling effects of polio .\tNNP NNS VBP VBN RP IN JJ CC JJ NNP TO VB JJR IN CD CD NNS IN DT JJ NNS IN NN .\nUnited Nations officials say fighters in the western Darfur region laid down their weapons Monday at the start of the three-day campaign .\tNNP NNP NNS VBP NNS IN DT JJ NNP NN VBD RP PRP$ NNS NNP IN DT NN IN DT JJ NN .\nThe United Nations is working with Sudan 's government and the World Health Organization to carry out the vaccinations , which will include southern Sudan and other areas in coming weeks .\tDT NNP NNPS VBZ VBG IN NNP POS NN CC DT NNP NNP NNP TO VB RP DT NNS , WDT MD VB JJ NNP CC JJ NNS IN VBG NNS .\nOfficials say the massive program was needed after the virus was detected in more than 100 people , mostly in the Sudanese capital , Khartoum .\tNNS VBP DT JJ NN VBD VBN IN DT NN VBD VBN IN JJR IN CD NNS , RB IN DT JJ NN , NNP .\nA UNICEF spokeswoman told the Associated Press that the cases have been traced to Nigeria , where local officials in the northern state of Kano boycotted a vaccine drive in 2003 .\tDT NNP NN VBD DT NNP NNP IN DT NNS VBP VBN VBN TO NNP , WRB JJ NNS IN DT JJ NN IN NNP VBD DT NN NN IN CD .\nKano officials later agreed to resume polio immunizations , using an alternate source of vaccine .\tNNP NNS RB VBD TO VB NN NNS , VBG DT JJ NN IN NN .\nAfghanistan 's lower house of parliament has approved a law that would grant amnesty to all Afghans accused of human rights abuses during the past 25 years of conflict in the country .\tNNP POS JJR NN IN NN VBZ VBN DT NN WDT MD VB JJ TO DT NNS VBN IN NN NNS NNS IN DT JJ CD NNS IN NN IN DT NN .\nThe bill adopted Wednesday would rule out the prosecution of any political or militia group involved in the country 's wars .\tDT NN VBN NNP MD VB RP DT NN IN DT JJ CC JJ NN VBN IN DT NN POS NNS .\nSupporters of the law say it will promote reconciliation and peace in Afghanistan .\tNNS IN DT NN VBP PRP MD VB NN CC NN IN NNP .\nBut , some Afghan lawmakers and government officials say there can not be peace if war criminals escape justice .\tCC , DT JJ NNS CC NN NNS VBP EX MD RB VB NN IN NN NNS NN NN .\nInternational rights groups have urged the Afghan government to hold trials for Afghans accused of rights abuses , including some who are members of parliament .\tJJ NNS NNS VBP VBN DT JJ NN TO VB NNS IN NNS VBN IN NNS NNS , VBG DT WP VBP NNS IN NN .\nThe amnesty law must be approved by the upper house of parliament and signed by President Hamid Karzai to take effect .\tDT JJ NN MD VB VBN IN DT JJ NN IN NN CC VBN IN NNP NNP NNP TO VB NN .\nThe body of Coretta Scott King - the widow of slain U.S. civil rights leader Martin Luther King Jr. - has arrived back in the city where she lived , Atlanta , in the southern state of Georgia .\tDT NN IN NNP NNP NNP IN DT NN IN JJ NNP JJ NNS NN NNP NNP NNP NNP : VBZ VBN RB IN DT NN WRB PRP VBD , NNP , IN DT JJ NN IN NNP .\nPolice cars early Wednesday escorted a hearse carrying her body to a funeral home .\tNN NNS RB NNP VBD DT NN VBG PRP$ NN TO DT JJ NN .\nLocal reports say funeral arrangements have not yet been made .\tJJ NNS VBP JJ NNS VBP RB RB VBN VBN .\nMrs. King died early Tuesday at an alternative medicine clinic in Mexico .\tNNP NNP VBD JJ NNP IN DT JJ NN NN IN NNP .\nDoctors say the 78-year-old was battling ovarian cancer and ultimately died of respiratory failure .\tNNS VBP DT JJ VBD VBG JJ NN CC RB VBD IN JJ NN .\nThe death of the woman known as the ' first lady of the civil rights movement ' brought expressions of sadness as well as tributes from civil rights advocates , politicians and religious leaders .\tDT NN IN DT NN VBN IN DT `` JJ NN IN DT JJ NNS NN `` VBD NNS IN NN RB RB IN NNS IN JJ NNS NNS , NNS CC JJ NNS .\nMrs. King carried on her husband 's work after his assassination , creating the Martin Luther King Jr. Center For Non-Violent Social Change in Atlanta .\tNNP NNP VBD IN PRP$ NN POS NN IN PRP$ NN , VBG DT NNP NNP NNP NNP NNP IN NNP NNP NNP IN NNP .\nUkraine 's parliament speaker and the European Union say fresh elections are needed to end the dispute over the former Soviet republic 's presidential runoff .\tNNP POS NN NN CC DT NNP NNP VBP JJ NNS VBP VBN TO VB DT NN IN DT JJ NNP NN POS JJ NN .\nThe speaker , Volodymyr Lytvyn , made the suggestion Saturday , during an emergency session to debate the disputed election .\tDT NN , NNP NNP , VBD DT NN NNP , IN DT NN NN TO VB DT JJ NN .\nMeanwhile , the Dutch foreign minister , speaking on behalf of the EU presidency , also called for fresh elections in light of numerous allegations of fraud .\tRB , DT JJ JJ NN , VBG IN NN IN DT NNP NN , RB VBN IN JJ NNS IN NN IN JJ NNS IN NN .\nAlso due to meet Saturday , is a multilateral committee tasked with resolving the political stalemate .\tRB JJ TO VB NNP , VBZ DT JJ NN VBN IN VBG DT JJ NN .\nIt comprises representatives of both candidates : opposition challenger Viktor Yushchenko , and Moscow-backed Prime Minister Viktor Yanukovych .\tPRP VBZ NNS IN DT NNS IN NN NN NNP NNP , CC JJ NNP NNP NNP NNP .\nMr. Yushchenko late Friday called for fresh elections to be held on December 12 .\tNNP NNP RB NNP VBD IN JJ NNS TO VB VBN IN NNP CD .\nDisputed official results indicate the pro-Western politician narrowly lost the runoff .\tJJ JJ NNS VBP DT JJ NN RB VBD DT NN .\nPresident Bush has called on Arab nations to help Palestinian leaders reach a peace agreement with Israel , and to work toward a larger reconciliation with the Jewish state .\tNNP NNP VBZ VBN IN JJ NNS TO VB JJ NNS VBP DT NN NN IN NNP , CC TO VB IN DT JJR NN IN DT JJ NN .\nMr. Bush made the comments in his weekly radio address delivered from Kuwait Saturday during a tour of the region .\tNNP NNP VBD DT NNS IN PRP$ JJ NN NN VBN IN NNP NNP IN DT NN IN DT NN .\nHe said the United States will do all it can to encourage negotiations , but he said the international community has a responsibility to support the peace effort as well .\tPRP VBD DT NNP NNPS MD VB DT PRP MD TO VB NNS , CC PRP VBD DT JJ NN VBZ DT NN TO VB DT NN NN RB RB .\nThe president said he believes leaders can reach an agreement defining a Palestinian state this year , but he said the United States can not impose such a deal .\tDT NN VBD PRP VBZ NNS MD VB DT NN VBG DT JJ NN DT NN , CC PRP VBD DT NNP NNPS MD RB VB PDT DT NN .\nHe said he will urge Arab leaders in the Gulf to do their part , during his visits to their nations over the next few days .\tPRP VBD PRP MD VB JJ NNS IN DT NNP TO VB PRP$ NN , IN PRP$ NNS TO PRP$ NNS IN DT JJ JJ NNS .\nMr. Bush met with the Israeli and Palestinian leaders in Jerusalem and Ramallah earlier this week as part of his Mideast tour .\tNNP NNP VBD IN DT JJ CC JJ NNS IN NNP CC NNP RBR DT NN IN NN IN PRP$ JJ NN .\nGeorge W. Bush\tNNP NNP NNP\nPresident Bush says he does not think the published photos Friday of a nearly-naked Saddam Hussein in his prison cell will spark more anti-American sentiment in Iraq .\tNNP NNP VBZ PRP VBZ RB VB DT VBN NNS NNP IN DT JJ NNP NNP IN PRP$ NN NN MD VB RBR JJ NN IN NNP .\nQuestioned by reporters at the White House , Mr. Bush said a photo does not inspire murderers .\tVBN IN NNS IN DT NNP NNP , NNP NNP VBD DT NN VBZ RB VB NNS .\nHe said the insurgents are motivated by a vision of the world that is , ' backward and barbaric ' and by a desire to thwart freedom in Iraq .\tPRP VBD DT NNS VBP VBN IN DT NN IN DT NN WDT VBZ , `` RB CC JJ `` CC IN DT NN TO VB NN IN NNP .\nThe White House said the president was briefed earlier by senior aides about the incident and strongly supports what it said is ' the aggressive and thorough investigation that is already under way . '\tDT NNP NNP VBD DT NN VBD VBN RB IN JJ NNS IN DT NN CC RB VBZ WP PRP VBD VBZ `` DT JJ CC JJ NN WDT VBZ RB IN NN . ``\nPakistan 's former Prime Minister Benazir Bhutto says the participation of the country 's two main opposition parties will help ensure next month 's elections are free and fair .\tNNP POS JJ NNP NNP NNP NNP VBZ DT NN IN DT NN POS CD JJ NN NNS MD VB VB JJ NN POS NNS VBP JJ CC JJ .\nShe told reporters Tuesday that the government will either allow a fair vote or it will so thoroughly manipulate the results that the rigging will be exposed .\tPRP VBD NNS NNP IN DT NN MD RB VB DT JJ NN CC PRP MD RB RB VB DT NNS IN DT NN MD VB VBN .\nOpposition leaders discussed boycotting the elections but failed to agree on a set of demands for taking part .\tNN NNS VBD VBG DT NNS CC VBD TO VB IN DT NN IN NNS IN VBG NN .\nMs. Bhutto 's Pakistan People 's Party and former Prime Minister Nawaz Sharif 's Pakistan Muslim League Party , the largest opposition parties , have now said they will participate .\tNNP NNP POS NNP NNP POS NNP CC JJ NNP NNP NNP NNP POS NNP NNP NNP NNP , DT JJS NN NNS , VBP RB VBN PRP MD VB .\nOn Monday , Mr. Sharif said Ms. Bhutto undermined a united opposition boycott of the polls by not supporting the reinstatement of deposed Supreme Court judges .\tIN NNP , NNP NNP VBD NNP NNP VBD DT JJ NN NN IN DT NNS IN RB VBG DT NN IN VBN NNP NNP NNS .\nEuropean Union energy officials will hold an emergency meeting next week amid concerns that the Russian-Ukrainian dispute over natural gas prices could affect EU gas supplies .\tNNP NNP NN NNS MD VB DT NN NN JJ NN IN NNS IN DT JJ NN IN JJ NN NNS MD VB NNP NN NNS .\nAn EU statement released Friday says the meeting is aimed at finding a common approach .\tDT NNP NN VBN NNP VBZ DT NN VBZ VBN IN VBG DT JJ NN .\nIt also expresses the European Commission 's concern about the situation , but says the EU top executive body remains confident an agreement will be reached .\tPRP RB VBZ DT NNP NNP POS NN IN DT NN , CC VBZ DT NNP JJ NN NN VBZ JJ DT NN MD VB VBN .\nA Russian cut-off of supplies to Ukraine will reduce the amount of natural gas flowing through the main pipeline toward Europe .\tDT JJ NN IN NNS TO NNP MD VB DT NN IN JJ NN VBG IN DT JJ NN IN NNP .\nBut the commission says there is no risk of a gas shortage in the short term .\tCC DT NN VBZ EX VBZ DT NN IN DT NN NN IN DT JJ NN .\nGerman officials say they are hoping for a quick resolution to the dispute .\tJJ NNS VBP PRP VBP VBG IN DT JJ NN TO DT NN .\nGovernment spokesman , Ulrich Wilhelm says officials have been in contact with both sides at a working level , but will not mediate .\tNNP NN , NNP NNP VBZ NNS VBP VBN IN NN IN DT NNS IN DT VBG NN , CC MD RB VB .\nCuba 's state newspaper has published new photographs of ailing leader Fidel Castro , which show him greeting Venezuelan President Hugo Chavez .\tNNP POS NN NN VBZ VBN JJ NNS IN JJ NN NNP NNP , WDT VBP PRP VBG JJ NNP NNP NNP .\nThe communist daily Granma said the two leaders met in Havana on Sunday , to mark Mr. Castro 's 80th birthday .\tDT JJ JJ NNP VBD DT CD NNS VBD IN NNP IN NNP , TO VB NNP NNP POS JJ NN .\nThe photographs show the Cuban leader laying in bed , shaking hands with Mr. Chavez and receiving a portrait of Mr. Castro as a gift .\tDT NNS VBP DT JJ NN VBG IN NN , VBG NNS IN NNP NNP CC VBG DT NN IN NNP NNP IN DT NN .\nMr. Castro has not been seen in public since he underwent surgery more than two weeks ago to stop intestinal bleeding .\tNNP NNP VBZ RB VBN VBN IN JJ IN PRP VBD NN RBR IN CD NNS IN TO VB JJ NN .\nSunday , a communist youth newspaper Juventud Rebelde published a message from Mr. Castro , saying he will fight for his life .\tNNP , DT JJ NN NN NNP NNP VBD DT NN IN NNP NNP , VBG PRP MD VB IN PRP$ NN .\nHe urged Cubans to be optimistic about his health , but warned of possible ' adverse news . ' Mr. Castro temporarily handed power to his brother , Raul , because of the surgery last month .\tPRP VBD NNS TO VB JJ IN PRP$ NN , CC VBD IN JJ `` JJ NN . `` NNP NNP RB VBD NN TO PRP$ NN , NNP , IN IN DT NN JJ NN .\nZimbabwe 's President Robert Mugabe has freed three men who were jailed for murder and sabotage as they battled South Africa 's anti-apartheid African National Congress in 1988 .\tNNP POS NNP NNP NNP VBZ VBN CD NNS WP VBD VBN IN NN CC NN IN PRP VBD NNP NNP POS JJ NNP NNP NNP IN CD .\nZimbabwean state media reports the president pardoned the Zimbabwean nationals on humanitarian grounds .\tJJ NN NNS VBZ DT NN VBD DT JJ NNS IN JJ NNS .\nThe three ( Kevin Woods , Michael Smith and Phillip Conjwayo ) were sentenced for the murder of a Zimbabwean driver they hired to deliver a bomb to a house owned by the African National Congress .\tDT CD LRB NNP NNP , NNP NNP CC NNP NNP RRB VBD VBN IN DT NN IN DT JJ NN PRP VBD TO VB DT NN TO DT NN VBN IN DT NNP NNP NNP .\nThe bomb detonated and killed the driver before he reached the destination .\tDT NN VBD CC VBD DT NN IN PRP VBD DT NN .\nSouth Africa 's apartheid government granted the men citizenship after the crime .\tNNP NNP POS NN NN VBD DT NNS NN IN DT NN .\nAn Israeli airstrike has killed five Palestinian militants in the Gaza Strip .\tDT JJ NN VBZ VBN CD JJ NNS IN DT NNP NNP .\nIsraeli military officials said on Saturday the five were preparing to launch a rocket attack against southern Israeli communities when they were hit .\tJJ NN NNS VBD IN NNP DT CD VBD VBG TO VB DT NN NN IN JJ JJ NNS WRB PRP VBD VBN .\nNo other information was available on the militants ' identities .\tDT JJ NN VBD JJ IN DT NNS POS NNS .\nThe militant Palestinian group Hamas controls the Gaza Strip where Israel has routinely targeted rocket launchers .\tDT JJ JJ NN NNP VBZ DT NNP NNP WRB NNP VBZ RB VBN NN NNS .\nColombia 's second-largest rebel group has released a soldier it kidnapped last month , turning him over to the Red Cross on Thursday .\tNNP POS JJ NN NN VBZ VBN DT NN PRP VBD JJ NN , VBG PRP IN TO DT NNP NNP IN NNP .\nRed Cross officials say the hostage , identified by El~Tiempo newspaper as Anderson Mauricio Zapata , is in good health .\tNNP NNP NNS VBP DT NN , VBN IN NNP NN IN NNP NNP NNP , VBZ IN JJ NN .\nThe Associated Press quotes the rebel group known as ELN as saying that the release is meant to contribute to peace talks with the government .\tDT NNP NNP VBZ DT NN NN VBN IN NNP IN VBG IN DT NN VBZ VBN TO VB TO NN NNS IN DT NN .\nIn recent months , ELN delegates have held peace talks with the Colombian government , after decades of civil war pitting at least two rebel groups against the national army .\tIN JJ NNS , NNP NNS VBP VBN NN NNS IN DT JJ NN , IN NNS IN JJ NN VBG IN JJS CD JJ NNS IN DT JJ NN .\nThe country 's largest rebel group , known as the FARC , has refused to participate in peace talks .\tDT NN POS JJS NN NN , VBN IN DT NNP , VBZ VBN TO VB IN NN NNS .\nThe U.S. dollar fell to a seven-month low against the yen and near-record lows compared to the euro on Monday .\tDT NNP NN VBD TO DT JJ NN IN DT NN CC JJ NNS VBN TO DT NN IN NNP .\nAnalysts say the huge gap between what the United States buys abroad and what it sells hurts the dollar 's value .\tNNS VBP DT JJ NN IN WP DT NNP NNPS VBZ RB CC WP PRP VBZ VBZ DT NN POS NN .\nThe U.S. budget deficit also contributes to the dollar 's decline .\tDT NNP NN NN RB VBZ TO DT NN POS NN .\nOn a visit to Ireland , U.S. Treasury Secretary John Snow said Washington supports a ' strong dollar ' but said the value is best set by open markets .\tIN DT NN TO NNP , NNP NNP NNP NNP NNP VBD NNP VBZ DT `` JJ NN `` CC VBD DT NN VBZ RB VBN IN JJ NNS .\nHe was re-stating long-standing administration policy .\tPRP VBD JJ JJ NN NN .\nEconomists say a weaker dollar makes goods exported from the United States less expensive and more attractive on foreign markets .\tNNS VBP DT JJR NN VBZ NNS VBN IN DT NNP NNPS RBR JJ CC RBR JJ IN JJ NNS .\nIraqi authorities have imposed tight security in and around Baghdad and the holy city of Karbala where Shi'ite Muslim pilgrims are converging for a major religious ceremony .\tJJ NNS VBP VBN JJ NN IN CC IN NNP CC DT JJ NN IN NNP WRB NNP NNP NNS VBP VBG IN DT JJ JJ NN .\nOfficials expect two million pilgrims to join the main Ashura observances Thursday , marking the 13th century martyrdom of Imam Hussein , one of Shi'ite Islam 's most revered leaders .\tNNS VBP CD CD NNS TO VB DT JJ NNP NNS NNP , VBG DT JJ NN NN IN NNP NNP , CD IN NNP NNP POS JJS JJ NNS .\nGovernment troops have sealed off Karbala to vehicles and are body-searching the arriving pilgrims .\tNN NNS VBP VBN RP NNP TO NNS CC VBP VBG DT VBG NNS .\nPolice in Baghdad also imposed tight security in Kadhimiya district - another site of Shi'ite pilgrimage - and set up checkpoints around the city .\tNNS IN NNP RB VBD JJ NN IN NNP NN : DT NN IN NNP NN : CC VBN RP NNS IN DT NN .\nDespite the security , Iraq 's higher education minister survived a bomb attack in Baghdad that wounded three people .\tIN DT NN , NNP POS JJR NN NN VBD DT NN NN IN NNP IN VBD CD NNS .\nIn the past , insurgents have attacked pilgrims during Ashura observances .\tIN DT NN , NNS VBP VBN NNS IN NNP NNS .\nIn 2004 , about 170 people were killed .\tIN CD , IN CD NNS VBD VBN .\nChinese officials say they may dam a major river to stop a toxic chemical slick from reaching Russia , and the city of Khabarovsk .\tJJ NNS VBP PRP MD VB DT JJ NN TO VB DT JJ NN NN IN VBG NNP , CC DT NN IN NNP .\nThe China Daily reports water ministry officials are doing a site survey to study the feasibility of the temporary dam project suggested by Russia .\tDT NNP NNP VBZ NN NN NNS VBP VBG DT NN NN TO VB DT NN IN DT JJ NN NN VBN IN NNP .\nChina has for weeks been evaluating methods to deal with 100 metric tons of highly poisonous benzene that flowed into the the Songhua River after a chemical plant explosion November 13 in the city of Jilin .\tNNP VBZ IN NNS VBN VBG NNS TO VB IN CD JJ NNS IN RB JJ NN WDT VBD IN DT DT NNP NNP IN DT NN NN NN NNP CD IN DT NN IN NNP .\nThe slick could reach the Russian border as soon as Sunday .\tDT NN MD VB DT JJ NN RB RB IN NNP .\nIt has already disrupted the normal flow of fresh water to millions of Chinese who live near the river .\tPRP VBZ RB VBN DT JJ NN IN JJ NN TO NNS IN NNS WP VBP IN DT NN .\nThe governor of Colombia 's Arauca state has escaped unharmed from a bomb attack on his motorcade .\tDT NN IN NNP POS NNP NN VBZ VBN JJ IN DT NN NN IN PRP$ NN .\nA government spokesman says explosives planted under a bridge detonated Tuesday as Governor Julio Enrique Acosta Bernal 's motorcade passed through Arauca city , the provincial capital .\tDT NN NN VBZ NNS VBN IN DT NN VBN NNP IN NNP NNP NNP NNP NNP POS NN VBD IN NNP NN , DT JJ NN .\nThe governor 's armored vehicle was heavily damaged but no one was seriously injured .\tDT NN POS JJ NN VBD RB VBN CC DT NN VBD RB VBN .\nGovernor Acosta Bernal has survived eight attacks during his political career .\tNNP NNP NNP VBZ VBN CD NNS IN PRP$ JJ NN .\nAuthorities in Arauca province say they suspect the latest attempt to kill him could have been staged by rebels from the FARC - the Revolutionary Armed forces of Colombia .\tNNS IN NNP NN VBP PRP VBP DT JJS NN TO VB PRP MD VB VBN VBN IN NNS IN DT NNP IN DT JJ JJ NNS IN NNP .\nColombia 's main oil fields are located in Arauca state , near the border with Venezuela .\tNNP POS JJ NN NNS VBP VBN IN NNP NN , IN DT NN IN NNP .\nFrequent activity by rebels and other criminal gangs has forced the government to keep the area under virtual military control for the past three years .\tJJ NN IN NNS CC JJ JJ NNS VBZ VBN DT NN TO VB DT NN IN JJ JJ NN IN DT JJ CD NNS .\nThe United States is sending an official observer mission to Sunday 's Palestinian election .\tDT NNP NNPS VBZ VBG DT JJ NN NN TO NNP POS JJ NN .\nThe State Department says the delegation will be led by Senators John Sununu and Joseph Biden and will include prominent Palestinian-Americans .\tDT NNP NNP VBZ DT NN MD VB VBN IN NNP NNP NNP CC NNP NNP CC MD VB JJ NNS .\nThe team plans to visit polling stations and meet with Israeli and Palestinian officials .\tDT NN VBZ TO VB VBG NNS CC VB IN JJ CC JJ NNS .\nThe State Department says successful elections will require close cooperation between Israel and the Palestinians .\tDT NNP NNP VBZ JJ NNS MD VB JJ NN IN NNP CC DT NNS .\nEarlier Tuesday , Israeli tanks fired shells in northern Gaza , killing seven Palestinians , six of whom were members of the same family .\tRBR NNP , JJ NNS VBD NNS IN JJ NNP , VBG CD NNS , CD IN WP VBD NNS IN DT JJ NN .\nThe Israeli military says the tanks fired at militants who had fired mortars into a nearby Jewish settlement .\tDT JJ NN VBZ DT NNS VBD IN NNS WP VBD VBN NNS IN DT JJ JJ NN .\nBut witnesses say the victims were farmers and that militants had fled by the time the tank shells hit .\tCC NNS VBP DT NNS VBD NNS CC IN NNS VBD VBN IN DT NN DT NN NNS VBD .\nChina says Venezuelan President Hugo Chavez is set to visit the country this month , amid signs the two nations are looking to increase their energy ties .\tNNP VBZ JJ NNP NNP NNP VBZ VBN TO VB DT NN DT NN , IN NNS DT CD NNS VBP VBG TO VB PRP$ NN NNS .\nIn a statement Tuesday , the Chinese Foreign Ministry announced that Mr. Chavez will visit Beijing from August 22 to August 27 .\tIN DT NN NNP , DT JJ NNP NNP VBD IN NNP NNP MD VB NNP IN NNP CD TO NNP CD .\nThe leaders are expected to discuss oil exports , as China seeks fresh energy supplies to fuel its rapid economic growth .\tDT NNS VBP VBN TO VB NN NNS , IN NNP VBZ JJ NN NNS TO VB PRP$ JJ JJ NN .\nVenezuela has some of the world 's largest oil reserves and is trying to increase its fuel shipments to China .\tNNP VBZ DT IN DT NN POS JJS NN NNS CC VBZ VBG TO VB PRP$ NN NNS TO NNP .\nMr. Chavez has said he wants oil exports to China to reach 3,00,000 barrels a day .\tNNP NNP VBZ VBN PRP VBZ NN NNS TO NNP TO VB CD NNS DT NN .\nThe Venezuelan leader 's visit to China will follow recent trips to Russia , Iran , Vietnam and Mali .\tDT JJ NN POS NN TO NNP MD VB JJ NNS TO NNP , NNP , NNP CC NNP .\nIndian authorities say separatist rebels have killed 16 Indian soldiers in an ambush in the country 's northeastern Tripura state .\tJJ NNS VBP JJ NNS VBP VBN CD JJ NNS IN DT NN IN DT NN POS JJ NNP NN .\nPolice say the soldiers were guarding a road construction project near the town of Dangabari when they were ambushed Tuesday morning .\tNNS VBP DT NNS VBD VBG DT NN NN NN IN DT NN IN NNP WRB PRP VBD VBN NNP NN .\nReports say some 50 rebels attacked the soldiers , killing 15 .\tNNS VBP DT CD NNS VBD DT NNS , VBG CD .\nAnother soldier died of his wounds while being brought to a local hospital .\tDT NN VBD IN PRP$ NNS IN VBG VBN TO DT JJ NN .\nOne rebel was killed in the firefight .\tCD NN VBD VBN IN DT NN .\nPolice officials also say the rebels took weapons and ammunition from the dead soldiers .\tNN NNS RB VBP DT NNS VBD NNS CC NN IN DT JJ NNS .\nAuthorities have blamed the National Liberation Front of Tripura - which is fighting for an independent homeland in the area - for the attack .\tNNS VBP VBN DT NNP NNP NNP IN NNP : WDT VBZ VBG IN DT JJ NN IN DT NN : IN DT NN .\nRussia and Moldova have reached a short term agreement on a new price for natural gas two weeks after Moscow cut supplies to the former Soviet state .\tNNP CC NNP VBP VBN DT JJ NN NN IN DT JJ NN IN JJ NN CD NNS IN NNP VBD NNS TO DT JJ JJ NN .\nMoldova will pay $ 110 per 1,000 cubic meters of natural gas over the next four months .\tNNP MD VB $ CD IN CD JJ NNS IN JJ NN IN DT JJ CD NNS .\nTalks on a fixed price will continue .\tNNS IN DT VBN NN MD VB .\nMoldova had been paying $ 80 for gas .\tNNP VBD VBN VBG $ CD IN NN .\nRussia 's state-owned natural gas company , Gazprom , wanted to double the price to bring Moldova in line with the world market .\tNNP POS JJ JJ NN NN , NNP , VBD TO VB DT NN TO VB NNP IN NN IN DT NN NN .\nGazprom cut supplies to Moldova January 1 .\tNNP VBD NNS TO NNP NNP CD .\nRussia also cut supplies to Ukraine the same day .\tNNP RB VBD NNS IN NNP DT JJ NN .\nThat dispute was settled three days later .\tDT NN VBD VBN CD NNS RB .\nPolice in the western Indian state of Maharashtra say 26 women drowned after two boats capsized in the Wainganga River late Saturday .\tNNS IN DT JJ JJ NN IN NNP VBP CD NNS VBN IN CD NNS VBN IN DT NNP NNP JJ NNP .\nLocal authorities say four women and two crew members managed to swim to safety , but that eight women are still missing .\tJJ NNS VBP CD NNS CC CD NN NNS VBD TO VB TO NN , CC IN CD NNS VBP RB VBG .\nPolice say the women - poor farm laborers on their way home from work - started panicking after seeing a bolt of lightning .\tNNS VBP DT NNS IN JJ NN NNS IN PRP$ NN NN IN NN : VBD VBG IN VBG DT NN IN NN .\nTheir panicked movements caused the boats to capsize .\tPRP$ JJ NNS VBD DT NNS TO VB .\nThe accident happened in Bhandara district , some 925 kilometers northeast of the state capital , Mumbai .\tDT NN VBD IN NNP NN , DT CD NNS RB IN DT NN NN , NNP .\nPresident Bush has telephoned his Afghan counterpart Hamid Karzai to express his support for Sunday 's legislative elections .\tNNP NNP VBZ VBN PRP$ JJ NN NNP NNP TO VB PRP$ NN IN NNP POS JJ NNS .\nA White House spokesman says Mr. Karzai told President Bush that his nation was ready to vote , and that the people of Afghanistan were enthusiastic about the polls .\tDT NNP NNP NN VBZ NNP NNP VBD NNP NNP IN PRP$ NN VBD JJ TO VB , CC IN DT NNS IN NNP VBD JJ IN DT NNS .\nThe Afghan leader also invited Mr. Bush to visit and address the new parliament once it convenes .\tDT JJ NN RB VBD NNP NNP TO VB CC VB DT JJ NN RB PRP VBZ .\nMeanwhile , the election campaign in Afghanistan has officially ended , with candidates making their final pitches .\tRB , DT NN NN IN NNP VBZ RB VBN , IN NNS VBG PRP$ JJ NNS .\nWith campaigning forbidden 48 hours before the polls open , candidates scrambled to woo voters , while organizers raced to spread their message on how to cast the ballots .\tIN VBG JJ CD NNS IN DT NNS JJ , NNS VBD TO VB NNS , IN NNS VBD TO VB PRP$ NN IN WRB TO VB DT NNS .\nMore than 12 million Afghans are registered to vote Sunday to elect a national parliament and local councils in all 34 provinces .\tJJR IN CD CD NNS VBP VBN TO VB NNP TO VB DT JJ NN CC JJ NNS IN DT CD NNS .\nAfghan officials say at least six suspected Taleban militants have been killed and 15 arrested , including one of the militia 's commanders , in separate incidents in southern Afghanistan .\tJJ NNS VBP IN JJS CD JJ NNP NNS VBP VBN VBN CC CD VBN , VBG CD IN DT NN POS NNS , IN JJ NNS IN JJ NNP .\nThe six insurgents were killed Sunday as they fled after attacking a security post close to Tirin Kot , the capital of restive Uruzgan province .\tDT CD NNS VBD VBN NNP IN PRP VBD IN VBG DT NN NN NN TO NNP NNP , DT NN IN JJ NNP NN .\nThe officials say the Afghan National Army and US-led forces also captured 9 suspected Taleban fighters , including local commander Mullah Janan , in a village near Tirin Kot , and six others were arrested in another district of Uruzgan province .\tDT NNS VBP DT JJ NNP NNP CC JJ NNS RB VBD CD JJ NNP NNS , VBG JJ NN NNP NNP , IN DT NN IN NNP NNP , CC CD NNS VBD VBN IN DT NN IN NNP NN .\nMeanwhile , in the Souray district of neighboring Zabul province , one suspected Taleban rebel was killed and one was wounded by a bomb they were planting on a road used by Afghan and US forces .\tRB , IN DT NNP NN IN JJ NNP NN , CD JJ NNP NN VBD VBN CC CD VBD VBN IN DT NN PRP VBD VBG IN DT NN VBN IN JJ CC NNP NNS .\nViolence has surged ahead of next month 's parliamentary elections in Afghanistan .\tNN VBZ VBN RB IN JJ NN POS JJ NNS IN NNP .\nThe U.S. dollar hit record lows against the euro Tuesday .\tDT NNP NN VBD NN NNS IN DT NN NNP .\nIt took more than one dollar and 48 cents to buy one euro .\tPRP VBD JJR IN CD NN CC CD NNS TO VB CD NN .\nThe dollar has been battered by a series of problems , including continuing gloom in the key U.S. housing sector , and the slowing U.S. economy .\tDT NN VBZ VBN VBN IN DT NN IN NNS , VBG VBG NN IN DT JJ NNP NN NN , CC DT VBG NNP NN .\nSome speculators are selling dollars because they expect the U.S. central bank will try to stimulate the economy by cutting interest rates again soon .\tDT NNS VBP VBG NNS IN PRP VBP DT NNP JJ NN MD VB TO VB DT NN IN VBG NN NNS RB RB .\nLower U.S. interest rates can cut the return on some investments .\tNNP NNP NN NNS MD VB DT NN IN DT NNS .\nThe falling dollar is prompting some oil-rich nations around the Persian Gulf to consider ending the practice of linking the value of their currencies to that of the dollar and instead peg the value to a ' basket ' of other currencies .\tDT VBG NN VBZ VBG DT JJ NNS IN DT NNP NNP TO VB VBG DT NN IN VBG DT NN IN PRP$ NNS TO DT IN DT NN CC RB VB DT NN TO DT `` NN `` IN JJ NNS .\nSuch a move would reduce demand for dollars , and further weaken the U.S. currency .\tJJ DT NN MD VB NN IN NNS , CC RB VB DT NNP NN .\nAfghan officials say suspected Taleban insurgents have killed two more pro-government Muslim clerics , just days after a bomb Friday killed a mullah in a mosque in the eastern Khost province .\tJJ NNS VBP VBN NNP NNS VBP VBN CD JJR JJ NN NNS , RB NNS IN DT NN NNP VBD DT NN IN DT NN IN DT JJ NNP NN .\nThe officials say Mullah Mohammad Gul was gunned down late Sunday while walking home after prayers at a mosque in Lashkargah , the capital of southern Helmand province .\tDT NNS VBP NNP NNP NNP VBD VBN RP RB NNP IN VBG NN IN NNS IN DT NN IN NNP , DT NN IN JJ NNP NN .\nHours later , unknown assailants broke into a home of the head of the religious council for eastern Kunar province , Noor Ahmad Jan , and shot him dead .\tNNS RB , JJ NNS VBD IN DT NN IN DT NN IN DT JJ NN IN JJ NNP NN , NNP NNP NNP , CC VBD PRP JJ .\nFollowing the Friday killing , at least 5,000 Afghans staged a peaceful protest in Khost , urging the government to provide better security for religious leaders .\tVBG DT NNP NN , IN JJS CD NNS VBD DT JJ NN IN NNP , VBG DT NN TO VB JJR NN IN JJ NNS .\nIn the past , Taleban insurgents have killed several influential clerics who had denounced the militants and expressed support for President Hamid Karzai .\tIN DT NN , NNP NNS VBP VBN JJ JJ NNS WP VBD VBN DT NNS CC VBD NN IN NNP NNP NNP .\nThe man who trained 1,000 white pigeons to be released over Hanoi on the city 's 1,000-year anniversary says more than half the birds have been killed - many to appear on Vietnamese dinner tables .\tDT NN WP JJ CD JJ NNS TO VB VBN IN NNP IN DT NN POS JJ NN VBZ JJR IN PDT DT NNS VBP VBN VBN : JJ TO VB IN JJ NN NNS .\nIn recent interviews , Pham Tai Thu has expressed his disappointment at the loss of the birds , which he had hoped would thrive as a lasting symbol of peace .\tIN JJ NNS , NNP NNP NNP VBZ VBN PRP$ NN IN DT NN IN DT NNS , WDT PRP VBD VBN MD VB IN DT JJ NN IN NN .\nHe said some of the birds have been poisoned or died of diseases , while others were captured and sold to restaurants .\tPRP VBD DT IN DT NNS VBP VBN VBN CC VBN IN NNS , IN NNS VBD VBN CC VBN TO NNS .\nThu said he painstakingly raised the birds and trained them to return to the Hanoi Botanical Garden after their release during the city 's anniversary ceremonies in early October .\tNNP VBD PRP RB VBD DT NNS CC VBN PRP TO VB TO DT NNP NNP NNP IN PRP$ NN IN DT NN POS NN NNS IN JJ NNP .\nHe said he had hoped they would create large flocks to represent the city 's emergence from decades of war .\tPRP VBD PRP VBD VBN PRP MD VB JJ NNS TO VB DT NN POS NN IN NNS IN NN .\nUnited Nations Secretary-General Kofi Annan is expected to ask for manpower and equipment for a peacekeeping force for Sudan when he meets with President Bush later Monday .\tNNP NNP NNP NNP NNP VBZ VBN TO VB IN NN CC NN IN DT NN NN IN NNP WRB PRP VBZ IN NNP NNP RB NNP .\nMr. Annan is scheduled to meet with Mr. Bush at the White House to discuss a peacekeeping mission for Sudan 's war-torn Darfur region .\tNNP NNP VBZ VBN TO VB IN NNP NNP IN DT NNP NNP TO VB DT NN NN IN NNP POS JJ NNP NN .\nThe peacekeeping force has been mandated by the U.N. Security Council to take over from an African Union force of seven thousand .\tDT NN NN VBZ VBN VBN IN DT NNP NNP NNP TO VB RP IN DT NNP NNP NN IN CD CD .\nLast week , Mr. Annan said the U.N. force will have to be bigger and better equipped , which , he said , will require the participation of big and powerful countries with highly trained troops - including the U.S. U.S. officials have said they hope to arrange a U.N. mission to Darfur by the end of this month .\tJJ NN , NNP NNP VBD DT NNP NN MD VB TO VB JJR CC RBR VBN , WDT , PRP VBD , MD VB DT NN IN JJ CC JJ NNS IN RB JJ NNS : VBG DT NNP NNP NNS VBP VBN PRP VBP TO VB DT NNP NN TO NNP IN DT NN IN DT NN .\nFighting between rebel and government forces in Darfur has killed tens of thousands and displaced two million\tVBG IN NN CC NN NNS IN NNP VBZ VBN NNS IN NNS CC VBD CD CD\nA North Korean cargo ship has dropped anchor in the South Korean port of Ulsan , marking the first visit of its kind in more than two decades .\tDT JJ JJ NN NN VBZ VBN NN IN DT JJ JJ NN IN NNP , VBG DT JJ NN IN PRP$ NN IN JJR IN CD NNS .\nThe ship will be loaded with fertilizer intended to help the North deal with perpetual food shortages .\tDT NN MD VB VBN IN NN VBN TO VB DT NNP NN IN JJ NN NNS .\nSouth Korea agreed to give 2,00,000 tons of fertilizer to the North after four days of bilateral talks concluded last week .\tNNP NNP VBD TO VB CD NNS IN NN TO DT NNP IN CD NNS IN JJ NNS VBD JJ NN .\nTwo more North Korean vessels are expected to cross into South Korean waters later today and early Monday .\tCD JJR JJ JJ NNS VBP VBN TO VB IN JJ JJ NNS RB NN CC JJ NNP .\nSouth Korea began shipping fertilizer by land on Saturday when several trucks crossed the heavily fortified Demilitarized Zone between the two Koreas .\tNNP NNP VBD VBG NN IN NN IN NNP WRB JJ NNS VBD DT RB VBN VBN NNP IN DT CD NNS .\nSome of information for this report provided by AFP .\tDT IN NN IN DT NN VBN IN NNP .\nFans of The Sopranos can now own a little piece of the much-honored TV series : bricks from mobster Tony Soprano 's fictional hangout , Satriale 's Pork Store .\tNNS IN DT NNS MD RB VB DT JJ NN IN DT JJ NN NN IN NNS IN NN NNP NNP POS JJ NN , NNP POS NNP NNP .\nManny Costeira , who owns the Kearny , New Jersey building , is selling 2,000 white stone bricks online before the structure is demolished next month .\tNNP NNP , WP VBZ DT NNP , NNP NNP NN , VBZ VBG CD JJ NN NNS VBP IN DT NN VBZ VBN JJ NN .\nA condominum complex called The Soprano will be built on the site .\tDT NN NN VBN DT NNP MD VB VBN IN DT NN .\nCosteira said the bricks will sell for $ 25 to $ 50 apiece , and will include a serial number and certificate of authentication .\tNNP VBD DT NNS MD VB IN $ CD TO $ CD RB , CC MD VB DT JJ NN CC NN IN NN .\nSpeaking to The Jersey Journal of Jersey City , Costeira said he 's received a few angry e-mails asking why he 's demolishing the joint where Tony and his pals often gathered .\tVBG TO DT NNP NNP IN NNP NNP , NNP VBD PRP VBZ VBN DT JJ JJ NNS VBG WRB PRP VBZ VBG DT NN WRB NNP CC PRP$ NNS RB VBD .\nThe Sopranos aired its 86th and final episode on June 10 , 2007 .\tDT NNP VBD PRP$ JJ CC JJ NN IN NNP CD , CD .\nPakistani security forces backed by helicopter gunships have pounded suspected militant hideouts near the border with Afghanistan .\tJJ NN NNS VBN IN NN NNS VBP VBN JJ JJ NNS IN DT NN IN NNP .\nThe violence Friday is the latest in a series of attacks in the North Waziristan area , where the Pakistani military has been battling Taleban and al-Qaida militants .\tDT NN NNP VBZ DT JJS IN DT NN IN NNS IN DT NNP NNP NN , WRB DT JJ NN VBZ VBN VBG NNP CC NNP NNS .\nThere has been no official word on casualties .\tEX VBZ VBN DT JJ NN IN NNS .\nThis assault comes as local and military officials continue to search for 16 missing soldiers believed to be kidnapped by Taleban militants .\tDT NN VBZ IN JJ CC JJ NNS VBP TO VB IN CD JJ NNS VBN TO VB VBN IN NNP NNS .\nThe men disappeared on Thursday while traveling to a military base in South Waziristan in Pakistan 's northwestern tribal region .\tDT NNS VBD IN NNP IN VBG TO DT JJ NN IN NNP NNP IN NNP POS JJ JJ NN .\nAlso on Thursday , Pakistani security forces said at least 10 militants were killed during a military operation in North Waziristan .\tRB IN NNP , JJ NN NNS VBD IN JJS CD NNS VBD VBN IN DT JJ NN IN NNP NNP .\nA military spokesman says the militants were killed while fleeing the site of a roadside bombing that wounded five soldiers .\tDT JJ NN VBZ DT NNS VBD VBN IN VBG DT NN IN DT NN VBG IN VBD CD NNS .\nIran has denied receiving a proposal from Moscow to build a joint uranium enrichment facility in Russia .\tNNP VBZ VBN VBG DT NN IN NNP TO VB DT JJ NN NN NN IN NNP .\nAn Iranian Foreign Ministry spokesman , Hamid Reza Asefi , told a news conference Sunday that Tehran has received no such proposal , and would only consider proposals that recognize Iran 's right to enrich uranium on its own soil .\tDT JJ NNP NNP NN , NNP NNP NNP , VBD DT NN NN NNP IN NNP VBZ VBN DT JJ NN , CC MD RB VB NNS WDT VBP NNP POS NN TO VB NN IN PRP$ JJ NN .\nRussia said Saturday its embassy in Tehran presented Iranian authorities with a note saying its offer to set up a joint uranium enrichment facility in Russia remains valid .\tNNP VBD NNP PRP$ NN IN NNP VBD JJ NNS IN DT NN VBG PRP$ NN TO VB RP DT JJ NN NN NN IN NNP VBZ JJ .\nUnder a deal signed earlier this year , Moscow agreed to supply enriched uranium fuel for Iran 's Bushehr reactor .\tIN DT NN VBN RBR DT NN , NNP VBD TO VB VBN NN NN IN NNP POS NNP NN .\nBut Russia also demanded the return of spent fuel to ensure Tehran did not reprocess it into bomb-grade material .\tCC NNP RB VBD DT NN IN JJ NN TO VB NNP VBD RB VB PRP IN JJ NN .\nThe United States and the European Union say Tehran is using its nuclear program to develop atomic weapons .\tDT NNP NNPS CC DT NNP NNP VBP NNP VBZ VBG PRP$ JJ NN TO VB JJ NNS .\nIran says it is only for peaceful purposes .\tNNP VBZ PRP VBZ RB IN JJ NNS .\nLed by a group of military families , about 200 people have held a rally in Washington to show support for President Bush and the war in Iraq .\tVBN IN DT NN IN JJ NNS , IN CD NNS VBP VBN DT NN IN NNP TO VB NN IN NNP NNP CC DT NN IN NNP .\nThe participants gathered on the National Mall Sunday carried banners and signs proclaiming support for the more than 130-thousand U.S. troops deployed in the war-torn country .\tDT NNS VBD IN DT NNP NNP NNP VBD NNS CC NNS VBG NN IN DT JJR IN JJ NNP NNS VBN IN DT JJ NN .\nSpeakers hailed the efforts to bring democracy to Iraq and Afghanistan and denounced those who protest against it .\tNNS VBD DT NNS TO VB NN TO NNP CC NNP CC VBD DT WP VB IN PRP .\nThe rally came a day after 100-thousand people gathered on the Mall , demanding the withdrawal of American troops from Iraq , in the largest such demonstration since the war began .\tDT NN VBD DT NN IN CD NNS VBD IN DT NNP , VBG DT NN IN JJ NNS IN NNP , IN DT JJS JJ NN IN DT NN VBD .\nRussia 's Economic Development and Trade Minister says leading state firms should stay in the private sector , weeks after a state-owned company gained control of a major private competitor .\tNNP POS NNP NNP CC NNP NNP VBZ VBG NN NNS MD VB IN DT JJ NN , NNS IN DT JJ NN VBD NN IN DT JJ JJ NN .\nIn an interview with the Kommersant daily , Minister German Gref said state-owned Rosneft and its new unit Yuganskneftegas should be privatized , in case they become one state-owned company .\tIN DT NN IN DT NNP RB , NNP NNP NNP VBD JJ NNP CC PRP$ JJ NN NNP MD VB VBN , IN NN PRP VBP CD JJ NN .\nRosneft gained control of privately-owned Yuganskneftegas last month after a government-ordered auction .\tNNP VBD NN IN JJ NNPS JJ NN IN DT JJ NN .\nYuganskneftegas was a leading unit of oil giant Yukos , which was owned by oil tycoon and Kremlin critic Vladimir Khodorkovsky .\tNNP VBD DT VBG NN IN NN NN NNP , WDT VBD VBN IN NN NN CC NNP NN NNP NNP .\nThe purchase has raised fear among liberal economists that the government is nationalizing Russia 's energy industry .\tDT NN VBZ VBN NN IN JJ NNS IN DT NN VBZ VBG NNP POS NN NN .\nMr. Khodorkovsky is in prison on fraud charges .\tNNP NNP VBZ IN NN IN NN NNS .\nA Kenyan court has released nine Somali men accused of piracy , saying it has no jurisdiction to try their case .\tDT JJ NN VBZ VBN CD JJ NNS VBN IN NN , VBG PRP VBZ DT NN TO VB PRP$ NN .\nHigh Court Judge Mohammed Ibrahim ordered the men to be released and repatriated Tuesday after saying Kenyan courts could not deal with matters that take place outside of the country .\tNNP NNP NNP NNP NNP VBD DT NNS TO VB VBN CC VBN NNP IN VBG JJ NNS MD RB VB IN NNS WDT VBP NN IN IN DT NN .\nThe nine men were captured by a German naval vessel in the Gulf of Aden in March 2009 after an attack on the German-owned freighter MV Courier .\tDT CD NNS VBD VBN IN DT JJ JJ NN IN DT NNP IN NNP IN NNP CD IN DT NN IN DT JJ NN NNP NNP .\nThe ruling comes just days after a separate court released 17 suspected Somali pirates due to lack of evidence .\tDT NN VBZ RB NNS IN DT JJ NN VBD CD JJ JJ NNS JJ TO NN IN NN .\nMore than 100 suspected Somali pirates are currently being held in Kenyan prisons .\tJJR IN CD JJ JJ NNS VBP RB VBG VBN IN JJ NNS .\nThe death toll from a bomb blast in Indian Kashmir has risen to at least 14 people , after more people succumbed to their injuries .\tDT NN NN IN DT NN NN IN NNP NNP VBZ VBN TO IN JJS CD NNS , IN JJR NNS VBN TO PRP$ NNS .\nSecurity officials say the explosion , Monday , at a busy market in Pulwama , south of Srinagar , also wounded more than 70 others and damaged a school , a police station and several shops .\tNN NNS VBP DT NN , NNP , IN DT JJ NN IN NNP , NN IN NNP , RB VBD JJR IN CD NNS CC VBD DT NN , DT NN NN CC JJ NNS .\nThe officials say three soldiers are among the dead .\tDT NNS VBP CD NNS VBP IN DT NN .\nAuthorities say the bomb was planted aboard a truck carrying construction materials .\tNNS VBP DT NN VBD VBN IN DT NN VBG NN NNS .\nThe charred remains of a man who they say detonated the explosion was recovered from the scene .\tDT JJ NNS IN DT NN WP PRP VBP VBN DT NN VBD VBN IN DT NN .\nPolice fired tear gas to disperse mobs of angry and grief-stricken people who poured into the streets of Pulwama to denounce the attack .\tNNS VBD JJ NN TO VB NNS IN JJ CC JJ NNS WP VBD IN DT NNS IN NNP TO VB DT NN .\nNo one has claimed responsibility for the bombing .\tDT NN VBZ VBN NN IN DT NN .\nBut the French News Agency quotes a military official who blames Islamic militants for the blast .\tCC DT NNP NNP NNP VBZ DT JJ NN WP VBZ NNP NNS IN DT NN .\nRecent studies show that children who do not get enough sleep tend to have some emotional problems as well as weight gain later in life .\tJJ NNS VBP IN NNS WP VBP RB VB JJ NN VBZ TO VB DT JJ NNS RB RB IN NN NN RB IN NN .\nAs VOA 's Melinda Smith reports , the research seems to blame the parents .\tIN NNP POS NNP NNP VBZ , DT NN VBZ TO VB DT NNS .\nPakistani intelligence officials say three U.S. missile strikes have killed at least 11 suspected militants in the country 's North Wazirstan tribal region .\tJJ NN NNS VBP CD NNP NN NNS VBP VBN IN JJS CD JJ NNS IN DT NN POS JJ NNP JJ NN .\nThe first drone strike Wednesday struck a vehicle near the town of Miran Shah , killing at least four militants .\tDT JJ NN NN NNP VBD DT NN IN DT NN IN NNP NNP , VBG IN JJS CD NNS .\nHours later , officials said , a second attack killed three militants in the same region .\tNNS RB , NNS VBD , DT JJ NN VBD CD NNS IN DT JJ NN .\nAnd a third missile strike hit a vehicle in the Pai Khel area of North Waziristan , killing at least four suspected militants .\tCC DT JJ NN NN VBD DT NN IN DT NNP NNP NN IN NNP NNP , VBG IN JJS CD JJ NNS .\nThe United States has increased its use of missiles launched from unmanned aircraft against Taliban and al-Qaida-linked militants .\tDT NNP NNPS VBZ VBN PRP$ NN IN NNS VBN IN JJ NN IN NNP CC JJ NNS .\nThere have been at least 40 such strikes since September in northwestern Pakistan near the Afghan border .\tEX VBP VBN IN JJS CD JJ NNS IN NNP IN JJ NNP IN DT JJ NN .\nThe U.S. does not publicly acknowledge the attacks , which often are criticized by Pakistani officials as a violation of their country 's sovereignty .\tDT NNP VBZ RB RB VB DT NNS , WDT RB VBP VBN IN JJ NNS IN DT NN IN PRP$ NN POS NN .\nThe U.S. military says an F15 fighter jet crashed in eastern Afghanistan early Saturday , killing the two crew members on board .\tDT NNP NN VBZ DT NNP NN NN VBD IN JJ NNP JJ NNP , VBG DT CD NN NNS IN NN .\nA military statement says the plane went down during an operation in the region .\tDT JJ NN VBZ DT NN VBD RB IN DT NN IN DT NN .\nThe military did not indicate why the plane went down , but the statement said the crash was not caused by ' hostile fire . '\tDT JJ VBD RB VB WRB DT NN VBD RB , CC DT NN VBD DT NN VBD RB VBN IN `` JJ NN . ``\nCoalition forces are engaged in a major offensive in southern Afghanistan to drive Taliban militants out of their strongholds , and to maintain security ahead of a presidential election in August .\tNN NNS VBP VBN IN DT JJ NN IN JJ NNP TO VB NNP NNS IN IN PRP$ NNS , CC TO VB NN RB IN DT JJ NN IN NNP .\nOn Friday , a roadside bomb killed 11 civilians , including five children , as they were traveling to a shrine in southern Afghanistan 's Kandahar province .\tIN NNP , DT NN NN VBD CD NNS , VBG CD NNS , IN PRP VBD VBG TO DT NN IN JJ NNP POS NNP NN .\nThe attack happened in Spin Boldak district , a major cross border route between Afghanistan and Pakistan .\tDT NN VBD IN NNP NNP NN , DT JJ NN NN NN IN NNP CC NNP .\nKenya 's president has announced that public hospitals and clinics will begin providing anti-retroviral drugs at no charge to AIDS patients .\tNNP POS NN VBZ VBN IN JJ NNS CC NNS MD VB VBG JJ NNS IN DT NN TO NNP NNS .\nIn comments made Thursday , President Mwai Kibaki said his government will immediately waive the fees it has been charging for the drugs .\tIN NNS VBN NNP , NNP NNP NNP VBD PRP$ NN MD RB VB DT NNS PRP VBZ VBN VBG IN DT NNS .\nMore than 2,00,000 Kenyans are eligible for the anti-retroviral drugs , but just a fraction are using the medications .\tJJR IN CD NNS VBP JJ IN DT JJ NNS , CC RB DT NN VBP VBG DT NNS .\nThe fee of slightly more than one dollar for a treatment has been cited as a reason more people are not taking the medications .\tDT NN IN RB JJR IN CD NN IN DT NN VBZ VBN VBN IN DT NN JJR NNS VBP RB VBG DT NNS .\nThe World Health Organization estimates some 1.2 million Kenyans are infected with HIV , the virus that causes AIDS .\tDT NNP NNP NNP VBZ DT CD CD NNS VBP VBN IN NNP , DT NN WDT VBZ NNP .\nAn estimated six percent of Kenya 's adult population is infected , down from 14 percent a few years ago .\tDT VBN CD NN IN NNP POS NN NN VBZ JJ , RB IN CD NN DT JJ NNS RB .\nPalestinian and Israeli officials say two Palestinian militants have been killed in an Israeli missile attack in the Gaza Strip .\tJJ CC JJ NNS VBP CD JJ NNS VBP VBN VBN IN DT JJ NN NN IN DT NNP NNP .\nAn Israeli army spokesman says troops saw members of the militant group Al Aqsa Martyrs ' Brigades firing a rocket toward Israel Saturday .\tDT JJ NN NN VBZ NNS VBD NNS IN DT JJ NN NNP NNP NNP POS NNS VBG DT NN IN NNP NNP .\nHe said the militants were struck by an Israeli missile after leaving the launch site in a car .\tPRP VBD DT NNS VBD VBN IN DT JJ NN IN VBG DT NN NN IN DT NN .\nThe strike came a day after Israeli aircraft fired missiles into a car in southern Gaza , killing six people , including a senior Palestinian militant and his child .\tDT NN VBD DT NN IN JJ NN VBD NNS IN DT NN IN JJ NNP , VBG CD NNS , VBG DT JJ JJ NN CC PRP$ NN .\nIsrael says it has the right to strike at militants it says are planning attacks on the Jewish state .\tNNP VBZ PRP VBZ DT NN TO VB IN NNS PRP VBZ VBP VBG NNS IN DT JJ NN .\nIn southern Gaza , Palestinian police say two people were killed today near Rafah in the collapse of a tunnel under the Gaza-Egypt border .\tIN JJ NNP , JJ NNS VBP CD NNS VBD VBN NN IN NNP IN DT NN IN DT NN IN DT JJ NN .\nChina 's first private airline is expected to take to the skies this year .\tNNP POS JJ JJ NN VBZ VBN TO VB TO DT NNS DT NN .\nThe official Xinhua news agency says Sunday Okay Airways is undergoing a final official review , and should be cleared to begin operations after Nov. 20 .\tDT JJ NNP NN NN VBZ NNP NNP NNP VBZ VBG DT JJ NN NN , CC MD VB VBN TO VB NNS IN NNP CD .\nXinhua said the Beijing-based airline plans to lease six U.S.-made Boeing 737 aircraft for domestic cargo and passenger charter flights .\tNNP VBD DT JJ NN VBZ TO VB CD JJ NNP CD NN IN JJ NN CC NN NN NNS .\nTwo other private airlines , United Eagle Airlines and Air Spring , reportedly hope to begin flying next year , once a review of their applications is completed by the Civil Aviation Administration of China .\tCD JJ JJ NNS , NNP NNP NNPS CC NNP NNP , RB VBP TO VB VBG JJ NN , RB DT NN IN PRP$ NNS VBZ VBN IN DT NNP NNP NNP IN NNP .\nWith no direct taxation , the islands are a thriving offshore financial center .\tIN DT JJ NN , DT NNS VBP DT JJ JJ JJ NN .\nMore than 93,000 companies were registered in the Cayman Islands as of 2008 , including almost 300 banks , 800 insurers , and 10,000 mutual funds .\tJJR IN CD NNS VBD VBN IN DT NNP NNP IN IN CD , VBG RB CD NNS , CD NNS , CC CD JJ NNS .\nA stock exchange was opened in 1997 .\tDT NN NN VBD VBN IN CD .\nTourism is also a mainstay , accounting for about 70 % of GDP and 75 % of foreign currency earnings .\tNNP VBZ RB DT NN , NN IN RB CD NN IN NN CC CD NN IN JJ NN NNS .\nThe tourist industry is aimed at the luxury market and caters mainly to visitors from North America .\tDT NN NN VBZ VBN IN DT NN NN CC NNS RB TO NNS IN NNP NNP .\nTotal tourist arrivals exceeded 1.9 million in 2008 , with about half from the US .\tJJ NN NNS VBD CD CD IN CD , IN IN NN IN DT NNP .\nAbout 90 % of the islands ' food and consumer goods must be imported .\tRB CD NN IN DT NNS POS NN CC NN NNS MD VB VBN .\nThe Caymanians enjoy a standard of living roughly equal to that of Switzerland .\tDT NNPS VBP DT NN IN VBG RB JJ TO DT IN NNP .\nAt the close of World War I , the Czechs and Slovaks of the former Austro-Hungarian Empire merged to form Czechoslovakia .\tIN DT NN IN NNP NNP NNP , DT NNS CC NNS IN DT JJ JJ NN VBD TO VB NNP .\nDuring the interwar years , having rejected a federal system , the new country 's leaders were frequently preoccupied with meeting the demands of other ethnic minorities within the republic , most notably the Sudeten Germans and the Ruthenians ( Ukrainians ) .\tIN DT JJ NNS , VBG VBN DT JJ NN , DT JJ NN POS NNS VBD RB VBN IN VBG DT NNS IN JJ JJ NNS IN DT NN , RBS RB DT NNPS NNS CC DT NNPS LRB NNS RRB .\nOn the eve of World War II , the Czech part of the country was forcibly annexed to the Third Reich , and the Slovaks declared independence as a fascist ally of Nazi Germany .\tIN DT NN IN NNP NNP NNP , DT JJ NN IN DT NN VBD RB VBN TO DT NNP NNP , CC DT NNS VBD NN IN DT JJ NN IN NNP NNP .\nAfter the war , a reunited but truncated Czechoslovakia ( less Ruthenia ) fell within the Soviet sphere of influence .\tIN DT NN , DT VBN CC VBN NNP LRB RBR NNP RRB VBD IN DT JJ NN IN NN .\nIn 1968 , an invasion by Warsaw Pact troops ended the efforts of the country 's leaders to liberalize Communist Party rule and create ' socialism with a human face . '\tIN CD , DT NN IN NNP NNP NNS VBD DT NNS IN DT NN POS NNS TO VB NNP NNP NN CC VB `` NN IN DT JJ NN . ``\nAnti-Soviet demonstrations the following year ushered in a period of harsh repression known as ' normalization . '\tJJ NNS DT JJ NN VBD IN DT NN IN JJ NN VBN IN `` NN . ``\nWith the collapse of Soviet-backed authority in 1989 , Czechoslovakia regained its freedom through a peaceful ' Velvet Revolution . '\tIN DT NN IN JJ NN IN CD , NNP VBD PRP$ NN IN DT JJ `` NNP NNP . ``\nOn 1 January 1993 , the country underwent a ' velvet divorce ' into its two national components , the Czech Republic and Slovakia .\tIN CD NNP CD , DT NN VBD DT `` NN NN `` IN PRP$ CD JJ NNS , DT JJ NNP CC NNP .\nThe Czech Republic joined NATO in 1999 and the European Union in 2004 .\tDT JJ NNP VBD NNP IN CD CC DT NNP NNP IN CD .\nA unified Thai kingdom was established in the mid-14th century .\tDT JJ JJ NN VBD VBN IN DT JJ NN .\nKnown as Siam until 1939 , Thailand is the only Southeast Asian country never to have been taken over by a European power .\tVBN IN NNP IN CD , NNP VBZ DT RB JJ JJ NN RB TO VB VBN VBN RP IN DT JJ NN .\nA bloodless revolution in 1932 led to a constitutional monarchy .\tDT JJ NN IN CD VBD TO DT JJ NN .\nIn alliance with Japan during World War II , Thailand became a US treaty ally in 1954 after sending troops to Korea and fighting alongside the US in Vietnam .\tIN NN IN NNP IN NNP NNP NNP , NNP VBD DT NNP NN NN IN CD IN VBG NNS TO NNP CC VBG IN DT NNP IN NNP .\nA military coup in September 2006 ousted then Prime Minister THAKSIN Chinnawat .\tDT JJ NN IN NNP CD VBD RB NNP NNP NNP NNP .\nDecember 2007 elections saw the pro-THAKSIN People 's Power Party ( PPP ) emerge at the head of a coalition government that took office in February 2008 .\tNNP CD NNS VBD DT JJ NNS POS NNP NNP LRB NNP RRB VB IN DT NN IN DT NN NN WDT VBD NN IN NNP CD .\nThe anti-THAKSIN People 's Alliance for Democracy ( PAD , aka yellow-shirts ) in May 2008 began street demonstrations against the new government , eventually occupying the prime minister 's office in August and Bangkok 's two international airports in November .\tDT NNP NNP POS NNP IN NNP LRB NNP , NN NNS RRB IN NNP CD VBD NN NNS IN DT JJ NN , RB VBG DT JJ NN POS NN IN NNP CC NNP POS CD JJ NNS IN NNP .\nAfter an early December 2008 court ruling that dissolved the ruling PPP and two other coalition parties for election violations , the Democrat Party formed a new coalition government and ABHISIT Wetchachiwa became prime minister .\tIN DT JJ NNP CD NN NN WDT VBD DT NN NNP CC CD JJ NN NNS IN NN NNS , DT NNP NNP VBD DT JJ NN NN CC NNP NNP VBD JJ NN .\nIn October 2008 THAKSIN fled abroad in advance of an abuse of power conviction and has agitated his followers from abroad since then .\tIN NNP CD NNP VBD RB IN NN IN DT NN IN NN NN CC VBZ VBN PRP$ NNS IN RB IN RB .\nTHAKSIN supporters under the banner of the United Front for Democracy Against Dictatorship ( UDD , aka red-shirts ) rioted in April 2009 , shutting down an ASEAN meeting in Pattaya .\tNNP NNS IN DT NN IN DT NNP NNP IN NNP NNP NNP LRB NNP , NN NNS RRB VBN IN NNP CD , VBG RP DT NNP NN IN NNP .\nFollowing a February 2010 court verdict confiscating half of THAKSIN 's frozen assets , the UDD staged large protests between March and May 2010 , and occupied several blocks of downtown Bangkok .\tVBG DT NNP CD NN NN VBG NN IN NNP POS JJ NNS , DT NNP VBD JJ NNS IN NNP CC NNP CD , CC VBD JJ NNS IN NN NNP .\nClashes between security forces and protesters , elements of which were armed , resulted in at least 92 deaths and an estimated $ 1.5 billion in arson-related property losses .\tNNS IN NN NNS CC NNS , NNS IN WDT VBD VBN , VBD IN IN JJS CD NNS CC DT VBN $ CD CD IN JJ NN NNS .\nThese protests exposed major cleavages in the Thai body politic that continue to hamper the current government .\tDT NNS VBD JJ NNS IN DT JJ NN NN WDT VBP TO VB DT JJ NN .\nThe ABHISIT administration has announced a plan for a general election some time in 2011 ahead of its full term by the year-end .\tDT NNP NN VBZ VBN DT NN IN DT JJ NN DT NN IN CD RB IN PRP$ JJ NN IN DT NN .\nSince January 2004 , thousands have been killed as separatists in Thailand 's southern ethnic Malay-Muslim provinces increased the violence associated with their cause .\tIN NNP CD , NNS VBP VBN VBN IN NNS IN NNP POS JJ JJ JJ NNS VBD DT NN VBN IN PRP$ NN .\nThis small , sub-Saharan economy suffers from anemic economic growth and depends heavily on both commercial and subsistence agriculture , which provides employment for 65 % of the labor force .\tDT JJ , JJ NN NNS IN JJ JJ NN CC VBZ RB IN DT JJ CC JJ NN , WDT VBZ NN IN CD NN IN DT NN NN .\nSome basic foodstuffs must still be imported .\tDT JJ NNS MD RB VB VBN .\nCocoa , coffee , and cotton generate about 40 % of export earnings with cotton being the most important cash crop .\tNN , NN , CC NN VBP IN CD NN IN NN NNS IN NN VBG DT RBS JJ NN NN .\nTogo is the world 's fourth-largest producer of phosphate .\tNNP VBZ DT NN POS JJ NN IN NN .\nThe government 's decade-long effort , supported by the World Bank and the IMF , to implement economic reform measures , encourage foreign investment , and bring revenues in line with expenditures has moved slowly .\tDT NN POS JJ NN , VBN IN DT NNP NNP CC DT NNP , TO VB JJ NN NNS , VB JJ NN , CC VB NNS IN NN IN NNS VBZ VBN RB .\nProgress depends on follow through on privatization , increased openness in government financial operations , progress toward legislative elections , and continued support from foreign donors .\tNN VBZ IN VB IN IN NN , JJ NN IN NN JJ NNS , NN IN JJ NNS , CC JJ NN IN JJ NNS .\nTogo is on track with its IMF Extended Credit Facility and reached a HIPC debt relief completion point in 2010 at which 95 % of the country 's debt was forgiven .\tNNP VBZ IN NN IN PRP$ NNP NNP NNP NNP CC VBD DT NNP NN NN NN NN IN CD IN WDT CD NN IN DT NN POS NN VBD VBN .\nEconomic growth prospects remain marginal due to declining cotton production and underinvestment in phosphate mining .\tJJ NN NNS VBP JJ JJ TO VBG NN NN CC NN IN JJ NN .\nLatvia is a small , open economy with exports contributing significantly to its GDP .\tNNP VBZ DT JJ , JJ NN IN NNS VBG RB TO PRP$ NN .\nDue to its geographical location , transit services are highly-developed , along with timber and wood-processing , agriculture and food products , and manufacturing of machinery and electronic devices .\tJJ TO PRP$ JJ NN , NN NNS VBP JJ , IN IN NN CC NN , NN CC NN NNS , CC NN IN NN CC JJ NNS .\nThe bulk of the country 's economic activity , however , is in the services sector .\tDT NN IN DT NN POS JJ NN , RB , VBZ IN DT NNS NN .\nCorruption continues to be an impediment to attracting FDI flows and Latvia 's low birth rate and decreasing population are major challenges to its long-term economic vitality .\tNN VBZ TO VB DT NN TO VBG NNP NNS CC NNP POS JJ NN NN CC VBG NN VBP JJ NNS TO PRP$ JJ JJ NN .\nLatvia 's economy experienced GDP growth of more than 10 % per year during 2006 - 7 , but entered a severe recession in 2008 as a result of an unsustainable current account deficit and large debt exposure amid the softening world economy .\tNNP POS NN VBD NN NN IN JJR IN CD NN IN NN IN CD : CD , CC VBD DT JJ NN IN CD IN DT NN IN DT JJ JJ NN NN CC JJ NN NN IN DT NN NN NN .\nGDP plunged 18 % in 2009 - the three Baltic states had the world 's worst declines that year .\tNN VBD CD NN IN CD IN DT CD JJ NNS VBD DT NN POS JJS NNS IN NN .\nThanks to strong export growth in 2009 and 2010 , the economy experienced its first real quarterly GDP growth in over two years ( 2.9 % ) in the third quarter of 2010 .\tNNS TO JJ NN NN IN CD CC CD , DT NN VBD PRP$ JJ JJ JJ NN NN IN IN CD NNS LRB CD NN RRB IN DT JJ NN IN CD .\nThe IMF , EU , and other international donors provided substantial financial assistance to Latvia as part of an agreement to defend the currency 's peg to the euro .\tDT NNP , NNP , CC JJ JJ NNS VBD JJ JJ NN TO NNP IN NN IN DT NN TO VB DT NN POS NN TO DT NN .\nThis agreement calls for reduction of Latvia 's fiscal deficit to below 3 % of GDP by 2012 , in order to meet the Maastricht Treaty criteria for euro adoption .\tDT NN VBZ IN NN IN NNP POS JJ NN TO IN CD NN IN NN IN CD , IN NN TO VB DT NNP NNP NNS IN NN NN .\nDOMBROVSKIS ' government enacted major spending cuts to reduce the fiscal deficit to a maximum of 8.5 % of GDP in 2010 , and Latvia has approved a 2011 budget with a projected deficit of 5.4 % of GDP .\tNNP POS NN VBD JJ NN NNS TO VB DT JJ NN TO DT NN IN CD NN IN NN IN CD , CC NNP VBZ VBN DT CD NN IN DT VBN NN IN CD NN IN NN .\nThe majority of companies , banks , and real estate have been privatized , although the state still holds sizable stakes in a few large enterprises .\tDT NN IN NNS , NNS , CC JJ NN VBP VBN VBN , IN DT NN RB VBZ JJ NNS IN DT JJ JJ NNS .\nLatvia officially joined the World Trade Organization in February , 1999 .\tNNP RB VBD DT NNP NNP NNP IN NNP , CD .\nEU membership , a top foreign policy goal , came in May 2004 .\tNNP NN , DT JJ JJ NN NN , VBD IN NNP CD .\nLatvia 's current major financial policy goal , entrance into the euro zone , is targeted for 2014 .\tNNP POS JJ JJ JJ NN NN , NN IN DT NN NN , VBZ VBN IN CD .\nWHEN MAN first saw the Camel , he was so frightened at his vast size that he ran away .\tWRB NN RB VBD DT NN , PRP VBD RB JJ IN PRP$ JJ NN IN PRP VBD RB .\nAfter a time , perceiving the meekness and gentleness of the beast 's temper , he summoned courage enough to approach him .\tIN DT NN , VBG DT NN CC NN IN DT NN POS NN , PRP VBD NN RB TO VB PRP .\nSoon afterwards , observing that he was an animal altogether deficient in spirit , he assumed such boldness as to put a bridle in his mouth , and to let a child drive him .\tRB RB , VBG IN PRP VBD DT NN RB JJ IN NN , PRP VBD JJ NN IN TO VB DT NN IN PRP$ NN , CC TO VB DT NN NN PRP .\nUse serves to overcome dread .\tNNP VBZ TO VB NN .\nA top Russian official says authorities have thwarted two separate attempted break-ins at Russian nuclear weapons installations .\tDT JJ JJ NN VBZ NNS VBP VBN CD JJ JJ NNS IN JJ JJ NNS NNS .\nColonel General Igor Valynkin , who heads the department responsible for nuclear weapons safety , says lone perpetrators tried to illegally enter the facilities in the western part of the country in 2002 and 2003 .\tNNP NNP NNP NNP , WP VBZ DT NN JJ IN JJ NNS NN , VBZ JJ NNS VBD TO RB VB DT NNS IN DT JJ NN IN DT NN IN CD CC CD .\nThe official told journalists in Moscow Wednesday that the biggest potential threat to Russia 's nuclear facilities is from Chechen terrorists .\tDT NN VBD NNS IN NNP NNP IN DT JJS JJ NN TO NNP POS JJ NNS VBZ IN JJ NNS .\nHe says Russia is using U.S. and German funding to boost security at nuclear facilities .\tPRP VBZ NNP VBZ VBG NNP CC JJ NN TO VB NN IN JJ NNS .\nA new public opinions poll finds Japanese are strongly opposed to extending their country 's humanitarian mission to Iraq .\tDT JJ JJ NNS NN VBZ NNS VBP RB VBN TO VBG PRP$ NN POS JJ NN TO NNP .\nThe poll published by the Mainichi newspaper Monday showed three out of four Japanese ( 77 percent ) are against the extension while only 18 percent support it .\tDT NN VBN IN DT NNP NN NNP VBD CD IN IN CD JJ LRB CD NN RRB VBP IN DT NN IN RB CD NN NN PRP .\nThe survey also found that Prime Minister Junichiro Koizumi 's approval rating has climbed to 56 percent , a gain of five points , since shortly before general elections last month .\tDT NN RB VBD IN NNP NNP NNP NNP POS NN NN VBZ VBN TO CD NN , DT NN IN CD NNS , IN RB IN JJ NNS JJ NN .\nThe gain came despite recent reports that the prime minister intends to extend Japan 's Iraqi mission .\tDT NN VBD IN JJ NNS IN DT JJ NN VBZ TO VB NNP POS JJ NN .\nA new survey says companies in Russia and China are among the most likely to pay bribes to win business opportunities abroad .\tDT JJ NN VBZ NNS IN NNP CC NNP VBP IN DT RBS JJ TO VB NNS TO VB NN NNS RB .\nThe report was released Tuesday by a Berlin-based anti-corruption organization , Transparency International .\tDT NN VBD VBN NNP IN DT JJ NN NN , NNP NNP .\nIt ranks 22 of the most influential economies based on interviews with business executives from around the world .\tPRP VBZ CD IN DT RBS JJ NNS VBN IN NNS IN NN NNS IN IN DT NN .\nRussian firms were rated most likely to engage in bribery , followed by Mexico , China and India .\tJJ NNS VBD VBN RBS JJ TO VB IN NN , VBN IN NNP , NNP CC NNP .\nCompanies in Belgium and Canada were least likely to offer bribes .\tNNS IN NNP CC NNP VBD JJS JJ TO VB NNS .\nThe United States was ranked near the middle of the list - tied with Singapore and France .\tDT NNP NNPS VBD VBN IN DT NN IN DT NN : VBN IN NNP CC NNP .\nThe survey says companies looking for public works construction projects are most likely to try to gain influence with public officials .\tDT NN VBZ NNS VBG IN JJ NNS NN NNS VBP RBS JJ TO VB TO VB NN IN JJ NNS .\nReal estate and oil and gas companies are the next most serious offenders .\tJJ NN CC NN CC NN NNS VBP DT JJ RBS JJ NNS .\nTransparency International says it hopes the list encourages governments and companies to increase anti-corruption measures .\tNNP NNP VBZ PRP VBZ DT NN VBZ NNS CC NNS TO VB JJ NNS .\nPresident Bush will meet Monday with the Iraq Study Group , a bipartisan panel named by congress to make recommendations about U.S. policy in Iraq .\tNNP NNP MD VB NNP IN DT NNP NNP NNP , DT JJ NN VBN IN NN TO VB NNS IN NNP NN IN NNP .\nThe Iraq Study Group is co-chaired by former secretary of state James Baker and former Democratic congressman Lee Hamilton .\tDT NNP NNP NNP VBZ VBN IN JJ NN IN NN NNP NNP CC JJ JJ NN NNP NNP .\nA White House spokesman said the group is not yet ready to present its final report to the president .\tDT NNP NNP NN VBD DT NN VBZ RB RB JJ TO VB PRP$ JJ NN TO DT NN .\nThe meeting follows statements from senior Democrats , whose party won control of Congress last week , who said their priority will be a change of course in Iraq .\tDT NN VBZ NNS IN JJ NNPS , WP$ NN VBD NN IN NNP JJ NN , WP VBD PRP$ NN MD VB DT NN IN NN IN NNP .\nSenator Carl Levin called Sunday in a broadcast interview for a phased withdrawal of U.S. troops from Iraq , and party chairman Howard Dean said Americans have made it clear they do not want the U.S. to stay in Iraq forever .\tNNP NNP NNP VBD NNP IN DT NN NN IN DT VBN NN IN NNP NNS IN NNP , CC NN NN NNP NNP VBD NNS VBP VBN PRP JJ PRP VBP RB VB DT NNP TO VB IN NNP RB .\nBut Mr. Dean acknowledged his party will need to work with the president on Iraq .\tCC NNP NNP VBD PRP$ NN MD VB TO VB IN DT NN IN NNP .\nTwo Chinese nationals have died after their van was involved in an accident with an Olympic bus on Wednesday in Beijing .\tCD JJ NNS VBP VBN IN PRP$ NN VBD VBN IN DT NN IN DT JJ NN IN NNP IN NNP .\nThe Olympic bus was carrying two Croatian rowers , their coach , and members of the Canadian and Australian delegations .\tDT NNP NN VBD VBG CD JJ NNS , PRP$ NN , CC NNS IN DT JJ CC JJ NNS .\nThe rowers suffered minor injuries .\tDT NNS VBD JJ NNS .\nTwo other passengers on the van were also injured .\tCD JJ NNS IN DT NN VBD RB VBN .\nA spokesman for the Beijing Organizing Committee said the van was at fault in the accident .\tDT NN IN DT NNP NNP NNP VBD DT NN VBD IN NN IN DT NN .\nBoth vehicles were going to the site of the Olympic rowing events .\tDT NNS VBD VBG TO DT NN IN DT NNP VBG NNS .\nThe Croatian rowers competed in their double skulls semifinal as scheduled but missed out on the finals with a fourth place finish .\tDT JJ NNS VBN IN PRP$ JJ NNS JJ IN VBN CC VBN RP IN DT NNS IN DT JJ NN NN .\nThe Israeli government has decided to allow 8,000 Ethiopians who claim Jewish descent to enter the country .\tDT JJ NN VBZ VBN TO VB CD NNS WP VBP JJ NN TO VB DT NN .\nIsrael 's Prime Minister Benjamin Netanyahu , in remarks to his Cabinet Sunday , spoke of a ' humanitarian crisis ' and a ' moral commitment ' to help members of a group known as the Falash Mura .\tNNP POS NNP NNP NNP NNP , IN NNS TO PRP$ NNP NNP , VBD IN DT `` JJ NN `` CC DT `` JJ NN `` TO VB NNS IN DT NN VBN IN DT NNP NNP .\nThey are Ethiopians who say they were forced to convert to Christianity .\tPRP VBP NNS WP VBP PRP VBD VBN TO VB TO NNP .\nMr. Netanyahu said the Falash Mura will be brought to Israel in stages over the next three years .\tNNP NNP VBD DT NNP NNP MD VB VBN TO NNP IN NNS IN DT JJ CD NNS .\nThey will then need to convert before being granted Israeli citizenship .\tPRP MD RB VB TO VB IN VBG VBN JJ NN .\nSome 1,00,000 Ethiopian Jews now live in Israel .\tDT CD JJ NNPS RB VBP IN NNP .\nThey came to the country during the 1980s and 1990s under the Law of Return , which provides Israeli citizenship to all Jews .\tPRP VBD TO DT NN IN DT NNS CC NNS IN DT NN IN NNP , WDT VBZ JJ NN TO DT NNPS .\nAt least 27 wives of Israeli rabbis have signed a letter urging Jewish women to avoid dating Arab men , after dozens of rabbis signed a religious ruling that forbids renting homes to non-Jews .\tIN JJS CD NNS IN JJ NNS VBP VBN DT NN VBG JJ NNS TO VB VBG JJ NNS , IN NNS IN NNS VBD DT JJ NN WDT VBZ VBG NNS TO JJ .\nThe letter warns Jewish women that they will suffer if they date Arab men .\tDT NN VBZ JJ NNS IN PRP MD VB IN PRP VBP JJ NNS .\nIt also warns against working in places where Arabs are employed .\tPRP RB VBZ IN VBG IN NNS WRB NNS VBP VBN .\nIt was distributed Tuesday by the Jewish group , Lehava .\tPRP VBD VBN NNP IN DT JJ NN , NNP .\nEarlier this month , dozens of Israeli rabbis signed the letter forbidding home rentals .\tRBR DT NN , NNS IN JJ NNS VBD DT NN VBG NN NNS .\nIn their appeal , the clerics said ' different lifestyles from Jews ' could endanger lives .\tIN PRP$ NN , DT NNS VBD `` JJ NNS IN NNPS `` MD VB NNS .\nThe letter fueled charges of racism and was condemned by some lawmakers and human rights activists .\tDT NN VBD NNS IN NN CC VBD VBN IN DT NNS CC JJ NNS NNS .\nThe letters could raise tensions between Israel 's Jews and its Arab minority at a time when international efforts are underway to revive direct peace talks between Israel and the Palestinians .\tDT NNS MD VB NNS IN NNP POS NNPS CC PRP$ JJ NN IN DT NN WRB JJ NNS VBP JJ TO VB JJ NN NNS IN NNP CC DT NNS .\nThe U.S. government says oil production in the Gulf of Mexico was nearly 80 percent below normal as of Saturday , five days after Hurricane Katrina tore through the region .\tDT NNP NN VBZ NN NN IN DT NNP IN NNP VBD RB CD NN IN JJ IN IN NNP , CD NNS IN NNP NNP VBD IN DT NN .\nA report from the U.S. Minerals Management Service said Katrina had cut oil production in the Gulf by about 1.18 million barrels of oil per day .\tDT NN IN DT NNP NNP NNP NNP VBD NNP VBD VBN NN NN IN DT NNP IN RB CD CD NNS IN NN IN NN .\nIt said more than 280 offshore oil-drilling rigs and platforms remained evacuated .\tPRP VBD JJR IN CD JJ NN NNS CC NNS VBD VBN .\nThe figures represent a slight improvement from Friday , when oil production in the Gulf was nearly 90 percent below normal .\tDT NNS VBP DT JJ NN IN NNP , WRB NN NN IN DT NNP VBD RB CD NN IN JJ .\nKatrina 's disruption to Gulf-area oil production and refineries has caused a spike in U.S. gasoline prices , and an increase in crude oil prices on world markets .\tNNP POS NN TO JJ NN NN CC NNS VBZ VBN DT NN IN NNP NN NNS , CC DT NN IN JJ NN NNS IN NN NNS .\nNigeria 's main militant group says it has freed 19 Nigerian oil workers kidnapped by other gunmen nearly a month ago .\tNNP POS JJ JJ NN VBZ PRP VBZ VBN CD JJ NN NNS VBN IN JJ NNS RB DT NN RB .\nThe Movement for the Emancipation of the Niger Delta , or MEND , says in a statement that it released the hostages Sunday in Nigeria 's Rivers state .\tDT NN IN DT NN IN DT NNP NNP , CC NNP , VBZ IN DT NN IN PRP VBD DT NNS NNP IN NNP POS NNS NN .\nMEND said it rescued the hostages in mid-September , a few days after they were abducted by local pirates .\tNNP VBD PRP VBD DT NNS IN NNP , DT JJ NNS IN PRP VBD VBN IN JJ NNS .\nThe group said today it is still holding a Ukrainian and two British nationals captured with the other hostages .\tDT NN VBD NN PRP VBZ RB VBG DT JJ CC CD JJ NNS VBN IN DT JJ NNS .\nIt says they can not be released because of ' security concerns . '\tPRP VBZ PRP MD RB VB VBN IN IN `` NN NNS . ``\nThe oil-producing Niger Delta has been the scene of violent unrest during the last three years , much of it focused against the oil industry .\tDT JJ NNP NNP VBZ VBN DT NN IN JJ NN IN DT JJ CD NNS , NN IN PRP VBD IN DT NN NN .\nMilitants say they want impoverished local residents to get more of the region 's oil wealth .\tNNS VBP PRP VBP JJ JJ NNS TO VB JJR IN DT NN POS NN NN .\nTamil Tiger rebels in Sri Lanka say they have halted an offensive on a government-held town in the eastern part of the country , and are pulling back to their former positions .\tNNP NNP NNS IN NNP NNP VBP PRP VBP VBN DT NN IN DT JJ NN IN DT JJ NN IN DT NN , CC VBP VBG RB TO PRP$ JJ NNS .\nThe fighting , in the eastern Muslim town of Muttur in Trincomalee province , was described as the worst since a cease-fire was agreed to more than four years ago .\tDT NN , IN DT JJ NNP NN IN NNP IN NNP NN , VBD VBN IN DT JJS IN DT NN VBD VBN TO JJR IN CD NNS RB .\nThousands of civilians fled clashes between soldiers and the rebels .\tNNS IN NNS VBD NNS IN NNS CC DT NNS .\nAt least five people were killed by artillery fire as they tried to find a safe haven .\tIN JJS CD NNS VBD VBN IN NN NN IN PRP VBD TO VB DT JJ NN .\nNorwegian peace envoy Jon Hanssen-Bauer met with Nordic cease-fire monitors Friday ahead of a meeting with government leaders .\tJJ NN NN NNP NNP VBD IN JJ NN NNS NNP RB IN DT NN IN NN NNS .\nHe plans to travel north to meet rebel leaders soon .\tPRP VBZ TO VB RB TO VB JJ NNS RB .\nGerman Chancellor Gerhard Schroeder has asked the Russian people to forgive the suffering Germany inflicted on them and others during World War II The German leader said no other country was required to pay as high a cost in the victory against Hitler 's Germany as the former Soviet Union .\tJJ NNP NNP NNP VBZ VBN DT JJ NNS TO VB DT NN NNP VBD IN PRP CC NNS IN NNP NNP NNP DT JJ NN VBD DT JJ NN VBD VBN TO VB IN JJ DT NN IN DT NN IN NNP POS NNP IN DT JJ NNP NNP .\nHis comments came in an article in Sunday 's edition of the Russian newspaper .\tPRP$ NNS VBD IN DT NN IN NNP POS NN IN DT JJ NN .\nHe noted the loss of more than 27 million lives and called the indescribable destruction in the former Soviet Union ' frightening results of World War II ' .\tPRP VBD DT NN IN JJR IN CD CD NNS CC VBD DT JJ NN IN DT JJ NNP NNP `` VBG NNS IN NNP NNP NNP `` .\nMr. Schroeder said the reconciliation between between Germany and its eastern neighbors , despite the horrors of world war and the later Cold War , is one of the miracles of European history .\tNNP NNP VBD DT NN IN IN NNP CC PRP$ JJ NNS , IN DT NNS IN NN NN CC DT JJ NNP NNP , VBZ CD IN DT NNS IN JJ NN .\nThe article appeared on the eve of ceremonies in Moscow marking the 60th anniversary of the end of World War II in Europe .\tDT NN VBD IN DT NN IN NNS IN NNP VBG DT JJ NN IN DT NN IN NNP NNP NNP IN NNP .\nPolice in Lebanon have arrested a man under investigation by a U.N. commission probing the assassination of former Prime Minister Rafik Hariri .\tNNS IN NNP VBP VBN DT NN IN NN IN DT NNP NN VBG DT NN IN JJ NNP NNP NNP NNP .\nOfficials in Beirut say Mahmoud Abdel-Al , a member of the pro-Syrian Al-Ahbash Sunni Muslim Orthodox group , was detained early Saturday based on an arrest warrant issued by Lebanese prosecutors .\tNNS IN NNP VBP NNP NNP , DT NN IN DT JJ JJ NNP NNP NNP NN , VBD VBN JJ NNP VBN IN DT NN NN VBN IN JJ NNS .\nA U.N. investigative report issued earlier this week said the man telephoned pro-Syrian President Emile Lahoud minutes before Mr. Hariri was killed .\tDT NNP JJ NN VBN RBR DT NN VBD DT NN VBD JJ NNP NNP NNP NNS IN NNP NNP VBD VBN .\nA spokesman for Mr. Lahoud has strongly denied the president had been in contact with Mr. Abdel-Al .\tDT NN IN NNP NNP VBZ RB VBN DT NN VBD VBN IN NN IN NNP NNP .\nMeanwhile , the son of Mr. Hariri , Saad Hariri , called for an international tribunal to punish those responsible for his father 's assassination .\tRB , DT NN IN NNP NNP , NNP NNP , VBD IN DT JJ NN TO VB DT JJ IN PRP$ NN POS NN .\nIn Damascus , Syrian officials dismissed the credibility of the U.N. report , which named senior Syrian security officials and their Lebanese allies as suspects in Mr. Hariri 's death .\tIN NNP , JJ NNS VBD DT NN IN DT NNP NN , WDT VBD JJ JJ NN NNS CC PRP$ JJ NNS IN NNS IN NNP NNP POS NN .\nIraqi security officials say unidentified gunmen have shot and killed the imam of a Sunni mosque and three other people in Baghdad .\tJJ NN NNS VBP JJ NNS VBP VBN CC VBN DT NN IN DT NNP NN CC CD JJ NNS IN NNP .\nAuthorities say the attackers gunned down the Sunni cleric near his home in the western part of the city Wednesday .\tNNS VBP DT NNS VBD RP DT NNP NN IN PRP$ NN IN DT JJ NN IN DT NN NNP .\nInvestigators say his guards were also shot .\tNNS VBP PRP$ NNS VBD RB VBN .\nNorth of Baghdad , gunmen killed an off-duty policeman and a civilian in central Mosul .\tNNP IN NNP , NNS VBD DT JJ NN CC DT JJ IN JJ NNP .\nA woman who was nearby was wounded in the attack .\tDT NN WP VBD RB VBD VBN IN DT NN .\nAlso Wednesday , a roadside bomb wounded at least one person in the northern Iraqi city of Kirkuk .\tRB NNP , DT NN NN VBD IN JJS CD NN IN DT JJ JJ NN IN NNP .\nPakistani police say a car bomb exploded in a parking lot of a bank in the northwestern city of Peshawar Saturday , wounding 12 people .\tJJ NNS VBP DT NN NN VBD IN DT NN NN IN DT NN IN DT JJ NN IN NNP NNP , VBG CD NNS .\nAuthorities say the blast broke windows in the military-owned Askari bank and damaged several nearby businesses and vehicles .\tNNS VBP DT NN VBD NNS IN DT JJ NNP NN CC VBN JJ JJ NNS CC NNS .\nPakistan is a key ally of the United States in its campaign against terror .\tNNP VBZ DT JJ NN IN DT NNP NNPS IN PRP$ NN IN NN .\nIn recent years , Peshawar and many other parts of the Islamic nation have been hit by scores of bomb attacks , most blamed on outlawed militant groups .\tIN JJ NNS , NNP CC JJ JJ NNS IN DT JJ NN VBP VBN VBN IN NNS IN NN NNS , JJS VBN IN JJ JJ NNS .\nBombings have also been frequent since an army operation in July that evicted militants from the radical Red Mosque in Islamabad .\tNNS VBP RB VBN JJ IN DT NN NN IN NNP WDT VBD NNS IN DT JJ NNP NNP IN NNP .\nTaiwan has unveiled two new surveillance aircraft purchased from the United States , designed to reinforce its defenses against rival China .\tNNP VBZ VBN CD JJ NN NN VBN IN DT NNP NNPS , VBN TO VB PRP$ NNS IN JJ NNP .\nTaiwanese President Chen Shui-bian showed off the new E2-K planes during a public ceremony Saturday at an air force base in the island 's southern Pingtung region .\tJJ NNP NNP NNP VBD IN DT JJ JJ NNS IN DT JJ NN NNP IN DT NN NN NN IN DT NN POS JJ NNP NN .\nOfficials say the new planes will expand the range of surveillance radar and can also guide fighter planes to intercept incoming aircraft .\tNNS VBP DT JJ NNS MD VB DT NN IN NN NN CC MD RB VB NN NNS TO VB JJ NN .\nThe new planes are part of effort by President Chen to balance Taiwan 's military strength with China 's .\tDT JJ NNS VBP NN IN NN IN NNP NNP TO VB NNP POS JJ NN IN NNP POS .\nBut opposition lawmakers argue he is entering the island in an expensive arms race it can not win .\tCC NN NNS VBP PRP VBZ VBG DT NN IN DT JJ NNS NN PRP MD RB VB .\nTaiwan split from China amid a civil war in 1949 .\tNNP VBD IN NNP IN DT JJ NN IN CD .\nChina considers the island part of its territory .\tNNP VBZ DT NN NN IN PRP$ NN .\nAn Arabic-language television channel has broadcast a video of Pakistan 's ambassador to Afghanistan , in which he says he has been kidnapped by Taliban militants .\tDT JJ NN NN VBZ VBN DT NN IN NNP POS NN TO NNP , IN WDT PRP VBZ PRP VBZ VBN VBN IN NNP NNS .\nThe video of Tariq Azizuddin aired Saturday on Al-Arabiya television .\tDT NN IN NNP NNP VBD NNP IN NNP NN .\nAzizuddin was surrounded by armed gunmen as he made his first public comments since disappearing in February .\tNNP VBD VBN IN JJ NNS IN PRP VBD PRP$ JJ JJ NNS IN VBG IN NNP .\nHe said he and his driver and bodyguard are being held in comfortable conditions , although he said he suffers from high blood pressure and heart pain .\tPRP VBD PRP CC PRP$ NN CC NN VBP VBG VBN IN JJ NNS , IN PRP VBD PRP VBZ IN JJ NN NN CC NN NN .\nHe said the three were kidnapped while driving through Pakistan 's Khyber tribal district on the way to the Afghan capital , Kabul .\tPRP VBD DT CD VBD VBN IN VBG IN NNP POS NNP NN NN IN DT NN TO DT JJ NN , NNP .\nAzizuddin urged the Pakistani government and Pakistan 's envoys in China and Iran to comply with the demands of his captors .\tNNP VBD DT JJ NN CC NNP POS NNS IN NNP CC NNP TO VB IN DT NNS IN PRP$ NNS .\nThe ambassador did not say what those demands were .\tDT NN VBD RB VB WP DT NNS VBD .\nBritain 's Home Secretary Charles Clarke has expressed confidence in the way London 's police commissioner and the police force have handled the controversy over the killing of an innocent man they wrongly suspected of being a terrorist .\tNNP POS NNP NNP NNP NNP VBZ VBN NN IN DT NN NNP POS NN NN CC DT NN NN VBP VBN DT NN IN DT NN IN DT JJ NN PRP RB VBD IN VBG DT NN .\nMr. Clarke told British Radio he is very happy with the way Commissioner Ian Blair and the police force are handling the inquiry into the July 22 incident in which officers mistakenly shot and killed Brazilian Jean Charles de Menezes .\tNNP NNP VBD JJ NN PRP VBZ RB JJ IN DT NN NNP NNP NNP CC DT NN NN VBP VBG DT NN IN DT NNP CD NN IN WDT NNS RB VBD CC VBD JJ NNP NNP NNP NNP .\nHe urged people not to pass judgment on the officers until an independent commission concludes its investigation .\tPRP VBD NNS RB TO VB NN IN DT NNS IN DT JJ NN VBZ PRP$ NN .\nEarlier , police confirmed they had reviewed their policy of using deadly force against suspected terrorists , but said they are making only minor adjustments .\tRBR , NN VBD PRP VBD VBN PRP$ NN IN VBG JJ NN IN JJ NNS , CC VBD PRP VBP VBG RB JJ NNS .\nFriday , a spokesman for the family of Mr. de Menezes accused Commissioner Blair of trying to stop an official probe into the shooting and again called for his resignation .\tNNP , DT NN IN DT NN IN NNP NNP NNP VBD NNP NNP IN VBG TO VB DT JJ NN IN DT NN CC RB VBN IN PRP$ NN .\nBangladesh fire officials say a five-story building has collapsed in the capital of Dhaka , killing at least 20 people .\tNNP NN NNS VBP DT JJ NN VBZ VBN IN DT NN IN NNP , VBG IN JJS CD NNS .\nAuthorities said the building toppled late Tuesday , flattening surrounding homes .\tNNS VBD DT NN VBD JJ NNP , VBG VBG NNS .\nAt least 25 people were injured when the building fell .\tIN JJS CD NNS VBD VBN WRB DT NN VBD .\nPolice say it was poorly constructed .\tNNS VBP PRP VBD RB VBN .\nRescue teams are continuing to search the rubble for bodies and survivors .\tNN NNS VBP VBG TO VB DT NN IN NNS CC NNS .\nOfficials fear the death count could rise as several people are reported missing .\tNNS VBP DT NN NN MD VB IN JJ NNS VBP VBN VBG .\nOfficials say many of the victims were sleeping in the surrounding homes -- poorly constructed shanties with tin roofs -- when the building collapsed .\tNNS VBP NN IN DT NNS VBD VBG IN DT VBG NNS : RB VBN NNS IN NN NNS : WRB DT NN VBD .\nJackson Browne has become the newest inductee in the Songwriters Hall Of Fame .\tNNP NNP VBZ VBN DT JJS NN IN DT NNP NNP IN NNP .\nThe 58-year-old singer / songwriter - who three years ago earned a slot in the Rock and Roll Hall Of Fame - joins Don Black , Michael Masser , Irving Burgie , Bobby Weinstein , and Teddy Randazzo in the Class of 2007 .\tDT JJ NN CC NN : WP CD NNS RB VBD DT NN IN DT NNP CC NNP NNP IN NNP : VBZ NNP NNP , NNP NNP , NNP NNP , NNP NNP , CC NNP NNP IN DT NN IN CD .\nPrevious inductees include Bob Dylan , Elton John , and Paul Simon .\tJJ NNS VBP NNP NNP , NNP NNP , CC NNP NNP .\nSelected by a nominating committee , eligible songwriters need to have been active for 20 years , and to have compiled an extensive catalog of hits .\tVBN IN DT JJ NN , JJ NNS VBP TO VB VBN JJ IN CD NNS , CC TO VB VBN DT JJ NN IN NNS .\nThis year 's induction ceremony takes place June 7 in New York City .\tDT NN POS NN NN VBZ NN NNP CD IN NNP NNP NNP .\nPakistani officials say armed tribesmen have killed more than 40 foreign militants in the latest fighting along Pakistan 's western border with Afghanistan .\tJJ NNS VBP JJ NNS VBP VBN RBR IN CD JJ NNS IN DT JJS NN IN NNP POS JJ NN IN NNP .\nThe officials say many Uzbeks were among those killed or captured Wednesday in Pakistan 's South Waziristan region .\tDT NNS VBP JJ NNS VBD IN DT VBN CC VBN NNP IN NNP POS NNP NNP NN .\nLocal residents say more than 1,000 heavily-armed tribesmen have joined the offensive against the foreign fighters .\tJJ NNS VBP JJR IN CD JJ NNS VBP VBN DT NN IN DT JJ NNS .\nThey say tribal elders called the men to battle Tuesday by beating traditional war drums in the main town of Wana .\tPRP VBP JJ NNS VBD DT NNS TO VB NNP IN VBG JJ NN NNS IN DT JJ NN IN NNP .\nFighting between Pakistani tribesmen and foreign fighters erupted last month after militants tried to kill a pro-government tribal leader .\tVBG IN JJ NNS CC JJ NNS VBD JJ NN IN NNS VBD TO VB DT JJ JJ NN .\nThe tribesmen had previously given refuge to the foreign militants , many of whom fled a U.S.-led offensive in Afghanistan in 2001 .\tDT NNS VBD RB VBN NN TO DT JJ NNS , NN IN WP VBD DT JJ NN IN NNP IN CD .\nPakistan 's government says the new tribal offensive vindicates its strategy of relying on tribesmen to combat foreign militants , rather than the army .\tNNP POS NN VBZ DT JJ JJ NN VBZ PRP$ NN IN VBG IN NNS TO VB JJ NNS , RB IN DT NN .\nAn Israeli newspaper says Prime Minister Ariel Sharon 's health problems were far more serious than his doctors publicly acknowledged after he suffered a first stroke last month Doctors treating Mr. Sharon after the December 18 stroke said he had a small hole in his heart since birth .\tDT JJ NN VBZ NNP NNP NNP NNP POS NN NNS VBD RB RBR JJ IN PRP$ NNS RB VBD IN PRP VBD DT JJ NN JJ NN NNS VBG NNP NNP IN DT NNP CD NN VBD PRP VBD DT JJ NN IN PRP$ NN IN NN .\nHe was scheduled to undergo a surgical procedure this month to repair the defect but suffered a massive second stroke the day before .\tPRP VBD VBN TO VB DT JJ NN DT NN TO VB DT NN CC VBD DT JJ JJ NN DT NN RB .\nThe Haaretz newspaper says its own investigation revealed that Mr. Sharon also suffered from a large aneurysm in the septum - a condition known to be a source of cerebral blood clots .\tDT NNP NN VBZ PRP$ JJ NN VBD IN NNP NNP RB VBD IN DT JJ NN IN DT NN IN DT NN VBN TO VB DT NN IN JJ NN NNS .\nThe report says he also suffered from other heart ailments .\tDT NN VBZ PRP RB VBD IN JJ NN NNS .\nThe 77-year-old Israeli leader remains comatose in a Jerusalem hospital since suffering a massive brain hemorrhage on January 4 .\tDT JJ JJ NN VBZ JJ IN DT NNP NN IN VBG DT JJ NN NN IN NNP CD .\nA U.S. Congressman is calling for a review of U.S. policy toward Cuban refugees after 15 Cubans were repatriated Monday .\tDT NNP NN VBZ VBG IN DT NN IN NNP NN IN JJ NNS IN CD NNS VBD VBN NNP .\nLincoln Diaz-Balart , a Republican House member from Florida , says he is asking the White House to review the United States ' ' wet foot , dry foot ' policy toward illegal Cuban immigrants .\tNNP NNP , DT NNP NNP NN IN NNP , VBZ PRP VBZ VBG DT NNP NNP TO VB DT NNP NNPS POS `` JJ NN , JJ NN `` NN IN JJ JJ NNS .\nThe policy allows Cuban refugees who reach U.S. soil to stay in the United States , but those intercepted at sea are sent back home .\tDT NN VBZ JJ NNS WP VBP NNP NN TO VB IN DT NNP NNPS , CC DT VBN IN NN VBP VBN RB NN .\nDiaz-Balart told the Miami Herald newspaper that the policy should be eliminated .\tNNP VBD DT NNP NNP NN IN DT NN MD VB VBN .\nAnd if not that , he said , every Cuban migrant picked up at sea should at least have legal representation .\tCC IN RB DT , PRP VBD , DT JJ NN VBN RP IN NN MD IN JJS VBP JJ NN .\nMonday , the Coast Guard repatriated 15 Cubans found standing on an old bridge piling between islands of the Florida Keys .\tNNP , DT NNP NNP VBD CD NNS VBN VBG IN DT JJ NN VBG IN NNS IN DT NNP NNPS .\nThe government ruled the bridge , which is no longer in use , did not count as dry land .\tDT NN VBD DT NN , WDT VBZ RB RB IN NN , VBD RB VB IN JJ NN .\nThe NATO-led force in Afghanistan says it has killed about 200 Taleban fighters in the first two days of a major military operation in southern Afghanistan .\tDT JJ NN IN NNP VBZ PRP VBZ VBN IN CD NNP NNS IN DT JJ CD NNS IN DT JJ JJ NN IN JJ NNP .\nCanada confirms that four of its soldiers in the NATO-led force have been killed in the operation , dubbed Medusa , which started early Saturday .\tNNP VBZ IN CD IN PRP$ NNS IN DT JJ NN VBP VBN VBN IN DT NN , VBD NNP , WDT VBD JJ NNP .\nIts aim is to flush out insurgents from the Panjwayi district of Kandahar province .\tPRP$ NN VBZ TO VB RP NNS IN DT NNP NN IN NNP NN .\nThe NATO-led force says Afghan police captured more than 80 suspected Taleban fighters and a further 180 were seen fleeing the area .\tDT JJ NN VBZ JJ NNS VBD JJR IN CD JJ NNP NNS CC DT JJ CD VBD VBN VBG DT NN .\nA British reconnaissance plane that was flying in support of the operation crashed Saturday , killing all 14 British military personnel on board .\tDT JJ NN NN WDT VBD VBG IN NN IN DT NN VBD NNP , VBG DT CD JJ JJ NNS IN NN .\nBritish officials say the crash was due to a technical problem , not enemy fire .\tJJ NNS VBP DT NN VBD JJ TO DT JJ NN , RB NN NN .\nRussia and Venezuela have signed two energy cooperation pacts that promote closer ties between Russia 's state-run natural gas monopoly , Gazprom , and Venezuela 's state oil firm ( PDVSA ) .\tNNP CC NNP VBP VBN CD NN NN NNS WDT VBP JJR NNS IN NNP POS JJ JJ NN NN , NNP , CC NNP POS NN NN NN LRB NNP RRB .\nRussian President Dmitry Medvedev and his Venezuelan counterpart , Hugo Chavez , attended the signing ceremony Friday in the Russian city of Orenburg .\tJJ NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBD DT NN NN NNP IN DT JJ NN IN NNP .\nRussian energy officials recently announced they will expand their investment in Venezuela 's oil industry .\tJJ NN NNS RB VBD PRP MD VB PRP$ NN IN NNP POS NN NN .\nRussia also says it will lend Venezuela $ 1 billion to buy military hardware .\tNNP RB VBZ PRP MD VB NNP $ CD CD TO VB JJ NN .\nPresident Chavez is a harsh critic of the United States .\tNNP NNP VBZ DT JJ NN IN DT NNP NNPS .\nHis visit to Russia comes as relations between Moscow and Washington have soured in the wake of last month 's conflict between Russia and U.S. ally Georgia .\tPRP$ NN TO NNP VBZ IN NNS IN NNP CC NNP VBP VBN IN DT NN IN JJ NN POS NN IN NNP CC NNP NN NNP .\nThe Venezuelan leader was scheduled to hold talks with French leaders Friday as part of a trip that has so far taken him to Cuba , China and Russia .\tDT JJ NN VBD VBN TO VB NNS IN JJ NNS NNP IN NN IN DT NN WDT VBZ RB RB VBN PRP TO NNP , NNP CC NNP .\nThe U.S. Army has dropped all criminal charges against an officer in connection with the beating deaths of two detainees in Afghanistan in 2002 .\tDT NNP NNP VBZ VBN DT JJ NNS IN DT NN IN NN IN DT NN NNS IN CD NNS IN NNP IN CD .\nAn investigating officer has cleared Captain Christopher Beiring of dereliction of duty and making FALSE statements .\tDT VBG NN VBZ VBN NNP NNP NNP IN NN IN NN CC VBG JJ NNS .\nCaptain Beiring commanded a reserve military police unit stationed at a U.S. detention center in Bagram where the prisoners died .\tNNP NNP VBD DT NN JJ NN NN VBD IN DT NNP NN NN IN NNP WRB DT NNS VBD .\nHe says his unit did not receive enough training from the Army to properly handle the detainees .\tPRP VBZ PRP$ NN VBD RB VB JJ NN IN DT NNP TO RB VB DT NNS .\nThe investigating officer now says Captain Beiring was ' sorely challenged at every step ' but did the best job he could .\tDT VBG NN RB VBZ NNP NNP VBD `` RB VBN IN DT NN `` CC VBD DT JJS NN PRP MD .\nFourteen servicemen , including military interrogators , have been charged in the case .\tCD NNS , VBG JJ NNS , VBP VBN VBN IN DT NN .\nCaptain Beiring was the only officer facing charges .\tNNP NNP VBD DT JJ NN VBG NNS .\nThree members of his unit and some interrogators have either been convicted or pleaded guilty to abuse , assault or other charges .\tCD NNS IN PRP$ NN CC DT NNS VBP RB VBN VBN CC VBN JJ TO NN , NN CC JJ NNS .\nThe International Olympic Committee has voted to eliminate baseball and softball from the 2012 Summer Games in London .\tDT NNP NNP NNP VBZ VBN TO VB NN CC NN IN DT CD NNPS NNPS IN NNP .\nThe sports were the only two of 28 that failed to win a majority of votes in a ballot of members at an IOC meeting Friday in Singapore .\tDT NNS VBD DT JJ CD IN CD WDT VBD TO VB DT NN IN NNS IN DT NN IN NNS IN DT NNP NN NNP IN NNP .\nThe last time a sport was eliminated from the Olympics was in 1936 , when water polo was removed .\tDT JJ NN DT NN VBD VBN IN DT NNP VBD IN CD , WRB NN NN VBD VBN .\nThe committee will now consider replacing baseball and softball with two sports from a waiting list .\tDT NN MD RB VB VBG NN CC NN IN CD NNS IN DT VBG NN .\nUp for consideration are karate , golf , squash , rugby and roller sports .\tIN IN NN VBP JJ , NN , NN , NN CC NN NNS .\nMeanwhile , the IOC announced that equestrian events for the 2008 Beijing Games will be held in Hong Kong .\tRB , DT NNP VBD IN JJ NNS IN DT CD NNP NNPS MD VB VBN IN NNP NNP .\nOrganizers in Beijing had pushed for the move , saying a number of equine diseases are prevalent in the Chinese capital .\tNNS IN NNP VBD VBN IN DT NN , VBG DT NN IN JJ NNS VBP JJ IN DT JJ NN .\nInsurgents in Iraq Tuesday released a video tape that shows a U.S. citizen held hostage and saying his life is in danger .\tNNS IN NNP NNP VBD DT NN NN WDT VBZ DT NNP NN VBD NN CC VBG PRP$ NN VBZ IN NN .\nOn the video , a man identifying himself as Roy Hallams said he is not seeking help from President Bush , but wants Arab leaders , especially Libyan leader Muammar Gadhafi , to help secure his release .\tIN DT NN , DT NN VBG PRP IN NNP NNP VBD PRP VBZ RB VBG NN IN NNP NNP , CC VBZ JJ NNS , RB JJ NN NNP NNP , TO VB VB PRP$ NN .\nThe U.S. Embassy in Iraq said it had no immediate information on the man or the authenticity of the video .\tDT NNP NNP IN NNP VBD PRP VBD DT JJ NN IN DT NN CC DT NN IN DT NN .\nMeanwhile , eight Chinese laborers who were held hostage by militants in Iraq for five days last week are on their way home .\tRB , CD JJ NNS WP VBD VBN NN IN NNS IN NNP IN CD NNS JJ NN VBP IN PRP$ NN NN .\nThe group flew out of Baghdad earlier Tuesday , accompanied by several Chinese diplomats .\tDT NN VBD IN IN NNP RBR NNP , VBN IN JJ JJ NNS .\nInsurgents said they released the men after Beijing promised to discourage its citizens from traveling to Iraq .\tNNS VBD PRP VBD DT NNS IN NNP VBD TO VB PRP$ NNS IN VBG TO NNP .\nDiamonds , and the women who wear them , have inspired generations of jewelers and fashion houses .\tNNS , CC DT NNS WP VBP PRP , VBP VBN NNS IN NNS CC NN NNS .\nAnd that is the theme of a new exhibition called Diamond Divas at the Antwerp World Diamond Center in Belgium .\tCC DT VBZ DT NN IN DT JJ NN VBD NNP NNP IN DT NNP NNP NNP NNP IN NNP .\nSome 80 percent of the world 's rough diamonds are bought and sold in Antwerp .\tDT CD NN IN DT NN POS JJ NNS VBP VBN CC VBN IN NNP .\nThe exhibition pulls together 76 pieces of diamond jewelry worn by the rich and famous , royalty and Hollywood stars .\tDT NN VBZ RB CD NNS IN NN NN VBN IN DT JJ CC JJ , NN CC NNP NNS .\nNina-Maria Potts reports .\tNNP NNP VBZ .\nFormer U.S. Defense Secretary William Perry has called on the Bush administration to follow suggestions made by the Iraq Study Group on the best way to move forward in Iraq .\tJJ NNP NNP NNP NNP NNP VBZ VBN IN DT NNP NN TO VB NNS VBN IN DT NNP NNP NNP IN DT JJS NN TO VB RB IN NNP .\nIn the Democrats ' weekly radio address Saturday , Perry said the U.S.-led coalition in Iraq failed to get support from Iraq 's regional neighbors and should not have disbanded the Iraqi army - leaving hundreds of thousands of young , armed men with nothing to do .\tIN DT NNPS POS JJ NN NN NNP , NNP VBD DT JJ NN IN NNP VBD TO VB NN IN NNP POS JJ NNS CC MD RB VB VBN DT JJ NN : VBG NNS IN NNS IN JJ , JJ NNS IN DT TO VB .\nPerry was defense secretary under former President Bill Clinton .\tNNP VBD NN NN IN JJ NNP NNP NNP .\nHe echoed the Iraq Study Group 's call for a change in mission .\tPRP VBD DT NNP NNP NNP POS NN IN DT NN IN NN .\nHe said the United States should free up and re-set its ground forces , accelerate the training of the Iraqi army and police force , and set a goal of having all rapid-reaction forces out of Iraq by 2008 .\tPRP VBD DT NNP NNPS MD VB RP CC VB PRP$ NN NNS , VB DT NN IN DT JJ NN CC NN NN , CC VBD DT NN IN VBG DT JJ NNS IN IN NNP IN CD .\nThe Iraq Study Group is a bipartisan panel commissioned by President Bush .\tDT NNP NNP NNP VBZ DT JJ NN VBN IN NNP NNP .\nIt released its findings earlier this month .\tPRP VBD PRP$ NNS RBR DT NN .\nThe lion dance is one of China 's most distinctive cultural arts and dates back thousands of years .\tDT NN NN VBZ CD IN NNP POS JJS JJ JJ NNS CC NNS RB NNS IN NNS .\nIt is performed throughout the year at important occasions and is believed to bring happiness , longevity and good luck .\tPRP VBZ VBN IN DT NN IN JJ NNS CC VBZ VBN TO VB NN , NN CC JJ NN .\nAs Chinese people emigrated around the world , they carried their traditions with them .\tIN JJ NNS VBN IN DT NN , PRP VBD PRP$ NNS IN PRP .\nVOA 's Susy Tekunan recently visited a martial arts school in Washington where the lion dance is an important part of the curriculum .\tNNP POS NNP NNP RB VBD DT JJ NNS NN IN NNP WRB DT NN NN VBZ DT JJ NN IN DT NN .\nJim Bertel narrates .\tNNP NNP VBZ .\nIraq 's parliament has extended a state of emergency in the country for a month , giving security forces greater powers to subdue violence .\tNNP POS NN VBZ VBN DT NN IN NN IN DT NN IN DT NN , VBG NN NNS JJR NNS TO VB NN .\nParliament approved the extension Tuesday while meeting for the first time after a recess lasting several months .\tNNP VBD DT NN NNP IN VBG IN DT JJ NN IN DT NN VBG JJ NNS .\nThe vote came as Iraq 's president said Iraqi forces will be ready to take over the country 's security by the end of next year and predicted that British troops will be able to leave Iraq at that time .\tDT NN VBD IN NNP POS NN VBD JJ NNS MD VB JJ TO VB RP DT NN POS NN IN DT NN IN JJ NN CC VBD IN JJ NNS MD VB JJ TO VB NNP IN DT NN .\nJalal Talabani spoke after meeting in Baghdad Tuesday with British Foreign Secretary Margaret Beckett .\tNNP NNP VBD IN NN IN NNP NNP IN JJ NNP NNP NNP NNP .\nAnd the U.S. military said three U.S. service members were killed Monday in Iraq 's troubled western province of Al Anbar .\tCC DT NNP NN VBD CD NNP NN NNS VBD VBN NNP IN NNP POS JJ JJ NN IN NNP NNP .\nTheir deaths bring to at least 10 the number of coalition troops killed in recent days .\tPRP$ NNS VBP TO IN JJS CD DT NN IN NN NNS VBN IN JJ NNS .\nThe French parliament has approved an anti-terrorism law that includes increasing the use of video surveillance .\tDT JJ NN VBZ VBN DT JJ NN WDT VBZ VBG DT NN IN NN NN .\nThe new law permits increased video surveillance at mosques , department stores , subways and airports .\tDT JJ NN VBZ VBN NN NN IN NNS , NN NNS , NNS CC NNS .\nIt also extends the detention period for terrorism suspects from four to up to six days .\tPRP RB VBZ DT NN NN IN NN NNS IN CD CC RB TO CD NNS .\nCivil rights groups and other critics of the measure say it will erode basic civil liberties .\tJJ NNS NNS CC JJ NNS IN DT NN VBP PRP MD VB JJ JJ NNS .\nFrance has been on high alert since July , when Islamist suicide bombers killed more than 50 people in attacks on the London transport system .\tNNP VBZ VBN IN JJ NN IN NNP , WRB NNP NN NNS VBD JJR IN CD NNS IN NNS IN DT NNP NN NN .\nAmerican actors Angelina Jolie and Brad Pitt are donating $ 2 million to a wildlife sanctuary in Namibia , where they spent Christmas with their children .\tJJ NNS NNP NNP CC NNP NNP VBP VBG $ CD CD TO DT NN NN IN NNP , WRB PRP VBD NNP IN PRP$ NNS .\nThe donation to the Naankuse Lodge and Wildlife Sanctuary was made through the couple 's Jolie-Pitt foundation in the name of their daughter , Shiloh , who was born in Namibia .\tDT NN TO DT NNP NNP CC NNP NNP VBD VBN IN DT NN POS JJ NN IN DT NN IN PRP$ NN , NNP , WP VBD VBN IN NNP .\nIn a statement , Jolie said the couple wants their daughter to be ' very involved ' and to grow up with an understanding of the country of her birth .\tIN DT NN , NNP VBD DT NN VBZ PRP$ NN TO VB `` RB JJ `` CC TO VB RP IN DT NN IN DT NN IN PRP$ NN .\nJolie said the owners of the sanctuary are old friends , who have impressed her with their ' hard work and dedication ' to the conservation of Namibia 's land and wildlife .\tNNP VBD DT NNS IN DT NN VBP JJ NNS , WP VBP VBN PRP IN PRP$ `` JJ NN CC NN `` TO DT NN IN NNP POS NN CC NN .\nJolie and Pitt spent the Christmas holiday with their six children at the lodge , which looks after injured animals , including baboons and leopards .\tNNP CC NNP VBD DT NNP NN IN PRP$ CD NNS IN DT NN , WDT VBZ IN JJ NNS , VBG NNS CC NNS .\nIn Israel , a key Labor Party lawmaker has said she will defect from the left-wing party to join Prime Minister Ariel Sharon 's new centrist party .\tIN NNP , DT JJ NNP NNP NN VBZ VBN PRP MD VB IN DT JJ NN TO VB NNP NNP NNP NNP POS JJ JJ NN .\nTuesday 's announcement from Dalia Itzik has further fueled speculation that her close Labor ally , Shimon Peres , will also join forces with Prime Minister Sharon 's new Kadima party .\tNNP POS NN IN NNP NNP VBZ RB VBN NN IN PRP$ JJ NN NN , NNP NNP , MD RB VB NNS IN NNP NNP NNP POS JJ NNP NN .\nMr. Peres is expected to announce his decision on Wednesday .\tNNP NNP VBZ VBN TO VB PRP$ NN IN NNP .\nMr. Peres recently lost his party leadership post to Amir Peretz .\tNNP NNP RB VBD PRP$ NN NN NN TO NNP NNP .\nMr. Peretz withdrew Labor from Mr. Sharon 's Likud-led coalition , forcing early elections scheduled for March .\tNNP NNP VBD NN IN NNP NNP POS JJ NN , VBG JJ NNS VBN IN NNP .\nMr. Sharon quit Likud last week because he faced a revolt from right-wing deputies who opposed his decision to withdraw Israel from the Gaza Strip .\tNNP NNP VBD NNP JJ NN IN PRP VBD DT NN IN JJ NNS WP VBD PRP$ NN TO VB NNP IN DT NNP NNP .\nMr. Peres supported Mr. Sharon 's disengagement plan .\tNNP NNP VBD NNP NNP POS NN NN .\nThe United Nations Food and Agriculture Organization says climate change may hurt food production in tropical areas .\tDT NNP NNPS NNP CC NNP NNP VBZ NN NN MD VB NN NN IN JJ NNS .\nFAO Director-General Jacques Diouf told an audience in India Tuesday that crop yields will probably fall in the seasonally dry tropics as global average temperatures rise .\tNNP NNP NNP NNP VBD DT NN IN NNP NNP IN NN NNS MD RB VB IN DT RB JJ NNS IN JJ NN NNS NN .\nHe said agriculture dependent on rain in semi-arid regions is particularly at risk .\tPRP VBD NN JJ IN NN IN JJ NNS VBZ RB IN NN .\nHe also said India might lose nearly one-fifth of its rain-fed cereal production .\tPRP RB VBD NNP MD VB RB NN IN PRP$ JJ NN NN .\nDiouf said small temperature increases of one to three degrees Celsius could boost crop yields in most industrialized countries , which mostly have colder climates , but that higher temperatures would hurt food production at lower altitudes .\tNNP VBD JJ NN NNS IN CD CC CD NNS NNP MD VB NN NNS IN JJS JJ NNS , WDT RB VBP NN NNS , CC IN JJR NNS MD VB NN NN IN JJR NNS .\nDiouf called for a concentrated scientific effort to help adapt crops to the likely future conditions .\tNNP VBD IN DT JJ JJ NN TO VB VB NNS TO DT JJ NN NNS .\nAs an example , he cited genetically modifying crops to be more tolerant of drought , extreme temperatures , soil acidity and salinity .\tIN DT NN , PRP VBD RB VBG NNS TO VB JJR NN IN NN , JJ NNS , NN NN CC NN .\nTop-ranked Roger Federer of Switzerland and second-ranked Andy Roddick of the United States will meet in the final of the Kooyong Classic exhibition tennis tournament in Melbourne .\tJJ NNP NNP IN NNP CC JJ NNP NNP IN DT NNP NNPS MD VB IN DT JJ IN DT NNP NNP NN NN NN IN NNP .\nIt could be a possible preview of the Australian Open title match .\tPRP MD VB DT JJ NN IN DT JJ NNP NN NN .\nThe year 's first grand slam event begins Monday , also in Melbourne .\tDT NN POS JJ JJ NN NN VBZ NNP , RB IN NNP .\nFederer advanced in this round-robin event by beating Tim Henman of Britain , 06-Apr , 06-Feb , in 61 minutes on Friday .\tNNP VBD IN DT JJ NN IN VBG NNP NNP IN NNP , CD , CD , IN CD NNS IN NNP .\nRoddick had advanced to the final on Thursday after compatriot Andre Agassi retired from their match in the first set with an injured hip .\tNNP VBD VBN TO DT JJ IN NNP IN NN NNP NNP VBD IN PRP$ NN IN DT JJ NN IN DT JJ NN .\nAgassi plans to make an unscheduled appearance against Britain 's Tim Henman following the Federer-Roddick final Saturday .\tNNP VBZ TO VB DT JJ NN IN NNP POS NNP NNP VBG DT JJ JJ NNP .\nAgassi wants to test the hip to see if he 'll be fit for next week 's Australian Open , an event he 's won four times .\tNNP VBZ TO VB DT NN TO VB IN PRP MD VB JJ IN JJ NN POS JJ NNP , DT NN PRP VBZ VBN CD NNS .\nPresident Bush is to discuss the situation in Iraq Wednesday , during a speech to National Guard troops in the western state of Idaho .\tNNP NNP VBZ TO VB DT NN IN NNP NNP , IN DT NN TO NNP NNP NNS IN DT JJ NN IN NNP .\nMr. Bush is expected to talk about efforts to combat the insurgency , and progress being made on the drafting of a new Iraqi constitution .\tNNP NNP VBZ VBN TO VB IN NNS TO VB DT NN , CC NN VBG VBN IN DT NN IN DT JJ JJ NN .\nHe will also meet with relatives of soldiers killed in Iraq and Afghanistan .\tPRP MD RB VB IN NNS IN NNS VBN IN NNP CC NNP .\nOn Tuesday , Mr. Bush again rejected calls for the immediate withdrawal of U.S. troops from Iraq , and said that doing so is ' advocating a policy that would weaken the United States . '\tIN NNP , NNP NNP RB VBD NNS IN DT JJ NN IN NNP NNS IN NNP , CC VBD IN VBG RB VBZ `` VBG DT NN WDT MD VB DT NNP NNPS . ``\nHe made the comment in response to a reporter 's question about Cindy Sheehan , the woman who lost a son in Iraq and led a protest near the president 's Texas ranch demanding to see him .\tPRP VBD DT NN IN NN TO DT NN POS NN IN NNP NNP , DT NN WP VBD DT NN IN NNP CC VBD DT NN IN DT NN POS NNP NN VBG TO VB PRP .\nIsraeli troops have killed three suspected Palestinian militants in the West Bank .\tJJ NNS VBP VBN CD JJ JJ NNS IN DT NNP NNP .\nWitnesses say Israeli forces entered the town of Nablus Thursday and opened fire on a building where militants were believed to be hiding .\tNNS VBP JJ NNS VBD DT NN IN NNP NNP CC VBD NN IN DT NN WRB NNS VBD VBN TO VB VBG .\nIsrael says its troops were searching for wanted militants , and shot the three men as they tried to flee .\tNNP VBZ PRP$ NNS VBD VBG IN JJ NNS , CC VBD DT CD NNS IN PRP VBD TO VB .\nHours later , militants in the Gaza Strip fired a rocket into an Israeli military base , injuring five soldiers .\tNNS RB , NNS IN DT NNP NNP VBD DT NN IN DT JJ JJ NN , VBG CD NNS .\nIsraeli military officials say troops responded with artillery fire at fields used by militants to launch rockets at Israel .\tJJ JJ NNS VBP NNS VBD IN NN NN IN NNS VBN IN NNS TO VB NNS IN NNP .\nPalestinian medical officials say a Palestinian man was killed in the strike .\tJJ JJ NNS VBP DT JJ NN VBD VBN IN DT NN .\nSeparately , an Israeli court Thursday sentenced an Israeli woman to three years in prison after she pleaded guilty to collaborating with Palestinian militants .\tRB , DT JJ NN NNP VBD DT JJ NN TO CD NNS IN NN IN PRP VBD JJ TO VBG IN JJ NNS .\nVenezuela 's vice president has defended North Korea 's nuclear missile tests , saying he sees a double standard in the West 's condemnation of the move .\tNNP POS JJ NN VBZ VBN NNP NNP POS JJ NN NNS , VBG PRP VBZ DT JJ NN IN DT NNP POS NN IN DT NN .\nVice President Jose Vicente Rangel told reporters Thursday that North Korea is exercising the right of any country to conduct such tests .\tJJ NNP NNP NNP NNP VBD NNS NNP IN NNP NNP VBZ VBG DT NN IN DT NN TO VB JJ NNS .\nVenezuelan President Hugo Chavez , known for his criticism of Washington , had said that he may visit Pyongyang on his next Asian tour .\tJJ NNP NNP NNP , VBN IN PRP$ NN IN NNP , VBD VBN IN PRP MD VB NNP IN PRP$ JJ JJ NN .\nNorth Korea this week launched seven missiles , including a long-range Taepodong-2 believed to be able to reach the United States .\tNNP NNP DT NN VBD CD NNS , VBG DT JJ NNP VBN TO VB JJ TO VB DT NNP NNPS .\nThe tests have prompted condemnation from countries worldwide , including the U.S. , Russia , Australia , Japan , South Korea and China .\tDT NNS VBP VBN NN IN NNS NN , VBG DT NNP , NNP , NNP , NNP , NNP NNP CC NNP .\nBritish scientists say an underground volcano that erupted more than 2,000 years ago may be partly responsible for Antarctica 's receding ice sheet .\tJJ NNS VBP DT JJ NN WDT VBD JJR IN CD NNS RB MD VB RB JJ IN NNP POS VBG NN NN .\nThe scientists , writing Sunday in the journal Nature Geoscience , say the hidden volcano is still active , and its persistent heat may be contributing to a nearby glacier 's rapid melting .\tDT NNS , VBG NNP IN DT NN NNP NNP , VBP DT JJ NN VBZ RB JJ , CC PRP$ JJ NN MD VB VBG TO DT JJ NN POS JJ NN .\nThe British team says the volcano erupted about 23 centuries ago , roughly in the year 325 B.C. , blowing a hole through hundreds of meters of ice and spewing a 12-kilometer-high plume of ash and steam .\tDT JJ NN VBZ DT NN VBD IN CD NNS RB , RB IN DT NN CD NNP , VBG DT NN IN NNS IN NNS IN NN CC VBG DT JJ NN IN NN CC NN .\nRadar images of volcanic debris trapped beneath the Antarctic ice sheet helped the scientists locate the volcano in Antarctica 's Hudson Mountains and date the eruption .\tNN NNS IN JJ NN VBN IN DT JJ NN NN VBD DT NNS VBP DT NN IN NNP POS NNP NNPS CC NN DT NN .\nDespite their discoveries , the British Antarctic experts say global warming and rising sea temperatures are still the biggest cause of the southern continent 's accelerating ice melt .\tIN PRP$ NNS , DT JJ JJ NNS VBP JJ NN CC VBG NN NNS VBP RB DT JJS NN IN DT JJ NN POS VBG NN NN .\nPresident Bush is scheduled to make another visit to the U.S. Gulf Coast region Tuesday to get an update on recovery efforts following Hurricane Katrina .\tNNP NNP VBZ VBN TO VB DT NN TO DT NNP NNP NNP NN NNP TO VB DT NN IN NN NNS VBG NNP NNP .\nMr. Bush is to meet business and community leaders in storm hit Gulfport , Mississippi before traveling to New Orleans , Louisiana .\tNNP NNP VBZ TO VB NN CC NN NNS IN NN NN NNP , NNP IN VBG TO NNP NNP , NNP .\nThere , he is to visit a business trying to recover from Katrina and get an on-the-ground briefing about Tropical Storm Rita .\tEX , PRP VBZ TO VB DT NN VBG TO VB IN NNP CC VB DT JJ NN IN JJ NN NNP .\nForecasters are warning this latest storm could move into the Gulf of Mexico and possibly hit New Orleans later this week .\tNNS VBP VBG DT JJS NN MD VB IN DT NNP IN NNP CC RB VBD NNP NNP RB DT NN .\nLouisiana Governor Kathleen Blanco has urged residents in the state 's coastal regions to prepare for evacuation .\tNNP NNP NNP NNP VBZ VBN NNS IN DT NN POS JJ NNS TO VB IN NN .\nAnd New Orleans Mayor Ray Nagin has suspended the scheduled return of New Orleans citizens .\tCC NNP NNP NNP NNP NNP VBZ VBN DT JJ NN IN NNP NNP NNS .\nLater this week , President Bush is expected to visit several cities in Texas , Arkansas and Alabama that have taken in people left homeless by Katrina .\tRB DT NN , NNP NNP VBZ VBN TO VB JJ NNS IN NNP , NNP CC NNP WDT VBP VBN IN NNS VBN JJ IN NNP .\nChinese officials say a chemical factory has illegally discharged waste water into a river in southern China , affecting the drinking supply of about 40,000 people .\tJJ NNS VBP DT NN NN VBZ RB VBN NN NN IN DT NN IN JJ NNP , VBG DT NN NN IN IN CD NNS .\nThe official Xinhua news agency says an eight kilometer stretch of the Sancha River in Guangdong province has been tainted by the chemical discharge .\tDT JJ NNP NN NN VBZ DT CD NN NN IN DT NNP NNP IN NNP NN VBZ VBN VBN IN DT NN NN .\nIt did not specify the type of chemical , but said large quantities of dead fish and poisoned livestock have been reported .\tPRP VBD RB VB DT NN IN NN , CC VBD JJ NNS IN JJ NN CC VBN NN VBP VBN VBN .\nXinhua said the local government has ordered waterworks companies and residents to avoid using the river for its water supply , particularly in the town of Changqi .\tNNP VBD DT JJ NN VBZ VBN NN NNS CC NNS TO VB VBG DT NN IN PRP$ NN NN , RB IN DT NN IN NNP .\nThe name of the chemical company responsible for the spill was not available .\tDT NN IN DT NN NN JJ IN DT NN VBD RB JJ .\nTurkish Prime Minister Recep Tayyip Erdogan has rejected a European Union request that his country move towards recognizing Cyprus before next week 's EU summit .\tJJ NNP NNP NNP NNP NNP VBZ VBN DT NNP NNP NN IN PRP$ NN VB IN VBG NNP IN JJ NN POS NNP NN .\nTurkish officials announced the development in Brussels following talks Friday between the Prime Minister and EU Commission President Jose Manuel Barroso .\tJJ NNS VBD DT NN IN NNP VBG NNS NNP IN DT NNP NNP CC NNP NNP NNP NNP NNP NNP .\nThe two leaders spoke one week before a scheduled EU summit , at which European leaders are expected to approve membership negotiations with Turkey and to set a date for the talks .\tDT CD NNS VBD CD NN IN DT VBN NNP NN , IN WDT JJ NNS VBP VBN TO VB NN NNS IN NNP CC TO VB DT NN IN DT NNS .\nEU officials say that Turkey should recognize Cyprus , an EU member state .\tNNP NNS VBP IN NNP MD VB NNP , DT NNP NN NN .\nAnkara currently has diplomatic ties only with the Turkish-dominated part of the divided island .\tNNP RB VBZ JJ NNS RB IN DT JJ NN IN DT VBN NN .\nAlso , Friday , Turkey again expressed concern at reports that the European Union wants to toughen entry requirements for Ankara , in the face of resistance of some states to Turkish EU membership .\tRB , NNP , NNP RB VBD NN IN NNS IN DT NNP NNP VBZ TO VB NN NNS IN NNP , IN DT NN IN NN IN DT NNS IN JJ NNP NN .\nJubilant Palestinians and militant factions celebrating the Israeli pullout from the Gaza Strip are gathering in an abandoned Jewish settlement for a mass rally .\tNNP NNS CC JJ NNS VBG DT JJ NN IN DT NNP NNP VBP VBG IN DT JJ JJ NN IN DT JJ NN .\nPalestinian factions were expected , at least temporarily , to set aside their internal rivalries and join in a unified show of support at Neve Dekalim for the Palestinian Authority and its president , Mahmoud Abbas .\tJJ NNS VBD VBN , IN JJS RB , TO VB RP PRP$ JJ NNS CC VB IN DT JJ NN IN NN IN NNP NNP IN DT JJ NNP CC PRP$ NN , NNP NNP .\nHowever , leaders of three main militant factions -- Hamas , Islamic Jihad and the Democratic Front for the Liberation of Palestine -- warned Wednesday they will not submit to government plans to disarm their groups .\tRB , NNS IN CD JJ JJ NNS IN NNP , NNP NNP CC DT JJ NN IN DT NN IN NNP : VBD NNP PRP MD RB VB TO NN NNS TO VB PRP$ NNS .\nIn other developments , the Palestinian Authority says it will close its side of the Gaza-Egyptian border this evening , to stop surging crowds of Palestinians from crossing into Egypt .\tIN JJ NNS , DT JJ NNP VBZ PRP MD VB PRP$ NN IN DT JJ NN DT NN , TO VB VBG NNS IN NNS IN VBG IN NNP .\nEgypt says it will seal its side as well , after clearing Gaza revelers from Egyptian territory .\tNNP VBZ PRP MD VB PRP$ NN IN RB , IN VBG NNP NNS IN JJ NN .\nAfghan presidential candidate Abdullah Abdullah says partial election results show blatant evidence of ' state-engineered ' vote fraud , such as polling districts in which every vote was cast for President Hamid Karzai .\tJJ JJ NN NNP NNP VBZ JJ NN NNS VBP JJ NN IN `` JJ `` NN NN , JJ IN VBG NNS IN WDT DT NN VBD VBN IN NNP NNP NNP .\nMr. Abdullah Saturday urged the international community to intervene , saying that if Afghanistan 's next leader is chosen through a fraudulent vote , it could fuel instability in the country .\tNNP NNP NNP VBD DT JJ NN TO VB , VBG IN IN NNP POS JJ NN VBZ VBN IN DT JJ NN , PRP MD VB NN IN DT NN .\nAfghanistan 's election commission says it stands by the partial results it has released on its Web site .\tNNP POS NN NN VBZ PRP VBZ IN DT JJ NNS PRP VBZ VBN IN PRP$ NNP NN .\nOfficials postponed the release of the next round of election results , which were due Saturday .\tNNS VBD DT NN IN DT JJ NN IN NN NNS , WDT VBD JJ NNP .\nIt is not clear if they made that decision based on a request from Mr. Abdullah .\tPRP VBZ RB JJ IN PRP VBD DT NN VBN IN DT NN IN NNP NNP .\nThe most recent figures , based on returns from 60 percent of the country 's polling stations show Mr. Karzai leading Mr. Abdullah with about 47 percent of the vote .\tDT RBS JJ NNS , VBN IN NNS IN CD NN IN DT NN POS NN NNS VBP NNP NNP VBG NNP NNP IN IN CD NN IN DT NN .\nCandidates need at least 50 percent of the vote to avoid a runoff .\tNNS VBP IN JJS CD NN IN DT NN TO VB DT NN .\nBritain 's former Northern Ireland Secretary , Mo Mowlam , who helped secure the province 's 1998 Good Friday peace accord , has died at the age of 55 .\tNNP POS JJ NNP NNP NNP , NNP NNP , WP VBD VB DT NN POS CD JJ NNP NN NN , VBZ VBN IN DT NN IN CD .\nA family spokesman says Ms. Mowlam died Friday morning at a hospice south of London in Canterbury .\tDT NN NN VBZ NNP NNP VBD NNP NN IN DT NN NN IN NNP IN NNP .\nFriends say radiotherapy treatments Ms. Mowlam underwent for a brain tumor had affected her balance .\tNNS VBP NN NNS NNP NNP VBN IN DT NN NN VBD VBN PRP$ NN .\nShe recently fell , hit her head and never regained consciousness .\tPRP RB VBD , VBD PRP$ NN CC RB VBD NN .\nMs. Mowlam , known for her lively and direct style , was elected to parliament in 1987 and became Northern Ireland Secretary in 1997 .\tNNP NNP , VBN IN PRP$ JJ CC JJ NN , VBD VBN TO NN IN CD CC VBD JJ NNP NNP IN CD .\nShe withdrew from politics in 2001 .\tPRP VBD IN NNS IN CD .\nBoth British Prime Minister Blair and his Irish counterpart Bertie Ahern paid tribute to Ms. Mowlam for her energetic efforts on behalf of peace in Northern Ireland .\tDT JJ NNP NNP NNP CC PRP$ JJ NN NNP NNP VBD NN TO NNP NNP IN PRP$ JJ NNS IN NN IN NN IN NNP NNP .\nThe Good Friday peace accord halted decades of sectarian violence in the British province .\tDT JJ NNP NN NN VBD NNS IN JJ NN IN DT JJ NN .\nIsrael 's ruling Likud party is urging a parliamentary referendum on Prime Minister Ariel Sharon 's controversial pullout plan from the Gaza Strip and parts of the West Bank .\tNNP POS NN NNP NN VBZ VBG DT JJ NN IN NNP NNP NNP NNP POS JJ NN NN IN DT NNP NNP CC NNS IN DT NNP NNP .\nLikud 's Central Committee voted overwhelmingly Thursday to call for a non-binding referendum on the disengagement plan .\tNNP POS NNP NNP VBD RB NNP TO VB IN DT JJ NN IN DT NN NN .\nParty members who are against the withdrawal say they will join forces with far-right legislators later this month when the state budget comes up for a vote .\tNNP NNS WP VBP IN DT NN VBP PRP MD VB NNS IN JJ NNS RB DT NN WRB DT NN NN VBZ RP IN DT NN .\nFailure to pass the budget would force snap elections and shelve the Gaza plan .\tNN TO VB DT NN MD VB JJ NNS CC VB DT NNP NN .\nThursday 's vote follows a meeting Wednesday between Vice Prime Minister and Labor Party leader Shimon Peres and Palestinian Cabinet Minister Mohammed Dahlan .\tNNP POS NN VBZ DT NN NNP IN NNP NNP NNP CC NNP NNP NN NNP NNP CC JJ NNP NNP NNP NNP .\nMr. Peres said one of the topics he discussed was a possible handover of businesses held by Jewish settlers in Gaza to Palestinians , when Israel pulls out of the territory .\tNNP NNP VBD CD IN DT NNS PRP VBD VBD DT JJ NN IN NNS VBN IN JJ NNS IN NNP TO NNS , WRB NNP VBZ IN IN DT NN .\nU.S. Marines in Iraq say two leaders of a militant group linked to wanted terrorist Abu Musab al-Zarqawi have been arrested .\tNNP NNPS IN NNP VBP CD NNS IN DT JJ NN VBN TO JJ JJ NNP NNP NNP VBP VBN VBN .\nThe U.S. military , which announced the arrests Saturday , said Marines had captured the two cell leaders during raids in the city of Ramadi earlier this month .\tDT NNP NN , WDT VBD DT NNS NNP , VBD NNP VBD VBN DT CD NN NNS IN NNS IN DT NN IN NNP RBR DT NN .\nThe two men are accused of executing 11 Iraqi National Guardsmen , as well as planting bombs and smuggling foreign militants into Iraq .\tDT CD NNS VBP VBN IN VBG CD JJ NNP NNP , RB RB IN VBG NNS CC VBG JJ NNS IN NNP .\nThe arrests came as rescue workers in Baghdad uncovered seven more bodies from the rubble of a Christmas Eve suicide bombing in the city 's upscale Mansour district .\tDT NNS VBD IN NN NNS IN NNP VBD CD JJR NNS IN DT NN IN DT NNP NNP NN VBG IN DT NN POS JJ NNP NN .\nThe attack left nine dead .\tDT NN VBD CD JJ .\nMeanwhile , police in Najaf say at least three civilians were killed in a car bomb attack .\tRB , NN IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN NN NN .\nIraqi officials say bombs in Baghdad have wounded 15 people .\tJJ NNS VBP NNS IN NNP VBP VBN CD NNS .\nAuthorities say a roadside bomb in central Baghdad 's Allawi district wounded six .\tNNS VBP DT NN NN IN JJ NNP POS NNP NN VBD CD .\nAnother roadside bomb wounded four people in the Iraqi capital 's western Iskan district .\tDT NN NN VBD CD NNS IN DT JJ NN POS JJ NNP NN .\nOfficials say a third bomb wounded three people in the southwestern Jihad district , and a fourth in western Baghdad 's Harithiya district wounded two .\tNNS VBP DT JJ NN VBD CD NNS IN DT JJ NNP NN , CC DT JJ IN JJ NNP POS NNP NN VBD CD .\nThe violence comes just two days after Iraqi police said masked gunmen killed 14 people during a brazen daytime robbery at jewelry stores in the capital .\tDT NN VBZ RB CD NNS IN JJ NN VBD VBN NNS VBD CD NNS IN DT JJ NN NN IN NN NNS IN DT NN .\nThe head of Iran 's civil aviation authority says 29 people were killed and several others injured in a plane crash in the northeastern city of Mashhad .\tDT NN IN NNP POS JJ NN NN VBZ CD NNS VBD VBN CC JJ NNS VBN IN DT NN NN IN DT JJ NN IN NNP .\nSpeaking to Iranian state television , Nourollah Rezai Niaraki rejected earlier reports that as many 80 people died in the crash Friday .\tVBG TO JJ NN NN , NNP NNP NNP VBD JJR NNS IN IN JJ CD NNS VBD IN DT NN NNP .\nHe said the plane carrying 148 passengers skidded off the runway during landing and crashed , sparking a fire .\tPRP VBD DT NN VBG CD NNS VBD RP DT NN IN NN CC VBD , VBG DT NN .\nTelevision reports showed fire crews dousing the plane , as smoke rose from a hole in the center of the fuselage .\tNN NNS VBD NN NNS VBG DT NN , IN NN VBD IN DT NN IN DT NN IN DT NN .\nThe Russian-made Tupolev airliner from Iran Airtour was arriving in Mashhad from the southern city of Bandar Abbas .\tDT JJ NNP NN IN NNP NNP VBD VBG IN NNP IN DT JJ NN IN NNP NNP .\nThe incident is the latest crash involving Iran 's aging fleet of aircraft .\tDT NN VBZ DT JJS NN VBG NNP POS VBG NN IN NN .\nA military jet went down in January , killing 11 people .\tDT JJ NN VBD RB IN NNP , VBG CD NNS .\nAnd a cargo plane crashed into a Tehran building in December , killing 115 people .\tCC DT NN NN VBD IN DT JJ NN IN NNP , VBG CD NNS .\nU.S. Secretary of State Condoleezza Rice is in the Middle East to urge that Israeli and Palestinian leaders work together on Israel 's withdrawal from the Gaza Strip .\tNNP NNP IN NNP NNP NNP VBZ IN DT NNP NNP TO VB IN JJ CC JJ NNS VBP RB IN NNP POS NN IN DT NNP NNP .\nMs. Rice arrived in Israel Thursday , following an upsurge in Israeli-Palestinian violence .\tNNP NNP VBD IN NNP NNP , VBG DT NN IN JJ NN .\nShe said both sides must resist efforts by terrorists to destroy what she called the ' moment of hope ' brought about by the Gaza withdrawal .\tPRP VBD DT NNS MD VB NNS IN NNS TO VB WP PRP VBD DT `` NN IN NN `` VBN RB IN DT NNP NN .\nAhead of her arrival , Israeli Deputy Prime Minister Ehud Olmert said Israel is considering speeding up its Gaza Strip withdrawal plan , to avoid further protests by opponents of the pullout .\tNN IN PRP$ NN , JJ NNP NNP NNP NNP NNP VBD NNP VBZ VBG VBG RP PRP$ NNP NNP NN NN , TO VB JJ NNS IN NNS IN DT NN .\nOn the Palestinian side , Prime Minister Ahmed Qureia said Palestinians will celebrate ' every single meter ' of land abandoned by Israel .\tIN DT JJ NN , NNP NNP NNP NNP VBD NNS MD VB `` DT JJ NN `` IN NN VBN IN NNP .\nBut Israeli Prime Minister Ariel Sharon stressed that he plans to keep large settlement blocs in the West Bank under Israeli control .\tCC JJ NNP NNP NNP NNP VBD IN PRP VBZ TO VB JJ NN NNS IN DT NNP NNP IN JJ NN .\nVenezuelan President Hugo Chavez says he is close to arranging an initial meeting with Colombian rebels for talks on releasing scores of hostages .\tJJ NNP NNP NNP VBZ PRP VBZ JJ TO VBG DT JJ NN IN JJ NNS IN NNS IN VBG NNS IN NNS .\nChavez says his efforts to mediate an exchange of hostages held by the Revolutionary Armed Forces of Colombia , or FARC , are going well and said he expects a meeting to take place in coming days .\tNNP VBZ PRP$ NNS TO VB DT NN IN NNS VBN IN DT NNP NNP NNS IN NNP , CC NNP , VBP VBG RB CC VBD PRP VBZ DT NN TO VB NN IN VBG NNS .\nChavez made the comments Friday after meeting in Ballenas with Colombian President Alvaro Uribe .\tNNP VBD DT NNS NNP IN NN IN NNP IN JJ NNP NNP NNP .\nThe Venezuelan leader has offered to meet with representatives of the FARC to discuss a proposed swap of some 45 hostages in rebel custody .\tDT JJ NN VBZ VBN TO VB IN NNS IN DT NNP TO VB DT VBN NN IN DT CD NNS IN JJ NN .\nThey include soldiers , police officers , French-Colombian politician Ingrid Betancourt and three Americans .\tPRP VBP NNS , NN NNS , JJ NN NNP NNP CC CD NNS .\nLast month , Colombia rejected an initial request by Venezuela to create a demilitarized zone for the meeting .\tJJ NN , NNP VBD DT JJ NN IN NNP TO VB DT JJ NN IN DT NN .\nColombia has one of the world 's highest kidnapping rates .\tNNP VBZ CD IN DT NN POS JJS NN NNS .\nThe death toll from southern Asia 's tsunami rose to around 1,70,000 Monday as Sri Lanka added more than 7,000 victims to its tally .\tDT NN NN IN JJ NNP POS NN VBD TO IN CD NNP IN NNP NNP VBD JJR IN CD NNS TO PRP$ NN .\nThe December 26 tsunami and underwater earthquake left 38,000 people dead on the island nation - the second highest casualty rate after Indonesia , where nearly 1,15,000 are confirmed dead .\tDT NNP CD NNS CC JJ NN VBD CD NNS JJ IN DT NN NN IN DT JJ JJS NN NN IN NNP , WRB RB CD VBP VBN JJ .\nMeanwhile , Indonesian and United Nations officials say they have no information regarding a possible terrorist attack on foreign aid workers in Indonesia 's devastated Aceh province .\tRB , JJ CC NNP NNP NNS VBP PRP VBP DT NN VBG DT JJ JJ NN IN JJ NN NNS IN NNP POS JJ NNP NN .\nDenmark 's Foreign Ministry Monday said ' imminent ' terrorist attacks were planned on relief workers in the region , but gave no details .\tNNP POS NNP NNP NNP VBD `` JJ `` JJ NNS VBD VBN IN NN NNS IN DT NN , CC VBD DT NNS .\nMuslim separatists in Indonesia 's Aceh region have been fighting for independence for more than three decades .\tNNP NNS IN NNP POS NNP NN VBP VBN VBG IN NN IN JJR IN CD NNS .\nThey agreed to a temporary ceasefire shortly after the tsunami disaster .\tPRP VBD TO DT JJ NN RB IN DT NN NN .\nA closely-watched measure of future U.S. economic activity rose in November after five months of declining readings .\tDT JJ NN IN JJ NNP JJ NN VBD IN NNP IN CD NNS IN VBG NNS .\nThe index of leading economic indicators was up two tenths of a percent ( at a reading of 115.2 ) .\tDT NN IN VBG JJ NNS VBD RB CD NNS IN DT NN LRB IN DT NN IN CD RRB .\nThe index is assembled by a business research group called the Conference Board in New York .\tDT NN VBZ VBN IN DT NN NN NN VBN DT NNP NNP IN NNP NNP .\nThese experts examine factors like manufacturing , interest rates , consumer expectations , and stock prices that are thought to give hints about economic performance three to six months in the future .\tDT NNS VB NNS IN NN , NN NNS , NN NNS , CC NN NNS WDT VBP VBN TO VB NNS IN JJ NN CD CC CD NNS IN DT NN .\nGerman Chancellor Gerhard Schroeder Monday repeated his call to end the European Union 's ban on arms sales to China .\tJJ NNP NNP NNP NNP VBD PRP$ NN TO VB DT NNP NNP POS NN IN NNS NNS TO NNP .\nAs Mr. Schroeder visited Beijing , Chinese officials signed agreements to buy $ 1.3 billion worth of Airbus jetliners and hundreds of millions of dollars worth of other German-made goods , including locomotives .\tIN NNP NNP VBD NNP , JJ NNS VBD NNS TO VB $ CD CD NN IN NNP NNS CC NNS IN NNS IN NNS NN IN JJ JJ NNS , VBG NNS .\nMr. Schroeder met Monday with Prime Minister Wen Jiabao .\tNNP NNP VBD NNP IN NNP NNP NNP NNP .\nThe German chancellor opposes the European Union 's ban on weapons sales to China , imposed after the bloody 1989 crackdown on pro-democracy demonstrators in Beijing .\tDT JJ NN VBZ DT NNP NNP POS NN IN NNS NNS TO NNP , VBN IN DT JJ CD NN IN JJ NNS IN NNP .\nHis stand has been criticized by opponents in Germany , and the European Parliament renewed the sanctions last month .\tPRP$ NN VBZ VBN VBN IN NNS IN NNP , CC DT NNP NNP VBD DT NNS JJ NN .\nMr. Schroeder travels to Tokyo Wednesday for talks with top Japanese officials .\tNNP NNP VBZ TO NNP NNP IN NNS IN JJ JJ NNS .\nHigh-powered U.S. lobbyist Jack Abramoff has pleaded guilty to fraud and tax evasion charges , clearing the way for him to cooperate with a federal corruption probe that could implicate several top members of Congress .\tJJ NNP NN NNP NNP VBZ VBN JJ TO NN CC NN NN NNS , VBG DT NN IN PRP TO VB IN DT JJ NN NN WDT MD VB JJ JJ NNS IN NNP .\nAbramoff is implicated in two separate investigations .\tNNP VBZ VBN IN CD JJ NNS .\nHe is accused of defrauding two lenders in Florida in a deal to buy a cruise line , and he is being investigated in Washington for offering trips and other gifts to lawmakers , including former House Majority Leader Tom DeLay .\tPRP VBZ VBN IN VBG CD NNS IN NNP IN DT NN TO VB DT NN NN , CC PRP VBZ VBG VBN IN NNP IN VBG NNS CC JJ NNS TO NNS , VBG JJ NNP NNP NNP NNP NNP .\nAs part of his plea-bargain , he is expected to cooperate with federal investigators , meaning he could provide names of U.S. congressmen with whom he had illegal dealings .\tIN NN IN PRP$ JJ , PRP VBZ VBN TO VB IN JJ NNS , VBG PRP MD VB NNS IN NNP NNS IN WP PRP VBD JJ NNS .\nThe Associated Press reports the federal probe is focusing on as many as 20 lawmakers and aides .\tDT NNP NNP VBZ DT JJ NN VBZ VBG RP RB JJ IN CD NNS CC NNS .\nA number of lawmakers have tried to cut ties with Abramoff in recent weeks by returning his campaign contributions .\tDT NN IN NNS VBP VBN TO VB NNS IN NNP IN JJ NNS IN VBG PRP$ NN NNS .\nFive Americans who were detained and deported by China earlier this week for holding a pro-Tibetan independence demonstration on the base of Mount Everest say they feared for their lives while in Chinese custody .\tCD NNS WP VBD VBN CC VBN IN NNP RBR DT NN IN VBG DT JJ NN NN IN DT NN IN NNP NNP VBP PRP VBD IN PRP$ NNS IN IN JJ NN .\nThe five , including a Tibetan-American , arrived Friday in Nepal 's capital , Kathmandu .\tDT CD , VBG DT JJ , VBD NNP IN NNP POS NN , NNP .\nThe activists told reporters there Saturday they were psychologically intimidated while in custody .\tDT NNS VBD NNS RB NNP PRP VBD RB VBN IN IN NN .\nChinese authorities have not responded to the comments .\tJJ NNS VBP RB VBN TO DT NNS .\nThe activists were detained Wednesday after unfurling banners at Mount Everest , calling for Tibetan independence and criticizing the 2008 Beijing Olympics .\tDT NNS VBD VBN NNP IN VBG NNS IN NNP NNP , VBG IN JJ NN CC VBG DT CD NNP NNPS .\nBeijing officials want to take the Olympic torch up Mount Everest , the world 's tallest mountain , which has one side in Tibet .\tNNP NNS VBP TO VB DT NNP VB RP NNP NNP , DT NN POS JJS NN , WDT VBZ CD NN IN NNP .\nChinese troops occupied Tibet in the 1950s .\tJJ NNS VBD NNP IN DT NNS .\nBeijing continues to rule the region with a heavy hand .\tNNP VBZ TO VB DT NN IN DT JJ NN .\nA former minister in Iraq 's interim government says he is in talks with two Sunni insurgent groups , who are prepared to discuss ending their armed resistance to the U.S.-backed Iraqi government .\tDT JJ NN IN NNP POS JJ NN VBZ PRP VBZ IN NNS IN CD NNP JJ NNS , WP VBP VBN TO VB VBG PRP$ JJ NN TO DT JJ JJ NN .\nAyham al-Sammarei tells VOA that he has been meeting with representatives from the Islamic Army in Iraq and the Mujaheddin Army , and trying to find a way for them to enter negotiations with the government .\tNNP NNP VBZ NNP IN PRP VBZ VBN VBG IN NNS IN DT NNP NNP IN NNP CC DT NNP NNP , CC VBG TO VB DT NN IN PRP TO VB NNS IN DT NN .\nHe drew a distinction between these insurgent groups , which he said do not kill innocent people , and organizations like Abu Musab al-Zarqawi 's al-Qaeda in Iraq .\tPRP VBD DT NN IN DT JJ NNS , WDT PRP VBD VBP RB VB JJ NNS , CC NNS IN NNP NNP NNP POS NNP IN NNP .\nMr. al-Sammarei says the insurgent groups willing to consider negotiations want to defend themselves and want foreign forces to leave Iraq .\tNNP NNP VBZ DT JJ NNS JJ TO VB NNS VBP TO VB PRP CC VBP JJ NNS TO VB NNP .\nThe insurgency in Iraq is believed to be made up largely of the country 's Sunni Arab minority .\tDT NN IN NNP VBZ VBN TO VB VBN RP RB IN DT NN POS NNP NNP NN .\nRadical Iraqi Shi'ite cleric Moqtada al-Sadr says his recent call for ' open war ' is only against U.S. forces , not the Iraqi government .\tJJ JJ NNP NN NNP NNP VBZ PRP$ JJ NN IN `` JJ NN `` VBZ RB IN NNP NNS , RB DT JJ NN .\nIn a statement Friday , Sadr urged his Mahdi Army militia to stop the bloodshed against fellow Iraqis .\tIN DT NN NNP , NNP VBD PRP$ NNP NNP NN TO VB DT NN IN JJ NNS .\nMilitias loyal to Sadr have been battling coalition and Iraqi forces in Baghdad 's Sadr City district since late March .\tNNS JJ TO NNP VBP VBN VBG NN CC JJ NNS IN NNP POS NNP NNP NN IN JJ NNP .\nMore than 300 people have been killed in those clashes .\tJJR IN CD NNS VBP VBN VBN IN DT NNS .\nMeanwhile , the U.N. secretary-general 's special representative for children and armed conflict concluded a five-day visit to Iraq Friday .\tRB , DT NNP NN POS JJ NN IN NNS CC JJ NN VBD DT JJ NN TO NNP NNP .\nShe told reporters the trip convinced her that Iraq 's children are silent victims of the ongoing violence .\tPRP VBD NNS DT NN VBD PRP IN NNP POS NNS VBP JJ NNS IN DT JJ NN .\nRadhika Coomaraswamy also noted that Iraqi children are being recruited as suicide bombers by various militias and insurgent groups in Iraq .\tNNP NNP RB VBD IN JJ NNS VBP VBG VBN IN NN NNS IN JJ NNS CC JJ NNS IN NNP .\nEarlier Friday , the U.S. military said it detained more than 12 suspected terrorists , during operations targeting al-Qaida in Iraq forces .\tRBR NNP , DT NNP NN VBD PRP VBD JJR IN CD JJ NNS , IN NNS VBG NNP IN NNP NNS .\nFamily and friends of international aid worker Margaret Hassan held a memorial service at London 's Westminster Cathedral Saturday .\tNN CC NNS IN JJ NN NN NNP NNP VBD DT JJ NN IN NNP POS NNP NNP NNP .\nThe Roman Catholic Archbishop of Westminster , Cardinal Cormac Murphy-O'Connor , presided over the funeral mass .\tDT NNP NNP NNP IN NNP , NNP NNP NNP , VBD IN DT JJ NN .\nUnknown militants kidnapped Mrs. Hassan , the director of the Baghdad office of Care International , in October .\tJJ NNS VBD NNP NNP , DT NN IN DT NNP NN IN NNP NNP , IN NNP .\nA video released to the Arabic news channel Al-Jazeera in November showed the murder of a western woman , believed to be Mrs. Hassan .\tDT NN VBN TO DT NNP NN NN NNP IN NNP VBD DT NN IN DT JJ NN , VBN TO VB NNP NNP .\nHer body has never been recovered .\tPRP$ NN VBZ RB VBN VBN .\nBut family members and British officials say they believe she is dead .\tCC NN NNS CC JJ NNS VBP PRP VBP PRP VBZ JJ .\nMrs. Hassan was born in Ireland , but lived in Iraq for 30 years and was married to an Iraqi .\tNNP NNP VBD VBN IN NNP , CC VBD IN NNP IN CD NNS CC VBD VBN TO DT NN .\nAuthorities in Haiti have rescued two American children and a Haitian foster child who were kidnapped in Port-au-Prince late last week .\tNNS IN NNP VBP VBN CD JJ NNS CC DT JJ JJ NN WP VBD VBN IN NN RB JJ NN .\nPolice said the alleged kidnappers , dressed as policemen , snatched the children from their mother after she picked them up at school Friday .\tNNS VBD DT JJ NNS , VBN IN NNS , VBD DT NNS IN PRP$ NN IN PRP VBD PRP RP IN NN NNP .\nThe children were rescued the next day during a police raid on an apartment in the Delmas area of the capital city .\tDT NNS VBD VBN DT JJ NN IN DT NN NN IN DT NN IN DT NNP NN IN DT NN NN .\nAuthorities said they arrested seven suspects , including a former police officer .\tNNS VBD PRP VBN CD NNS , VBG DT JJ NN NN .\nThe children 's parents , Christian missionaries from the U.S. state of Oklahoma , said while the children were missing they received a phone call asking for $ 3,50,000 in ransom .\tDT NNS POS NNS , JJ NNS IN DT NNP NN IN NNP , VBD IN DT NNS VBD VBG PRP VBD DT NN NN VBG IN $ CD IN NN .\nThe kidnappings were the latest in a string of such incidents .\tDT NNS VBD DT JJS IN DT NN IN JJ NNS .\nEarlier this month , a U.S. grand jury indicted two Haitian men on charges of kidnapping a nine-year-old American girl in Port-au-Prince .\tRBR DT NN , DT NNP JJ NN VBD CD JJ NNS IN NNS IN VBG DT JJ JJ NN IN NN .\nShe was rescued after a week in captivity .\tPRP VBD VBN IN DT NN IN NN .\nLebanon 's government has banned public demonstrations on the eve of an opposition rally building on the public outcry over the assassination of former Prime Minister Rafik Hariri .\tNNP POS NN VBZ VBN JJ NNS IN DT NN IN DT NN NN NN IN DT JJ NN IN DT NN IN JJ NNP NNP NNP NNP .\nOpposition leaders say they will ignore the ban and hold a peaceful sit-in Monday .\tNN NNS VBP PRP MD VB DT NN CC VB DT JJ NN NNP .\nThe opposition called the protest and a one-day strike to coincide with a special session of parliament that is to consider a no-confidence motion against the Beirut government .\tDT NN VBD DT NN CC DT JJ NN TO VB IN DT JJ NN IN NN WDT VBZ TO VB DT JJ NN IN DT NNP NN .\nLebanon 's opposition blames the government and its backer Syria for the car bombing that killed Mr. Hariri and 14 others two weeks ago .\tNNP POS NN VBZ DT NN CC PRP$ NN NNP IN DT NN NN WDT VBD NNP NNP CC CD NNS CD NNS RB .\nBoth Damascus and Beirut have denied involvement .\tDT NNP CC NNP VBP VBN NN .\nMeanwhile , top U.S. envoy David Satterfield is in Beirut to press U.S. demands that Syria withdraw all of its estimated 14,000 troops in Lebanon .\tRB , JJ NNP NN NNP NNP VBZ IN NNP TO VB NNP NNS IN NNP VB DT IN PRP$ VBN CD NNS IN NNP .\nThe U.S. space agency , NASA , has marked the 20th anniversary of the Challengerspace shuttle tragedy that killed seven astronauts .\tDT NNP NN NN , NNP , VBZ VBN DT JJ NN IN DT NNP NN NN WDT VBD CD NNS .\nThe ceremony was held Saturday at the Kennedy Space Center in Cape Canaveral , Florida , where the Challenger was launched January 28 , 1986 .\tDT NN VBD VBN NNP IN DT NNP NNP NNP IN NNP NNP , NNP , WRB DT NNP VBD VBN NNP CD , CD .\nThe widow of the shuttle 's commander joined a top NASA official in laying a wreath at a memorial that bears the names of the seven astronauts and other fallen space explorers .\tDT NN IN DT NN POS NN VBD DT JJ NNP NN IN VBG DT NN IN DT NN WDT VBZ DT NNS IN DT CD NNS CC JJ JJ NN NNS .\nThe Challenger exploded 73 seconds after taking off under clear blue skies in near freezing temperatures .\tDT NNP VBD CD NNS IN VBG RP IN JJ JJ NNS IN JJ JJ NNS .\nThose on board included Christa McAuliffe , who was to be the first school teacher in space .\tDT IN NN VBD NNP NNP , WP VBD TO VB DT JJ NN NN IN NN .\nThe explosion , which was seen on live television and before an audience that included school children , was blamed on a failure of a seal in the shuttle 's solid rocket booster due to the cold weather .\tDT NN , WDT VBD VBN IN JJ NN CC IN DT NN WDT VBD NN NNS , VBD VBN IN DT NN IN DT NN IN DT NN POS JJ NN NN JJ TO DT JJ NN .\nThe World Trade Organization has authorized seven countries to levy multi-million dollar sanctions on U.S. imports .\tDT NNP NNP NNP VBZ VBN CD NNS TO VB JJ NN NNS IN NNP NNS .\nA spokesman in Geneva Friday said the European Union , India , Japan , South Korea , Brazil , Mexico and Canada can begin imposing tariffs in 2005 .\tDT NN IN NNP NNP VBD DT NNP NNP , NNP , NNP , NNP NNP , NNP , NNP CC NNP MD VB VBG NNS IN CD .\nThe sanctions are in response to a U.S. law known as the Byrd Amendment that the WTO ruled illegal in August .\tDT NNS VBP IN NN TO DT NNP NN VBN IN DT NNP NNP IN DT NNP VBD JJ IN NNP .\nThe law levies fines on products exported to the United States below market prices , and then , turns around and gives the money to the injured U.S. companies .\tDT NN VBZ NNS IN NNS VBN TO DT NNP NNPS IN NN NNS , CC RB , VBZ RB CC VBZ DT NN TO DT JJ NNP NNS .\nThe European Union says it hopes Washington will comply with WTO guidelines soon to avoid making use of the authorized sanctions .\tDT NNP NNP VBZ PRP VBZ NNP MD VB IN NNP NNS RB TO VB VBG NN IN DT JJ NNS .\nA U.S. official on Wednesday said the Bush Administration was working with Congress to make the law meet WTO criteria .\tDT NNP NN IN NNP VBD DT NNP NN VBD VBG IN NNP TO VB DT NN VB JJ NNS .\nGerman Chancellor Angela Merkel has called on the kidnappers of a German woman taken hostage in Iraq to release her immediately .\tJJ NNP NNP NNP VBZ VBN IN DT NNS IN DT JJ NN VBN NN IN NNP TO VB PRP RB .\nMs. Merkel told the Bild am Sonntag newspaper the government is doing all it can to rescue Susanne Osthoff and her Iraqi driver , who disappeared nine days ago , on November 25 .\tNNP NNP VBD DT NNP VBP NNP NN DT NN VBZ VBG DT PRP MD TO VB NNP NNP CC PRP$ JJ NN , WP VBD CD NNS RB , IN NNP CD .\nThe kidnappers said they would kill the woman if Germany does not end all support for the Iraqi government .\tDT NNS VBD PRP MD VB DT NN IN NNP VBZ RB VB DT NN IN DT JJ NN .\nThe magazines Der Spiegel and Focus reported that the ultimatum expired in the early hours of Friday .\tDT NNS NNP NNP CC NNP VBD IN DT NN VBD IN DT JJ NNS IN NNP .\nGerman Foreign Minister Frank-Walter Steinmeier said on Saturday that Germany had not been able to establish contact with the kidnappers .\tJJ NNP NNP NNP NNP VBD IN NNP IN NNP VBD RB VBN JJ TO VB NN IN DT NNS .\nTurkish authorities said they detained a man in Istanbul last week on suspicion of plotting to kill visiting U.S. President Barack Obama .\tJJ NNS VBD PRP VBD DT NN IN NNP JJ NN IN NN IN VBG TO VB VBG NNP NNP NNP NNP .\nA Turkish official said Tuesday the man was deemed mentally disturbed and released shortly after he was taken into custody .\tDT JJ NN VBD NNP DT NN VBD VBN RB VBN CC VBN RB IN PRP VBD VBN IN NN .\nThe arrest occurred Friday , two days before Mr. Obama even arrived in Turkey .\tDT NN VBD NNP , CD NNS IN NNP NNP RB VBD IN NNP .\nU.S. Secret Service spokesman Ed Donovan said Mr. Obama was never in any immediate danger .\tNNP NNP NNP NN NNP NNP VBD NNP NNP VBD RB IN DT JJ NN .\nHe added that the president 's security team is following up with Turkish authorities about the case , as is standard practice .\tPRP VBD IN DT NN POS NN NN VBZ VBG RP IN JJ NNS IN DT NN , IN VBZ JJ NN .\nThe White House does not comment about threats or the president 's security .\tDT NNP NNP VBZ RB VB IN NNS CC DT NN POS NN .\nA Saudi newspaper , al-Watan , has reported details that have not been confirmed by officials .\tDT JJ NN , NNP , VBZ VBN NNS WDT VBP RB VBN VBN IN NNS .\nIt said a man of Syrian origin confessed to plotting to stab Mr. Obama .\tPRP VBD DT NN IN JJ NN VBD TO VBG TO VB NNP NNP .\nThe newspaper said the man was carrying an Al-Jazeera identity card .\tDT NN VBD DT NN VBD VBG DT NNP NN NN .\nU.S. Secretary of State Condoleezza Rice says the United States has made mistakes in Iraq , but it was not a mistake to oust Saddam Hussein or to push for democracy in the Middle East .\tNNP NNP IN NNP NNP NNP VBZ DT NNP NNPS VBZ VBN NNS IN NNP , CC PRP VBD RB DT NN TO VB NNP NNP CC TO VB IN NN IN DT NNP NNP .\nIn an interview Saturday with the British Broadcasting Company , Rice said ' the birth of democracy is sometimes difficult . '\tIN DT NN NNP IN DT JJ NNP NN , NNP VBD `` DT NN IN NN VBZ RB JJ . ``\nEarlier she and British Foreign Secretary Jack Straw conferred with Muslim community leaders in Straw 's home city of Blackburn .\tRBR PRP CC JJ NNP NNP NNP NNP VBD IN NNP NN NNS IN NNP POS NN NN IN NNP .\nRice also visited the nearby city of Liverpool .\tNNP RB VBD DT JJ NN IN NNP .\nThe U.S. top diplomat is in Britain for two days at Straw 's invitation following his visit to Rice 's hometown last year .\tDT NNP JJ NN VBZ IN NNP IN CD NNS IN NNP POS NN VBG PRP$ NN TO NNP POS NN JJ NN .\nHundreds of anti-war protesters have followed Rice throughout her stay .\tNNS IN JJ NNS VBP VBN NNP IN PRP$ NN .\nU.S.-led coalition forces in Afghanistan say air strikes have killed at least 12 militants allegedly involved in sneaking foreign fighters from Pakistan into Afghanistan .\tJJ NN NNS IN NNP VBP NN NNS VBP VBN IN JJS CD NNS RB VBN IN VBG JJ NNS IN NNP IN NNP .\nThe coalition said in a statement Tuesday the overnight strikes hit a pair of bunkers in eastern Khost province .\tDT NN VBD IN DT NN NNP DT JJ NNS VBD DT NN IN NNS IN JJ NNP NN .\nThe operation targeted insurgents linked to Taliban militant leader Siraj Haqqani , who is accused of carrying out many attacks in Afghanistan .\tDT NN VBD NNS VBN IN NNP NN NN NNP NNP , WP VBZ VBN IN VBG RP JJ NNS IN NNP .\nThe exact number of militant casualties is still not clear .\tDT JJ NN IN JJ NNS VBZ RB RB JJ .\nMeanwhile , at a main border checkpoint in eastern Afghanistan , officials say a male suicide bomber disguised himself as a woman and attacked the Torkham crossing .\tRB , IN DT JJ NN NN IN JJ NNP , NNS VBP DT JJ NN NN VBN PRP IN DT NN CC VBD DT NNP VBG .\nAuthorities say the burqa-clad bomber blew himself up at the women 's crossing point , killing a police officer and a child .\tNNS VBP DT JJ NN VBD PRP RP IN DT NNS POS VBG NN , VBG DT NN NN CC DT NN .\nThey say the bombing also wounded at least 10 people .\tPRP VBP DT NN RB VBD IN JJS CD NNS .\nTorkham is one of the main border crossings between Pakistan and Afghanistan .\tNNP VBZ CD IN DT JJ NN NNS IN NNP CC NNP .\nJapan and the United States have signed an agreement to encourage cooperation on developing a missile defense system .\tNNP CC DT NNP NNPS VBP VBN DT NN TO VB NN IN VBG DT NN NN NN .\nJapanese Defense Minister Yoshinori Ono signed a memorandum of understanding Friday in Tokyo with U.S. Ambassador to Japan Howard Baker .\tJJ NNP NNP NNP NNP VBD DT NN IN NN NNP IN NNP IN NNP NNP TO NNP NNP NNP .\nUnder the agreement , Japan and the United States will exchange information on research , deployment and operations of a missile shield .\tIN DT NN , NNP CC DT NNP NNP MD VB NN IN NN , NN CC NNS IN DT NN NN .\nThe agreement comes one week after Japan adopted new defense policy guidelines that would allow the joint development of a missile defense system with the United States .\tDT NN VBZ CD NN IN NNP VBD JJ NN NN NNS WDT MD VB DT JJ NN IN DT NN NN NN IN DT NNP NNPS .\nThe five-year defense outline allows the sale of missile defense components to the United States for production of a missile shield .\tDT JJ NN NN VBZ DT NN IN NN NN NNS TO DT NNP NNPS IN NN IN DT NN NN .\nJapan says other arms export cases will be considered on a case-by-case basis .\tNNP VBZ JJ NNS NN NNS MD VB VBN IN DT JJ NN .\nEthiopians vote Sunday in a second round of elections for local government positions , despite an opposition boycott and criticism from a prominent international human rights group .\tNNS NN NNP IN DT JJ NN IN NNS IN JJ NN NNS , IN DT NN NN CC NN IN DT JJ JJ JJ NNS NN .\nThe first round of voting was last Sunday .\tDT JJ NN IN NN VBD JJ NNP .\nOpposition leaders claim that most of their candidates were disqualified from running or intimidated into dropping out .\tNN NNS VBP IN JJS IN PRP$ NNS VBD VBN IN VBG CC VBN IN VBG RP .\nThe ruling EPRDF party has denied those allegations , saying the electoral board registered every candidate who had the proper credentials .\tDT NN NNP NN VBZ VBN DT NNS , VBG DT JJ NN VBD DT NN WP VBD DT JJ NNS .\nThe rights group Human Rights Watch agrees with the opposition 's view , calling the elections ' a rubber stamp ' for the ruling party 's domination of power .\tDT NNS NN NNP NNP NNP VBZ IN DT NN POS NN , VBG DT NNS `` DT NN NN `` IN DT VBG NN POS NN IN NN .\nApproximately four million seats in parliament , city councils and neighborhood councils are at stake in the elections .\tRB CD CD NNS IN NN , NN NNS CC NN NNS VBP IN NN IN DT NNS .\nEthiopia has 26 million registered voters .\tNNP VBZ CD CD JJ NNS .\nThe leader of the Church of England says the British Broadcasting Corporation should air an appeal for humanitarian aid for civilians in the Gaza Strip .\tDT NN IN DT NNP IN NNP VBZ DT NNP NNP NNP MD VB DT NN IN JJ NN IN NNS IN DT NNP NNP .\nThe Archbishop of Canterbury , Rowan Williams , Sunday made his comments as more than 50 British lawmakers announced a petition urging the BBC to run the appeal .\tDT NN IN NNP , NNP NNP , NNP VBD PRP$ NNS IN JJR IN CD JJ NNS VBD DT NN VBG DT NNP TO VB DT NN .\nThe UK 's national broadcaster says it rejected the appeal because it did not want to harm its image as an impartial news source .\tDT NNP POS JJ NN VBZ PRP VBD DT NN IN PRP VBD RB VB TO VB PRP$ NN IN DT JJ NN NN .\nThe BBC also questioned whether the aid will reach those who need it .\tDT NNP RB VBD IN DT NN MD VB DT WP VBP PRP .\nThe organization seeking to advertise its appeal , the Disasters Emergency Committee , is a grouping of 13 aid agencies that aid people in crisis .\tDT NN VBG TO VB PRP$ NN , DT NNP NNP NNP , VBZ DT NN IN CD NN NNS IN VBP NNS IN NN .\nThe group says it is not political , and that it is seeking funds to help innocent people affected by the conflict in Gaza .\tDT NN VBZ PRP VBZ RB JJ , CC IN PRP VBZ VBG NNS TO VB JJ NNS VBN IN DT NN IN NNP .\nAuthorities in France say they have arrested 13 Turkish Kurds on suspicion of helping to finance terrorism .\tNNS IN NNP VBP PRP VBP VBN CD JJ NNS IN NN IN VBG TO VB NN .\nPolice say the Kurds are suspected of involvement in a money laundering network that funds the militant Kurdistan Workers Party , also known by the initials PKK .\tNNS VBP DT NNPS VBP VBN IN NN IN DT NN NN NN WDT VBZ DT JJ NNP NNP NNP , RB VBN IN DT NNS NNP .\nTurkey , the United States and the European Union classify the PKK as a terrorist organization .\tNNP , DT NNP NNPS CC DT NNP NNP VBP DT NNP IN DT JJ NN .\nPolice say Monday 's arrests in the suburbs of the capital are part of an investigation that began last July when two Kurds were arrested in Paris trying to exchange 2,00,000 euros ( about $ 2,60,000 ) in cash into other currencies .\tNNS VBP NNP POS NNS IN DT NNS IN DT NN VBP NN IN DT NN WDT VBD JJ NNP WRB CD NNS VBD VBN IN NNP VBG TO VB CD NNS LRB IN $ CD RRB IN NN IN JJ NNS .\nThe PKK has been fighting Turkey for autonomy since 1984 .\tDT NNP VBZ VBN VBG NNP IN NN IN CD .\nMore than 37,000 people have been killed in the conflict .\tJJR IN CD NNS VBP VBN VBN IN DT NN .\nMonday 's arrests took place in the Paris suburbs of Yvelines , Hauts-de-Seine , Seine-Saint-Denis , and the Val d' Oise .\tNNP POS NNS VBD NN IN DT NNP NNS IN NNP , NNP , NNP , CC DT NNP NNP NNP .\nChina says archaeologists have unearthed a 1,700-year-old complex of tombs in eastern China 's Zheijiang Province .\tNNP VBZ NNS VBP VBN DT JJ NN IN NNS IN JJ NNP POS NNP NNP .\nChina 's official Xinhua news agency says the tombs were first discovered by a forklift operator at a construction site near the port city of Ningbo .\tNNP POS JJ NNP NN NN VBZ DT NNS VBD JJ VBN IN DT NN NN IN DT NN NN IN DT JJ NN IN NNP .\nThe report says inscriptions in the tombs indicate they were built in 256-AD , and are the best-preserved ancient tombs ever discovered in the region .\tDT NN VBZ NNS IN DT NNS VBP PRP VBD VBN IN JJ , CC VBP DT JJ JJ NNS RB VBN IN DT NN .\nXinhua says there are figures of fish , beasts , dragons and phoenixes are etched in the walls .\tNNP VBZ EX VBP NNS IN NN , NNS , NNS CC NNS VBP VBN IN DT NNS .\nOther objects discovered at the site include porcelain vessels , copper money and bronze mirrors .\tJJ NNS VBN IN DT NN VBP NN NNS , NN NN CC NN NNS .\nAvril Lavigne and her husband have bought a home in the upscale Los Angeles neighborhood of Bel-Air .\tNNP NNP CC PRP$ NN VBP VBN DT NN IN DT JJ NNP NNP NN IN NNP .\nThe Los Angeles Times reports the 22-year-old pop-rock singer and her husband , Derek Whibley of the Canadian rock band Sum-41 , paid about $ 9.5 million for their new home .\tDT NNP NNP NNP VBZ DT JJ NN NN CC PRP$ NN , NNP NNP IN DT JJ NN NN NNP , VBD RB $ CD CD IN PRP$ JJ NN .\nBoasting eight bedrooms and 10 and one-half bathrooms , the three-story house also has an elevator , sauna , and garage space for 10 cars .\tVBG CD NNS CC CD CC JJ NNS , DT JJ NN RB VBZ DT NN , NN , CC NN NN IN CD NNS .\nAvril Lavigne , whose worldwide record sales top 26 million , was last year ranked the seventh most powerful Canadian in Hollywood by Canadian Business Magazine .\tNNP NNP , WP$ JJ NN NNS JJ CD CD , VBD JJ NN VBD DT JJ RBS JJ NN IN NNP IN NNP NNP NNP .\nHer third album , The Best Damn Thing , appears April 17 in the United States .\tPRP$ JJ NN , DT NNP NNP NNP , VBZ NNP CD IN DT NNP NNPS .\nThe Islamic Militant Group Hamas has claimed victory in Wednesday 's Palestinian legislative elections .\tDT NNP NNP NNP NNP VBZ VBN NN IN NNP POS JJ JJ NNS .\nThe claim has yet to be independently confirmed by the Palestinian electoral commission which is expected to issue official results later Thursday .\tDT NN VBZ RB TO VB RB VBN IN DT JJ JJ NN WDT VBZ VBN TO VB JJ NNS RB NNP .\nThe Hamas victory claim comes from Ismail Haniyeh a senior Hamas leader in the Gaza Strip .\tDT NNP NN NN VBZ IN NNP NNP DT JJ NNP NN IN DT NNP NNP .\nMr. Haniyeh says Hamas activists who observed the vote counting say Hamas has won more than 70 seats in the 132-seat legislature .\tNNP NNP VBZ NNP NNS WP VBD DT NN NN VBP NNP VBZ VBN JJR IN CD NNS IN DT JJ NN .\nPalestinian electoral officials have not confirmed the results , but an unnamed official from the Palestinian Authority says the results so far show Hamas winning .\tJJ JJ NNS VBP RB VBN DT NNS , CC DT JJ NN IN DT JJ NNP VBZ DT NNS RB RB VBP NNP VBG .\nOfficial preliminary results are expected to be released later Thursday .\tJJ JJ NNS VBP VBN TO VB VBN RB NNP .\nIsrael , the United States and the European Union say they will not deal with any Palestinian government that includes Hamas unless the group disarms and agrees to recognize Israel , something Hamas officials say they will not do .\tNNP , DT NNP NNPS CC DT NNP NNP VBP PRP MD RB VB IN DT JJ NN WDT VBZ NNP IN DT NN VBZ CC VBZ TO VB NNP , DT NNP NNS VBP PRP MD RB VB .\nThailand 's military government has selected the head of the country 's Constitution Drafting Council in what is seen as a first step toward restoring democracy after last year 's military coup .\tNNP POS JJ NN VBZ VBN DT NN IN DT NN POS NNP NNP NNP IN WP VBZ VBN IN DT JJ NN IN VBG NN IN JJ NN POS JJ NN .\nFollowing his election to the council Monday , political science professor Noranit Setabutr said a new draft constitution would be completed within 180 days .\tVBG PRP$ NN TO DT NN NNP , JJ NN NN NNP NNP VBD DT JJ NN NN MD VB VBN IN CD NNS .\nHe said the new constitution must be acceptable to the Thai public and bring about democracy .\tPRP VBD DT JJ NN MD VB JJ TO DT JJ NN CC VB RB NN .\nMembers of Thailand 's military overthrew the government of former Prime Minister Thaksin Shinawatra last September .\tNNS IN NNP POS JJ NN DT NN IN JJ NNP NNP NNP NNP JJ NNP .\nThey accused him of exploiting the old constitution to amass more personal power than his office afforded him .\tPRP VBD PRP IN VBG DT JJ NN TO VB RBR JJ NN IN PRP$ NN VBD PRP .\nThe coup leaders have promised to hold a general election under a new constitution within a year .\tDT NN NNS VBP VBN TO VB DT JJ NN IN DT JJ NN IN DT NN .\nMr. Thaksin is living outside the country while he is being investigated for corruption and abuse of power at home .\tNNP NNP VBZ VBG IN DT NN IN PRP VBZ VBG VBN IN NN CC NN IN NN IN NN .\nRussian President Vladimir Putin says he believes Iran is cooperating sufficiently with the United Nations nuclear agency and U.N. sanctions will cause new problems .\tJJ NNP NNP NNP VBZ PRP VBZ NNP VBZ VBG RB IN DT NNP NNP JJ NN CC NNP NNS MD VB JJ NNS .\nMr. Putin 's remarks were broadcast Sunday on American television , but the interview was conducted Friday .\tNNP NNP POS NNS VBD VBN NNP IN JJ NN , CC DT NN VBD VBN NNP .\nThe Russian leader said Iran 's president told him he wanted continued negotiations with Britain , France and Germany .\tDT JJ NN VBD NNP POS NN VBD PRP PRP VBD VBN NNS IN NNP , NNP CC NNP .\nThe three European countries , backed by the United States , have been trying to convince Iran to suspend its nuclear fuel enrichment program .\tDT CD JJ NNS , VBN IN DT NNP NNPS , VBP VBN VBG TO VB NNP TO VB PRP$ JJ NN NN NN .\nRussia is helping Iran build a new nuclear energy plant .\tNNP VBZ VBG NNP VB DT JJ JJ NN NN .\nRescuers working at a flooded coal mine in central China have recovered the bodies of 39 miners following an accident more than two weeks ago .\tNNS VBG IN DT VBN NN NN IN JJ NNP VBP VBN DT NNS IN CD NNS VBG DT NN JJR IN CD NNS RB .\nThe official Xinhua news agency said Saturday recovery teams are still searching for three miners missing and presumed dead .\tDT JJ NNP NN NN VBD NNP NN NNS VBP RB VBG IN CD NNS VBG CC VBN JJ .\nThe miners have been trapped underground at the Sigou Coal Mine in Henan province since December 9 , when a nearby river overflowed its banks and water rushed into the shaft .\tDT NNS VBP VBN VBN RB IN DT NNP NNP NNP IN NNP NN IN NNP CD , WRB DT JJ NN VBD PRP$ NNS CC NN VBD IN DT NN .\nXinhua says 10 mine officials have been detained and will face ' stern punishment ' for the accident .\tNNP VBZ CD NN NNS VBP VBN VBN CC MD VB `` JJ NN `` IN DT NN .\nChina 's coal mines are the world 's deadliest , with more than 5,000 deaths reported every year in fires , floods and other disasters .\tNNP POS NN NNS VBP DT NN POS JJS , IN JJR IN CD NNS VBN DT NN IN NNS , NNS CC JJ NNS .\nThe Venezuelan information ministry has dismissed criticism by the Organization of American States of proposed media legislation being debated in the Venezuelan Congress .\tDT JJ NN NN VBZ VBN NN IN DT NNP IN NNP NNPS IN VBN NNS NN VBG VBN IN DT JJ NNP .\nAn information ministry spokesman Wednesday said the OAS , which said the proposal may restrict freedom of expression and political dissent , should stop meddling in Venezuela 's domestic political affairs .\tDT NN NN NN NNP VBD DT NNP , WDT VBD DT NN MD VB NN IN NN CC JJ NN , MD VB VBG IN NNP POS JJ JJ NNS .\nThe proposed law bans vulgar language , depictions of alcohol and drug consumption , gambling , sex and violence during the daylight hours .\tDT JJ NN VBZ JJ NN , NNS IN NN CC NN NN , NN , NN CC NN IN DT JJ NNS .\nIt allows the government to shut down stations that show violence , and to impose 18-day jail sentences for broadcasting FALSE information .\tPRP VBZ DT NN TO VB RP NNS WDT VBP NN , CC TO VB JJ NN NNS IN VBG JJ NN .\nThe ministry said the bill is in rigorous compliance with press freedoms guaranteed under the constitution and international treaties .\tDT NN VBD DT NN VBZ IN JJ NN IN NN NNS VBN IN DT NN CC JJ NNS .\nThe trial in Kosovo of six ethnic Albanians suspected of war crimes has opened in the town of Gniljane , southeast of the capital Pristina .\tDT NN IN NNP IN CD JJ NNS VBN IN NN NNS VBZ VBN IN DT NN IN NNP , NN IN DT NN NNP .\nU.N. police and NATO-led peacekeepers arrested former fighter with the Kosovo Liberation Army , Selim Krasniqi , and several of his associates last year in Prizren .\tNNP NNS CC JJ NNS VBN JJ NN IN DT NNP NNP NNP , NNP NNP , CC NN IN PRP$ NNS JJ NN IN NNP .\nFive of the accused appeared in court and one is being tried in absentia .\tCD IN DT VBN VBD IN NN CC CD VBZ VBG VBN IN NN .\nThe defendants face charges of murder and other crimes against fellow ethnic Albanians during the conflict in Kosovo in the late 1990s .\tDT NNS VBP NNS IN NN CC JJ NNS IN JJ JJ NNS IN DT NN IN NNP IN DT JJ NNS .\nThe proceedings got underway about a week after gunmen shot and killed a witness in the case .\tDT NNS VBD NN IN DT NN IN NNS VBD CC VBD DT NN IN DT NN .\nAt the time of his arrest , Mr. Krasniqi was a commander of the Kosovo Protection Corps , a post-war civil defense group that deals with emergencies in Kosovo .\tIN DT NN IN PRP$ NN , NNP NNP VBD DT NN IN DT NNP NNP NNP , DT JJ JJ NN NN WDT VBZ IN NNS IN NNP .\nAuthorities say gunmen have abducted a British oil worker from a drilling rig off the coast of Nigeria .\tNNS VBP NNS VBP VBN DT JJ NN NN IN DT NN NN IN DT NN IN NNP .\nA spokesman for the U.S.-based operator , Transocean , said the attackers Saturday boarded the ' Trident Eight ' rig and seized one of the workers .\tDT NN IN DT JJ NN , NNP , VBD DT NNS NNP VBD DT `` NNP CD `` NN CC VBD CD IN DT NNS .\nThe spokesman said the other 23 people on the rig were left unharmed .\tDT NN VBD DT JJ CD NNS IN DT NN VBD VBN JJ .\nSuch kidnappings are common in the region , where criminal gangs are active , and where militants have demanded that the government give more of the region 's oil wealth to impoverished locals .\tJJ NNS VBP JJ IN DT NN , WRB JJ NNS VBP JJ , CC WRB NNS VBP VBN IN DT NN VB JJR IN DT NN POS NN NN TO JJ NNS .\nNearly 200 foreign workers have been abducted over the past year in the region .\tRB CD JJ NNS VBP VBN VBN IN DT JJ NN IN DT NN .\nMost have been released unharmed , often after a ransom was paid .\tJJS VBP VBN VBN JJ , RB IN DT NN VBD VBN .\nThe attacks have forced the shutdown of oil facilities , crippling Nigeria 's oil industry .\tDT NNS VBP VBN DT NN IN NN NNS , VBG NNP POS NN NN .\nU.S. prosecutors have convicted five leaders of a now-defunct Muslim charity of channeling some $ 12 million to the Palestinian militant group Hamas .\tNNP NNS VBP VBN CD NNS IN DT JJ NN NN IN VBG DT $ CD CD TO DT JJ JJ NN NNP .\nA federal court in the southwestern city of Dallas , Texas Monday found the men guilty of 108 separate charges .\tDT JJ NN IN DT JJ NN IN NNP , NNP NNP VBD DT NNS NN IN CD JJ NNS .\nThey were former leaders of the Holy Land Foundation , which organizers said collected money for poverty-stricken Palestinians affected by the conflict with Israel .\tPRP VBD JJ NNS IN DT NNP NNP NNP , WDT NNS VBD VBN NN IN JJ NNS VBN IN DT NN IN NNP .\nThe group was the largest Muslim-run charity in the United States before it was shut down by the U.S. government in the wake of the September 11 , 2001 terrorist attacks .\tDT NN VBD DT JJS JJ NN IN DT NNP NNPS IN PRP VBD VBN RP IN DT NNP NN IN DT NN IN DT NNP CD , CD JJ NNS .\nThis was the second attempt at a trial .\tDT VBD DT JJ NN IN DT NN .\nThe first ended in October 2007 after the judge declared a mistrial .\tDT JJ VBN IN NNP CD IN DT NN VBD DT NN .\nThe defendants in the case denied sending money to Hamas and said the charges were politically motivated .\tDT NNS IN DT NN VBD VBG NN TO NNP CC VBD DT NNS VBD RB JJ .\nThe United States declared Hamas a terrorist organization in 1995 , making contributions to it illegal .\tDT NNP NNPS VBD NNP DT JJ NN IN CD , VBG NNS TO PRP JJ .\nThe Indus Valley civilization , one of the oldest in the world and dating back at least 5,000 years , spread over much of what is presently Pakistan .\tDT NNP NNP NN , CD IN DT JJS IN DT NN CC VBG RB IN JJS CD NNS , NN IN NN IN WP VBZ RB NNP .\nDuring the second millennium B.C. , remnants of this culture fused with the migrating Indo-Aryan peoples .\tIN DT JJ NN NNP , NNS IN DT NN VBD IN DT VBG JJ NNS .\nThe area underwent successive invasions in subsequent centuries from the Persians , Greeks , Scythians , Arabs ( who brought Islam ) , Afghans , and Turks .\tDT NN VBD JJ NNS IN JJ NNS IN DT NNS , NNS , NNS , NNS LRB WP VBD NNP RRB , NNS , CC NNS .\nThe Mughal Empire flourished in the 16th and 17th centuries ; the British came to dominate the region in the 18th century .\tDT NNP NNP VBD IN DT JJ CC JJ NNS ; DT NNS VBD TO VB DT NN IN DT JJ NN .\nThe separation in 1947 of British India into the Muslim state of Pakistan ( with West and East sections ) and largely Hindu India was never satisfactorily resolved , and India and Pakistan fought two wars - in 1947 - 48 and 1965 - over the disputed Kashmir territory .\tDT NN IN CD IN JJ NNP IN DT NNP NN IN NNP LRB IN NNP CC NNP NNS RRB CC RB NNP NNP VBD RB RB VBN , CC NNP CC NNP VBD CD NNS IN IN CD IN CD CC CD : IN DT JJ NNP NN .\nA third war between these countries in 1971 - in which India capitalized on Islamabad 's marginalization of Bengalis in Pakistani politics - resulted in East Pakistan becoming the separate nation of Bangladesh .\tDT JJ NN IN DT NNS IN CD : IN WDT NNP VBD IN NNP POS NN IN NNP IN JJ NNS : VBD IN NNP NNP VBG DT JJ NN IN NNP .\nIn response to Indian nuclear weapons testing , Pakistan conducted its own tests in 1998 .\tIN NN TO JJ JJ NNS NN , NNP VBD PRP$ JJ NNS IN CD .\nIndia-Pakistan relations have been rocky since the November 2008 Mumbai attacks , but both countries are taking small steps to put relations back on track .\tJJ NNS VBP VBN JJ IN DT NNP CD NNP NNS , CC DT NNS VBP VBG JJ NNS TO VB NNS RB IN NN .\nIn February 2008 , Pakistan held parliamentary elections and in September 2008 , after the resignation of former President MUSHARRAF , elected Asif Ali ZARDARI to the presidency .\tIN NNP CD , NNP VBD JJ NNS CC IN NNP CD , IN DT NN IN JJ NNP NNP , VBD NNP NNP NNP TO DT NN .\nPakistani government and military leaders are struggling to control domestic insurgents , many of whom are located in the tribal areas adjacent to the border with Afghanistan .\tJJ NN CC JJ NNS VBP VBG TO VB JJ NNS , NN IN WP VBP VBN IN DT JJ NNS JJ TO DT NN IN NNP .\nNew Caledonia has about 25 % of the world 's known nickel resources .\tNNP NNP VBZ RB CD NN IN DT NN POS VBN NN NNS .\nOnly a small amount of the land is suitable for cultivation , and food accounts for about 20 % of imports .\tRB DT JJ NN IN DT NN VBZ JJ IN NN , CC NN VBZ IN RB CD NN IN NNS .\nIn addition to nickel , substantial financial support from France - equal to more than 15 % of GDP - and tourism are keys to the health of the economy .\tIN NN TO NN , JJ JJ NN IN NNP IN JJ TO JJR IN CD NN IN NN : CC NN VBP NNS TO DT NN IN DT NN .\nSubstantial new investment in the nickel industry , combined with the recovery of global nickel prices , brightens the economic outlook for the next several years .\tJJ JJ NN IN DT NN NN , VBN IN DT NN IN JJ NN NNS , VBZ DT JJ NN IN DT JJ JJ NNS .\nPrior to the global economic crisis , Costa Rica enjoyed stable economic growth .\tRB TO DT JJ JJ NN , NNP NNP VBD JJ JJ NN .\nThe economy contracted 0.7 % in 2009 , but resumed growth at more than 3 % in 2010 .\tDT NN VBD CD NN IN CD , CC VBD NN IN JJR IN CD NN IN CD .\nWhile the traditional agricultural exports of bananas , coffee , sugar , and beef are still the backbone of commodity export trade , a variety of industrial and specialized agricultural products have broadened export trade in recent years .\tIN DT JJ JJ NNS IN NNS , NN , NN , CC NN VBP RB DT NN IN NN NN NN , DT NN IN JJ CC JJ JJ NNS VBP VBN NN NN IN JJ NNS .\nHigh value added goods and services , including microchips , have further bolstered exports .\tJJ NN JJ NNS CC NNS , VBG NNS , VBP RB VBN NNS .\nTourism continues to bring in foreign exchange , as Costa Rica 's impressive biodiversity makes it a key destination for ecotourism .\tNN VBZ TO VB RP JJ NN , IN NNP NNP POS JJ NN VBZ PRP DT JJ NN IN NN .\nForeign investors remain attracted by the country 's political stability and relatively high education levels , as well as the fiscal incentives offered in the free-trade zones ; and Costa Rica has attracted one of the highest levels of foreign direct investment per capita in Latin America .\tJJ NNS VBP VBN IN DT NN POS JJ NN CC RB JJ NN NNS , RB RB IN DT JJ NNS VBN IN DT JJ NNS ; CC NNP NNP VBZ VBN CD IN DT JJS NNS IN JJ JJ NN IN NN IN NNP NNP .\nHowever , many business impediments , such as high levels of bureaucracy , difficulty of enforcing contracts , and weak investor protection , remain .\tRB , JJ NN NNS , JJ IN JJ NNS IN NN , NN IN VBG NNS , CC JJ NN NN , VBP .\nPoverty has remained around 15-20 % for nearly 20 years , and the strong social safety net that had been put into place by the government has eroded due to increased financial constraints on government expenditures .\tNN VBZ VBN IN CD NN IN RB CD NNS , CC DT JJ JJ NN NN WDT VBD VBN VBN IN NN IN DT NN VBZ VBN JJ IN JJ JJ NNS IN NN NNS .\nUnlike the rest of Central America , Costa Rica is not highly dependent on remittances as they only represent about 2 % of GDP .\tIN DT NN IN NNP NNP , NNP NNP VBZ RB RB JJ IN NNS IN PRP RB VBP IN CD NN IN NN .\nImmigration from Nicaragua has increasingly become a concern for the government .\tNN IN NNP VBZ RB VBN DT NN IN DT NN .\nThe estimated 3,00,000 - 5,00,000 Nicaraguans in Costa Rica legally and illegally are an important source of - mostly unskilled - labor , but also place heavy demands on the social welfare system .\tDT JJ CD IN CD NNS IN NNP NNP RB CC RB VBP DT JJ NN IN : RB JJ IN NN , CC RB NN JJ NNS IN DT JJ NN NN .\nThe US-Central American-Dominican Republic Free Trade Agreement ( CAFTA-DR ) entered into force on 1 January 2009 , after significant delays within the Costa Rican legislature .\tDT JJ JJ NNP NNP NNP NNP LRB NNP RRB VBD IN NN IN CD NNP CD , IN JJ NNS IN DT JJ JJ NN .\nCAFTA-DR will likely lead to increased foreign direct investment in key sectors of the economy , including the insurance and telecommunications sectors recently opened to private investors .\tNNP MD RB VB IN JJ JJ JJ NN IN JJ NNS IN DT NN , VBG DT NN CC NN NNS RB VBD TO JJ NNS .\nPresident CHINCHILLA is likely to push for fiscal reform in the coming year , seeking to boost revenue , possibly through revised tax legislation , to fund an increase in security services and education .\tNNP NNP VBZ JJ TO VB IN JJ NN IN DT JJ NN , VBG TO VB NN , RB IN VBN NN NN , TO VB DT NN IN NN NNS CC NN .\nThe Mongols gained fame in the 13th century when under Chinggis KHAAN they established a huge Eurasian empire through conquest .\tDT NNS VBD NN IN DT JJ NN WRB IN NNP NNP PRP VBD DT JJ JJ NN IN NN .\nAfter his death the empire was divided into several powerful Mongol states , but these broke apart in the 14th century .\tIN PRP$ NN DT NN VBD VBN IN JJ JJ JJ NNS , CC DT VBD RB IN DT JJ NN .\nThe Mongols eventually retired to their original steppe homelands and in the late 17th century came under Chinese rule .\tDT NNS RB VBD TO PRP$ JJ NN NNS CC IN DT JJ JJ NN VBD IN JJ NN .\nMongolia won its independence in 1921 with Soviet backing and a Communist regime was installed in 1924 .\tNNP VBD PRP$ NN IN CD IN JJ NN CC DT JJ NN VBD VBN IN CD .\nThe modern country of Mongolia , however , represents only part of the Mongols ' historical homeland ; more ethnic Mongolians live in the Inner Mongolia Autonomous Region in the People 's Republic of China than in Mongolia .\tDT JJ NN IN NNP , RB , VBZ RB NN IN DT NNS POS JJ NN ; RBR JJ NNS VBP IN DT NNP NNP NNP NNP IN DT NNP POS NNP IN NNP IN IN NNP .\nFollowing a peaceful democratic revolution , the ex-Communist Mongolian People 's Revolutionary Party ( MPRP ) won elections in 1990 and 1992 , but was defeated by the Democratic Union Coalition ( DUC ) in the 1996 parliamentary election .\tVBG DT JJ JJ NN , DT NN JJ NNP POS NNP NNP LRB NNP RRB VBD NNS IN CD CC CD , CC VBD VBN IN DT NNP NNP NNP LRB NNP RRB IN DT CD JJ NN .\nThe MPRP won an overwhelming majority in the 2000 parliamentary election , but the party lost seats in the 2004 election and shared power with democratic coalition parties from 2004 - 8 .\tDT NNP VBD DT JJ NN IN DT CD JJ NN , CC DT NN VBD NNS IN DT CD NN CC JJ NN IN JJ NN NNS IN CD IN CD .\nThe MPRP regained a solid majority in the 2008 parliamentary elections but nevertheless formed a coalition government with the Democratic Party .\tDT NNP VBD DT JJ NN IN DT CD JJ NNS CC RB VBD DT NN NN IN DT NNP NNP .\nIn 2010 the MPRP voted to retake the name of the Mongolian People 's Party ( MPP ) , a name it used in the early 1920s .\tIN CD DT NNP VBD TO VB DT NN IN DT JJ NNP POS NNP LRB NNP RRB , DT NN PRP VBD IN DT JJ NNS .\nThe prime minister and most cabinet members are MPP members .\tDT JJ NN CC JJS NN NNS VBP NNP NNS .\nSenegal relies heavily on donor assistance .\tNNP VBZ RB IN NN NN .\nThe country 's key export industries are phosphate mining , fertilizer production , and commercial fishing .\tDT NN POS JJ NN NNS VBP JJ NN , NN NN , CC JJ NN .\nThe country is also working on iron ore and oil exploration projects .\tDT NN VBZ RB VBG IN NN NN CC NN NN NNS .\nIn January 1994 , Senegal undertook a bold and ambitious economic reform program with the support of the international donor community .\tIN NNP CD , NNP VBD DT JJ CC JJ JJ NN NN IN DT NN IN DT JJ NN NN .\nGovernment price controls and subsidies have been steadily dismantled .\tNN NN NNS CC NNS VBP VBN RB VBN .\nAfter seeing its economy contract by 2.1 % in 1993 , Senegal made an important turnaround , thanks to the reform program , with real growth in GDP averaging over 5 % annually during 1995 - 2007 .\tIN VBG PRP$ NN NN IN CD NN IN CD , NNP VBD DT JJ NN , NNS TO DT NN NN , IN JJ NN IN NN NN IN CD NN RB IN CD IN CD .\nAnnual inflation had been pushed down to the single digits .\tJJ NN VBD VBN VBN RB TO DT JJ NNS .\nThe country was adversely affected by the global economic downturn in 2009 and GDP growth fell below 2 % .\tDT NN VBD RB VBN IN DT JJ JJ NN IN CD CC NN NN VBD IN CD NN .\nAs a member of the West African Economic and Monetary Union ( WAEMU ) , Senegal is working toward greater regional integration with a unified external tariff and a more stable monetary policy .\tIN DT NN IN DT NNP NNP NNP CC NNP NNP LRB NNP RRB , NNP VBZ VBG IN JJR JJ NN IN DT JJ JJ NN CC DT RBR JJ JJ NN .\nHigh unemployment , however , continues to prompt illegal migrants to flee Senegal in search of better job opportunities in Europe .\tJJ NN , RB , VBZ TO VB JJ NNS TO VB NNP IN NN IN JJR NN NNS IN NNP .\nUnder the IMF 's Highly Indebted Poor Countries ( HIPC ) debt relief program , Senegal benefited from eradication of two-thirds of its bilateral , multilateral , and private-sector debt .\tIN DT NNP POS NNP NNP NNP NNPS LRB NNP RRB NN NN NN , NNP VBD IN NN IN NNS IN PRP$ NN , JJ , CC JJ NN .\nIn 2007 , Senegal and the IMF agreed to a new , non-disbursing , Policy Support Initiative program which was completed in 2010 .\tIN CD , NNP CC DT NNP VBD TO DT JJ , JJ , NNP NNP NNP NN WDT VBD VBN IN CD .\nSenegal received its first disbursement from the $ 540 million Millennium Challenge Account compact it signed in September 2009 for infrastructure and agriculture development .\tNNP VBD PRP$ JJ NN IN DT $ CD CD NNP NNP NNP NN PRP VBD IN NNP CD IN NN CC NN NN .\nIn 2010 , the Senegalese people protested against frequent power cuts .\tIN CD , DT JJ NNS VBD IN JJ NN NNS .\nThe government pledged to expand capacity by 2012 and to promote renewable energy but until Senegal has more capacity , more protests are likely and economic activity will be hindered .\tDT NN VBD TO VB NN IN CD CC TO VB JJ NN CC IN NNP VBZ JJR NN , JJR NNS VBP JJ CC JJ NN MD VB VBN .\nDuring the year , bakers protested government price controls on bread .\tIN DT NN , NNS VBD NN NN NNS IN NN .\nForeign investment in Senegal is constrained by Senegal 's business environment , which has slipped in recent years , and by perceptions of corruption .\tJJ NN IN NNP VBZ VBN IN NNP POS NN NN , WDT VBZ VBN IN JJ NNS , CC IN NNS IN NN .\nA HART , hard pressed in the chase , hid himself beneath the large leaves of a Vine .\tDT NN , RB VBN IN DT NN , VBD PRP IN DT JJ NNS IN DT NN .\nThe huntsmen , in their haste , overshot the place of his concealment .\tDT NNS , IN PRP$ NN , VBD DT NN IN PRP$ NN .\nSupposing all danger to have passed , the Hart began to nibble the tendrils of the Vine .\tVBG DT NN TO VB VBN , DT NN VBD TO VB DT NNS IN DT NN .\nOne of the huntsmen , attracted by the rustling of the leaves , looked back , and seeing the Hart , shot an arrow from his bow and struck it .\tCD IN DT NNS , VBN IN DT NN IN DT NNS , VBD RB , CC VBG DT NN , VBD DT NN IN PRP$ NN CC VBD PRP .\nThe Hart , at the point of death , groaned :\tDT NN , IN DT NN IN NN , VBD :\n' I am rightly served , for I should not have maltreated the Vine that saved me . '\t`` PRP VBP RB VBN , IN PRP MD RB VB VBN DT NN WDT VBD PRP . ``\nA FOWLER caught a Partridge and was about to kill it .\tDT NN VBD DT NN CC VBD IN TO VB PRP .\nThe Partridge earnestly begged him to spare his life , saying , ' Pray , master , permit me to live and I will entice many Partridges to you in recompense for your mercy to me . '\tDT NN RB VBD PRP TO VB PRP$ NN , VBG , `` NNP , NN , VB PRP TO VB CC PRP MD VB JJ NNS TO PRP IN NN IN PRP$ NN TO PRP . ``\nThe Fowler replied , ' I shall now with less scruple take your life , because you are willing to save it at the cost of betraying your friends and relations . '\tDT NN VBD , `` PRP MD RB IN JJR NN VB PRP$ NN , IN PRP VBP JJ TO VB PRP IN DT NN IN VBG PRP$ NNS CC NNS . ``\nA WOMAN possessed a Hen that gave her an egg every day .\tDT NN VBD DT NN WDT VBD PRP DT NN DT NN .\nShe often pondered how she might obtain two eggs daily instead of one , and at last , to gain her purpose , determined to give the Hen a double allowance of barley .\tPRP RB VBD WRB PRP MD VB CD NNS RB RB IN CD , CC IN JJ , TO VB PRP$ NN , VBN TO VB DT NN DT JJ NN IN NN .\nFrom that day the Hen became fat and sleek , and never once laid another egg .\tIN DT NN DT NN VBD JJ CC JJ , CC RB RB VBD DT NN .\nFrom the past 10 years about 90 % of Ford trucks are still on the road , the other 10 % made it home .\tIN DT JJ CD NNS IN CD NN IN NN NNS VBP RB IN DT NN , DT JJ CD NN VBD PRP NN .\nI was signing the receipt for my credit card purchase when the clerk noticed I had never signed my name on the back of the credit card .\tPRP VBD VBG DT NN IN PRP$ NN NN NN WRB DT NN VBD PRP VBD RB VBN PRP$ NN IN DT NN IN DT NN NN .\nShe informed me that she could not complete the transaction unless the card was signed .\tPRP VBD PRP IN PRP MD RB VB DT NN IN DT NN VBD VBN .\nWhen I asked why , she explained that it was necessary to compare the signature I had just signed on the receipt .\tWRB PRP VBD WRB , PRP VBD IN PRP VBD JJ TO VB DT NN PRP VBD RB VBN IN DT NN .\nSo I signed the credit card in front of her .\tIN PRP VBD DT NN NN IN NN IN PRP .\nShe carefully compared the signature to the one I had just signed on the receipt .\tPRP RB VBD DT NN TO DT CD PRP VBD RB VBN IN DT NN .\nAs luck would have it , they matched .\tIN NN MD VB PRP , PRP VBD .\nWitnesses in Somalia say Ethiopia is moving tanks and other reinforcements into the area where Somalia 's Islamists have been battling pro-government troops .\tNNS IN NNP VBP NNP VBZ VBG NNS CC JJ NNS IN DT NN WRB NNP POS NNS VBP VBN VBG JJ NNS .\nThe International Committee of the Red Cross says dozens of people have been killed and at least 200 wounded during four days of fighting in southern Somalia .\tDT NNP NNP IN DT NNP NNP VBZ NNS IN NNS VBP VBN VBN CC IN JJS CD VBN IN CD NNS IN VBG IN JJ NNP .\nThe Islamists and the Ethiopian-backed government each claim to have killed hundreds of the other side 's troops U.N. Secretary-General Kofi Annan and the U.N. Security Council denounced the fighting in statements Friday .\tDT NNPS CC DT JJ NN DT NN TO VB VBN NNS IN DT JJ NN POS NNS NNP NNP NNP NNP CC DT NNP NNP NNP VBD DT NN IN NNS NNP .\nThey urged Somalia 's interim government and Islamists to resume peace talks .\tPRP VBD NNP POS JJ NN CC NNS TO VB NN NNS .\nU.S. Secretary of State Condoleezza Rice stressed the importance of bringing East African peacekeepers into Somalia during a meeting with Uganda 's foreign minister , Sam Kutesa , Friday .\tNNP NNP IN NNP NNP NNP VBD DT NN IN VBG JJ JJ NNS IN NNP IN DT NN IN NNP POS JJ NN , NNP NNP , NNP .\nUganda is the only country so far to agree to take part in the force .\tNNP VBZ DT JJ NN RB RB TO VB TO VB NN IN DT NN .\nThe United Nations has passed a resolution supporting the proposed force .\tDT NNP NNP VBZ VBN DT NN VBG DT VBN NN .\nHowever , Somalia 's Islamists have denounced the measure and vowed to fight any foreign troops .\tRB , NNP POS NNS VBP VBN DT NN CC VBD TO VB DT JJ NNS .\nIslamist forces have seized much of southern and central Somalia since taking control of the capital , Mogadishu , in June .\tJJ NNS VBP VBN NN IN JJ CC JJ NNP IN VBG NN IN DT NN , NNP , IN NNP .\nThis week 's fighting has taken place near the interim government 's headquarters in Baidoa .\tDT NN POS NN VBZ VBN NN IN DT JJ NN POS NN IN NNP .\nSomalia 's government has little power outside the town .\tNNP POS NN VBZ JJ NN IN DT NN .\nIslamist leaders had threatened to attack Ethiopian troops this week if they did not leave Somali territory .\tNNP NNS VBD VBN TO VB JJ NNS DT NN IN PRP VBD RB VB JJ NN .\nEthiopia has an undetermined number of soldiers in Somalia to assist the interim government .\tNNP VBZ DT JJ NN IN NNS IN NNP TO VB DT JJ NN .\nPalestinian witnesses say an Israeli missile strike has killed at least two men traveling in a car in northern Gaza Strip .\tJJ NNS VBP DT JJ NN NN VBZ VBN IN JJS CD NNS VBG IN DT NN IN JJ NNP NNP .\nWitnesses said the men belonged to the militant group Islamic Jihad , adding the attack Monday seriously wounded a third militant traveling with them .\tNNS VBD DT NNS VBN TO DT JJ NN NNP NNP , VBG DT NN NNP RB VBD DT JJ NN VBG IN PRP .\nIsraeli military officials said the target of the attack was a senior Islamic Jihad member .\tJJ NN NNS VBD DT NN IN DT NN VBD DT JJ JJ NN NN .\nEarlier , Palestinian President Mahmoud Abbas warned he may delay parliamentary elections set for this month if Israel blocks voting in East Jerusalem .\tRB , JJ NNP NNP NNP VBD PRP MD VB JJ NNS VBN IN DT NN IN NNP NNS VBG IN NNP NNP .\nMr. Abbas has been under intense pressure to postpone the January 25 vote , especially from members of his own Fatah party .\tNNP NNP VBZ VBN IN JJ NN TO VB DT NNP CD NN , RB IN NNS IN PRP$ JJ NNP NN .\nLast month , Israeli officials said they may block voting in East Jerusalem if candidates from the Hamas militant group are allowed to take part in the balloting .\tJJ NN , JJ NNS VBD PRP MD VB VBG IN NNP NNP IN NNS IN DT NNP JJ NN VBP VBN TO VB NN IN DT NN .\nNATO officials in Afghanistan say insurgents have killed a coalition soldier in the southern part of the country .\tNNP NNS IN NNP VBP NNS VBP VBN DT NN NN IN DT JJ NN IN DT NN .\nA statement says the soldier was killed Sunday in Helmand province .\tDT NN VBZ DT NN VBD VBN NNP IN NNP NN .\nNATO did not provide details about the clash or give the soldier 's nationality .\tNNP VBD RB VB NNS IN DT NN CC VB DT NN POS NN .\nThe statement said that in another incident , a soldier and six Afghan troops were wounded when mortars hit their base in neighboring Kandahar province early Sunday .\tDT NN VBD IN IN DT NN , DT NN CC CD JJ NNS VBD VBN WRB NNS VBP PRP$ NN IN JJ NNP NN JJ NNP .\nOn Saturday , the head of the U.S. Central Command , General John Abizaid , said Taleban insurgents are still using neighboring Pakistan as a base for infiltration .\tIN NNP , DT NN IN DT NNP NNP NNP , NNP NNP NNP , VBD NNP NNS VBP RB VBG JJ NNP IN DT NN IN NN .\nBut he completely rejected any suggestion that Islamabad is conspiring with the rebels .\tCC PRP RB VBD DT NN IN NNP VBZ VBG IN DT NNS .\nGeneral Abizaid made the remarks during a brief visit to the main U.S. military base at Bagram north of the Afghan capital , Kabul , to asses operations .\tNNP NNP VBD DT NNS IN DT JJ NN TO DT JJ NNP JJ NN IN NNP NN IN DT JJ NN , NNP , TO VB NNS .\nA top Russian official says Moscow remains deeply concerned about U.S. plans for a missile defense system that Washington wants to deploy in central Europe .\tDT JJ JJ NN VBZ NNP VBZ RB JJ IN NNP NNS IN DT NN NN NN WDT NNP VBZ TO VB IN JJ NNP .\nRussian National Security Council chief Igor Ivanov said Tuesday he is not optimistic that the United States will address Russian concerns Thursday at a NATO-Russia Council meeting in Brussels .\tJJ NNP NNP NNP NN NNP NNP VBD NNP PRP VBZ RB JJ IN DT NNP NNPS MD VB JJ NNS NNP IN DT NNP NNP NN IN NNP .\nIvanov 's skepticism contrasted sharply with that of senior U.S. envoy John Rood , who is in Moscow for talks on the controversial system .\tNNP POS NN VBD RB IN DT IN JJ NNP NN NNP NNP , WP VBZ IN NNP IN NNS IN DT JJ NN .\nRood said today he believes progress had been made and that further talks will resolve the dispute .\tNNP VBD NN PRP VBZ NN VBD VBN VBN CC IN JJ NNS MD VB DT NN .\nLast month , Moscow warned that the U.S. missile shield Washington wants to deploy in Poland and the Czech Republic could start a new European arms race .\tJJ NN , NNP VBD IN DT NNP NN NN NNP VBZ TO VB IN NNP CC DT JJ NNP MD VB DT JJ JJ NNS NN .\nU.S. officials insist the shield is aimed at preventing attacks from what it calls rogue states like Iran and North Korea .\tNNP NNS VBP DT NN VBZ VBN IN VBG NNS IN WP PRP VBZ NN NNS IN NNP CC NNP NNP .\nA published report says all 425 domestic U.S. military bases are under review as the Defense Department considers a new round of base closures .\tDT JJ NN VBZ DT CD JJ NNP JJ NNS VBP IN NN IN DT NNP NNP VBZ DT JJ NN IN NN NNS .\nThe New York Times reported Sunday that after more than two years of study , Pentagon analysts are putting the final touches on a list of recommendations to submit to Defense Secretary Donald Rumsfeld .\tDT NNP NNP NNP VBD NNP IN IN JJR IN CD NNS IN NN , NNP NNS VBP VBG DT JJ NNS IN DT NN IN NNS TO VB TO NNP NNP NNP NNP .\nIn previous rounds , the Pentagon eliminated 97 bases and closed hundreds of smaller facilities , saving tens of billions of dollars .\tIN JJ NNS , DT NNP VBD CD NNS CC VBD NNS IN JJR NNS , VBG NNS IN NNS IN NNS .\nMilitary officials say the old Cold War network of defense facilities still has too much capacity for modern needs .\tJJ NNS VBP DT JJ NNP NNP NN IN NN NNS RB VBZ RB JJ NN IN JJ NNS .\nMr. Rumsfeld is to give his list of proposed base closings to an independent commission for review in May .\tNNP NNP VBZ TO VB PRP$ NN IN VBN NN NNS TO DT JJ NN IN NN IN NNP .\nThe newspaper reported that by early November , President Bush and Congress must accept or reject a final list submitted by the commission .\tDT NN VBD IN IN JJ NNP , NNP NNP CC NNP MD VB CC VB DT JJ NN VBN IN DT NN .\nAn Afghan court has sentenced a women 's magazine editor to two years in prison for publishing anti-Islamic articles .\tDT JJ NN VBZ VBN DT NNS POS NN NN TO CD NNS IN NN IN VBG JJ NNS .\nAli Mohaqiq Nasab was arrested on October 1 after his magazine , Haqooq-i-Zan , ( Women 's Rights ) argued that giving up Islam was not a crime that should be punished by death , as sanctioned by some interpretations of Islamic Sharia law .\tNNP NNP NNP VBD VBN IN NNP CD IN PRP$ NN , NNP , LRB NNP POS NNP RRB VBD IN VBG RP NNP VBD RB DT NN WDT MD VB VBN IN NN , IN VBN IN DT NNS IN NNP NNP NN .\nOther articles criticized the practice of punishing adultery with 100 lashes and argued that men and women should be considered as equals under Islamic law .\tJJ NNS VBD DT NN IN VBG NN IN CD NNS CC VBD IN NNS CC NNS MD VB VBN IN NNS IN NNP NN .\nOn Saturday , Kabul 's Primary Court convicted Mohaqiq of blasphemy .\tIN NNP , NNP POS NNP NNP VBD NNP IN NN .\nThe case was condemned by a number of Afghan and international media rights groups .\tDT NN VBD VBN IN DT NN IN JJ CC JJ NNS NNS NNS .\nUnder a revised March 2004 media law , content deemed insulting to Islam is banned in Afghanistan .\tIN DT VBN NNP CD NNS NN , NN VBD VBG TO NNP VBZ VBN IN NNP .\nThis is the annual World AIDS Day and the focus this year is women and girls living with the disease .\tDT VBZ DT JJ NNP NNP NNP CC DT NN DT NN VBZ NNS CC NNS VBG IN DT NN .\nIn Geneva , the World Health Organization marked Wednesday by urging that nations take steps to ensure women and girls are given better access to AIDS prevention and treatment services .\tIN NNP , DT NNP NNP NNP VBD NNP IN VBG DT NNS VBP NNS TO VB NNS CC NNS VBP VBN JJR NN TO NNP NN CC NN NNS .\nThe agency said 47 percent of those infected with the AIDS virus around the globe are female .\tDT NN VBD CD NN IN DT VBN IN DT NNP NN IN DT NN VBP JJ .\nThe International Red Cross and Red Crescent Societies joined with other organizations in calling for improved responses to HIV - AIDS around the world .\tDT NNP NNP NNP CC NNP NNP NNPS VBD IN JJ NNS IN VBG IN JJ NNS TO NNP : NNP IN DT NN .\nHuman Rights Watch urged countries to drop restrictions on information about condoms , which the U.S.-based organization says remain the single most effective device against sexually transmitted HIV .\tNNP NNP NNP VBD NNS TO VB NNS IN NN IN NNS , WDT DT JJ NN VBZ VB DT JJ RBS JJ NN IN RB JJ NNP .\nWorld AIDS Day is held each year to raise awareness of HIV - AIDS , which affects tens of millions of people .\tNNP NNP NNP VBZ VBN DT NN TO VB NN IN NNP IN NNP , WDT VBZ NNS IN NNS IN NNS .\nA Bosnian Serb officer indicted for his role in the 1995 Srebrenica massacre is flying to the Netherlands to surrender to the Hague war crimes tribunal .\tDT JJ JJ NN VBD IN PRP$ NN IN DT CD NNP NN VBZ VBG TO DT NNP TO VB TO DT NNP NN NNS JJ .\nColonel Vujadin Popovic left Belgrade Thursday to face such charges as genocide and crimes against humanity .\tNNP NNP NNP VBD NNP NNP TO VB JJ NNS IN NN CC NNS IN NN .\nThe charges focus on his role in the deaths of about eight thousand Muslim men and boys after Serb forces in Bosnia-Herzegovina captured the Muslim enclave of Srebrenica in 1995 .\tDT NNS VBP IN PRP$ NN IN DT NNS IN IN CD CD NNP NNS CC NNS IN JJ NNS IN NNP VBD DT NNP NN IN NNP IN CD .\nMeanwhile , the tribunal ordered the release , pending trial , of former Serbian President Milan Milutinovic , former Yugoslav Deputy Prime Minister Nikola Sainovic , General Dragoljub Ojdanic and General Vladimir Lazarevic .\tRB , DT NN VBD DT NN , VBG NN , IN JJ JJ NNP NNP NNP , JJ JJ NNP NNP NNP NNP NNP , NNP NNP NNP CC NNP NNP NNP .\nAll four have been indicted in connection with repression against ethnic Albanians in Kosovo .\tDT CD VBP VBN VBN IN NN IN NN IN JJ NNS IN NNP .\nHowever , the court stayed the release of all but General Lazarevic to give prosecutors time to appeal the order .\tRB , DT NN VBD DT NN IN DT CC NNP NNP TO VB NNS NN TO VB DT NN .\nThe leader of Sudan 's main southern rebel group has called on the government to apply a recently signed north-south peace deal to the separate conflict in Sudan 's western Darfur region .\tDT NN IN NNP POS JJ JJ NN NN VBZ VBN IN DT NN TO VB DT RB VBN JJ NN NN TO DT JJ NN IN NNP POS JJ NNP NN .\nJohn Garang said Saturday that the Darfur crisis can only be solved through dialogue .\tNNP NNP VBD NNP IN DT NNP NN MD RB VB VBN IN NN .\nHe spoke on the sidelines of a federalism conference in Brussels\tPRP VBD IN DT NNS IN DT NN NN IN NNP\nMr. Garang 's Sudan People 's Liberation Army ( SPLA ) signed a peace agreement with the government in January .\tNNP NNP POS NNP NNP POS NNP NNP LRB NNP RRB VBD DT NN NN IN DT NN IN NNP .\nThe deal gives the south greater autonomy and the opportunity to vote on secession in six years .\tDT NN VBZ DT RB JJR NN CC DT NN TO VB IN NN IN CD NNS .\nMr. Garang said he is sending about 70 SPLA representatives to the capital , Khartoum , in the first phase of implementing the peace deal .\tNNP NNP VBD PRP VBZ VBG IN CD NNP NNS TO DT NN , NNP , IN DT JJ NN IN VBG DT NN NN .\nA top U.S. official has warned against Brazil imposing sanctions on the United States in a dispute over cotton subsidies .\tDT JJ NNP NN VBZ VBN IN NNP VBG NNS IN DT NNP NNPS IN DT NN IN NN NNS .\nDeputy Secretary of State Robert Zoellick said in Brazil Thursday that there is always a danger in trade relations of things slipping out of control if one side decides to retaliate .\tNNP NNP IN NNP NNP NNP VBD IN NNP NNP IN EX VBZ RB DT NN IN NN NNS IN NNS VBG IN IN NN IN CD NN VBZ TO VB .\nHe said the United States is working to resolve the dispute .\tPRP VBD DT NNP NNPS VBZ VBG TO VB DT NN .\nEarlier , Brazil asked the World Trade Organization for permission to impose $ 1 billion in sanctions on U.S. goods for the United States failing to comply with a WTO decision that calls for steep cuts in subsidies for U.S. cotton producers .\tRB , NNP VBD DT NNP NNP NNP IN NN TO VB $ CD CD IN NNS IN NNP NNS IN DT NNP NNPS VBG TO VB IN DT NNP NN WDT VBZ IN JJ NNS IN NNS IN NNP NN NNS .\nThe request is to be discussed at a WTO meeting later this month .\tDT NN VBZ TO VB VBN IN DT NNP NN RB DT NN .\nThe WTO ruled in March the subsidies must be changed to comply with global trade rules .\tDT NNP VBD IN NNP DT NNS MD VB VBN TO VB IN JJ NN NNS .\nBrazil says the subsidies artificially drive down world prices and hurt Brazilian producers .\tNNP VBZ DT NNS RB VBP RP NN NNS CC VBN JJ NNS .\nItaly 's government says an Italian journalist kidnapped in Afghanistan several days ago is still alive .\tNNP POS NN VBZ DT JJ NN VBN IN NNP JJ NNS RB VBZ RB JJ .\nA Foreign Ministry statement Saturday said officials have reason to believe missing journalist Daniele Mastrogiacomo is alive , but it did not offer details .\tDT NNP NNP NN NNP VBD NNS VBP NN TO VB JJ NN NNP NNP VBZ JJ , CC PRP VBD RB VB NNS .\nItalian officials had previously demanded that the Taleban provide proof that Mastrogiacomo had not been killed before any negotiations could begin .\tJJ NNS VBD RB VBN IN DT NNP VB NN IN NNP VBD RB VBN VBN IN DT NNS MD VB .\nThe Taleban says it captured Mastrogiacomo in Helmand province on Monday .\tDT NNP VBZ PRP VBD NNP IN NNP NN IN NNP .\nInsurgents say the reporter has confessed to being a spy .\tNNS VBP DT NN VBZ VBN TO VBG DT NN .\nThe journalist 's newspaper , La Repubblica , has categorically denied the charge .\tDT NN POS NN , NNP NNP , VBZ RB VBN DT NN .\nEarlier in the week , Italy 's lower house of parliament voted in favor of keeping the country 's military contingent in Afghanistan .\tRBR IN DT NN , NNP POS JJR NN IN NN VBD IN NN IN VBG DT NN POS JJ JJ IN NNP .\nThe lower house Thursday approved a measure that refinances the mission .\tDT JJR NN NNP VBD DT NN WDT VBZ DT NN .\nIt now goes to the Senate for final approval .\tPRP RB VBZ TO DT NNP IN JJ NN .\nThe government has 1,800 troops in Afghanistan as part of a NATO force .\tDT NN VBZ CD NNS IN NNP IN NN IN DT NNP NN .\nPakistan says up to 40 militants were killed during Wednesday 's fighting with security forces in the North Waziristan tribal region , not 16 as reported earlier .\tNNP VBZ RP TO CD NNS VBD VBN IN NNP POS NN IN NN NNS IN DT NNP NNP JJ NN , RB CD IN VBN RBR .\nTroops backed by helicopter gunships attacked militant hideouts near the Afghan border after a rebel rocket attack killed four soldiers .\tNNS VBN IN NN NNS VBD NN NNS IN DT JJ NN IN DT NN NN NN VBD CD NNS .\nA military spokesman , Major General Shaukat Sultan , said some 19 pro-Taleban militants were captured during the operation .\tDT JJ NN , NNP NNP NNP NNP , VBD DT CD JJ NNS VBD VBN IN DT NN .\nPakistan 's President Pervez Musharraf has warned foreign militants using the Waziristan region as a hideout to leave or be killed .\tNNP POS NNP NNP NNP VBZ VBN JJ NNS VBG DT NNP NN IN DT NN TO VB CC VB VBN .\nHe has also promised extra development funds for the region if local tribes stop harboring foreign militants .\tPRP VBZ RB VBN JJ NN NNS IN DT NN IN JJ NNS VBP VBG JJ NNS .\nLast month , Pakistani security forces killed about 200 militants and their local supporters in North Waziristan in a campaign to rid the area of insurgents .\tJJ NN , JJ NN NNS VBN IN CD NNS CC PRP$ JJ NNS IN NNP NNP IN DT NN TO VB DT NN IN NNS .\nRussia 's security service says it has prevented major terrorist attacks after finding a truck packed with a ton of explosives , and a cache of poison .\tNNP POS NN NN VBZ PRP VBZ VBN JJ JJ NNS IN VBG DT NN VBN IN DT NN IN NNS , CC DT NN IN NN .\nA federal forces spokesman says authorities detained two men after stopping the truck near Grozny .\tDT JJ NNS NN VBZ NNS VBD CD NNS IN VBG DT NN IN NNP .\nThe Interfax news agency quotes him as saying the vehicle was fully prepared for an explosion .\tDT NNP NN NN VBZ PRP IN VBG DT NN VBD RB VBN IN DT NN .\nAll one needed was a suicide attacker to switch on a detonator .\tDT CD VBN VBD DT NN NN TO VB IN DT NN .\nThe Federal Security Service also reports discovery of a cache of a cyanide-based substance in the North Caucasus that officials say was to be used for a chemical attack .\tDT NNP NNP NNP RB VBZ NN IN DT NN IN DT JJ NN IN DT NNP NNP IN NNS VBP VBD TO VB VBN IN DT NN NN .\nSecurity in Russia is extremely tight ahead of the arrival of world leaders for ceremonies Monday marking the 60th anniversary of the end of World War II in Europe .\tNNP IN NNP VBZ RB JJ RB IN DT NN IN NN NNS IN NNS NNP VBG DT JJ NN IN DT NN IN NNP NNP NNP IN NNP .\nMonday is also the first anniversary of the assassination of Kremlin-backed Chechen President Akhmad Kadyrov in Grozny .\tNNP VBZ RB DT JJ NN IN DT NN IN JJ JJ NNP NNP NNP IN NNP .\nA Mexican court has refused to issue an arrest warrant for former President Luis Echeverria and seven others for the 1968 massacre of student protesters .\tDT JJ NN VBZ VBN TO VB DT NN NN IN JJ NNP NNP NNP CC CD NNS IN DT CD NN IN NN NNS .\nThe ruling came late Wednesday and is the latest setback in the effort by President Vicente Fox 's government to prosecute past government atrocities .\tDT NN VBD JJ NNP CC VBZ DT JJS NN IN DT NN IN NNP NNP NNP POS NN TO VB JJ NN NNS .\nOn Monday , federal prosecutors filed charges of genocide against Mr. Echeverria in connection with the 1968 incident in which soldiers and police fired on student protesters , killing as many as 30 .\tIN NNP , JJ NNS VBD NNS IN NN IN NNP NNP IN NN IN DT CD NN IN WDT NNS CC NNS VBD IN NN NNS , VBG RB JJ IN CD .\nMr. Echeverria was Mexico 's interior minister at the time .\tNNP NNP VBD NNP POS JJ NN IN DT NN .\nOther judges in July dismissed genocide charges against Mr. Echeverria related to the 1971 killings of student protesters when he was Mexico 's president .\tJJ NNS IN NNP VBD NN NNS IN NNP NNP VBD TO DT CD NNS IN NN NNS WRB PRP VBD NNP POS NN .\nU.S. Secretary of State Hillary Clinton has said she will not serve a full eight years in her position if President Barack Obama is elected to a second term .\tNNP NNP IN NNP NNP NNP VBZ VBN PRP MD RB VB DT JJ CD NNS IN PRP$ NN IN NNP NNP NNP VBZ VBN TO DT JJ NN .\nIn a nationally televised interview with PBS television 's Tavis Smiley Wednesday , Clinton she could not imagine serving a full eight years .\tIN DT RB VBN NN IN NNP NN POS NNP NNP NNP , NNP PRP MD RB VB VBG DT JJ CD NNS .\nShe told her interviewer that , considering the demands of the job , she would find that extremely challenging .\tPRP VBD PRP$ NN IN , VBG DT NNS IN DT NN , PRP MD VB DT RB JJ .\nClinton - who had been a candidate for president in 2008 - also ruled out a second presidential run .\tNNP : WP VBD VBN DT NN IN NN IN CD : RB VBD RP DT JJ JJ NN .\nShe had said previously she would also not seek re-election to the New York Senate seat she held until 2009 when she took her current position .\tPRP VBD VBN RB PRP MD RB RB VB NN TO DT NNP NNP NNP NN PRP VBD IN CD WRB PRP VBD PRP$ JJ NN .\nShe indicated she would like to return to private life Clinton had been first lady of the United States while her husband , Bill Clinton served as U.S. President from 1992 to 2000 .\tPRP VBD PRP MD VB TO VB TO JJ NN NNP VBD VBN JJ NN IN DT NNP NNPS IN PRP$ NN , NNP NNP VBD IN NNP NNP IN CD TO CD .\nHuman rights group Amnesty International has criticized Eritrea over a mass arrest last week of thousands of youths suspected of evading military conscription .\tJJ NNS NN NNP NNP VBZ VBN NNP IN DT NN NN JJ NN IN NNS IN NNS VBN IN VBG JJ NN .\nThe London-based group says the detainees are being held at the Adi Abeto army prison near Asmara , where they are at risk of torture and mistreatment .\tDT JJ NN VBZ DT NNS VBP VBG VBN IN DT NNP NNP NN NN IN NNP , WRB PRP VBP IN NN IN NN CC NN .\nIt says Eritrean security forces indiscriminately arrested suspects at their homes , shops , offices and road blocks last Thursday .\tPRP VBZ JJ NN NNS RB VBN NNS IN PRP$ NNS , NNS , NNS CC NN NNS JJ NNP .\nAmnesty also accused Eritrean prison officials of opening fire on detainees at the Adi Abeto prison during an apparent escape attempt following the arrests .\tNNP RB VBD JJ NN NNS IN VBG NN IN NNS IN DT NNP NNP NN IN DT JJ NN NN VBG DT NNS .\nThe country 's Minister of Information says two detainees were crushed by a wall that collapsed during the escape attempt .\tDT NN POS NNP IN NNP VBZ CD NNS VBD VBN IN DT NN WDT VBD IN DT NN NN .\nBut Amnesty International cites sources as saying as many as 12 people were shot and killed by security forces .\tCC NNP NNP VBZ NNS IN VBG RB JJ IN CD NNS VBD VBN CC VBN IN NN NNS .\nChinese President Hu Jintao has called on major economies to ensure trade and energy stability in order to promote a balanced world economy .\tJJ NNP NNP NNP VBZ VBN IN JJ NNS TO VB NN CC NN NN IN NN TO VB DT JJ NN NN .\nMr. Hu spoke Saturday in Beijing , where he opened the start of a two-day meeting of top finance officials from 20 countries .\tNNP NNP VBD NNP IN NNP , WRB PRP VBD DT NN IN DT JJ NN IN JJ NN NNS IN CD NNS .\nHe urged countries to create a ' sound trading environment for economic growth . '\tPRP VBD NNS TO VB DT `` JJ NN NN IN JJ NN . ``\nHe also said major powers should make concerted efforts to stabilize the global energy market .\tPRP RB VBD JJ NNS MD VB JJ NNS TO VB DT JJ NN NN .\nThe so-called Group of 20 is made up of larger developing countries and rich nations , including the United States .\tDT JJ NNP IN CD VBZ VBN IN IN JJR VBG NNS CC JJ NNS , VBG DT NNP NNPS .\nThe meeting is being held at a time of trade tensions between Beijing and Washington .\tDT NN VBZ VBG VBN IN DT NN IN NN NNS IN NNP CC NNP .\nSome critics accuse China of manipulating its currency to give Chinese exports an unfair price advantage on world markets .\tDT NNS VBP NNP IN VBG PRP$ NN TO VB JJ NNS DT JJ NN NN IN NN NNS .\nIraqi police say a car bomb in central Baghdad has killed at least 21 people and wounded 66 others .\tJJ NNS VBP DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN CD NNS .\nThe blast damaged the Abdel Qadir Gilani Mosque , one of Baghdad 's most revered Sunni shrines .\tDT NN VBD DT NNP NNP NNP NNP , CD IN NNP POS JJS JJ NNP NNS .\nThe explosion also damaged several buildings and cars in the Sinak area of the capital .\tDT NN RB VBD JJ NNS CC NNS IN DT NNP NN IN DT NN .\nAnother car bomb killed at least two people Monday in Baghdad 's Bab al-Muadham area .\tDT NN NN VBD IN JJS CD NNS NNP IN NNP POS NNP NNP NN .\nIn Iraq Sunday , U.S. military troops rescued 42 Iraqis from an al-Qaida prison camp north of Baghdad .\tIN NNP NNP , NNP JJ NNS VBD CD NNS IN DT NNP NN NN NN IN NNP .\nMilitary officials say some of the freed captives showed signs of torture and mistreatment .\tJJ NNS VBP DT IN DT VBN NNS VBD NNS IN NN CC NN .\nPresident Bush meets at the White House Tuesday with Massoud Barzani , the president of Iraq 's Kurdish region .\tNNP NNP VBZ IN DT NNP NNP NNP IN NNP NNP , DT NN IN NNP POS JJ NN .\nThe two men are scheduled to speak to reporters after their meeting .\tDT CD NNS VBP VBN TO VB TO NNS IN PRP$ NN .\nA White House spokesman praised Mr. Barzani Tuesday as a leader committed to building a free and democratic Iraq .\tDT NNP NNP NN VBD NNP NNP NNP IN DT NN VBN TO VBG DT JJ CC JJ NNP .\nMr. Barzani , who is a former Kurdish rebel leader , was elected regional president by Kurdish lawmakers in June .\tNNP NNP , WP VBZ DT JJ NNP NN NN , VBD VBN JJ NN IN NNP NNS IN NNP .\nHe has pledged to strengthen Iraqi national unity , and he took part in negotiations on Iraq 's new constitution .\tPRP VBZ VBN TO VB JJ JJ NN , CC PRP VBD NN IN NNS IN NNP POS JJ NN .\nKurds in northern Iraq have enjoyed relative autonomy since the Persian Gulf War of 1991 .\tNNS IN JJ NNP VBP VBN JJ NN IN DT NNP NNP NNP IN CD .\nThe Philippines is again calling on its citizens to avoid traveling to Iraq for work .\tDT NNPS VBZ RB VBG IN PRP$ NNS TO VB VBG TO NNP IN NN .\nNoting that two Filipinos were recently wounded during attacks on U.S. military bases in Iraq , a presidential spokesman said Tuesday that Manila has no plans to lift its ban on allowing Philippine workers into Iraq until there is peace and stability .\tVBG IN CD NNS VBD RB VBN IN NNS IN NNP JJ NNS IN NNP , DT JJ NN VBD NNP IN NNP VBZ DT NNS TO VB PRP$ NN IN VBG JJ NNS IN NNP IN EX VBZ NN CC NN .\nThe Associated Press also reports that Philippine Foreign Undersecretary Jose Brillantes urged the estimated 6,000 Filipinos now working across the Middle East to take precautions against possible attacks in the region .\tDT NNP NNP RB VBZ IN JJ NNP NNP NNP NNP VBD DT VBN CD NNS RB VBG IN DT NNP NNP TO VB NNS IN JJ NNS IN DT NN .\nHis comments follow Monday 's terror attack on the U.S. consulate in the Saudi Arabian city of Jeddah , in which five non-American consulate workers were killed , including a Philippine national .\tPRP$ NNS VBP NNP POS NN NN IN DT NNP NN IN DT JJ JJ NN IN NNP , IN WDT CD JJ NN NNS VBD VBN , VBG DT JJ NN .\nAir France says its flight schedule is returning to normal Tuesday after flight staff called off their five-day strike over pay and working conditions .\tNNP NNP VBZ PRP$ NN NN VBZ VBG TO JJ NNP IN NN NN VBD RP PRP$ JJ NN IN NN CC VBG NNS .\nAir France says it plans to operate all long-haul flights from Paris and 90 percent of its short and medium-haul routes .\tNNP NNP VBZ PRP VBZ TO VB DT JJ NNS IN NNP CC CD NN IN PRP$ JJ CC JJ NNS .\nLabor unions representing cabin crews voted Monday to end the walkout .\tNNP NNS VBG NN NNS VBD NNP TO VB DT NN .\nAir France flight attendants began the work stoppage last Thursday on the eve of French school holidays .\tNNP NNP NN NNS VBD DT NN NN JJ NNP IN DT NN IN JJ NN NNS .\nHundreds of flights were canceled , stranding thousands of travelers .\tNNS IN NNS VBD VBN , VBG NNS IN NNS .\nAir France chief executive Jean-Cyril Spinetta has offered to hold immediate negotiations with the labor unions to avert further strike action .\tNNP NNP NN NN NNP NNP VBZ VBN TO VB JJ NNS IN DT NN NNS TO VB JJ NN NN .\nMore than 20,000 people have rallied in Pakistan 's largest city , Karachi , to protest cartoons of the Prophet Muhammad .\tJJR IN CD NNS VBP VBN IN NNP POS JJS NN , NNP , TO VB NNS IN DT NNP NNP .\nShouting anti-American and anti-European slogans , the demonstrators marched through the city on Sunday to denounce the cartoons , first published in Denmark .\tVBG JJ CC JJ NNS , DT NNS VBD IN DT NN IN NNP TO VB DT NNS , RB VBN IN NNP .\nEarlier , in the eastern city of Lahore , police fired teargas to put a stop to a rally organized by the six-party Muttahida Majlis-e-Amal alliance .\tRB , IN DT JJ NN IN NNP , NN VBD NNS TO VB DT NN TO DT NN VBN IN DT JJ NNP NNP NN .\nPolice arrested the head of the alliance , Qazi Hussain Ahmed , and dozens of others including cricketer-turned-politician Imran Khan .\tNNS VBN DT NN IN DT NN , NNP NNP NNP , CC NNS IN NNS VBG JJ NNP NNP .\nProtests have been banned in Lahore , where two people died in earlier unrest .\tNNS VBP VBN VBN IN NNP , WRB CD NNS VBD IN JJR NN .\nRadical Islamic leaders said they would defy the ban and stage more protests .\tJJ JJ NNS VBD PRP MD VB DT NN CC NN JJR NNS .\nDemonstrations have been scheduled for Friday , the day before President Bush is due to visit Islamabad on his South Asia trip .\tNNS VBP VBN VBN IN NNP , DT NN IN NNP NNP VBZ JJ TO VB NNP IN PRP$ NNP NNP NN .\nItaly has taken over control of the NATO-led peacekeeping force in Afghanistan for the next six months from a Turkish commander .\tNNP VBZ VBN RP NN IN DT JJ NN NN IN NNP IN DT JJ CD NNS IN DT JJ NN .\nItalian Lieutenant-General Mauro Del Vechchio assumed command of the 8,000-strong International Security Assistance Force ( ISAF ) from Turkish Lieutenant-General Ethem Erdagi in Thursday ceremony in Kabul .\tJJ JJ NNP NNP NNP VBD NN IN DT JJ NNP NNP NNP NNP LRB NNP RRB IN JJ NNP NNP NNP IN NNP NN IN NNP .\nThe commander of NATO forces in Northern Europe , General Gerhard Back , said ISAF will be ready to assume responsibility for security across all of Afghanistan by the end of next year .\tDT NN IN NNP NNS IN NNP NNP , NNP NNP NNP , VBD NNP MD VB JJ TO VB NN IN NN IN DT IN NNP IN DT NN IN JJ NN .\nISAF already maintains security in Kabul and the country 's north and west .\tNNP RB VBZ NN IN NNP CC DT NN POS NN CC NN .\nIt plans to increase its size and take over from the U.S.-led coalition in the volatile south early next year , before gradually moving into the east .\tPRP VBZ TO VB PRP$ NN CC VB RP IN DT JJ NN IN DT JJ NN RB JJ NN , IN RB VBG IN DT NN .\nNATO peacekeepers will also provide security for the Afghan parliamentary elections scheduled for September 18 .\tNNP NNS MD RB VB NN IN DT JJ JJ NNS VBN IN NNP CD .\nFor more than 20 years , researchers have gone hunting with sharks and stalking prey with tigers from in front of their television monitors .\tIN JJR IN CD NNS , NNS VBP VBN NN IN NNS CC VBG NN IN NNS IN IN NN IN PRP$ NN NNS .\nNational Geographic researchers have an ' animal eye view ' of the world through a video camera built to be attached to living things .\tNNP NNP NNS VBP DT `` NN NN NN `` IN DT NN IN DT NN NN VBN TO VB VBN TO VBG NNS .\n' Crittercam , ' as they call it , has been mounted to animals of over 40 different species .\t`` NNP , `` IN PRP VBP PRP , VBZ VBN VBN TO NNS IN IN CD JJ NNS .\nIts creator recently sat down with VOA 's Paul Sisco .\tPRP$ NN RB VBD RP IN NNP POS NNP NNP .\nA powerful typhoon is approaching a group of islands in the Pacific Ocean south of Tokyo , and officials are warning of heavy rains , strong winds and high waves in the region .\tDT JJ NN VBZ VBG DT NN IN NNS IN DT NNP NNP NN IN NNP , CC NNS VBP VBG IN JJ NNS , JJ NNS CC JJ NNS IN DT NN .\nTyphoon Saola 's winds are blowing at more than 140 kilometers per hour .\tNNP NNP POS NNS VBP VBG IN JJR IN CD NNS IN NN .\nThe storm was just off Hachijo Island , 300 kilometers south of Tokyo , Saturday afternoon , and heading north .\tDT NN VBD RB RB NNP NNP , CD NNS RB IN NNP , NNP NN , CC VBG RB .\nJapan 's Meteorological Agency says heavy rains will hit Tokyo later Saturday and Sunday as the typhoon passes just east of the city .\tNNP POS NNP NNP VBZ JJ NNS MD VB NNP RB NNP CC NNP IN DT NN VBZ RB NN IN DT NN .\nOn average , two to three typhoons hit Japan 's main islands each year .\tIN NN , CD CC CD NNS VBD NNP POS JJ NNS DT NN .\nTyphoon Nabi , which ripped through western Japan earlier this month , killed more than 20 people .\tNNP NNP , WDT VBD IN JJ NNP RBR DT NN , VBD JJR IN CD NNS .\nPakistani officials say unknown gunmen have opened fire on a bus carrying the Sri Lankan cricket team , killing at least five police officers and wounding six Sri Lankan players .\tJJ NNS VBP JJ NNS VBP VBN NN IN DT NN VBG DT NNP NNP NN NN , VBG IN JJS CD NNS NNS CC VBG CD NNP NNP NNS .\nLahore police chief Habibur Rehman said at least 12 gunmen attacked the convoy near Lahore 's Gaddafi stadium Tuesday with rockets , hand grenades and automatic weapons .\tNNP NN NN NNP NNP VBD IN JJS CD NNS VBD DT NN IN NNP POS NNP NN NNP IN NNS , NN NNS CC JJ NNS .\nHe called it a terrorist attack .\tPRP VBD PRP DT JJ NN .\nPakistan TV showed footage of gunmen running through the streets and firing on vehicles .\tNNP NNP VBD NN IN NNS VBG IN DT NNS CC VBG IN NNS .\nSri Lanka 's sports minister say at least five players and an assistant coach received minor injuries in the attack , including Kumar Sangakkara , Thilan Samaraweera and Tharanga Paranavithana .\tNNP NNP POS NNS NN VBP IN JJS CD NNS CC DT JJ NN VBD JJ NNS IN DT NN , VBG NNP NNP , NNP NNP CC NNP NNP .\nSecurity concerns have plagued Pakistan for many years , and some foreign sports teams have refused to play in the country .\tNN NNS VBP VBN NNP IN JJ NNS , CC DT JJ NNS NNS VBP VBN TO VB IN DT NN .\nU.S. Vice President Dick Cheney has criticized Senate Democrats who have accused the Bush administration of purposely misleading the American public on intelligence leading up to the war in Iraq .\tNNP NNP NNP NNP NNP VBZ VBN NNP NNPS WP VBP VBN DT NNP NN IN RB VBG DT JJ NN IN NN VBG RP TO DT NN IN NNP .\nIn a speech near Washington Wednesday , Mr. Cheney called allegations the White House manipulated intelligence to make the case for war ' reprehensible . '\tIN DT NN IN NNP NNP , NNP NNP VBD NNS DT NNP NNP VBD NN TO VB DT NN IN NN `` JJ . ``\nHe said lawmakers had the same access to intelligence regarding Saddam Hussein 's weapons ' programs and many arrived at the same conclusion to go to war .\tPRP VBD NNS VBD DT JJ NN TO NN VBG NNP NNP POS NNS POS NNS CC NN VBD IN DT JJ NN TO VB TO NN .\nIn a statement released after Mr. Cheney 's speech , Senate Minority Leader Harry Reid ( of Nevada ) accused the Bush administration of playing politics with the war in Iraq .\tIN DT NN VBN IN NNP NNP POS NN , NNP NNP NNP NNP NNP LRB IN NNP RRB VBD DT NNP NN IN VBG NNS IN DT NN IN NNP .\nHe urged the White House to stop ' lashing out ' at its critics and instead give American troops a strategy for success in Iraq .\tPRP VBD DT NNP NNP TO VB `` VBG RP `` IN PRP$ NNS CC RB VB JJ NNS DT NN IN NN IN NNP .\nThai Prime Minister Surayud Chulanont is blaming a series of deadly bombings in Bangkok on groups opposed to the military coup that put him in power .\tJJ JJ NN NNP NNP VBZ VBG DT NN IN JJ NNS IN NNP IN NNS VBN TO DT JJ NN WDT VBD PRP IN NN .\nMr. Surayud said Monday intelligence agencies believe the New Year 's Eve blasts were carried out by people who lost power following September 's military takeover .\tNNP NNP VBD NNP NN NNS VBP DT NNP NNP POS NNP NNS VBD VBN RP IN NNS WP VBD NN VBG NNP POS JJ NN .\nNine bombs ripped through the capital Sunday and early Monday , killing three people and wounding at least 38 others .\tCD NNS VBD IN DT NN NNP CC JJ NNP , VBG CD NNS CC VBG IN JJS CD NNS .\nMr. Surayud did not name deposed prime minister Thaksin Shinawatra or his allies as possible culprits .\tNNP NNP VBD RB VB JJ JJ NN NNP NNP CC PRP$ NNS IN JJ NNS .\nHe also downplayed the likelihood that an Islamist insurgency in the south has crept northward .\tPRP RB VBD DT NN IN DT NN NN IN DT NN VBZ VBN RB .\nSome 1,800 people have been killed in near-daily bombings in three southern provinces .\tDT CD NNS VBP VBN VBN IN JJ NNS IN CD JJ NNS .\nThe Obama administration is to announce Tuesday a new plan for the detention of illegal immigrants awaiting deportation .\tDT NNP NN VBZ TO VB NNP DT JJ NN IN DT NN IN JJ NNS VBG NN .\nUnder the new guidelines , the Immigration and Customs Enforcement agency will devise a system to determine which immigrants should be imprisoned and which should be housed in less restrictive facilities .\tIN DT JJ NNS , DT NNP CC NNP NNP NN MD VB DT NN TO VB WDT NNS MD VB VBN CC WDT MD VB VBN IN RBR JJ NNS .\nUnder the current system , violent and non-violent illegal immigrants are being held in a makeshift network of local , state and federal jails .\tIN DT JJ NN , JJ CC JJ JJ NNS VBP VBG VBN IN DT JJ NN IN JJ , NN CC JJ NNS .\nNearly 4,00,000 people are held in this system each year , at a cost of about $ 2 billion .\tRB CD NNS VBP VBN IN DT NN DT NN , IN DT NN IN IN $ CD CD .\nThe new proposals would house non-violent immigrants such as women and children in former hotels , nursing homes and other sites .\tDT JJ NNS MD VB JJ NNS JJ IN NNS CC NNS IN JJ NNS , VBG NNS CC JJ NNS .\nThe Obama administration is also considering building two new detention centers .\tDT NNP NN VBZ RB VBG VBG CD JJ NN NNS .\nImmigrant advocacy groups say many detainees have been denied access to basic medical care and other services under the current system .\tNNP NN NNS VBP JJ NNS VBP VBN VBN NN TO JJ JJ NN CC JJ NNS IN DT JJ NN .\nTurkish media say police have thwarted a bomb attack in Istanbul by arresting a man carrying a bag filled with explosives .\tJJ NNS VBP NNS VBP VBN DT NN NN IN NNP IN VBG DT NN VBG DT NN VBN IN NNS .\nTurkish news agencies say the man was detained Monday in central Istanbul 's Sisli district .\tJJ NN NNS VBP DT NN VBD VBN NNP IN JJ NNP POS NNP NN .\nThey say his bag contained three and a half kilograms of plastic explosives .\tPRP VBP PRP$ NN VBD CD CC DT NN NNS IN JJ NNS .\nThe reports say police later arrested at least one other suspect .\tDT NNS VBP NNS RB VBN IN JJS CD JJ NN .\nThere was no word on the intended target or identity of the suspected bomber .\tEX VBD DT NN IN DT JJ NN CC NN IN DT JJ NN .\nTurkish militants affiliated to Kurdish , leftist and Islamist groups have carried out bombings in major Turkish cities and resort towns in the past .\tJJ NNS VBN IN JJ , JJ CC JJ NNS VBP VBN RP NNS IN JJ JJ NNS CC NN NNS IN DT NN .\nIn May , a member of a militant leftist group blew himself up in Istanbul , killing six people and wounding many others .\tIN NNP , DT NN IN DT JJ JJ NN VBD PRP RP IN NNP , VBG CD NNS CC VBG JJ NNS .\nThe United Nations is appealing for help for Niger , where it says floods have displaced nearly 2,00,000 people in recent weeks .\tDT NNP NNP VBZ VBG IN NN IN NNP , WRB PRP VBZ NNS VBP VBN RB CD NNS IN JJ NNS .\nThe U.N. Office for the Coordination of Humanitarian Affairs says shelter materials and blankets are urgently needed .\tDT NNP NNP IN DT NN IN NNP NNP VBZ NN NNS CC NNS VBP RB VBN .\nFood and mosquito netting are also in short supply .\tNN CC NN NN VBP RB IN JJ NN .\nThe floods are compounding the misery in Niger , which was already experiencing a severe drought and food shortages before the rains hit .\tDT NNS VBP VBG DT NN IN NNP , WDT VBD RB VBG DT JJ NN CC NN NNS IN DT NNS VBD .\nThe floods washed away the few crops and vegetable gardens that were starting to sprout .\tDT NNS VBD RB DT JJ NNS CC JJ NNS WDT VBD VBG TO VB .\nA representative of the British-based charity Oxfam in Niger told VOA last week that people there are ' extremely desperate . '\tDT NN IN DT JJ NN NNP IN NNP VBD NNP JJ NN IN NNS EX VBP `` RB JJ . ``\nThe government of Venezuela has offered to send humanitarian aid and fuel to the United States in the wake of the devastation caused by Hurricane Katrina along the U.S. Gulf Coast .\tDT NN IN NNP VBZ VBN TO VB JJ NN CC NN TO DT NNP NNPS IN DT NN IN DT NN VBN IN NNP NNP IN DT NNP NNP NNP .\nThe Foreign Ministry issued a statement Wednesday , saying Venezuela is ready to send a humanitarian aid task force to assist in relief efforts , if requested by the United States .\tDT NNP NNP VBD DT NN NNP , VBG NNP VBZ JJ TO VB DT JJ NN NN NN TO VB IN NN NNS , IN VBN IN DT NNP NNPS .\nVenezuela 's Citgo Petroleum Corporation also pledged $ 1 million towards relief efforts .\tNNP POS NNP NNP NNP RB VBD $ CD CD IN NN NNS .\nCitgo says the funds will be directed to appropriate relief organizations in the affected areas .\tNNP VBZ DT NNS MD VB VBN TO JJ NN NNS IN DT JJ NNS .\nVenezuela is the world 's fifth largest oil exporter and a major supplier to the United States , although relations have been tense between the two countries .\tNNP VBZ DT NN POS JJ JJS NN NN CC DT JJ NN TO DT NNP NNPS , IN NNS VBP VBN JJ IN DT CD NNS .\nThe French news agency , Agence France Presse , says one of its photographers has been kidnapped in the Gaza Strip .\tDT JJ NN NN , NNP NNP NNP , VBZ CD IN PRP$ NNS VBZ VBN VBN IN DT NNP NNP .\nThe agency has identified the photographer as 50 year old Jaime Razuri , a Peruvian national .\tDT NN VBZ VBN DT NN IN CD NN JJ NNP NNP , DT JJ NN .\nAFP says Razuri had just finished covering a story and had returned to the agency 's office in Gaza .\tNNP VBZ NNP VBD RB VBN VBG DT NN CC VBD VBN TO DT NN POS NN IN NNP .\nHis translator says two gunmen abducted the photographer and fled in a Japanese car .\tPRP$ NN VBZ CD NNS VBD DT NN CC VBD IN DT JJ NN .\nKidnappings are frequent in the Gaza Strip .\tNNS VBP JJ IN DT NNP NNP .\nReporters without Borders , a Press watchdog , says Gaza is one of the riskiest places for journalists .\tNNS IN NNS , DT NNP NN , VBZ NNP VBZ CD IN DT JJS NNS IN NNS .\nIn October , a Spanish photographer was kidnapped in the Gaza Strip .\tIN NNP , DT JJ NN VBD VBN IN DT NNP NNP .\nHe was released unharmed after half-a-day in captivity .\tPRP VBD VBN JJ IN NN IN NN .\nZoo officials in San Diego , California , say a giant panda was born at the San Diego Zoo on Tuesday , making it one of only about 10 giant pandas in the United States .\tNNP NNS IN NNP NNP , NNP , VBP DT JJ NN VBD VBN IN DT NNP NNP NNP IN NNP , VBG PRP CD IN RB IN CD JJ NNS IN DT NNP NNPS .\nThe officials say the mother , a 13-year-old giant panda pregnant with twins , gave birth to one cub , but the other died in the womb .\tDT NNS VBP DT NN , DT JJ NN NN JJ IN NNS , VBD NN TO CD NN , CC DT NN VBD IN DT NN .\nIt is the second panda birth in less than a month at a U.S. zoo .\tPRP VBZ DT JJ NN NN IN JJR IN DT NN IN DT NNP NN .\nThe first was born three weeks ago at Washington 's National Zoo .\tDT NN VBD VBN CD NNS RB IN NNP POS NNP NNP .\nOn Tuesday , veterinarians determined that cub is male .\tIN NNP , NNS VBD IN NN VBZ JJ .\nThe cub 's parents are being loaned by China under a 10-year agreement .\tDT NN POS NNS VBP VBG VBN IN NNP IN DT JJ NN .\nGiant pandas are endangered with a total population of 1,600 , both in captivity and in the wild .\tJJ NNS VBP VBN IN DT JJ NN IN CD , DT IN NN CC IN DT NN .\nU.S. Senator John McCain has told Chinese officials they need to take a strong stand on North Korea in response to its rocket launch on Sunday .\tNNP NNP NNP NNP VBZ VBN JJ NNS PRP VBP TO VB DT JJ NN IN NNP NNP IN NN TO PRP$ NN NN IN NNP .\nMcCain spoke to reporters in Beijing after meeting with top officials there , saying he urged the Chinese to support the international community in imposing sanctions on North Korea .\tNNP VBD TO NNS IN NNP IN VBG IN JJ NNS RB , VBG PRP VBD DT NNS TO VB DT JJ NN IN VBG NNS IN NNP NNP .\nThe U.S. and its allies in Asia have said the recent rocket launch was a test of a ballistic missile , but North Korea denies the claim , saying it sent a satellite into space .\tDT NNP CC PRP$ NNS IN NNP VBP VBN DT JJ NN NN VBD DT NN IN DT JJ NN , CC NNP NNP VBZ DT NN , VBG PRP VBD DT NN IN NN .\nChina , along with Russia , has called for ' restraint ' in handling the situation .\tNNP , IN IN NNP , VBZ VBN IN `` NN `` IN VBG DT NN .\nMcCain also criticized the six-nation talks aimed at disarming North Korea 's nuclear program , saying they had not been very productive .\tNNP RB VBD DT JJ NNS VBN IN VBG NNP NNP POS JJ NN , VBG PRP VBD RB VBN RB JJ .\nMcCain , along with two other U.S. Senators , is in East Asia on a tour that also includes Japan and Vietnam .\tNNP , IN IN CD JJ NNP NNS , VBZ IN NNP NNP IN DT NN WDT RB VBZ NNP CC NNP .\nPakistan 's military says it has destroyed a training camp for suicide bombers in the Swat Valley .\tNNP POS NN VBZ PRP VBZ VBN DT NN NN IN NN NNS IN DT NNP NNP .\nThe army said in a statement that reports from intelligence sources and local residents led them to the location in northwest Pakistan .\tDT NN VBD IN DT NN IN NNS IN NN NNS CC JJ NNS VBD PRP TO DT NN IN JJ NNP .\nThey said six militants were killed in the operation and several others were wounded .\tPRP VBD CD NNS VBD VBN IN DT NN CC JJ NNS VBD VBN .\nPakistan 's government has been fighting a Taliban insurgency in the northwest .\tNNP POS NN VBZ VBN VBG DT NNP NN IN DT NN .\nFriday Britain pledged $ 1 billion in aid to help stabilize Pakistan 's violent border regions and to address the underlying causes of extremism .\tNNP NNP VBD $ CD CD IN NN TO VB VB NNP POS JJ NN NNS CC TO VB DT JJ NNS IN NN .\nBritish Prime Minister Gordon Brown confirmed the pledge during a meeting in London with Pakistani President Asif Ali Zardari .\tJJ NNP NNP NNP NNP VBD DT NN IN DT NN IN NNP IN JJ NNP NNP NNP NNP .\nA spokesman for Mr. Zardari , Farhatullah Babar , also called for better access to European Union markets to help boost Pakistan 's economy .\tDT NN IN NNP NNP , NNP NNP , RB VBD IN JJR NN TO NNP NNP NNS TO VB VB NNP POS NN .\nNorway has barred its oil fund from investing in China 's Dongfeng Motor Group because the firm sell arms supplies to military-ruled Burma .\tNNP VBZ VBN PRP$ NN NN IN VBG IN NNP POS NNP NNP NNP IN DT NN VB NNS NNS TO JJ NNP .\nNorway 's finance ministry says the Chinese company sells military trucks to Burma .\tNNP POS NN NN VBZ DT JJ NN VBZ JJ NNS TO NNP .\nFinance Minster Kristin Halvorsen said Friday Norway can not finance companies that support the military dictatorship in Burma through military sales .\tNNP NNP NNP NNP VBD NNP NNP MD RB VB NNS WDT VBP DT JJ NN IN NNP IN JJ NNS .\nNorway 's oil fund , officially called the Government Pension Fund-Global , invests the country 's oil and gas wealth in foreign stocks and bonds .\tNNP POS NN NN , RB VBD DT NNP NNP NNP , VBZ DT NN POS NN CC NN NN IN JJ NNS CC NNS .\nThe fund is meant to save money for the future when Norway 's oil supply runs dry .\tDT NN VBZ VBN TO VB NN IN DT NN WRB NNP POS NN NN VBZ JJ .\nThe fund is currently worth around $ 300 billion .\tDT NN VBZ RB JJ IN $ CD CD .\nNorway is a major exporter of oil and natural gas .\tNNP VBZ DT JJ NN IN NN CC JJ NN .\nThere are many reasons performers get into show business .\tEX VBP JJ NNS NNS VBP IN NN NN .\nSome want to be stars while others crave the creativity it offers .\tDT VBP TO VB NNS IN NNS VBP DT NN PRP VBZ .\nVOA 's Ernest Leong has the story of two comedians who , by their own admission , got into show business because they were too lazy to do anything else .\tNNP POS NNP NNP VBZ DT NN IN CD NNS WP , IN PRP$ JJ NN , VBD IN NN NN IN PRP VBD RB JJ TO VB DT RB .\nSouth Korea and nine Southeast Asian nations have signed a free-trade deal , with Thailand as the lone critic to the agreement because of a dispute over rice .\tNNP NNP CC CD JJ JJ NNS VBP VBN DT JJ NN , IN NNP IN DT JJ NN TO DT NN IN IN DT NN IN NN .\nTrade ministers from South Korea and the Association of Southeast Asian Nations , or ASEAN , signed the agreement Friday in Kuala Lumpur , just ahead of next week 's Southeast Asian economic summit there .\tNNP NNS IN NNP NNP CC DT NNP IN NNP NNP NNP , CC NNP , VBD DT NN NNP IN NNP NNP , RB RB IN JJ NN POS JJ JJ JJ NN RB .\nDetails of the agreement were not immediately available .\tNNS IN DT NN VBD RB RB JJ .\nBangkok declined to sign the deal because it objects to South Korea 's insistence on keeping rice out of the trade deal .\tNNP VBD TO VB DT NN IN PRP VBZ TO NNP NNP POS NN IN VBG NN IN IN DT NN NN .\nThe two countries are expected to hold talks over the issue at a later date .\tDT CD NNS VBP VBN TO VB NNS IN DT NN IN DT JJ NN .\nAfghan authorities have ordered the slaughter of birds in areas where two cases of bird flu have been found .\tJJ NNS VBP VBN DT NN IN NNS IN NNS WRB CD NNS IN NN NN VBP VBN VBN .\nThe U.N. 's Food and Agriculture Organization said Wednesday birds carrying the virus have been reported in the eastern provinces of Nangarhar and Kunar .\tDT NNP POS NNP CC NNP NNP VBD NNP NNS VBG DT NN VBP VBN VBN IN DT JJ NNS IN NNP CC NNP .\nOfficials suspect the cases are the deadly H5N1 strain of bird flu but do not yet have confirmation .\tNNS VBP DT NNS VBP DT JJ NNP NN IN NN NN CC VBP RB RB VB NN .\nLast year , Afghanistan discovered cases of the H5N1 virus in birds , but not humans .\tJJ NN , NNP VBD NNS IN DT NNP NN IN NNS , CC RB NNS .\nThe deadly strain of the bird flu virus has killed at least 160 people worldwide since 2003 .\tDT JJ NN IN DT NN NN NN VBZ VBN IN JJS CD NNS JJ IN CD .\nSomali gunmen have seized three foreign aid workers in northern Kenya .\tJJ NNS VBP VBN CD JJ NN NNS IN JJ NNP .\nThe trio was kidnapped early Saturday morning in a raid in the border town of Mandera .\tDT NN VBD VBN JJ NNP NN IN DT NN IN DT NN NN IN NNP .\nThe nationalities of the humanitarian workers and the organizations they work for are not immediately clear .\tDT NNS IN DT JJ NNS CC DT NNS PRP VBP IN VBP RB RB JJ .\nTwo French military advisers were kidnapped in Somalia earlier this week .\tCD JJ JJ NNS VBD VBN IN NNP RBR DT NN .\nThey are reportedly being held by the Islamist group al-Shabab .\tPRP VBP RB VBG VBN IN DT NNP NN NNP .\nThe French Foreign Ministry says the kidnapped men were on an official mission to provide assistance to the Somali government .\tDT JJ NNP NNP VBZ DT VBN NNS VBD IN DT JJ NN TO VB NN TO DT JJ NN .\nIt is not clear whether the French nationals were kidnapped for ransom or political reasons .\tPRP VBZ RB JJ IN DT JJ NNS VBD VBN IN NN CC JJ NNS .\nSomalia is chaotic after 18 years of internal strife , and foreigners are frequent kidnap targets .\tNNP VBZ JJ IN CD NNS IN JJ NN , CC NNS VBP JJ NN NNS .\nKidnap victims usually are released unharmed , but in many cases only after a ransom is paid .\tNN NNS RB VBP VBN JJ , CC IN JJ NNS RB IN DT NN VBZ VBN .\nThe U.S. women 's soccer ( football ) team has defeated Sweden , 1-0 , in an Olympic prep match in Skelleftea , Sweden .\tDT NNP NNS POS NN LRB NN RRB NN VBZ VBN NNP , CD , IN DT NNP NN NN IN NNP , NNP .\nCarli Lloyd of the United States scored with a deflected shot in the 29th minute .\tNNP NNP IN DT NNP NNPS VBD IN DT VBN NN IN DT JJ NN .\nLloyd dribbled past three defenders and fired a low , left-footed shot that ricocheted past the Swedish goal keeper .\tNNP VBD JJ CD NNS CC VBD DT JJ , JJ NN WDT VBD IN DT JJ NN NN .\nThe win was the second in four days for the U.S. women , who also beat Norway , 4-0 , July 2 .\tDT NN VBD DT JJ IN CD NNS IN DT NNP NNS , WP RB VBD NNP , CD , NNP CD .\nThe win improved the Americans ' record against the Swedes to 16 wins in 25 matches .\tDT NN VBD DT NNS POS NN IN DT NNS TO CD NNS IN CD NNS .\nThe match also was the first for Pia Sundhage as coach of the United States against her native country .\tDT NN RB VBD DT JJ IN NNP NNP IN NN IN DT NNP NNPS IN PRP$ JJ NN .\nShe played for Sweden in two World Cups and one Olympics .\tPRP VBD IN NNP IN CD NNP NNP CC CD NNPS .\nThe U.S. women next play Brazil July 13 .\tDT NNP NNS RB VBP NNP NNP CD .\nA Spanish judge has charged 29 people with the 2004 Madrid train bombings that killed 191 people , and ruled that al-Qaida was not involved .\tDT JJ NN VBZ VBN CD NNS IN DT CD NNP NN NNS WDT VBD CD NNS , CC VBD DT NNP VBD RB VBN .\nJudge Juan del Olmo charged five suspects with 191 counts of murder and more than 1,700 counts of attempted murder - the number of victims wounded .\tNNP NNP NNP NNP VBD CD NNS IN CD NNS IN NN CC JJR IN CD NNS IN JJ NN IN DT NN IN NNS VBN .\nThe other suspects were charged with collaboration .\tDT JJ NNS VBD VBN IN NN .\nMost of the suspects are Moroccans or Spaniards .\tJJS IN DT NNS VBP NNS CC NNS .\nThe murder charges could lead to prison sentences of thousands of years , but under Spanish law prisoners can be held for a maximum of 40 years .\tDT NN NNS MD VB TO NN NNS IN NNS IN NNS , CC IN JJ NN NNS MD VB VBN IN DT NN IN CD NNS .\nJudge del Olmo said the suspects were inspired by al-Qaida , but said there was no direct link to the terror group .\tNNP NNP NNP VBD DT NNS VBD VBN IN NNP , CC VBD EX VBD DT JJ NN TO DT NN NN .\nHe also ruled out any connection to the Basque separatist group , ETA .\tPRP RB VBD RP DT NN TO DT NNP NN NN , NNP .\nThe suspects are expected to go on trial sometime next year .\tDT NNS VBP VBN TO VB IN NN RB JJ NN .\nU.S.-led coalition forces in Afghanistan say they are investigating whether friendly fire killed an American and a Canadian soldier as they fought in a battle against Taleban rebels last week .\tJJ NN NNS IN NNP VBP PRP VBP VBG IN JJ NN VBD DT JJ CC DT JJ NN IN PRP VBD IN DT NN IN NNP NNS JJ NN .\nThe fighting began last Wednesday when Taleban insurgents attacked a coalition military base in the southern province of Helmand .\tDT NN VBD JJ NNP WRB NNP NNS VBD DT NN JJ NN IN DT JJ NN IN NNP .\nIt was one of the Taleban 's biggest assaults on coalition forces in months .\tPRP VBD CD IN DT NNP POS JJS NNS IN NN NNS IN NNS .\nFive coalition troops also were wounded in the battle , including an American , three Canadians and one Afghan .\tCD NN NNS RB VBD VBN IN DT NN , VBG DT NN , CD NNS CC CD NN .\nA coalition statement released today says a team of Americans , Canadians and Afghans will investigate the fighting , including whether any casualties resulted from friendly fire .\tDT NN NN VBN NN VBZ DT NN IN NNS , NNS CC NNS MD VB DT NN , VBG IN DT NNS VBD IN JJ NN .\nThe U.S. military says coalition troops killed 32 Taleban insurgents in the battle .\tDT NNP NN VBZ NN NNS VBD CD NNP NNS IN DT NN .\nEuropean Union foreign policy chief Javier Solana says EU officials will likely decide Tuesday to sharply cut the number of peacekeepers in Bosnia-Herzegovina .\tNNP NNP JJ NN NN NNP NNP VBZ NNP NNS MD RB VB NNP TO RB VB DT NN IN NNS IN NNP .\nSolana said Monday the security situation in Bosnia is much improved .\tNNP VBD NNP DT NN NN IN NNP VBZ RB VBN .\nEU officials will likely reduce the number of troops from the current 6,000 to 2,500 .\tNNP NNS MD RB VB DT NN IN NNS IN DT JJ CD TO CD .\nThe ministers are also expected to formally decide today on whether to extend the Bosnian peacekeeping mission for another year .\tDT NNS VBP RB VBN TO RB VB NN IN IN TO VB DT JJ NN NN IN DT NN .\nThe current mandate expires on June 30 .\tDT JJ NN VBZ IN NNP CD .\nNATO peacekeepers were deployed to Bosnia as part of the 1995 Dayton Peace Accords that ended the fighting in the former Yugoslavia .\tNNP NNS VBD VBN TO NNP IN NN IN DT CD NNP NNP NNP WDT VBD DT NN IN DT JJ NNP .\nNATO turned over peacekeeping duties to the European Union in 2004 .\tNNP VBD RP VBG NNS TO DT NNP NNP IN CD .\nIranian police have detained a controversial Shi'ite cleric after clashing with his supporters outside his Tehran home .\tJJ NNS VBP VBN DT JJ NNP NN IN VBG IN PRP$ NNS IN PRP$ NNP NN .\nSecurity officials Sunday said the demonstration 's leaders and Ayatollah Mohammad Kazemeini Boroujerdi were arrested .\tNNP NNS NNP VBD DT NN POS NNS CC NNP NNP NNP NNP VBD VBN .\nA crowd of about 200 people had gathered around Boroujerdi 's house to call for the release of the cleric 's jailed followers .\tDT NN IN IN CD NNS VBD VBN IN NNP POS NN TO VB IN DT NN IN DT NN POS JJ NNS .\nThey chanted religious slogans , and carried signs , including one saying they were ready to die to defend traditional religion .\tPRP VBD JJ NNS , CC VBD NNS , VBG CD VBG PRP VBD JJ TO VB TO VB JJ NN .\nIranian officials said some of the protesters were armed with knives and acid .\tJJ NNS VBD DT IN DT NNS VBD VBN IN NNS CC NN .\nBoroujerdi has previously been arrested for advocating the separation of religion and politics in the Islamic state .\tNNP VBZ RB VBN VBN IN VBG DT NN IN NN CC NNS IN DT JJ NN .\nThe cleric says he has written letters to international leaders including Pope Benedict asking for support .\tDT NN VBZ PRP VBZ VBN NNS TO JJ NNS VBG NNP NNP VBG IN NN .\nIran has an elected president and parliament , but Islamic clerics select the nation 's supreme leader .\tNNP VBZ DT VBN NN CC NN , CC NNP NNS VBP DT NN POS JJ NN .\nChinese authorities are offering generous rewards to anyone who provides information on security threats during the Olympic Games .\tJJ NNS VBP VBG JJ NNS TO DT WP VBZ NN IN NN NNS IN DT NNP NNPS .\nA report Friday by China 's state-run Xinhua news agency says individuals could receive as much as $ 73,000 for tips over the next several months , from July 10 to October 31 .\tDT NN NNP IN NNP POS JJ NNP NN NN VBZ NNS MD VB RB JJ IN $ CD IN NNS IN DT JJ JJ NNS , IN NNP CD TO NNP CD .\nBeijing authorities say rewards would be paid for substantial information on terrorist attacks and groups planning to sabotage the games , such as , they say , the Falun Gong .\tNNP NNS VBP NNS MD VB VBN IN JJ NN IN JJ NNS CC NNS VBG TO VB DT NNS , JJ IN , PRP VBP , DT NNP NNP .\nRewards would also be paid for information regarding the deaths of individuals involved in the Olympics and foreigners .\tNNS MD RB VB VBN IN NN VBG DT NNS IN NNS VBN IN DT NNS CC NNS .\nThe Chinese government announced this week that it has already broken up five alleged terrorist groups and arrested more than 80 people suspected of plotting to sabotage the Olympics .\tDT JJ NN VBD DT NN IN PRP VBZ RB VBN RP CD JJ JJ NNS CC VBN JJR IN CD NNS VBN IN VBG TO VB DT NNS .\nChina says terrorism is the biggest threat to the Olympic Games .\tNNP VBZ NN VBZ DT JJS NN TO DT NNP NNPS .\nU.S. forecasters say Hurricane John has strengthened into a Category 3 storm as it churns off Mexico 's Pacific coast , with wind speeds of 185 kilometers per hour .\tNNP NNS VBP NNP NNP VBZ VBN IN DT NNP CD NN IN PRP VBZ RP NNP POS NNP NN , IN NN NNS IN CD NNS IN NN .\nThe storm is on a track that parallels the Mexican coast .\tDT NN VBZ IN DT NN WDT VBZ DT JJ NN .\nForecasters warned Tuesday that the system could strengthen within 24 hours , triggering dangerous flash floods and mudslides over areas of mountainous terrain .\tNNS VBD NNP IN DT NN MD VB IN CD NNS , VBG JJ NN NNS CC NNS IN NNS IN JJ NN .\nAt mid afternoon local time , the storm was centered 280 kilometers south of the tourist resort of Acapulco .\tIN JJ NN JJ NN , DT NN VBD VBN CD NNS RB IN DT NN NN IN NNP .\nA tropical storm warning is in effect from Lagunas de Chacahua westward to Lazaro Cardenas .\tDT JJ NN NN VBZ IN NN IN NNP NNP NNP VBD TO NNP NNP .\nA tropical storm watch is posted from west of Lazaro Cardenas to Cabo Corrientes .\tDT JJ NN NN VBZ VBN IN NN IN NNP NNP TO NNP NNP .\nJohn is the sixth hurricane of this year 's Pacific season .\tNNP VBZ DT JJ NN IN DT NN POS NNP NN .\nAuthorities in Guatemala say mudslides triggered by a series of torrential rains have killed at least 45 people and caused half a billion dollars in damage .\tNNS IN NNP VBP NNS VBN IN DT NN IN JJ NNS VBP VBN IN JJS CD NNS CC VBD PDT DT CD NNS IN NN .\nThe death toll climbed Monday as Guatemalans held a national day of mourning to remember the dead , and President Alvaro Colom declared the situation a ' national tragedy . '\tDT NN NN VBD NNP IN NNS VBD DT JJ NN IN VBG TO VB DT NN , CC NNP NNP NNP VBD DT NN DT `` JJ NN . ``\nOfficials fear the death toll could go higher as rescuers search for additional victims .\tNNS VBP DT NN NN MD VB JJR IN NNS NN IN JJ NNS .\nAt least 15 people are believed to be missing .\tIN JJS CD NNS VBP VBN TO VB VBG .\nTropical weather systems in both the Pacific and the Gulf of Mexico have left hillsides throughout Guatemala and southern Mexico saturated with water .\tJJ NN NNS IN DT DT NNP CC DT NNP IN NNP VBP VBN NNS IN NNP CC JJ NNP VBD IN NN .\nHeavy flooding in the Mexican Gulf Coast state of Tabasco also forced thousands of people from their homes .\tJJ NN IN DT JJ NNP NNP NN IN NNP RB VBD NNS IN NNS IN PRP$ NNS .\nAuthorities in the states of Chiapas , Oaxaca and Veracruz reported serious flooding as well .\tNNS IN DT NNS IN NNP , NNP CC NNP VBD JJ NN RB RB .\nA United Nations human rights envoy has expressed deep concern about the physical and mental health of some 60 imprisoned dissidents in Cuba .\tDT NNP NNPS JJ NNS NN VBZ VBN JJ NN IN DT JJ CC JJ NN IN DT CD VBN NNS IN NNP .\nHuman rights expert Catherine Chanet told the U.N. Human Rights Council Tuesday that she remains concerned about detention conditions for a group of dissidents - journalists , writers , and activists - arrested in a crackdown in Cuba in 2003 .\tNN NNS NN NNP NNP VBD DT NNP NNP NNP NNP NNP IN PRP VBZ JJ IN NN NNS IN DT NN IN NNS IN NNS , NNS , CC NNS : VBN IN DT NN IN NNP IN CD .\nShe also said Cuba 's refusal to cooperate has resulted in an impasse and she recommended ending yearly reports on Cuba 's human rights situation .\tPRP RB VBD NNP POS NN TO VB VBZ VBN IN DT NN CC PRP VBD VBG JJ NNS IN NNP POS JJ NNS NN .\nChanet suggested moving to a proposed new system in which the Human Rights Council reviews the human rights situation of every nation in its membership , not just selected ones with poor past records .\tNNP VBD VBG TO DT VBN JJ NN IN WDT DT NNP NNP NNP VBZ DT JJ NNS NN IN DT NN IN PRP$ NN , RB RB VBN NNS IN JJ NN NNS .\nCuba supports that move .\tNNP VBZ DT NN .\nIn a speech Tuesday , the Cuban U.N. ambassador in Geneva said about the yearly reports : ' this farce is about to end . '\tIN DT NN NNP , DT JJ NNP NN IN NNP VBD IN DT JJ NNS IN `` DT NN VBZ IN TO VB . ``\nPakistani officials say they have killed two suspected Islamic militants and arrested another 12 in separate raids .\tJJ NNS VBP PRP VBP VBN CD JJ JJ NNS CC VBN DT CD IN JJ NNS .\nPolice say they killed two foreign militants and arrested another 11 during a raid Saturday in a village in the remote North Waziristan region , which borders Afghanistan .\tNNS VBP PRP VBD CD JJ NNS CC VBD DT CD IN DT NN NNP IN DT NN IN DT JJ NNP NNP NN , WDT VBZ NNP .\nThey say a shootout erupted after security forces surrounded the hideout of the suspected militants .\tPRP VBP DT NN VBD IN NN NNS VBN DT NN IN DT JJ NNS .\nThe Pakistani armed forces have launched several operations in recent years to flush out suspected al-Qaida and Taleban fighters they believe have taken refuge in remote border regions .\tDT JJ JJ NNS VBP VBN JJ NNS IN JJ NNS TO VB RP JJ NNP CC NNP NNS PRP VBP VBP VBN NN IN JJ NN NNS .\nEarlier , police announced the arrest of Ramzan Mengal , a man they described as a senior member of the outlawed Sunni Muslim militant group , Lashkar-e-Jhangvi .\tRBR , NN VBD DT NN IN NNP NNP , DT NN PRP VBD IN DT JJ NN IN DT JJ NNP NNP JJ NN , NNP .\nThey said they arrested him Friday in the southwestern city of Quetta in connection with attacks on Shi'ite Muslims that have claimed more than 100 lives .\tPRP VBD PRP VBN PRP NNP IN DT JJ NN IN NNP IN NN IN NNS IN NNP NNPS WDT VBP VBN RBR IN CD NNS .\nKuwait has reported two cases of bird flu - the first report of the virus in the Persian Gulf region .\tNNP VBZ VBN CD NNS IN NN NN IN DT JJ NN IN DT NN IN DT NNP NNP NN .\nThe head of the Public Agricultural Authority Sheikh Fahd Salem al-Sabah said Thursday the cases were discovered in two birds and that at least one was a migrating fowl .\tDT NN IN DT NNP NNP NNP NNP NNP NNP NNP VBD NNP DT NNS VBD VBN IN CD NNS CC IN IN JJS CD VBD DT JJ NN .\nIt is not clear if the birds were carrying the deadly H5N1 strain of the virus .\tPRP VBZ RB JJ IN DT NNS VBD VBG DT JJ NNP NN IN DT NN .\nMeanwhile , China has reported two new outbreaks of bird flu among poultry in the northeastern province of Liaoning , bringing the total number of reported outbreaks in the country over the past month to six .\tRB , NNP VBZ VBN CD JJ NNS IN NN NN IN NN IN DT JJ NN IN NNP , VBG DT JJ NN IN VBN NNS IN DT NN IN DT JJ NN TO CD .\nWednesday in Geneva , the World Bank said it plans to provide $ 1 billion to pandemic programs , while the World Organization for Animal Health and the Food and Agricultural Organization said another $ 500 million will be needed to fight the disease in animals .\tNNP IN NNP , DT NNP NNP VBD PRP VBZ TO VB $ CD CD TO JJ NNS , IN DT NNP NNP IN NNP NNP CC DT NN CC NNP NNP VBD DT $ CD CD MD VB VBN TO VB DT NN IN NNS .\nRussia has cited the importance of relations with the United States , but expressed some concern a day after President Bush criticized democracy in Russia .\tNNP VBZ VBN DT NN IN NNS IN DT NNP NNPS , CC VBD DT NN DT NN IN NNP NNP VBD NN IN NNP .\nRussia 's ambassador to the United States , Yuri Ushakov , says the two nations must make concerted efforts in the nuclear field , and also share goals in the energy sphere .\tNNP POS NN TO DT NNP NNPS , NNP NNP , VBZ DT CD NNS MD VB JJ NNS IN DT JJ NN , CC RB NN NNS IN DT NN NN .\nWriting in The Washington Post newspaper , Mr. Ushakov also said it is inadmissible to move in the direction of demonizing Russia .\tVBG IN DT NNP NNP NN , NNP NNP RB VBD PRP VBZ JJ TO VB IN DT NN IN VBG NNP .\nHe also said Russia has been troubled by some U.S. actions , particularly in Iraq , but respectfully presents its view , rather than try to undermine America 's image or interests .\tPRP RB VBD NNP VBZ VBN VBN IN DT NNP NNS , RB IN NNP , CC RB VBZ PRP$ NN , RB IN VB TO VB NNP POS NN CC NNS .\nIn Brussels Monday , President Bush urged Russia to renew a commitment to democracy and the rule of law .\tIN NNP NNP , NNP NNP VBD NNP TO VB DT NN TO NN CC DT NN IN NN .\nRussian Foreign Minister Sergei Lavrov described Mr. Bush 's comments as a call for a strategic partnership to fight terrorism and the spread of weapons of mass destruction .\tJJ NNP NNP NNP NNP VBD NNP NNP POS NNS IN DT NN IN DT JJ NN TO VB NN CC DT NN IN NNS IN NN NN .\nIraqi officials say a powerful car bomb ripped through a busy Baghdad street Wednesday , killing at least 35 people and wounding more than 70 .\tJJ NNS VBP DT JJ NN NN VBD IN DT JJ NNP NN NNP , VBG IN JJS CD NNS CC VBG JJR IN CD .\nAuthorities say the parked car exploded near several restaurants in the mainly Shi'ite neighborhood of Shula , in the capital 's northwest .\tNNS VBP DT JJ NN VBD IN JJ NNS IN DT RB JJ NN IN NNP , IN DT NN POS NN .\nWitnesses say many of the victims were dining at the restaurants and shopping at nearby stores when the attack took place .\tNNS VBP NN IN DT NNS VBD VBG IN DT NNS CC NN IN JJ NNS WRB DT NN VBD NN .\nWomen and children were reported to be among those killed .\tNNS CC NNS VBD VBN TO VB IN DT VBN .\nThe blast was the biggest bombing in Iraq since April 29th , when more than 50 people were killed in bombings in Shi'ite districts in Baghdad .\tDT NN VBD DT JJS NN IN NNP IN NNP CD , WRB JJR IN CD NNS VBD VBN IN NNS IN NNP NNS IN NNP .\nApril was a deadly month in Iraq , with 355 Iraqis reported killed in attacks .\tNNP VBD DT JJ NN IN NNP , IN CD NNS VBN VBN IN NNS .\nThe United States will decide in the coming weeks whether to take the North Korea nuclear issue to the United Nations , where sanctions could be imposed .\tDT NNP NNPS MD VB IN DT VBG NNS IN TO VB DT NNP NNP JJ NN TO DT NNP NNP , WRB NNS MD VB VBN .\nA senior U.S. defense official said Sunday that Washington is considering taking the matter to the world body because U.S. officials do not see any effort on the part of Pyongyang to cooperate .\tDT JJ NNP NN NN VBD NNP IN NNP VBZ VBG VBG DT NN TO DT NN NN IN NNP NNS VBP RB VB DT NN IN DT NN IN NNP TO VB .\nThe official , speaking on the sidelines of a security conference in Singapore , described the North 's statements on the nuclear issue as ' a downward spiral of threats . '\tDT NN , VBG IN DT NNS IN DT NN NN IN NNP , VBD DT NNP POS NNS IN DT JJ NN IN `` DT JJ NN IN NNS . ``\nThe senior U.S. defense official made the comments to reporters on condition of anonymity .\tDT JJ NNP NN NN VBD DT NNS TO NNS IN NN IN NN .\nSouth Korean President Roh Moo-hyun will meet President Bush in Washington on Friday for talks on the nuclear issue .\tJJ JJ NNP NNP NNP MD VB NNP NNP IN NNP IN NNP IN NNS IN DT JJ NN .\nPyongyang has threatened that any U.N. sanctions would be considered a declaration of war .\tNNP VBZ VBN IN DT NNP NNS MD VB VBN DT NN IN NN .\nThe United States has claimed the final quarterfinal slot in the men 's Olympic ice hockey tournament at the Turin Games in Italy .\tDT NNP NNPS VBZ VBN DT JJ JJ NN IN DT NNS POS NNP NN NN NN IN DT NNP NNPS IN NNP .\nThe U.S. team did not have to play Tuesday to advance because Kazakhstan defeated Latvia , 05-Feb .\tDT NNP NN VBD RB VB TO VB NNP TO VB IN NNP VBD NNP , CD .\nThe Group-B result eliminated the slim chance for Latvia to overtake the United States at the end of first round play .\tDT NNP NN VBD DT JJ NN IN NNP TO VB DT NNP NNPS IN DT NN IN JJ NN NN .\nThe Latvians needed to beat Kazakhstan and erase a huge 16-goal margin while hoping the United States would lose against Russia later in the day .\tDT NNS VBD TO VB NNP CC VB DT JJ JJ NN IN VBG DT NNP NNPS MD VB IN NNP RB IN DT NN .\nSwitzerland rallied for a 03-Mar tie with Italy to clinch second place in Group-A behind Finland .\tNNP VBD IN DT JJ NN IN NNP TO VB JJ NN IN NNP IN NNP .\nAll eight teams have been determined for the quarterfinal round beginning Wednesday .\tDT CD NNS VBP VBN VBN IN DT JJ NN VBG NNP .\nBut results from the final games will decide how the teams are paired in the next round .\tCC NNS IN DT JJ NNS MD VB WRB DT NNS VBP VBN IN DT JJ NN .\nCanada and the Czech Republic are the other teams advancing from Group-A .\tNNP CC DT JJ NNP VBP DT JJ NNS VBG IN NNP .\nThe United States joins Slovakia , Russia and Sweden from Group-B .\tDT NNP NNPS VBZ NNP , NNP CC NNP IN NNP .\nAs America 's Hispanic population grows , music from Latin America has surged in popularity in the United States .\tIN NNP POS JJ NN VBZ , NN IN NNP NNP VBZ VBN IN NN IN DT NNP NNPS .\nMusicians - particularly those from Mexico - have struck a cord with US audiences .\tNNS : RB DT IN NNP : VBP VBN DT NN IN NNP NNS .\nBut artists from Latin America 's largest nation , Brazil , say they are finding it much harder to break into the US market than their counterparts from other countries .\tCC NNS IN NNP NNP POS JJS NN , NNP , VBP PRP VBP VBG PRP RB RBR TO VB IN DT NNP NN IN PRP$ NNS IN JJ NNS .\nSteve Mort reports for VOA from Rio de Janeiro .\tNNP NNP VBZ IN NNP IN NNP NNP NNP .\nIsraeli President Moshe Katsav has begun talks with political parties on forming a new coalition government .\tJJ NNP NNP NNP VBZ VBN NNS IN JJ NNS IN VBG DT JJ NN NN .\nMr. Katsav is to meet Sunday with senior members of the Kadima Party , which won 29 seats in the 120-member parliament in legislative elections Wednesday .\tNNP NNP VBZ TO VB NNP IN JJ NNS IN DT NNP NNP , WDT VBD CD NNS IN DT JJ NN IN JJ NNS NNP .\nHe also is expected to meet with leaders from the Labor Party , which came in second in the poll .\tPRP RB VBZ VBN TO VB IN NNS IN DT NNP NNP , WDT VBD IN JJ IN DT NN .\nPolitical observers say Kadima will recommend that its leader , Acting Prime Minister Ehud Olmert , be formally appointed prime minister and charged with forming a cabinet .\tJJ NNS VBP NNP MD VB IN PRP$ NN , VBG NNP NNP NNP NNP , VB RB VBN JJ NN CC VBN IN VBG DT NN .\nKadima has already begun informal talks with potential coalition partners .\tNNP VBZ RB VBN JJ NNS IN JJ NN NNS .\nMr. Olmert has said coalition partners must accept his plan for unilateral withdrawals from the West Bank .\tNNP NNP VBZ VBN NN NNS MD VB PRP$ NN IN JJ NNS IN DT NNP NNP .\nThe U.S.-led coalition in Afghanistan says Afghan and coalition forces are initiating most of the engagements on Islamic militants in the country 's restive south .\tDT JJ NN IN NNP VBZ JJ CC NN NNS VBP VBG JJS IN DT NNS IN JJ NNS IN DT NN POS JJ NN .\nA U.S. military spokesman told a news conference in Kabul Wednesday the initiative is with the Afghan and foreign forces , not with the Taleban .\tDT NNP NN NN VBD DT NN NN IN NNP NNP DT NN VBZ IN DT JJ CC JJ NNS , RB IN DT NNP .\nHis remarks come as guerillas are stepping up attacks in the south before NATO-led troops take over control of security in the region next month .\tPRP$ NNS VBP IN NNS VBP VBG RP NNS IN DT NN IN JJ NNS VBP RP NN IN NN IN DT NN JJ NN .\nMeanwhile the coalition forces say they killed five militants in Uruzgan province on Wednesday and 17 others in several other provinces since Sunday .\tRB DT NN NNS VBP PRP VBD CD NNS IN NNP NN IN NNP CC CD NNS IN JJ JJ NNS IN NNP .\nAlso , a suspected suicide bomber was killed when the explosives strapped to his body detonated prematurely as he was trying to enter offices of a Turkish construction company in central Ghazni province .\tRB , DT JJ NN NN VBD VBN WRB DT NNS VBN TO PRP$ NN VBD RB IN PRP VBD VBG TO VB NNS IN DT JJ NN NN IN JJ NNP NN .\nIslamist rebels have attacked African Union peacekeepers for a second straight day in the Somali capital , Mogadishu , wounding at least one soldier .\tNNP NNS VBP VBN NNP NNP NNS IN DT JJ JJ NN IN DT JJ NN , NNP , VBG IN JJS CD NN .\nAn AU spokesman says the soldier was hurt Monday when a roadside bomb exploded near an AU vehicle .\tDT NNP NN VBZ DT NN VBD VBN NNP WRB DT NN NN VBD IN DT NNP NN .\nOn Sunday , another roadside bomb wounded two newly arrived AU peacekeepers from Burundi .\tIN NNP , DT NN NN VBD CD RB VBN NNP NNS IN NNP .\nApproximately two-thousand troops from Burundi and Uganda make up the AU peacekeeping mission , known as AMISOM .\tRB JJ NNS IN NNP CC NNP VBP RP DT NNP NN NN , VBN IN NNP .\nThe force has been guarding key sites in Mogadishu as Somalia 's Ethiopian-backed government fights the Islamist insurgency .\tDT NN VBZ VBN VBG JJ NNS IN NNP IN NNP POS JJ NN VBZ DT NNP NN .\nThe insurgency began in early 2007 , soon after Ethiopian forces helped the government oust an Islamist movement from power in Mogadishu and other Somali cities .\tDT NN VBD IN JJ CD , RB IN JJ NNS VBD DT NN VB DT JJ NN IN NN IN NNP CC JJ JJ NNS .\nAuthorities in Iraq say nine people have been shot and killed in the northeast town of Baquba .\tNNS IN NNP VBP CD NNS VBP VBN VBN CC VBN IN DT NN NN IN NNP .\nThe victims were boarding a minibus on their way to work Wednesday morning when they were gunned down .\tDT NNS VBD VBG DT NN IN PRP$ NN TO VB NNP NN WRB PRP VBD VBN RB .\nThe attack comes as authorities are dealing with a new wave of kidnappings in Iraq .\tDT NN VBZ IN NNS VBP VBG IN DT JJ NN IN NNS IN NNP .\nFour Western aid workers , including an American , a Briton and two Canadians , were abducted Saturday in Baghdad .\tCD JJ NN NNS , VBG DT NN , DT NN CC CD NNS , VBD VBN NNP IN NNP .\nThe four were seen in a videotape broadcast Tuesday by Arab broadcaster Al-Jazeera .\tDT CD VBD VBN IN DT NN NN NNP IN NNP NN NNP .\nThe video was made by an insurgent group calling itself the Swords of Righteousness Brigade .\tDT NN VBD VBN IN DT JJ NN VBG PRP DT NNS IN NNP NNP .\nMeanwhile , Germany has called for the release of a kidnapped national , archaeologist Susanne Osthoff , and her driver who disappeared Friday .\tRB , NNP VBZ VBN IN DT NN IN DT VBN NN , NN NNP NNP , CC PRP$ NN WP VBD NNP .\nOfficials believe the latest kidnappings are aimed at disrupting next month 's national parliamentary elections .\tNNS VBP DT JJS NNS VBP VBN IN VBG JJ NN POS JJ JJ NNS .\nA series of explosions shook the Iraqi capital Wednesday , while a high-ranking U.S. official visited the country .\tDT NN IN NNS VBD DT JJ NN NNP , IN DT JJ NNP NN VBD DT NN .\nDeputy Secretary of State Robert Zoellick visited the former insurgent stronghold of Fallujah to inspect reconstruction efforts there .\tNNP NNP IN NNP NNP NNP VBD DT JJ JJ NN IN NNP TO VB NN NNS RB .\nLater , he is to meet in Baghdad with Iraqi President Jalal Talabani and Prime Minister Ibrahim al-Jaafari .\tRB , PRP VBZ TO VB IN NNP IN JJ NNP NNP NNP CC NNP NNP NNP NNP .\nMeanwhile , near Kirkuk , nine policemen were killed while trying to defuse a bomb .\tRB , IN NNP , CD NNS VBD VBN IN VBG TO VB DT NN .\nIn Baghdad , at least four people were injured in three separate explosions .\tIN NNP , IN JJS CD NNS VBD VBN IN CD JJ NNS .\nA U.S. military spokeswoman said a fourth blast hit a Defense Department convoy , killing five Iraqis and injuring four U.S. contractors .\tDT NNP JJ NN VBD DT JJ NN VBD DT NNP NNP NN , VBG CD NNS CC VBG CD NNP NNS .\nAnd al-Jazeera television aired a video it said shows an American contractor who was abducted Monday near Baghdad .\tCC NNP NN VBD DT NN PRP VBD VBZ DT JJ NN WP VBD VBN NNP IN NNP .\nThe video showed the man urging U.S. officials to open a dialogue with insurgents in order to save his life .\tDT NN VBD DT NN VBG NNP NNS TO VB DT NN IN NNS IN NN TO VB PRP$ NN .\nIraqi officials say near-simultaneous blasts in Baghdad have killed at least 22 people and wounded 25 others in central Baghdad .\tJJ NNS VBP JJ NNS IN NNP VBP VBN IN JJS CD NNS CC VBN CD NNS IN JJ NNP .\nOfficials say the two attacks occurred near a cafe Thursday afternoon .\tNNS VBP DT CD NNS VBD IN DT NN NNP NN .\nMeanwhile , Muslim groups and the family of kidnapped American journalist Jill Carroll continue to appeal for her release .\tRB , NNP NNS CC DT NN IN VBN JJ NN NNP NNP VBP TO VB IN PRP$ NN .\nIraqi officials said they have asked the U.S. military to release six of eight Iraqi women in detention , but they say it is not related to the demands of Carroll 's kidnappers .\tJJ NNS VBD PRP VBP VBN DT NNP NN TO VB CD IN CD JJ NNS IN NN , CC PRP VBP PRP VBZ RB VBN TO DT NNS IN NNP POS NNS .\nReuters news agency quotes a Pentagon spokesman as saying officials do not expect to resolve the detained women 's status in the near future .\tNNP NN NN VBZ DT NNP NN IN VBG NNS VBP RB VB TO VB DT JJ NNS POS NN IN DT JJ NN .\nAlso Thursday , an international team of election experts said it found only minor election violations in Iraq 's December poll .\tRB NNP , DT JJ NN IN NN NNS VBD PRP VBD RB JJ NN NNS IN NNP POS NNP NN .\nIraq 's election commission is expected to issue final poll results in the next week .\tNNP POS NN NN VBZ VBN TO VB JJ NN NNS IN DT JJ NN .\nU.N officials say they have resolved a problem with skewed official exchange rates that led to U.N. losses of more than $ 1.5 million in the delivery of aid to survivors of Cyclone Nargis in Burma .\tNNP NNS VBP PRP VBP VBN DT NN IN JJ JJ NN NNS WDT VBD TO NNP NNS IN JJR IN $ CD CD IN DT NN IN NN TO NNS IN NNP NNP IN NNP .\nU.N. officials said Monday Burma 's military government had agreed to let outside donors pay local companies directly in dollars rather than via the official system involving foreign exchange certificates .\tNNP NNS VBD NNP NNP POS JJ NN VBD VBN TO VB JJ NNS VBP JJ NNS RB IN NNS RB IN IN DT NN NN VBG JJ NN NNS .\nOfficials also said Burma will waive a 10 percent government transaction fee for all international humanitarian agencies .\tNNS RB VBD NNP MD VB DT CD NN NN NN NN IN DT JJ JJ NNS .\nThe U.N. losses stemmed from Burma 's insistence that donors convert aid dollars into foreign exchange certificates with a value of $ 1 each .\tDT NNP NNS VBD IN NNP POS NN IN NNS VBP NN NNS IN JJ NN NNS IN DT NN IN $ CD DT .\nThese certificates were then used to buy the local currency , the kyat .\tDT NNS VBD RB VBN TO VB DT JJ NN , DT NN .\nHowever , the exchange rate for the certificates is 20 percent lower than the market rate .\tRB , DT NN NN IN DT NNS VBZ CD NN JJR IN DT NN NN .\nFrench police have arrested a key Syrian witness in a United Nations probe of the assassination of former Lebanese Prime Minister Rafik Hariri .\tJJ NNS VBP VBN DT JJ JJ NN IN DT NNP NNP NN IN DT NN IN JJ JJ NNP NNP NNP NNP .\nPolice say Muhammad al-Siddiq was arrested Sunday outside Paris , and is expected to be extradited to Beirut in the near future .\tNNS VBP NNP NNP VBD VBN NNP IN NNP , CC VBZ VBN TO VB VBN TO NNP IN DT JJ NN .\nLebanese media reports say Mr. al-Siddiq has claimed to have participated in a meeting of Lebanese security officials who allegedly designed the assassination plan .\tJJ NNS NNS VBP NNP NNP VBZ VBN TO VB VBN IN DT NN IN JJ NN NNS WP RB VBD DT NN NN .\nSyrian officials claim he is unreliable .\tJJ NNS VBP PRP VBZ JJ .\nA report from the U.N.-appointed prosecutor probing the assassination is expected to implicate Syrian officials in the February 14 bombing that killed Mr. Hariri and 20 others in Beirut .\tDT NN IN DT JJ NN VBG DT NN VBZ VBN TO VB JJ NNS IN DT NNP CD NN WDT VBD NNP NNP CC CD NNS IN NNP .\nU.N. Secretary-General Kofi Annan says he will wait to read a report due next week from prosecutor Detlev Mehlis before deciding whether to extend the probe to December , as requested last week by Lebanese lawmakers .\tNNP NNP NNP NNP VBZ PRP MD VB TO VB DT NN JJ JJ NN IN NN NNP NNP IN VBG IN TO VB DT NN TO NNP , IN VBN JJ NN IN JJ NNS .\nThe U.S.-led coalition in Afghanistan says at least 25 Taleban rebels have been killed during a joint military operation with Afghan troops in the south of the country .\tDT JJ NN IN NNP VBZ IN JJS CD NNP NNS VBP VBN VBN IN DT JJ NN NN IN JJ NNS IN DT NN IN DT NN .\nA statement released by the coalition Friday says the clash happened Thursday in Helmand province .\tDT NN VBN IN DT NN NNP VBZ DT NN VBD NNP IN NNP NN .\nAlso Thursday , three NATO soldiers from Canada were killed in an attack by Taleban insurgents in southern Kandahar province .\tRB NNP , CD NNP NNS IN NNP VBD VBN IN DT NN IN NNP NNS IN JJ NNP NN .\nIn a separate incident in the same province , a suicide attacker drove a bomb-laden car into a crowded market , killing at least 21 people and wounding 13 others .\tIN DT JJ NN IN DT JJ NN , DT NN NN VBD DT JJ NN IN DT JJ NN , VBG IN JJS CD NNS CC VBG CD NNS .\nLocal officials say the suicide bomber was apparently targeting the NATO-led International Security Assistance Forces , but the casualties were all civilians .\tJJ NNS VBP DT NN NN VBD RB VBG DT JJ NNP NNP NNP NNPS , CC DT NNS VBD DT NNS .\nNATO took over security operations from U.S.-led coalition forces this week in six southern Afghan provinces .\tNNP VBD RP NN NNS IN JJ NN NNS DT NN IN CD JJ JJ NNS .\nThe U.S.-led military coalition in Afghanistan says a car bomb has seriously wounded two coalition soldiers in the southern city of Kandahar .\tDT JJ JJ NN IN NNP VBZ DT NN NN VBZ RB VBN CD NN NNS IN DT JJ NN IN NNP .\nA coalition spokeswoman says a bomb was detonated by remote control inside a vehicle near a coalition patrol Monday .\tDT NN NN VBZ DT NN VBD VBN IN JJ NN IN DT NN IN DT NN NN NNP .\nShe says the wounded soldiers were taken to a medical facility for treatment .\tPRP VBZ DT JJ NNS VBD VBN TO DT JJ NN IN NN .\nAt least eight people , including two Canadian soldiers , were killed in a double suicide bombing in the same area Saturday .\tIN JJS CD NNS , VBG CD JJ NNS , VBD VBN IN DT JJ NN VBG IN DT JJ NN NNP .\nA purported Taleban spokesman ( Yousuf Ahmadi ) claimed responsibility for those attacks .\tDT JJ NNP NN LRB NNP NNP RRB VBD NN IN DT NNS .\nMeanwhile , police said Monday a man traveling in a taxi detonated a grenade at a border checkpoint in Khost province Sunday , killing himself and another person .\tRB , NNS VBD NNP DT NN VBG IN DT NN VBD DT NN IN DT NN NN IN NNP NN NNP , VBG PRP CC DT NN .\nThree others were wounded .\tCD NNS VBD VBN .\nThe man set off the grenades after police stopped the taxi .\tDT NN VBD RP DT NNS IN NN VBD DT NN .\nJapan 's parliament has ratified a free trade agreement with Mexico .\tNNP POS NN VBZ VBN DT JJ NN NN IN NNP .\nThe accord , which was signed last September by Japanese Prime Minister Junichiro Koizumi and Mexican President Vicente Fox , must still be ratified by Mexico 's legislature .\tDT NN , WDT VBD VBN JJ NNP IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP , MD RB VB VBN IN NNP POS NN .\nThe trade accord promises to widen Japanese export opportunities in Mexico and the United States , and aims to reduce Mexican dependence on the United States for export sales .\tDT NN NN VBZ TO VB JJ NN NNS IN NNP CC DT NNP NNPS , CC VBZ TO VB JJ NN IN DT NNP NNPS IN NN NNS .\nAbout 90 percent of Mexico 's exports go to the United States .\tIN CD NN IN NNP POS NNS VBP TO DT NNP NNPS .\nPolice in southwestern Afghanistan say suspected Taleban militants Saturday attacked a mine-clearing team , killing seven people .\tNNS IN JJ NNP VBP JJ NNP NNS NNP VBD DT JJ NN , VBG CD NNS .\nAuthorities in western Farah province say gunmen ambushed the team as they traveled from southern Kandahar to the western province of Herat .\tNNS IN JJ NNP NN VBP NNS VBD DT NN IN PRP VBD IN JJ NNP TO DT JJ NN IN NNP .\nPolice say a total of six security guards and de-miners who worked for a U.S.-based mine clearing company ( RONCO ) and an Afghan woman were killed .\tNNS VBP DT NN IN CD NN NNS CC NNS WP VBD IN DT JJ NN NN NN LRB NNP RRB CC DT JJ NN VBD VBN .\nFour other people were wounded in the shootout .\tCD JJ NNS VBD VBN IN DT NN .\nTaleban militants are waging a bloody insurgency in Afghanistan .\tNNP NNS VBP VBG DT JJ NN IN NNP .\nOn Friday , Afghan President Hamid Karzai disclosed his government has held direct talks with Taleban militants .\tIN NNP , JJ NNP NNP NNP VBD PRP$ NN VBZ VBN JJ NNS IN NNP NNS .\nAt a news conference in Kabul , Mr. Karzai said the talks have been going on for some time .\tIN DT NN NN IN NNP , NNP NNP VBD DT NNS VBP VBN VBG IN IN DT NN .\nTaleban representatives later denied the president 's claim .\tNNP NNS RB VBD DT NN POS NN .\nIranian President Mahmoud Ahmadinejad says a power vacuum is emerging in Iraq and that his government is ready to fill the gap with the help of neighboring states .\tJJ NNP NNP NNP VBZ DT NN NN VBZ VBG IN NNP CC IN PRP$ NN VBZ JJ TO VB DT NN IN DT NN IN JJ NNS .\nSpeaking Tuesday in Tehran , Mr. Ahmadinejad attributed the developing vacuum to what he called the rapidly declining political power of ' the occupiers , ' an apparent reference to the United States .\tVBG NNP IN NNP , NNP NNP VBD DT VBG NN TO WP PRP VBD DT RB VBG JJ NN IN `` DT NNS , `` DT JJ NN TO DT NNP NNPS .\nHe did not elaborate on how Iran could fill such a power gap .\tPRP VBD RB VB IN WRB NNP MD VB JJ DT NN NN .\nWashington accuses Tehran of fueling violence in Iraq by training and supplying weapons to Shi'ite insurgents .\tNNP VBZ NNP IN VBG NN IN NNP IN VBG CC VBG NNS IN NNP NNS .\nIran denies the charge and says it is doing its best to stabilize its neighbor .\tNNP VBZ DT NN CC VBZ PRP VBZ VBG PRP$ JJS TO VB PRP$ NN .\nMr. Ahmadinejad also said he sees ' no possibility ' of a U.S. attack on Iran .\tNNP NNP RB VBD PRP VBZ `` DT NN `` IN DT NNP NN IN NNP .\nThe United States has accused Iran of seeking a nuclear weapon , but says it favors diplomacy in ending the crisis .\tDT NNP NNPS VBZ VBN NNP IN VBG DT JJ NN , CC VBZ PRP VBZ NN IN VBG DT NN .\nIran denies seeking atomic weapons and says its nuclear program is for peaceful purposes .\tNNP VBZ VBG JJ NNS CC VBZ PRP$ JJ NN VBZ IN JJ NNS .\nA group of elders from Burma 's Shan ethnic group has declared a Shan State independent from the military junta .\tDT NN IN NNS IN NNP POS NNP JJ NN VBZ VBN DT NNP NNP JJ IN DT JJ NN .\nIn a speech from an undisclosed location on Sunday , His Royal Highness Prince Surkhanpha , director of the Brussels-based Euro Burma Office , cited Burma 's 1947 constitution for the move .\tIN DT NN IN DT JJ NN IN NNP , PRP$ NNP NNP NNP NNP , NN IN DT JJ NNP NNP NNP , VBD NNP POS CD NN IN DT NN .\nThat constitution was nullified by a military coup in 1962 and replaced by another constitution in 1974 .\tDT NN VBD VBN IN DT JJ NN IN CD CC VBN IN DT NN IN CD .\nPrince Surkhanpha 's declaration of independence was accompanied by a foreign policy statement that declared Shan State a war zone and warned foreigners to avoid the region .\tNNP NNP POS NN IN NN VBD VBN IN DT JJ NN NN WDT VBD NNP NNP DT NN NN CC VBD NNS TO VB DT NN .\nThe statement urged all Shan people living abroad to return home and serve their country , the Federated Shan States .\tDT NN VBD DT JJ NNS VBG RB TO VB NN CC VB PRP$ NN , DT NNP NNP NNPS .\nReports circulating in the Burmese exile community say the prince 's declaration of independence has raised concern among many ethnic Shan living outside their homeland .\tNNS VBG IN DT JJ NN NN VBP DT NN POS NN IN NN VBZ VBN NN IN JJ JJ NNP VBG IN PRP$ NN .\nThe U.S.-led coalition in Afghanistan says its forces have killed about 45 insurgents in the country 's south .\tDT JJ NN IN NNP VBZ PRP$ NNS VBP VBN IN CD NNS IN DT NN POS NN .\nThe coalition says ground troops called in air support Wednesday after their patrol of foreign and Afghan troops was attacked by Taleban fighters in Uruzgan province .\tDT NN VBZ NN NNS VBN IN NN NN NNP IN PRP$ NN IN JJ CC JJ NNS VBD VBN IN NNP NNS IN NNP NN .\nA similar exchange on Tuesday killed about 12 Taleban fighters in the southern province of Zabul .\tDT JJ NN IN NNP VBD IN CD NNP NNS IN DT JJ NN IN NNP .\nIn a separate incident , officials say a Bangladeshi aid worker was shot dead by unknown gunmen in the northeastern province of Badakshan .\tIN DT JJ NN , NNS VBP DT JJ NN NN VBD VBN JJ IN JJ NNS IN DT JJ NN IN NNP .\nCoalition and Afghan forces have been fighting the Taleban since 2001 , when a U.S.-led invasion drove the extremist Islamic group from power .\tNN CC JJ NNS VBP VBN VBG DT NNP IN CD , WRB DT JJ NN VBD DT NN JJ NN IN NN .\nMilitant attacks in southern and eastern Afghanistan have escalated over the past 19 months , marking the bloodiest period since the beginning of the war .\tNN NNS IN JJ CC JJ NNP VBP VBN IN DT JJ CD NNS , VBG DT JJS NN IN DT NN IN DT NN .\nRussia 's nuclear power chief says his country plans to start up the Bushehr nuclear reactor in Iran this year .\tNNP POS JJ NN NN VBZ PRP$ NN VBZ TO VB RP DT NNP JJ NN IN NNP DT NN .\nSergei Kiriyenko told Russian media Thursday that assuming nothing unexpected happens , the launch will go as planned before the end of 2009 .\tNNP NNP VBD JJ NNS NNP IN VBG DT JJ VBZ , DT NN MD VB RB VBN IN DT NN IN CD .\nHe said there are no unresolved questions with his Iranian counterparts regarding the technical start-up .\tPRP VBD EX VBP DT JJ NNS IN PRP$ JJ NNS VBG DT JJ NN .\nKiriyenko said he plans to travel to the Bushehr construction site later this month .\tNNP VBD PRP VBZ TO VB TO DT NNP NN NN RB DT NN .\nRussia began working on the project in 1995 , and says it has already delivered the fuel to get Iran 's first nuclear power plant running .\tNNP VBD VBG IN DT NN IN CD , CC VBZ PRP VBZ RB VBN DT NN TO VB NNP POS JJ JJ NN NN VBG .\nThe plant 's opening has frequently been delayed .\tDT NN POS NN VBZ RB VBN VBN .\nIn the past , Iranian officials have blamed the delays , in part , on foreign sanctions related to its disputed nuclear program .\tIN DT NN , JJ NNS VBP VBN DT NNS , IN NN , IN JJ NNS VBN TO PRP$ JJ JJ NN .\nOfficials say Bushehr will be capable of producing about 1,000 megawatts of electricity a year .\tNNS VBP NNP MD VB JJ IN VBG IN CD NNS IN NN DT NN .\nBritish military authorities say Prince Harry , the third in line to Britain 's throne , will be deployed to Iraq with his military unit .\tJJ JJ NNS VBP NNP NNP , DT JJ IN NN TO NNP POS NN , MD VB VBN TO NNP IN PRP$ JJ NN .\nA Defense Ministry announcement says the prince , a second lieutenant in the Blues and Royals Regiment , will begin service in Iraq in the next few months as part of a British troop rotation .\tDT NNP NNP NN VBZ DT NN , DT JJ NN IN DT NNS CC NNS NN , MD VB NN IN NNP IN DT JJ JJ NNS IN NN IN DT JJ NN NN .\nThe prince will become the latest member of Britain 's royal family to see front-line action since his uncle , Prince Andrew the Duke of York , served as a helicopter pilot during the 1982 Falklands War .\tDT NN MD VB DT JJS NN IN NNP POS JJ NN TO VB JJ NN IN PRP$ NN , NNP NNP DT NNP IN NNP , VBD IN DT NN NN IN DT CD NNP NNP .\nPrince Harry , formally known as Troop Commander Wales , has trained to lead 11 soldiers and four Scimitar tanks .\tNNP NNP , RB VBN IN NNP NNP NNP , VBZ VBN TO VB CD NNS CC CD NNP NNS .\nAfter graduating from Britain 's Sandhurst Military Academy last year , the prince has repeatedly expressed his wish to accompany his regiment to Iraq .\tIN VBG IN NNP POS NNP NNP NNP JJ NN , DT NN VBZ RB VBN PRP$ NN TO VB PRP$ NN TO NNP .\nU.S. President-elect Barack Obama is urging Congress to move quickly on a plan to deal with the financial crisis in the country and help struggling families .\tNNP NNP NNP NNP VBZ VBG NNP TO VB RB IN DT NN TO VB IN DT JJ NN IN DT NN CC VB VBG NNS .\nIn Saturday 's Democratic weekly radio address , Mr. Obama said if Congress does not immediately pass an economic rescue plan , he will make it his first order of business as president .\tIN NNP POS JJ JJ NN NN , NNP NNP VBD IN NNP VBZ RB RB VB DT JJ NN NN , PRP MD VB PRP PRP$ JJ NN IN NN IN NN .\nHe said the rescue package should create jobs , relieve financial pressure on families and revive the economy .\tPRP VBD DT NN NN MD VB NNS , VB JJ NN IN NNS CC VB DT NN .\nMr. Obama expressed optimism that , with new policies and a spirit of service and sacrifice , the country can steer itself out of economic turmoil .\tNNP NNP VBD NN IN , IN JJ NNS CC DT NN IN NN CC NN , DT NN MD VB PRP IN IN JJ NN .\nHe praised world leaders for coming to Washington to seek a solution to the global financial crisis , saying the matter requires a ' coordinated global response . '\tPRP VBD NN NNS IN VBG TO NNP TO VB DT NN TO DT JJ JJ NN , VBG DT NN VBZ DT `` VBN JJ NN . ``\nOn Friday , Mr. Obama announced a delegation is taking part in G-20 summit on his behalf .\tIN NNP , NNP NNP VBD DT NN VBZ VBG NN IN NNP NN IN PRP$ NN .\nIsraeli warplanes have launched strikes in the northern Gaza Strip .\tJJ NNS VBP VBN NNS IN DT JJ NNP NNP .\nPalestinian witnesses say at least one Israeli missile struck a military compound , about 100 meters from the offices of Palestinian Authority President Mahmoud Abbas .\tJJ NNS VBP IN JJS CD JJ NN VBD DT JJ NN , IN CD NNS IN DT NNS IN JJ NNP NNP NNP NNP .\nThe president was elsewhere when the attack occurred .\tDT NN VBD RB WRB DT NN VBD .\nPalestinian sources say two guards were wounded when a rocket landed in the compound near a helicopter pad used by Mr. Abbas .\tJJ NNS VBP CD NNS VBD VBN WRB DT NN VBD IN DT NN IN DT NN NN VBN IN NNP NNP .\nIsrael says the strikes targeted opened areas used by Palestinian militants to fire rockets into southern Israel .\tNNP VBZ DT NNS VBD VBN NNS VBN IN JJ NNS TO VB NNS IN JJ NNP .\nMilitants fired at least nine rockets into Israel Tuesday , including one that Israel says landed dangerously close to a huge fuel storage facility near the port city of Ashkelon .\tNNS VBD IN JJS CD NNS IN NNP NNP , VBG CD WDT NNP VBZ VBD RB RB TO DT JJ NN NN NN IN DT JJ NN IN NNP .\nIran says it is investigating Afghan troops who shot at Iranian forces after crossing over the border .\tNNP VBZ PRP VBZ VBG JJ NNS WP VBD IN JJ NNS IN VBG IN DT NN .\nIran 's ISNA news agency says Iranian border guards encountered the Afghan troops traveling by car , armed with rifles and a grenade launcher .\tNNP POS NNP NN NN VBZ JJ NN NNS VBD DT JJ NNS VBG IN NN , VBN IN NNS CC DT NN NN .\nBorder police commander Hossein Zolfaghari said the six officers and one soldier were detained , and told officials they were looking for Taliban militants and crossed into Iran by accident .\tNN NN NN NNP NNP VBD DT CD NNS CC CD NN VBD VBN , CC VBD NNS PRP VBD VBG IN NNP NNS CC VBD IN NNP IN NN .\nZolfaghari did not say when the arrests took place .\tNNP VBD RB VB WRB DT NNS VBD NN .\nBoth Afghanistan and Iran have been battling insurgents and smugglers along their joint border .\tDT NNP CC NNP VBP VBN VBG NNS CC NNS IN PRP$ JJ NN .\nEarlier this month , Afghan officials said they seized at least 19 tons of explosives found in shipping containers imported from Iran .\tRBR DT NN , JJ NNS VBD PRP VBD IN JJS CD NNS IN NNS VBN IN NN NNS VBN IN NNP .\nAfghanistan has previously accused Iran of selling weapons to the Taliban , allegations Tehran denies .\tNNP VBZ RB VBN NNP IN VBG NNS TO DT NNP , NNS NNP VBZ .\nA Polish court has fined a magazine publisher $ 6,400 for insulting Pope John Paul .\tDT JJ NN VBZ VBN DT NN NN $ CD IN VBG NNP NNP NNP .\nThe Warsaw court Tuesday found Jerzy Urban , who was a spokesman for Poland 's former communist government , guilty of violating a law that bans publicly insulting foreign heads of state .\tDT NNP NN NNP VBD NNP NNP , WP VBD DT NN IN NNP POS JJ JJ NN , JJ IN VBG DT NN WDT VBZ RB JJ JJ NNS IN NN .\nHe printed an article in the weekly magazine NIE making fun of the pope 's age and frailty shortly before the Polish-born pontiff 's August 2002 visit to his homeland .\tPRP VBD DT NN IN DT JJ NN NNP VBG NN IN DT NN POS NN CC NN RB IN DT JJ NN POS NNP CD NN TO PRP$ NN .\nThe court 's decision brought expressions of concern from Europe 's top security organization that Poland is curtailing the freedom of the press .\tDT NN POS NN VBD NNS IN NN IN NNP POS JJ NN NN IN NNP VBZ VBG DT NN IN DT NN .\nA spokesman for the Organization for Security and Cooperation in Europe said the European Court of Human Rights has ruled that increased protection for public officials is contrary to European law .\tDT NN IN DT NNP IN NNP CC NNP IN NNP VBD DT NNP NNP IN NNP NNP VBZ VBN IN JJ NN IN JJ NNS VBZ JJ TO JJ NN .\nHe then called on Polish authorities to introduce legislation decriminalizing libel and defamation .\tPRP RB VBD RP JJ NNS TO VB NN VBG NN CC NN .\nBritish teenager Andy Murray has won his first tennis match under new coach Brad Gilbert , firing 13 aces to defeat Ramon Delgado of Paraguay , 06-Apr , 06-Mar , at the Legg Mason Tennis Classic in Washington .\tJJ NN NNP NNP VBZ VBN PRP$ JJ NN NN IN JJ NN NNP NNP , VBG CD NNS TO VB NNP NNP IN NNP , CD , CD , IN DT NNP NNP NNP NNP IN NNP .\nThe 19-year-old player from Scotland won 26 of 37 first-serve points Wednesday to reach the third round of the hardcourt event .\tDT JJ NN IN NNP VBD CD IN CD JJ NNS NNP TO VB DT JJ NN IN DT NN NN .\nHis match lasted just 88 minutes in sweltering 37-degree Celsius heat .\tPRP$ NN VBD RB CD NNS IN VBG JJ NNP NN .\nMurray will play again Thursday against either Spaniard Feliciano Lopez or Russian Teimuraz Gabashvili for a place in the quarterfinal round .\tNNP MD VB RB NNP IN DT NN NNP NNP CC JJ NNP NNP IN DT NN IN DT JJ NN .\nRussian seventh seed Dmitry Tursunov advanced when Edgardo Massa of Argentina retired with a right shoulder injury with the match even at 06-Mar , 01-Jun , 03-Mar .\tJJ JJ NN NNP NNP VBD WRB NNP NNP IN NNP VBD IN DT JJ NN NN IN DT NN RB IN CD , CD , CD .\nDenis Gremelmayr ousted fellow German Bjorn Phau , 06-Apr , 06-Mar .\tNNP NNP VBD JJ JJ NNP NNP , CD , CD .\nBangladesh and India have begun two days of talks in Dhaka on sharing water resources .\tNNP CC NNP VBP VBN CD NNS IN NNS IN NNP IN NN NN NNS .\nBangladeshi officials say the talks , led by the secretaries of each country 's water resources ministries , will focus on sharing waters from the Teesta and six other common rivers .\tJJ NNS VBP DT NNS , VBN IN DT NNS IN DT NN POS NN NNS NNS , MD VB IN NN NNS IN DT NNP CC CD JJ JJ NNS .\nThey say the two sides will also discuss India 's controversial river-linking project aimed at diverting surplus water from rivers in its flood-prone northeast to dry western and southern parts of the country .\tPRP VBP DT CD NNS MD RB VB NNP POS JJ JJ NN VBN IN VBG JJ NN IN NNS IN PRP$ JJ NN TO VB JJ CC JJ NNS IN DT NN .\nOpponents believe the project would cause rivers in Bangladesh to dry up , affecting the country 's ecology and farming .\tNNS VBP DT NN MD VB NNS IN NNP TO VB RP , VBG DT NN POS NN CC NN .\nBangladesh and India have 54 common rivers but have an agreement , signed in 1996 , only to share water resources from the Ganges River .\tNNP CC NNP VBP CD JJ NNS CC VBP DT NN , VBN IN CD , RB TO VB NN NNS IN DT NNP NNP .\nHundreds of Pakistanis have demonstrated in the northwestern Bajaur tribal region against a purported U.S. airstrike last week that killed civilians .\tNNS IN NNS VBP VBN IN DT JJ NNP JJ NN IN DT JJ NNP NN JJ NN WDT VBD NNS .\nSunday 's rally was held near the site of the January 13 attack , widely reported to have been carried out by a CIA drone aircraft .\tNNP POS NN VBD VBN IN DT NN IN DT NNP CD NN , RB VBN TO VB VBN VBN RP IN DT NNP NN NN .\nDemonstrators chanted slogans against the United States and burned effigies of President Bush .\tNNS VBD NNS IN DT NNP NNPS CC VBN NNS IN NNP NNP .\nThe missile strike in the village of Damadola was apparently intended for , but missed , al-Qaida 's second-in-command , Ayman al-Zawahiri .\tDT NN NN IN DT NN IN NNP VBD RB VBN IN , CC VBD , NNP POS NN , NNP NNP .\nHowever , Pakistani officials say it killed at least three other top al-Qaida members , including a chemical weapons expert .\tRB , JJ NNS VBP PRP VBD IN JJS CD JJ JJ NNP NNS , VBG DT JJ NNS NN .\nThe attack has caused friction between Islamabad and Washington .\tDT NN VBZ VBN NN IN NNP CC NNP .\nOn Saturday , Pakistan 's Foreign Minister Khursheed Kasuri called for better cooperation between the two countries to avoid a repeat of the missile strike .\tIN NNP , NNP POS NNP NNP NNP NNP VBD IN JJR NN IN DT CD NNS TO VB DT NN IN DT NN NN .\nPresident Bush is in Russia for talks with President Vladimir Putin , ahead of the Group of Eight economic summit .\tNNP NNP VBZ IN NNP IN NNS IN NNP NNP NNP , RB IN DT NNP IN CD JJ NN .\nMr. Bush and his wife Laura arrived in St. Petersburg Friday morning from Germany .\tNNP NNP CC PRP$ NN NNP VBD IN NNP NNP NNP NN IN NNP .\nIn his talks with the President Putin , Mr. Bush has said he will discuss concerns about press freedom and democracy in Russia , but will not scold the Russian leader .\tIN PRP$ NNS IN DT NNP NNP , NNP NNP VBZ VBN PRP MD VB NNS IN NN NN CC NN IN NNP , CC MD RB VB DT JJ NN .\nThe two leaders are also expected to discuss the nuclear crises in Iran and North Korea , and the escalating fighting in the Middle East .\tDT CD NNS VBP RB VBN TO VB DT JJ NNS IN NNP CC NNP NNP , CC DT VBG NN IN DT NNP NNP .\nThe G-8 summit gets under way in St. Petersburg Saturday .\tDT NNP NN VBZ IN NN IN NNP NNP NNP .\nThe two leaders are meeting as U.S. and Russian negotiators work to conclude a deal that would let the former communist state join the World Trade Organization .\tDT CD NNS VBP VBG IN NNP CC JJ NNS VBP TO VB DT NN WDT MD VB DT JJ JJ NN VB DT NNP NNP NNP .\nPresidents and officials from 12 South American countries have launched a plan to create a regional trade bloc modeled after the European Union .\tNNS CC NNS IN CD JJ JJ NNS VBP VBN DT NN TO VB DT JJ NN NN VBN IN DT NNP NNP .\nRepresentatives held a summit Wednesday in the city of Cuzco , Peru , to create the South American Community of Nations .\tNNS VBD DT NN NNP IN DT NN IN NNP , NNP , TO VB DT NNP NNP NNP IN NNP .\nThe trade bloc will represent about 360 million people .\tDT NN NN MD VB RB CD CD NNS .\nIt is expected to have a gross domestic product of around $ 1 trillion , with exports that top $ 180 billion .\tPRP VBZ VBN TO VB DT JJ JJ NN IN IN $ CD CD , IN NNS IN VBP $ CD CD .\nThe new economic pact will merge the Mercosur trade bloc of Argentina , Uruguay , Paraguay and Brazil with the Andean Community of Bolivia , Colombia , Ecuador , Peru and Venezuela .\tDT JJ JJ NN MD VB DT NNP NN NN IN NNP , NNP , NNP CC NNP IN DT NNP NNP IN NNP , NNP , NNP , NNP CC NNP .\nChile , Suriname and Guyana will also join .\tNNP , NNP CC NNP MD RB VB .\nThe presidents of Argentina , Uruguay , Paraguay and Ecuador chose not to attend the summit , but instead sent representatives .\tDT NNS IN NNP , NNP , NNP CC NNP VBD RB TO VB DT NN , CC RB VBN NNS .\nThe king of Swaziland has postponed national events to mark World AIDS Day , citing a conflict with a traditional royal ceremony .\tDT NN IN NNP VBZ VBN JJ NNS TO VB NNP NNP NNP , VBG DT NN IN DT JJ NN NN .\nOfficials with King Mswati 's government say they did not want the events to compete with the incwala ceremony , which they announced will begin Thursday .\tNNS IN NNP NNP POS NN VBP PRP VBD RB VB DT NNS TO VB IN DT NN NN , WDT PRP VBD MD VB NNP .\nThe Swazi Observer news agency quotes a government health official , Nhlanhla Nhlabatsi as saying events to mark World AIDS Day will now be held at the beginning of February .\tDT NNP NNP NN NN VBZ DT NN NN NN , NNP NNP IN VBG NNS TO VB NNP NNP NNP MD RB VB VBN IN DT NN IN NNP .\nBut a group of non-governmental organizations fighting AIDS is defying the king 's order and will hold its scheduled dinner in Swaziland 's capital , Mbabane .\tCC DT NN IN JJ NNS VBG NNP VBZ VBG DT NN POS NN CC MD VB PRP$ VBN NN IN NNP POS NN , NNP .\nThe United Nations says up to 40 percent of adults in the tiny southern Africa kingdom are infected with HIV , the virus that causes AIDS .\tDT NNP NNP VBZ RP TO CD NN IN NNS IN DT JJ JJ NNP NN VBP VBN IN NNP , DT NN WDT VBZ NNP .\nKing Mswati has drawn criticism for his lavish lifestyle and multiple wives at a time of widespread suffering .\tNNP NNP VBZ VBN NN IN PRP$ JJ NN CC JJ NNS IN DT NN IN JJ NN .\nIraq 's electoral commission has certified the results of the country 's January 30 elections and has allocated 140 seats to the main Shi'ite coalition , giving it a majority in the new parliament .\tNNP POS JJ NN VBZ VBN DT NNS IN DT NN POS NNP CD NNS CC VBZ VBN CD NNS TO DT JJ NNP NN , VBG PRP DT NN IN DT JJ NN .\nAs expected , the United Iraqi Alliance was the big winner , sweeping 140 of the 275 seats in the interim National Assembly .\tIN VBN , DT NNP JJ NNP VBD DT JJ NN , VBG CD IN DT CD NNS IN DT JJ NNP NNP .\nKurdish parties ran a distant second , taking 75 seats .\tJJ NNS VBD DT JJ NN , VBG CD NNS .\nInterim Prime Minister Iyad Allawi 's secular Shi'ite party was third , taking 40 seats .\tNNP NNP NNP NNP NNP POS JJ NNP NN VBD JJ , VBG CD NNS .\nEight million Iraqis voted , but the country 's Sunnis mostly boycotted the election .\tCD CD NNS VBD , CC DT NN POS NNP RB VBD DT NN .\nThe United Nation 's top official for the Iraq elections , Carlos Valenzuela , said in Baghdad Thursday that he hopes those who did not participate in the elections will join the political process in the next step of the transition .\tDT NNP NNP POS JJ NN IN DT NNP NNS , NNP NNP , VBD IN NNP NNP IN PRP VBZ DT WP VBD RB VB IN DT NNS MD VB DT JJ NN IN DT JJ NN IN DT NN .\nThe National Assembly will be in power for 10 months and will draft a new constitution .\tDT NNP NNP MD VB IN NN IN CD NNS CC MD VB DT JJ NN .\nIsraeli forces have begun handing over the town of Jericho to Palestinian security control - the first of five West Bank towns Israel has pledged to turn over .\tJJ NNS VBP VBN VBG IN DT NN IN NNP TO JJ NN NN IN DT NN IN CD NNP NNP NNS NNP VBZ VBN TO VB RP .\nIsraeli and Palestinian security commanders met at a checkpoint just outside Jericho for Wednesday 's ceremonial handover .\tJJ CC JJ NN NNS VBD IN DT NN RB JJ NNP IN NNP POS JJ NN .\nAfter the ceremony , Israeli troops began turning over several other checkpoints around the town to Palestinian security forces .\tIN DT NN , JJ NNS VBD VBG IN JJ JJ NNS IN DT NN TO JJ NN NNS .\nIn the coming days , Israel is to hand over the town of Tulkarem and , after that , Qalqiliya .\tIN DT JJ NNS , NNP VBZ TO VB IN DT NN IN NNP CC , IN DT , NNP .\nBut no timetable has yet been set for Ramallah and Bethlehem .\tCC DT NN VBZ RB VBN VBN IN NNP CC NNP .\nMeanwhile , in Cairo , Egyptian and Palestinian officials and Palestinian militant leaders are discussing a proposal for a one-year stop to Palestinian attacks on Israeli targets .\tRB , IN NNP , JJ CC JJ NNS CC JJ JJ NNS VBP VBG DT NN IN DT JJ NN TO JJ NNS IN JJ NNS .\nIsraeli Prime Minister Ariel Sharon says Palestinians must dismantle the militant groups in addition to agreeing to a cease-fire .\tJJ NNP NNP NNP NNP VBZ NNS MD VB DT JJ NNS IN NN TO VBG TO DT NN .\nThe main political rival to Afghanistan 's President Hamid Karzai has formed a new national-level political party called New Afghanistan .\tDT JJ JJ NN TO NNP POS NNP NNP NNP VBZ VBN DT JJ JJ JJ NN VBN NNP NNP .\nYunus Qanuni told reporters in Kabul his party will take part in the upcoming parliamentary elections in April .\tNNP NNP VBD NNS IN NNP PRP$ NN MD VB NN IN DT JJ JJ NNS IN NNP .\nHe also said he will support any positive steps taken by the newly-formed Karzai government , but oppose it when it is wrong .\tPRP RB VBD PRP MD VB DT JJ NNS VBN IN DT JJ NNP NN , CC VBP PRP WRB PRP VBZ JJ .\nMr. Karzai told reporters Friday that he has urged Mr. Qanuni to form a national party .\tNNP NNP VBD NNS NNP IN PRP VBZ VBN NNP NNP TO VB DT JJ NN .\nHe said he does not want parties in his country to become ethnic or provincial .\tPRP VBD PRP VBZ RB VB NNS IN PRP$ NN TO VB JJ CC JJ .\nMr. Qanuni said Mr. Karzai offered to make him defense minister , but he declined because that would have limited his political role .\tNNP NNP VBD NNP NNP VBD TO VB PRP NN NN , CC PRP VBD IN DT MD VB VBN PRP$ JJ NN .\nMr. Qanuni lost to Mr. Karzai in the country 's first democratic presidential election in October .\tNNP NNP VBD TO NNP NNP IN DT NN POS JJ JJ JJ NN IN NNP .\nRescuers in Djibouti have found at least 22 more bodies from the boat that capsized Thursday , bringing the death toll up to 94 .\tNNS IN NNP VBP VBN IN JJS CD JJR NNS IN DT NN IN VBZ NNP , VBG DT NN NN RP IN CD .\nThe accident is thought to be the worst-ever disaster to occur in the tiny Horn of Africa country .\tDT NN VBZ VBN TO VB DT JJ NN TO VB IN DT JJ NNP IN NNP NN .\nThe search continued Saturday for more people missing from the wooden boat , which flipped over just 100 meters from the dock in the port of Djibouti .\tDT NN VBD NNP IN JJR NNS VBG IN DT JJ NN , WDT VBD IN RB CD NNS IN DT NN IN DT NN IN NNP .\nThe exact number of passengers remains unknown , but witnesses say the boat was severely overcrowded with at least 250 people .\tDT JJ NN IN NNS VBZ JJ , CC NNS VBP DT NN VBD RB VBN IN IN JJS CD NNS .\nSome passengers were rescued or swam to shore .\tDT NNS VBD VBN CC NN TO VB .\nThe vessel was headed to a Muslim religious festival in the town of Tadjoura .\tDT NN VBD VBN TO DT NNP JJ NN IN DT NN IN NNP .\nThe Lebanese army continues to shell Islamic militants holed up in a Palestinian refugee camp in northern Lebanon .\tDT JJ NN VBZ TO VB JJ NNS VBN RP IN DT JJ NN NN IN JJ NNP .\nFighters are ignoring messages broadcast by the army over loudspeakers in the Nahr el-Bared camp , calling for them to surrender .\tNNS VBP VBG NNS VBN IN DT NN IN NNS IN DT NNP JJ NN , VBG IN PRP TO VB .\nIn addition , occasional gunfire and explosions can be heard .\tIN NN , JJ NN CC NNS MD VB VBN .\nNearly all the refugees have fled the camp , located near Tripoli , in the two months since the standoff began .\tRB PDT DT NNS VBP VBN DT NN , VBN IN NNP , IN DT CD NNS IN DT NN VBD .\nMore than 200 people have been killed since fighting erupted between Lebanon 's army and the Fatah al-Islam militants at the camp May 20 .\tJJR IN CD NNS VBP VBN VBN IN VBG VBN IN NNP POS NN CC DT NNP NNP NNS IN DT NN NNP CD .\nThe dead include more than 100 soldiers and at least 60 militants .\tDT NN VBP JJR IN CD NNS CC IN JJS CD NNS .\nThe conflict at the refugee camp is the worst internal violence in Lebanon since the 1975-to-1990 civil war .\tDT NN IN DT NN NN VBZ DT JJS JJ NN IN NNP IN DT CD JJ NN .\nIsrael has re-opened a key border crossing in the northern Gaza Strip , and says it will allow 1,000 Palestinian workers and hundreds of Gaza merchants to enter\tNNP VBZ VBN DT JJ NN VBG IN DT JJ NNP NNP , CC VBZ PRP MD VB CD JJ NNS CC NNS IN NNP NNS TO VB\nIsrael on Thursday .\tNNP IN NNP .\nWednesday 's announcement comes a day after an Israeli-Palestinian summit , where Palestinian leader Mahmoud Abbas declared an end to militant attacks on Israelis .\tNNP POS NN VBZ DT NN IN DT JJ NN , WRB JJ NN NNP NNP VBD DT NN TO JJ NNS IN NNS .\nIsrael , in turn , promised to stop killing Palestinians anywhere .\tNNP , IN NN , VBD TO VB VBG NNS RB .\nThe Erez crossing was closed last month after militants killed six Israeli civilians in northern Gaza . Meanwhile , Israeli Foreign Minister Silvan Shalom says he is launching a campaign to organize a national referendum on Israel 's Gaza withdrawal plan .\tDT NNP VBG VBD VBN JJ NN IN NNS VBD CD JJ NNS IN JJ NNP . RB , JJ NNP NNP NNP NNP VBZ PRP VBZ VBG DT NN TO VB DT JJ NN IN NNP POS NNP NN NN .\nThe move places Mr. Shalom at odds with Prime Minister Ariel Sharon , who says he wants to expedite the pullback and insists a referendum is unnecessary .\tDT NN VBZ NNP NNP IN NNS IN NNP NNP NNP NNP , WP VBZ PRP VBZ TO VB DT NN CC VBZ DT NN VBZ JJ .\nInterior Minister Ophir Pines called the referendum push a move by withdrawal opponents to sabotage the plan .\tNNP NNP NNP NNP VBD DT NN NN DT NN IN NN NNS TO VB DT NN .\nHaiti 's electoral board has again postponed the country 's presidential and legislative elections , this time setting the poll for January 8 .\tNNP POS JJ NN VBZ RB VBN DT NN POS JJ CC JJ NNS , DT NN VBG DT NN IN NNP CD .\nThis is the fourth time the board has pushed back the poll to replace the country 's interim administration with an elected body .\tDT VBZ DT JJ NN DT NN VBZ VBN RB DT NN TO VB DT NN POS JJ NN IN DT VBN NN .\nThe vote was originally scheduled for October 9 .\tDT NN VBD RB VBN IN NNP CD .\nElection officials have attributed the postponements to poor organization and a lack of resources for the poll .\tNN NNS VBP VBN DT NNS TO JJ NN CC DT NN IN NNS IN DT NN .\nAn official on the nine-member election council , Rosemond Pradel told the Associated Press the new delay is because the country is still not prepared for a vote .\tDT NN IN DT JJ NN NN , NNP NNP VBD DT NNP NNP DT JJ NN VBZ IN DT NN VBZ RB RB VBN IN DT NN .\nBut he insisted the new poll date is final .\tCC PRP VBD DT JJ NN NN VBZ JJ .\nHaiti 's constitution requires that a new government be in place by February 7 .\tNNP POS NN VBZ IN DT JJ NN VB IN NN IN NNP CD .\nLeaders of Venezuela , Brazil , Colombia and Spain are to meet in the Venezuelan city of Puerto Ordaz Tuesday to discuss various issues , including trade and political alliances .\tNNS IN NNP , NNP , NNP CC NNP VBP TO VB IN DT JJ NN IN NNP NNP NNP TO VB JJ NNS , VBG NN CC JJ NNS .\nVenezuelan President Hugo Chavez , his Brazilian and Colombian counterparts , Luiz Inacio Lula da Silva and Alvaro Uribe , as well as Spanish Prime Minister Jose Luis Rodriguez Zapatero are also to discuss drug smuggling , terrorism and seeking a common position toward Colombian rebels .\tJJ NNP NNP NNP , PRP$ JJ CC JJ NNS , NNP NNP NNP NN NNP CC NNP NNP , RB RB IN JJ NNP NNP NNP NNP NNP NNP VBP RB TO VB NN NN , NN CC VBG DT JJ NN IN JJ NNS .\nThe Associated Press reports the National Liberation Army , one of Colombia 's leftist rebel groups , issued a statement saying it rejects terrorism and that it hopes the governments involved in today 's talks will create a greater certainty for peace in the region .\tDT NNP NNP VBZ DT NNP NNP NNP , CD IN NNP POS JJ NN NNS , VBD DT NN VBG PRP VBZ NN CC IN PRP VBZ DT NNS VBN IN NN POS NNS MD VB DT JJR NN IN NN IN DT NN .\nCIA Director Porter Goss ' choice for the post of executive director of the intelligence agency has declined the appointment after accounts were published about his resignation from the CIA two decades ago .\tNNP NNP NNP NNP POS NN IN DT NN IN JJ NN IN DT NN NN VBZ VBN DT NN IN NNS VBD VBN IN PRP$ NN IN DT NNP CD NNS RB .\nMichael Kostiw said Monday he will still serve as a senior advisor to Mr. Goss , but feared the reports of his past indiscretion would ' be a distraction from the critical work ' of the agency .\tNNP NNP VBD NNP PRP MD RB VB IN DT JJ NN TO NNP NNP , CC VBD DT NNS IN PRP$ JJ NN MD `` VB DT NN IN DT JJ NN `` IN DT NN .\nAs executive director , Mr. Kostiw would have been the agency 's day-to-day manager , overseeing budgetary and personnel decisions .\tIN NN NN , NNP NNP MD VB VBN DT NN POS JJ NN , VBG JJ CC JJ NNS .\nThe Washington Post reported Sunday the former House of Representatives Intelligence Committee 's staff director for terrorism resigned from the CIA in 1982 after being put on leave for shoplifting .\tDT NNP NNP VBD NNP DT JJ NNP IN NNP NNP NNP POS NN NN IN NN VBD IN DT NNP IN CD IN VBG VBN IN NN IN NN .\nThe paper reported that , in exchange for his quitting , the agency arranged for charges to be dropped and his police record to be cleared .\tDT NN VBD DT , IN NN IN PRP$ NN , DT NN VBD IN NNS TO VB VBN CC PRP$ NN NN TO VB VBN .\nThe World Health Organization says 22 people injured in the earthquake in Pakistan have died of tetanus infections in the past few days .\tDT NNP NNP NNP VBZ CD NNS VBN IN DT NN IN NNP VBP VBN IN NN NNS IN DT JJ JJ NNS .\nA spokeswoman for the organization said Thursday the situation appears to be stabilizing .\tDT NN IN DT NN VBD NNP DT NN VBZ TO VB VBG .\nThere have been 111 tetanus cases reported since the quake struck on October 8 , but just seven new cases in the past two days .\tEX VBP VBN CD NN NNS VBN IN DT NN VBD IN NNP CD , CC RB CD JJ NNS IN DT JJ CD NNS .\nU.N. officials are warning that more quake survivors could perish in coming months unless they get food and shelter before winter .\tNNP NNS VBP VBG IN JJR NN NNS MD VB IN VBG NNS IN PRP VBP NN CC NN IN NN .\nOn Wednesday , a U.N. official said international donors pledged an additional $ 580 million for earthquake relief efforts .\tIN NNP , DT NNP NN VBD JJ NNS VBD DT JJ $ CD CD IN NN NN NNS .\nThe death toll in Pakistan now stands at more than 54,000 people , and officials say rebuilding damaged areas will cost $ 5 billion .\tDT NN NN IN NNP RB VBZ IN JJR IN CD NNS , CC NNS VBP VBG VBN NNS MD VB $ CD CD .\nThe World Bank has canceled more than seven million dollars in aid to Cambodia after finding evidence of fraud and corruption in three development projects .\tDT NNP NNP VBZ VBN JJR IN CD CD NNS IN NN TO NNP IN VBG NN IN NN CC NN IN CD NN NNS .\nIn a statement released Sunday , the bank said the three suspended projects involved land management , infrastructure and water and sanitation projects .\tIN DT NN VBN NNP , DT NN VBD DT CD JJ NNS VBN NN NN , NN CC NN CC NN NNS .\nThe World Bank said it would provide further details of its findings later this week , but could not do so now because it would jeopardize confidential communications from Cambodia .\tDT NNP NNP VBD PRP MD VB JJ NNS IN PRP$ NNS RB DT NN , CC MD RB VB RB RB IN PRP MD VB JJ NNS IN NNP .\nCorruption is endemic in Cambodia , a country impoverished after decades of conflict .\tNN VBZ JJ IN NNP , DT NN VBN IN NNS IN NN .\nThere was no immediate response from the Cambodian government to the bank 's statement .\tEX VBD DT JJ NN IN DT JJ NN TO DT NN POS NN .\nAn Egyptian court has convicted a former Iranian diplomat and an Egyptian man of spying for Iran .\tDT JJ NN VBZ VBN DT JJ JJ NN CC DT JJ NN IN VBG IN NNP .\nIran 's foreign ministry spokesman called the verdict ' ridiculous . '\tNNP POS JJ NN NN VBD DT NN `` JJ . ``\nThe Iranian , Mohammed Reza Husseindoust , was sentenced in his absence to 25 years in prison .\tDT JJ , NNP NNP NNP , VBD VBN IN PRP$ NN TO CD NNS IN NN .\nThe court ruled he tried to destablize Egypt and received information from the Egyptian defendant , Mahmoud Eid Dabous , about oil facilities at the Saudi port of Yanbu .\tDT NN VBD PRP VBD TO VB NNP CC VBD NN IN DT JJ NN , NNP NNP NNP , IN NN NNS IN DT JJ NN IN NNP .\nSeveral westerners were killed in May of 2004 in an attack on a petrochemical plant in Yanbu .\tJJ NNS VBD VBN IN NNP IN CD IN DT NN IN DT NN NN IN NNP .\nThe attack was blamed on Islamist militants .\tDT NN VBD VBN IN NNP NNS .\nDabous was sentenced to 10 years in prison on the espionage charge and another 25 years for plotting to assassinate Egyptian President Hosni Mubarak .\tNNP VBD VBN TO CD NNS IN NN IN DT NN NN CC DT CD NNS IN VBG TO VB JJ NNP NNP NNP .\nHe denied the allegations and said his earlier confession was made under torture .\tPRP VBD DT NNS CC VBD PRP$ JJR NN VBD VBN IN NN .\nIran has warned the United States not to attack its nuclear facilities .\tNNP VBZ VBN DT NNP NNPS RB TO VB PRP$ JJ NNS .\nAt a news briefing Sunday , Iran 's foreign ministry spokesman Hamid Reza Asefi warned Washington ' not to play with fire ' by repeatedly threatening Tehran .\tIN DT NN NN NNP , NNP POS JJ NN NN NNP NNP NNP VBD NNP `` RB TO VB IN NN `` IN RB VBG NNP .\nThe spokesman also rejected a European proposal aimed at restricting Tehran 's development of nuclear fuel .\tDT NN RB VBD DT JJ NN VBN IN VBG NNP POS NN IN JJ NN .\nMeanwhile , a U.S. newspaper , The Washington Post , report says the United States has been flying unmanned surveillance drones over Iran for almost a year to search for evidence of nuclear weapons programs and detect weaknesses in air defenses .\tRB , DT NNP NN , DT NNP NNP , NN VBZ DT NNP NNPS VBZ VBN VBG JJ NN NNS IN NNP IN RB DT NN TO VB IN NN IN JJ NNS NNS CC VB NNS IN NN NNS .\nIn another development , U.N. Secretary-General Kofi Annan says relying on the Nuclear Non-Proliferation Treaty is not enough to prevent what he calls a ' cascade ' of countries acquiring nuclear weapons .\tIN DT NN , NNP NNP NNP NNP VBZ VBG IN DT NNP NNP NNP VBZ RB JJ TO VB WP PRP VBZ DT `` NN `` IN NNS VBG JJ NNS .\nMr. Annan urges new joint action , including tougher inspection rules .\tNNP NNP VBZ JJ JJ NN , VBG JJR NN NNS .\nAfghanistan 's newly-elected President Hamid Karzai says he plans to abolish private militias , end the power of warlords and establish the rule of law .\tNNP POS JJ NNP NNP NNP VBZ PRP VBZ TO VB JJ NNS , VB DT NN IN NNS CC VB DT NN IN NN .\nHe said private militias will not be tolerated at all , and former fighters who surrender their arms will be integrated into the national mainstream .\tPRP VBD JJ NNS MD RB VB VBN IN DT , CC JJ NNS WP VB PRP$ NNS MD VB VBN IN DT JJ NN .\nIn an interview with CNN Television Tuesday , Mr. Karzai also said Afghanistan plans to do everything in its power to eliminate the poppy cultivation used to illegally produce heroin .\tIN DT NN IN NNP NNP NNP , NNP NNP RB VBD NNP VBZ TO VB DT IN PRP$ NN TO VB DT NN NN VBN TO RB VB NN .\nHe said he would need the support of the international community to help farmers find alternative sources of income .\tPRP VBD PRP MD VB DT NN IN DT JJ NN TO VB NNS VB JJ NNS IN NN .\nMr. Karzai was echoing remarks he made last week after authorities confirmed his victory in the October 9 election , the first direct and democratic presidential poll in Afghanistan .\tNNP NNP VBD VBG NNS PRP VBD JJ NN IN NNS VBD PRP$ NN IN DT NNP CD NN , DT JJ JJ CC JJ JJ NN IN NNP .\nNew fighting in Somalia 's capital has killed at least three people and wounded at least 20 others .\tJJ NN IN NNP POS NN VBZ VBN IN JJS CD NNS CC VBN IN JJS CD NNS .\nA local journalist tells VOA 's Somali service that government forces attacked Islamist insurgents in parts of Mogadishu early Thursday .\tDT JJ NN VBZ NNP POS JJ NN IN NN NNS VBD NNP NNS IN NNS IN NNP JJ NNP .\nThe fighting was centered in the Bakara market , a longtime insurgent stronghold , and the city 's Howlwadaag District .\tDT NN VBD VBN IN DT NNP NN , DT JJ JJ NN , CC DT NN POS NNP NNP .\nGovernment forces are reported to have captured an insurgent base in Howlwadaag .\tNN NNS VBP VBN TO VB VBN DT JJ NN IN NNP .\nThe Somali government controls only small parts of Mogadishu after more than three years of fighting with Islamist militants .\tDT JJ NN VBZ RB JJ NNS IN NNP IN JJR IN CD NNS IN VBG IN NNP NNS .\nThe groups al-Shabab and Hizbul Islam are trying to topple the government and turn Somalia into a strict Islamic state .\tDT NNS NNP CC NNP NNP VBP VBG TO VB DT NN CC VB NNP IN DT JJ JJ NN .\nThe U.S. House of Representatives voted Friday to cut off aid to Saudi Arabia , accusing the close ally of religious intolerance and funding terrorist organizations .\tDT NNP NNP IN NNP VBD NNP TO VB RP NN TO NNP NNP , VBG DT JJ NN IN JJ NN CC NN JJ NNS .\nThe ban is contained in an amendment slipped into a foreign aid funding bill for next year that has not yet been debated in the Senate .\tDT NN VBZ VBN IN DT NN VBD IN DT JJ NN NN NN IN JJ NN WDT VBZ RB RB VBN VBN IN DT NNP .\nCongress has passed bills in the past to stop the relatively small amount of U.S. aid to Saudi Arabia .\tNNP VBZ VBN NNS IN DT NN TO VB DT RB JJ NN IN NNP NN TO NNP NNP .\nBut the Bush administration has found a way around the restrictions .\tCC DT NNP NN VBZ VBN DT NN IN DT NNS .\nThe main backer of the amendment , Democratic Party representative Anthony Weiner from New York State , says cutting off aid sends ' a clear message to the Saudi Arabian government that they must be a TRUE ally in advancing peace in the Middle East . '\tDT JJ NN IN DT NN , NNP NNP NN NNP NNP IN NNP NNP NNP , VBZ VBG RP NN VBZ `` DT JJ NN TO DT JJ JJ NN IN PRP MD VB DT JJ NN IN VBG NN IN DT NNP NNP . ``\nThe Saudi Embassy in Washington has not commented on the proposed legislation .\tDT NNP NNP IN NNP VBZ RB VBN IN DT VBN NN .\nCongressional officials say the United States provided $ 2.5 million to Riyadh in 2005 and 2006 .\tJJ NNS VBP DT NNP NNPS VBD $ CD CD TO NNP IN CD CC CD .\nA former analyst at the U.S. Department of Defense has admitted to giving classified information to pro-Israel lobbyists and an Israeli embassy official .\tDT JJ NN IN DT NNP NNP IN NNP VBZ VBN TO VBG JJ NN TO JJ NNS CC DT JJ NN NN .\nIn a federal court in Virginia Wednesday , Lawrence Franklin pleaded guilty to illegally possessing classified documents and to conspiracy .\tIN DT JJ NN IN NNP NNP , NNP NNP VBD JJ TO RB VBG JJ NNS CC TO NN .\nThe 58-year-old former analyst says he provided information to an official at the Israeli embassy and to two members of a lobbying group called the American Israel Public Affairs Committee .\tDT JJ JJ NN VBZ PRP VBD NN TO DT NN IN DT JJ NN CC TO CD NNS IN DT NN NN VBD DT NNP NNP NNP NNP NNP .\nFranklin used to work as an Iran expert at the Pentagon .\tNNP VBD TO VB IN DT NNP NN IN DT NNP .\nIran 's conservative-dominated parliament has voted to speed up debate of a bill that would force the government to scale back its cooperation with U.N. nuclear inspectors .\tNNP POS JJ NN VBZ VBN TO VB RP NN IN DT NN WDT MD VB DT NN TO VB RP PRP$ NN IN NNP JJ NNS .\nThe official IRNA news agency says parliament passed the motion Wednesday , with 162 lawmakers voting in favor , 42 against and 15 abstaining .\tDT JJ NNP NN NN VBZ NN VBD DT NN NNP , IN CD NNS VBG IN NN , CD IN CC CD NN .\nThe vote comes after last week 's International Atomic Energy Agency resolution , which puts Iran on notice that it could be referred to the U.N. Security Council if it fails to cooperate fully with IAEA inspectors .\tDT NN VBZ IN JJ NN POS NNP NNP NNP NNP NN , WDT VBZ NNP IN NN IN PRP MD VB VBN TO DT NNP NNP NNP IN PRP VBZ TO VB RB IN NNP NNS .\nIran has threatened several retaliatory moves , including suspension of a protocol that allows unannounced IAEA inspections of Iranian nuclear facilities .\tNNP VBZ VBN JJ JJ NNS , VBG NN IN DT NN WDT VBZ JJ NNP NNS IN JJ JJ NNS .\nTehran has also threatened to scale back trade ties with countries that supported the IAEA resolution .\tNNP VBZ RB VBN TO VB RP NN NNS IN NNS WDT VBD DT NNP NN .\nThe United States and several western countries accuse Iran of secretly trying to develop atomic weapons .\tDT NNP NNPS CC JJ JJ NNS VBP NNP IN RB VBG TO VB JJ NNS .\nIran denies the charge .\tNNP VBZ DT NN .\nThe Dalai Lama says he is looking forward to giving up his political duties as head of the Tibetan exile movement some time next year .\tDT NNP NNP VBZ PRP VBZ VBG RB TO VBG RP PRP$ JJ NNS IN NN IN DT JJ NN NN DT NN JJ NN .\nA top aide on Tuesday confirmed the Buddhist spiritual leader 's plan , which he recently declared in a broadcast interview in India .\tDT JJ NN IN NNP VBD DT NNP JJ NN POS NN , WDT PRP RB VBD IN DT NN NN IN NNP .\nThe Dalai Lama said he wants to discuss his intentions with the Tibetan parliament in exile , which convenes in March .\tDT NNP NNP VBD PRP VBZ TO VB PRP$ NNS IN DT JJ NN IN NN , WDT VBZ IN NNP .\nHe said he has been in a state of semi-retirement since the movement first elected a political leader in 2001 .\tPRP VBD PRP VBZ VBN IN DT NN IN NN IN DT NN RB VBD DT JJ NN IN CD .\nThe senior aide , Tenzin Taklha , stressed that the retirement would apply only to the Dalai Lama 's political role .\tDT JJ NN , NNP NNP , VBD IN DT NN MD VB RB TO DT NNP NNP POS JJ NN .\nHe said the Nobel Peace Prize laureate would continue to serve as a spiritual leader of the Tibetan people .\tPRP VBD DT NNP NNP NNP NN MD VB TO VB IN DT JJ NN IN DT JJ NNS .\nSwiss police say a container of swine flu virus samples packed in dry ice burst late Monday as it was being shipped on a Swiss train from Zurich to Geneva .\tJJ NNS VBP DT NN IN NN NN NN NNS VBN IN JJ NN VBD RB NNP IN PRP VBD VBG VBN IN DT JJ NN IN NNP TO NNP .\nAuthorities attribute the accident to bad packaging and say it posed no threat to humans .\tNNS VBP DT NN TO JJ NN CC VB PRP VBD DT NN TO NNS .\nPolice said the container held vials of a strain of swine flu virus different from the H1N1 variety responsible for a worldwide alert and for the deaths of about 150 people in Mexico .\tNNS VBD DT NN VBD NNS IN DT NN IN NN NN NN JJ IN DT NNP NN JJ IN DT JJ NN CC IN DT NNS IN IN CD NNS IN NNP .\nThe material was being transferred to Geneva as part of Swiss efforts to develop an effective test for detecting swine flu in humans .\tDT NN VBD VBG VBN TO NNP IN NN IN JJ NNS TO VB DT JJ NN IN VBG JJ NN IN NNS .\nReuters news agency says police stopped the train ahead of its arrival in Lausanne .\tNNP NN NN VBZ NN VBD DT NN RB IN PRP$ NN IN NNP .\nAuthorities report one person injured in the incident .\tNNS VBP CD NN VBN IN DT NN .\nKenya 's justice minister says the government will start freezing the assets of those suspected of profiting from corruption .\tNNP POS NN NN VBZ DT NN MD VB VBG DT NNS IN DT VBN IN VBG IN NN .\nMartha Karua told reporters Wednesday that the assets include well-known buildings in Nairobi she said were built with looted government funds .\tNNP NNP VBD NNS NNP IN DT NNS VBP JJ NNS IN NNP PRP VBD VBD VBN IN JJ NN NNS .\nKarua did not name any targeted officials , but said her office is accelerating action on all corruption cases , including the so-called Anglo Leasing and Goldenberg scandals .\tNNP VBD RB VB DT JJ NNS , CC VBD PRP$ NN VBZ VBG NN IN DT NN NNS , VBG DT JJ NNP NNP CC NNP NNS .\nKenya 's former ministers of finance , energy and education all resigned recently after being linked to the multi-million dollar scandals .\tNNP POS JJ NNS IN NN , NN CC NN DT VBD RB IN VBG VBN TO DT JJ NN NNS .\nThe officials have denied any wrongdoing .\tDT NNS VBP VBN DT NN .\nOn Wednesday , Kenya 's Anti-Corruption Commission interviewed former Transport Minister Chris Murungaru , who has been ordered to account for his wealth .\tIN NNP , NNP POS NNP NNP VBD JJ NNP NNP NNP NNP , WP VBZ VBN VBN TO VB IN PRP$ NN .\nMurungaru told reporters he will not comply with the order , and said the commission should present any evidence it has showing that he committed a crime .\tNNP VBD NNS PRP MD RB VB IN DT NN , CC VBD DT NN MD VB DT NN PRP VBZ VBG IN PRP VBD DT NN .\nThe outgoing Palestinian parliament has given Palestinian leader Mahmoud Abbas new powers just days before the Islamic militant group Hamas comes to power .\tDT JJ JJ NN VBZ VBN JJ NN NNP NNP JJ NNS RB NNS IN DT NNP JJ NN NNP VBZ TO NN .\nThe parliament , which is dominated by Mr. Abbas ' Fatah party , passed an amendment Monday allowing him to name judges to a court that can veto laws passed by the legislature .\tDT NN , WDT VBZ VBN IN NNP NNP POS NNP NN , VBD DT NN NNP VBG PRP TO VB NNS TO DT NN WDT MD VB NNS VBN IN DT NN .\nHamas leaders called the measure ' illegitimate ' and vowed to overturn it when the group takes over the legislature Saturday .\tNNP NNS VBD DT NN `` JJ `` CC VBD TO VB PRP WRB DT NN VBZ IN DT NN NNP .\nSpokesmen for Hamas also say it has settled on a prime minister who belongs to the militant group .\tNNS IN NNP RB VBP PRP VBZ VBN IN DT JJ NN WP VBZ TO DT JJ NN .\nEarlier , Hamas said it preferred an independent for the post .\tRB , NNP VBD PRP VBD DT NN IN DT NN .\nThe group says it hopes Fatah will join a new Palestinian government , but Fatah has said it will refuse .\tDT NN VBZ PRP VBZ NNP MD VB DT JJ JJ NN , CC NNP VBZ VBN PRP MD VB .\nA Democratic Congressman has called on young Americans to oppose President Bush 's plan to change the national retirement system , Social Security .\tDT JJ NN VBZ VBN IN JJ NNS TO VB NNP NNP POS NN TO VB DT JJ NN NN , NNP NNP .\nIn the Democratic Party 's weekly radio address Saturday , House member Kendrick Meek of Florida said the changes would harm the middle-class , increase the deficit , and cut benefits for most workers .\tIN DT NNP NNP POS JJ NN NN NNP , NNP NN NNP NNP IN NNP VBD DT NNS MD VB DT NN , VB DT NN , CC VB NNS IN JJS NNS .\nHe says today 's young Americans will be hurt the most as they reach retirement age .\tPRP VBZ NN POS JJ NNS MD VB VBN DT RBS IN PRP VBP NN NN .\nHe says the president 's plan would force the country to borrow trillions of dollars from foreign nations .\tPRP VBZ DT NN POS NN MD VB DT NN TO VB NNS IN NNS IN JJ NNS .\nCong. Meek says the private accounts the president has been promoting would be hit with what he called ' a large privatization tax . '\tNN NNP VBZ DT JJ NNS DT NN VBZ VBN VBG MD VB VBN IN WP PRP VBD `` DT JJ NN NN . ``\nPresident Bush says those accounts would earn a higher rate of return .\tNNP NNP VBZ DT NNS MD VB DT JJR NN IN NN .\nMr. Bush recently wrapped up a nationwide tour promoting his plans for Social Security .\tNNP NNP RB VBD RP DT JJ NN VBG PRP$ NNS IN NNP NNP .\nHe called the changes needed to secure the system for future generations .\tPRP VBD DT NNS VBN TO VB DT NN IN JJ NNS .\nThe Internet is often referred to as the Information Superhighway .\tDT NNP VBZ RB VBN TO IN DT NNP NNP .\nBut there are often shady characters loitering at every exit .\tCC EX VBP RB JJ NNS VBG IN DT NN .\nAs technology grows at increasing speed , ' cyber criminals ' are keeping law enforcement agencies very busy , as VOA 's Robert Raffaele explains .\tIN NN VBZ IN VBG NN , `` NN NNS `` VBP VBG NN NN NNS RB JJ , IN NNP POS NNP NNP VBZ .\nA top Iraqi Shi'ite leader is calling on the United States to let Iraqi forces take a more aggressive role against insurgents .\tDT JJ JJ NNP NN VBZ VBG IN DT NNP NNPS TO VB JJ NNS VBP DT RBR JJ NN IN NNS .\nIn an interview published Sunday in the Washington Post , Abdul Aziz Hakim says U.S. troops are hampering efforts by Iraq 's fledgling security forces to hunt down insurgents .\tIN DT NN VBN NNP IN DT NNP NNP , NNP NNP NNP VBZ NNP NNS VBP VBG NNS IN NNP POS JJ NN NNS TO VB RP NNS .\nHe said there were planned Iraqi military moves against insurgents that should have been implemented months ago .\tPRP VBD EX VBD VBN JJ JJ NNS IN NNS WDT MD VB VBN VBN NNS RB .\nAnd he said the rejection of those by U.S. generals has led to an expansion in terror attacks .\tCC PRP VBD DT NN IN DT IN NNP NNS VBZ VBN TO DT NN IN NN NNS .\nHe did not provide details .\tPRP VBD RB VB NNS .\nMr. Hakim also urged the United States to take stronger action against countries bordering Iraq who harbor insurgents and their supporters .\tNNP NNP RB VBD DT NNP NNPS TO VB JJR NN IN NNS VBG NNP WP VBP NNS CC PRP$ NNS .\nMr. Hakim heads the Shi'ite dominated Supreme Council for the Revolution in Iraq , which has the largest representation in parliament .\tNNP NNP VBZ DT NNP VBD NNP NNP IN DT NN IN NNP , WDT VBZ DT JJS NN IN NN .\nThe U.S. secretary of agriculture says he has taken immediate action to ensure that future beef exports meet Japanese requirements .\tDT NNP NN IN NN VBZ PRP VBZ VBN JJ NN TO VB IN JJ NN NNS VBP JJ NNS .\nJapan reimposed a complete ban on beef from the United States , after finding material it believes could transmit mad cow disease in a shipment that arrived Friday .\tNNP VBD DT JJ NN IN NN IN DT NNP NNPS , IN VBG NN PRP VBZ MD VB JJ NN NN IN DT NN WDT VBD NNP .\nThe country had resumed importing beef from the United States in December after months of negotiations .\tDT NN VBD VBN VBG NN IN DT NNP NNPS IN NNP IN NNS IN NNS .\nU.S. Agriculture Secretary Mike Johanns says a team of inspectors will go to Japan to re-examine all beef from the U.S. Johanns says the plant that sent the shipment to Japan has been barred from future exporting , and that the inspector who passed the shipment will be disciplined .\tNNP NNP NNP NNP NNP VBZ DT NN IN NNS MD VB TO NNP TO VB DT NN IN DT NNP NNP VBZ DT NN WDT VBD DT NN TO NNP VBZ VBN VBN IN JJ NN , CC IN DT NN WP VBD DT NN MD VB VBN .\nA spokesman for the U.S. beef industry , J. Patrick Boyle , head of the American Meat Institute says the industry regrets the incident but continues to be confident in the safety of American beef .\tDT NN IN DT NNP NN NN , NNP NNP NNP , NN IN DT NNP NNP NNP VBZ DT NN VBZ DT NN CC VBZ TO VB JJ IN DT NN IN JJ NN .\nThe Tajik people came under Russian rule in the 1860s and 1870s , but Russia 's hold on Central Asia weakened following the Revolution of 1917 .\tDT JJ NNS VBD IN JJ NN IN DT NNS CC NNS , CC NNP POS NN IN NNP NNP VBD VBG DT NN IN CD .\nBolshevik control of the area was fiercely contested and not fully reestablished until 1925 .\tNNP NN IN DT NN VBD RB VBN CC RB RB VBN IN CD .\nMuch of present-day Sughd province was transferred from the Uzbek SSR to the newly formed Tajik SSR in 1929 .\tNN IN JJ NNP NN VBD VBN IN DT JJ NNP TO DT RB VBN JJ NNP IN CD .\nEthnic Uzbeks form a substantial minority in Tajikistan .\tJJ NNS VBP DT JJ NN IN NNP .\nTajikistan became independent in 1991 following the breakup of the Soviet Union , and experienced a civil war between regional factions from 1992 - 97 .\tNNP VBD JJ IN CD VBG DT NN IN DT NNP NNP , CC VBD DT JJ NN IN JJ NNS IN CD IN CD .\nTajikistan experienced several security incidents in 2010 , including a mass prison-break from a Dushanbe detention facility , the country 's first suicide car bombing in Khujand , and armed conflict between government forces and opposition militants in the Rasht Valley .\tNNP VBD JJ NN NNS IN CD , VBG DT NN NN IN DT NNP NN NN , DT NN POS JJ NN NN VBG IN NNP , CC JJ NN IN NN NNS CC NN NNS IN DT NNP NNP .\nThe country remains the poorest in the former Soviet sphere .\tDT NN VBZ DT JJS IN DT JJ JJ NN .\nAttention by the international community since the beginning of the NATO intervention in Afghanistan has brought increased economic development and security assistance , which could create jobs and strengthen stability in the long term .\tNN IN DT JJ NN IN DT NN IN DT NNP NN IN NNP VBZ VBN VBN JJ NN CC NN NN , WDT MD VB NNS CC VB NN IN DT JJ NN .\nTajikistan is seeking WTO membership and has joined NATO 's Partnership for Peace .\tNNP VBZ VBG NNP NN CC VBZ VBN NNP POS NNP IN NNP .\nEconomic activity is limited to commercial fishing .\tJJ NN VBZ VBN TO JJ NN .\nThe proximity to nearby oil- and gas-producing sedimentary basins suggests the potential for oil and gas deposits , but the region is largely unexplored .\tDT NN TO JJ NN CC JJ JJ NNS VBZ DT NN IN NN CC NN NNS , CC DT NN VBZ RB JJ .\nThere are no reliable estimates of potential reserves .\tEX VBP DT JJ NNS IN JJ NNS .\nCommercial exploitation has yet to be developed .\tJJ NN VBZ RB TO VB VBN .\nTourism is the number one foreign exchange earner in this small economy , followed by exports of marine products , citrus , cane sugar , bananas , and garments .\tNN VBZ DT NN CD JJ NN NN IN DT JJ NN , VBN IN NNS IN JJ NNS , NNS , NN NN , NNS , CC NNS .\nThe government 's expansionary monetary and fiscal policies , initiated in September 1998 , led to GDP growth averaging nearly 4 % in 1999 - 2007 .\tDT NN POS JJ JJ CC JJ NNS , VBN IN NNP CD , VBD TO NN NN NN RB CD NN IN CD IN CD .\nOil discoveries in 2006 bolstered this growth .\tNN NNS IN CD VBD DT NN .\nExploration efforts have continued and production has increased a small amount .\tNN NNS VBP VBN CC NN VBZ VBN DT JJ NN .\nIn February 2007 , the government restructured nearly all of its public external commercial debt , which helped reduce interest payments and relieved some of the country 's liquidity concerns .\tIN NNP CD , DT NN VBD RB DT IN PRP$ JJ JJ JJ NN , WDT VBD VB NN NNS CC VBD DT IN DT NN POS NN NNS .\nGrowth slipped to 0 % in 2009 and 1.5 % in 2010 as a result of the global slowdown , natural disasters , and the drop in the price of oil .\tNN VBD TO CD NN IN CD CC CD NN IN CD IN DT NN IN DT JJ NN , JJ NNS , CC DT NN IN DT NN IN NN .\nWith weak economic growth and a large public debt burden , fiscal spending is likely to be tight .\tIN JJ JJ NN CC DT JJ JJ NN NN , JJ NN VBZ JJ TO VB JJ .\nA key government objective remains the reduction of poverty and inequality with the help of international donors .\tDT JJ NN NN VBZ DT NN IN NN CC NN IN DT NN IN JJ NNS .\nAlthough Belize has the second highest per capita income in Central America , the average income figure masks a huge income disparity between rich and poor .\tIN NNP VBZ DT JJ JJS IN NN NN IN NNP NNP , DT JJ NN NN VBZ DT JJ NN NN IN JJ CC JJ .\nThe 2010 Poverty Assessment shows that more than 4 out of 10 people live in poverty .\tDT CD NN NN VBZ IN JJR IN CD IN IN CD NNS VBP IN NN .\nThe sizable trade deficit and heavy foreign debt burden continue to be major concerns .\tDT JJ NN NN CC JJ JJ NN NN VBP TO VB JJ NNS .\nA CAT fell in love with a handsome young man , and entreated Venus to change her into the form of a woman .\tDT NN VBD IN NN IN DT JJ JJ NN , CC VBD NNP TO VB PRP IN DT NN IN DT NN .\nVenus consented to her request and transformed her into a beautiful damsel , so that the youth saw her and loved her , and took her home as his bride .\tNNP VBD TO PRP$ NN CC VBD PRP IN DT JJ NN , RB IN DT NN VBD PRP CC VBD PRP , CC VBD PRP$ NN IN PRP$ NN .\nWhile the two were reclining in their chamber , Venus wishing to discover if the Cat in her change of shape had also altered her habits of life , let down a mouse in the middle of the room .\tIN DT CD VBD VBG IN PRP$ NN , NNP VBG TO VB IN DT NN IN PRP$ NN IN NN VBD RB VBN PRP$ NNS IN NN , VB RP DT NN IN DT NN IN DT NN .\nThe Cat , quite forgetting her present condition , started up from the couch and pursued the mouse , wishing to eat it .\tDT NN , RB VBG PRP$ JJ NN , VBD RP IN DT NN CC VBD DT NN , VBG TO VB PRP .\nVenus was much disappointed and again caused her to return to her former shape .\tNNP VBD RB JJ CC RB VBD PRP TO VB TO PRP$ JJ NN .\nNature exceeds nurture .\tNN VBZ NN .\nA Hart hotly pursued by the hounds fled for refuge into an ox-stall , and buried itself in a truss of hay , leaving nothing to be seen but the tips of his horns .\tDT NNP RB VBN IN DT NNS VBD IN NN IN DT NN , CC VBD PRP IN DT NN IN NN , VBG DT TO VB VBN CC DT NNS IN PRP$ NNS .\nSoon after the Hunters came up and asked if any one had seen the Hart .\tRB IN DT NNPS VBD RB CC VBN IN DT CD VBD VBN DT NNP .\nThe stable boys , who had been resting after their dinner , looked round , but could see nothing , and the Hunters went away .\tDT JJ NNS , WP VBD VBN VBG IN PRP$ NN , VBD NN , CC MD VB DT , CC DT NNP VBD RB .\nShortly afterwards the master came in , and looking round , saw that something unusual had taken place .\tRB RB DT NN VBD IN , CC VBG NN , VBD IN DT JJ VBD VBN NN .\nHe pointed to the truss of hay and said : ' What are those two curious things sticking out of the hay ? '\tPRP VBD TO DT NN IN NN CC VBD : `` WP VBP DT CD JJ NNS VBG IN IN DT NN . ``\nAnd when the stable boys came to look they discovered the Hart , and soon made an end of him .\tCC WRB DT JJ NNS VBD TO VB PRP VBD DT NNP , CC RB VBD DT NN IN PRP .\nHe thus learnt that\tPRP RB VBP DT\nNothing escapes the master 's eye .\tDT VBZ DT NN POS NN .\nThe people who say they would rather push a Ford than drive a Chevy usually do .\tDT NNS WP VBP PRP MD RB VB DT NN IN VB DT NN RB VBP .\nU.S. officials say China is willing to send hundreds of engineers to Sudan 's troubled Darfur region as part of a planned United Nations-backed deployment of peacekeepers .\tNNP NNS VBP NNP VBZ JJ TO VB NNS IN NNS TO NNP POS JJ NNP NN IN NN IN DT JJ NNP NNP NN IN NNS .\nState Department spokesman Gonzalo Gallegos on Monday welcomed China 's decision , calling it a positive development .\tNNP NNP NN NNP NNP IN NNP VBD NNP POS NN , VBG PRP DT JJ NN .\nBut he also called on Beijing to use its significant influence with Khartoum to agree to the full deployment of a hybrid U.N.-African Union force of more than 20-thousand troops as soon as possible .\tCC PRP RB VBD IN NNP TO VB PRP$ JJ NN IN NNP TO VB TO DT JJ NN IN DT JJ NNP NNP NN IN JJR IN JJ NNS RB RB IN JJ .\nSudan has resisted international pressure to allow the peacekeepers , who would strengthen an existing African Union force in Darfur .\tNNP VBZ VBN JJ NN TO VB DT NNS , WP MD VB DT JJ NNP NNP NN IN NNP .\nFighting between rebels and pro-government forces in Darfur has killed some 2,00,000 people since 2003 .\tVBG IN NNS CC JJ NNS IN NNP VBZ VBN DT CD NNS IN CD .\nMore than two million others have been displaced .\tJJR IN CD CD NNS VBP VBN VBN .\nSudan 's government is accused of arming militias known as Janjaweed that are blamed for most of the conflict .\tNNP POS NN VBZ VBN IN VBG NNS VBN IN NNP WDT VBP VBN IN JJS IN DT NN .\nWorld oil prices rose Monday as investors waited for results from a meeting between President Bush and Saudi Crown Prince Abdullah in Texas about oil supplies , prices and other issues .\tNNP NN NNS VBD NNP IN NNS VBD IN NNS IN DT NN IN NNP NNP CC NNP NNP NNP NNP IN NNP IN NN NNS , NNS CC JJ NNS .\nSaudi Arabia is the world 's largest crude oil supplier and the only member of the Organization of Petroleum Exporting Countries that could significantly increase oil output soon .\tNNP NNP VBZ DT NN POS JJS NN NN NN CC DT JJ NN IN DT NNP IN NNP NNP NNS WDT MD RB VB NN NN RB .\nThe benchmark price of crude oil rose as high as 26 cents , to $ 55.65 a barrel on the New York Mercantile Exchange .\tDT JJ NN IN JJ NN VBD RB JJ IN CD NNS , TO $ CD DT NN IN DT NNP NNP NNP NNP .\nAnalysts blame recent price hikes on a series of refinery breakdowns that make it more difficult to turn crude oil into gasoline to meet expected demand .\tNNS VBP JJ NN NNS IN DT NN IN NN NNS WDT VBP PRP RBR JJ TO VB JJ NN IN NN TO VB VBN NN .\nCrude oil prices hit a record high of $ 58.28 in early April , then declined for a while before the recent rebound .\tJJ NN NNS VBD DT NN NN IN $ CD IN JJ NNP , RB VBD IN DT NN IN DT JJ NN .\nThe U.S. military says a man dressed in an Afghan army uniform has shot and killed two U.S. soldiers outside a top security prison near Kabul .\tDT NNP NN VBZ DT NN VBN IN DT JJ NN NN VBZ VBN CC VBN CD NNP NNS IN DT JJ NN NN IN NNP .\nMilitary spokesman , Major Sheldon Smith says the gunman wounded two other American soldiers in the shooting Sunday .\tNNP NN , NNP NNP NNP VBZ DT NN VBD CD JJ JJ NNS IN DT NN NNP .\nThe spokesman says the gunman was shot dead by Afghan troops at the prison .\tDT NN VBZ DT NN VBD VBN JJ IN JJ NNS IN DT NN .\nThe motive for the attack is unclear .\tDT NN IN DT NN VBZ JJ .\nEarlier , Afghan officials said a remote-controlled roadside bomb killed five policemen in Ghazni province in eastern Afghanistan .\tRB , JJ NNS VBD DT JJ NN NN VBD CD NNS IN NNP NN IN JJ NNP .\nAuthorities also said a suicide bomber detonated explosives near police in the western province of Farah , killing only the bomber .\tNNS RB VBD DT NN NN VBD NNS IN NN IN DT JJ NN IN NNP , VBG RB DT NN .\nIn the past year , Taleban insurgents have dramatically increased their attacks against Afghan authorities and U.S.-led coalition troops .\tIN DT JJ NN , NNP NNS VBP RB VBN PRP$ NNS IN JJ NNS CC JJ NN NNS .\nU.S.-led forces pushed the Taleban from power in late 2001 following the September 11 , 2001 terrorist attacks .\tJJ NNS VBD DT NNP IN NN IN JJ CD VBG DT NNP CD , CD JJ NNS .\nA fellow hunter who was accidentally shot and wounded by U.S. Vice President Dick Cheney is recovering in stable condition .\tDT JJ NN WP VBD RB VBN CC VBN IN NNP NNP NNP NNP NNP VBZ VBG IN JJ NN .\nA hospital spokesman in Corpus Christi , Texas said 78-year-old attorney Harry Whittington is alert and doing well .\tDT NN NN IN NNP NNP , NNP VBD JJ NN NNP NNP VBZ JJ CC VBG RB .\nThe spokesman said Whittington will undergo more tests Monday , and it is not yet clear when he will be released from the hospital .\tDT NN VBD NNP MD VB JJR NNS NNP , CC PRP VBZ RB RB JJ WRB PRP MD VB VBN IN DT NN .\nThe accident happened Saturday while he and the vice president were hunting quail in southern Texas .\tDT NN VBD NNP IN PRP CC DT NN NN VBD VBG NN IN JJ NNP .\nA witness to the shooting , Katharine Armstrong , said Cheney fired a shotgun at a flying bird without realizing his companion was in the line of fire .\tDT NN TO DT NN , NNP NNP , VBD NNP VBD DT NN IN DT VBG NN IN VBG PRP$ NN VBD IN DT NN IN NN .\nWhittington was hit with shotgun pellets in his right cheek , neck and chest Cheney visited Whittington in the hospital Sunday before returning to Washington .\tNNP VBD VBN IN JJ NNS IN PRP$ JJ NN , NN CC NN NNP VBD NNP IN DT NN NNP IN VBG TO NNP .\nThe vice president is an avid hunter .\tDT NN NN VBZ DT JJ NN .\nThe Palestinian militant group Islamic Jihad says an Israeli airstrike in the Gaza strip has killed three of its members , including a top commander .\tDT JJ JJ NN NNP NNP VBZ DT JJ NN IN DT NNP NN VBZ VBN CD IN PRP$ NNS , VBG DT JJ NN .\nThe Israeli army confirmed the strike on a vehicle carrying the militants Thursday in Gaza City .\tDT JJ NN VBD DT NN IN DT NN VBG DT NNS NNP IN NNP NNP .\nEarlier Thursday in the southern Gaza Strip , Palestinian medical officials said Israeli forces killed a Hamas militant during a military operation .\tRB NNP IN DT JJ NNP NNP , JJ JJ NNS VBD JJ NNS VBD DT NNP NN IN DT JJ NN .\nThe Israeli army said the operation was aimed at preventing terrorist threats .\tDT JJ NN VBD DT NN VBD VBN IN VBG JJ NNS .\nThe area is a source for rocket fire into Israel .\tDT NN VBZ DT NN IN NN NN IN NNP .\nIn the occupied West Bank , the Israeli military said a Palestinian man tried to stab a soldier near a Jewish settlement .\tIN DT JJ NNP NNP , DT JJ NN VBD DT JJ NN VBD TO VB DT NN IN DT JJ NN .\nIt said another soldier hit the attacker in the head , seriously injuring him .\tPRP VBD DT NN VBD DT NN IN DT NN , RB VBG PRP .\nPalestinian witnesses say that during a scuffle an Israeli soldier shot the man , who later died of his wounds .\tJJ NNS VBP IN IN DT NN DT JJ NN VBD DT NN , WP RB VBD IN PRP$ NNS .\nAn attempt to address America 's weight problem has run into trouble in New York .\tDT NN TO VB NNP POS NN NN VBZ VBN IN NN IN NNP NNP .\nHealth officials are trying to increase the city 's consumption of fruits and vegetables , especially in less affluent neighborhoods where obesity rates are higher .\tNNP NNS VBP VBG TO VB DT NN POS NN IN NNS CC NNS , RB IN JJR JJ NNS WRB NN NNS VBP JJR .\nGiven that more than half of New York adults are overweight or obese - and an estimated 7,00,000 suffer from diabetes - the argument is not over the need for action .\tVBN IN JJR IN NN IN NNP NNP NNS VBP JJ CC JJ : CC DT JJ CD VBP IN NNS IN DT NN VBZ RB IN DT NN IN NN .\nInstead , the issue is the way the city has gone about it .\tRB , DT NN VBZ DT NN DT NN VBZ VBN IN PRP .\nPaige Kollock has more .\tNNP NNP VBZ RBR .\nThousands of demonstrators have gathered in Jerusalem to protest any renewal of a Jewish settlement freeze in the occupied West Bank or East Jerusalem .\tNNS IN NNS VBP VBN IN NNP TO VB DT NN IN DT JJ NN NN IN DT JJ NNP NNP CC NNP NNP .\nThe protesters , who rallied late Thursday , also voiced support for a letter signed by dozens of Israeli rabbis this month that would forbid the rental of homes to non-Jews .\tDT NNS , WP VBD JJ NNP , RB VBD NN IN DT NN VBN IN NNS IN JJ NNS DT NN WDT MD VB DT NN IN NNS TO JJ .\nThe protest comes in the wake of increased tensions between Israelis and Palestinians over settlement construction , a key issue in U.S.-mediated peace talks between the two sides .\tDT NN VBZ IN DT NN IN VBN NNS IN NNS CC NNS IN NN NN , DT JJ NN IN JJ NN NNS IN DT CD NNS .\nDirect talks between the two sides broke down after an Israeli freeze on West Bank settlement building expired in September .\tJJ NNS IN DT CD NNS VBD RP IN DT JJ NN IN NNP NNP NN NN VBD IN NNP .\nPalestinians oppose construction on land they want as part of a future state .\tNNS VBP NN IN NN PRP VBP IN NN IN DT JJ NN .\nPalestinians want a state that would include the West Bank , Gaza and East Jerusalem -- land captured by Israel in the 1967 Mideast war .\tNNS VBP DT NN WDT MD VB DT NNP NNP , NNP CC NNP NNP : NN VBN IN NNP IN DT CD JJ NN .\nIsrael has not agreed to those conditions .\tNNP VBZ RB VBN TO DT NNS .\nA new poll indicates only a third of Americans believe their members of Congress are honest .\tDT JJ NN VBZ RB DT NN IN NNS VBP PRP$ NNS IN NNP VBP JJ .\nIn a poll of 1,000 adults taken October 3 through 5 , the Associated Press reports , 45 percent of those surveyed gave Congress poor marks for honesty and ethics .\tIN DT NN IN CD NNS VBN NNP CD IN CD , DT NNP NNP VBZ , CD NN IN DT VBN VBD NNP JJ NNS IN NN CC NNS .\nOne-third of the respondents said congressional ethics are good , and 21 percent said congressional ethics are neither good nor poor .\tNNP IN DT NNS VBD JJ NNS VBP JJ , CC CD NN VBD JJ NNS VBP RB JJ CC JJ .\nOnly 35 percent said they approved of the way Congress does its job .\tRB CD NN VBD PRP VBD IN DT NN NNP VBZ PRP$ NN .\nThat number is down from 44 percent in a similar poll taken in February .\tDT NN VBZ RB IN CD NN IN DT JJ NN VBN IN NNP .\nTwo top Republican lawmakers are being investigated for ethics issues .\tCD JJ JJ NNS VBP VBG VBN IN NNS NNS .\nSenate Majority Leader Bill Frist is the subject of a federal probe for possible insider stock trading .\tNNP NNP NNP NNP NNP VBZ DT NN IN DT JJ NN IN JJ NN NN NN .\nFormer House Majority Leader Tom Delay was charged in Texas earlier this month with violating campaign finance laws .\tJJ NNP NNP NNP NNP NNP VBD VBN IN NNP RBR DT NN IN VBG NN NN NNS .\nVenezuelan President Hugo Chavez has endorsed Nicaraguan presidential candidate Daniel Ortega to win his country 's November election .\tJJ NNP NNP NNP VBZ VBN JJ JJ NN NNP NNP TO VB PRP$ NN POS NNP NN .\nBoth men appeared on President Chavez 's weekly television broadcast Sunday , where Mr. Chavez told Ortega , ' I hope you win . '\tDT NNS VBD IN NNP NNP POS JJ NN NN NNP , WRB NNP NNP VBD NNP , `` PRP VBP PRP VBP . ``\nThe endorsement comes on the heels of a recommendation from the U.S. State Department last week that Nicaraguans reject not only Ortega , but also former Nicaraguan President Arnoldo Aleman , who is also a presidential candidate .\tDT NN VBZ IN DT NNS IN DT NN IN DT NNP NNP NNP JJ NN IN NNS VBP RB RB NNP , CC RB JJ JJ NNP NNP NNP , WP VBZ RB DT JJ NN .\nA Department spokesman , Sean McCormack , said that both men are ' discredited figures from Nicaragua 's past . '\tDT NNP NN , NNP NNP , VBD IN DT NNS VBP `` VBN NNS IN NNP POS NN . ``\nOrtega led the leftist Sandanista movement against Contra rebels supported by Washington in the 1980s .\tNNP VBD DT JJ NNP NN IN NNP NNS VBN IN NNP IN DT NNS .\nThe State Department says the U.S. ambassador in Nicaragua is meeting with all parties that have expressed an interest in a ' democratic electoral process . '\tDT NNP NNP VBZ DT NNP NN IN NNP VBZ VBG IN DT NNS WDT VBP VBN DT NN IN DT `` JJ JJ NN . ``\nFrench President Nicolas Sarkozy says European Union leaders have agreed on a common approach to reform the world financial system ahead of this month 's summit on the issue in Washington .\tJJ NNP NNP NNP VBZ NNP NNP NNS VBP VBN IN DT JJ NN TO VB DT NN JJ NN RB IN DT NN POS NN IN DT NN IN NNP .\nThe French president , whose country holds the rotating EU presidency , told reporters the 27 leaders , meeting in Brussels , had agreed on the need for a fully coordinated political and economic response to the crisis .\tDT JJ NN , WP$ NN VBZ DT VBG NNP NN , VBD NNS DT CD NNS , NN IN NNP , VBD VBN IN DT NN IN DT RB VBN JJ CC JJ NN TO DT NN .\nEarlier , EU officials acknowledged some disagreement among union members about how involved governments should be in the financial reform .\tRB , NNP NNS VBD DT NN IN NN NNS IN WRB JJ NNS MD VB IN DT JJ NN .\nMembers also questioned how much will be accomplished at the Washington summit as the nation prepares to welcome a new presidential administration .\tNNS RB VBD WRB RB MD VB VBN IN DT NNP NN IN DT NN VBZ TO VB DT JJ JJ NN .\nEuropean Commission President Jose Manuel Barroso has said it will take unprecedented levels of global coordination to deal with the financial meltdown .\tJJ NNP NNP NNP NNP NNP VBZ VBN PRP MD VB JJ NNS IN JJ NN TO VB IN DT JJ NN .\nLeaders of wealthy nations and the heads of major developing economies gather in Washington November 15 to focus on the worldwide economic downturn .\tNNS IN JJ NNS CC DT NNS IN JJ VBG NNS VBP IN NNP NNP CD TO VB IN DT JJ JJ NN .\nIndonesian health authorities said Monday an elderly woman who died overnight is the country 's 54th fatal bird flu case .\tJJ NN NNS VBD NNP DT JJ NN WP VBD RB VBZ DT NN POS JJ JJ NN NN NN .\nThe 67-year-old woman was from the town of Bandung in West Java .\tDT JJ NN VBD IN DT NN IN NNP IN NNP NNP .\nAn 11-year-old boy died from bird flu in a Jakarta hospital Saturday night .\tDT JJ NN VBD IN NN NN IN DT NNP NN NNP NN .\nIndonesia has the highest number of bird flu-related deaths in the world .\tNNP VBZ DT JJS NN IN NN JJ NNS IN DT NN .\nThe disease has killed at least 149 people worldwide over the past three years .\tDT NN VBZ VBN IN JJS CD NNS JJ IN DT JJ CD NNS .\nMost victims contract the virus from dead or sick birds .\tJJS NNS NN DT NN IN JJ CC JJ NNS .\nTyphoon Damrey , now a tropical storm , pounded northern and eastern Vietnam Tuesday , killing at least one person , injuring several others and causing widespread damage .\tNNP NNP , RB DT JJ NN , VBD JJ CC JJ NNP NNP , VBG IN JJS CD NN , VBG JJ NNS CC VBG JJ NN .\nVietnamese authorities say Damrey came ashore early this morning in Thanh Hoa province , south of Hanoi , with heavy rain and winds around 100 kilometers per hour .\tJJ NNS VBP NNP VBD RB RB DT NN IN NNP NNP NN , NN IN NNP , IN JJ NN CC NNS IN CD NNS IN NN .\nOfficials say some protective dikes along the eastern coastline were seriously damaged , and several provinces lost electricity .\tNNS VBP DT JJ NNS IN DT JJ NN VBD RB VBN , CC JJ NNS VBD NN .\nHanoi Radio said the storm weakened as it moved towards Laos .\tNNP NNP VBD DT NN VBD IN PRP VBD IN NNP .\nBefore hitting Vietnam , Damrey slammed into the southern Chinese provinces of Hainan and Guangdong on Monday .\tIN VBG NNP , NNP VBD IN DT JJ JJ NNS IN NNP CC NNP IN NNP .\nChina ' state news agency , Xinhua , said the storm killed at least 16 people on Hainan and caused an island-wide blackout .\tNNP POS NN NN NN , NNP , VBD DT NN VBD IN JJS CD NNS IN NNP CC VBD DT JJ NN .\nChinese officials said Damrey caused more than $ 1 billion in direct losses , mainly to agriculture .\tJJ NNS VBD NNP VBD JJR IN $ CD CD IN JJ NNS , RB TO NN .\nIraqi officials say two car bombs in the Shi'ite holy city of Karbala have killed at least five people and wounded about 55 .\tJJ NNS VBP CD NN NNS IN DT NNP JJ NN IN NNP VBP VBN IN JJS CD NNS CC VBN IN CD .\nPolice say the first bomb exploded Monday near the Imam Hussein shrine , a holy site for Shi'ite Muslims .\tNNS VBP DT JJ NN VBD NNP IN DT NNP NNP NN , DT JJ NN IN NNP NNPS .\nOfficials say a second blast went off minutes later in the vicinity , near a provincial office .\tNNS VBP DT JJ NN VBD RP NNS RB IN DT NN , IN DT JJ NN .\nDozens of demobilized soldiers have taken over the home of ousted Haitian President Jean-Bertrand Aristide in a Port-au-Prince suburb .\tNNS IN JJ NNS VBP VBN IN DT NN IN JJ JJ NNP NNP NNP IN DT JJ NN .\nA spokesman for the former soldiers says they plan to use the home as a base to improve security for people in the area .\tDT NN IN DT JJ NNS VBZ PRP VBP TO VB DT NN IN DT NN TO VB NN IN NNS IN DT NN .\nThe action comes one day after U.N. peacekeepers stormed a stronghold of Mr. Aristide 's supporters to control areas that have been flashpoints of violence .\tDT NN VBZ CD NN IN NNP NNS VBD DT NN IN NNP NNP POS NNS TO VB NNS WDT VBP VBN NNS IN NN .\nMeanwhile , the top U.S. diplomat for Latin America , Roger Noriega , Wednesday called on governments and institutions to speed up disbursement of more than $ 1.3 billion pledged to Haiti at a World Bank conference in July .\tRB , DT JJ NNP NN IN NNP NNP , NNP NNP , NNP VBD IN NNS CC NNS TO VB RP NN IN JJR IN $ CD CD VBN TO NNP IN DT NNP NNP NN IN NNP .\nMr. Noriega also stressed the need for Haiti 's interim leadership to provide security , prepare for elections , and defend the human rights of Haitians .\tNNP NNP RB VBD DT NN IN NNP POS JJ NN TO VB NN , VB IN NNS , CC VB DT JJ NNS IN NNS .\nThe United Nations is appealing for more than $ 180 million next year to help refugees from Sudan 's Darfur region who have fled to neighboring Chad .\tDT NNP NNP VBZ VBG IN JJR IN $ CD CD JJ NN TO VB NNS IN NNP POS NNP NN WP VBP VBN TO VBG NNP .\nThe U.N. Office for the Coordination of Humanitarian Affairs says that is a 10 percent increase over this year 's budget .\tDT NNP NNP IN DT NN IN NNP NNP VBZ DT VBZ DT CD NN NN IN DT NN POS NN .\nIt says the money will be used to provide both refugees and the local population with food and water as well as basic services such as health and education .\tPRP VBZ DT NN MD VB VBN TO VB DT NNS CC DT JJ NN IN NN CC NN RB RB IN JJ NNS JJ IN NN CC NN .\nThe United Nations estimates 2,00,000 Sudanese have fled to eastern Chad to escape attacks by pro-government Arab militia .\tDT NNP NNP VBZ CD NNS VBP VBN TO JJ NNP TO VB NNS IN JJ JJ NN .\nIt says the large influx has led to growing tensions between the refugees and the local Chadian population , as the two groups increasingly compete for scarce food , water and land .\tPRP VBZ DT JJ NN VBZ VBN TO VBG NNS IN DT NNS CC DT JJ JJ NN , IN DT CD NNS RB VBP IN JJ NN , NN CC NN .\nFederal prosecutors in Germany say police have arrested an Iraqi man suspected of distributing video and audio messages recorded by al-Qaida leaders .\tNNP NNS IN NNP VBP NNS VBP VBN DT JJ NN VBN IN VBG NN CC NN NNS VBN IN NNP NNS .\nProsecutors say the 36-year-old Iraqi , identified only as Ibrahim R. , was arrested Tuesday near the western city of Osnabrueck .\tNNS VBP DT JJ NN , VBN RB IN NNP NNP , VBD VBN NNP IN DT JJ NN IN NNP .\nHe is accused of spreading via the Internet a series of audio and video messages from al-Qaida leaders , including Osama bin Laden and Ayman al-Zawahiri , the number-two leader in the terrorist network .\tPRP VBZ VBN IN VBG IN DT NNP DT NN IN NN CC NN NNS IN NNP NNS , VBG NNP NNP NNP CC NNP NNP , DT JJ NN IN DT NN NN .\nThe man is facing charges including aiding and supporting a terrorist organization .\tDT NN VBZ VBG NNS VBG VBG CC VBG DT JJ NN .\nHe will be brought before a judge on Wednesday .\tPRP MD VB VBN IN DT NN IN NNP .\nVideo and audio message from Bin Laden and Zawahiri have repeatedly threatened western countries , including the United States , with violent attacks .\tNN CC NN NN IN NNP NNP CC NNP VBP RB VBN JJ NNS , VBG DT NNP NNPS , IN JJ NNS .\nU.S. officials have ordered a recall of 143 million pounds of beef produced by a California processor accused of violating food safety regulations , in the largest recall in U.S. history .\tNNP NNS VBP VBN DT NN IN CD CD NNS IN NN VBN IN DT NNP NN VBN IN VBG NN NN NNS , IN DT JJS NN IN NNP NN .\nThe U.S. Department of Agriculture announced Sunday the recall of frozen beef produced during the past two years by the Westland / Hallmark Meat Company .\tDT NNP NNP IN NNP VBD NNP DT NN IN JJ NN VBN IN DT JJ CD NNS IN DT NNP NNP NNP NNP NN .\nFederal officials suspended operations at the plant last week after undercover video showed crippled and sick animals being shoved into the slaughterhouse by a worker on a forklift .\tNNP NNS VBD NNS IN DT NN JJ NN IN NN NN VBD JJ CC JJ NNS VBG VBN IN DT NN IN DT NN IN DT NN .\nRegulations call for the removal from the food supply of cattle that are unable to walk because they carry higher risk for a number of diseases , including Mad Cow disease .\tNNS VBP IN DT NN IN DT NN NN IN NNS WDT VBP JJ TO VB IN PRP VBP JJR NN IN DT NN IN NNS , VBG NNP NNP NN .\nThe USDA said it is extremely unlikely any of the sick animals at the plant had Mad Cow disease .\tDT NNP VBD PRP VBZ RB JJ DT IN DT JJ NNS IN DT NN VBD VBN NNP NN .\nHundreds of Pakistani investors rioted at the Karachi Stock Exchange Thursday demanding a halt in trading after share prices fell for the 15th straight session .\tNNS IN JJ NNS VBD IN DT NNP NNP NNP NNP VBG DT NN IN NN IN NN NNS VBD IN DT JJ JJ NN .\nThe exchange 's security chief Mohammed Aslam said investors began smashing windows after the administration declined to suspend trading .\tDT NN POS NN NN NNP NNP VBD NNS VBD VBG NNS IN DT NN VBD TO VB NN .\nSimilar protests also broke out in Lahore , where investors burned tires and blocked roads .\tJJ NNS RB VBD RP IN NNP , WRB NNS VBD NNS CC VBN NNS .\nThe Karachi Stock Exchange index has fallen 14 percent since Monday .\tDT NNP NNP NNP NN VBZ VBN CD NN IN NNP .\nAngry investors blamed the government for the recent volatility , after regulators relaxed curbs on daily stock price movements .\tJJ NNS VBD DT NN IN DT JJ NN , IN NNS VBD NNS IN JJ NN NN NNS .\nPersistent concerns about economic and political instability have also contributed to a decline in Pakistani stocks .\tJJ NNS IN JJ CC JJ NN VBP RB VBN TO DT NN IN JJ NNS .\nAuthorities in the western Indian state of Maharashtra say a passenger bus has plunged into a ravine , killing 21 people and injuring 40 others .\tNNS IN DT JJ JJ NN IN NNP VBP DT NN NN VBZ VBN IN DT NN , VBG CD NNS CC VBG CD NNS .\nThe authorities say the accident happened in early afternoon Saturday near Vani town .\tDT NNS VBP DT NN VBD IN JJ NN NNP IN NNP NN .\nThey say the injured were transferred to local hospitals and that an investigation is under way .\tPRP VBP DT NN VBD VBN TO JJ NNS CC IN DT NN VBZ IN NN .\nThe accident comes one day after 53 people were killed when an overcrowded bus plunged into a deep gorge in Indian Kashmir .\tDT NN VBZ CD NN IN CD NNS VBD VBN WRB DT JJ NN VBD IN DT JJ NN IN JJ NNP .\nAlso Saturday , in an unrelated development , a moderate earthquake struck near India 's Andaman Islands .\tRB NNP , IN DT JJ NN , DT JJ NN VBD IN NNP POS NNP NNP .\nThe Hong Kong Observatory and the Indian Meteorological Department say the quake measured 5.8 on the Richter scale and was centered west of the islands .\tDT NNP NNP NNP CC DT JJ NNP NNP VBP DT NN VBD CD IN DT NNP NN CC VBD VBN JJS IN DT NNS .\nThere were no immediate reports of damage or injuries .\tEX VBD DT JJ NNS IN NN CC NNS .\nSecurity officials in Iraq say a car bomb has killed at least two people and wounded five in central Baghdad .\tNN NNS IN NNP VBP DT NN NN VBZ VBN IN JJS CD NNS CC VBN CD IN JJ NNP .\nMonday 's bombing happened in the capital 's Karrada district .\tNNP POS NN VBD IN DT NN POS NNP NN .\nAlso in Baghdad , the U.S. military says an American soldier was killed in an attack on his patrol .\tRB IN NNP , DT NNP NN VBZ DT JJ NN VBD VBN IN DT NN IN PRP$ NN .\nThe military said the soldier was killed by small-arms fire on Sunday .\tDT NN VBD DT NN VBD VBN IN NNS NN IN NNP .\nIn other violence Sunday , bomb attacks killed at least nine people and wounded about 70 .\tIN JJ NN NNP , NN NNS VBD IN JJS CD NNS CC VBD IN CD .\nIraqi officials said a suicide truck bomber attacked a police checkpoint in the northern city of Kirkuk , killing three people .\tJJ NNS VBD DT NN NN NN VBD DT NN NN IN DT JJ NN IN NNP , VBG CD NNS .\nAnother suicide truck bomber struck the northern city of Mosul , killing two people .\tDT NN NN NN VBD DT JJ NN IN NNP , VBG CD NNS .\nA roadside bomb blast hit a minibus in eastern Iraq 's Diyala province , killing three people .\tDT NN NN NN VBD DT NN IN JJ NNP POS NNP NN , VBG CD NNS .\nLiberian election officials have opened hearings into electoral fraud claims by presidential candidate George Weah , who trails by a large margin in the country 's run-off vote .\tJJ NN NNS VBP VBN NNS IN JJ NN NNS IN JJ NN NNP NNP , WP VBZ IN DT JJ NN IN DT NN POS NN NN .\nMr. Weah has alleged there was cheating , including pre-marked ballots , in last week 's second round election pitting him against former Finance Minister Ellen Johnson-Sirleaf .\tNNP NNP VBZ VBN EX VBD NN , VBG JJ NNS , IN JJ NN POS JJ NN NN VBG PRP IN JJ NNP NNP NNP NNP .\nHe has called for a re-run of the poll .\tPRP VBZ VBN IN DT NN IN DT NN .\nA final vote count earlier this week showed Mrs. Johnson-Sirleaf won 59 percent of the vote to 41 percent for Mr. Weah , a former soccer ( football ) star .\tDT JJ NN NN RBR DT NN VBD NNP NNP VBD CD NN IN DT NN TO CD NN IN NNP NNP , DT JJ NN LRB NN RRB NN .\nElection officials said the results are considered preliminary until an investigation is completed into Mr. Weah 's allegations .\tNNP NNS VBD DT NNS VBP VBN JJ IN DT NN VBZ VBN IN NNP NNP POS NNS .\nInternational observers say there was no evidence of widespread fraud .\tJJ NNS VBP EX VBD DT NN IN JJ NN .\nAnd leaders from several African countries praised the run-off as peaceful , transparent , free and fair .\tCC NNS IN JJ JJ NNS VBD DT NN IN JJ , JJ , JJ CC JJ .\nFinal results are expected next week .\tJJ NNS VBP VBN JJ NN .\nIraqi officials say a suicide bomber has killed three people and wounded at least 10 others in central Baghdad .\tJJ NNS VBP DT NN NN VBZ VBN CD NNS CC VBN IN JJS CD NNS IN JJ NNP .\nOfficials say the bomber targeted a police unit Wednesday in the Karradah neighborhood .\tNNS VBP DT NN VBD DT NN NN NNP IN DT NNP NN .\nAlso Wednesday , two Iraqi policemen were killed by a suicide bomber in the northern city , Mosul .\tRB NNP , CD JJ NNS VBD VBN IN DT NN NN IN DT JJ NN , NNP .\nViolence in Iraq has dropped sharply over the past year , but the security situation remains fragile .\tNN IN NNP VBZ VBN RB IN DT JJ NN , CC DT NN NN VBZ JJ .\nThe U.S. military has been transferring security responsibilities to the Iraqi government , with U.S. forces scheduled to withdraw from the country by 2011 .\tDT NNP NN VBZ VBN VBG NN NNS TO DT JJ NN , IN NNP NNS VBN TO VB IN DT NN IN CD .\nCzech officials are accusing Russia of interfering in their internal affairs by threatening military action against a planned U.S. missile defense system on Czech soil .\tJJ NNS VBP VBG NNP IN VBG IN PRP$ JJ NNS IN VBG JJ NN IN DT JJ NNP NN NN NN IN JJ NN .\nThe Czech Defense Ministry Thursday called Russia 's reaction to the defense shield pact inappropriate rhetoric .\tDT JJ NNP NNP NNP VBD NNP POS NN TO DT NN NN NN JJ NN .\nRussia has threatened to take military action if the United States deploys missile defense radar in the Czech Republic and interceptor missiles in Poland .\tNNP VBZ VBN TO VB JJ NN IN DT NNP NNPS VBZ NN NN NN IN DT JJ NNP CC JJ NNS IN NNP .\nWashington and Prague signed a deal this week .\tNNP CC NNP VBD DT NN DT NN .\nTalks with Poland are still under way .\tNNS IN NNP VBP RB IN NN .\nWashington says the system is aimed at averting a possible missile strike from Iran .\tNNP VBZ DT NN VBZ VBN IN VBG DT JJ NN NN IN NNP .\nRussia calls the system a threat to its security .\tNNP VBZ DT NN DT NN TO PRP$ NN .\nU.S. Defense Secretary Robert Gates says this week 's Iranian missile tests are evidence the missile defense shield is needed .\tNNP NNP NNP NNP NNP VBZ DT NN POS JJ NN NNS VBP NN DT NN NN NN VBZ VBN .\nPresident Bush has told Indian Prime Minister Manmohan Singh that he hopes the U.S. Congress will soon approve legislation on a civilian nuclear deal between the two nations .\tNNP NNP VBZ VBN JJ NNP NNP NNP NNP IN PRP VBZ DT NNP NNP MD RB VB NN IN DT JJ JJ NN IN DT CD NNS .\nDespite the support expressed by Mr. Bush during Thursday 's phone conversation , it is unclear whether the U.S. Senate will approve the measure .\tIN DT NN VBN IN NNP NNP IN NNP POS NN NN , PRP VBZ JJ IN DT NNP NNP MD VB DT NN .\nThe deal would let India buy nuclear fuel and technology from the United States and other suppliers if New Delhi opens its civilian nuclear sites to U.N. inspection .\tDT NN MD VB NNP VB JJ NN CC NN IN DT NNP NNPS CC JJ NNS IN NNP NNP VBZ PRP$ JJ JJ NNS TO NNP NN .\nThe Senate took up the measure Wednesday and discussion is expected to continue today .\tDT NNP VBD RP DT NN NNP CC NN VBZ VBN TO VB NN .\nThe House of Representatives has already approved the deal .\tDT NNP IN NNP VBZ RB VBN DT NN .\nProminent arms control experts have urged U.S. lawmakers to require that India stop producing nuclear fuel that could be used in weapons - before U.S.-India nuclear cooperation begins .\tNNP NNS NN NNS VBP VBN NNP NNS TO VB IN NNP VB VBG JJ NN WDT MD VB VBN IN NNS : IN NNP JJ NN VBZ .\nThousands of Palestinians across the West Bank voted Thursday in the final phase of municipal elections .\tNNS IN NNS IN DT NNP NNP VBD NNP IN DT JJ NN IN JJ NNS .\nInitial estimates showed turnout was high in the first election since Israel 's withdrawal from parts of the West Bank and all of the Gaza Strip .\tJJ NNS VBD NN VBD JJ IN DT JJ NN IN NNP POS NN IN NNS IN DT NNP NNP CC DT IN DT NNP NNP .\nThe ruling Fatah movement of Palestinian President Mahmoud Abbas is facing stiff opposition from candidates of the militant group Hamas .\tDT NN NNP NN IN JJ NNP NNP NNP VBZ VBG JJ NN IN NNS IN DT JJ NN NNP .\nHamas has tried to portray Israel 's withdrawal as a militant victory .\tNNP VBZ VBN TO VB NNP POS NN IN DT NN NN .\nThe vote could set the tone for Palestinian parliamentary elections in January .\tDT NN MD VB DT NN IN JJ JJ NNS IN NNP .\nIsrael has said it will not help facilitate those elections if Hamas participates without first disarming .\tNNP VBZ VBN PRP MD RB VB VB DT NNS IN NNP VBZ IN JJ NN .\nIn a separate development , President Abbas condemned the killing of three militants during an Israeli military raid Thursday in the West Bank .\tIN DT JJ NN , NNP NNP VBD DT NN IN CD NNS IN DT JJ JJ NN NNP IN DT NNP NNP .\nHe called it an escalation that jeopardizes the peace process .\tPRP VBD PRP DT NN WDT VBZ DT NN NN .\nA top Democratic lawmaker has called on President Bush to fill the new vacancy on the Supreme Court with a moderate , mainstream justice .\tDT JJ JJ NN VBZ VBN IN NNP NNP TO VB DT JJ NN IN DT NNP NNP IN DT JJ , JJ NN .\nSenate Minority Leader Harry Reid of Nevada charged that President Bush 's far-right allies are spending millions of dollars to pressure him to appoint an extreme conservative .\tNNP NNP NNP NNP NNP IN NNP VBD IN NNP NNP POS JJ NNS VBP VBG NNS IN NNS TO VB PRP TO VB DT JJ NN .\nIn the Democratic party 's weekly radio address Saturday , Mr. Reid said Justice Sandra Day O'Connor , who announced her retirement last week , was moderate and balanced the court .\tIN DT JJ NN POS JJ NN NN NNP , NNP NNP VBD NNP NNP NNP NNP , WP VBD PRP$ NN JJ NN , VBD JJ CC JJ DT NN .\nHe called for her replacement to be someone who will build on consensus and unite the country .\tPRP VBD IN PRP$ NN TO VB DT WP MD VB IN NN CC VB DT NN .\nThe Senate must approve Mr. Bush 's pick .\tDT NNP MD VB NNP NNP POS NN .\nSenator Reid also called for the perpetrators of the London bombings to be brought to justice , and called for increased efforts in protecting the United States .\tNNP NNP RB VBD IN DT NNS IN DT NNP NNS TO VB VBN TO NN , CC VBD IN VBN NNS IN VBG DT NNP NNPS .\nA United Nations worker from Burma was among the three people killed by Saturday 's bombing at an Internet cafe in Kabul , Afghanistan .\tDT NNP NNPS NN IN NNP VBD IN DT CD NNS VBN IN NNP POS NN IN DT NNP NN IN NNP , NNP .\nU.N. officials said Sunday the victim worked for the U.N. Office of Project Services , but did not release his name .\tNNP NNS VBD NNP DT NN VBD IN DT NNP NNP IN NNP NNPS , CC VBD RB VB PRP$ NN .\nThe man had been living at a guest house connected to the Internet cafe .\tDT NN VBD VBN VBG IN DT NN NN VBN TO DT NNP NN .\nThe other two men killed were Afghans , and authorities in Kabul suspect one of them was a suicide bomber .\tDT JJ CD NNS VBN VBD NNS , CC NNS IN NNP VBP CD IN PRP VBD DT NN NN .\nAt least five other people were wounded .\tIN JJS CD JJ NNS VBD VBN .\nThe blast destroyed the cafe , which was frequented by foreigners .\tDT NN VBD DT NN , WDT VBD VBN IN NNS .\nThere has been no claim of responsibility .\tEX VBZ VBN DT NN IN NN .\nIsrael has re-opened a key Gaza border crossing , ahead of an Israeli-Palestinian summit set for Tuesday in Egypt .\tNNP VBZ VBN DT JJ NNP NN VBG , RB IN DT JJ NN VBN IN NNP IN NNP .\nThe Israeli army closed the Karni crossing , the main crossing for goods entering and leaving the Gaza Strip , after a militant attack there killed six Israeli civilians last month .\tDT JJ NN VBD DT NNP VBG , DT JJ VBG IN NNS VBG CC VBG DT NNP NNP , IN DT JJ NN RB VBD CD JJ NNS JJ NN .\nHundreds of Palestinian trucks carrying produce and fresh-cut flowers were lined up at the crossing Monday awaiting the opening .\tNNS IN JJ NNS VBG NN CC JJ NNS VBD VBN RP IN DT VBG NNP VBG DT NN .\nLast week , Israel re-opened the Gaza-Egypt border crossing at Rafah , which was closed after another militant attack killed five Israeli soldiers in December .\tJJ NN , NNP VBD DT JJ NN VBG IN NNP , WDT VBD VBN IN DT JJ NN VBD CD JJ NNS IN NNP .\nMeanwhile , Israeli and Palestinian officials met Monday to make final arrangements for the summit in the Egyptian resort of Sharm al-Sheikh .\tRB , JJ CC JJ NNS VBD NNP TO VB JJ NNS IN DT NN IN DT JJ NN IN NNP NNP .\nEgyptian host President Hosni Mubarak and Jordan 's King Abdullah are also set to attend .\tJJ NN NNP NNP NNP CC NNP POS NNP NNP VBP RB VBN TO VB .\nIsraeli Foreign Minister Avigdor Lieberman says his country has no plans to bomb Iran .\tJJ NNP NNP NNP NNP VBZ PRP$ NN VBZ DT NNS TO VB NNP .\nLieberman told reporters in Moscow Wednesday that Israel does not ' need ' to carry out attacks on Iran and that Israel is a strong country and can defend itself .\tNNP VBD NNS IN NNP NNP IN NNP VBZ RB `` VB `` TO VB RP NNS IN NNP CC IN NNP VBZ DT JJ NN CC MD VB PRP .\nThe Israeli foreign minister added that Iran is not just a problem for Israel but the entire Middle East and that Israel will not be the one to solve the problem .\tDT JJ JJ NN VBD IN NNP VBZ RB RB DT NN IN NNP CC DT JJ NNP NNP CC IN NNP MD RB VB DT CD TO VB DT NN .\nLieberman made the comments during a visit to Russia .\tNNP VBD DT NNS IN DT NN TO NNP .\nIsrael has repeatedly described Iran 's nuclear program as a threat to its existence .\tNNP VBZ RB VBN NNP POS JJ NN IN DT NN TO PRP$ NN .\nIsraeli Prime Minister Benjamin Netanyahu raised concerns about Iran during his recent talks with U.S. officials in Washington .\tJJ NNP NNP NNP NNP VBD NNS IN NNP IN PRP$ JJ NNS IN NNP NNS IN NNP .\nTens of thousands of anti-abortion activists are set to take part in Monday 's annual ' March on Washington ' to mark the 34th anniversary of a Supreme Court decision that legalized abortion .\tNNS IN NNS IN JJ NNS VBP VBN TO VB NN IN NNP POS JJ `` NNP IN NNP `` TO VB DT JJ NN IN DT NNP NNP NN WDT VBD NN .\nSimilar marches and rallies are also taking place in cities and towns across the United States .\tJJ NNS CC NNS VBP RB VBG NN IN NNS CC NNS IN DT NNP NNPS .\nIn Washington , D.C. , abortion opponents will march past the U.S. Capitol and end outside the Supreme Court .\tIN NNP , NNP , NN NNS MD VB IN DT NNP NN CC NN IN DT NNP NNP .\nPresident Bush is scheduled to address the demonstrators by telephone .\tNNP NNP VBZ VBN TO VB DT NNS IN NN .\nSenator Sam Brownback , a socially-conservative Republican who announced Saturday he is running for president in 2008 , is participating in the March for Life events .\tNNP NNP NNP , DT JJ NNP WP VBD NNP PRP VBZ VBG IN NN IN CD , VBZ VBG IN DT NNP IN NNP NNS .\nActivists on the other side of the issue who support abortion rights will also be holding smaller rallies in Washington and other cities .\tNNS IN DT JJ NN IN DT NN WP VBP NN NNS MD RB VB VBG JJR NNS IN NNP CC JJ NNS .\nThe ' Roe versus Wade ' Supreme Court decision legalizing abortion was handed down on January 22 , 1973 .\tDT `` NNP IN NNP `` NNP NNP NN VBG NN VBD VBN RP IN NNP CD , CD .\nIraqi authorities say a roadside bomb has killed a police general and his driver near the northern city of Kirkuk .\tJJ NNS VBP DT NN NN VBZ VBN DT NN NN CC PRP$ NN IN DT JJ NN IN NNP .\nThe victim was Brigadier General Hatim Khalaf , head of the Kirkuk police operations room .\tDT NN VBD NNP NNP NNP NNP , NN IN DT NNP NN NNS NN .\nAlso in northern Iraq , Kurdish officials say search teams have located a small plane that crashed three days ago near Sulaimaniyah .\tRB IN JJ NNP , NNP NNS VBP NN NNS VBP VBN DT JJ NN WDT VBD CD NNS RB IN NNP .\nThey say all six people on board , including at least three German businessmen , were killed .\tPRP VBP DT CD NNS IN NN , VBG IN JJS CD JJ NNS , VBD VBN .\nThe developments come a day after roadside bomb attacks in Baghdad killed an American soldier and three Iraqi policemen .\tDT NNS VBP DT NN IN NN NN NNS IN NNP VBD DT JJ NN CC CD JJ NNS .\nSeparately , the U.S. military said Saturday it had freed more than 400 male Iraqi prisoners after an Iraqi-led review board recommended their release .\tRB , DT NNP NN VBD NNP PRP VBD VBN RBR IN CD JJ JJ NNS IN DT JJ NN NN VBD PRP$ NN .\nRussia and Iran have signed a landmark agreement for Moscow to supply Tehran with fuel for its first nuclear reactor .\tNNP CC NNP VBP VBN DT JJ NN IN NNP TO VB NNP IN NN IN PRP$ JJ JJ NN .\nThe signing ceremony Sunday at Iran 's Bushehr nuclear power plant , which Russia helped build , had been delayed 24 hours as talks continued .\tDT NN NN NNP IN NNP POS NNP JJ NN NN , WDT NNP VBD VB , VBD VBN VBN CD NNS IN NNS VBD .\nEuropean and U.S. officials have expressed concern that spent fuel from the reactor could be enriched and used to create nuclear weapons .\tJJ CC NNP NNS VBP VBN NN WDT JJ NN IN DT NN MD VB VBN CC VBN TO VB JJ NNS .\nDiplomats say there is evidence that Iran has known since the late 1980s how to enrich uranium .\tNNS VBP EX VBZ NN IN NNP VBZ VBN IN DT JJ NNS WRB TO VB NN .\nThey say Iran obtained the information from a black market network operated by Pakistan 's Abdul Qadeer Khan .\tPRP VBP NNP VBD DT NN IN DT JJ NN NN VBN IN NNP POS NNP NNP NNP .\nIran says the purpose of its nuclear program is the generation of electricity , not the development of nuclear weapons .\tNNP VBZ DT NN IN PRP$ JJ NN VBZ DT NN IN NN , RB DT NN IN JJ NNS .\nThe new agreement calls for all spent nuclear fuel to be returned to Russia to ease concerns that Iran might reprocess it for use in nuclear weapons .\tDT JJ NN VBZ IN DT JJ JJ NN TO VB VBN TO NNP TO VB NNS IN NNP MD VB PRP IN NN IN JJ NNS .\nA Scottish court has denied bail to a Libyan man with terminal cancer who was convicted of the 1988 bombing of a U.S. airliner that killed 270 people .\tDT JJ NN VBZ VBN NN TO DT JJ NN IN NN NN WP VBD VBN IN DT CD NN IN DT NNP NN WDT VBD CD NNS .\nThe former Libyan intelligence agent , Abdel Basset al-Megrahi , is currently serving a life sentence for being part of a group that planted a bomb on a Pan Am 747 that crashed over the Scottish town of Lockerbie .\tDT JJ JJ NN NN , NNP NNP NNP , VBZ RB VBG DT NN NN IN VBG NN IN DT NN WDT VBD DT NN IN DT NNP NNP CD WDT VBD IN DT JJ NN IN NNP .\nHis lawyers argued he does not have long to live and deserves to be treated with compassion .\tPRP$ NNS VBD PRP VBZ RB VB RB TO VB CC VBZ TO VB VBN IN NN .\nThe court turned down the man 's application for release saying he stands convicted of a serious atrocity .\tDT NN VBD RP DT NN POS NN IN NN VBG PRP VBZ VBN IN DT JJ NN .\nIt added that his condition is stable and he is receiving full medical care .\tPRP VBD IN PRP$ NN VBZ JJ CC PRP VBZ VBG JJ JJ NN .\nAn Iraqi soldier mans a checkpoint in the Saydiyah neighbourhood of south-west Baghdad in Iraq\tDT JJ NN VBZ DT NN IN DT NNP NN IN JJ NNP IN NNP\nSuicide bombings and ambushes by insurgents killed at least 21 people in Iraq Sunday as Iraqi security forces began a big security sweep in Baghdad .\tNN NNS CC NNS IN NNS VBN IN JJS CD NNS IN NNP NNP IN JJ NN NNS VBD DT JJ NN NN IN NNP .\nThe operation is aimed at stopping insurgents who have killed more than 600 people in the last month .\tDT NN VBZ VBN IN VBG NNS WP VBP VBN JJR IN CD NNS IN DT JJ NN .\nIraqi soldiers and police began setting up checkpoints on the southern and northern outskirts of the city early Sunday and later began street-to-street sweeps .\tJJ NNS CC NNS VBD VBG RP NNS IN DT JJ CC JJ NNS IN DT NN JJ NNP CC RB VBD JJ NNS .\nA suicide car bomber killed nine Iraqi soldiers at one of the checkpoints about 20 kilometers south of Baghdad .\tDT NN NN NN VBD CD JJ NNS IN CD IN DT NNS IN CD NNS RB IN NNP .\nOther attacks killed at least 12 Iraqi police or civilians in and around the capital .\tJJ NNS VBD IN JJS CD JJ NNS CC NNS IN CC IN DT NN .\nOil prices in the United States dipped Tuesday after Saudi Arabia 's oil minister said there is no need for further OPEC production cuts .\tNN NNS IN DT NNP NNPS VBD NNP IN NNP NNP POS NN NN VBD EX VBZ DT NN IN JJ NNP NN NNS .\nAli al-Naimi said in New Delhi that recent OPEC cuts are working well , and a meeting to discuss further cutbacks is unnecessary .\tNNP NNP VBD IN NNP NNP IN JJ NNP NNS VBP VBG RB , CC DT NN TO VB JJ NNS VBZ JJ .\nOil prices fell below $ 52 a barrel , nearing a 19-month low .\tNN NNS VBD IN $ CD DT NN , VBG DT JJ NN .\nPrices have fallen steadily since the beginning of the year , as mild weather in the western hemisphere has lightened demand .\tNNS VBP VBN RB IN DT NN IN DT NN , IN JJ NN IN DT JJ NN VBZ VBN NN .\nThe fall in prices comes despite the international oil cartel 's November production cut of one million barrels per day .\tDT NN IN NNS VBZ IN DT JJ NN NN POS NNP NN NN IN CD CD NNS IN NN .\nEnglish football star David Beckham will be sidelined for around four weeks after suffering a right knee injury playing for Spanish side Real Madrid on Sunday .\tJJ NN NN NNP NNP MD VB VBN IN IN CD NNS IN VBG DT JJ NN NN VBG IN JJ NN NNP NNP IN NNP .\nThe team announced Monday that the 31-year-old Beckham strained the internal lateral ligament in his right knee when he collided with advertising signs behind the goal after attempting a crossing pass into the goal area .\tDT NN VBD NNP IN DT JJ NNP VBD DT JJ NN NN IN PRP$ JJ NN WRB PRP VBD IN NN NNS IN DT NN IN VBG DT VBG NN IN DT NN NN .\nHe continued playing after the collision , but was in obvious pain and limped off the field in the 69th minute .\tPRP VBD VBG IN DT NN , CC VBD IN JJ NN CC VBD RP DT NN IN DT JJ NN .\nOn January 11 , Beckham signed a five-year , $ 250 million contract to join Major League Soccer 's Los Angeles Galaxy after his contract with Real Madrid expires June 30 .\tIN NNP CD , NNP VBD DT JJ , $ CD CD NN TO VB NNP NNP NNP POS NNP NNP NNP IN PRP$ NN IN NNP NNP VBZ NNP CD .\nThe MLS has not commented on the injury .\tDT NNP VBZ RB VBN IN DT NN .\nPresident Bush is set to address the country later Wednesday on the national disaster caused by Hurricane Katrina .\tNNP NNP VBZ VBN TO VB DT NN RB NNP IN DT JJ NN VBN IN NNP NNP .\nMr. Bush will speak from the White House Rose Garden at 2100 UTC ( 5 pm EDT ) .\tNNP NNP MD VB IN DT NNP NNP NNP NNP IN CD NNP LRB CD NN NNP RRB .\nDuring the flight from Mr. Bush 's ranch in Texas , the president 's plane , Air Force One , flew over the hurricane-damaged areas along the U.S. Gulf Coast .\tIN DT NN IN NNP NNP POS NN IN NNP , DT NN POS NN , NNP NNP CD , VBD IN DT JJ NNS IN DT NNP NNP NNP .\nWhile passing over the flooded city of New Orleans , White House spokesman Scott McClellan quoted Mr. Bush as saying ' It 's devastating .\tIN VBG RP DT VBN NN IN NNP NNP , NNP NNP NN NNP NNP VBD NNP NNP IN VBG `` PRP VBZ JJ .\nIt 's got to be doubly devastating on the ground . '\tPRP VBZ VBN TO VB RB VBG IN DT NN . ``\nWhite House spokesman Scott McClellan said the president will likely visit the affected region later this week .\tNNP NNP NN NNP NNP VBD DT NN MD RB VB DT JJ NN RB DT NN .\nThe spokesman said Mr. Bush held a video conference with top advisers before leaving his Texas ranch .\tDT NN VBD NNP NNP VBD DT NN NN IN JJ NNS IN VBG PRP$ NNP NN .\nThe discussion focused on saving lives and developing a long-term plan for dealing with displaced residents .\tDT NN VBD IN VBG NNS CC VBG DT JJ NN IN VBG IN JJ NNS .\nLebanon 's parliament has postponed Monday 's scheduled presidential election , the latest in a series of delays during the country 's political crisis .\tNNP POS NN VBZ VBN NNP POS JJ JJ NN , DT JJS IN DT NN IN NNS IN DT NN POS JJ NN .\nParliament Speaker Nabih Berri announced Saturday that the parliamentary voting session will be moved to February 26 .\tNN NN NNP NNP VBD NNP IN DT JJ NN NN MD VB VBN TO NNP CD .\nLebanon has been without a head of state since late November when President Emile Lahoud 's term expired .\tNNP VBZ VBN IN DT NN IN NN IN JJ NNP WRB NNP NNP NNP POS NN VBD .\nThe leadership vacuum is due to a standoff between the pro-Western governing coalition leader Saad al-Hariri and Syrian-backed opposition leader Michael Aoun .\tDT NN NN VBZ JJ TO DT NN IN DT JJ NN NN NN NNP NNP CC JJ NN NN NNP NNP .\nThe two sides have agreed on an Arab League plan calling for the election of army General Michel Sulieman as president .\tDT CD NNS VBP VBN IN DT JJ NNP NN VBG IN DT NN IN NN NNP NNP NNP IN NN .\nBut they differ on how to form a new national unity government .\tCC PRP VBP IN WRB TO VB DT JJ JJ NN NN .\nThe opposition wants a third of the seats in the new Cabinet so it can have veto power .\tDT NN VBZ DT NN IN DT NNS IN DT JJ NNP IN PRP MD VB NN NN .\nVera Dushevina of Russia has defeated Ivana Lisjak of Croatia , 07-Jun , 6-0 in a first-round match at the Gaz de France indoor women 's tennis tournament in Paris .\tNNP NNP IN NNP VBZ VBN NNP NNP IN NNP , CD , CD IN DT JJ NN IN DT NNP NNP NNP JJ NNS POS NN NN IN NNP .\nDushevina , ranked 46th in the world , next meets Australian Open champion Amelie Mauresmo of France in the second round Wednesday .\tNNP , VBD CD IN DT NN , JJ VBZ JJ NNP NN NNP NNP IN NNP IN DT JJ NN NNP .\nThe top-seeded Mauresmo has a first-round bye .\tDT JJ NNP VBZ DT JJ NN .\nAlso with byes into the second round are second-seeded Mary Pierce of France , third-seeded Russian Nadia Petrova and fourth-seeded Patty Schnyder of Switzerland .\tRB IN NNS IN DT JJ NN VBP JJ NNP NNP IN NNP , JJ JJ NNP NNP CC JJ NNP NNP IN NNP .\nIn other first round play , Virginie Razzano of France beat Kveta Peschke of the Czech Republic , 06-Jan , 06-Jan .\tIN JJ JJ NN NN , NNP NNP IN NNP VBD NNP NNP IN DT JJ NNP , CD , CD .\nRazzano next plays defending champion Dinara Safina of Russia .\tNNP JJ NNS VBG JJ NNP NNP IN NNP .\nTsvetana Pironkova of Bulgaria needed three sets to beat Lucie Safarova of the Czech Republic , 06-Feb , 02-Jun , 6-0 .\tNNP NNP IN NNP VBD CD NNS TO VB NNP NNP IN DT JJ NNP , CD , CD , CD .\nThe Organization of Petroleum Exporting Countries , OPEC , has lowered its 2006 estimate for world crude oil demand .\tDT NNP IN NNP NNP NNPS , NNP , VBZ VBN PRP$ CD NN IN NN JJ NN NN .\nOPEC 's monthly oil report for August now anticipates daily demand for oil will grow by 1.3 million barrels , slightly less than last month 's forecast .\tNNP POS JJ NN NN IN NNP RB VBZ JJ NN IN NN MD VB IN CD CD NNS , RB JJR IN JJ NN POS NN .\nThe 11-nation oil cartel produces more than one third of the world 's crude oil supply .\tDT JJ NN NN VBZ JJR IN CD NN IN DT NN POS JJ NN NN .\nAnalysts say OPEC 's downward adjustment stems , in part , from a slowing U.S. economy which is expected to have an important impact on the crude oil market .\tNNS VBP NNP POS JJ NN VBZ , IN NN , IN DT VBG NNP NN WDT VBZ VBN TO VB DT JJ NN IN DT JJ NN NN .\nU.S. crude oil prices fell by 20 cents Wednesday to about $ 73 per barrel .\tNNP JJ NN NNS VBD IN CD NNS NNP TO RB $ CD IN NN .\nThe head of India 's ruling Congress Party , Sonia Gandhi , has begun her bid to return to parliament in her constituency in northern India , just days after she quit her seat in the legislature .\tDT NN IN NNP POS VBG NNP NNP , NNP NNP , VBZ VBN PRP$ NN TO VB TO NN IN PRP$ NN IN JJ NNP , RB NNS IN PRP VBD PRP$ NN IN DT NN .\nGandhi stepped down as a member of the lower house and head of the government 's National Advisory Council last week , following charges that she violated the constitution by holding two paid positions .\tNNP VBD RP IN DT NN IN DT JJR NN CC NN IN DT NN POS NNP NNP NNP JJ NN , VBG NNS IN PRP VBD DT NN IN VBG CD VBN NNS .\nGandhi told thousands of cheering supporters in the city of Rae Bareli she has to give a fitting response to people who brought the charges against her , and that fitting reply will be her re-election .\tNNP VBD NNS IN VBG NNS IN DT NN IN NNP NNP PRP VBZ TO VB DT JJ NN TO NNS WP VBD DT NNS IN PRP , CC IN JJ NN MD VB PRP$ NN .\nBy-election dates are yet to be announced , but she is expected to easily win back the seat .\tNN NNS VBP RB TO VB VBN , CC PRP VBZ VBN TO RB VB RP DT NN .\nThe Italian-born Gandhi is the widow of former Prime Minister Rajiv Gandhi , whose mother and grandfather also were prime ministers .\tDT JJ NNP VBZ DT NN IN JJ NNP NNP NNP NNP , WP$ NN CC NN RB VBD JJ NNS .\nChina 's president is making a rare visit to Pyongyang for talks with North Korean leader Kim Jong-il .\tNNP POS NN VBZ VBG DT JJ NN TO NNP IN NNS IN JJ JJ NN NNP NNP .\nState-controlled media from both nations say Mr. Kim greeted Chinese President Hu Jintao on the airport tarmac Friday , as he arrived on a three-day visit .\tJJ NNS IN DT NNS VBP NNP NNP VBD JJ NNP NNP NNP IN DT NN NN NNP , IN PRP VBD IN DT JJ NN .\nOn arrival , Mr. Hu delivered a statement saying ' the China-North Korea friendship is conducive to safeguarding peace and stability and promoting development and prosperity in the region ' .\tIN NN , NNP NNP VBD DT NN VBG `` DT JJ NNP NN VBZ JJ TO VBG NN CC NN CC VBG NN CC NN IN DT NN `` .\nMr. Hu 's trip precedes the next round of six-nation talks on North Korea 's nuclear ambitions , set to take place in Beijing early next month .\tNNP NNP POS NN VBZ DT JJ NN IN JJ NNS IN NNP NNP POS JJ NNS , VBN TO VB NN IN NNP RB JJ NN .\nIt is unclear if the nuclear issue is on the agenda during Mr. Hu 's current visit .\tPRP VBZ JJ IN DT JJ NN VBZ IN DT NN IN NNP NNP POS JJ NN .\nDuring last month 's six-nation talks , North Korea agreed to abandon its nuclear weapons program .\tIN JJ NN POS NN NNS , NNP NNP VBD TO VB PRP$ JJ NNS NN .\nBut Pyongyang later said it first wants light-water nuclear reactors for civilian energy production .\tCC NNP RB VBD PRP RB VBZ JJ JJ NNS IN JJ NN NN .\nThe European Union is condemning Ethiopia 's decision to expel two EU diplomats .\tDT NNP NNP VBZ VBG NNP POS NN TO VB CD NNP NNS .\nEU Development Commissioner Louis Michel told reporters in Brussels Friday that no reason has been given for the expulsion .\tNNP NNP NNP NNP NNP VBD NNS IN NNP NNP IN DT NN VBZ VBN VBN IN DT NN .\nHe called the situation ' unacceptable ' and said he has asked the Ethiopian ambassador to provide an explanation .\tPRP VBD DT NN `` JJ `` CC VBD PRP VBZ VBN DT JJ NN TO VB DT NN .\nIt is not clear if the diplomats have already been deported .\tPRP VBZ RB JJ IN DT NNS VBP RB VBN VBN .\nEthiopian state-run television Thursday reported that police detained two foreign diplomats in the south , near the Kenyan border .\tJJ JJ NN NNP VBD IN NNS VBD CD JJ NNS IN DT NN , IN DT JJ NN .\nThe report said the diplomats are accused of trying to smuggle alleged Ethiopian criminals into Kenya .\tDT NN VBD DT NNS VBP VBN IN VBG TO VB JJ JJ NNS IN NNP .\nThe European Union is one of Ethiopia 's largest aid donors .\tDT NNP NNP VBZ CD IN NNP POS JJS NN NNS .\nHowever , EU officials have been critical of the government 's crackdown of opposition leaders and journalists .\tRB , NNP NNS VBP VBN JJ IN DT NN POS NN IN NN NNS CC NNS .\nCancun , Mexico , is hosting both international leaders and vacationing college students this week , as the city slowly recovers from a brutal pounding by Hurricane Wilma .\tNNP , NNP , VBZ VBG DT JJ NNS CC VBG NN NNS DT NN , IN DT NN RB VBZ IN DT JJ NN IN NNP NNP .\nCity officials say only about half of Cancun 's 27,000 hotel rooms are open this year , after Wilma battered the resort city last October .\tNNP NNS VBP RB IN NN IN NNP POS CD NN NNS VBP JJ DT NN , IN NNP VBD DT NN NN JJ NNP .\nWinds reached well past 200 kilometers per hour .\tNNS VBD RB JJ CD NNS IN NN .\nHotel owners say the recovery is going slowly , as they try to meet demands to build stronger structures that can withstand another such storm .\tNN NNS VBP DT NN VBZ VBG RB , IN PRP VBP TO VB NNS TO VB JJR NNS WDT MD VB DT JJ NN .\nMeanwhile , the city has refurbished many beaches , re-planted vegetation , and repaired bike paths and walkways .\tRB , DT NN VBZ VBN JJ NNS , JJ NN , CC VBD NN NNS CC NNS .\nLocal residents say the student crowds are smaller this year , but still plenty have come , determined to carry on Cancun 's tradition of spring-break revelry .\tJJ NNS VBP DT NN NNS VBP JJR DT NN , CC RB RB VBP VBN , VBN TO VB IN NNP POS NN IN JJ NN .\nThe fate of at least 8,000 foreign tourists vacationing in Southeast Asia remains unknown , more than a week after a tsunami pounded coastlines and beach resorts in the region .\tDT NN IN IN JJS CD JJ NNS VBG IN NNP NNP VBZ JJ , JJR IN DT NN IN DT NN VBD NNS CC NN NNS IN DT NN .\nAt least 350 deaths have been confirmed as foreigners .\tIN JJS CD NNS VBP VBN VBN IN NNS .\nBut officials say that number will likely rise as the identity of victims is sorted out .\tCC NNS VBP IN NN MD RB VB IN DT NN IN NNS VBZ VBN RP .\nIn Thailand alone , officials say nearly half of the 5,000 reported deaths were foreign visitors .\tIN NNP RB , NNS VBP RB NN IN DT CD VBD NNS VBD JJ NNS .\nSouthern Asia was at the height of its tourist season when the tsunami hit .\tNNP NNP VBD IN DT NN IN PRP$ NN NN WRB DT NN VBD .\nSweden and the United States are reporting the most missing citizens .\tNNP CC DT NNP NNPS VBP VBG DT RBS JJ NNS .\nU.S. Secretary of State Colin Powell says as many as 5,000 Americans are unaccounted for .\tNNP NNP IN NNP NNP NNP VBZ RB JJ IN CD NNS VBP JJ IN .\nHe adds there is a ' distinct possibility ' that the U.S. death toll will increase from the 15 confirmed so far .\tPRP VBZ EX VBZ DT `` JJ NN `` IN DT NNP NN NN MD VB IN DT CD VBN RB RB .\nSwedish officials say nearly 3,000 are still missing .\tJJ NNS VBP RB CD VBP RB VBG .\nA relief ship has arrived in northern Sri Lanka to deliver supplies for people cut off by fighting between Tamil Tiger rebels and government forces .\tDT NN NN VBZ VBN IN JJ NNP NNP TO VB NNS IN NNS VBN RP IN VBG IN NNP NNP NNS CC NN NNS .\nThe ship was filled with 1,500 tons of food , medicine and other supplies for civilians in the Jaffna peninsula .\tDT NN VBD VBN IN CD NNS IN NN , NN CC JJ NNS IN NNS IN DT NNP NN .\nInternational Committee of the Red Cross officials said both sides to the conflict have promised a safe passage for the ship .\tNNP NNP IN DT NNP NNP NNS VBD DT NNS TO DT NN VBP VBN DT JJ NN IN DT NN .\nA passenger ferry also was due to arrive in the north Friday to evacuate 150 foreigners caught in the fighting for nearly two weeks .\tDT NN NN RB VBD JJ TO VB IN DT NN NNP TO VB CD NNS VBN IN DT NN IN RB CD NNS .\nMeanwhile , Sri Lanka 's military said five rebels were killed late Thursday in a clash with troops in the northeastern Batticaloa area .\tRB , NNP NNP POS NN VBD CD NNS VBD VBN JJ NNP IN DT NN IN NNS IN DT JJ NNP NN .\nThe United Nations says 1,70,000 people have fled their homes to escape the violence .\tDT NNP NNP VBZ CD NNS VBP VBN PRP$ NNS TO VB DT NN .\nThe Internet site of a South Korean stem cell center overloaded Tuesday as it began accepting applications from people with Parkinson 's disease and spinal cord injuries who want to participate in research .\tDT NNP NN IN DT JJ JJ NN NN NN VBD NNP IN PRP VBD VBG NNS IN NNS IN NNP POS NN CC JJ NN NNS WP VBP TO VB IN NN .\nAn official at the World Stem Cell Hub said the Web site slowed to a crawl , because there were too many access attempts for about three hours .\tDT NN IN DT NNP NNP NNP NNP VBD DT NNP NN VBD TO DT NN , IN EX VBD RB JJ NN NNS IN IN CD NNS .\nThe official said normal operation resumed later .\tDT NN VBD JJ NN VBD RB .\nHe said computer experts were on standby in case of sabotage by those who oppose stem cell research and cloning technology .\tPRP VBD NN NNS VBD IN NN IN NN IN NN IN DT WP VBP NN NN NN CC VBG NN .\nThe South Korean stem cell bank opened October 19 with the aim of providing scientists around the world with embryonic stem cells .\tDT JJ JJ NN NN NN VBD NNP CD IN DT NN IN VBG NNS IN DT NN IN JJ NN NNS .\nThese cells are seen as a potential source of replacement tissue for people with a variety of ailments .\tDT NNS VBP VBN IN DT JJ NN IN NN NN IN NNS IN DT NN IN NNS .\nForensics experts in Indonesia now say that three of four unidentifiied victims of Saturday 's bomb blasts in Bali were Australian nationals .\tNNS NNS IN NNP RB VBP IN CD IN CD JJ NNS IN NNP POS NN NNS IN NNP VBD JJ NNS .\nA total of four Australians are now confirmed to have died in the apparent suicide bombings that killed 19 people in addition to the three bombers .\tDT NN IN CD NNS VBP RB VBN TO VB VBN IN DT JJ NN NNS WDT VBD CD NNS IN NN TO DT CD NNS .\nOne Japanese national was also killed in the attacks .\tCD JJ NN VBD RB VBN IN DT NNS .\nThe remaining victims were Indonesian .\tDT VBG NNS VBD JJ .\nOne victim remains unidentified .\tCD NN VBZ JJ .\nWednesday , Australian officials said Foreign Minister Alexander Downer would travel to Indonesia soon to lobby the Indonesian government to ban the al-Qaida linked Jemaah Islamiyah .\tNNP , JJ NNS VBD NNP NNP NNP NNP MD VB TO NNP RB TO VB DT JJ NN TO VB DT NNP VBN NNP NNP .\nThe group is believed to be behind Saturday 's bombings , as well as the 2002 Bali bombings which killed 202 people , including 88 Australians .\tDT NN VBZ VBN TO VB IN NNP POS NNS , RB RB IN DT CD NNP NNS WDT VBD CD NNS , VBG CD NNS .\nAuthorities have questioned 94 people in connection with the bombings .\tNNS VBP VBN CD NNS IN NN IN DT NNS .\nHowever , no arrests have been made , despite a massive manhunt .\tRB , DT NNS VBP VBN VBN , IN DT JJ NN .\nBritish police have charged five men in an alleged terrorist plot to kidnap and behead a Muslim British soldier .\tJJ NNS VBP VBN CD NNS IN DT JJ JJ NN TO VB CC VB DT NNP JJ NN .\nProsecutors said Friday one suspect is charged with intention to kidnap and kill a member of the armed forces .\tNNS VBD NNP CD NN VBZ VBN IN NN TO VB CC VB DT NN IN DT JJ NNS .\nThe other four suspects also face terrorism charges , including helping to equip and fund the alleged kidnapping plot .\tDT JJ CD NNS RB VBP NN NNS , VBG VBG TO VB CC VB DT JJ NN NN .\nPolice arrested a total of nine men last week in Birmingham in what British media have described as a plan to kidnap a British Muslim soldier who had served in Afghanistan , torture and behead him , then post a video of the gruesome events on the Internet .\tNNS VBD DT NN IN CD NNS JJ NN IN NNP IN WP JJ NNS VBP VBN IN DT NN TO VB DT JJ NNP NN WP VBD VBN IN NNP , VB CC VB PRP , RB VB DT NN IN DT JJ NNS IN DT NN .\nIraqi militants have used the same tactic .\tJJ NNS VBP VBN DT JJ NN .\nThree of the nine suspects have been released , and one other remains in custody and has not been charged .\tCD IN DT CD NNS VBP VBN VBN , CC CD JJ NNS IN NN CC VBZ RB VBN VBN .\nAmerica has more than 1,000 art museums , 35 aviation museums , and even a museum dedicated to rock 'n roll music .\tNNP VBZ JJR IN CD NN NNS , CD NN NNS , CC RB DT NN VBN TO NN CC NN NN .\nNow a new kind of museum is opening its doors in downtown Manhattan .\tRB DT JJ NN IN NN VBZ VBG PRP$ NNS IN NN NNP .\nIts location near the former World Trade Center site is part of an effort to revitalize the neighborhood left economically depressed after the September 11 , 2001 terrorist attacks on the U.S.\tPRP$ NN IN DT JJ NNP NNP NNP NN VBZ NN IN DT NN TO VB DT NN VBN RB VBN IN DT NNP CD , CD JJ NNS IN DT NNP\nVOA 's Nathan King reports .\tNNP POS NNP NNP VBZ .\nPolice in Mexico say a group of armed men raided a drug rehabilitation facility and opened fire , killing 19 people and wounding several others .\tNNS IN NNP VBP DT NN IN JJ NNS VBD DT NN NN NN CC VBD NN , VBG CD NNS CC VBG JJ NNS .\nOfficials say the rampage took place late Thursday at the Faith and Life center in the northern city of Chihuahua .\tNNS VBP DT NN VBD NN JJ NNP IN DT NNP CC NNP NN IN DT JJ NN IN NNP .\nThe French news agency quotes a police official on Friday as saying 30 gunmen were involved in the attack .\tDT JJ NN NN VBZ DT NN NN IN NNP IN VBG CD NNS VBD VBN IN DT NN .\nThe report says the assailants fired large-caliber weapons at patients and employees before fleeing .\tDT NN VBZ DT NNS VBD JJ NNS IN NNS CC NNS IN VBG .\nThe motive for the attack is unclear .\tDT NN IN DT NN VBZ JJ .\nMexico 's Chihuahua state , where the city of Chihuahua is located , is home to major drug cartels , and drug-related violence is frequent .\tNNP POS NNP NN , WRB DT NN IN NNP VBZ VBN , VBZ NN TO JJ NN NNS , CC JJ NN VBZ JJ .\nKenya 's National Commission on Human Rights says both government and opposition leaders planned acts of violence following the country 's disputed presidential election .\tNNP POS NNP NNP IN NNP NNP VBZ DT NN CC NN NNS VBD NNS IN NN VBG DT NN POS JJ JJ NN .\nVice Chairperson Florence Jaoko says the commission 's investigation showed the violence was not spontaneous .\tNNP NNP NNP NNP VBZ DT NN POS NN VBD DT NN VBD RB JJ .\nThe commission says it has collected nearly 1,000 statements recounting more than 4,500 episodes of violence .\tDT NN VBZ PRP VBZ VBN RB CD NNS VBG JJR IN CD NNS IN NN .\nEarlier this month , US-based Human Rights Watch accused Kenyan politicians , local leaders , and businessmen of organizing attacks on rival ethnic groups .\tRBR DT NN , JJ NNP NNP NNP VBD JJ NNS , JJ NNS , CC NNS IN VBG NNS IN JJ JJ NNS .\nIt also accused Kenyan police of using excessive force in putting down protests - a charge the police rejected .\tPRP RB VBD JJ NNS IN VBG JJ NN IN VBG RP NNS IN DT NN DT NN VBD .\nMore than 1,000 people were killed in riots and ethnic violence following the December 27 election .\tJJR IN CD NNS VBD VBN IN NNS CC JJ NN VBG DT NNP CD NN .\nThe opposition accused President Mwai Kibaki of rigging the vote to stay in power .\tDT NN VBD NNP NNP NNP IN VBG DT NN TO VB IN NN .\nFormer U.N. Secretary-General Kofi Annan helped broker a peace deal that included a power-sharing agreement between Mr. Kibaki and opposition leader Raila Odinga .\tJJ NNP NNP NNP NNP VBD NN DT NN NN WDT VBD DT JJ NN IN NNP NNP CC NN NN NNP NNP .\nThe United Nation 's agricultural organization has praised Burma for its quick response to its latest bird flu outbreaks .\tDT NNP NNP POS JJ NN VBZ VBN NNP IN PRP$ JJ NN TO PRP$ JJS NN NN NNS .\nThe U.N. Food and Agriculture Organization says Burma 's response to the outbreaks have been ' quick and effective . '\tDT NNP NNP CC NNP NNP VBZ NNP POS NN TO DT NNS VBP VBN `` JJ CC JJ . ``\nIt is providing $ 1.4 million in emergency assistance to help Burma fight the disease .\tPRP VBZ VBG $ CD CD IN NN NN TO VB NNP VB DT NN .\nBurma 's state-run newspaper The New Light of Myanmar reports that 66 pheasants and 60 quail died on two farms on the outskirts of the capital , Rangoon .\tNNP POS JJ NN DT NNP NNP IN NNP NNS IN CD NNS CC CD NN VBD IN CD NNS IN DT NNS IN DT NN , NNP .\nThe cases are under investigation to determine whether the birds had the deadly H5N1 strain .\tDT NNS VBP IN NN TO VB IN DT NNS VBD DT JJ NNP NN .\nSince last month four townships in Rangoon have reported bird flu cases .\tIN JJ NN CD NNS IN NNP VBP VBN NN NN NNS .\nMeanwhile , Indonesian Health Minister Siti Fadilah Supari says the country wants a legal guarantee that bird flu samples it sends to the World Health Organization will not be used for commercial gain .\tRB , JJ NNP NNP NNP NNP NNP VBZ DT NN VBZ DT JJ NN WDT VBD NN NNS PRP VBZ TO DT NNP NNP NNP MD RB VB VBN IN JJ NN .\nRebel fighters with the Shan State National Army in Burma have joined forces and merged with the Shan State Army , in an effort to reinvigorate their five-decade struggle for independence against Burma 's military government .\tNNP NNS IN DT NNP NNP NNP NNP IN NNP VBP VBN NNS CC VBD IN DT NNP NNP NNP , IN DT NN TO VB PRP$ JJ NN IN NN IN NNP POS JJ NN .\nThe merger effectively breaks a 10-year cease-fire between the Shan State National Army and Rangoon .\tDT NN RB VBZ DT JJ NN IN DT NNP NNP NNP NNP CC NNP .\nMilitary leaders from the rebel groups agreed to join forces at a ceremony Saturday in Doi Talaeng , a remote Shan State Army base along the Burma-Thailand border .\tJJ NNS IN DT NN NNS VBD TO VB NNS IN DT NN NNP IN NNP NNP , DT JJ NNP NNP NNP NN IN DT NNP NN .\nThey called on ethnic Shan people in Burma and overseas to stand united and fight the military .\tPRP VBD IN JJ JJ NNS IN NNP CC RB TO VB JJ CC VB DT NN .\nThere was no immediate public comment from the government in Rangoon .\tEX VBD DT JJ JJ NN IN DT NN IN NNP .\nU.S. Secretary of State Condoleezza Rice has criticized Israeli plans to expand a controversial settlement in the West Bank .\tNNP NN IN NN NNP NNP VBZ VBN JJ NNS TO VB DT JJ NN IN DT NNP NNP .\nIn an interview published Friday by a leading U.S. newspaper , Ms. Rice said Israeli plans to build additional homes in the Maaleh Adumin settlement could threaten peace with the Palestinians and is at odds with American policy .\tIN DT NN VBN NNP IN DT VBG NNP NN , NNP NNP VBD JJ NNS TO VB JJ NNS IN DT NNP NNP NN MD VB NN IN DT NNS CC VBZ IN NNS IN JJ NN .\nEuropean Union Foreign Policy chief Javier Solana also expressed concern about the expansion plan , which he said conflicts with commitments Israel made under the internationally brokered 2003 peace plan .\tNNP NNP NNP NNP NN NNP NNP RB VBD NN IN DT NN NN , WDT PRP VBD NNS IN NNS NNP VBD IN DT RB VBN CD NN NN .\nMeanwhile , more than 10,000 Hamas sympathizers gathered in the West Bank towns of Ramallah and Nablus to mark this week 's one-year anniversary of the death of Hamas founder Sheik Ahmed Yassin .\tRB , JJR IN CD NNP NNS VBD IN DT NNP NNP NNS IN NNP CC NNP TO VB DT NN POS JJ NN IN DT NN IN NNP NN NNP NNP NNP .\nThe 67-year-old quadriplegic was killed in an Israeli airstrike as he was leaving a mosque in Gaza City last March .\tDT JJ NN VBD VBN IN DT JJ NN IN PRP VBD VBG DT NN IN NNP NNP JJ NNP .\nThe U.S. space agency NASA has displayed the first images from a new satellite that studies the sun .\tDT NNP NN NN NNP VBZ VBN DT JJ NNS IN DT JJ NN WDT VBZ DT NN .\nResearchers released the images and short video clips Wednesday in Washington .\tNNS VBD DT NNS CC JJ NN NNS NNP IN NNP .\nScientists say they have already learned new things from the Solar Dynamics Observatory but they have yet to release any findings .\tNNS VBP PRP VBP RB VBN JJ NNS IN DT NNP NNP NNP CC PRP VBP RB TO VB DT NNS .\nThe satellite was launched February 11 .\tDT NN VBD VBN NNP CD .\nNASA says the new images show never-before-seen details of material streaming outward and away from sunspots .\tNNP VBZ DT JJ NNS VBP JJ NNS IN NN VBG NN CC RB IN NNS .\nThe new satellite is sending back images that have 10 times better resolution than high-definition television .\tDT JJ NN VBZ VBG RP NNS WDT VBP CD NNS JJR NN IN JJ NN .\nThe satellite will also examine the sun 's magnetic field and study the role the sun plays in Earth 's atmosphere and climate .\tDT NN MD RB VB DT NN POS JJ NN CC NN DT NN DT NN VBZ IN NNP POS NN CC NN .\nA lawyer for imprisoned Russian oil tycoon Mikhail Khodorkovsky says his client has begun a hunger strike in solidarity with a colleague being held in solitary confinement .\tDT NN IN JJ JJ NN NN NNP NNP VBZ PRP$ NN VBZ VBN DT NN NN IN NN IN DT NN VBG VBN IN JJ NN .\nLawyer Anton Drel says Khodorkovsky began his fast Friday after authorities placed his business partner , Platon Lebedev , in solitary confinement on charges of violating detention center rules and insulting the institution 's personnel .\tNNP NNP NNP VBZ NNP VBD PRP$ JJ NNP IN NNS VBD PRP$ NN NN , NNP NNP , IN JJ NN IN NNS IN VBG NN NN NNS CC VBG DT NN POS NNS .\nIn May , a Moscow court sentenced the two men to nine years in prison on fraud and tax evasion charges .\tIN NNP , DT NNP NN VBD DT CD NNS TO CD NNS IN NN IN NN CC NN NN NNS .\nCritics of Russian President Vladimir Putin have called the case against Khodorkovsky , the one-time largest shareholder in the Russia 's giant Yukos oil firm , retribution for his support of the political opposition .\tNNS IN JJ NNP NNP NNP VBP VBN DT NN IN NNP , DT JJ JJS NN IN DT NNP POS JJ NNP NN NN , NN IN PRP$ NN IN DT JJ NN .\nThe Kremlin has denied the charge .\tDT NNP VBZ VBN DT NN .\nUgandan President Yoweri Museveni has offered protection to the leader of the Lord 's Resistance Army , if the rebel chief agrees to ' peacefully end terrorism . '\tJJ NNP NNP NNP VBZ VBN NN TO DT NN IN DT NNP POS NNP NNP , IN DT NN NN VBZ TO `` RB NN NN . ``\nIn a statement , Mr. Museveni promised the safety of Joseph Kony if his rebel group stops fighting by the end of July .\tIN DT NN , NNP NNP VBD DT NN IN NNP NNP IN PRP$ NN NN VBZ VBG IN DT NN IN NNP .\nThe International Criminal Court has issued arrest warrants for Kony and other members of the LRA..\tDT NNP NNP NNP VBZ VBN NN NNS IN NNP CC JJ NNS IN DT NNP\nLRA rebels are accused of kidnapping thousands of children and using them as fighters or sex slaves .\tNNP NNS VBP VBN IN VBG NNS IN NNS CC VBG PRP IN NNS CC NN NNS .\nUgandan troops have been fighting the rebels for more than 20 years , forcing the rebels to set up bases in southern Sudan and eastern Democratic Republic of Congo .\tJJ NNS VBP VBN VBG DT NNS IN JJR IN CD NNS , VBG DT NNS TO VB RP NNS IN JJ JJ CC JJ JJ NNP IN NNP .\nSome 1.6 million Ugandans have abandoned their homes because of the fighting .\tDT CD CD NNS VBP VBN PRP$ NNS IN IN DT NN .\nThe United Nations has called the situation in northern Uganda a forgotten humanitarian crisis .\tDT NNP NNP VBZ VBN DT NN IN JJ NNP DT VBN JJ NN .\nPalestinian leader Mahmoud Abbas has accepted the resignation of his top West Bank security chief , a sign that Mr. Abbas is responding to complaints about growing chaos among his security forces .\tJJ NN NNP NNP VBZ VBN DT NN IN PRP$ JJ NNP NNP NN NN , DT NN IN NNP NNP VBZ VBG TO NNS IN VBG NN IN PRP$ NN NNS .\nIsmail Jaber submitted his resignation Friday after gunmen loyal to him fired on Mr. Abbas ' Ramallah compound Wednesday , when Mr. Abbas was there .\tNNP NNP VBD PRP$ NN NNP IN NNS JJ TO PRP VBD IN NNP NNP POS NNP NN NNP , WRB NNP NNP VBD RB .\nThe gunmen were defying a presidential request that they either disarm or join the security forces .\tDT NNS VBD VBG DT JJ NN IN PRP DT VBZ CC VB DT NN NNS .\nMr. Abbas was elected president in January after Yasser Arafat 's death .\tNNP NNP VBD VBN NN IN NNP IN NNP NNP POS NN .\nHe is struggling to reform his security forces .\tPRP VBZ VBG TO VB PRP$ NN NNS .\nThe Palestinian news agency , WAFA , reports that he has decided to enforce a month-old law to streamline existing security forces .\tDT JJ NN NN , NNP , VBZ IN PRP VBZ VBN TO VB DT JJ NN TO VB VBG NN NNS .\nThe United Nations says 5,00,000 people in Indonesia still lack permanent housing nearly one year after the devastating Indian Ocean tsunami .\tDT NNP NNP VBZ CD NNS IN NNP RB VBP JJ NN RB CD NN IN DT JJ NNP NNP NN .\nOfficials with the U.N. Food and Agriculture Organization 's post-tsunami operations say many areas of the hard-hit western coast of Aceh remain a disaster area and sustainable recovery will be a five to 10-year effort .\tNNS IN DT NNP NNP CC NNP NNP POS JJ NNS VBP JJ NNS IN DT JJ JJ NN IN NNP VBP DT NN NN CC JJ NN MD VB DT CD TO JJ NN .\nDespite the massive building efforts still required , officials were upbeat about the overall progress , saying local economies are rebounding .\tIN DT JJ NN NNS RB VBN , NNS VBD JJ IN DT JJ NN , VBG JJ NNS VBP VBG .\nAlso Thursday , the European Commission released an additional $ 24 million in aid for victims of the disaster , bringing the European Union 's total contribution to $ 148 million .\tRB NNP , DT JJ NNP VBD DT JJ $ CD CD IN NN IN NNS IN DT NN , VBG DT NNP NNP POS JJ NN TO $ CD CD .\nOfficials stressed aid is still desperately needed for the hundreds of thousands of people living in temporary camps .\tNNS VBD NN VBZ RB RB VBN IN DT NNS IN NNS IN NNS VBG IN JJ NNS .\nA published report cites U.S. intelligence officials as saying insurgents in Iraq are receiving more direction from Iraqis now living in Syria than earlier believed .\tDT JJ NN VBZ NNP NN NNS IN VBG NNS IN NNP VBP VBG JJR NN IN NNS RB VBG IN NNP IN RB VBN .\nWednesday 's Washington Post quotes unnamed officials saying former Saddam Hussein loyalists that have found sanctuary in Syria are collecting money from private sources in Saudi Arabia and Europe to help the insurgency .\tNNP POS NNP NNP VBZ JJ NNS VBG JJ NNP NNP NNS WDT VBP VBN JJ IN NNP VBP VBG NN IN JJ NNS IN NNP NNP CC NNP TO VB DT NN .\nU.S. officials say Washington has begun to press Damascus to arrest or expel certain Iraqis .\tNNP NNS VBP NNP VBZ VBN TO VB NNP TO VB CC VB JJ NNS .\nThe newspaper also quoted Syria 's ambassador to the United States Imad Moustapha rejecting the allegations as unfounded .\tDT NN RB VBD NNP POS NN TO DT NNP NNPS NNP NNP VBG DT NNS IN JJ .\nIn Iraq today , Britain 's Defense Secretary Geoff Hoon arrived in the southern city of Basra to visit British troops .\tIN NNP NN , NNP POS NNP NNP NNP NNP VBD IN DT JJ NN IN NNP TO VB JJ NNS .\nOn Tuesday , Iraqi interim Prime Minister Iyad Allawi again insisted that elections should be held as scheduled next month , adding that the vote may be staggered over two weeks for security concerns .\tIN NNP , JJ JJ NNP NNP NNP NNP RB VBD IN NNS MD VB VBN IN VBN JJ NN , VBG IN DT NN MD VB VBN IN CD NNS IN NN NNS .\nA bomb attack on a major oil pipeline in northern Iraq has disrupted Iraqi crude oil exports sent through Turkey .\tDT NN NN IN DT JJ NN NN IN JJ NNP VBZ VBN JJ NN NN NNS VBN IN NNP .\nCivil defense workers are trying to put out a fire caused by the attack at al-Hadhar south of Mosul Thursday morning .\tJJ NN NNS VBP VBG TO VB RP DT NN VBN IN DT NN IN JJ NN IN NNP NNP NN .\nThe bomb blew a hole in the pipeline .\tDT NN VBD DT NN IN DT NN .\nIraqi officials say it will take several days to repair the damage and get oil flowing again .\tJJ NNS VBP PRP MD VB JJ NNS TO VB DT NN CC VB NN VBG RB .\nThe pipeline runs from northern Iraq to Ceyhan , Turkey , and typically carries about 4,20,000 barrels of crude oil per day , a quarter of Iraq 's overall output .\tDT NN VBZ IN JJ NNP TO NNP , NNP , CC RB VBZ IN CD NNS IN JJ NN IN NN , DT NN IN NNP POS JJ NN .\nThe pipeline was last attacked in December .\tDT NN VBD JJ VBN IN NNP .\nLeatherback turtles fascinate ocean researchers .\tNN NNS VBP NN NNS .\nThe largest of sea turtles roams the world 's oceans , nesting and feeding in coastal regions .\tDT JJS IN NN NNS VBZ DT NN POS NNS , VBG CC VBG IN JJ NNS .\nScientists say leatherbacks have been doing so for at least 65 million years .\tNNS VBP NNS VBP VBN VBG RB IN IN JJS CD CD NNS .\nBut little else is known to researchers about this species , other than their numbers are dwindling .\tCC JJ NN VBZ VBN TO NNS IN DT NNS , JJ IN PRP$ NNS VBP VBG .\nRecently , U.S. National Oceanic and Atmospheric Administration scientists strapped a transmitter on one and were amazed by what they found .\tRB , NNP NNP NNP CC NNP NNP NNS VBD DT NN IN CD CC VBD VBN IN WP PRP VBD .\nPaul Sisco has more .\tNNP NNP VBZ RBR .\nThe chief U.S. negotiator to talks in Beijing aimed at dismantling North Korea 's nuclear program says he expects to return home Monday , whether or not an agreement is reached .\tDT JJ NNP NN TO NNS IN NNP VBN IN VBG NNP NNP POS JJ NN VBZ PRP VBZ TO VB NN NNP , IN CC RB DT NN VBZ VBN .\nAssistant Secretary of State Christopher Hill says an amended draft submitted by China is the best hope so far for bringing all the sides together .\tNNP NNP IN NNP NNP NNP VBZ DT VBN NN VBN IN NNP VBZ DT JJS NN RB RB IN VBG PDT DT NNS RB .\nHowever , he says some phrases in the draft still need clarification .\tRB , PRP VBZ DT NNS IN DT NN RB VBP NN .\nJapan 's chief delegate to the talks says he believes there is still a chance of reaching an agreement in the six-party talks that also include the two Koreas and Russia .\tNNP POS NN NN TO DT NNS VBZ PRP VBZ EX VBZ RB DT NN IN VBG DT NN IN DT JJ NNS WDT RB VBP DT CD NNP CC NNP .\nThe delegates met twice Sunday .\tDT NNS VBD RB NNP .\nNorth Korea is demanding that it be supplied with a light water nuclear reactor to generate electricity .\tNNP NNP VBZ VBG IN PRP VB VBN IN DT JJ NN JJ NN TO VB NN .\nWashington has rejected that demand , saying Pyongyang has broken nonproliferation promises in the past .\tNNP VBZ VBN IN NN , VBG NNP VBZ VBN JJ NNS IN DT NN .\nSuspected al-Qaida-linked militants have raided a village in the southern Philippines , killing at least 11 people .\tVBN JJ NNS VBP VBN DT NN IN DT JJ NNP , VBG IN JJS CD NNS .\nMilitary officials say Abu Sayyaf gunmen , backed by renegade Muslim separatists , attacked a civilian militia detachment early Saturday in the village of Tubigan , Basilan province , on Mindanao island .\tJJ NNS VBP NNP NNP NNS , VBN IN NN NNP NNS , VBD DT JJ NN NN JJ NNP IN DT NN IN NNP , NNP NN , IN NNP NN .\nLocal officials said the villagers were asleep when about 70 attackers began spraying houses with automatic gunfire .\tJJ NNS VBD DT NNS VBD JJ WRB IN CD NNS VBD VBG NNS IN JJ NN .\nThey also set houses on fire .\tPRP RB VBD NNS IN NN .\nTen civilians were killed , including a one-year-old girl .\tCD NNS VBD VBN , VBG DT JJ NN .\nA member of the local militia also was killed .\tDT NN IN DT JJ NN RB VBD VBN .\nAt least 17 people , including four children , were wounded by gunfire and blazes before the attackers fled .\tIN JJS CD NNS , VBG CD NNS , VBD VBN IN NN CC NNS IN DT NNS VBD .\nAuthorities say troops are searching for the culprits .\tNNS VBP NNS VBP VBG IN DT NNS .\nThey say the attack took place hours after a rescue operation freed two Chinese hostages held by Abu Sayyaf since November .\tPRP VBP DT NN VBD NN NNS IN DT NN NN VBD CD JJ NNS VBN IN NNP NNP IN NNP .\nThree Venezuelan opposition parties , including major opposition party , Democratic Action , have pulled out of Sunday 's parliamentary elections , saying the electoral council is biased .\tCD JJ NN NNS , VBG JJ NN NN , NNP NNP , VBP VBN IN IN NNP POS JJ NNS , VBG DT JJ NN VBZ VBN .\nDemocratic Action leader Henry Ramos Tuesday said election officials favor President Hugo Chavez and can not be trusted to provide a fair vote .\tJJ NNP NN NNP NNP NNP VBD NN NNS VBP NNP NNP NNP CC MD RB VB VBN TO VB DT JJ NN .\nHe denied accusations that the opposition is acting in the interests of the U.S. government .\tPRP VBD NNS IN DT NN VBZ VBG IN DT NNS IN DT NNP NN .\nThe Project Venezuela and Copei parties also announced their withdrawal from the elections .\tDT NNP NNP CC NNP NNS RB VBD PRP$ NN IN DT NNS .\nOpposition leaders have proposed postponing the vote until they can be assured of a free and fair election .\tNN NNS VBP VBN VBG DT NN IN PRP MD VB VBN IN DT JJ CC JJ NN .\nVenezuelan Vice President Jose Vicente Rangel has denied the accusations and insists the elections will be fair .\tJJ NNP NNP NNP NNP NNP VBZ VBN DT NNS CC VBZ DT NNS MD VB JJ .\nElectoral officials said this week they will remove fingerprinting machines at polling stations , after opposition leaders suggested they could compromise voter privacy .\tNNP NNS VBD DT NN PRP MD VB JJ NNS IN VBG NNS , IN NN NNS VBD PRP MD VB NN NN .\nIndonesia 's health ministry says international tests have confirmed that a 30-year old man who died last month had contracted bird flu .\tNNP POS NN NN VBZ JJ NNS VBP VBN IN DT JJ JJ NN WP VBD JJ NN VBD VBN NN NN .\nAn Indonesian health official , Joko Suyono , says samples from dead man tested positive for the virus at a Hong Kong laboratory affiliated with the World Health Organization .\tDT JJ NN NN , NNP NNP , VBZ NNS IN JJ NN VBN JJ IN DT NN IN DT NNP NNP NN VBN IN DT NNP NNP NNP .\nThe man is the 25th Indonesian known to have died of bird flu since 2003 , the second highest death toll of any country after Vietnam .\tDT NN VBZ DT JJ NN VBN TO VB VBN IN NN NN IN CD , DT JJ JJS NN NN IN DT NN IN NNP .\nOfficials say the victim was a resident of western Jakarta who had a history of contact with sick poultry .\tNNS VBP DT NN VBD DT NN IN JJ NNP WP VBD DT NN IN NN IN JJ NN .\nHe died at a Jakarta hospital for bird flu patients April 26 .\tPRP VBD IN DT NNP NN IN NN NN NNS NNP CD .\nThe Army of Ansar al-Sunna , one of Iraq 's most active terrorist groups , has claimed the assassination of a senior judge , as it intensifies its campaign to intimidate Iraqi voters just days before national elections .\tDT NNP IN NNP NNP , CD IN NNP POS RBS JJ JJ NNS , VBZ VBN DT NN IN DT JJ NN , IN PRP VBZ PRP$ NN TO VB JJ NNS RB NNS IN JJ NNS .\nIn an Internet statement that has not been authenticated , the group says it killed the administrator of Iraq 's judges and vowed to do the same to what it called other infidels and apostates .\tIN DT NN NN WDT VBZ RB VBN VBN , DT NN VBZ PRP VBD DT NN IN NNP POS NNS CC VBD TO VB DT NN TO WP PRP VBD JJ NNS CC NNS .\nThe judge , Qais Hashim Shameri , died in a hail of bullets Tuesday as he drove through Baghdad .\tDT NN , NNP NNP NNP , VBD IN DT NN IN NNS NNP IN PRP VBD IN NNP .\nAnother person in the car was also killed .\tDT NN IN DT NN VBD RB VBN .\nMeanwhile , the U.S. military says five soldiers were killed in a vehicle accident north of the Iraqi capital Monday evening .\tRB , DT NNP NN VBZ CD NNS VBD VBN IN DT NN NN NN IN DT JJ NN NNP NN .\nA sixth soldier died Monday after being seriously wounded in a roadside blast in Baghdad .\tDT JJ NN VBD NNP IN VBG RB VBN IN DT NN NN IN NNP .\nThe U.S. military says it has released about 1,000 prisoners from Abu Ghraib prison after Iraqi authorities requested they be set free .\tDT NNP NN VBZ PRP VBZ VBN IN CD NNS IN NNP NNP NN IN JJ NNS VBD PRP VB VBN JJ .\nIn a statement released Saturday , the military said the release represented a major milestone in Iraq 's progress towards democracy and the rule of law .\tIN DT NN VBN NNP , DT NN VBD DT NN VBD DT JJ NN IN NNP POS NN IN NN CC DT NN IN NN .\nIt said the prisoners had been brought to Abu Ghraib from detention facilities across Iraq , and had been released over the last four days .\tPRP VBD DT NNS VBD VBN VBN TO NNP NNP IN NN NNS IN NNP , CC VBD VBN VBN IN DT JJ CD NNS .\nA U.S. military spokesman said the released prisoners were not guilty of serious or violent crimes such as bombing , kidnapping , torture or murder and have renounced violence .\tDT NNP NN NN VBD DT VBN NNS VBD RB JJ IN JJ CC JJ NNS JJ IN NN , NN , NN CC NN CC VBP VBN NN .\nThe move , the largest prisoner release to date , followed appeals by Sunni representatives for the United States to release thousands of prisoners who have been languishing in jail for months without being charged .\tDT NN , DT JJS NN NN TO NN , VBD NNS IN NNP NNS IN DT NNP NNPS TO VB NNS IN NNS WP VBP VBN VBG IN NN IN NNS IN VBG VBN .\nIsrael has approved plans to build 3,500 new homes in the occupied West Bank , in a move Palestinians say sabotages efforts to rekindle the Mideast peace process .\tNNP VBZ VBN NNS TO VB CD JJ NNS IN DT JJ NNP NNP , IN DT NN NNS VBP NNS NNS TO VB DT JJ NN NN .\nThe Israeli plan , approved by Prime Minister Ariel Sharon , appears to clash with the U.S.-backed ' Roadmap ' peace plan .\tDT JJ NN , VBN IN NNP NNP NNP NNP , VBZ TO VB IN DT JJ `` VB `` NN NN .\nThat plan calls for a halt to settlement expansion on all Palestinian land captured by Israel in the 1967 war .\tDT NN VBZ IN DT NN TO NN NN IN DT JJ NN VBN IN NNP IN DT CD NN .\nThere has been no U.S. comment on the move , which analysts say is aimed at linking the settlement of Maale Adumim to greater Jerusalem .\tEX VBZ VBN DT NNP NN IN DT NN , WDT NNS VBP VBZ VBN IN VBG DT NN IN NNP NNP TO JJR NNP .\nIsrael claims Jerusalem as its eternal capital , while Palestinians want Arab East Jerusalem as the capital of a future state .\tNNP VBZ NNP IN PRP$ JJ NN , IN NNS VBP NNP NNP NNP IN DT NN IN DT JJ NN .\nMeanwhile , Israeli-Palestinian talks are expected to continue later today on the Israeli handover of security control in the West Bank town of Tulkarem .\tRB , JJ NNS VBP VBN TO VB RB NN IN DT JJ NN IN NN NN IN DT NNP NNP NN IN NNP .\nPalestinians assumed control of Jericho last week .\tNNS VBD NN IN NNP JJ NN .\nThe United Nations says 250 members of Somalia 's transitional parliament are attending a training seminar to help them understand how federal government works .\tDT NNP NNP VBZ CD NNS IN NNP POS JJ NN VBP VBG DT NN NN TO VB PRP VB WRB JJ NN VBZ .\nU.N. officials say the six-day seminar in Somalia 's temporary capital of Baidoa this week will teach lawmakers about how power is lawfully shared between branches of government .\tNNP NNS VBP DT JJ NN IN NNP POS JJ NN IN NNP DT NN MD VB NNS IN WRB NN VBZ RB VBN IN NNS IN NN .\nThe seminar is one of six U.N. projects backing reconciliation efforts in Somalia .\tDT NN VBZ CD IN CD NNP NNS VBG NN NNS IN NNP .\nOther projects include trying to prevent the return of large-scale conflict among militias , reviving the business climate and developing a legal system .\tJJ NNS VBP VBG TO VB DT NN IN JJ NN IN NNS , VBG DT NN NN CC VBG DT JJ NN .\nSomalia has been without a central government for 15 years and much of the country remains lawless , including the former capital Mogadishu .\tNNP VBZ VBN IN DT JJ NN IN CD NNS CC NN IN DT NN VBZ JJ , VBG DT JJ NN NNP .\nA U.N. development plan for Somalia calls for writing and holding a referendum on a new Constitution by 2009 .\tDT NNP NN NN IN NNP VBZ IN NN CC VBG DT NN IN DT JJ NNP IN CD .\nA U.S. diplomatic cable appearing on the Wikileaks website says Syria promoted violent protests against controversial cartoons of the Prophet Muhammad four years ago in which European embassies in Damascus were attacked .\tDT NNP JJ NN VBG IN DT NNP NN VBZ NNP VBD JJ NNS IN JJ NNS IN DT NNP NNP CD NNS RB IN WDT JJ NNS IN NNP VBD VBN .\nThe cable quotes the U.S. embassy charge d'affaires Stephen Seche as saying Syrian Prime Minister Naji al-Otari asked mosque preachers to unleash fiery sermons on the eve of the protests .\tDT NN VBZ DT NNP NN NN VBZ NNP NNP IN VBG JJ NNP NNP NNP NNP VBD NN NNS TO VB JJ NNS IN DT NN IN DT NNS .\nThe cartoons , including one of the Prophet with a turban resembling a bomb , first appeared in a Danish daily and set off protests throughout the Muslim world .\tDT NNS , VBG CD IN DT NNP IN DT NN VBG DT NN , RB VBD IN DT JJ JJ CC VBD RP NNS IN DT NNP NN .\nMany Muslims believe their faith forbids any images of the Prophet .\tJJ NNPS VBP PRP$ NN VBZ DT NNS IN DT NNP .\nThe embassies of Denmark and Norway were torched in the Syrian protests .\tDT NNS IN NNP CC NNP VBD VBN IN DT JJ NNS .\nU.S. Secretary of State Condoleezza Rice accused Damascus at the time of inciting the violence .\tNNP NNP IN NNP NNP NNP VBD NNP IN DT NN IN VBG DT NN .\nSyria disputed the charges .\tNNP VBD DT NNS .\nThe February 5 , 2006 cable says that Syrian officials seem ' to have miscalculated and lost control ' of the protests .\tDT NNP CD , CD NN VBZ IN JJ NNS VBP `` TO VB VBN CC VBN NN `` IN DT NNS .\nTurkish warplanes have bombed Kurdish rebel hideouts in northern Iraq .\tJJ NNS VBP VBN JJ NN NNS IN JJ NNP .\nThe Turkish military said Thursday that it targeted 13 facilities belonging to the Kurdistan Workers ' Party ( PKK ) in the Zap region , near the Turkish border .\tDT JJ NN VBD NNP IN PRP VBD CD NNS VBG TO DT NNP NNP POS NNP LRB NNP RRB IN DT NNP NN , IN DT JJ NN .\nThe military says it is still trying to determine if any rebels were killed .\tDT JJ VBZ PRP VBZ RB VBG TO VB IN DT NNS VBD VBN .\nTurkey has stepped up military operations this year against PKK rebels , both inside Turkey and in northern Iraq .\tNNP VBZ VBN RP JJ NNS DT NN IN NNP NNS , DT JJ NNP CC IN JJ NNP .\nEarlier this week , the PKK released three German tourists seized during an expedition to Turkey 's Mount Ararat July 8 .\tRBR DT NN , DT NNP VBD CD JJ NNS VBN IN DT NN TO NNP POS NNP NNP NNP CD .\nTurkish military officials say a total of 33 PKK fighters were killed during a five-day offensive that ended last week .\tJJ JJ NNS VBP DT NN IN CD NNP NNS VBD VBN IN DT JJ NN WDT VBD JJ NN .\nThe PKK has been fighting for Kurdish autonomy in southeastern Turkey for nearly 25 years .\tDT NNP VBZ VBN VBG IN NNP NN IN JJ NNP IN RB CD NNS .\nThe violence has killed more than 30,000 people .\tDT NN VBZ VBN JJR IN CD NNS .\nThe European Union , the United States , Turkey and other countries classify the PKK as a terrorist organization .\tDT NNP NNP , DT NNP NNPS , NNP CC JJ NNS VBP DT NNP IN DT JJ NN .\nA land mine explosion in Nepal Saturday killed at least six bus passengers and injured several others .\tDT NN NN NN IN NNP NNP VBD IN JJS CD NN NNS CC VBN JJ NNS .\nNepalese authorities say the land mine was hidden beneath a barricade blocking a road .\tJJ NNS VBP DT NN NN VBD VBN IN DT NN VBG DT NN .\nIt exploded as passengers were working to dismantle the roadblock in a Kapilvastu district , 325 kilometers southwest of the capital , Kathmandu .\tPRP VBD IN NNS VBD VBG TO VB DT NN IN DT NNP NN , CD NNS JJS IN DT NN , NNP .\nThe land mine is believed to have been planted by Maoist rebels , who fought with government troops in the same area on Friday , a battle that killed at least five soldiers and an unknown number of guerillas .\tDT NN NN VBZ VBN TO VB VBN VBN IN NNP NNS , WP VBD IN NN NNS IN DT JJ NN IN NNP , DT NN WDT VBD IN JJS CD NNS CC DT JJ NN IN NNS .\nNepal 's Maoists have been fighting since 1996 to establish a communist republic in the Himalayan kingdom .\tNNP POS NNS VBP VBN VBG IN CD TO VB DT JJ NN IN DT NNP NN .\nViolence has continued unabated since King Gyanendra dismissed a coalition government and seized power six months ago .\tNN VBZ VBN JJ IN NNP NNP VBD DT NN NN CC VBD NN CD NNS RB .\nChina 's foreign ministry is urging its citizens not travel to Iraq in the wake of the recent kidnapping of eight Chinese nationals by Iraqi insurgents .\tNNP POS JJ NN VBZ VBG PRP$ NNS RB VB TO NNP IN DT NN IN DT JJ NN IN CD JJ NNS IN JJ NNS .\nArab TV channel Al-Jazeera broadcast a video showing the hostages Tuesday in which their abductors threatened to kill the men unless China ' clarifies its role in Iraq . '\tJJ NN NN NNP VBD DT NN VBG DT NNS NNP IN WDT PRP$ NNS VBD TO VB DT NNS IN NNP `` VBZ PRP$ NN IN NNP . ``\nChinese officials say the men are ordinary construction workers who went to Iraq on their own initiative .\tJJ NNS VBP DT NNS VBP JJ NN NNS WP VBD TO NNP IN PRP$ JJ NN .\nChina 's foreign ministry says it is deeply concerned by the kidnapping , noting China has always shown friendship , sympathy and support towards the Iraqi people .\tNNP POS JJ NN VBZ PRP VBZ RB VBN IN DT NN , VBG NNP VBZ RB VBN NN , NN CC NN IN DT JJ NNS .\nLast April seven Chinese construction workers from Fujian province were kidnapped in Fallujah , but later released unharmed .\tJJ NNP CD JJ NN NNS IN JJ NN VBD VBN IN NNP , CC RB VBN JJ .\nA Turkish human rights group has asked a prosecutor to start legal proceedings against Israel 's defense minister for alleged crimes committed against Palestinians during Israel 's offensive in the Gaza Strip .\tDT JJ JJ NNS NN VBZ VBN DT NN TO VB JJ NNS IN NNP POS NN NN IN JJ NNS VBN IN NNS IN NNP POS NN IN DT NNP NNP .\nThe Istanbul-based Mazlum-Der filed the petition on Friday , just two days before Israeli Defense Minister Ehud Barak is to visit Turkey in a bid to mend ties .\tDT JJ NN VBD DT NN IN NNP , RB CD NNS IN JJ NNP NNP NNP NNP VBZ TO VB NNP IN DT NN TO VB NNS .\nTurkey has been an important ally of Israel , but relations have been strained since the Gaza conflict year ago , which drew criticism from Turkish leaders .\tNNP VBZ VBN DT JJ NN IN NNP , CC NNS VBP VBN VBN IN DT NNP NN NN RB , WDT VBD NN IN JJ NNS .\nTurkey 's judiciary has thrown out similar complaints against Israeli officials in the past .\tNNP POS NN VBZ VBN RP JJ NNS IN JJ NNS IN DT NN .\nIsrael launched the offensive in Gaza in December of 2008 to stop Palestinian militant rocket attacks on Israeli towns .\tNNP VBD DT NN IN NNP IN NNP IN CD TO VB JJ JJ NN NNS IN JJ NNS .\nThe conflict killed more than 1,300 Palestinians and 13 Israelis .\tDT NN VBD JJR IN CD NNS CC CD NNS .\nCuban President Fidel Castro has criticized a U.S. judge 's decision to release on bail a Cuban-born former U.S. intelligence operative .\tJJ NNP NNP NNP VBZ VBN DT NNP NN POS NN TO VB IN NN DT JJ JJ NNP NN NN .\nIn an article in Cuba 's state-run newspaper Granma , Mr. Castro accused the White House of influencing the decision to free Luis Posada Carriles ahead of his May trial .\tIN DT NN IN NNP POS JJ NN NNP , NNP NNP VBD DT NNP NNP IN VBG DT NN TO VB NNP NNP NNP RB IN PRP$ NNP NN .\nMr. Castro said President Bush has double-standards in his efforts to fight terrorism by harboring a wanted criminal .\tNNP NNP VBD NNP NNP VBZ NNS IN PRP$ NNS TO VB NN IN VBG DT JJ NN .\nCarriles faces immigration fraud charges in the U.S. state of Texas , but is also wanted by Venezuela for allegedly bombing a Cuban airliner .\tNNP VBZ NN NN NNS IN DT NNP NN IN NNP , CC VBZ RB VBN IN NNP IN RB VBG DT JJ NN .\nSeventy-three people were killed in the attack in 1976 .\tCD NNS VBD VBN IN DT NN IN CD .\nThe article was the third in Granma attributed to Mr. Castro in two weeks .\tDT NN VBD DT JJ IN NNP VBD TO NNP NNP IN CD NNS .\nThe Cuban leader has not been seen in public since July , when he underwent intestinal surgery .\tDT JJ NN VBZ RB VBN VBN IN JJ IN NNP , WRB PRP VBD JJ NN .\nFrance has announced that six major powers will meet on Tuesday to discuss possible sanctions on Iran over its nuclear program .\tNNP VBZ VBN IN CD JJ NNS MD VB IN NNP TO VB JJ NNS IN NNP IN PRP$ JJ NN .\nFrance 's foreign ministry spokesman Jean-Baptiste Mattei said senior diplomats from the five permanent members of the U.N. Security Council plus Germany will meet in Paris .\tNNP POS JJ NN NN NNP NNP VBD JJ NNS IN DT CD JJ NNS IN DT NNP NNP NNP CC NNP MD VB IN NNP .\nA European Union representative is expected to join the talks .\tDT NNP NNP NN VBZ VBN TO VB DT NNS .\nThe major powers have been working for weeks on possible sanctions against Iran .\tDT JJ NNS VBP VBN VBG IN NNS IN JJ NNS IN NNP .\nFrance , Germany and Britain have circulated a draft Security Council sanctions resolution .\tNNP , NNP CC NNP VBP VBN DT NN NNP NNP NNS NN .\nBut Russia and China favor less stringent sanctions .\tCC NNP CC NNP VBP RBR JJ NNS .\nIran defied an August 31 U.N. deadline for suspending its nuclear enrichment program .\tNNP VBD DT NNP CD NNP NN IN VBG PRP$ JJ NN NN .\nTehran says it has a right to develop nuclear technology for peaceful uses .\tNNP VBZ PRP VBZ DT NN TO VB JJ NN IN JJ NNS .\nThe U.S. and its allies believe Iran is trying to develop a nuclear weapon .\tDT NNP CC PRP$ NNS VBP NNP VBZ VBG TO VB DT JJ NN .\nThe Brazilian government says it will collaborate with any Palestinian government that wants peace and recognizes Israel 's right to exist .\tDT JJ NN VBZ PRP MD VB IN DT JJ NN WDT VBZ NN CC VBZ NNP POS NN TO VB .\nBrazilian Foreign Minister Celso Amorim made the comments Thursday in response to published reports that Hamas - the Islamic group that won last month 's Palestinian elections - would seek financial and political support from Brazil .\tJJ NNP NNP NNP NNP VBD DT NNS NNP IN NN TO VBN NNS IN NNP IN DT JJ NN WDT VBD JJ NN POS JJ NNS : MD VB JJ CC JJ NN IN NNP .\nBut Amorim said Hamas has not contacted Brazil .\tCC NNP VBD NNP VBZ RB VBN NNP .\nThe United States and other countries have warned that they will curtail funding to a Hamas-led Palestinian government unless the group renounces violence and acknowledges Israel 's right to exist .\tDT NNP NNPS CC JJ NNS VBP VBN IN PRP MD VB NN TO DT JJ JJ NN IN DT NN VBZ NN CC VBZ NNP POS NN TO VB .\nHamas has said it will not be pressured into recognizing Israel by what it calls international threats of blackmail over aid .\tNNP VBZ VBN PRP MD RB VB VBN IN VBG NNP IN WP PRP VBZ JJ NNS IN NN IN NN .\nIraqis took another historic step toward democracy Wednesday , as their first freely elected parliament in nearly a half-century convened for the first time .\tNNS VBD DT JJ NN IN NN NNP , IN PRP$ JJ RB VBN NN IN RB DT NN VBN IN DT JJ NN .\nIn Washington , President Bush congratulated the Iraqi people and the 275-member interim National Assembly , saying it is a ' bright moment ' in Iraq 's democratic process .\tIN NNP , NNP NNP VBD DT JJ NNS CC DT JJ JJ NNP NNP , VBG PRP VBZ DT `` JJ NN `` IN NNP POS JJ NN .\nThe assembly was sworn in at the Baghdad Convention Center inside the heavily protected Green Zone .\tDT NN VBD VBN IN IN DT NNP NNP NNP IN DT RB VBN NNP NNP .\nIts session was mostly ceremonial , as talks are still continuing on power-sharing in the new government .\tPRP$ NN VBD RB JJ , IN NNS VBP RB VBG IN NN IN DT JJ NN .\nInsurgents marked the day with several large explosions in Baghdad before and after the assembly session .\tNNS VBD DT NN IN JJ JJ NNS IN NNP IN CC IN DT NN NN .\nNo casualties were reported .\tDT NNS VBD VBN .\nNorth of the capital , in Baquba , a car bomb exploded at a checkpoint , killing at least four Iraqi soldiers .\tNNP IN DT NN , IN NNP , DT NN NN VBD IN DT NN , VBG IN JJS CD JJ NNS .\nAnd the U.S. military said an American soldier was killed in a roadside bomb explosion south of Baghdad .\tCC DT NNP NN VBD DT JJ NN VBD VBN IN DT NN NN NN NN IN NNP .\nLeftist coca farmer Evo Morales has been inaugurated as Bolivia 's first indigenous president .\tJJ NN NN NNP NNP VBZ VBN VBN IN NNP POS JJ JJ NN .\nDuring his inaugural speech Sunday , Mr. Morales said Bolivia 's 500 year-long campaign of indigenous resistance has not been in vain .\tIN PRP$ JJ NN NNP , NNP NNP VBD NNP POS CD JJ NN IN JJ NN VBZ RB VBN IN NN .\nIndigenous Bolivians who listened to the speech said they were hopeful he would bring change for the better .\tJJ NNS WP VBD TO DT NN VBD PRP VBD JJ PRP MD VB NN IN DT JJR .\nThe former congressman won a surprise majority in a single round of voting on December 18 .\tDT JJ NN VBD DT NN NN IN DT JJ NN IN VBG IN NNP CD .\nA number of heads of state were in the capital , La Paz , to witness Mr. Morales take the oath of office Sunday , including Chilean President Ricardo Lagos , Venezuela 's President Hugo Chavez and U.S. Assistant Secretary of State Thomas Shannon , the Bush administration 's top official for Latin America .\tDT NN IN NNS IN NN VBD IN DT NN , NNP NNP , TO VB NNP NNP VB DT NN IN NN NNP , VBG JJ NNP NNP NNP , NNP POS NNP NNP NNP CC NNP NNP NNP IN NNP NNP NNP , DT NNP NN POS JJ NN IN NNP NNP .\nThe White House will ask Congress for an additional $ 70 billion in emergency funds to help pay for the operations in Iraq and Afghanistan .\tDT NNP NNP MD VB NNP IN DT JJ $ CD CD IN NN NNS TO VB VB IN DT NNS IN NNP CC NNP .\nThe money comes on top of $ 50 billion approved late last year .\tDT NN VBZ IN NN IN $ CD CD VBN RB JJ NN .\nThe funds are intended to keep military operations in those two countries going through this fiscal year , which ends in September .\tDT NNS VBP VBN TO VB JJ NNS IN DT CD NNS VBG IN DT JJ NN , WDT VBZ IN NNP .\nSince the September , 2001 terrorist attacks , the Defense Department has spent a total of $ 320 billion on campaigns in Iraq and Afghanistan , not counting this latest request .\tIN DT NNP , CD JJ NNS , DT NNP NNP VBZ VBN DT NN IN $ CD CD IN NNS IN NNP CC NNP , RB VBG DT JJS NN .\nThe request follows Congress ' approval Wednesday of slashing $ 39 billion in health , education and other benefits , and as the Senate begins debating a Republican-proposed $ 70 billion tax reduction .\tDT NN VBZ NNP POS NN NNP IN VBG $ CD CD IN NN , NN CC JJ NNS , CC IN DT NNP VBZ VBG DT JJ $ CD CD NN NN .\nFrench President Jacques Chirac has pledged his country 's continued military support for the Afghan government .\tJJ NNP NNP NNP VBZ VBN PRP$ NN POS JJ JJ NN IN DT JJ NN .\nThe announcement came Monday during his meeting in Paris with Afghan President Hamid Karzai , who arrived on Sunday for a three-day visit .\tDT NN VBD NNP IN PRP$ NN IN NNP IN JJ NNP NNP NNP , WP VBD IN NNP IN DT JJ NN .\nFrance currently has about 600 soldiers in the NATO-led international peace-keeping force in Afghanistan .\tNNP RB VBZ IN CD NNS IN DT JJ JJ NN NN IN NNP .\nThe Afghan president says he eventually wants to see the NATO peace-keeping forces and the U.S.-led combat troops merged under the unified command of NATO .\tDT JJ NN VBZ PRP RB VBZ TO VB DT NNP NN NNS CC DT JJ NN NNS VBN IN DT JJ NN IN NNP .\nThe UN Security Council unanimously adopted two resolutions\tDT NNP NNP NNP RB VBD CD NNS\nThursday - one on the DRC and the other on Somalia .\tNNP : CD IN DT NNP CC DT JJ IN NNP .\nThe Security Council has voted in favor of sending an additional 3,000 troops to DRC to beef up MONUC , the UN mission there .\tDT NNP NNP VBZ VBN IN NN IN VBG DT JJ CD NNS TO NNP TO VB RP NNP , DT NNP NN RB .\nIt also approved giving the sanctions committee authority to impose sanctions against those who impede the peace process in Somalia , hinder humanitarian aid efforts and violate the arms embargo .\tPRP RB VBD VBG DT NNS NN NN TO VB NNS IN DT WP VBP DT NN NN IN NNP , VBP JJ NN NNS CC VBP DT NNS NN .\nThe rising cost of food is becoming a big concern around the world .\tDT VBG NN IN NN VBZ VBG DT JJ NN IN DT NN .\nMany countries from Ghana to Mexico have started reducing tariffs and taxes on food .\tJJ NNS IN NNP TO NNP VBP VBN VBG NNS CC NNS IN NN .\nAnd the World Food Program has requested more than $ 700 million from the international community to help meet basic food needs in developing countries .\tCC DT NNP NNP NNP VBZ VBN JJR IN $ CD CD IN DT JJ NN TO VB VB JJ NN NNS IN VBG NNS .\nBut even consumers in developed nations are having trouble with the high cost of food .\tCC RB NNS IN JJ NNS VBP VBG NN IN DT JJ NN IN NN .\nExperts say a few simple tips can help consumers anyplace maximize the money they spend on food .\tNNS VBP DT JJ JJ NNS MD VB NNS VB VB DT NN PRP VBP IN NN .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nBefore and during the Olympics , the issue of Tibet was frequently in the news .\tIN CC IN DT NNS , DT NN IN NNP VBD RB IN DT NN .\nIn March , an anti-government demonstration in the Tibetan capital , Lhasa , turned into a riot .\tIN NNP , DT JJ NN IN DT JJ NN , NNP , VBD IN DT NN .\nIt catapulted the Himalayan region into the headlines and led to protests that disrupted the Olympic torch relay .\tPRP VBD DT JJ NN IN DT NNS CC VBD TO NNS WDT VBD DT NNP NN NN .\nIn the closing days of the Beijing Olympics , China showcased a new production of an old propaganda opera that presents an image of Sino-Tibetan harmony .\tIN DT NN NNS IN DT NNP NNPS , NNP VBD DT JJ NN IN DT JJ NN NN WDT VBZ DT NN IN JJ NN .\nStephanie Ho reports from Beijing .\tNNP NNP VBZ IN NNP .\nTwo top Palestinian militant leaders have been killed in an Israeli airstrike in the northern Gaza Strip .\tCD JJ JJ JJ NNS VBP VBN VBN IN DT JJ NN IN DT JJ NNP NNP .\nAuthorities say Hassan Madhoun , a senior member of the al-Aqsa Martyrs Brigades , and top Hamas militant Fawzi Abu Kara were killed Tuesday , when an Israeli missile hit their car near the Jabalya refugee camp .\tNNS VBP NNP NNP , DT JJ NN IN DT NNP NNP NNP , CC JJ NNP NN NNP NNP NNP VBD VBN NNP , WRB DT JJ NN VBD PRP$ NN IN DT NNP NN NN .\nThe Palestinian Authority says at least nine bystanders were wounded .\tDT JJ NNP VBZ IN JJS CD NNS VBD VBN .\nA short while after the attack , spokesmen for Hamas and al-Aqsa Martyrs Brigades vowed to retaliate .\tDT JJ NN IN DT NN , NNS IN NNP CC NNP NNP NNP VBD TO VB .\nIsrael says the al-Aqsa militant was wanted in connection with a 2004 bombing that killed 10 people in the Israeli port of Ashdod .\tNNP VBZ DT NNP NN VBD VBN IN NN IN DT CD NN WDT VBD CD NNS IN DT JJ NN IN NNP .\nIsrael has carried out numerous strikes in Gaza since a Palestinian suicide bomber killed five Israelis in central Israel October 26 .\tNNP VBZ VBN RP JJ NNS IN NNP IN DT JJ NN NN VBD CD NNS IN JJ NNP NNP CD .\nPresident Bush is on his way to Europe to meet with European leaders in an effort to rebuild relations damaged by the U.S.-led war in Iraq .\tNNP NNP VBZ IN PRP$ NN TO NNP TO VB IN JJ NNS IN DT NN TO VB NNS VBN IN DT JJ NN IN NNP .\nBrussels is the first stop on a five day , three nation tour that will also take Mr. Bush to Germany and Slovakia .\tNNP VBZ DT JJ NN IN DT CD NN , CD NN NN WDT MD RB VB NNP NNP TO NNP CC NNP .\nBelgian officials have mounted an unprecedented level of security for the U.S. president 's visit , which is drawing protesters .\tJJ NNS VBP VBN DT JJ NN IN NN IN DT NNP NN POS NN , WDT VBZ VBG NNS .\nMr. Bush arrives late Sunday .\tNNP NNP VBZ JJ NNP .\nWhile in Brussels , the president is to meet with European Union and NATO leaders for talks expected to focus on trans-Atlantic ties , the Middle East , and Iran 's nuclear program .\tIN IN NNP , DT NN VBZ TO VB IN NNP NNP CC NNP NNS IN NNS VBN TO VB IN JJ NNS , DT NNP NNP , CC NNP POS JJ NN .\nHe will also hold separate talks this week with Iraq war opponents , including French President Jacques Chirac , German Chancellor Gerhard Schroeder and Russian President Vladimir Putin .\tPRP MD RB VB JJ NNS DT NN IN NNP NN NNS , VBG JJ NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP .\nPresident Bush is also due to meet with Iraq war allies , including British Prime Minister Tony Blair .\tNNP NNP VBZ RB JJ TO VB IN NNP NN NNS , VBG NNP NNP NNP NNP NNP .\nBotswana has maintained one of the world 's highest economic growth rates since independence in 1966 , though growth fell below 5 % in 2007 - 8 , and turned sharply negative in 2009 , with industry falling nearly 30 % .\tNNP VBZ VBN CD IN DT NN POS JJS JJ NN NNS IN NN IN CD , IN NN VBD IN CD NN IN CD : CD , CC VBD RB JJ IN CD , IN NN VBG RB CD NN .\nThrough fiscal discipline and sound management , Botswana transformed itself from one of the poorest countries in the world to a middle-income country with a per capita GDP of $ 13,100 in 2010 .\tIN JJ NN CC NN NN , NNP VBD PRP IN CD IN DT JJS NNS IN DT NN TO DT JJ NN IN DT IN NN NN IN $ CD IN CD .\nTwo major investment services rank Botswana as the best credit risk in Africa .\tCD JJ NN NNS VBP NNP IN DT JJS NN NN IN NNP .\nDiamond mining has fueled much of the expansion and currently accounts for more than one-third of GDP , 70-80 % of export earnings , and about half of the government 's revenues .\tNNP NN VBZ VBN NN IN DT NN CC RB NNS IN JJR IN NN IN NN , CD NN IN NN NNS , CC IN NN IN DT NN POS NNS .\nBotswana 's heavy reliance on a single luxury export was a critical factor in the sharp economic contraction of 2009 .\tNNP POS JJ NN IN DT JJ NN NN VBD DT JJ NN IN DT JJ JJ NN IN CD .\nTourism , financial services , subsistence farming , and cattle raising are other key sectors .\tNNP , JJ NNS , NN NN , CC NNS VBG VBP JJ JJ NNS .\nAlthough unemployment was 7.5 % in 2007 according to official reports , unofficial estimates place it closer to 40 % .\tIN NN VBD CD NN IN CD VBG TO JJ NNS , JJ NNS VBP PRP RBR TO CD NN .\nThe prevalence of HIV / AIDS is second highest in the world and threatens Botswana 's impressive economic gains .\tDT NN IN NNP NNP NNP VBZ JJ JJS IN DT NN CC VBZ NNP POS JJ JJ NNS .\nAn expected leveling off in diamond mining production within the next two decades overshadows long-term prospects .\tDT VBN NN RB IN NN NN NN IN DT JJ CD NNS VBZ JJ NNS .\nKyrgyzstan is a poor , mountainous country with a dominant agricultural sector .\tNNP VBZ DT JJ , JJ NN IN DT JJ JJ NN .\nCotton , tobacco , wool , and meat are the main agricultural products , although only tobacco and cotton are exported in any quantity .\tNN , NN , NN , CC NN VBP DT JJ JJ NNS , IN JJ NN CC NN VBP VBN IN DT NN .\nIndustrial exports include gold , mercury , uranium , natural gas , and electricity .\tJJ NNS VBP NN , NN , NN , JJ NN , CC NN .\nThe economy depends heavily on gold exports - mainly from output at the Kumtor gold mine .\tDT NN VBZ RB IN NN NNS : RB IN NN IN DT NNP NN NN .\nFollowing independence , Kyrgyzstan was progressive in carrying out market reforms , such as an improved regulatory system and land reform .\tVBG NN , NNP VBD JJ IN VBG RP NN NNS , JJ IN DT JJ JJ NN CC NN NN .\nKyrgyzstan was the first Commonwealth of Independent States ( CIS ) country to be accepted into the World Trade Organization .\tNNP VBD DT JJ NN IN NNP NNP LRB NNP RRB NN TO VB VBN IN DT NNP NNP NNP .\nMuch of the government 's stock in enterprises has been sold .\tNN IN DT NN POS NN IN NNS VBZ VBN VBN .\nDrops in production had been severe after the breakup of the Soviet Union in December 1991 , but by mid-1995 , production began to recover and exports began to increase .\tNNS IN NN VBD VBN JJ IN DT NN IN DT NNP NNP IN NNP CD , CC IN CD , NN VBD TO VB CC NNS VBD TO VB .\nIn 2005 , the BAKIEV government and international financial institutions initiated a comprehensive medium-term poverty reduction and economic growth strategy .\tIN CD , DT NNP NN CC JJ JJ NNS VBD DT JJ JJ NN NN CC JJ NN NN .\nBishkek agreed to pursue much needed tax reform and , in 2006 , became eligible for the heavily indebted poor countries ( HIPC ) initiative .\tNNP VBD TO VB RB VBN NN NN CC , IN CD , VBD JJ IN DT RB JJ JJ NNS LRB NNP RRB NN .\nThe government made steady strides in controlling its substantial fiscal deficit , nearly closing the gap between revenues and expenditures in 2006 , before boosting expenditures more than 20 % in 2007 - 8 .\tDT NN VBD JJ NNS IN VBG PRP$ JJ JJ NN , RB VBG DT NN IN NNS CC NNS IN CD , IN VBG NNS RBR IN CD NN IN CD : CD .\nGDP grew about 8 % annually in 2007 - 8 , partly due to higher gold prices internationally , but slowed to 2.3 % in 2009 .\tNN VBD IN CD NN RB IN CD : CD , RB JJ TO JJR NN NNS RB , CC VBD TO CD NN IN CD .\nThe overthrow of President BAKIEV in April , 2010 and subsequent ethnic clashes left hundreds dead and damaged infrastructure .\tDT NN IN NNP NNP IN NNP , CD CC JJ JJ NNS VBD NNS JJ CC JJ NN .\nShrinking trade and agricultural production , as well as political instability , caused GDP to contract about 3.5 % in 2010 .\tVBG NN CC JJ NN , RB RB IN JJ NN , VBD NN TO VB IN CD NN IN CD .\nThe fiscal deficit widened to 11 % of GDP , reflecting significant increases in crisis-related spending , including both rehabilitation of damaged infrastructure and bank recapitalization .\tDT JJ NN VBD TO CD NN IN NN , VBG JJ NNS IN JJ NN , VBG DT NN IN JJ NN CC NN NN .\nProgress in reconstruction , fighting corruption , restructuring domestic industry , and attracting foreign aid and investment are key to future growth .\tNN IN NN , VBG NN , VBG JJ NN , CC VBG JJ NN CC NN VBP JJ TO JJ NN .\nThis island economy suffers from a poor natural resource base , including serious water shortages exacerbated by cycles of long-term drought and poor soil for agriculture on several of the islands .\tDT NN NN VBZ IN DT JJ JJ NN NN , VBG JJ NN NNS VBN IN NNS IN JJ NN CC JJ NN IN NN IN NN IN DT NNS .\nThe economy is service oriented with commerce , transport , tourism , and public services accounting for about three-fourths of GDP .\tDT NN VBZ NN VBN IN NN , NN , NN , CC JJ NNS NN IN IN NNS IN NN .\nAlthough about 40 % of the population lives in rural areas , the share of food production in GDP is low .\tIN RB CD NN IN DT NN VBZ IN JJ NNS , DT NN IN NN NN IN NN VBZ JJ .\nAbout 82 % of food must be imported .\tIN CD NN IN NN MD VB VBN .\nThe fishing potential , mostly lobster and tuna , is not fully exploited .\tDT NN NN , RB NN CC NN , VBZ RB RB VBN .\nCape Verde annually runs a high trade deficit financed by foreign aid and remittances from its large pool of emigrants ; remittances supplement GDP by more than 20 % .\tNNP NNP RB VBZ DT JJ NN NN VBN IN JJ NN CC NNS IN PRP$ JJ NN IN NNS ; VBZ NN NN IN JJR IN CD NN .\nDespite the lack of resources , sound economic management has produced steadily improving incomes .\tIN DT NN IN NNS , JJ JJ NN VBZ VBN RB VBG NNS .\nContinued economic reforms are aimed at developing the private sector and attracting foreign investment to diversify the economy .\tJJ JJ NNS VBP VBN IN VBG DT JJ NN CC VBG JJ NN TO VB DT NN .\nFuture prospects depend heavily on the maintenance of aid flows , the encouragement of tourism , remittances , and the momentum of the government 's development program .\tJJ NNS VBP RB IN DT NN IN NN NNS , DT NN IN NN , NNS , CC DT NN IN DT NN POS NN NN .\nCape Verde became a member of the WTO in July 2008 .\tNNP NNP VBD DT NN IN DT NNP IN NNP CD .\nThe islands , which have large bird and seal populations , lie approximately 1,000 km east of the Falkland Islands and have been under British administration since 1908 - except for a brief period in 1982 when Argentina occupied them .\tDT NNS , WDT VBP JJ NN CC NN NNS , VBP RB CD NN NN IN DT NNP NNP CC VBP VBN IN JJ NN IN CD : IN IN DT JJ NN IN CD WRB NNP VBD PRP .\nGrytviken , on South Georgia , was a 19th and early 20th century whaling station .\tNNP , IN NNP NNP , VBD DT JJ CC JJ JJ NN VBG NN .\nFamed explorer Ernest SHACKLETON stopped there in 1914 en route to his ill-fated attempt to cross Antarctica on foot .\tNNP NNP NNP NNP VBD RB IN CD IN NN TO PRP$ JJ NN TO VB NNP IN NN .\nHe returned some 20 months later with a few companions in a small boat and arranged a successful rescue for the rest of his crew , stranded off the Antarctic Peninsula .\tPRP VBD DT CD NNS RB IN DT JJ NNS IN DT JJ NN CC VBD DT JJ NN IN DT NN IN PRP$ NN , VBD RP DT NNP NNP .\nHe died in 1922 on a subsequent expedition and is buried in Grytviken .\tPRP VBD IN CD IN DT JJ NN CC VBZ VBN IN NNP .\nToday , the station houses scientists from the British Antarctic Survey .\tNN , DT NN VBZ NNS IN DT JJ NNP NN .\nRecognizing the importance of preserving the marine stocks in adjacent waters , the UK , in 1993 , extended the exclusive fishing zone from 12 nm to 200 nm around each island .\tVBG DT NN IN VBG DT JJ NNS IN JJ NNS , DT NNP , IN CD , VBD DT JJ NN NN IN CD NN TO CD NN IN DT NN .\nA CAT , hearing that the Birds in a certain aviary were ailing dressed himself up as a physician , and , taking his cane and a bag of instruments becoming his profession , went to call on them .\tDT NN , VBG IN DT NNS IN DT JJ NN VBD VBG VBD PRP RP IN DT NN , CC , VBG PRP$ NN CC DT NN IN NNS VBG PRP$ NN , VBD TO VB IN PRP .\nHe knocked at the door and inquired of the inmates how they all did , saying that if they were ill , he would be happy to prescribe for them and cure them .\tPRP VBD IN DT NN CC VBN IN DT NNS WRB PRP DT VBD , VBG IN IN PRP VBD RB , PRP MD VB JJ TO VB IN PRP CC VB PRP .\nThey replied , ' We are all very well , and shall continue so , if you will only be good enough to go away , and leave us as we are . '\tPRP VBD , `` PRP VBP DT RB RB , CC MD VB RB , IN PRP MD RB VB JJ RB TO VB RB , CC VB PRP IN PRP VBP . ``\nA NIGHTINGALE , sitting aloft upon an oak and singing according to his wont , was seen by a Hawk who , being in need of food , swooped down and seized him .\tDT NNP , VBG RB IN DT NN CC VBG VBG TO PRP$ NN , VBD VBN IN DT NN WP , VBG IN NN IN NN , VBD RB CC VBD PRP .\nThe Nightingale , about to lose his life , earnestly begged the Hawk to let him go , saying that he was not big enough to satisfy the hunger of a Hawk who , if he wanted food , ought to pursue the larger birds .\tDT NNP , IN TO VB PRP$ NN , RB VBD DT NN TO VB PRP VB , VBG IN PRP VBD RB JJ RB TO VB DT NN IN DT NN WP , IN PRP VBD NN , MD TO VB DT JJR NNS .\nThe Hawk , interrupting him , said : ' I should indeed have lost my senses if I should let go food ready in my hand , for the sake of pursuing birds which are not yet even within sight . '\tDT NNP , VBG PRP , VBD : `` PRP MD RB VB VBN PRP$ NNS IN PRP MD VB VB NN JJ IN PRP$ NN , IN DT NN IN VBG NNS WDT VBP RB RB RB IN NN . ``\nA Peacock once placed a petition before Juno desiring to have the voice of a nightingale in addition to his other attractions ; but Juno refused his request .\tDT NN RB VBD DT NN IN NNP VBG TO VB DT NN IN DT NN IN NN TO PRP$ JJ NNS ; CC NNP VBD PRP$ NN .\nWhen he persisted , and pointed out that he was her favourite bird , she said :\tWRB PRP VBD , CC VBD RP IN PRP VBD PRP$ JJ NN , PRP VBD :\n' Be content with your lot ; one can not be first in everything . '\t`` VB NN IN PRP$ NN ; PRP MD RB VB JJ IN DT . ``\nA STATE Official carrying off the Dome of the Capitol met the Ghost of his predecessor , who had come out of his political grave to warn him that God saw him .\tDT NN NN VBG RP DT NN IN DT NNP VBD DT NN IN PRP$ NN , WP VBD VBN IN IN PRP$ JJ NN TO VB PRP IN NNP VBD PRP .\nAs the place of meeting was lonely and the time midnight , the State Official set down the Dome of the Capitol , and commanded the supposed traveller to throw up his hands .\tIN DT NN IN NN VBD JJ CC DT NN NN , DT NNP NNP VBD RP DT NN IN DT NNP , CC VBD DT VBN NN TO VB RP PRP$ NNS .\nThe\tDT\nGhost replied that he had not eaten them , and while he was explaining the situation another State Official silently added the dome to his own collection .\tNNP VBD IN PRP VBD RB VBN PRP , CC IN PRP VBD VBG DT NN DT NNP NNP RB VBD DT NN TO PRP$ JJ NN .\nThe United States ' top law enforcement official says the recent terrorist bombings in Britain and Egypt could be the work of al-Qaida .\tDT NNP NNPS POS JJ NN NN NN VBZ DT JJ JJ NNS IN NNP CC NNP MD VB DT NN IN NNP .\nAttorney General Alberto Gonzales cautioned that officials are still investigating the bombings , which together killed some 140 people .\tNNP NNP NNP NNP VBD IN NNS VBP RB VBG DT NNS , WDT RB VBD DT CD NNS .\nBut in an interview with CNN television , Mr. Gonzales said the July 7 attack on London 's transit system and the July 23 bombing at Egypt 's Sharm-el-Sheik resort both have the appearance of al-Qaida involvement .\tCC IN DT NN IN NNP NN , NNP NNP VBD DT NNP CD NN IN NNP POS NN NN CC DT NNP CD VBG IN NNP POS JJ NN DT VBP DT NN IN NNP NN .\nGroups that say they are affiliated with al-Qaida have claimed responsibility for the attacks .\tNNS WDT VBP PRP VBP VBN IN NNP VBP VBN NN IN DT NNS .\nSunday 's Washington Post cites intelligence officials and terrorism experts as saying that Osama bin Laden or his aides may have sponsored the two operations from afar .\tNNP POS NNP NNP VBZ NN NNS CC NN NNS IN VBG IN NNP NNP NNP CC PRP$ NNS MD VB VBN DT CD NNS IN NN .\nThe officials say the attacks fit into al-Qaida 's pattern of conducting multiple bombings against civilian targets that are designed to scare Westerners and shake the economy .\tDT NNS VBP DT NNS VBP IN NNP POS NN IN VBG JJ NNS IN JJ NNS WDT VBP VBN TO VB NNS CC VB DT NN .\nChristians around the world are observing Good Friday , which commemorates the crucifixion of Jesus .\tNNS IN DT NN VBP VBG JJ NNP , WDT VBZ DT NN IN NNP .\nMany Christians attend services Friday to pray and reflect on the execution of Jesus near Jerusalem nearly 2,000 years ago .\tJJ NNPS NN NNS NNP TO VB CC VB IN DT NN IN NNP IN NNP RB CD NNS RB .\nChristians believe Jesus returned to life on what is now observed as Easter Sunday .\tNNS VBP NNP VBD TO NN IN WP VBZ RB VBN IN NNP NNP .\nPope John Paul II - the leader of one billion Roman Catholics - has been limited in Holy Week activities this year as he recovers from a throat operation last month .\tNNP NNP NNP NNP IN DT NN IN CD CD NNP NNPS : VBZ VBN VBN IN NNP NNP NNS DT NN IN PRP VBZ IN DT NN NN JJ NN .\nHe will not lead public ceremonies today as he has in the past .\tPRP MD RB VB JJ NNS NN IN PRP VBZ IN DT NN .\nPresident Bush , a devout Protestant Christian , issued his Easter greeting Friday , saying the teachings of Jesus ' continue to comfort and strengthen Christians around the world . '\tNNP NNP , DT NN NNP NNP , VBD PRP$ NNP NN NNP , VBG DT NNS IN NNP `` VB TO NN CC VB NNS IN DT NN . ``\nOrthodox Christians commemorate the occasion next month .\tNNP NNPS VBP DT NN JJ NN .\nDelegates to an international conference on Afghanistan are using the second day of the London meeting to discuss the nation 's post-war problems with security , reconstruction and opium-traffickers .\tNNS TO DT JJ NN IN NNP VBP VBG DT JJ NN IN DT NNP NN TO VB DT NN POS JJ NNS IN NN , NN CC NNS .\nOn Tuesday , the conference unveiled a five-year plan that includes wiping out illegal armed groups by 2007 - and establishing a respected national army and justice system by 2010 .\tIN NNP , DT NN VBD DT JJ NN WDT VBZ VBG RP JJ JJ NNS IN CD : CC VBG DT JJ JJ NN CC NN NN IN CD .\nAfghan President Hamid Karzai told the conference that eliminating insurgents and the opium production that supports them will be a difficult task .\tJJ NNP NNP NNP VBD DT NN IN VBG NNS CC DT NN NN WDT VBZ PRP MD VB DT JJ NN .\nHe said it will take at least a decade to develop alternative sources of income for farmers and to totally eliminate poppy production .\tPRP VBD PRP MD VB IN JJS DT NN TO VB JJ NNS IN NN IN NNS CC TO RB VB NN NN .\nDonor countries have pledged almost $ 5 billion in aid so far , with the United States promising $ 1.1 billion for the war-torn country .\tNNP NNS VBP VBN RB $ CD CD IN NN RB RB , IN DT NNP NNPS VBG $ CD CD IN DT JJ NN .\nMilitary officials in Nepal say Maoist rebels have abducted at least 220 villagers from several remote mountainous districts in the western part of the country .\tJJ NNS IN NNP VBP NNP NNS VBP VBN IN JJS CD NNS IN JJ JJ JJ NNS IN DT JJ NN IN DT NN .\nThe officials say that on July 31 , the rebels took away more than 150 women from four villages in the Bajura district , and 70 people from several villages in neighboring Accham district .\tDT NNS VBP IN IN NNP CD , DT NNS VBD RB JJR IN CD NNS IN CD NNS IN DT NNP NN , CC CD NNS IN JJ NNS IN JJ NNP NN .\nThe condition and whereabouts of the villagers are unknown and the motive remains unclear .\tDT NN CC NNS IN DT NNS VBP JJ CC DT NN VBZ JJ .\nBut Maoist rebels are known to take hundreds of villagers to their rallies and possibly try to recruit them to fight government troops .\tCC NNP NNS VBP VBN TO VB NNS IN NNS TO PRP$ NNS CC RB VB TO VB PRP TO VB NN NNS .\nThe rebels have been fighting since 1996 to replace the constitutional monarchy in the world 's only Hindu kingdom with a communist state .\tDT NNS VBP VBN VBG IN CD TO VB DT JJ NN IN DT NN POS JJ NNP NN IN DT JJ NN .\nMore than 11,000 people have been killed in the conflict .\tJJR IN CD NNS VBP VBN VBN IN DT NN .\nAfghan police say unidentified gunmen in northwestern Pakistan have kidnapped an Afghan government advisor as he visited relatives in a border town .\tJJ NNS VBP JJ NNS IN JJ NNP VBP VBN DT JJ NN NN IN PRP VBD NNS IN DT NN NN .\nAuthorities say an adviser to the Afghan Ministry of Rural Development , Akhtar Kohistani , was abducted from his in-laws ' house or wife 's relatives ' house in Chitral , Pakistan , late Sunday .\tNNS VBP DT NN TO DT JJ NNP IN NNP NNP , NNP NNP , VBD VBN IN PRP$ NNS POS NN CC NN POS NNS POS NN IN NNP , NNP , JJ NNP .\nNo group has claimed responsibility for the abduction .\tDT NN VBZ VBN NN IN DT NN .\nThe kidnapping is the second of a prominent Afghan in Pakistan in the past four days .\tDT NN VBZ DT NN IN DT JJ NN IN NNP IN DT JJ CD NNS .\nOn Friday , the brother of Afghanistan 's finance minister was kidnapped in northwest Pakistan as he visited family members .\tIN NNP , DT NN IN NNP POS NN NN VBD VBN IN JJ NNP IN PRP VBD NN NNS .\nOfficials say the businessman Zia ul-Haq Ahadi was abducted by unidentified assailants in a residential area of Peshawar .\tNNS VBP DT NN NNP NNP NNP VBD VBN IN JJ NNS IN DT JJ NN IN NNP .\nAnd , in September , Afghanistan 's top diplomat to Pakistan was kidnapped in the same neighborhood .\tCC , IN NNP , NNP POS JJ NN TO NNP VBD VBN IN DT JJ NN .\nHe has yet to be released , and authorities are searching for him .\tPRP VBZ RB TO VB VBN , CC NNS VBP VBG IN PRP .\nU.N. Secretary-General Kofi Annan says the United Nations is determined to get food to Niger , where severe food shortages have left an estimated three million people in need of aid .\tNNP NNP NNP NNP VBZ DT NNP NNPS VBZ VBN TO VB NN TO NNP , WRB JJ NN NNS VBP VBN DT VBN CD CD NNS IN NN IN NN .\nMr. Annan said during a visit to Niger , that his agency will work with the government and the international community to ensure all those in need get help .\tNNP NNP VBD IN DT NN TO NNP , IN PRP$ NN MD VB IN DT NN CC DT JJ NN TO VB DT DT IN NN VBP NN .\nThe U.N. chief is wrapping up a two-day trip aimed at drawing international attention to Niger 's food crisis caused by drought and locusts .\tDT NNP NN VBZ VBG RP DT JJ NN VBN IN VBG JJ NN TO NNP POS NN NN VBN IN NN CC NNS .\nWednesday , he met with U.N. officials and aid groups in the capital , Niamey .\tNNP , PRP VBD IN NNP NNS CC NN NNS IN DT NN , NNP .\nTuesday , he visited the southern town of Zinder , one of the hardest-hit parts of the country .\tNNP , PRP VBD DT JJ NN IN NNP , CD IN DT JJ NNS IN DT NN .\nThe U.N. has been criticized for its slow response to the crisis .\tDT NNP VBZ VBN VBN IN PRP$ JJ NN TO DT NN .\nIt began appealing for aid last year but was largely ignored until recently .\tPRP VBD VBG IN NN JJ NN CC VBD RB VBN IN RB .\nIraqi authorities say the bodies of 18 young Shi'ite men have been found near the northern city of Mosul , where they were headed to work at a U.S. military base .\tJJ NNS VBP DT NNS IN CD JJ NNP NNS VBP VBN VBN IN DT JJ NN IN NNP , WRB PRP VBD VBN TO VB IN DT NNP JJ NN .\nPolice say the men , who were all from Baghdad , were found bound and shot execution-style .\tNNS VBP DT NNS , WP VBD DT IN NNP , VBD VBN VBN CC VBN JJ .\nTheir bodies were discovered Wednesday , but police say the men were killed nearly a month ago .\tPRP$ NNS VBD VBN NNP , CC NNS VBP DT NNS VBD VBN RB DT NN RB .\nFollowing a November U.S.-led offensive against insurgents in Fallujah , many fighters fled to Mosul .\tVBG DT NNP JJ NN IN NNS IN NNP , JJ NNS VBD TO NNP .\nViolence there has escalated in recent weeks , with dozens of dead bodies turning up .\tNN RB VBZ VBN IN JJ NNS , IN NNS IN JJ NNS VBG RP .\nAlso Thursday , a U.S. Marine was killed in western al-Anbar province .\tRB NNP , DT NNP NN VBD VBN IN JJ NNP NN .\nMeanwhile , in Jordan , Iraq 's neighbors are holding a conference that is expected to endorse the January 30 elections and urge Iraqis to defy boycott calls from some Sunni groups concerned about escalating violence .\tRB , IN NNP , NNP POS NNS VBP VBG DT NN WDT VBZ VBN TO VB DT NNP CD NNS CC VB NNS TO VB NN NNS IN DT NNP NNS VBD IN VBG NN .\nThe White House said Vice President Joe Biden will travel to Bosnia and Herzegovina , Serbia and Kosovo later this month .\tDT NNP NNP VBD NNP NNP NNP NNP MD VB TO NNP CC NNP , NNP CC NNP RB DT NN .\nIn a statement Friday , Mr. Biden 's office said the vice president will meet with the political leadership in all three countries , as well as U.S. officials and military personnel stationed in the region .\tIN DT NN NNP , NNP NNP POS NN VBD DT NN NN MD VB IN DT JJ NN IN DT CD NNS , RB RB IN NNP NNS CC JJ NNS VBN IN DT NN .\nIt said the vice president 's trip will take place the week of May 18 , and that further details will be released at a later date .\tPRP VBD DT NN NN POS NN MD VB NN DT NN IN NNP CD , CC IN JJ NNS MD VB VBN IN DT JJ NN .\nLeaders from around the world are in Warsaw to celebrate the 90th anniversary of Poland 's independence .\tNNS IN IN DT NN VBP IN NNP TO VB DT JJ NN IN NNP POS NN .\nGerman Chancellor Angela Merkel took part in commemorations at the Tomb of Poland 's Unknown Soldier .\tJJ NNP NNP NNP VBD NN IN NNS IN DT NNP IN NNP POS JJ NN .\nAfghan President Hamid Karzai , Georgian President Mikheil Saakashvili and Ukrainian President Viktor Yushchenko are among the dignitaries who are joining Polish President Lech Kaczynski at a gala ceremony this Tuesday evening .\tJJ NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP VBP IN DT NNS WP VBP VBG JJ NNP NNP NNP IN DT NN NN DT NNP NN .\nThe Polish president has come under sharp criticism for failing to invite former president and Solidarity movement leader Lech Walesa to the formal Independence Day celebrations .\tDT JJ NN VBZ VBN IN JJ NN IN VBG TO VB JJ NN CC NNP NN NN NNP NNP TO DT JJ NNP NNP NNS .\nAs Europe celebrates Armistice Day , marking the end of World War One , Poland also celebrates the re-establishment of its independence 123 years after Russia , Prussia and Austria divided and occupied the country in 1795 .\tIN NNP VBZ NNP NNP , VBG DT NN IN NNP NNP CD , NNP RB VBZ DT NN IN PRP$ NN CD NNS IN NNP , NNP CC NNP VBD CC VBD DT NN IN CD .\nIran 's new president , Mahmoud Ahmadinejad , declared at his swearing-in ceremony Saturday that the Iranian nation can not be intimidated .\tNNP POS JJ NN , NNP NNP , VBD IN PRP$ NN NN NNP IN DT JJ NN MD RB VB VBN .\nWithout directly mentioning the controversy surrounding his country 's pursuit of nuclear technology , Mr. Ahmadinejad told parliament that Iran would respect international norms , but would never surrender to what he called ' illegal requests . '\tIN RB VBG DT NN VBG PRP$ NN POS NN IN JJ NN , NNP NNP VBD NN IN NNP MD VB JJ NNS , CC MD RB VB TO WP PRP VBD `` JJ NNS . ``\nIn a nation where 70 percent of the population is under age 30 , Mr. Ahmadinejad pledged to tackle unemployment .\tIN DT NN WRB CD NN IN DT NN VBZ IN NN CD , NNP NNP VBD TO VB NN .\nHe also vowed to defend Iran 's independence and said , ' if religion is weakened , our identity will be weakened too . '\tPRP RB VBD TO VB NNP POS NN CC VBD , `` IN NN VBZ VBN , PRP$ NN MD VB VBN RB . ``\nA former revolutionary guard and Tehran mayor , the 49-year-old president is a religious conservative .\tDT JJ NN NN CC JJ NN , DT JJ NN VBZ DT JJ NN .\nHis arrival in office brings to a close President Mohammad Khatami 's largely unsuccessful eight-year attempt to liberalize the government .\tPRP$ NN IN NN VBZ TO DT JJ NNP NNP NNP POS RB JJ JJ NN TO VB DT NN .\nPresident Ahmadinejad has two weeks to announce his Cabinet .\tNNP NNP VBZ CD NNS TO VB PRP$ NNP .\nMedical professionals in India protesting against a caste quota have been joined by professionals from other fields , as demonstrations continue in the capital .\tJJ NNS IN NNP VBG IN DT NN NN VBP VBN VBN IN NNS IN JJ NNS , IN NNS VBP IN DT NN .\nThousands of professionals marched in New Delhi Saturday , denouncing a government plan to reserve more college seats for lower castes .\tNNS IN NNS VBD IN NNP NNP NNP , VBG DT NN NN TO VB JJR NN NNS IN JJR NNS .\nIn addition to attending rallies , doctors and medical students who work in public healthcare facilities are on strike .\tIN NN TO VBG NNS , NNS CC JJ NNS WP VBP IN JJ NN NNS VBP IN NN .\nThe work stoppage has lasted for about a week .\tDT NN NN VBZ VBN IN IN DT NN .\nIt is forcing thousands of hospital patients to go without treatment or to seek treatment at costly , private hospitals .\tPRP VBZ VBG NNS IN NN NNS TO VB IN NN CC TO VB NN IN JJ , JJ NNS .\nThe government plans to more than double the percentage of places reserved for lower caste students in state-funded medical , engineering and other professional colleges .\tDT NN VBZ TO JJR IN VB DT NN IN NNS VBN IN JJR NN NNS IN JJ JJ , NN CC JJ JJ NNS .\nCritics say the change will reduce the number of slots for students competing on merit and will hurt educational and professional standards .\tNNS VBP DT NN MD VB DT NN IN NNS IN NNS VBG IN NN CC MD VB JJ CC JJ NNS .\nU.S Open women 's tennis champion Kim Clijsters of Belgium has defeated French player Nathalie Dechy to reach the finals of the FORTIS Championships in Luxembourg .\tNNP NNP NNS POS NN NN NNP NNP IN NNP VBZ VBN JJ NN NNP NNP TO VB DT NNS IN DT NNS NNS IN NNP .\nClijsters reached the final in straight sets , 06-Mar , 06-Jan .\tNNP VBD DT JJ IN JJ NNS , CD , CD .\nSunday , the Belgian world number three takes on Germany 's Anna-Lena Groenefeld , a three-set winner over seventh seed Dinara Safina of Russia ( 06-Apr , 05-Jul , 06-Apr ) .\tNNP , DT JJ NN NN CD VBZ IN NNP POS NNP NNP , DT JJ NN IN JJ NN NNP NNP IN NNP LRB CD , CD , CD RRB .\nClijsters has won 25 of her last 26 matches this season .\tNNP VBZ VBN CD IN PRP$ JJ CD NNS DT NN .\nShe has played Groenefeld once before - earlier this year in Stanford , California - and beat the German player in straight sets .\tPRP VBZ VBN NNP RB IN : RBR DT NN IN NNP , NNP : CC VB DT JJ NN IN JJ NNS .\nThe African Union says a Senegalese soldier was killed Friday when unknown gunmen ambushed an AU patrol near the Sudan-Chad border .\tDT NNP NNP VBZ DT JJ NN VBD VBN NNP WRB JJ NNS VBD DT NNP NN IN DT JJ NN .\nKhartoum and Sudanese rebels are blaming each other for the attack , which targeted a group of Senegalese soldiers patrolling the Darfur region .\tNNP CC JJ NNS VBP VBG DT NN IN DT NN , WDT VBD DT NN IN JJ NNS VBG DT NNP NN .\nTen other soldiers wounded in the attack were evacuated to a local hospital for treatment .\tCD JJ NNS VBN IN DT NN VBD VBN TO DT JJ NN IN NN .\nThe assailants stole an AU vehicle , using it to flee the scene .\tDT NNS VBD DT NNP NN , VBG PRP TO VB DT NN .\nThe incident comes just days after cross-border raids on three Chadian border villages killed nine civilians .\tDT NN VBZ RB NNS IN JJ NNS IN CD JJ NN NNS VBD CD NNS .\nChad 's government has repeatedly accused Sudan of supporting rebel activity along the border .\tNNP POS NN VBZ RB VBN NNP IN VBG JJ NN IN DT NN .\nSudan has denied any involvement with the rebels .\tNNP VBZ VBN DT NN IN DT NNS .\nTensions have risen between the two nations since Sudanese rebels attacked the Chadian town of Adre last month .\tNNS VBP VBN IN DT CD NNS IN JJ NNS VBD DT JJ NN IN NNP JJ NN .\nAfter the attack , Chad said a ' state of belligerence ' existed between it and Khartoum .\tIN DT NN , NNP VBD DT `` NN IN NN `` VBD IN PRP CC NNP .\nBritain 's Prince Charles and his wife Camilla have arrived at the White House , where they will have lunch with President and Mrs. Bush Wednesday , on their first U.S. visit since they were married in April .\tNNP POS NNP NNP CC PRP$ NN NNP VBP VBN IN DT NNP NNP , WRB PRP MD VB NN IN NNP CC NNP NNP NNP , IN PRP$ JJ NNP NN IN PRP VBD VBN IN NNP .\nThe Prince of Wales and the Duchess of Cornwall will also be the guests of honor at a state dinner at the White House later in the day .\tDT NNP IN NNP CC DT NN IN NNP MD RB VB DT NNS IN NN IN DT NN NN IN DT NNP NNP RB IN DT NN .\nFrom Washington , they will travel to New Orleans to meet with victims of Hurricane Katrina .\tIN NNP , PRP MD VB TO NNP NNP TO VB IN NNS IN NNP NNP .\nThe royal couple spent the first day of their weeklong trip Tuesday in New York City , where they visited the site of the World Trade Center and dedicated a memorial to the 67 British victims of the September 11 , 2001 terrorist attacks .\tDT JJ NN VBD DT JJ NN IN PRP$ JJ NN NNP IN NNP NNP NNP , WRB PRP VBD DT NN IN DT NNP NNP NNP CC VBD DT NN TO DT CD JJ NNS IN DT NNP CD , CD JJ NNS .\nA leading U.S. senator predicts that January will be a month of ' historic transformation ' in the Middle East .\tDT VBG NNP NN VBZ IN NNP MD VB DT NN IN `` JJ NN `` IN DT NNP NNP .\nIn an interview with ABC television Sunday , Senator Joe Lieberman said this month will be remembered as the time Iraqis and Palestinians held elections and started becoming democratic nations .\tIN DT NN IN NNP NN NNP , NNP NNP NNP VBD DT NN MD VB VBN IN DT NN NNS CC NNS VBD NNS CC VBD VBG JJ NNS .\nMr. Lieberman , who just returned from a trip to Iraq , said he came away encouraged that Iraqis will be able to hold elections despite ongoing violence .\tNNP NNP , WP RB VBD IN DT NN TO NNP , VBD PRP VBD RB VBN IN NNS MD VB JJ TO VB NNS IN JJ NN .\nThe Democratic senator called the violence ' only a small part ' of Iraq 's reality , and said insurgents fighting U.S. and Iraqi security forces do not have popular support .\tDT JJ NN VBD DT NN `` RB DT JJ NN `` IN NNP POS NN , CC VBD NNS VBG NNP CC JJ NN NNS VBP RB VB JJ NN .\nHe said it would be a mistake to postpone Iraqi elections despite calls from some Sunni Muslim politicians to do so .\tPRP VBD PRP MD VB DT NN TO VB JJ NNS IN NNS IN DT NNP NNP NNS TO VB RB .\nIraq 's elections are set for January 30 .\tNNP POS NNS VBP VBN IN NNP CD .\nPalestinians choose a new president on January 9 .\tNNS VBP DT JJ NN IN NNP CD .\nDefending champion Andy Roddick of the United States and Croatia 's Ivo Karlovic have advanced to the finals of the Stella Artois grass-court tennis tournament in London .\tVBG NN NNP NNP IN DT NNP NNPS CC NNP POS NNP NNP VBP VBN TO DT NNS IN DT NNP NNP NN NN NN IN NNP .\nRoddick , the second seed , defeated fourth-seeded Radek Stepanek of the Czech Republic in three sets 06-Mar , 02-Jun , 06-Feb .\tNNP , DT JJ NN , VBD JJ NNP NNP IN DT JJ NNP IN CD NNS CD , CD , CD .\nAfter breaking Stepanek 's serve early in the first set Saturday , Roddick hit a slump in the second set before getting back on track for the victory .\tIN VBG NNP POS NN RB IN DT JJ NN NNP , NNP VBD DT NN IN DT JJ NN IN VBG RP IN NN IN DT NN .\nThe 22-year-old Roddick faces Karlovic , who scored a straight-set win over sixth-seeded Thomas Johansson of Sweden 06-Apr , 07-Jun .\tDT JJ NNP VBZ NNP , WP VBD DT JJ NN IN JJ NNP NNP IN NNP CD , CD .\nThe two meters , eight centimeter tall Karlovic fired 19 aces on his first serve in the one hour , 24 minute match .\tDT CD NNS , CD NN JJ NNP VBD CD NNS IN PRP$ NN VBP IN DT CD NN , CD NN NN .\nRoddick and Karlovic have never met one another before in ATP Tour play .\tNNP CC NNP VBP RB VBN CD DT IN IN NNP NNP NN .\nThe tournament is a key warmup for Wimbledon -- the third Grand Slam event of the season .\tDT NN VBZ DT JJ NN IN NNP : DT JJ NNP NNP NN IN DT NN .\nIsraeli troops have killed three Palestinian militants in separate incidents in the occupied West Bank and the Hamas-controlled Gaza Strip .\tJJ NNS VBP VBN CD JJ NNS IN JJ NNS IN DT JJ NNP NNP CC DT JJ NNP NNP .\nIsrael 's military says troops entered the West Bank city of Tulkarm Sunday in search of two wanted militants .\tNNP POS JJ VBZ NNS VBD DT NNP NNP NN IN NNP NNP IN NN IN CD JJ NNS .\nIt says soldiers opened fire at the men as they tried to flee , killing one and wounding the other .\tPRP VBZ NNS VBD NN IN DT NNS IN PRP VBD TO VB , VBG CD CC VBG DT JJ .\nPalestinian officials say the dead militant was loyal to the Fatah movement of Palestinian President Mahmoud Abbas .\tJJ NNS VBP DT JJ NN VBD JJ TO DT NNP NN IN JJ NNP NNP NNP .\nThe wounded man was taken to an Israeli hospital for treatment .\tDT JJ NN VBD VBN TO DT JJ NN IN NN .\nEarlier in the day , Palestinian medics said Israeli troops operating in central Gaza killed two Palestinian militants during an exchange of fire .\tRBR IN DT NN , JJ NNS VBD JJ NNS VBG IN JJ NNP VBD CD JJ NNS IN DT NN IN NN .\nPalestinian officials identified one of the militants as an Islamic Jihad member , and the other as a member of the Popular Resistance Committees .\tJJ NNS VBD CD IN DT NNS IN DT JJ NN NN , CC DT JJ IN DT NN IN DT NNP NNP NNS .\nA Philippine army general says search teams have found the body of a U.S. Peace Corps volunteer who went missing 10 days ago .\tDT JJ NN NN VBZ NN NNS VBP VBN DT NN IN DT NNP NNP NNP NN WP VBD VBG CD NNS RB .\nMajor General Rodrigo Maclang said Wednesday rescuers found Julia Campbell 's body partially buried near the northern mountain town of Batad .\tNNP NNP NNP NNP VBD NNP NNS VBD NNP NNP POS NN RB VBN IN DT JJ NN NN IN NNP .\nHe said her feet were sticking out of the ground .\tPRP VBD PRP$ NNS VBD VBG IN IN DT NN .\nPolice have not said how the 40-year-old died , but said they are conducting a criminal investigating into her death .\tNNS VBP RB VBN WRB DT JJ VBD , CC VBD PRP VBP VBG DT JJ VBG IN PRP$ NN .\nAuthorities have dismissed the possibility that she had been kidnapped by communist guerrillas .\tNNS VBP VBN DT NN IN PRP VBD VBN VBN IN JJ NNS .\nCampbell was last seen April 8th , when she began a hike near the town of Banaue in Ifugao province , north of Manila .\tNNP VBD JJ VBN NNP CD , WRB PRP VBD DT NN IN DT NN IN NNP IN NNP NN , NN IN NNP .\nShe had been teaching English in the town of Legaspi for the past two years .\tPRP VBD VBN VBG NNP IN DT NN IN NNP IN DT JJ CD NNS .\nShe also worked as journalist , with articles published in The New York Times newspaper , Starmagazine and a number of media Web sites .\tPRP RB VBD IN NN , IN NNS VBN IN DT NNP NNP NNP NN , NNP CC DT NN IN NNS NNP NNS .\nKing Abdullah II of Jordan has vowed ' zero tolerance ' toward terrorists , as his government says al-Qaida in Iraq was behind Wednesday 's triple suicide attacks that killed 57 people .\tNNP NNP NNP IN NNP VBZ VBN `` CD NN `` IN NNS , IN PRP$ NN VBZ NNP IN NNP VBD IN NNP POS JJ NN NNS WDT VBD CD NNS .\nThe king told the official Petra news agency Saturday that Jordan would not tolerate anyone who distorts Islam to promote violence , and he vowed to bring the perpetrators of the attacks to justice .\tDT NN VBD DT JJ NNP NN NN NNP IN NNP MD RB VB DT WP VBZ NNP TO VB NN , CC PRP VBD TO VB DT NNS IN DT NNS TO NN .\nEarlier , Deputy Prime Minister Marwan al-Muasher told reporters that three non-Jordanians carried out the Amman hotel bombings .\tRB , NN JJ NN NNP NNP VBD NNS IN CD NNS VBD IN DT NNP NN NNS .\nHe says no women appear to have been involved in the attacks , disputing a claim attributed to al-Qaida in Iraq that a woman was among four attackers .\tPRP VBZ DT NNS VBP TO VB VBN VBN IN DT NNS , VBG DT NN VBN TO NNP IN NNP IN DT NN VBD IN CD NNS .\nAmid reports that the suicide bombers were Iraqis , the king reassured the country 's large Iraqi population that Jordan would continue to be a safehaven for them .\tIN NNS IN DT NN NNS VBD NNS , DT NN VBD DT NN POS JJ JJ NN IN NNP MD VB TO VB DT NN IN PRP .\nThe U.S. military says four Iraqi civilians were killed and 19 people , including two American soldiers , were wounded when a car bomb exploded near a U.S. military convoy in the northern town of Baiji Tuesday .\tDT NNP NN VBZ CD JJ NNS VBD VBN CC CD NNS , VBG CD JJ NNS , VBD VBN WRB DT NN NN VBD IN DT NNP JJ NN IN DT JJ NN IN NNP NNP .\nIn a separate attack -- also in Baiji -- insurgents fired a rocket-propelled grenade at a U.S. tank , wounding one soldier .\tIN DT JJ NN : RB IN NNP : NNS VBD DT JJ NN IN DT NNP NN , VBG CD NN .\nInsurgents have recently stepped up their violent campaign - particularly in Iraq 's Sunni dominated regions - to derail the country 's January 30 election .\tNNS VBP RB VBN RP PRP$ JJ NN : RB IN NNP POS NNP VBD NNS : TO VB DT NN POS NNP CD NN .\nMajor Sunni Muslim and Kurdish parties have called for a six-month delay in the vote .\tNNP NNP NNP CC NNP NNS VBP VBN IN DT JJ NN IN DT NN .\nBut parties representing Iraq 's Shi'ite majority say the election should go ahead as planned .\tCC NNS VBG NNP POS NNP NN VBP DT NN MD VB RB RB VBN .\nU.S. Secretary of State Colin Powell says the election is a way for Iraqis to take a stand against the insurgents .\tNNP NNP IN NNP NNP NNP VBZ DT NN VBZ DT NN IN NNS TO VB DT NN IN DT NNS .\nOfficials in Iraq say at least 10 Iraqis have been killed and several others wounded in separate insurgent attacks across the country .\tNNS IN NNP VBP IN JJS CD NNS VBP VBN VBN CC JJ NNS VBD IN JJ JJ NNS IN DT NN .\nSecurity officials say gunmen ambushed a police patrol Saturday , in the Baghdad area , killing two officers and wounding at least two others .\tNN NNS VBP NNS VBD DT NN NN NNP , IN DT NNP NN , VBG CD NNS CC VBG IN JJS CD NNS .\nAnother policeman was killed in a separate attack north of Baghdad .\tDT NN VBD VBN IN DT JJ NN NN IN NNP .\nAt least seven civilians were killed in other attacks elsewhere .\tIN JJS CD NNS VBD VBN IN JJ NNS RB .\nSeparately , the U.S. military says one American Marine was killed in combat Saturday in western al-Anbar province .\tRB , DT NNP NN VBZ CD NNP NNP VBD VBN IN NN NNP IN JJ NNP NN .\nAnd at least six coalition soldiers were hurt in other attacks in northern Iraq .\tCC IN JJS CD NN NNS VBD VBN IN JJ NNS IN JJ NNP .\nMeanwhile , there are reports of fighting between U.S. forces and insurgents in the flashpoint city of Fallujah , where U.S. and Iraqi forces launched a full-scale offensive last month to dislodge guerrilla fighters .\tRB , EX VBP NNS IN VBG IN NNP NNS CC NNS IN DT NN NN IN NNP , WRB NNP CC JJ NNS VBD DT JJ NN JJ NN TO VB NN NNS .\nKenyan police have arrested several journalists and activists who were protesting a new media bill passed by parliament that would impose strict controls on the press .\tJJ NNS VBP VBN JJ NNS CC NNS WP VBD VBG DT JJ NNS NN VBN IN NN WDT MD VB JJ NNS IN DT NN .\nReports from the Kenyan capital , Nairobi , say the police broke up Friday 's protest , which took place shortly before President Mwai Kibaki was scheduled to speak at a celebration marking Kenya 's independence day .\tNNS IN DT JJ NN , NNP , VBP DT NN VBD IN NNP POS NN , WDT VBD NN RB IN NNP NNP NNP VBD VBN TO VB IN DT NN VBG NNP POS NN NN .\nThe media bill was passed Wednesday and has been sent to President Kibaki for his signature .\tDT NNS NN VBD VBN NNP CC VBZ VBN VBN TO NNP NNP IN PRP$ NN .\nThe measure would set heavy fines and prison sentences for perceived press offenses , would allow government ministers to dictate content on broadcast media and would allow the seizure of equipment .\tDT NN MD VB JJ NNS CC NN NNS IN VBN NN NNS , MD VB NN NNS TO VB NN IN NN NNS CC MD VB DT NN IN NN .\nKenyan and international media advocacy groups are urging Mr. Kibaki not to sign the bill .\tJJ CC JJ NNS NN NNS VBP VBG NNP NNP RB TO VB DT NN .\nThe chairman of the Kenya Media Council , Wachira Waruru , called the measure a blow against freedom of the press .\tDT NN IN DT NNP NNP NNP , NNP NNP , VBD DT NN DT NN IN NN IN DT NN .\nUkraine 's parliament has adopted a bill describing the famine of the 1930s as genocide .\tNNP POS NN VBZ VBN DT NN VBG DT NN IN DT NNS IN NN .\nLawmakers Tuesday backed the measure , which calls the event genocide against the Ukrainian people .\tNNS NNP VBD DT NN , WDT VBZ DT NN NN IN DT JJ NNS .\nAn earlier draft had called it genocide against the Ukrainian nation .\tDT JJR NN VBD VBN PRP NN IN DT JJ NN .\nUkraine was under Soviet leadership at the time of the famine in 1932 - 33 .\tNNP VBD IN JJ NN IN DT NN IN DT NN IN CD IN CD .\nThe famine killed as many as 10 million people in what was then Soviet Ukraine .\tDT NN VBD RB JJ IN CD CD NNS IN WP VBD RB JJ NNP .\nMany analysts say the famine was not from natural causes , but instead was the result of government policies under Soviet dictator Josef Stalin .\tJJ NNS VBP DT NN VBD RB IN JJ NNS , CC RB VBD DT NN IN NN NNS IN JJ NN NNP NNP .\nUkrainian President Viktor Yushchenko supported the bill .\tJJ NNP NNP NNP VBD DT NN .\nOn Saturday , he spoke in the capital , Kiev , to mark the 73rd anniversary of the tragedy , known in Ukraine as the Holodomor .\tIN NNP , PRP VBD IN DT NN , NNP , TO VB DT JJ NN IN DT NN , VBN IN NNP IN DT NNP .\nChina denies it is failing to keep the Olympic Games and politics separate after a Communist party official criticized the Dalai Lama at a torch relay ceremony in Tibet .\tNNP VBZ PRP VBZ VBG TO VB DT NNP NNPS CC NNS JJ IN DT JJ NN NN VBD DT NNP NNP IN DT NN NN NN IN NNP .\nThe Chinese foreign ministry Thursday said the official 's comments did not contradict China 's opposition to politicizing the Olympics .\tDT JJ JJ NN NNP VBD DT NN POS NNS VBD RB VB NNP POS NN TO VBG DT NNS .\nThe ministry said the comments were meant to create a stable environment for the Olympics .\tDT NN VBD DT NNS VBD VBN TO VB DT JJ NN IN DT NNS .\nEarlier Thursday , the International Olympic Committee urged the Beijing Organizing Committee for the Olympic games to make sure such situations do not happen again .\tRBR NNP , DT NNP NNP NNP VBD DT NNP NNP NNP IN DT NNP NNS TO VB JJ JJ NNS VBP RB VB RB .\nThe IOC said it regrets that the political statements were made during the closing torch relay ceremony Saturday in Tibet 's capital , Lhasa .\tDT NNP VBD PRP VBZ IN DT JJ NNS VBD VBN IN DT NN NN NN NN NNP IN NNP POS NN , NNP .\nAnti-Chinese government riots that erupted in Lhasa in March sparked a harsh crackdown by Chinese troops .\tJJ NN NNS WDT VBD IN NNP IN NNP VBD DT JJ NN IN JJ NNS .\nThe crackdown led to chaotic demonstrations at several stops on the international leg of the torch relay for the Beijing Olympics that begin in August .\tDT NN VBD TO JJ NNS IN JJ NNS IN DT JJ NN IN DT NN NN IN DT NNP NNS WDT VBP IN NNP .\nNew Zealand 's cricket team has scored a morale-boosting win over Bangladesh in the first of three one-day internationals in New Zealand .\tNNP NNP POS NN NN VBZ VBN DT JJ NN IN NNP IN DT NN IN CD JJ NNS IN NNP NNP .\nDespite Bangladesh 's highest total ever in a limited-overs match , the Kiwis were able to win the match by six wickets in Auckland .\tIN NNP POS JJS JJ RB IN DT JJ NN , DT NNS VBD JJ TO VB DT NN IN CD NNS IN NNP .\nOpening batsman Jamie How led all scorers with 88 runs as New Zealand reached 203-4 in 42.1 overs .\tVBG NN NNP NNP VBD DT NNS IN CD NNS IN NNP NNP VBD CD IN CD NNS .\nThe score was in response to Bangladesh 's total of 201 all out in 46.3 overs .\tDT NN VBD IN NN TO NNP POS NN IN CD DT RP IN CD NNS .\nMohammad Ashraful led the visitors with 70 runs , including 10 fours and one six on the short boundaries of the Eden Park ground .\tNNP NNP VBD DT NNS IN CD NNS , VBG CD NNS CC CD CD IN DT JJ NNS IN DT NNP NNP NN .\nThe win was encouraging for New Zealand , which has suffered disappointing losses in its recent tours of South Africa and Australia .\tDT NN VBD VBG IN NNP NNP , WDT VBZ VBN JJ NNS IN PRP$ JJ NNS IN NNP NNP CC NNP .\nThe second one-day international against Bangladesh is Friday in Napier .\tDT JJ JJ JJ IN NNP VBZ NNP IN NNP .\nInsurgents have struck again in Iraq , this time assassinating a senior government official , as they try to derail next month 's national elections .\tNNS VBP VBN RB IN NNP , DT NN VBG DT JJ NN NN , IN PRP VBP TO VB JJ NN POS JJ NNS .\nPolice say unidentified gunmen killed the director of the Communications Ministry in a drive-by shooting as he headed to work Thursday , in Baghdad .\tNNS VBP JJ NNS VBD DT NN IN DT NNP NNP IN DT JJ NN IN PRP VBD TO VB NNP , IN NNP .\nMeanwhile , the death toll from a bomb attack in the Shi'ite holy city of Karbala Wednesday , climbed to 10 dead and at least 30 wounded .\tRB , DT NN NN IN DT NN NN IN DT NNP JJ NN IN NNP NNP , VBD TO CD JJ CC IN JJS CD VBD .\nAnd Italy 's government says it is investigating reports that one of its nationals may have been kidnapped and killed in Iraq .\tCC NNP POS NN VBZ PRP VBZ VBG NNS IN CD IN PRP$ NNS MD VB VBN VBN CC VBN IN NNP .\nIn a separate development , attorneys for ousted leader Saddam Hussein say he met Thursday , for the first time since his capture last year with a defense lawyer .\tIN DT JJ NN , NNS IN JJ NN NNP NNP VBP PRP VBD NNP , IN DT JJ NN IN PRP$ NN JJ NN IN DT NN NN .\nInvestigative hearings of Saddam 's top lieutenants are to begin very soon , but the former dictator is likely to be among the last tried .\tJJ NNS IN NNP POS JJ NNS VBP TO VB RB RB , CC DT JJ NN VBZ JJ TO VB IN DT JJ JJ .\nThe Polish Defense Ministry says seven soldiers serving with the NATO-led mission in Afghanistan have been detained for the killing of civilians in the eastern part of the country .\tDT JJ NNP NNP VBZ CD NNS VBG IN DT JJ NN IN NNP VBP VBN VBN IN DT NN IN NNS IN DT JJ NN IN DT NN .\nIn a statement released Tuesday , Polish military prosecutors say the soldiers were detained for violating international law , specifically the Hague and Geneva Conventions .\tIN DT NN VBN NNP , JJ JJ NNS VBP DT NNS VBD VBN IN VBG JJ NN , RB DT NNP CC NNP NNS .\nThe Afghan civilians were killed during a firefight between the Polish troops and militants on August 16 .\tDT JJ NNS VBD VBN IN DT NN IN DT JJ NNS CC NNS IN NNP CD .\nPoland currently has 1,200 troops serving in Afghanistan .\tNNP RB VBZ CD NNS VBG IN NNP .\nAlso Tuesday , Afghan President Hamid Karzai said corruption and embezzlement among government officials is on the rise .\tRB NNP , JJ NNP NNP NNP VBD NN CC NN IN NN NNS VBZ IN DT NN .\nHe says officials should work with the Afghan people to serve the country without deceiving or exploiting it .\tPRP VBZ NNS MD VB IN DT JJ NNS TO VB DT NN IN VBG CC VBG PRP .\nMr. Karzai 's comments came during a speech to village elders in the capital , Kabul .\tNNP NNP POS NNS VBD IN DT NN TO NN NNS IN DT NN , NNP .\nWitnesses say a top Palestinian bombmaker for the militant Islamic Jihad group was killed late Sunday in an Israeli missile strike in Gaza City .\tNNS VBP DT JJ NN NN IN DT JJ NNP NNP NN VBD VBN JJ NNP IN DT JJ NN NN IN NNP NNP .\nA second missile struck another car nearby , killing the head of a Palestinian squad linked to rocket attacks in southern Israel .\tDT JJ NN VBD DT NN RB , VBG DT NN IN DT JJ NN VBN TO NN NNS IN JJ NNP .\nFriday , Islamic Jihad claimed responsibility for firing rockets that wounded an Israeli infant and two adults in southern Israel .\tNNP , NNP NNP VBD NN IN VBG NNS WDT VBD DT JJ NN CC CD NNS IN JJ NNP .\nSeparately , Israeli helicopters fired missiles early Sunday at a building occupied by militants from the al-Aqsa Martyrs Brigades .\tRB , JJ NNS VBD NNS JJ NNP IN DT NN VBN IN NNS IN DT NNP NNP NNP .\nMedics said three members of the group were killed .\tNNP VBD CD NNS IN DT NN VBD VBN .\nIn other developments , Israel has agreed to release $ 54 million of Palestinian tax revenues it withheld after the militant group Hamas won Palestinian legislative elections last month .\tIN JJ NNS , NNP VBZ VBN TO VB $ CD CD IN JJ NN NNS PRP VBD IN DT JJ NN NNP VBD JJ JJ NNS JJ NN .\nIsrael says the monthly transfers will be suspended if a Hamas-led government is formed , as expected .\tNNP VBZ DT JJ NNS MD VB VBN IN DT JJ NN VBZ VBN , IN VBN .\nFighting has resumed in Uganda after the collapse of a cease-fire agreement designed to open the way to formal peace talks .\tNN VBZ VBN IN NNP IN DT NN IN DT NN NN VBN TO VB DT NN TO JJ NN NNS .\nThe Ugandan military says rebels from the Lord 's Resistance Army ambushed an army vehicle early Saturday , near the northern town of Gulu .\tDT JJ NN VBZ NNS IN DT NNP POS NN NNP VBD DT NN NN JJ NNP , IN DT JJ NN IN NNP .\nUgandan President Yoweri Museveni ordered the army to resume attacks against rebel forces after a temporary cease-fire ran out Friday night .\tJJ NNP NNP NNP VBD DT NN TO VB NNS IN JJ NNS IN DT JJ NN VBD RB NNP NN .\nBut the president also left open the possibility of future negotiations .\tCC DT NN RB VBD RP DT NN IN JJ NNS .\nBoth sides were expected to sign a wide-ranging truce on Friday , following a series of meetings this week .\tDT NNS VBD VBN TO VB DT JJ NN IN NNP , VBG DT NN IN NNS DT NN .\nBut the deal was delayed after rebels asked for more time to study the proposal .\tCC DT NN VBD VBN IN NNS VBD IN JJR NN TO VB DT NN .\nThe Lord 's Resistance Army has been fighting to overthrow the Ugandan government since 1987 , displacing more than one million people in the north .\tDT NNP POS NN NNP VBZ VBN VBG TO VB DT JJ NN IN CD , VBG JJR IN CD CD NNS IN DT NN .\nThe rebels routinely attack civilians and kidnap children for forced labor as soldiers and sex slaves .\tDT NNS RB VBP NNS CC NN NNS IN VBN NN IN NNS CC NN NNS .\nJurors in the Phil Spector murder trial were on June 5 shown a handgun found at the feet of an actress slain in the music producer 's mansion .\tNNS IN DT NNP NNP NN NN VBD IN NNP CD VBN DT NN VBN IN DT NNS IN DT NN NN IN DT NN NN POS NN .\nLos Angeles County sheriff 's detective Mark Lilienfeld displayed the Colt Cobra revolver , still covered in dried blood .\tNNP NNP NNP NN POS NN NNP NNP VBD DT NNP NNP NN , RB VBN IN JJ NN .\nIt was not registered and had never definitively been linked to the 67-year-old Spector , who denies shooting Lana Clarkson in February , 2003 .\tPRP VBD RB VBN CC VBD RB RB VBN VBN TO DT JJ NN , WP VBZ VBG NNP NNP IN NNP , CD .\nHe maintains the 40-year-old actress shot herself , and his defense attorneys are likely to argue the handgun belonged to Clarkson .\tPRP VBZ DT JJ NN VBD PRP , CC PRP$ NN NNS VBP JJ TO VB DT NN VBD TO NNP .\nLilienfeld also displayed photographs of a holster which fit the handgun , found in a bureau near Clarkson 's body .\tNNP RB VBD NNS IN DT NN WDT VBP DT NN , VBD IN DT NN IN NNP POS NN .\nHe testified about Spector 's small arsenal of firearms , including ammunition of the same type which killed Clarkson .\tPRP VBD IN NNP POS JJ NN IN NNS , VBG NN IN DT JJ NN WDT VBD NNP .\nPhil Spector rose to fame in the 1960s , crafting a series of classic pop singles using his ' Wall of Sound ' production technique .\tNNP NNP VBD TO NN IN DT NNS , VBG DT NN IN JJ NN VBZ VBG PRP$ `` NNP IN NNP `` NN NN .\nFormer world number one and Wimbledon tennis champion Maria Sharapova of Russia has withdrawn from next month 's Australian women 's hard court championships because of a shoulder injury .\tJJ NN NN CD CC NNP NN NN NNP NNP IN NNP VBZ VBN IN JJ NN POS JJ NNS POS JJ NN NNS IN IN DT NN NN .\nSharapova said in a statement that the shoulder strain forced her pullout from the January second to seventh event in Gold Coast .\tNNP VBD IN DT NN IN DT NN NN VBD PRP$ NN IN DT NNP JJ TO JJ NN IN NNP NNP .\nThe Russian star said she is not sure she will be ready to play in the Australian Open , the first major tournament of 2006 .\tDT JJ NN VBD PRP VBZ RB JJ PRP MD VB JJ TO VB IN DT JJ NNP , DT JJ JJ NN IN CD .\nSharapova reached the semi-finals in three of the four major tournaments in 2005 and won three tournaments on the WTA tour .\tNNP VBD DT NNS IN CD IN DT CD JJ NNS IN CD CC VBD CD NNS IN DT NNP NN .\nHer injury hindered her performance in the second half of the season .\tPRP$ NN VBD PRP$ NN IN DT JJ NN IN DT NN .\nThe Aussie women 's hard court tournament will also mark the return of another former world number one player - Martina Hingis of Switzerland will play in the event and plans to play in the Australian Open beginning January 16 .\tDT JJ NNS POS JJ NN NN MD RB VB DT NN IN DT JJ NN NN CD NN IN NNP NNP IN NNP MD VB IN DT NN CC VBZ TO VB IN DT JJ NN VBG NNP CD .\nRomanian authorities are reporting new cases of bird flu in remote villages in the southwestern part of the country .\tJJ NNS VBP VBG JJ NNS IN NN NN IN JJ NNS IN DT JJ NN IN DT NN .\nOfficials say they have ordered the slaughter of more than 8,000 chickens , after determining that they were victims of an H5-type of bird flu .\tNNS VBP PRP VBP VBN DT NN IN JJR IN CD NNS , IN VBG IN PRP VBD NNS IN DT NN IN NN NN .\nThey say samples are being sent to a laboratory to determine if the infected birds contracted the highly dangerous H5N1 strain that has killed more than 60 people in Asia since 2003 .\tPRP VBP NNS VBP VBG VBN TO DT NN TO VB IN DT JJ NNS VBD DT RB JJ NNP NN WDT VBZ VBN JJR IN CD NNS IN NNP IN CD .\nRomania is located on a major flyway for migrating wild birds , and it was the first country on the European mainland to detect a case of the deadly strain .\tNNP VBZ VBN IN DT JJ NN IN VBG JJ NNS , CC PRP VBD DT JJ NN IN DT JJ NN TO VB DT NN IN DT JJ NN .\nMeanwhile , the European Parliament has approved measures to deal with a possible crisis .\tRB , DT NNP NNP VBZ VBN NNS TO VB IN DT JJ NN .\nThese include creation of an improved early warning system and a coordinated emergency plan in the event of a pandemic .\tDT VBP NN IN DT VBN JJ NN NN CC DT JJ NN NN IN DT NN IN DT NN .\nIran says it is determined to resume uranium enrichment whether talks with the European Union over its nuclear program succeed or fail .\tNNP VBZ PRP VBZ VBN TO VB NN NN IN NNS IN DT NNP NNP IN PRP$ JJ NN VB CC VB .\nIranian Foreign Ministry spokesman Hamid Reza Asefi told a weekly news conference in Tehran Sunday the government will continue to suspend uranium enrichment during the talks .\tJJ NNP NNP NN NNP NNP NNP VBD DT JJ NN NN IN NNP NNP DT NN MD VB TO VB NN NN IN DT NNS .\nBut he says Iran will not allow negotiations to go on for what it would consider an unreasonable period of time .\tCC PRP VBZ NNP MD RB VB NNS TO VB IN IN WP PRP MD VB DT JJ NN IN NN .\nIranian officials have made similar comments before .\tJJ NNS VBP VBN JJ NNS IN .\nIranian and EU negotiators are due to resume talks in London on April 29 .\tJJ CC NNP NNS VBP JJ TO VB NNS IN NNP IN NNP CD .\nLast November , Tehran agreed to suspend uranium enrichment while it negotiated a settlement to its nuclear dispute with the European Union .\tJJ NNP , NNP VBD TO VB NN NN IN PRP VBD DT NN TO PRP$ JJ NN IN DT NNP NNP .\nEurope and the United States are concerned that Tehran is secretly trying to manufacture nuclear weapons .\tNNP CC DT NNP NNPS VBP VBN IN NNP VBZ RB VBG TO VB JJ NNS .\nTehran says its nuclear facilities will only be used to generate electricity .\tNNP VBZ PRP$ JJ NNS MD RB VB VBN TO VB NN .\nFunerals were held Tuesday for 17 people killed by a drunken tractor driver in Yuanshi county , a rural part of China 's northern Hebei province .\tNNS VBD VBN NNP IN CD NNS VBN IN DT JJ NN NN IN NNP NN , DT JJ NN IN NNP POS JJ NNP NN .\nLocal officials say 38-year-old Li Xianliang went on a killing rampage Sunday after arguing with his supervisor about money while drinking .\tJJ NNS VBP JJ NNP NNP VBD IN DT NN NN NNP IN VBG IN PRP$ NN IN NN IN NN .\nLi allegedly killed his boss and later drove an earth-moving vehicle down a village road , tearing through buildings and crushing cars along the way .\tNNP RB VBD PRP$ NN CC RB VBD DT JJ NN IN DT NN NN , VBG IN NNS CC VBG NNS IN DT NN .\nThe Associated Press said desperate villagers tried to stop the driver by jumping on his vehicle .\tDT NNP NNP VBD JJ NNS VBD TO VB DT NN IN VBG IN PRP$ NN .\nIt said a villager finally managed to stab him .\tPRP VBD DT NN RB VBD TO VB PRP .\nLi was later subdued and taken into police custody .\tNNP VBD RB VBN CC VBN IN NN NN .\nThe Chinese government has been dealing with a growing number of killing sprees , often committed by men angered about their working conditions or family relations .\tDT JJ NN VBZ VBN VBG IN DT VBG NN IN NN NNS , RB VBN IN NNS VBN IN PRP$ VBG NNS CC NN NNS .\nSome of the victims have included children .\tDT IN DT NNS VBP VBN NNS .\nCourts usually hand out death sentences to the perpetrators .\tNNS RB VB RP NN NNS TO DT NNS .\nThe U.N. food program says Kenya has allowed about 60 of its trucks to cross into Somalia after a wait of several weeks .\tDT NNP NN NN VBZ NNP VBZ VBN IN CD IN PRP$ NNS TO VB IN NNP IN DT NN IN JJ NNS .\nThe World Food Program said Friday the trucks were allowed to cross the border this week following appeals from the international community .\tDT NNP NNP NNP VBD NNP DT NNS VBD VBN TO VB DT NN DT NN VBG NNS IN DT JJ NN .\nThe agency says there are still about 80 food trucks on the border and it hopes they will be allowed to cross soon .\tDT NN VBZ EX VBP RB IN CD NN NNS IN DT NN CC PRP VBZ PRP MD VB VBN TO VB RB .\nKenya closed its border with Somalia in January during fighting that pitted Islamic militia against Somali government troops and their Ethiopian allies .\tNNP VBD PRP$ NN IN NNP IN NNP IN VBG IN VBD JJ NN IN JJ NN NNS CC PRP$ JJ NNS .\nHowever , the World Food Program says it was able to send food trucks into Somalia until recently .\tRB , DT NNP NNP NNP VBZ PRP VBD JJ TO VB NN NNS IN NNP IN RB .\nThe food that just crossed the border is intended for tens of thousands of people in Somalia 's Gedo region , where malnutrition rates are at emergency levels .\tDT NN WDT RB VBD DT NN VBZ VBN IN NNS IN NNS IN NNS IN NNP POS NNP NN , WRB NN NNS VBP IN NN NNS .\nPiracy in Somalia 's waters has restricted the movement of relief vessels and forced aid agencies to use overland routes .\tNNP IN NNP POS NNS VBZ VBN DT NN IN NN NNS CC JJ NN NNS TO VB JJ NNS .\nMalawi 's parliament has passed laws paving the way for the possible impeachment of President Bingu wa Mutharika .\tNNP POS NN VBZ VBN NNS VBG DT NN IN DT JJ NN IN NNP NNP NNP NNP .\nA majority of lawmakers passed the legislation Tuesday outlining how to carry out impeachment proceedings .\tDT NN IN NNS VBD DT NN NNP VBG WRB TO VB RP NN NNS .\nMalawi 's constitution allows for impeachment , but until now no laws existed for how this could be done .\tNNP POS NN VBZ IN NN , CC IN RB DT NNS VBD IN WRB DT MD VB VBN .\nMr. Mutharika 's opponents , led by members of the opposition United Democratic Front ( UDF ) , accuse the president of ignoring the constitution to set up his own party , and of misusing public funds .\tNNP NNP POS NNS , VBN IN NNS IN DT NN NNP NNP NNP LRB NNP RRB , VBP DT NN IN VBG DT NN TO VB RP PRP$ JJ NN , CC IN VBG JJ NNS .\nPresident Mutharika quit the UDF party earlier this year after launching a major crackdown on corruption that targeted several high level officials of the party .\tNNP NNP VBD DT NNP NN RBR DT NN IN VBG DT JJ NN IN NN WDT VBD JJ JJ NN NNS IN DT NN .\nMeanwhile Tuesday , anti-corruption officials announced they have summoned former President Bakili Muluzi to answer questions about alleged graft during his time in office .\tRB NNP , JJ NNS VBD PRP VBP VBN JJ NNP NNP NNP TO VB NNS IN JJ NN IN PRP$ NN IN NN .\nIndia 's cricket team has scored 365-5 by the close of play on the first day of its third and final test match against Pakistan in Bangalore .\tNNP POS NN NN VBZ VBN CD IN DT NN IN NN IN DT JJ NN IN PRP$ JJ CC JJ NN NN IN NNP IN NNP .\nYuvraj Singh and Sourav Ganguly both had centuries for the home side , with Singh blasting a career-best 169 runs while Ganguly had an unbeaten 125 .\tNNP NNP CC NNP NNP DT VBD NNS IN DT NN NN , IN NNP VBG DT JJ CD NNS IN NNP VBD DT JJ CD .\nSingh had 28 fours and a six in his time at the crease , while Ganguly hammered 20 fours .\tNNP VBD CD NNS CC DT CD IN PRP$ NN IN DT NN , IN RB VBN CD NNS .\nPakistani bowler Yasir Araft took three wickets while allowing 98 runs in 22 overs .\tJJ NN NNP NNP VBD CD NNS IN VBG CD NNS IN CD NNS .\nIndia last won a home series against Pakistan in 1979 , but leads this series 1-0 after winning the first test by six wickets .\tNNP JJ VBD DT NN NN IN NNP IN CD , CC VBZ DT NN CD IN VBG DT JJ NN IN CD NNS .\nThe second test was a draw .\tDT JJ NN VBD DT NN .\nWitnesses in Baghdad say a bomb blast outside the Iraqi national journalists ' union has wounded the union 's leader and at least three other people .\tNNS IN NNP VBP DT NN NN IN DT JJ JJ NNS POS NN VBZ VBN DT NN POS NN CC IN JJS CD JJ NNS .\nWitnesses say the bomb exploded in central Baghdad Saturday as the union leader was saying goodbye to three guests .\tNNS VBP DT NN VBD IN JJ NNP NNP IN DT NN NN VBD VBG NN TO CD NNS .\nNo one has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nGunmen shot and fatally wounded the union 's former leader , Shihab al-Tamimi , in February .\tNNS VBD CC RB VBD DT NN POS JJ NN , NNP NNP , IN NNP .\nThe official died of his wounds four days after being ambushed in Baghdad .\tDT NN VBD IN PRP$ NNS CD NNS IN VBG VBN IN NNP .\nThe international Committee to Protect Journalists says Iraq has become the world 's most dangerous country for journalists since the U.S.-led invasion in 2003 .\tDT JJ NN TO VB NNS VBZ NNP VBZ VBN DT NN POS RBS JJ NN IN NNS IN DT JJ NN IN CD .\nThe United States invaded Iraq citing concerns about alleged weapons of mass destruction programs .\tDT NNP NNPS VBD NNP VBG NNS IN JJ NNS IN NN NN NNS .\nNo such weapons were found .\tDT JJ NNS VBD VBN .\nEl Salvador is preparing to send another contingent of 380 soldiers to Iraq .\tNNP NNP VBZ VBG TO VB DT NN IN CD NNS TO NNP .\nSalvadoran President Antonio Saca said the troops will be participating in humanitarian activities such as building water systems and other infrastructure projects .\tJJ NNP NNP NNP VBD DT NNS MD VB VBG IN JJ NNS JJ IN NN NN NNS CC JJ NN NNS .\nThe French news agency , AFP , reports the latest troops will relieve an earlier contingent stationed about 100 kilometers south of Baghdad .\tDT JJ NN NN , NNP , VBZ DT JJS NNS MD VB DT JJR NN VBN IN CD NNS RB IN NNP .\nEl Salvador is the only Latin American country which still has troops in Iraq .\tNNP NNP VBZ DT RB JJ JJ NN WDT RB VBZ NNS IN NNP .\nChina has named Donald Tsang Hong Kong 's acting Chief Executive after accepting the resignation of Tung Chee-hwa , the territory 's leader .\tNNP VBZ VBN NNP NNP NNP NNP POS VBG NNP NNP IN VBG DT NN IN NNP NNP , DT NN POS NN .\nMr. Tsang , previously Hong Kong 's second-ranking official , told a news conference Saturday he will not reshuffle the cabinet and will serve only until another leader is elected on July 10 .\tNNP NNP , RB NNP NNP POS JJ NN , VBD DT NN NN NNP PRP MD RB VB DT NN CC MD VB RB IN DT NN VBZ VBN IN NNP CD .\nThe next Chief Executive will complete the five-year term to which Mr. Tung was elected in 2002 by a Chinese-sanctioned electoral college .\tDT JJ NNP NNP MD VB DT JJ NN TO WDT NNP NNP VBD VBN IN CD IN DT JJ JJ NN .\nMr. Tung , who is 67 , announced his resignation on Thursday , citing health reasons .\tNNP NNP , WP VBZ CD , VBD PRP$ NN IN NNP , VBG NN NNS .\nHe rejected suggestions that China forced his resignation .\tPRP VBD NNS IN NNP VBD PRP$ NN .\nBut in December , Chinese President Hu Jintao publicly reprimanded Mr. Tung for his performance , fueling rumors that China was considering a leadership change .\tCC IN NNP , JJ NNP NNP NNP RB VBD NNP NNP IN PRP$ NN , VBG NNS IN NNP VBD VBG DT NN NN .\nOn Saturday , Mr. Tung was named one of several vice chairmen of a high-ranking Chinese advisory body .\tIN NNP , NNP NNP VBD VBN CD IN JJ NN NNS IN DT JJ JJ JJ NN .\nResearchers say it is safe for children to get the vaccine for measles , mumps and rubella without a risk of developing autism .\tNNS VBP PRP VBZ JJ IN NNS TO VB DT NN IN NNS , NNS CC NN IN DT NN IN VBG NN .\nTen years ago , another study concluded there might be a connection .\tCD NNS RB , DT NN VBD EX MD VB DT NN .\nThat study was later retracted , but the fear lived on .\tDT NN VBD RB VBN , CC DT NN VBD IN .\nNow new research provides strong evidence against any association .\tRB JJ NN VBZ JJ NN IN DT NN .\nVOA 's Carol Pearson has more .\tNNP POS NNP NNP VBZ RBR .\nNiger 's electoral commission says it is delaying the country 's upcoming presidential election by nearly a month .\tNNP POS JJ NN VBZ PRP VBZ VBG DT NN POS JJ JJ NN IN RB DT NN .\nThe commission said Tuesday that the election to restore civilian rule after a military coup earlier this year will now be on January 31 , 2011 instead of January 3 .\tDT NN VBD NNP IN DT NN TO VB JJ NN IN DT JJ NN RBR DT NN MD RB VB IN NNP CD , CD IN IN NNP CD .\nIt is the second postponement for Niger 's presidential election .\tPRP VBZ DT JJ NN IN NNP POS JJ NN .\nIn May a spokesman for the military junta set the election for December 26 , but election officials said they needed more time to prepare .\tIN NNP DT NN IN DT JJ NN VBD DT NN IN NNP CD , CC NN NNS VBD PRP VBD JJR NN TO VB .\nThe military junta came into power in February , after ousting unpopular president Mamadou Tandja , who had refused to leave officer when his term expired last year .\tDT JJ NN VBD IN NN IN NNP , IN VBG JJ NN NNP NNP , WP VBD VBN TO VB NN WRB PRP$ NN VBD JJ NN .\nThe Sri Lankan military reports new exchanges of artillery and mortar fire with Tamil Tiger rebels trying to break through government lines to capture Jaffna town and the northern Jaffna peninsula .\tDT NNP JJ JJ VBZ JJ NNS IN NN CC NN NN IN NNP NNP NNS VBG TO VB IN NN NNS TO VB NNP NN CC DT JJ NNP NN .\nA Defense Ministry spokesman Major Upali Rajapakse said Sunday the rebels began an offensive nine days ago in an attempt to recapture the Tamil-majority area they lost in 1995 .\tDT NNP NNP NN NNP NNP NNP VBD NNP DT NNS VBD DT JJ CD NNS RB IN DT NN TO VB DT JJ NN PRP VBD IN CD .\nHe said the military has successfully resisted the push .\tPRP VBD DT NN VBZ RB VBN DT NN .\nHundreds of rebels , government troops and civilians have been killed in the latest fighting .\tNNS IN NNS , NN NNS CC NNS VBP VBN VBN IN DT JJS NN .\nThe military says more than 80 rebels were killed since Friday , but there was no immediate reaction from the Tigers .\tDT JJ VBZ JJR IN CD NNS VBD VBN IN NNP , CC EX VBD DT JJ NN IN DT NNP .\nThe United Nations has appealed to the warring sides to allow aid workers to deliver supplies .\tDT NNP NNP VBZ VBN TO DT VBG NNS TO VB NN NNS TO VB NNS .\nThe U.N. says refugees cut off by the fighting are running short of food and water .\tDT NNP VBZ NNS VBN RP IN DT NN VBP VBG RB IN NN CC NN .\nA leader of the Palestinian militant group Hamas has suggested the possibility of future negotiations with Israel through a third party .\tDT NN IN DT JJ JJ NN NNP VBZ VBN DT NN IN JJ NNS IN NNP IN DT JJ NN .\nMahmoud al-Zahar Monday said ' negotiation is not a taboo . '\tNNP NNP NNP VBD `` NN VBZ RB DT NN . ``\nThe comments come two days before Palestinian parliamentary elections , as surveys show almost even support for Hamas and Fatah , the political movement of Palestinian Prime Minister Mahmoud Abbas .\tDT NNS VBP CD NNS IN JJ JJ NNS , IN NNS VBP RB RB NN IN NNP CC NNP , DT JJ NN IN JJ NNP NNP NNP NNP .\nHamas is dedicated to the destruction of Israel and its military wing has been involved in scores of attacks .\tNNP VBZ VBN TO DT NN IN NNP CC PRP$ JJ NN VBZ VBN VBN IN NNS IN NNS .\nMeanwhile , Israeli military officials say their troops will avoid entering Palestinian towns during the next few days so as not to interfere with the elections - unless it is necessary to foil attacks on Israelis .\tRB , JJ JJ NNS VBP PRP$ NNS MD VB VBG JJ NNS IN DT JJ JJ NNS RB IN RB TO VB IN DT NNS IN IN PRP VBZ JJ TO VB NNS IN NNS .\nIsraeli troops arrested 24 Palestinians , including members of Hamas and Islamic Jihad , in raids overnight .\tJJ NNS VBN CD NNS , VBG NNS IN NNP CC NNP NNP , IN NNS RB .\nGerman prosecutors say a second suspect in a failed plot to blow up German trains has turned himself in to authorities in Lebanon .\tJJ NNS VBP DT JJ NN IN DT JJ NN TO VB RP JJ NNS VBZ VBN PRP IN TO NNS IN NNP .\nGermany 's federal prosecutor says Jihad Hamad , 19 , surrendered to police in the northwestern Lebanese coastal city of Tripoli .\tNNP POS JJ NN VBZ NNP NNP , CD , VBD TO VB IN DT JJ JJ JJ NN IN NNP .\nGerman authorities say the suspect is one of two Lebanese men accused of planting suitcase bombs on trains in Cologne July 31 .\tJJ NNS VBP DT NN VBZ CD IN CD JJ NNS VBN IN VBG NN NNS IN NNS IN NNP NNP CD .\nThe devices failed to explode .\tDT NNS VBD TO VB .\nGerman police arrested the first suspect Youssef Mohamad el Hajdib , 21 , on Saturday .\tJJ NN VBD DT JJ NN NNP NNP NNP NNP , CD , IN NNP .\nHe was detained in the German city of Kiel , as he apparently was trying to flee the country .\tPRP VBD VBN IN DT JJ NN IN NNP , IN PRP RB VBD VBG TO VB DT NN .\nGerman prosecutors say they will arrange to Jihad Hamad extradited to Germany .\tJJ NNS VBP PRP MD VB TO NNP NNP VBD TO NNP .\nBoth men are accused of belonging to a terrorist organization .\tDT NNS VBP VBN IN VBG TO DT JJ NN .\nThe International Committee of the Red Cross is calling on Israel to allow Palestinians from the Gaza Strip to resume visits with relatives held in Israeli jails .\tDT NNP NNP IN DT NNP NNP VBZ VBG IN NNP TO VB NNS IN DT NNP NNP TO VB NNS IN NNS VBN IN JJ NNS .\nIn a statement Monday , the Red Cross says Israel suspended the visits last year after Hamas militants took control of the Gaza Strip .\tIN DT NN NNP , DT NNP NNP VBZ NNP VBD DT NNS JJ NN IN NNP NNS VBD NN IN DT NNP NNP .\nThe Red Cross had been organizing the visits since 1967 .\tDT NNP NNP VBD VBN VBG DT NNS IN CD .\nThe organization says that because the visits have been stopped , the families of more than 900 detainees have been deprived of direct contact with their detained relatives for nearly a year .\tDT NN VBZ IN IN DT NNS VBP VBN VBN , DT NNS IN JJR IN CD NNS VBP VBN VBN IN JJ NN IN PRP$ VBN NNS IN RB DT NN .\nRed Cross officials say the detainees depend on the visits not only for psychological support but for material assistance such as clothing and blankets .\tNNP NNP NNS VBP DT NNS VBP IN DT NNS RB RB IN JJ NN CC IN NN NN JJ IN NN CC NNS .\nThe Red Cross says that while it understands Israel 's security concerns , it strongly believes those concerns alone can not justify a complete suspension of family visits to detainees .\tDT NNP NNP VBZ IN IN PRP VBZ NNP POS NN NNS , PRP RB VBZ DT NNS RB MD RB VB DT JJ NN IN NN NNS TO NNS .\nFour Palestinians were killed and at least 18 wounded in a violent feud between rival clans in the Gaza Strip .\tCD NNS VBD VBN CC IN JJS CD VBN IN DT JJ NN IN JJ NNS IN DT NNP NNP .\nA Hamas security force commander was shot to death Saturday in the early morning hours in the Khan Yunis refugee camp .\tDT NNP NN NN NN VBD VBN TO NN NNP IN DT JJ NN NNS IN DT NNP NNP NN NN .\nThe Hamas military wing accused a rival clan in the Gaza Strip of ties to the killing .\tDT NNP JJ NN VBD DT JJ NN IN DT NNP NNP IN NNS TO DT NN .\nThe attack triggered a gunbattle that killed two members of the rival Fatah family and one bystander .\tDT NN VBD DT NN WDT VBD CD NNS IN DT JJ NNP NN CC CD NN .\nNews reports say both factions say the killing was motivated by a family feud , and was not connected to the power struggle between President Mahmoud Abbas ' Fatah faction and the ruling Hamas party .\tNNP NNS VBP DT NNS VBP DT NN VBD VBN IN DT NN NN , CC VBD RB VBN TO DT NN NN IN NNP NNP NNP POS NNP NN CC DT NN NNP NN .\nThe Hamas-led government condemned the violence , saying the Palestinian government is committed to a power-sharing agreement reached with the Fatah faction of President Mahmoud Abbas ealier this month .\tDT JJ NN VBD DT NN , VBG DT JJ NN VBZ VBN TO DT JJ NN VBN IN DT NNP NN IN NNP NNP NNP NN DT NN .\nPalestinian leaders are currently lobbying European countries to promote the unity government and end international sanctions .\tJJ NNS VBP RB VBG JJ NNS TO VB DT NN NN CC NN JJ NNS .\nItaly says it will campaign at the United Nations for a global ban on the death penalty after images of the hanging of Iraq 's former dictator shocked people worldwide .\tNNP VBZ PRP MD NN IN DT NNP NNPS IN DT JJ NN IN DT NN NN IN NNS IN DT NN IN NNP POS JJ NN VBD NNS JJ .\nPrime Minister Romano Prodi said Tuesday that his government will use Italy 's new seat in the U.N. Security Council to push for a ' universal moratorium ' on capital punishment .\tNNP NNP NNP NNP VBD NNP IN PRP$ NN MD VB NNP POS JJ NN IN DT NNP NNP NNP TO VB IN DT `` JJ NN `` IN NN NN .\nItaly joined the council on January 1 for a two-year term .\tNNP VBD DT NN IN NNP CD IN DT JJ NN .\nItalian politicians of all political affiliations expressed disgust at Saddam Hussein 's execution .\tJJ NNS IN DT JJ NNS VBD NN IN NNP NNP POS NN .\nIraq 's government reacted by accusing Italy of hypocrisy .\tNNP POS NN VBD IN VBG NNP IN NN .\nIt cited Italy 's 1945 public execution of fascist leader Benito Mussolini .\tPRP VBD NNP POS CD JJ NN IN JJ NN NNP NNP .\nPartisans killed the dictator and hanged him upside down in a Milan square .\tNNPS VBD DT NN CC VBD PRP RB RB IN DT NNP NN .\nMore than 80 U.N. member countries signed a non-binding declaration against the death penalty in December .\tJJR IN CD NNP NN NNS VBD DT JJ NN IN DT NN NN IN NNP .\nItaly and all other European Union countries do not permit capital punishment .\tNNP CC DT JJ NNP NNP NNS VBP RB VB NN NN .\nSkier Marco Buechel of Liechtenstein has won his first World Cup downhill title on a snow-shortened course in Val Gardena , Italy .\tNN NNP NNP IN NNP VBZ VBN PRP$ JJ NNP NNP NN NN IN DT JJ NN IN NNP NNP , NNP .\nBuechel finished the race in one minute , 27.99 seconds , just 0.02 ahead of Austrian Michael Walchhofer ( 1.28.01 ) .\tNNP VBD DT NN IN CD NN , CD NNS , RB CD RB IN JJ NNP NNP LRB CD RRB .\nErik Guay of Canada finished third , 0.2 behind Buechel ( 1.28.19 ) .\tNNP NNP IN NNP VBD JJ , CD IN NNP LRB CD RRB .\nIt was Buechel 's second World Cup win ever - he also won a super-giant slalom in Germany two years ago .\tPRP VBD NNP POS JJ NNP NNP VBP RB : PRP RB VBD DT JJ NN IN NNP CD NNS RB .\nAmerican Olympic hopeful Bode Miller of the United States finished eighth and recaptured the overall standings lead .\tJJ NNP NN NNP NNP IN DT NNP NNPS VBD JJ CC VBD DT JJ NNS VBP .\nMiller now has 442 points with Walchhofer second ( 420 points ) and Norway 's Aksel Lund Svindal third ( 417 ) .\tNNP RB VBZ CD NNS IN NNP JJ LRB CD NNS RRB CC NNP POS NNP NNP NNP JJ LRB CD RRB .\nSnow and strong winds delayed the start of the race by more than one hour .\tNN CC JJ NNS VBD DT NN IN DT NN IN JJR IN CD NN .\nThe course was also shortened by more than one kilometer and several jumps were removed .\tDT NN VBD RB VBN IN JJR IN CD NN CC JJ NNS VBD VBN .\nBritain 's Prime Minister Tony Blair says there were British fatalities in the crash of a C-130 military cargo plane in Iraq Sunday .\tNNP POS NNP NNP NNP NNP VBZ EX VBD JJ NNS IN DT NN IN DT JJ JJ NN NN IN NNP NNP .\nIn televised remarks , he paid tribute to those killed , but gave no further details or numbers .\tIN JJ NNS , PRP VBD NN TO DT VBN , CC VBD DT JJ NNS CC NNS .\nA British officer said the military would not release any details about the crew until families had been contacted .\tDT JJ NN VBD DT NN MD RB VB DT NNS IN DT NN IN NNS VBD VBN VBN .\nRescue teams have been sent to the crash site north of Baghdad .\tNN NNS VBP VBN VBN TO DT NN NN NN IN NNP .\nThe C-130 aircraft was traveling from the Iraqi capital to Balad when it went down .\tDT NN NN VBD VBG IN DT JJ NN TO NNP WRB PRP VBD RB .\nThere was no word on the cause of the crash or how many people were on board , but news reports say wreckage from the plane was spread over a large area .\tEX VBD DT NN IN DT NN IN DT NN CC WRB JJ NNS VBD IN NN , CC NN NNS VBP NN IN DT NN VBD VBN IN DT JJ NN .\nThe C-130 Hercules is a widely-used aircraft that can be configured to carry heavy payloads or as many as 128 troops .\tDT NNP NNP VBZ DT JJ NN WDT MD VB VBN TO VB JJ NNS CC RB JJ IN CD NNS .\nThe U.S. military says coalition forces in Afghanistan have killed 22 militants in a series of clashes throughout the country .\tDT NNP NN VBZ NN NNS IN NNP VBP VBN CD NNS IN DT NN IN NNS IN DT NN .\nOfficials said the coalition 's ground and air assaults took place Monday in southern and eastern Afghanistan .\tNNS VBD DT NN POS NN CC NN NNS VBD NN NNP IN JJ CC JJ NNP .\nThey said one operation targeted a Taliban network in Kapisa province , killing 18 insurgents and one Taliban commander .\tPRP VBD CD NN VBD DT NNP NN IN NNP NN , VBG CD NNS CC CD NNP NN .\nThe military also said they killed another Taliban commander and two insurgents in two raids in the Kandahar and Zabul provinces .\tDT NN RB VBD PRP VBD DT NNP NN CC CD NNS IN CD NNS IN DT NNP CC NNP NNS .\nOfficials did not mention any casualties among coalition troops .\tNNS VBD RB VB DT NNS IN NN NNS .\nViolence has risen in Afghanistan as militants have made a comeback after their initial defeat following the U.S.-led invasion in 2001 .\tNN VBZ VBN IN NNP IN NNS VBP VBN DT NN IN PRP$ JJ NN VBG DT JJ NN IN CD .\nMexican President Vicente Fox has tightened security within his administration after authorities discovered that details of his travel plans had been leaked to drug traffickers .\tJJ NNP NNP NNP VBZ VBN NN IN PRP$ NN IN NNS VBD IN NNS IN PRP$ NN NNS VBD VBN VBN TO NN NNS .\nMonday 's announcement comes a week after Mexican federal authorities detained Nahum Acosta , the official responsible for organizing Mr. Fox 's visits around the country .\tNNP POS NN VBZ DT NN IN JJ JJ NNS VBD NNP NNP , DT NN JJ IN VBG NNP NNP POS NNS IN DT NN .\nMexican newspapers report he was caught on video meeting with a leading drug trafficker in Mexico City .\tJJ NNS VBP PRP VBD VBN IN NN NN IN DT VBG NN NN IN NNP NNP .\nThe developments have raised concern because drug traffickers often kill government officials .\tDT NNS VBP VBN NN IN NN NNS RB VBP NN NNS .\nBut so far there is no evidence of an assassination plot against President Fox .\tCC RB RB EX VBZ DT NN IN DT NN NN IN NNP NNP .\nThe Mexican president promised Monday to continue his fight against organized crime , repeating a vow to give drug traffickers ' the mother of all battles . '\tDT JJ NN VBD NNP TO VB PRP$ NN IN JJ NN , VBG DT NN TO VB NN NNS `` DT NN IN DT NNS . ``\nSwedish officials say an Iraqi-born Swedish citizen held hostage in Iraq since January has been freed .\tJJ NNS VBP DT JJ JJ NN VBD NN IN NNP IN NNP VBZ VBN VBN .\nThe officials gave no details of Minas al-Yousifi 's release , and would not comment on whether a ransom had been paid .\tDT NNS VBD DT NNS IN NNP NNP POS NN , CC MD RB VB IN IN DT NN VBD VBN VBN .\nMr. al-Yousifi was kidnapped in the northern city of Mosul on January 28 by a group calling itself the Iraqi Vengeance Brigade .\tNNP NNP VBD VBN IN DT JJ NN IN NNP IN NNP CD IN DT NN VBG PRP DT JJ NNP NNP .\nHis captors released two videos in which he pleaded for his release .\tPRP$ NNS VBD CD NNS IN WDT PRP VBD IN PRP$ NN .\nMr. al-Yousifi lived in Sweden for 20 years , before returning to Iraq after Saddam Hussein 's ouster two years ago to lead Iraq 's Christian Democratic party .\tNNP NNP VBD IN NNP IN CD NNS , IN VBG TO NNP IN NNP NNP POS NN CD NNS RB TO VB NNP POS JJ JJ NN .\nPope Benedict XVI said the current global financial crisis is the result of individuals seeking short-term monetary gains at the expense of the common good .\tNNP NNP NNP VBD DT JJ JJ JJ NN VBZ DT NN IN NNS VBG JJ JJ NNS IN DT NN IN DT JJ NN .\nIn his annual message published Thursday ahead of the Roman Catholic Church 's annual World Day of Peace on January 1 , the pope said the world is seeing a greater gap between the rich and poor .\tIN PRP$ JJ NN VBN NNP RB IN DT NNP NNP NNP POS JJ NNP NNP IN NNP IN NNP CD , DT NN VBD DT NN VBZ VBG DT JJR NN IN DT JJ CC JJ .\nHe said the international financial system must be a stimulus for long-term growth and job development .\tPRP VBD DT JJ JJ NN MD VB DT NN IN JJ NN CC NN NN .\nPope Benedict also condemned international campaigns to reduce birth rates in poorer countries .\tNNP NNP RB VBD JJ NNS TO VB NN NNS IN JJR NNS .\nHe said methods such as abortion do not fight poverty or help a country 's development but actually constitute ' the destruction of the poorest of all human beings . '\tPRP VBD NNS JJ IN NN VBP RB VB NN CC VB DT NN POS NN CC RB VBP `` DT NN IN DT JJS IN DT JJ NNS . ``\nFive former members of a Serbian paramilitary unit , the Scorpions , have gone on trial in Belgrade on charges they played a role in the massacre of up to eight thousand Muslims after the 1995 Serb capture of Srebrenica .\tCD JJ NNS IN DT JJ JJ NN , DT NNS , VBP VBN IN NN IN NNP IN NNS PRP VBD DT NN IN DT NN IN RB TO CD CD NNS IN DT CD JJ NN IN NNP .\nThe first of the accused to testify , Scorpions commander Slobodan Medic , denied any knowledge of the crime .\tDT NN IN DT VBN TO VB , NNPS VBP NNP NNP , VBD DT NN IN DT NN .\nBut he confirmed his unit was in the area and said could not control all his men 's actions .\tCC PRP VBD PRP$ NN VBD IN DT NN CC VBD MD RB VB DT PRP$ NNS POS NNS .\nSerbian authorities arrested him and the four others , Aleksandar Medic , Branislav Medic , Pera Petrasevic and Aleksandar Vukov , after prosecutors at The Hague tribunal showed a videotape in June at the trial of former Yugoslav President Slobodan Milosevic .\tJJ NNS VBN PRP CC DT CD NNS , NNP NNP , NNP NNP , NNP NNP CC NNP NNP , IN NNS IN DT NNP NN VBD DT NN IN NNP IN DT NN IN JJ JJ NNP NNP NNP .\nA sixth suspect is on trial in Csatia on similar charges .\tDT JJ NN VBZ IN NN IN NNP IN JJ NNS .\nThe tape shows the defendants executing six men captured in Srebrenica , an enclave in eastern Bosnia-Herzegovina which the United Nations had declared a Muslim safe area .\tDT NN VBZ DT NNS VBG CD NNS VBN IN NNP , DT NN IN JJ NNP WDT DT NNP NNPS VBD VBN DT NNP JJ NN .\nTwo years ago , war broke out along Israel 's border with Lebanon .\tCD NNS RB , NN VBD RP IN NNP POS NN IN NNP .\nThe conflict known as the Second Lebanon War started after Hezbollah guerrillas attacked an Israeli patrol and seized two Israeli soldiers .\tDT NN VBN IN DT JJ NNP NNP VBD IN NNP NNS VBD DT JJ NN CC VBD CD JJ NNS .\nOn July 14 , Hezbollah returned the bodies of the two Israeli soldiers in a prisoner exchange with the Jewish state .\tIN NNP CD , NNP VBD DT NNS IN DT CD JJ NNS IN DT NN NN IN DT JJ NN .\nNo Israeli town was more affected by the war than Metullah , the closest Israeli town to Lebanon .\tDT JJ NN VBD RBR VBN IN DT NN IN NNP , DT JJS JJ NN TO NNP .\nJim Teeple recently visited the town where many residents say they want a lasting peace with Lebanon .\tNNP NNP RB VBD DT NN WRB JJ NNS VBP PRP VBP DT JJ NN IN NNP .\nPakistani forces with helicopter gunships Monday continued to pound Islamic rebel positions in the semi-autonomous tribal region bordering Afghanistan , and the military says 19 pro-Taleban militants were killed .\tJJ NNS IN NN NNS NNP VBD TO VB JJ NN NNS IN DT JJ JJ NN VBG NNP , CC DT NN VBZ CD JJ NNS VBD VBN .\nThe government says with the latest fighting , a total of more than 120 rebels have been killed in three days of fierce clashes in the remote North Waziristan area .\tDT NN VBZ IN DT JJS NN , DT NN IN JJR IN CD NNS VBP VBN VBN IN CD NNS IN JJ NNS IN DT JJ NNP NNP NN .\nThe military says five government soldiers were also killed in the fighting that began Saturday when militants attacked a security outpost in the region 's main town of Miranshah and seized several government buildings .\tDT JJ VBZ CD NN NNS VBD RB VBN IN DT NN WDT VBD NNP WRB NNS VBD DT NN NN IN DT NN POS JJ NN IN NNP CC VBD JJ NN NNS .\nThe army imposed a curfew in the town after re-taking the buildings .\tDT NN VBD DT NN IN DT NN IN VBG DT NNS .\nThe fighting came days after Pakistani security forces attacked a militants ' camp used to train terrorists .\tDT NN VBD NNS IN JJ NN NNS VBD DT NNS POS NN VBD TO VB NNS .\nMore than 40 foreign fighters and tribal militants were killed in that raid near the Afghan border .\tJJR IN CD JJ NNS CC JJ NNS VBD VBN IN DT NN IN DT JJ NN .\nImmigrants and supporters of immigrants ' rights in the United States are planning a new round of demonstrations against immigration reform Monday .\tNNS CC NNS IN NNS POS NNS IN DT NNP NNPS VBP VBG DT JJ NN IN NNS IN NN NN NNP .\nOrganizers of a march in the state of Arizona , which borders Mexico , say they expect as many as 1,00,000 demonstrators in the city of Phoenix as they march to the state capitol building .\tNNS IN DT NN IN DT NN IN NNP , WDT NNS NNP , VBP PRP VBP RB JJ IN CD NNS IN DT NN IN NNP IN PRP VBP TO DT NN NN NN .\nSimilar marches are planned across the nation , in the latest of a series of such protests .\tJJ NNS VBP VBN IN DT NN , IN DT JJS IN DT NN IN JJ NNS .\nThe protesters are concerned about legislation passed by the U.S. House of Representatives that would make it a felony to be an illegal immigrant .\tDT NNS VBP VBN IN NN VBN IN DT NNP NNP IN NNP WDT MD VB PRP DT NN TO VB DT JJ NN .\nThe legislation would also punish employers who hire illegal immigrants .\tDT NN MD RB VB NNS WP VBP JJ NNS .\nAfghan officials say they have found the beheaded bodies of three policemen who disappeared Friday .\tJJ NNS VBP PRP VBP VBN DT JJ NNS IN CD NNS WP VBD NNP .\nThey say the policemen disappeared in Helmund Province .\tPRP VBP DT NNS VBD IN NNP NNP .\nAuthorities blamed Taleban fighters for the killings .\tNNS VBD NNP NNS IN DT NNS .\nIn central Afghanistan , police killed four militants in a clash in Ghazni Province .\tIN JJ NNP , NN VBD CD NNS IN DT NN IN NNP NNP .\nOfficials say a firefight erupted after militants set off a bomb near a police vehicle , wounding four officers .\tNNS VBP DT NN VBN IN NNS VBD RP DT NN IN DT NN NN , VBG CD NNS .\nOfficials in Afghanistan say almost 400 people , mostly insurgents , have been killed in an upsurge of violence since mid-May .\tNNS IN NNP VBP RB CD NNS , RB NNS , VBP VBN VBN IN DT NN IN NN IN NN .\nIraqi police say at least three civilians were killed and nine wounded Saturday when a roadside bomb struck a vehicle south of Baghdad .\tJJ NNS VBP IN JJS CD NNS VBD VBN CC CD VBD NNP WRB DT NN NN VBD DT NN NN IN NNP .\nA police official said the attack occurred early Saturday in Iskandariyah , 60 kilometers south of Baghdad .\tDT NN NN VBD DT NN VBD JJ NNP IN NNP , CD NNS RB IN NNP .\nIn central Iraq , the U.S. military says coalition forces captured two wanted individuals and three suspected terrorists Saturday during an operation northwest of Muqdadiyah .\tIN JJ NNP , DT NNP NN VBZ NN NNS VBD CD JJ NNS CC CD JJ NNS NNP IN DT NN NN IN NNP .\nU.S.-led forces also detained six suspected militants during another operation Saturday in Bayji , targeting an associate of al-Qaida in Iraq senior leaders .\tJJ NNS RB VBD CD JJ NNS IN DT NN NNP IN NNP , VBG DT NN IN NNP IN NNP JJ NNS .\nThe military says the targeted person is suspected of a logistics network responsible for supplying weapons and supplies to foreign terrorists .\tDT JJ VBZ DT JJ NN VBZ VBN IN DT NNS NN JJ IN VBG NNS CC NNS TO JJ NNS .\nHe is also believed to have many contacts within the southern belt terrorist network , which facilitates the movement of foreign terrorists and suicide bombers .\tPRP VBZ RB VBN TO VB JJ NNS IN DT JJ NN JJ NN , WDT VBZ DT NN IN JJ NNS CC NN NNS .\nAfghan officials say at least 29 suspected Taleban insurgents have been killed in clashes with NATO and Afghan forces in two southern provinces .\tJJ NNS VBP IN JJS CD JJ NNP NNS VBP VBN VBN IN NNS IN NNP CC JJ NNS IN CD JJ NNS .\nAuthorities in Zabul province say 18 Taleban rebels and one Afghan soldier were killed Wednesday when a group of Taleban attacked an army post .\tNNS IN NNP NN VBP CD NNP NNS CC CD JJ NN VBD VBN NNP WRB DT NN IN NNP VBD DT NN NN .\nIn a separate incident in neighboring Kandahar province , NATO forces killed 11 Taleban militants who NATO says were planning an ambush .\tIN DT JJ NN IN JJ NNP NN , NNP NNS VBD CD NNP NNS WP NNP VBZ VBD VBG DT NN .\nSeparately , a Canadian soldier who was wounded in a suicide car-bomb attack Tuesday in Kandahar city died from his wounds .\tRB , DT JJ NN WP VBD VBN IN DT NN NN NN NNP IN NNP NN VBD IN PRP$ NNS .\nThree other NATO soldiers were wounded .\tCD JJ NNP NNS VBD VBN .\nNATO officials say its troops killed one Afghan civilian and wounded another hours after the suicide bombing .\tNNP NNS VBP PRP$ NNS VBD CD JJ JJ CC VBD DT NNS IN DT NN NN .\nTroops fired on the two civilians riding a motorcycle then they did not heed calls to stop .\tNNP VBD IN DT CD NNS VBG DT NN RB PRP VBD RB VB NNS TO VB .\nAnd , Afghan officials say two roadside bombs planted by suspected Taleban militants , also in Kandahar , killed three civilians and wounded one .\tCC , JJ NNS VBP CD NN NNS VBN IN JJ NNP NNS , RB IN NNP , VBD CD NNS CC VBD CD .\nPresident Bush is expected to head to Mongolia in the next few hours for the last stop of his Asian trip that also took him to Japan , South Korea , and China .\tNNP NNP VBZ VBN TO VB TO NNP IN DT JJ JJ NNS IN DT JJ NN IN PRP$ JJ NN WDT RB VBD PRP TO NNP , NNP NNP , CC NNP .\nMr. Bush is scheduled to use his visit - the first by a U.S. president - to thank Mongolia for sending 120 troops to Iraq .\tNNP NNP VBZ VBN TO VB PRP$ NN IN DT JJ IN DT NNP NN : TO VB NNP IN VBG CD NNS TO NNP .\nMr. Bush met with Chinese President Hu Jintao in Beijing to discuss reducing China 's trade surplus with the United States .\tNNP NNP VBD IN JJ NNP NNP NNP IN NNP TO VB VBG NNP POS NN NN IN DT NNP NNPS .\nFollowing their talks , Mr. Hu pledged to reduce the trade imbalance through steps including currency reforms and increased protection of intellectual property rights - but he did not provide a timetable for doing so .\tVBG PRP$ NNS , NNP NNP VBD TO VB DT NN NN IN NNS VBG NN NNS CC JJ NN IN JJ NN NNS : CC PRP VBD RB VB DT NN IN VBG RB .\nPresident Bush also urged Beijing to allow greater ' social , political and religious freedoms . '\tNNP NNP RB VBD NNP TO VB JJR `` JJ , JJ CC JJ NNS . ``\nMr. Hu stressed that Chinese people can exercise their rights through elections .\tNNP NNP VBD IN JJ NNS MD VB PRP$ NNS IN NNS .\nWal-Mart , the world 's biggest retailer , has won another round in its struggle to keep its U.S. workforce from joining labor unions .\tNNP , DT NN POS JJS NN , VBZ VBN DT NN IN PRP$ NN TO VB PRP$ NNP NN IN VBG NN NNS .\nFriday , workers voted 17-Jan to reject union representation at a tire store operated by Wal-Mart in Loveland , in the western state of Colorado .\tNNP , NNS VBD CD TO VB NN NN IN DT NN NN VBN IN NNP IN NNP , IN DT JJ NN IN NNP .\nWal-Mart recently said it will close a Canadian store that voted for union representation and fire the store 's 190 member staff .\tNNP RB VBD PRP MD VB DT JJ NN WDT VBD IN NN NN CC NN DT NN POS CD NN NN .\nEarlier , the company eliminated meat-cutting jobs from its entire grocery operation after some butchers voted to bring in a union .\tRB , DT NN VBD JJ NNS IN PRP$ JJ NN NN IN DT NNS VBD TO VB RP DT NN .\nWal-Mart has 1.2 million employees who operate 3,500 stores in the United States , Canada , China , Mexico , Brazil , Germany , the United Kingdom , and South Korea .\tNNP VBZ CD CD NNS WP VBP CD NNS IN DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , DT NNP NNP , CC NNP NNP .\nThe United Food & Commercial Workers Union says it will continue efforts to unionize Wal-Mart .\tDT NNP NNP CC NNP NNP NNP VBZ PRP MD VB NNS TO VB NNP .\nU.S. Vice President Dick Cheney accidentally shot and wounded a fellow hunter while hunting quail in southern Texas .\tNNP NNP NNP NNP NNP RB VBD CC VBD DT JJ NN IN VBG NN IN JJ NNP .\nA witness to the shooting , Katharine Armstrong , said Mr. Cheney fired a shotgun late Saturday at a flying bird without realizing the other hunter was in the line of fire .\tDT NN TO DT NN , NNP NNP , VBD NNP NNP VBD DT NN JJ NNP IN DT VBG NN IN VBG DT JJ NN VBD IN DT NN IN NN .\nThe injured man , 78-year-old attorney Harry Whittington , was taken to a hospital in Corpus Christi , Texas , where he was in stable condition .\tDT JJ NN , JJ NN NNP NNP , VBD VBN TO DT NN IN NNP NNP , NNP , WRB PRP VBD IN JJ NN .\nHe was hit with shotgun pellets in his right cheek , neck and chest .\tPRP VBD VBN IN JJ NNS IN PRP$ JJ NN , NN CC NN .\nMr. Cheney visited Whittington in the hospital Sunday before his scheduled return to Washington .\tNNP NNP VBD NNP IN DT NN NNP IN PRP$ JJ NN TO NNP .\nThe vice president , an avid hunter , was hunting on a large ranch , a place where he has hunted before .\tDT NN NN , DT JJ NN , VBD VBG IN DT JJ NN , DT NN WRB PRP VBZ VBN RB .\nUkrainian authorities say 19 people , including two children , are dead and at least 24 are missing after an explosion at an apartment building in the Crimean resort town of Yevpatoria .\tJJ NNS VBP CD NNS , VBG CD NNS , VBP JJ CC IN JJS CD VBP VBG IN DT NN IN DT NN NN IN DT JJ NN NN IN NNP .\nRescue teams are digging through rubble Thursday to find survivors from the blast that tore through the five-story building late Wednesday .\tNN NNS VBP VBG IN NN NNP TO VB NNS IN DT NN WDT VBD IN DT JJ NN JJ NNP .\nThey say 21 people have been rescued so far .\tPRP VBP CD NNS VBP VBN VBN RB RB .\nUkraine 's Prime Minister Yulia Tymoshenko and President Viktor Yushchenko headed to Yevpatoria Thursday to meet with rescue officials .\tNNP POS NNP NNP NNP NNP CC NNP NNP NNP VBD TO NNP NNP TO VB IN NN NNS .\nRussian President Dmitri Medvedev has offered to send naval personnel from Russia 's Black Sea fleet to help with the search efforts .\tJJ NNP NNP NNP VBZ VBN TO VB JJ NNS IN NNP POS NNP NNP NN TO VB IN DT NN NNS .\nAuthorities are working to establish the cause of the explosion .\tNNS VBP VBG TO VB DT NN IN DT NN .\nPreliminary reports say it could have been caused by oxygen or acetylene cylinders that may have been stored in the building 's basement .\tJJ NNS VBP PRP MD VB VBN VBN IN NN CC NN NNS WDT MD VB VBN VBN IN DT NN POS NN .\nGas explosions are common in Ukrainian apartment buildings , especially during the winter when residents turn up the heat .\tNN NNS VBP JJ IN JJ NN NNS , RB IN DT NN WRB NNS VBP RP DT NN .\nFrom tsunami-ravaged Sri Lanka to the European Union , countries from virtually every continent have begun sending millions of dollars to the American Red Cross to help the victims of Hurricane Katrina .\tIN JJ NNP NNP TO DT NNP NNP , NNS IN RB DT NN VBP VBN VBG NNS IN NNS TO DT NNP NNP NNP TO VB DT NNS IN NNP NNP .\nIn Washington Tuesday , State Department spokesman Sean McCormack said more than 90 nations have pledged financial assistance to those affected by the hurricane .\tIN NNP NNP , NNP NNP NN NNP NNP VBD JJR IN CD NNS VBP VBN JJ NN TO DT VBN IN DT NN .\nHe said numerous nations , including Australia , China , India , and Kuwait , have sent large cash donations to the Red Cross .\tPRP VBD JJ NNS , VBG NNP , NNP , NNP , CC NNP , VBP VBN JJ NN NNS TO DT NNP NNP .\nKosovo 's prime minister , Bajram Kosumi , saying his people will never forget how much America has helped the war-torn province , has donated $ 5,00,000 .\tNNP POS JJ NN , NNP NNP , VBG PRP$ NNS MD RB VB WRB JJ NNP VBZ VBN DT JJ NN , VBZ VBN $ CD .\nBangladesh , a poor country that is frequently hit by monsoons , pledged $ 1 million in disaster aid .\tNNP , DT JJ NN WDT VBZ RB VBN IN NNS , VBD $ CD CD IN NN NN .\nMr. McCormack said the American people can ' take great heart ' at the outpouring of assistance .\tNNP NNP VBD DT JJ NNS MD `` VB JJ NN `` IN DT NN IN NN .\nSouth Korea says it will strengthen background checks on North Koreans seeking asylum in the South .\tNNP NNP VBZ PRP MD VB NN NNS IN NNP NNS VBG NN IN DT NNP .\nSouth Korean Deputy Unification Minister Rhee Bong-jo says the measures are intended to prevent criminals or ethnic Koreans pretending to be from the North from entering the country .\tNNP JJ NNP NNP NNP NNP NNP VBZ DT NNS VBP VBN TO VB NNS CC JJ NNS VBG TO VB IN DT NNP IN VBG DT NN .\nMr. Rhee also said South Korea plans to cut financial subsidies to North Korean defectors starting next year .\tNNP NNP RB VBD NNP NNP VBZ TO VB JJ NNS TO JJ JJ NNS VBG JJ NN .\nDefectors currently receive a payment of $ 26,500 on arrival .\tNNS RB VBP DT NN IN $ CD IN NN .\nMr. Rhee says Seoul plans to increase subsidies for job training for the defectors in an effort to help them adjust .\tNNP NNP VBZ NNP VBZ TO VB NNS IN NN NN IN DT NNS IN DT NN TO VB PRP VB .\nSouth Korea says at least 1,850 North Koreans have defected to the South this year .\tNNP NNP VBZ IN JJS CD NNP NNS VBP VBN TO DT NNP DT NN .\nA mild earthquake shook the capital of the United States Friday , though there were no immediate reports of injuries or damage .\tDT JJ NN VBD DT NN IN DT NNP NNPS NNP , IN EX VBD DT JJ NNS IN NNS CC NN .\nThe U.S. Geological Survey reported the quake measured 3.6 in magnitude , the largest quake in the Washington area in decades .\tDT NNP NNP NNP VBD DT NN VBN CD IN NN , DT JJS NN IN DT NNP NN IN NNS .\nOfficials said the quake 's epicenter was located just north of the nation 's capital in Maryland .\tNNS VBD DT NN POS NN VBD VBN RB RB IN DT NN POS NN IN NNP .\nAsked at a press conference whether he felt the tremor , U.S. President Barack Obama laughed and said he did not .\tVBN IN DT NN NN IN PRP VBD DT NN , NNP NNP NNP NNP VBD CC VBD PRP VBD RB .\nBut other residents in the area reported feeling a rumbling for several seconds .\tCC JJ NNS IN DT NN VBD VBG DT NN IN JJ NNS .\nA spokeswoman for the U.S. Geological Survey said the minor earthquake was the largest recorded within 50 kilometers of Washington since a database was created to track such activity in 1974 .\tDT NN IN DT NNP NNP NNP VBD DT JJ NN VBD DT JJS VBN IN CD NNS IN NNP IN DT NN VBD VBN TO VB JJ NN IN CD .\nPolice acting on a tip have arrested at least 17 people and seized a major cache of weapons near the Sri Lankan capital , Colombo .\tNNS VBG IN DT NN VBP VBN IN JJS CD NNS CC VBN DT JJ NN IN NNS IN DT NNP NNP NN , NNP .\nAuthorities say the weapons confiscated by police Saturday included grenades and other explosives .\tNNS VBP DT NNS VBN IN NN NNP VBD NNS CC JJ NNS .\nOfficials say the suspects were planning a major attack on the capital .\tNNS VBP DT NNS VBD VBG DT JJ NN IN DT NN .\nThe find comes on the same day a bomb blast killed six soldiers and wounded several in the northern Jaffna peninsula .\tDT NN VBZ IN DT JJ NN DT NN NN VBD CD NNS CC VBD JJ IN DT JJ NNP NN .\nThe improvised device exploded as soldiers cleaned up the area after a failed attempt by Tamil Tiger rebels to capture the peninsula .\tDT JJ NN VBD IN NNS VBD RP DT NN IN DT VBN NN IN NNP NNP NNS TO VB DT NN .\nMeanwhile , the Tamil Tigers released a policeman who had been held for nearly a year after he strayed into rebel territory while pursuing a pedophile .\tRB , DT NNP NNP VBD DT NN WP VBD VBN VBN IN RB DT NN IN PRP VBD IN JJ NN IN VBG DT NN .\nHis release followed a request from Ulf Henricsson , the outgoing head of the team monitoring the 2002 ceasefire between the government and rebels .\tPRP$ NN VBD DT NN IN NNP NNP , DT JJ NN IN DT NN VBG DT CD NN IN DT NN CC NNS .\nAn Iraqi court has sentenced 11 men to death for the massive truck bombings in Baghdad last August that killed more than 100 people .\tDT JJ NN VBZ VBN CD NNS TO NN IN DT JJ NN NNS IN NNP JJ NNP WDT VBD JJR IN CD NNS .\nThe court convicted the men of planning and implementing the August 19 attacks on the Iraqi Ministries of Finance and Foreign Affairs .\tDT NN VBD DT NNS IN NN CC VBG DT NNP CD NNS IN DT JJ NNPS IN NNP CC NNP NNP .\nThe attacks left more than 500 others wounded .\tDT NNS VBD JJR IN CD NNS VBN .\nOn Wednesday , a suicide bomber blew up a truck near a police station in Iraq 's western Anbar province , killing at least seven people and wounding six others .\tIN NNP , DT NN NN VBD RP DT NN IN DT NN NN IN NNP POS JJ NNP NN , VBG IN JJS CD NNS CC VBG CD NNS .\nThe attack happened in Saqlawiyah , a town north of Fallujah .\tDT NN VBD IN NNP , DT NN NN IN NNP .\nOfficials say at least two police officers and a young girl were among those killed .\tNNS VBP IN JJS CD NNS NNS CC DT JJ NN VBD IN DT VBN .\nIraq is preparing for nationwide parliamentary elections in March , and officials have warned that insurgents trying to disrupt the vote could launch attacks as the election nears .\tNNP VBZ VBG IN JJ JJ NNS IN NNP , CC NNS VBP VBN IN NNS VBG TO VB DT NN MD VB NNS IN DT NN VBZ .\nAmerican rappers Snoop Dogg and Sean ' Diddy ' Combs have canceled a tour of Britain after Snoop Dogg was denied a visa to enter the country .\tJJ NNS NNP NNP CC NNP `` NNP `` NNPS VBP VBN DT NN IN NNP IN NNP NNP VBD VBN DT NN TO VB DT NN .\nRecord company officials said the rappers are ' disappointed and devastated ' after five concerts across Britain were called off .\tNNP NN NNS VBD DT NNS VBP `` VBN CC VBN `` IN CD NNS IN NNP VBD VBN RP .\nIn April 2006 , Snoop Dogg , whose real name is Calvin Broadus , and five other men were arrested in a brawl at London 's Heathrow Airport .\tIN NNP CD , NNP NNP , WP$ JJ NN VBZ NNP NNP , CC CD JJ NNS VBD VBN IN DT NN IN NNP POS NNP NNP .\nThey spent a night in jail .\tPRP VBD DT NN IN NN .\nThe British Home Office would not comment on the present case , but it said the government can refuse entry to foreign citizens if there are concerns about their presence .\tDT NNP NNP NNP MD RB VB IN DT JJ NN , CC PRP VBD DT NN MD VB NN TO JJ NNS IN EX VBP NNS IN PRP$ NN .\nSouth Korea is resuming its rice aid to North Korea Saturday after nearly a one-year suspension , now that Pyongyang is moving to dismantle its nuclear program .\tNNP NNP VBZ VBG PRP$ NN NN TO NNP NNP NNP IN RB DT JJ NN , RB IN NNP VBZ VBG TO VB PRP$ JJ NN .\nA ship with 3,000 tons of rice is to arrive in the North at the eastern port of Nampo - the first batch of 4,00,000 tons promised by South Korea .\tDT NN IN CD NNS IN NN VBZ TO VB IN DT NNP IN DT JJ NN IN NNP IN DT JJ NN IN CD NNS VBN IN NNP NNP .\nSeoul suspended its regular rice aid after North Korea conducted missile tests last July .\tNNP VBD PRP$ JJ NN NN IN NNP NNP VBD NN NNS JJ NNP .\nA nuclear test followed in October .\tDT JJ NN VBD IN NNP .\nSouth Korea resumed shipments of fertilizer and other emergency aid to the North in late March , but decided to withhold rice aid until Pyongyang began to carry out its February pledge to shut down its main nuclear reactor .\tNNP NNP VBD NNS IN NN CC JJ NN NN TO DT NNP IN JJ NNP , CC VBD TO VB NN NN IN NNP VBD TO VB RP PRP$ NNP NN TO VB RP PRP$ JJ JJ NN .\nNorth Korea has relied heavily on international aid , particularly from South Korea , since the North 's economy was devastated by natural disasters and mismanagement in the mid-1990s .\tNNP NNP VBZ VBN RB IN JJ NN , RB IN NNP NNP , IN DT NNP POS NN VBD VBN IN JJ NNS CC NN IN DT NNS .\nThe European Commission Sunday confirmed that the deadly H5N1 strain was found in a dead bird .\tDT JJ NNP NNP VBD IN DT JJ NNP NN VBD VBN IN DT JJ NN .\nTurkish Cypriot authorities say they have quarantined a 10 kilometer area around the village where the dead bird was found and killed a large number of birds to stop the spread .\tJJ JJ NNS VBP PRP VBP VBN DT CD NN NN IN DT NN WRB DT JJ NN VBD VBN CC VBN DT JJ NN IN NNS TO VB DT NN .\nAuthorities in the Greek Cypriot south say they have taken all steps to prevent the virus from spreading across the border .\tNNS IN DT JJ JJ RB VBP PRP VBP VBN DT NNS TO VB DT NN IN VBG IN DT NN .\nAlso Sunday , Hong Kong officials say they found an infected bird near the border with mainland China .\tRB NNP , NNP NNP NNS VBP PRP VBD DT JJ NN IN DT NN IN NN NNP .\nBird flu has killed at least 81 people in East Asia and Turkey since 2003 .\tNN NN VBZ VBN IN JJS CD NNS IN NNP NNP CC NNP IN CD .\nThe governor of Iraq 's southern Basra province says there will be no cooperation with British forces unless Britain apologizes for Monday 's jail raid that was aimed at freeing two undercover British soldiers .\tDT NN IN NNP POS JJ NNP NN VBZ EX MD VB DT NN IN JJ NNS IN NNP VBZ IN NNP POS NN NN WDT VBD VBN IN VBG CD JJ JJ NNS .\nMohammed al-Waili said the provincial council voted Wednesday to stop all cooperation until Britain meets three demands - apologize for the action , guarantee that it will not happen again and provide compensation for the damage .\tNNP NNP VBD DT JJ NN VBD NNP TO VB DT NN IN NNP VBZ CD NNS IN NN IN DT NN , NN IN PRP MD RB VB RB CC VB NN IN DT NN .\nAlso Wednesday , hundreds of Iraqis demonstrated in Basra city against the British troop presence .\tRB NNP , NNS IN NNS VBD IN NNP NN IN DT JJ NN NN .\nBritish troops raided the Basra jail , after they became concerned that two of their undercover soldiers had been arrested and handed over to a Shi'ite militia .\tJJ NNS VBD DT NNP NN , IN PRP VBD VBN IN CD IN PRP$ NN NNS VBD VBN VBN CC VBN RP TO DT NNP NN .\nIraqi Prime Minister Ibrahim al-Jaafari has said the raid will not undermine relations with Britain , although it has angered his government .\tJJ NNP NNP NNP NNP VBZ VBN DT NN MD RB VB NNS IN NNP , IN PRP VBZ VBN PRP$ NN .\nHe said he has ordered an investigation .\tPRP VBD PRP VBZ VBN DT NN .\nPakistani security forces say they have arrested a tribal militant commander suspected of involvement in the killing of three Chinese engineers in the southwestern province of Baluchistan .\tJJ NN NNS VBP PRP VBP VBN DT JJ JJ NN VBN IN NN IN DT NN IN CD JJ NNS IN DT JJ NN IN NNP .\nSecurity officials say the suspect is a local leader of the Baluchistan Liberation Army and wanted in other attacks in addition to the February killings of the Chinese workers in the town of Hub .\tNN NNS VBP DT NN VBZ DT JJ NN IN DT NNP NNP NNP CC VBN IN JJ NNS IN NN TO DT NNP NNS IN DT JJ NNS IN DT NN IN NNP .\nOn Tuesday in Baluchistan , unidentified gunmen killed a local politician and his bodyguard and injured a third man .\tIN NNP IN NNP , JJ NNS VBD DT JJ NN CC PRP$ NN CC VBD DT JJ NN .\nPolice say Abdul Samad Achakzai and his bodyguard were killed when gunmen fired on their car as it drove through Kojak pass , northwest of Quetta , the capital of Baluchistan province .\tNNS VBP NNP NNP NNP CC PRP$ NN VBD VBN WRB NNS VBD IN PRP$ NN IN PRP VBD IN NNP NN , NN IN NNP , DT NN IN NNP NN .\nThe third man , identified as Sulaiman Shah , was seriously wounded .\tDT JJ NN , VBN IN NNP NNP , VBD RB VBN .\nPolice say Achakzai was one of the leaders of a Pashtun ethnic political group , Pashtoonkhwa Milli Awami , that is linked to a local tribal feud .\tNNS VBP NNP VBD CD IN DT NNS IN DT NNP JJ JJ NN , NNP NNP NNP , WDT VBZ VBN TO DT JJ NN NN .\nA suicide attack in southern Afghanistan has killed five policemen and wounded at least three others .\tDT NN NN IN JJ NNP VBZ VBN CD NNS CC VBN IN JJS CD NNS .\nTuesday 's bombing in the Spin Boldak district of Kandahar province near the Pakistani border targeted the convoy of a border police commander , who survived the attack .\tNNP POS NN IN DT NNP NNP NN IN NNP NN IN DT JJ NN VBD DT NN IN DT NN NN NN , WP VBD DT NN .\nOfficials say the attacker was riding a motorcycle when he detonated his explosives outside of the police headquarters .\tNNS VBP DT NN VBD VBG DT NN WRB PRP VBD PRP$ NNS IN IN DT NN NN .\nIn other news , NATO reports a Canadian soldier with its International Security Assistance Force was killed and four others wounded in the Panjwayi district of Kandahar on Monday .\tIN JJ NN , NNP VBZ DT JJ NN IN PRP$ NNP NNP NNP NNP VBD VBN CC CD NNS VBN IN DT NNP NN IN NNP IN NNP .\nElsewhere , a head-on collision of two buses killed at least 32 people Monday on the main road linking the capital , Kabul , and Kandahar city .\tRB , DT JJ NN IN CD NNS VBD IN JJS CD NNS NNP IN DT JJ NN VBG DT NN , NNP , CC NNP NN .\nAt least 35 other people were injured .\tIN JJS CD JJ NNS VBD VBN .\nChina 's ministry of health says 34 people have died from a disease , caused by streptococcus suis bacteria , carried by pigs .\tNNP POS NN IN NN VBZ CD NNS VBP VBN IN DT NN , VBN IN JJ NNS NNS , VBN IN NNS .\nOn Saturday , the ministry released new figures saying 174 cases of the illness , commonly called swine flu , have been identified .\tIN NNP , DT NN VBD JJ NNS VBG CD NNS IN DT NN , RB VBN NN NN , VBP VBN VBN .\nThat is an increase of 22 over Friday 's figure .\tDT VBZ DT NN IN CD IN NNP POS NN .\nThere were three additional deaths in the same period .\tEX VBD CD JJ NNS IN DT JJ NN .\nChina 's official news agency Xinhua reports that one of the new cases came from Guangdong province near Hong Kong .\tNNP POS JJ NN NN NNP VBZ IN CD IN DT JJ NNS VBD IN NNP NN IN NNP NNP .\nThat would be the first case outside Sichuan province , where the outbreak began .\tDT MD VB DT JJ NN IN NNP NN , WRB DT NN VBD .\nXinhua says a slaughterhouse worker in Guangdong was treated and released from the hospital .\tNNP VBZ DT NN NN IN NNP VBD VBN CC VBN IN DT NN .\nThose infected have handled infected pigs or infected pork .\tDT VBN VBP VBN JJ NNS CC JJ NN .\nChina says there has been no human-to-human transmission of the disease .\tNNP VBZ EX VBZ VBN DT JJ NN IN DT NN .\nPolice in Nepal have arrested at least 120 anti-government activists across the country who defied a ban on protests to show their anger at King Gyanendra 's seizure of absolute power last month .\tNNS IN NNP VBP VBN IN JJS CD JJ NNS IN DT NN WP VBD DT NN IN NNS TO VB PRP$ NN IN NNP NNP POS NN IN JJ NN JJ NN .\nIn the capital , Kathmandu , police detained more than 40 protesters who gathered near the Central Secretariat building , shouting slogans such as ' Down with autocracy , we want democracy . '\tIN DT NN , NNP , NN VBD JJR IN CD NNS WP VBD IN DT NNP NNP NN , VBG NNS JJ IN `` IN IN NN , PRP VBP NN . ``\nThe rest of the people were detained in similar demonstrations in nine other cities across the Himalayan kingdom .\tDT NN IN DT NNS VBD VBN IN JJ NNS IN CD JJ NNS IN DT NNP NN .\nMonday 's protest in the capital was the largest since February first , when the king dismissed the government , declared a state of emergency and suspended civil liberties .\tNNP POS NN IN DT NN VBD DT JJS IN NNP RB , WRB DT NN VBD DT NN , VBD DT NN IN NN CC VBN JJ NNS .\nHe said he did so to defeat an escalating Maoist insurgency that has claimed more than 10,000 lives since 1996 .\tPRP VBD PRP VBD RB TO VB DT VBG NN NN WDT VBZ VBN JJR IN CD NNS IN CD .\nA new government report recently released shows the nation 's poverty rate was virtually unchanged in 2007 .\tDT JJ NN NN RB VBN VBZ DT NN POS NN NN VBD RB JJ IN CD .\nThe U.S. Census Bureau 's annual report also shows the number of Americans without health insurance fell last year - the first annual decline since the Bush administration took office .\tDT NNP NNP NNP POS JJ NN RB VBZ DT NN IN NNS IN NN NN VBD JJ NN IN DT JJ JJ NN IN DT NNP NN VBD NN .\nBut some economists have criticized the report , saying it paints an inaccurate picture of the U.S. economy today .\tCC DT NNS VBP VBN DT NN , VBG PRP VBZ DT JJ NN IN DT NNP NN NN .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nAngolan health officials say the death toll in the country from the Marburg fever has reached 203 out of 221 registered cases .\tJJ NN NNS VBP DT NN NN IN DT NN IN DT NNP NN VBZ VBN CD IN IN CD JJ NNS .\nOfficials said Monday the hardest hit area is the northern province of Uige where 184 people have died from the disease that first appeared last October .\tNNS VBD NNP DT RBS VBN NN VBZ DT JJ NN IN NNP WRB CD NNS VBP VBN IN DT NN WDT RB VBD JJ NNP .\nMeanwhile , medics treating Marburg fever patients are recommending closing down a hospital in Uige province because they say it needs to be disinfected .\tRB , NNS VBG NNP NN NNS VBP VBG VBG RP DT NN IN NNP NN IN PRP VBP PRP VBZ TO VB VBN .\nDoctors Without Borders , a global relief organization , says this step is necessary to reduce infection risks in the hospital where victims of the fatal virus are being held in isolation .\tNNS IN NNS , DT JJ NN NN , VBZ DT NN VBZ JJ TO VB NN NNS IN DT NN WRB NNS IN DT JJ NN VBP VBG VBN IN NN .\nThe Ebola-like hemorrhagic fever spreads through contact with bodily fluids , and can kill rapidly .\tDT JJ JJ NN NNS IN NN IN RB NNS , CC MD VB RB .\nThe World Health Organization has sent in teams to remove bodies and trace contacts with infected patients .\tDT NNP NNP NNP VBZ VBN IN NNS TO VB NNS CC NN NNS IN JJ NNS .\nIsrael 's deputy prime minister says Israel has frozen plans to expand its largest West Bank settlement near Jerusalem .\tNNP POS JJ JJ NN VBZ NNP VBZ VBN NNS TO VB PRP$ JJS NNP NNP NN IN NNP .\nDeputy Prime Minister Ehud Olmert told the Jerusalem Post that Israel still wants to build some 3,500 new homes in the Maaleh Adumim settlement , but will only move forward on the project with U.S. consent .\tNNP NNP NNP NNP NNP VBD DT NNP NNP IN NNP RB VBZ TO VB DT CD JJ NNS IN DT NNP NNP NN , CC MD RB VB RB IN DT NN IN NNP NN .\nThe expansion would have cut off east Jerusalem , claimed by the Palestinians as a future capital , from the West Bank .\tDT NN MD VB VBN RP JJ NNP , VBN IN DT NNS IN DT JJ NN , IN DT NNP NNP .\nThe United States had criticized the move , saying it would violate the internationally-backed road map peace plan that requires Israel to halt settlement growth .\tDT NNP NNPS VBD VBN DT NN , VBG PRP MD VB DT JJ NN NN NN NN WDT VBZ NNP TO VB NN NN .\nU.S. officials in Venezuela say supporters of President Hugo Chavez burned a U.S. flag , set tires on fire and surrounded a building that the American ambassador was visiting Wednesday , temporarily trapping him inside .\tNNP NNS IN NNP VBP NNS IN NNP NNP NNP VBD DT NNP NN , VBN NNS IN NN CC VBN DT NN IN DT JJ NN VBD VBG NNP , RB VBG PRP RB .\nOfficials say Ambassador William Brownfield was stranded for at least two hours as the demonstrators gathered outside , chanting anti-U.S. slogans .\tNNS VBP NNP NNP NNP VBD VBN IN IN JJS CD NNS IN DT NNS VBD RB , VBG JJ NNS .\nNo injuries were reported during the protest .\tDT NNS VBD VBN IN DT NN .\nThe incident took place days after a Venezuelan newspaper printed an interview with Ambassador Brownfield , who said Washington is concerned over Venezuela 's growing ties with Iran .\tDT NN VBD NN NNS IN DT JJ NN VBD DT NN IN NNP NNP , WP VBD NNP VBZ VBN IN NNP POS VBG NNS IN NNP .\nVenezuela 's government often clashes with the United States .\tNNP POS NN RB VBZ IN DT NNP NNPS .\nPresident Chavez recently criticized President Bush , following a White House report which called Mr. Chavez a demagogue .\tNNP NNP RB VBD NNP NNP , VBG DT NNP NNP NN WDT VBD NNP NNP DT NN .\nAlthough relations between the two countries are tense , Venezuela is still a key supplier of oil to the U.S. market .\tIN NNS IN DT CD NNS VBP JJ , NNP VBZ RB DT JJ NN IN NN TO DT NNP NN .\nAnglican Archbishop Desmond Tutu is mourning the loss of the Roman Catholic leader , while saying the next pope should come from Africa .\tNNP NNP NNP NNP VBZ VBG DT NN IN DT NNP NNP NN , IN VBG DT JJ NN MD VB IN NNP .\nThe South African Nobel Peace Prize winner said Sunday he hopes cardinals will elect an African when they meet this month at the Vatican .\tDT NNP NNP NNP NNP NNP NN VBD NNP PRP VBZ NNS MD VB DT JJ WRB PRP VBP DT NN IN DT NNP .\nAlso today , the head of Ethiopia 's Orthodox church , Abune Paulos , praised John Paul as a great man who spoke of peace among religions .\tRB NN , DT NN IN NNP POS NNP NN , NNP NNP , VBD NNP NNP IN DT JJ NN WP VBD IN NN IN NNS .\nNigeria 's President Olusegun Obasanjo expressed his condolences , noting the late pontiff promoted religious tolerance and democracy in the West African nation .\tNNP POS NNP NNP NNP VBD PRP$ NNS , VBG DT JJ NN VBD JJ NN CC NN IN DT JJ JJ NN .\nAnd African Union Chairman , Alpha Oumar Konare , said the pope was a great advocate for Africa and a moral authority for the world .\tCC NNP NNP NNP , NNP NNP NNP , VBD DT NN VBD DT JJ NN IN NNP CC DT JJ NN IN DT NN .\nSouth Korean news media say North Korea Saturday aired a pirate recording of the opening World Cup match between host South Africa and Mexico .\tJJ JJ NN NNS VBP NNP NNP NNP VBD DT NN NN IN DT VBG NNP NNP NN IN NN NNP NNP CC NNP .\nYonhap news agency quotes South Korean Broadcaster SBS as saying the North Korean Central Broadcasting Service showed a recording of Friday 's game , despite its lack of broadcasting rights .\tNNP NN NN VBZ JJ JJ NN NNP IN VBG DT JJ JJ NNP NNP NNP VBD DT NN IN NNP POS NN , IN PRP$ NN IN NN NNS .\nAn official is quoted as saying SBS has World Cup broadcasting rights for the whole Korean peninsula .\tDT NN VBZ VBN IN VBG NNP VBZ NNP NNP NN NNS IN DT JJ JJ NN .\nThe official said SBS will decide on measures after determining how North Korea obtained the footage .\tDT NN VBD NNP MD VB IN NNS IN VBG WRB NNP NNP VBD DT NN .\nMeanwhile , South Koreans nationwide celebrated the victory of their team in their opening World Cup game against Greece .\tRB , NNP NNS JJ VBD DT NN IN PRP$ NN IN PRP$ NN NNP NNP NN IN NNP .\nDespite rainy weather , fans crowded parks , squares and stadiums across the country to watch the game on giant screens and celebrate their team 's ( 2-0 ) win .\tIN JJ NN , NNS VBD NNS , NNS CC NNS IN DT NN TO VB DT NN IN JJ NNS CC VB PRP$ NN POS LRB CD RRB NN .\nCuba 's health ministry says U.S. filmmaker Michael Moore 's new movie , ' Sicko , ' will be good publicity for the Cuban health care system .\tNNP POS NN NN VBZ NNP NN NNP NNP POS JJ NN , `` NNP , `` MD VB JJ NN IN DT JJ NN NN NN .\nHealth Minister Jose Ramon Balaguer told reporters in Havana Friday that Moore 's movie , screened recently at the Cannes film festival , will show the world the humaneness of the Cuban health care system .\tNN NN NNP NNP NNP VBD NNS IN NNP NNP IN NNP POS NN , VBD RB IN DT NNP NN NN , MD VB DT NN DT NN IN DT JJ NN NN NN .\nMoore 's documentary , scheduled for U.S. release June 29 , is about problems in the U.S. health care system .\tNNP POS NN , VBN IN NNP NN NNP CD , VBZ IN NNS IN DT NNP NN NN NN .\nIn it , Moore takes three rescue workers from the September 11th , 2001 terrorist attacks to Cuba for health care , while accusing the United States of failing to respond to their needs .\tIN PRP , NNP VBZ CD NN NNS IN DT NNP CD , CD JJ NNS TO NNP IN NN NN , IN VBG DT NNP NNPS IN VBG TO VB TO PRP$ NNS .\nCuba 's universal health care , the product of a communist government , is considered comparable to those of much wealthier nations .\tNNP POS JJ NN NN , DT NN IN DT JJ NN , VBZ VBN JJ TO DT IN JJ JJR NNS .\nMoore is under investigation by the U.S. government for possible violation of the U.S. trade embargo on Cuba .\tNNP VBZ IN NN IN DT NNP NN IN JJ NN IN DT NNP NN NN IN NNP .\nPresident Bush has called for a diplomatic solution to the Iran nuclear crisis .\tNNP NNP VBZ VBN IN DT JJ NN TO DT NNP JJ NN .\nAt the White House Friday , Mr. Bush said Iran must not be allowed to possess a nuclear weapon .\tIN DT NNP NNP NNP , NNP NNP VBD NNP MD RB VB VBN TO VB DT JJ NN .\nHe said it is logical that a country that has rejected diplomatic options would be referred to the United Nations Security Council .\tPRP VBD PRP VBZ JJ IN DT NN WDT VBZ VBN JJ NNS MD VB VBN TO DT NNP NNP NNP NNP .\nMr. Bush made those comments after talks with German Chancellor Angela Merkel , who said the international community should not be intimidated by Iran .\tNNP NNP VBD DT NNS IN NNS IN JJ NNP NNP NNP , WP VBD DT JJ NN MD RB VB VBN IN NNP .\nIran has threatened to end cooperation with the United Nations nuclear agency if Tehran 's nuclear program is taken to the Security Council for possible sanctions .\tNNP VBZ VBN TO VB NN IN DT NNP NNP JJ NN IN NNP POS JJ NN VBZ VBN TO DT NNP NNP IN JJ NNS .\nIran announced earlier this week it was resuming nuclear fuel research .\tNNP VBD RBR DT NN PRP VBD VBG JJ NN NN .\nChina 's U.N. ambassador said today that referring the matter to the United Nations might complicate the issue .\tNNP POS NNP NN VBD NN IN VBG DT NN TO DT NNP NNP MD VB DT NN .\nRussia has urged Iran to resume its moratorium on nuclear activities and cooperate with the U.N. nuclear agency .\tNNP VBZ VBN NNP TO VB PRP$ NN IN JJ NNS CC VB IN DT NNP JJ NN .\nRussia has urged Iran to heed a U.N. Security Council resolution giving Tehran until the end of the month to suspend its sensitive nuclear activities .\tNNP VBZ VBN NNP TO VB DT NNP NNP NNP NN VBG NNP IN DT NN IN DT NN TO VB PRP$ JJ JJ NNS .\nIn a statement Thursday , Russia 's Foreign Ministry said no further measures by the Security Council will be required if Iran heeds the call .\tIN DT NN NNP , NNP POS NNP NNP VBD DT JJ NNS IN DT NNP NNP MD VB VBN IN NNP VBZ DT NN .\nRussia , a permanent Security Council member , has resisted Western efforts to sanction Iran for its refusal to comply with nuclear demands .\tNNP , DT JJ NN NNP NN , VBZ VBN JJ NNS TO VB NNP IN PRP$ NN TO VB IN JJ NNS .\nThe U.N. resolution , passed earlier this week , demands Iran stop enriching uranium by August 31st or face possible sanctions .\tDT NNP NN , VBN RBR DT NN , VBZ NNP VB VBG NN IN NNP CD CC VB JJ NNS .\nThe Security Council acted after Iran failed to respond to an international incentives package Tehran would get by suspending enrichment activities .\tDT NNP NNP VBD IN NNP VBD TO VB TO DT JJ NNS NN NNP MD VB IN VBG NN NNS .\nIranian President Mahmoud Ahmadinejad said Thursday Iran is still considering the incentives package .\tJJ NNP NNP NNP VBD NNP NNP VBZ RB VBG DT NNS NN .\nThe United States and its Western allies believe Iran is trying to develop nuclear weapons .\tDT NNP NNPS CC PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS .\nTehran says its nuclear program is only for peaceful purposes .\tNNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS .\nIndian Prime Minister Manmohan Singh begins a two-day visit to Afghanistan on Sunday , the first by an Indian premier in nearly three decades .\tJJ NNP NNP NNP NNP VBZ DT JJ NN TO NNP IN NNP , DT JJ IN DT JJ NN IN RB CD NNS .\nBesides holding talks with Afghan President Hamid Karzai and Foreign Minister Abdullah , Mr. Singh is scheduled to take part in a groundbreaking ceremony for a new Afghan parliament building being built with Indian help .\tIN VBG NNS IN JJ NNP NNP NNP CC NNP NNP NNP , NNP NNP VBZ VBN TO VB NN IN DT VBG NN IN DT JJ JJ NN NN VBG VBN IN JJ NN .\nIndia is also involved in training Afghan armed forces and police , building roads , schools , hospitals , power lines , digging wells and supporting trade and services .\tNNP VBZ RB VBN IN VBG JJ JJ NNS CC NNS , VBG NNS , NNS , NNS , NN NNS , VBG NNS CC VBG NN CC NNS .\nWednesday , the two countries signed a Memorandum of Understanding under which India will upgrade all radio and television stations in Afghanistan .\tNNP , DT CD NNS VBD DT NN IN NN IN WDT NNP MD VB DT NN CC NN NNS IN NNP .\nAlthough India and Afghanistan share close historic and cultural links , the turmoil in the central Asian nation had not allowed an Indian prime minister to visit Kabul since a trip in 1976 by Indira Gandhi .\tIN NNP CC NNP VBP RB JJ CC JJ NNS , DT NN IN DT JJ JJ NN VBD RB VBN DT JJ JJ NN TO VB NNP IN DT NN IN CD IN NNP NNP .\nNational Basketball Association center Yao Ming is raising money for victims of the May 12 earthquake in his native China , by holding a raffle for a trip to the Beijing Olympics next month .\tNNP NNP NNP NN NNP NNP VBZ VBG NN IN NNS IN DT NNP CD NN IN PRP$ JJ NNP , IN VBG DT NN IN DT NN TO DT NNP NNPS JJ NN .\nTickets for the raffle cost $ 2 ( US ) and can be purchased with a credit card on a special Internet site ( https://www.celebritiesforcharity.org/raffles/netraffle_main.cfm ) .\tNNS IN DT NN VBD $ CD LRB NNP RRB CC MD VB VBN IN DT NN NN IN DT JJ NN NN LRB NNP RRB .\nThe winner will be announced July 21 , and will receive round-trip airfare from a U.S. city to Beijing , a seven-day hotel stay in Beijing , two tickets to the China-USA basketball game , $ 1500 dollars in cash , and a guided tour of the Great Wall of China .\tDT NN MD VB VBN NNP CD , CC MD VB JJ NN IN DT NNP NN TO NNP , DT JJ NN NN IN NNP , CD NNS TO DT NNP NN NN , $ CD NNS IN NN , CC DT JJ NN IN DT NNP NNP IN NNP .\nYao created a personal foundation in late June , saying its first projects would help children left homeless by the earthquake in Sichuan province .\tNNP VBD DT JJ NN IN JJ NNP , VBG PRP$ JJ NNS MD VB NNS VBN JJ IN DT NN IN NNP NN .\nNigerian President Olusegun Obasanjo has urged rich nations to give more aid to Africa as leaders from the Group of Eight gathered in Scotland for a summit focused on lifting the continent out of poverty .\tJJ NNP NNP NNP VBZ VBN JJ NNS TO VB JJR NN TO NNP IN NNS IN DT NNP IN CD VBD IN NNP IN DT NN VBN IN VBG DT NN IN IN NN .\nMr. Obasanjo told a London meeting of the Business Action for Africa that the continent is hopeful about decisions that will be made by G8 leaders on better trade access and increased aid to Africa .\tNNP NNP VBD DT NNP NN IN DT NNP NNP IN NNP IN DT NN VBZ JJ IN NNS WDT MD VB VBN IN NNP NNS IN JJR NN NN CC JJ NN TO NNP .\nHe also welcomed a plan to wipe out $ 40 billion worth of debt owed by 18 of the world 's poorest nations .\tPRP RB VBD DT NN TO VB RP $ CD CD NN IN NN VBN IN CD IN DT NN POS JJS NNS .\nMr. Obasanjo said African nations are committed to democracy , good governance and ending corruption .\tNNP NNP VBD JJ NNS VBP VBN TO NN , JJ NN CC VBG NN .\nBefore heading to Scotland for the summit , President Bush and Danish Prime Minister Anders Fogh Rasmussen said increased aid to Africa must be tied to good governance and efforts to fight corruption .\tIN VBG TO NNP IN DT NN , NNP NNP CC JJ NNP NNP NNP NNP NNP VBD VBN NN TO NNP MD VB VBN TO JJ NN CC NNS TO VB NN .\nIncreasing numbers of costumed urchins are sent to parties rather than door to door\tVBG NNS IN JJ NNS VBP VBN TO NNS RB IN NN TO NN\nSome religious families object to the holiday entirely , saying that it celebrates evil and the devil .\tDT JJ NNS VBP TO DT NN RB , VBG IN PRP VBZ JJ CC DT NN .\nIncreasing numbers of porch lights are left off in some neighborhoods , too - signaling that the household will not welcome trick-or-treaters - because the residents are annoyed by gravelly voiced beggars in frightening costumes who continue to come knocking , well into their teens .\tVBG NNS IN NN NNS VBP VBN RP IN DT NNS , RB : VBG IN DT NN MD RB VB NNS : IN DT NNS VBP VBN IN RB VBN NNS IN JJ NNS WP VBP TO VB VBG , RB IN PRP$ NNS .\nAnd in a tight economy , some residents no longer want to go to the time , trouble , and expense of buying candy and decorating their houses for Halloween .\tCC IN DT JJ NN , DT NNS RB RB VB TO VB TO DT NN , NN , CC NN IN VBG NN CC VBG PRP$ NNS IN NNP .\nThe upshot is that come dusk this Sunday night across America , little ghouls and make-believe starlets will be about .\tDT NN VBZ IN VBN NN DT NNP NN IN NNP , JJ NNS CC JJ NNS MD VB RB .\nLikely , though , not as many as last Halloween .\tRB , RB , RB RB JJ IN JJ NNP .\nThe United States has transferred two detainees from its military prison at Guantanamo Bay , Cuba , to other countries .\tDT NNP NNPS VBZ VBN CD NNS IN PRP$ JJ NN IN NNP NNP , NNP , TO JJ NNS .\nThe Defense Department said Monday that Abdul Aziz Naji has been sent back to his native Algeria , while Abd-al-Nisr Mohammed Khantumani was resettled in Cape Verde .\tDT NNP NNP VBD NNP IN NNP NNP NNP VBZ VBN VBN RB TO PRP$ JJ NNP , IN NNP NNP NNP VBD VBN IN NNP NNP .\nA statement said the U.S. coordinated with the two countries ' governments to ensure a secure transfer .\tDT NN VBD DT NNP VBD IN DT CD NNS POS NNS TO VB DT JJ NN .\nThe Guantanamo prison houses alleged terrorists , many held for years without trial .\tDT NNP NN NNS VBN NNS , JJ JJ IN NNS IN NN .\nThe facility has been widely criticized by human rights groups .\tDT NN VBZ VBN RB VBN IN JJ NNS NNS .\nPresident Barack Obama ordered the facility to be shut down within a year after he took office in January 2009 .\tNNP NNP NNP VBD DT NN TO VB VBN RP IN DT NN IN PRP VBD NN IN NNP CD .\nHowever , the deadline passed amid difficulty in finding places to put the detainees .\tRB , DT NN VBD IN NN IN VBG NNS TO VB DT NNS .\nMore than 40 other countries have accepted at least one prisoner .\tJJR IN CD JJ NNS VBP VBN IN JJS CD NN .\nThe U.S. says 178 detainees remain at the facility .\tDT NNP VBZ CD NNS VBP IN DT NN .\nZambia 's economy has experienced strong growth in recent years , with real GDP growth in 2005 - 10 about 6 % per year .\tNNP POS NN VBZ VBN JJ NN IN JJ NNS , IN JJ NN NN IN CD IN CD RB CD NN IN NN .\nPrivatization of government-owned copper mines in the 1990s relieved the government from covering mammoth losses generated by the industry and greatly increased copper mining output and profitability to spur economic growth .\tNN IN JJ NN NNS IN DT NNS VBD DT NN IN VBG JJ NNS VBN IN DT NN CC RB VBN NN NN NN CC NN TO VB JJ NN .\nCopper output has increased steadily since 2004 , due to higher copper prices and foreign investment .\tNN NN VBZ VBN RB IN CD , JJ TO JJR NN NNS CC JJ NN .\nIn 2005 , Zambia qualified for debt relief under the Highly Indebted Poor Country Initiative , consisting of approximately USD 6 billion in debt relief .\tIN CD , NNP VBD IN NN NN IN DT NNP NNP NNP NNP NNP , VBG IN RB NNP CD CD IN NN NN .\nPoverty remains a significant problem in Zambia , despite a stronger economy .\tNN VBZ DT JJ NN IN NNP , IN DT JJR NN .\nZambia 's dependency on copper makes it vulnerable to depressed commodity prices , but record high copper prices and a bumper maize crop in 2010 helped Zambia rebound quickly from the world economic slowdown that began in 2008 .\tNNP POS NN IN NN VBZ PRP JJ TO JJ NN NNS , CC NN JJ NN NNS CC DT NN NN NN IN CD VBD NNP VB RB IN DT NN JJ NN WDT VBD IN CD .\nA high birth rate , relatively high HIV / AIDS burden , and market distorting agricultural policies have meant that Zambia 's economic growth has not dramatically decreased the stubbornly high poverty rates .\tDT JJ NN NN , RB JJ NNP NNP NNP NN , CC NN NN JJ NNS VBP VBN IN NNP POS JJ NN VBZ RB RB VBN DT RB JJ NN NNS .\nSlovakia 's roots can be traced to the 9th century state of Great Moravia .\tNNP POS NNS MD VB VBN TO DT JJ NN NN IN NNP NNP .\nSubsequently , the Slovaks became part of the Hungarian Kingdom , where they remained for the next 1,000 years .\tRB , DT NNS VBD NN IN DT NNP NNP , WRB PRP VBD IN DT JJ CD NNS .\nFollowing the formation of the dual Austro-Hungarian monarchy in 1867 , language and education policies favoring the use of Hungarian ( Magyarization ) resulted in a strengthening of Slovak nationalism and a cultivation of cultural ties with the closely related Czechs , who were themselves ruled by the Austrians .\tVBG DT NN IN DT JJ JJ NN IN CD , NN CC NN NNS VBG DT NN IN NNP LRB NNP RRB VBD IN DT NN IN JJ NN CC DT NN IN JJ NNS IN DT RB JJ NNS , WP VBD PRP VBN IN DT NNS .\nAfter the dissolution of the Austro-Hungarian Empire at the close of World War I , the Slovaks joined the Czechs to form Czechoslovakia .\tIN DT NN IN DT JJ NN IN DT NN IN NNP NNP NNP , DT NNS VBD DT NNS TO VB NNP .\nFollowing the chaos of World War II , Czechoslovakia became a Communist nation within Soviet-dominated Eastern Europe .\tVBG DT NN IN NNP NNP NNP , NNP VBD DT JJ NN IN JJ NNP NNP .\nSoviet influence collapsed in 1989 and Czechoslovakia once more became free .\tJJ NN VBD IN CD CC NNP RB JJR VBD JJ .\nThe Slovaks and the Czechs agreed to separate peacefully on 1 January 1993 .\tDT NNS CC DT NNS VBD TO VB RB IN CD NNP CD .\nSlovakia joined both NATO and the EU in the spring of 2004 and the euro area on 1 January 2009 .\tNNP VBD DT NNP CC DT NNP IN DT NN IN CD CC DT NN NN IN CD NNP CD .\nThe French Territory of the Afars and the Issas became Djibouti in 1977 .\tDT JJ NN IN DT NNPS CC DT NNPS VBD NNP IN CD .\nHassan Gouled APTIDON installed an authoritarian one-party state and proceeded to serve as president until 1999 .\tNNP NNP NNP VBD DT JJ JJ NN CC VBD TO VB IN NN IN CD .\nUnrest among the Afars minority during the 1990s led to a civil war that ended in 2001 following the conclusion of a peace accord between Afar rebels and the Issa-dominated government .\tNNP IN DT NNPS NN IN DT NNS VBD TO DT JJ NN WDT VBD IN CD VBG DT NN IN DT NN NN IN NNP NNS CC DT JJ NN .\nIn 1999 , Djibouti 's first multi-party presidential elections resulted in the election of Ismail Omar GUELLEH ; he was re-elected to a second term in 2005 .\tIN CD , NNP POS JJ JJ JJ NNS VBD IN DT NN IN NNP NNP NNP ; PRP VBD VBN TO DT JJ NN IN CD .\nDjibouti occupies a strategic geographic location at the mouth of the Red Sea and serves as an important transshipment location for goods entering and leaving the east African highlands .\tNNP VBZ DT JJ JJ NN IN DT NN IN DT NNP NNP CC VBZ IN DT JJ NN NN IN NNS VBG CC VBG DT JJ JJ NNS .\nThe present leadership favors close ties to France , which maintains a significant military presence in the country , but also has strong ties with the US .\tDT JJ NN VBZ JJ NNS TO NNP , WDT VBZ DT JJ JJ NN IN DT NN , CC RB VBZ JJ NNS IN DT NNP .\nDjibouti hosts the only US military base in sub-Saharan Africa .\tNNP VBZ DT JJ NNP JJ NN IN JJ NNP .\nTHE PIGEONS , terrified by the appearance of a Kite , called upon the Hawk to defend them .\tDT NNS , VBN IN DT NN IN DT NN , VBD IN DT NN TO VB PRP .\nHe at once consented .\tPRP IN RB VBN .\nWhen they had admitted him into the cote , they found that he made more havoc and slew a larger number of them in one day than the Kite could pounce upon in a whole year .\tWRB PRP VBD VBN PRP IN DT NN , PRP VBD IN PRP VBD JJR NN CC NN DT JJR NN IN PRP IN CD NN IN DT NN MD VB IN IN DT JJ NN .\nAvoid a remedy that is worse than the disease .\tVB DT NN WDT VBZ JJR IN DT NN .\nTHE members of the School Board in Doosnoswair being suspected of appointing female teachers for an improper consideration , the people elected a Board composed wholly of women .\tDT NNS IN DT NNP NNP IN NNP VBG VBN IN VBG JJ NNS IN DT JJ NN , DT NNS VBD DT NN VBN RB IN NNS .\nIn a few years the scandal was at an end ; there were no female teachers in the Department .\tIN DT JJ NNS DT NN VBD IN DT NN ; EX VBD DT JJ NNS IN DT NN .\nA January 1994 Reuters News Service story on Manuel Oliveira 's ice cream shop in Merida , Venezuela , reported on his 567 flavors , including onion , chili , beer , eggplant , smoked trout , spaghetti parmesan , chicken with rice , and spinach .\tDT NNP CD NNP NNP NNP NN IN NNP NNP POS NN NN NN IN NNP , NNP , VBD IN PRP$ CD NNS , VBG NN , NN , NN , NN , VBD NN , NNS NN , NN IN NN , CC NN .\nHe said some flavors fail ; he once abandoned avocado ice cream , and tossed out 99 pounds of it , because it was n't smooth enough .\tPRP VBD DT NNS VBP ; PRP RB VBD NN NN NN , CC VBD RP CD NNS IN PRP , IN PRP VBD RB JJ RB .\nAccording to a news report , a certain private school in Victoria , BC , recently was faced with a unique problem .\tVBG TO DT NN NN , DT JJ JJ NN IN NNP , NNP , RB VBD VBN IN DT JJ NN .\nA number of grade 12 girls were beginning to use lipstick and would put it on in the bathroom .\tDT NN IN NN CD NNS VBD VBG TO VB NN CC MD VB PRP IN IN DT NN .\nThat was fine , but after they put on their lipstick they would press their lips to the mirror leaving dozens of little lip prints .\tDT VBD JJ , CC IN PRP VBD IN PRP$ NN PRP MD VB PRP$ NNS TO DT NN VBG NNS IN JJ JJ NNS .\nEvery night , the maintenance man would remove them and the next day , The girls would put them back .\tDT NN , DT NN NN MD VB PRP CC DT JJ NN , DT NNS MD VB PRP RB .\nFinally the principal decided that something had to be done .\tRB DT NN VBD IN DT VBD TO VB VBN .\nShe called all the girls to the bathroom and met them there with the maintenance man .\tPRP VBD PDT DT NNS TO DT NN CC VBD PRP RB IN DT NN NN .\nShe explained that all these lip prints were causing a major problem for the custodian who had to clean the mirrors every night .\tPRP VBD IN DT DT JJ NNS VBD VBG DT JJ NN IN DT NN WP VBD TO VB DT NNS DT NN .\nTo demonstrate how difficult it had been to clean the mirrors , she asked the maintenance man to show the girls how much effort was required .\tTO VB WRB JJ PRP VBD VBN TO VB DT NNS , PRP VBD DT NN NN TO VB DT NNS WRB JJ NN VBD VBN .\nHe took out a long-handled squeegee , dipped it in the toilet , and cleaned the mirror with it .\tPRP VBD RP DT JJ NN , VBD PRP IN DT NN , CC VBD DT NN IN PRP .\nSince then , there have been no lip prints on the mirror .\tIN RB , EX VBP VBN DT JJ NNS IN DT NN .\nThere are teachers , and then there are educators ...\tEX VBP NNS , CC RB EX VBP NNS :\nI am not a believer in seances , but I went to one just to see what they are like .\tPRP VBP RB DT NN IN NNS , CC PRP VBD TO CD RB TO VB WP PRP VBP IN .\nThe psychic was doing his thing and grinning from ear to ear .\tDT NN VBD VBG PRP$ NN CC VBG IN JJ TO VB .\nI assumed his merriment was due to the fact that he was fooling a gullible public and gave him a poke in the nose .\tPRP VBD PRP$ NN VBD JJ TO DT NN IN PRP VBD VBG DT JJ NN CC VBD PRP DT NN IN DT NN .\nYou can probably guess the rest ...\tPRP MD RB VB DT NN :\nI was arrested for striking a happy medium ...\tPRP VBD VBN IN VBG DT JJ NN :\nEthiopia Saturday released 32 supporters of the political opposition who had been detained since post-election violence in 2005 .\tNNP NNP VBD CD NNS IN DT JJ NN WP VBD VBN VBN IN JJ NN IN CD .\nTheir release comes after Ethiopia pardoned another 38 opposition members last month .\tPRP$ NN VBZ IN NNP VBD DT CD NN NNS JJ NN .\nThat group had received life sentences in court the week before their pardons .\tDT NN VBD VBN NN NNS IN NN DT NN IN PRP$ NNS .\nNone of the 32 freed Saturday had been charged in court with any crimes .\tNN IN DT CD VBN NNP VBD VBN VBN IN NN IN DT NNS .\nAll had been rounded up after protests over the 2005 elections turned violent .\tDT VBD VBN VBN RP IN NNS IN DT CD NNS VBD JJ .\nThe opposition made its largest gains ever in those elections .\tDT NN VBD PRP$ JJS NNS RB IN DT NNS .\nOpposition groups claimed the elections were rigged to keep Prime Minister Meles Zenawi in power .\tNN NNS VBD DT NNS VBD VBN TO VB NNP NNP NNP NNP IN NN .\nEthiopian security forces killed at least 193 people while stopping the protests .\tJJ NN NNS VBN IN JJS CD NNS IN VBG DT NNS .\nWorld oil prices hit a new record in Wednesday 's trading , hitting $ 99.29 a barrel before easing downward .\tNNP NN NNS VBD DT JJ NN IN NNP POS NN , VBG $ CD DT NN IN VBG JJ .\nThat is 67 cents above the previous record , which was set on November 7 .\tDT VBZ CD NNS IN DT JJ NN , WDT VBD VBN IN NNP CD .\nTraders say the soaring prices stem from the declining value of the U.S. dollar and worries about the supply of oil in the Northern Hemisphere as winter approaches .\tNNS VBP DT VBG NNS VBP IN DT VBG NN IN DT NNP NN CC NNS IN DT NN IN NN IN DT NNP NNP IN NN NNS .\nA U.S. Energy Department report Wednesday says the amount of oil available in the United States declined slightly last week by a bit more than one million barrels , to a total of nearly 314 million barrels .\tDT NNP NNP NNP NN NNP VBZ DT NN IN NN JJ IN DT NNP NNPS VBD RB JJ NN IN DT NN RBR IN CD CD NNS , TO DT NN IN RB CD CD NNS .\nFrench Foreign Minister Philippe Douste-Blazy is in Moscow for talks with top Russian officials expected to focus on Iran 's nuclear program .\tJJ NNP NNP NNP NNP VBZ IN NNP IN NNS IN JJ JJ NNS VBN TO VB IN NNP POS JJ NN .\nFrance , along with Britain and Germany , called for an emergency session of the International Atomic Energy Agency on February 2 , to hear the European case for referring Iran to the United Nations Security Council .\tNNP , IN IN NNP CC NNP , VBD IN DT NN NN IN DT NNP NNP NNP NNP IN NNP CD , TO VB DT JJ NN IN VBG NNP TO DT NNP NNP NNP NNP .\nThe Security Council can impose sanctions , if it finds Iran has violated international treaties with its nuclear program .\tDT NNP NNP MD VB NNS , IN PRP VBZ NNP VBZ VBN JJ NNS IN PRP$ JJ NN .\nThe call for the I.A.E.A . session came after Tehran broke a two-year moratorium on nuclear research earlier this month .\tDT NN IN DT NNP . NN VBD IN NNP VBD DT JJ NN IN JJ NN RBR DT NN .\nThe United States has accused Iran of using its research to develop nuclear weapons .\tDT NNP NNPS VBZ VBN NNP IN VBG PRP$ NN TO VB JJ NNS .\nTehran insists its nuclear intentions are peaceful .\tNNP VBZ PRP$ JJ NNS VBP JJ .\nChina Thursday called for ' restraint and patience ' to resolve the nuclear crisis .\tNNP NNP VBD IN `` NN CC NN `` TO VB DT JJ NN .\nResidents of the U.S. state of Florida are stocking up on gasoline , water and other supplies as Tropical Storm Katrina moves toward the area .\tNNS IN DT NNP NN IN NNP VBP VBG RP IN NN , NN CC JJ NNS IN JJ NN NNP VBZ IN DT NN .\nForecasters expect the storm to bring heavy rainfall and possible flooding to much of southern and central Florida when it makes landfall later Thursday .\tNNS VBP DT NN TO VB JJ NN CC JJ NN TO NN IN JJ CC JJ NNP WRB PRP VBZ NN RB NNP .\nHurricane and tropical storm warnings have been posted for many areas as the storm moves westward , away from the Bahamas and toward Florida 's southeast coast .\tNNP CC JJ NN NNS VBP VBN VBN IN JJ NNS IN DT NN VBZ RB , RB IN DT NNPS CC IN NNP POS NN NN .\nThe U.S. National Hurricane Center says Katrina may gain strength and become a category one hurricane before reaching land .\tDT NNP NNP NNP NNP VBZ NNP MD VB NN CC VB DT NN CD NN IN VBG NN .\nAt last report , the storm was packing winds of 85 kilometers per hour .\tIN JJ NN , DT NN VBD VBG NNS IN CD NNS IN NN .\nA tropical storm warning remains in effect for the northwest Bahamas .\tDT JJ NN NN VBZ IN NN IN DT JJS NNPS .\nParts of Florida are still recovering from the four hurricanes that hit the state last year .\tNNS IN NNP VBP RB VBG IN DT CD NNS WDT VBD DT NN JJ NN .\nThe U.S. military in Iraq says American warplanes have bombed two bridges in western al-Anbar province , to stop insurgents from using them to move fighters and equipment to other cities for attacks .\tDT NNP NN IN NNP VBZ JJ NNS VBP VBN CD NNS IN JJ NNP NN , TO VB NNS IN VBG PRP TO VB NNS CC NN TO JJ NNS IN NNS .\nThe air strikes Tuesday near the Syrian border did not destroy the Euphrates River bridges , but made them inoperable .\tDT NN VBZ NNP IN DT JJ NN VBD RB VB DT NNP NNP NNS , CC VBD PRP JJ .\nNo casualties were reported .\tDT NNS VBD VBN .\nCoalition troops also raided a nearby safehouse , killing two foreign fighters and detaining three others .\tNN NNS RB VBD DT JJ NN , VBG CD JJ NNS CC VBG CD NNS .\nThe building was later destroyed .\tDT NN VBD RB VBN .\nElsewhere , in the southern Shi'ite holy city of Najaf , U.S. forces handed over military control of the city to Iraqi forces .\tRB , IN DT JJ NNP JJ NN IN NNP , NNP NNS VBN IN JJ NN IN DT NN TO JJ NNS .\nIn other developments , the U.S. military reports two American soldiers were killed and two wounded Tuesday in a bomb blast in Baghdad .\tIN JJ NNS , DT NNP NN VBZ CD JJ NNS VBD VBN CC CD VBD NNP IN DT NN NN IN NNP .\nTwo more soldiers were killed Monday in Tal Afar and Ramadi .\tCD JJR NNS VBD VBN NNP IN NNP NNP CC NNP .\nBritain says finance ministers from the Group of Seven industrial nations have expressed a willingness to cancel up to 100 percent of the debt of the world 's poorest nations .\tNNP VBZ NN NNS IN DT NNP IN CD JJ NNS VBP VBN DT NN TO VB RP TO CD NN IN DT NN IN DT NN POS JJS NNS .\nBritain 's Treasury chief Gordon Brown said at the close of the G7 summit in London Saturday , that debt relief would be decided on a case-by-case basis .\tNNP POS NNP NN NNP NNP VBD IN DT NN IN DT NNP NN IN NNP NNP , DT NN NN MD VB VBN IN DT JJ NN .\nBritain had also pushed for the G7 to support London 's plan to double international aid to the developing world .\tNNP VBD RB VBN IN DT NNP TO VB NNP POS NN TO VB JJ NN TO DT VBG NN .\nBut the United State rejected that proposal .\tCC DT NNP NNP VBD IN NN .\nU.S. Treasury Undersecretary John Taylor told BBC radio the plan did not fit into the U.S. budget process .\tNNP NNP NNP NNP NNP VBD NNP NN DT NN VBD RB VB IN DT NNP NN NN .\nBritain 's International Development Secretary Hilary Benn promised to push ahead with the plan , saying a solution will be found by 2006 with or without the United States .\tNNP POS NNP NNP NNP NNP NNP VBD TO VB RB IN DT NN , VBG DT NN MD VB VBN IN CD IN CC IN DT NNP NNPS .\nU.S. Undersecretary of State Nicholas Burns has expressed doubt that Washington and New Delhi will finalize a nuclear deal before President Bush visits India next week .\tNNP NNP IN NNP NNP NNP VBZ VBN NN IN NNP CC NNP NNP MD VB DT JJ NN IN NNP NNP VBZ NNP JJ NN .\nBurns made the comment following talks with Indian Foreign Secretary Shyam Saran in New Delhi Wednesday .\tNNP VBD DT NN VBG NNS IN JJ NNP NNP NNP NNP IN NNP NNP NNP .\nHe said both sides want to complete the negotiations , but added there are differences that need to be worked out .\tPRP VBD DT NNS VBP TO VB DT NNS , CC VBD EX VBP NNS WDT VBP TO VB VBN RP .\nHe did not elaborate .\tPRP VBD RB VB .\nUnder the deal , India would gain access to long-denied U.S. nuclear technology in exchange for including some of its reactors on a list of civilian facilities that would be subject to international inspections .\tIN DT NN , NNP MD VB NN TO JJ NNP JJ NN IN NN IN VBG DT IN PRP$ NNS IN DT NN IN JJ NNS WDT MD VB JJ TO JJ NNS .\nBurns and Saran are to continue talks on Friday .\tNNP CC NNP VBP TO VB NNS IN NNP .\nSome U.S. legislators oppose the deal .\tDT NNP NNS VBP DT NN .\nThey say it could undermine the Nuclear Non-Proliferation Treaty .\tPRP VBP PRP MD VB DT NNP NNP NNP .\nIndia has not signed the treaty .\tNNP VBZ RB VBN DT NN .\nA top U.N. official says indirect talks between the Ugandan government and northern rebels have provided the best chance for peace in 18 years of conflict .\tDT JJ NNP NN VBZ JJ NNS IN DT JJ NN CC JJ NNS VBP VBN DT JJS NN IN NN IN CD NNS IN NN .\nU.N. Emergency Relief Coordinator Jan Egeland praised the Ugandan government Tuesday for its renewed efforts to seek dialogue .\tNNP NNP NNP NNP NNP NNP VBD DT JJ NN NNP IN PRP$ JJ NNS TO VB NN .\nMr. Egeland says the conflict has forced up to 90 percent of the population in some areas of northern Uganda from their homes , adding that hundreds of thousands of lives are at stake .\tNNP NNP VBZ DT NN VBZ VBN RP TO CD NN IN DT NN IN DT NNS IN JJ NNP IN PRP$ NNS , VBG IN NNS IN NNS IN NNS VBP IN NN .\nRebels from the Lord 's Resistance Army are notorious for attacking civilians and kidnapping children for use as soldiers or sex slaves .\tNNS IN DT NNP POS NN NNP VBP JJ IN VBG NNS CC VBG NNS IN NN IN NNS CC NN NNS .\nOver the last few weeks , the rebels and the Ugandan government declared a temporary cease-fire and held talks through mediators .\tIN DT JJ JJ NNS , DT NNS CC DT JJ NN VBD DT JJ NN CC VBD NNS IN NNS .\nThe government says it is extending the truce for another week in the hopes of starting formal peace talks by then .\tDT NN VBZ PRP VBZ VBG DT NN IN DT NN IN DT NNS IN VBG JJ NN NNS IN RB .\nAn Ethiopian judge has ordered a group of 131 detained opposition leaders , journalists and others to remain in custody after most boycotted a bail hearing .\tDT JJ NN VBZ VBN DT NN IN CD JJ NN NNS , NNS CC NNS TO VB IN NN IN JJS VBD DT NN NN .\nMost lawyers for the group boycotted Wednesday 's Ethiopian High Court hearing , saying prison authorities have not allowed them to meet with their clients .\tJJS NNS IN DT NN VBD NNP POS JJ NNP NNP NN , VBG NN NNS VBP RB VBN PRP TO VB IN PRP$ NNS .\nThe detained have been charged with treason and genocide for their alleged involvement in election protests that turned violent .\tDT VBN VBP VBN VBN IN NN CC NN IN PRP$ JJ NN IN NN NNS WDT VBD JJ .\nThe judge says he will rule on the bail requests next week .\tDT NN VBZ PRP MD VB IN DT NN NNS JJ NN .\nThe accused include five journalists with the Voice of America 's Amharic-language service in Washington .\tDT VBN VBP CD NNS IN DT NNP IN NNP POS JJ NN IN NNP .\nThey were charged in absentia with plotting to overthrow the Ethiopian government .\tPRP VBD VBN IN NN IN VBG TO VB DT JJ NN .\nEthiopia 's information minister told VOA English to Africa Service that the journalists have incited violence through their reports and he accused them of working with the opposition .\tNNP POS NN NN VBD NNP NNP TO NNP NNP IN DT NNS VBP VBN NN IN PRP$ NNS CC PRP VBD PRP IN VBG IN DT NN .\nVOA officials reject the charges , and say they are an attempt to intimidate VOA journalists .\tNNP NNS VBP DT NNS , CC VBP PRP VBP DT NN TO VB NNP NNS .\nVice President Dick Cheney says a premature withdrawal of U.S. forces from Iraq would be a victory for the terrorists and a blow to American national security .\tNNP NNP NNP NNP VBZ DT JJ NN IN NNP NNS IN NNP MD VB DT NN IN DT NNS CC DT NN TO JJ JJ NN .\nIn a speech in Washington Monday , Mr. Cheney responded to critics , including Democratic Congressman John Murtha , who say the U.S. military 's presence in Iraq has increased terrorism and instability in the Middle East .\tIN DT NN IN NNP NNP , NNP NNP VBD TO NNS , VBG JJ NNP NNP NNP , WP VBP DT NNP NN POS NN IN NNP VBZ VBN NN CC NN IN DT NNP NNP .\nCongressman Murtha 's call last week for U.S. troops to get out of Iraq sparked intense debate and drew stinging criticism from Republican legislators and White House officials .\tNN NNP POS NN JJ NN IN NNP NNS TO VB IN IN NNP VBD JJ NN CC VBD VBG NN IN JJ NNS CC NNP NNP NNS .\nMr. Cheney Monday called Mr. Murtha ' a good man and a patriot . '\tNNP NNP NNP VBD NNP NNP `` DT JJ NN CC DT NN . ``\nBut the vice president stood by his remarks that it is ' dishonest and reprehensible ' for some U.S. senators to say President Bush purposely misled the American people into the Iraq war .\tCC DT NN NN VBN IN PRP$ NNS IN PRP VBZ `` JJ CC JJ `` IN DT NNP NNS TO VB NNP NNP RB VBD DT JJ NNS IN DT NNP NN .\nPoland 's foreign minister says the European Union ( EU ) will not start entry talks with Croatia unless that country hands over a top fugitive war crimes suspect to The Hague tribunal .\tNNP POS JJ NN VBZ DT NNP NNP LRB NNP RRB MD RB VB NN NNS IN NNP IN DT NN VBZ RB DT JJ JJ NN NNS VBP TO DT NNP NN .\nAdam Rotfeld told reporters a March 17 date has been set for the talks .\tNNP NNP VBD NNS DT NNP CD NN VBZ VBN VBN IN DT NNS .\nBut he warned that unless Croatia surrenders General Ante Gotovina , the European Union will simply not open the discussions .\tCC PRP VBD IN IN NNP VBZ NNP NNP NNP , DT NNP NNP MD RB RB VB DT NNS .\nThe Polish minister , whose country gained EU membership last May , made his comments after talks in Warsaw with the tribunal 's chief prosecutor , Carla del Ponte .\tDT JJ NN , WP$ NN VBD NNP NN JJ NNP , VBD PRP$ NNS IN NNS IN NNP IN DT NN POS NN NN , NNP NNP NNP .\nThe prosecutor confirmed that she had sent a letter to the European Union , criticizing Croatia for failing to arrest General Gotovina .\tDT NN VBD IN PRP VBD VBN DT NN TO DT NNP NNP , VBG NNP IN VBG TO VB NNP NNP .\nThe Hague court indicted the general for his role in the deaths of civilians during a 1995 Croatian army sweep through a Serb-held area of the country .\tDT NNP NN VBD DT NN IN PRP$ NN IN DT NNS IN NNS IN DT CD JJ NN NN IN DT JJ NN IN DT NN .\nTurkish authorities say a suicide bomber was behind Tuesday 's blast that killed six other people in Ankara .\tJJ NNS VBP DT NN NN VBD IN NNP POS NN WDT VBD CD JJ NNS IN NNP .\nAnkara Governor Kemal Onal said Wednesday the bomber had a police record and used explosives similar to those used by Kurdish militants .\tNNP NNP NNP NNP VBD NNP DT NN VBD DT NN NN CC VBN NNS JJ TO DT VBN IN NNP NNS .\nThere has been no claim of responsibility for the blast .\tEX VBZ VBN DT NN IN NN IN DT NN .\nTurkish Prime Minister Recep Tayyip Erdogan described the bombing as a ruthless terrorist attack .\tJJ NNP NNP NNP NNP NNP VBD DT NN IN DT JJ JJ NN .\nThe Pakistani embassy says eight Pakistanis were among the more than 90 people wounded in the blast in a commercial district , Ulus .\tDT JJ NN VBZ CD NNS VBD IN DT JJR IN CD NNS VBN IN DT NN IN DT JJ NN , NNP .\nThe Pakistanis were in Ankara for an international defense industry fair .\tDT NNS VBD IN NNP IN DT JJ NN NN NN .\nThe rebel Kurdistan Workers Party ( PKK ) has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 .\tDT NN NNP NNP NNP LRB NNP RRB VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD .\nThe European Union has decided to tighten sanctions on Burma after the military government failed to meet EU demands for progress on democracy and human rights .\tDT NNP NNP VBZ VBN TO VB NNS IN NNP IN DT JJ NN VBD TO VB NNP NNS IN NN IN NN CC JJ NNS .\nEU foreign ministers meeting in Luxembourg Monday voted to widen a visa blacklist on members of Burma 's military junta and place stricter controls on investment .\tNNP JJ NNS VBG IN NNP NNP VBD TO VB DT NN NN IN NNS IN NNP POS JJ NN CC NN NN NNS IN NN .\nEU officials had threatened the move ahead of the Asia-Europe summit in Hanoi last week , after Burma ignored demands for the the release of democracy leader Aung San Suu Kyi and the lifting of restrictions on her pro-democracy party .\tNNP NNS VBD VBN DT NN RB IN DT JJ NN IN NNP JJ NN , IN NNP VBD NNS IN DT DT NN IN NN NN NNP NNP NNP NNP CC DT NN IN NNS IN PRP$ JJ NN .\nSunday Burma 's state-owned media said Western nations can not use sanctions to impose democracy .\tNNP NNP POS JJ NNS VBD JJ NNS MD RB VB NNS TO VB NN .\nU.S. officials say a group of U.S. congressmen was denied entry into Venezuela Monday after landing at the country 's main airport near Caracas .\tNNP NNS VBP DT NN IN NNP NNS VBD VBN NN IN NNP NNP IN NN IN DT NN POS JJ NN IN NNP .\nThe delegation was led by Illinois Republican Henry Hyde , chairman of the House International Relations Committee .\tDT NN VBD VBN IN NNP NNP NNP NNP , NN IN DT NNP NNP NNPS NNP .\nThey had arrived in the country for a scheduled visit .\tPRP VBD VBN IN DT NN IN DT JJ NN .\nA U.S embassy official said the visit was canceled after Venezuelan officials kept the delegation 's military jet on the tarmac for a least an hour without allowing the lawmakers to disembark .\tDT NNP NN NN VBD DT NN VBD VBN IN JJ NNS VBD DT NN POS JJ NN IN DT NN IN DT JJS DT NN IN VBG DT NNS TO VB .\nCaracas airport official Jose Cabello denies this , saying the group made no attempt to contact Venezuelan authorities .\tNNP NN NN NNP NNP VBZ DT , VBG DT NN VBD DT NN TO VB JJ NNS .\nRelations between Washington and Caracas have been strained ever since populist President Hugo Chavez came to office in 1999 .\tNNP IN NNP CC NNP VBP VBN VBN RB IN JJ NNP NNP NNP VBD TO NN IN CD .\nMr. Chavez has repeatedly accused the Bush administration of planning to invade Venezuela .\tNNP NNP VBZ RB VBN DT NNP NN IN VBG TO VB NNP .\nWashington denies any such plans , and warns that Mr. Chavez is becoming an authoritarian threat to Venezuela 's democracy and regional stability .\tNNP VBZ DT JJ NNS , CC VBZ IN NNP NNP VBZ VBG DT JJ NN TO NNP POS NN CC JJ NN .\nEarly results from Haiti 's presidential election indicate front-runner candidate Rene Preval has a commanding lead , and may be able to avoid a run-off election .\tRB NNS IN NNP POS JJ NN VBP JJ NN NNP NNP VBZ DT JJ NN , CC MD VB JJ TO VB DT JJ NN .\nOfficials say Preval , a former president , has won about 61 percent of the votes counted from Tuesday 's election .\tNNS VBP NNP , DT JJ NN , VBZ VBN IN CD NN IN DT NNS VBN IN NNP POS NN .\nAnother former president , Leslie Manigat , is a distant second with 13 percent .\tDT JJ NN , NNP NNP , VBZ DT JJ NN IN CD NN .\nIf the trend continues , Preval would have a clear majority of votes and avoid a run-off election next month .\tIN DT NN VBZ , NNP MD VB DT JJ NN IN NNS CC VB DT JJ NN JJ NN .\nVote counting is said to be proceeding slowly as ballots trickle in to the capital , Port-au-Prince , by helicopter , truck and mule .\tJJ NN VBZ VBN TO VB VBG RB IN NNS VBP IN TO DT NN , NN , IN NN , NN CC NN .\nBrazil 's President Luiz Inacio Lula da Silva says Brazilian peacekeeping forces will remain in Haiti until a new government is formed and can maintain security .\tNNP POS NNP NNP NNP NNP NNP NNP VBZ JJ NN NNS MD VB IN NNP IN DT JJ NN VBZ VBN CC MD VB NN .\nBrazil is the leader of the U.N. stabilization force in Haiti .\tNNP VBZ DT NN IN DT NNP NN NN IN NNP .\nU.S. and Iraqi government forces have captured scores of suspected insurgents and seized an enormous stockpile of weapons and explosives during anti-insurgent operations in Iraq .\tNNP CC JJ NN NNS VBP VBN NNS IN JJ NNS CC VBD DT JJ NN IN NNS CC NNS IN JJ NNS IN NNP .\nThe U.S. military says 81 suspected rebels were rounded up Thursday in raids around Youssifiyeh , south of the capital , Baghdad .\tDT NNP NN VBZ CD JJ NNS VBD VBN RP NNP IN NNS IN NNP , NN IN DT NN , NNP .\nIraqi officials say Abu Saeed , a top lieutenant of wanted terrorist Abu Musab al-Zarqawi , was captured in Mosul .\tJJ NNS VBP NNP NNP , DT JJ NN IN JJ JJ NNP NNP NNP , VBD VBN IN NNP .\nMilitary officials also say U.S. and Iraqi troops uncovered what they called the largest cache of weapons found so far , in a mosque in Fallujah .\tJJ NNS RB VBP NNP CC JJ NNS VBD WP PRP VBD DT JJS NN IN NNS VBN RB RB , IN DT NN IN NNP .\nThe discovery came as Iraqi troops searching for suspected terrorist hideouts in Fallujah uncovered what appeared to be a chemical bomb factory .\tDT NN VBD IN JJ NNS VBG IN JJ JJ NNS IN NNP VBD WP VBD TO VB DT NN NN NN .\nIraqi officials say the laboratory may have been used to make toxic substances and contained pamphlets on manufacturing anthrax .\tJJ NNS VBP DT NN MD VB VBN VBN TO VB JJ NNS CC VBD NNS IN NN NN .\nThe head of the Palestinian mission in Peru has told protesters in Lima that the kidnapping of a Peruvian photographer in the Gaza Strip is damaging the ' just fight ' of the Palestinian people .\tDT NN IN DT JJ NN IN NNP VBZ VBN NNS IN NNP IN DT NN IN DT JJ NN IN DT NNP NNP VBZ VBG DT `` RB VB `` IN DT JJ NNS .\nWalid Abdel Rahim spoke to protesters on Friday outside the Palestinian mission .\tNNP NNP NNP VBD TO NNS IN NNP IN DT JJ NN .\nHe condemned the kidnapping of Jaime Razuri .\tPRP VBD DT NN IN NNP NNP .\nThe protesters called for Razuri 's release .\tDT NNS VBD IN NNP POS NN .\nThe crowd included Razuri 's family and international journalists .\tDT NN VBD NNP POS NN CC JJ NNS .\nRazuri is an employee of the French news agency .\tNNP VBZ DT NN IN DT JJ NN NN .\nGunmen seized him on Monday outside the news agency 's offices in Gaza City .\tNNS VBD PRP IN NNP IN DT NN NN POS NNS IN NNP NNP .\nNo group has claimed responsibility for the kidnapping .\tDT NN VBZ VBN NN IN DT NN .\nKidnappings are frequent in the Gaza Strip , but hostages are usually released within hours .\tNNS VBP JJ IN DT NNP NNP , CC NNS VBP RB VBN IN NNS .\nChinese authorities have banned the use of foreign words and phrases - especially English - in Chinese newspapers , books and websites .\tJJ NNS VBP VBN DT NN IN JJ NNS CC NNS ; RB JJ ; IN JJ NNS , NNS CC NNS .\nThe ban , reported Wednesday , was issued by the General Administration of Press and Publication , the governing body for written publications .\tDT NN , VBD NNP , VBD VBN IN DT NNP NNP IN NNP CC NNP , DT NN NN IN JJ NNS .\nIt says the increasing use of English and half-English phrases is damaging the purity of the Chinese language and disrupting the nation 's ' harmonious and healthy cultural environment . '\tPRP VBZ DT VBG NN IN NNP CC JJ NNS VBZ VBG DT NN IN DT JJ NN CC VBG DT NN POS `` JJ CC JJ JJ NN . ``\nThe ruling body leaves some room for English words and abbreviations to be used if they are immediately followed by a Chinese translation or explanation .\tDT NN NN VBZ DT NN IN JJ NNS CC NNS TO VB VBN IN PRP VBP RB VBN IN DT JJ NN CC NN .\nIt says translations should be consistent with basic translation principles and practices .\tPRP VBZ NNS MD VB JJ IN JJ NN NNS CC NNS .\nThe announcement includes a warning that violations will be punished as provided for by the law .\tDT NN VBZ DT NN IN NNS MD VB VBN IN VBN IN IN DT NN .\nIsraeli Defense Minister Ehud Barak has canceled a visit to Paris where he was to take part in an international military exhibition , and meet with the French defense and foreign ministers .\tJJ NNP NNP NNP NNP VBZ VBN DT NN TO NNP WRB PRP VBD TO VB NN IN DT JJ JJ NN , CC VB IN DT JJ NN CC JJ NNS .\nIsrael 's defense ministry said Sunday that Barak has decided to remain in Israel until a panel of experts is formed to investigate the raid on a Gaza-bound flotilla .\tNNP POS NN NN VBD NNP IN NNP VBZ VBN TO VB IN NNP IN DT NN IN NNS VBZ VBN TO VB DT NN IN DT JJ NN .\nEarlier this month , Israel drew international criticism after its soldiers killed nine pro-Palestinian activists who were part of a flotilla that was trying to break a blockade and deliver aid directly to Gaza .\tRBR DT NN , NNP VBD JJ NN IN PRP$ NNS VBD CD JJ NNS WP VBD NN IN DT NN WDT VBD VBG TO VB DT NN CC VB NN RB TO NNP .\nFrench activists said they plan on filing a lawsuit against Barak in France , as well as with the International Criminal Court in the Netherlands .\tJJ NNS VBD PRP VBP IN VBG DT NN IN NNP IN NNP , RB RB IN IN DT NNP NNP NNP IN DT NNP .\nBarak told Israel 's parliament last week that an internal inquiry will aim to establish whether Israel 's raid on the ship , and its Gaza blockade , are in keeping with international law .\tNNP VBD NNP POS NN JJ NN IN DT JJ NN MD VB TO VB IN NNP POS NN IN DT NN , CC PRP$ NNP NN , VBP IN VBG IN JJ NN .\nA surgeon in Miami used his skill in transplanting organs to save the life of a woman who had been told her cancer was inoperable .\tDT NN IN NNP VBD PRP$ NN IN VBG NNS TO VB DT NN IN DT NN WP VBD VBN VBN PRP$ NN VBD JJ .\nIn this breakthrough surgery , doctors narrowed the scope of what is now considered inoperable .\tIN DT NN NN , NNS VBD DT NN IN WP VBZ RB VBN JJ .\nVOA 's Carol Pearson reports .\tNNP POS NNP NNP VBZ .\nA suicide bomber blew himself up near a NATO base in eastern Afghanistan Tuesday , killing 10 civilians and wounding 14 others .\tDT NN NN VBD PRP RP IN DT NNP NN IN JJ NNP NNP , VBG CD NNS CC VBG CD NNS .\nAn Afghan official , provincial governor Arsala Jamal , says the bomber set off his explosives in a crowd of laborers waiting to get inside a NATO military base in the city of Khost .\tDT JJ NN , JJ NN NNP NNP , VBZ DT NN VBD RP PRP$ NNS IN DT NN IN NNS VBG TO VB IN DT NNP JJ NN IN DT NN IN NNP .\nThere were no NATO or U.S. casualities .\tEX VBD DT NNP CC NNP NNS .\nIn a separate incident in the south , suspected Taleban militants ambushed a police patrol in Kandahar , killing at least eight policemen .\tIN DT JJ NN IN DT NN , JJ NNP NNS VBD DT NN NN IN NNP , VBG IN JJS CD NNS .\nAttacks by Taleban militants against NATO , U.S. and Afghan forces increased dramatically in Afghanistan last year .\tNNS IN NNP NNS IN NNP , NNP CC JJ NNS VBD RB IN NNP JJ NN .\nU.S. and Afghan officials have warned they expect an increase in Taleban attacks in the coming months in what has been called a ' spring offensive . '\tNNP CC JJ NNS VBP VBN PRP VBP DT NN IN NNP NNS IN DT VBG NNS IN WP VBZ VBN VBN DT `` NN NN . ``\nPalestinian officials have confirmed that elections to replace president Yasser Arafat will be held on January 9 .\tJJ NNS VBP VBN IN NNS TO VB NN NNP NNP MD VB VBN IN NNP CD .\nCaretaker President Rawhi Fattouh said Sunday the nominating period for candidates will begin November 20 , and run for 12 days .\tNN NNP NNP NNP VBD NNP DT JJ NN IN NNS MD VB NNP CD , CC VB IN CD NNS .\nThe announcement of the vote comes three days after Mr. Arafat died in a Paris hospital .\tDT NN IN DT NN VBZ CD NNS IN NNP NNP VBD IN DT NNP NN .\nHe did not appoint a successor .\tPRP VBD RB VB DT NN .\nThe new chairman of the Palestine Liberation Organization , Mahmoud Abbas , will travel to Gaza today to meet with Mr. Arafat 's mourners and various Palestinian factions .\tDT JJ NN IN DT NNP NNP NNP , NNP NNP , MD VB TO NNP NN TO VB IN NNP NNP POS NNS CC JJ JJ NNS .\nThe former prime minister is widely expected to be chosen as the presidential candidate of the mainstream Fatah faction .\tDT JJ JJ NN VBZ RB VBN TO VB VBN IN DT JJ NN IN DT NN NNP NN .\nMeanwhile , Israeli Prime Minister Ariel Sharon said today he will not rule out the possibility of allowing Palestinians living in disputed east Jerusalem to vote in the upcoming election .\tRB , JJ NNP NNP NNP NNP VBD NN PRP MD RB VB RP DT NN IN VBG NNS VBG IN JJ JJ NNP TO VB IN DT JJ NN .\nSome Israelis fear allowing Palestinians in Jerusalem to vote would strengthen their claim on the city .\tDT NNS VBP VBG NNS IN NNP TO VB MD VB PRP$ NN IN DT NN .\nBeijing 's subway could reach 561 kilometers in 14 years - making it the longest subway system in the world .\tNNP POS NN MD VB CD NNS IN CD NNS IN VBG PRP DT JJS NN NN IN DT NN .\nThe official China Daily newspaper reports Monday that a plan has been drawn up to expand the subway network to 19 lines where it will reach all major corners of China 's capital city .\tDT JJ NNP NNP NN VBZ NNP IN DT NN VBZ VBN VBN RP TO VB DT NN NN TO CD NNS WRB PRP MD VB DT JJ NNS IN NNP POS NN NN .\nEach of the system 's current four lines carries 1.5 million people every day .\tDT IN DT NN POS JJ CD NNS VBZ CD CD NNS DT NN .\nThe paper says the expansion plan is still subject to government approval , but if adopted it calls for three lines to be completed in time for the 2008 Olympics .\tDT NN VBZ DT NN NN VBZ RB JJ TO NN NN , CC IN VBN PRP VBZ IN CD NNS TO VB VBN IN NN IN DT CD NNS .\nCurrently , London has the longest subway line in the world .\tRB , NNP VBZ DT JJS NN NN IN DT NN .\nIt is 407 kilometers in length , has 12 lines and carries three million passengers a day .\tPRP VBZ CD NNS IN NN , VBZ CD NNS CC VBZ CD CD NNS DT NN .\nNiger has appealed for international help in battling an outbreak of the deadly H5N1 strain of bird flu .\tNNP VBZ VBN IN JJ NN IN VBG DT NN IN DT JJ NNP NN IN NN NN .\nOfficials Wednesday , said they need supplies like vaccines for unaffected poultry and protective suits for people destroying birds infected with the virus .\tNNS NNP , VBD PRP VBP NNS IN NNS IN JJ NN CC JJ NNS IN NNS VBG NNS VBN IN DT NN .\nThe World Animal Health Organization said Monday it had found the H5N1 strain among domestic ducks in southern Niger .\tDT NNP NNP NNP NNP VBD NNP PRP VBD VBN DT NNP NN IN JJ NNS IN JJ NNP .\nThat outbreak was near the border with Nigeria , where H5N1 also was recently found .\tDT NN VBD IN DT NN IN NNP , WRB NNP RB VBD RB VBN .\nAuthorities are trying to stop the movement of poultry in the region and have placed affected farms under heightened surveillance .\tNNS VBP VBG TO VB DT NN IN NN IN DT NN CC VB VBN JJ NNS IN JJ NN .\nNiger 's government says it will compensate farmers $ 1.8 ( 1,000 CFA francs ) for every bird destroyed when the culling process begins .\tNNP POS NN VBZ PRP MD VB NNS $ CD LRB CD NNP NNS RRB IN DT NN VBN WRB DT NN NN VBZ .\nThe U.N. war crimes tribunal in The Hague has convicted two Bosnian Serb army officers of complicity in the 1995 massacre of thousands of Muslims .\tDT NNP NN NNS JJ IN DT NNP VBZ VBN CD JJ JJ NN NNS IN NN IN DT CD NN IN NNS IN NNPS .\nColonel Vidoje Blagojevic was found guilty of aiding and abetting genocide in the deaths of more than 7,000 unarmed Muslim men and boys at Srebrenica in Bosnia-Herzegovina .\tNNP NNP NNP VBD VBN JJ IN VBG CC VBG NN IN DT NNS IN JJR IN CD JJ NN NNS CC NNS IN NNP IN NNP .\nHe was sentenced to 18 years in prison .\tPRP VBD VBN TO CD NNS IN NN .\nMajor Dragan Jokic was found guilty of aiding and abetting murder , and of extermination and persecution , and was sentenced to nine years .\tNNP NNP NNP VBD VBN JJ IN VBG CC VBG NN , CC IN NN CC NN , CC VBD VBN TO CD NNS .\nBoth men had pleaded not guilty .\tDT NNS VBD VBN RB JJ .\nThe 1995 massacre occurred after Serbs captured Srebrenica , which the United Nations had declared a safe area .\tDT CD NN VBD IN NNS VBD NNP , WDT DT NNP NNPS VBD VBN DT JJ NN .\nBosnian Serb authorities acknowledged for the first time last year that there had been a massacre .\tJJ JJ NNS VBD IN DT JJ NN JJ NN IN EX VBD VBN DT NN .\nThe British Defense Ministry says a British soldier serving with the NATO force in Afghanistan has been shot dead in southern Helmand province .\tDT NNP NNP NNP VBZ DT JJ NN VBG IN DT NNP NN IN NNP VBZ VBN VBN JJ IN JJ NNP NN .\nA NATO statement says the soldier was killed Sunday during an attack against insurgents in the Musa Qala district .\tDT NNP NN VBZ DT NN VBD VBN NNP IN DT NN IN NNS IN DT NNP NNP NN .\nIn other violence , in the same province , Afghan authorities say 17 Taleban insurgents have been killed Saturday .\tIN JJ NN , IN DT JJ NN , JJ NNS VBP CD NNP NNS VBP VBN VBN NNP .\nLocal officials say three insurgents were killed in a clash in the mountainous Garmser district .\tJJ NNS VBP CD NNS VBD VBN IN DT NN IN DT JJ NNP NN .\nHours later , during a search operation in the same district , troops killed 14 more insurgents .\tNNS RB , IN DT NN NN IN DT JJ NN , NNS VBD CD JJR NNS .\nIn neighboring Kandahar province , an American soldier was wounded when a suicide bomber blew up his explosives-laden car near a military convoy on the main highway to Kabul .\tIN JJ NNP NN , DT JJ NN VBD VBN WRB DT NN NN VBD RP PRP$ JJ NN IN DT JJ NN IN DT JJ NN TO NNP .\nAnd , armed men attacked a police post overnight in the Murghab district of western Badghis province , killing at least two Afghan border police .\tCC , JJ NNS VBD DT NN NN RB IN DT NNP NN IN JJ NNP NN , VBG IN JJS CD JJ NN NN .\nNATO has expressed concern at the recent government crackdown in Uzbekistan and warned Tashkent that its ties with the alliance depended on its commitment to basic human rights .\tNNP VBZ VBN NN IN DT JJ NN NN IN NNP CC VBD NNP IN PRP$ NNS IN DT NN VBD IN PRP$ NN TO JJ JJ NNS .\nA NATO statement , issued Tuesday in Brussels , said the alliance condemns the reported use of excessive force against protesters and supports the United Nations ' call for an independent inquiry into the events earlier this month .\tDT NNP NN , VBN NNP IN NNP , VBD DT NN VBZ DT JJ NN IN JJ NN IN NNS CC VBZ DT NNP NNPS POS NN IN DT JJ NN IN DT NNS RBR DT NN .\nWitnesses , human rights groups and Uzbek political opposition activists say the crackdown in the eastern part of the country killed up to 1,000 people .\tNNS , JJ NNS NNS CC JJ JJ NN NNS VBP DT NN IN DT JJ NN IN DT NN VBD RP TO CD NNS .\nBut Tashkent puts the death toll at 169 , including 32 soldiers .\tCC NNP VBZ DT NN NN IN CD , VBG CD NNS .\nIn another development , China today declared its support for the Uzbek government of President Islam Karimov , saying whatever happened in the country is an internal affair .\tIN DT NN , NNP NN VBD PRP$ NN IN DT JJ NN IN NNP NNP NNP , VBG WDT VBD IN DT NN VBZ DT JJ NN .\nPresident Karimov is to visit Beijing Wednesday .\tNNP NNP VBZ TO VB NNP NNP .\nRescue efforts continue along the southern coast of Indonesia 's Java Island - struck by a tsunami this week .\tNN NNS VBP IN DT JJ NN IN NNP POS NNP NNP : VBN IN DT NN DT NN .\nAlmost 400 people have been confirmed dead and the death toll is expected to rise .\tRB CD NNS VBP VBN VBN JJ CC DT NN NN VBZ VBN TO VB .\nTens of thousands of people have been displaced or evacuated .\tNNS IN NNS IN NNS VBP VBN VBN CC VBN .\nI 'm here in the mosque of a small coastal town of Pangandaran , where bodies keep arriving since a tsunami swept ashore on Monday .\tPRP VBP RB IN DT NN IN DT JJ JJ NN IN NNP , WRB NNS VBP VBG IN DT NN VBD RB IN NNP .\nFamilies here are mourning the loss of people and preparing bodies for Islamic burial .\tNNS RB VBP VBG DT NN IN NNS CC VBG NNS IN JJ NN .\nThe atmosphere here is still chaotic - filled with sirens and rumbling relief trucks .\tDT NN RB VBZ RB JJ IN VBN IN NNS CC VBG NN NNS .\nSearch and rescue teams say they continue to look for victims and expect the death toll to climb still further .\tNN CC NN NNS VBP PRP VBP TO VB IN NNS CC VBP DT NN NN TO VB RB RBR .\nThis morning teams pulled several more bodies from the debris and rubble .\tDT NN NNS VBD JJ JJR NNS IN DT NN CC NN .\nMany residents are bracing for more bad news in the days to come .\tJJ NNS VBP VBG IN JJR JJ NN IN DT NNS TO VB .\nThe Democratic Party used its weekly radio address to criticize President Bush 's Iraq war strategy and to blame Senate Republicans for stifling debate on Iraq .\tDT JJ NNP VBD PRP$ JJ NN NN TO VB NNP NNP POS NNP NN NN CC TO VB NNP NNPS IN VBG NN IN NNP .\nSenator John Kerry from the state of Massachusetts Saturday said the president 's proposal to send 21,000 additional troops to Iraq is , in his words , ' nothing more than the escalation of a misguided war . '\tNNP NNP NNP IN DT NN IN NNP NNP VBD DT NN POS NN TO VB CD JJ NNS TO NNP VBZ , IN PRP$ NNS , `` DT JJR IN DT NN IN DT JJ NN . ``\nKerry , who is a Vietnam War veteran , also criticized Republicans for blocking a Senate resolution backed by Democrats last week that opposes president Bush 's plan to send additional troops .\tNNP , WP VBZ DT NNP NNP NN , RB VBD NNS IN VBG DT NNP NN VBN IN NNPS JJ NN WDT VBZ NN NNP POS NN TO VB JJ NNS .\nKerry also urged Congress to take stronger action to end the war and said the United States must pressure Iraqi politicians to meet benchmarks .\tNNP RB VBD NNP TO VB JJR NN TO VB DT NN CC VBD DT NNP NNPS MD VB JJ NNS TO VB NNS .\nIn a separate radio address earlier Saturday , President Bush urged Congress to approve his energy proposals .\tIN DT JJ NN NN JJR NNP , NNP NNP VBD NNP TO VB PRP$ NN NNS .\nThe International Criminal Court at The Hague is expected to launch a formal investigation into possible war crimes in Sudan 's western Darfur region .\tDT NNP NNP NNP IN DT NNP VBZ VBN TO VB DT JJ NN IN JJ NN NNS IN NNP POS JJ NNP NN .\nSources familiar with the case say prosecutors plan to announce details of the probe Monday .\tNNS JJ IN DT NN VBP NNS VBP TO VB NNS IN DT NN NNP .\nThe inquiry is expected to be the biggest investigation in the ICC 's nearly three-year history .\tDT NN VBZ VBN TO VB DT JJS NN IN DT NNP POS RB JJ NN .\nOfficials at the United Nations have said 1,80,000 people in Darfur have been killed in more than two years of fighting between rebel groups and government-backed Arab militias , known as the Janjaweed .\tNNS IN DT NNP NNPS VBP VBN CD NNS IN NNP VBP VBN VBN IN JJR IN CD NNS IN VBG IN NN NNS CC JJ JJ NNS , VBN IN DT NNP .\nTwo-million other people have been displaced in the conflict .\tJJ JJ NNS VBP VBN VBN IN DT NN .\nThe United Nations referred the case to the ICC after the United States , which opposes the court , backed away from using its veto in the U.N. Security Council .\tDT NNP NNPS VBD DT NN TO DT NNP IN DT NNP NNPS , WDT VBZ DT NN , VBD RB IN VBG PRP$ NN IN DT NNP NNP NNP .\nThe United States has confirmed that two U.S. officials met with North Korean diplomats in New York last week .\tDT NNP NNPS VBZ VBN IN CD NNP NNS VBD IN JJ JJ NNS IN NNP NNP JJ NN .\nA spokesman for the U.S. embassy in Tokyo Thursday said the working-level meeting was used to convey U.S. policy , not to negotiate .\tDT NN IN DT NNP NN IN NNP NNP VBD DT JJ NN VBD VBN TO VB NNP NN , RB TO VB .\nHe did not elaborate on what the two sides discussed .\tPRP VBD RB VB IN WP DT CD NNS VBD .\nBut Washington has been urging North Korea to return to six party talks on its nuclear program .\tCC NNP VBZ VBN VBG NNP NNP TO VB TO CD NN NNS IN PRP$ JJ NN .\nThe talks have been stalled since last September , and North Korea has boycotted efforts to arrange a new meeting .\tDT NNS VBP VBN VBN IN JJ NNP , CC NNP NNP VBZ VBN NNS TO VB DT JJ NN .\nFormer U.S. President Jimmy Carter says he is ' extremely disappointed ' with Tony Blair for what he says is the British prime minister 's failure to constrain President Bush 's policies toward Iraq .\tJJ NNP NNP NNP NNP VBZ PRP VBZ `` RB JJ `` IN NNP NNP IN WP PRP VBZ VBZ DT JJ JJ NN POS NN TO VB NNP NNP POS NNS IN NNP .\nMr. Carter , an outspoken critic of the 2003 U.S.-led Iraq invasion , was quoted Sunday in Britain 's Sunday Telegraph newspaper .\tNNP NNP , DT JJ NN IN DT CD JJ NNP NN , VBD VBN NNP IN NNP POS NNP NNP NN .\nHe said he thought that Mr. Blair could have had a moderating influence on Washington , ' and he has not . '\tPRP VBD PRP VBD IN NNP NNP MD VB VBN DT JJ NN IN NNP , `` CC PRP VBZ RB . ``\nMr. Blair has been President Bush 's closest international ally on Iraq , and Britain has the second largest contingent of troops in the country .\tNNP NNP VBZ VBN NNP NNP POS JJS JJ NN IN NNP , CC NNP VBZ DT JJ JJS JJ IN NNS IN DT NN .\nMr. Carter said people in many countries he has visited equate U.S. policy with British interests , and said that U.S. popularity in moderate countries like Egypt and Jordan is currently less than five percent .\tNNP NNP VBD NNS IN JJ NNS PRP VBZ VBN JJ NNP NN IN JJ NNS , CC VBD IN NNP NN IN JJ NNS IN NNP CC NNP VBZ RB JJR IN CD NN .\nThe 81-year-old Mr. Carter , the 39th U.S. president , served from 1977 to 1981 .\tDT JJ NNP NNP , DT JJ NNP NN , VBD IN CD TO CD .\nThe U.S. military in Afghanistan says two Marines have been wounded during an ambush by suspected Taleban fighters north of Jalalabad .\tDT NNP NN IN NNP VBZ CD NNS VBP VBN VBN IN DT NN IN JJ NNP NNS NN IN NNP .\nA U.S. statement says the Marines came under fire Saturday evening while conducting a routine security patrol , and the assailants retreated .\tDT NNP NN VBZ DT NNPS VBD IN NN NNP NN IN VBG DT JJ NN NN , CC DT NNS VBD .\nBoth Marines received shrapnel wounds to the shoulder and were treated at the scene before continuing with their mission .\tDT NNPS VBD NN NNS TO DT NN CC VBD VBN IN DT NN IN VBG IN PRP$ NN .\nU.S. and Afghan government troops clash regularly with insurgents in southern and eastern Afghanistan bordering Pakistan .\tNNP CC JJ NN NNS VB RB IN NNS IN JJ CC JJ NNP VBG NNP .\nViolence has declined during the winter .\tNN VBZ VBN IN DT NN .\nBut Taleban officials have vowed that attacks will intensify when the weather improves .\tCC NNP NNS VBP VBN DT NNS MD VB WRB DT NN VBZ .\nBenin 's Constitutional Court says the two leading candidates from a recent presidential vote will compete in a run-off later this month .\tNNP POS NNP NNP VBZ DT CD VBG NNS IN DT JJ JJ NN MD VB IN DT NN RBR DT NN .\nThe court issued final vote results Wednesday , showing that former banker Yayi Boni won 36 percent of the ballots while former Prime Minister Adrien Houngbedji got 24 percent .\tDT NN VBD JJ NN NNS NNP , VBG IN JJ NN NNP NNP VBD CD NN IN DT NNS IN JJ NNP NNP NNP NNP VBD CD NN .\nCourt officials say a date for the run-off vote is not yet decided , but it likely will take place in the coming weeks .\tNNP NNS VBP DT NN IN DT NN NN VBZ RB RB VBN , CC PRP RB MD VB NN IN DT JJ NNS .\nAuthorities noted there were some problems in the voting , but said they did not affect the validity of the results .\tNNS VBD EX VBD DT NNS IN DT NN , CC VBD PRP VBD RB VB DT NN IN DT NNS .\nMore than three million voters took part in the March 5 ballot .\tJJR IN CD CD NNS VBD NN IN DT NNP CD NN .\nThe winner of the upcoming run-off vote will replace 72-year-old President Mathieu Kerekou , who was barred by age limits from seeking re-election .\tDT NN IN DT JJ NN NN MD VB JJ NNP NNP NNP , WP VBD VBN IN NN NNS IN VBG NN .\nIran is dismissing a newspaper report that says U.S. intelligence officials have thousands of pages of documents proving Tehran is trying to build a nuclear bomb .\tNNP VBZ VBG DT NN NN WDT VBZ NNP NN NNS VBP NNS IN NNS IN NNS VBG NNP VBZ VBG TO VB DT JJ NN .\nAn Iranian Foreign Ministry spokesman , Hamid Reza Asefi , describes the allegations as laughable .\tDT JJ NNP NNP NN , NNP NNP NNP , VBZ DT NNS IN JJ .\nThe New York Times reports Sunday the documents were on a stolen Iranian laptop computer obtained from a longtime contact in Iran , and were shown to officials of the International Atomic Energy Agency in July .\tDT NNP NNP NNP VBZ NNP DT NNS VBD IN DT JJ JJ NN NN VBD IN DT JJ NN IN NNP , CC VBD VBN TO NNS IN DT NNP NNP NNP NNP IN NNP .\nThe United States accuses Iran of trying to build nuclear weapons , and wants the IAEA to refer Tehran to the U.N. Security Council for possible sanctions .\tDT NNP NNPS VBZ NNP IN VBG TO VB JJ NNS , CC VBZ DT NNP TO VB NNP TO DT NNP NNP NNP IN JJ NNS .\nThe IAEA board will consider the request during its November 24 meeting .\tDT NNP NN MD VB DT NN IN PRP$ NNP CD NN .\nThe Iranian spokesman says the new allegation is an attempt by Washington to affect the board 's decision .\tDT JJ NN VBZ DT JJ NN VBZ DT NN IN NNP TO VB DT NN POS NN .\nThe United States is sending an FBI agent to Azerbaijan to help find those responsible for the killing of magazine editor Elmar Husseinov , whose work was critical of the Azeri government .\tDT NNP NNPS VBZ VBG DT NNP NN TO NNP TO VB VB DT JJ IN DT NN IN NN NN NNP NNP , WP$ NN VBD JJ IN DT JJ NN .\nThe U.S. Embassy said the agent is arriving in Baku Friday at the request of Azerbaijan 's government .\tDT NNP NNP VBD DT NN VBZ VBG IN NNP NNP IN DT NN IN NNP POS NN .\nPresident Ilham Aliyev ordered a swift investigation , calling the attack a serious provocation against the state and authority .\tNNP NNP NNP VBD DT JJ NN , VBG DT NN DT JJ NN IN DT NN CC NN .\nEarlier , the country 's top opposition leader called for demonstrations in response to Wednesday 's killing .\tRB , DT NN POS JJ NN NN VBD IN NNS IN NN TO NNP POS NN .\nMr. Husseinov was the editor of the weekly Monitor .\tNNP NNP VBD DT NN IN DT JJ NN .\nHe had previously been jailed and fined for his work .\tPRP VBD RB VBN VBN CC VBN IN PRP$ NN .\nThe Committee to Protect Journalists said the killing appeared to have been well-planned and orchestrated -- while the Paris-based Reporters Without Borders called it part of a campaign of violence against journalists in Azerbaijan .\tDT NNP TO VB NNS VBD DT NN VBD TO VB VBN JJ CC JJ : IN DT JJ NNS IN NNS VBD PRP NN IN DT NN IN NN IN NNS IN NNP .\nA Chilean court has stripped former dictator Augusto Pinochet of his legal immunity , clearing the way for him to be tried in connection with the deaths of two political prisoners .\tDT JJ NN VBZ VBN JJ NN NNP NNP IN PRP$ JJ NN , VBG DT NN IN PRP TO VB VBN IN NN IN DT NNS IN CD JJ NNS .\nJustices voted 17 to 6 Wednesday to remove the immunity Pinochet enjoys as a former president .\tNNS VBD CD TO CD NNP TO VB DT NN NNP VBZ IN DT JJ NN .\nThe 90-year-old can now be tried for his role in two murders committed by soldiers several weeks after Pinochet claimed power through a bloody coup .\tDT NN MD RB VB VBN IN PRP$ NN IN CD NNS VBN IN NNS JJ NNS IN NNP VBD NN IN DT JJ NN .\nChilean judges also upheld a previous ruling allowing Pinochet to be released from house arrest if he posted bail , set at about $ 19,000 .\tJJ NNS RB VBD DT JJ NN VBG NNP TO VB VBN IN NN NN IN PRP VBD NN , VBN IN IN $ CD .\nGeneral Pinochet ruled Chile from 1973 to 1990 .\tNNP NNP VBD NNP IN CD IN CD .\nChina 's state media say Beijing plans to launch a lunar orbiter later this year .\tNNP POS NN NNS VBP NNP VBZ TO VB DT NN NN RB DT NN .\nThe Xinhua news agency quotes China 's space agency chief , Sun Laiyan , as saying the launch is the first step towards a lunar probe .\tDT NNP NN NN VBZ NNP POS NN NN NN , NNP NNP , IN VBG DT NN VBZ DT JJ NN IN DT NN NN .\nSun said the lunar exploration program has been divided into three steps : orbiting the moon , landing on the lunar surface and coming back to Earth with moon samples .\tNNP VBD DT NN NN NN VBZ VBN VBN IN CD NNS IN VBG DT NN , NN IN DT NN NN CC VBG RB TO NNP IN NN NNS .\nXinhua says a moon rover mission is scheduled for around 2012 .\tNNP VBZ DT NN NN NN VBZ VBN IN RB CD .\nSun , who spoke at Beijing Jiaotong University , says China will also continue research on manned space missions , including a space walk and experiments tp link passing spacecraft .\tNNP , WP VBD IN NNP NNP NNP , VBZ NNP MD RB VB NN IN JJ NN NNS , VBG DT NN NN CC NNS JJ NN VBG NN .\nIn 2003 , China became the third country - after the former Soviet Union and the United States - to launch a man into space .\tIN CD , NNP VBD DT JJ NN : IN DT JJ NNP NNP CC DT NNP NNPS : TO VB DT NN IN NN .\nOfficials in Pakistan say 28 people have died in the aftermath of heavy rainstorms over the past two days .\tNNS IN NNP VBP CD NNS VBP VBN IN DT NN IN JJ NNS IN DT JJ CD NNS .\nHealth Minister Syed Sardar Ahmed says the majority of deaths took place in the port city of Karachi .\tNNP NNP NNP NNP NNP VBZ DT NN IN NNS VBD NN IN DT JJ NN IN NNP .\nAhmed says eight people died of electrocution and another 18 because of roof and wall collapses .\tNNP VBZ CD NNS VBD IN NN CC DT CD IN IN NN CC NN NNS .\nIn Bangladesh , officials say drowning and disease killed at least 16 people Friday .\tIN NNP , NNS VBP VBG CC NN VBN IN JJS CD NNS NNP .\nThousands more have been admitted to hospitals for severe diarrhea .\tNNS RBR VBP VBN VBN TO NNS IN JJ NN .\nNearly 2,000 people have died in India , Bangladesh and Nepal since the monsoon rains began in mid-June , the vast majority in India .\tRB CD NNS VBP VBN IN NNP , NNP CC NNP IN DT NN NNS VBD IN NNP , DT JJ NN IN NNP .\nEarlier this week , the United Nations warned of disease outbreaks in the region as rescue workers struggled to deliver food and water to an estimated 30 million people displaced by floods from the rain .\tRBR DT NN , DT NNP NNPS VBD IN NN NNS IN DT NN IN NN NNS VBD TO VB NN CC NN TO DT VBN CD CD NNS VBN IN NNS IN DT NN .\nThe U.S. military says an American soldier has been killed in central Iraq .\tDT NNP NN VBZ DT JJ NN VBZ VBN VBN IN JJ NNP .\nA military statement released Friday said the soldier was shot dead while conducting combat operations Wednesday near the city of Iskandariyah , some 50 kilometers south of the capital , Baghdad .\tDT JJ NN VBN NNP VBD DT NN VBD VBN JJ IN VBG NN NNS NNP IN DT NN IN NNP , DT CD NNS RB IN DT NN , NNP .\nSeparately , Iraqi police say unidentified gunmen attacked two Sunni Mosques as worshippers attended Friday prayers near the mainly Shi'ite southern city of Basra .\tRB , JJ NNS VBP JJ NNS VBD CD NNP NNPS IN NNS VBD NNP NNS IN DT RB JJ JJ NN IN NNP .\nAt least one person was killed and several others wounded in the attacks .\tIN JJS CD NN VBD VBN CC JJ NNS VBD IN DT NNS .\nMeanwhile , thousands of Shi'ite Muslims rallied Friday in Basra in a show of support for Iraq 's new constitution and the Shi'ite-dominated government .\tRB , NNS IN NNP NNPS VBD NNP IN NNP IN DT NN IN NN IN NNP POS JJ NN CC DT JJ NN .\nAnti-constitution rallies were also reported in the city of Ramadi , west of Baghdad .\tJJ NNS VBD RB VBN IN DT NN IN NNP , NN IN NNP .\nA referendum on the constitution is scheduled for October 15 .\tDT NN IN DT NN VBZ VBN IN NNP CD .\nPolitical leaders from across Iraq are meeting in Baghdad to try to remove obstacles blocking agreement on a new constitution .\tJJ NNS IN IN NNP VBP VBG IN NNP TO VB TO VB NNS VBG NN IN DT JJ NN .\nPresident Jalal Talabani hosted Kurdish , Shi'ite and Sunni delegates Sunday and said an accord can be reached in time for parliament to approve the charter by an August 15 deadline .\tNNP NNP NNP VBD NNP , NNP CC NNP VBZ NNP CC VBD DT NN MD VB VBN IN NN IN NN TO VB DT NN IN DT NNP CD NN .\nDelegates remain deeply divided over key issues including federalism , national identity , and the role of Islam .\tNNS VBP RB VBN IN JJ NNS VBG NN , JJ NN , CC DT NN IN NNP .\nEarlier in the day , a suicide truck bomber killed at least five people outside a police station in Tikrit .\tRBR IN DT NN , DT NN NN NN VBD IN JJS CD NNS IN DT NN NN IN NNP .\nIn Baghdad , at least five Iraqis were killed in drive-by shootings .\tIN NNP , IN JJS CD NNS VBD VBN IN JJ NNS .\nTo the south , at least one person was killed and more than 40 were injured when hundreds of townspeople protesting poor public services clashed with police .\tTO DT NN , IN JJS CD NN VBD VBN CC JJR IN CD VBD VBN WRB NNS IN NN VBG JJ JJ NNS VBD IN NNS .\nRussia 's state-run natural gas company , Gazprom , says it has begun talks on purchasing gas from Azerbaijan .\tNNP POS JJ JJ NN NN , NNP , VBZ PRP VBZ VBN NNS IN VBG NN IN NNP .\nGazprom Chief Executive Alexei Miller signed a memorandum of understanding in Moscow Friday with the president of the Azeri State Oil Company , Rovnag Abdullayev , to begin talks on importing gas from 2010 .\tNNP NNP NNP NNP NNP VBD DT NN IN NN IN NNP NNP IN DT NN IN DT JJ NNP NNP NNP , NNP NNP , TO VB NNS IN VBG NN IN CD .\nAzeri gas would flow to Russia via a 200-kilometer pipeline running along the Caspian coast from Azerbaijan 's capital , Baku , to the Russian town of Novo-Filya .\tJJ NN MD VB TO NNP IN DT JJ NN VBG IN DT JJ NN IN NNP POS NN , NNP , TO DT JJ NN IN NNP .\nThe move could have negative implications for the EU-backed Nabucco pipeline project , designed to bring Caspian Sea gas to Europe while bypassing Russia .\tDT NN MD VB JJ NNS IN DT JJ NNP NN NN , VBN TO VB NNP NNP NN TO NNP IN VBG NNP .\nLast week , the European Union pledged more than $ 265 million for the project as part of a larger energy plan but it lacks both viable sources of gas and agreement between consortium members .\tJJ NN , DT NNP NNP VBD JJR IN $ CD CD IN DT NN IN NN IN DT JJR NN NN CC PRP VBZ DT JJ NNS IN NN CC NN IN NN NNS .\nFour British soldiers are facing manslaughter charges for allegedly forcing an Iraqi teenager into a canal in southern Iraq where he drowned in 2003 .\tCD JJ NNS VBP VBG NN NNS IN RB VBG DT JJ NN IN DT NN IN JJ NNP WRB PRP VBD IN CD .\nA prosecutor told the court martial Tuesday in Colchester , England that the soldiers ordered the boy and three other suspected looters into the Shabat al-Basra canal to teach them a lesson .\tDT NN VBD DT NN NN NNP IN NNP , NNP IN DT NNS VBD DT NN CC CD JJ JJ NNS IN DT NNP NNP NN TO VB PRP DT NN .\nHe accused them of failing to help the boy , Ahmad Jabbar Kareem after seeing that he was in ' obvious distress , ' and said they later fled the scene .\tPRP VBD PRP IN VBG TO VB DT NN , NNP NNP NNP IN VBG IN PRP VBD IN `` JJ NN , `` CC VBD PRP RB VBD DT NN .\nOne of the suspected looters told authorities that the soldiers threw rocks at them after they were forced into the water .\tCD IN DT JJ NNS VBD NNS IN DT NNS VBD NNS IN PRP IN PRP VBD VBN IN DT NN .\nThe four British soldiers have pleaded not guilty .\tDT CD JJ NNS VBP VBN RB JJ .\nThe international aid organization Oxfam says Asia 's overall recovery from last year 's tsunami is moving ahead , but rebuilding efforts have been uneven .\tDT JJ NN NN NNP VBZ NNP POS JJ NN IN JJ NN POS NN VBZ VBG RB , CC NN NNS VBP VBN JJ .\nAn Oxfam study Monday says one of the most persistent problems has been providing permanent shelter to those who lost everything last year in the devastating earthquake and mammoth ocean waves that hit coastal areas of Indonesia , Sri Lanka , Thailand , India and other countries .\tDT NNP NN NNP VBZ CD IN DT RBS JJ NNS VBZ VBN VBG JJ NN TO DT WP VBD DT JJ NN IN DT JJ NN CC JJ NN NNS WDT VBD JJ NNS IN NNP , NNP NNP , NNP , NNP CC JJ NNS .\nThe report adds that 60 percent of all those whose jobs were swept away by the tsunami last December 26 have now returned to work .\tDT NN VBZ IN CD NN IN DT DT WP$ NNS VBD VBN RB IN DT NN JJ NNP CD VBP RB VBN TO VB .\nJeremy Hobbs , Oxfam 's executive director , says the most impressive aspects of the tsunami recovery have been the resilience of the tsunami victims and the generous response by ordinary people worldwide to appeals for help .\tNNP NNP , NNP POS NN NN , VBZ DT RBS JJ NNS IN DT NN NN VBP VBN DT NN IN DT NN NNS CC DT JJ NN IN JJ NNS JJ TO NNS IN NN .\nRussian authorities say the blast from a bomb planted on train tracks in the southern Dagestan republic has killed one person and wounded four others .\tJJ NNS VBP DT NN IN DT NN VBN IN NN NNS IN DT JJ NNP NN VBZ VBN CD NN CC VBD CD NNS .\nThe commuter train was heading from a town in western Dagestan , Khasavyurt , to the regional capital , Makhachkala , early Sunday when the explosion occurred .\tDT NN NN VBD VBG IN DT NN IN JJ NNP , NNP , TO DT JJ NN , NNP , JJ NNP WRB DT NN VBD .\nRussian media say police believe the bomb was detonated by remote control .\tJJ NNS VBP NNS VBP DT NN VBD VBN IN JJ NN .\nDagestan authorities are calling the bombing an act of terrorism , and the Russian news agency Itar-Tass quotes officials as saying the attack was aimed at harming civilians .\tNNP NNS VBP VBG DT VBG DT NN IN NN , CC DT JJ NN NN JJ NNS NNS IN VBG DT NN VBD VBN IN VBG NNS .\nThere is no immediate claim of responsibility , but police say they suspect Muslim extremists carried out the bombing .\tEX VBZ DT JJ NN IN NN , CC NNS VBP PRP VBP NNP NNS VBD IN DT NN .\nA new Russian study found that violence by Muslim separatist militants from Chechnya is spilling over to neighboring Caucasus republics such as Dagestan , where the report says terrorist attacks have more than doubled to 70 since last year .\tDT JJ JJ NN VBD IN NN IN NNP JJ NNS IN NNP VBZ VBG IN TO JJ NNP NNS JJ IN NNP , WRB DT NN VBZ JJ NNS VBP JJR IN VBD TO CD IN JJ NN .\nThe organizing committee for the Beijing Olympics says the torch relay for the 2008 Games will go on as planned in China 's Sichuan province next month .\tDT NN NN IN DT NNP NNP VBZ DT NN NN IN DT CD NNPS MD VB IN RB VBN IN NNP POS JJ NN JJ NN .\nSpeaking in Beijing Tuesday , a spokesman for the committee said the earthquake in Sichuan will not affect the relay because the quake-stricken areas are not along the route .\tVBG IN NNP NNP , DT NN IN DT NN VBD DT NN IN NNP MD RB VB DT NN IN DT JJ NNS VBP RB IN DT NN .\nThe epicenter of Monday 's 7.9 magnitude earthquake was in Sichuan , and most of the confirmed deaths from the quake are in the province .\tDT NN IN NNP POS CD NN NN VBD IN NNP , CC JJS IN DT VBN NNS IN DT NN VBP IN DT NN .\nThe Olympic torch relay continued Tuesday in the Chinese city of Longyan , in the eastern province of Fujian .\tDT NNP NN NN VBD NNP IN DT JJ NN IN NNP , IN DT JJ NN IN NNP .\nThe torch is expected to reach Sichuan province next month , touring seven cities between June 15 to June 18 .\tDT NN VBZ VBN TO VB JJ NN JJ NN , VBG CD NNS IN NNP CD TO NNP CD .\nOn Wednesday , the torch will head to Jiangxi Province , to the west of Fujian .\tIN NNP , DT NN MD VB TO NNP NNP , TO DT NN IN NNP .\nPakistan 's military says it has killed 30 militants in an air strike on a Taliban hideout near the Afghan border .\tNNP POS NN VBZ PRP VBZ VBN CD NNS IN DT NN NN IN DT NNP NN IN DT JJ NN .\nThe military said in a statement that the rebel hideout in the Shawal mountains was targeted Saturday after authorities received a tip that insurgents were hiding there .\tDT NN VBD IN DT NN IN DT NN NN IN DT NNP NNS VBD VBN NNP IN NNS VBD DT NN IN NNS VBD VBG RB .\nShawal is in South Waziristan , a restive tribal area bordering Afghanistan , where the military in October launched an air and ground offensive to flush out Taliban militants\tNNP VBZ IN NNP NNP , DT JJ JJ NN VBG NNP , WRB DT NN IN NNP VBD DT NN CC NN NN TO VB RP NNP NNS\nIn another development Saturday , suicide bombers have attacked two police stations in northwest Pakistan .\tIN DT NN NNP , NN NNS VBP VBN CD NNS NNS IN JJ NNP .\nThe attacks in Mensehra and Balakot killed a police chief and wounded several other police officers .\tDT NNS IN NNP CC NNP VBD DT NN NN CC VBD JJ JJ NNS NNS .\nOfficials say one of the suicide bombers blew himself up , while another was shot dead by police .\tNNS VBP CD IN DT NN NNS VBD PRP RP , IN DT VBD VBN JJ IN NN .\nA third escaped .\tDT NN VBD .\nThe French news agency is reporting that bomb disposal personnel defused explosives strapped to the dead attacker 's body .\tDT JJ NN NN VBZ VBG IN NN NN NNS VBD NNS VBN TO DT JJ NN POS NN .\nU.S. prosecutors say an Oregon teenager of Somali descent has been arrested in an alleged terrorist plot to car-bomb a Christmas tree lighting event in the northwestern city of Portland , Oregon Friday night .\tNNP NNS VBP DT NNP NN IN JJ NN VBZ VBN VBN IN DT JJ JJ NN TO VB DT NNP NN NN NN IN DT JJ NN IN NNP , NNP NNP NN .\nAuthorities say 19-year-old Mohamed Osman Mohamud was taken into custody by agents from the Federal Bureau of Investigation after he dialed a cell phone intending to detonate a bomb , but instead rang for the FBI in a sting operation .\tNNS VBP JJ NNP NNP NNP VBD VBN IN NN IN NNS IN DT NNP NNP IN NNP IN PRP VBD DT NN NN VBG TO VB DT NN , CC RB NN IN DT NNP IN DT NN NN .\nMohamud had earlier been given phony explosives by undercover officers , who first learned of his alleged plot last year .\tNNP VBD RB VBN VBN JJ NNS IN NN NNS , WP RB VBD IN PRP$ JJ NN JJ NN .\nProsecutors say Mohamud unwittingly unveiled his plan to undercover officers by e-mail several months ago , while believing he was contacting an accomplice in Pakistan .\tNNS VBP NNP RB VBD PRP$ NN TO VB NNS IN JJ JJ NNS RB , IN VBG PRP VBD VBG DT NN IN NNP .\nMohamud will appear in federal court in Portland Monday on a criminal complaint of attempting to use weapons of mass destruction .\tNNP MD VB IN JJ NN IN NNP NNP IN DT JJ NN IN VBG TO VB NNS IN NN NN .\nInsurgents in Iraq have attacked the Abu Ghraib prison , outside Baghdad , injuring at least 18 American soldiers and 12 detainees .\tNNS IN NNP VBP VBN DT NNP NNP NN , IN NNP , VBG IN JJS CD JJ NNS CC CD NNS .\nThe U.S. military says that between 40 and 60 insurgents detonated two car bombs and then launched rocket-propelled grenades , followed by small arms fire outside the prison Saturday evening .\tDT NNP NN VBZ IN IN CD CC CD NNS VBD CD NN NNS CC RB VBD JJ NNS , VBN IN JJ NNS NN IN DT NN NNP NN .\nCoalition forces repelled their attack and the prison is reported to be secured .\tNN NNS VBD PRP$ NN CC DT NN VBZ VBN TO VB VBN .\nIt is not known whether there were insurgent casualties .\tPRP VBZ RB VBN IN EX VBD JJ NNS .\nAbu Ghraib houses more than 2,000 detainees .\tNNP NNP NNS RBR IN CD NNS .\nIt is notorious for a prisoner abuse scandal that resulted in charges against several U.S. soldiers .\tPRP VBZ JJ IN DT NN NN NN WDT VBD IN NNS IN JJ NNP NNS .\nEarlier today , a car bomb explosion killed five people near Baquba .\tRBR NN , DT NN NN NN VBD CD NNS IN NNP .\nAnd in political news , the Iraqi National Assembly is scheduled to meet Sunday to elect a speaker .\tCC IN JJ NN , DT JJ NNP NNP VBZ VBN TO VB NNP TO VB DT NN .\nBut politicians say Shi'ite and Sunni leaders are still not able to agree on a Sunni candidate for the post .\tCC NNS VBP NNP CC NNP NNS VBP RB RB JJ TO VB IN DT NNP NN IN DT NN .\nHundreds of thousands of Shi'ite pilgrims gathered in Iraq 's holy city of Karbala for a religious festival .\tNNS IN NNS IN NNP NNS VBD IN NNP POS JJ NN IN NNP IN DT JJ NN .\nIraqi authorities expect the number of pilgrims to top one million .\tJJ NNS VBP DT NN IN NNS TO VB CD CD .\nHeavy security is in place across the city during the festival commemorating the birth of ninth-century Imam al-Mahdi al-Muntadar .\tJJ NN VBZ IN NN IN DT NN IN DT NN VBG DT NN IN JJ NNP NNP NNP .\nIn other developments Saturday , bomb attacks in Baghdad killed at least two people .\tIN JJ NNS NNP , NN NNS IN NNP VBD IN JJS CD NNS .\nAnd , a gunman killed an employee of Iraq 's government-run newspaper in the capital .\tCC , DT NN VBD DT NN IN NNP POS JJ NN IN DT NN .\nIraqi officials also announced Prime Minister Nouri al-Maliki is heading to Iran Monday .\tJJ NNS RB VBD NNP NNP NNP NNP VBZ VBG TO NNP NNP .\nOfficials say his two-day visit will focus on security and bilateral issues .\tNNS VBP PRP$ JJ NN MD VB IN NN CC JJ NNS .\nOn Friday , insurgents firing mortar rounds killed at least three Shi'ite pilgrims in a procession near Karbala .\tIN NNP , NNS VBG NN NNS VBD IN JJS CD NNP NNS IN DT NN IN NNP .\nOfficials say at least six more pilgrims were wounded .\tNNS VBP IN JJS CD JJR NNS VBD VBN .\nIn other violence , a roadside bomb in Baghdad killed at least two people .\tIN JJ NN , DT NN NN IN NNP VBD IN JJS CD NNS .\nUnidentified gunmen on Mexico 's Gulf coast have shot to death the news director of one of the most influential newspapers in Veracruz , the second shooting attack on Mexican journalists in one week .\tJJ NNS IN NNP POS NNP NN VBP VBN TO NN DT NN NN IN CD IN DT RBS JJ NNS IN NNP , DT JJ NN NN IN JJ NNS IN CD NN .\nAuthorities Saturday say four assailants on Friday gunned down Raul Gibb Guerrero , director of the La Opinion newspaper , while he was driving his vehicle in northern Veracruz .\tNNS NNP VBP CD NNS IN NNP VBD RP NNP NNP NNP , NN IN DT NNP NNP NN , IN PRP VBD VBG PRP$ NN IN JJ NNP .\nEarlier this week , radio reporter Guadalupe Garcia Escamilla was shot several times in Nuevo Laredo , near Mexico 's border with the United States .\tRBR DT NN , NN NN NNP NNP NNP VBD VBN JJ NNS IN NNP NNP , IN NNP POS NN IN DT NNP NNPS .\nMs. Garcia was last reported to be in serious condition .\tNNP NNP VBD JJ VBN TO VB IN JJ NN .\nThe two attacks come amid reports of a missing journalist in northern Mexico .\tDT CD NNS VBP IN NNS IN DT JJ NN IN JJ NNP .\nThe media watchdog group , Reporters Without Borders , has called on authorities to investigate the disappearance of Alfredo Jimenez Mota , who was last seen April 2 .\tDT NNS NN NN , NNS IN NNS , VBZ VBN IN NNS TO VB DT NN IN NNP NNP NNP , WP VBD JJ VBN NNP CD .\nA South Korean human rights group says a senior North Korean scientist and the head of a military hospital have defected and are seeking asylum in South Korea .\tDT JJ JJ JJ NNS NN VBZ DT JJ JJ JJ NN CC DT NN IN DT JJ NN VBP VBN CC VBP VBG NN IN NNP NNP .\nThe Citizen 's Coalition for Human Rights of Abductees and North Korean Refugees says the two defected separately .\tDT NNP POS NN IN NNP NNP IN NNP CC NNP JJ NNP VBZ DT CD VBN RB .\nThe scientist is said to have left North Korea in March .\tDT NN VBZ VBN TO VB VBN NNP NNP IN NNP .\nThe rights group says the defectors are living in a Southeast Asian country it did not identify , and are applying for asylum to go to South Korea .\tDT NNS NN VBZ DT NNS VBP VBG IN DT JJ JJ NN PRP VBD RB VB , CC VBP VBG IN NN TO VB TO NNP NNP .\nOfficials in Seoul have not commented publicly on the matter .\tNNS IN NNP VBP RB VBN RB IN DT NN .\nHuman rights groups believe hundreds of thousands of North Koreans have fled the country since the end of the Korean War in 1953 to escape poverty and persecution .\tJJ NNS NNS VBP NNS IN NNS IN NNP NNS VBP VBN DT NN IN DT NN IN DT JJ NNP IN CD TO VB NN CC NN .\nThe majority cross the border into neighboring China .\tDT NN VBP DT NN IN VBG NNP .\nThe head of Ukraine 's parliamentary commission investigating the poisoning of opposition leader Viktor Yushchenko has called for an emergency meeting Tuesday .\tDT NN IN NNP POS JJ NN VBG DT NN IN NN NN NNP NNP VBZ VBN IN DT NN NN NNP .\nReports from the region say Volodymyr Syvkovych told journalists in Kiev that medical tests showing that Mr. Yushchenko was deliberately poisoned have given the commission grounds to reopen the investigation .\tNNS IN DT NN VBP NNP NNP VBD NNS IN NNP IN JJ NNS VBG IN NNP NNP VBD RB VBN VBP VBN DT NN NNS TO VB DT NN .\nProsecutors in Ukraine are conducting a separate investigation .\tNNS IN NNP VBP VBG DT JJ NN .\nMr. Syvkovych urged doctors who conducted the tests in Vienna to hand over the test results to prosecutors and his commission .\tNNP NNP VBD NNS WP VBD DT NNS IN NNP TO VB IN DT NN NNS TO NNS CC PRP$ NN .\nHe also called on Mr. Yushchenko to testify before the parliamentary commission .\tPRP RB VBD IN NNP NNP TO VB IN DT JJ NN .\nOn Monday , Ukrainian Prime Minister Viktor Yanukovych accused Washington of financing his rival 's presidential campaign .\tIN NNP , JJ NNP NNP NNP NNP VBD NNP IN VBG PRP$ NN POS JJ NN .\nBut , U.S. officials said they have no favored candidate , and that aid sent to Ukraine is only for promoting free elections and democracy .\tCC , NNP NNS VBD PRP VBP DT JJ NN , CC IN NN VBN TO NNP VBZ RB IN VBG JJ NNS CC NN .\nSri Lankan military officials say at least 10 soldiers were killed and several others wounded when an army bus hit a landmine Tuesday in the northern Jaffna peninsula .\tNNP NNP JJ NNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBD WRB DT NN NN VBD DT NN NNP IN DT JJ NNP NN .\nAuthorities say they suspect Tamil Tiger rebels carried out the attack .\tNNS VBP PRP VBP NNP NNP NNS VBD IN DT NN .\nMore than 30 government troops have been killed in eastern and northern Sri Lanka in a series of attacks blamed on the rebels since the beginning of this month .\tJJR IN CD NN NNS VBP VBN VBN IN JJ CC JJ NNP NNP IN DT NN IN NNS VBN IN DT NNS IN DT NN IN DT NN .\nThe upsurge of violence comes amid threats that Tamil rebels may resume their violent struggle for an independent Tamil homeland if the government fails to agree to a peace settlement over the next 12 months .\tDT NN IN NN VBZ IN NNS WDT NNP NNS MD VB PRP$ JJ NN IN DT JJ NN NN IN DT NN VBZ TO VB TO DT NN NN IN DT JJ CD NNS .\nSri Lankan President Mahinda Rajapakshe travels to New Delhi Tuesday , for talks with Indian leaders about his efforts to reach a lasting peace in the island nation .\tNNP NNP NNP NNP NNP VBZ TO NNP NNP NNP , IN NNS IN JJ NNS IN PRP$ NNS TO VB DT JJ NN IN DT NN NN .\nOfficials in Burma say a new outbreak of bird flu has been detected among chickens in an eastern district near the Chinese border .\tNNS IN NNP VBP DT JJ NN IN NN NN VBZ VBN VBN IN NNS IN DT JJ NN IN DT JJ NN .\nThe state-run New Light of Myanmar newspaper said Saturday that the outbreak was found at a farm in Kentung township in eastern Shan state on November 18 , after a farmer reported an unusual number of deaths in his chickens .\tDT JJ NNP NNP IN NNP NN VBD NNP IN DT NN VBD VBN IN DT NN IN NNP NN IN JJ NNP NN IN NNP CD , IN DT NN VBD DT JJ NN IN NNS IN PRP$ NNS .\nOfficials culled an unknown number of birds at the farm .\tNNS VBD DT JJ NN IN NNS IN DT NN .\nA statement from the Myanmar Livestock and Veterinary Department urged people to prevent the entry of poultry and birds from neighboring countries into Burma .\tDT NN IN DT NNP NNP CC NNP NNP VBD NNS TO VB DT NN IN NN CC NNS IN VBG NNS IN NNP .\nRussia and North Korea have pledged to boost cooperation on international issues , following a meeting of the countries ' foreign ministers in Moscow .\tNNP CC NNP NNP VBP VBN TO VB NN IN JJ NNS , VBG DT NN IN DT NNS POS JJ NNS IN NNP .\nRussian Foreign Minister Sergei Lavrov held talks with his North Korean counterpart , Pak Ui Chun , in the Russian capital Wednesday .\tJJ NNP NNP NNP NNP VBD NNS IN PRP$ JJ JJ NN , NNP NNP NNP , IN DT JJ NN NNP .\nPak 's visit to Moscow coincided with the 60th anniversary of relations between Russia and North Korea .\tNNP POS NN TO NNP VBD IN DT JJ NN IN NNS IN NNP CC NNP NNP .\nThe foreign ministers were expected to discuss North Korea 's nuclear disarmament process .\tDT JJ NNS VBD VBN TO VB NNP NNP POS JJ NN NN .\nRussia is one of five foreign powers working with North Korea on the dismantling of its nuclear weapons program .\tNNP VBZ CD IN CD JJ NNS VBG IN NNP NNP IN DT NN IN PRP$ JJ NNS NN .\nPyongyang readmitted United Nations inspectors to its main nuclear complex this week and pledged to stop its nuclear activities .\tNNP VBD NNP NNP VBZ TO PRP$ JJ JJ NN DT NN CC VBD TO VB PRP$ JJ NNS .\nOn Saturday , Washington removed North Korea from a list of states sponsoring terrorism , saying Pyongyang had agreed to all of its nuclear inspection demands .\tIN NNP , NNP VBD NNP NNP IN DT NN IN NNS VBG NN , VBG NNP VBD VBN TO DT IN PRP$ JJ NN NNS .\nNuclear negotiators say the action will help get the six-nation nuclear talks back on track .\tJJ NNS VBP DT NN MD VB VB DT JJ JJ NNS RB IN NN .\nAfghan authorities in the western province of Herat say demolition experts have destroyed a huge amount of arms and ammunition left over from decades of fighting .\tJJ NNS IN DT JJ NN IN NNP VBP NN NNS VBP VBN DT JJ NN IN NNS CC NN VBD RP IN NNS IN NN .\nThe authorities say more than 17,000 land mines and other unexploded ordinance collected from militia units in Herat were detonated Thursday in a controlled explosion .\tDT NNS VBP JJR IN CD NN NNS CC JJ JJ NN VBN IN NN NNS IN NNP VBD VBN NNP IN DT JJ NN .\nAfghanistan remains one of the most heavily mined countries in the world .\tNNP VBZ CD IN DT RBS RB VBN NNS IN DT NN .\nMillions of explosives were laid during the Soviet occupation in the 1980s and the brutal civil war , which followed .\tNNS IN NNS VBD VBN IN DT JJ NN IN DT NNS CC DT JJ JJ NN , WDT VBD .\nAfghan officials say that land mines or unexploded bombs still kill or disable hundreds of Afghans every year .\tJJ NNS VBP IN NN NNS CC JJ NNS RB VBP CC VBP NNS IN NNS DT NN .\nSeveral people were killed in a bombing Friday , in northwest Pakistan 's restive Swat Valley .\tJJ NNS VBD VBN IN DT NN NNP , IN JJ NNP POS JJ NNP NNP .\nA former provincial minister Asfandyar Amerzeb was among those killed when a remote control bomb exploded as his car passed .\tDT JJ JJ NN NNP NNP VBD IN DT VBN WRB DT JJ NN NN VBD IN PRP$ NN VBN .\nIt is not clear if it this is the same incident that claimed lives of supporters of Pakistani President Pervez Musharraf 's party , as reported earlier .\tPRP VBZ RB JJ IN PRP DT VBZ DT JJ NN WDT VBD NNS IN NNS IN JJ NNP NNP NNP POS NN , IN VBN RBR .\nPakistani troops have been battling militants in Swat since July , when a radical cleric called for a holy war against the government .\tJJ NNS VBP VBN VBG NNS IN NNP IN NNP , WRB DT JJ NN VBD IN DT JJ NN IN DT NN .\nSoldiers recently ejected militants from territory they had seized in the area .\tNNS RB VBD NNS IN NN PRP VBD VBN IN DT NN .\nReports from Afghanistan say at least three policemen died in bomb attacks Saturday .\tNNS IN NNP VBP IN JJS CD NNS VBD IN NN NNS NNP .\nOfficials say a roadside bomb in southern Ghazni province killed at least two officers , destroyed a police vehicle , and wounded several other people .\tNNS VBP DT NN NN IN JJ NNP NN VBD IN JJS CD NNS , VBD DT NN NN , CC VBD JJ JJ NNS .\nA similar explosion took place in western Farah province , where one policeman died and at least one other was wounded .\tDT JJ NN VBD NN IN JJ NNP NN , WRB CD NN VBD CC IN JJS CD NN VBD VBN .\nNo one has claimed responsibility for either attack , but Afghan officials blame Taliban forces .\tDT NN VBZ VBN NN IN DT NN , CC JJ NNS VBP NNP NNS .\nThese were the latest in a series of attacks on Afghan police , who are sometimes seen as less well-trained than other security forces .\tDT VBD DT JJS IN DT NN IN NNS IN JJ NNS , WP VBP RB VBN IN JJR JJ IN JJ NN NNS .\nSpider-Man 3 smashed U.S. box office records last weekend , netting $ 148 million in its first three days of release .\tJJ CD VBD NNP NN NN NNS JJ NN , VBG $ CD CD IN PRP$ JJ CD NNS IN NN .\nThe tally beats the previous record of $ 135.6 million , set last summer by Pirates Of The Caribbean : Dead Man 's Chest .\tDT NN VBZ DT JJ NN IN $ CD CD , VBN JJ NN IN NNP IN DT NNP IN NNP NNP POS NNP .\nThe web-slinging hero has also proven irresistable overseas , grossing $ 375 million globally .\tDT JJ NN VBZ RB VBN JJ RB , VBG $ CD CD RB .\nThis represents a profit of $ 117 million , allowing for the film 's production budget of $ 258 million .\tDT VBZ DT NN IN $ CD CD , VBG IN DT NN POS NN NN IN $ CD CD .\nFurther records may fall in the next 10 days , with no major competition in sight until the May 18 premiere of the animated comedy Shrek The Third .\tJJ NNS MD VB IN DT JJ CD NNS , IN DT JJ NN IN NN IN DT NNP CD NN IN DT JJ NN NNP NNP NNP .\nThe previous U.S. champion , Disturbia , ranked a distant second last weekend with $ 5.7 million in box office grosses .\tDT JJ NNP NN , NNP , VBD DT JJ NN JJ NN IN $ CD CD IN NN NN NNS .\nThe figure raises its three-week total to $ 59.9 million .\tDT NN VBZ PRP$ JJ NN TO $ CD CD .\nLebanese soldiers patrolled the streets of a Beirut neighborhood Wednesday , a day after three people were killed in clashes between rival Shi'ite and Sunni Muslims .\tJJ NNS VBD DT NNS IN DT NNP NN NNP , DT NN IN CD NNS VBD VBN IN NNS IN JJ NNP CC NNP NNPS .\nBroken glass and spent bullet casings littered the streets of Bourj Abi Haidar following violence that started as a fight between two men .\tJJ NN CC JJ NN NNS VBD DT NNS IN NNP NNP NNP VBG NN WDT VBD IN DT NN IN CD NNS .\nOfficials say a confrontation between a supporter of the Shi'ite militant group Hezbollah and another man from the conservative Sunni Muslim group al-Ahbash escalated into a four-hour shootout .\tNNS VBP DT NN IN DT NN IN DT NNP JJ NN NNP CC DT NN IN DT JJ NNP NNP NN JJ VBN IN DT JJ NN .\nThe two groups later issued a joint statement saying the flare-up was a one-time incident resulting from a ' personal dispute ' and was not political .\tDT CD NNS RB VBD DT JJ NN VBG DT NN VBD DT JJ NN VBG IN DT `` JJ NN `` CC VBD RB JJ .\nParticipants fired machine guns and rocket-propelled grenades before Lebanese soldiers intervened and cordoned off the area .\tNNS VBD NN NNS CC JJ NNS IN JJ NNS VBD CC VBD RP DT NN .\nOfficials say three people were wounded in the clashes , and that two of the dead have been identified as Mohammad Fawaz , a Hezbollah security official , and his aide .\tNNS VBP CD NNS VBD VBN IN DT NNS , CC IN CD IN DT NN VBP VBN VBN IN NNP NNP , DT NNP NN NN , CC PRP$ NN .\nThe government of Peru has requested that Chile arrest former Peruvian President Alberto Fujimori , who arrived in Chile unexpectedly Sunday .\tDT NN IN NNP VBZ VBN IN NNP VB JJ JJ NNP NNP NNP , WP VBD IN NNP RB NNP .\nA spokesman for the Chilean government , Osvaldo Puccio , says the matter has been turned over to the courts to decide .\tDT NN IN DT JJ NN , NNP NNP , VBZ DT NN VBZ VBN VBN RP TO DT NNS TO VB .\nThe international arrest warrants for Mr. Fujimori are not valid in Chile .\tDT JJ NN NNS IN NNP NNP VBP RB JJ IN NNP .\nMr. Fujimori , who fled to Japan in 2000 , is wanted in Peru on charges of corruption and human rights abuses related to the death squad murders of 25 people .\tNNP NNP , WP VBD TO NNP IN CD , VBZ VBN IN NNP IN NNS IN NN CC JJ NNS NNS VBN TO DT NN NN NNS IN CD NNS .\nIn a media statement he said he will stay in Chile temporarily while launching his candidacy for Peruvian president in next April 's elections .\tIN DT NNS NN PRP VBD PRP MD VB IN NNP RB IN VBG PRP$ NN IN JJ NN IN JJ NNP POS NNS .\nHis visit comes at a time when Peru and Chile are at odds over maritime boundaries .\tPRP$ NN VBZ IN DT NN WRB NNP CC NNP VBP IN NNS IN NN NNS .\nPeru Friday passed a law attempting to reclaim sea territory from Chile .\tNNP NNP VBD DT NN VBG TO VB NN NN IN NNP .\nPalestine Liberation Organization chairman Mahmoud Abbas has again urged Palestinians to end their armed uprising against Israel .\tNNP NNP NNP NN NNP NNP VBZ RB VBN NNS TO VB PRP$ JJ NN IN NNP .\nHis published comments in an Arabic newspaper Tuesday came as militants killed one Thai farm laborer and wounded two others in a mortar attack on a Jewish settlement in Gaza .\tPRP$ JJ NNS IN DT JJ NN NNP VBD IN NNS VBD CD JJ NN NN CC VBD CD NNS IN DT NN NN IN DT JJ NN IN NNP .\nMr. Abbas said the Palestinian uprising is the legitimate right of Palestinians to protest Israeli occupation through popular and social means .\tNNP NNP VBD DT JJ NN VBZ DT JJ NN IN NNS TO VB JJ NN IN JJ CC JJ NNS .\nBut he said the use of weapons in that struggle has been damaging and it should stop .\tCC PRP VBD DT NN IN NNS IN DT NN VBZ VBN JJ CC PRP MD VB .\nHis comments follow accusations from Israeli Prime Minister Ariel Sharon that Palestinian leaders are not doing enough to rein in militant groups .\tPRP$ NNS VBP NNS IN JJ NNP NNP NNP NNP IN JJ NNS VBP RB VBG RB TO VB IN JJ NNS .\nOn Sunday , Palestinian militants detonated more than a ton of explosives in a tunnel beneath an Israeli army post , killing five soldiers .\tIN NNP , JJ NNS VBD JJR IN DT NN IN NNS IN DT NN IN DT JJ NN NN , VBG CD NNS .\nIsraeli forces later demolished several buildings in the Gaza Strip .\tJJ NNS RB VBD JJ NNS IN DT NNP NNP .\nThe U.S. Treasury Department has designated 11 companies as fronts for an Iranian bank that Washington says helps spread weapons of mass destruction .\tDT NNP NNP NNP VBZ VBN CD NNS IN NNS IN DT JJ NN IN NNP VBZ VBZ VB NNS IN NN NN .\nThe Treasury said Tuesday U.S. citizens are prohibited from any transactions involving the companies , which are located in Iran , the Cayman Islands and Dubai .\tDT NNP VBD NNP NNP NNS VBP VBN IN DT NNS VBG DT NNS , WDT VBP VBN IN NNP , DT NNP NNP CC NNP .\nThe United States accuses the companies of funneling money for Bank Melli , which U.S. officials call a ' known proliferator ' of weapons of mass destruction .\tDT NNP NNPS VBZ DT NNS IN VBG NN IN NNP NNP , WDT NNP NNS VBP DT `` VBN NN `` IN NNS IN NN NN .\nThe United States has supported three rounds of United Nations sanctions on Iran for its disputed nuclear program .\tDT NNP NNPS VBZ VBN CD NNS IN NNP NNPS NNS IN NNP IN PRP$ JJ JJ NN .\nIt also has taken unilateral action against various Iranian entities .\tPRP RB VBZ VBN JJ NN IN JJ JJ NNS .\nIraqi police say three bombs have exploded in a market north of Baghdad .\tJJ NNS VBP CD NNS VBP VBN IN DT NN NN IN NNP .\nThe bombs detonated moments apart Saturday near shops in Baquba , 65 kilometers north of the capital , wounding at least 10 people .\tDT NNS VBD NNS RB NNP IN NNS IN NNP , CD NNS RB IN DT NN , VBG IN JJS CD NNS .\nBaquba is known for its religious and ethnic mix , and has been the scene of frequent violence .\tNNP VBZ VBN IN PRP$ JJ CC JJ NN , CC VBZ VBN DT NN IN JJ NN .\nIn another development today , Iraqi officials say police have detained at least 68 suspected insurgents in raids across the country .\tIN DT NN NN , JJ NNS VBP NNS VBP VBN IN JJS CD JJ NNS IN NNS IN DT NN .\nPolice in India say tribal separatist rebels have shot and killed eight Bengali-speaking villagers in the far northeastern state of Tripura .\tNNS IN NNP VBP JJ JJ NNS VBP VBN CC VBN CD JJ NNS IN DT RB JJ NN IN NNP .\nThe attack occurred Sunday morning in a village east of Agartala , Tripura 's capital city .\tDT NN VBD NNP NN IN DT NN NN IN NNP , NNP POS NN NN .\nThree women were among those killed .\tCD NNS VBD IN DT VBN .\nTwo people were seriously injured .\tCD NNS VBD RB VBN .\nAuthorities say the raid was carried out by militants from the National Liberation Front of Tripura , who have been fighting for an independent tribal homeland for decades .\tNNS VBP DT NN VBD VBN RP IN NNS IN DT NNP NNP NNP IN NNP , WP VBP VBN VBG IN DT JJ JJ NN IN NNS .\nTribal people once dominated the region , but now say they have been reduced to a minority after years of settlement by Bengali-speaking migrants , mainly from neighboring Bangladesh .\tNNP NNS RB VBD DT NN , CC RB VBP PRP VBP VBN VBN TO DT NN IN NNS IN NN IN JJ NNS , RB IN VBG NNP .\nU.S. Secretary of State Condoleezza Rice leaves on her first diplomatic mission to Asia Monday , where she will focus on persuading North Korea to return to six-party disarmament talks .\tNNP NNP IN NNP NNP NNP VBZ IN PRP$ JJ JJ NN TO NNP NNP , WRB PRP MD VB IN VBG NNP NNP TO VB TO JJ NN NNS .\nMs. Rice will travel to India , Pakistan , Afghanistan , Japan , South Korea and China before returning to Washington on March 21 .\tNNP NNP MD VB TO NNP , NNP , NNP , NNP , NNP NNP CC NNP IN VBG TO NNP IN NNP CD .\nDiscussions with her Asian counterparts are also expected to cover Indian-Pakistani relations , Afghan reconstruction and the escalating tensions between mainland China and Taiwan .\tNNS IN PRP$ JJ NNS VBP RB VBN TO VB JJ NNS , JJ NN CC DT VBG NNS IN JJ NNP CC NNP .\nNorth Korea 's nuclear weapons program will be the focus of her meetings in Tokyo , Seoul and Beijing .\tNNP NNP POS JJ NNS NN MD VB DT NN IN PRP$ NNS IN NNP , NNP CC NNP .\nPyongyang last month claimed to possess nuclear weapons .\tNNP JJ NN VBD TO VB JJ NNS .\nMs. Rice has already traveled to Europe , the Middle East and Mexico since being confirmed as secretary of state in January .\tNNP NNP VBZ RB VBN TO NNP , DT NNP NNP CC NNP IN VBG VBN IN NN IN NN IN NNP .\nWorld rally driving champion Sebastien Loeb of France is in the lead after the first day of the Monte Carlo Rally , the season-opening event on the World Rally Championship circuit .\tNNP NN VBG NN NNP NNP IN NNP VBZ IN DT NN IN DT JJ NN IN DT NNP NNP NNP , DT JJ NN IN DT NNP NNP NNP NN .\nThe two-time defending Monte Carlo champion drove his Citroen Xsara WRC to a total time of one hour , 18.46.09 .\tDT JJ VBG NNP NNP NN VBD PRP$ NNP NNP NNP TO DT JJ NN IN CD NN , CD .\nTeammate Francois Duval of Belgium is second overall , 32.7 seconds behind Loeb .\tNN NNP NNP IN NNP VBZ JJ JJ , CD NNS IN NNP .\nFormer world champion Marcus Gronholm of Finland is third overall in a Peugeot , more than one minute behind the French driver .\tJJ NN NN NNP NNP IN NNP VBZ JJ NN IN DT NNP , JJR IN CD NN IN DT JJ NN .\nNorwegian Petter Solberg in a Subaru is fourth .\tJJ NNP NNP IN DT NNP VBZ JJ .\nLoeb has won 10 rallies in his career , and last season became the first French driver since Didier Auriol to win the World title .\tNNP VBZ VBN CD NNS IN PRP$ NN , CC JJ NN VBD DT JJ JJ NN IN NNP NNP TO VB DT NNP NN .\nThe Monte Carlo Rally continues through Sunday .\tDT NNP NNP NNP VBZ IN NNP .\nThe U.S. economy added 1,12,000 new jobs in November , which is about half what experts had expected .\tDT NNP NN VBD CD JJ NNS IN NNP , WDT VBZ IN NN WP NNS VBD VBN .\nFriday 's closely watched report from the U.S. Labor Department also said the unemployment rate dropped slightly to 5.4 percent .\tNNP POS RB VBN NN IN DT NNP NNP NNP RB VBD DT NN NN VBD RB TO CD NN .\nAnalysts said high oil prices and disappointing holiday sales have made companies reluctant to take on new workers .\tNNS VBD JJ NN NNS CC JJ NN NNS VBP VBN NNS JJ TO VB RP JJ NNS .\nEconomists say it takes the creation of between 1,00,000 and 1,50,000 new jobs each month to employ new entrants into the U.S. workforce every month .\tNNS VBP PRP VBZ DT NN IN IN CD CC CD JJ NNS DT NN TO VB JJ NNS IN DT NNP NN DT NN .\nPoland says recent U.S. proposals to strengthen the Polish military in return for hosting a missile defense system fall short of its demands .\tNNP VBZ JJ NNP NNS TO VB DT JJ NN IN NN IN VBG DT NN NN NN VB RB IN PRP$ NNS .\nPolish Prime Minister Donald Tusk told reporters in Warsaw Tuesday that the U.S. proposals have not reached a level that is satisfactory to Poland .\tJJ NNP NNP NNP NNP VBD NNS IN NNP NNP IN DT NNP NNS VBP RB VBN DT NN WDT VBZ JJ TO NNP .\nU.S. and Polish negotiators discussed the initiative last week .\tNNP CC JJ NNS VBD DT NN JJ NN .\nThe United States wants to install 10 land-based interceptor missile silos in Poland and associated radar bases in the Czech Republic .\tDT NNP NNPS VBZ TO VB CD JJ NN NN NNS IN NNP CC VBN NN NNS IN DT JJ NNP .\nWashington says the anti-missile system is intended to defend the United States and NATO allies against potential ballistic missile attacks by what it calls ' rogue states , ' notably Iran .\tNNP VBZ DT JJ NN VBZ VBN TO VB DT NNP NNPS CC NNP NNS IN JJ JJ NN NNS IN WP PRP VBZ `` NN NNS , `` RB NNP .\nRussia has blasted the U.S. plan as a threat to Russian security .\tNNP VBZ VBN DT NNP NN IN DT NN TO JJ NN .\nThe U.S. Justice Department has opened a civil rights investigation into the beating of a 64-year-old black man in flood-ravaged New Orleans .\tDT NNP NNP NNP VBZ VBN DT JJ NNS NN IN DT NN IN DT JJ JJ NN IN JJ NNP NNP .\nThe probe announced Monday was launched following the release of a videotape showing two uniformed New Orleans police officers punching Robert Davis in the face and body as he was being arrested for public drunkenness .\tDT NN VBN NNP VBD VBN VBG DT NN IN DT NN VBG CD JJ NNP NNP NN NNS VBG NNP NNP IN DT NN CC NN IN PRP VBD VBG VBN IN JJ NN .\nAnother officer is shown shoving and screaming at a news producer who was documenting the confrontation .\tDT NN VBZ VBN VBG CC VBG IN DT NN NN WP VBD VBG DT NN .\nMr. Davis says he does not drink alcohol and was just out looking for cigarettes .\tNNP NNP VBZ PRP VBZ RB VB NN CC VBD RB RB VBG IN NNS .\nHe told CNN television that the incident started after he called one of the police officers unprofessional for interrupting his talk with an officer on horseback .\tPRP VBD NNP NN IN DT NN VBD IN PRP VBD CD IN DT NN NNS JJ IN VBG PRP$ NN IN DT NN IN NN .\nMr. Davis 's attorney says his client does not believe race was a factor in the Saturday night incident .\tNNP NNP POS NN VBZ PRP$ NN VBZ RB VB NN VBD DT NN IN DT NNP NN NN .\nThe three white police officers seen in the video have pleaded not guilty to battery charges .\tDT CD JJ NN NNS VBN IN DT NN VBP VBN RB JJ TO NN NNS .\nA key economic report says the global economy will be worse than first estimated this year , while a separate study says 2010 will be better than expected .\tDT JJ JJ NN VBZ DT JJ NN MD VB JJR IN RB VBN DT NN , IN DT JJ NN VBZ CD MD VB JJR IN VBN .\nThursday 's World Bank study says the global economy will shrink almost three percent this year , which is significantly worse than earlier estimates .\tNNP POS NNP NNP NN VBZ DT JJ NN MD VB RB CD NN DT NN , WDT VBZ RB JJR IN JJR NNS .\nBank experts say the downturn is likely to hit poor nations hard , even though financial markets in wealthy nations are stabilizing .\tNNP NNS VBP DT NN VBZ JJ TO VB JJ NNS RB , RB IN JJ NNS IN JJ NNS VBP VBG .\nAt the same time , news reports say the International Monetary Fund is raising its estimate of global economic growth for 2010 .\tIN DT JJ NN , NN NNS VBP DT NNP NNP NNP VBZ VBG PRP$ NN IN JJ JJ NN IN CD .\nThe reports on Bloomberg and Reuters quote unnamed sources saying the IMF is raising next year 's growth prediction to hit 2.4 percent .\tDT NNS IN NNP CC NNP VBP JJ NNS VBG DT NNP VBZ VBG JJ NN POS NN NN TO VB CD NN .\nThat is a half a percent higher than earlier studies predicted .\tDT VBZ DT NN DT NN JJR IN JJR NNS VBD .\nThe predictions come just ahead of a meeting of G8 finance ministers in Italy where the economic crisis tops the agenda .\tDT NNS VBP RB RB IN DT NN IN NNP NN NNS IN NNP WRB DT JJ NN VBZ DT NN .\nRussian President Vladimir Putin and Venezuelan President Hugo Chavez discussed trade and economic issues - as well as arms sales - during a meeting in Moscow Friday .\tJJ NNP NNP NNP CC JJ NNP NNP NNP VBD NN CC JJ NNS : RB RB IN NNS NNS : IN DT NN IN NNP NNP .\nMr. Putin and Mr. Chavez signed an agreement announcing Venezuela 's support of Russia 's bid to join the World Trade Organization .\tNNP NNP CC NNP NNP VBD DT NN VBG NNP POS NN IN NNP POS NN TO VB DT NNP NNP NNP .\nThe two leaders also discussed a joint energy production project .\tDT CD NNS RB VBD DT JJ NN NN NN .\nOfficials from Russian 's Lukoil company and Venezuela 's state-owned PDVSA oil company signed a memorandum of understanding on a joint oil exploration venture in Venezuela .\tNNS IN JJ POS NNP NN CC NNP POS JJ NNP NN NN VBD DT NN IN NN IN DT JJ NN NN NN IN NNP .\nMr. Chavez said Caracas will buy 40 military helicopters and 1,00,000 submachine guns from Moscow .\tNNP NNP VBD NNP MD VB CD JJ NNS CC CD JJ NNS IN NNP .\nEminem and his ex-wife Kim Mathers have agreed not to publicly criticize each other .\tNNP CC PRP$ JJ NNP NNP VBP VBN RB TO RB VB DT NN .\nThe estranged couple say the March 26 decision arises from their desire not to hurt their 11-year-old daughter , Hailie .\tDT VBN NN VBP DT NNP CD NN NNS IN PRP$ NN RB TO VB PRP$ JJ NN , NNP .\nMathers , who has twice married and divorced the 34-year-old rap star , has frequently criticized her ex-husband 's lack of compassion and fidelity .\tNNP , WP VBZ RB VBN CC VBN DT JJ NN NN , VBZ RB VBN PRP$ NN POS NN IN NN CC NN .\nIn return , Eminem has often assailed Kim in his lyrics .\tIN NN , NNP VBZ RB VBN NNP IN PRP$ NNS .\nThe couple wed in 1999 , divorced in 2001 , remarried in January 2006 , and separated three months later .\tDT NN VBD IN CD , VBN IN CD , VBN IN NNP CD , CC VBD CD NNS RB .\nTheir second divorce was finalized in December .\tPRP$ JJ NN VBD VBN IN NNP .\nBolivia 's president says energy companies affected by his nationalization of natural gas will not be compensated if they recouped their investments .\tNNP POS NN VBZ NN NNS VBN IN PRP$ NN IN JJ NN MD RB VB VBN IN PRP VBD PRP$ NNS .\nSpeaking on the sidelines of the EU-Latin American summit , Evo Morales also urged Colombia , Peru and Ecuador not to ratify trade deals with the United States .\tVBG IN DT NNS IN DT JJ JJ NN , NNP NNP RB VBD NNP , NNP CC NNP RB TO VB NN NNS IN DT NNP NNPS .\nLatin American and European leaders are in Vienna , Austria , for a summit aimed at strengthening cooperation between the continents .\tJJ JJ CC JJ NNS VBP IN NNP , NNP , IN DT NN VBN IN VBG NN IN DT NNS .\nBolivia 's move to nationalize energy resources was expected to be discussed .\tNNP POS NN TO VB NN NNS VBD VBN TO VB VBN .\nThe EU Commission for External Relations and Neighborhood Policy , Benita Ferrero-Waldner issued a statement Wednesday saying Europe will do everything it can to clear the way for closer trade partnerships .\tDT NNP NNP IN NNP NNP CC NNP NNP , NNP NNP VBD DT NN NNP VBG NNP MD VB DT PRP MD TO VB DT NN IN JJR NN NNS .\nBut she said Latin American nations must overcome obstacles on their side .\tCC PRP VBD JJ JJ NNS MD VB NNS IN PRP$ NN .\nNew allegations of prisoner abuse by U.S. forces in Iraq and Afghanistan have been revealed in Army documents released by the American Civil Liberties Union .\tJJ NNS IN NN NN IN NNP NNS IN NNP CC NNP VBP VBN VBN IN NNP NNS VBN IN DT NNP NNP NNP NNP .\nThe documents show photographs of U.S. soldiers in Afghanistan posing with hooded and bound detainees during mock executions .\tDT NNS VBP NNS IN NNP NNS IN NNP VBG IN VBN CC VBN NNS IN JJ NNS .\nThe photos were taken at a base in southern Afghanistan ( Fire Base Tycze ) between December 2003 and February 2004 .\tDT NNS VBD VBN IN DT NN IN JJ NNP LRB NNP NNP NNP RRB IN NNP CD CC NNP CD .\nSome members of the infantry regiment said they took the pictures for fun and destroyed some of them after the Abu Ghraib prison scandal in Iraq to avoid another public outrage .\tDT NNS IN DT NN NN VBD PRP VBD DT NNS IN NN CC VBD DT IN PRP IN DT NNP NNP NN NN IN NNP TO VB DT JJ NN .\nThe Afghanistan incident triggered an Army investigation .\tDT NNP NN VBD DT NNP NN .\nArmy records show that several soldiers were charged with dereliction of duty , but more serious charges were not substantiated .\tNN NNS VBP IN JJ NNS VBD VBN IN NN IN NN , CC RBR JJ NNS VBD RB VBN .\nThe American Civil Liberties Union says the new documents suggest that abuse of prisoners in Iraq and Afghanistan may be widespread .\tDT NNP NNP NNPS NNP VBZ DT JJ NNS VBP IN NN IN NNS IN NNP CC NNP MD VB JJ .\nThe group had requested information about U.S.-held detainees .\tDT NN VBD VBN NN IN JJ NNS .\nAfghan election officials have finished counting ballots from last month 's legislative elections and are to release some provisional results Thursday .\tJJ NN NNS VBP VBN VBG NNS IN JJ NN POS JJ NNS CC VBP TO VB DT JJ NNS NNP .\nA spokesman for the joint U.N.-Afghan election commission says the physical count is complete , except for some ballots that are subject to audit .\tDT NN IN DT JJ JJ NN NN VBZ DT JJ NN VBZ JJ , IN IN DT NNS WDT VBP JJ TO NN .\nVote counts are to be released in phases over the coming days , as officials investigate reports of vote fraud .\tNN NNS VBP TO VB VBN IN NNS IN DT JJ NNS , IN NNS VB NNS IN NN NN .\nFinal results are due by October 22 .\tJJ NNS VBP JJ IN NNP CD .\nUnofficial tallies show that warlords and opponents of President Hamid Karzai have fared relatively well , and women lawmakers could hold the balance of power in the new national assembly .\tJJ NNS VBP IN NNS CC NNS IN NNP NNP NNP VBP VBN RB RB , CC NNS NNS MD VB DT NN IN NN IN DT JJ JJ NN .\nMeanwhile , a suspected suicide bomber has blown up a pick-up truck near a Canadian military convoy in southern Afghanistan , killing himself and a child .\tRB , DT JJ NN NN VBZ VBN RP DT NN NN IN DT JJ JJ NN IN JJ NNP , VBG PRP CC DT NN .\nThree Canadian soldiers were wounded .\tCD JJ NNS VBD VBN .\nFrench Prime Minister Dominique de Villepin says smoking will be banned in most public places in his country in February .\tJJ NNP NNP NNP NNP NNP VBZ NN MD VB VBN IN JJS JJ NNS IN PRP$ NN IN NNP .\nSpeaking Sunday to French media , the prime minister said the ban will be extended to cover bars , restaurants , hotels and discotheques in January of 2008 .\tVBG NNP TO JJ NNS , DT JJ NN VBD DT NN MD VB VBN TO VB NNS , NNS , NNS CC NNS IN NNP IN CD .\nIn a parliamentary report last week , French lawmakers called for a total ban effective next September .\tIN DT JJ NN JJ NN , JJ NNS VBD IN DT JJ NN JJ JJ NNP .\nThe only exceptions would be commercial establishments that provide sealed smoking areas with separate ventilation systems .\tDT JJ NNS MD VB JJ NNS WDT VBP JJ NN NNS IN JJ NN NNS .\nThe French news agency quotes Mr. de Villepin as saying an estimated 5,000 people die in France every year from the effects of passive smoking .\tDT JJ NN NN VBZ NNP NNP NNP IN VBG DT VBN CD NNS VBP IN NNP DT NN IN DT NNS IN JJ NN .\nHe said those figures present a ' totally unacceptable situation ' in terms of public health .\tPRP VBD DT NNS VBP DT `` RB JJ NN `` IN NNS IN JJ NN .\nFrance is the latest European country to sharply curtail smoking in public places .\tNNP VBZ DT JJS JJ NN TO RB VB NN IN JJ NNS .\nBritain , Italy , Sweden , Ukraine and Spain are considering similar measures .\tNNP , NNP , NNP , NNP CC NNP VBP VBG JJ NNS .\nJapan 's Foreign Ministry says Russian authorities have seized four Japanese fishing boats in disputed waters off Russia 's far east on suspicion of illegal fishing .\tNNP POS NNP NNP VBZ JJ NNS VBP VBN CD JJ NN NNS IN JJ NNS IN NNP POS RB JJ IN NN IN JJ NN .\nThe ministry said Saturday that the boats were intercepted and searched by Russian officials off Kamchatka peninsula , and have been taken to the Russian port of Petropavlosk-Kamchatskii .\tDT NN VBD NNP IN DT NNS VBD JJ CC VBD IN JJ NNS IN NNP NN , CC VBP VBN VBN TO DT JJ NN IN NNP .\nEarlier this year , a Russian border patrol fired on a Japanese fishing boat in the disputed waters , killing a fisherman before seizing the vessel and the remaining three crew members .\tRBR DT NN , DT JJ NN NN VBD IN DT JJ NN NN IN DT JJ NNS , VBG DT NN IN VBG DT NN CC DT VBG CD NN NNS .\nThe incident increased already tense relations over the four Kuril islands , which were seized by Soviet troops at the end of World War II , and are still claimed by Japan .\tDT NN VBD RB JJ NNS IN DT CD NNP NNS , WDT VBD VBN IN JJ NNS IN DT NN IN NNP NNP NNP , CC VBP RB VBN IN NNP .\nThe dispute over the islands has prevented the two countries from signing a peace treaty officially ending the war .\tDT NN IN DT NNS VBZ VBN DT CD NNS IN VBG DT NN NN RB VBG DT NN .\nIndiana Jones is returning - and Cate Blanchett may be along for the ride .\tNNP NNP VBZ VBG : CC NNP NNP MD VB IN IN DT NN .\nThe award-winning actress is reportedly negotiating a role in the fourth installment of the Indiana Jones series .\tDT JJ NN VBZ RB VBG DT NN IN DT JJ NN IN DT NNP NNP NN .\nHarrison Ford has already signed on to portray the fedora-wearing adventurer .\tNNP NNP VBZ RB VBN IN TO VB DT JJ NN .\nCate Blanchett won a 2005 Best Supporting Actress Academy Award for The Aviator , and this year received a supporting nomination for her role in Notes On A Scandal .\tNNP NNP VBD DT CD JJS VBG NNP NNP NNP IN DT NNP , CC DT NN VBD DT JJ NN IN PRP$ NN IN NNP IN DT NNP .\nSteven Spielberg will direct the film , scheduled to begin shooting in June in Los Angeles and undisclosed international locations .\tNNP NNP MD VB DT NN , VBN TO VB VBG IN NNP IN NNP NNP CC JJ JJ NNS .\nParamount Pictures will release Indy 4 worldwide on May 22 , 2008 .\tNNP NNP MD VB NNP CD NN IN NNP CD , CD .\nThe United States has appealed to China to restore military ties , despite friction about U.S. arms sales to Taiwan .\tDT NNP NNPS VBZ VBN TO NNP TO VB JJ NNS , IN NN IN NNP NNS NNS TO NNP .\nSpeaking to reporters at a security conference in Singapore Saturday , U.S. Defense Secretary Robert Gates said China 's decision to break off military-to-military contacts earlier this year could undercut regional stability .\tVBG TO NNS IN DT NN NN IN NNP NNP , NNP NNP NNP NNP NNP VBD NNP POS NN TO VB RP JJ NNS RBR DT NN MD VB JJ NN .\nGates said it is clear interruptions in the U.S. military relationship with China will not change Washington 's policy toward Taiwan .\tNNP VBD PRP VBZ JJ NNS IN DT NNP JJ NN IN NNP MD RB VB NNP POS NN IN NNP .\nBeijing broke off military-to-military contacts after the Obama administration notified Congress in January of a plan to sell Taiwan up to $ 6.4 billion worth of arms .\tNNP VBD RP JJ NNS IN DT NNP NN VBD NNP IN NNP IN DT NN TO VB NNP IN TO $ CD CD NN IN NNS .\nChina also refused a proposed visit by Gates during his trip to Asia .\tNNP RB VBD DT VBN NN IN NNP IN PRP$ NN TO NNP .\nGates said the arms sales are not a threat , because Washington does not support independence for Taiwan .\tNNP VBD DT NNS NNS VBP RB DT NN , IN NNP VBZ RB VB NN IN NNP .\nThe island nation has been able to attract foreign business and investment , especially in its offshore banking and tourism industries , with a surge in foreign direct investment in 2006 , attributed to the construction of several tourism projects .\tDT NN NN VBZ VBN JJ TO VB JJ NN CC NN , RB IN PRP$ JJ NN CC NN NNS , IN DT NN IN JJ JJ NN IN CD , VBN TO DT NN IN JJ NN NNS .\nAlthough crops such as bananas , mangos , and avocados continue to be grown for export , tourism provides Saint Lucia 's main source of income and the industry is the island 's biggest employer .\tIN NNS JJ IN NNS , NNS , CC NNS VBP TO VB VBN IN NN , NN VBZ NNP NNP POS JJ NN IN NN CC DT NN VBZ DT NN POS JJS NN .\nTourism is the main source of foreign exchange , although tourism sector revenues declined with the global economic downturn as US and European travel dropped in 2009 .\tNNP VBZ DT JJ NN IN JJ NN , IN NN NN NNS VBD IN DT JJ JJ NN IN NNP CC JJ NN VBD IN CD .\nThe manufacturing sector is the most diverse in the Eastern Caribbean area , and the government is trying to revitalize the banana industry , although recent hurricanes have caused exports to contract .\tDT NN NN VBZ DT RBS JJ IN DT NNP NNP NN , CC DT NN VBZ VBG TO VB DT NN NN , IN JJ NNS VBP VBN NNS TO NN .\nSaint Lucia is vulnerable to a variety of external shocks including volatile tourism receipts , natural disasters , and dependence on foreign oil .\tNNP NNP VBZ JJ TO DT NN IN JJ NNS VBG JJ NN NNS , JJ NNS , CC NN IN JJ NN .\nThe public debt-to-GDP ratio is about 77 % and high debt servicing obligations constrain the KING administration 's ability to respond to adverse external shocks .\tDT JJ NN NN VBZ IN CD NN CC JJ NN VBG NNS VBP DT NNP NN POS NN TO VB TO JJ JJ NNS .\nEconomic fundamentals remain solid , even though unemployment needs to be reduced .\tJJ NNS VBP JJ , RB IN NN VBZ TO VB VBN .\nAlthough the regional hub for trade and finance in East Africa , Kenya has been hampered by corruption and by reliance upon several primary goods whose prices have remained low .\tIN DT JJ NN IN NN CC NN IN NNP NNP , NNP VBZ VBN VBN IN NN CC IN NN IN JJ JJ NNS WP$ NNS VBP VBN JJ .\nIn 1997 , the IMF suspended Kenya 's Enhanced Structural Adjustment Program due to the government 's failure to maintain reforms and curb corruption .\tIN CD , DT NNP VBD NNP POS NNP NNP NNP NNP JJ TO DT NN POS NN TO VB NNS CC VB NN .\nThe IMF , which had resumed loans in 2000 to help Kenya through a drought , again halted lending in 2001 when the government failed to institute several anticorruption measures .\tDT NNP , WDT VBD VBN NNS IN CD TO VB NNP IN DT NN , RB VBD NN IN CD WRB DT NN VBD TO VB JJ NN NNS .\nIn the key December 2002 elections , Daniel Arap MOI 's 24-year-old reign ended , and a new opposition government took on the formidable economic problems facing the nation .\tIN DT JJ NNP CD NNS , NNP NNP NNP POS JJ NN VBN , CC DT JJ NN NN VBD IN DT JJ JJ NNS VBG DT NN .\nAfter some early progress in rooting out corruption and encouraging donor support , the KIBAKI government was rocked by high-level graft scandals in 2005 and 2006 .\tIN DT JJ NN IN VBG RP NN CC JJ NN NN , DT NNP NN VBD VBN IN JJ NN NNS IN CD CC CD .\nIn 2006 , the World Bank and IMF delayed loans pending action by the government on corruption .\tIN CD , DT NNP NNP CC NNP VBD NNS VBG NN IN DT NN IN NN .\nThe international financial institutions and donors have since resumed lending , despite little action on the government 's part to deal with corruption .\tDT JJ JJ NNS CC NNS VBP IN VBN NN , IN JJ NN IN DT NN POS NN TO VB IN NN .\nPost-election violence in early 2008 , coupled with the effects of the global financial crisis on remittance and exports , reduced GDP growth to 1.7 in 2008 , but the economy rebounded in 2009 - 10 .\tNN NN IN JJ CD , VBN IN DT NNS IN DT JJ JJ NN IN NN CC NNS , VBD NN NN TO CD IN CD , CC DT NN VBD IN CD IN CD .\nOriginally settled by Arawak Indians , Curacao was seized by the Dutch in 1634 along with the neighboring island of Bonaire .\tRB VBN IN NNP NNS , NNP VBD VBN IN DT NNS IN CD IN IN DT JJ NN IN NNP .\nOnce the center of the Caribbean slave trade , Curacao was hard hit by the abolition of slavery in 1863 .\tRB DT NN IN DT NNP NN NN , NNP VBD RB VBN IN DT NN IN NN IN CD .\nIts prosperity ( and that of neighboring Aruba ) was restored in the early 20th century with the construction of the Isla Refineria to service the newly discovered Venezuelan oil fields .\tPRP$ NN LRB CC IN IN JJ NNP RRB VBD VBN IN DT JJ JJ NN IN DT NN IN DT NNP NNP TO VB DT RB VBN JJ NN NNS .\nIn 1954 , Curacao and several other Dutch Caribbean possessions were reorganized as the Netherlands Antilles , part of the Kingdom of the Netherlands .\tIN CD , NNP CC JJ JJ JJ NNP NNS VBD VBN IN DT NNP NNPS , NN IN DT NNP IN DT NNP .\nIn referenda in 2005 and 2009 , the citizens of Curacao voted to become a self-governing country within the Kingdom of the Netherlands .\tIN NN IN CD CC CD , DT NNS IN NNP VBD TO VB DT JJ NN IN DT NNP IN DT NNP .\nThe change in status became effective in October of 2010 with the dissolution of the Netherlands Antilles .\tDT NN IN NN VBD JJ IN NNP IN CD IN DT NN IN DT NNP NNPS .\nBulgaria , a former Communist country that entered the EU on 1 January 2007 , averaged more than 6 % annual growth from 2004 to 2008 , driven by significant amounts of foreign direct investment and consumption .\tNNP , DT JJ JJ NN WDT VBD DT NNP IN CD NNP CD , VBD JJR IN CD NN JJ NN IN CD TO CD , VBN IN JJ NNS IN JJ JJ NN CC NN .\nSuccessive governments have demonstrated a commitment to economic reforms and responsible fiscal planning , but the global downturn sharply reduced domestic demand , exports , capital inflows , and industrial production .\tJJ NNS VBP VBN DT NN TO JJ NNS CC JJ JJ NN , CC DT JJ NN RB VBN JJ NN , NNS , NN NNS , CC JJ NN .\nGDP contracted by approximately 5 % in 2009 , and stagnated in 2010 , despite a significant recovery in exports .\tNN VBD IN RB CD NN IN CD , CC VBD IN CD , IN DT JJ NN IN NNS .\nThe economy is expected to grow modestly in 2011 , however .\tDT NN VBZ VBN TO VB RB IN CD , RB .\nCorruption in the public administration , a weak judiciary , and the presence of organized crime remain significant challenges .\tNN IN DT JJ NN , DT JJ NN , CC DT NN IN JJ NN VBP JJ NNS .\nA CHARCOAL-BURNER carried on his trade in his own house .\tDT NN VBD IN PRP$ NN IN PRP$ JJ NN .\nOne day he met a friend , a Fuller , and entreated him to come and live with him , saying that they should be far better neighbors and that their housekeeping expenses would be lessened .\tCD NN PRP VBD DT NN , DT NN , CC VBD PRP TO VB CC VB IN PRP , VBG IN PRP MD VB RB JJR NNS CC IN PRP$ NN NNS MD VB VBN .\nThe Fuller replied , ' The arrangement is impossible as far as I am concerned , for whatever I should whiten , you would immediately blacken again with your charcoal . '\tDT NN VBD , `` DT NN VBZ JJ RB RB IN PRP VBP JJ , IN WDT PRP MD VB , PRP MD RB VB RB IN PRP$ NN . ``\nLike will draw like .\tNN MD VB NN .\nA HEIFER saw an Ox hard at work harnessed to a plow , and tormented him with reflections on his unhappy fate in being compelled to labor .\tDT NN VBD DT NNP JJ IN NN VBD TO DT NN , CC VBD PRP IN NNS IN PRP$ JJ NN IN VBG VBN TO NN .\nShortly afterwards , at the harvest festival , the owner released the Ox from his yoke , but bound the Heifer with cords and led him away to the altar to be slain in honor of the occasion .\tRB RB , IN DT NN NN , DT NN VBD DT NNP IN PRP$ NN , CC VBN DT NNP IN NNS CC VBD PRP RB TO DT NN TO VB VBN IN NN IN DT NN .\nThe Ox saw what was being done , and said with a smile to the Heifer : ' For this you were allowed to live in idleness , because you were presently to be sacrificed . '\tDT NNP VBD WP VBD VBG VBN , CC VBD IN DT NN TO DT NNP : `` IN DT PRP VBD VBN TO VB IN NN , IN PRP VBD RB TO VB VBN . ``\nA PEASANT had in his garden an Apple-Tree which bore no fruit but only served as a harbor for the sparrows and grasshoppers .\tDT NN VBD IN PRP$ NN DT NN WDT VBD DT NN CC RB VBD IN DT NN IN DT NNS CC NNS .\nHe resolved to cut it down , and taking his axe in his hand , made a bold stroke at its roots .\tPRP VBD TO VB PRP RB , CC VBG PRP$ NN IN PRP$ NN , VBD DT JJ NN IN PRP$ NNS .\nThe grasshoppers and sparrows entreated him not to cut down the tree that sheltered them , but to spare it , and they would sing to him and lighten his labors .\tDT NNS CC NNS VBD PRP RB TO VB RP DT NN WDT VBD PRP , CC TO VB PRP , CC PRP MD VB TO PRP CC VB PRP$ NNS .\nHe paid no attention to their request , but gave the tree a second and a third blow with his axe .\tPRP VBD DT NN TO PRP$ NN , CC VBD DT NN DT JJ CC DT JJ NN IN PRP$ NN .\nWhen he reached the hollow of the tree , he found a hive full of honey .\tWRB PRP VBD DT NN IN DT NN , PRP VBD DT JJ JJ IN NN .\nHaving tasted the honeycomb , he threw down his axe , and looking on the tree as sacred , took great care of it .\tVBG VBN DT NN , PRP VBD RP PRP$ NN , CC VBG IN DT NN IN JJ , VBD JJ NN IN PRP .\nSelf-interest alone moves some men .\tNNP RB VBZ DT NNS .\nA DOG passing over a stream on a plank saw his reflection in the water .\tDT NN VBG IN DT NN IN DT NN VBD PRP$ NN IN DT NN .\n' You ugly brute ! ' he cried ; ' how dare you look at me in that insolent way . '\t`` PRP RB JJ . `` PRP VBD ; `` WRB JJ PRP VBP IN PRP IN DT JJ NN . ``\nHe made a grab in the water , and , getting hold of what he supposed was the other dog 's lip , lifted out a fine piece of meat which a butcher 's boy had dropped into the stream .\tPRP VBD DT NN IN DT NN , CC , VBG NN IN WP PRP VBD VBD DT JJ NN POS NN , VBD RP DT JJ NN IN NN WDT DT NN POS NN VBD VBN IN DT NN .\nAn Ass once found a Lion 's skin which the hunters had left out in the sun to dry .\tDT NN RB VBD DT NN POS NN WDT DT NNS VBD VBN RP IN DT NN TO VB .\nHe put it on and went towards his native village .\tPRP VBD PRP IN CC VBD IN PRP$ JJ NN .\nAll fled at his approach , both men and animals , and he was a proud Ass that day .\tDT VBD IN PRP$ NN , DT NNS CC NNS , CC PRP VBD DT JJ NN DT NN .\nIn his delight he lifted up his voice and brayed , but then every one knew him , and his owner came up and gave him a sound cudgelling for the fright he had caused .\tIN PRP$ NN PRP VBD RP PRP$ NN CC VBD , CC RB DT CD VBD PRP , CC PRP$ NN VBD RB CC VBD PRP DT NN VBG IN DT NN PRP VBD VBN .\nAnd shortly afterwards a Fox came up to him and said : ' Ah , I knew you by your voice . '\tCC RB VBZ DT NNP VBD RP TO PRP CC VBD : `` UH , PRP VBD PRP IN PRP$ NN . ``\nFine clothes may disguise , but silly words will disclose a fool .\tJJ NNS MD VB , CC JJ NNS MD VB DT NN .\nAn engineer thinks that his equations are an approximation to reality .\tDT NN VBZ IN PRP$ NNS VBP DT NN TO NN .\nA physicist thinks reality is an approximation to his equations .\tDT NN VBZ NN VBZ DT NN TO PRP$ NNS .\nA mathematician does n't care .\tDT NN VBZ RB VB .\nThere were 11 people - ten men and one woman - hanging onto a rope that came down from a helicopter .\tEX VBD CD NNS : JJ NNS CC CD NN IN VBG IN DT NN WDT VBD RP IN DT NN .\nThey all decided that one person should get off , because if they did n't , the rope would break and everyone would die .\tPRP DT VBD IN CD NN MD VB RP , IN IN PRP VBD RB , DT NN MD VB CC DT MD VB .\nNo one could decide who should go , so finally , the woman gave a really touching speech saying how she would give up her life to save the others , because women were used to giving up things for their husbands and children , giving in to men , and not receiving anything in return .\tDT NN MD VB WP MD VB , RB RB , DT NN VBD DT RB JJ NN VBG WRB PRP MD VB RP PRP$ NN TO VB DT NNS , IN NNS VBD VBN TO VBG RP NNS IN PRP$ NNS CC NNS , VBG IN TO NNS , CC RB VBG DT IN NN .\nWhen she finished speaking , all the men started clapping .\tWRB PRP VBD NN , PDT DT NNS VBD VBG .\nPalestinian militants have fired rockets at Israel after Israeli troops killed a senior Islamic Jihad commander .\tJJ NNS VBP VBN NNS IN NNP IN JJ NNS VBD DT JJ JJ NN NN .\nThe rockets caused no casualties .\tDT NNS VBD DT NNS .\nA short time later Israeli forces fired artillery at the area in Gaza the militants used to launch the rockets .\tDT JJ NN RB JJ NNS VBD NN IN DT NN IN NNP DT NNS VBN TO VB DT NNS .\nIslamic Jihad had vowed to avenge the killing earlier Monday of Luay Saadi and his deputy in the West Bank .\tNNP NNP VBD VBN TO VB DT NN JJR NNP IN NNP NNP CC PRP$ NN IN DT NNP NNP .\nIsrael says Mr. Saadi was behind several attacks that have killed at least 10 Israelis since February .\tNNP VBZ NNP NNP VBD IN JJ NNS WDT VBP VBN IN JJS CD NNS IN NNP .\nMeanwhile , the Palestinian Authority says it plans to immediately disarm members of another militant group in the West Bank , the al-Aqsa Martyrs Brigade .\tRB , DT JJ NNP VBZ PRP VBZ TO RB VB NNS IN DT JJ NN IN DT NNP NNP , DT NNP NNP NNP .\nThe chief of police in the West Bank , Taher Zaid , says most members of the militant group will be trained to join Palestinian security forces .\tDT NN IN NN IN DT NNP NNP , NNP NNP , VBZ JJS NNS IN DT JJ NN MD VB VBN TO VB JJ NN NNS .\nBut leading al-Aqsa commanders say they doubt their men will turn in their weapons until Israel leaves the West Bank .\tCC VBG JJ NNS VBP PRP VBP PRP$ NNS MD VB IN PRP$ NNS IN NNP VBZ DT NNP NNP .\nFrench President Jacques Chirac has offered his support for Croatia 's aspirations for European Union membership .\tJJ NNP NNP NNP VBZ VBN PRP$ NN IN NNP POS NNS IN NNP NNP NN .\nMr. Chirac told visiting Croatian Prime Minister Ivo Sander that the schedule for membership talks should be respected .\tNNP NNP VBD VBG JJ NNP NNP NNP NNP IN DT NN IN NN NNS MD VB VBN .\nCroatia 's EU membership negotiations began in October after an eight-month delay due to the country 's failure to capture a top suspect wanted by the United Nations war crimes tribunal .\tNNP POS NNP NN NNS VBD IN NNP IN DT JJ NN JJ TO DT NN POS NN TO VB DT JJ NN VBN IN DT NNP NNPS NN NNS JJ .\nMr. Chirac says Croatia 's rapid economic development and progress in reforms justified the start of the country 's membership negotiations with the bloc .\tNNP NNP VBZ NNP POS JJ JJ NN CC NN IN NNS VBN DT NN IN DT NN POS NN NNS IN DT NN .\nItalian police have arrested 36 people during protests in Rome ahead of the summit of leaders of the world 's eight major industrial countries .\tJJ NNS VBP VBN CD NNS IN NNS IN NNP RB IN DT NN IN NNS IN DT NN POS CD JJ JJ NNS .\nHooded demonstrators clashed with police and set fires on streets near one of the capital 's universities Tuesday .\tJJ NNS VBN IN NNS CC VBN NNS IN NNS IN CD IN DT NN POS NNS NNP .\nPolice said citizens of France , Germany and Poland were among those arrested .\tNNP VBD NNS IN NNP , NNP CC NNP VBD IN DT VBN .\nSeparately Tuesday , police in the town of L'Aquila seized clubs from five French protesters close to where the summit is being held .\tRB NNP , NN IN DT NN IN NNP VBD NNS IN CD JJ NNS RB TO WRB DT NN VBZ VBG VBN .\nThey were not arrested .\tPRP VBD RB VBN .\nAbout 15,000 police officers have been deployed to L'Aquila to provide security during the three-day gathering , beginning Wednesday .\tIN CD NNS NNS VBP VBN VBN TO NNP TO VB NN IN DT JJ NN , VBG NNP .\nThe G8 summit was originally scheduled to take place on an island , La Maddalena , off the Sardinian coast .\tDT NNP NN VBD RB VBN TO VB NN IN DT NN , NNP NNP , IN DT JJ NN .\nOfficials moved it to L'Aquila after an April earthquake shook the area and killed almost 300 people .\tNNS VBD PRP TO NNP IN DT NNP NN VBD DT NN CC VBD RB CD NNS .\nItalian officials said the transfer was aimed at giving the area an economic boost .\tJJ NNS VBD DT NN VBD VBN IN VBG DT NN DT JJ NN .\nAl-Qaida 's deputy leader has criticized the West for publishing cartoons depicting the Prophet Muhammad as a terrorist .\tNNP POS NN NN VBZ VBN DT NNP IN VBG NNS VBG DT NNP NNP IN DT NN .\nIn a video broadcast Saturday on the Arab television channel al-Jazeera , Ayman al-Zawahri called the cartoons an insult and urged an economic boycott against nations where they have been published .\tIN DT NN NN NNP IN DT JJ NN NN NNP , NNP NNP VBD DT NNS DT NN CC VBD DT JJ NN IN NNS WRB PRP VBP VBN VBN .\nHe also called on Hamas , which won Palestinian elections in January , to reject peace deals between the Palestinian Authority and Israel .\tPRP RB VBD IN NNP , WDT VBD JJ NNS IN NNP , TO VB NN NNS IN DT JJ NNP CC NNP .\nThe videotape was the second by al-Zawahri aired by al-Jazeera in six weeks .\tDT NN VBD DT JJ IN NNP VBN IN NNP IN CD NNS .\nA tape that aired in January called on President Bush to admit defeat in Iraq and Afghanistan .\tDT NN WDT VBD IN NNP VBD IN NNP NNP TO VB NN IN NNP CC NNP .\nMexican President Felipe Calderon is appealing for clean drinking water , canned food and other emergency aid for the storm-damaged Gulf state of Veracruz .\tJJ NNP NNP NNP VBZ VBG IN JJ NN NN , VBN NN CC JJ NN NN IN DT JJ NNP NN IN NNP .\nHurricane Karl tore across the Mexico 's Yucatan peninsula late last week as a strong Category 3 storm , killing at least 14 people and leaving thousands homeless .\tNNP NNP VBD IN DT NNP POS NNP NN RB JJ NN IN DT JJ NNP CD NN , VBG IN JJ CD NNS CC VBG NNS JJ .\nThe president visited Veracruz Monday , touring flooded villages and meeting with civil defense officials and storm victims .\tDT NN VBD NNP NNP , VBG VBN NNS CC NN IN JJ NN NNS CC NN NNS .\nLooting has been reported in flood-stricken areas .\tNN VBZ VBN VBN IN JJ NNS .\nLocal newspapers and television have shown pictures of people running from stores with bags of food and cases of beer .\tJJ NNS CC NN VBP VBN NNS IN NNS VBG IN NNS IN NNS IN NN CC NNS IN NN .\nPolice have arrested 11 people .\tNNS VBP VBN CD NNS .\nA leftist Colombian guerrilla leader has been killed in a clash with military troops in the South American country .\tDT JJ JJ NN NN VBZ VBN VBN IN DT NN IN JJ NNS IN DT JJ JJ NN .\nOfficials say Humberto Valbuena , a unit commander for the Revolutionary Armed Forces of Colombia , or FARC , was killed Monday in the remote jungles of Caqueta state .\tNNS VBP NNP NNP , DT NN NN IN DT JJ JJ NNS IN NNP , CC NNP , VBD VBN NNP IN DT JJ NNS IN NNP NN .\nAt least three other rebels were killed in the clash .\tIN JJS CD JJ NNS VBD VBN IN DT NN .\nColombia 's long-running conflict pits FARC and a smaller leftist rebel group against government forces and right-wing paramilitary fighters .\tNNP POS JJ NN NNS NNP CC DT JJR JJ NN NN IN NN NNS CC JJ JJ NNS .\nThousands of people are killed annually in the conflict .\tNNS IN NNS VBP VBN RB IN DT NN .\nFire has destroyed a historic church in Chicago , Illinois , that has been called the birthplace of gospel music .\tNN VBZ VBN DT JJ NN IN NNP , NNP , WDT VBZ VBN VBN DT NN IN NN NN .\nFirefighters were called Friday afternoon to Pilgrim Baptist Church .\tNNS VBD VBN NNP NN TO NNP NNP NNP .\nA neighbor said construction workers were on the church 's roof when the fire started , but a fire department spokesman said authorities did not know how the blaze started .\tDT NN VBD NN NNS VBD IN DT NN POS NN WRB DT NN VBD , CC DT NN NN NN VBD NNS VBD RB VB WRB DT NN VBD .\nThere were no immediate reports of injuries .\tEX VBD DT JJ NNS IN NNS .\nThe building was constructed in 1890 as a synagogue .\tDT NN VBD VBN IN CD IN DT NN .\nPilgrim Baptist Church took it over in 1922 .\tNNP NNP NNP VBD PRP RP IN CD .\nUnder the leadership of its choir director , Thomas Dorsey , the church was a center for the development of gospel music .\tIN DT NN IN PRP$ NN NN , NNP NNP , DT NN VBD DT NN IN DT NN IN NN NN .\nAmong the artists who sang at the church was Mahalia Jackson .\tIN DT NNS WP VBD IN DT NN VBD NNP NNP .\nIraqi officials say two bomb attacks in the capital Saturday have killed at least eight people .\tJJ NNS VBP CD NN NNS IN DT NN NNP VBP VBN IN JJS CD NNS .\nThe first bomb struck a crowded market , killing at least three people .\tDT JJ NN VBD DT JJ NN , VBG IN JJS CD NNS .\nPolice say the device was meant to target police .\tNNS VBP DT NN VBD VBN TO VB NNS .\nHours later , a car bomb in downtown Baghdad killed five people .\tNNS RB , DT NN NN IN NN NNP VBD CD NNS .\nAlso Saturday , the U.S. military announced that an American soldier was killed by a bomb Friday during a patrol west of Kirkuk .\tRB NNP , DT NNP NN VBD IN DT JJ NN VBD VBN IN DT NN NNP IN DT JJ NN IN NNP .\nIt said one soldier was wounded .\tPRP VBD CD NN VBD VBN .\nThe U.S. military says it has carried out a series of raids following Wednesday 's killing of terrorist leader Abu Musab al-Zarqawi , in hopes of dismantling his al-Qaida in Iraq network .\tDT NNP NN VBZ PRP VBZ VBN RP DT NN IN NNS VBG NNP POS NN IN JJ NN NNP NNP NNP , IN NNS IN VBG PRP$ NNP IN NNP NN .\nThe Jordanian-born Zarqawi was said to have personally taken part in beheadings of hostages and other killings .\tDT JJ NNP VBD VBN TO VB RB VBN NN IN NNS IN NNS CC JJ NNS .\nHe was killed when the U.S. military dropped two 227-kilogram bombs on his safe house near Baquba , northeast of Baghdad .\tPRP VBD VBN WRB DT NNP NN VBD CD JJ NNS IN PRP$ JJ NN IN NNP , NN IN NNP .\nWall Street enjoyed an upswing Thursday , despite mixed economic news concerning consumer spending and jobless claims .\tNNP NNP VBD DT NN NNP , IN JJ JJ NN VBG NN NN CC JJ NNS .\nThe Dow Jones Industrial Average gained nearly 190 points to close at 13010 .\tDT NNP NNP NNP NNP VBD RB CD NNS TO VB IN CD .\nThe surge in the stock markets comes as investors await a key report .\tDT NN IN DT NN NNS VBZ IN NNS VBP DT JJ NN .\nVOA 's Robert Raffaele has more .\tNNP POS NNP NNP VBZ RBR .\nIndia 's new Foreign Minister Pranab Mukherjee and his Pakistani counterpart , Khursheed Kasuri , will meet on Monday in New Delhi to review the stalled peace process between the two nuclear rivals .\tNNP POS JJ NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , MD VB IN NNP IN NNP NNP TO VB DT VBN NN NN IN DT CD JJ NNS .\nMukherjee told reporters Friday that Kasuri will be in India over the weekend on a private visit and that the meeting had been fixed for Monday .\tNNP VBD NNS NNP IN NNP MD VB IN NNP IN DT NN IN DT JJ NN CC IN DT NN VBD VBN VBN IN NNP .\nIndia suspended the almost three-year-old peace process following a July terrorist attack on Mumbai 's train network that killed nearly 200 people and wounded 800 others .\tNNP VBD DT RB JJ NN NN VBG DT NNP JJ NN IN NNP POS NN NN WDT VBD RB CD NNS CC VBD CD NNS .\nNew Delhi accused Pakistan 's spy agency of involvement in the attack , but Islamabad denied any involvement and demanded evidence .\tNNP NNP VBD NNP POS NN NN IN NN IN DT NN , CC NNP VBD DT NN CC VBD NN .\nLast week , the two sides agreed to set up a three-member panel to share information about counter-terrorism activities and a pact to reduce risks of nuclear accidents .\tJJ NN , DT CD NNS VBD TO VB RP DT JJ NN TO VB NN IN NN NNS CC DT NN TO VB NNS IN JJ NNS .\nIsrael has charged three Arabs with spying for Syria and planning to kidnap a Syrian pilot who defected to Israel .\tNNP VBZ VBN CD NNS IN VBG IN NNP CC VBG TO VB DT JJ NN WP VBD TO NNP .\nTwo of the men are from a northern Druze village , Majdal Shams , in the Golan Heights , near the Syrian border .\tCD IN DT NNS VBP IN DT JJ NNP NN , NNP NNP , IN DT NNP NNP , IN DT JJ NN .\nThe other is an Israeli citizen .\tDT NN VBZ DT JJ NN .\nAn indictment says the men passed details and photographs of Israeli army installations to a Syrian agent .\tDT NN VBZ DT NNS VBD NNS CC NNS IN JJ NN NNS TO DT JJ NN .\nIt also says they gathered information on a Syrian pilot who defected to Israel in 1989 .\tPRP RB VBZ PRP VBD NN IN DT JJ NN WP VBD TO NNP IN CD .\nProsecutors allege the men drew up a plan to kidnap the pilot .\tNNS VBP DT NNS VBD RP DT NN TO VB DT NN .\nIsraeli media say Druze residents recently rioted when investigators searched one of the suspects ' home .\tJJ NNS VBP NNP NNS RB VBD WRB NNS VBD CD IN DT NNS POS NN .\nPolice in Sri Lanka say 300 prisoners took advantage of Sunday 's massive earthquake to make their escape from a high-security jail .\tNNS IN NNP NNP VBP CD NNS VBD NN IN NNP POS JJ NN TO VB PRP$ NN IN DT JJ NN .\nAuthorities say the inmates fled after a tidal wave caused by the quake destroyed their prison , a 16th century Dutch-built fort in a southern coastal town Matara .\tNNS VBP DT NNS VBD IN DT JJ NN VBN IN DT NN VBD PRP$ NN , DT JJ NN JJ NN IN DT JJ JJ NN NNP .\nReuters news agency reports a similar prison break in Indonesia 's Aceh province .\tNNP NN NN VBZ DT JJ NN NN IN NNP POS NNP NN .\nPolice there say 200 prisoners fled after a tsunami destroyed the walls of the facility .\tNNS RB VBP CD NNS VBD IN DT NN VBD DT NNS IN DT NN .\nThe leaders of Nigeria and the Congo Republic emerged from all-night talks with Sudan 's rebel leaders Sunday , with no real progress made on resolving the conflict in Darfur .\tDT NNS IN NNP CC DT NNP NNP VBD IN JJ NNS IN NNP POS NN NNS NNP , IN DT JJ NN VBN IN VBG DT NN IN NNP .\nAfter meeting all night in the Nigerian capital Abuja , President Olusegun Obasanjo and Congo Republic 's President Denis Sassou Nguesso pledged to hold further talks with the Sudanese groups .\tIN VBG DT NN IN DT JJ NN NNP , NNP NNP NNP CC NNP NNP POS NNP NNP NNP NNP VBD TO VB JJ NNS IN DT JJ NNS .\nThe talks are aimed at ending more than three years of civil war before the April 30 deadline set by the African Union for a peace settlement .\tDT NNS VBP VBN IN VBG JJR IN CD NNS IN JJ NN IN DT NNP CD NN VBN IN DT NNP NNP IN DT NN NN .\nPeace talks between Sudan 's government and rebel groups have gone on for more than 18 months without any breakthroughs .\tNN NNS IN NNP POS NN CC NN NNS VBP VBN IN IN JJR IN CD NNS IN DT NNS .\nThe fighting , involving rebels , government forces and Khartoum-backed Janjaweed militias in Darfur , has killed about 1,80,000 people and has left another two million homeless .\tDT NN , VBG NNS , NN NNS CC JJ NNP NNS IN NNP , VBZ VBN IN CD NNS CC VBZ VBN DT CD CD NN .\nSheriff 's investigators have conducted a search of Michael Jackson 's Neverland Ranch in California .\tNNP POS NNS VBP VBN DT NN IN NNP NNP POS NNP NNP IN NNP .\nCalifornia authorities filed child molestation charges against the pop music star in December 2003 .\tNNP NNS VBD NN NN NNS IN DT NN NN NN IN NNP CD .\nThe charges involve an unidentified child under the age of 14 .\tDT NNS VBP DT JJ NN IN DT NN IN CD .\nA sheriff 's spokesman confirmed Friday 's search , but declined to give any further details .\tDT NN POS NN VBD NNP POS NN , CC VBD TO VB DT JJ NNS .\nJackson 's Neverland Ranch is a theme-park-like estate about 160 kilometers northwest of Los Angeles .\tNNP POS NNP NNP VBZ DT JJ NN IN CD NNS JJS IN NNP NNP .\nMichael Jackson has pleaded not guilty to child molestation , conspiracy and administering an intoxicating agent .\tNNP NNP VBZ VBN RB JJ TO NN NN , NN CC VBG DT JJ NN .\nHis trial is scheduled to being January 31 .\tPRP$ NN VBZ VBN TO VBG NNP CD .\nIraq 's two main political coalitions broke off talks Monday aimed at ending a five-month-long political deadlock .\tNNP POS CD JJ JJ NNS VBD RP NNS NNP VBN IN VBG DT JJ JJ NN .\nA spokeswoman for the Sunni-backed Iraqiya alliance , Maysoon al-Damaluji , said the group ended negotiations .\tDT NN IN DT JJ NNP NN , NNP NNP , VBD DT NN VBD NNS .\nShe claimed the Shi'ite-dominated State of Law alliance labeled them as a Sunni bloc rather than cross-sectarian .\tPRP VBD DT JJ NN IN NNP NN VBD PRP IN DT NNP NN RB IN JJ .\nThe fight over ethnic political standing comes as a group of activist organizations filed a lawsuit Monday against parliament speaker Fouad Massum .\tDT NN IN JJ JJ NN VBZ IN DT NN IN NN NNS VBD DT NN NNP IN NN NN NNP NNP .\nThe groups are accusing him of violating the constitution by ordering the newly elected parliament , which convened 14 Jun , to remain in an open-ended session until a political agreement is reached .\tDT NNS VBP VBG PRP IN VBG DT NN IN VBG DT RB VBN NN , WDT VBD CD NN , TO VB IN DT JJ NN IN DT JJ NN VBZ VBN .\nFormer Prime Minister Ayad Allawi 's Iraqiya alliance won the poll with 91 seats in the 7 March vote , while Prime Minister Nouri al-Maliki 's State of Law alliance captured 89 .\tJJ JJ NN NNP NNP POS NNP NN VBD DT NN IN CD NNS IN DT CD NNP NN , IN NNP NNP NNP NNP POS NN IN NN NN VBD CD .\nBoth groups were far short of the 163-seat majority needed to govern .\tDT NNS VBD RB JJ IN DT JJ NN VBN TO VB .\nMillions of Americans could lose their homes this year and next as the rate of foreclosures across the United States rises to the highest in decades .\tNNS IN NNS MD VB PRP$ NNS DT NN CC JJ IN DT NN IN NNS IN DT NNP NNPS VBZ TO DT JJS IN NNS .\nThe foreclosure crisis has worsened despite ongoing efforts by some lenders and the government to help borrowers manage their mortgage payments .\tDT NN NN VBZ VBN IN JJ NNS IN DT NNS CC DT NN TO VB NNS VB PRP$ NN NNS .\nVOA 's Chris Simkins reports on how one homeowner in [ the southern US state of ] Virginia is fighting to keep his home .\tNNP POS NNP NNPS VBZ IN WRB CD NN IN LRB DT JJ NNP NN IN RRB NNP VBZ VBG TO VB PRP$ NN .\nIsraeli police say Prime Minister Ehud Olmert will be questioned by police this week for a second time in a corruption investigation against him .\tJJ NNS VBP NNP NNP NNP NNP MD VB VBN IN NN DT NN IN DT JJ NN IN DT NN NN IN PRP .\nPolice spokesman Micky Rosenfeld said Tuesday that the anti-fraud unit will question Mr. Olmert Friday .\tNNS NN NNP NNP VBD NNP IN DT JJ NN MD VB NNP NNP NNP .\nPolice asked the prime minister questions for more than an hour on May 2 .\tNNS VBD DT JJ NN NNS IN JJR IN DT NN IN NNP CD .\nProsecutors accuse Mr. Olmert of taking hundreds of thousands of dollars in cash from U.S. businessman Morris Talansky before he became prime minister .\tNNS VBP NNP NNP IN VBG NNS IN NNS IN NNS IN NN IN NNP NN NNP NNP IN PRP VBD JJ NN .\nPolice are trying to determine whether Mr. Olmert gave any favors to the businessman for the payments .\tNNS VBP VBG TO VB IN NNP NNP VBD DT NNS TO DT NN IN DT NNS .\nMr. Olmert and the businessman say the funds were legal contributions to the Israeli leader 's election campaigns .\tNNP NNP CC DT NN VBP DT NNS VBD JJ NNS TO DT JJ NN POS NN NNS .\nThe prime minister says he will resign if indicted .\tDT JJ NN VBZ PRP MD VB IN VBN .\nNorth Korean leader Kim Jong-il has met with a high-ranking Chinese delegation that delivered a message of congratulations from Chinese President President Hu Jintao .\tJJ JJ NN NNP NNP VBZ VBN IN DT JJ JJ NN WDT VBD DT NN IN NNS IN JJ NNP NNP NNP NNP .\nThe North 's state media reported Sunday that the Chinese delegation was led by Deputy Prime Minister Wu Yi .\tDT NNP POS NN NNS VBD NNP IN DT JJ NN VBD VBN IN NNP NNP NNP NNP NNP .\nChina 's state media said she expressed the Chinese president 's congratulatory wishes on the 60th anniversary of the founding of the North 's Workers ' Party of Korea .\tNNP POS NN NNS VBD PRP VBD DT JJ NN POS JJ NNS IN DT JJ NN IN DT NN IN DT NNP POS NNS POS NN IN NNP .\nXinhua said the Chinese delegation is in the North for a three-day goodwill visit .\tNNP VBD DT JJ NN VBZ IN DT NNP IN DT JJ NN NN .\nNeither Chinese nor North Korean media mentioned the nuclear crisis in their reports .\tDT JJ CC JJ JJ NNS VBD DT JJ NN IN PRP$ NNS .\nNorth Korea agreed last month during six-nation talks in Beijing to abandon its nuclear weapons program in return for economic aid , energy assistance and security assurances .\tNNP NNP VBD JJ NN IN JJ NNS IN NNP TO VB PRP$ JJ NNS NN IN NN IN JJ NN , NN NN CC NN NNS .\nBut Pyongyang later said it first wants light-water nuclear reactors for civilian energy production .\tCC NNP RB VBD PRP RB VBZ JJ JJ NNS IN JJ NN NN .\nThe fifth round of six-nation talks is scheduled for early next month in Beijing .\tDT JJ NN IN JJ NNS VBZ VBN IN JJ JJ NN IN NNP .\nSouth Africa 's president says his government will look into new reports on Zimbabwe 's elections , which detail serious irregularities .\tNNP NNP POS NN VBZ PRP$ NN MD VB IN JJ NNS IN NNP POS NNS , WDT VBP JJ NNS .\nThabo Mbeki told parliament Thursday the government would study the reports from both Zimbabwe 's main opposition party ( MDC ) and the independent Zimbabwe Electoral Support Network .\tNNP NNP VBD NN NNP DT NN MD VB DT NNS IN DT NNP POS JJ NN NN LRB NNP RRB CC DT JJ NNP NNP NNP NNP .\nHe says his government will then address whatever issues are raised .\tPRP VBZ PRP$ NN MD RB VB WDT NNS VBP VBN .\nOn Wednesday , Mr. Mbeki 's government said it was satisfied Zimbabwe 's parliamentary elections , won by the ruling party , reflected the will of the people .\tIN NNP , NNP NNP POS NN VBD PRP VBD JJ NNP POS JJ NNS , VBN IN DT NN NN , VBD DT NN IN DT NNS .\nObservers from South Africa endorsed the poll following the March 31 election .\tNNS IN NNP NNP VBD DT NN VBG DT NNP CD NN .\nAnd a delegation of monitors from the Southern African Development Community also said the vote was credible .\tCC DT NN IN NNS IN DT JJ NNP NNP NNP RB VBD DT NN VBD JJ .\nThe United States and Britain have said the elections were not free or fair .\tDT NNP NNPS CC NNP VBP VBN DT NNS VBD RB JJ CC JJ .\nHurricane Gustav is moving across the Caribbean toward southwestern Haiti , where it is expected to make landfall later Tuesday .\tNNP NNP VBZ VBG IN DT NNP IN JJ NNP , WRB PRP VBZ VBN TO VB NN RB NNP .\nU.S. forecasters say the storm 's winds strengthened on Tuesday morning to nearly 150 kilometers per hour .\tNNP NNS VBP DT NN POS NNS VBD IN NNP NN TO RB CD NNS IN NN .\nGustav is expected to produce up to 38 centimeters of rain in some areas , possibly causing dangerous flash floods and mudslides .\tNNP VBZ VBN TO VB RP TO CD NNS IN NN IN DT NNS , RB VBG JJ NN NNS CC NNS .\nThe National Hurricane Center in Miami upgraded Gustav to a hurricane early Tuesday .\tDT NNP NNP NNP IN NNP VBD NNP TO DT NN RB NNP .\nA hurricane warning is in effect for parts of Haiti and the Dominican Republic , where Tropical Storm Fay claimed an estimated 50 lives less than two weeks ago .\tDT NN NN VBZ IN NN IN NNS IN NNP CC DT NNP NNP , WRB JJ NN NNP VBD DT VBN CD NNS JJR IN CD NNS RB .\nFay has weakened a tropical depression , causing heavy rains in the eastern United States .\tNNP VBZ VBN DT JJ NN , VBG JJ NNS IN DT JJ NNP NNPS .\nForecasters expect Hurricane Gustav to pass just south or east of Cuba on Wednesday .\tNNS VBP NNP NNP TO VB RB RB CC RB IN NNP IN NNP .\nCuba and Jamaica have issued hurricane watches .\tNNP CC NNP VBP VBN NN NNS .\nThe head of Iran 's nuclear agency says the Islamic Republic must be allowed to produce nuclear fuel domestically .\tDT NN IN NNP POS JJ NN VBZ DT NNP NNP MD VB VBN TO VB JJ NN RB .\nGholamreza Aghazadeh 's remark to reporters Saturday in Tehran effectively rules out a compromise proposal diplomats say the Europeans were considering offering Iran .\tNNP NNP POS NN TO NNS NNP IN NNP RB VBZ RP DT NN NN NNS VBP DT NNS VBD VBG VBG NNP .\nHe spoke in Tehran after meeting with Russian envoy Igor Ivanov .\tPRP VBD IN NNP IN VBG IN JJ NN NNP NNP .\nThe proposal , which the United States has denied being a part of , would permit Tehran to carry out an early stage of nuclear fuel production , but move uranium enrichment to Russia .\tDT NN , WDT DT NNP NNP VBZ VBN VBG DT NN IN , MD VB NNP TO VB RP DT JJ NN IN JJ NN NN , CC VB NN NN TO NNP .\nBoth Russian and Iranian officials have refused to confirm whether Mr. Ivanov presented any new proposal to Iran .\tDT JJ CC JJ NNS VBP VBN TO VB IN NNP NNP VBD DT JJ NN TO NNP .\nWestern nations are concerned that Iran wants to enrich uranium to high levels for use as fuel for nuclear weapons .\tJJ NNS VBP VBN IN NNP VBZ TO VB NN TO JJ NNS IN NN IN NN IN JJ NNS .\nIran denies this , saying it seeks only to produce electricity .\tNNP VBZ DT , VBG PRP VBZ RB TO VB NN .\nOfficials of The Hague war crimes tribunal have questioned a prominent Kosovo politician about his role as a leader of ethnic Albanian guerrilla forces during the conflict in the Serbian province\tNNS IN DT NNP NN NNS JJ VBP VBN DT JJ NNP NN IN PRP$ NN IN DT NN IN JJ JJ NN NNS IN DT NN IN DT JJ NN\nOfficials say Ramush Haradinaj spent about 90 minutes with investigators who questioned him in Pristina at the headquarters of the United Nations administration .\tNNS VBP NNP NNP VBD IN CD NNS IN NNS WP VBD PRP IN NNP IN DT NN IN DT NNP NNP NN .\nNo details of the questioning have been released .\tDT NNS IN DT VBG VBP VBN VBN .\nMr. Haradinaj was a top leader of the ethnic Albanian Kosovo Liberation Army during the conflict of the late 1990s .\tNNP NNP VBD DT JJ NN IN DT JJ JJ NNP NNP NNP IN DT NN IN DT JJ NNS .\nHe later moved into local politics , founding the Alliance for the Future of Kosovo , a party that came in third in last month 's Kosovo assembly elections .\tPRP RB VBD IN JJ NNS , VBG DT NNP IN DT NN IN NNP , DT NN WDT VBD IN JJ IN JJ NN POS NNP NN NNS .\nSerbian authorities have accused him of responsibility for numerous murders in and other atrocities during the Kosovo conflict .\tJJ NNS VBP VBN PRP IN NN IN JJ NNS IN CC JJ NNS IN DT NNP NN .\nHundreds of mourners gathered in an eastern Sri Lankan city to pay final respects to a top Tamil Tiger rebel , who was gunned down earlier this week .\tNNS IN NNS VBN IN DT JJ NNP NNP NN TO VB JJ NNS TO DT JJ NNP NNP NN , WP VBD VBN RB RBR DT NN .\nThe government intensified security in the city of Batticaloa to avert any outbreak of violence during Thursday 's funeral ceremony .\tDT NN VBD NN IN DT NN IN NNP TO VB DT NN IN NN IN NNP POS NN NN .\nRegional Tamil Tiger political chief , E. Kousalyan along with five aides were killed in an ambush Monday night on a jungle road near Batticaloa .\tNNP NNP NNP JJ NN , NNP NNP IN IN CD NNS VBD VBN IN DT JJ NNP NN IN DT NN NN IN NNP .\nThe rebels blame government-backed paramilitary forces for the attack and warned that it could disrupt post-tsunami reconstruction and efforts to resume peace talks .\tDT NNS VBP JJ JJ NNS IN DT NN CC VBD IN PRP MD VB JJ NN CC NNS TO VB NN NNS .\nThe Sri Lankan government denied any involvement , condemned the killings and urged all sides to work for the peace process .\tDT NNP NNP NN VBD DT NN , VBD DT NNS CC VBD DT NNS TO VB IN DT NN NN .\nVenezuela has signed a $ 1.3 billion agreement with China to purchase 18 oil tankers to facilitate the south American country 's expanding Asian market .\tNNP VBZ VBN DT $ CD CD NN IN NNP TO VB CD NN NNS TO VB DT JJ JJ NN POS VBG JJ NN .\nA spokesman for Venezuela 's state-run oil company says the agreement also calls for China to help build shipyards in Venezuela and train its workers .\tDT NN IN NNP POS JJ NN NN VBZ DT NN RB VBZ IN NNP TO VB VB NNS IN NNP CC VB PRP$ NNS .\nThe oil company says it hopes to expand its total fleet of tankers to at least 42 ships Venezuelan officials say the nation currently sells about 15 percent of its oil and other petroleum products to China and would like to increase that to about 45 percent by 2012 .\tDT NN NN VBZ PRP VBZ TO VB PRP$ JJ NN IN NNS TO IN JJS CD NNS JJ NNS VBP DT NN RB VBZ IN CD NN IN PRP$ NN CC JJ NN NNS TO NNP CC MD VB TO VB DT TO IN CD NN IN CD .\nVenezuela is among the world 's largest oil exporters .\tNNP VBZ IN DT NN POS JJS NN NNS .\nVenezuelan President Hugo Chavez has said he wants to increase trade with China - and rely less on the United States as a customer for its oil .\tJJ NNP NNP NNP VBZ VBN PRP VBZ TO VB NN IN NNP : CC VBP RBR IN DT NNP NNPS IN DT NN IN PRP$ NN .\nIran has rejected as ' unfounded ' U.S. accusations linking President-elect Mahmoud Ahmadinejad to the 1979 take-over of the U.S. embassy in Tehran .\tNNP VBZ VBN IN `` JJ `` NNP NNS VBG NNP NNP NNP TO DT CD NN IN DT NNP NN IN NNP .\nA foreign ministry spokesman said late Friday that Mr. Ahmadinejad played no role in the embassy seizure .\tDT JJ NN NN VBD JJ NNP IN NNP NNP VBD DT NN IN DT JJ NN .\nHe added that U.S. comments just days before Mr. Ahmadinejad takes office stem from what he termed ' U.S. disillusionment with Iran 's independent policies . '\tPRP VBD IN NNP NNS RB NNS IN NNP NNP VBZ NN VBD IN WP PRP VBD `` NNP NN IN NNP POS JJ NNS . ``\nOn Thursday , a White House spokesman said officials believe Mr. Ahmadinejad was a leader in the student movement that organized the embassy takeover .\tIN NNP , DT NNP NNP NN VBD NNS VBP NNP NNP VBD DT NN IN DT NN NN WDT VBD DT JJ NN .\nSome former U.S. hostages insist the president-elect was one of the actual hostage-takers , but a CIA analysis of an old photo at the U.S. embassy has concluded the man pictured holding hostages is not Mr. Ahmadinejad .\tDT JJ NNP NNS VBP DT NN VBD CD IN DT JJ NNS , CC DT NNP NN IN DT JJ NN IN DT NNP NN VBZ VBN DT NN VBD VBG NNS VBZ RB NNP NNP .\nOne of Russia 's most popular fashion designers has opened her first clothing store in the U.S.\tCD IN NNP POS RBS JJ NN NNS VBZ VBN PRP$ JJ NN NN IN DT NNP\nTeenager Kira Plastinina 's designs are already a hit in her homeland and now she is hoping to find success in America 's fashion capital New York City .\tNN NNP NNP POS NNS VBP RB DT NN IN PRP$ NN CC RB PRP VBZ VBG TO VB NN IN NNP POS NN NN NNP NNP NNP .\nVOA 's Elena Mikhailova introduces us to the young lady who is creating a stir in the fashion industry .\tNNP POS NNP NNP VBZ PRP TO DT JJ NN WP VBZ VBG DT NN IN DT NN NN .\nA court in Houston , Texas in the southwestern United States , has convicted three U.S. citizens of involvement in a human trafficking ring responsible for the deaths of 19 people in 2003 .\tDT NN IN NNP , NNP IN DT JJ NNP NNPS , VBZ VBN CD NNP NNS IN NN IN DT JJ NN NN JJ IN DT NNS IN CD NNS IN CD .\nVictor Sanchez Rodriguez was found guilty of 17 of the 20 smuggling charges against him .\tNNP NNP NNP VBD VBN JJ IN CD IN DT CD NN NNS IN PRP .\nHis wife , Emma Rodriguez , was convicted of 14 smuggling counts , and her half-sister , Rosa Sarrata Gonzalez , was convicted of one smuggling count .\tPRP$ NN , NNP NNP , VBD VBN IN CD NN NNS , CC PRP$ NN , NNP NNP NNP , VBD VBN IN CD NN NN .\nThe three were participants in an operation carrying more than 70 illegal immigrants in a tractor-trailer rig from southern Texas , near the border with Mexico , to Houston .\tDT CD VBD NNS IN DT NN VBG JJR IN CD JJ NNS IN DT NN NN IN JJ NNP , IN DT NN IN NNP , TO NNP .\nSeventeen people died during the trip of dehydration , overheating and suffocation .\tCD NNS VBD IN DT NN IN NN , NN CC NN .\nTwo more died later .\tCD JJR VBD RB .\nEleven other people have been indicted in the case .\tCD JJ NNS VBP VBN VBN IN DT NN .\nThe Houston Chronicle reports sentencing is set for May .\tDT NNP NNP VBZ NN VBZ VBN IN NNP .\nSyria 's President Bashar al-Assad says Syria and Israel can live side-by-side in peace , accepting each other 's existence .\tNNP POS NNP NNP NNP VBZ NNP CC NNP MD VB JJ IN NN , VBG DT NN POS NN .\nIn an interview broadcast Monday by the British Broadcasting Corporation , Mr. Assad said he is ready to hold talks with Israel but that an impartial arbiter is needed to mediate between the two sides .\tIN DT NN NN NNP IN DT NNP NNP NNP , NNP NNP VBD PRP VBZ JJ TO VB NNS IN NNP CC IN DT JJ NN VBZ VBN TO VB IN DT CD NNS .\nThe Syrian leader expressed doubts the United States is prepared to play this role , saying Washington lacks both the will and the vision to pursue peace in the Middle East .\tDT JJ NN VBD NNS DT NNP NNPS VBZ VBN TO VB DT NN , VBG NNP VBZ DT DT NN CC DT NN TO VB NN IN DT NNP NNP .\nMr. Assad 's remarks are in sharp contrast with comments he made Sunday , when he said Israel has given up on the Middle East peace process , forcing Syria to remain prepared for war .\tNNP NNP POS NNS VBP IN JJ NN IN NNS PRP VBD NNP , WRB PRP VBD NNP VBZ VBN RP IN DT NNP NNP NN NN , VBG NNP TO VB JJ IN NN .\nIsraeli officials denied having plans to attack Syria , and called Mr. Assad 's comments a cause for concern .\tJJ NNS VBD VBG NNS TO VB NNP , CC VBD NNP NNP POS NNS DT NN IN NN .\nLibyan leader Moammar Gadhafi says the West has not properly compensated Libya for dismantling its weapons of mass destruction programs , so countries like Iran and North Korea will not follow Libya 's example .\tJJ NN NNP NNP VBZ DT NNP VBZ RB RB VBN NNP IN VBG PRP$ NNS IN NN NN NNS , RB NNS IN NNP CC NNP NNP MD RB VB NNP POS NN .\nColonel Gadhafi made the remark in an interview with the BBC Friday , the day Libya marked the 30th anniversary of the establishment of the country 's Jamahiriyah , or ' State of the Masses , ' the political system created by Gadhafi that in theory allows the people to exercise power through popular committees .\tNNP NNP VBD DT NN IN DT NN IN DT NNP NNP , DT NN NNP VBD DT JJ NN IN DT NN IN DT NN POS NN , CC `` NN IN DT NNS , `` DT JJ NN VBN IN NNP IN IN NN VBZ DT NNS TO VB NN IN JJ NNS .\nIn a speech marking the anniversary , the Libyan leader said his country opened up to the outside world after years of isolation and sanctions .\tIN DT NN VBG DT NN , DT JJ NN VBD PRP$ NN VBD RP TO DT JJ NN IN NNS IN NN CC NNS .\nColonel Gadhafi was for decades considered an international pariah for his alleged backing of terrorism and pursuing nuclear weapons .\tNNP NNP VBD IN NNS VBN DT JJ NN IN PRP$ JJ NN IN NN CC VBG JJ NNS .\nBut he later rejected terrorism and in 2003 abandoned Libya 's nuclear weapons program , which led to the normalization of ties with the West .\tCC PRP RB VBD NN CC IN CD VBD NNP POS JJ NNS NN , WDT VBD TO DT NN IN NNS IN DT NNP .\nPresident Bush has left the Summit of the Americas in Mar del Plata , Argentina , as discussions over the summit 's final statement continue hours longer than planned .\tNNP NNP VBZ VBN DT NN IN DT NNPS IN NNP NNP NNP , NNP , IN NNS IN DT NN POS JJ NN VBP NNS RB IN VBN .\nMr. Bush left Saturday for his next stop in Brazil , having stayed three hours extra as the talks dragged on .\tNNP NNP VBD NNP IN PRP$ JJ NN IN NNP , VBG VBN CD NNS JJ IN DT NNS VBN IN .\nMembers of the U.S. delegation have stayed behind in Mar del Plata to continue negotiations .\tNNS IN DT NNP NN VBP VBN IN IN NNP NNP NNP TO VB NNS .\nThe summit 's final statement is expected to discuss poverty and employment .\tDT NN POS JJ NN VBZ VBN TO VB NN CC NN .\nBut delegates have clashed over inclusion of a call to renew talks on an inter-American free trade region supported by Mr. Bush .\tCC NNS VBP VBN IN NN IN DT NN TO VB NNS IN DT JJ JJ NN NN VBN IN NNP NNP .\nOn the streets of Mar del Plata , city workers are cleaning up debris from anti-Bush protests that turned violent Friday .\tIN DT NNS IN NNP NNP NNP , NN NNS VBP VBG RP NN IN JJ NNS WDT VBD JJ NNP .\nPolice arrested more than 60 people , but said there were no major injuries .\tNNS VBD JJR IN CD NNS , CC VBD EX VBD DT JJ NNS .\nIndia 's former foreign minister accused of skimming money from the Iraqi oil-for-food program has resigned from the cabinet , saying he does not want to give the opposition an excuse to stall parliament .\tNNP POS JJ JJ NN VBN IN VBG NN IN DT JJ NN NN VBZ VBN IN DT NN , VBG PRP VBZ RB VB TO VB DT NN DT NN TO VB NN .\nNatwar Singh 's decision came after a weeklong blocking of parliamentary proceedings by the opposition , demanding that he step down .\tNNP NNP POS NN VBD IN DT NN VBG IN JJ NNS IN DT NN , VBG IN PRP VB RB .\nMr. Singh , a minister without portfolio , announced his resignation Tuesday , a day after he met party chief Sonia Gandhi and spoke by telephone to Prime Minister Manmohan Singh , who is in Moscow .\tNNP NNP , DT NN IN NN , VBD PRP$ NN NNP , DT NN IN PRP VBD NN NN NNP NNP CC VBD IN NN TO NNP NNP NNP NNP , WP VBZ IN NNP .\nHe said he is resigning even though he is innocent .\tPRP VBD PRP VBZ VBG RB IN PRP VBZ JJ .\nNatwar Singh was dropped as foreign minister last month over allegations he and the Congress party profited from the United Nations program aimed at helping Iraqi civilians cope with the impact of international sanctions against the regime of Saddam Hussein .\tNNP NNP VBD VBN IN JJ NN JJ NN IN NNS PRP CC DT NNP NN VBD IN DT NNP NNPS NN VBN IN VBG JJ NNS VB IN DT NN IN JJ NNS IN DT NN IN NNP NNP .\nOpposition leaders in Ivory Coast have rejected an African Union recommendation that President Laurent Gbagbo remain in power after his mandate expires later this month .\tNN NNS IN NNP NNP VBP VBN DT NNP NNP NN IN NNP NNP NNP VBP IN NN IN PRP$ NN VBZ RB DT NN .\nMembers of Ivory Coast 's opposition bloc , known as the G7 , are demanding a transitional government to replace Mr. Gbagbo .\tNNS IN NNP NNP POS NN NN , VBN IN DT NNP , VBP VBG DT JJ NN TO VB NNP NNP .\nLast week , the African Union announced its recommendation that President Gbagbo stay in office for another 12 months after his mandate expires at the end of October .\tJJ NN , DT NNP NNP VBD PRP$ NN IN NNP NNP NN IN NN IN DT CD NNS IN PRP$ NN VBZ IN DT NN IN NNP .\nMr. Gbagbo says he has the constitutional right to stay in power if elections can not be organized .\tNNP NNP VBZ PRP VBZ DT JJ NN TO VB IN NN IN NNS MD RB VB VBN .\nUnder a recent peace deal , elections were set for October 30 .\tIN DT JJ NN NN , NNS VBD VBN IN NNP CD .\nThey were postponed after the government and rebels failed to implement key steps to organize the vote .\tPRP VBD VBN IN DT NN CC NNS VBD TO VB JJ NNS TO VB DT NN .\nDespite several accords , Ivory Coast remains divided between rebels in the north and the southern-based government .\tIN JJ NNS , NNP NNP VBZ VBN IN NNS IN DT NN CC DT JJ NN .\nThe Spanish football club Sevilla has won its first European football title by beating Middlesbrough of England , 4-0 , in the UEFA Cup final in Eindhoven , the Netherlands .\tDT JJ NN NN NNP VBZ VBN PRP$ JJ JJ NN NN IN VBG NNP IN NNP , CD , IN DT NNP NNP JJ IN NNP , DT NNP .\nEnzo Maresca scored two goals for the Spaniards , in the 78th and 84th minutes .\tNNP NNP VBD CD NNS IN DT NNS , IN DT CD CC CD NNS .\nLuis Fabiano opened the scoring in the 27th minute , sending the ball in off the post after taking a cross from Daniel .\tNNP NNP VBD DT VBG IN DT JJ NN , VBG DT NN IN IN DT NN IN VBG DT NN IN NNP .\nFrederic Kanoute scored the fourth goal when he tapped in a rebound just one minute from time .\tNNP NNP VBD DT JJ NN WRB PRP VBD IN DT NN RB CD NN IN NN .\nMiddlesbrough could not find the offense it needed to rebound from the deficit .\tNNP MD RB VB DT NN PRP VBD TO VB IN DT NN .\nThe match was the first of two Anglo-Spanish finals .\tDT NN VBD DT NN IN CD JJ NNS .\nBarcelona faces Arsenal next Wednesday in the Champions ' League final at the Stade de France outside Paris .\tNNP VBZ JJ JJ NNP IN DT NNS POS NNP JJ IN DT NNP IN NNP IN NNP .\nUkraine 's new leaders have stopped short of rejecting membership in a new Moscow-led economic bloc of four ex-Soviet republics , but say the plan could hurt their European Union aspirations .\tNNP POS JJ NNS VBP VBN JJ IN VBG NN IN DT JJ JJ JJ NN IN CD JJ NNS , CC VBP DT NN MD VB PRP$ JJ NNP NNS .\nAfter meetings Monday with Russia 's visiting foreign minister , Sergei Lavrov , Ukraine 's President Viktor Yuschenko and foreign minister , Boris Tarsyuk , made clear the importance of strategic relations with their giant eastern neighbor .\tIN NNS NNP IN NNP POS VBG JJ NN , NNP NNP , NNP POS NNP NNP NNP CC JJ NN , NNP NNP , VBD JJ DT NN IN JJ NNS IN PRP$ JJ JJ NN .\nBut they also emphasized their commitment to Ukraine 's becoming a full member of the EU and of NATO .\tCC PRP RB VBD PRP$ NN TO NNP POS VBG DT JJ NN IN DT NNP CC IN NNP .\nMr. Yushchenko 's predecessor , Leonid Kuchma , agreed to Ukraine 's joining the new bloc , which includes Russia , Belarus and Kazakhstan , but Kiev 's participation is now in doubt under its new pro-Western president .\tNNP NNP POS NN , NNP NNP , VBD TO NNP POS VBG DT JJ NN , WDT VBZ NNP , NNP CC NNP , CC NNP POS NN VBZ RB IN NN IN PRP$ JJ JJ NN .\nMr. Yuschenko is to meet EU leaders in Brussels this week .\tNNP NNP VBZ TO VB NNP NNS IN NNP DT NN .\nEU officials say they are not ready to offer Ukraine membership , but have proposed a plan to strengthen ties .\tNNP NNS VBP PRP VBP RB JJ TO VB NNP NN , CC VBP VBN DT NN TO VB NNS .\nCroatia is entering the final stage of its bid to join the European Union , resuming talks Wednesday that had been stalled over a border dispute with Slovenia .\tNNP VBZ VBG DT JJ NN IN PRP$ NN TO VB DT NNP NNP , VBG NNS NNP WDT VBD VBN VBN IN DT NN NN IN NNP .\nThe two sides opened negotiations on the last three of 35 chapters in the application process Wednesday .\tDT CD NNS VBD NNS IN DT JJ CD IN CD NNS IN DT NN NN NNP .\nThe final talks cover competition law , judicial reform and foreign policy .\tDT JJ NNS VBP NN NN , JJ NN CC JJ NN .\nCroatia 's accession talks were interrupted in late 2008 when EU member Slovenia blocked further negotiations until a decades-long maritime border deal was in place granting Slovenia direct access to the Adriatic Sea .\tNNP POS NN NNS VBD VBN IN JJ CD WRB NNP NN NNP VBD JJ NNS IN DT JJ NN NN NN VBD IN NN VBG NNP JJ NN TO DT NNP NNP .\nThe obstacle was removed earlier this month when Slovenians passed a referendum to let an international panel settle the issue , which could force Croatia to give up some territory .\tDT NN VBD VBN RBR DT NN WRB NNS VBD DT NN TO VB DT JJ NN VB DT NN , WDT MD VB NNP TO VB RP DT NN .\nCroatian authorities have said an EU accession treaty could be signed in early 2011 .\tJJ NNS VBP VBN DT NNP NN NN MD VB VBN IN JJ CD .\nThe maritime border dispute began when Croatia and Slovenia gained independence during the 1991 breakup of the former Yugoslavia .\tDT JJ NN NN VBD WRB NNP CC NNP VBD NN IN DT CD NN IN DT JJ NNP .\nU.S. and Iraqi forces have launched the second operation targeting insurgents in western Anbar province in the past two days .\tNNP CC JJ NNS VBP VBN DT JJ NN VBG NNS IN JJ NNP NN IN DT JJ CD NNS .\nAbout 1,000 troops began Operation Dagger Saturday in a remote lake region northwest of Baghdad .\tIN CD NNS VBD NNP NNP NNP IN DT JJ NN NN NN IN NNP .\nDebris from US airstrike targeting insurgents in Karabilah , June 12 , 2005 U.S. military officials say the operation is aimed at finding hidden weapon stashes and insurgent camps .\tNNP IN NNP NN VBG NNS IN NNP , NNP CD , CD NNP JJ NNS VBP DT NN VBZ VBN IN VBG JJ NN NNS CC JJ NNS .\nThis the same area where U.S. and Iraqi forces killed a large number of insurgents in March .\tDT DT JJ NN WRB NNP CC JJ NNS VBD DT JJ NN IN NNS IN NNP .\nEarlier , military officials said about 50 insurgents have been killed 100 captured near the town of Karabilah in a separate operation launched Friday .\tRB , JJ NNS VBD IN CD NNS VBP VBN VBN CD VBN IN DT NN IN NNP IN DT JJ NN VBN NNP .\nTroops found four Iraqi hostages beaten and chained to a wall in a bunker .\tNNP VBD CD JJ NNS VBN CC VBN TO DT NN IN DT NN .\nAuthorities in Morocco and Turkey have arrested two men blamed for unleashing a computer worm that disrupted networks across the United States last week .\tNNS IN NNP CC NNP VBP VBN CD NNS VBN IN VBG DT NN NN WDT VBD NNS IN DT NNP NNPS JJ NN .\nThe U.S. Federal Bureau of Investigation said Friday it had received news of the arrests of 18-year-old Farid Essebar in Morocco and 21-year-old Atilla Ekici in Turkey .\tDT NNP NNP NNP IN NNP VBD NNP PRP VBD VBN NN IN DT NNS IN JJ NNP NNP IN NNP CC JJ NNP NNP IN NNP .\nAn FBI official says Mr. Essebar is suspecting of creating the worm and selling it to Mr. Ekici .\tDT NNP NN VBZ NNP NNP VBZ VBG IN VBG DT NN CC VBG PRP TO NNP NNP .\nThe two are also blamed for a similar computer attack earlier this year .\tDT CD VBP RB VBN IN DT JJ NN NN RBR DT NN .\nThe worm shut down computers at several U.S. media companies and other firms last week .\tDT NN VBD RP NNS IN JJ NNP NNS NNS CC JJ NNS JJ NN .\nU.S. officials said they worked closely with authorities in the two countries and the maker of the affected computer systems , Microsoft , to locate the men .\tNNP NNS VBD PRP VBD RB IN NNS IN DT CD NNS CC DT NN IN DT JJ NN NNS , NNP , TO VB DT NNS .\nThe FBI says the two suspects face prosecution in their native countries .\tDT NNP VBZ DT CD NNS VBP NN IN PRP$ JJ NNS .\nThe U.S. military in Afghanistan says a mortar attack at a base in eastern Paktika province has killed two U.S. military personnel , with eight others wounded .\tDT NNP NN IN NNP VBZ DT NN NN IN DT NN IN JJ NNP NN VBZ VBN CD NNP JJ NNS , IN CD NNS VBD .\nA military statement says the mortar landed in the base near Shkin , near the Pakistani border , as the victims were preparing to unload supplies from a Chinook helicopter .\tDT JJ NN VBZ DT NN VBD IN DT NN IN NNP , IN DT JJ NN , IN DT NNS VBD VBG TO VB NNS IN DT NNP NN .\nAlso Wednesday , U.S.-led coalition forces arrested five suspected Taleban insurgents in connection with an attack on an oil tanker that killed two Pakistanis .\tRB NNP , JJ NN NNS VBD CD JJ NNP NNS IN NN IN DT NN IN DT NN NN WDT VBD CD NNS .\nPolice in the Afghan border town of Spin Boldak said the five suspects were apprehended one day after the two Pakistani nationals were killed in the same area .\tNNS IN DT JJ NN NN IN NNP NNP VBD DT CD NNS VBD VBN CD NN IN DT CD JJ NNS VBD VBN IN DT JJ NN .\nThe Taleban and their militant allies have stepped up attacks in recent months , often hitting soft targets associated with coalition forces and the Afghan government of President Hamid Karzai .\tDT NNP CC PRP$ JJ NNS VBP VBN RP NNS IN JJ NNS , RB VBG JJ NNS VBN IN NN NNS CC DT JJ NN IN NNP NNP NNP .\nCandidates for upcoming Palestinian legislative elections began signing up Saturday .\tNNS IN VBG JJ JJ NNS VBD VBG RP NNP .\nThe race is likely to see the ruling Fatah party face a strong challenge from the Islamic group , Hamas .\tDT NN VBZ JJ TO VB DT NN NNP NN VBP DT JJ NN IN DT NNP NN , NNP .\nVoting primaries this past week for Prime Minister Mahmoud Abbas ' Fatah party were beset with disruptions from gunmen , some with links to Fatah .\tNN NNS DT JJ NN IN NNP NNP NNP NNP POS NNP NN VBD VBN IN NNS IN NNS , DT IN NNS TO NNP .\nFatah 's younger generation is challenging the old guard , many of whom are seen as tainted by corruption .\tNNP POS JJR NN VBZ VBG DT JJ NN , NN IN WP VBP VBN IN VBN IN NN .\nIsrael and the United States are worried Hamas will do well in the January poll , threatening the peace process .\tNNP CC DT NNP NNPS VBP VBN NNP MD VB RB IN DT NNP NN , VBG DT NN NN .\nIn a separate development , Mr. Abbas met Pope Benedict XVI at the Vatican Saturday , and invited the pontiff to visit Jerusalem , considered the holy land by followers of Judaism , Christianity and Islam .\tIN DT JJ NN , NNP NNP VBD NNP NNP NNP IN DT NNP NNP , CC VBD DT NN TO VB NNP , VBD DT JJ NN IN NNS IN NNP , NNP CC NNP .\nElsewhere , Palestinian officials say Israeli troops shot dead two Palestinians in separate incidents in the Gaza Strip .\tRB , JJ NNS VBP JJ NNS VBD JJ CD NNS IN JJ NNS IN DT NNP NNP .\nHundreds of Libyan opposition members have concluded a two-day conference in London to discuss strategies for ousting Moammar Gadhafi from power .\tNNS IN JJ NN NNS VBP VBN DT JJ NN IN NNP TO VB NNS IN VBG NNP NNP IN NN .\nThe opposition leaders are calling on the United Nations to push for regime change in Libya and for the restoration of Libya 's constitution .\tDT NN NNS VBP VBG IN DT NNP NNPS TO VB IN NN NN IN NNP CC IN DT NN IN NNP POS NN .\nThe leaders said Sunday they intend to form a provisional government that would last no longer than one year , then launch a democratic constitutional government built on cultural pluralism and a rotating presidency .\tDT NNS VBD NNP PRP VBP TO VB DT JJ NN WDT MD VB RB JJR IN CD NN , RB VB DT JJ JJ NN VBN IN JJ NN CC DT VBG NN .\nThe United States re-established limited diplomatic ties with Libya last year after Colonel Gadhafi announced Tripoli would abandon its chemical and nuclear weapons programs .\tDT NNP NNPS VBD JJ JJ NNS IN NNP JJ NN IN NNP NNP VBD NNP MD VB PRP$ NN CC JJ NNS NNS .\nColonel Gadhafi seized power during a 1969 political coup .\tNNP NNP VBD NN IN DT CD JJ NN .\nThe United States Army has charged the former head of the interrogation center at Abu Ghraib prison in Iraq for his alleged involvement in the abuse of detainees .\tDT NNP NNP NNP VBZ VBN DT JJ NN IN DT NN NN IN NNP NNP NN IN NNP IN PRP$ JJ NN IN DT NN IN NNS .\nThe Army announced Friday that Lt. Col. Steven L. Jordan would face 12 counts , including cruelty and maltreatment , dereliction of duty , and interfering with the abuse investigation .\tDT NNP VBD NNP IN NNP NNP NNP NNP NNP MD VB CD NNS , VBG NN CC NN , NN IN NN , CC VBG IN DT NN NN .\nColonel Jordan is the highest-ranking officer to face criminal charges stemming from Abu Ghraib .\tNNP NNP VBZ DT JJ NN TO VB JJ NNS VBG IN NNP NNP .\nHe ran the interrogation center at the prison in late 2003 , a time when U.S. military leaders wanted information from detainees to combat the rising Iraqi insurgency .\tPRP VBD DT NN NN IN DT NN IN JJ CD , DT NN WRB NNP JJ NNS VBD NN IN NNS TO VB DT VBG JJ NN .\nSo far , only a handful of low-ranking soldiers have been prosecuted for abuses at Abu Ghraib .\tRB RB , RB DT NN IN JJ NNS VBP VBN VBN IN NNS IN NNP NNP .\nOfficers above Jordan 's rank have been reprimanded and relieved of command , but none has faced criminal charges .\tNNS IN NNP POS NN VBP VBN VBN CC VBN IN NN , CC NN VBZ VBN JJ NNS .\nA U.S. senator is asking Americans whether a current proposal to overhaul the American health-care system would actually make things better .\tDT NNP NN VBZ VBG NNS IN DT JJ NN TO VB DT JJ NN NN MD RB VB NNS JJR .\nSpeaking in the weekly Republican address Saturday , Senator Mike Johanns from the state of Nebraska said the proposal could negatively impact ' each and every ' American .\tVBG IN DT JJ NNP NN NNP , NNP NNP NNP IN DT NN IN NNP VBD DT NN MD RB VB `` DT CC DT `` NN .\nPresident Barack Obama , from the majority Democratic Party , is pushing for a bill to be passed by the end of the year .\tNNP NNP NNP , IN DT NN NNP NNP , VBZ VBG IN DT NN TO VB VBN IN DT NN IN DT NN .\nHe says health care costs are spiraling out of control and making it difficult for small businesses to compete .\tPRP VBZ NN NN NNS VBP VBG IN IN NN CC VBG PRP JJ IN JJ NNS TO VB .\nHe says too many Americans are not insured or go bankrupt to pay for health care .\tPRP VBZ RB JJ NNS VBP RB VBN CC VB JJ TO VB IN NN NN .\nProposals to reform the system are currently under discussion in both the Senate and the House of Representatives .\tNNS TO VB DT NN VBP RB IN NN IN DT DT NNP CC DT NNP IN NNPS .\nRepublicans say the proposals are too expensive and will not improve the current system .\tNNS VBP DT NNS VBP RB JJ CC MD RB VB DT JJ NN .\nNegotiators from the Sudanese government and two Darfur rebel groups are expected in Nigeria 's capital , Abuja , for a new round of peace talks to begin on Thursday .\tNNS IN DT JJ NN CC CD NNP NN NNS VBP VBN IN NNP POS NN , NNP , IN DT JJ NN IN NN NNS TO VB IN NNP .\nThe African Union will mediate the talks , aimed at ending a two-and-a-half-year conflict in Sudan 's western Darfur region .\tDT NNP NNP MD VB DT NNS , VBN IN VBG DT JJ NN IN NNP POS JJ NNP NN .\nSeveral previous rounds have failed .\tJJ JJ NNS VBP VBN .\nThe last talks in June stalled over rebel demands that Chad not be allowed to help mediate the negotiations .\tDT JJ NNS IN NNP VBD IN NN NNS WDT VBP RB VB VBN TO VB VB DT NNS .\nA ceasefire agreement has also been repeatedly violated .\tDT JJ NN VBZ RB VBN RB VBN .\nLast week , the United Nations said there have been many reports in Darfur of banditry , looting , alleged attacks on villages and continued fighting .\tJJ NN , DT NNP NNPS VBD EX VBP VBN JJ NNS IN NNP IN NN , VBG , JJ NNS IN NNS CC JJ NN .\nThe conflict pits rebels of African descent against pro-government Arab militiamen .\tDT NN VBZ NNS IN JJ NN IN JJ JJ NNS .\nAn estimated 1,80,000 people have been killed and 2 million others have been displaced .\tDT VBN CD NNS VBP VBN VBN CC CD CD NNS VBP VBN VBN .\nFormer U.S. President Bill Clinton used a speech in Taiwan to stress the need for nations to depend more on one another .\tJJ NNP NNP NNP NNP VBD DT NN IN NNP TO VB DT NN IN NNS TO VB RBR IN CD DT .\nMr. Clinton arrived in Taipei late Sunday for a one-day visit that had prompted concern from China .\tNNP NNP VBD IN NNP JJ NNP IN DT JJ NN WDT VBD VBN NN IN NNP .\nIn his speech at the city 's International Convention Center , the former president urged China and Taiwan to resolve their differences and work together peacefully .\tIN PRP$ NN IN DT NN POS NNP NNP NNP , DT JJ NN VBD NNP CC NNP TO VB PRP$ NNS CC VB RB RB .\nBefore his arrival , Mr. Clinton told a Hong Kong newspaper group he supports Beijing 's one-China policy , which claims Taiwan as part of China .\tIN PRP$ NN , NNP NNP VBD DT NNP NNP NN NN PRP VBZ NNP POS NNP NN , WDT VBZ NNP IN NN IN NNP .\nThe United States observes the policy and has no official diplomatic ties with Taiwan .\tDT NNP NNPS VBZ DT NN CC VBZ DT JJ JJ NNS IN NNP .\nLater Sunday , Mr. Clinton had dinner with President Chen Shui-bian .\tRB NNP , NNP NNP VBD NN IN NNP NNP NNP .\nOn Monday he was expected to attend a book-signing for his autobiography , ' My Life , ' which he recently promoted in China and Japan .\tIN NNP PRP VBD VBN TO VB DT NN IN PRP$ NN , `` PRP$ NN , `` WDT PRP RB VBD IN NNP CC NNP .\nPakistan has reiterated its support for resolving the row over Iran 's controversial nuclear program through dialogue , saying it opposes the use of force against its western neighbor .\tNNP VBZ VBN PRP$ NN IN VBG DT NN IN NNP POS JJ JJ NN IN NN , VBG PRP VBZ DT NN IN NN IN PRP$ JJ NN .\nPakistani Foreign Minister Khursheed Mehmood Kasuri says he hopes talks between Iran and the European Union will lead to , in his words , ' an amicable solution . '\tJJ JJ NNP NNP NNP NNP VBZ PRP VBZ NNS IN NNP CC DT NNP NNP MD VB TO , IN PRP$ NNS , `` DT JJ NN . ``\nHe spoke during a meeting with his visiting Iranian counterpart , Manouchehr Mottaki .\tPRP VBD IN DT NN IN PRP$ VBG JJ NN , NNP NNP .\nTalks between Iran and EU negotiators aimed at persuading Tehran to stop enriching uranium collapsed in August but will resume later this month .\tNNS IN NNP CC NNP NNS VBN IN VBG NNP TO VB VBG NN VBD IN NNP CC MD VB RB DT NN .\nPakistan has been one of few nations to defend Iran 's nuclear program from international criticism , saying all nations have a right to nuclear power .\tNNP VBZ VBN CD IN JJ NNS TO VB NNP POS JJ NN IN JJ NN , VBG DT NNS VBP DT NN TO JJ NN .\nMr. Mottaki , who arrived in Pakistan Wednesday for a two-day visit , says he and Mr. Kasuri also discussed expanding economic cooperation and a proposed gas pipeline project .\tNNP NNP , WP VBD IN NNP NNP IN DT JJ NN , VBZ PRP CC NNP NNP RB VBD VBG JJ NN CC DT VBN NN NN NN .\nPresident Bush is to visit the western U.S. state of Arizona Monday to give a speech on illegal immigration .\tNNP NNP VBZ TO VB DT JJ NNP NN IN NNP NNP TO VB DT NN IN JJ NN .\nWhite House officials say Mr. Bush 's speech in Tucson will focus on border security , enforcement and a temporary worker program .\tNNP NNP NNS VBP NNP NNP POS NN IN NNP MD VB IN NN NN , NN CC DT JJ NN NN .\nHe will travel to El~Paso , Texas on Tuesday to discuss the same issues .\tPRP MD VB TO NNP , NNP IN NNP TO VB DT JJ NNS .\nIn January , the president proposed a temporary worker program that would match foreign workers with U.S. employers when no Americans can be found to fill the jobs .\tIN NNP , DT NN VBD DT JJ NN NN WDT MD VB JJ NNS IN NNP NNS WRB DT NNS MD VB VBN TO VB DT NNS .\nThe immigrants would be allowed to work in the United States for up to six years .\tDT NNS MD VB VBN TO VB IN DT NNP NNPS IN RP TO CD NNS .\nSupporters of the proposal say it will create incentives for legal immigration and boost the economy .\tNNS IN DT NN VBP PRP MD VB NNS IN JJ NN CC VB DT NN .\nCritics of the program say it is a form of amnesty for people who enter the country illegally .\tNNS IN DT NN VBP PRP VBZ DT NN IN NN IN NNS WP VBP DT NN RB .\nWorld oil prices eased downward Friday but U.S. retail gasoline prices hit fresh record highs , which cut travel on the Independence Day holiday .\tNNP NN NNS VBD JJ NNP CC NNP JJ NN NNS VBD JJ NN NNS , WDT VBD NN IN DT NNP NNP NN .\nA barrel of oil for future delivery cost $ 144 in electronic trading in New York , a decline of about $ 2 from Thursday 's record high price .\tDT NN IN NN IN JJ NN VBD $ CD IN JJ NN IN NNP NNP , DT NN IN IN $ CD IN NNP POS NN JJ NN .\nA majority of analysts interviewed by the Bloomberg financial news service say oil prices are likely to rise next week because of concerns that Mideast tensions will continue and the dollar might weaken .\tDT NN IN NNS VBN IN DT NNP JJ NN NN VBP NN NNS VBP JJ TO VB JJ NN IN IN NNS IN JJ NNS MD VB CC DT NN MD VB .\nOil is priced in dollars , so a lower value tends to raise the price of oil .\tNN VBZ VBN IN NNS , IN DT JJR NN VBZ TO VB DT NN IN NN .\nSoaring oil prices have pushed U.S. retail gasoline prices to a series of record highs .\tVBG NN NNS VBP VBN NNP JJ NN NNS TO DT NN IN NN NNS .\nThe latest survey puts the average price at nearly $ 1.08 a liter ( $ 4.1 a gallon ) .\tDT JJS NN VBZ DT JJ NN IN RB $ CD DT NN LRB $ CD DT NN RRB .\nThat is an increase of 30 cents a liter in the past year .\tDT VBZ DT NN IN CD NNS DT NN IN DT JJ NN .\nThe death toll from violence in Sudan following the death of former rebel leader and Vice President John Garang has surpassed 100 .\tDT NN NN IN NN IN NNP VBG DT NN IN JJ JJ NN CC NNP NNP NNP NNP VBZ VBN CD .\nThe International Committee of the Red Cross says 84 people have been killed in the capital city of Khartoum since Monday , when southern Sudanese began rioting after learning of Mr. Garang 's death in a helicopter crash Saturday .\tDT NNP NNP IN DT NNP NNP VBZ CD NNS VBP VBN VBN IN DT NN NN IN NNP IN NNP , WRB JJ NNS VBD VBG IN VBG IN NNP NNP POS NN IN DT NN NN NNP .\nAnother 18 people have been killed in the southern city of Juba , Mr. Garang 's home base .\tDT CD NNS VBP VBN VBN IN DT JJ NN IN NNP , NNP NNP POS NN NN .\nThe violence has forced scores of northern Muslim Arabs to flee Juba .\tDT NN VBZ VBN NNS IN JJ NNP NNS TO VB NNP .\nMr. Garang led the mostly Christian and animist south in a 21-year-old civil war against the Muslim-dominated north .\tNNP NNP VBD DT RB JJ CC JJ NN IN DT JJ JJ NN IN DT JJ NN .\nHe was sworn in as vice president just three weeks ago under a peace accord reached earlier this year .\tPRP VBD VBN IN IN NN NN RB CD NNS RB IN DT NN NN VBN RBR DT NN .\nThe United States is urging Khartoum to increase efforts to end the violence .\tDT NNP NNPS VBZ VBG NNP TO VB NNS TO VB DT NN .\nIsraeli Prime Minister-designate Tzipi Livni says she will form a new coalition government by Sunday or call for elections .\tJJ JJ NN NNP NNP VBZ PRP MD VB DT JJ NN NN IN NNP CC VB IN NNS .\nLivni announced the decision Thursday following talks with her centrist Kadima party .\tNNP VBD DT NN NNP VBG NNS IN PRP$ NN NNP NN .\nOn Monday , President Shimon Peres granted Livni 's request for a two-week extension to negotiate a deal that would keep the existing ruling coalition intact .\tIN NNP , NNP NNP NNP VBD NNP POS NN IN DT JJ NN TO VB DT NN WDT MD VB DT VBG NN NN JJ .\nLivni reached a deal with the dovish Labor Party .\tNNP VBD DT NN IN DT JJ NNP NNP .\nBut she has been unable to strike an agreement to keep the ultra-Orthodox Shas party on board , a move many observers , including political correspondent Gil Hoffman , say is key .\tCC PRP VBZ VBN JJ TO VB DT NN TO VB DT JJ NNP NN IN NN , DT NN JJ NNS , VBG JJ NN NNP NNP , VBP VBZ JJ .\nPolls indicate that if early elections are held , then Kadima would likely lose out to the hardline Likud party , denying Livni the chance to become Israel 's first female prime minister in more than 30 years .\tNNS VBP IN IN JJ NNS VBP VBN , RB NNP MD RB VB RP TO DT JJ NNP NN , VBG NNP DT NN TO VB NNP POS JJ JJ JJ NN IN JJR IN CD NNS .\nA Ukrainian court has temporarily suspended the results of this month 's presidential election pending review of an appeal filed by the losing candidate .\tDT JJ NN VBZ RB VBN DT NNS IN DT NN POS JJ NN VBG NN IN DT NN VBN IN DT JJ NN .\nThe Supreme Administrative Court released a statement Wednesday saying the Central Election Commission ruling that declared Viktor Yanukovych the winner had been put on hold .\tDT NNP NNP NNP VBD DT NN NNP VBG DT NNP NNP NNP NN WDT VBD NNP NNP DT NN VBD VBN VBN IN NN .\nDefeated Ukrainian presidential candidate Yulia Tymoshenko has filed a lawsuit seeking to overturn the results of the February 7 vote .\tJJ JJ JJ NN NNP NNP VBZ VBN DT NN VBG TO VB DT NNS IN DT NNP CD NN .\nMs. Tymoshenko , Ukraine 's current prime minister , says the election was rigged .\tNNP NNP , NNP POS JJ JJ NN , VBZ DT NN VBD VBN .\nShe has refused to concede defeat .\tPRP VBZ VBN TO VB NN .\nThe prime minister claims vote-rigging robbed her of 1 million votes in the runoff election .\tDT JJ NN VBZ NN VBD PRP IN CD CD NNS IN DT NN NN .\nFinal results show her losing by nearly 8,88,000 votes .\tJJ NNS VBP PRP VBG IN RB CD NNS .\nTuesday , Ukraine 's parliament set February 25 for the swearing in of President-elect Yanukovych .\tNNP , NNP POS NN VBD NNP CD IN DT NN IN IN JJ NNP .\nA majority of 238 lawmakers in the 450-seat parliament endorsed the date Tuesday .\tDT NN IN CD NNS IN DT JJ NN VBD DT NN NNP .\nBut factions loyal to Ms. Tymoshenko boycotted the vote .\tCC NNS JJ TO NNP NNP VBD DT NN .\nU.S. stock markets are up about one percent following Friday 's congressional approval of a controversial measure to aid the battered financial sector .\tNNP NN NNS VBP RB IN CD NN VBG NNP POS JJ NN IN DT JJ NN TO VB DT JJ JJ NN .\nEuropean markets gained between two and three percent by the close of trading .\tJJ NNS VBD IN CD CC CD NN IN DT NN IN NN .\nIt was a different story in Asia , where Japan 's benchmark Nikkei index fell two percent , and Hong Kong 's Hang Seng index was down nearly three percent .\tPRP VBD DT JJ NN IN NNP , WRB NNP POS JJ NNP NN VBD CD NN , CC NNP NNP POS NNP NNP NN VBD RB RB CD NN .\nGeorgia 's breakaway region of Abkhazia remains tense - a day after supporters of presidential candidate Sergei Bagapsh seized regional government offices .\tNNP POS JJ NN IN NNP VBZ JJ IN DT NN IN NNS IN JJ NN NNP NNP VBD JJ NN NNS .\nCrowds stormed the buildings in the capital , Sukhumi , Friday .\tNNS VBD DT NNS IN DT NN , NNP , NNP .\nSeveral people were injured , and one woman died of a gunshot wound .\tJJ NNS VBD VBN , CC CD NN VBD IN DT NN NN .\nMr. Bagapsh blames the shooting on guards , while Abkhaz officials say Mr. Bagapsh 's supporters were responsible .\tNNP NNP VBZ DT NN IN NNS , IN NNP NNS VBP NNP NNP POS NNS VBD JJ .\nThe region 's high court last month declared Mr. Bagapsh the winner of a disputed October presidential election , but then reversed itself and ordered a new vote .\tDT NN POS JJ NN JJ NN VBD NNP NNP DT NN IN DT JJ NNP JJ NN , CC RB VBD PRP CC VBD DT JJ NN .\nHis supporters have rejected fresh elections .\tPRP$ NNS VBP VBN JJ NNS .\nRussia said Friday it will act if necessary to protect its interests .\tNNP VBD NNP PRP MD VB IN JJ TO VB PRP$ NNS .\nTbilisi then accused Moscow of interfering in Georgia 's internal affairs - a charge Moscow rejects .\tNNP RB VBD NNP IN VBG IN NNP POS JJ NNS IN DT NN NNP VBZ .\nAbkhaz President Vladislav Ardzinba described the events Friday in the pro-Russian enclave as an attempted coup .\tNNP NNP NNP NNP VBD DT NNS NNP IN DT JJ NN IN DT VBN NN .\nAbkhazia broke away from Georgia in the 1990s .\tNNP VBD RB IN NNP IN DT NNS .\nThe top U.S. envoy to the International Atomic Energy Agency says momentum is growing among IAEA delegates to report Iran to the United Nations Security Council for its suspect nuclear activities .\tDT JJ NNP NN TO DT NNP NNP NNP NNP VBZ NN VBZ VBG IN NNP VBZ TO VB NNP TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NNS .\nU.S. Ambassador Gregory Schulte told IAEA diplomats meeting in Vienna that the time has come to act against Iran .\tNNP NNP NNP NNP VBD NNP NNS NN IN NNP IN DT NN VBZ VBN TO VB IN NNP .\nWashington and the European Union accuse Tehran of secret efforts to develop atomic weapons .\tNNP CC DT NNP NNP VBP NNP IN JJ NNS TO VB JJ NNS .\nIran denies the charges .\tNNP VBZ DT NNS .\nThe Security Council can impose sanctions if it finds Tehran has not complied with the Nuclear Non-Proliferation Treaty .\tDT NNP NNP MD VB NNS IN PRP VBZ NNP VBZ RB VBN IN DT NNP NNP NNP .\nWestern efforts to rally support for referral from the 35-member IAEA board is opposed by Russia , China and a host of non-aligned member-nations that want European-Iranian negotiations to continue .\tJJ NNS TO VB NN IN NN IN DT JJ NNP NN VBZ VBN IN NNP , NNP CC DT NN IN JJ NNS WDT VBP JJ NNS TO VB .\nEarlier Wednesday , Iranian Vice President Gholamreza Aghazadeh said Tehran has no intention of abandoning the non-proliferation treaty , despite warnings Tuesday by a top Iranian negotiator .\tRBR NNP , JJ NNP NNP NNP NNP VBD NNP VBZ DT NN IN VBG DT JJ NN , IN NNS NNP IN DT JJ JJ NN .\nThe United Nations Security Council has decided to send a special mission to Serbia 's breakaway Kosovo province before voting on its future status .\tDT NNP NNP NNP NNP VBZ VBN TO VB DT JJ NN TO NNP POS JJ NNP NN IN VBG IN PRP$ JJ NN .\nBritish Ambassador John Perry , who is the current president of the council , said representatives of 15 member nations will visit Kosovo later this month .\tNNP NNP NNP NNP , WP VBZ DT JJ NN IN DT NN , VBD NNS IN CD NN NNS MD VB NNP RB DT NN .\nPerry said Belgium 's ambassador , Johan Verbeke , will head the U.N. delegation to Pristina .\tNNP VBD NNP POS NN , NNP NNP , MD VB DT NNP NN TO NNP .\nRussian U.N. envoy Vitaly Churkin last month proposed the mission before the council considers mediator Martti Ahtisaari 's proposal for Kosovo .\tJJ NNP NN NNP NNP JJ NN VBD DT NN IN DT NN VBZ NN NNP NNP POS NN IN NNP .\nThe Ahtisaari plan envisions internationally supervised independence for the Serbian province , which Belgrade adamantly rejects .\tDT NNP NN VBZ RB JJ NN IN DT JJ NN , WDT NNP RB VBZ .\nKosovo has been under U.N. administration since 1999 , after NATO air raids halted Belgrade 's crackdown on ethnic Albanian separatists .\tNNP VBZ VBN IN NNP NN IN CD , IN NNP NN NNS VBD NNP POS NN IN JJ JJ NNS .\nA U.S. newspaper reports the Bush administration has been monitoring telephone conversations between Iranian diplomats and the head of the International Atomic Energy Agency , Mohamed ElBaradei .\tDT NNP NN VBZ DT NNP NN VBZ VBN VBG NN NNS IN JJ NNS CC DT NN IN DT NNP NNP NNP NNP , NNP NNP .\nThe Washington Post quotes three officials , speaking on condition of anonymity , as saying the White House is looking for material to strengthen its argument that the 62-year-old Mr. ElBaradei should be retired .\tDT NNP NNP VBZ CD NNS , VBG IN NN IN NN , IN VBG DT NNP NNP VBZ VBG IN NN TO VB PRP$ NN IN DT JJ NNP NNP MD VB VBN .\nThere has been no comment from the White House , but as a rule the administration does not comment on intelligence matters .\tEX VBZ VBN DT NN IN DT NNP NNP , CC IN DT NN DT NN VBZ RB VB IN NN NNS .\nThe newspaper says some U.S. officials believe the phone intercepts may show Mr. ElBaradei has been soft on the Iranians , while others believe the transcripts show only standard diplomacy .\tDT NN VBZ DT NNP NNS VBP DT NN NNS MD VB NNP NNP VBZ VBN JJ IN DT NNS , IN NNS VBP DT NNS VBP RB JJ NN .\nThe Post quotes an IAEA spokesman as saying the U.N. agency ' always assumed ' eavesdropping occurs .\tDT NNP VBZ DT NNP NN IN VBG DT NNP NN `` RB VBD `` NN VBZ .\nChina says it has received assurances from a senior official of Iraq 's interim government that authorities in Baghdad will make every possible effort to free eight Chinese construction workers abducted by insurgents in Iraq .\tNNP VBZ PRP VBZ VBN NNS IN DT JJ NN IN NNP POS JJ NN IN NNS IN NNP MD VB DT JJ NN TO VB CD JJ NN NNS VBN IN NNS IN NNP .\nChinese state media say Iraq 's Deputy President Rowsch Nuri Shaways expressed regret over the kidnappings during talks with Chinese officials in Beijing .\tJJ NN NNS VBP NNP POS NNP NNP NNP NNP NNP VBD NN IN DT NNS IN NNS IN JJ NNS IN NNP .\nArab television channel Al-Jazeera broadcast a video showing the hostages Tuesday , in which their abductors threatened to kill the men unless China ' clarifies its role in Iraq . '\tJJ NN NN NNP VBD DT NN VBG DT NNS NNP , IN WDT PRP$ NNS VBD TO VB DT NNS IN NNP `` VBZ PRP$ NN IN NNP . ``\nChinese officials say the men are workers who went to Iraq on their own initiative .\tJJ NNS VBP DT NNS VBP NNS WP VBD TO NNP IN PRP$ JJ NN .\nThe official Xinhua news agency said China is working with mediators to win the release of the hostages .\tDT JJ NNP NN NN VBD NNP VBZ VBG IN NNS TO VB DT NN IN DT NNS .\nAfghanistan 's attorney general has asked the country 's Supreme Court to annul results from the recent parliamentary elections , because of extensive fraud and corruption .\tNNP POS NN NN VBZ VBN DT NN POS NNP NNP TO VB NNS IN DT JJ JJ NNS , IN IN JJ NN CC NN .\nA spokesman for Attorney General Mohammad Ishaq Alako , Deputy Attorney General Rahmatullah Nazari , says a letter has been sent to the Supreme Court asking it to annul the results and issue sentences against 14 top officials who organized the vote and oversaw fraud investigations .\tDT NN IN NNP NNP NNP NNP NNP , NNP NNP NNP NNP NNP , VBZ DT NN VBZ VBN VBN TO DT NNP NNP VBG PRP TO VB DT NNS CC NN NNS IN CD JJ NNS WP VBD DT NN CC VB NN NNS .\nBoth the Electoral Complaints Commission and the country 's Independent Election Commission have rejected the call as unlawful , saying no individual or organization has the authority to invalidate election results .\tDT DT NNP NNPS NNP CC DT NN POS NNP NNP NNP VBP VBN DT NN IN JJ , VBG DT NN CC NN VBZ DT NN TO VB NN NNS .\nThe election commission disqualified nearly one quarter of the votes cast in the election , and disqualified 24 winning candidates after receiving more than 5,000 complaints of irregularities .\tDT NN NN VBD RB CD NN IN DT NNS VBN IN DT NN , CC VBD CD NN NNS IN VBG JJR IN CD NNS IN NNS .\nPresident Bush has praised relations with Afghanistan , India , and Pakistan in a radio address to the United States while he is traveling in South Asia .\tNNP NNP VBZ VBN NNS IN NNP , NNP , CC NNP IN DT NN NN TO DT NNP NNPS IN PRP VBZ VBG IN NNP NNP .\nMr. Bush said he witnessed an ' incredible transformation ' in Afghanistan , from a country ruled by the cruel Taleban regime to one in which women have more freedom , children are going to school , and terror camps have been shut down .\tNNP NNP VBD PRP VBD DT `` JJ NN `` IN NNP , IN DT NN VBN IN DT JJ NNP NN TO CD IN WDT NNS VBP JJR NN , NNS VBP VBG IN NN , CC NN NNS VBP VBN VBN RP .\nMr. Bush also praised an agreement made with India during his trip , to share civilian nuclear energy technology in exchange for India bringing its nuclear programs in line with the International Atomic Energy Agency ( IAEA ) .\tNNP NNP RB VBD DT NN VBN IN NNP IN PRP$ NN , TO VB JJ JJ NN NN IN NN IN NNP VBG PRP$ JJ NNS IN NN IN DT NNP NNP NNP NNP LRB NNP RRB .\nAnd he said Pakistan 's President Pervez Musharraf made the right decision to fight terror after September 11 , 2001 , despite several attempts on his life .\tCC PRP VBD NNP POS NNP NNP NNP VBD DT JJ NN TO VB NN IN NNP CD , CD , IN JJ NNS IN PRP$ NN .\nMr. Bush said his trip is helping to lay the foundations of peace and prosperity for generations to come .\tNNP NNP VBD PRP$ NN VBZ VBG TO VB DT NNS IN NN CC NN IN NNS TO VB .\nBlades Of Glory continues to keep the competition on ice .\tNNP NNP NNP VBZ TO VB DT NN IN NN .\nThe skating comedy retained the U.S. box office championship , taking in $ 23 million over the Easter weekend .\tDT VBG NN VBD DT NNP NN NN NN , VBG IN $ CD CD IN DT NNP NN .\nIts 10-day total now stands at $ 68.4 million .\tPRP$ JJ NN RB VBZ IN $ CD CD .\nOccupying second place was Disney 's animated comedy Meet The Robinsons , at $ 17 million .\tVBG JJ NN VBD NNP POS JJ NN NNP NNP NNP , IN $ CD CD .\nIce Cube 's family comedy Are We Done Yet ? opened in third place , taking in $ 15 million .\tNNP NNP POS NN NN VBP PRP VB RB . VBD IN JJ NN , VBG IN $ CD CD .\nQuentin Tarantino and Robert Rodriguez ' Grindhouse , a much-publicized homage to 1970s exploitation movies , debuted a disappointing fourth with $ 11.6 million .\tNNP NNP CC NNP NNP POS NNP , DT JJ NN TO NNS NN NNS , VBD DT JJ JJ IN $ CD CD .\nMedia tracker Paul Dergarabedian says the film 's three-hour running time limited its total screenings .\tNN NN NNP NNP VBZ DT NN POS JJ JJ NN VBN PRP$ JJ NNS .\nIn Afghanistan , a huge explosion in a convoy hauling munitions and weapons to a remote location for destruction has killed two German soldiers and at least five Afghans .\tIN NNP , DT JJ NN IN DT NN VBG NNS CC NNS TO DT JJ NN IN NN VBZ VBN CD JJ NNS CC IN JJS CD NNS .\nAfghan officials say the explosion in the northern province of Takhar Saturday was accidental .\tJJ NNS VBP DT NN IN DT JJ NN IN NNP NNP VBD JJ .\nThey say a third German soldier and a sixth Afghan were wounded .\tPRP VBP DT JJ JJ NN CC DT JJ NN VBD VBN .\nThe Associated Press quotes Afghan President Hamid Karzai as saying he was deeply saddened by the incident .\tDT NNP NNP VBZ JJ NNP NNP NNP IN VBG PRP VBD RB VBN IN DT NN .\nThe German soldiers were part of the NATO-led International Security Assistance Force in Afghanistan .\tDT JJ NNS VBD NN IN DT JJ NNP NNP NNP NNP IN NNP .\nThe German detachment of about two thousand troops provides security and collects weapons and ammunition from disarmed militias for disposal .\tDT JJ NN IN IN CD CD NNS VBZ NN CC VBZ NNS CC NN IN JJ NNS IN NN .\nISAF has about 8,000 troops in Afghanistan .\tNNP VBZ IN CD NNS IN NNP .\nPakistani police reported more deaths Saturday from poisoned bootleg liquor in the port city of Karachi , raising the death toll to at least 40 .\tJJ NN VBD JJR NNS NNP IN VBN NN NN IN DT JJ NN IN NNP , VBG DT NN NN TO IN JJS CD .\nSeveral people are still being treated at a local hospital after consuming the toxic batch of liquor late Thursday .\tJJ NNS VBP RB VBG VBN IN DT JJ NN IN VBG DT JJ NN IN NN JJ NNP .\nLiquor is banned for Muslims in Pakistan , although a few shops are allowed to sell alcohol to non-Muslims .\tNNP VBZ VBN IN NNPS IN NNP , IN DT JJ NNS VBP VBN TO VB NN TO JJ .\nBut some Muslims drink alcohol , resorting to black-market supplies smuggled from abroad or homemade liquor that is sometimes tainted .\tCC DT NNPS VBP NN , VBG TO JJ NNS VBN IN RB CC JJ NN WDT VBZ RB VBN .\nPolice say they have arrested several men in a series of raids for illegally preparing and selling the homemade alcohol .\tNNS VBP PRP VBP VBN JJ NNS IN DT NN IN NNS IN RB VBG CC VBG DT JJ NN .\nIn October of last year , at least 12 people died after drinking contaminated liquor in the eastern city of Multan .\tIN NNP IN JJ NN , IN JJS CD NNS VBD IN VBG JJ NN IN DT JJ NN IN NNP .\nA former U.S. Senate majority leader says he never agreed to let the Bush administration eavesdrop , without court approval , on phone calls that cross U.S. borders .\tDT JJ NNP NNP NN NN VBZ PRP RB VBD TO VB DT NNP NN VB , IN NN NN , IN NN NNS WDT VBP NNP NNS .\nDemocrat Tom Daschle contradicts President Bush , who says Congress granted him the authority in legislation authorizing the use of force against al-Qaida after the September 11 , 2001 terror attacks .\tNN NNP NNP VBZ NNP NNP , WP VBZ NNP VBD PRP DT NN IN NN VBG DT NN IN NN IN NNP IN DT NNP CD , CD NN NNS .\nIn an opinion piece in the Washington Post Friday , Mr. Daschle says lawmakers granted the president extra powers to pursue al Qaida , but specifically turned down a White House request to use those powers inside the United States .\tIN DT NN NN IN DT NNP NNP NNP , NNP NNP VBZ NNS VBD DT NN JJ NNS TO VB NNP NNP , CC RB VBD RP DT NNP NNP NN TO VB DT NNS IN DT NNP NNPS .\nPresident Bush last week confirmed he secretly authorized the National Security Agency to eavesdrop in the United States .\tNNP NNP JJ NN VBD PRP RB VBD DT NNP NNP NNP TO VB IN DT NNP NNPS .\nHe called it a vital tool for national security that was within his legal power .\tPRP VBD PRP DT JJ NN IN JJ NN WDT VBD IN PRP$ JJ NN .\nIran 's elite security forces are warning opposition supporters not to hold anti-government demonstrations during a government-sponsored rally on Friday .\tNNP POS JJ NN NNS VBP VBG NN NNS RB TO VB JJ NNS IN DT JJ NN IN NNP .\nOpposition activists have called for protests coinciding with the Quds Day rallies , the annual event that expresses support for Palestinians and condemns Israel .\tNN NNS VBP VBN IN NNS VBG IN DT NNP NNP NNS , DT JJ NN IN VBZ NN IN NNS CC VBZ NNP .\nOpposition leader Mir Hossein Mousavi has said he plans to attend and activists have encouraged people to capitalize on the large gatherings to protest the disputed re-election of President Mahmoud Ahmadinejad .\tNNP NN NNP NNP NNP VBZ VBN PRP VBZ TO VB CC NNS VBP VBN NNS TO VB IN DT JJ NNS TO VB DT JJ NN IN NNP NNP NNP .\nOn Thursday , Iranian state media published a message from the elite Revolutionary Guards promising to crack down on any protests during the rallies .\tIN NNP , JJ NN NNS VBN DT NN IN DT JJ JJ NNS VBG TO VB RP IN DT NNS IN DT NNS .\nFollowing Iran 's disputed June 12 elections , rights groups said hundreds of people were detained in clashes with security forces during post-election , anti-government demonstrations .\tVBG NNP POS JJ NNP CD NNS , NNS NNS VBD NNS IN NNS VBD VBN IN NNS IN NN NNS IN NN , JJ NNS .\nSince then , authorities have held public trials of the accused and tried to marginalize moderate officials within the government .\tIN RB , NNS VBP VBN JJ NNS IN DT VBN CC VBN TO VB JJ NNS IN DT NN .\nThe United Nations is praising the use of military helicopters to drop food and rescue survivors in tsunami-ravaged Indonesia , saying the aircraft are ' worth their weight in gold . '\tDT NNP NNP VBZ VBG DT NN IN JJ NNS TO VB NN CC NN NNS IN JJ NNP , VBG DT NN VBP `` IN PRP$ NN IN NN . ``\nU.N. relief coordinator Jan Egeland said Sunday , U.S. , Indonesian and Australian military helicopters are ferrying out food and supplies to remote areas of western Aceh province that ground crews can not reach .\tNNP NN NN NNP NNP VBD NNP , NNP , JJ CC JJ JJ NNS VBP VBG RP NN CC NNS TO VB NNS IN JJ NNP NN IN NN NNS MD RB VB .\nMr. Egeland said the latest figures show 1.8 million people are in need of food assistance - with the need greatest in Indonesia , Sri Lanka , the Maldives and India .\tNNP NNP VBD DT JJS NNS VBP CD CD NNS VBP IN NN IN NN NN : IN DT NN JJS IN NNP , NNP NNP , DT NNP CC NNP .\nHe said last week 's tsunami and the massive underwater earthquake that triggered it has affected millions in Asia and Africa .\tPRP VBD JJ NN POS NN CC DT JJ NN NN WDT VBD PRP VBZ VBN NNS IN NNP CC NNP .\nSome 1,27,000 people are known dead .\tDT CD NNS VBP VBN JJ .\nAid is being rushed to the region , but the U.N. official stressed that bottlenecks and a lack of infrastructure remain a challenge .\tNNP VBZ VBG VBN TO DT NN , CC DT NNP NN VBD IN NNS CC DT NN IN NN VBP DT NN .\nLebanese politicians are condemning Friday 's bomb blast in a Christian neighborhood of Beirut as an attempt to sow sectarian strife in the formerly war-torn country .\tJJ NNS VBP VBG NNP POS NN NN IN DT JJ NN IN NNP IN DT NN TO VB JJ NN IN DT RB JJ NN .\nIn Beirut , a string of officials voiced their anger , while at the United Nations summit in New York , Prime Minister Fouad Siniora said the Lebanese people are resolute in preventing such attempts from destroying their spirit .\tIN NNP , DT NN IN NNS VBD PRP$ NN , IN IN DT NNP NNP NN IN NNP NNP , NNP NNP NNP NNP VBD DT JJ NNS VBP JJ IN VBG JJ NNS IN VBG PRP$ NN .\nOne person was killed and more than 20 others injured in the bomb blast late Friday , which took place on a residential street .\tCD NN VBD VBN CC JJR IN CD NNS VBN IN DT NN NN JJ NNP , WDT VBD NN IN DT JJ NN .\nLebanon has suffered a series of bombings since the massive explosion in February that killed former Prime Minister Rafik Hariri and 20 other people .\tNNP VBZ VBN DT NN IN NNS IN DT JJ NN IN NNP WDT VBD JJ NNP NNP NNP NNP CC CD JJ NNS .\nSyria is widely accused of involvement in his killing , and Friday 's explosion comes days before U.N. investigator Detlev Mehlis is to return to Damascus to interview several Syrian officials about the assassination .\tNNP VBZ RB VBN IN NN IN PRP$ NN , CC NNP POS NN VBZ NNS IN NNP NN NNP NNP VBZ TO VB TO NNP TO VB JJ JJ NNS IN DT NN .\nIsraeli officials say Prime Minister Ariel Sharon will undergo a medical procedure Thursday to close a tiny hole in his heart discovered during treatment for a minor stroke suffered last month .\tJJ NNS VBP NNP NNP NNP NNP MD VB DT JJ NN NNP TO VB DT JJ NN IN PRP$ NN VBN IN NN IN DT JJ NN VBN JJ NN .\nDoctors describe the tiny hole as a minor birth defect and say it is in the partition between the upper chambers of Mr. Sharon 's heart .\tNNS VBP DT JJ NN IN DT JJ NN NN CC VB PRP VBZ IN DT NN IN DT JJ NNS IN NNP NNP POS NN .\nThe procedure , known as cardiac catheterization , involves inserting a catheter through a blood vessel into the heart , where an umbrella-like device will plug the hole .\tDT NN , VBN IN JJ NN , VBZ VBG DT NN IN DT NN NN IN DT NN , WRB DT JJ NN MD VB DT NN .\nDoctors say they expect Mr. Sharon will make a full recovery .\tNNS VBP PRP VBP NNP NNP MD VB DT JJ NN .\nMr. Sharon returned to work on December 25 , one week after his emergency hospitalization .\tNNP NNP VBD TO VB IN NNP CD , CD NN IN PRP$ NN NN .\nDoctors say the stroke has not caused any permanent damage .\tNNS VBP DT NN VBZ RB VBN DT JJ NN .\nThe designers of the first private manned rocket to burst into space have received a $ 10 million prize created to promote space tourism .\tDT NNS IN DT JJ JJ VBN NN TO VB IN NN VBP VBN DT $ CD CD NN VBN TO VB NN NN .\nSpaceShipOne designer Burt Rutan accepted the Ansari X Prize money and a trophy on behalf of his team Saturday during an awards ceremony in the U.S. state of Missouri .\tNNP NN NNP NNP VBD DT NNP NNP NNP NN CC DT NN IN NN IN PRP$ NN NNP IN DT NNS NN IN DT NNP NN IN NNP .\nTo win the money , SpaceShipOne had to blast off into space twice in a two-week period and fly at least 100 kilometers above Earth .\tTO VB DT NN , NNP VBD TO VB RP IN NN RB IN DT JJ NN CC VB IN JJS CD NNS IN NNP .\nThe spacecraft made its flights in late September and early October , lifting off from California 's Mojave desert .\tDT NN VBD PRP$ NNS IN JJ NNP CC JJ NNP , VBG RP IN NNP POS NNP NN .\nThe vehicle had to carry a pilot and weight equivalent to two passengers .\tDT NN VBD TO VB DT NN CC NN NN TO CD NNS .\nSpaceShipOne was financed with more than $ 20 million from Paul Allen , a co-founder of the Microsoft Corporation .\tNNP VBD VBN IN JJR IN $ CD CD IN NNP NNP , DT NN IN DT NNP NNP .\nNorth Korea says flooding caused by last week 's typhoon , Wipha , has destroyed 14,000 homes and 1,09,000 hectares of crops .\tNNP NNP VBZ NN VBN IN JJ NN POS NN , NNP , VBZ VBN CD NNS CC CD NNS IN NNS .\nThe state news agency KCNA reported the damage Monday .\tDT NN NN NN NNP VBD DT NN NNP .\nIt says the floods also destroyed or damaged 8,000 public buildings and washed out roads , bridges and railways .\tPRP VBZ DT NNS RB VBD CC VBD CD JJ NNS CC VBD RP NNS , NNS CC NNS .\nThe report did not mention any deaths or injuries .\tDT NN VBD RB VB DT NNS CC NNS .\nMost of the heavy rains and flooding occurred in the southwestern part of the country , including the capital , Pyongyang .\tJJS IN DT JJ NNS CC NN VBD IN DT JJ NN IN DT NN , VBG DT NN , NNP .\nLast month , severe flooding in North Korea left 600 people dead or missing , and displaced more than 1,00,000 others .\tJJ NN , JJ NN IN NNP NNP VBD CD NNS JJ CC JJ , CC VBD JJR IN CD NNS .\nA strong earthquake under the ocean off Indonesia 's Sumatra and Nias islands has caused some panic but no damage or injuries .\tDT JJ NN IN DT NN IN NNP POS NNP CC NNP NNS VBZ VBN DT NN CC DT NN CC NNS .\nThe U.S. Geological Survey gave a preliminary estimate of the strength of the Tuesday morning quake at 6.7 on the Richter scale , and said the epicenter was close to the island of Nias .\tDT NNP NNP NNP VBD DT JJ NN IN DT NN IN DT NNP NN NN IN CD IN DT NNP NN , CC VBD DT NN VBD RB TO DT NN IN NNP .\nThe quake did not cause a tsunami .\tDT NN VBD RB VB DT NN .\nAn earthquake in late March killed more than 900 people on Nias .\tDT NN IN JJ NNP VBD JJR IN CD NNS IN NNP .\nBoth Sumatra and Nias have experienced countless earthquakes since a massive tsunami-producing quake on December 26 .\tDT NNP CC NNP VBP VBN JJ NNS IN DT JJ JJ NN IN NNP CD .\nThe latest official death toll from that tragedy stands at some 1,76,000 people killed - 1,28,000 of them in Indonesia .\tDT JJS NN NN NN IN DT NN VBZ IN DT CD NNS VBN IN CD IN PRP IN NNP .\nNearly 50,000 people are still listed as missing , but most of them are feared dead .\tRB CD NNS VBP RB VBN IN VBG , CC JJS IN PRP VBP VBN JJ .\nThe U.S. rap star Snoop Dogg and five of his associates have been arrested in Britain after a disturbance at London 's Heathrow Airport .\tDT NNP NN NN NNP NNP CC CD IN PRP$ NNS VBP VBN VBN IN NNP IN DT NN IN NNP POS NNP NNP .\nPolice told British media that the musician , who was born with the name Calvin Broadus , and members of his entourage were being held on charges of ' violent disorder and affray . '\tNNS VBD JJ NNS IN DT NN , WP VBD VBN IN DT NN NNP NNP , CC NNS IN PRP$ NN VBD VBG VBN IN NNS IN `` JJ NN CC NN . ``\nThe group was waiting for a flight to South Africa , where Snoop Dogg was to perform in a concert Thursday , when it was denied access to a first-class lounge at the airport .\tDT NN VBD VBG IN DT NN TO NNP NNP , WRB NNP NNP VBD TO VB IN DT NN NNP , WRB PRP VBD VBN NN TO DT JJ NN IN DT NN .\nPolice said members of the group later threw bottles of whisky in a duty-free store and scuffled with police .\tNNS VBD NNS IN DT NN RB VBD NNS IN NN IN DT JJ NN CC VBD IN NN .\nSnoop Dogg is a former member of a street gang the Crips , from Southern California , and many of his songs reflect the gritty life on the streets .\tNNP NNP VBZ DT JJ NN IN DT NN NN DT NNS , IN NNP NNP , CC NN IN PRP$ NNS VBP DT JJ NN IN DT NNS .\nAfghan President Hamid Karzai says he has fired two ' high-ranking ' Afghan officials who were spying for other countries , and warns he would not spare anyone who engages in such activity .\tJJ NNP NNP NNP VBZ PRP VBZ VBN CD `` JJ `` JJ NNS WP VBD VBG IN JJ NNS , CC VBZ PRP MD RB VB DT WP VBZ IN JJ NN .\nMr. Karzai made the disclosure at a lunch meeting with newly sworn-in parliament members , and did not name the dismissed officials nor indicate when he took the action He also did not name the other countries involved .\tNNP NNP VBD DT NN IN DT NN NN IN RB JJ NN NNS , CC VBD RB VB DT VBN NNS CC VBP WRB PRP VBD DT NN PRP RB VBD RB VB DT JJ NNS VBN .\nMr. Karzai said he had strong evidence against the two officials .\tNNP NNP VBD PRP VBD JJ NN IN DT CD NNS .\nBut he said even if he had minor evidence , he would have punished them .\tCC PRP VBD RB IN PRP VBD JJ NN , PRP MD VB VBN PRP .\nHe said anyone found spying for foreign countries will be shown on television , and put on trial .\tPRP VBD DT VBD VBG IN JJ NNS MD VB VBN IN NN , CC VBD IN NN .\nMr. Karzai has led Afghanistan since the Taleban were ousted in late 2001 .\tNNP NNP VBZ VBN NNP IN DT NNP VBD VBN IN JJ CD .\nHe won a presidential election in October 2004 .\tPRP VBD DT JJ NN IN NNP CD .\nAnd now the Taleban are waging an insurgency against his administration .\tCC RB DT NNP VBP VBG DT NN IN PRP$ NN .\nFor the last four weeks a team led by former UN Secretary-General Kofi Annan has been trying to broker a deal between the Kenyan government of President Mwai Kibaki and the opposition led by Raila Odinga .\tIN DT JJ CD NNS DT NN VBN IN JJ NNP NNP NNP NNP VBZ VBN VBG TO NN DT NN IN DT JJ NN IN NNP NNP NNP CC DT NN VBN IN NNP NNP .\nThe negotiations have concentrated on a power sharing agreement and a transitional arrangement leading to new elections .\tDT NNS VBP VBN IN DT NN NN NN CC DT JJ NN VBG TO JJ NNS .\nA recent report by the international crisis group says three complimentary sets of issues must be addressed to finalize a detailed power sharing agreement .\tDT JJ NN IN DT JJ NN NN VBZ CD JJ NNS IN NNS MD VB VBN TO VB DT JJ NN NN NN .\nFrancois Grignon is director of the Africa program of the ICG .\tNNP NNP VBZ NN IN DT NNP NN IN DT NNP .\nIn a telephone interview to discuss the issues at stake , he told VOA reporter Akwei Thompson the opposition would demonstrate a stronger political will to tackle the task of legal and constitutional reform needed during the transition period because ... ' the electoral dispute left them out , the losers ... . '\tIN DT NN NN TO VB DT NNS IN NN , PRP VBD NNP NN NNP NNP DT NN MD VB DT JJR JJ NN TO VB DT NN IN JJ CC JJ NN VBN IN DT NN NN IN , `` DT JJ NN VBD PRP RP , DT NNS , . ``\nPresident Bush has signed legislation that will require screening of all air and sea cargo , and will provide more money to cities deemed to be at high risk of a terrorist attack .\tNNP NNP VBZ VBN NN WDT MD VB NN IN DT NN CC NN NN , CC MD VB JJR NN TO NNS VBN TO VB IN JJ NN IN DT JJ NN .\nAfter signing the bill Friday and meeting with his advisers on counter-terrorism , Mr. Bush said his homeland security and counter-terrorism teams are doing everything they can to protect the country from what he called a ' dangerous enemy . '\tIN VBG DT NN NNP CC NN IN PRP$ NNS IN NN , NNP NNP VBD PRP$ NN NN CC NN NNS VBP VBG DT PRP MD TO VB DT NN IN WP PRP VBD DT `` JJ NN . ``\nThe new measures carry out some recommendations made by the independent commission that investigated the September 11 , 2001 attacks on the United States .\tDT JJ NNS VBP RP DT NNS VBN IN DT JJ NN WDT VBD DT NNP CD , CD NNS IN DT NNP NNPS .\nThose include a grant of $ 4 billion to be given to high-risk cities to upgrade transit security .\tDT VBP DT NN IN $ CD CD TO VB VBN TO JJ NNS TO VB NN NN .\nThey also mandate screening of all U.S.-bound cargo on planes and ships within the next five years .\tPRP RB VB NN IN DT JJ NN IN NNS CC NNS IN DT JJ CD NNS .\nBurmese democracy advocate Aung San Suu Kyi is calling on citizens in her country to work toward national reconciliation in the new year .\tJJ NN NN NNP NNP NNP NNP VBZ VBG IN NNS IN PRP$ NN TO VB IN JJ NN IN DT JJ NN .\nIn a statement Friday , she asked the Burmese people to ' struggle together with new strengths , new force and new words ' in 2011 .\tIN DT NN NNP , PRP VBD DT JJ NNS TO `` NN RB IN JJ NNS , JJ NN CC JJ NNS `` IN CD .\nThe 65-year-old advocate for democratic reforms in Burma was released after more than seven years of house arrest on November 13 .\tDT JJ NN IN JJ NNS IN NNP VBD VBN IN JJR IN CD NNS IN NN NN IN NNP CD .\nThat was just days after the country 's military rulers claimed an overwhelming victory in Burma 's widely criticized first election in two decades .\tDT VBD RB NNS IN DT NN POS JJ NNS VBD DT JJ NN IN NNP POS RB VBN JJ NN IN CD NNS .\nShe said in the statement that Burmese people need to establish political and social networks to achieve ' national reconciliation as well as a truly united spirit . '\tPRP VBD IN DT NN IN JJ NNS VBP TO VB JJ CC JJ NNS TO VB `` JJ NN RB RB IN DT RB JJ NN . ``\nThe United States on Thursday again called for Burma 's leaders to free the more than 2,200 political prisoners in the country and engage in talks to promote democracy .\tDT NNP NNPS IN NNP RB VBD IN NNP POS NNS TO VB DT JJR IN CD JJ NNS IN DT NN CC VB IN NNS TO VB NN .\nFormer U.S. President Bill Clinton has assembled world leaders , activists and academics in New York to address the issues of poverty , global warning and conflict .\tJJ NNP NNP NNP NNP VBZ VBN NN NNS , NNS CC NNS IN NNP NNP TO VB DT NNS IN NN , JJ NN CC NN .\nOpening Thursday , the Clinton Global Initiative 's conference coincides with the Millennium summit of the United Nations General Assembly .\tVBG NNP , DT NNP NNP NNP POS NN NNS IN DT NNP NN IN DT NNP NNP NNP NNP .\nMr. Clinton says the focus of the three-day conference is to secure concrete pledges from leaders to address significant problems , not to simply talk about them .\tNNP NNP VBZ DT NN IN DT JJ NN VBZ TO VB JJ NNS IN NNS TO VB JJ NNS , RB TO RB VB IN PRP .\nOrganizers say the conference is different from other forums because participants are required to pledge to address issues in concrete ways and to report back on their progress .\tNNS VBP DT NN VBZ JJ IN JJ NNS IN NNS VBP VBN TO NN TO VB NNS IN JJ NNS CC TO VB RB IN PRP$ NN .\nExpected attendees or speakers include British Prime Minister Tony Blair , U.N. Secretary General Kofi Annan and Israel 's Deputy Prime Minister Shimon Peres .\tVBN NNS CC NNS VBP JJ NNP NNP NNP NNP , NNP NNP NNP NNP NNP CC NNP POS NNP NNP NNP NNP NNP .\nPeruvian election officials say the narrow gap between two candidates vying for the second spot on the ballot for the country 's run-off presidential election has tightened further .\tJJ NN NNS VBP DT JJ NN IN CD NNS VBG IN DT JJ NN IN DT NN IN DT NN POS JJ JJ NN VBZ VBN RB .\nOfficials said Sunday former center-left president Alan Garcia leads pro-business congresswoman Lourdes Flores by less than 96,000 votes , with nearly 90 percent of the votes counted .\tNNS VBD NNP JJ NN NN NNP NNP VBZ JJ NN NNP NNP IN JJR IN CD NNS , IN RB CD NN IN DT NNS VBN .\nGarcia led Flores by nearly 1,10,000 votes on Saturday .\tNNP VBD NNP IN RB CD NNS IN NNP .\nThe surge by Flores is attributed to heavy support among Peruvians living abroad whose votes are apparently starting to impact the election tally .\tDT NN IN NNP VBZ VBN TO JJ NN IN NNS VBG RB WP$ NNS VBP RB VBG TO VB DT NN RB .\nSince no candidate received half of the vote in the April 9 election , a presidential run-off will be held 30 days after the final results are announced .\tIN DT NN VBD NN IN DT NN IN DT NNP CD NN , DT JJ NN MD VB VBN CD NNS IN DT JJ NNS VBP VBN .\nEither Garcia or Flores will take on nationalist Ollanta Humala , who took 31 percent of the vote .\tCC NNP CC NNP MD VB RP NN NNP NNP , WP VBD CD NN IN DT NN .\nChilean authorities have freed on bail the wife and four adult children of former dictator Augusto Pinochet , a day after they were detained on tax evasion charges .\tJJ NNS VBP VBN IN NN DT NN CC CD JJ NNS IN JJ NN NNP NNP , DT NN IN PRP VBD VBN IN NN NN NNS .\nLucia Hiriart and her children were arrested Monday as part of an investigation into millions of dollars kept in bank accounts abroad .\tNNP NNP CC PRP$ NNS VBD VBN NNP IN NN IN DT NN IN NNS IN NNS VBN IN NN NNS RB .\nA fifth child , daughter Lucia , is also charged , but her whereabouts are unknown .\tDT JJ NN , NN NNP , VBZ RB VBN , CC PRP$ NNS VBP JJ .\nIf located , she will be prohibited from leaving the country .\tIN VBN , PRP MD VB VBN IN VBG DT NN .\nGeneral Pinochet has been indicted for tax fraud for allegedly hiding $ 27 million in foreign bank accounts .\tNNP NNP VBZ VBN VBN IN NN NN IN RB VBG $ CD CD IN JJ NN NNS .\nThe former dictator also faces human rights charges related to his rule in the mid-1970s .\tDT JJ NN RB VBZ JJ NNS NNS VBN TO PRP$ NN IN DT NNS .\nHis lawyers say he is not healthy enough to stand trial , but court-ordered doctors say he is fit enough to do so .\tPRP$ NNS VBP PRP VBZ RB JJ RB TO VB NN , CC JJ NNS VBP PRP VBZ JJ RB TO VB RB .\nRebel sources in Mexico say a female leader of the Zapatista rebel movement has died .\tNN NNS IN NNP VBP DT JJ NN IN DT NNP NN NN VBZ VBN .\nZapatista leader Subcomandante Marcos Friday announced the death of Comandante Ramona , saying Mexico had lost a fighter and the Zapatistas had lost a piece of their heart .\tNNP NN NNP NNP NNP VBD DT NN IN NNP NNP , VBG NNP VBD VBN DT NN CC DT NNP VBD VBN DT NN IN PRP$ NN .\nThe announcement came during a stop in Chiapas , six days into the leader 's nationwide tour .\tDT NN VBD IN DT NN IN NNP , CD NNS IN DT NN POS JJ NN .\nThe nature of Comandante Ramona 's death was not immediately clear , but it was rumored that she had cancer or a kidney disease .\tDT NN IN NNP NNP POS NN VBD RB RB JJ , CC PRP VBD VBN IN PRP VBD NN CC DT NN NN .\nShe had once received a kidney transplant .\tPRP VBD RB VBN DT NN NN .\nThe mysterious female leader was a Tzotzil Indian and a promoter of women 's rights .\tDT JJ JJ NN VBD DT NNP NN CC DT NN IN NNS POS NNS .\nShe was a longtime member of the Zapatista movement and appeared in public wearing a black ski mask .\tPRP VBD DT JJ NN IN DT NNP NN CC VBD IN JJ VBG DT JJ NN NN .\nOn January 1 , Subcomandante Marcos emerged from his jungle hideout to begin a six-month nationwide tour in a bid to influence this year 's presidential elections .\tIN NNP CD , NNP NNP VBD IN PRP$ NN NN TO VB DT JJ JJ NN IN DT NN TO VB DT NN POS JJ NNS .\nRepresentatives of the Washington-based Council on American-Islamic Relations have appealed for the release of kidnapped American journalist Jill Carroll .\tNNS IN DT JJ NNP IN NNP NNPS VBP VBN IN DT NN IN VBN JJ NN NNP NNP .\nIn Baghdad Saturday , an official with the influential Islamic group called on Carroll 's abductors to release her unharmed .\tIN NNP NNP , DT NN IN DT JJ NNP NN VBD IN NNP POS NNS TO VB PRP$ JJ .\nIn an earlier statement , the group said the 28-year-old journalist has a well-documented record of objective reporting and respect for both the Iraqi people and Arab-Islamic culture .\tIN DT JJR NN , DT NN VBD DT JJ NN VBZ DT JJ NN IN JJ NN CC NN IN DT DT JJ NNS CC JJ NN .\nThere still is no word on the journalist 's fate , following a threat by her kidnappers to execute her Friday unless all eight female detainees in American custody in Iraq were released .\tEX RB VBZ DT NN IN DT NN POS NN , VBG DT NN IN PRP$ NNS TO VB PRP$ NNP IN DT CD JJ NNS IN JJ NN IN NNP VBD VBN .\nMeanwhile , a militant group has kidnapped the son of a senior Iraqi Defense Ministry official .\tRB , DT JJ NN VBZ VBN DT NN IN DT JJ JJ NNP NNP NN .\nIn a videotape shown on al-Arabiya ( Saturday ) , kidnappers threatened to kill the son of Brigadier-General Sabah Abd al-Karim unless Iraqi security forces stop cooperating with U.S.-led coalition troops in Iraq .\tIN DT NN VBN IN NNP LRB NNP RRB , NNS VBD TO VB DT NN IN JJ NNP NNP NNP IN JJ NN NNS VBP VBG IN JJ NN NNS IN NNP .\nLeading Muslim groups attending an anti-terrorism conference in northern India have denounced terrorism as ' un-Islamic . '\tVBG NN NNS VBG DT JJ NN IN JJ NNP VBP VBN NN IN `` JJ . ``\nThe declaration was made by thousands of scholars and clerics Monday at the country 's top Islamic seminary - the 150-year-old Darul-Uloom Deoband in Uttar Pradesh .\tDT NN VBD VBN IN NNS IN NNS CC NNS NNP IN DT NN POS JJ NNP JJ IN DT JJ NN NN IN NNP NNP .\nTheir statement said any terrorist activity targeting innocent people contradicts Islam 's concept of peace .\tPRP$ NN VBD DT JJ NN VBG JJ NNS VBZ NNP POS NN IN NN .\nIt described Islam as a religion of mercy , and it condemned all kinds of oppression , violence and terrorism .\tPRP VBD NNP IN DT NN IN NN , CC PRP VBD DT NNS IN NN , NN CC NN .\nHowever , the statement also called on the Indian government to ensure that members of the Muslim community are not harassed .\tRB , DT NN RB VBD IN DT JJ NN TO VB IN NNS IN DT NNP NN VBP RB VBN .\nIt said that whenever there is a terrorist attack , attempts are made to link the attack to Muslims who have studied in madrassas or religious schools .\tPRP VBD IN WRB EX VBZ DT JJ NN , NNS VBP VBN TO VB DT NN TO NNS WP VBP VBN IN NNS CC JJ NNS .\nThe declaration also said many innocent Muslims are spending their lives behind bars , having been falsely accused of involvement in acts of terror .\tDT NN RB VBD JJ JJ NNS VBP VBG PRP$ NNS IN NNS , VBG VBN RB VBN IN NN IN NNS IN NN .\nMicrosoft founder Bill Gates and the government of Norway have pledged more than $ 1 billion for a campaign to vaccinate most of the world 's poorest children .\tNNP NN NNP NNP CC DT NN IN NNP VBP VBN JJR IN $ CD CD IN DT NN TO VB JJS IN DT NN POS JJS NNS .\nDonors say they hope the $ 750 million grant from the Bill and Melinda Gates Foundation and a pledge from Norway for $ 290 million spurs other foundations and governments to invest in The Global Alliance for Vaccines and Immunization .\tNNS VBP PRP VBP DT $ CD CD NN IN DT NNP CC NNP NNP NNP CC DT NN IN NNP IN $ CD CD NNS JJ NNS CC NNS TO VB IN DT NNP NNP IN NNP CC NNP .\nThe alliance hopes to immunize 90 percent of the world 's children by 2015 .\tDT NN VBZ TO VB CD NN IN DT NN POS NNS IN CD .\nThe group estimates it will cost $ 8 to $ 12 billion .\tDT NN VBZ PRP MD VB $ CD TO $ CD CD .\nThe World Health Organization estimates two million people die each year from diseases that are easily prevented by basic vaccines .\tDT NNP NNP NNP VBZ CD CD NNS VBP DT NN IN NNS WDT VBP RB VBN IN JJ NNS .\nSpain has begun a trial for 24 suspected al-Qaida members , including three accused of helping plan the September 11 , 2001 terrorist attacks in the United States .\tNNP VBZ VBN DT NN IN CD JJ NNP NNS , VBG CD VBN IN VBG NN DT NNP CD , CD JJ NNS IN DT NNP NNPS .\nThe defendants appeared in a Madrid court Friday , behind bulletproof glass .\tDT NNS VBD IN DT NNP NN NNP , IN JJ NN .\nMore than 100 armed police are providing security at a remodeled courtroom , specially-built for trials with multiple defendants .\tJJR IN CD JJ NNS VBP VBG NN IN DT JJ NN , NN IN NNS IN JJ NNS .\nAmong the accused is the suspected leader of the Spanish al-Qaida cell - Syrian-born Imad Eddin Barakat Yarkas .\tIN DT VBN VBZ DT JJ NN IN DT JJ NNP NN : JJ NNP NNP NNP NNP .\nHe allegedly organized a meeting of terror suspects in Spain during which details of the September 11 attacks were finalized .\tPRP RB VBD DT NN IN NN NNS IN NNP IN WDT NNS IN DT NNP CD NNS VBD VBN .\nProsecutors are asking that the leader of the group be sentenced to more than 60,000 years in prison if convicted .\tNNS VBP VBG IN DT NN IN DT NN VB VBN TO JJR IN CD NNS IN NN IN VBN .\nEuropean Union observers are preparing to monitor Palestinian parliamentary elections in the West Bank and Gaza Strip , despite recent kidnappings of foreigners .\tNNP NNP NNS VBP VBG TO VB JJ JJ NNS IN DT NNP NNP CC NNP NNP , IN JJ NNS IN NNS .\nChief EU observer Veronique De Keyser says her group is making regular security assessments and taking all necessary precautions .\tNNP NNP NNP NNP NNP NNP VBZ PRP$ NN VBZ VBG JJ NN NNS CC VBG DT JJ NNS .\nShe says the EU 's commitment must be met , adding that it would a ' bad sign ' not to send monitors to Gaza , where several foreign aid workers were kidnapped and released unharmed in recent weeks .\tPRP VBZ DT NNP POS NN MD VB VBN , VBG IN PRP MD DT `` JJ NN `` RB TO VB NNS TO NNP , WRB JJ JJ NN NNS VBD VBN CC VBN JJ IN JJ NNS .\nMs. De Keyser spoke to reporters in Jerusalem Monday as more than 30 EU observers headed to Palestinian cities and towns .\tNNP NNP NNP VBD TO NNS IN NNP NNP IN JJR IN CD NNP NNS VBD TO JJ NNS CC NNS .\nCampaigning for the January 25 elections begins Tuesday .\tVBG IN DT NNP CD NNS VBZ NNP .\nBut several senior Palestinian leaders are calling for a delay in the vote , citing dire law-and-order conditions and Israel 's refusal to permit voting in East Jerusalem .\tCC JJ JJ JJ NNS VBP VBG IN DT NN IN DT NN , VBG JJ NN NNS CC NNP POS NN TO VB NN IN NNP NNP .\nAn international delegation that monitored the elections in Liberia is calling on all concerned to act responsibly to ensure the post-war peace process stays on track .\tDT JJ NN WDT VBD DT NNS IN NNP VBZ VBG IN DT VBN TO VB RB TO VB DT JJ NN NN VBZ IN NN .\nThe delegation , led by former U.S. President Jimmy Carter and former Benin President Nicephore Soglo , also urged the international community to continue its assistance .\tDT NN , VBN IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP , RB VBD DT JJ NN TO VB PRP$ NN .\nIt added that extensive voter education will be needed if a runoff election is required .\tPRP VBD IN JJ NN NN MD VB VBN IN DT NN NN VBZ VBN .\nThe delegation said a major problem in Tuesday 's poll was widespread lack of voter understanding of the process of casting ballots .\tDT NN VBD DT JJ NN IN NNP POS NN VBD JJ NN IN NN NN IN DT NN IN VBG NNS .\nIt also cited voter ignorance of the nature of choice among the candidates .\tPRP RB VBD NN NN IN DT NN IN NN IN DT NNS .\nThe joint delegation from the former U.S. president 's Carter Center and the National Democratic Institute includes representatives from 14 nations in Africa , Europe and North America .\tDT JJ NN IN DT JJ NNP NN POS NNP NNP CC DT NNP NNP NNP VBZ NNS IN CD NNS IN NNP , NNP CC NNP NNP .\nAfghan President Hamid Karzai has again called for reconciliation talks with Taleban militants .\tJJ NNP NNP NNP VBZ RB VBN IN NN NNS IN NNP NNS .\nIn remarks to people gathered at the main Shi'ite mosque in Kabul Monday , Mr. Karzai referred to what he called ' the enemy who wants our destruction and sheds our blood . '\tIN NNS TO NNS VBN IN DT JJ NNP NN IN NNP NNP , NNP NNP VBD TO WP PRP VBD `` DT NN WP VBZ PRP$ NN CC VBZ PRP$ NN . ``\nHe did not refer to the Taleban by name .\tPRP VBD RB VB TO DT NNP IN NN .\nThe Afghan leader has made similar offers of talks before , but Taleban leaders have rebuffed them .\tDT JJ NN VBZ VBN JJ NNS IN NNS IN , CC NNP NNS VBP VBN PRP .\nLast year saw a dramatic increase in Taleban militant attacks against U.S. , NATO and Afghan forces in Afghanistan .\tJJ NN VBD DT JJ NN IN NNP JJ NNS IN NNP , NNP CC JJ NNS IN NNP .\nAt least four thousand people were killed in insurgency-related violence .\tIN JJS CD CD NNS VBD VBN IN JJ NN .\nU.S. and NATO military leaders in the country are warning of a new Taleban offensive in the coming months , as the snows thaw and mountain roads become more accessible .\tNNP CC NNP JJ NNS IN DT NN VBP VBG IN DT JJ NNP NN IN DT JJ NNS , IN DT NNS NN CC NN NNS VBP RBR JJ .\nFrench police detained nine people Monday in the Paris region and nearby Normandy in a crackdown on a group suspected of planning terror attacks in France .\tJJ NNS VBD CD NNS NNP IN DT NNP NN CC JJ NN IN DT NN IN DT NN VBN IN VBG NN NNS IN NNP .\nAt least seven of the suspects are believed to have links to an Algerian insurgency movement , the Salafist Group for Call and Combat , known as the GSPC , which has declared allegiance to al-Qaida .\tIN JJS CD IN DT NNS VBP VBN TO VB NNS TO DT JJ NN NN , DT NNP NNP IN NNP CC NNP , VBN IN DT NNP , WDT VBZ VBN NN TO NNP .\nA detainee is escorted to interrogation by US military guards at Camp X-Ray at Guantanamo Bay US Naval Base\tDT NN VBZ VBN TO NN IN NNP JJ NNS IN NNP NNP IN NNP NNP NNP NNP NNP\nThe Pentagon says seven detainees at the U.S. military prison at Guantanamo Bay , Cuba have been released to their home countries .\tDT NNP VBZ CD NNS IN DT NNP JJ NN IN NNP NNP , NNP VBP VBN VBN TO PRP$ NN NNS .\nA statement said Wednesday that three of the detainees were released after a tribunal determined that they were not enemy combatants .\tDT NN VBD NNP IN CD IN DT NNS VBD VBN IN DT NN VBN IN PRP VBD RB NN NNS .\nOne was sent back to Sudan , another to Saudi Arabia and the third to Jordan .\tCD VBD VBN RB TO NNP , DT TO NNP NNP CC DT JJ TO NNP .\nFour others cleared under different types of administrative review were released to Saudi Arabia and Afghanistan .\tCD NNS VBN IN JJ NNS IN JJ NN VBD VBN TO NNP NNP CC NNP .\nAn eighth detainee , a Moroccan , has been transferred to Spain , where he is accused of having links to an al-Qaida cell .\tDT JJ NN , DT NN , VBZ VBN VBN TO NNP , WRB PRP VBZ VBN IN VBG NNS TO DT NNP NN .\nYemen is a low income country that is highly dependent on declining oil resources for revenue .\tNNP VBZ DT JJ NN NN WDT VBZ RB JJ IN VBG NN NNS IN NN .\nPetroleum accounts for roughly 25 % of GDP and 70 % of government revenue .\tNN NNS IN RB CD NN IN NN CC CD NN IN NN NN .\nYemen has tried to counter the effects of its declining oil resources by diversifying its economy through an economic reform program initiated in 2006 that is designed to bolster non-oil sectors of the economy and foreign investment .\tNNP VBZ VBN TO VB DT NNS IN PRP$ VBG NN NNS IN VBG PRP$ NN IN DT JJ NN NN VBN IN CD WDT VBZ VBN TO VB JJ NNS IN DT NN CC JJ NN .\nIn October 2009 , Yemen exported its first liquefied natural gas as part of this diversification effort .\tIN NNP CD , NNP VBD PRP$ JJ JJ JJ NN IN NN IN DT NN NN .\nIn January 2010 , the international community established the Friends of Yemen group that aims to support Yemen 's efforts towards economic and political reform , and in August 2010 the IMF approved a three-year $ 370 million program to further this effort .\tIN NNP CD , DT JJ NN VBD DT NNS IN NNP NN WDT VBZ TO VB NNP POS NNS IN JJ CC JJ NN , CC IN NNP CD DT NNP VBD DT JJ $ CD CD NN TO RBR DT NN .\nDespite these ambitious endeavors , Yemen continues to face difficult long term challenges , including declining water resources and a high population growth rate .\tIN DT JJ NNS , NNP VBZ TO VB JJ JJ NN NNS , VBG VBG NN NNS CC DT JJ NN NN NN .\nSingapore was founded as a British trading colony in 1819 .\tNNP VBD VBN IN DT JJ NN NN IN CD .\nIt joined the Malaysian Federation in 1963 but separated two years later and became independent .\tPRP VBD DT NNP NNP IN CD CC VBD CD NNS RB CC VBD JJ .\nSingapore subsequently became one of the world 's most prosperous countries with strong international trading links ( its port is one of the world 's busiest in terms of tonnage handled ) and with per capita GDP equal to that of the leading nations of Western Europe .\tNNP RB VBD CD IN DT NN POS RBS JJ NNS IN JJ JJ NN NNS LRB PRP$ NN VBZ CD IN DT NN POS JJS IN NNS IN NN VBN RRB CC IN IN NN NN JJ TO DT IN DT VBG NNS IN NNP NNP .\nRuled by the Al Thani family since the mid-1800s , Qatar transformed itself from a poor British protectorate noted mainly for pearling into an independent state with significant oil and natural gas revenues .\tVBN IN DT NNP NNP NN IN DT NNS , NNP VBD PRP IN DT JJ JJ NN VBN RB IN VBG IN DT JJ NN IN JJ NN CC JJ NN NNS .\nDuring the late 1980s and early 1990s , the Qatari economy was crippled by a continuous siphoning off of petroleum revenues by the Amir , who had ruled the country since 1972 .\tIN DT JJ NNS CC JJ NNS , DT NNP NN VBD VBN IN DT JJ NN IN IN NN NNS IN DT NNP , WP VBD VBN DT NN IN CD .\nHis son , the current Amir HAMAD bin Khalifa Al Thani , overthrew him in a bloodless coup in 1995 .\tPRP$ NN , DT JJ NNP NNP NNP NNP NNP NNP , VBD PRP IN DT JJ NN IN CD .\nIn 2001 , Qatar resolved its longstanding border disputes with both Bahrain and Saudi Arabia .\tIN CD , NNP VBD PRP$ JJ NN NNS IN DT NNP CC NNP NNP .\nAs of 2007 , oil and natural gas revenues had enabled Qatar to attain the second-highest per capita income in the world .\tIN IN CD , NN CC JJ NN NNS VBD VBN NNP TO VB DT NN IN NN NN IN DT NN .\nSubsistence agriculture , together with forestry , remains the backbone of the economy of the Central African Republic ( CAR ) , with about 60 % of the population living in outlying areas .\tNNP NN , RB IN NN , VBZ DT NN IN DT NN IN DT NNP NNP NNP LRB NNP RRB , IN RB CD NN IN DT NN NN IN JJ NNS .\nThe agricultural sector generates more than half of GDP .\tDT JJ NN VBZ JJR IN NN IN NN .\nTimber has accounted for about 16 % of export earnings and the diamond industry , for 40 % .\tNNP VBZ VBN IN RB CD NN IN NN NNS CC DT NN NN , IN CD NN .\nImportant constraints to economic development include the CAR 's landlocked position , a poor transportation system , a largely unskilled work force , and a legacy of misdirected macroeconomic policies .\tJJ NNS TO JJ NN VBP DT NNP POS JJ NN , DT JJ NN NN , DT RB JJ NN NN , CC DT NN IN VBN JJ NNS .\nFactional fighting between the government and its opponents remains a drag on economic revitalization .\tJJ NN IN DT NN CC PRP$ NNS VBZ DT NN IN JJ NN .\nDistribution of income is extraordinarily unequal .\tNN IN NN VBZ RB JJ .\nGrants from France and the international community can only partially meet humanitarian needs .\tNNS IN NNP CC DT JJ NN MD RB RB VB JJ NNS .\nA PEASANT found an Eagle captured in a trap , and much admiring the bird , set him free .\tDT NN VBD DT NNP VBD IN DT NN , CC RB VBG DT NN , VBD PRP JJ .\nThe Eagle did not prove ungrateful to his deliverer , for seeing the Peasant sitting under a wall which was not safe , he flew toward him and with his talons snatched a bundle from his head .\tDT NNP VBD RB VB JJ TO PRP$ NN , IN VBG DT NN VBG IN DT NN WDT VBD RB JJ , PRP VBD IN PRP CC IN PRP$ NNS VBD DT NN IN PRP$ NN .\nWhen the Peasant rose in pursuit , the Eagle let the bundle fall again .\tWRB DT NN VBD IN NN , DT NNP VB DT NN NN RB .\nTaking it up , the man returned to the same place , to find that the wall under which he had been sitting had fallen to pieces ; and he marveled at the service rendered him by the Eagle .\tVBG PRP RP , DT NN VBD TO DT JJ NN , TO VB IN DT NN IN WDT PRP VBD VBN VBG VBD VBN TO NNS ; CC PRP VBD IN DT NN VBD PRP IN DT NNP .\nTHE ASS and the Fox , having entered into partnership together for their mutual protection , went out into the forest to hunt .\tDT NN CC DT NN , VBG VBN IN NN RB IN PRP$ JJ NN , VBD RB IN DT NN TO VB .\nThey had not proceeded far when they met a Lion .\tPRP VBD RB VBN RB WRB PRP VBD DT NN .\nThe Fox , seeing imminent danger , approached the Lion and promised to contrive for him the capture of the Ass if the Lion would pledge his word not to harm the Fox .\tDT NN , VBG JJ NN , VBD DT NN CC VBD TO VB IN PRP DT NN IN DT NN IN DT NN MD VB PRP$ NN RB TO VB DT NN .\nThen , upon assuring the Ass that he would not be injured , the Fox led him to a deep pit and arranged that he should fall into it .\tRB , IN VBG DT NN IN PRP MD RB VB VBN , DT NN VBD PRP TO DT JJ NN CC VBD IN PRP MD VB IN PRP .\nThe Lion , seeing that the Ass was secured , immediately clutched the Fox , and attacked the Ass at his leisure .\tDT NN , VBG IN DT NNP VBD VBN , RB VBD DT NN , CC VBD DT NN IN PRP$ NN .\nNever trust your enemy\tRB VB PRP$ NN\nOld mathematicians never die ; they just lose some of their functions .\tJJ NNS RB VBP ; PRP RB VBP DT IN PRP$ NNS .\nNostalgia is like a grammar lesson .\tNN VBZ IN DT NN NN .\nYou find the present tense and the past perfect .\tPRP VBP DT JJ NN CC DT JJ NN .\nMy grandfather worked in a blacksmith shop when he was a boy , and he used to tell me how he had toughened himself up so he could stand the rigors of blacksmithing .\tPRP$ NN VBD IN DT NN NN WRB PRP VBD DT NN , CC PRP VBD TO VB PRP WRB PRP VBD VBN PRP RP IN PRP MD VB DT NNS IN VBG .\nHe said he would stand outside behind the house and , with a 5 pound potato sack in each hand , extend his arms straight out to his sides and hold them there as long as he could .\tPRP VBD PRP MD VB IN IN DT NN CC , IN DT CD NN NN NN IN DT NN , VB PRP$ NNS RB IN TO PRP$ NNS CC VB PRP EX RB RB IN PRP MD .\nAfter a while he tried 10 pound potato sacks , then 20 pound potato sacks and finally he got to where he could lift a 50 pound potato sack in each hand and hold his arms straight out for five full minutes ! Eventually , he even started putting potatoes in the sacks .\tIN DT IN PRP VBD CD NN NN NNS , RB CD NN NN NNS CC RB PRP VBD TO WRB PRP MD VB DT CD NN NN NN IN DT NN CC VB PRP$ NNS RB IN IN CD JJ NNS . RB , PRP RB VBD VBG NNS IN DT NNS .\nAdvance copies of the United Nations ' internal audit of its oil-for-food program reportedly show that U.N. officials wasted money and overlooked massive overcharges by contractors .\tNNP NNS IN DT NNP NNPS POS JJ NN IN PRP$ NN NN RB VBP IN NNP NNS VBD NN CC VBD JJ NNS IN NNS .\nNews reports published Sunday in the United States say the audits , part of an extensive independent report to be released on Monday , criticize a former top aide to Secretary-General Kofi Annan , Benon Sevan , and the U.N. office he headed that ran the oil-for-food program .\tNNP VBZ VBN NNP IN DT NNP NNPS VBP DT NN , NN IN DT JJ JJ NN TO VB VBN IN NNP , VB DT JJ JJ NN TO JJ NNP NNP , NNP NNP , CC DT NNP NN PRP VBD IN VBD DT NN NN .\nHowever , the advance portions of the audit described by The New York Times and Associated Press do not reveal any systematic corruption or bribery .\tRB , DT NN NNS IN DT NN VBN IN DT NNP NNP NNP CC NNP NNP VBP RB VB DT JJ NN CC NN .\nMr. Annan named an independent panel to investigate the program following allegations that billions of dollars were diverted by some members of the former Saddam Hussein regime and other corrupt officials .\tNNP NNP VBD DT JJ NN TO VB DT NN VBG NNS IN NNS IN NNS VBD VBN IN DT NNS IN DT JJ NNP NNP NN CC JJ JJ NNS .\nThe program was created in 1996 to help the people of Iraq after the first Gulf War .\tDT NN VBD VBN IN CD TO VB DT NNS IN NNP IN DT JJ NNP NNP .\nFormer U.S. central bank chief Paul Volcker heads the independent commission .\tJJ NNP JJ NN NN NNP NNP VBZ DT JJ NN .\nHe said last week that no clear-cut evidence of wrongdoing has been found .\tPRP VBD JJ NN IN DT JJ NN IN NN VBZ VBN VBN .\nSri Lanka 's military says it has launched airstrikes on rebel sites in northern parts of the country , following rebel artillery attacks .\tNNP NNP POS NN VBZ PRP VBZ VBN NNS IN NN NNS IN JJ NNS IN DT NN , VBG JJ NN NNS .\nOfficials Saturday said at least 11 soldiers were killed and 53 others were wounded in the fighting on the Jaffna peninsula .\tNNS NNP VBD IN JJS CD NNS VBD VBN CC CD NNS VBD VBN IN DT NN IN DT NNP NN .\nThey said Tamil Tiger rebels provoked the fighting by opening fire with artillery strikes against Sri Lankan troops .\tPRP VBD NNP NNP NNS VBD DT NN IN VBG NN IN NN NNS IN NNP NNP NNS .\nGovernment officials also said they sent a naval ship to the peninsula to evacuate nearly 800 civilians trapped in the area .\tNN NNS RB VBD PRP VBD DT JJ NN TO DT NN TO VB RB CD NNS VBN IN DT NN .\nThousands of people have been stranded in northern Sri Lanka since rebels launched new attacks last month .\tNNS IN NNS VBP VBN VBN IN JJ NNP NNP IN NNS VBD JJ NNS JJ NN .\nThe Tamil Tiger rebels have been fighting for a separate homeland in the north and east since the early 1980s .\tDT NNP NNP NNS VBP VBN VBG IN DT JJ NN IN DT NN CC NN IN DT JJ NNS .\nTens of thousands of people have died in the violence .\tNNS IN NNS IN NNS VBP VBN IN DT NN .\nThe White House will become a pink house on Thursday , as it is bathed in pink lighting to call attention to the fight against breast cancer .\tDT NNP NNP MD VB DT JJ NN IN NNP , IN PRP VBZ VBN IN JJ NN TO VB NN TO DT NN IN NN NN .\nU.S. President Barack Obama announced on the social networking site Twitter that the executive mansion will be lit in pink Thursday evening in recognition of October as National Breast Cancer Awareness Month .\tNNP NNP NNP NNP VBD IN DT JJ NN NN NNP IN DT NN NN MD VB VBN IN JJ NNP NN IN NN IN NNP IN NNP NNP NNP NNP NNP .\nEarlier this month , Mr. Obama signed a proclamation for breast cancer awareness month .\tRBR DT NN , NNP NNP VBD DT NN IN NN NN NN NN .\nIt is one of numerous public efforts in October in the U.S. aimed at fighting the disease .\tPRP VBZ CD IN JJ JJ NNS IN NNP IN DT NNP VBN IN VBG DT NN .\nLast year , a large pink ribbon was hung outside the White House .\tJJ NN , DT JJ JJ NN VBD VBN IN DT NNP NNP .\nThe American Cancer Society says there are about 40,000 breast cancer deaths annually in the U.S.\tDT NNP NNP NNP VBZ EX VBP IN CD NN NN NNS RB IN DT NNP\nThe World Health Organization says breast cancer claims 5,19,000 lives worldwide each year .\tDT NNP NNP NNP VBZ NN NN VBZ CD NNS JJ DT NN .\nSomeone in the world dies in a traffic accident , on average , every 30 seconds .\tDT IN DT NN VBZ IN DT NN NN , IN NN , DT CD NNS .\nThat is the conclusion of the international group Make Roads Safe , a worldwide effort to make road safety a global priority .\tDT VBZ DT NN IN DT JJ NN VBZ NNP NNP , DT JJ NN TO VB NN NN DT JJ NN .\nOn 31 March 2008 , the United Nations plans to take up the issue of global road safety amid calls for a U.N. conference to tackle the rising toll of road deaths and injuries .\tIN CD NNP CD , DT NNP NNPS VBZ TO VB RP DT NN IN JJ NN NN IN NNS IN DT NNP NN TO VB DT VBG NN IN NN NNS CC NNS .\nVOA 's Tetiana Koprowicz has more on efforts to improve road safety in the U.S.\tNNP POS NNP NNP VBZ RBR IN NNS TO VB NN NN IN DT NNP\nA British diplomat has met again with Palestinian Prime Minister Ismail Haniyeh to discuss the case of kidnapped BBC journalist Alan Johnston .\tDT JJ NN VBZ VBN RB IN JJ NNP NNP NNP NNP TO VB DT NN IN VBN NNP NN NNP NNP .\nBritish consul Richard Makepeace met in Gaza Tuesday with Mr. Haniyeh , of the Islamic militant group Hamas .\tJJ NN NNP NNP VBD IN NNP NNP IN NNP NNP , IN DT NNP JJ NN NNP .\nThe two also held talks on the kidnapping last month despite a British boycott of Palestinian officials from Hamas .\tDT CD RB VBD NNS IN DT NN JJ NN IN DT JJ NN IN JJ NNS IN NNP .\nBritish officials say the talks do not represent a change in British policy , and are only focused on the case of Johnston , who was kidnapped in Gaza on March 12 .\tJJ NNS VBP DT NNS VBP RB VB DT NN IN JJ NN , CC VBP RB VBN IN DT NN IN NNP , WP VBD VBN IN NNP IN NNP CD .\nIt is not clear who the kidnappers are .\tPRP VBZ RB JJ WP DT NNS VBP .\nAn aide to Mr. Haniyeh said the Palestinian government hopes for a resolution of the case soon .\tDT NN TO NNP NNP VBD DT JJ NN NNS IN DT NN IN DT NN RB .\nJohnston was the only Western reporter permanently based in the Gaza Strip at the time of his abduction .\tNNP VBD DT JJ JJ NN RB VBN IN DT NNP NNP IN DT NN IN PRP$ NN .\nThe United States and Israel have agreed to work together on developing a new missile defense system that would counter both long-range ballistic missiles as well as short-range rockets .\tDT NNP NNPS CC NNP VBP VBN TO VB RB IN VBG DT JJ NN NN NN WDT MD VB DT JJ JJ NNS RB RB IN JJ NNS .\nU.S Defense Secretary Robert Gates and his Israeli counterpart , Ehud Barak , agreed during talks Tuesday at the Pentagon to form a committee to work on the proposed system .\tNNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBD IN NNS NNP IN DT NNP TO VB DT NN TO VB IN DT VBN NN .\nA Pentagon spokesman , Geoff Morrell , said Israel wants to be able to counter missile attacks possibly from Iran as well as rockets fired from Palestinian territories .\tDT NNP NN , NNP NNP , VBD NNP VBZ TO VB JJ TO VB NN NNS RB IN NNP RB RB IN NNS VBD IN JJ NNS .\nIsrael has been facing regular rocket fire from Palestinian militants in the Gaza Strip since withdrawing from the territory in 2005 .\tNNP VBZ VBN VBG JJ NN NN IN JJ NNS IN DT NNP NNP IN VBG IN DT NN IN CD .\nVenezuelan President Hugo Chavez says he is ' putting on the brakes ' on his socialist revolution after voters rejected his plans to reform the constitution .\tJJ NNP NNP NNP VBZ PRP VBZ `` VBG IN DT NNS `` IN PRP$ JJ NN IN NNS VBD PRP$ NNS TO VB DT NN .\nMr. Chavez said on his weekly broadcast Sunday it would be a mistake at this time to try to quicken the pace of his plans to turn Venezuela into a socialist haven .\tNNP NNP VBD IN PRP$ JJ NN NNP PRP MD VB DT NN IN DT NN TO VB TO VB DT NN IN PRP$ NNS TO VB NNP IN DT JJ NN .\nHe said he will evaluate the results of the referendum before deciding how to proceed with his pro-socialist plans .\tPRP VBD PRP MD VB DT NNS IN DT NN IN VBG WRB TO VB IN PRP$ JJ NNS .\nHe also said he will focus on regional elections later this year as one way to consolidate Socialist party power .\tPRP RB VBD PRP MD VB IN JJ NNS RB DT NN IN CD NN TO VB JJ NN NN .\nVenezuelan voters last month turned down the constitutional reform package which included making Mr. Chavez president for life .\tJJ NNS JJ NN VBD RP DT JJ NN NN WDT VBD VBG NNP NNP NN IN NN .\nA human rights group says Belarus has launched criminal probes against at least 18 leading opposition figures over their alleged involvement in post-election riots .\tDT JJ NNS NN VBZ NNP VBZ VBN JJ NNS IN IN JJS CD VBG NN NNS IN PRP$ JJ NN IN JJ NNS .\nThe organization Vesna said Wednesday that those accused -- including seven of the nine candidates who ran against the country 's authoritarian leader -- face up to 15 years in prison if convicted .\tDT NN NNP VBD NNP IN DT VBN : VBG CD IN DT CD NNS WP VBD IN DT NN POS JJ NN : VB RP TO CD NNS IN NN IN VBN .\nOverall , Belarusian authorities jailed more than 600 people in the wake of Sunday 's protests against the re-election of President Alexander Lukashenko .\tRB , JJ NNS VBD JJR IN CD NNS IN DT NN IN NNP POS NNS IN DT NN IN NNP NNP NNP .\nIn the election , Mr. Lukashenko won a fourth consecutive term , capturing 80 percent of the vote .\tIN DT NN , NNP NNP VBD DT JJ JJ NN , VBG CD NN IN DT NN .\nNo other candidate won more than three percent .\tDT JJ NN VBD JJR IN CD NN .\nMore than 30,000 demonstrators took to the streets after polls closed to protest what they said was a fraudulent election .\tJJR IN CD NNS VBD TO DT NNS IN NNS VBD TO VB WP PRP VBD VBD DT JJ NN .\nEuropean observers and U.S. officials also have strongly criticized the election process .\tJJ NNS CC NNP NNS RB VBP RB VBN DT NN NN .\nU.S. Secretary of State nominee Condoleezza Rice is facing a second and final day of confirmation hearings Wednesday , after a first day that focused heavily on Iraq and repairing alliances strained by the conflict .\tNNP NNP IN NNP NN NNP NNP VBZ VBG DT JJ CC JJ NN IN NN NNS NNP , IN DT JJ NN WDT VBD RB IN NNP CC VBG NNS VBN IN DT NN .\nThe Senate Foreign Relations Committee is expected to question Ms. Rice for several more hours Wednesday before voting on her nomination to succeed Secretary of State Colin Powell .\tDT NNP NNP NNP NNP VBZ VBN TO VB NNP NNP IN JJ JJR NNS NNP IN VBG IN PRP$ NN TO VB NNP IN NNP NNP NNP .\nA full Senate vote is expected Thursday .\tDT JJ NNP NN VBZ VBN NNP .\nMs. Rice spent more than nine hours testifying Tuesday , handling tough questions about the direction of the war on terror and the Bush administration 's decision to invade Iraq .\tNNP NNP VBD JJR IN CD NNS VBG NNP , VBG JJ NNS IN DT NN IN DT NN IN NN CC DT NNP NN POS NN TO VB NNP .\nShe steadfastly maintained that she believes progress is being made in Iraq , but she declined to give a timetable for the return home of U.S. troops .\tPRP RB VBD IN PRP VBZ NN VBZ VBG VBN IN NNP , CC PRP VBD TO VB DT NN IN DT NN NN IN NNP NNS .\nShe said President Bush 's foreign policy goals in the next four years include ' spreading freedom and democracy ' around the globe , as well as alliance building .\tPRP VBD NNP NNP POS JJ NN NNS IN DT JJ CD NNS VBP `` VBG NN CC NN `` IN DT NN , RB RB IN NN NN .\nAt least 13 people were killed in Indian Kashmir Wednesday in a series of violent incidents involving Indian security forces and militants .\tIN JJS CD NNS VBD VBN IN JJ NNP NNP IN DT NN IN JJ NNS VBG JJ NN NNS CC NNS .\nIndian officials say several gunbattles erupted when police and soldiers raided suspected rebel hideouts in the Udhampur and Poonch districts .\tJJ NNS VBP JJ NNS VBD WRB NNS CC NNS VBD JJ NN NNS IN DT NNP CC NNP NNS .\nThey say seven militants were killed in the clashes , along with two Indian security personnel .\tPRP VBP CD NNS VBD VBN IN DT NNS , IN IN CD JJ NN NNS .\nIn another incident , India 's military says four youths were killed in crossfire as Indian troops battled militants in the Kupwara district of northern Kashmir .\tIN DT NN , NNP POS NN VBZ CD NNS VBD VBN IN NN IN JJ NNS VBD NNS IN DT NNP NN IN JJ NNP .\nThe civilian deaths triggered protests by residents of Kupwara against the security forces .\tDT JJ NNS VBD NNS IN NNS IN NNP IN DT NN NNS .\nIndian Prime Minister Manmohan Singh is to hold talks with Kashmiri political leaders on Saturday to try to stop the violence .\tJJ NN NN NNP NNP VBZ TO VB NNS IN JJ JJ NNS IN NNP TO VB TO VB DT NN .\nBut several prominent Kashmiri separatists have said they will not attend the talks .\tCC JJ JJ JJ NNS VBP VBN PRP MD RB VB DT NNS .\nThe American fast food chain KFC is famous around the world for its fried chicken .\tDT JJ JJ NN NN NNP VBZ JJ IN DT NN IN PRP$ JJ NN .\nKFC stands for Kentucky Fried Chicken and founded by Harlan David Sanders , better know to patrons as Colonel Sanders .\tNNP VBZ IN NNP NNP NNP CC VBN IN NNP NNP NNP , RB VBP TO NNS IN NNP NNP .\nIn Kabul , Afghanistan , another KFC restaurant is doing a brisk business .\tIN NNP , NNP , DT NNP NN VBZ VBG DT JJ NN .\nBut this KFC is short for Kabul Fried Chicken and serves kabobs and pizza alongside the chicken .\tCC DT NNP VBZ JJ IN NNP NNP NNP CC VBZ NNS CC NN IN DT NN .\nRahimgul Sarawan reports from Kabul that while this KFC was inspired by Colonel Sanders , that is where the association ends .\tNNP NNP VBZ IN NNP IN IN DT NNP VBD VBN IN NNP NNP , WDT VBZ WRB DT NN VBZ .\nBrian Allen narrates .\tNNP NNP VBZ .\nIsrael 's government is set to approve a plan that aims to turn the country into a space superpower .\tNNP POS NN VBZ VBN TO VB DT NN WDT VBZ TO VB DT NN IN DT NN NN .\nThe Jerusalem Post reported Friday that Prime Minister Benjamin Netanyahu is expected to approve plans designed to increase sales of locally made space platforms to nearly $ 8 billion a year .\tDT NNP NNP VBD NNP IN NNP NNP NNP NNP VBZ VBN TO VB NNS VBN TO VB NNS IN RB VBN NN NNS TO RB $ CD CD DT NN .\nThe newspaper said the multi-year plan also includes increased spending on space research and development , focusing on mini-satellites as Israel 's primary market .\tDT NN VBD DT JJ NN RB VBZ JJ NN IN NN NN CC NN , VBG IN NNS IN NNP POS JJ NN .\nThe report quotes the head of the Defense Ministry 's Space Division as saying Israel has the capability to carve out at least 5 percent of the international space market , estimated to total $ 250 billion a year .\tDT NN VBZ DT NN IN DT NNP NNP POS NNP NNP IN VBG NNP VBZ DT NN TO VB RP IN JJS CD NN IN DT JJ NN NN , VBN TO VB $ CD CD DT NN .\nThe report said Israel is in talks with several countries and defense companies about the possibility of space collaboration .\tDT NN VBD NNP VBZ IN NNS IN JJ NNS CC NN NNS IN DT NN IN NN NN .\nForeign direct investment in China fell slightly in the first five months of the year .\tJJ JJ NN IN NNP VBD RB IN DT JJ CD NNS IN DT NN .\nThe ministry of commerce reported Monday that foreign direct investment from January to May slipped 0.8 percent from the same period last year , to $ 22.4 billion .\tDT NN IN NN VBD NNP IN JJ JJ NN IN NNP TO NNP VBD CD NN IN DT JJ NN JJ NN , TO $ CD CD .\nContracted investment , which gives an indication of future inflows , grew 14.88 percent in the same period , to $ 64.97 billion .\tVBN NN , WDT VBZ DT NN IN JJ NNS , VBD CD NN IN DT JJ NN , TO $ CD CD .\nAlthough foreign companies continue to build up investments in China , the pace of growth has been slowing .\tIN JJ NNS VBP TO VB RP NNS IN NNP , DT NN IN NN VBZ VBN VBG .\nInvestments soared in late 2003 through 2004 after slowing during the outbreak of severe acute respiratory syndrome in the spring of 2003 .\tNNP VBD IN JJ CD IN CD IN VBG IN DT NN IN JJ JJ JJ NN IN DT NN IN CD .\nThe U.S.-led coalition said in a statement Tuesday that its forces killed 43 militants in southern Afghanistan .\tDT JJ NN VBD IN DT NN NNP IN PRP$ NNS VBN CD NNS IN JJ NNP .\nThe Afghan and U.S.-led troops battled the militants Sunday in Qalat district of Zabul province .\tDT JJ CC JJ NNS VBD DT NNS NNP IN NNP NN IN NNP NN .\nThe statement said a joint patrol was ambushed with sniper fire , machine guns and heavy weapons from militants in multiple locations .\tDT NN VBD DT JJ NN VBD VBN IN NN NN , NN NNS CC JJ NNS IN NNS IN JJ NNS .\nThe coalition said its forces fired back with small arms and rocket propelled grenades .\tDT NN VBD PRP$ NNS VBD RB IN JJ NNS CC NN VBD NNS .\nThey also called in air support .\tPRP RB VBD IN NN NN .\nThe statement said no Afghan or U.S.-led troops were killed or wounded in the attack .\tDT NN VBD DT JJ CC JJ NNS VBD VBN CC VBN IN DT NN .\nNepal 's Maoist rebels have called off a traffic ban on major roads leading into the capital , Kathmandu , that disrupted supplies to the city for nearly a week .\tNNP POS NNP NNS VBP VBN RP DT NN NN IN JJ NNS VBG IN DT NN , NNP , WDT VBD NNS TO DT NN IN RB DT NN .\nThe ban was called off Wednesday , after pleas from human rights groups and a mass demonstration this week by city residents demanding an end to the increasingly bloody conflict between Maoist rebels and security forces .\tDT NN VBD VBN RP NNP , IN NNS IN JJ NNS NNS CC DT NN NN DT NN IN NN NNS VBG DT NN TO DT RB JJ NN IN NNP NNS CC NN NNS .\nThe rebels imposed the ban last week to protest the alleged killings of rebel activists in government custody and to press for information about those who are missing .\tDT NNS VBD DT NN JJ NN TO VB DT JJ NNS IN JJ NNS IN NN NN CC TO VB IN NN IN DT WP VBP VBG .\nViolence has escalated ahead of a January 13 deadline set by Prime Minister Sher Bahadur Deuba for the Maoists to resume peace talks .\tNN VBZ VBN RB IN DT NNP CD NN VBN IN NNP NNP NNP NNP NNP IN DT NNS TO VB NN NNS .\nThe rebels have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state .\tDT NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN .\nMore than 10,000 people have been killed in the violence .\tJJR IN CD NNS VBP VBN VBN IN DT NN .\nU.S. Congressman Tom DeLay predicts he will be cleared of a criminal conspiracy charge , and that he will soon be reinstated as majority leader in the House of Representatives .\tNNP NNP NNP NNP VBZ PRP MD VB VBN IN DT JJ NN NN , CC IN PRP MD RB VB VBN IN NN NN IN DT NNP IN NNPS .\nThe Republican congressman was speaking on the television program ' Fox News Sunday , ' where he called the indictment against him ' manufactured ' and ' frivolous . '\tDT JJ NN VBD VBG IN DT NN NN `` NNP NNP NNP , `` WRB PRP VBD DT NN IN PRP `` VBN `` CC `` JJ . ``\nBut another Republican lawmaker says he is no longer comfortable with Mr. Delay as majority leader .\tCC DT JJ NN VBZ PRP VBZ RB RBR JJ IN NNP NNP IN NN NN .\nSpeaking on CNN Sunday , Congressman Christopher Shays cited continual acts of Mr. Delay 's that in his words , ' border and sometimes go beyond ' what is ethical .\tVBG IN NNP NNP , NNP NNP NNP VBD JJ NNS IN NNP NNP POS WDT IN PRP$ NNS , `` NN CC RB VB IN `` WP VBZ JJ .\nMr. DeLay stepped down as majority leader Thursday , after a grand jury in his home state of Texas indicted him for violating a state campaign-finance law .\tNNP NNP VBD RP IN NN NN NNP , IN DT JJ NN IN PRP$ NN NN IN NNP VBD PRP IN VBG DT NN NN NN .\nThe allegation centers on the misuse of corporate donations .\tDT NN NNS IN DT NN IN JJ NNS .\nLast month , a United Nations conference in Rome discussed the world 's rising food prices .\tJJ NN , DT NNP NNP NN IN NNP VBD DT NN POS VBG NN NNS .\nThe group called for trade barriers to be reduced and food export bans to be lifted .\tDT NN VBD IN NN NNS TO VB VBN CC NN NN NNS TO VB VBN .\nThe cost of major food commodities has doubled over the past two years with rice , corn and wheat at record highs .\tDT NN IN JJ NN NNS VBZ VBN IN DT JJ CD NNS IN NN , NN CC NN IN NN NNS .\nThe Philippines and Haiti , among other countries , have been hard-hit .\tDT NNPS CC NNP , IN JJ NNS , VBP VBN JJ .\nSome Filipino and Haitian immigrants in the United States are sending food to their families back home .\tDT JJ CC JJ NNS IN DT NNP NNPS VBP VBG NN TO PRP$ NNS RB NN .\nVOA 's Deborah Block has the story .\tNNP POS NNP NNP VBZ DT NN .\nIsraeli officials said they plan to make it harder for the Arabic television network al-Jazeera to operate in Israel and the West Bank .\tJJ NNS VBD PRP VBP TO VB PRP RBR IN DT JJ NN NN NNP TO VB IN NNP CC DT NNP NNP .\nMedia reports said Israel will not renew the work visas of some Israeli-based al-Jazeera employees , and that the network 's reporters will have less access to news conferences and briefings .\tNNS NNS VBD NNP MD RB VB DT NN NNS IN DT JJ NNP NNS , CC IN DT NN POS NNS MD VB JJR NN TO NN NNS CC NNS .\nIsraeli officials tied the move to the decision last month by Qatar , which owns al-Jazeera , to suspend relations with Israel to protest its offensive in the Gaza Strip .\tJJ NNS VBD DT NN TO DT NN JJ NN IN NNP , WDT VBZ NNP , TO VB NNS IN NNP TO VB PRP$ NN IN DT NNP NNP .\nAn Israeli official said Qatar created obstacles by closing Israel 's trade office in Doha .\tDT JJ NN VBD NNP VBD NNS IN VBG NNP POS NN NN IN NNP .\nQatar had been the only Gulf Arab state to have trade ties with Israel .\tNNP VBD VBN DT JJ NNP NNP NN TO VB NN NNS IN NNP .\nThousands of voters in Indian Kashmir went to the polls Tuesday in the first municipal elections in 27 years .\tNNS IN NNS IN NNP NNP VBD TO DT NNS NNP IN DT JJ JJ NNS IN CD NNS .\nThe voters turned out in large numbers in some areas despite threats of attacks by rebel groups , and calls for a boycott of the vote by Muslim separatist politicians .\tDT NNS VBD RP IN JJ NNS IN DT NNS IN NNS IN NNS IN NN NNS , CC VBZ IN DT NN IN DT NN IN NNP JJ NNS .\nAlthough no attacks were reported , there was sporadic violence .\tIN DT NNS VBD VBN , EX VBD JJ NN .\nIn Srinagar , anti-election demonstrators burnt tires and pelted riot police with stones .\tIN NNP , JJ NNS VBP NNS CC VBN NN NNS IN NNS .\nThe poll to chose town councils in Indian Kashmir is being held in four stages .\tDT NN TO VB NN NNS IN JJ NNP VBZ VBG VBN IN CD NNS .\nIt started on January 29 and the last stage will be held on February 10 .\tPRP VBD IN NNP CD CC DT JJ NN MD VB VBN IN NNP CD .\nThree candidates were killed by suspected Muslim separatists during the election campaign .\tCD NNS VBD VBN IN JJ NNP NNS IN DT NN NN .\nIraqi police say a string of bomb attacks in Baghdad killed at least 27 people and wounded scores more Thursday .\tJJ NNS VBP DT NN IN NN NNS IN NNP VBD IN JJS CD NNS CC VBD NNS RBR NNP .\nPolice say a car bomb in eastern Baghdad killed at least five people , while seven died in another car bombing in a largely Shi'ite neighborhood in northwestern Baghdad .\tNNS VBP DT NN NN IN JJ NNP VBD IN JJS CD NNS , IN CD VBD IN DT NN VBG IN DT RB JJ NN IN JJ NNP .\nHours earlier , two bombs went off in an eastern part of the capital .\tNNS RB , CD NNS VBD RP IN DT JJ NN IN DT NN .\nOne bomb killed 13 people at a crowded market .\tCD NN VBD CD NNS IN DT JJ NN .\nThe other bomb killed two people near a police patrol .\tDT JJ NN VBD CD NNS IN DT NN NN .\nThe explosions are the latest in the almost daily bomb blasts and other attacks in Baghdad and across Iraq .\tDT NNS VBP DT JJS IN DT RB JJ NN NNS CC JJ NNS IN NNP CC IN NNP .\nOn Wednesday , insurgents killed at least 10 people , including six police officers and a Sunni Arab cleric .\tIN NNP , NNS VBD IN JJS CD NNS , VBG CD NNS NNS CC DT NNP NNP NN .\nAfghan and U.S. officials say a clash between Taleban insurgents and Afghan soldiers backed by U.S. troops in southern Helmand province has left one American soldier and seven insurgents dead .\tJJ CC NNP NNS VBP DT NN IN NNP NNS CC JJ NNS VBN IN NNP NNS IN JJ NNP NN VBZ VBN CD JJ NN CC CD NNS JJ .\nA military statement says another U.S. service member and an Afghan soldier were wounded in Saturday 's fierce fighting in the province 's Sangin district .\tDT JJ NN VBZ DT NNP NN NN CC DT JJ NN VBD VBN IN NNP POS JJ NN IN DT NN POS NNP NN .\nThe statement says fighting erupted after Afghan and U.S. troops backed by planes and helicopter gunships attacked enemy positions , dropping 11 bombs .\tDT NN VBZ VBG VBN IN JJ CC NNP NNS VBN IN NNS CC NN NNS VBD NN NNS , VBG CD NNS .\nHelmand province has been a hotbed of insurgent activity since U.S.-led forces ousted the hard-line Islamist Taleban rulers of Afghanistan in late 2001 , following the September 11th terrorist attacks in the United States .\tNNP NN VBZ VBN DT NN IN JJ NN IN JJ NNS VBD DT JJ NNP NNP NNS IN NNP IN JJ CD , VBG DT NNP CD JJ NNS IN DT NNP NNPS .\nRussia 's lower house of parliament , the Duma , has ratified treaties with the Georgian breakaway regions of South Ossetia and Abkhazia .\tNNP POS JJR NN IN NN , DT NNP , VBZ VBN NNS IN DT JJ NN NNS IN NNP NNP CC NNP .\nThe widely-expected endorsements clear the way for Moscow to keep thousands of troops in the pro-Russian territories .\tDT JJ NNS VBP DT NN IN NNP TO VB NNS IN NNS IN DT JJ NNS .\nDuma lawmakers voted unanimously Wednesday for the so-called friendship and mutual assistance treaties , which formalize economic , diplomatic and military ties .\tNNP NNS VBD RB NNP IN DT JJ NN CC JJ NN NNS , WDT VBP JJ , JJ CC JJ NNS .\nMoscow recognized the two regions as independent countries in August , shortly after Russian forces swept into Georgia to counter a Georgian military effort to reclaim South Ossetia by force .\tNNP VBD DT CD NNS IN JJ NNS IN NNP , RB IN JJ NNS VBD IN NNP TO VB DT JJ JJ NN TO VB NNP NNP IN NN .\nThe invasion drew strong condemnations from the West , where some governments threatened to respond with sanctions on Moscow .\tDT NN VBD JJ NNS IN DT NNP , WRB DT NNS VBD TO VB IN NNS IN NNP .\nMoscow says it will station 7,600 troops in the territories .\tNNP VBZ PRP MD NN CD NNS IN DT NNS .\nEarlier this week , Russian Foreign Minister Sergei Lavrov said Moscow opposes the deployment of European Union monitors in the region .\tRBR DT NN , JJ NNP NNP NNP NNP VBD NNP VBZ DT NN IN NNP NNP VBZ IN DT NN .\nHe said Russian forces will assume responsibility for security in the territories .\tPRP VBD JJ NNS MD VB NN IN NN IN DT NNS .\nAdult stem cell therapy has successfully treated leukemia and other cancers for years , in the form of bone marrow transplants .\tJJ NN NN NN VBZ RB VBN NN CC JJ NNS IN NNS , IN DT NN IN NN NN NNS .\nA new study in the Journal of the American Medical Association [ JAMA ] finds treatment with adult stem cells is also helping patients with autoimmune diseases and heart conditions .\tDT JJ NN IN DT NNP IN DT NNP NNP NNP LRB NNP RRB VBZ NN IN JJ NN NNS VBZ RB VBG NNS IN JJ NNS CC NN NNS .\nVOA 's Alex Villarreal reports .\tNNP POS NNP NNP VBZ .\nThe party of Israeli Prime Minister Ariel Sharon votes Thursday , on forming a new coalition government to advance plans for an Israeli withdrawal from the Gaza Strip .\tDT NN IN JJ NNP NNP NNP NNP VBZ NNP , IN VBG DT JJ NN NN TO VB NNS IN DT JJ NN IN DT NNP NNP .\nMr. Sharon asked members to approve the union with the rival Labor Party , saying it will help the government gain enough votes to approve the pullout .\tNNP NNP VBD NNS TO VB DT NN IN DT JJ NNP NNP , VBG PRP MD VB DT NN NN RB VBZ TO VB DT NN .\nMeanwhile , Israeli military officials say troops killed five Palestinians in separate incidents overnight near the Gaza Strip 's border with Egypt .\tRB , JJ JJ NNS VBP NNS VBD CD NNS IN JJ NNS JJ IN DT NNP NNP POS NN IN NNP .\nIsraeli soldiers opened fire on a group of people moving in a forbidden area near Rafah , killing three of them .\tJJ NNS VBD NN IN DT NN IN NNS VBG IN DT JJ NN IN NNP , VBG CD IN PRP .\nMilitary officials say the troops suspected the men were arms smugglers or terrorists planning an attack .\tJJ NNS VBP DT NNS VBD DT NNS VBD NNS NNS CC NNS VBG DT NN .\nIsraeli forces also shot and killed one Palestinian and injured two others spotted in a separate area near the Gaza border .\tJJ NNS RB VBD CC VBD CD JJ CC JJ CD NNS VBN IN DT JJ NN IN DT NNP NN .\nOne of those injured later died at a hospital .\tCD IN DT VBN RB VBD IN DT NN .\nA group led by terrorist Abu Musab al-Zarqawi has claimed responsibility for Monday 's assassination of Baghdad 's deputy police chief .\tDT NN VBN IN JJ NNP NNP NNP VBZ VBN NN IN NNP POS NN IN NNP POS NN NN NN .\nThe group , calling itself the ' al-Qaida Organization of Holy War in Iraq , ' made the claim on an Islamist web site , just hours after gunmen shot down Brigadier Amer Nayef and his police officer son .\tDT NN , VBG PRP DT `` NNP NNP IN NNP NNP IN NNP , `` VBD DT NN IN DT JJ NN NN , RB NNS IN NNS VBD RP NNP NNP NNP CC PRP$ NN NN NN .\nIraqi officials say the two men were killed as they left their home in Baghdad 's southern Dora district .\tJJ NNS VBP DT CD NNS VBD VBN IN PRP VBD PRP$ NN IN NNP POS JJ NNP NN .\nThe assassination comes six days after insurgents gunned down Baghdad 's provincial governor and six of his bodyguards as they rode to work .\tDT NN VBZ CD NNS IN NNS VBD RP NNP POS JJ NN CC CD IN PRP$ NNS IN PRP VBP TO VB .\nElsewhere in the capital , U.S. authorities say two U.S. soldiers were killed and four others wounded when their armored vehicle struck a roadside bomb .\tRB IN DT NN , NNP NNS VBP CD NNP NNS VBD VBN CC CD NNS VBN WRB PRP$ JJ NN VBD DT NN NN .\nSeparately , authorities say a suicide car bomber rammed a car into a police station in southern Baghdad , killing at least three people .\tRB , NNS VBP DT NN NN NN VBD DT NN IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS .\nU.N. Secretary-General Kofi Annan says Iraq 's forthcoming election marks the beginning of a new phase , in which responsible dialogue among Shi'ites , Sunni Arabs and Kurds will make the difference between success and failure in the war-torn country .\tNNP NNP NNP NNP VBZ NNP POS JJ NN VBZ DT NN IN DT JJ NN , IN WDT JJ NN IN NNS , NNP NNS CC NNPS MD VB DT NN IN NN CC NN IN DT JJ NN .\nIn a report to the Security Council Friday , Mr. Annan says increasing sectarian violence and ongoing human rights violations pose key challenges as voters prepare to go to the polls Thursday .\tIN DT NN TO DT NNP NNP NNP , NNP NNP VBZ VBG JJ NN CC JJ JJ NNS NNS VBP JJ NNS IN NNS VBP TO VB TO DT NNS NNP .\nHe says the most positive development in the past three months has been the determination of Sunni Arabs to get involved in the political process .\tPRP VBZ DT RBS JJ NN IN DT JJ CD NNS VBZ VBN DT NN IN NNP NNS TO VB VBN IN DT JJ NN .\nIn the quarterly report on Iraq to the Security Council , Mr. Annan warns , however , the country remains beset with formidable security , political and economic challenges .\tIN DT JJ NN IN NNP TO DT NNP NNP , NNP NNP VBZ , RB , DT NN VBZ JJ IN JJ NN , JJ CC JJ NNS .\nMeanwhile , Sunni Arab clerics pleaded Friday for the lives of four Western hostages .\tRB , NNP NNP NNS VBD NNP IN DT NNS IN CD JJ NNS .\nTheir kidnappers have said they will kill the men Saturday unless all Iraqi prisoners are freed .\tPRP$ NNS VBP VBN PRP MD VB DT NNS NNP IN DT JJ NNS VBP VBN .\nEgyptian authorities say a construction company bus driver is in custody after he opened fire on a busload of workers , killing six and wounding others , near Cairo .\tJJ NNS VBP DT NN NN NN NN VBZ IN NN IN PRP VBD NN IN DT NN IN NNS , VBG CD CC VBG NNS , IN NNP .\nEgyptian construction firm Arab Contractors says Mahmoud Sweilam , a 20-year veteran of the company , surrendered after the deadly rampage early Tuesday .\tJJ NN NN NNP NNP VBZ NNP NNP , DT JJ NN IN DT NN , VBD IN DT JJ NN RB NNP .\nAuthorities say Sweilam was driving more than 20 company employees to their work site when he suddenly stopped the bus and began shooting at them with an automatic rifle .\tNNS VBP NNP VBD VBG JJR IN CD NN NNS TO PRP$ NN NN WRB PRP RB VBD DT NN CC VBD VBG IN PRP IN DT JJ NN .\nPolice are still investigating a motive for the attack .\tNNS VBP RB VBG DT NN IN DT NN .\nU.S. private employers added 71,000 jobs in July , indicating the U.S. labor market and the economy at large are slow to recover from recession .\tNNP JJ NNS VBD CD NNS IN NNP , VBG DT NNP NN NN CC DT NN IN JJ VBP JJ TO VB IN NN .\nA report Friday from the Labor Department shows the unemployment rate stayed unchanged at 9.5 percent .\tDT NN NNP IN DT NNP NNP VBZ DT NN NN VBD JJ IN CD NN .\nEconomists closely watch the private payrolls figure , because private companies do the bulk of hiring in the United States .\tNNS RB VBP DT JJ NNS NN , IN JJ NNS VBP DT NN IN VBG IN DT NNP NNPS .\nEmployment is also a big indicator of consumer spending , as those who are unemployed or worried about job stability tend to spend less .\tNN VBZ RB DT JJ NN IN NN NN , IN DT WP VBP JJ CC JJ IN NN NN VBZ TO VB JJR .\nThe country lost jobs overall in July , due in large part to cuts at the U.S. Census Bureau .\tDT NN VBD NNS JJ IN NNP , JJ IN JJ NN TO NNS IN DT NNP NNP NNP .\nThe government agency cut about 1,44,000 temporary employees who were hired for only a couple of months to conduct the once-a-decade population count .\tDT NN NN VBD IN CD JJ NNS WP VBD VBN IN RB DT NN IN NNS TO VB DT JJ NN NN .\nVenezuela 's president has invited Haiti to join a program offering inexpensive oil to Caribbean nations .\tNNP POS NN VBZ VBN NNP TO VB DT NN NN JJ NN TO NNP NNS .\nThe offer came during a visit Monday to Caracas by Haiti 's President-Elect Rene Preval .\tDT NN VBD IN DT NN NNP TO NNP IN NNP POS JJ NNP NNP .\nMr. Preval met with Venezuelan president Hugo Chavez .\tNNP NNP VBD IN JJ NN NNP NNP .\nThey discussed Haiti 's inclusion in Venezuela 's Petrocaribe program which offers generous payment options to Caribbean countries for the purchase of Venezuelan oil .\tPRP VBD NNP POS NN IN NNP POS NNP NN WDT VBZ JJ NN NNS TO JJ NNS IN DT NN IN JJ NN .\nDuring the meeting , Mr. Chavez said Venezuela would also donate diesel fuel for use by schools and hospitals in Haiti .\tIN DT NN , NNP NNP VBD NNP MD RB VB NN NN IN NN IN NNS CC NNS IN NNP .\nMr. Preval was elected in February following a campaign of promises to improve social conditions and education for Haitians .\tNNP NNP VBD VBN IN NNP VBG DT NN IN NNS TO VB JJ NNS CC NN IN NNS .\nHe will be inaugurated on May 14 .\tPRP MD VB VBN IN NNP CD .\nPolice in Nepal armed with batons dispersed a protest Tuesday by Tibetan refugees and monks in front of the Chinese Embassy .\tNNS IN NNP VBN IN NNS VBD DT NN NNP IN JJ NNS CC NNS IN NN IN DT JJ NN .\nAbout 100 protesters in Kathmandu were loaded into trucks and vans and sent to detention centers .\tIN CD NNS IN NNP VBD VBN IN NNS CC NNS CC VBN TO NN NNS .\nThere have been almost daily demonstrations in Nepal against China since March 10 , when protests began in Tibet 's capital , Lhasa .\tEX VBP VBN RB JJ NNS IN NNP IN NNP IN NNP CD , WRB NNS VBD IN NNP POS NN , NNP .\nAt least 400 protesters were detained in Nepal Monday .\tIN JJS CD NNS VBD VBN IN NNP NNP .\nThe U.N. human rights office in Nepal has said it is deeply concerned at the arbitrary arrests and detentions .\tDT NNP JJ NNS NN IN NNP VBZ VBN PRP VBZ RB VBN IN DT JJ NNS CC NNS .\nNepal 's border with China in the Himalayas is a key route for Tibetans fleeing Chinese rule in the region .\tNNP POS NN IN NNP IN DT NNP VBZ DT JJ NN IN NNS VBG JJ NN IN DT NN .\nIraqi police say a car bomb has killed at least 21 people at a Baghdad market .\tJJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT NNP NN .\nThey say 25 others were wounded in the blast in a mostly Shi'ite Muslim part of Dora - a neighborhood in southern Baghdad .\tPRP VBP CD NNS VBD VBN IN DT NN IN DT RB JJ NNP NN IN NNP IN DT NN IN JJ NNP .\nElsewhere in the capital Tuesday , a roadside bomb killed an Iraqi policeman , but an Iraqi Cabinet minister , Suhaila Abed Jaafar , minister of displacement and migration escaped unhurt from another bomb blast .\tRB IN DT NN NNP , DT NN NN VBD DT JJ NN , CC DT JJ NNP NN , NNP NNP NNP , NN IN NN CC NN VBD NN IN DT NN NN .\nThe attacks came as Britain 's Foreign Secretary Jack Straw met in Baghdad with President Jalal Talabani about the slow progress in forming a new Iraqi government .\tDT NNS VBD IN NNP POS NNP NNP NNP NNP VBD IN NNP IN NNP NNP NNP IN DT JJ NN IN VBG DT JJ JJ NN .\nStraw stressed the government should not be dominated by one religious group .\tNNP VBD DT NN MD RB VB VBN IN CD JJ NN .\nBut Iraq 's Prime Minister Ibrahim al-Jaafari said choosing a government is an internal affair .\tCC NNP POS NNP NNP NNP NNP VBD VBG DT NN VBZ DT JJ NN .\nMeanwhile , Jordanian officials have announced the release of a Jordanian embassy driver who had been held hostage in Iraq since December .\tRB , JJ NNS VBP VBN DT NN IN DT JJ NN NN WP VBD VBN VBN NN IN NNP IN NNP .\nTwo important new studies show tightly managing blood sugar helps diabetics avoid many of the complications of the disease including kidney problems and heart disease .\tCD JJ JJ NNS VBP RB VBG NN NN VBZ NNS VB NN IN DT NNS IN DT NN VBG NN NNS CC NN NN .\nOne study focused on Type Two diabetes .\tCD NN VBD IN NNP CD NNS .\nThe other , funded by the Juvenile Diabetes Foundation , gives hope to those with Type One .\tDT JJ , VBN IN DT NNP NNP NNP , VBZ NN TO DT IN NNP CD .\nVOA 's Carol Pearson reports .\tNNP POS NNP NNP VBZ .\nForensic experts in eastern Bosnia-Herzegovina have begun exhuming a mass grave believed to contain the bodies of 36 Muslims , including women and children , killed during the Balkan conflict .\tJJ NNS IN JJ NNP VBP VBN VBG DT NN NN VBN TO VB DT NNS IN CD NNS , VBG NNS CC NNS , VBN IN DT JJ NN .\nEyewitnesses say Bosnian Serb forces killed the victims then took the bodies to a garage in the village of Snagovo , near Zvornik , and set the building on fire .\tNNS VBP JJ JJ NNS VBD DT NNS RB VBD DT NNS TO DT NN IN DT NN IN NNP , IN NNP , CC VBD DT NN IN NN .\nThe corpses were later buried in a mass grave .\tDT NNS VBD RB VBN IN DT NN NN .\nBosnian authorities have already exhumed two other mass graves in the village , finding about 300 skeletons .\tJJ NNS VBP RB VBN CD JJ NN NNS IN DT NN , VBG IN CD NNS .\nThey are believed to be the remains of some of the 8,000 Muslim men and boys massacred after Serb forces captured the enclave of Srebrenica in 1995 .\tPRP VBP VBN TO VB DT NNS IN DT IN DT CD NNP NNS CC NNS VBD IN JJ NNS VBD DT NN IN NNP IN CD .\nIranian news media report that armed bandits have taken 30 people hostage in the southeast of the country .\tJJ NN NNS VBP IN JJ NNS VBP VBN CD NNS NN IN DT NN IN DT NN .\nThe reports say the bandits blocked a road and opened fire on vehicles before abducting the victims Sunday .\tDT NNS VBP DT NNS VBD DT NN CC VBD NN IN NNS IN VBG DT NNS NNP .\nThe incident took place in Sistan-Baluchestan .\tDT NN VBD NN IN NNP .\nFew other details were immediately available .\tJJ JJ NNS VBD RB JJ .\nThousands of motorcycle riders are in Washington for a parade known as ' Rolling Thunder , ' which comes a day before the Memorial Day holiday honoring U.S. military personnel killed in battle .\tNNS IN NN NNS VBP IN NNP IN DT NN VBN IN `` NNP NNP , `` WDT VBZ DT NN IN DT NNP NNP NN VBG NNP JJ NNS VBN IN NN .\nThe bikers are visiting the Vietnam Veterans memorial Sunday and are then gathering at the Lincoln memorial where there will be speakers .\tDT NNS VBP VBG DT NNP NNP JJ NNP CC VBP RB VBG IN DT NNP NN WRB EX MD VB NNS .\nA musical tribute to Veterans also is to be held today , which will include pop group Paul Revere and The Raiders and singer Nancy Sinatra .\tDT JJ NN TO NNP RB VBZ TO VB VBN NN , WDT MD VB NN NN NNP NNP CC DT NNS CC NN NNP NNP .\nThe ' Rolling Thunder ' event specifically honors missing U.S. soldiers and prisoners of war .\tDT `` NNP NNP `` NN RB VBZ VBG NNP NNS CC NNS IN NN .\nTop-seeded Lleyton Hewitt of Australia and number-two Dominik Hrbaty of Slovakia have advanced to the second round of the International men 's hardcourt tennis championships in Adelaide , Australia .\tJJ NNP NNP IN NNP CC JJ NNP NNP IN NNP VBP VBN TO DT JJ NN IN DT JJ NNS POS NN NN NNS IN NNP , NNP .\nHewitt dropped the opening set Tuesday before bouncing back to beat Jan Hernych of the Czech Republic , 04-Jun , 06-Feb , 06-Apr .\tNNP VBD DT NN NN NNP IN VBG RB TO VB NNP NNP IN DT JJ NNP , CD , CD , CD .\nThe second-seeded Hrbaty had an easier time , topping Rameez Junaid of Australia , 06-Mar , 07-May .\tDT JJ NNP VBD DT JJR NN , VBG NNP NNP IN NNP , CD , CD .\nIn other matches involving seeded players , number-five James Blake of the United States defeated Alberto Martin of Spain , 06-Mar , 06-Mar .\tIN JJ NNS VBG JJ NNS , JJ NNP NNP IN DT NNP NNPS VBD NNP NNP IN NNP , CD , CD .\nBut eighth-seeded Juan Ignacio Chela of Argentina was upset , losing to Ivo Karlovic of Croatia , 06-Mar , 03-Jun , 06-Jan .\tCC JJ NNP NNP NNP IN NNP VBD VBN , VBG TO NNP NNP IN NNP , CD , CD , CD .\nUnseeded players advancing included Australia 's Mark Philippoussis , Florian Mayer of Germany , Britain 's Andy Murray , Andreas Seppi of Italy , Frenchman Florent Serra , Jarkko Nieminen of Finland and Danish player Kenneth Carlsen .\tJJ NNS VBG VBD NNP POS NNP NNP , NNP NNP IN NNP , NNP POS NNP NNP , NNP NNP IN NNP , NN NNP NNP , NNP NNP IN NNP CC JJ NN NNP NNP .\nThe global human rights organization , Amnesty International says that HIV and AIDS are devastating poor women and children in South Africa .\tDT JJ JJ NNS NN , NNP NNP VBZ IN NNP CC NNP VBP VBG JJ NNS CC NNS IN NNP NNP .\nIn a report released in London , Amnesty says that poverty , gender inequality and unemployment remain major contributing factors .\tIN DT NN VBN IN NNP , NNP VBZ IN NN , NN NN CC NN VBP JJ JJ NNS .\nPop Singer Annie Lennox is highlighting the issue with her new charity tune called ' Sing . '\tNN NN NNP NNP VBZ VBG DT NN IN PRP$ JJ NN NN VBD `` VBG . ``\nOn a recent trip to Africa , she says she learned how the disease affects women -- especially pregnant mothers and their unborn children -- much more than it does men .\tIN DT JJ NN TO NNP , PRP VBZ PRP VBD WRB DT NN VBZ NNS : RB JJ NNS CC PRP$ JJ NNS : RB JJR IN PRP VBZ NNS .\nVOA 's Mandy Clark reports .\tNNP POS NNP NNP VBZ .\nPolice have made a drug raid on athletes for the first time in the history of the Olympic games .\tNNS VBP VBN DT NN NN IN NNS IN DT JJ NN IN DT NN IN DT NNP NNS .\nItalian authorities late Saturday and early Sunday morning seized materials in a surprise sweep through the living quarters of the Austrian biathlon and cross country teams .\tJJ NNS JJ NNP CC JJ NNP NN VBD NNS IN DT NN NN IN DT VBG NNS IN DT JJ NN CC NN NN NNS .\nWhile Italian police searched the residences , the International Olympic Committee conducted unannounced , out-of-competition drug tests on at least six Austrian cross-country skiers and four biathletes .\tIN JJ NNS VBD DT NNS , DT NNP NNP NNP VBD JJ , JJ NN NNS IN IN JJS CD JJ JJ NNS CC CD NNS .\nThe involvement of Italian police is consistent with the country 's anti-doping laws , which treat doping as a criminal offense .\tDT NN IN JJ NN VBZ JJ IN DT NN POS JJ NNS , WDT VBP NN IN DT JJ NN .\nThe probe began when the World Anti-Doping Agency discovered blood-doping equipment in Austria connected to Walter Mayer .\tDT NN VBD WRB DT NNP NNP NNP VBD JJ NN IN NNP VBN TO NNP NNP .\nHe was banned by the IOC from the Turin Olympics and the 2010 Vancouver Games for suspicion of performing blood transfusions at the 2002 Salt Lake City Games .\tPRP VBD VBN IN DT NNP IN DT NNP NNPS CC DT CD NNP NNPS IN NN IN VBG NN NNS IN DT CD NNP NNP NNP NNPS .\nBut Mayer remains the head coach of both the Austrian cross country and the biathlon teams .\tCC NNP VBZ DT NN NN IN DT DT JJ NN NN CC DT NN NNS .\nA new U.N. report says the existence of armed militias in Lebanon is incompatible with restoring the country 's sovereignty and territorial integrity after three decades of Syrian domination .\tDT JJ NNP NN VBZ DT NN IN JJ NNS IN NNP VBZ JJ IN VBG DT NN POS NN CC JJ NN IN CD NNS IN JJ NN .\nSpecial U.N. envoy Terje Roed-Larsen said in his report that Lebanon 's inability to exert control over some areas or to rein in militias is stalling its progress toward full sovereignty .\tJJ NNP NN NNP NNP VBD IN PRP$ NN IN NNP POS NN TO VB NN IN DT NNS CC TO VB IN NNS VBZ VBG PRP$ NN IN JJ NN .\nMr. Roed-Larsen is the special envoy in charge of implementing Security Council resolution 1559 , which calls for the withdrawal of foreign troops from Lebanon and the disarming of all militias , such as Hezbollah .\tNNP NNP VBZ DT JJ NN IN NN IN VBG NNP NNP NN CD , WDT VBZ IN DT NN IN JJ NNS IN NNP CC DT NN IN DT NNS , JJ IN NNP .\nThe report was delivered Wednesday in New York , as Lebanese troops deployed near Palestinian militant camps in the hills near the Syrian border .\tDT NN VBD VBN NNP IN NNP NNP , IN JJ NNS VBN IN JJ JJ NNS IN DT NNS IN DT JJ NN .\nSoldiers used loud speakers to call on the militants to leave the base and surrender those responsible for the killing Tuesday of a Lebanese army contractor .\tNNS VBD JJ NNS TO VB IN DT NNS TO VB DT NN CC VB DT JJ IN DT NN NNP IN DT JJ NN NN .\nAn Indian court has sentenced a Pakistani man to death for the militant attack on New Delhi 's famous 17th century Red Fort five years ago .\tDT JJ NN VBZ VBN DT JJ NN TO NN IN DT JJ NN IN NNP NNP POS JJ JJ NN NNP NNP CD NNS RB .\nMuhammad Arif was handed the death sentence Monday for his role in the December 2000 attack that killed three people .\tNNP NNP VBD VBN DT NN NN NNP IN PRP$ NN IN DT NNP CD NN WDT VBD CD NNS .\nThe victims - a soldier and two civilians - died when Arif and five other militants sneaked into the complex and opened fire .\tDT NNS IN DT NN CC CD NNS : VBD WRB NNP CC CD JJ NNS VBD IN DT NN CC VBD NN .\nThe Red Fort was a 17th century palace for Muslim Mughal emperor Shah Jehan .\tDT NNP NNP VBD DT JJ NN NN IN NNP NNP NN NNP NNP .\nThe fort is now a symbol of India 's independence .\tDT NN VBZ RB DT NN IN NNP POS NN .\nMany speeches and official pronouncements are given at its gates .\tJJ NNS CC JJ NNS VBP VBN IN PRP$ NNS .\nThe United States has formally extended sanctions against Burma 's military government for another year .\tDT NNP NNPS VBZ RB VBN NNS IN NNP POS JJ NN IN DT NN .\nPresident Barack Obama informed Congress of the decision Friday , saying Burma poses a continuing threat to U.S. national security and foreign policy .\tNNP NNP NNP VBD NNP IN DT NN NNP , VBG NNP VBZ DT VBG NN TO NNP JJ NN CC JJ NN .\nHe added that Burma 's actions and policies are hostile to U.S. interests .\tPRP VBD IN NNP POS NNS CC NNS VBP JJ TO NNP NNS .\nThe existing sanctions on Burma must be renewed annually .\tDT VBG NNS IN NNP MD VB VBN RB .\nThey were set to expire next week .\tPRP VBD VBN TO VB JJ NN .\nDespite the sanctions , President Obama has been making an effort to engage the isolated country .\tIN DT NNS , NNP NNP VBZ VBN VBG DT NN TO VB DT JJ NN .\nEarlier this week , U.S. Assistant Secretary of State Kurt Campbell visited Burma for a two-day trip , during which he met with leaders of the military junta and detained opposition leader Aung San Suu Kyi .\tRBR DT NN , NNP NNP NNP IN NNP NNP NNP VBD NNP IN DT JJ NN , IN WDT PRP VBD IN NNS IN DT JJ NN CC JJ NN NN NNP NNP NNP NNP .\nThe United States has strongly criticized Burma for upcoming election plans that effectively exclude Aung San Suu Kyi and her National League for Democracy party .\tDT NNP NNP VBZ RB VBN NNP IN VBG NN NNS WDT RB VBP NNP NNP NNP NNP CC PRP$ NNP NNP IN NNP NN .\nThe United States has stopped accepting requests for H1-B specialty work visas because its quota of 65,000 visas for 2006 has been reached .\tDT NNP NNPS VBZ VBN VBG NNS IN JJ NN NN NNS IN PRP$ NN IN CD NNS IN CD VBZ VBN VBN .\nThe government 's immigration services agency said Friday , any further visa requests that are received will have to wait until late next year .\tDT NN POS NN NNS NN VBD NNP , DT JJ NN NNS WDT VBP VBN MD VB TO VB IN JJ JJ NN .\nThe specialty work visa program allows American companies to hire skilled workers from abroad with advanced skills , including scientists , engineers , or computer programmers .\tDT NN NN NN NN VBZ JJ NNS TO VB JJ NNS IN RB IN JJ NNS , VBG NNS , NNS , CC NN NNS .\nThe 65,000 visas granted annually normally can be extended for up to six years .\tDT CD NNS VBN RB RB MD VB VBN IN RB TO CD NNS .\nCongress decides how many visas are to be issued .\tNNP VBZ WRB JJ NNS VBP TO VB VBN .\nIn addition to 65,000 regular H1-B visas , It also has approved an additional 20,000 work permits each year for foreigners who hold an advanced degree ( master 's or doctorate ) from an American college or university .\tIN NN TO CD JJ JJ NNS , PRP RB VBZ VBN DT JJ CD NN VBZ DT NN IN NNS WP VBP DT JJ NN LRB NN POS CC JJ RRB IN DT JJ NN CC NN .\nTaiwan President Chen Shui-bian has called for a ban on the use of weapons of mass destruction across the Taiwan Strait .\tNNP NNP NNP NNP VBZ VBN IN DT NN IN DT NN IN NNS IN NN NN IN DT NNP NNP .\nMr. Chen said Wednesday that Taiwan is willing to guarantee that it will not use such weapons , and called on China to do the same .\tNNP NNP VBD NNP IN NNP VBZ JJ TO VB IN PRP MD RB VB JJ NNS , CC VBD IN NNP TO VB DT NN .\nMr. Chen also made a new appeal to China to hold talks with the island , saying the two sides should work together to create a code of conduct across the strait .\tNNP NNP RB VBD DT JJ NN TO NNP TO VB NNS IN DT NN , VBG DT CD NNS MD VB RB TO VB DT NN IN NN IN DT NN .\nChina has rejected past overtures made by Mr. Chen , and has refused to speak with the Taiwanese leader until he agrees that Taiwan is an inseparable part of China .\tNNP VBZ VBN JJ NNS VBN IN NNP NNP , CC VBZ VBN TO VB IN DT JJ NN IN PRP VBZ IN NNP VBZ DT JJ NN IN NNP .\nChina has threatened to seize Taiwan by force if it makes moves toward independence .\tNNP VBZ VBN TO VB NNP IN NN IN PRP VBZ NNS IN NN .\nDiplomats at the U.N. nuclear agency say the United States and its European allies have agreed to suspend their push to refer Iran to the Security Council for possible sanctions over its nuclear activities .\tNNS IN DT NNP JJ NN VBP DT NNP NNPS CC PRP$ JJ NNS VBP VBN TO VB PRP$ NN TO VB NNP TO DT NNP NNP IN JJ NNS IN PRP$ JJ NNS .\nThe diplomats , speaking on condition of anonymity , said U.S. and European officials agreed to the delay to give Russia more time to persuade Iran to compromise on its nuclear activities .\tDT NNS , VBG IN NN IN NN , VBD NNP CC JJ NNS VBD TO DT NN TO VB NNP JJR NN TO VB NNP TO VB IN PRP$ JJ NNS .\nThey spoke Monday , ahead of this week 's meeting of the board of governors of the International Atomic Energy Agency in Vienna .\tPRP VBD NNP , RB IN DT NN POS NN IN DT NN IN NNS IN DT NNP NNP NNP NNP IN NNP .\nThe West accuses Iran of seeking to build nuclear weapons - a charge Iran denies .\tDT NNP VBZ NNP IN VBG TO VB JJ NNS IN DT NN NNP VBZ .\nMeanwhile , British Foreign Secretary Jack Straw says Iran must meet its obligations and allow international inspectors to visit its nuclear facilities .\tRB , NNP NNP NNP NNP NNP VBZ NNP MD VB PRP$ NNS CC VB JJ NNS TO VB PRP$ JJ NNS .\nOn Sunday , the Iranian parliament voted to bar such visits if Iran is referred to the Security Council .\tIN NNP , DT JJ NN VBD TO VB JJ NNS IN NNP VBZ VBN TO DT NNP NNP .\nIsraeli soldiers raided a West Bank refugee camp , Friday , sparking a shootout that killed two Palestinian militants and badly wounded another .\tJJ NNS VBD DT NNP NNP NN NN , NNP , VBG DT NN WDT VBD CD JJ NNS CC RB VBD DT .\nAn Israeli military spokeswoman says Palestinians fired at troops who entered the Balata refugee camp at Nablus to arrest militants in the pre-dawn operation .\tDT JJ JJ NN VBZ NNS VBD IN NNS WP VBD DT NNP NN NN IN NNP TO VB NNS IN DT JJ NN .\nThe fighting , part of a week-long Israeli offensive against militants , came a day after Palestinian authorities in the Gaza Strip began enforcing a ban on public displays of weapons in a key step toward imposing order .\tDT NN , NN IN DT JJ JJ NN IN NNS , VBD DT NN IN JJ NNS IN DT NNP NNP VBD VBG DT NN IN JJ NNS IN NNS IN DT JJ NN IN VBG NN .\nFriday 's bloodshed came hours after Palestinians finished voting in local elections in the West Bank widely seen as a test of the political clout for the militant group Hamas ahead of a parliamentary ballot in January .\tNNP POS NN VBD NNS IN NNS VBD NN IN JJ NNS IN DT NNP NNP RB VBN IN DT NN IN DT JJ NN IN DT JJ NN NNP RB IN DT JJ NN IN NNP .\nUnofficial results show the ruling Fatah party of Palestinian President Mahmoud Abbas won control of at least 61 of the 104 local councils , and Hamas took 28 .\tJJ NNS VBP DT NN NNP NN IN JJ NNP NNP NNP VBD NN IN IN JJS CD IN DT CD JJ NNS , CC NNP VBD CD .\nU.S. military officials says they have completed a major sweep of western Iraq aimed at suppressing militant attacks in the lead-up to next week 's constitutional referendum .\tNNP JJ NNS VBZ PRP VBP VBN DT JJ NN IN JJ NNP VBN IN VBG JJ NNS IN DT JJ TO JJ NN POS JJ NN .\nA spokesman in Baghdad Friday said U.S.-led troops killed 50 insurgents during the six-day operation along the Syrian border .\tDT NN IN NNP NNP VBD JJ NNS VBD CD NNS IN DT JJ NN IN DT JJ NN .\nHe also said six U.S. Marines were killed by two separate roadside bombs in the area of operations .\tPRP RB VBD CD NNP NNS VBD VBN IN CD JJ NN NNS IN DT NN IN NNS .\nThe end of the military offensive comes just over one week before Iraqis go to the polls to vote on the country 's new constitution .\tDT NN IN DT JJ NN VBZ RB IN CD NN IN NNS VBP TO DT NNS TO VB IN DT NN POS JJ NN .\nShi'ite and Kurdish leaders support the constitution , while many Sunnis have denounced it .\tNNP CC NNP NNS VBP DT NN , IN JJ NNPS VBP VBN PRP .\nMeanwhile , Iraqi President Jalal Talabani told a British television network , Sky News , Iraqi forces will not be ready to replace U.S.-led troops for two years .\tRB , JJ NNP NNP NNP VBD DT JJ NN NN , NNP NNP , JJ NNS MD RB VB JJ TO VB JJ NNS IN CD NNS .\nBut he said coalition withdrawal depends on a resolution from the U.N. Security Council and negotiations between the Iraqi government and coalition forces .\tCC PRP VBD NN NN VBZ IN DT NN IN DT NNP NNP NNP CC NNS IN DT JJ NN CC NN NNS .\nThe World Health Organization says AIDS is spreading rapidly through China and estimates 10 million people may be infected with the virus by 2010 .\tDT NNP NNP NNP VBZ NNP VBZ VBG RB IN NNP CC VBZ CD CD NNS MD VB VBN IN DT NN IN CD .\nThe WHO says the disease has spread to all of China 's provinces and autonomous regions - with injected drug use the main route of transmission .\tDT NNP VBZ DT NN VBZ VBN TO DT IN NNP POS NNS CC JJ NNS : IN VBN NN NN DT JJ NN IN NN .\nIt says a similar situation exists in Malaysia and Vietnam .\tPRP VBZ DT JJ NN VBZ IN NNP CC NNP .\nThe warnings came in a statement Tuesday from the organization 's regional director , Shigeru Omi .\tDT NNS VBD IN DT NN NNP IN DT NN POS JJ NN , NNP NNP .\nMr. Omi called for stronger political will by Asian governments to stop the spread of the disease .\tNNP NNP VBD IN JJR JJ NN IN JJ NNS TO VB DT NN IN DT NN .\nBased on the WHO 's records for Asia , Cambodia has the highest percentage of people infected with HIV - at 1.9 percent of the population .\tVBN IN DT NNP POS NNS IN NNP , NNP VBZ DT JJS NN IN NNS VBN IN NNP : IN CD NN IN DT NN .\nOf all the people enjoying a so-called white Christmas Saturday , none appreciate it more than the folks of Victoria , Texas .\tIN PDT DT NNS VBG DT JJ JJ NNP NNP , NN VBP PRP RBR IN DT NNS IN NNP , NNP .\nThe usually balmy town near the Gulf of Mexico was hit with an unprecedented 30 centimeters of snow overnight .\tDT RB JJ NN IN DT NNP IN NNP VBD VBN IN DT JJ CD NNS IN NN JJ .\nThe U.S. National Weather Service says until today , Victoria had not seen a measurable snowfall since 1973 .\tDT NNP NNP NNP NNP VBZ IN NN , NNP VBD RB VBN DT JJ NN IN CD .\nThe last time the town of 60,000 enjoyed a white Christmas was in 1917 , 86 years ago .\tDT JJ NN DT NN IN CD VBD DT JJ NNP VBD IN CD , CD NNS RB .\nResidents will only have about 24 hours to build a snowman , as Sunday 's forecast calls for the return of sunny skies and high temperatures well above freezing .\tNNS MD RB VB RB CD NNS TO VB DT NN , IN NNP POS NN VBZ IN DT NN IN JJ NNS CC JJ NNS RB IN VBG .\nIraqi officials say insurgents carried out two separate suicide car bombings Thursday , killing at least eight people .\tJJ NNS VBP NNS VBD RP CD JJ NN NN NNS NNP , VBG IN JJS CD NNS .\nSouth of Kirkuk ( in Tuz Khormato ) , five people were killed and 16 injured when a suicide bomber detonated his vehicle near an Iraqi army checkpoint .\tNNP IN NNP LRB IN NNP NNP RRB , CD NNS VBD VBN CC CD NN WRB DT NN NN VBD PRP$ NN IN DT JJ NN NN .\nA second suicide bomber struck in the city of Samarra , killing at least three people when his car blew up near a joint U.S. - Iraqi patrol .\tDT JJ NN NN VBD IN DT NN IN NNP , VBG IN JJS CD NNS WRB PRP$ NN VBD RP IN DT JJ NNP : JJ NN .\nThe attacks come as hundreds of thousands of Shi'ite Muslim pilgrims gather under tight security in the city of Karbala to mark Arbaeen .\tDT NNS VBP IN NNS IN NNS IN NNP NNP NNS VBP IN JJ NN IN DT NN IN NNP TO VB NNP .\nMany pilgrims have walked to the Shi'ite holy city from towns across Iraq to mark the end of the 40-day mourning period for Imam Hussein , who was killed in a battle nearly 14 centuries ago .\tJJ NNS VBP VBD TO DT NNP JJ NN IN NNS IN NNP TO VB DT NN IN DT JJ NN NN IN NNP NNP , WP VBD VBN IN DT NN RB CD NNS RB .\nHussein was the grandson of the Prophet Mohammad , and is revered by Shi'ites .\tNNP VBD DT NN IN DT NNP NNP , CC VBZ VBN IN NNS .\nEgyptian officials say rain and sandstorms that battered the country for several days have killed at least 31 people .\tJJ NNS VBP NN CC NNS WDT VBD DT NN IN JJ NNS VBP VBN IN JJS CD NNS .\nThe hardest-hit areas were in northern Egypt , where the storms brought heavy rains and wind .\tDT JJ NNS VBD IN JJ NNP , WRB DT NNS VBD JJ NNS CC NN .\nAt least 13 of the deaths came in a six-story factory building collapse in the northern port city of Alexandria .\tIN JJS CD IN DT NNS VBD IN DT JJ NN NN NN IN DT JJ JJ NN IN NNP .\nBuilding collapses blamed on poor construction and failure to follow building rules are relatively frequent in Egypt .\tNN NNS VBN IN JJ NN CC NN TO VB NN NNS VBP RB JJ IN NNP .\nOfficials said Monday they had reopened ports on the Red Sea , which had been closed because of the storms .\tNNS VBD NNP PRP VBD VBN NNS IN DT NNP NNP , WDT VBD VBN VBN IN IN DT NNS .\nOfficials also blamed the weather for poor visibility that led to traffic accidents .\tNNS RB VBD DT NN IN JJ NN WDT VBD TO NN NNS .\nThe international airport in the western U.S. city of Denver , Colorado , is expected to begin limited operations Friday , after two days of being shut down during the busiest travel days of the holiday season .\tDT JJ NN IN DT JJ NNP NN IN NNP , NNP , VBZ VBN TO VB JJ NNS NNP , IN CD NNS IN VBG VBN RP IN DT JJS NN NNS IN DT NN NN .\nThousands of people were stranded at the airport Wednesday when snowstorms hit the U.S. central plains region .\tNNS IN NNS VBD VBN IN DT NN NNP WRB NNS VBD DT NNP JJ NNS NN .\nSome areas were buried under as much as 61 centimeters of snow .\tDT NNS VBD VBN IN RB JJ IN CD NNS IN NN .\nIn Colorado - a mountainous state where heavy snow is common - the storm shut down not just the airport but several major highways and postal delivery .\tIN NNP IN DT JJ NN WRB JJ NN VBZ JJ IN DT NN VBD RP RB RB DT NN CC JJ JJ NNS CC JJ NN .\nAirport authorities say they will open two runways Friday after they are swept clear of snow .\tNNP NNS VBP PRP MD VB CD NNS NNP IN PRP VBP VBN JJ IN NN .\nBut they are warning passengers to expect further delays as the airlines now deal with a two-day backlog of passengers .\tCC PRP VBP VBG NNS TO VB JJ NNS IN DT NNS RB VBP IN DT JJ NN IN NNS .\nMany travelers are rushing to get to the homes of friends and family before Christmas Day on Monday December 25 .\tJJ NNS VBP VBG TO VB TO DT NNS IN NNS CC NN IN NNP NNP IN NNP NNP CD .\nThe U.S. State Department has expressed its sympathy and solidarity with Poland over the death this week of its first post-communist Foreign Minister , Krzysztof Skubiszewski .\tDT NNP NNP NNP VBZ VBN PRP$ NN CC NN IN NNP IN DT NN DT NN IN PRP$ JJ JJ NNP NNP , NNP NNP .\nState Department spokesman P.J. Crowley says Skubiszewski paved the way for Poland 's eventual membership in NATO and the strong alliance between Poland and the United States .\tNNP NNP NN NNP NNP VBZ NNP VBD DT NN IN NNP POS JJ NN IN NNP CC DT JJ NN IN NNP CC DT NNP NNPS .\nHe called Skubiszewski a great statesman and visionary .\tPRP VBD NNP DT JJ NN CC NN .\nSkubiszewski died Monday at age 83 .\tNNP VBD NNP IN NN CD .\nNo cause of death was announced .\tDT NN IN NN VBD VBN .\nHe was Poland 's first foreign minister after the fall of communism in 1989 .\tPRP VBD NNP POS JJ JJ NN IN DT NN IN NN IN CD .\nHe held the post until 1993 .\tPRP VBD DT NN IN CD .\nSkubiszewski opened talks with NATO and worked towards reconciliation with Germany .\tNNP VBD NNS IN NNP CC VBD IN NN IN NNP .\nScientists at the National Geographic Society 's headquarters in Washington have revealed early details of an extraordinary archaeological find .\tNNS IN DT NNP NNP NNP POS NN IN NNP VBP VBN JJ NNS IN DT JJ JJ NN .\nTwo graveyards discovered in Northern Niger are providing important insight into life in the African Sahara when it was green and lush .\tCD NNS VBN IN NNP NNP VBP VBG JJ NN IN NN IN DT JJ NNP WRB PRP VBD JJ CC JJ .\nPaul Sisco reports .\tNNP NNP VBZ .\nThe Ugandan military says it attacked a hideout of rebel leader Joseph Kony in southern Sudan this week , killing four of his bodyguards .\tDT JJ NN VBZ PRP VBD DT NN IN JJ NN NNP NNP IN JJ NNP DT NN , VBG CD IN PRP$ NNS .\nA military spokesman , Lieutenant Chris Magezi , says soldiers clashed with rebels commanded by Kony southwest of Juba on Tuesday .\tDT JJ NN , NNP NNP NNP , VBZ NNS VBN IN NNS VBN IN NNP NN IN NNP IN NNP .\nThe spokesman says one Ugandan soldier was wounded in the battle .\tDT NN VBZ CD JJ NN VBD VBN IN DT NN .\nHe says Kony and his fighters are now fleeing a Ugandan offensive , heading toward the Democratic Republic of Congo .\tPRP VBZ NNP CC PRP$ NNS VBP RB VBG DT JJ NN , VBG IN DT JJ NNP IN NNP .\nSudan allows Ugandan forces to pursue Kony and other leaders of the rebel Lord 's Resistance Army on its territory .\tNNP VBZ JJ NNS TO VB NNP CC JJ NNS IN DT NN NNP POS NNP NNP IN PRP$ NN .\nThe International Criminal Court has issued arrest warrants for Kony and four other LRA leaders .\tDT NNP NNP NNP VBZ VBN NN NNS IN NNP CC CD JJ NNP NNS .\nThe group is notorious for its brutality and use of child soldiers in northern Uganda .\tDT NN VBZ JJ IN PRP$ NN CC NN IN NN NNS IN JJ NNP .\nThe group 's 20-year uprising has displaced more than 1.5 million people .\tDT NN POS JJ NN VBZ VBN JJR IN CD CD NNS .\nRussian police have detained at least 30 anti-government protesters in Moscow , including a prize-winning 82-year-old human rights activist .\tJJ NNS VBP VBN IN JJS CD JJ NNS IN NNP , VBG DT JJ JJ JJ NNS NN .\nOpposition demonstrators gathered in central Moscow 's Triumfalnaya square Thursday in support of their constitutional right to freedom of assembly .\tNN NNS VBD IN JJ NNP POS NNP NN NNP IN NN IN PRP$ JJ NN TO NN IN NN .\nThey shouted slogans against Russian Prime Minister Vladimir Putin , saying he has reversed democratic reform .\tPRP VBD NNS IN JJ NNP NNP NNP NNP , VBG PRP VBZ VBN JJ NN .\nNews reports from Moscow say 82-year-old Russian dissident Lyudmila Alexeyeva was among those arrested .\tNNP NNS IN NNP VBP JJ JJ NN NNP NNP VBD IN DT VBN .\nShe is one of this year 's recipients of the European Parliament 's Sakharov prize for freedom of thought .\tPRP VBZ CD IN DT NN POS NNS IN DT NNP NNP POS NNP NN IN NN IN NN .\nShe is a founding member of the Moscow Helsinki group , one of Russia 's oldest human rights organizations .\tPRP VBZ DT JJ NN IN DT NNP NNP NN , CD IN NNP POS JJS JJ NNS NNS .\nA White House statement issued Thursday says the Obama administration is dismayed that Russian authorities prevented citizens from exercising their right to assemble peacefully .\tDT NNP NNP NN VBN NNP VBZ DT NNP NN VBZ JJ IN JJ NNS VBD NNS IN VBG PRP$ NN TO VB RB .\nThe statement says freedom of speech and assembly are universal rights that all governments should recognize and defend .\tDT NN VBZ NN IN NN CC NN VBP JJ NNS IN DT NNS MD VB CC VB .\nAt least 10 civilians died Thursday when Pakistani troops fired shells aimed at militants who are trying to impose strict Islamic law in northwestern Swat valley .\tIN JJS CD NNS VBD NNP WRB JJ NNS VBD NNS VBN IN NNS WP VBP VBG TO VB JJ JJ NN IN JJ NNP NN .\nLocal police say at least one home was destroyed in Allahabad village during the incident .\tJJ NNS VBP IN JJS CD NN VBD VBN IN NNP NN IN DT NN .\nAt least nine other people were wounded .\tIN JJS CD JJ NNS VBD VBN .\nPakistani troops have been trying to eject fighters loyal to cleric Maulana Fazlullah , who have taken control of some police checkpoints and towns in Swat .\tJJ NNS VBP VBN VBG TO VB NNS JJ TO NN NNP NNP , WP VBP VBN NN IN DT NN NNS CC NNS IN NNP .\nCloser to the border with Afghanistan , five Pakistani soldiers in a truck were killed today by a roadside bomb that went off in North Waziristan .\tNNP TO DT NN IN NNP , CD JJ NNS IN DT NN VBD VBN NN IN DT NN NN WDT VBD RP IN NNP NNP .\nEarlier this week , the Pakistani army reported gains in its battle against Islamists in Swat , saying troops had recaptured a strategic mountain peak .\tRBR DT NN , DT JJ NN VBD NNS IN PRP$ NN IN NNS IN NNP , VBG NNS VBD VBN DT JJ NN NN .\nThe army also said it had shut down the FM radio station used by Fazlullah to call for strict Islamic law and a holy war against the Pakistani government .\tDT NN RB VBD PRP VBD VBN RP DT NNP NN NN VBN IN NNP TO VB IN JJ JJ NN CC DT JJ NN IN DT JJ NN .\nHundreds of people angry over the rising cost of food demonstrated in eastern Afghanistan Tuesday .\tNNS IN NNS JJ IN DT VBG NN IN NN VBN IN JJ NNP NNP .\nProtesters blocked a key road connecting the town of Jalalabad to the capital , Kabul .\tNNP VBD DT JJ NN VBG DT NN IN NNP TO DT NN , NNP .\nThey demanded action from the government to bring down skyrocketing prices .\tPRP VBD NN IN DT NN TO VB RP VBG NNS .\nEarlier , the Afghan government announced it is setting aside $ 50 million to buy wheat from other countries , including Kazakhstan and neighboring Pakistan .\tRB , DT JJ NN VBD PRP VBZ VBG RB $ CD CD TO VB NN IN JJ NNS , VBG NNP CC JJ NNP .\nMany demonstrators expressed anger with Pakistan - upon which Afghans are heavily reliant for food imports .\tJJ NNS VBD NN IN NNP : IN WDT NNS VBP RB JJ IN NN NNS .\nPakistan has recently slowed its exports due to its own concerns about rising food prices .\tNNP VBZ RB VBN PRP$ NNS JJ TO PRP$ JJ NNS IN VBG NN NNS .\nElsewhere , in the western Afghan province of Herat , authorities say they believe militants have abducted two foreign employees of a U.S. security company .\tRB , IN DT JJ JJ NN IN NNP , NNS VBP PRP VBP NNS VBP VBN CD JJ NNS IN DT NNP NN NN .\nPolice say an Indian and a Nepalese worker disappeared Monday evening while traveling in the Adraskan district .\tNNS VBP DT JJ CC DT JJ NN VBD NNP NN IN VBG IN DT NNP NN .\nTheir driver also is missing .\tPRP$ NN RB VBZ VBG .\nA U.S. soldier charged in the Abu Ghraib prisoner abuse scandal in Iraq has pleaded guilty to one count of dereliction of duty .\tDT NNP NN VBN IN DT NNP NNP NN NN NN IN NNP VBZ VBN JJ TO CD NN IN NN IN NN .\nMilitary officials announced Tuesday that Army Specialist Megan Ambuhl entered her plea last Saturday at a summary court-martial in Baghdad .\tJJ NNS VBD NNP IN NNP NNP NNP NNP VBD PRP$ NN JJ NNP IN DT NN JJ IN NNP .\nArmy officials also say she was demoted to private and docked half a month 's pay .\tNNP NNS RB VBP PRP VBD VBN TO JJ CC JJ NN DT NN POS NN .\nThe 30-year-old woman is the third soldier from a military police company in Maryland to plead guilty to charges stemming from the scandal .\tDT JJ NN VBZ DT JJ NN IN DT JJ NN NN IN NNP TO VB JJ TO NNS VBG IN DT NN .\nOfficials say she failed to prevent or report the abuse by other U.S. soldiers .\tNNS VBP PRP VBD TO VB CC VB DT NN IN JJ NNP NNS .\nShe could have faced at least seven years in prison on other charges .\tPRP MD VB VBN IN JJS CD NNS IN NN IN JJ NNS .\nThe scandal erupted in April when photographs of U.S. soldiers taunting and humiliating naked Iraqi prisoners became public , sparking worldwide condemnation .\tDT NN VBD IN NNP WRB NNS IN NNP NNS VBG CC VBG JJ JJ NNS VBD JJ , VBG JJ NN .\nBurundi 's army says it killed at least 17 National Liberation Forces rebel fighters in recent clashes .\tNNP POS NN VBZ PRP VBD IN JJS CD NNP NNP NNP NN NNS IN JJ NNS .\nAt least one soldier and a civilian also were killed in fighting that began late Friday in a village west of the capital , Bujumbura\tIN JJS CD NN CC DT NN RB VBD VBN IN VBG IN VBD RB NNP IN DT NN NN IN DT NN , NNP\nThe government says FNL rebels were robbing the village when the army intervened to stop them .\tDT NN VBZ NNP NNS VBD VBG DT NN WRB DT NN VBD TO VB PRP .\nThe FNL signed a peace agreement with the government in July 2006 , but the accord was broken about a year later .\tDT NNP VBD DT NN NN IN DT NN IN NNP CD , CC DT NN VBD VBN IN DT NN RB .\nThe U.S. military in Iraq says American troops have detained six suspects in connection with last week 's assassination of Baghdad provincial governor Ali al-Haidari .\tDT NNP NN IN NNP VBZ JJ NNS VBP VBN CD NNS IN NN IN JJ NN POS NN IN NNP JJ NN NNP NNP .\nActing on a tip from residents , soldiers seized the suspects early Tuesday in a house in the same western Baghdad neighborhood where the governor was gunned down .\tVBG IN DT NN IN NNS , NNS VBD DT NNS RB NNP IN DT NN IN DT JJ JJ NNP NN WRB DT NN VBD VBN RB .\nMeanwhile , near the northern city of Mosul , two Iraqi National Guards were killed and two wounded in a car bomb attack Wednesday .\tRB , IN DT JJ NN IN NNP , CD JJ NNP NNPS VBD VBN CC CD VBN IN DT NN NN NN NNP .\nA similar attack in the area Tuesday killed three other guardsmen .\tDT JJ NN IN DT NN NNP VBD CD JJ NNS .\nIraqi officials , police and national guards have been prime targets of insurgents who are seeking to further destabilize the country before the January 30 elections .\tJJ NNS , NN CC JJ NNS VBP VBN JJ NNS IN NNS WP VBP VBG TO RBR VB DT NN IN DT NNP CD NNS .\nDespite the violence , interim Prime Minister Iyad Allawi and President Bush have said the vote for a national assembly must go ahead .\tIN DT NN , JJ NNP NNP NNP NNP CC NNP NNP VBP VBN DT NN IN DT JJ NN MD VB RB .\nA British court has remanded into custody the first suspect formally charged in connection with the failed July 21 bombings on the London transport system .\tDT JJ NN VBZ VBN IN NN DT JJ NN RB VBN IN NN IN DT VBN NNP CD NNS IN DT NNP NN NN .\nIsmael Abdurahman , who appeared in a London court Thursday , is accused of withholding information that may have helped police find those involved in terrorism .\tNNP NNP , WP VBD IN DT NNP NN NNP , VBZ VBN IN VBG NN WDT MD VB VBN NNS VBP DT VBN IN NN .\nMeanwhile , thousands of British police are patrolling the streets of London , four weeks after the July 7 bomb attacks on the city 's transit system that killed 56 people , including four suicide bombers .\tRB , NNS IN JJ NNS VBP VBG DT NNS IN NNP , CD NNS IN DT NNP CD NN NNS IN DT NN POS NN NN WDT VBD CD NNS , VBG CD NN NNS .\nIn another development , an Italian court has scheduled an August 17 extradition hearing for one of the suspects in the July 21 failed London bombings .\tIN DT NN , DT JJ NN VBZ VBN DT NNP CD NN NN IN CD IN DT NNS IN DT NNP CD VBN NNP NNS .\nBritish authorities have alleged that Hamdi Issac , also known as Osman Hussein , fled to Italy after he and three other men tried to set off bombs .\tJJ NNS VBP VBN IN NNP NNP , RB VBN IN NNP NNP , VBD TO NNP IN PRP CC CD JJ NNS VBD TO VB RP NNS .\nMr. Issac , a British citizen of Ethiopian descent , was arrested last Friday .\tNNP NNP , DT JJ NN IN JJ NN , VBD VBN JJ NNP .\nAfghan warlord Abdul Rashid Dostum has narrowly escaped an assassination attempt that wounded 20 other people .\tJJ NN NNP NNP NNP VBZ RB VBN DT NN NN WDT VBD CD JJ NNS .\nOfficials say a suicide bomber blew himself up near the general outside a northern mosque where the warlord had been praying for the Eid al-Adha Muslim festival .\tNNS VBP DT NN NN VBD PRP RP IN DT NN IN DT JJ NN WRB DT NN VBD VBN VBG IN DT NNP NNP NNP NN .\nGeneral Dostum says he believes al-Qaida was behind the attack .\tNNP NNP VBZ PRP VBZ NNP VBD IN DT NN .\nBut the Associated Press quotes a Taleban leader saying the Taleban carried out the attack .\tCC DT NNP NNP VBZ DT NNP NN VBG DT NNP VBD IN DT NN .\nMeanwhile a statement purportedly from Taleban leader Mullah Omar dismissed reports that the radical Islamic movement 's fighters were willing to lay down arms in exchange for amnesty .\tRB DT NN RB IN NNP NN NNP NNP VBD NNS IN DT JJ NNP NN POS NNS VBD JJ TO VB RP NNS IN NN IN NN .\nA statement to news agencies says the Taleban will not enter into a dialogue with the Afghan government as long as foreign soldiers remain in Afghanistan .\tDT NN TO NN NNS VBZ DT NNP MD RB VB IN DT NN IN DT JJ NN RB RB IN JJ NNS VBP IN NNP .\nA defiant Iranian president says the U.N. nuclear watchdog agency can issue as many resolutions as it likes , but says it can not prevent Iranian progress .\tDT JJ JJ NN VBZ DT NNP JJ NN NN MD VB IN JJ NNS IN PRP VBZ , CC VBZ PRP MD RB VB JJ NN .\nMahmoud Ahmadinejad spoke Sunday , one day after the International Atomic Energy Agency voted overwhelmingly to report Iran to the U.N. Security Council over its suspect nuclear program .\tNNP NNP VBD NNP , CD NN IN DT NNP NNP NNP NNP VBD RB TO VB NNP TO DT NNP NNP NNP IN PRP$ JJ JJ NN .\nIran insists its nuclear program is peaceful , but Western governments accuse Tehran of seeking to build an atomic bomb .\tNNP VBZ PRP$ JJ NN VBZ JJ , CC JJ NNS VBP NNP IN VBG TO VB DT JJ NN .\nIn comments reported by the Iranian news agency , the Iranian president pointed to the West and said ' it is you who have atomic weapons and should be disarmed . '\tIN NNS VBN IN DT JJ NN NN , DT JJ NN VBD TO DT NNP CC VBD `` PRP VBZ PRP WP VBP JJ NNS CC MD VB VBN . ``\nHe said Iran has no need for a nuclear arsenal .\tPRP VBD NNP VBZ DT NN IN DT JJ NN .\nEarlier , the Iranian Foreign Ministry confirmed that Tehran has stopped all cooperation with the IAEA and will go forward with plans to enrich uranium - a process that can be used either to make an atomic bomb or to generate electricity .\tRB , DT JJ NNP NNP VBD IN NNP VBZ VBN DT NN IN DT NNP CC MD VB RB IN NNS TO VB NN IN DT NN WDT MD VB VBN DT TO VB DT JJ NN CC TO VB NN .\nNATO says an explosion in Afghanistan 's eastern province of Ghazni has killed two soldiers and a civilian interpreter .\tNNP VBZ DT NN IN NNP POS JJ NN IN NNP VBZ VBN CD NNS CC DT JJ NN .\nIn a statement released Wednesday , NATO officials say the soldiers and the interpreter were on patrol Tuesday when they were hit by the blast .\tIN DT NN VBN NNP , NNP NNS VBP DT NNS CC DT NN VBD IN NN NNP WRB PRP VBD VBN IN DT NN .\nNATO says a third soldier was wounded .\tNNP VBZ DT JJ NN VBD VBN .\nNATO did not release the nationalities of the soldiers .\tNNP VBD RB VB DT NNS IN DT NNS .\nMeanwhile , German officials Wednesday announced the arrest of two men they say were planning an attack on a NATO base in the northern Afghan city of Mazar-i-Sharif .\tRB , JJ NNS NNP VBD DT NN IN CD NNS PRP VBP VBD VBG DT NN IN DT NNP NN IN DT JJ JJ NN IN NNP .\nOfficials say Afghan authorities stopped the men - from Pakistan and Tajikistan - last week in a car stuffed with explosives .\tNNS VBP JJ NNS VBD DT NNS : IN NNP CC NNP : JJ NN IN DT NN VBN IN NNS .\nThousands of Afghans have staged a peaceful protest against the killing of a prominent pro-government Muslim cleric in a mosque bomb blast .\tNNS IN NNS VBP VBN DT JJ NN IN DT NN IN DT JJ NN NN NN IN DT NN NN NN .\nAt least 5,000 people Sunday took to the streets in the eastern Afghan province of Khost , where Mullah Ahmad Khan was killed Friday during midday prayers .\tIN JJS CD NNS NNP VBD TO DT NNS IN DT JJ JJ NN IN NNP , WRB NNP NNP NNP VBD VBN NNP IN NN NNS .\nAt least 15 worshippers were wounded in the blast .\tIN JJS CD NNS VBD VBN IN DT NN .\nThe protesters urged the government to provide better security for religious leaders .\tDT NNS VBD DT NN TO VB JJR NN IN JJ NNS .\nNo one has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nBut authorities blame Taleban insurgents who have in the past killed several influential clerics who had denounced the militants and expressed support for President Hamid Karzai .\tCC NNS VBP NNP NNS WP VBP IN DT NN VBD JJ JJ NNS WP VBD VBN DT NNS CC VBD NN IN NNP NNP NNP .\nPresident Bush is to meet his Russian counterpart , Vladimir Putin , in Washington later this month for talks on bilateral and global issues .\tNNP NNP VBZ TO VB PRP$ JJ NN , NNP NNP , IN NNP RB DT NN IN NNS IN NN CC JJ NNS .\nThe White House said Friday the two leaders will discuss ways to deepen the U.S.-Russian partnership to face current challenges and opportunities .\tDT NNP NNP VBD NNP DT CD NNS MD VB NNS TO VB DT JJ NN TO VB JJ NNS CC NNS .\nThe September 16th meeting will follow a summit of leaders of the United Nations Security Council , focusing on ways to combat terrorism .\tDT NNP JJ NN MD VB DT NN IN NNS IN DT NNP NNP NNP NNP , VBG IN NNS TO VB NN .\nMr. Putin and Mr. Bush have stressed they have a close relationship , despite some differences over international policy .\tNNP NNP CC NNP NNP VBP VBN PRP VBP DT JJ NN , IN DT NNS IN JJ NN .\nMoscow has been critical of the war in Iraq , and the United States has called on Russia to do more to promote human rights in the former Soviet Union .\tNNP VBZ VBN JJ IN DT NN IN NNP , CC DT NNP NNP VBZ VBN IN NNP TO VB JJR TO VB JJ NNS IN DT JJ NNP NNP .\nA series of rebel attacks in Iraq have killed some 25 people as U.S. officials pledge to investigate recent ' friendly fire ' killings .\tDT NN IN JJ NNS IN NNP VBP VBN DT CD NNS IN NNP NNS NN TO VB JJ `` JJ NN `` NNS .\nA suicide attack killed at least 15 people and wounded nearly two dozen more north of Baghdad .\tDT NN NN VBD IN JJS CD NNS CC VBD RB CD NN JJR NN IN NNP .\nNearby in Baquba , rebel attacks on Iraqi soldiers and police killed at least 10 people .\tRB IN NNP , JJ NNS IN JJ NNS CC NNS VBD IN JJS CD NNS .\nAlso Monday , Iraqi officials issued new photos of wanted Jordanian terrorist Abu Musab al Zarqawi , showing him with short hair and a closely cropped beard .\tRB NNP , JJ NNS VBD JJ NNS IN JJ JJ JJ NNP NNP NNP NNP , VBG PRP IN JJ NN CC DT RB VBN NN .\nHis group reportedly claimed responsibility for several of Monday 's attacks .\tPRP$ NN RB VBD NN IN NN IN NNP POS NNS .\nAlso today , Bulgaria 's defense minister Nikolai Svinarov says an investigation shows U.S. troops were probably responsible for the shooting death of a Bulgarian soldier last Friday .\tRB NN , NNP POS NN NN NNP NNP VBZ DT NN VBZ NNP NNS VBD RB JJ IN DT NN NN IN DT JJ NN JJ NNP .\nThat same day , U.S. troops shot dead an Italian intelligence agent at a checkpoint .\tDT JJ NN , NNP NNS VBD JJ DT JJ NN NN IN DT NN .\nU.S. officials have ordered investigations into both incidents .\tNNP NNS VBP VBN NNS IN DT NNS .\nThe U.S. Senate is to vote later Thursday , on an immigration reform bill that would toughen border security and give millions of illegals a chance to become American citizens .\tDT NNP NNP VBZ TO VB RB NNP , IN DT NN NN NN WDT MD VB NN NN CC VB NNS IN NNS DT NN TO VB JJ NNS .\nOn Wednesday , the Senate voted to limit debate on the controversial legislation .\tIN NNP , DT NNP VBD TO VB NN IN DT JJ NN .\nTwo other provisions in the bill would create a so-called guest worker program and would deport illegal immigrants who have been in the country for fewer than five years .\tCD JJ NNS IN DT NN MD VB DT JJ NN NN NN CC MD VB JJ NNS WP VBP VBN IN DT NN IN JJR IN CD NNS .\nIf the Senate passes the legislation , it will have to be reconciled with a bill passed by the House of Representatives last December .\tIN DT NNP VBZ DT NN , PRP MD VB TO VB VBN IN DT NN VBN IN DT NNP IN NNPS JJ NNP .\nThat bill emphasized border security and would make it a felony to be in the United States illegally .\tDT NN VBD NN NN CC MD VB PRP DT NN TO VB IN DT NNP NNPS RB .\nThe issue has sparked widespread demonstrations across the United States .\tDT NN VBZ VBN JJ NNS IN DT NNP NNPS .\nAn international development group is working to raise $ 2 billion in aid to help rebuild and reform Haiti 's education system .\tDT JJ NN NN VBZ VBG TO VB $ CD CD IN NN TO VB VB CC VB NNP POS NN NN .\nThe Inter-American Development Bank is leading a proposed five-year effort to train teachers , improve facilities and adopt a national curriculum .\tDT NNP NNP NNP VBZ VBG DT VBN JJ NN TO VB NNS , VB NNS CC VB DT JJ NN .\nMore than 4,000 schools were damaged or destroyed during the earthquake in January that killed more than 2,00,000 people .\tJJR IN CD NNS VBD VBN CC VBN IN DT NN IN NNP WDT VBD JJR IN CD NNS .\nThe IDB says that before the earthquake , only half of Haiti 's children of primary school age were enrolled in classes .\tDT NNP VBZ IN IN DT NN , RB NN IN NNP POS NNS IN JJ NN NN VBD VBN IN NNS .\nHaitian President Rene Preval announced the plan Saturday along with IDB President Luis Alberto Moreno .\tJJ NNP NNP NNP VBD DT NN NNP IN IN NNP NNP NNP NNP NNP .\nPresident Bush says the United States needs better intelligence efforts to make gains in its global war on terrorism .\tNNP NNP VBZ DT NNP NNPS VBZ JJR NN NNS TO VB NNS IN PRP$ JJ NN IN NN .\nIn an interview with CNN , the president said Tuesday that human intelligence efforts need to be improved .\tIN DT NN IN NNP , DT NN VBD NNP IN JJ NN NNS VBP TO VB VBN .\nHe said the ability to read the enemy 's mail and hear its phone calls would make a difference in fighting terrorism .\tPRP VBD DT NN TO VB DT NN POS NN CC VB PRP$ NN NNS MD VB DT NN IN VBG NN .\nMr. Bush said a commission has been formed to determine how best to improve human intelligence gathering .\tNNP NNP VBD DT NN VBZ VBN VBN TO VB WRB JJS TO VB JJ NN NN .\nDuring the interview , President Bush said the United States has not done as good a job in promoting American values as propagandists have in depicting America as a hateful place .\tIN DT NN , NNP NNP VBD DT NNP NNPS VBZ RB VBN IN JJ DT NN IN VBG JJ NNS IN NNS VBP IN VBG NNP IN DT JJ NN .\nMr. Bush also acknowledged he has made difficult decisions , including the one to invade Iraq , that have hindered American diplomacy in the Middle East .\tNNP NNP RB VBD PRP VBZ VBN JJ NNS , VBG DT CD TO VB NNP , WDT VBP VBN JJ NN IN DT NNP NNP .\nBut , the president predicted that a free country will emerge in Iraq , proving the merit of his policies there .\tCC , DT NN VBD IN DT JJ NN MD VB IN NNP , VBG DT NN IN PRP$ NNS RB .\nThe Los Angeles Times is reporting that the Bush Administration has forged a strong intelligence partnership with Sudan , and the African nation has become an ally in the U.S.-led war on terror .\tDT NNP NNP NNP VBZ VBG IN DT NNP NNP VBZ VBN DT JJ NN NN IN NNP , CC DT JJ NN VBZ VBN DT NN IN DT JJ NN IN NN .\nThe newspaper cites U.S. government sources as saying Khartoum has provided access to terror suspects and has shared intelligence data with the United States , even though it remains on the U.S. list of state sponsors of terrorism .\tDT NN VBZ NNP NN NNS IN VBG NNP VBZ VBN NN TO NN NNS CC VBZ VBN NN NNS IN DT NNP NNPS , RB IN PRP VBZ IN DT NNP NN IN NN NNS IN NN .\nThe report says the Central Intelligence Agency has flown Sudan 's intelligence chief to Washington as recently as last week .\tDT NN VBZ DT NNP NNP NNP VBZ VBN NNP POS NN NN TO NNP RB RB IN JJ NN .\nIn exchange for its collaboration , the Times says Sudan is seeking to be removed from the list of state sponsors of terrorism and for Washington to lift economic sanctions .\tIN NN IN PRP$ NN , DT NNP VBZ NNP VBZ VBG TO VB VBN IN DT NN IN NN NNS IN NN CC IN NNP TO VB JJ NNS .\nA decade ago , Osama bin Laden and his al-Qaida network were based in Sudan .\tDT NN RB , NNP NNP NNP CC PRP$ NNP NN VBD VBN IN NNP .\nA new report from the International Monetary Fund says global economic growth will slow more than one percent this year .\tDT JJ NN IN DT NNP NNP NNP VBZ JJ JJ NN MD VB JJR IN CD NN DT NN .\nThe IMF study says global growth will decline to 3.7 percent in 2008 and stay at about the same level the following year .\tDT NNP NN VBZ JJ NN MD VB TO CD NN IN CD CC VB IN IN DT JJ NN DT JJ NN .\nThe economists blame the slowdown on problems in advanced economies , particularly the United States .\tDT NNS VBP DT NN IN NNS IN JJ NNS , RB DT NNP NNPS .\nBut they say developing nations are weathering this economic down-turn better than they have similar incidents in the past because they are better integrated into the world economy .\tCC PRP VBP VBG NNS VBP VBG DT JJ NN JJR IN PRP VBP JJ NNS IN DT NN IN PRP VBP RB VBN IN DT NN NN .\nMany developing nations have benefited from major price increases for the commodities they export , and have worked to diversify their economies to ease the ups and downs that affect commodity markets .\tJJ VBG NNS VBP VBN IN JJ NN NNS IN DT NNS PRP VBP , CC VBP VBN TO VB PRP$ NNS TO VB DT NNS CC NNS WDT VBP NN NNS .\nHong Kong 's charter carrier , CR Airways , has purchased 40 Boeing planes in a deal worth more than $ 3 billion .\tNNP NNP POS NN NN , NNP NNP , VBZ VBN CD NNP NNS IN DT NN NN JJR IN $ CD CD .\nThe carrier Tuesday said it bought 30 Boeing 737-800 airliners and 10 Boeing 787s in order to expand its services in China and Asia .\tDT NN NNP VBD PRP VBD CD NNP NNP NNS CC CD NNP NNPS IN NN TO VB PRP$ NNS IN NNP CC NNP .\nThe deal is the latest in a series of recent boosts for the American manufacturer .\tDT NN VBZ DT JJS IN DT NN IN JJ NNS IN DT JJ NN .\nEarlier this month , Hong Kong flag carrier Cathay Pacific bought more than 30 Boeing aircraft in a nearly $ 3-billion deal .\tRBR DT NN , NNP NNP NN NN NNP NNP VBD JJR IN CD NNP NN IN DT RB $ CD NN .\nAnd in November , China said it plans to buy 70 Boeing 737 airliners in a deal worth $ 4 billion .\tCC IN NNP , NNP VBD PRP VBZ TO VB CD NNP CD NNS IN DT NN JJ $ CD CD .\nPolice in northern Iraq say security forces have killed at least two people and wounded several others who were protesting a rise in fuel prices and lack of basic services in the city .\tNNS IN JJ NNP VBP NN NNS VBP VBN IN JJS CD NNS CC VBD JJ NNS WP VBD VBG DT NN IN NN NNS CC NN IN JJ NNS IN DT NN .\nAuthorities say Sunday 's riot broke out in a mainly Kurdish district of Kirkuk , as angry protesters set fire to several gas stations and an oil company building in the city .\tNNS VBP NNP POS NN VBD RP IN DT RB JJ NN IN NNP , IN JJ NNS VBN NN TO JJ NN NNS CC DT NN NN NN IN DT NN .\nPolice later imposed a curfew .\tNNS RB VBD DT NN .\nIn Baghdad , a bomb blast near one of Iraq 's largest oil refineries triggered a pipeline fire that threatened to worsen the country 's oil crisis .\tIN NNP , DT NN NN IN CD IN NNP POS JJS NN NNS VBD DT NN NN WDT VBD TO VB DT NN POS NN NN .\nThe bombing was the second in recent days .\tDT NN VBD DT JJ IN JJ NNS .\nMeanwhile , Iraqi police say at least 11 car bombs - most of them in Baghdad - exploded Sunday , wounding at least 20 people .\tRB , JJ NNS VBP IN JJS CD NN NNS IN JJS IN PRP IN NNP : VBD NNP , VBG IN JJS CD NNS .\nSudanese officials say they are readying trials against suspects accused of rape and murder in the western Darfur region .\tJJ NNS VBP PRP VBP VBG NNS IN NNS VBN IN NN CC NN IN DT JJ NNP NN .\nAuthorities say the trials may include government officials and security forces in the troubled area .\tNNS VBP DT NNS MD VB NN NNS CC NN NNS IN DT JJ NN .\nSudan 's Justice Minister , Ali Mohamed Osman Yassin , told Reuters news agency Monday that 15 police and security agents have been detained for alleged abuses .\tNNP POS NNP NNP , NNP NNP NNP NNP , VBD NNP NN NN NNP IN CD NNS CC NN NNS VBP VBN VBN IN JJ NNS .\nHe vowed to continue an investigation into human rights violations and crimes against humanity in Darfur .\tPRP VBD TO VB DT NN IN JJ NNS NNS CC NNS IN NN IN NNP .\nThe United States and other countries have been pressing Sudan 's government to end violence in Darfur and punish those responsible .\tDT NNP NNPS CC JJ NNS VBP VBN VBG NNP POS NN TO VB NN IN NNP CC VB DT JJ .\nThe U.N. Security Council this week is to consider a French proposal to send Darfur suspects to the International Criminal Court .\tDT NNP NNP NNP DT NN VBZ TO VB DT JJ NN TO VB NNP NNS TO DT NNP NNP NNP .\nSudan 's foreign minister , Mustapha Osman Ismail , says his country would refuse the measure , if passed .\tNNP POS JJ NN , NNP NNP NNP , VBZ PRP$ NN MD VB DT NN , IN VBN .\nA manuscript of composer Ludwig van Beethoven 's ' Gross Fuge ' has sold at a London auction house for $ 1.9 million .\tDT NN IN NN NNP NNP NNP POS `` NNP NNP `` VBZ VBN IN DT NNP NN NN IN $ CD CD .\nSotheby auctioneers say an anonymous buyer purchased the manuscript , which was discovered in a library at the Palmer Theological Seminary in Philadelphia .\tNNP NNS VBP DT JJ NN VBD DT NN , WDT VBD VBN IN DT NN IN DT NNP NNP NNP IN NNP .\nThe 80-page document , first performed in 1826 , is a piano duet version of Beethoven 's string quartet in B flat .\tDT JJ NN , RB VBN IN CD , VBZ DT NN NN NN IN NNP POS NN NN IN NNP JJ .\nIt is written in brown and black ink and includes annotations in pencil and red crayon .\tPRP VBZ VBN IN JJ CC JJ NN CC VBZ NNS IN NN CC JJ NN .\nThe head of Sotheby 's manuscript department says the rediscovery of the document will allow a complete reassessment of what he called ' extraordinary music . '\tDT NN IN NNP POS NN NN VBZ DT NN IN DT NN MD VB DT JJ NN IN WP PRP VBD `` JJ NN . ``\nBeethoven , who continued to work as he slowly went deaf , wrote the work in the years prior to his death in 1827 .\tNNP , WP VBD TO VB IN PRP RB VBD NN , VBD DT NN IN DT NNS RB TO PRP$ NN IN CD .\nIraqi authorities say they have foiled an insurgent plot to bomb the trial of Saddam Hussein , which resumes in Baghdad Monday .\tJJ NNS VBP PRP VBP VBN DT JJ NN TO VB DT NN IN NNP NNP , WDT VBZ IN NNP NNP .\nThey say the attackers from the 1920 Revolution Brigades planned to fire rockets at the court building .\tPRP VBP DT NNS IN DT CD NN NNS VBN TO VB NNS IN DT NN NN .\nFew other details were released .\tJJ JJ NNS VBD VBN .\nThe alleged attack plot was the latest security issue to plague the trial , including the assassination of two defense lawyers .\tDT JJ NN NN VBD DT JJS NN NN TO VB DT NN , VBG DT NN IN CD NN NNS .\nDuring Monday 's session , the first of 10 witnesses is expected to testify .\tIN NNP POS NN , DT NN IN CD NNS VBZ VBN TO VB .\nSaddam and seven members of his former regime are charged with the torture and killing of more than 140 people in the mainly Shi'ite Muslim town of Dujail following a 1982 attempt on his life there .\tNNP CC CD NNS IN PRP$ JJ NN VBP VBN IN DT NN CC NN IN JJR IN CD NNS IN DT RB NNP NNP NN IN NNP VBG DT CD NN IN PRP$ NN RB .\nAustralian Prime Minister John Howard has confirmed that U.S. intelligence agencies had restricted his country 's access to classified material on the war in Iraq , forcing him to repeatedly appeal to President Bush for access .\tJJ NNP NNP NNP NNP VBZ VBN IN NNP NN NNS VBD VBN PRP$ NN POS NN TO JJ NN IN DT NN IN NNP , VBG PRP TO RB VB TO NNP NNP IN NN .\nMr. Howard says , prior to 2005 , the U.S. Defense Department had restricted Australian military access to vital information on Iraq .\tNNP NNP VBZ , RB TO CD , DT NNP NNP NNP VBD VBN JJ JJ NN TO JJ NN IN NNP .\nMr. Bush signed an order in July 2004 granting Australia and Britain special access to intelligence for use in planning combat and counter-terrorism operations .\tNNP NNP VBD DT NN IN NNP CD VBG NNP CC NNP JJ NN TO NN IN NN IN NN NN CC NN NNS .\nBut Mr. Howard said U.S. agencies initially resisted the order because of their reluctance to share information .\tCC NNP NNP VBD NNP NNS RB VBD DT NN IN IN PRP$ NN TO VB NN .\nThe Australian leader says the U.S. intelligence restrictions were lifted last year , after he again appealed to Mr. Bush to deliver on his commitments .\tDT JJ NN VBZ DT NNP NN NNS VBD VBN JJ NN , IN PRP RB VBD TO NNP NNP TO VB IN PRP$ NNS .\nThe Iranian government has closed an official newspaper because of a cartoon the paper ran last Friday .\tDT JJ NN VBZ VBN DT JJ NN IN IN DT NN DT NN VBD JJ NNP .\nState television quotes the country 's chief prosecutor Saeed Mortazavi Tuesday as saying the paper 's cartoonist Mana Neyestani and one of its editors have been detained .\tNN NN VBZ DT NN POS JJ NN NNP NNP NNP IN VBG DT NN POS NN NNP NNP CC CD IN PRP$ NNS VBP VBN VBN .\nThe cartoon , which poked fun at ethnic Azeris , sparked riots in the northwestern city of Tabriz , the capital of Eastern Azerbaijan province .\tDT NN , WDT VBD NN IN JJ NNS , VBD NNS IN DT JJ NN IN NNP , DT NN IN NNP NNP NN .\nThe cartoon portrayed an Azeri as a cockroach who was speaking Azeri .\tDT NN VBD DT NN IN DT NN WP VBD VBG NNP .\nOn Monday , rioting Azeris pelted government buildings with stones .\tIN NNP , VBG NNS JJ NN NNS IN NNS .\nPolice used tear gas to disperse them .\tNNS VBD JJ NN TO VB PRP .\nAbout 25 percent of Iran 's population is Azeri .\tIN CD NN IN NNP POS NN VBZ NN .\nAzeris speak a language close to Turkish .\tNNS VBP DT NN RB IN NNP .\nThe Indonesian government and rebels from Aceh province plan to sign a formal peace deal on August 15 .\tDT JJ NN CC NNS IN NNP NN NN TO VB DT JJ NN NN IN NNP CD .\nThe agreement will bring an end to a nearly three-decade war between the Free Aceh Movement and the government in Jakarta .\tDT NN MD VB DT NN TO DT RB JJ NN IN DT NNP NNP NNP CC DT NN IN NNP .\nA joint statement following peace talks in Helsinki , Finland , Sunday says the agreement will bring ' a peaceful , comprehensive , and sustainable ' solution to the conflict in Aceh , which has cost some 12,000 lives since 1976 .\tDT JJ NN VBG NN NNS IN NNP , NNP , NNP VBZ DT NN MD VB `` DT JJ , JJ , CC JJ `` NN TO DT NN IN NNP , WDT VBZ VBN DT CD NNS IN CD .\nThough details of the agreement have not been released , the two sides say it covers political participation , human rights , an amnesty , and security arrangements in the province .\tIN NNS IN DT NN VBP RB VBN VBN , DT CD NNS VBP PRP VBZ JJ NN , JJ NNS , DT NN , CC NN NNS IN DT NN .\nPeace efforts gained momentum this year following the December tsunami that devastated Indonesia 's Sumatra island , where Aceh is located .\tNN NNS VBD NN DT NN VBG DT NNP NN WDT VBD NNP POS NNP NN , WRB NNP VBZ VBN .\nIraqi police said a suicide car bomber has killed 10 people in Kirkuk .\tJJ NNS VBD DT NN NN NN VBZ VBN CD NNS IN NNP .\nPolice said the attacker appeared to target a group of police officers protecting the northern city 's oil infrastructure .\tNNS VBD DT NN VBD TO VB DT NN IN NN NNS VBG DT JJ NN POS NN NN .\nOfficials said 22 other people were injured in Wednesday 's attack .\tNNS VBD CD JJ NNS VBD VBN IN NNP POS NN .\nTensions remain high in Kirkuk , whose status has yet to be resolved .\tNNS VBP JJ IN NNP , WP$ NN VBZ RB TO VB VBN .\nIraqi Kurds , Arabs , and Turkmen lay competing claims to the oil-rich city .\tJJ NNPS , NNS , CC NNP VBD VBG NNS TO DT JJ NN .\nViolence has dropped across much of the country , but al-Qaida in Iraq maintains a foothold in areas across the north .\tNN VBZ VBN IN NN IN DT NN , CC NNP IN NNP VBZ DT NN IN NNS IN DT NN .\nThe European Union has opened membership talks with Croatia after the United Nations ' chief war crimes prosecutor said the Balkan country is now cooperating with the International Criminal Tribunal for the former Yugoslavia .\tDT NNP NNP VBZ VBN NN NNS IN NNP IN DT NNP NNP POS JJ NN NNS NN VBD DT NNP NN VBZ RB VBG IN DT NNP NNP NNP IN DT JJ NNP .\nBritish Foreign Secretary Jack Straw led a brief ceremony early Tuesday formally opening the talks .\tJJ NNP NNP NNP NNP VBD DT JJ NN RB NNP RB VBG DT NNS .\nCroatian Prime Minister Ivo Sanader attended the event .\tJJ NNP NNP NNP NNP VBD DT NN .\nThe European Union postponed membership talks with Croatia in March when U.N. war crimes prosecutor Carla del Ponte said Zagreb was not doing enough to find indicted war crimes suspect General Ante Gotovina .\tDT NNP NNP VBD NN NNS IN NNP IN NNP WRB NNP NN NNS NN NNP NNP NNP VBD NNP VBD RB VBG RB TO VB VBN NN NNS VBP NNP NNP NNP .\nMs. del Ponte said Monday Croatia is now fully cooperating with the tribunal , but the EU ministers warn talks could be called off again if Zagreb does not continue its compliance with the Hague court .\tNNP NNP NNP VBD NNP NNP VBZ RB RB VBG IN DT NN , CC DT NNP NNS VBP NNS MD VB VBN RP RB IN NNP VBZ RB VB PRP$ NN IN DT NNP NN .\nCroatia hopes to join the European Union in 2009 .\tNNP VBZ TO VB DT NNP NNP IN CD .\nThe United Nations Security Council has called on Lebanon to expand its security presence in the south , following the withdrawal of Syrian troops .\tDT NNP NNP NNP NNP VBZ VBN IN NNP TO VB PRP$ NN NN IN DT NN , VBG DT NN IN JJ NNS .\nIn a resolution passed to Friday , the Council said Lebanese troops must show they can maintain security in the country , especially along the southern boundary with Israel .\tIN DT NN VBN TO NNP , DT NNP VBD JJ NNS MD VB PRP MD VB NN IN DT NN , RB IN DT JJ NN IN NNP .\nThe measure condemned violence between Israeli troops and Hezbollah militants in the area , including a June incident that killed three people .\tDT NN VBD NN IN JJ NNS CC NNP NNS IN DT NN , VBG DT NNP NN WDT VBD CD NNS .\nThe Security Council also agreed to extend until January a U.N. mission in Lebanon , which includes some two thousand peacekeepers .\tDT NNP NNP RB VBD TO VB IN NNP DT NNP NN IN NNP , WDT VBZ DT CD CD NNS .\nThat U.N. force was created in 1978 to confirm Israel 's withdrawal from Lebanon , after Israeli troops invaded the country in search of Palestinian militants .\tDT NNP NN VBD VBN IN CD TO VB NNP POS NN IN NNP , IN JJ NNS VBD DT NN IN NN IN JJ NNS .\nPacific First Financial Corp. said shareholders approved its acquisition by Royal Trustco Ltd. of Toronto for $ 27 a share , or $ 212 mi llion .\tNNP CD NNP NNP VBD NNS VBD PRP$ NN IN NNP NNP NNP IN NNP IN $ CD DT NN , CC $ CD NN NN .\nThe thrift holding company said it expects to obtain regulatory approval and complete the transaction by year-end .\tDT NN VBG NN VBD PRP VBZ TO VB JJ NN CC VB DT NN IN NN .\nThe United Kingdom has historically played a leading role in developing parliamentary democracy and in advancing literature and science .\tDT NNP NNP VBZ RB VBN DT JJ NN IN VBG JJ NN CC IN VBG NN CC NN .\nAt its zenith in the 19th century , the British Empire stretched over one-fourth of the earth 's surface .\tIN PRP$ NN IN DT JJ NN , DT NNP NNP VBD IN NN IN DT NN POS NN .\nThe first half of the 20th century saw the UK 's strength seriously depleted in two world wars and the Irish republic withdraw from the union .\tDT JJ NN IN DT JJ NN VBD DT NNP POS NN RB VBD IN CD NN NNS CC DT JJ NN VB IN DT NN .\nThe second half witnessed the dismantling of the Empire and the UK rebuilding itself into a modern and prosperous European nation .\tDT JJ NN VBD DT NN IN DT NN CC DT NNP NN PRP IN DT JJ CC JJ JJ NN .\nAs one of five permanent members of the UN Security Council , a founding member of NATO , and of the Commonwealth , the UK pursues a global approach to foreign policy .\tIN CD IN CD JJ NNS IN DT NNP NNP NNP , DT NN NN IN NNP , CC IN DT NNP , DT NNP VBZ DT JJ NN TO JJ NN .\nThe UK is also an active member of the EU , although it chose to remain outside the Economic and Monetary Union .\tDT NNP VBZ RB DT JJ NN IN DT NNP , IN PRP VBD TO VB IN DT NNP CC NNP NNP .\nThe Scottish Parliament , the National Assembly for Wales , and the Northern Ireland Assembly were established in 1999 .\tDT NNP NNP , DT NNP NNP IN NNP , CC DT NNP NNP NNP VBD VBN IN CD .\nThe latter was suspended until May 2007 due to wrangling over the peace process , but devolution was fully completed in March 2010 .\tDT NN VBD VBN IN NNP CD JJ TO VBG IN DT NN NN , CC NN VBD RB VBN IN NNP CD .\nAlthough explored by the Spanish early in the 16th century , initial attempts at colonizing Costa Rica proved unsuccessful due to a combination of factors , including : disease from mosquito-infested swamps , brutal heat , resistance by natives , and pirate raids .\tIN VBN IN DT JJ JJ IN DT JJ NN , JJ NNS IN VBG NNP NNP VBD JJ JJ TO DT NN IN NNS , VBG IN NN IN JJ NNS , JJ NN , NN IN NNS , CC VB NNS .\nIt was not until 1563 that a permanent settlement of Cartago was established in the cooler , fertile central highlands .\tPRP VBD RB IN CD IN DT JJ NN IN NNP VBD VBN IN DT NN , JJ JJ NNS .\nThe area remained a colony for some two and a half centuries .\tDT NN VBD DT NN IN DT CD CC DT NN NNS .\nIn 1821 , Costa Rica became one of several Central American provinces that jointly declared their independence from Spain .\tIN CD , NNP NNP VBD CD IN JJ JJ JJ NNS WDT RB VBD PRP$ NN IN NNP .\nTwo years later it joined the United Provinces of Central America , but this federation disintegrated in 1838 , at which time Costa Rica proclaimed its sovereignty and independence .\tCD NNS RB PRP VBD DT NNP NNPS IN NNP NNP , CC DT NN VBD IN CD , IN WDT NN NNP NNP VBD PRP$ NN CC NN .\nSince the late 19th century , only two brief periods of violence have marred the country 's democratic development .\tIN DT JJ JJ NN , RB CD JJ NNS IN NN VBP VBN DT NN POS JJ NN .\nIn 1949 , Costa Rica dissolved its armed forces .\tIN CD , NNP NNP VBD PRP$ JJ NNS .\nAlthough it still maintains a large agricultural sector , Costa Rica has expanded its economy to include strong technology and tourism industries .\tIN PRP RB VBZ DT JJ JJ NN , NNP NNP VBZ VBN PRP$ NN TO VB JJ NN CC NN NNS .\nThe standard of living is relatively high .\tDT NN IN NN VBZ RB JJ .\nLand ownership is widespread .\tNNP NN VBZ JJ .\nSubsistence fishing and commercial trawling occur within refuge waters .\tNN NN CC JJ NN VBP IN NN NNS .\nThe economy is dominated by the mining industry , with exports of alumina , gold , and oil accounting for about 85 % of exports and 25 % of government revenues , making the economy highly vulnerable to mineral price volatility .\tDT NN VBZ VBN IN DT NN NN , IN NNS IN NN , NN , CC NN NN IN RB CD NN IN NNS CC CD NN IN NN NNS , VBG DT NN RB JJ TO NN NN NN .\nIn 2000 , the government of Ronald VENETIAAN , returned to office and inherited an economy with inflation of over 100 % and a growing fiscal deficit .\tIN CD , DT NN IN NNP NNP , VBD TO NN CC VBD DT NN IN NN IN IN CD NN CC DT VBG JJ NN .\nHe quickly implemented an austerity program , raised taxes , attempted to control spending , and tamed inflation .\tPRP RB VBD DT NN NN , VBD NNS , VBN TO VB NN , CC VBN NN .\nEconomic growth reached about 7 % in 2008 , owing to sizeable foreign investment in mining and oil .\tJJ NN VBD IN CD NN IN CD , VBG TO JJ JJ NN IN NN CC NN .\nSuriname has received aid for projects in the bauxite and gold mining sectors from Netherlands , Belgium , and the European Development Fund .\tNNP VBZ VBN NN IN NNS IN DT NN CC NN NN NNS IN NNP , NNP , CC DT NNP NNP NNP .\nThe economy slowed in 2009 , however , as investment waned and the country earned less from its commodity exports when global prices for most commodities fell .\tDT NN VBD IN CD , RB , IN NN VBD CC DT NN VBD RBR IN PRP$ NN NNS WRB JJ NNS IN JJS NNS VBD .\nTrade picked up , boosting Suriname 's economic growth in 2010 , but the government 's budget remained strained , with increased social spending during the election .\tNNP VBD RP , VBG NNP POS JJ NN IN CD , CC DT NN POS NN VBD JJ , IN VBN JJ NN IN DT NN .\nIn January 2011 , the government devalued the currency by 20 % and raised taxes to reduce the budget deficit .\tIN NNP CD , DT NN VBD DT NN IN CD NN CC VBD NNS TO VB DT NN NN .\nSuriname 's economic prospects for the medium term will depend on continued commitment to responsible monetary and fiscal policies and to the introduction of structural reforms to liberalize markets and promote competition .\tNNP POS JJ NNS IN DT JJ NN MD VB IN JJ NN TO JJ JJ CC JJ NNS CC TO DT NN IN JJ NNS TO VB NNS CC VB NN .\nCarib Indians inhabited Grenada when COLUMBUS discovered the island in 1498 , but it remained uncolonized for more than a century .\tNNP NNS VBD NNP WRB NNP VBD DT NN IN CD , CC PRP VBD JJ IN JJR IN DT NN .\nThe French settled Grenada in the 17th century , established sugar estates , and imported large numbers of African slaves .\tDT NNS VBD NNP IN DT JJ NN , VBN NN NNS , CC VBN JJ NNS IN JJ NNS .\nBritain took the island in 1762 and vigorously expanded sugar production .\tNNP VBD DT NN IN CD CC RB VBN NN NN .\nIn the 19th century , cacao eventually surpassed sugar as the main export crop ; in the 20th century , nutmeg became the leading export .\tIN DT JJ NN , NN RB VBD NN IN DT JJ NN NN ; IN DT JJ NN , NN VBD DT VBG NN .\nIn 1967 , Britain gave Grenada autonomy over its internal affairs .\tIN CD , NNP VBD NNP NN IN PRP$ JJ NNS .\nFull independence was attained in 1974 making Grenada one of the smallest independent countries in the Western Hemisphere .\tNNP NN VBD VBN IN CD VBG NNP CD IN DT JJS JJ NNS IN DT JJ NNP .\nGrenada was seized by a Marxist military council on 19 October 1983 .\tNNP VBD VBN IN DT JJ JJ NN IN CD NNP CD .\nSix days later the island was invaded by US forces and those of six other Caribbean nations , which quickly captured the ringleaders and their hundreds of Cuban advisers .\tCD NNS RB DT NN VBD VBN IN NNP NNS CC DT IN CD JJ JJ NNS , WDT RB VBD DT NNS CC PRP$ NNS IN JJ NNS .\nFree elections were reinstituted the following year and have continued since that time .\tJJ NNS VBD VBN DT JJ NN CC VBP VBN IN DT NN .\nHurricane Ivan struck Grenada in September of 2004 causing severe damage .\tNNP NNP VBD NNP IN NNP IN CD VBG JJ NN .\nA PHILOSOPHER witnessed from the shore the shipwreck of a vessel , of which the crew and passengers were all drowned .\tDT NN VBD IN DT NN DT NN IN DT NN , IN WDT DT NN CC NNS VBD DT VBN .\nHe inveighed against the injustice of Providence , which would for the sake of one criminal perchance sailing in the ship allow so many innocent persons to perish .\tPRP VBD IN DT NN IN NNP , WDT MD IN DT NN IN CD JJ NN NN IN DT NN VBP RB JJ JJ NNS TO VB .\nAs he was indulging in these reflections , he found himself surrounded by a whole army of Ants , near whose nest he was standing .\tIN PRP VBD VBG IN DT NNS , PRP VBD PRP VBN IN DT JJ NN IN NNS , IN WP$ NNS PRP VBD VBG .\nOne of them climbed up and stung him , and he immediately trampled them all to death with his foot .\tCD IN PRP VBD RB CC VBG PRP , CC PRP RB VBD PRP DT TO NN IN PRP$ NN .\nMercury presented himself , and striking the Philosopher with his wand , said , ' And are you indeed to make yourself a judge of the dealings of Providence , who hast thyself in a similar manner treated these poor Ants ? '\tNNP VBD PRP , CC VBG DT NN IN PRP$ NN , VBD , `` CC VBP PRP RB TO VB PRP DT NN IN DT NNS IN NNP , WP VBP PRP IN DT JJ NN VBD DT JJ NNS . ``\nIsraeli troops have detained a top member of the Palestinian militant group Hamas during a raid on an apartment building in the West Bank city of Tulkarem .\tJJ NNS VBP VBN DT JJ NN IN DT JJ JJ NN NNP IN DT NN IN DT NN NN IN DT NNP NNP NN IN NNP .\nRami al-Tayyah has been wanted by Israel since 2002 in connection with the recruitment of militants and the establishment of Hamas cells suspected of carrying out shootings and bomb attacks against Israeli citizens .\tNNP NNP VBZ VBN VBN IN NNP IN CD IN NN IN DT NN IN NNS CC DT NN IN NNP NNS VBN IN VBG RP NNS CC NN NNS IN JJ NNS .\nAlso Saturday , Palestinian Prime Minister Ahmed Qureia accused Israel of hampering efforts to restart peace efforts following the death of Yasser Arafat .\tRB NNP , JJ NNP NNP NNP NNP VBD NNP IN VBG NNS TO VB NN NNS VBG DT NN IN NNP NNP .\nMr. Qureia told his cabinet that Israel 's continued military aggression sends a clear message that it does not want to allow things to quiet down and bring the peace process back on track .\tNNP NNP VBD PRP$ NN IN NNP POS JJ JJ NN VBZ DT JJ NN IN PRP VBZ RB VB TO VB NNS TO VB RB CC VB DT NN NN RB IN NN .\nMr. Qureia 's criticism came as German Foreign Minister Joschka Fischer arrived in the region for talks with Israeli and Palestinian leaders .\tNNP NNP POS NN VBD IN JJ NNP NNP NNP NNP VBD IN DT NN IN NNS IN JJ CC JJ NNS .\nAuthorities in the northern Iraqi city of Mosul say two Christian churches have been the target of nearly simultaneous bomb attacks .\tNNS IN DT JJ JJ NN IN NNP VBP CD JJ NNS VBP VBN DT NN IN RB JJ NN NNS .\nWitnesses say gunmen stormed the Armenian and Chaldean churches Tuesday , planting explosives that detonated , setting the buildings on fire .\tNNS VBP NNS VBD DT JJ CC JJ NNS NNP , VBG NNS WDT VBD , VBG DT NNS IN NN .\nNo casualties have been confirmed .\tDT NNS VBP VBN VBN .\nIraq 's minority Christian community has been the target of attacks before , most recently last month when three people were killed in a bomb attack on a Baghdad church .\tNNP POS NN JJ NN VBZ VBN DT NN IN NNS IN , RBS RB JJ NN WRB CD NNS VBD VBN IN DT NN NN IN DT NNP NN .\nMeanwhile , the U.S. military says an American soldier was killed Tuesday while on patrol in Baghdad .\tRB , DT NNP NN VBZ DT JJ NN VBD VBN NNP IN IN NN IN NNP .\nAfghan President Hamid Karzai has urged Afghan and coalition forces to use ' extreme caution ' as they root out Islamic militants .\tJJ NNP NNP NNP VBZ VBN JJ CC NN NNS TO VB `` JJ NN `` IN PRP VBP RP JJ NNS .\nIn a statement Sunday , Mr. Karzai expressed concern over civilian deaths in recent weeks as a result of counter-terror operations in civilian areas .\tIN DT NN NNP , NNP NNP VBD NN IN JJ NNS IN JJ NNS IN DT NN IN NN NNS IN JJ NNS .\nHe said that while his government is committed to combating terrorism , it is also responsible for safety of the Afghan people .\tPRP VBD IN IN PRP$ NN VBZ VBN TO VBG NN , PRP VBZ RB JJ IN NN IN DT JJ NNS .\nThe statement comes two days after three civilians , including a woman and a child , were killed in a U.S. air strike against a suspected militant hideout .\tDT NN VBZ CD NNS IN CD NNS , VBG DT NN CC DT NN , VBD VBN IN DT NNP NN NN IN DT JJ JJ NN .\nFour suspected militants were also killed in the incident in central Uruzgan province .\tCD JJ NNS VBD RB VBN IN DT NN IN JJ NNP NN .\nTwo more children were wounded and taken to a U.S. base in the southern city of Kandahar for treatment .\tCD JJR NNS VBD VBN CC VBN TO DT NNP NN IN DT JJ NN IN NNP IN NN .\nWhen talking about paintings and contemporary art , names such as Pablo Picasso , Georgia O'Keeffe , Vincent Van Gogh and others often come to mind .\tWRB VBG IN NNS CC JJ NN , NNS JJ IN NNP NNP , NNP NNP , NNP NNP NNP CC NNS RB VBP TO NN .\nBut , as we are about to show you , there is a whole body of artwork on Africa , by European and African artists that is largely unknown .\tCC , IN PRP VBP IN TO VB PRP , EX VBZ DT JJ NN IN NN IN NNP , IN JJ CC JJ NNS WDT VBZ RB JJ .\nPrimimoda Gallery , located in the heart of Washington , is where you will find this art .\tNNP NNP , VBN IN DT NN IN NNP , VBZ WRB PRP MD VB DT NN .\nNdimyake Mwakalyelye tells us more .\tNNP NNP VBZ PRP RBR .\nThe world 's biggest maker of computer chips is investing more than $ 1 billion in India over the next five years .\tDT NN POS JJS NN IN NN NNS VBZ VBG JJR IN $ CD CD IN NNP IN DT JJ CD NNS .\nThe investment was announced Monday by Intel Chairman .\tDT NN VBD VBN NNP IN NNP NNP .\nMuch of the money will go to expand Intel 's research and development center in Bangalore .\tNN IN DT NN MD VB TO VB NNP POS NN CC NN NN IN NNP .\nThat operation already employs 2,800 people .\tDT NN RB VBZ CD NNS .\nIntel officials say around $ 250 million is going into a fund to stimulate local technology innovation , particularly in technology oriented service companies that target overseas markets .\tNNP NNS VBP IN $ CD CD VBZ VBG IN DT NN TO VB JJ NN NN , RB IN NN JJ NN NNS WDT VBP JJ NNS .\nIntel has been operating in India for a decade , and has already invested about $ 700 million there .\tNNP VBZ VBN VBG IN NNP IN DT NN , CC VBZ RB VBN IN $ CD CD RB .\nMr. Barrett says India is one of the world 's ' leading technology centers ' and he expects this investment to help the country grow further .\tNNP NNP VBZ NNP VBZ CD IN DT NN POS `` VBG NN NNS `` CC PRP VBZ DT NN TO VB DT NN VB RBR .\nThe United States will host Croatia in the opening round of the 2005 Davis Cup tennis tournament .\tDT NNP NNPS MD VB NNP IN DT NN NN IN DT CD NNP NNP NN NN .\nThe U.S. Tennis Association announced Thursday the games will be played on the hardcourts at Carson , California near Los Angeles .\tDT NNP NNP NNP VBD NNP DT NNS MD VB VBN IN DT NNS IN NNP , NNP IN NNP NNP .\nThe three-day tie ( series ) beginning on March 4 could be the start of a title defense for the American squad .\tDT JJ NN LRB NN RRB VBG IN NNP CD MD VB DT NN IN DT NN NN IN DT JJ NN .\nThe United States faces host Spain starting Friday in the Davis Cup final on clay at Seville .\tDT NNP NNPS VBZ NN NNP VBG NNP IN DT NNP NNP JJ IN NN IN NNP .\nThe United States is trying to win its first Davis Cup crown since 1995 .\tDT NNP NNPS VBZ VBG TO VB PRP$ JJ NNP NNP NN IN CD .\nIn the only previous Davis Cup match between the countries , Croatia defeated the US squad , 04-Jan , in a 2003 first-round tie at Zagreb .\tIN DT JJ JJ NNP NNP NN IN DT NNS , NNP VBD DT NNP NN , CD , IN DT CD JJ NN IN NNP .\nThe winner will face either Romania or Belarus in the second round next July .\tDT NN MD VB DT NNP CC NNP IN DT JJ NN IN NNP .\nAt least five policemen have been killed in a militant attack on a security camp in Indian-controlled Kashmir .\tIN JJS CD NNS VBP VBN VBN IN DT JJ NN IN DT NN NN IN JJ NNP .\nLocal authorities say the attack occurred early Friday , in the border town of Sopore , about 50 kilometers north of Srinagar .\tJJ NNS VBP DT NN VBD JJ NNP , IN DT NN NN IN NNP , IN CD NNS RB IN NNP .\nPolice say the militants hurled grenades and fired indiscriminately as they stormed the camp .\tNNS VBP DT NNS VBD NNS CC VBD RB IN PRP VBD DT NN .\nIt was not immediately clear how many rebels were involved in the attack .\tPRP VBD RB RB JJ WRB JJ NNS VBD VBN IN DT NN .\nThe Pakistan-based rebel group Al-Mansoorain claimed responsibility for the attack .\tDT JJ NN NN NNP VBD NN IN DT NN .\nAl-Mansoorain is one of more than a dozen Islamic militant groups fighting security forces in India 's portion of Kashmir for the region 's independence or for its merger with Pakistan .\tNNP VBZ CD IN JJR IN DT NN JJ JJ NNS VBG NN NNS IN NNP POS NN IN NNP IN DT NN POS NN CC IN PRP$ NN IN NNP .\nA European Space Agency probe has completed a three-year mission to test deep space technologies by making a controlled crash on the moon .\tDT NNP NNP NNP NN VBZ VBN DT JJ NN TO VB JJ NN NNS IN VBG DT JJ NN IN DT NN .\nThe SMART-1 probe hit the lunar surface at 542 UTC Sunday on a volcanic plain called the Lake of Excellence at a speed of about 7,200 kilometers per hour .\tDT JJ NN VBD DT NN NN IN CD NNP NNP IN DT JJ NN VBD DT NNP IN NNP IN DT NN IN IN CD NNS IN NN .\nIt had orbited the moon for the past 14 months .\tPRP VBD VBN DT NN IN DT JJ CD NNS .\nMission manager Gerhard Schwehm calls Europe 's first mission to the moon ' a great success . '\tNNP NN NNP NNP VBZ NNP POS JJ NN TO DT NN `` DT JJ NN . ``\nThe probe 's main mission was to test a solar-electric propulsion system the European Space Agency hopes to use for future interplanetary missions .\tDT NN POS JJ NN VBD TO VB DT JJ NN NN DT NNP NNP NNP VBZ TO VB IN JJ JJ NNS .\nSMART-1 also carried miniaturized scientific instruments to examine the lunar surface .\tNNP RB VBD VBN JJ NNS TO VB DT NN NN .\nSMART stands for Small Mission for Advanced Research and Technology .\tNNP VBZ IN JJ NNP IN NNP NNP CC NNP .\nThe craft was launched in September of 2003 , and began orbiting the moon in November of 2004 .\tDT NN VBD VBN IN NNP IN CD , CC VBD VBG DT NN IN NNP IN CD .\nWitnesses in Somalia say gunmen have killed the head of an orphanage near the capital , Mogadishu .\tNNS IN NNP VBP NNS VBP VBN DT NN IN DT NN IN DT NN , NNP .\nAbdikadir Yusuf Kariye was shot dead by unidentified assailants late Wednesday in the town of Lafoole .\tNNP NNP NNP VBD VBN JJ IN JJ NNS JJ NNP IN DT NN IN NNP .\nReuters news agency reports that Kariye 's orphanage is home to 370 children .\tNNP NN NN VBZ IN NNP POS NN VBZ NN TO CD NNS .\nThere has been no claim of responsibility for the killing .\tEX VBZ VBN DT NN IN NN IN DT NN .\nAttacks on aid workers in Somalia have forced some relief agencies to suspend their operations , endangering hundreds of thousands of people who rely on food aid and medical aid .\tNNS IN NN NNS IN NNP VBP VBN DT NN NNS TO VB PRP$ NNS , VBG NNS IN NNS IN NNS WP VBP IN NN NN CC JJ NN .\nThe United Nations has warned of a possible humanitarian catastrophe in Somalia , which has not had a functioning central government in 17 years .\tDT NNP NNP VBZ VBN IN DT JJ JJ NN IN NNP , WDT VBZ RB VBN DT VBG JJ NN IN CD NNS .\nU.S. lawmakers say they plan legislation that would fund efforts to help Iranians receive and send information despite government restrictions .\tNNP NNS VBP PRP VBP NN WDT MD VB NNS TO VB NNS VB CC VB NN IN NN NNS .\nIndependent Senator Joe Lieberman said Thursday that the bill intends to help the Iranian people stay ' one step ahead of the Iranian regime . '\tNNP NNP NNP NNP VBD NNP IN DT NN VBZ TO VB DT JJ NNS VBP `` CD NN RB IN DT JJ NN . ``\nLieberman introduced the bill with Republican Senators John McCain and Lindsey Graham .\tNNP VBD DT NN IN NNP NNP NNP NNP CC NNP NNP .\nMcCain said the proposed legislation would authorize funds to ensure Iranians have the software and other tools to evade government censorship and surveillance online .\tNNP VBD DT VBN NN MD VB NNS TO VB NNS VBP DT NN CC JJ NNS TO VB NN NN CC NN NN .\nThe legislation would also authorize VOA 's Persian service to make permanent an additional hour of programming that was added to cover the post-election violence .\tDT NN MD RB VB NNP POS JJ NN TO VB JJ DT JJ NN IN NN WDT VBD VBN TO VB DT JJ NN .\nMore funding would also be provided to the U.S. government-sponsored Radio Farda to boost the broadcaster 's short-wave radio and satellite capacity .\tJJR NN MD RB VB VBN TO DT NNP JJ NN NNP TO VB DT NN POS JJ NN CC NN NN .\nCambodian authorities have detained a fifth suspect in the 12-year-old kidnapping and murder case of two men who were clearing land mines .\tJJ NNS VBP VBN DT JJ NN IN DT JJ NN CC NN NN IN CD NNS WP VBD VBG NN NNS .\nFormer Khmer Rouge fighters abducted Christopher Howes of Bristol , England , and his interpreter Huon Huot along with other members of a team removing land mines near Cambodia 's Angor Wat temple in 1996 .\tJJ NNP NNP NNS VBD NNP NNP IN NNP , NNP , CC PRP$ NN NNP NNP IN IN JJ NNS IN DT NN VBG NN NNS IN NNP POS NNP NNP NN IN CD .\nMost of the team was released , but evidence later showed Howes and Huot were executed in rebel-held territory .\tJJS IN DT NN VBD VBN , CC NN RB VBD NNP CC NNP VBD VBN IN JJ NN .\nCambodian authorities took 52-year-old Puth Lim into custody and charged him in the case Friday .\tJJ NNS VBD JJ NNP NNP IN NN CC VBD PRP IN DT NN NNP .\nFive other former Khmer Rouge fighters also face charges which could carry a life sentence if convicted .\tCD JJ JJ NNP NNP NNS RB VBP NNS WDT MD VB DT NN NN IN VBN .\nFollowing years of debate and delay , Germany has dedicated a national memorial to the six million Jews killed by the Nazis during World War II .\tVBG NNS IN NN CC NN , NNP VBZ VBN DT JJ NN TO DT CD CD NNPS VBN IN DT NNPS IN NNP NNP NNP .\nDignitaries and survivors of the Nazi death camps dedicated the ' Memorial to the Murdered Jews of Europe ' Tuesday in Berlin .\tNNS CC NNS IN DT NNP NN NNS VBD DT `` NNP TO DT JJ NNPS IN NNP `` NNP IN NNP .\nThe speaker of Germany 's lower house of parliament , Wolfgang Thierse , said the memorial will keep the memory of Holocaust victims and of Nazi crimes alive .\tDT NN IN NNP POS JJR NN IN NN , NNP NNP , VBD DT NN MD VB DT NN IN NNP NNS CC IN JJ NNS JJ .\nThe two-hectare memorial , designed by New York architect Peter Eisenman , consists of 2,711 unadorned concrete slabs and an underground research center Experts say the memorial evokes the rigid discipline and order of the Nazi killing machine .\tDT JJ NN , VBN IN NNP NNP NN NNP NNP , VBZ IN CD JJ JJ NNS CC DT JJ NN NN NNS VBP DT JJ NNS DT JJ NN CC NN IN DT JJ NN NN .\nFirst proposed in the late 1980s , the memorial was only recently completed because of arguments over its size , design and whether it should honor non-Jewish Holocaust victims .\tRB VBN IN DT JJ NNS , DT NN VBD RB RB VBN IN IN NNS IN PRP$ NN , NN CC IN PRP MD VB JJ NN NNS .\nIt will open to the public on Thursday .\tPRP MD VB TO DT NN IN NNP .\nA Norwegian aid group says it will shut down operations in Sudan 's Darfur region because of government interference .\tDT JJ NN NN VBZ PRP MD VB RP NNS IN NNP POS NNP NN IN IN NN NN .\nThe Norwegian Refugee Council says Sudan has suspended the group for a total of 210 days since mid-2004 .\tDT JJ NNP NNP VBZ NNP VBZ VBN DT NN IN DT NN IN CD NNS IN NN .\nThe group 's secretary-general , Tomas Archer , says his workers can not operate when authorities suspend the group continuously and do not respond to repeated requests for dialogue .\tDT NN POS JJ , NNP NNP , VBZ PRP$ NNS MD RB VB WRB NNS VBP DT NN RB CC VBP RB VB TO JJ NNS IN NN .\nThe N.R.C. provides assistance at three large camps for internally displaced Sudanese .\tDT NNP VBZ NN IN CD JJ NNS IN RB JJ NN .\nThe group says its departure will affect 3,00,000 people in South Darfur .\tDT NN VBZ PRP$ NN MD VB CD NNS IN NNP NNP .\nSudanese officials are often suspicious of foreign aid agencies working in Darfur and they target groups that criticize government actions and policies .\tJJ NNS VBP RB JJ IN JJ NN NNS VBG IN NNP CC PRP VBP NNS WDT VBP NN NNS CC NNS .\nSudan continues to resist international pressure to allow a U.N. peacekeeping forces into the volatile region .\tNNP VBZ TO VB JJ NN TO VB DT NNP NN NNS IN DT JJ NN .\nMore than three years of fighting between rebels and government-backed militias has killed an estimated 2,00,000 people and displaced over two million since early 2003 .\tJJR IN CD NNS IN VBG IN NNS CC JJ NNS VBZ VBN DT JJ CD NNS CC VBD IN CD CD IN JJ CD .\nHaiti 's chief elections official has fled the country after receiving threats following this month 's presidential elections .\tNNP POS JJ NNS NN VBZ VBN DT NN IN VBG NNS VBG DT NN POS JJ NNS .\nOfficials say Jacques Bernard flew to the United States on Sunday , a day after his farmhouse was ransacked .\tNNS VBP NNP NNP VBD TO DT NNP NNPS IN NNP , DT NN IN PRP$ NN VBD VBN .\nBernard was accused by some people who supported candidate Rene Preval of manipulating the vote count to prevent Preval from claiming an outright victory and avoid a runoff vote .\tNNP VBD VBN IN DT NNS WP VBD NN NNP NNP IN VBG DT NN NN TO VB NNP IN VBG DT JJ NN CC VB DT NN NN .\nPreval was declared the winner last week in an internationally-brokered decision to divide 85,000 blank ballots proportionately among the candidates .\tNNP VBD VBN DT NN JJ NN IN DT JJ NN TO VB CD JJ NNS RB IN DT NNS .\nA boat accident in Bangladesh has killed at least 37 people , most of them women and children .\tDT NN NN IN NNP VBZ VBN IN JJS CD NNS , JJS IN PRP NNS CC NNS .\nAuthorities say many of the male passengers were able to swim ashore .\tNNS VBP NN IN DT NN NNS VBD JJ TO VB RB .\nLocal officials say the boat capsized on the Surma river in northeastern Bangladesh late Saturday after colliding with a cargo ship .\tJJ NNS VBP DT NN VBN IN DT NNP NN IN JJ NNP JJ NNP IN VBG IN DT NN NN .\nOfficials say at least 80 people were on board the boat .\tNNS VBP IN JJS CD NNS VBD IN NN DT NN .\nOfficials say the area where the boat went down , in the Sunamganj district about 240 kilometers northeast of Dhaka , is in one of the most remote parts of the country , making it difficult for additional help to reach the site .\tNNS VBP DT NN WRB DT NN VBD RB , IN DT NNP NN IN CD NNS RB IN NNP , VBZ IN CD IN DT RBS JJ NNS IN DT NN , VBG PRP JJ IN JJ NN TO VB DT NN .\nBangladesh has more than 200 rivers .\tNNP VBZ JJR IN CD NNS .\nBoat accidents are common due to lax safety regulations .\tNNP NNS VBP JJ JJ TO JJ NN NNS .\nThe Cayman Islands are under a tropical storm warning and a hurricane watch , as a new tropical depression is taking shape in the northwest Caribbean Sea .\tDT NNP NNP VBP IN DT JJ NN NN CC DT NN NN , IN DT JJ JJ NN VBZ VBG NN IN DT JJ NNP NNP .\nThe U.S. National Hurricane Center says the system could strengthen into Tropical Storm Wilma later Sunday .\tDT NNP NNP NNP NNP VBZ DT NN MD VB IN JJ NN NNP RB NNP .\nWilma would be the 21st named storm of the Atlantic hurricane season , tying a record set in 1933 .\tNNP MD VB DT CD VBN NN IN DT NNP NN NN , VBG DT NN VBN IN CD .\nAt daybreak , the depression was centered 325 kilometers southeast of Grand Cayman Island and had sustained winds of 55 kilometers per hour .\tIN NN , DT NN VBD VBN CD NNS NN IN NNP NNP NNP CC VBD VBN NNS IN CD NNS IN NN .\nThe hurricane center says the storm will likely bring heavy rains to the Caymans and Jamaica .\tDT NN NN VBZ DT NN MD RB VB JJ NNS TO DT NNPS CC NNP .\nLong-range forecasts show the storm possibly moving into the Gulf of Mexico next week .\tJJ NNS VBP DT NN RB VBG IN DT NNP IN NNP JJ NN .\nSeveral U.S. cities along the Gulf coast are still reeling from Hurricane Katrina .\tJJ NNP NNS IN DT NNP NN VBP RB VBG IN NNP NNP .\nSri Lankan officials say suspected Tamil Tiger rebels have detonated a mine in northern Sri Lanka , killing two sailors and wounding another .\tNNP NNP NNS VBP VBN NNP NNP NNS VBP VBN DT NN IN JJ NNP NNP , VBG CD NNS CC VBG DT .\nOfficials say the attack occurred Saturday , on the northern Jaffna peninsula .\tNNS VBP DT NN VBD NNP , IN DT JJ NNP NN .\nIn a separate incident Saturday , unidentified attackers in the eastern town of Batticaloa hurled a grenade into the parking area of a compound occupied by truce monitors , damaging vehicles but causing no injuries .\tIN DT JJ NN NNP , JJ NNS IN DT JJ NN IN NNP VBD DT NN IN DT NN NN IN DT NN VBN IN NN NNS , VBG NNS CC VBG DT NNS .\nA spokeswoman for the monitoring mission says the attack was the first targeting the monitors since a 2002 cease-fire .\tDT NN IN DT NN NN VBZ DT NN VBD DT JJ VBG DT NNS IN DT CD NN .\nThe unarmed monitors are all from Scandinavian countries .\tDT JJ NNS VBP DT IN JJ NNS .\nThe explosion came hours after the monitors reprimanded Tamil Tiger rebels and government forces for an increase in violence .\tDT NN VBD NNS IN DT NNS VBD NNP NNP NNS CC NN NNS IN DT NN IN NN .\nSri Lanka 's government says at least 69 members of its security forces have been killed by rebels since early December .\tNNP NNP POS NN VBZ IN JJS CD NNS IN PRP$ NN NNS VBP VBN VBN IN NNS IN JJ NNP .\nForensic experts have concluded work on a mass grave in northwestern Bosnia-Herzegovina , exhuming 454 bodies .\tJJ NNS VBP VBN NN IN DT NN NN IN JJ NNP , VBG CD NNS .\nAn official , Esad Bajramovic , of the Commission on Missing Persons in Bosnia 's Muslim-Croat Federation says documents found in the village of Kevljani near the town of Prijedor indicate the victims were Muslim and Croat residents of the area .\tDT NN , NNP NNP , IN DT NNP IN VBG NNS IN NNP POS NNP NNP VBZ NNS VBN IN DT NN IN NNP IN DT NN IN NNP VBP DT NNS VBD NNP CC JJ NNS IN DT NN .\nHe says many of the victims are believed to have been inmates of the notorious Serb-run Omarska and Keraterm prison camps in the Prijedor area .\tPRP VBZ NN IN DT NNS VBP VBN TO VB VBN NNS IN DT JJ NNP NNP CC NNP NN NNS IN DT NNP NN .\nThe victims are believed to have been buried in other areas then moved to Kevljani .\tDT NNS VBP VBN TO VB VBN VBN IN JJ NNS RB VBD TO NNP .\nUnited Nations forensic experts have recovered more than 16,000 bodies from more than 300 mass graves in Bosnia .\tNNP NNP JJ NNS VBP VBN JJR IN CD NNS IN JJR IN CD NN NNS IN NNP .\nMore than 2,00,000 people were killed in the Bosnian conflict of the early 1990s .\tJJR IN CD NNS VBD VBN IN DT JJ NN IN DT JJ NNS .\nOfficials in Indian Kashmir say at least two soldiers and six suspected militants have been killed during a clash in the Himalayan region .\tNNS IN JJ NNP VBP IN JJS CD NNS CC CD JJ NNS VBP VBN VBN IN DT NN IN DT JJ NN .\nOfficials say at least one soldier was also wounded in Saturday 's clash 220 kilometers north of Jammu , the winter capital of Indian Kashmir .\tNNS VBP IN JJS CD NN VBD RB VBN IN NNP POS NN CD NNS RB IN NNP , DT NN NN IN NNP NNP .\nAuthorities say the suspected militants were trying to sneak into the Indian-controlled portion of Kashmir when the fighting began .\tNNS VBP DT JJ NNS VBD VBG TO VB IN DT JJ NN IN NNP WRB DT NN VBD .\nKashmiri militant groups have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan .\tJJ JJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP .\nThe insurgency has killed tens of thousands of people .\tDT NN VBZ VBN NNS IN NNS IN NNS .\nIran says it has agreed with Russia to increase the number of countries joining a plan for Tehran to carry out sensitive nuclear fuel work in Russia .\tNNP VBZ PRP VBZ VBN IN NNP TO VB DT NN IN NNS VBG DT NN IN NNP TO VB RP JJ JJ NN NN IN NNP .\nSpeaking to reporters Saturday in Tehran , Iranian Foreign Minister Manouchehr Mottaki said possible locations for uranium enrichment are still under review .\tVBG TO NNS NNP IN NNP , JJ NNP NNP NNP NNP VBD JJ NNS IN NN NN VBP RB IN NN .\nMoscow 's idea to have Iran enrich uranium in facilities in Russia where the work can be closely monitored is seen as a way out of a growing crisis over Tehran 's nuclear ambitions .\tNNP POS NN TO VB NNP NNP NN IN NNS IN NNP WRB DT NN MD VB RB VBN VBZ VBN IN DT NN IN IN DT VBG NN IN NNP POS JJ NNS .\nThe United States , China and the European Union support the proposal .\tDT NNP NNPS , NNP CC DT NNP NNP NN DT NN .\nMeanwhile , the chief of Iran 's Revolutionary Guards , General Yahya Rahim Safavi , said Saturday his country would use ballistic missiles to defend itself if attacked .\tRB , DT NN IN NNP POS NNP NNPS , NNP NNP NNP NNP , VBD NNP PRP$ NN MD VB JJ NNS TO VB PRP IN VBN .\nPresident Bush told the CBS television network Friday he is open to all possible options for dealing with Iran , including military intervention .\tNNP NNP VBD DT NNP NN NN NNP PRP VBZ JJ TO DT JJ NNS IN VBG IN NNP , VBG JJ NN .\nBut he said that would be the last option .\tCC PRP VBD DT MD VB DT JJ NN .\nPresident Bush has sent holiday greetings to all Muslims as they celebrate the Eid al-Adha religious festival .\tNNP NNP VBZ VBN NN NNS TO DT NNS IN PRP VBP DT NNP NNP JJ NN .\nIn a statement issued Friday , Mr. Bush said Eid al-Adha is an important occasion to give thanks for blessings and to remember Abraham 's trust in a loving God .\tIN DT NN VBN NNP , NNP NNP VBD NNP NNP VBZ DT JJ NN TO VB NNS IN NNS CC TO VB NNP POS NN IN DT JJ NNP .\nEid al-Adha , the festival of sacrifice , commemorates the willingness of the prophet Abraham to sacrifice his son in obedience to God .\tNNP NNP , DT NN IN NN , VBZ DT NN IN DT NN NNP TO VB PRP$ NN IN NN TO NNP .\nAccording to scripture , Allah did not require Abraham to go through with the sacrifice .\tVBG TO NN , NNP VBD RB VB NNP TO VB IN IN DT NN .\nMr. Bush said Muslims would celebrate with friends and family , exchanging gifts and greetings , and engaging in worship through sacrifice and charity .\tNNP NNP VBD NNP MD VB IN NNS CC NN , VBG NNS CC NNS , CC VBG IN NN IN NN CC NN .\nThe president said America is a more hopeful nation because of the talents , generosity and compassion of Muslim citizens .\tDT NN VBD NNP VBZ DT RBR JJ NN IN IN DT NNS , NN CC NN IN NNP NNS .\nLawmakers on Cyprus have ratified the European Union treaty , despite opposition from the communist party of President Dimitris Christofias .\tNNS IN NNP VBP VBN DT NNP NNP NN , IN NN IN DT JJ NN IN NNP NNP NNP .\nThe Mediterranean island-nation Thursday became the 20th EU state to ratify the treaty , after 31 lawmakers out of 49 present in Nicosia voted in favor .\tDT NNP NN NNP VBD DT JJ NNP NN TO VB DT NN , IN CD NNS IN IN CD JJ IN NNP VBD IN NN .\nThe charter is aimed at streamlining EU bureaucracy and making it easier for the European Commission to enact policy .\tDT NN VBZ VBN IN VBG NNP NN CC VBG PRP JJR IN DT JJ NNP TO VB NN .\nThe Cyprus vote comes less than a month after Irish voters rejected the treaty in a referendum .\tDT NNP NN VBZ JJR IN DT NN IN JJ NNS VBD DT NN IN DT NN .\nAll 27 nations must ratify the treaty for it to take effect .\tDT CD NNS MD VB DT NN IN PRP TO VB NN .\nAdvocates say it remains unclear whether the charter can be salvaged after the Irish defeat .\tNNS VBP PRP VBZ JJ IN DT NN MD VB VBN IN DT JJ NN .\nThe head of the United Nations refugee agency says relief efforts in earthquake-ravaged Pakistan should concentrate now on creating conditions for people to be able to withstand the harsh Himalayan winter .\tDT NN IN DT NNP NNP NN NN VBZ NN NNS IN JJ NNP MD VB RB IN VBG NNS IN NNS TO VB JJ TO VB DT JJ NNP NN .\nU.N. High Commissioner for Refugees Antonio Guterres made the remark Thursday during his visit to Pakistan 's quake zone .\tNNP NNP NNP IN NNP NNP NNP VBD DT NN NNP IN PRP$ NN TO NNP POS NN NN .\nThe visit is aimed at reviewing relief operations and meeting with local leaders .\tDT NN VBZ VBN IN VBG NN NNS CC NN IN JJ NNS .\nHe said billions of dollars in aid pledges by donors must materialize before cold and hunger claim more lives .\tPRP VBD NNS IN NNS IN NN NNS IN NNS MD VB IN NN CC NN VBP JJR NNS .\nWhile touring the devastated capital of Pakistani Kashmir , Muzaffarabad , Mr. Guterres also noted the time has come to repay the country for generously hosting millions of Afghan refugees .\tIN VBG DT JJ NN IN JJ NNP , NNP , NNP NNP RB VBD DT NN VBZ VBN TO VB DT NN IN RB VBG NNS IN JJ NNS .\nHis visit comes a day after Australian Prime Minister John Howard toured quake-hit areas and pledged nearly U.S. $ 37 miillion in additional relief .\tPRP$ NN VBZ DT NN IN JJ NNP NNP NNP NNP VBD JJ NNS CC VBD RB NNP $ CD NN IN JJ NN .\nAn exhibition is opening at the Imperial War Museum in London , marking the centenary of the birth of writer Ian Fleming , the man who created the world 's most famous secret agent , James Bond .\tDT NN VBZ VBG IN DT NNP NNP NNP IN NNP , VBG DT NN IN DT NN IN NN NNP NNP , DT NN WP VBD DT NN POS RBS JJ NN NN , NNP NNP .\nPaul Burge has the story on the exhibit , titled ' For Your Eyes Only . '\tNNP NNP VBZ DT NN IN DT NN , VBN `` IN PRP$ NNS RB . ``\nU.S. troops in Fallujah have found a safe house which they say contains evidence linked to wanted militant Abu Musab al-Zarqawi .\tNNP NNS IN NNP VBP VBN DT JJ NN WDT PRP VBP VBZ NN VBN TO JJ NN NNP NNP NNP .\nU.S. Lieutenant General John Sattler Thursday did not confirm the find , but he said coalition troops had found a number of insurgent headquarters in the city .\tNNP NNP NNP NNP NNP NNP VBD RB VB DT NN , CC PRP VBD NN NNS VBD VBN DT NN IN JJ NN IN DT NN .\nEmbedded reporters in Fallujah say troops searching the safe house property found photographs , notes , ammunition and letters thought to be from al-Zarqawi .\tJJ NNS IN NNP VBP NNS VBG DT JJ NN NN VBD NNS , NNS , NN CC NNS VBN TO VB IN NNP .\nVideotape shot by an American news crew also showed a mural pledging allegiance to the al Qaida terrorist network .\tNN VBN IN DT JJ NN NN RB VBD DT NN VBG NN TO DT NNP NNP NN NN .\nSeveral bodies lay outside the house , and soldiers found an American-made truck wired with explosives nearby .\tDT NNS VBD IN DT NN , CC NNS VBD DT JJ NN VBN IN NNS RB .\nU.S. and Iraqi officials have said the terrorist leader probably fled Fallujah ahead of the recent assault .\tNNP CC JJ NNS VBP VBN DT JJ NN RB VBD NNP RB IN DT JJ NN .\nThe U.S. military in Afghanistan says fighting in two southern provinces has left four suspected militants dead and two Afghan police wounded .\tDT NNP NN IN NNP VBZ VBG IN CD JJ NNS VBZ VBN CD JJ NNS JJ CC CD JJ NNS VBD .\nA U.S. military spokesman Lieutenant Colonel Jerry O'Hara says three insurgents were killed and two Afghan police officers wounded during a clash Friday in the Deh Rawood district of Uruzgan province .\tDT NNP JJ NN NNP NNP NNP NNP VBZ CD NNS VBD VBN CC CD JJ NN NNS VBD IN DT NN NNP IN DT NNP NNP NN IN NNP NN .\nOne fighter was captured , along with a light machine gun and a rocket-propelled grenade .\tCD NN VBD VBN , IN IN DT JJ NN NN CC DT JJ NN .\nThe spokesman said that , on the same day , south of Kabul , one militant was killed when a group of insurgents attacked a U.S. and Afghan military convoy .\tDT NN VBD IN , IN DT JJ NN , RB IN NNP , CD NN VBD VBN WRB DT NN IN NNS VBD DT NNP CC JJ JJ NN .\nThere has been an upsurge of violence in Afghanistan ahead of the September 18 parliamentary elections .\tEX VBZ VBN DT NN IN NN IN NNP RB IN DT NNP CD JJ NNS .\nHundreds of people have died in militant-related violence so far this year .\tNNS IN NNS VBP VBN IN JJ NN RB RB DT NN .\nFormer Darfur rebels said Friday they rescued a kidnapped Chinese worker in Sudan 's Darfur region .\tJJ NNP NNS VBD NNP PRP VBD DT VBN JJ NN IN NNP POS NNP NN .\nReuters news agency reports the engineer was in good health .\tNNP NN NN VBZ DT NN VBD IN JJ NN .\nA Sudanese army spokesman said Wednesday he had information the engineer had been taken hostage in neighboring Chad .\tDT JJ NN NN VBD NNP PRP VBD NN DT NN VBD VBN VBN NN IN JJ NNP .\nLast month three Russian pilots were kidnapped in Sudan 's Darfur region at gunpoint and held for two days .\tJJ NN CD JJ NNS VBD VBN IN NNP POS NNP NN IN NN CC VBN IN CD NNS .\nThey were released one day after an American aid worker was freed in Darfur after being held captive for more than 100 days .\tPRP VBD VBN CD NN IN DT JJ NN NN VBD VBN IN NNP IN VBG VBN JJ IN JJR IN CD NNS .\nIndia has announced plans to pay an additional $ 160 million to victims of a 1984 anti-Sikh riot , in which more than 3,000 Sikhs were killed .\tNNP VBZ VBN NNS TO VB DT JJ $ CD CD TO NNS IN DT CD JJ NN , IN WDT JJR IN CD NNS VBD VBN .\nThe Indian government said Thursday the families of those killed will receive a total of nearly $ 7,800 , while those injured in the riots will receive a total of $ 2,800 .\tDT JJ NN VBD NNP DT NNS IN DT VBN MD VB DT NN IN RB $ CD , IN DT VBN IN DT NNS MD VB DT NN IN $ CD .\nThe decision to increase the funds given to riot victims came after a report released in August said some Congress party leaders may have helped incite the riots .\tDT NN TO VB DT NNS VBN TO NN NNS VBD IN DT NN VBN IN NNP VBD DT NNP NN NNS MD VB VBN VB DT NNS .\nThe riots were sparked by the 1984 assassination of Prime Minister Indira Gandhi , by Sikh members of her security team .\tDT NNS VBD VBN IN DT CD NN IN NNP NNP NNP NNP , IN NNP NNS IN PRP$ NN NN .\nVictims and their families say the compensation is not enough , and have demanded any politician who helped incite the riot be brought to justice .\tNNS CC PRP$ NNS VBP DT NN VBZ RB RB , CC VBP VBN DT NN WP VBD VB DT NN VB VBN TO NN .\nThe new head of the Palestinian Fatah movement has threatened to expel popular leader Marwan Barghouti unless he withdraws from the Palestinian presidential race .\tDT JJ NN IN DT JJ NNP NN VBZ VBN TO VB JJ NN NNP NNP IN PRP VBZ IN DT JJ JJ NN .\nBarghouti is seen as the only serious challenger to the official Fatah candidate , former prime minister Mahmoud Abbas .\tNNP VBZ VBN IN DT RB JJ NN TO DT JJ NNP NN , JJ JJ NN NNP NNP .\nFatah chief Faruq Qaddumi says any member who goes against the group 's decisions should resign and have his membership cancelled .\tNNP NN NNP NNP VBZ DT NN WP VBZ IN DT NN POS NNS MD VB CC VB PRP$ NN VBD .\nThe 45-year-old Barghouti is currently serving five life terms in an Israeli prison for planning suicide attacks .\tDT JJ NNP VBZ RB VBG CD NN NNS IN DT JJ NN IN VBG NN NNS .\nMr. Barghouti , who has denied involvement in the attacks , filed papers for the January 9th presidential race last Wednesday .\tNNP NNP , WP VBZ VBN NN IN DT NNS , VBN NNS IN DT NNP CD JJ NN JJ NNP .\nThe winner of the race will succeed the late Yasser Arafat and lead the Palestinians as world powers try to revive the Middle East peace process .\tDT NN IN DT NN MD VB DT JJ NNP NNP CC VB DT NNS IN NN NNS VBP TO VB DT NNP NNP NN NN .\nIsrael says it will not negotiate with Syria as long as Damascus supports terrorist groups , brushing off a Syrian offer of peace talks .\tNNP VBZ PRP MD RB VB IN NNP RB RB IN NNP VBZ JJ NNS , VBG RP DT JJ NN IN NN NNS .\nA spokeswoman for Israeli Prime Minister Ehud Olmert Tuesday also criticized Syria for pro-Hezbollah statements made by its foreign minister , Walid Moualem during the month-long Israel-Hezbollah war .\tDT NN IN JJ NNP NNP NNP NNP NNP RB VBD NNP IN JJ NNS VBN IN PRP$ JJ NN , NNP NNP IN DT JJ JJ NN .\nSyria and Iran are believed to be key suppliers of weapons and money to Hezbollah .\tNNP CC NNP VBP VBN TO VB JJ NNS IN NNS CC NN TO NNP .\nIn an interview broadcast Monday , Syrian President Bashar al-Assad said he is ready to hold talks with Israel but that an impartial arbiter should mediate between the two sides .\tIN DT NN NN NNP , JJ NNP NNP NNP VBD PRP VBZ JJ TO VB NNS IN NNP CC IN DT JJ NN MD VB IN DT CD NNS .\nThe Syrian leader said he doubts the U.S. can play that role .\tDT JJ NN VBD PRP VBZ DT NNP MD VB DT NN .\nHe said Washington lacks the will and the vision to pursue peace in the Middle East .\tPRP VBD NNP VBZ DT NN CC DT NN TO VB NN IN DT NNP NNP .\nTalks between Syria and Israel broke down in 2000 .\tNNS IN NNP CC NNP VBD RP IN CD .\nSyria has demanded that Israel return the entire Golan Heights .\tNNP VBZ VBN IN NNP VB DT JJ NNP NNP .\nIsrael seized the Golan Heights in the 1967 Six-Day War .\tNNP VBD DT NNP NNPS IN DT CD NNP NNP .\nMilitary officials in Iraq say a U.S. soldier was killed and nine others wounded Saturday when Iraqi insurgents attacked an Army patrol in central Baghdad .\tJJ NNS IN NNP VBP DT NNP NN VBD VBN CC CD NNS VBD NNP WRB JJ NNS VBD DT NNP NN IN JJ NNP .\nThe U.S. military says the unit came under what it called a coordinated attack of roadside bombs , small arms fire and rocket-propelled grenades .\tDT NNP NN VBZ DT NN VBD IN WP PRP VBD DT JJ NN IN NN NNS , JJ NNS NN CC JJ NNS .\nEarlier , Iraqi insurgents attacked a police station in the Azamiyah district in northwest Baghdad , killing at least three policemen .\tRB , JJ NNS VBD DT NN NN IN DT NNP NN IN JJ NNP , VBG IN JJS CD NNS .\nClashes also broke out between gunmen and Iraqi security forces in Baghdad 's Amiriyah district .\tNNS RB VBD RP IN NNS CC JJ NN NNS IN NNP POS NNP NN .\nSaturday 's violence came a day after Iraqi forces and U.S. soldiers raided a Sunni Muslim mosque in Baghdad known for its anti-American agitation and support for the former regime of Saddam Hussein .\tNNP POS NN VBD DT NN IN JJ NNS CC NNP NNS VBD DT NNP NNP NN IN NNP VBN IN PRP$ JJ NN CC NN IN DT JJ NN IN NNP NNP .\nTwo people were killed during Friday 's raid and several others were arrested .\tCD NNS VBD VBN IN NNP POS NN CC JJ NNS VBD VBN .\nThe United Nations ' top communications agency has called on Iran to stop jamming international satellite broadcasts .\tDT NNP NNPS POS JJ NNS NN VBZ VBN IN NNP TO VB VBG JJ NN NNS .\nThe International Telecommunication Union said Friday interfering with foreign satellite signals is forbidden .\tDT NNP NNP NNP VBD NNP VBG IN JJ NN NNS VBZ VBN .\nThe agency stopped short of blaming the Iranian government , but indicated the source of the jamming was coming from Iranian soil .\tDT NN VBD RB IN VBG DT JJ NN , CC VBD DT NN IN DT NN VBD VBG IN JJ NN .\nThe ITU released the statement after receiving complaints from France on behalf of satellite provider Eutelsat .\tDT NNP VBD DT NN IN VBG NNS IN NNP IN NN IN NN NN NNP .\nEutelsat claims Iran blocked Persian broadcasts by the Voice of America and the BBC after June of last year , when a disputed presidential election in Iran sparked mass anti-government protests .\tNNP NNS NNP VBD NNP NNS IN DT NNP IN NNP CC DT NNP IN NNP IN JJ NN , WRB DT JJ JJ NN IN NNP VBD JJ JJ NNS .\nThe European Union has also condemned the satellite jamming .\tDT NNP NNP VBZ RB VBN DT NN NN .\nThe U.N. agency does not have a means to force Iran to stop the satellite disruptions .\tDT NNP NN VBZ RB VB DT NN TO VB NNP TO VB DT NN NNS .\nU.N. health officials and health ministers from several African countries are due to meet Wednesday in Geneva to discuss ways to stem rising polio numbers .\tNNP NN NNS CC NN NNS IN JJ JJ NNS VBP JJ TO VB NNP IN NNP TO VB NNS TO VB VBG NN NNS .\nMinisters from Nigeria , Niger , Egypt , Burkina Faso , Ivory Coast , Sudan , the Central African Republic and Chad are due to take part in the talks .\tNNS IN NNP , NNP , NNP , NNP NNP , NNP NNP , NNP , DT NNP NNP NNP CC NNP VBP JJ TO VB NN IN DT NNS .\nThe World Health Organization says the worldwide number of polio cases rose by more than 30 percent last year , to more than 1,170 .\tDT NNP NNP NNP VBZ DT JJ NN IN NN NNS VBD IN JJR IN CD NN JJ NN , TO JJR IN CD .\nThe majority of cases were in Nigeria , India and Pakistan .\tDT NN IN NNS VBD IN NNP , NNP CC NNP .\nWHO efforts to eradicate the disease worldwide by the end of this year have been hampered by a months-long vaccine boycott in northern Nigeria , after opponents there said the vaccine was contaminated with infertility agents .\tWP NNS TO VB DT NN NN IN DT NN IN DT NN VBP VBN VBN IN DT JJ NN NN IN JJ NNP , IN NNS RB VBD DT NN VBD VBN IN NN NNS .\nPolio attacks the nervous system , causing paralysis and sometimes death .\tNNP VBZ DT JJ NN , VBG NN CC RB NN .\nOne computer company is working to add solar power to its portable devices , while another is developing a touch screen for the next version of its widely used software .\tCD NN NN VBZ VBG TO VB JJ NN TO PRP$ JJ NNS , IN DT VBZ VBG DT NN NN IN DT JJ NN IN PRP$ RB VBN NN .\nMacrumors.com , a website that closely watches developments at the Apple computer company , says the firm has asked for a patent on adding a solar panel to generate electricity for its portable phones and computers .\tNNP , DT NN WDT RB VBZ NNS IN DT NNP NN NN , VBZ DT NN VBZ VBN IN DT NN IN VBG DT JJ NN TO VB NN IN PRP$ JJ NNS CC NNS .\nWhat is new is the idea of putting the solar panel beneath the devices ' display screens and touch screens , saving space .\tWP VBZ JJ VBZ DT NN IN VBG DT JJ NN IN DT NNS POS NN NNS CC NN NNS , VBG NN .\nApple 's competitor , Microsoft , is developing a touch screen for the next version of its Windows software .\tNNP POS NN , NNP , VBZ VBG DT NN NN IN DT JJ NN IN PRP$ NNP NN .\nThe touch screen could take over some of the work now done by a keyboard or computer mouse .\tDT NN NN MD VB RP DT IN DT NN RB VBN IN DT NN CC NN NN .\nThe White House says President Bush will meet with his counterparts from Liberia and the Democratic Republic of Congo in Washington later this month .\tDT NNP NNP VBZ NNP NNP MD VB IN PRP$ NNS IN NNP CC DT JJ NNP IN NNP IN NNP RB DT NN .\nA pair of statements released Friday said Liberian President Ellen Johnson Sirleaf will visit the White House October 18 , followed by Congolese President Joseph Kabila eight days later .\tDT NN IN NNS VBN NNP VBD JJ NNP NNP NNP NNP MD VB DT NNP NNP NNP CD , VBN IN JJ NNP NNP NNP CD NNS RB .\nThe White House says Mr. Bush and Mrs. Sirleaf plan to discuss cooperation in the areas of education , reconstruction , trade , security and debt relief .\tDT NNP NNP VBZ NNP NNP CC NNP NNP VBP TO VB NN IN DT NNS IN NN , NN , NN , NN CC NN NN .\nIt says Mr. Bush and Mr. Kabila will focus on increasing cooperation on security sector reform and economic reconstruction in eastern Congo .\tPRP VBZ NNP NNP CC NNP NNP MD VB IN VBG NN IN NN NN NN CC JJ NN IN JJ NNP .\nThe Bush administration has been largely supportive of both countries ' governments since elections that brought Mrs. Sirleaf to power in 2005 and confirmed Mr. Kabila as Congo 's president last year .\tDT NNP NN VBZ VBN RB JJ IN DT NNS POS NNS IN NNS WDT VBD NNP NNP TO NN IN CD CC VBD NNP NNP IN NNP POS NN JJ NN .\nBoth countries are emerging from bloody civil wars that ruined much of their infrastructure .\tDT NNS VBP VBG IN JJ JJ NNS WDT VBD NN IN PRP$ NN .\nIraqi officials say bombings in two parts of the country have killed at least 13 people , including seven in an attack against a senior Iraqi Kurdish official .\tJJ NNS VBP NNS IN CD NNS IN DT NN VBP VBN IN JJS CD NNS , VBG CD IN DT NN IN DT JJ JJ NNP NN .\nPolice say a roadside bomb in eastern Diyala province Sunday hit a convoy carrying Mohammed Ramadan , a senior member of Iraq 's Patriotic Union of Kurdistan party .\tNNS VBP DT NN NN IN JJ NNP NN NNP VBD DT NN VBG NNP NNP , DT JJ NN IN NNP POS NNP NNP IN NNP NN .\nAuthorities say the blast killed five members of Ramadan 's family and two of his guards .\tNNS VBP DT NN VBD CD NNS IN NNP POS NN CC CD IN PRP$ NNS .\nThe bomb wounded at least four other people , including Ramadan .\tDT NN VBD IN JJS CD JJ NNS , VBG NNP .\nSeparately today , police say a car bomb attack killed six people and wounded 14 others in northern Baghdad .\tRB NN , NNS VBP DT NN NN NN VBD CD NNS CC VBD CD NNS IN JJ NNP .\nAuthorities say three policemen were among those wounded in the attack on a police patrol in the capital 's Shaab neighborhood .\tNNS VBP CD NNS VBD IN DT VBN IN DT NN IN DT NN NN IN DT NN POS NNP NN .\nThe United States and France have again called for the withdrawal of Syrian troops from Lebanon .\tDT NNP NNPS CC NNP VBP RB VBN IN DT NN IN JJ NNS IN NNP .\nSpeaking in London at a conference on Palestinian reforms , Secretary of State Condoleezza Rice and France 's foreign minister Michel Barnier called on Syria to implement the United Nations Security Council resolution aimed at ending foreign interference in Lebanon .\tVBG IN NNP IN DT NN IN JJ NNS , NNP IN NNP NNP NNP CC NNP POS JJ NN NNP NNP VBD IN NNP TO VB DT NNP NNP NNP NNP NN VBN IN VBG JJ NN IN NNP .\nMs. Rice said France and the United States are discussing ways to help Beirut ensure that its next elections are free and fair .\tNNP NNP VBD NNP CC DT NNP NNPS VBP VBG NNS TO VB NNP VB IN PRP$ JJ NNS VBP JJ CC JJ .\nShe also said the two countries are considering options aimed at stabilizing Lebanon if Syrian troops withdraw .\tPRP RB VBD DT CD NNS VBP VBG NNS VBN IN VBG NNP IN JJ NNS VB .\nLebanon 's pro-Syrian government resigned Monday following mass protests and a no-confidence motion in parliament over the killing of former Prime Minister Rafik Hariri .\tNNP POS JJ NN VBD NNP VBG JJ NNS CC DT JJ NN IN NN IN DT NN IN JJ NNP NNP NNP NNP .\nBoth the Syrian and the Lebanese governments have denied involvement in the February 14 attack that sparked anti-Syrian demonstrations .\tDT DT JJ CC DT JJ NNS VBP VBN NN IN DT NNP CD NN WDT VBD JJ NNS .\nLebanon 's opposition leaders say protests will continue until Syria withdraws its 14,000 troops .\tNNP POS NN NNS VBP NNS MD VB IN NNP VBZ PRP$ CD NNS .\nIndonesia 's military has started the final phase of troop withdrawals from Aceh province , as part of a peace accord to end a 30-year-long separatist insurgency .\tNNP POS NN VBZ VBN DT JJ NN IN NN NNS IN NNP NN , IN NN IN DT NN NN TO VB DT JJ NN NN .\nAn army spokesman said Tuesday 1,600 troops were being withdrawn , and more would follow next week .\tDT NN NN VBD NNP CD NNS VBD VBG VBN , CC RBR MD VB JJ NN .\nIndonesia began the pullout a day after rebels from the Free Aceh Movement surrendered their final batch of weapons .\tNNP VBD DT NN DT NN IN NNS IN DT NNP NNP NNP VBD PRP$ JJ NN IN NNS .\nThe peace agreement calls for Indonesian soldiers to leave Aceh , in parallel with militants handing over weapons to international monitors .\tDT NN NN VBZ IN JJ NNS TO VB NNP , IN NN IN NNS VBG IN NNS TO JJ NNS .\nUnder the deal , only 14,000 Indonesian soldiers are allowed to remain in Aceh after the military completes its last withdrawal .\tIN DT NN , RB CD JJ NNS VBP VBN TO VB IN NNP IN DT JJ NNS PRP$ JJ NN .\nIndonesia and the rebels signed the truce in August in a bid to help Aceh recover from last December 's devastating tsunami .\tNNP CC DT NNS VBD DT NN IN NNP IN DT NN TO VB NNP VB IN JJ NNP POS JJ NN .\nPalestinian President Mahmoud Abbas and Prime Minister Ismail Haniyeh have appealed for an end to the fighting between Hamas militiamen and the president 's Fatah faction .\tJJ NNP NNP NNP CC NNP NNP NNP NNP VBP VBN IN DT NN TO DT NN IN NNP NNS CC DT NN POS NNP NN .\nAt least eight people were killed and scores more wounded in the fighting which broke out Sunday in the Gaza Strip and Ramallah .\tIN JJS CD NNS VBD VBN CC NNS JJR VBN IN DT NN WDT VBD RP NNP IN DT NNP NNP CC NNP .\nThe clashes were triggered when Hamas security forces tried to stop protests by policemen demanding the payment of overdue salaries from the Hamas-led government .\tDT NNS VBD VBN WRB NNP NN NNS VBD TO VB NNS IN NNS VBG DT NN IN JJ NNS IN DT JJ NN .\nDemonstrators set fire to the Palestinian cabinet building in Ramallah .\tNNS VBD NN TO DT JJ NN NN IN NNP .\nMembers of the armed wing of the President 's Fatah faction kidnapped a Hamas minister .\tNNS IN DT JJ NN IN DT NNP POS NNP NN VBD DT NNP NN .\nIn a televised speech , President Abbas called on Fatah and Hamas forces to end the conflict and return to their positions .\tIN DT JJ NN , NNP NNP VBD IN NNP CC NNP NNS TO VB DT NN CC NN TO PRP$ NNS .\nThe Interior Ministry responded by ordering Hamas-led security forces to redeploy to positions held before the confrontation .\tDT NNP NNP VBD IN VBG JJ NN NNS TO VB TO NNS VBN IN DT NN .\nAskar Akayev Kyrgyzstan 's parliament has failed to gather enough lawmakers to formally accept President Askar Akayev 's resignation , technically leaving the deposed leader in power .\tNNP NNP NNP POS NN VBZ VBN TO VB JJ NNS TO RB VB NNP NNP NNP POS NN , RB VBG DT VBN NN IN NN .\nThe letter of resignation was to have been presented to the 75-member legislature Tuesday .\tDT NN IN NN VBD TO VB VBN VBN TO DT JJ NN NNP .\nDeputies also planned to watch a resignation speech videotaped by Mr. Akayev in Moscow , but the parliamentary delegation that traveled to the Russian capital failed to show up .\tNNS RB VBD TO VB DT NN NN VBN IN NNP NNP IN NNP , CC DT JJ NN WDT VBD TO DT JJ NN VBD TO VB RP .\nOfficials say the parliament session has been rescheduled for Wednesday .\tNNS VBP DT NN NN VBZ VBN VBN IN NNP .\nIn a sign of how unstable Kyrgyzstan remains , a top anti-corruption officer was gunned down early Tuesday outside his house in the southern city of Osh .\tIN DT NN IN WRB JJ NNP VBZ , DT JJ JJ NN VBD VBN RB RB NNP IN PRP$ NN IN DT JJ NN IN NNP .\nA top U.S. diplomat is in Pakistan for talks with the country 's leaders on the fight against terrorism and the situation in neighboring Afghanistan .\tDT JJ NNP NN VBZ IN NNP IN NNS IN DT NN POS NNS IN DT NN IN NN CC DT NN IN VBG NNP .\nU.S. Assistant Secretary of State for South Asia Richard Boucher arrived in the Pakistani capital , Islamabad , Wednesday for two days of meetings .\tNNP NNP NNP IN NNP IN NNP NNP NNP NNP VBD IN DT JJ NN , NNP , NNP IN CD NNS IN NNS .\nBoucher is meeting with Foreign Minister Khurshid Kasuri , President Pervez Musharraf and other key members of government .\tNNP VBZ VBG IN NNP NNP NNP NNP , NNP NNP NNP CC JJ JJ NNS IN NN .\nTalks are also expected to focus on recent political developments in Pakistan .\tNNS VBP RB VBN TO VB IN JJ JJ NNS IN NNP .\nPresident Musharraf is trying to maintain cooperation with Washington in the fight against terrorism while managing opposition to his government by Islamist hardliners .\tNNP NNP VBZ VBG TO VB NN IN NNP IN DT NN IN NN IN VBG NN TO PRP$ NN IN NNP NNS .\nThe European Union has imposed more sanctions on Burma .\tDT NNP NNP VBZ VBN JJR NNS IN NNP .\nThe new sanctions , adopted at an EU foreign ministers ' meeting in Brussels , include an embargo on the import of timber , gems and metals from Burma .\tDT JJ NNS , VBN IN DT NNP JJ NNS POS NN IN NNP , VBP DT NN IN DT NN IN NN , NNS CC NNS IN NNP .\nThey also extend a list of Burmese leaders and their relatives subject to a travel ban and assets freeze .\tPRP RB VBP DT NN IN JJ NNS CC PRP$ NNS JJ TO DT NN NN CC NNS NN .\nThe EU foreign ministers urged Burma 's military government to enter into a ' meaningful dialogue ' that will lead to democracy .\tDT NNP JJ NNS VBD NNP POS JJ NN TO VB IN DT `` JJ NN `` WDT MD VB TO NN .\nThey also called for the lifting of all restrictions on detained opposition leader Aung San Suu Kyi .\tPRP RB VBD IN DT NN IN DT NNS IN JJ NN NN NNP NNP NNP NNP .\nOfficials in Sierra Leone say at least 200 people are missing and feared drowned after a boat capsized off the coast of the west African nation .\tNNS IN NNP NNP VBP IN JJS CD NNS VBP VBG CC VBD VBN IN DT NN VBN IN DT NN IN DT JJ JJ NN .\nEight people have been confirmed dead and 37 have been rescued as officials continue to search for survivors .\tCD NNS VBP VBN VBN JJ CC CD VBP VBN VBN IN NNS VBP TO VB IN NNS .\nTransportation authorities have been unable to determine the exact number of passengers .\tNNP NNS VBP VBN JJ TO VB DT JJ NN IN NNS .\nPolice said the boat , carrying a large number of schoolchildren , turned over late Wednesday in a heavy storm south of the capital , Freetown .\tNNS VBD DT NN , VBG DT JJ NN IN NNS , VBD RP JJ NNP IN DT JJ NN NN IN DT NN , NNP .\nAuthorities have not said what caused the accident .\tNNS VBP RB VBN WP VBD DT NN .\nHowever , maritime accidents are not uncommon in Sierra Leone where boats are often overloaded and safety standards are frequently lacking or ignored .\tRB , NN NNS VBP RB JJ IN NNP NNP WRB NNS VBP RB VBN CC NN NNS VBP RB VBG CC VBN .\nDoctors treating Ukrainian opposition leader Viktor Yushchenko have confirmed he was poisoned with TCDD , the most harmful type of dioxin .\tNNS VBG JJ NN NN NNP NNP VBP VBN PRP VBD VBN IN NNP , DT RBS JJ NN IN NN .\nTCDD was a key contaminant in Agent Orange , the substance that caused numerous health problems during the Vietnam War .\tNNP VBD DT JJ NN IN NNP NNP , DT NN WDT VBD JJ NN NNS IN DT NNP NNP .\nThe doctors in Vienna say the level was about 6,000 times higher than normal .\tDT NNS IN NNP VBP DT NN VBD RB CD NNS JJR IN JJ .\nIn an interview Thursday with the Associated Press , Mr. Yushchenko said he was poisoned at a September dinner with top Ukrainian security officials .\tIN DT NN NNP IN DT NNP NNP , NNP NNP VBD PRP VBD VBN IN DT NNP NN IN JJ JJ NN NNS .\nThis came as Mr. Yushchenko and Prime Minister Viktor Yanukovych were in the midst of a heated presidential election campaign .\tDT VBD IN NNP NNP CC NNP NNP NNP NNP VBD IN DT NN IN DT JJ JJ NN NN .\nThe two face off in a December 26 election .\tDT CD NN IN IN DT NNP CD NN .\nThe Associated Press also interviewed Mr. Yanukovych , who said he does not want to be associated with authorities Mr. Yushchenko say poisoned him .\tDT NNP NNP RB VBD NNP NNP , WP VBD PRP VBZ RB VB TO VB VBN IN NNS NNP NNP VBP VBN PRP .\nMr. Yanukovych was declared winner of a flawed November election , but the Supreme Court overturned the results and ordered this month 's re-run .\tNNP NNP VBD VBN NN IN DT JJ NNP NN , CC DT NNP NNP VBD DT NNS CC VBD DT NN POS NN .\nTradition has it that the Vatican Post Office issues a special stamp upon the death of a pope .\tNN VBZ PRP IN DT NNP NNP NNP VBZ DT JJ NN IN DT NN IN DT NN .\nOfficials in Vatican City Saturday said the so-called ' vacant see ' stamp will carry an image only of two crossed keys .\tNNS IN NNP NNP NNP VBD DT JJ `` JJ VBP `` NN MD VB DT NN RB IN CD JJ NNS .\nThe traditional image on Vatican stamps issued while a pope is alive contains both the keys as well as other papal symbols .\tDT JJ NN IN NNP NNS VBN IN DT NN VBZ JJ VBZ DT DT NNS RB RB IN JJ JJ NNS .\nThese special stamps are only valid during the so-called ' interregnum , ' or between the time of a pope 's death and when a new one is elected by a conclave of cardinals .\tDT JJ NNS VBP RB JJ IN DT JJ `` NN , `` CC IN DT NN IN DT NN POS NN CC WRB DT JJ CD VBZ VBN IN DT NN IN NNS .\nThe last time the Vatican issued a vacant see stamp was in 1978 , when Pope John Paul I died .\tDT JJ NN DT NNP VBD DT JJ VB NN VBD IN CD , WRB NNP NNP NNP NNP VBD .\nThe U.S. Central Intelligence Agency says al-Qaida is fully capable of building and detonating a radioactive dirty bomb in the United States and other Western nations .\tDT NNP NNP NNP NNP VBZ NNP VBZ RB JJ IN NN CC VBG DT JJ NN NN IN DT NNP NNPS CC JJ JJ NNS .\nIn its annual report on proliferation threats released to lawmakers Tuesday , the CIA said al-Qaida 's stated desire to carry out attacks using chemical , biological or nuclear materials is one of the agency 's highest concerns .\tIN PRP$ JJ NN IN NN NNS VBN TO NNS NNP , DT NNP VBD NNP POS JJ NN TO VB RP NNS VBG NN , JJ CC JJ NNS VBZ CD IN DT NN POS JJS NNS .\nThe CIA said any attack would probably be on a small scale , using improvised delivery devices and easily obtainable toxins or radiological substances .\tDT NNP VBD DT NN MD RB VB IN DT JJ NN , VBG JJ NN NNS CC RB JJ NNS CC JJ NNS .\nIt warned that multiple , simultaneous attacks could kill hundreds of people and cause widespread panic .\tPRP VBD IN NN , JJ NNS MD VB NNS IN NNS CC VB JJ NN .\nThe report also says the CIA remains convinced Iran is pursuing a clandestine nuclear weapons program , and North Korea may have a nuclear-capable missile able to reach the United States .\tDT NN RB VBZ DT NNP VBZ JJ NNP VBZ VBG DT JJ JJ NNS NN , CC NNP NNP MD VB DT JJ NN JJ TO VB DT NNP NNPS .\nEgyptian officials say they have postponed reconciliation talks scheduled next week with Palestinian factions .\tJJ NNS VBP PRP VBP VBN NN NNS VBN JJ NN IN JJ NNS .\nAuthorities did not say when the Egyptian-sponsored talks would be held .\tNNS VBD RB VB WRB DT JJ NNS MD VB VBN .\nEarlier Saturday , Hamas officials said they plan to boycott the talks with rival Fatah .\tRBR NNP , NNP NNS VBD PRP VBP TO VB DT NNS IN JJ NNP .\nOfficials said Palestinian President and Fatah leader Mahmoud Abbas continues to crack down on Hamas in the Fatah-controlled West Bank .\tNNS VBD JJ NNP CC NNP NN NNP NNP VBZ TO VB RP IN NNP IN DT JJ NNP NNP .\nLate last month , Mr. Abbas deployed hundreds of security officers to the West Bank city of Hebron .\tRB JJ NN , NNP NNP VBD NNS IN NN NNS TO DT NNP NNP NN IN NNP .\nEgypt invited Hamas and Fatah , along with smaller Palestinian factions , to a meeting in Cairo on November ninth to settle the conflict between the two larger groups .\tNNP VBD NNP CC NNP , IN IN JJR JJ NNS , TO DT NN IN NNP IN NNP NN TO VB DT NN IN DT CD JJR NNS .\nThe factions have been divided since Hamas militants drove Fatah fighters out of Gaza in June 2007 and seized control of the territory .\tDT NNS VBP VBN VBN IN NNP NNS VBD NNP NNS IN IN NNP IN NNP CD CC VBD NN IN DT NN .\nHong Kong says it had a record-setting 268 new cases of HIV infection in 2004 .\tNNP NNP VBZ PRP VBD DT JJ CD JJ NNS IN NNP NN IN CD .\nDr. S. S. Lee , a consultant for the territory 's Health Department , says increased traffic between Hong Kong and China is partly to blame for the rise in HIV cases .\tNNP NNP NNP NNP , DT NN IN DT NN POS NNP NNP , VBZ VBN NN IN NNP NNP CC NNP VBZ RB TO VB IN DT NN IN NNP NNS .\nChina is one of many east Asian nations with a growing AIDS crisis .\tNNP VBZ CD IN JJ JJ JJ NNS IN DT VBG NNP NN .\nDr. Lee says the majority of the new HIV cases came from sexual transmission , while a smaller number contracted the virus from contaminated needles .\tNNP NNP VBZ DT NN IN DT JJ NNP NNS VBD IN JJ NN , IN DT JJR NN VBD DT NN IN VBN NNS .\nHowever , the number of AIDS cases dropped from 56 in 2003 to 49 last year .\tRB , DT NN IN NNP NNS VBD IN CD IN CD TO CD JJ NN .\nDr. Lee says an estimated 3,000 people in Hong Kong either have HIV or AIDS .\tNNP NNP VBZ DT JJ CD NNS IN NNP NNP CC VBP NNP CC NNP .\nTwelve mine clearing workers are missing in eastern Afghanistan .\tCD NN NN NNS VBP VBG IN JJ NNP .\nAuthorities said Thursday that the workers of a local demining company disappeared while traveling through Paktia province .\tNNS VBD NNP IN DT NNS IN DT JJ NN NN VBD IN VBG IN NNP NN .\nThe Reuters news agency quotes a Paktia official as saying insurgents abducted the 12 deminers .\tDT NNP NN NN VBZ DT NNP NN IN VBG NNS VBD DT CD NNS .\nIn southern Afghanistan , NATO said two soldiers were killed and several others wounded by two separate bomb attacks Thursday .\tIN JJ NNP , NNP VBD CD NNS VBD VBN CC JJ NNS VBN IN CD JJ NN NNS NNP .\nIt gave no other details .\tPRP VBD DT JJ NNS .\nOn Wednesday , Afghan and U.S.-led coalition troops killed more than 40 Taleban fighters during a 12-hour battle in southern Kandahar province .\tIN NNP , JJ CC JJ NN NNS VBD JJR IN CD NNP NNS IN DT JJ NN IN JJ NNP NN .\nThe military says nearly 200 Taleban insurgents have been killed in fighting in the area in the past two weeks .\tDT JJ VBZ RB CD NNP NNS VBP VBN VBN IN VBG IN DT NN IN DT JJ CD NNS .\nThe Taleban were ousted from power in Afghanistan by a U.S.-led offensive in late 2001 .\tDT NNP VBD VBN IN NN IN NNP IN DT JJ NN IN JJ CD .\nHowever , Taleban fighters have regrouped in recent months to mount an increasingly bloody insurgency aimed at the U.S.-backed government in Kabul .\tRB , NNP NNS VBP VBN IN JJ NNS TO VB DT RB JJ NN VBN IN DT JJ NN IN NNP .\nAmerican figure skater Michelle Kwan has pulled out of the Olympic Winter Games in Turin , Italy , dashing the superstar 's hopes to win the one prize that has eluded her over a long and prestigious career - an Olympic gold medal .\tJJ NN NN NNP NNP VBZ VBN IN IN DT NNP NNP NNPS IN NNP , NNP , VBG DT NN POS NNS TO VB DT CD NN WDT VBZ VBN PRP IN DT JJ CC JJ NN IN DT NNP NN NN .\nKwan withdrew from the games early Sunday due to a hip muscle injury and recurring groin strain .\tNNP VBD IN DT NNS JJ NNP JJ TO DT NN NN NN CC VBG JJ NN .\nKwan says taking herself off the team is the most difficult decision she has ever had to make .\tNNP VBZ VBG PRP RP DT NN VBZ DT RBS JJ NN PRP VBZ RB VBN TO VB .\nThe 25-year-old California native received a bye onto the Olympic team after missing the U.S. championships because of the groin injury .\tDT JJ NNP NN VBD DT NN IN DT NNP NN IN VBG DT NNP NNS IN IN DT NN NN .\nKwan has five world championships , nine U.S. titles , and silver and bronze Olympic medals .\tNNP VBZ CD NN NNS , CD NNP NNS , CC NN CC NN NNP NNS .\nMedals will be awarded in eight Olympic events Sunday , including the highly anticipated men 's Alpine skiing downhill race .\tNNS MD VB VBN IN CD NNP NNS NNP , VBG DT RB VBN NNS POS NNP NN NN NN .\nNorway leads the overall medal count with four , followed by Germany with two .\tNNP VBZ DT JJ JJ NN IN CD , VBN IN NNP IN CD .\nIsraeli security officials say they re-arrested nuclear-whistle blower Mordechai Vanunu early Thursday .\tJJ NN NNS VBP PRP VBD JJ NN NNP NNP RB NNP .\nOfficials say Vanunu is suspected of giving unauthorized information to foreigners .\tNNS VBP NNP VBZ VBN IN VBG JJ NN TO NNS .\nHe was set free in April , after serving 18 years in prison for divulging classified information about Israel 's nuclear program to the London Sunday Times .\tPRP VBD VBN JJ IN NNP , IN VBG CD NNS IN NN IN VBG JJ NN IN NNP POS JJ NN TO DT NNP NNP NNP .\nUnder conditions of his release , Vanunu is still barred from leaving the country or discussing Israel 's nuclear program .\tIN NNS IN PRP$ NN , NNP VBZ RB VBN IN VBG DT NN CC VBG NNP POS JJ NN .\nHis contacts with foreigners also are restricted .\tPRP$ NNS IN NNS RB VBP VBN .\nEgyptian officials say more than 40 people have died in a series of bomb attacks in a Red Sea resort area .\tJJ NNS VBP JJR IN CD NNS VBP VBN IN DT NN IN NN NNS IN DT NNP NNP NN NN .\nPolice say the seven blasts early Saturday included as many as four car bombs , and injured more than 100 people .\tNNS VBP DT CD NNS JJ NNP VBD RB JJ IN CD NN NNS , CC VBD JJR IN CD NNS .\nWitnesses say one hotel , Ghazala Gardens , in the town of Sharm el-Sheik was heavily damaged by the attacks , which also targeted a tourist bazaar in the Naama Bay area .\tNNS VBP CD NN , NNP NNP , IN DT NN IN NNP NNP VBD RB VBN IN DT NNS , WDT RB VBD DT NN NN IN DT NNP NNP NN .\nOfficials say one blast killed 17 people gathered at an outdoor cafe .\tNNS VBP CD NN VBD CD NNS VBN IN DT JJ NN .\nThe attacks come as hotels are packed with tourists , including many foreigners , during the busy summer vacation season .\tDT NNS VBP IN NNS VBP VBN IN NNS , VBG JJ NNS , IN DT JJ NN NN NN .\nLast October , 34 people died in explosions in nearby resort areas .\tJJ NNP , CD NNS VBD IN NNS IN JJ NN NNS .\nEgyptian officials blamed the attacks on violence related to the Israeli-Palestinian conflict .\tJJ NNS VBD DT NNS IN NN VBN TO DT JJ NN .\nTerrorist mastermind Abu Musab al-Zarqawi has apparently surfaced in an audiotape on the Internet , seeking to further divide Iraq 's Sunnis and Shi'ites 10 days before national elections .\tNN NN NNP NNP NNP VBZ RB VBN IN DT NN IN DT NNP , VBG TO JJ VB NNP POS NNP CC NNP CD NNS IN JJ NNS .\nThe 75-minute-long statement took aim at the country 's ascendant Shi'ites , who are expected to win a majority of seats in the transitional assembly .\tDT JJ NN VBD NN IN DT NN POS JJ NNS , WP VBP VBN TO VB DT NN IN NNS IN DT JJ NN .\nIn the tape , Zarqawi accuses their highest religious authority , Grand Ayatollah Ali al-Sistani , of approving November 's U.S.-led invasion to crush insurgents hiding in the Sunni stronghold of Fallujah .\tIN DT NN , NNP VBZ PRP$ JJS JJ NN , NNP NNP NNP NNP , IN VBG NNP POS JJ NN TO VB NNS VBG IN DT NNP NN IN NNP .\nHe also accuses Shi'ites of killing innocents in Fallujah , and claims they fought alongside 800 Israeli soldiers as well as Jordanian troops .\tPRP RB VBZ NNS IN VBG NNS IN NNP , CC NNS PRP VBD IN CD JJ NNS RB RB IN JJ NNS .\nThe authenticity of the tape has not been established .\tDT NN IN DT NN VBZ RB VBN VBN .\nMany of Fallujah 's residents fled ahead of November 's offensive .\tNN IN NNP POS NNS VBD RB IN NNP POS NN .\nThe U.S. military said Thursday that the city is now completely reopened and a little more than half of its residents have returned .\tDT NNP NN VBD NNP IN DT NN VBZ RB RB VBN CC DT RB JJR IN NN IN PRP$ NNS VBP VBN .\nCeremonies in the U.S. have marked the anniversary of the September 11 terrorist attacks with moments of silence and the reading of victims ' names .\tNNS IN DT NNP VBP VBN DT NN IN DT NNP CD JJ NNS IN NNS IN NN CC DT NN IN NNS POS NNS .\nBells tolled and bagpipes played in New York at the moment eight years ago when the first of two hijacked airliners slammed into the World Trade Center .\tNNP VBD CC NNS VBD IN NNP NNP IN DT NN CD NNS RB WRB DT NN IN CD JJ NNS VBD IN DT NNP NNP NNP .\nPresident Barack Obama took part in a ceremony on the South Lawn of the White House , while Vice President Joe Biden spoke at the service in New York .\tNNP NNP NNP VBD NN IN DT NN IN DT NNP NNP IN DT NNP NNP , IN NNP NNP NNP NNP VBD IN DT NN IN NNP NNP .\nNearly 3,000 people died on September 11 , 2001 , in a coordinated al-Qaeda attack involving four hijacked planes .\tRB CD NNS VBD IN NNP CD , CD , IN DT JJ NN NN VBG CD JJ NNS .\nOne of them crashed into the Pentagon , where Mr. Obama plans to attend a wreathlaying on Friday .\tCD IN PRP VBD IN DT NNP , WRB NNP NNP VBZ TO VB DT NN IN NNP .\nServices are also planned in Shanksville , Pennsylvania , the crash site of United Airlines Flight 93 .\tNNPS VBP RB VBN IN NNP , NNP , DT NN NN IN NNP NNPS NN CD .\nThat aircraft went down after passengers fought hijackers and presumably stopped the plane from hitting its intended target .\tDT NN VBD RB IN NNS VBD NNS CC RB VBD DT NN IN VBG PRP$ JJ NN .\nWitnesses in Nepal say police have opened fire on a protest rally against King Gyanendra in the west of the country , wounding at least one person .\tNNS IN NNP VBP NNS VBP VBN NN IN DT NN NN IN NNP NNP IN DT NN IN DT NN , VBG IN JJS CD NN .\nThey say the incident took place Thursday in the town of Pokhara , as police tried to disperse the demonstrators .\tPRP VBP DT NN VBD NN NNP IN DT NN IN NNP , IN NN VBD TO VB DT NNS .\nThe protest coincided with a nationwide strike called by opposition parties to protest the king 's plan for municipal elections .\tDT NN VBD IN DT JJ NN VBN IN NN NNS TO VB DT NN POS NN IN JJ NNS .\nThe streets of the capital , Kathmandu , were deserted , and schools and businesses were closed around the country .\tDT NNS IN DT NN , NNP , VBD VBN , CC NNS CC NNS VBD VBN IN DT NN .\nRiot police were patrolling to prevent the violence that has accompanied previous strikes .\tNN NNS VBD VBG TO VB DT NN WDT VBZ VBN JJ NNS .\nThe strike is aimed at stopping candidates from registering for February 8 elections , a process that began today .\tDT NN VBZ VBN IN VBG NNS IN VBG IN NNP CD NNS , DT NN WDT VBD NN .\nOnly a few candidates filed their nominations in Kathmandu in the first few hours .\tRB DT JJ NNS VBD PRP$ NNS IN NNP IN DT JJ JJ NNS .\nThe alliance of seven opposition groups says it will boycott the vote , because it would legitimize the king 's absolute rule .\tDT NN IN CD NN NNS VBZ PRP MD VB DT NN , IN PRP MD VB DT NN POS JJ NN .\nA Russian newspaper says Russia is planning to sell up to nine submarines to Venezuela .\tDT JJ NN VBZ NNP VBZ VBG TO VB RP TO CD NNS TO NNP .\nThe Kommersant reports Thursday that Venezuelan President Hugo Chavez is expected to sign the deal during a trip to Moscow , which starts June 29 .\tDT NN VBZ NNP IN JJ NNP NNP NNP VBZ VBN TO VB DT NN IN DT NN TO NNP , WDT VBZ NNP CD .\nThe contract would include five older , 636-type diesel submarines and the future delivery of four state-of-the-art 677 Amur submarines .\tDT NN MD VB CD JJR , JJ NN NNS CC DT JJ NN IN CD JJ CD NNP NNS .\nRussia has also supplied similar submarines to China .\tNNP VBZ RB VBN JJ NNS TO NNP .\nIn recent years , Venezuela has become a major buyer of Russian arms , a development that has prompted expressions of concern by the United States .\tIN JJ NNS , NNP VBZ VBN DT JJ NN IN JJ NNS , DT NN WDT VBZ VBN NNS IN NN IN DT NNP NNPS .\nPrevious Russian arms deals have supplied Venezuela with Kalashnikov rifles , jets , helicopters , and other weaponry .\tJJ JJ NNS NNS VBP VBN NNP IN NNP NNS , NNS , NNS , CC JJ NN .\nVenezuela 's president is a fierce critic of the Bush administration and says it supported the coup against him in April 2002 .\tNNP POS NN VBZ DT JJ NN IN DT NNP NN CC VBZ PRP VBD DT NN IN PRP IN NNP CD .\nU.S. officials have denied the charge .\tNNP NNS VBP VBN DT NN .\nU.S. Vice President Dick Cheney has arrived in Saudi Arabia for talks on issues including how to stop the sectarian violence in Iraq .\tNNP NNP NNP NNP NNP VBZ VBN IN NNP NNP IN NNS IN NNS VBG WRB TO VB DT JJ NN IN NNP .\nCheney is expected to ask Saudi officials to use their influence with Iraq 's Sunni Arab minority to help stabilize the country .\tNNP VBZ VBN TO VB JJ NNS TO VB PRP$ NN IN NNP POS NNP NNP NN TO VB VB DT NN .\nU.S. officials say the Saudi government has been a strong ally in the region .\tNNP NNS VBP DT JJ NN VBZ VBN DT JJ NN IN DT NN .\nThe vice president 's talks with King Abdullah also will include the Israeli-Palestinian conflict and the situation in Lebanon .\tDT NN NN POS NNS IN NNP NNP RB MD VB DT JJ NN CC DT NN IN NNP .\nOn Wednesday , President Bush is to open talks about Iraqi security with Iraq 's Prime Minister Nouri al-Maliki in Jordan .\tIN NNP , NNP NNP VBZ TO VB NNS IN JJ NN IN NNP POS NNP NNP NNP NNP IN NNP .\nThe Bush administration is reviewing its strategy in Iraq in hopes of stopping the rise in sectarian violence and continued attacks on coalition forces .\tDT NNP NN VBZ VBG PRP$ NN IN NNP IN NNS IN VBG DT NN IN JJ NN CC JJ NNS IN NN NNS .\nA new law comes into effect in Brazil Sunday , allowing the country 's air force to shoot down planes suspected of smuggling drugs .\tDT JJ NN VBZ IN NN IN NNP NNP , VBG DT NN POS NN NN TO VB RP NNS VBN IN VBG NNS .\nDrug traffickers frequently fly over Brazil while smuggling drugs from neighboring Colombia .\tNN NNS RB VBP IN NNP IN VBG NNS IN VBG NNP .\nBogota also has a similar shoot-down policy .\tNNP RB VBZ DT JJ JJ NN .\nBrazilian officials say air force pilots must follow an eight-step procedure before shooting at a suspected drug plane .\tJJ NNS VBP NN NN NNS MD VB DT JJ NN IN VBG IN DT JJ NN NN .\nCritics say that despite those steps , the chance of human error remains and innocent people could be killed .\tNNS VBP IN IN DT NNS , DT NN IN JJ NN VBZ CC JJ NNS MD VB VBN .\nSuch a mistake occurred in Peru in 2001 , and an American missionary and her child were killed .\tJJ DT NN VBD IN NNP IN CD , CC DT JJ NN CC PRP$ NN VBD VBN .\nIsrael has formally turned over the West Bank city of Jericho to Palestinian forces .\tNNP VBZ RB VBN IN DT NNP NNP NN IN NNP TO JJ NNS .\nIsraeli troops took down their national flag and dismantled a key checkpoint as Palestinian forces took up positions inside the city .\tJJ NNS VBD RP PRP$ JJ NN CC VBD DT JJ NN IN JJ NNS VBD RP NNS IN DT NN .\nTop commanders from both sides resolved a last-minute hitch over paperwork and signed an agreement to formalize the transfer .\tJJ NNS IN DT NNS VBD DT JJ NN IN NN CC VBD DT NN TO VB DT NN .\nIsrael still controls two checkpoints outside Jericho , but troops have relaxed security procedures to ease travel to the city .\tNNP RB VBZ CD NNS IN NNP , CC NNS VBP VBN NN NNS TO VB NN TO DT NN .\nJericho is the first of five towns ( with Tulkarem , Qalqiliya , Ramallah , Bethlehem ) that Israel plans to turn over to Palestinian control .\tNNP VBZ DT NN IN CD NNS LRB IN NNP , NNP , NNP , NNP RRB IN NNP VBZ TO VB RP TO JJ NN .\nMeanwhile , Israeli television reported that Jewish extremists plan to take over a disputed holy site in Jerusalem to try to sabotage Israel 's planned withdrawal from Gaza .\tRB , JJ NN VBD IN JJ NNS VBP TO VB RP DT JJ JJ NN IN NNP TO VB TO VB NNP POS VBN NN IN NNP .\nAlso Wednesday in Cairo , Egyptian and Palestinian officials and Palestinian militant leaders are discussing a proposed one-year halt to Palestinian attacks on Israeli targets .\tRB NNP IN NNP , JJ CC JJ NNS CC JJ JJ NNS VBP VBG DT VBN JJ NN TO JJ NNS IN JJ NNS .\nAfghan officials say three police officers have been killed in two different suicide bombings Tuesday .\tJJ NNS VBP CD NNS NNS VBP VBN VBN IN CD JJ NN NNS NNP .\nAuthorities say one officer was killed when a bomber rammed a police car in the southern province of Paktika , near the border with Pakistan .\tNNS VBP CD NN VBD VBN WRB DT NN VBD DT NN NN IN DT JJ NN IN NNP , IN DT NN IN NNP .\nThey say the other bombing took place in the relatively quiet province of Kunduz , when a bomber detonated his car while being followed by police .\tPRP VBP DT JJ NN VBD NN IN DT RB JJ NN IN NNP , WRB DT NN VBD PRP$ NN IN VBG VBN IN NNS .\nThat blast killed two policemen .\tDT NN VBD CD NNS .\nSeparately , government officials said unidentified gunmen kidnapped two workers from the ministry of rural development .\tRB , NN NNS VBD JJ NNS VBD CD NNS IN DT NN IN JJ NN .\nThat abduction occurred Monday in the western province of Nimroz .\tDT NN VBD NNP IN DT JJ NN IN NNP .\nA Seoul-based human rights group says North Korea has executed 70 defectors who were captured in China and repatriated .\tDT JJ JJ NNS NN VBZ NNP NNP VBZ VBN CD NNS WP VBD VBN IN NNP CC VBN .\nThe private Commission to Help North Korean Refugees cited informants in the North as saying the executions were carried out to set an example for others thinking about fleeing .\tDT JJ NN TO VB JJ JJ NNS VBD NNS IN DT NNP IN VBG DT NNS VBD VBN IN TO VB DT NN IN NNS VBG IN NN .\nThe group said in a statement Friday that eight or nine defectors were executed last month in public to discourage other people from fleeing to China .\tDT NN VBD IN DT NN NNP IN CD CC CD NNS VBD VBN JJ NN IN JJ TO VB JJ NNS IN VBG TO NNP .\nSouth Korean officials have not confirmed the report .\tJJ JJ NNS VBP RB VBN DT NN .\nChina is North Korea 's only important ally and by treaty returns North Koreans , who Beijing regards as illegal immigrants and not as refugees .\tNNP VBZ NNP NNP POS RB JJ NN CC IN NN VBZ JJ NNS , WP NNP VBZ IN JJ NNS CC RB IN NNS .\nMore than 1,00,000 North Koreans are believed to be hiding in China .\tJJR IN CD NNP NNS VBP VBN TO VB VBG IN NNP .\nNATO says its forces carried out a precision airstrike Saturday targeting a Taleban militant in southern Afghanistan .\tNNP VBZ PRP$ NNS VBD RP DT NN NN NNP VBG DT NNP NN IN JJ NNP .\nIn a statement , NATO said the mission targeted the vehicle of a suspected terrorist who is allegedly linked to the transport of anti-aircraft weapons .\tIN DT NN , NNP VBD DT NN VBD DT NN IN DT JJ JJ WP VBZ RB VBN TO DT NN IN JJ NNS .\nDetails about casualties related to the strike in Helmand province were not released .\tNNS IN NNS VBN TO DT NN IN NNP NN VBD RB VBN .\nThe strike took place during the first week of NATO 's offensive against Taleban militants in southern Afghanistan .\tDT NN VBD NN IN DT JJ NN IN NNP POS NN IN NNP NNS IN JJ NNP .\nAlso Saturday , authorities in eastern Afghanistan say four Afghan security officers were killed in a roadside bomb blast .\tRB NNP , NNS IN JJ NNP VBP CD JJ NN NNS VBD VBN IN DT NN NN NN .\nOfficials say the attack occurred in Khost province , near the Pakistani border .\tNNS VBP DT NN VBD IN NNP NN , IN DT JJ NN .\nIn southern Afghanistan Friday , a remote-controlled bomb ripped through the vehicle of pro-government tribal elder Mullah Naqib .\tIN JJ NNP NNP , DT JJ NN VBD IN DT NN IN JJ JJ NN NNP NNP .\nNaqib and some of his family members and guards were wounded in the blast and at least two others were killed .\tNNP CC DT IN PRP$ NN NNS CC NNS VBD VBN IN DT NN CC IN JJS CD NNS VBD VBN .\nRussian President Vladimir Putin has arrived in the Hague for the EuropeanUnion-Russian Summit Thursday where the disputed Ukrainian presidential election is expected to top the agenda .\tJJ NNP NNP NNP VBZ VBN IN DT NN IN DT JJ NNP NNP WRB DT JJ JJ JJ NN VBZ VBN TO VB DT NN .\nEU Commission President Jose Manuel Barroso has said the 25-member bloc will make it clear to the Russian President that the EU is not ' satisfied ' with Ukraine 's disputed election .\tNNP NNP NNP NNP NNP NNP VBZ VBN DT JJ NN MD VB PRP JJ TO DT JJ NNP IN DT NNP VBZ RB `` VBN `` IN NNP POS JJ NN .\nPrime Minister Viktor Yanukovych -- who was backed by Mr. Putin -- has been declared the winner of Sunday 's voting , but the EU is rejecting the results because of allegations of widespread voting fraud .\tNNP NNP NNP NNP : WP VBD VBN IN NNP NNP : VBZ VBN VBN DT NN IN NNP POS NN , CC DT NNP VBZ VBG DT NNS IN IN NNS IN JJ NN NN .\nOn other issues , EU leaders say they will call on Russia to sign and ratify border agreements with Estonia and Latvia , and urge it to seek a political settlement in war-torn Chechnya .\tIN JJ NNS , NNP NNS VBP PRP MD VB IN NNP TO VB CC VB NN NNS IN NNP CC NNP , CC VB PRP TO VB DT JJ NN IN JJ NNP .\nPalestinian President Mahmoud Abbas has fired three top security officials after militants broke the ceasefire he reached with Israel and fired mortars at Jewish settlements in the Gaza Strip .\tJJ NNP NNP NNP VBZ VBN CD JJ NN NNS IN NNS VBD DT NN PRP VBD IN NNP CC VBD NNS IN JJ NNS IN DT NNP NNP .\nMr. Abbas dismissed the men , including security chief Abdel Razek Majaidie , hours after Hamas militants fired the mortars .\tNNP NNP VBD DT NNS , VBG NN NN NNP NNP NNP , NNS IN NNP NNS VBD DT NNS .\nNo one was wounded in the shelling , which Hamas said was a response to Israeli gunfire that killed a Palestinian man Wednesday in Gaza .\tDT NN VBD VBN IN DT NN , WDT NNP VBD VBD DT NN TO JJ NN WDT VBD DT JJ NN NNP IN NNP .\nDespite the violence , Israeli and Palestinian officials met late Thursday to discuss security issues .\tIN DT NN , JJ CC JJ NNS VBD JJ NNP TO VB NN NNS .\nMeanwhile , a deadly shootout was also reported at a Palestinian jail in Gaza City .\tRB , DT JJ NN VBD RB VBN IN DT JJ NN IN NNP NNP .\nPalestinian sources say at least three people described as Israeli collaborators were killed when dozens of masked gunmen stormed a jailhouse and set free several prisoners .\tJJ NNS VBP IN JJS CD NNS VBN IN JJ NNS VBD VBN WRB NNS IN VBN NNS VBD DT NN CC VBD JJ JJ NNS .\nGermany , France and Lithuania are the latest European countries to congratulate Viktor Yushchenko on his victory in the Ukrainian presidential election .\tNNP , NNP CC NNP VBP DT JJS JJ NNS TO VB NNP NNP IN PRP$ NN IN DT JJ JJ NN .\nIn a letter to Mr. Yushchenko Tuesday , German Chancellor Gerhard Schroeder expressed optimism that Ukraine will continue what he called its transition toward the rule of law and a market economy .\tIN DT NN TO NNP NNP NNP , JJ NNP NNP NNP VBD NN IN NNP MD VB WP PRP VBD PRP$ NN IN DT NN IN NN CC DT NN NN .\nLithuanian President Viktor Adamkus congratulated Mr. Yushchenko in a telephone conversation .\tJJ NNP NNP NNP VBD NNP NNP IN DT NN NN .\nIn Paris , the foreign ministry said France and its European Union partners are determined to support democracy and modernization in Ukraine .\tIN NNP , DT JJ NN VBD NNP CC PRP$ NNP NNP NNS VBP VBN TO VB NN CC NN IN NNP .\nMeanwhile , Russia has questioned the objectivity of monitors for the Organization for Security and Cooperation in Europe .\tRB , NNP VBZ VBN DT NN IN NNS IN DT NNP IN NNP CC NNP IN NNP .\nThat organization characterized last month 's presidential election re-run as flawed , while saying that Sunday 's poll vastly improved upon the last vote .\tDT NN VBD JJ NN POS JJ NN NN IN JJ , IN VBG IN NNP POS NN RB VBD IN DT JJ NN .\nRussia backed Mr. Yushchenko 's opponent .\tNNP VBD NNP NNP POS NN .\nU.S. weather forecasters say Tropical Storm Ernesto has formed over the Caribbean and is heading toward Jamaica and the Cayman Islands .\tNNP NN NNS VBP NNP NNP NNP VBZ VBN IN DT NNP CC VBZ VBG IN NNP CC DT NNP NNP .\nThe National Hurricane Center thinks the storm could strengthen in coming days and is on track to enter the Gulf of Mexico next week .\tDT NNP NNP NNP VBZ DT NN MD VB IN VBG NNS CC VBZ IN NN TO VB DT NNP IN NNP JJ NN .\nThe center is urging Jamaica and the Cayman Islands to monitor the threats posed by Ernesto , the fifth named storm of the season .\tDT NN VBZ VBG NNP CC DT NNP NNP TO VB DT NNS VBN IN NNP , DT NN VBN NN IN DT NN .\nEarlier Friday , Tropical Storm Debby weakened over the Atlantic .\tRBR NNP , NNP NNP NNP VBD IN DT NNP .\nThe National Hurricane Center in Miami says Debby is about 2,200 kilometers northwest of the Cape Verde Islands , with winds near 65 kilometers per hour .\tDT NNP NNP NNP IN NNP VBZ NNP VBZ IN CD NNS JJS IN DT NNP NNP NNP , IN NNS IN CD NNS IN NN .\nIt says no significant change in strength is expected over the next day .\tPRP VBZ DT JJ NN IN NN VBZ VBN IN DT JJ NN .\nEthiopian security forces say they have foiled what they describe as a terrorist plot by a group linked to the country 's main opposition party .\tJJ NN NNS VBP PRP VBP VBN WP PRP VBP IN DT JJ NN IN DT NN VBN TO DT NN POS JJ NN NN .\nA statement released through state media says authorities arrested a group that was planning attacks in the capital , Addis Ababa .\tDT NN VBN IN NN NNS VBZ NNS VBN DT NN WDT VBD VBG NNS IN DT NN , NNP NNP .\nThe statement says the group planned to target government officials and institutions .\tDT NN VBZ DT NN VBD TO VB NN NNS CC NNS .\nEthiopian authorities say they also seized bombs , explosives and small arms related to the plot .\tJJ NNS VBP PRP RB VBD NNS , NNS CC JJ NNS VBN TO DT NN .\nThe statement did not say how many people were arrested or explain how the alleged group is linked to the opposition Coalition for Unity and Democracy .\tDT NN VBD RB VB WRB JJ NNS VBD VBN CC VB WRB DT JJ NN VBZ VBN TO DT NN NN IN NN CC NN .\nLeaders of the party were not available for comment .\tNNS IN DT NN VBD RB JJ IN NN .\nEthiopian Prime Minister Meles Zenawi has repeatedly accused the opposition of conspiring to incite violence and seeking to overthrow him .\tJJ NNP NNP NNP NNP VBZ RB VBN DT NN IN VBG TO VB NN CC VBG TO VB PRP .\nThe government has charged at least 129 opposition leaders , journalists and others with treason and planning to commit genocide .\tDT NN VBZ VBN IN JJS CD NN NNS , NNS CC NNS IN NN CC NN TO VB NN .\nUnited Nations Secretary-General Kofi Annan has ordered disciplinary action against senior U.N. officials who worked on the oil-for-food program in Iraq .\tNNP NNP NNP NNP NNP VBZ VBN JJ NN IN JJ NNP NNS WP VBD IN DT NN NN IN NNP .\nMr. Annan said in a statement Thursday a report about alleged corruption in the U.N. program has turned up ' extremely troubling evidence of wrongdoing , ' and he pledged that no one involved would be shielded from prosecution .\tNNP NNP VBD IN DT NN NNP DT NN IN JJ NN IN DT NNP NN VBZ VBN RP `` RB JJ NN IN NN , `` CC PRP VBD IN DT NN VBN MD VB VBN IN NN .\nThe independent report , released Thursday , concluded that the head of the oil-for-food program , Benon Sevan , seriously undermined the integrity of the United Nations by his conduct .\tDT JJ NN , VBN NNP , VBD IN DT NN IN DT NN NN , NNP NNP , RB VBD DT NN IN DT NNP NNP IN PRP$ NN .\nU.N. disciplinary proceedings have begun against Mr. Sevan and another senior official , Joseph Stephanides .\tNNP JJ NNS VBP VBN IN NNP NNP CC DT JJ NN , NNP NNP .\nBoth Mr. Sevan and Mr. Stephanides are Cypriot nationals .\tDT NNP NNP CC NNP NNP VBP JJ NNS .\nCritics say billions of dollars were siphoned away from the oil-for-food program , which was devised after the first Gulf War in an attempt to help Iraq 's impoverished civilian population .\tNNS VBP NNS IN NNS VBD VBN RB IN DT NN NN , WDT VBD VBN IN DT JJ NNP NNP IN DT NN TO VB NNP POS JJ JJ NN .\nRebels and government forces in Ivory Coast began withdrawing heavy weapons from the front line Thursday , complying with a new peace deal to end tensions in the divided nation .\tNNS CC NN NNS IN NNP NNP VBD VBG JJ NNS IN DT NN NN NNP , VBG IN DT JJ NN NN TO VB NNS IN DT VBN NN .\nThe pullback , expected to last four days , includes all guns larger than 20 millimeters and short-range weaponry equal to or larger than 60 millimeters , including mortars .\tDT NN , VBN TO VB CD NNS , VBZ DT NNS JJR IN CD NNS CC JJ NN JJ IN CC JJR IN CD NNS , VBG NNS .\nAnti-tank weapons will remain in place .\tJJ NNS MD VB IN NN .\nOne rebel fighter told VOA he was happy to see the repeatedly postponed disarmament process begin , adding that he hopes to become a police officer once the two-year-old conflict is finally over .\tCD NN NN VBD NNP PRP VBD JJ TO VB DT RB VBN NN NN VB , VBG IN PRP VBZ TO VB DT NN NN IN DT JJ NN VBZ RB IN .\nSeveral peace deals have failed to take hold in Ivory Coast .\tJJ NN NNS VBP VBN TO VB NN IN NNP NNP .\nRebels still hold huge swaths of territory in northern and western Ivory Coast , with the government firmly in control of the south .\tNNS RB VBP JJ NNS IN NN IN JJ CC JJ NNP NNP , IN DT NN RB IN NN IN DT NN .\nNews reports from Uzbekistan say sporadic gunfire has continued in areas along the Kyrgyz border , following Friday 's military crackdown against protesters in the city of Andijan .\tNN NNS IN NNP VBP JJ NN VBZ VBN IN NNS IN DT JJ NN , VBG NNP POS JJ NN IN NNS IN DT NN IN NNP .\nThe Associated Press quoted residents as saying several soldiers and civilians were killed when clashes erupted Sunday in two border villages , Teshiktosh and Karasu .\tDT NNP NNP VBD NNS IN VBG JJ NNS CC NNS VBD VBN WRB NNS VBD NNP IN CD NN NNS , NNP CC NNP .\nEarlier reports said as many as 500 people were killed when security forces fired into a crowd of demonstrators in Andijan on Friday .\tRBR NNS VBD RB JJ IN CD NNS VBD VBN WRB NN NNS VBD IN DT NN IN NNS IN NNP IN NNP .\nBut Uzbek President Islam Karimov said the death toll was much lower .\tCC JJ NNP NNP NNP VBD DT NN NN VBD RB JJR .\nHe blamed the bloodshed on Islamic radicals trying to overthrow the government .\tPRP VBD DT NN IN NNP NNS VBG TO VB DT NN .\nSeveral countries , including the United States , have called for restraint .\tJJ NNS , VBG DT NNP NNPS , VBP VBN IN NN .\nBritish Foreign Secretary Jack Straw called the Andijan crackdown a clear abuse of human rights .\tJJ NNP NNP NNP NNP VBD DT NNP NN DT JJ NN IN JJ NNS .\nPope John Paul II has included prayers for the victims of the Asian tsunami in his New Year 's Day Mass marking the Roman Catholic Church 's annual World Day of Peace .\tNNP NNP NNP NNP VBZ VBN NNS IN DT NNS IN DT JJ NN IN PRP$ NNP NNP POS NNP NNP VBG DT NNP NNP NNP POS JJ NNP NNP IN NNP .\nThousands of pilgrims attended the Pope 's outdoor Mass Saturday at the Vatican .\tNNS IN NNS VBD DT NNP POS JJ NNP NNP IN DT NNP .\nJohn Paul II also led a Mass for the tsunami victims in his private chapel overnight .\tNNP NNP NNP RB VBD DT NNP IN DT NN NNS IN PRP$ JJ NN RB .\nIn his peace message , the pontiff called for greater cooperation among the world 's religions , and for promotion of peace through dialogue , justice and forgiveness .\tIN PRP$ NN NN , DT NN VBD IN JJR NN IN DT NN POS NNS , CC IN NN IN NN IN NN , NN CC NN .\nHe urged the world 's one billion Roman Catholics to , ' win the fight over evil with the armies of love . '\tPRP VBD DT NN POS CD CD NNP NNPS TO , `` VBP DT NN IN NN IN DT NNS IN NN . ``\nThe European Union opened membership talks with Turkey early Tuesday , after settling last-minute objections by Austria .\tDT NNP NNP VBD NN NNS IN NNP RB NNP , IN VBG JJ NNS IN NNP .\nEU foreign ministers ended 30 hours of heated emergency meetings late Monday in Luxembourg with Austrian officials withdrawing Vienna 's demand that the EU retain the option of offering Turkey a limited partnership .\tNNP JJ NNS VBD CD NNS IN JJ NN NNS JJ NNP IN NNP IN JJ NNS VBG NNP POS NN IN DT NNP VBP DT NN IN VBG NNP DT JJ NN .\nTurkey had rejected the option .\tNNP VBD VBN DT NN .\nAustria 's cooperation paved the way for all 25 EU member-states to agree on a negotiating framework for the membership process , which is expected to take about 10 years .\tNNP POS NN VBD DT NN IN DT CD NNP NNS TO VB IN DT NN NN IN DT NN NN , WDT VBZ VBN TO VB RB CD NNS .\nA brief ceremony to officially open the talks took place shortly after midnight Tuesday in Luxembourg .\tDT JJ NN TO RB VB DT NNS VBD NN RB IN NN NNP IN NNP .\nTalks had been scheduled to open Monday .\tNNS VBD VBN VBN TO VB NNP .\nIf accepted , Turkey would be the first country with a majority Muslim population to join the European Union .\tIN VBN , NNP MD VB DT JJ NN IN DT NN NN NN TO VB DT NNP NNP .\nIt has been an associate member of the bloc since 1963 .\tPRP VBZ VBN DT JJ NN IN DT NN IN CD .\nEgyptian President Hosni Mubarak has called for both his supporters and opponents to work with him as he embarks on his fifth presidential term .\tJJ NNP NNP NNP VBZ VBN IN DT PRP$ NNS CC NNS TO VB IN PRP IN PRP VBZ IN PRP$ JJ JJ NN .\nHe took the oath of office Tuesday before parliament and several foreign dignitaries , including Libyan leader Moammar Gadhafi .\tPRP VBD DT NN IN NN NNP IN NN CC JJ JJ NNS , VBG JJ NN NNP NNP .\nIn a nationally televised speech , the 77-year-old leader pledged to continue a nascent program of political and economic reforms , and to improve the living standard of Egypt 's majority poor during his term , which runs through 2011 .\tIN DT RB VBN NN , DT JJ NN VBD TO VB DT JJ NN IN JJ CC JJ NNS , CC TO VB DT JJ NN IN NNP POS NN NN IN PRP$ NN , WDT VBZ IN CD .\nHe also promised November 's legislative elections will be ' free and fair , ' after criticisms that September 's first multi-candidate presidential race was rife with voting irregularities .\tPRP RB VBD NNP POS JJ NNS MD VB `` JJ CC JJ , `` IN NNS IN NNP POS JJ JJ JJ NN VBD JJ IN VBG NNS .\nMr. Mubarak beat nine challengers , winning more than 88 percent of the vote .\tNNP NNP VBD CD NNS , VBG JJR IN CD NN IN DT NN .\nJapan says it wants safety guarantees for its players and fans when its national soccer ( football ) team travels to North Korea for a World Cup qualifying match in June .\tNNP VBZ PRP VBZ NN NNS IN PRP$ NNS CC NNS WRB PRP$ JJ NN LRB NN RRB NN VBZ TO NNP NNP IN DT NNP NNP VBG NN IN NNP .\nJapan 's Chief Cabinet Secretary Hiroyuki Hosoda says it is a necessary precondition for any international match that players can play safely and spectators can be protected .\tNNP POS NNP NNP NNP NNP NNP VBZ PRP VBZ DT JJ NN IN DT JJ NN IN NNS MD VB RB CC NNS MD VB VBN .\nJapanese concerns were raised by scenes of mob violence at a match in Pyongyang between Iran and North Korea on Wednesday .\tJJ NNS VBD VBN IN NNS IN NN NN IN DT NN IN NNP IN NNP CC NNP NNP IN NNP .\nThe game was televised and cameras showed the North Korean spectators throwing bottles , cans and seats at players and officials on the field .\tDT NN VBD VBN CC NNS VBD DT JJ JJ NNS VBG NNS , NNS CC NNS IN NNS CC NNS IN DT NN .\nRiot police had to clear a path for the victorious Iranian players to reach their team bus .\tNN NNS VBD TO VB DT NN IN DT JJ JJ NNS TO VB PRP$ NN NN .\nThe violence at the game was a rare occurrence in the tightly controlled North Korean state .\tDT NN IN DT NN VBD DT JJ NN IN DT RB VBN JJ JJ NN .\nA published report says the United States has been flying drones over Iran for almost a year , looking for evidence of nuclear weapons programs and detect weaknesses in air defenses .\tDT JJ NN VBZ DT NNP NNPS VBZ VBN VBG NNS IN NNP IN RB DT NN , VBG IN NN IN JJ NNS NNS CC VB NNS IN NN NNS .\nIn Sunday 's editions , The Washington Post quotes three U.S. officials as saying the U.S. military has been launching the unmanned surveillance flights from Iraq .\tIN NNP POS NNS , DT NNP NNP VBZ CD NNP NNS IN VBG DT NNP NN VBZ VBN VBG DT JJ NN NNS IN NNP .\nThere has been no U.S. comment on the report .\tEX VBZ VBN DT NNP NN IN DT NN .\nAn Iranian spokesman Sunday again warned the United States not to attack its nuclear facilities .\tDT JJ NN NNP RB VBD DT NNP NNPS RB TO VB PRP$ JJ NNS .\nHe also rejected a European proposal aimed at restricting Tehran 's development of nuclear fuel .\tPRP RB VBD DT JJ NN VBN IN VBG NNP POS NN IN JJ NN .\nIran has said in the past it would stop plans to build a heavy water nuclear reactor , which can be used to make nuclear weapons-grade material as well as for nuclear energy .\tNNP VBZ VBN IN DT NN PRP MD VB NNS TO VB DT JJ NN JJ NN , WDT MD VB VBN TO VB JJ JJ NN RB RB IN IN JJ NN .\nBut Sunday in Tehran , a foreign ministry spokesman said Iran will go forward with the heavy water reactor and will not replace it under any circumstances .\tCC NNP IN NNP , DT JJ NN NN VBD NNP MD VB RB IN DT JJ NN NN CC MD RB VB PRP IN DT NNS .\nNorth Korea says its Catholic community has organized religious services in memory of Pope John Paul .\tNNP NNP VBZ PRP$ JJ NN VBZ VBN JJ NNS IN NN IN NNP NNP NNP .\nThe official news agency , KCNA , on Tuesday quotes Samuel Jang Jae On , described as head of the country 's Catholic association , as saying North Korean Catholics are deeply saddened by the pontiff 's passing .\tDT JJ NN NN , NNP , IN NNP VBZ NNP NNP NNP NNP , VBD IN NN IN DT NN POS JJ NN , IN VBG JJ JJ NNS VBP RB VBN IN DT NN POS NN .\nThe agency says Mr. Jang sent the Vatican a message of condolence .\tDT NN VBZ NNP NNP VBD DT NNP DT NN IN NN .\nNorth Korea is widely described as one of the world 's most repressive political regimes .\tNNP NNP VBZ RB VBN IN CD IN DT NN POS RBS JJ JJ NNS .\nIt is not clear how many Catholics live in the Communist nation and to what extent they can practice their religion .\tPRP VBZ RB JJ WRB JJ NNPS VBP IN DT JJ NN CC TO WP NN PRP MD VB PRP$ NN .\nThousands of protesters have demonstrated outside a Philippine army camp , where U.S. soldiers and Philippine troops have begun joint military exercises .\tNNS IN NNS VBP VBN IN DT JJ NN NN , WRB NNP NNS CC JJ NNS VBP VBN JJ JJ NNS .\nDemonstrators in the town of Carmen on the southern island of Mindanao chanted anti-U.S. slogans Tuesday and demanded that American troops leave the area .\tNNS IN DT NN IN NNP IN DT JJ NN IN NNP VBD JJ NNS NNP CC VBD IN JJ NNS VBP DT NN .\nU.S. soldiers will also take part in the Philippines ' annual war games , to be held next month on Jolo island in the southern Philippines .\tNNP NNS MD RB VB NN IN DT NNPS POS JJ NN NNS , TO VB VBN JJ NN IN NNP NN IN DT JJ NNP .\nJolo is where the al-Qaida-linked militant group Abu Sayyaf has carried out bombings , kidnappings and killings of foreigners in recent years .\tNNP VBZ WRB DT JJ JJ NN NNP NNP VBZ VBN RP NNS , NNS CC NNS IN NNS IN JJ NNS .\nPhilippine law prohibits American troops from joining any combat operations with Philippine forces .\tJJ NN VBZ JJ NNS IN VBG DT NN NNS IN JJ NNS .\nSecurity for the war games will be tight , to protect the soldiers from attacks by rebels .\tNN IN DT NN NNS MD VB JJ , TO VB DT NNS IN NNS IN NNS .\nIn addition to military training , troops will carry out humanitarian missions to try to boost support among Jolo 's residents .\tIN NN TO JJ NN , NNS MD VB RP JJ NNS TO VB TO VB NN IN NNP POS NNS .\nThe U.N. World Food Program is giving emergency assistance to the Cuban government .\tDT NNP NNP NNP NNP VBZ VBG NN NN TO DT JJ NN .\nThe WFP announced Tuesday that it will help feed about two million people at a cost of nearly $ 6 million .\tDT NNP VBD NNP IN PRP MD VB VB IN CD CD NNS IN DT NN IN RB $ CD CD .\nThe aid package is intended to help Cuba recover from last month 's devastation from Hurricanes Gustav and Ike .\tDT NN NN VBZ VBN TO VB NNP VB IN JJ NN POS NN IN NNP NNP CC NNP .\nDuring the next six months , WFP will provide food rations , including rice , beans , vegetable oil , canned fish and more .\tIN DT JJ CD NNS , NNP MD VB NN NNS , VBG NN , NNS , JJ NN , VBN NN CC JJR .\nThe WFP will also supply temporary food storage warehouses and liquid gas stoves to people who lost their cooking facilities in the storms .\tDT NNP MD RB VB JJ NN NN NNS CC JJ NN NNS TO NNS WP VBD PRP$ NN NNS IN DT NNS .\nSweden 's Nobel Foundation begins announcing winners of the annual Nobel Prize awards on Monday in Oslo , Norway .\tNNP POS NNP NNP VBZ VBG NNS IN DT JJ NNP NNP NNS IN NNP IN NNP , NNP .\nPrizes for medicine , physics , chemistry and literature will be announced before the prestigious Peace Prize is revealed Friday .\tNNS IN NN , NNS , NN CC NN MD VB VBN IN DT JJ NNP NNP VBZ VBN NNP .\nA separate prize for economics will be announced October 10 .\tDT JJ NN IN NNS MD VB VBN NNP CD .\nIt was instituted in 1968 by the Bank of Sweden in memory of the founder of the Nobel Prize , Swedish philanthropist Alfred Nobel .\tPRP VBD VBN IN CD IN DT NNP IN NNP IN NN IN DT NN IN DT NNP NNP , JJ NN NNP NNP .\nWinners receive their awards , including a check worth $ 1.3 million , at a banquet on December 10 .\tNNS VBP PRP$ NNS , VBG DT NN JJ $ CD CD , IN DT NN IN NNP CD .\nThat is the anniversary of Mr. Nobel 's death in 1896 .\tDT VBZ DT NN IN NNP NNP POS NN IN CD .\nAccording to his will , a five-member committee elected by the Norwegian parliament chooses the Peace Prize laureate , while Swedish scientific and literary groups choose the other winners .\tVBG TO PRP$ NN , DT JJ NN VBN IN DT JJ NN VBZ DT NNP NNP NN , IN JJ JJ CC JJ NNS VBP DT JJ NNS .\nThe first Nobel Prizes were given in 1901 .\tDT JJ NNP NNPS VBD VBN IN CD .\nInsurgents in Iraq fired a barrage of mortar rounds into central Baghdad\tNNS IN NNP VBD DT NN IN NN NNS IN JJ NNP\nThursday , killing at least one person and wounding several others .\tNNP , VBG IN JJS CD NN CC VBG JJ NNS .\nPolice say some of the mortars landed in the Green Zone -- the heavily fortified enclave that houses Iraqi government offices and several foreign embassies .\tNNS VBP DT IN DT NNS VBD IN DT NNP NNP IN DT RB VBN NN WDT VBZ JJ NN NNS CC JJ JJ NNS .\nLast week , a mortar attack on the Green Zone killed four employees of a British security company .\tJJ NN , DT NN NN IN DT NNP NNP VBD CD NNS IN DT JJ NN NN .\nMeanwhile , the U.S. military is planning to temporarily increase the number of American troops in Iraq to bolster security ahead of Iraq 's January election .\tRB , DT NNP NN VBZ VBG TO RB VB DT NN IN JJ NNS IN NNP TO VB NN RB IN NNP POS NNP NN .\nThe Defense Department said Wednesday the size of U.S. forces in Iraq will increase to 1,50,000 from its current level of 1,38,000 .\tDT NNP NNP VBD NNP DT NN IN NNP NNS IN NNP MD VB TO CD IN PRP$ JJ NN IN CD .\nIraq 's interim government has rejected calls from some Sunni parties to postpone the vote because of security concerns .\tNNP POS JJ NN VBZ VBN NNS IN DT NNP NNS TO VB DT NN IN IN NN NNS .\nBrazilian lawmakers have approved legislation that will give the government more control over developing offshore oil fields .\tJJ NNS VBP VBN NN WDT MD VB DT NN JJR NN IN VBG JJ NN NNS .\nThe lower house of the Brazilian congress passed the bill Wednesday , sending it to outgoing President Luiz Inacio Lula da Silva for his signature .\tDT JJR NN IN DT JJ NN VBD DT NN NNP , VBG PRP TO VBG NNP NNP NNP NNP NNP NNP IN PRP$ NN .\nThe measure allows the state-owned oil company , known as Petrobras , to be the sole operator of unexplored offshore oil fields , as well as a 30 percent stake in any joint ventures .\tDT NN VBZ DT JJ NN NN , VBN IN NNP , TO VB DT JJ NN IN JJ JJ NN NNS , RB RB IN DT CD NN NN IN DT JJ NNS .\nBrazil has discovered potentially large oil reserves off the country 's southeastern coast , some of them thousands of meters below the sea floor .\tNNP VBZ VBN RB JJ NN NNS IN DT NN POS JJ NN , DT IN PRP NNS IN NNS IN DT NN NN .\nSome estimates say the fields may contain more than 50 billion barrels of oil .\tDT NNS VBP DT NNS MD VB JJR IN CD CD NNS IN NN .\nBrazilian lawmakers also approved a provision that will allow non-oil producing states to receive more oil revenues .\tJJ NNS RB VBD DT NN WDT MD VB JJ VBG NNS TO VB JJR NN NNS .\nA new U.S. opinion survey shows eight out of 10 Americans believe the country is going in the wrong direction .\tDT JJ NNP NN NN VBZ CD IN IN CD NNS VBP DT NN VBZ VBG IN DT JJ NN .\nThe Washington Post-ABC News poll also indicates Democrats hold a 21 percentage point advantage over Republicans as the party better equipped to handle the country 's problems .\tDT NNP NNP NNP NN RB VBZ NNPS VBP DT CD NN NN NN IN NNPS IN DT NN RB VBN TO VB DT NN POS NNS .\nIn a hypothetical general election match-up , Democratic Party candidate Senator Barack Obama leads presumed Republican nominee John McCain by 51-to-44 percent .\tIN DT JJ JJ NN NN , JJ NNP NN NNP NNP NNP VBZ JJ JJ NN NNP NNP IN CD NN .\nAs the Democratic Party nears the end of its presidential primaries , the national poll shows Obama has a 12-point advantage over Senator Hillary Clinton as the party 's choice for its nomination .\tIN DT NNP NNP VBZ DT NN IN PRP$ JJ NNS , DT JJ NN VBZ NNP VBZ DT JJ NN IN NNP NNP NNP IN DT NN POS NN IN PRP$ NN .\nThe poll says Americans cite the economy and employment as their top voting issue , followed by the Iraq war , healthcare and fuel prices .\tDT NN VBZ NNS VBP DT NN CC NN IN PRP$ JJ NN NN , VBN IN DT NNP NN , NN CC NN NNS .\nThe poll of more than 1,100 adults , conducted from May 8 - 11 , has a margin of error of plus or minus three percentage points .\tDT NN IN JJR IN CD NNS , VBN IN NNP CD IN CD , VBZ DT NN IN NN IN JJ CC JJ CD NN NNS .\nCuban President Raul Castro is visiting Venezuela on his first international trip as leader of the communist nation .\tJJ NNP NNP NNP VBZ VBG NNP IN PRP$ JJ JJ NN IN NN IN DT JJ NN .\nVenezuela 's socialist president , Hugo Chavez , welcomed Mr. Castro Saturday at the Caracas airport .\tNNP POS JJ NN , NNP NNP , VBD NNP NNP NNP IN DT NNP NN .\nThis is President Castro 's first official foreign trip since February , when the 77-year-old took charge from his ailing older brother , Fidel Castro .\tDT VBZ NNP NNP POS JJ JJ JJ NN IN NNP , WRB DT JJ VBD NN IN PRP$ VBG JJR NN , NNP NNP .\nThe two leaders will visit the tomb of South American independence icon Simon Bolivar today and later hold talks on a variety of issues .\tDT CD NNS MD VB DT NN IN JJ JJ NN NN NNP NNP NN CC RB VB NNS IN DT NN IN NNS .\nVenezuela and Cuba have increased cooperation on energy and oil production .\tNNP CC NNP VBP VBN NN IN NN CC NN NN .\nVenezuela is a critical trade partner for the Caribbean island nation , which imports nearly 1,00,000 barrels of oil per day from Venezuela .\tNNP VBZ DT JJ NN NN IN DT JJ NN NN , WDT VBZ RB CD NNS IN NN IN NN IN NNP .\nToday 's visit comes ahead of a summit in Brazil next week , where Latin American and Caribbean leaders will gather for talks .\tNN POS NN VBZ RB IN DT NN IN NNP JJ NN , WRB JJ JJ CC JJ NNS MD VB IN NNS .\nThe nuclear cooperation pact between India and the United States has sparked a mixed reaction in Washington and abroad .\tDT JJ NN NN IN NNP CC DT NNP NNPS VBZ VBN DT JJ NN IN NNP CC RB .\nInternational Atomic Energy Agency Director General Mohamed ElBaradei praised the agreement , saying it would bring India closer as an important partner in the non-proliferation group of countries .\tNNP NNP NNP NNP NNP NNP NNP NNP VBD DT NN , VBG PRP MD VB NNP RBR IN DT JJ NN IN DT JJ NN IN NNS .\nBut some U.S. lawmakers criticized the deal , saying the agreement that could give India access to U.S. civilian nuclear technology would undermine the Nuclear Non-Proliferation Treaty .\tCC DT NNP NNS VBD DT NN , VBG DT NN WDT MD VB NNP NN TO NNP JJ JJ NN MD VB DT NNP NNP NNP .\nIndia has not signed the treaty , which restricts the sharing of some nuclear technology with non-member nations , and drew widespread international criticism for conducting nuclear weapons tests as recently as 1998 .\tNNP VBZ RB VBN DT NN , WDT VBZ DT NN IN DT JJ NN IN JJ NNS , CC VBD JJ JJ NN IN VBG JJ NNS NNS RB RB IN CD .\nFull details of the nuclear cooperation pact have not been released , but the agreement must still be approved by Congress before taking effect .\tNNP NNS IN DT JJ NN NN VBP RB VBN VBN , CC DT NN MD RB VB VBN IN NNP IN VBG NN .\nPresident Bush acknowledged Thursday that hard work still needs to be done to gain the necessary approval in Congress .\tNNP NNP VBD NNP IN JJ NN RB VBZ TO VB VBN TO VB DT JJ NN IN NNP .\nA Sudanese analyst says the late rebel leader John Garang was a symbol of the struggle for greater federalism in the country .\tDT JJ NN VBZ DT JJ NN NN NNP NNP VBD DT NN IN DT NN IN JJR NN IN DT NN .\nLecturer John Gai Yoh of the University of South Africa ( UNISA ) in Pretoria credits the leader of the Sudanese Liberation Movement with creating a campaign that included allies beyond his base in the south .\tNN NNP NNP NNP IN DT NNP IN NNP NNP LRB NNP RRB IN NNP VBZ DT NN IN DT JJ NNP NNP IN VBG DT NN WDT VBD NNS IN PRP$ NN IN DT NN .\nMr. Yoh notes that his vision materialized with the comprehensive peace agreement signed last January between the former SPLA rebels and the government in Khartoum .\tNNP NNP VBZ IN PRP$ NN VBD IN DT JJ NN NN VBN JJ NNP IN DT JJ NNP NNS CC DT NN IN NNP .\nAnalyst John Gai Yoh predicts that the SPLA will continue to democratize : it has created a new SPLA parliament for the south and has named a new five-man military panel to lead the movement .\tNN NNP NNP NNP VBZ IN DT NNP MD VB TO VB IN PRP VBZ VBN DT JJ NNP NN IN DT NN CC VBZ VBN DT JJ JJ JJ NN TO VB DT NN .\nThe United Nations has given its annual Franklin Delano Roosevelt International Disability Award to Poland , recognizing the country 's efforts to integrate the disabled into Polish society .\tDT NNP NNP VBZ VBN PRP$ JJ NNP NNP NNP NNP NNP NNP TO NNP , VBG DT NN POS NNS TO VB DT NN IN JJ NN .\nPresident Lech Kaczynski accepted the award at a ceremony Monday at U.N. headquarters in New York .\tNNP NNP NNP VBD DT NN IN DT NN NNP IN NNP NN IN NNP NNP .\nHe said his country 's struggle for freedom includes a commitment to the rights of those with disabilities .\tPRP VBD PRP$ NN POS NN IN NN VBZ DT NN TO DT NNS IN DT IN NNS .\nHe said their rights are guaranteed by the Polish constitution .\tPRP VBD PRP$ NNS VBP VBN IN DT JJ NN .\nMr. Kaczynski promised that Poland will adopt a new U.N. convention to protect the disabled .\tNNP NNP VBD IN NNP MD VB DT JJ NNP NN TO VB DT NN .\nThe award is named for U.S. President Franklin Roosevelt , whose legs were paralyzed from polio .\tDT NN VBZ VBN IN NNP NNP NNP NNP , WP$ NNS VBD VBN IN NN .\nMr. Roosevelt was president from 1933 until 1945 .\tNNP NNP VBD NN IN CD IN CD .\nAn Ethiopian government spokesman denies that a reported rebel attack said to have killed 140 soldiers ever took place .\tDT JJ NN NN VBZ IN DT VBN NN NN VBN TO VB VBN CD NNS RB VBD NN .\nThe spokesman , Zemedkun Tekle , issued the denial Sunday after media reports said the Ogaden National Liberation Front had claimed to have carried out the deadly attack Saturday in southeastern Ethiopia near Wardheer .\tDT NN , NNP NNP , VBD DT JJ NNP IN NNS NNS VBD DT NNP NNP NNP NNP VBD VBN TO VB VBN RP DT JJ NN NNP IN JJ NNP IN NNP .\nA purported statement from the group received by some news organizations said about a thousand rebels took part in the attack and seized ammunition along with military hardware .\tDT JJ NN IN DT NN VBN IN DT NN NNS VBD IN DT CD NNS VBD NN IN DT NN CC VBD NN IN IN JJ NN .\nThe government spokesman says there was no attack , and that the rebel group is not in a position to carry out such an attack .\tDT NN NN VBZ EX VBD DT NN , CC IN DT NN NN VBZ RB IN DT NN TO VB RP JJ DT NN .\nRebels have been fighting for more autonomy for ethnic Somalis in the eastern region of Ogaden bordering Somalia .\tNNS VBP VBN VBG IN JJR NN IN JJ NNS IN DT JJ NN IN NNP VBG NNP .\nKuwaiti television reports the kidnappers in Iraq of American journalist Jill Carroll are threatening to kill her if their demands are not met by February 26 .\tJJ NN VBZ DT NNS IN NNP IN JJ NN NNP NNP VBP VBG TO VB PRP IN PRP$ NNS VBP RB VBN IN NNP CD .\nAl-Rai television Friday quoted sources close to the kidnappers as saying the abductors have set the deadline .\tNNP NN NNP VBD NNS RB TO DT NNS IN VBG DT NNS VBP VBN DT NN .\nThe militants holding Carroll previously had demanded that all Iraqi women prisoners be freed .\tDT NNS VBG NNP RB VBD VBN IN DT JJ NNS NNS VB VBN .\nEarlier Friday , at least eight people died and more than 20 were wounded in a Baghdad car bombing near a Sunni Muslim mosque .\tRBR NNP , IN JJS CD NNS VBD CC JJR IN CD VBD VBN IN DT NNP NN VBG IN DT NNP NNP NN .\nOfficials in Iraq also certified results of the December 15 elections , confirming the near majority of parliament seats won by Shi'ite religious parties .\tNNS IN NNP RB VBD NNS IN DT NNP CD NNS , VBG DT JJ NN IN NN NNS VBN IN NNP JJ NNS .\nAccording to the results , the dominant Shi'ite coalition , the United Iraqi Alliance , won 128 seats in the 275-member parliament .\tVBG TO DT NNS , DT JJ NNP NN , DT NNP JJ NNP , VBD CD NNS IN DT JJ NN .\nPalestinian security officials say masked Palestinian police briefly stormed a government building in the Gaza Strip in anger over not receiving their salaries from the Hamas-led government .\tJJ NN NNS VBP VBN JJ NN RB VBD DT NN NN IN DT NNP NNP IN NN IN RB VBG PRP$ NNS IN DT JJ NN .\nSecurity officials say about 50 police officers sealed off the main road Saturday in the central Gaza town of Khan Younis .\tNN NNS VBP IN CD NN NNS VBD RP DT JJ NN NNP IN DT JJ NNP NN IN NNP NNP .\nThey say the masked police surrounded a municipal government building , taking positions on the roof and firing in the air .\tPRP VBP DT VBN NN VBD DT JJ NN NN , VBG NNS IN DT NN CC NN IN DT NN .\nThe protest is seen as a sign of discontent with the new Hamas-led government , which took office late last month .\tDT NN VBZ VBN IN DT NN IN NN IN DT JJ JJ NN , WDT VBD NN RB JJ NN .\nThe cash-strapped Palestinian Authority has not been able to pay salaries to some 1,40,000 government employees since March .\tDT JJ JJ NNP VBZ RB VBN JJ TO VB NNS TO DT CD NN NNS IN NNP .\nWestern nations have cut off aid to the Palestinian government , demanding that Hamas renounce violence and recognize Israel .\tJJ NNS VBP VBN RP NN TO DT JJ NN , VBG IN NNP VB NN CC VB NNP .\nThe White House said President Bush has approved duty-free treatment for imports of certain types of watches that are n't produced in ' significant quantities ' in the U.S. , the Virgin Islands and other U.S. possessions .\tDT NNP NNP VBD NNP NNP VBZ VBN JJ NN IN NNS IN JJ NNS IN NNS WDT VBP RB VBN IN `` JJ NNS `` IN DT NNP , DT NNP NNP CC JJ NNP NNS .\nThe action came in response to a petition filed by Timex Inc. for changes in the U.S. Generalized System of Preferences for imports from developing nations .\tDT NN VBD IN NN TO DT NN VBN IN NNP NNP IN NNS IN DT NNP NNP NNP IN NNPS IN NNS IN VBG NNS .\nPreviously , watch imports were denied such duty-free treatment .\tRB , NN NNS VBD VBN JJ JJ NN .\nTimex had requested duty-free treatment for many types of watches , covered by 58 different U.S. tariff classifications .\tNNP VBD VBN JJ NN IN JJ NNS IN NNS , VBN IN CD JJ NNP NN NNS .\nThe White House said Mr. Bush decided to grant duty-free status for 18 categories , but turned down such treatment for other types of watches ' because of the potential for material injury to watch producers located in the U.S. and the Virgin Islands . '\tDT NNP NNP VBD NNP NNP VBD TO VB JJ NN IN CD NNS , CC VBD RB JJ NN IN JJ NNS IN NNS `` IN IN DT NN IN NN NN TO VB NNS VBN IN DT NNP CC DT NNP NNP . ``\nTimex is a major U.S. producer and seller of watches , including low-priced battery-operated watches assembled in the Philippines and other developing nations covered by the U.S. tariff preferences .\tNNP VBZ DT JJ NNP NN CC NN IN NNS , VBG JJ JJ NNS VBN IN DT NNPS CC JJ NN NNS VBN IN DT NNP NN NNS .\nU.S. trade officials said the Philippines and Thailand would be the main beneficiaries of the president 's action .\tNNP NN NNS VBD DT NNPS CC NNP MD VB DT JJ NNS IN DT NN POS NN .\nImports of the types of watches that now will be eligible for duty-free treatment totaled about $ 37.3 million in 1988 , a relatively small share of the $ 1.5 billion in U.S. watch imports that year , according to an aide to U.S. Trade Representative Carla Hills .\tNNS IN DT NNS IN NNS WDT RB MD VB JJ IN JJ NN VBD IN $ CD CD IN CD , DT RB JJ NN IN DT $ CD CD IN NNP VB NNS WDT NN , VBG TO DT NN TO NNP NNP NNP NNP NNP .\nAlthough known to Arab and Malay sailors as early as the 10th century , Mauritius was first explored by the Portuguese in the 16th century and subsequently settled by the Dutch - who named it in honor of Prince Maurits van NASSAU - in the 17th century .\tIN VBN TO JJ CC JJ NNS RB RB IN DT JJ NN , NNP VBD JJ VBN IN DT NNS IN DT JJ NN CC RB VBN IN DT NNS : WP VBD PRP IN NN IN NNP NNP NNP NNP : IN DT JJ NN .\nThe French assumed control in 1715 , developing the island into an important naval base overseeing Indian Ocean trade , and establishing a plantation economy of sugar cane .\tDT NNS VBD NN IN CD , VBG DT NN IN DT JJ JJ NN VBG NNP NNP NN , CC VBG DT NN NN IN NN NN .\nThe British captured the island in 1810 , during the Napoleonic Wars .\tDT NNS VBD DT NN IN CD , IN DT NNP NNP .\nMauritius remained a strategically important British naval base , and later an air station , playing an important role during World War II for anti-submarine and convoy operations , as well as the collection of signals intelligence .\tNNP VBD DT RB JJ JJ JJ NN , CC RB DT NN NN , VBG DT JJ NN IN NNP NNP NNP IN JJ CC JJ NNS , RB RB IN DT NN IN NNS NN .\nIndependence from the UK was attained in 1968 .\tNN IN DT NNP VBD VBN IN CD .\nA stable democracy with regular free elections and a positive human rights record , the country has attracted considerable foreign investment and has earned one of Africa 's highest per capita incomes .\tDT JJ NN IN JJ JJ NNS CC DT JJ JJ NNS NN , DT NN VBZ VBN JJ JJ NN CC VBZ VBN CD IN NNP POS JJS IN NN NNS .\nRecent poor weather , declining sugar prices , and declining textile and apparel production , have slowed economic growth , leading to some protests over standards of living in the Creole community .\tJJ JJ NN , VBG NN NNS , CC VBG NN CC NN NN , VBP VBN JJ NN , VBG TO DT NNS IN NNS IN VBG IN DT NNP NN .\nMorocco 's market economy benefits from the country 's relatively low labor costs and proximity to Europe , which aid key areas of the economy such as agriculture , light manufacturing , tourism , and remittances .\tNNP POS NN NN VBZ IN DT NN POS RB JJ NN NNS CC NN TO NNP , WDT VBP NN NNS IN DT NN JJ IN NN , JJ NN , NN , CC NNS .\nMorocco is also the world 's largest exporter of phosphate , which has long provided a source of export earnings and economic stability .\tNNP VBZ RB DT NN POS JJS NN IN NN , WDT VBZ RB VBN DT NN IN NN NNS CC JJ NN .\nEconomic policies pursued since 2003 by King MOHAMMED VI have brought macroeconomic stability to the country with generally low inflation , improved financial performance , and steady progress in developing the service and industrial sectors .\tJJ NNS VBN IN CD IN NNP NNP NNP VBP VBN JJ NN TO DT NN IN RB JJ NN , VBD JJ NN , CC JJ NN IN VBG DT NN CC JJ NNS .\nIn 2006 , Morocco entered a Free Trade Agreement ( FTA ) with the US , and in 2008 entered into an advanced status in its 2000 Association Agreement with the EU .\tIN CD , NNP VBD DT NNP NNP NNP LRB NNP RRB IN DT NNP , CC IN CD VBD IN DT JJ NN IN PRP$ CD NNP NN IN DT NNP .\nHowever , poverty , illiteracy , and unemployment rates remain high .\tRB , NN , NN , CC NN NNS VBP JJ .\nIn response to these challenges , King MOHAMMED in 2005 launched a National Initiative for Human Development , a $ 2 billion program aimed at alleviating poverty and underdevelopment by expanding electricity to rural areas and replacing urban slums with public and subsidized housing , among other policies .\tIN NN TO DT NNS , NNP NNP IN CD VBD DT NNP NNP IN NNP NNP , DT $ CD CD NN VBN IN VBG NN CC NN IN VBG NN TO JJ NNS CC VBG JJ NNS IN JJ CC JJ NN , IN JJ NNS .\nMorocco 's trade and budget deficits widened in 2010 , and reducing government spending and adapting to sluggish economic growth in Europe will be challenges in 2011 .\tNNP POS NN CC NN NNS VBD IN CD , CC VBG NN NN CC VBG TO JJ JJ NN IN NNP MD VB NNS IN CD .\nMorocco 's long-term challenges include improving education and job prospects for young Moroccans , closing the disparity in wealth between the rich and the poor , confronting corruption , and expanding and diversifying exports beyond phosphates and low-value-added products .\tNNP POS JJ NNS VBP VBG NN CC NN NNS IN JJ NNS , VBG DT NN IN NN IN DT JJ CC DT NN , VBG NN , CC VBG CC VBG NNS IN NNS CC JJ NNS .\nAlbania , a formerly closed , centrally-planned state , is making the difficult transition to a more modern open-market economy .\tNNP , DT RB JJ , JJ NN , VBZ VBG DT JJ NN TO DT RBR JJ JJ NN .\nMacroeconomic growth averaged around 6 % between 2004 - 8 , but declined to about 3 % in 2009 - 10 .\tJJ NN VBD IN CD NN IN CD : CD , CC VBD TO IN CD NN IN CD IN CD .\nInflation is low and stable .\tNN VBZ JJ CC JJ .\nThe government has taken measures to curb violent crime , and recently adopted a fiscal reform package aimed at reducing the large gray economy and attracting foreign investment .\tDT NN VBZ VBN NNS TO VB JJ NN , CC RB VBD DT JJ NN NN VBN IN VBG DT JJ JJ NN CC VBG JJ NN .\nRemittances , a significant catalyst for economic growth have declined from Dec-15 % of GDP to 9 % of GDP in 2009 , mostly from Albanians residing in Greece and Italy ; this helps offset the towering trade deficit .\tNNS , DT JJ NN IN JJ NN VBP VBN IN CD NN IN NN TO CD NN IN NN IN CD , RB IN NNS VBG IN NNP CC NNP ; DT VBZ VB DT VBG NN NN .\nThe agricultural sector , which accounts for almost half of employment but only about one-fifth of GDP , is limited primarily to small family operations and subsistence farming because of lack of modern equipment , unclear property rights , and the prevalence of small , inefficient plots of land .\tDT JJ NN , WDT VBZ IN RB NN IN NN CC RB IN NN IN NN , VBZ VBN RB TO JJ NN NNS CC NN NN IN IN NN IN JJ NN , JJ NN NNS , CC DT NN IN JJ , JJ NNS IN NN .\nEnergy shortages because of a reliance on hydropower , and antiquated and inadequate infrastructure contribute to Albania 's poor business environment and lack of success in attracting new foreign investment needed to expand the country 's export base .\tNN NNS IN IN DT NN IN NN , CC JJ CC JJ NN VBP TO NNP POS JJ NN NN CC NN IN NN IN VBG JJ JJ NN VBN TO VB DT NN POS NN NN .\nFDI is among the lowest in the region , but the government has embarked on an ambitious program to improve the business climate through fiscal and legislative reforms .\tNNP VBZ IN DT JJS IN DT NN , CC DT NN VBZ VBN IN DT JJ NN TO VB DT NN NN IN JJ CC JJ NNS .\nThe completion of a new thermal power plant near Vlore has helped diversify generation capacity , and plans to upgrade transmission lines between Albania and Montenegro and Kosovo would help relieve the energy shortages .\tDT NN IN DT JJ JJ NN NN IN NNP VBZ VBN VB NN NN , CC VBZ TO VB NN NNS IN NNP CC NNP CC NNP MD VB VB DT NN NNS .\nAlso , with help from EU funds , the government is taking steps to improve the poor national road and rail network , a long-standing barrier to sustained economic growth .\tRB , IN NN IN NNP NNS , DT NN VBZ VBG NNS TO VB DT JJ JJ NN CC NN NN , DT JJ NN TO JJ JJ NN .\nEconomic activity consists primarily of subsistence farming and fishing .\tJJ NN VBZ RB IN NN NN CC NN .\nThe islands have few mineral deposits worth exploiting , except for high-grade phosphate .\tDT NNS VBP JJ NN NNS JJ VBG , IN IN JJ NN .\nThe potential for a tourist industry exists , but the remote location , a lack of adequate facilities , and limited air connections hinder development .\tDT NN IN DT NN NN VBZ , CC DT JJ NN , DT NN IN JJ NNS , CC JJ NN NNS VB NN .\nUnder the original terms of the Compact of Free Association , the US provided $ 1.3 billion in grant aid during the period 1986 - 2001 ; the level of aid has been subsequently reduced .\tIN DT JJ NNS IN DT NN IN NNP NNP , DT NNP VBD $ CD CD IN NN NN IN DT NN CD IN CD ; DT NN IN NN VBZ VBN RB VBN .\nThe Amended Compact of Free Association with the US guarantees the Federated States of Micronesia ( FSM ) millions of dollars in annual aid through 2023 , and establishes a Trust Fund into which the US and the FSM make annual contributions in order to provide annual payouts to the FSM in perpetuity after 2023 .\tDT JJ NN IN NNP NNP IN DT NNP VBZ DT NNP NNPS IN NNP LRB NNP RRB NNS IN NNS IN JJ NN IN CD , CC VBZ DT NNP NNP IN WDT DT NNP CC DT NNP VBP JJ NNS IN NN TO VB JJ NNS TO DT NNP IN NN IN CD .\nThe country 's medium-term economic outlook appears fragile due not only to the reduction in US assistance but also to the current slow growth of the private sector .\tDT NN POS JJ JJ NN VBZ JJ JJ RB RB TO DT NN IN NNP NN CC RB TO DT JJ JJ NN IN DT JJ NN .\nThe discovery and exploitation of large oil and gas reserves have contributed to dramatic economic growth but fluctuating oil prices have produced huge swings in GDP growth in recent years .\tDT NN CC NN IN JJ NN CC NN NNS VBP VBN TO JJ JJ NN CC JJ NN NNS VBP VBN JJ NNS IN NN NN IN JJ NNS .\nForestry and farming are also minor components of GDP .\tNN CC NN VBP RB JJ NNS IN NN .\nSubsistence farming is the dominate form of livelihood .\tNNP NN VBZ DT JJ NN IN NN .\nAlthough pre-independence Equatorial Guinea counted on cocoa production for hard currency earnings , the neglect of the rural economy under successive regimes has diminished potential for agriculture-led growth ( the government has stated its intention to reinvest some oil revenue into agriculture ) .\tIN JJ NNP NNP VBD IN NN NN IN JJ NN NNS , DT NN IN DT JJ NN IN JJ NNS VBZ VBN JJ IN JJ NN LRB DT NN VBZ VBN PRP$ NN TO VB DT NN NN IN NN RRB .\nA number of aid programs sponsored by the World Bank and the IMF have been cut off since 1993 because of corruption and mismanagement .\tDT NN IN NN NNS VBN IN DT NNP NNP CC DT NNP VBP VBN VBN RP IN CD IN IN NN CC NN .\nThe government has been widely criticized for its lack of transparency and misuse of oil revenues ; however , in 2010 , under Equatorial Guinea 's candidacy in the Extractive Industries Transparency Initiative , the government published oil revenue figures for the first time .\tDT NN VBZ VBN RB VBN IN PRP$ NN IN NN CC NN IN NN NNS ; RB , IN CD , IN NNP NNP POS NN IN DT NNP NNP NNP NNP , DT NN VBN NN NN NNS IN DT JJ NN .\nUndeveloped natural resources include gold , zinc , diamonds , columbite-tantalite , and other base metals .\tJJ JJ NNS VBP NN , NN , NNS , JJ , CC JJ JJ NNS .\nGrowth remained strong in 2008 , when oil production peaked , but slowed in 2009 - 10 , as the price of oil and the production level fell .\tNN VBD JJ IN CD , WRB NN NN VBD , CC VBD IN CD IN CD , IN DT NN IN NN CC DT NN NN VBD .\nA BOSS who had gone to Canada was taunted by a Citizen of Montreal with having fled to avoid prosecution .\tDT NN WP VBD VBN TO NNP VBD VBN IN DT NN IN NNP IN VBG VBN TO VB NN .\n' You do me a grave injustice , ' said the Boss , parting with a pair of tears .\t`` PRP VBP PRP DT JJ NN , `` VBD DT NN , VBG IN DT NN IN NNS .\n' I came to Canada solely because of its political attractions ; its Government is the most corrupt in the world . '\t`` PRP VBD TO NNP RB IN IN PRP$ JJ NNS ; PRP$ NN VBZ DT RBS JJ IN DT NN . ``\n' Pray forgive me , ' said the Citizen of Montreal .\t`` VBP VB PRP , `` VBD DT NN IN NNP .\nThey fell upon each other 's neck , and at the conclusion of that touching rite the Boss had two watches .\tPRP VBD IN DT NN POS NN , CC IN DT NN IN DT JJ NN DT NNP VBD CD NNS .\nThere are less than three months until the election , an election that will decide the next President of the United States .\tEX VBP JJR IN CD NNS IN DT NN , DT NN WDT MD VB DT JJ NNP IN DT NNP NNPS .\nThe man elected will be the president of all Americans , not just the Democrats or the Republicans .\tDT NN VBN MD VB DT NN IN DT NNS , RB RB DT NNPS CC DT NNPS .\nTo show our solidarity as Americans , let 's all get together and show each other our support for the candidate of our choice .\tTO VB PRP$ NN IN NNS , VB PRP DT VBP RB CC VB DT JJ PRP$ NN IN DT NN IN PRP$ NN .\nIt 's time that we all came together , Democrats and Republicans alike .\tPRP VBZ NN IN PRP DT VBD RB , NNPS CC NNPS RB .\nIf you support the policies and character of President George W. Bush , please drive with your headlights on during the day .\tIN PRP VBP DT NNS CC NN IN NNP NNP NNP NNP , VBP NN IN PRP$ NNS IN IN DT NN .\nIf you support John Kerry , please drive with your headlights off at night .\tIN PRP VBP NNP NNP , RB VB IN PRP$ NNS RP IN NN .\nA topologist is a person who does n't know the difference between a coffee cup and a doughnut .\tDT NN VBZ DT NN WP VBZ RB VB DT NN IN DT NN NN CC DT NN .\nLawyers get a lot of unjust criticism .\tNNS VBP DT NN IN JJ NN .\nI would remind you that it is not right to condemn a whole profession just because of 3,50,000 bad apples .\tPRP MD VB PRP IN PRP VBZ RB JJ TO VB DT JJ NN RB IN IN CD JJ NNS .\nI was very lonely when I was a child .\tPRP VBD RB JJ WRB PRP VBD DT NN .\nI only had two imaginary friends ...\tPRP RB VBD CD JJ NNS :\nAnd they would only play with each other .\tCC PRP MD RB VB IN DT NN .\nThe Russian and European space agencies have announced a deal to build a manned spacecraft for near-earth orbits and trips to the moon .\tDT JJ CC JJ NN NNS VBP VBN DT NN TO VB DT JJ NN IN JJ NNS CC NNS TO DT NN .\nRussian news agency reports quote a spokesman for the Russian agency Roskosmos as saying engineers want to test a 20-ton capsule by 2015 .\tJJ NN NN NNS VBP DT NN IN DT JJ NN NNP IN VBG NNS VBP TO VB DT JJ NN IN CD .\nA first launch is planned for 2018 at a launch center in Siberia .\tDT JJ NN VBZ VBN IN CD IN DT NN NN IN NNP .\nUnder the pact , Russia will build the capsule , while European engineers build the service module and the engine block .\tIN DT NN , NNP MD VB DT NN , IN JJ NNS VBP DT NN NN CC DT NN NN .\nThe new craft is to be phased in as the replacement for Russia 's Soyuz spacecraft , which has come under increased scrutiny this year , after two consecutive rough landings on return from the International Space Station .\tDT JJ NN VBZ TO VB VBN IN IN DT NN IN NNP POS NNP NN , WDT VBZ VBN IN VBN NN DT NN , IN CD JJ JJ NNS IN NN IN DT NNP NNP NNP .\nA human-rights group in Niger says the government is to blame for cancellation of a ceremony that was to grant 7,000 slaves their freedom .\tDT JJ NN IN NNP VBZ DT NN VBZ TO VB IN NN IN DT NN WDT VBD TO VB CD NNS PRP$ NN .\nThe group Timidria had planned to release the slaves in the Ates region near Niger 's western border with Mali on Saturday , but the event was called off when none of the slaves showed up .\tDT NN NNP VBD VBN TO VB DT NNS IN DT NNP NN IN NNP POS JJ NN IN NNP IN NNP , CC DT NN VBD VBN RP WRB NN IN DT NNS VBD RP .\nThe rights group says the government intimidated slaves to keep them from attending the ceremony - a charge the government denies .\tDT NNS NN VBZ DT NN VBD NNS TO VB PRP IN VBG DT NN IN DT NN DT NN VBZ .\nNiger officially banned slavery in 2003 , but human-rights groups say 43,000 people are still in bondage in the West African nation .\tNNP RB VBD NN IN CD , CC JJ NNS VBP CD NNS VBP RB IN NN IN DT JJ JJ NN .\nThey are among the 2,00,000 people enslaved along centuries-old Arab-African Saharan trade routes .\tPRP VBP IN DT CD NNS VBN IN JJ JJ JJ NN NNS .\nGenerations of Africans have been born in slavery , many under the ownership of one family .\tNNS IN NNS VBP VBN VBN IN NN , JJ IN DT NN IN CD NN .\nEmbattled Ivory Coast President Laurent Gbagbo has said he wants to talk with his rival , Alassane Ouattara .\tJJ NNP NNP NNP NNP NNP VBZ VBN PRP VBZ TO VB IN PRP$ NN , NNP NNP .\nMr. Gbagbo has been isolated by the international community , including the United States , after refusing to yield the presidency although he had fewer votes than Mr. Ouattara in last month 's poll .\tNNP NNP VBZ VBN VBN IN DT JJ NN , VBG DT NNP NNPS , IN VBG TO VB DT NN IN PRP VBD JJR NNS IN NNP NNP IN JJ NN POS NN .\nBoth men have taken the oath of office and begun organizing competing governments .\tDT NNS VBP VBN DT NN IN NN CC VBN VBG VBG NNS .\nEarlier this week , the African Union dispatched former South African president Thabo Mbeki to seek a solution , but after two days of talks , the situation was not resolved .\tRBR DT NN , DT NNP NNP VBD JJ NNP NNP NN NNP NNP TO VB DT NN , CC IN CD NNS IN NNS , DT NN VBD RB VBN .\nThe Ivory Coast 's presidential election , its first in 10 years , was meant to restore stability to the West African country , which was split into rebel- and government-controlled areas during a 2002 civil war .\tDT NNP NNP POS JJ NN , PRP$ JJ IN CD NNS , VBD VBN TO VB NN TO DT JJ JJ NN , WDT VBD VBN IN JJ CC JJ NNS IN DT CD JJ NN .\nOfficials in Afghanistan say a suicide bomber has killed four Afghan employees of a U.S.-owned private security firm and wounded one other in southern Kandahar province .\tNNS IN NNP VBP DT NN NN VBZ VBN CD JJ NNS IN DT JJ JJ NN NN CC VBD CD JJ IN JJ NNP NN .\nAuthorities said Sunday the bomber rode a motorbike next to a vehicle owned by the company , U.S. Protection and Investigations , and detonated his explosives .\tNNS VBD NNP DT NN VBD DT NN IN TO DT NN VBN IN DT NN , NNP NNP CC NNPS , CC VBD PRP$ NNS .\nThree guards and the vehicle 's driver were killed , and another guard was wounded .\tCD NNS CC DT NN POS NN VBD VBN , CC DT NN VBD VBN .\nOn Saturday , a suicide bomber killed seven police officers and a civilian in eastern Afghanistan 's Khost province , near the Pakistan border .\tIN NNP , DT NN NN VBD CD NNS NNS CC DT NN IN JJ NNP POS NNP NN , IN DT NNP NN .\nThe Taleban is reported to have taken responsibility for the blast .\tDT NNP VBZ VBN TO VB VBN NN IN DT NN .\nNATO forces in Afghanistan are preparing for another upsurge in violence this year , having already launched an operation in the south to preempt an anticipated offensive by Taleban fighters .\tNNP NNS IN NNP VBP VBG IN DT NN IN NN DT NN , VBG RB VBN DT NN IN DT NN TO VB DT JJ NN IN NNP NNS .\nTurkish police have detained more than 80 people and used tear gas to prevent thousands of leftist protesters from marching to Istanbul 's Taksim square to hold a May Day rally .\tJJ NNS VBP VBN RBR IN CD NNS CC VBN JJ NN TO VB NNS IN JJ NNS IN VBG TO NNP POS NNP NN TO VB DT NNP NNP NN .\nAuthorities declared the square off-limits to protesters , but allowed a small number of trade union leaders to lay flowers at the square to mark the day .\tNNS VBD DT JJ NNS TO NNS , CC VBD DT JJ NN IN NN NN NNS TO VB NNS IN DT NN TO VB DT NN .\nOfficials had shut down schools in the area for the day for fear of violence .\tNNS VBD VBN RP NNS IN DT NN IN DT NN IN NN IN NN .\nMembers of leftist groups often clash with police during May Day observances in Turkey .\tNNS IN JJ NNS RB VB IN NNS IN NNP NNP NNS IN NNP .\nIn 1977 , a May Day rally at Taksim square turned violent when unidentified gunmen opened fire on a crowd of demonstrators .\tIN CD , DT NNP NNP NN IN NNP NN VBD JJ WRB JJ NNS VBD NN IN DT NN IN NNS .\nThirty-seven people were killed in that incident .\tCD NNS VBD VBN IN DT NN .\nThe race for Iraq 's new prime minister narrowed Tuesday , when one of two top Shi'ite parties withdrew its candidate from consideration .\tDT NN IN NNP POS JJ JJ NN VBD NNP , WRB CD IN CD JJ NNP NNS VBD PRP$ NN IN NN .\nInterim Finance Minister Adel Abdul-Mahdi , who had been the candidate of the Supreme Council for the Islamic Revolution in Iraq , withdrew his name from contention .\tNNP NNP NNP NNP NNP , WP VBD VBN DT NN IN DT NNP NNP IN DT NNP NNP IN NNP , VBD PRP$ NN IN NN .\nThis leaves the head of the Islamic Dawa Party , Ibrahim al-Jaafari , as the likely front-runner .\tDT VBZ DT NN IN DT NNP NNP NNP , NNP NNP , IN DT JJ NN .\nBoth parties belong to the United Iraqi Alliance , which won about 48 percent of the vote for the National Assembly .\tDT NNS VBP TO DT NNP JJ NNP , WDT VBD IN CD NN IN DT NN IN DT NNP NNP .\nMeanwhile , Iraq 's Electoral Commission says it has received at least three complaints from political groups challenging the election results .\tRB , NNP POS NNP NNP VBZ PRP VBZ VBN IN JJS CD NNS IN JJ NNS VBG DT NN NNS .\nA final , certified vote tally is expected Wednesday .\tDT JJ , JJ NN RB VBZ VBN NNP .\nAnd Turkish shipping magnate Kahraman Sadikoglu , who was abducted in southern Iraq in December , has been freed after reports said his family paid a ransom to his kidnappers .\tCC JJ NN NN NNP NNP , WP VBD VBN IN JJ NNP IN NNP , VBZ VBN VBN IN NNS VBD PRP$ NN VBD DT NN TO PRP$ NNS .\nA Council of Europe panel says Turkey has passed important legislation protecting minority rights , but has not adequately enforced the new laws .\tDT NNP IN NNP NN VBZ NNP VBZ VBN JJ NN VBG NN NNS , CC VBZ RB RB VBN DT JJ NNS .\nIn a report , the European Commission against Racism and Intolerance says that despite the new legislation , Turkey 's constitution and its civil , criminal and administrative laws continue to have gaps in addressing racism .\tIN DT NN , DT JJ NNP IN NNP CC NNP VBZ IN IN DT JJ NN , NNP POS NN CC PRP$ JJ , JJ CC JJ NNS VBP TO VB NNS IN VBG NN .\nThe report , issued Tuesday in Strasbourg , says Kurds and other minorities still face adversity in Turkey , particularly from ongoing violence in the southeast where Kurdish separatists have been active in recent decades .\tDT NN , VBN NNP IN NNP , VBZ NNP CC JJ NNS RB VBP NN IN NNP , RB IN JJ NN IN DT NN WRB NNP NNS VBP VBN JJ IN JJ NNS .\nTurkey 's move to push through legal and economic reforms is considered an essential part of its bid to join the European Union .\tNNP POS NN TO VB IN JJ CC JJ NNS VBZ VBN DT JJ NN IN PRP$ NN TO VB DT NNP NNP .\nThe Council of Europe is a 46-nation group that brings together lawmakers from democratic European countries to review major issues facing the continent .\tDT NNP IN NNP VBZ DT JJ NN WDT VBZ RB NNS IN JJ JJ NNS TO VB JJ NNS VBG DT NN .\nArmenia has launched an aerial tramway line that it says is the world 's longest .\tNNP VBZ VBN DT JJ NN NN IN PRP VBZ VBZ DT NN POS JJS .\nPresident Serzh Sarkisian attended the opening of the tramway Saturday , in the country 's southern mountains near Armenia 's border with Iran .\tNNP NNP NNP VBD DT NN IN DT NN NNP , IN DT NN POS JJ NNS IN NNP POS NN IN NNP .\nThe 5.7-kilometer engineering feat spans the Vorotan River gorge , linking a village off the main highway to the 9th century Tatev Monastery .\tDT JJ NN NN VBZ DT NNP NNP NN , VBG DT NN IN DT JJ NN TO DT JJ NN NNP NNP .\nThe monastery is one of the country 's oldest and most prominent monasteries and is a major tourist attraction .\tDT NN VBZ CD IN DT NN POS JJS CC RBS JJ NNS CC VBZ DT JJ NN NN .\nThe head of Cuba 's parliament has offered to support Iran in its fight to develop nuclear energy within Iranian borders .\tDT NN IN NNP POS NN VBZ VBN TO VB NNP IN PRP$ NN TO VB JJ NN IN JJ NNS .\nRicardo Alarcon voiced solidarity Thursday in a meeting with the visiting speaker of Iran 's parliament , Gholam Ali Haddad Adel .\tNNP NNP VBD NN NNP IN DT NN IN DT VBG NN IN NNP POS NN , NNP NNP NNP NNP .\nIran resumed enrichment of uranium for nuclear fuel earlier this week , despite international pressure against the move .\tNNP VBD NN IN NN IN JJ NN RBR DT NN , IN JJ NN IN DT NN .\nHaddad Adel is on a two-day visit to Cuba after spending Wednesday in Venezuela , where he thanked the government for its support on nuclear issues .\tNNP NNP VBZ IN DT JJ NN TO NNP IN VBG NNP IN NNP , WRB PRP VBD DT NN IN PRP$ NN IN JJ NNS .\nMeanwhile , Indiana Representative Dan Burton , in an interview with Voice of America Thursday , expressed concern over the close ties between Iran and the two countries .\tRB , NNP NNP NNP NNP , IN DT NN IN NNP IN NNP NNP , VBD NN IN DT JJ NNS IN NNP CC DT CD NNS .\nHe said if it appears that there is coordination between terrorist states and leftist organizations in Central America , the United States will intervene .\tPRP VBD IN PRP VBZ IN EX VBZ NN IN JJ NNS CC JJ NNS IN NNP NNP , DT NNP NNPS MD VB .\nRepresentative Burton said such a relationship would endanger the United States and other countries in the hemisphere .\tNNP NNP VBD PDT DT NN MD VB DT NNP NNPS CC JJ NNS IN DT NN .\nEuropean Union foreign ministers hold emergency talks in Luxembourg Sunday in efforts to break a deadlock on Turkey , which is scheduled to begin membership negotiations with the bloc one day later .\tNNP NNP JJ NNS VBP NN NNS IN NNP NNP IN NNS TO VB DT NN IN NNP , WDT VBZ VBN TO VB NN NNS IN DT NN CD NN RB .\nThe ministers called the meeting after Austria insisted that EU talks with Turkey should include an alternative to giving the country full membership .\tDT NNS VBD DT NN IN NNP VBD IN NNP NNS IN NNP MD VB DT NN TO VBG DT NN JJ NN .\nAustria says most Austrians object to full EU membership for Turkey and suggested offering Turkey privileged partnership instead .\tNNP VBZ RBS NNS VBP TO JJ NNP NN IN NNP CC VBD VBG NNP JJ NN RB .\nBut Turkey calls that unacceptable and says it will not take part in Monday 's talks unless it is clear that the goal is full membership .\tCC NNP VBZ IN JJ CC VBZ PRP MD RB VB NN IN NNP POS NNS IN PRP VBZ JJ IN DT NN VBZ JJ NN .\nEU diplomats are working on proposals to soften Austrian opposition .\tNNP NNS VBP VBG IN NNS TO VB JJ NN .\nOne would be a commitment to begin membership talks with Austria 's neighbor Croatia in the near future .\tCD MD VB DT NN TO VB NN NNS IN NNP POS NN NNP IN DT JJ NN .\nEU ministers had delayed the talks because of Croatian failure to cooperate fully with The Hague war crimes tribunal .\tNNP NNS VBD VBN DT NNS IN IN JJ NN TO VB RB IN DT NNP NN NNS JJ .\nPakistani military authorities say they have arrested a key Taliban commander who is accused of slaughtering military personnel .\tJJ JJ NNS VBP PRP VBP VBN DT JJ NNP NN WP VBZ VBN IN VBG JJ NNS .\nSecurity forces said Wednesday they captured Taliban commander Sher Mohammad Qasab in the Swat Valley .\tNNP NNS VBD NNP PRP VBD NNP NN NNP NNP NNP IN DT NNP NNP .\nQasab is known for his brutality among locals in the valley .\tNNP VBZ VBN IN PRP$ NN IN NNS IN DT NN .\nA military spokesman said Qasab was wounded and three of his sons died during an exchange of fire before his arrest .\tDT JJ NN VBD NNP VBD VBN CC CD IN PRP$ NNS VBD IN DT NN IN NN IN PRP$ NN .\nPakistani forces have arrested key Taliban commanders recently in the valley , including Muslim Khan , the central spokesman for the militants .\tJJ NNS VBP VBN JJ NNP NNS RB IN DT NN , VBG NNP NNP , DT JJ NN IN DT NNS .\nAuthorities say the arrests have weakened the Taliban and are helping security forces conduct successful raids against other militants in the area .\tNNS VBP DT NNS VBP VBN DT NNP CC VBP VBG NN NNS VBP JJ NNS IN JJ NNS IN DT NN .\nThe top U.S. diplomat says China should make significant economic reforms so it does not continue to be a ' problem for the international economy . '\tDT JJ NNP NN VBZ NNP MD VB JJ JJ NNS IN PRP VBZ RB VB TO VB DT `` NN IN DT JJ NN . ``\nIn a New York Times newspaper interview , published Friday , Secretary of State Condoleezza Rice says Washington also worries about China 's military buildup , human rights practices and religious restrictions .\tIN DT NNP NNP NNP NN NN , VBN NNP , NNP IN NNP NNP NNP VBZ NNP RB VBZ IN NNP POS JJ NN , JJ NNS NNS CC JJ NNS .\nIt is a change of tone for Ms. Rice , who generally casts Sino-American relations in a positive light .\tPRP VBZ DT NN IN NN IN NNP NNP , WP RB VBZ JJ NNS IN DT JJ NN .\nHer comments come just a month before Chinese President Hu Jintao makes his first visit to Washington since taking office in 2003 .\tPRP$ NNS VBP RB DT NN IN JJ NNP NNP NNP VBZ PRP$ JJ NN TO NNP IN VBG NN IN CD .\nHe will arrive amid Washington 's complaints that China manipulates the value of its currency to make its products unfairly cheap on world markets .\tPRP MD VB IN NNP POS NNS IN NNP VBZ DT NN IN PRP$ NN TO VB PRP$ NNS RB JJ IN NN NNS .\nBeijing recently changed the value of its currency slightly , but U.S. critics say the change is not large enough to make trade fair .\tNNP RB VBD DT NN IN PRP$ NN RB , CC NNP NNS VBP DT NN VBZ RB JJ RB TO VB NN NN .\nChad 's national assembly has authorized President Idriss Deby to renew a state of emergency imposed after a rebel attack on the capital , N'Djamena , early this month .\tNNP POS JJ NN VBZ VBN NNP NNP NNP TO VB DT NN IN NN VBN IN DT NN NN IN DT NN , NNP , RB DT NN .\nThe parliament voted Friday to extend the emergency measure for another 15 days , until March 15 .\tDT NN VBD NNP TO VB DT NN NN IN DT CD NNS , IN NNP CD .\nMr. Deby declared exceptional powers for his government on February 15 after rebels attacked the capital in an effort to oust the president .\tNNP NNP VBD JJ NNS IN PRP$ NN IN NNP CD IN NNS VBD DT NN IN DT NN TO VB DT NN .\nPresident Deby said the measures were necessary to maintain order in the country .\tNNP NNP VBD DT NNS VBD JJ TO VB NN IN DT NN .\nThe emergency decree authorizes a midnight-to-dawn curfew and allows the government to ban meetings , control the movement of people and vehicles , and censor what is published in the media .\tDT NN NN VBZ DT JJ NN CC VBZ DT NN TO VB NNS , VB DT NN IN NNS CC NNS , CC NN WP VBZ VBN IN DT NNS .\nNepal 's parliament has unanimously approved a resolution to curtail King Gyanendra 's powers .\tNNP POS NN VBZ RB VBN DT NN TO VB NNP NNP POS NNS .\nDetails of the declaration have not yet been released , but the resolution is expected to remove the king 's command over the 90,000 member army , as well as his right to make decisions on major issues .\tNNS IN DT NN VBP RB RB VBN VBN , CC DT NN VBZ VBN TO VB DT NN POS NN IN DT CD NN NN , RB RB IN PRP$ NN TO VB NNS IN JJ NNS .\nThose powers are to be given to parliament .\tDT NNS VBP TO VB VBN TO NN .\nEarlier Thursday , Prime Minister Girija Prasad Koirala told parliament members that the proclamation represents the feelings of all people in Nepal .\tRBR NNP , NNP NNP NNP NNP NNP VBD NN NNS IN DT NN VBZ DT NNS IN DT NNS IN NNP .\nCurtailing the king 's powers was a key demand during last month 's pro-democracy protests , which forced King Gyanendra to give up total control of the government and reinstate parliament .\tVBG DT NN POS NNS VBD DT JJ NN IN JJ NN POS JJ NNS , WDT VBD NNP NNP TO VB RP JJ NN IN DT NN CC VB NN .\nNepal 's interim cabinet banned rallies today near the parliament and other key government buildings in Kathmandu .\tNNP POS JJ NN VBD NNS NN IN DT NN CC JJ JJ NN NNS IN NNP .\nTwo days ago , there were demonstrations against the delay in curbing the king 's powers .\tCD NNS RB , EX VBD NNS IN DT NN IN VBG DT NN POS NNS .\nIraqi defense lawyers representing Saddam Hussein before a special tribunal say they have suspended all contact with the court until their safety is guaranteed .\tJJ NN NNS VBG NNP NNP IN DT JJ NN VBP PRP VBP VBN DT NN IN DT NN IN PRP$ NN VBZ VBN .\nIn a statement , the lawyers cited the kidnapping and murder last week of their colleague Saadoun al-Janabi who represented one of Saddam 's co-defendants .\tIN DT NN , DT NNS VBD DT NN CC NN JJ NN IN PRP$ NN NNP NNP WP VBD CD IN NNP POS NNS .\nThey said the deteriorating security situation also makes it impossible to have a fair and open trial .\tPRP VBD DT JJ NN NN RB VBZ PRP JJ TO VB DT JJ CC JJ NN .\nThey have demanded U.N. protection , as well as the hiring of 15 bodyguards for each lawyer , and an independent international investigation into their colleague 's murder .\tPRP VBP VBN NNP NN , RB RB IN DT NN IN CD NNS IN DT NN , CC DT JJ JJ NN IN PRP$ NN POS NN .\nSaddam Hussein and seven associates entered ' not guilty ' pleas at the opening of their trial last Wednesday for the 1982 murders of 143 Shi'ite men in the town of Dujail .\tNNP NNP CC CD NNS VBN `` RB JJ `` NNS IN DT NN IN PRP$ NN JJ NNP IN DT CD NNS IN CD NNP NNS IN DT NN IN NNP .\nThe trial was adjourned until November 28 .\tDT NN VBD VBN IN NNP CD .\nIsraeli police have lifted an alert in Tel Aviv , hours after warning of a possible attack .\tJJ NNS VBP VBN DT NN IN NNP NNP , NNS IN NN IN DT JJ NN .\nSecurity officials set up barricades at entry points into the city earlier Tuesday to check for suspicious vehicles , causing heavy traffic jams .\tNN NNS VBD RP NNS IN NN NNS IN DT NN RB NNP TO VB IN JJ NNS , VBG JJ NN NNS .\nNo further details have been released .\tDT JJ NNS VBP VBN VBN .\nAn election official in Haiti says the country may have to postpone elections scheduled for November .\tDT NN NN IN NNP VBZ DT NN MD VB TO VB NNS VBN IN NNP .\nPatrick Fequiere says authorities need more time to prepare ballots , distribute voter identification cards and set up polling places .\tNNP NNP VBZ NNS VBP JJR NN TO VB NNS , VB NN NN NNS CC VBN RP VBG NNS .\nThe election council member 's comments come three days after U.S. Secretary of State Condoleezza Rice urged Haitian officials to speed up preparations for the November 20 vote .\tDT NN NN NN POS NNS VBP CD NNS IN NNP NNP IN NNP NNP NNP VBD JJ NNS TO VB RP NNS IN DT NNP CD NN .\nThe nine-member council has approved about 30 presidential candidates for the first round of balloting .\tDT JJ NN VBZ VBN IN CD JJ NNS IN DT JJ NN IN NN .\nThe country will also hold legislative elections .\tDT NN MD RB VB JJ NNS .\nThe vote will be Haiti 's first since former president Jean-Betrand Aristide fled the country during a 2004 uprising .\tDT NN MD VB NNP POS JJ IN JJ NN NNP NNP VBD DT NN IN DT CD NN .\nAbout 7,000 U.N. peacekeepers have been deployed to calm widespread violence in Haiti .\tIN CD NNP NNS VBP VBN VBN TO VB JJ NN IN NNP .\nIsrael has allowed the first commercial shipment of shoes and clothing into the Gaza Strip in almost two years .\tNNP VBZ VBN DT JJ JJ NN IN NNS CC NN IN DT NNP NNP IN RB CD NNS .\nSmaller shipments have been allowed to enter Gaza through international aid groups , but Sunday 's shipments are the first to reach private traders .\tJJR NNS VBP VBN VBN TO VB NNP IN JJ NN NNS , CC NNP POS NNS VBP DT JJ TO VB JJ NNS .\nSmugglers have skirted the blockade by bringing in goods though a tunnel under the Egypt-Gaza border .\tNNS VBP VBN DT NN IN VBG IN NNS IN DT NN IN DT NNP NN .\nBritish-based human rights group Amnesty International called for an end to the blockade in January , saying it is ' suffocating ' Gaza 's 1.4 million residents .\tJJ JJ NNS NN NNP NNP VBD IN DT NN TO DT NN IN NNP , VBG PRP VBZ `` VBG `` NNP POS CD CD NNS .\nAn Israeli military offensive into Gaza in December 2008 to stop cross-border rocket attacks by Hamas militants killed at least 1,300 Palestinians and 13 Israelis .\tDT JJ JJ NN IN NNP IN NNP CD TO VB JJ NN NNS IN NNP NNS VBD IN JJS CD NNS CC CD NNS .\nIvorian officials say 11 people in a major cocoa-growing region have been killed in an attack believed to have been triggered by a land dispute .\tJJ NNS VBP CD NNS IN DT JJ JJ NN VBP VBN VBN IN DT NN VBN TO VB VBN VBN IN DT NN NN .\nOfficials say the incident happened Thursday when the assailants attacked their victims in the village of Siegouekou .\tNNS VBP DT NN VBD NNP WRB DT NNS VBD PRP$ NNS IN DT NN IN NNP .\nA senior presidential source tells the Reuters news agency that the assailants smashed down doors with guns and knives , cut the throats of some people and fired at point blank range on others .\tDT JJ JJ NN VBZ DT NNP NN NN IN DT NNS VBD RP NNS IN NNS CC NNS , VBD DT NNS IN DT NNS CC VBD IN NN JJ NN IN NNS .\nClashes involving rival ethnic groups over precious cocoa land are common in the area .\tNNS VBG JJ JJ NNS IN JJ NN NN VBP JJ IN DT NN .\nIvory Coast is the world 's leading producer of cocoa , the key ingredient in chocolate .\tNNP NNP VBZ DT NN POS VBG NN IN NN , DT JJ NN IN NN .\nOil refineries , drilling platforms and pipelines largely escaped damage from Hurricane Rita , sending prices down to about $ 64 a barrel in Monday morning trading .\tNN NNS , NN NNS CC NNS RB VBD NN IN NNP NNP , VBG NNS RB TO IN $ CD DT NN IN NNP NN NN .\nThe falling prices were unlike the dramatic spike that followed Hurricane Katrina , but that has not eased worries among industry analysts and politicians about the tight oil supply .\tDT VBG NNS VBD IN DT JJ NN WDT VBD NNP NNP , CC DT VBZ RB VBN NNS IN NN NNS CC NNS IN DT JJ NN NN .\nNearly all the major refineries along the Gulf of Mexico were shut down before or during Hurricane Rita , cutting total U.S. oil production by nearly 30 percent .\tRB PDT DT JJ NNS IN DT NNP IN NNP VBD VBN RP IN CC IN NNP NNP , VBG JJ NNP NN NN IN RB CD NN .\nWith little excess refining capacity , analysts say oil prices remain vulnerable to even minor disruptions in the global supply .\tIN JJ JJ NN NN , NNS VBP NN NNS VBP JJ TO RB JJ NNS IN DT JJ NN .\nThe U.S. Energy Department Monday will brief President Bush on damage to Gulf oil facilities and the status of the nation 's energy industry .\tDT NNP NNP NNP NNP MD VB NNP NNP IN NN TO NNP NN NNS CC DT NN IN DT NN POS NN NN .\nReports from Sudan say dozens of people were killed when a plane veered off a runway at Khartoum 's airport and burst into flames .\tNNS IN NNP VBP NNS IN NNS VBD VBN WRB DT NN VBD RP DT NN IN NNP POS NN CC VBD IN NNS .\nAbout 200 passengers were thought to be aboard the Sudan Airways plane when it landed in bad weather late Tuesday .\tRB CD NNS VBD VBN TO VB IN DT NNP NNPS NN WRB PRP VBD IN JJ NN JJ NNP .\nThere are conflicting reports about the number of fatalities , but state-run television in Sudan says about 100 people died in the accident .\tEX VBP VBG NNS IN DT NN IN NNS , CC JJ NN IN NNP VBZ IN CD NNS VBD IN DT NN .\nEmergency services rushed to the scene and by late Tuesday had brought the fire under control .\tNN NNS VBD TO DT NN CC IN JJ NNP VBD VBN DT NN IN NN .\nThe flight originated in Damascus , Syria , and made a stopover in Amman , Jordan , before flying to Khartoum .\tDT NN VBD IN NNP , NNP , CC VBD DT NN IN NNP , NNP , IN VBG TO NNP .\nSudan has a poor aviation record .\tNNP VBZ DT JJ NN NN .\nIn May , a plane crashed in a remote area of southern Sudan , killing 23 people , including key members of the southern Sudanese government .\tIN NNP , DT NN VBN IN DT JJ NN IN JJ NNP , VBG CD NNS , VBG JJ NNS IN DT JJ JJ NN .\nIn July 2003 , a Sudan Airways plane crashed soon after takeoff near Port Sudan , killing 115 people .\tIN NNP CD , DT NNP NNP NN VBD RB IN NN IN NNP NNP , VBG CD NNS .\nUkraine 's Deputy Prime Minister Mykola Azarov says U.S. plans to build a missile defense system in central Europe are a threat to Ukraine .\tNNP POS NNP NNP NNP NNP NNP VBZ NNP NNS TO VB DT NN NN NN IN JJ NNP VBP DT NN TO NNP .\nAzarov said Monday that such a system close to the Ukrainian border would be a target of attack and threaten to suck Ukraine into a conflict .\tNNP VBD NNP IN PDT DT NN JJ TO DT JJ NN MD VB DT NN IN NN CC VB TO VB NNP IN DT NN .\nWashington says it wants to build missile defense sites in Poland and the Czech Republic to counter a possible threat by North Korean and Iranian long-range missiles .\tNNP VBZ PRP VBZ TO VB NN NN NNS IN NNP CC DT JJ NNP TO VB DT JJ NN IN JJ JJ CC JJ JJ NNS .\nRussia has also called the plans a mistake and has noted that neither North Korea nor Iran have such missiles .\tNNP VBZ RB VBN DT NNS DT NN CC VBZ VBN IN DT NNP NNP CC NNP VBP JJ NNS .\nThe Pentagon has acknowledged that Iran does not currently possess long-range missiles , but says it is important to stay one step ahead .\tDT NNP VBZ VBN IN NNP VBZ RB RB VB JJ NNS , CC VBZ PRP VBZ JJ TO VB CD NN RB .\nThe African Union has extended the mandate for its Darfur peacekeeping mission until the end of the year as it waits to assemble a combined force with the United Nations .\tDT NNP NNP VBZ VBN DT NN IN PRP$ NNP NN NN IN DT NN IN DT NN IN PRP VBZ TO VB DT VBN NN IN DT NNP NNPS .\nThe African Union said in a statement Friday that it hopes efforts to deploy the hybrid force will be speeded up .\tDT NNP NNP VBD IN DT NN NNP IN PRP VBZ NNS TO VB DT JJ NN MD VB VBN RP .\nSudan agreed this month to the joint African Union - United Nations force of around 20,000 peacekeepers after months of international pressure and threats of tougher U.N. sanctions .\tNNP VBD DT NN TO DT JJ NNP NNP : NNP NNP NN IN IN CD NNS IN NNS IN JJ NN CC NNS IN JJR NNP NNS .\nThe African Union already has about 7,000 peacekeepers in Darfur , but they have not been able to stop the region 's violence .\tDT NNP NNP RB VBZ IN CD NNS IN NNP , CC PRP VBP RB VBN JJ TO VB DT NN POS NN .\nSudanese government-backed Arab militias are accused of committing atrocities in battling Darfur rebels .\tJJ VBN JJ NNS VBP VBN IN VBG NNS IN VBG NNP NNS .\nFour years of fighting in Darfur has left more than 2,00,000 people dead and more than two million displaced .\tCD NNS IN VBG IN NNP VBZ VBN JJR IN CD NNS JJ CC JJR IN CD CD VBD .\nA U.S. Defense Department spokesman says Uzbekistan has restricted American military flights from its soil in recent weeks .\tDT NNP NNP NNP NN VBZ NNP VBZ VBN JJ JJ NNS IN PRP$ NN IN JJ NNS .\nBut the spokesman refused to link the change directly to U.S. criticism of the Uzbek government 's violent crackdown on anti-government protesters last month .\tCC DT NN VBD TO VB DT NN RB TO NNP NN IN DT JJ NN POS JJ NN IN JJ NNS JJ NN .\nHe said Uzbekistan has stopped allowing U.S. nighttime flights from its air base at Karshi-Khanabad , which American forces use to support operations and supply humanitarian aid to neighboring Afghanistan .\tPRP VBD NNP VBZ VBN VBG NNP JJ NNS IN PRP$ NN NN IN NNP , WDT JJ NNS VBP TO VB NNS CC NN JJ NN TO VBG NNP .\nHe said the U.S. military has been working around the restrictions .\tPRP VBD DT NNP NN VBZ VBN VBG IN DT NNS .\nUzbekistan opened the airfield to U.S. forces in the aftermath of the September 11 , 2001 , terror attacks in the United States .\tNNP VBD DT NN TO NNP NNS IN DT NN IN DT NNP CD , CD , NN NNS IN DT NNP NNPS .\nWashington in recent weeks has been criticizing the Uzbek government for not allowing an international probe into its handling of last month 's uprising in the eastern city of Andijan .\tNNP IN JJ NNS VBZ VBN VBG DT JJ NN IN RB VBG DT JJ NN IN PRP$ NN IN JJ NN POS NN IN DT JJ NN IN NNP .\nPhilippine officials , fearing the spread of disease , are urging people to quickly bury hundreds of victims killed in two storms this week .\tJJ NNS , VBG DT NN IN NN , VBP VBG NNS TO RB VB NNS IN NNS VBN IN CD NNS DT NN .\nThe military says at least 1,000 people are dead or missing from floods and mudslides caused by the typhoons , which hit provinces in the northeast of the country .\tDT NN VBZ IN JJS CD NNS VBP JJ CC VBG IN NNS CC NNS VBN IN DT NNS , WDT VBD NNS IN DT NN IN DT NN .\nOfficials are assessing the damage from the latest and most powerful storm , Typhoon Nanmadol , which slammed into the coast Thursday packing sustained winds of 185 kilometers per hour .\tNNS VBP VBG DT NN IN DT JJS CC RBS JJ NN , NNP NNP , WDT VBD IN DT NN NNP NN VBD NNS IN CD NNS IN NN .\nNanmadol is the fourth storm to hit the Philippines in less than two weeks .\tNNP VBZ DT JJ NN TO VB DT NNPS IN JJR IN CD NNS .\nIn a televised statement Friday President Gloria Arroyo said , ' We need one great heave to deliver the relief supplies , find the missing , rescue the isolated , feed the hungry and shelter the homeless . '\tIN DT JJ NN NNP NNP NNP NNP VBD , `` PRP VBP CD JJ NN TO VB DT NN NNS , VB DT JJ , VB DT JJ , VB DT NN CC NN DT NN . ``\nLebanese security officials say Syria has pulled two-thousand more troops out of Lebanon 's eastern Bekaa Valley .\tJJ NN NNS VBP NNP VBZ VBN JJ JJR NNS IN IN NNP POS JJ NNP NNP .\nOfficials in Beirut today Monday say the latest withdrawal brings the Syrian military presence down to about eight-thousand troops , the lowest level since they entered Lebanon nearly three decades ago .\tNNS IN NNP NN NNP VBP DT JJS NN VBZ DT JJ JJ NN IN TO IN JJ NNS , DT JJS NN IN PRP VBD NNP RB CD NNS RB .\nLebanese officials say the Syrian-Lebanese Military Commission will meet next week to set a timetable for the complete withdrawal of all remaining Syrian forces .\tJJ NNS VBP DT JJ NNP NNP MD VB JJ NN TO VB DT NN IN DT JJ NN IN DT VBG JJ NNS .\nAlso Monday , a senior Lebanese Foreign Ministry official is en route to New York to attend a U.N. Security Council meeting .\tRB NNP , DT JJ JJ NNP NNP NN VBZ IN NN TO NNP NNP TO VB DT NNP NNP NNP NN .\nCouncil members are expected to call for an international investigation of last month 's assassination of former Prime Minister Rafik al-Hariri .\tNNP NNS VBP VBN TO VB IN DT JJ NN IN JJ NN POS NN IN JJ NNP NNP NNP NNP .\nIn other developments , Lebanon 's main opposition leader Walid Jumblatt says he has no current plans to press for disarmament of the militant group Hezbollah .\tIN JJ NNS , NNP POS JJ NN NN NNP NNP VBZ PRP VBZ DT JJ NNS TO VB IN NN IN DT JJ NN NNP .\nCameroon says its security forces have freed six hostages kidnapped two weeks ago off the country 's coast .\tNNP VBZ PRP$ NN NNS VBP VBN CD NNS VBN CD NNS IN IN DT NN POS NN .\nCommunications Minister Issa Tchiroma says the six were freed Thursday and handed over to representatives of their respective diplomatic missions on Friday following medical examinations .\tNNS NN NNP NNP VBZ DT CD VBD VBN NNP CC VBN RP TO NNS IN PRP$ JJ JJ NNS IN NNP VBG JJ NNS .\nTchiroma refused to give any additional details on the operation .\tNNP VBD TO VB DT JJ NNS IN DT NN .\nRebels from Cameroon 's Bakassi Peninsula claimed responsibility for the kidnappings .\tNNS IN NNP POS NNP NNP VBD NN IN DT NNS .\nIt is not clear whether the rebels are from a group called Bakassi Freedom Fighters or a splinter group known as Africa Marine Commando .\tPRP VBZ RB JJ IN DT NNS VBP IN DT NN VBN NNP NNP NNPS CC DT NN NN VBN IN NNP NNP NNP .\nThe hostages - four Ukrainians , one Croatian and one Philippine national - were kidnapped from vessels off the coast of Cameroon on September 12 .\tDT NNS IN CD NNS , CD NN CC CD JJ NN : VBD VBN IN NNS IN DT NN IN NNP IN NNP CD .\nA preliminary medical study has indicated that an ingredient in chocolate may improve the circulation of blood in the brain and heart .\tDT JJ JJ NN VBZ VBN IN DT NN IN NN MD VB DT NN IN NN IN DT NN CC NN .\nScientists at the American Association for the Advancement of Science discussed the findings Sunday at a convention in San Francisco , California .\tNNS IN DT NNP NNP IN DT NNP IN NNP VBD DT NNS NNP IN DT NN IN NNP NNP , NNP .\nThey said flavinols , an anti-oxidant found in cocoa beans , can increase blood flow to the brain .\tPRP VBD NNS , DT JJ VBN IN NN NNS , MD VB NN NN TO DT NN .\nBut researchers caution us not to start eating chocolate for its health benefits .\tCC NNS VBP PRP RB TO VB VBG NN IN PRP$ NN NNS .\nThey say the flavinols are removed from most chocolate because they have a bitter taste .\tPRP VBP DT NNS VBP VBN IN JJS NN IN PRP VBP DT JJ NN .\nScientists say larger-scale testing is needed to back up the early research .\tNNS VBP JJ NN VBZ VBN TO VB RP DT JJ NN .\nThey also say eating high-calorie foods - like chocolate - can lead to health problems .\tPRP RB VBP VBG JJ NNS : IN NN : MD VB TO NN NNS .\nProtesters attempt to block A9 motorway near Gleneagles , Scotland Police and protesters have clashed in Scotland , as leaders of the world 's leading industrial nations gather for the Group of Eight summit at the Gleneagles resort .\tNNS VBP TO VB NNP NN IN NNP , NNP NNP CC NNS VBP VBN IN NNP , IN NNS IN DT NN POS VBG JJ NNS VBP IN DT NNP IN CD NN IN DT NNP NN .\nScottish officials Wednesday said about 60 people have been arrested and eight officers injured after hooded protesters smashed windows and hurled rocks and other objects at officers in the town of Stirling .\tJJ NNS NNP VBD IN CD NNS VBP VBN VBN CC CD NNS VBN IN JJ NNS VBD NNS CC JJ NNS CC JJ NNS IN NNS IN DT NN IN NNP .\nThey say demonstrators have blocked roads leading to Gleneagles , as well as access to a nearby railway station .\tPRP VBP NNS VBP VBN NNS VBG TO NNP , RB RB IN NN TO DT JJ NN NN .\nMeanwhile , Scottish police now say they will allow protesters to march to the edge of the G-8 summit site .\tRB , JJ NN RB VBP PRP MD VB NNS TO VB TO DT NN IN DT NNP NN NN .\nEarlier in the day , they canceled the planned demonstration following outbreaks of violence in cities surrounding the resort .\tRBR IN DT NN , PRP VBD DT JJ NN VBG NNS IN NN IN NNS VBG DT NN .\nMore than 10,000 police have been deployed in the area around Gleneagles .\tJJR IN CD NNS VBP VBN VBN IN DT NN IN NNP .\nFrench Foreign Minister Bernard Kouchner has urged China to use its influence with Burma 's military government to help end the political and social turmoil in the Southeast Asian country .\tJJ NNP NNP NNP NNP VBZ VBN NNP TO VB PRP$ NN IN NNP POS JJ NN TO VB VB DT JJ CC JJ NN IN DT JJ JJ NN .\nSpeaking with the French press agency ( AFP ) Wednesday in Thailand ahead of a visit to Beijing , Kouchner said China is pivotal to strengthening United Nations efforts to bring about reform in Burma .\tVBG IN DT JJ NN NN LRB NNP RRB NNP IN NNP RB IN DT NN TO NNP , NNP VBD NNP VBZ JJ TO VBG NNP NNPS NNS TO VB RB NN IN NNP .\nHe said China must push the military junta in Rangoon to open real dialogue with the democratic opposition .\tPRP VBD NNP MD VB DT JJ NN IN NNP TO VB JJ NN IN DT JJ NN .\nChina -- a major supplier of weapons to Burma -- has been criticized by some diplomats for not taking a tougher stand toward Burma 's military leaders after the September crackdown on pro-democracy protests .\tNNP IN DT JJ NN IN NNS TO NNP : VBZ VBN VBN IN DT NNS IN RB VBG DT JJR NN IN NNP POS JJ NNS IN DT NNP NN IN JJ NNS .\nKouchner said it was largely due to Beijing 's influence that U.N. envoy Ibrahim Gambari was able to travel to Burma at the end of last month .\tNNP VBD PRP VBD RB JJ TO NNP POS NN IN NNP NNP NNP NNP VBD JJ TO VB TO NNP IN DT NN IN JJ NN .\nThe U.S. military says an American soldier has been killed and two others wounded in fighting with Taleban rebels in southern Afghanistan .\tDT NNP NN VBZ DT JJ NN VBZ VBN VBN CC CD NNS VBD IN VBG IN NNP NNS IN JJ NNP .\nSeven militants were reported captured Tuesday during the fighting in Uruzgan province , the scene of a spate of suicide bombings in recent months .\tCD NNS VBD VBN VBN NNP IN DT NN IN NNP NN , DT NN IN DT NN IN NN NNS IN JJ NNS .\nIn Kabul Tuesday , Afghan authorities say police fired into a crowd of rioting prison inmates , killing one and wounding at least three others .\tIN NNP NNP , JJ NNS VBP NNS VBD IN DT NN IN VBG NN NNS , VBG CD CC VBG IN JJS CD NNS .\nOfficials say the gunfire erupted as hundreds of prisoners tried a mass escape after government talks with the inmates broke down .\tNNS VBP DT NN VBD IN NNS IN NNS VBD DT NN NN IN NN NNS IN DT NNS VBD RP .\nLate Tuesday , a man claiming to be an American journalist inmate told Western journalists by cell phone that rioting Taleban inmates were threatening to kill him .\tRB NNP , DT NN VBG TO VB DT JJ NN NN VBD JJ NNS IN NN NN WDT VBG NNP NNS VBD VBG TO VB PRP .\nFree-lance journalist Edward Caraballo was jailed in 2004 along with two other Americans found guilty of running a private prison and torturing Afghan suspects .\tJJ NN NNP NNP VBD VBN IN CD IN IN CD JJ NNS VBN JJ IN VBG DT JJ NN CC VBG JJ NNS .\nIran says it will hold talks with the United States next week on security in Iraq .\tNNP VBZ PRP MD VB NNS IN DT NNP NNPS JJ NN IN NN IN NNP .\nIran 's official IRNA news agency quoted Foreign Ministry spokesman Mohammad Ali Hosseini Sunday as saying Tehran agreed to the talks in order to lessen the pain of the Iraqi people , support the Iraqi government and establish security and peace in Iraq .\tNNP POS JJ NNP NN NN VBN NNP NNP NN NNP NNP NNP NNP IN VBG NNP VBD IN DT NNS IN NN TO VB DT NN IN DT JJ NNS , VB DT JJ NN CC VB NN CC NN IN NNP .\nThe report said Iran received a request for the talks through the Swiss Embassy in Tehran , which often acts as an intermediary for the U.S. in the country .\tDT NN VBD NNP VBD DT NN IN DT NNS IN DT JJ NN IN NNP , WDT RB VBZ IN DT NN IN DT NNP IN DT NN .\nA spokeswoman for U.S. Vice President Dick Cheney , who is in the region , said the United States is willing to discuss Iraq with Iranian officials .\tDT NN IN NNP NNP NNP NNP NNP , WP VBZ IN DT NN , VBD DT NNP NNPS VBZ JJ TO VB NNP IN JJ NNS .\nU.S. officials have said they want to see Iran and Syria increase control over their borders , and stop supporting militias and insurgents in Iraq .\tNNP NNS VBP VBN PRP VBP TO VB NNP CC NNP VB NN IN PRP$ NNS , CC VB VBG NNS CC NNS IN NNP .\nThe Iranian spokesman said the time and date of the talks would be made public this week .\tDT JJ NN VBD DT NN CC NN IN DT NNS MD VB VBN JJ DT NN .\nIsrael and Western nations are expressing concern over Hamas ' apparent victory in Palestinian parliamentary elections and warning they will not deal with the militant group unless it abandons violence .\tNNP CC JJ NNS VBP VBG NN IN NNP POS JJ NN IN JJ JJ NNS CC VBG PRP MD RB VB IN DT JJ NN IN PRP VBZ NN .\nIsrael 's acting prime minister , Ehud Olmert , is discussing the development with senior cabinet officials .\tNNP POS JJ JJ NN , NNP NNP , VBZ VBG DT NN IN JJ NN NNS .\nHe has said Israel will not work with a Hamas-led government .\tPRP VBZ VBN NNP MD RB VB IN DT JJ NN .\nU.N. Secretary-General Kofi Annan says any group that participates in a democratic process should disarm .\tNNP NNP NNP NNP VBZ DT NN WDT VBZ IN DT JJ NN MD VB .\nBritain also called on Hamas to reject violence and acknowledge Israel 's right to exist .\tNNP RB VBD IN NNP TO VB NN CC VB NNP POS NN TO VB .\nOther European countries , including France , have expressed concern over Hamas ' apparent election victory .\tJJ JJ NNS , VBG NNP , VBP VBN NN IN NNP POS JJ NN NN .\nAnd a spokesman for Palestinian leader Mahmoud Abbas says U.S. Secretary of State Condoleezza Rice called to stress that the Bush administration will continue to support Mr. Abbas and his policies .\tCC DT NN IN JJ NN NNP NNP VBZ NNP NNP IN NNP NNP NNP VBD TO VB IN DT NNP NN MD VB TO VB NNP NNP CC PRP$ NNS .\nAmnesty International says sexual violence against women in Haiti is increasing one year after a deadly earthquake forced hundreds of thousands of people into makeshift shelters with little or no security .\tNNP NNP VBZ JJ NN IN NNS IN NNP VBZ VBG CD NN IN DT JJ NN VBD NNS IN NNS IN NNS IN NN NNS IN JJ CC DT NN .\nAmnesty said in a report Thursday the offenses are primarily committed by armed men roaming tent camps at night .\tNNP VBD IN DT NN NNP DT NNS VBP RB VBN IN JJ NNS VBG JJ NNS IN NN .\nThe rights group says more than 250 rapes occurred in camps in the first 150 days after last January 's earthquake .\tDT NNS NN VBZ JJR IN CD NNS VBD IN NNS IN DT JJ CD NNS IN JJ NNP POS NN .\nAmnesty is urging the newly elected government to include the topic of sexual violence in its plan to address the humanitarian crisis .\tNNP VBZ VBG DT RB VBN NN TO VB DT NN IN JJ NN IN PRP$ NN TO VB DT JJ NN .\nThe group says women should have input in developing an action plan .\tDT NN VBZ NNS MD VB NN IN VBG DT NN NN .\nThe rights group says immediate assistance should include security in the camps and help for police investigating cases .\tDT NNS NN VBZ JJ NN MD VB NN IN DT NNS CC NN IN NNS VBG NNS .\nThe U.S. State Department has informed its diplomats that some will be required to serve in Iraq because of a lack of volunteers willing to work there .\tDT NNP NNP NNP VBZ VBN PRP$ NNS IN DT MD VB VBN TO VB IN NNP IN IN DT NN IN NNS JJ TO VB RB .\nThe department sent a cable Friday to all diplomats , saying that 200 to 300 people will be notified Monday that they are prime candidates for postings in Iraq .\tDT NN VBD DT NN NNP TO DT NNS , VBG IN CD TO CD NNS MD VB VBN NNP IN PRP VBP JJ NNS IN NNS IN NNP .\nHarry Thomas , the director-general of the U.S. Foreign Service , said those notified would have 10 days to accept or reject the position .\tNNP NNP , DT NN IN DT NNP NNP NNP , VBD DT VBN MD VB CD NNS TO VB CC VB DT NN .\nThomas said those who refuse face the possibility of dismissal .\tNNP VBD DT WP VBP VBP DT NN IN NN .\nHe said diplomats sent to Iraq will receive extra pay and vacation time .\tPRP VBD NNS VBN TO NNP MD VB JJ NN CC NN NN .\nThere are precedents for the directed assignments .\tEX VBP NNS IN DT VBN NNS .\nIn 1969 , an entire class of diplomats was sent to Vietnam .\tIN CD , DT JJ NN IN NNS VBD VBN TO NNP .\nDuring the 1970s and 1980s , some were required to work at embassies in Africa .\tIN DT NNS CC NNS , DT VBD VBN TO VB IN NNS IN NNP .\nPakistani President Pervez Musharraf has expressed hope to leaders at the Non-Aligned Movement ( NAM ) summit that talks with his Indian counterpart could ease Kashmir border tensions .\tJJ NNP NNP NNP VBZ VBN NN TO NNS IN DT JJ NN LRB NNP RRB NN IN NNS IN PRP$ JJ NN MD VB NNP NN NNS .\nGeneral Musharraf and Indian Prime Minister Manmohan Singh are expected to meet Saturday on the sidelines of the summit in Havana , Cuba .\tNNP NNP CC JJ NNP NNP NNP NNP VBP VBN TO VB NNP IN DT NNS IN DT NN IN NNP , NNP .\nUnlike Pakistan 's president , Mr. Singh did not speak directly about the Kashmir issue during his speech at the summit Friday .\tIN NNP POS NN , NNP NNP VBD RB VB RB IN DT NNP NN IN PRP$ NN IN DT NN NNP .\nHowever , he urged N.A.M. leaders to renew their group 's efforts against terrorism .\tRB , PRP VBD NNP NNS TO VB PRP$ NN POS NNS IN NN .\nBoth India and Pakistan claim ownership of Kashmir .\tDT NNP CC NNP VBP NN IN NNP .\nThe countries agreed on a ceasefire in 2003 .\tDT NNS VBD IN DT NN IN CD .\nKashmir is suffering from a 17-year insurgency that has killed more than 45,000 people .\tNNP VBZ VBG IN DT JJ NN WDT VBZ VBN JJR IN CD NNS .\nA number of rebel groups are fighting for independence from India or a merger with Muslim-majority Pakistan .\tDT NN IN NN NNS VBP VBG IN NN IN NNP CC DT NN IN NNP NNP .\nSouth Africa 's government says it will move away from coal and promote use of wind and nuclear energy in an effort to fight global warming .\tNNP NNP POS NN VBZ PRP MD VB RB IN NN CC VB NN IN NN CC JJ NN IN DT NN TO VB JJ NN .\nEnvironment Minister Marthinus van Schalkwyk told a news conference Monday that options being considered include mandatory energy efficiency targets and a possible tax on carbon dioxide emissions .\tNN NN NNP NNP NNP VBD DT NN NN NNP IN NNS VBG VBN VBP JJ NN NN NNS CC DT JJ NN IN NN NN NNS .\nSouth Africa generates most of its electricity using coal , a major source of the so-called greenhouse gases blamed for climate change .\tNNP NNP VBZ JJS IN PRP$ NN VBG NN , DT JJ NN IN DT JJ NN NNS VBN IN NN NN .\nVan Schalkwyk said no new coal-fired power stations would be approved unless they use technology that captures and stores carbon emissions .\tNNP NNP VBD DT JJ JJ NN NNS MD VB VBN IN PRP VBP NN IN NNS CC NNS NN NNS .\nHe said if action is taken now , South Africa 's greenhouse gas emissions should stabilize by 2025 and then begin to decline .\tPRP VBD IN NN VBZ VBN RB , NNP NNP POS NN NN NNS MD VB IN CD CC RB VB TO VB .\nHe said the Cabinet 's decisions show the government and the country are committed to a ' low carbon economy . '\tPRP VBD DT NNP POS NNS VBP DT NN CC DT NN VBP VBN TO DT `` JJ NN NN . ``\nOpposition leaders in Pakistan say police have detained at least 150 activists across the country before planned protests on Monday against the removal of the country 's top judge .\tNN NNS IN NNP VBP NNS VBP VBN IN JJS CD NNS IN DT NN IN JJ NNS IN NNP IN DT NN IN DT NN POS JJ NN .\nAuthorities give conflicting accounts of the detentions .\tNNS VBP VBG NNS IN DT NNS .\nSome local police and government officials say they detained activists to prevent further protests , while others say they know nothing about the detentions .\tDT JJ NNS CC NN NNS VBP PRP VBD NNS TO VB JJ NNS , IN NNS VBP PRP VBP DT IN DT NNS .\nPakistan has been shaken by demonstrations since President Pervez Musharraf removed Chief Justice Iftikhar Mohammed Chaudhry from office on March 9 .\tNNP VBZ VBN VBN IN NNS IN NNP NNP NNP VBD NNP NNP NNP NNP NNP IN NN IN NNP CD .\nMr. Musharraf says he suspended Chaudhry because of complaints that he had abused his authority .\tNNP NNP VBZ PRP VBD NNP IN IN NNS IN PRP VBD VBN PRP$ NN .\nChaudhry denies the allegations .\tNNP VBZ DT NNS .\nLawyers and opposition parties say the president is trying to interfere with the independence of the judiciary .\tNNS CC NN NNS VBP DT NN VBZ VBG TO VB IN DT NN IN DT NN .\nMr. Musharraf swore in senior judge Rana Bhagwandas as acting chief justice on Saturday .\tNNP NNP VBD IN JJ NN NNP NNP IN VBG NN NN IN NNP .\nThe French government has confirmed the presence of the deadly H5N1 strain of the bird flu among domestic poultry in the southeastern part of the country .\tDT JJ NN VBZ VBN DT NN IN DT JJ NNP NN IN DT NN NN IN JJ NN IN DT JJ NN IN DT NN .\nIt is the first outbreak among domestic waterfowl in the European Union .\tPRP VBZ DT JJ NN IN JJ NN IN DT NNP NNP .\nThe French agriculture ministry said late Friday that lab tests have verified that the deadly strain killed a turkey on a farm near Lyons .\tDT JJ NN NN VBD JJ NNP IN NN NNS VBP VBN IN DT JJ NN VBD DT NN IN DT NN IN NNP .\nThe farm has been sealed off and more than 11,000 birds have been slaughtered since the illness struck Thursday .\tDT NN VBZ VBN VBN RB CC JJR IN CD NNS VBP VBN VBN IN DT NN VBD NNP .\nPreviously the deadly H5N1 form of the virus has been found only in wild birds in France and other EU countries .\tRB DT JJ NNP NN IN DT NN VBZ VBN VBN RB IN JJ NNS IN NNP CC JJ NNP NNS .\nThe Japanese government on Friday banned the import French poultry products .\tDT JJ NN IN NNP VBD DT NN JJ NN NNS .\nSeparately , European Union health ministers met in Vienna Friday to discuss a public campaign to ease fears and raise awareness .\tRB , NNP NNP NN NNS VBD IN NNP NNP TO VB DT JJ NN TO VB NNS CC VB NN .\nA persistent knee problem has forced Australian Open tennis champion Marat Safin of Russia to withdraw from the Hopman Cup mixed-team tennis tournament in Perth , Australia .\tDT JJ NN NN VBZ VBN JJ NNP NN NN NNP NNP IN NNP TO VB IN DT NNP NNP JJ NN NN IN NNP , NNP .\nSafin has struggled with tendonitis in his right knee .\tNNP VBZ VBN IN NNS IN PRP$ JJ NN .\nAfter missing the Paris Masters tournament and season-ending Masters Cup in Shanghai in November , Safin says his priority is to get ready to defend his Australian Open title rather than play in the Hopman event .\tIN VBG DT NNP NNP NN CC JJ NNP NNP IN NNP IN NNP , NNP VBZ PRP$ NN VBZ TO VB JJ TO VB PRP$ JJ NNP NN RB IN VB IN DT NNP NN .\nThe Hopman Cup starts Friday with a qualifying match between China and the Netherlands .\tDT NNP NNP VBZ NNP IN DT VBG NN IN NNP CC DT NNP .\nSafin has been replaced on the Russian team by 20-year-old Teimuraz Gabashvili , who will partner Svetlana Kuznetsova .\tNNP VBZ VBN VBN IN DT JJ NN IN JJ NNP NNP , WP MD VB NNP NNP .\nRussia is in Group-A with the United States , Sweden and Serbia-Montenegro , and will not play until next Tuesday .\tNNP VBZ IN NNP IN DT NNP NNPS , NNP CC NNP , CC MD RB VB IN JJ NNP .\nRussian President Vladimir Putin has called for a timetable for the withdrawal of foreign military forces from Iraq .\tJJ NNP NNP NNP VBZ VBN IN DT NN IN DT NN IN JJ JJ NNS IN NNP .\nAt a joint news conference with Jordan 's King Abdullah Thursday , the Russian leader said many Iraqis perceive the foreign troops as an occupying force .\tIN DT JJ NN NN IN NNP POS NNP NNP NNP , DT JJ NN VBD JJ NNS VBP DT JJ NNS IN DT JJ NN .\nHe said a phased pull-out of coalition forces would help defuse the violence in Iraq and would help convince a considerable number of those involved in the Iraqi insurgency to join efforts for building a new political system in the war-torn country .\tPRP VBD DT VBN NN IN NN NNS MD VB VB DT NN IN NNP CC MD VB VB DT JJ NN IN DT VBN IN DT JJ NN TO VB NNS IN VBG DT JJ JJ NN IN DT JJ NN .\nMr. Putin also called for an international conference on Iraq to be held by the end of this year , saying it will give an added impulse to normalizing the situation in Iraq .\tNNP NNP RB VBD IN DT JJ NN IN NNP TO VB VBN IN DT NN IN DT NN , VBG PRP MD VB DT JJ NN TO VBG DT NN IN NNP .\nMr. Putin and King Abdullah were meeting at the Russian president 's summer residence near Russia 's Black Sea resort of Sochi .\tNNP NNP CC NNP NNP VBD VBG IN DT JJ NN POS NN NN IN NNP POS NNP NNP NN IN NNP .\nA hijacker seized a Sudanese passenger plane Wednesday and forced the pilot to fly to the Chadian capital , N'Djamena , before surrendering to authorities there .\tDT NN VBD DT JJ NN NN NNP CC VBD DT NN TO VB TO DT JJ NN , NNP , IN VBG TO NNS RB .\nNo one was injured .\tDT NN VBD VBN .\nOfficials say the plane , carrying 103 passengers , was hijacked this morning after it took off from Khartoum for Sudan 's western city of Al-Fasher .\tNNS VBP DT NN , VBG CD NNS , VBD VBN DT NN IN PRP VBD RP IN NNP IN NNP POS JJ NN IN NNP .\nChadian forces surrounded the plane shortly after it landed in N'Djamena .\tJJ NNS VBN DT NN RB IN PRP VBD IN NNP .\nOfficials say the hijacker was armed with a pistol and wanted the plane to be flown to Britain , where he wanted asylum .\tNNS VBP DT NN VBD VBN IN DT NN CC VBD DT NN TO VB VBN TO NNP , WRB PRP VBD NN .\nWhen told there was not enough fuel , he agreed to go to neighboring Chad .\tWRB VBN EX VBD RB JJ NN , PRP VBD TO VB TO JJ NNP .\nIndonesian police say they have arrested a suspected Islamist militant alleged to be a top aide to Malaysian extremist Noordin Mohammad Top .\tJJ NNS VBP PRP VBP VBN DT JJ NN NN VBN TO VB DT JJ NN TO JJ NN NNP NNP NNP .\nLocal media say anti-terror security forces captured Subur Sugiarto on a bus in Central Java on Wednesday .\tJJ NNS VBP JJ NN NNS VBN NNP NNP IN DT NN IN NNP NNP IN NNP .\nSeveral police sources said Subur Sugiarto was part of Top 's inner circle of accomplices .\tJJ NN NNS VBD NNP NNP VBD NN IN NNP POS JJ NN IN NNS .\nTop is a senior member of Jemaah Islamiah , an Islamist militant group seen as the Southeast Asian arm of al-Qaida .\tNNP VBZ DT JJ NN IN NNP NNP , DT NNP JJ NN VBN IN DT JJ JJ NN IN NNP .\nHe is blamed for helping mastermind a string of bombings in recent years in Indonesia , including the 2002 Bali nightclub attacks that killed 202 people .\tPRP VBZ VBN IN VBG VB DT NN IN NNS IN JJ NNS IN NNP , VBG DT CD NNP NN NNS WDT VBD CD NNS .\nPalestinian medical officials say an Israeli aircraft has fired rockets at a car traveling in the southern Gaza Strip , killing a senior Palestinian militant and wounding at least 10 other people .\tJJ JJ NNS VBP DT JJ NN VBZ VBN NNS IN DT NN VBG IN DT JJ NNP NNP , VBG DT JJ JJ NN CC VBG IN JJS CD JJ NNS .\nPalestinian medics say three of the wounded are in critical condition .\tJJ NNS VBP CD IN DT VBN VBP IN JJ NN .\nAn Israeli army statement said aircraft had targeted a senior militant accused of involvement in sniper fire and other attacks against Israeli troops .\tDT JJ NN NN VBD NN VBD VBN DT JJ NN VBN IN NN IN NN NN CC JJ NNS IN JJ NNS .\nIsrael repeatedly warned earlier this week that it would launch strikes against Palestinian targets to avenge a suicide bombing Monday inside Israel .\tNNP RB VBD RBR DT NN IN PRP MD VB NNS IN JJ NNS TO VB DT NN VBG NNP IN NNP .\nThe Palestinian militant Islamic Jihad organization claimed responsibility for Monday 's blast , which killed five Israelis in Netanya .\tDT JJ NN NNP NNP NN VBD NN IN NNP POS NN , WDT VBD CD NNS IN NNP .\nEarlier this week , Israeli Defense Minister Shaul Mofaz ordered the army to resume its practice of targeting senior militants for assassination .\tRBR DT NN , JJ NN NN NNP NNP VBD DT NN TO VB PRP$ NN IN VBG JJ NNS IN NN .\nThe Israeli military says it has arrested a senior commander of the Palestinian faction Hamas after he spent more than a decade on the run .\tDT JJ NN VBZ PRP VBZ VBN DT JJ NN IN DT JJ NN NNP IN PRP VBD JJR IN DT NN IN DT NN .\nIsraeli troops and the Shin Bet security service caught Maher Uda overnight Saturday near the West Bank town of Ramallah .\tJJ NNS CC DT NNP NNP NN NN VBN NNP NNP JJ NNP IN DT NNP NNP NN IN NNP .\nUda has been on Israel 's most wanted list since the 1990s .\tNNP VBZ VBN IN NNP POS RBS JJ NN IN DT NNS .\nHe is considered a founding member of the Hamas military branch in the West Bank .\tPRP VBZ VBN DT NN NN IN DT NNP JJ NN IN DT NNP NNP .\nIsrael blames him for the deaths of at least 70 Israelis .\tNNP VBZ PRP IN DT NNS IN IN JJS CD NNS .\nHamas has accused Palestinian security forces of helping Israel detain Uda .\tNNP VBZ VBN JJ NN NNS IN VBG NNP VB NNP .\nThe Palestinian Authority has not commented on the case .\tDT JJ NNP VBZ RB VBN IN DT NN .\nThe Palestinian Authority runs the West Bank , while Hamas has control over the Gaza Strip .\tDT JJ NNP VBZ DT NNP NNP , IN NNP VBZ NN IN DT NNP NNP .\nThe Palestinian Islamist group took control of Gaza in 2007 , after battling forces loyal to Palestinian President Mahmoud Abbas .\tDT JJ NN NN VBD NN IN NNP IN CD , IN VBG NNS JJ TO JJ NNP NNP NNP .\nThe United States says it is providing nearly $ 19 million in emergency aid for Ethiopia 's volatile Ogaden region .\tDT NNP NNPS VBZ PRP VBZ VBG RB $ CD CD IN NN NN IN NNP POS JJ NNP NN .\nThe State Department said Friday Washington is working with the Ethiopian government , international partners and non-governmental organizations in responding to concerns over humanitarian conditions in the eastern region .\tDT NNP NNP VBD NNP NNP VBZ VBG IN DT JJ NN , JJ NNS CC JJ NNS IN VBG TO NNS IN JJ NNS IN DT JJ NN .\nThe U.S. says most of the $ 18.7 million will help provide food assistance through the United Nations World Food Program .\tDT NNP VBZ JJS IN DT $ CD CD MD VB VB NN NN IN DT NNP NNP NNP NNP NNP .\nSome funds also will help pay for health , nutrition , and livelihood programs .\tDT NNS RB MD VB VB IN NN , NN , CC NN NNS .\nYears of drought , flooding , civil conflict , disease and food shortages have left residents in Ogaden vulnerable to poverty and famine .\tNNS IN NN , NN , JJ NN , NN CC NN NNS VBP VBN NNS IN NNP NN TO NN CC NN .\nEthiopia 's Ogaden , also known as the Somali region , is an oil-rich , but poor area that is ethnically Somali .\tNNP POS NNP , RB VBN IN DT JJ NN , VBZ DT NN , CC JJ NN WDT VBZ RB JJ .\nIt has long sought autonomy from Addis Ababa .\tPRP VBZ RB VBN NN IN NNP NNP .\nFormer Yugoslav President Slobodan Milosevic has asked The Hague tribunal to subpoena British Prime Minister Tony Blair and former U.S. President Bill Clinton as defense witnesses in his war crimes case .\tJJ JJ NNP NNP NNP VBZ VBN DT NNP NN TO VB JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP IN NN NNS IN PRP$ NN NNS NN .\nMr. Milosevic said he has sent letters to embassies of a number of western countries requesting the testimony .\tNNP NNP VBD PRP VBZ VBN NNS TO NNS IN DT NN IN JJ NNS VBG DT NN .\nBut he said their responses indicate the officials are not willing to appear .\tCC PRP VBD PRP$ NNS VBP DT NNS VBP RB JJ TO VB .\nThe judges instructed Mr. Milosevic to present his request in writing .\tDT NNS VBD NNP NNP TO VB PRP$ NN IN NN .\nHis witness list also includes former U.S , Secretary of State Madeleine Albright , German Chancellor Gerhard Schroeder and German Defense Minister Rudolf Scharping .\tPRP$ NN NN RB VBZ JJ NNP , NNP IN NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP NNP .\nMr. Milosevic 's request came as he resumed conducting his own case after the court reversed an order forcing him to accept appointed counsel because of concerns about his failing health .\tNNP NNP POS NN VBD IN PRP VBD VBG PRP$ JJ NN IN DT NN VBD DT NN VBG PRP TO VB JJ NN IN IN NNS IN PRP$ VBG NN .\nMr. Milosevic faces more than 60 counts of war crimes in the Balkan conflicts of the 1990s .\tNNP NNP VBZ JJR IN CD NNS IN NN NNS IN DT JJ NNS IN DT NNS .\nEthiopia 's foreign ministry says authorities have pardoned nearly 18,000 prisoners to mark the occasion of the country 's third millennium .\tNNP POS JJ NN VBZ NNS VBP VBN RB CD NNS TO VB DT NN IN DT NN POS JJ NN .\nIn a statement Friday the ministry says the federal and regional governments pardoned 17,765 prisoners after reviewing recommendations made by national and regional pardon boards .\tIN DT NN NNP DT NN VBZ DT JJ CC JJ NNS VBN CD NNS IN VBG NNS VBN IN JJ CC JJ NN NNS .\nIt said the pardons were issued September 11 , on the eve of the nation 's new year and millennium celebration .\tPRP VBD DT NNS VBD VBN NNP CD , IN DT NN IN DT NN POS JJ NN CC NN NN .\nEthiopia celebrated the new millennium on September 12 - seven years after the rest of most of the world .\tNNP VBD DT JJ NN IN NNP CD : CD NNS IN DT NN IN JJS IN DT NN .\nEthiopia follows the Julian calendar , instead of the more common Gregorian calendar .\tNNP VBZ DT JJ NN , RB IN DT RBR JJ JJ NN .\nIt is not the first time the nation has issued pardons at the new year .\tPRP VBZ RB DT JJ NN DT NN VBZ VBN NNS IN DT JJ NN .\nLast year , at this time , Ethiopia pardoned more than 14,000 prisoners .\tJJ NN , IN DT NN , NNP VBD JJR IN CD NNS .\nThe ministry suggested more pardons could be coming , saying that the pardon boards in the Afar and Somali regions are still examining applications .\tDT NN VBD JJR NNS MD VB VBG , VBG IN DT NN NNS IN DT NNP CC JJ NNS VBP RB VBG NNS .\nA U.N. official in Afghanistan says the H5N1 strain of bird flu has been found in a fourth Afghan province , and says that indicates the virus is slowly spreading around the country .\tDT NNP NN IN NNP VBZ DT NNP NN IN NN NN VBZ VBN VBN IN DT JJ JJ NN , CC VBZ IN VBZ DT NN VBZ RB VBG IN DT NN .\nThe spokesman for the U.N. 's Food and Agriculture Organization , Assadullah Azhari , says laboratory tests in Italy detected the virus in samples from dead chickens found in Kapisa province , northeast of the capital , Kabul .\tDT NN IN DT NNP POS NNP CC NNP NNP , NNP NNP , VBZ NN NNS IN NNP VBD DT NN IN NNS IN JJ NNS VBN IN NNP NN , NN IN DT NN , NNP .\nThe H5N1 strain of bird flu has already been found in the capital , Kabul , and the eastern provinces of Logar and Nangarhar .\tDT NNP NN IN NN NN VBZ RB VBN VBN IN DT NN , NNP , CC DT JJ NNS IN NNP CC NNP .\nThe U.N. official says there are strong suspicions the virus has reached two other provinces , Laghman and Parwan , but says further testing is needed .\tDT NNP NN VBZ EX VBP JJ NNS DT NN VBZ VBN CD JJ NNS , NNP CC NNP , CC VBZ JJ NN VBZ VBN .\nThe official says the FAO is supporting efforts by Afghan authorities to strengthen nationwide surveillance of suspected bird flu outbreaks .\tDT NN VBZ DT NNP VBZ VBG NNS IN JJ NNS TO VB JJ NN IN JJ NN NN NNS .\nNo human cases of bird flu have been reported in Afghanistan .\tDT JJ NNS IN NN NN VBP VBN VBN IN NNP .\nRepublican presidential candidate John McCain has accused former Defense Secretary Donald Rumsfeld of mismanaging the war in Iraq .\tJJ JJ NN NNP NNP VBZ VBN JJ NNP NNP NNP NNP IN VBG DT NN IN NNP .\nAt a campaign stop Monday in South Carolina , McCain , a supporter of the war in Iraq , said Rumsfeld will be remembered as one of the worst defense secretaries in history .\tIN DT NN NN NNP IN NNP NNP , NNP , DT NN IN DT NN IN NNP , VBD NNP MD VB VBN IN CD IN DT JJS NN NNS IN NN .\nMcCain said the United States has paid a heavy price for the mismanagement of the war .\tNNP VBD DT NNP NNPS VBZ VBN DT JJ NN IN DT NN IN DT NN .\nMcCain is a member of President Bush 's Republican party .\tNNP VBZ DT NN IN NNP NNP POS JJ NN .\nHe is seeking the party 's nomination to run for president in 2008 .\tPRP VBZ VBG DT NN POS NN TO VB IN NN IN CD .\nAt Rumsfeld 's farewell ceremony in December , President Bush praised Rumsfeld 's strategic vision , deep devotion to the military , and love for the United States .\tIN NNP POS JJ NN IN NNP , NNP NNP VBD NNP POS JJ NN , JJ NN TO DT NN , CC NN IN DT NNP NNPS .\nAt the same event , Vice President Dick Cheney said Rumsfeld was the finest defense secretary the nation ever had .\tIN DT JJ NN , NNP NNP NNP NNP VBD NNP VBD DT JJS NN NN DT NN RB VBD .\nAustralian Prime Minister John Howard says a hasty pullout of foreign troops from Iraq would represent a defeat for the West .\tJJ NNP NNP NNP NNP VBZ DT JJ NN IN JJ NNS IN NNP MD VB DT NN IN DT NNP .\nIn an interview on Australian television , Mr. Howard says such a defeat would undermine Australia 's security and the authority of the United States as a world superpower .\tIN DT NN IN JJ NN , NNP NNP VBZ PDT DT NN MD VB NNP POS NN CC DT NN IN DT NNP NNPS IN DT NN NN .\nHe says anyone who believes withdrawing from Iraq will strengthen the West ' has taken leave of their senses ' .\tPRP VBZ DT WP VBZ VBG IN NNP MD VB DT NN `` VBZ VBN NN IN PRP$ NNS `` .\nAustralia has about 1,300 troops in Iraq as part of the U.S.-led coalition .\tNNP VBZ IN CD NNS IN NNP IN NN IN DT JJ NN .\nMr. Howard warned against pulling Australian troops out while other coalition forces remain .\tNNP NNP VBD IN VBG JJ NNS IN IN JJ NN NNS VBP .\nHe says doing so would cause long-term damage to Australia 's alliance with the U.S. Mr. Howard reiterated his support for the U.S. position that foreign forces should only leave Iraq when the Iraqis can look after security themselves .\tPRP VBZ VBG RB MD VB JJ NN TO NNP POS NN IN DT NNP NNP NNP VBD PRP$ NN IN DT NNP NN IN JJ NNS MD RB VB NNP WRB DT NNS MD VB IN NN PRP .\nFormer U.S. Secretary of State Colin Powell has criticized the Hurricane Katrina relief effort .\tJJ NNP NNP IN NNP NNP NNP VBZ VBN DT NNP NNP NN NN .\nIn a taped ABC television interview to air late Friday , Mr. Powell expressed his opinion that ' there have been a lot of failures at a lot of levels - [ of ] local , state and federal [ government ] . '\tIN DT VBN NNP NN NN TO VB JJ NNP , NNP NNP VBD PRP$ NN IN `` EX VBP VBN DT NN IN NNS IN DT NN IN NNS IN LRB IN RRB JJ , NN CC JJ LRB NN RRB . ``\nThe former top U.S. diplomat said ' there was more than enough warning over time about the dangers to New Orleans , ' but not enough was done .\tDT JJ JJ NNP NN VBD `` EX VBD JJR IN JJ NN IN NN IN DT NNS TO NNP NNP , `` CC RB RB VBD VBN .\nMr. Powell , who was the highest ranking black official during President Bush 's first term , says he does not believe race was a factor in the slow response to the hurricane .\tNNP NNP , WP VBD DT JJS JJ JJ NN IN NNP NNP POS JJ NN , VBZ PRP VBZ RB VB NN VBD DT NN IN DT JJ NN TO DT NN .\nMr. Powell says many of those unable to evacuate New Orleans before Katrina struck were trapped by poverty , which disproportionately affects blacks .\tNNP NNP VBZ NN IN DT JJ TO VB NNP NNP IN NNP VBD VBD VBN IN NN , WDT RB VBZ NNS .\nNew studies by British and French researchers show quick treatment for minor strokes can dramatically cut the risk of major strokes later .\tJJ NNS IN JJ CC JJ NNS VBP JJ NN IN JJ NNS MD RB VB DT NN IN JJ NNS RB .\nThe research , published in the journals Lancetand Lancet Neurology , found that patients treated within 24 hours for so-called mini-strokes cut the later risk of a major stroke by about 80 percent .\tDT NN , VBN IN DT NNS NNP NNP NNP , VBD IN NNS VBD IN CD NNS IN JJ NNS VBD DT JJ NN IN DT JJ NN IN IN CD NN .\nOxford researcher Peter Rothwell says the vast majority of British stroke patients wait several weeks before reporting mini-stroke symptoms to health care professionals .\tNNP NN NNP NNP VBZ DT JJ NN IN JJ NN NNS VBP JJ NNS IN VBG NN NNS IN NN NN NNS .\nThe second study by French researchers also found that the early , aggressive treatment of mini-strokes brought similar benefits .\tDT JJ NN IN JJ NNS RB VBD IN DT JJ , JJ NN IN NNS VBD JJ NNS .\nStrokes occur when blood flow to the brain is blocked .\tNNS VBP WRB NN NN TO DT NN VBZ VBN .\nSuch events kill brain tissue and are one of the leading causes of death or permanent disability worldwide .\tJJ NNS VBP NN NN CC VBP CD IN DT VBG NNS IN NN CC JJ NN NN .\nSymptoms include facial numbness , slurred speech , partial paralysis and sudden headaches .\tNNS VBP JJ NN , VBD NN , JJ NN CC JJ NNS .\nTreatments include blood thinning drugs and anti-cholesterol medications .\tNNS VBP NN VBG NNS CC JJ NNS .\nCrude oil prices fell Wednesday after a U.S. government report showed an increase in inventories , reflecting decreased demand .\tJJ NN NNS VBD NNP IN DT NNP NN NN VBD DT NN IN NNS , VBG JJ NN .\nThe price of a barrel of oil for future delivery fell 35 cents [ about one percent ] to $ 38.68 a barrel during trading in New York .\tDT NN IN DT NN IN NN IN JJ NN VBD CD NNS LRB IN CD NN RRB IN $ CD DT NN IN NN IN NNP NNP .\nThe fall in prices followed a U.S. Energy Department report showing crude oil supplies in the U.S. rose last week by 5,49,000 barrels , or about two-tenths of one percent .\tDT NN IN NNS VBD DT NNP NNP NNP NN VBG JJ NN NNS IN DT NNP VBD JJ NN IN CD NNS , CC IN NNS IN CD NN .\nIraqi police say a U.S. airstrike on a home in northern Iraq late Monday killed a number of people from the same family , but there are conflicting reports about the incident .\tJJ NNS VBP DT NNP NN IN DT NN IN JJ NNP JJ NNP VBD DT NN IN NNS IN DT JJ NN , CC EX VBP VBG NNS IN DT NN .\nResidents in the town of Bayji say at least seven bodies were pulled from the rubble .\tNNS IN DT NN IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN .\nLocals say there may be several more people inside .\tNNS VBP EX MD VB JJ JJR NNS RB .\nU.S. military officials have not commented on the Iraqi police report .\tNNP JJ NNS VBP RB VBN IN DT JJ NN NN .\nBut the military issued a statement saying three men who were observed planting roadside bombs in Bayji later went to a nearby building , which was fired on by U.S. aircraft using precision-guided munitions .\tCC DT JJ VBD DT NN VBG CD NNS WP VBD VBN VBG NN NNS IN NNP RB VBD TO DT JJ NN , WDT VBD VBN IN IN NNP NN VBG JJ NNS .\nSeparately , Iraq 's election commission and international observers are now in Baghdad to review fraud allegations from last month 's parliamentary vote .\tRB , NNP POS NN NN CC JJ NNS VBP RB IN NNP TO VB NN NNS IN JJ NN POS JJ NN .\nFinal election results are not expected until after the visiting experts complete their work .\tJJ NN NNS VBP RB VBN IN IN DT VBG NNS VB PRP$ NN .\nLebanon 's pro-Syrian President Emile Lahoud visited the home of slain former prime minister Rafik Hariri Friday , to express his condolences to the late politician 's family .\tNNP POS JJ NNP NNP NNP VBD DT NN IN NN JJ JJ NN NNP NNP NNP , TO VB PRP$ NNS TO DT JJ NN POS NN .\nMr. Lahoud made no public comments after the visit .\tNNP NNP VBD DT JJ NNS IN DT NN .\nMr. Lahoud and Cabinet members were told by Hariri 's family not to attend Wednesday 's funeral in Beirut , which attracted more than 2,00,000 mourners .\tNNP NNP CC NNP NNS VBD VBN IN NNP POS NN RB TO VB NNP POS NN IN NNP , WDT VBD JJR IN CD NNS .\nThe Hariri family and Lebanese opposition politicians accuse Syria , the main power broker in Lebanon , of involvement in Monday 's car bomb attack that killed Mr. Hariri .\tDT NNP NN CC JJ NN NNS VBP NNP , DT JJ NN NN IN NNP , IN NN IN NNP POS NN NN NN WDT VBD NNP NNP .\nDamascus has denied any role in the assassination .\tNNP VBZ VBN DT NN IN DT NN .\nMeanwhile , Lebanese officials say they are searching for several men who flew from Beirut to Australia shortly after the attack .\tRB , JJ NNS VBP PRP VBP VBG IN JJ NNS WP VBD IN NNP TO NNP RB IN DT NN .\nThe French News Agency quotes Lebanon 's Justice Minister as saying traces of explosives were found on their aircraft 's seats .\tDT NNP NNP NNP VBZ NNP POS NNP NNP IN VBG NNS IN NNS VBD VBN IN PRP$ NN POS NNS .\nOil prices went as high as $ 103.05 a barrel in Friday 's trading - the highest price ever recorded - before easing slightly .\tNN NNS VBD RB JJ IN $ CD DT NN IN NNP POS NN IN DT JJS NN RB VBN : IN VBG RB .\nIt is the latest in a string of record-highs set in recent days as a weakening U.S. dollar and the threat of inflation makes tangible assets like oil and other commodities more attractive to investors .\tPRP VBZ DT JJS IN DT NN IN NNS VBN IN JJ NNS IN DT NN NNP NN CC DT NN IN NN VBZ JJ NNS IN NN CC JJ NNS RBR JJ TO NNS .\nSpeculators interpreted recent comments by the head of the U.S. central bank Ben Bernanke as pointing to further interest rate cuts .\tNNS VBD JJ NNS IN DT NN IN DT NNP JJ NN NNP NNP IN VBG TO JJ NN NN NNS .\nInterest rate reductions are intended to boost U.S. economic growth , but can also further weaken the dollar .\tNN NN NNS VBP VBN TO VB NNP JJ NN , CC MD RB RB VB DT NN .\nMembers of the Organization of Petroleum Exporting Countries are scheduled to consider oil supply and price policies at a meeting on March 5 .\tNNS IN DT NNP IN NNP NNP NNPS VBP VBN TO VB NN NN CC NN NNS IN DT NN IN NNP CD .\nThe nations making up the OPEC cartel pump about 40 percent of the world 's oil .\tDT NNS VBG RP DT NNP NN NN IN CD NN IN DT NN POS NN .\nHaiti 's interim Prime Minister Gerard Latortue says he has no plans to send a special envoy to South Africa to meet with ousted Haitian President Jean-Bertrand Aristide .\tNNP POS NNP NNP NNP NNP NNP VBZ PRP VBZ DT NNS TO VB DT JJ NN TO NNP NNP TO VB IN JJ JJ NNP NNP NNP .\nEarlier reports said Mr. Latortue was sending a representative to talk with Mr. Aristide and South African President Thabo Mbeki .\tRBR NNS VBD NNP NNP VBD VBG DT NN TO VB IN NNP NNP CC NNP NNP NNP NNP NNP .\nMr. Aristide has been living in exile in South Africa since he was forced from power last February .\tNNP NNP VBZ VBN VBG IN NN IN NNP NNP IN PRP VBD VBN IN NN JJ NNP .\nThe reports said the envoy would try to convince Mr. Aristide to persuade his followers to stop fighting his foes and help stabilize Haiti before elections planned this year .\tDT NNS VBD DT NN MD VB TO VB NNP NNP TO VB PRP$ NNS TO VB VBG PRP$ NNS CC VB VB NNP IN NNS VBN DT NN .\nMore than 200 people have died in the violence since September .\tJJR IN CD NNS VBP VBN IN DT NN IN NNP .\nUnited Nations Secretary-General Kofi Annan has warned governments around the world not to ignore international agreements prohibiting torture .\tNNP NNP NNP NNP NNP VBZ VBN NNS IN DT NN RB TO VB JJ NNS VBG NN .\nIn a statement issued for International Human Rights Day Saturday , Mr. Annan said there has been a disturbing trend of nations claiming exceptions to prohibitions on torture , based on their own national security perceptions .\tIN DT NN VBN IN NNP NNP NNP NNP NNP , NNP NNP VBD EX VBZ VBN DT JJ NN IN NNS VBG NNS TO NNS IN NN , VBN IN PRP$ JJ JJ NN NNS .\nThe U.N. chief said torture can never be a tool to fight terror , but rather is an instrument of terror .\tDT NNP NN VBD NN MD RB VB DT NN TO VB NN , CC RB VBZ DT NN IN NN .\nIn a separate statement , 33 U.N. human rights experts expressed alarm at attempts by many countries to circumvent international human rights laws by giving new names to practices such as torture .\tIN DT JJ NN , CD NNP JJ NNS NNS VBD NN IN NNS IN JJ NNS TO JJ JJ JJ NNS NNS IN VBG JJ NNS TO NNS JJ IN NN .\nThe experts called on governments to respect human rights standards and to not ignore them when they become , in the statement 's wording , ' inconvenient . '\tDT NNS VBD IN NNS TO VB JJ NNS NNS CC TO RB VB PRP WRB PRP VBP , IN DT NN POS NN , `` JJ . ``\nMeteorologists say the storm known as Rita has strengthened into a category 1 hurricane .\tNNS VBP DT NN VBN IN NNP VBZ VBN IN DT NN CD NN .\nThe U.S. National Hurricane Center says Rita is packing winds of about 120 kilometers per hour as it moves west , past the Bahamas and toward the Florida Keys .\tDT NNP NNP NNP NNP VBZ NNP VBZ VBG NNS IN IN CD NNS IN NN IN PRP VBZ NN , IN DT NNPS CC IN DT NNP NNPS .\nThe storm reportedly caused little damage in the Bahamas .\tDT NN RB VBD JJ NN IN DT NNPS .\nHowever , thousands of tourists and residents have fled the Keys , a low-lying chain of islands off Florida 's southern coast .\tRB , NNS IN NNS CC NNS VBP VBN DT NNP , DT JJ NN IN NNS IN NNP POS JJ NN .\nHurricane warnings remain in effect for the Keys and parts of western Cuba , including Havana .\tNNP NNS VBP IN NN IN DT NNS CC NNS IN JJ NNP , VBG NNP .\nForecasters expect Rita to enter the Gulf of Mexico by Wednesday , and say it is possible that Rita will strike areas along the U.S. Gulf Coast devastated three weeks ago by Hurricane Katrina .\tNNS VBP NNP TO VB DT NNP IN NNP IN NNP , CC VB PRP VBZ JJ IN NNP MD VB NNS IN DT NNP NNP NNP VBD CD NNS RB IN NNP NNP .\nThe Palestinian militant group , Hamas , says Syria has detained four Arabs allegedly recruited by Israel to kill Damascus-based Hamas political leader Khaled Meshaal .\tDT JJ JJ NN , NNP , VBZ NNP VBZ VBN CD NNS RB VBN IN NNP TO VB JJ NNP JJ NN NNP NNP .\nSpeaking Tuesday in Lebanon , a Hamas spokesman said the four detainees are members of an Arab security service from an unidentified Middle East country .\tVBG NNP IN NNP , DT NNP NN VBD DT CD NNS VBP NNS IN DT JJ NN NN IN DT JJ NNP NNP NN .\nThe Syrian government has not commented .\tDT JJ NN VBZ RB VBN .\nKhaled Meshaal is widely viewed as Hamas ' overall leader , since Israel assassinated two other top Hamas figures earlier this year .\tNNP NNP VBZ RB VBN IN NNP POS JJ NN , IN NNP VBD CD JJ JJ NNP NNS RBR DT NN .\nThe latest Hamas charges come more than a month after Israel promised to restart an assassination campaign targeting Palestinian militants at home and abroad .\tDT JJS NNP NNS VBP JJR IN DT NN IN NNP VBD TO VB DT NN NN VBG JJ NNS IN NN CC RB .\nIsrael announced the new assassination push days after Hamas suicide bombers struck two buses in southern Israel , killing 16 people .\tNNP VBD DT JJ NN NN NNS IN NNP NN NNS VBD CD NNS IN JJ NNP , VBG CD NNS .\nIran 's chief nuclear negotiator says Tehran has only agreed to a temporary freeze of some nuclear activities , and will never completely give up the right to produce nuclear fuel for peaceful purposes .\tNNP POS JJ JJ NN VBZ NNP VBZ RB VBN TO DT JJ NN IN DT JJ NNS , CC MD RB RB VB RP DT NN TO VB JJ NN IN JJ NNS .\nHassan Rohani told reporters Tuesday in Tehran that Iran will only suspend uranium enrichment for the length of international negotiations on the country 's nuclear program , which he says should take months , not years .\tNNP NNP VBD NNS NNP IN NNP IN NNP MD RB VB NN NN IN DT NN IN JJ NNS IN DT NN POS JJ NN , WDT PRP VBZ MD VB NNS , RB NNS .\nA U.S. State Department spokesman Richard Boucher said Monday the world must ' remain vigilant ' about Iran 's nuclear ambitions .\tDT NNP NNP NNP NN NNP NNP VBD NNP DT NN MD `` VBP JJ `` IN NNP POS JJ NNS .\nHe said if Iran fails to uphold the terms of Monday 's European-brokered resolution , the International Atomic Energy Agency should immediately refer Tehran to the U.N. Security Council for the possible imposition of sanctions .\tPRP VBD IN NNP VBZ TO VB DT NNS IN NNP POS JJ NN , DT NNP NNP NNP NNP MD RB VB NNP TO DT NNP NNP NNP IN DT JJ NN IN NNS .\nWashington has accused Tehran of violating the Nuclear Non-Proliferation Treaty with a secret nuclear weapons development program .\tNNP VBZ VBN NNP IN VBG DT NNP NNP NNP IN DT JJ JJ NNS NN NN .\nIran has repeatedly denied the charges .\tNNP VBZ RB VBN DT NNS .\nRussian police confirm that a shrapnel-packed bomb exploded Sunday in a McDonald 's restaurant in St. Petersburg , injuring six people .\tJJ NNS VBP IN DT JJ NN VBD NNP IN DT NNP POS NN IN NNP NNP , VBG CD NNS .\nThe blast shattered windows and caused the ceiling to collapse .\tDT NN VBD NNS CC VBD DT NN TO NN .\nNone of the injuries was serious .\tNN IN DT NNS VBD JJ .\nInvestigators say the bomb was left under a table at the fast food restaurant along Nevsky Prospekt , St. Petersburg 's main street .\tNNS VBP DT NN VBD VBN IN DT NN IN DT JJ NN NN IN NNP NNP , NNP NNP POS JJ NN .\nAuthorities have not said if the attack was terrorist-related .\tNNS VBP RB VBN IN DT NN VBD JJ .\nA car bombing of a Moscow McDonald 's by Muslim extremists in 2002 killed one person and wounded seven .\tDT NN NN IN DT NNP NNP POS IN NNP NNS IN CD VBD CD NN CC VBD CD .\nThe U.S. military has confirmed that it shot down an unmanned Iranian aircraft over Iraq last month .\tDT NNP NN VBZ VBN IN PRP VBD RP DT JJ JJ NN IN NNP JJ NN .\nA military spokesman Monday said U.S. forces tracked the drone in Iraqi airspace for one hour and ten minutes before shooting it down , about 100 kilometers north of Baghdad .\tDT JJ NN NNP VBD NNP NNS VBD DT NN IN JJ NN IN CD NN CC CD NNS IN VBG PRP RP , IN CD NNS RB IN NNP .\nThe spokesman added that ' this was not an accident on the part of the Iranians . '\tDT NN VBD IN `` DT VBD RB DT NN IN DT NN IN DT NNS . ``\nThe incident was first reported by Wired.com earlier this month but , at the time , the U.S. military declined comment .\tDT NN VBD JJ VBN IN NNP RBR DT NN CC , IN DT NN , DT NNP NN VBD NN .\nWashington has previously accused Iran of meddling in the affairs of neighboring Iraq , where the U.S. has had troops since it invaded the country in 2003 .\tNNP VBZ RB VBN NNP IN VBG IN DT NNS IN VBG NNP , WRB DT NNP VBZ VBN NNS IN PRP VBD DT NN IN CD .\nThe Palestinian militant group Hamas Thursday banned men from working in hair salons or beauty parlors that cater to women , part of a campaign to enforce a stricter interpretation of Muslim law .\tDT JJ JJ NN NNP NNP VBD NNS IN VBG IN NN NNS CC NN NNS WDT VBP TO NNS , NN IN DT NN TO VB DT JJR NN IN NNP NN .\nHamas officials said any man who continues to cut women 's hair will be arrested and tried in court .\tNNP NNS VBD DT NN WP VBZ TO VB NNS POS NN MD VB VBN CC VBN IN NN .\nIslamic extremists in Gaza have been waging a campaign against cafes and shops that sell or play music deemed unsuitable , as well as against Christian institutions .\tJJ NNS IN NNP VBP VBN VBG DT NN IN NNS CC NNS WDT VBP CC VBP NN VBN JJ , RB RB IN IN JJ NNS .\nThey have called on Hamas to impose a more fundamentalist brand of Islam .\tPRP VBP VBN IN NNP TO VB DT RBR JJ NN IN NNP .\nOne hairdresser who is impacted by the ban - Barakat al-Ghoul - told the Associated Press he fears he will no longer be able to make a living .\tCD NN WP VBZ VBN IN DT NN IN NNP NNP : VBD DT NNP NNP PRP VBZ PRP MD RB RB VB JJ TO VB DT NN .\nAl-Ghoul said he had been cutting women 's hair for 26 years .\tNNP VBD PRP VBD VBN VBG NNS POS NN IN CD NNS .\nHe insisted he did not violate Islamic law because he only cuts hair and does not do makeup .\tPRP VBD PRP VBD RB VB JJ NN IN PRP RB VBZ NN CC VBZ RB VB NN .\nThe head of the U.N. nulcear agency says Iran has agreed to allow inspectors access to a military site that the United States alleges is linked to a secret nuclear weapons program .\tDT NN IN DT NNP NN NN VBZ NNP VBZ VBN TO VB NNS NN TO DT JJ NN IN DT NNP NNPS VBZ VBZ VBN TO DT JJ JJ NNS NN .\nMohamed ElBaradei , the chief of the International Atomic Energy Agency , said in Vienna Wednesday U.N. inspectors could be expected to visit the Parchin military complex ' within days or weeks . '\tNNP NNP , DT NN IN DT NNP NNP NNP NNP , VBD IN NNP NNP NNP NNS MD VB VBN TO VB DT NNP JJ NN `` IN NNS CC NNS . ``\nThe IAEA has been pressing Iran for months for access to the military site , located about 30 kilometers southeast of Tehran .\tDT NNP VBZ VBN VBG NNP IN NNS IN NN TO DT JJ NN , VBN IN CD NNS NN IN NNP .\nThe United States says it suspects the Iranian military may be involved in nuclear arms research at the specially secured complex .\tDT NNP NNPS VBZ PRP VBZ DT JJ NN MD VB VBN IN JJ NNS NN IN DT RB VBN NN .\nIran insists that its nuclear activity is for peaceful purposes and that its military is not involved .\tNNP VBZ IN PRP$ JJ NN VBZ IN JJ NNS CC IN PRP$ NN VBZ RB VBN .\nItaly says an Italian photographer kidnapped in Afghanistan last month has been freed .\tNNP VBZ DT JJ NN VBN IN NNP JJ NN VBZ VBN VBN .\nItaly 's Defense Ministry said Gabriele Torsello was released Friday .\tNNP POS NNP NNP VBD NNP NNP VBD VBN NNP .\nIt gave no details .\tPRP VBD DT NNS .\nTorsello and his interpreter disappeared between October 12 and 14 .\tNNP CC PRP$ NN VBD IN NNP CD CC CD .\nTorsello 's kidnappers had said they would kill him if Italy 's 18,00 troops were not withdrawn from Afghanistan .\tNNP POS NNS VBD VBN PRP MD VB PRP IN NNP POS CD NNS VBD RB VBN IN NNP .\nIn western Herat province , suspected militants with machine guns killed six policemen on patrol .\tIN JJ NNP NN , VBN NNS IN NN NNS VBD CD NNS IN NN .\nThe district police chief was among those killed , and three police were wounded .\tDT NN NN NN VBD IN DT VBN , CC CD NNS VBD VBN .\nA U.S. newspaper reports that Washington is asking China to pressure North Korea on its alleged nuclear weapons program .\tDT NNP NN VBZ IN NNP VBZ VBG NNP TO VB NNP NNP IN PRP$ JJ JJ NNS NN .\nA story in Wednesday 's New York Times says two members of President Bush 's National Security Council recently met with Chinese President Hu Jintao in Beijing .\tDT NN IN NNP POS NNP NNP NNP VBZ CD NNS IN NNP NNP POS NNP NNP NNP RB VBD IN JJ NNP NNP NNP IN NNP .\nThe report says the officials discussed new evidence that Pyongyang may have sold to Libya a form of uranium used in nuclear weapons .\tDT NN VBZ DT NNS VBD JJ NN IN NNP MD VB VBN TO NNP DT NN IN NN VBN IN JJ NNS .\nThe Times quotes Asian officials who say China has promised to send a delegation to North Korea .\tDT NNP VBZ JJ NNS WP VBP NNP VBZ VBN TO VB DT NN TO NNP NNP .\nBut the officials say China also advised President Bush against making the kind of public statements about the North Korean situation as he did about Iraq 's alleged threat before the U.S.-led invasion in 2003 .\tCC DT NNS VBP NNP RB VBD NNP NNP IN VBG DT NN IN JJ NNS IN DT JJ JJ NN IN PRP VBD IN NNP POS JJ NN IN DT JJ NN IN CD .\nIran 's President Mahmoud Ahmadinejad has ordered state-run broadcasters to stop playing Western and so-called ' indecent ' music .\tNNP POS NNP NNP NNP VBZ VBN JJ NNS TO VB VBG JJ CC JJ `` JJ `` NN .\nIranian media reported Monday that he asked the agency in charge of television and radio broadcasts , the Islamic Republic of Iran Broadcasting , to implement the change within six months .\tJJ NNS VBD NNP IN PRP VBD DT NN IN NN IN NN CC NN NNS , DT NNP NNP IN NNP NNP , TO VB DT NN IN CD NNS .\nMr. Ahmadinejad also called for the government to supervise the content of foreign-made television shows and films .\tNNP NNP RB VBD IN DT NN TO VB DT NN IN JJ NN NNS CC NNS .\nMr. Ahmadinejad was elected earlier this year on a hard-line platform that called for a return to conservative principles .\tNNP NNP VBD VBN RBR DT NN IN DT JJ NN WDT VBD IN DT NN TO JJ NNS .\nMusic performances and education in Iran had been sharply limited after Islamic clerics seized power in Iran in 1979 .\tJJ NNS CC NN IN NNP VBD VBN RB VBN IN NNP NNS VBD NN IN NNP IN CD .\nMany of those limits have been relaxed in recent years .\tNN IN DT NNS VBP VBN VBN IN JJ NNS .\nAustralia 's foreign minister has met with the Solomon Islands ' newly elected prime minister , Snyder Rini , following violent protests on the island nation this week that were sparked by his appointment .\tNNP POS JJ NN VBZ VBN IN DT NNP NNP POS RB VBN JJ NN , NNP NNP , VBG JJ NNS IN DT NN NN DT NN WDT VBD VBN IN PRP$ NN .\nSpeaking Saturday in the capital , Honiara , visiting Foreign Minister Alexander Downer said he told Mr. Rini that economic reform is going to be central to the survival of the country .\tVBG NNP IN DT NN , NNP , VBG NNP NNP NNP NNP VBD PRP VBD NNP NNP IN JJ NN VBZ VBG TO VB JJ TO DT NN IN DT NN .\nDowner said he also addressed corruption issues with Mr. Rini .\tNNP VBD PRP RB VBD NN NNS IN NNP NNP .\nRiots erupted Tuesday in Honiara after Mr. Rini was appointed prime minister .\tNNS VBD NNP IN NNP IN NNP NNP VBD VBN JJ NN .\nOpponents accuse him of being under the influence of ethnic-Chinese businessmen .\tNNS VBP PRP IN VBG IN DT NN IN JJ NNS .\nMr. Rini denies the allegations and has refused demands that he resign .\tNNP NNP VBZ DT NNS CC VBZ VBN NNS IN PRP VB .\nHoniara is reported to be quiet Saturday , with Australian troops patrolling the streets .\tNNP VBZ VBN TO VB JJ NNP , IN JJ NNS VBG DT NNS .\nFriday , Australia said it will send 110 additional troops to the Solomon Islands .\tNNP , NNP VBD PRP MD VB CD JJ NNS TO DT NNP NNP .\nAfghan authorities say NATO and Afghan troops have retrieved the flight recorder from the wreckage of an Afghan airliner , ten days after the plane crashed into a mountain near Kabul .\tJJ NNS VBP NNP CC JJ NNS VBP VBN DT NN NN IN DT NN IN DT JJ NN , JJ NNS IN DT NN VBD IN DT NN IN NNP .\nAn Afghan Defense Ministry spokesman says the flight recorder , also known as ' black box , ' is now in the hands of the investigating commission .\tDT JJ NNP NNP NN VBZ DT NN NN , RB VBN IN `` JJ NN , `` VBZ RB IN DT NNS IN DT VBG NN .\nA break in bad winter weather earlier Sunday allowed troops and investigators to reach the crash site for the first time since the Boeing 737 hit the mountain during a blizzard .\tDT NN IN JJ NN NN JJR NNP VBD NNS CC NNS TO VB DT NN NN IN DT JJ NN IN DT NNP CD VBD DT NN IN DT NN .\nNone of the 104 people on board survived the crash , making it Afghanistan 's worst civil aviation disaster .\tNN IN DT CD NNS IN NN VBD DT NN , VBG PRP NNP POS JJS JJ NN NN .\nAuthorities estimate the recovery of the remains will take weeks .\tNNS VBP DT NN IN DT NNS MD VB NNS .\nMexican police say gunmen shot 13 recovering drug addicts inside a rehabilitation center , killing at least 10 of them .\tJJ NNS VBP NNS VBD CD VBG NN NNS IN DT NN NN , VBG IN JJS CD IN PRP .\nWitnesses say the armed men burst into the center , lined up the clients and opened fire on them .\tNNS VBP DT JJ NNS VBD IN DT NN , VBD RP DT NNS CC VBD NN IN PRP .\nThe attack took place Sunday in the city of Tijuana , near the U.S. border .\tDT NN VBD NN NNP IN DT NN IN NNP , IN DT NNP NN .\nPolice did not immediately identify a motive .\tNNS VBD RB RB VB DT NN .\nBut authorities suspect the killings may be linked to drug gangs .\tCC NNS VBP DT NNS MD VB VBN TO NN NNS .\nMexican security forces have been engaged in a brutal struggle against the country 's violent drug cartels since President Felipe Calderon took office in 2006 .\tJJ NN NNS VBP VBN VBN IN DT JJ NN IN DT NN POS JJ NN NNS IN NNP NNP NNP VBD NN IN CD .\nNearly 30,000 people have been killed since the campaign began .\tRB CD NNS VBP VBN VBN IN DT NN VBD .\nLast week , Mexican security forces seized 105 tons of marijuana in Tijuana , the largest Mexican drug bust in recent years .\tJJ NN , JJ NN NNS VBN CD NNS IN NN IN NNP , DT JJS JJ NN NN IN JJ NNS .\nThe United Nations ' top humanitarian official is in Somalia to urge the interim government to allow humanitarian aid to reach the country 's people .\tDT NNP NNPS POS JJ JJ NN VBZ IN NNP TO VB DT JJ NN TO VB JJ NN TO VB DT NN POS NNS .\nJohn Holmes , who arrived in the Somali capital of Mogadishu Saturday , is the highest-ranking U.N. official to visit the Horn of Africa nation in more than a decade .\tNNP NNP , WP VBD IN DT JJ NN IN NNP NNP , VBZ DT JJ NNP NN TO VB DT NNP IN NNP NN IN JJR IN DT NN .\nEarlier Saturday , four people were killed when a bomb exploded nearly 400 meters from the U.N. compound in southern Mogadishu .\tRBR NNP , CD NNS VBD VBN WRB DT NN VBD RB CD NNS IN DT NNP NN IN JJ NNP .\nThe trip by Holmes is taking place in the aftermath of heavy fighting between allied Somali-Ethiopian forces and Islamists in Mogadishu that killed hundreds of Somalis and forced up to 4,00,000 others to escape to makeshift camps on the city 's outskirts .\tDT NN IN NNP VBZ VBG NN IN DT NN IN JJ NN IN JJ JJ NNS CC NNS IN NNP WDT VBD NNS IN NNS CC VBD RP TO CD NNS TO VB TO VB NNS IN DT NN POS NNS .\nMany of them are living in squalid conditions , with little food , water or shelter .\tNN IN PRP VBP VBG IN JJ NNS , IN JJ NN , NN CC NN .\nUnited Nations Secretary-General Kofi Annan is calling on NATO and the European Union to do more to help end violence in Sudan 's Darfur region .\tNNP NNP NNP NNP NNP VBZ VBG IN NNP CC DT NNP NNP TO VB JJR TO VB VB NN IN NNP POS NNP NN .\nSpeaking at the Munich Security Conference , Mr. Annan said NATO and the EU have the capacity to protect the people who are dying every day in western Sudan .\tVBG IN DT NNP NNP NNP , NNP NNP VBD NNP CC DT NNP VBP DT NN TO VB DT NNS WP VBP VBG DT NN IN JJ NNP .\nHe said more international forces are needed to help stop fighting and to provide for secure humanitarian operations .\tPRP VBD RBR JJ NNS VBP VBN TO VB VB VBG CC TO VB IN JJ JJ NNS .\nMr. Annan says an African Union mission of about 3,000 troops and observers in the region can not do the job alone .\tNNP NNP VBZ DT NNP NNP NN IN IN CD NNS CC NNS IN DT NN MD RB VB DT NN RB .\nEarlier this month , a U.N. panel found that civilians in Darfur have been brutalized in a campaign that may amount to crimes against humanity .\tRBR DT NN , DT NNP NN VBD IN NNS IN NNP VBP VBN VBN IN DT NN WDT MD VB TO NNS IN NN .\nSudanese troops and pro-government forces have been fighting rebels , who launched an uprising two years ago .\tJJ NNS CC JJ NNS VBP VBN VBG NNS , WP VBD DT NN CD NNS RB .\nA leading international human rights group says it is ' deeply concerned ' for the safety of Iranian Nobel Laureate Shirin Ebadi , who has refused an order to appear before Iran 's hard-line Revolutionary Court .\tDT VBG JJ JJ NNS NN VBZ PRP VBZ `` RB JJ `` IN DT NN IN JJ NNP NNP NNP NNP , WP VBZ VBN DT NN TO VB IN NNP POS JJ NNP NNP .\nHuman Rights Watch called the court summons a ' blatant attempt ' by Iran 's government to ' silence one of the few remaining voices of human rights ' in the Islamic Republic .\tNNP NNP NNP VBD DT NN VBZ DT `` JJ NN `` IN NNP POS NN TO `` NN CD IN DT JJ VBG NNS IN JJ NNS `` IN DT NNP NNP .\nIn Tehran Sunday , a Foreign Ministry spokesman said the human rights lawyer was the subject of a private complaint .\tIN NNP NNP , DT NNP NNP NN VBD DT JJ NNS NN VBD DT NN IN DT JJ NN .\nHowever , Ms. Ebadi , in comments to Reuters news agency , cast doubt on the use of the Revolutionary Court for such complaints , noting that the tribunal handles national security matters .\tRB , NNP NNP , IN NNS TO NNP NN NN , VBD NN IN DT NN IN DT NNP NNP IN JJ NNS , VBG IN DT NN VBZ JJ NN NNS .\nSaturday , Ms. Ebadi said she would not honor the court summons , because it failed to state the charges against her .\tNNP , NNP NNP VBD PRP MD RB VB DT NN NNS , IN PRP VBD TO VB DT NNS IN PRP .\nFailure to appear could land her in prison .\tNN TO VB MD VB PRP IN NN .\nA U.S. commission has voted to shut down five Army bases , as part of the Pentagon 's plan to restructure hundreds of domestic military installations .\tDT NNP NN VBZ VBN TO VB RP CD NNP NNS , IN NN IN DT NNP POS NN TO VB NNS IN JJ JJ NNS .\nThe independent Base Closure and Realignment Commission Wednesday approved the closure of facilities in Georgia , New Jersey and Virginia as commissioners began their final deliberations .\tDT JJ NNP NNP CC NNP NNP NNP VBD DT NN IN NNS IN NNP , NNP NNP CC NNP IN NNS VBD PRP$ JJ NNS .\nFort McPherson in Georgia was one of the approved closures .\tNNP NNP IN NNP VBD CD IN DT VBN NNS .\nIn May , the Pentagon recommended the closure of military installations from Maine to Hawaii .\tIN NNP , DT NNP VBD DT NN IN JJ NNS IN NNP TO NNP .\nDefense Secretary Donald Rumsfeld said the plan would save $ 49 billion over 20 years and make it easier to deploy forces quickly .\tNNP NNP NNP NNP VBD DT NN MD VB $ CD CD IN CD NNS CC VB PRP JJR TO VB NNS RB .\nPresident Bush must certify a final list of base closures recommended by the commission and submit the list to Congress for approval .\tNNP NNP MD VB DT JJ NN IN NN NNS VBN IN DT NN CC VB DT NN TO NNP IN NN .\nAuthorities in volatile northwest Pakistan say six members of a family were killed when a grenade exploded in their vehicle Sunday .\tNNS IN JJ NN NNP VBP CD NNS IN DT NN VBD VBN WRB DT NN VBN IN PRP$ NN NNP .\nOfficials in the North Waziristan tribal region say a husband , a wife and their four children were killed instantly by the blast .\tNNS IN DT NNP NNP JJ NN VBP DT NN , DT NN CC PRP$ CD NNS VBD VBN RB IN DT NN .\nFour other people were wounded .\tCD JJ NNS VBD VBN .\nOfficials say they do not know whether the family was transporting the grenade or if it was planted in their vehicle .\tNNS VBP PRP VBP RB VB IN DT NN VBD VBG DT NN CC IN PRP VBD VBN IN PRP$ NN .\nOn Saturday , 12 children in northwest Pakistan were killed when they mistook a bomb for a toy and began playing with it .\tIN NNP , CD NNS IN JJ NNP VBD VBN WRB PRP VBP DT NN IN DT NN CC VBD VBG IN PRP .\nA local police official , Said Zaman , said the children found the football-shaped bomb near their school in northwest Pakistan 's Lower Dir district .\tDT JJ NN NN , NNP NNP , VBD DT NNS VBD DT JJ NN IN PRP$ NN IN JJ NNP POS NNP NNP NN .\nIt is not clear whether the bomb was placed there accidentally or deliberately .\tPRP VBZ RB JJ IN DT NN VBD VBN EX RB CC RB .\nSecurity officials in Afghanistan say a roadside bomb has ripped through a taxi outside the capital , killing at least one civilian and wounding four others .\tNN NNS IN NNP VBP DT NN NN VBZ VBN IN DT NN IN DT NN , VBG IN JJS CD JJ CC VBG CD NNS .\nTuesday 's explosion occurred on a major road in eastern Kabul .\tNNP POS NN VBD IN DT JJ NN IN JJ NNP .\nIt is not clear who planted the bomb .\tPRP VBZ RB JJ WP VBD DT NN .\nSeparately , the U.S.-led coalition in Afghanistan said one of its soldiers was killed Monday in a fight with militants in Pech district of Kunar province .\tRB , DT JJ NN IN NNP VBD CD IN PRP$ NNS VBD VBN NNP IN DT NN IN NNS IN NNP NN IN NNP NN .\nThe soldier 's nationality was not released .\tDT NN POS NN VBD RB VBN .\nThe coalition also reports seven militants were killed in Paktika province Monday in clashes with U.S.-led troops , one of whom was slightly wounded .\tDT NN RB VBZ CD NNS VBD VBN IN NNP NN NNP IN NNS IN JJ NNS , CD IN WP VBD RB VBN .\nA statement published in Pakistan , meanwhile , reports the death last week of Younus Khalis , leader of a pro-Taleban faction in Afghanistan who had been in hiding since 2003 , when he declared a holy war against foreign forces in Afghanistan .\tDT NN VBN IN NNP , RB , VBZ DT NN JJ NN IN NNP NNP , NN IN DT JJ NN IN NNP WP VBD VBN IN VBG IN CD , WRB PRP VBD DT JJ NN IN JJ NNS IN NNP .\nItaly 's interior minister says authorities have thwarted planned terrorist attacks ahead of the country 's upcoming parliamentary elections .\tNNP POS JJ NN VBZ NNS VBP VBN VBN JJ NNS RB IN DT NN POS JJ JJ NNS .\nGiuseppe Pisanu told reporters on the sidelines of a campaign rally in Cagliari , Sardinia , that the plot targeted the Milan subway and a basilica in Bologna .\tNNP NNP VBD NNS IN DT NNS IN DT NN NN IN NNP , NNP , IN DT NN VBD DT NNP NN CC DT NN IN NNP .\nHe said it involved seven people and that three of them have been expelled from Italy , two are under arrest , one is under surveillance , and another is still at large .\tPRP VBD PRP VBD CD NNS CC IN CD IN PRP VBP VBN VBN IN NNP , CD VBP IN NN , CD VBZ IN NN , CC DT VBZ RB IN JJ .\nPisanu said the group planned to attack the San Petronio basilica in Bologna .\tNNP VBD DT NN VBD TO VB DT NNP NNP NN IN NNP .\nIt features a fresco that Muslim groups have said is insulting to the Prophet Muhammad .\tPRP VBZ DT NN IN NNP NNS VBP VBN VBZ VBG TO DT NNP NNP .\nPisanu 's remarks come as Italians are preparing for national elections on Sunday and Monday .\tNNP POS NNS VBP IN NNS VBP VBG IN JJ NNS IN NNP CC NNP .\nRussian President Vladimir Putin has ordered his administration to study foreign and domestic criticism of a bill to strictly regulate non-governmental organizations .\tJJ NNP NNP NNP VBZ VBN PRP$ NN TO VB JJ CC JJ NN IN DT NN TO RB VB JJ NNS .\nMr. Putin offered no specific suggestions , but ordered submission of amendments to the controversial bill within five days .\tNNP NNP VBD DT JJ NNS , CC VBD NN IN NNS TO DT JJ NN IN CD NNS .\nAs presently written , the bill would subject Russian branches of foreign organizations to various restrictions and to the oversight of Russian authorities .\tIN RB VBN , DT NN MD VB JJ NNS IN JJ NNS TO JJ NNS CC TO DT NN IN JJ NNS .\nHuman rights groups have condemned the measure , calling it a reflection of the Kremlin 's crackdown on civil society institutions .\tJJ NNS NNS VBP VBN DT NN , VBG PRP DT NN IN DT NNP POS NN IN JJ NN NNS .\nPresident Putin said Monday that such a bill is necessary to combat the threats of terrorism and what he called ' misanthropic ideologies . '\tNNP NNP VBD NNP IN PDT DT NN VBZ JJ TO VB DT NNS IN NN CC WP PRP VBD `` JJ NNS . ``\nBut , he said , a civil society is crucial , and Russia can not afford to curtail that development .\tCC , PRP VBD , DT JJ NN VBZ JJ , CC NNP MD RB VB TO VB DT NN .\nA Netherlands court has opened a pretrial hearing in the case of a Dutch businessman charged with complicity in genocide by selling chemical weapons ingredients to ousted Iraqi dictator Saddam Hussein .\tDT NNP NN VBZ VBN DT JJ NN IN DT NN IN DT JJ NN VBN IN NN IN NN IN VBG NN NNS NNS TO JJ JJ NN NNP NNP .\nFrans van Anraat appeared Friday in a Rotterdam courtroom .\tNNP NNP NNP VBD NNP IN DT NNP NN .\nThe 62-year-old defendant is accused of exporting tons of chemicals that Iraq used to make weapons over a four-year period beginning in 1984 .\tDT JJ NN VBZ VBN IN VBG NNS IN NNS IN NNP VBD TO VB NNS IN DT JJ NN VBG IN CD .\nProsecutors say Saddam used the weapons in the 1988 attack on the Kurdish town of Halabja that killed 5,000 people .\tNNS VBP NNP VBD DT NNS IN DT CD NN IN DT JJ NN IN NNP WDT VBD CD NNS .\nSome survivors of the attack attended Friday 's hearing .\tDT NNS IN DT NN VBD NNP POS NN .\nA prosecutor told the court Mr. van Anraat continued to sell Iraq chemicals even after the Halabja attack .\tDT NN VBD DT NN NNP NNP NNP VBD TO VB NNP NNS RB IN DT NNP NN .\nBut the defendant denies any wrongdoing .\tCC DT NN VBZ DT NN .\nMr. van Anraat fled to Iraq in 1989 .\tNNP NNP NNP VBD TO NNP IN CD .\nHe returned to the Netherlands after the U.S.-led invasion of Iraq in 2003 .\tPRP VBD TO DT NNP IN DT JJ NN IN NNP IN CD .\nAnother hearing is expected in June , and the trial in November .\tDT NN VBZ VBN IN NNP , CC DT NN IN NNP .\nA 13-year-old Cambodian girl has died from bird flu , bringing to seven the number of people in the country who have died from the virus .\tDT JJ JJ NN VBZ VBN IN NN NN , VBG TO CD DT NN IN NNS IN DT NN WP VBP VBN IN DT NN .\nThe World Health Organization and Cambodian Health Ministry have confirmed that the girl was infected with the H5N1 strain of bird flu .\tDT NNP NNP NNP CC JJ NNP NNP VBP VBN IN DT NN VBD VBN IN DT NNP NN IN NN NN .\nElsewhere , Indonesia said it has confirmed another human bird flu fatality in the country .\tRB , NNP VBD PRP VBZ VBN DT JJ NN NN NN IN DT NN .\nOfficials there say the 15-year-old girl 's death brings to 73 the number of people in Indonesia who have died from the H5N1 strain .\tNNS RB VBP DT JJ NN POS NN VBZ TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NNP NN .\nThe WHO has not confirmed those results , and has so far confirmed only 63 people dying from bird flu in Indonesia .\tDT NNP VBZ RB VBN DT NNS , CC VBZ RB RB VBN RB CD NNS VBG IN NN NN IN NNP .\nThe country has more bird flu deaths than any other nation .\tDT NN VBZ RBR JJ NN NNS IN DT JJ NN .\nWHO officials say 171 people have died from the virus worldwide since the outbreak began in 2003 , mostly in Asian countries .\tNNP NNS VBP CD NNS VBP VBN IN DT NN NN IN DT NN VBD IN CD , RB IN JJ NNS .\nSuicide bomb blasts have killed at least 12 people at a military recruitment center in central Baghdad .\tNN NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN NN IN JJ NNP .\nMore than 36 others were wounded in the strike , which witnesses say was carried out by at least two attackers .\tJJR IN CD NNS VBD VBN IN DT NN , WDT NNS VBP VBD VBN RP IN IN JJS CD NNS .\nWitnesses describe a scene of devastation in the area around the blast site , and hospital officials say they were treating numerous wounded .\tNNS VBP DT NN IN NN IN DT NN IN DT NN NN , CC NN NNS VBP PRP VBD VBG JJ VBN .\nThe strike took place at the same recruitment center where a suicide attack killed at least 59 people last month .\tDT NN VBD NN IN DT JJ NN NN WRB DT NN NN VBD IN JJS CD NNS JJ NN .\nInsurgents have stepped up their attacks in recent weeks , coinciding with a drawdown in U.S. troops .\tNNS VBP VBN RP PRP$ NNS IN JJ NNS , VBG IN DT NN IN NNP NNS .\nAs of September first , the United States says it is no longer engaged in combat operations , renaming the mission one of advice and assistance to Iraqi forces .\tIN IN NNP RB , DT NNP NNPS VBZ PRP VBZ RB RB VBN IN NN NNS , VBG DT NN CD IN NN CC NN TO JJ NNS .\nThe Iraqi government last week placed the country on highest alert .\tDT JJ NN JJ NN VBD DT NN IN JJS NN .\nAn influential Sunni Arab politician says U.S. forces stormed his Baghdad home early Thursday , arresting four of his bodyguards .\tDT JJ NNP NNP NN VBZ NNP NNS VBD PRP$ NNP NN RB NNP , VBG CD IN PRP$ NNS .\nAdnan al-Dulaimi told reporters he was shocked by the raid .\tNNP NNP VBD NNS PRP VBD VBN IN DT NN .\nHe said he is a voice for national reconciliation and against sectarianism .\tPRP VBD PRP VBZ DT NN IN JJ NN CC IN NN .\nA U.S. military spokesman in Baghdad told VOA he could not confirm whether U.S. forces raided Mr. al-Dulaimi 's home .\tDT NNP JJ NN IN NNP VBD NNP PRP MD RB VB IN NNP NNS VBD NNP NNP POS NN .\nMr. al-Dulaimi heads the Conference for Iraq 's People , a leading political organization representing Iraq 's minority Sunni Arabs .\tNNP NNP VBZ DT NN IN NNP POS NNS , DT VBG JJ NN VBG NNP POS NN NNP NNS .\nThat group is urging Sunni Arabs to vote against the new constitution in next month 's national referendum .\tDT NN VBZ VBG NNP NNS TO VB IN DT JJ NN IN JJ NN POS JJ NN .\nIt says if the document is approved , Sunni Arabs may be marginalized if Iraq is divided into Shi'ite , Kurdish and Sunni Arab regions .\tPRP VBZ IN DT NN VBZ VBN , NNP NNS MD VB VBN IN NNP VBZ VBN IN NNP , NNP CC NNP NNP NNS .\nVenezuelan and Chinese officials have signed agreements on oil , agriculture and technology during meetings in Caracas Saturday .\tJJ CC JJ NNS VBP VBN NNS IN NN , NN CC NN IN NNS IN NNP NNP .\nChinese Vice President Zeng Qinghong and Venezuelan President Hugo Chavez signed 17 bilateral agreements and also discussed cooperation in mining , oil and gas projects , as well as technological partnership .\tJJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBD CD JJ NNS CC RB VBD NN IN NN , NN CC NN NNS , RB RB IN JJ NN .\nLast month , Mr. Chavez visited China , where he signed agreements with Chinese President Hu Jintao dealing with economic cooperation and joint oil field exploration .\tJJ NN , NNP NNP VBD NNP , WRB PRP VBD NNS IN JJ NNP NNP NNP VBG IN JJ NN CC JJ NN NN NN .\nVenezuela is the world 's fifth-largest oil exporter .\tNNP VBZ DT NN POS JJ NN NN .\nChina , which faces a significant energy shortfall , is looking to strengthen energy cooperation with oil-exporting countries .\tNNP , WDT VBZ DT JJ NN NN , VBZ VBG TO VB NN NN IN JJ NNS .\nVenezuela is the third stop in Mr. Zeng 's five-nation tour of Latin America and the Caribbean .\tNNP VBZ DT JJ NN IN NNP NNP POS JJ NN IN NNP NNP CC DT NNP .\nHe plans to leave Venezuela Sunday for visits to Trinidad and Tobago and Jamaica .\tPRP VBZ TO VB NNP NNP IN NNS TO NNP CC NNP CC NNP .\nThe U.S. military in Iraq says an insurgent , two women and a child have been killed in a clash between U.S. forces and militants north of Baghdad .\tDT NNP NN IN NNP VBZ DT NN , CD NNS CC DT NN VBP VBN VBN IN DT NN IN NNP NNS CC NNS NN IN NNP .\nHowever , police and residents say 11 people were killed in the raid on a house near Balad , and the Associated Press says its photographs show 11 bodies wrapped in blankets arriving at a hospital in Tikrit .\tRB , NNS CC NNS VBP CD NNS VBD VBN IN DT NN IN DT NN IN NNP , CC DT NNP NNP VBZ PRP$ NNS VBP CD NNS VBN IN NNS VBG IN DT NN IN NNP .\nU.S. officials could not immediately reconcile the discrepancy .\tNNP NNS MD RB RB VB DT NN .\nBut a military spokesman said one al-Qaida suspect was killed and another was captured in the operation .\tCC DT JJ NN VBD CD NNP NN VBD VBN CC DT VBD VBN IN DT NN .\nElsewhere , police in Baghdad say two Shi'ite pilgrims were killed as they walked on a roadway toward Karbala for annual festivities marking a key religious celebration that ends Monday .\tRB , NNS IN NNP VBP CD NNP NNS VBD VBN IN PRP VBD IN DT NN IN NNP IN JJ NNS VBG DT JJ JJ NN WDT VBZ NNP .\nSeparately , police in Baquba say at least four people died in two bombings .\tRB , NNS IN NNP VBP IN JJS CD NNS VBD IN CD NNS .\nIn one incident , police say a suicide bomber on a bicycle missed a police patrol and killed two civilians .\tIN CD NN , NNS VBP DT NN NN IN DT NN VBD DT NN NN CC VBD CD NNS .\nThe United Nations is beginning a formal inquiry Wednesday into the assassination of former Pakistani Prime Minister Benazir Bhutto .\tDT NNP NNPS VBZ VBG DT JJ NN NNP IN DT NN IN JJ JJ NNP NNP NNP NNP .\nA Pakistani investigation last year concluded that Taliban militants were likely responsible for Ms. Bhutto 's death in December 2007 .\tDT JJ NN JJ NN VBD IN NNP NNS VBD JJ JJ IN NNP NNP POS NN IN NNP CD .\nBut her political party has suggested that Ms. Bhutto 's political opponents may have played a role in the plot .\tCC PRP$ JJ NN VBZ VBN IN NNP NNP POS JJ NNS MD VB VBN DT NN IN DT NN .\nU.N. Secretary-General Ban Ki-Moon announced the creation of the fact-finding commission after meeting with Ms. Bhutto 's widower , Pakistani President Asif Ali Zardari , in Islamabad last February .\tNNP NNP NNP NNP VBD DT NN IN DT JJ NN IN VBG IN NNP NNP POS NN , JJ NNP NNP NNP NNP , IN NNP JJ NNP .\nMs. Bhutto was killed in a bomb attack after addressing an election rally near the Pakistani capital .\tNNP NNP VBD VBN IN DT NN NN IN VBG DT NN NN IN DT JJ NN .\nEight cross-country skiers - including a former gold medalist - have been suspended for having high red blood cell counts at the Turin Olympics .\tCD JJ NNS : VBG DT JJ NN NN : VBP VBN VBN IN VBG JJ JJ NN NN NNS IN DT NNP NNPS .\nThe eight were suspended for health reasons and not for doping .\tDT CD VBD VBN IN NN NNS CC RB IN NN .\nThey include 2002 gold medalist Evi Sachenbacher of Germany .\tPRP VBP CD JJ NN NNP NNP IN NNP .\nA high red blood cell count can occur naturally , but can also result from taking endurance-boosting drugs such as EPO .\tDT JJ JJ NN NN NN MD VB RB , CC MD RB VB IN VBG JJ NNS JJ IN NNP .\nTwo Americans - Kikkan Randall and Leif Zimmermann - are among the eight .\tCD NNS : NNP NNP CC NNP NNP : VBP IN DT CD .\nThe International Ski Federation says the suspensions are not punishments , but to protect the athletes ' health .\tDT NNP NNP NNP VBZ DT NNS VBP RB NNS , CC TO VB DT NNS POS NN .\nThe U.S. Ski Federation says the suspensions are retroactive to Wednesday when the tests were conducted .\tDT NNP NNP NNP VBZ DT NNS VBP JJ TO NNP WRB DT NNS VBD VBN .\nThe only cross-country events that fall within the five-day suspension are the men 's and women 's pursuit races Sunday .\tDT JJ JJ NNS WDT VBP IN DT JJ NN VBP DT NNS POS CC NNS POS NN NNS NNP .\nA top U.S. intelligence officer in Baghdad has reportedly warned that Iraq 's security situation is likely to get worse in the coming months .\tDT JJ NNP NN NN IN NNP VBZ RB VBN IN NNP POS NN NN VBZ JJ TO VB JJR IN DT JJ NNS .\nThe report from the New York Times newspaper cites government officials who say they have seen a cable the officer sent to superiors at the U.S. Central Intelligence Agency ( CIA ) last month .\tDT NN IN DT NNP NNP NNP NN VBZ NN NNS WP VBP PRP VBP VBN DT NN DT NN VBD TO NNS IN DT NNP NNP NNP NNP LRB NNP RRB JJ NN .\nThe officer warned of more violence and sectarian clashes unless the Iraqi government can assert its authority and rebuild the economy .\tDT NN VBD IN JJR NN CC JJ NNS IN DT JJ NN MD VB PRP$ NN CC VB DT NN .\nThe newspaper says the officer had just finished a year-long tour as the CIA 's station chief in Baghdad .\tDT NN VBZ DT NN VBD RB VBN DT JJ NN IN DT NNP POS NN NN IN NNP .\nThe Bush administration and the military continue to present a more optimistic view of Iraqi security .\tDT NNP NN CC DT NN VBP TO VB DT RBR JJ NN IN JJ NN .\nMonday , the Defense Department said the recent offensive in Fallujah had ' scattered the enemy , ' and said the Iraqi security forces continue to expand .\tNNP , DT NNP NNP VBD DT JJ NN IN NNP VBD `` VBN DT NN , `` CC VBD DT JJ NN NNS VBP TO VB .\nAmericans Robert H. Grubbs and Richard R. Schrock and France 's Yves Chauvin have won this year 's Nobel Prize in Chemistry .\tNNS NNP NNP NNP CC NNP NNP NNP CC NNP POS NNP NNP VBP VBN DT NN POS NNP NNP IN NNP .\nThe award was announced Wednesday , morning at the Royal Swedish Academy of Sciences in Stockholm .\tDT NN VBD VBN NNP , NN IN DT NNP JJ NNP IN NNPS IN NNP .\nThe trio was cited for their work that led the way in the manufacturing of better drugs and environmentally-friendly plastics .\tDT NN VBD VBN IN PRP$ NN WDT VBD DT NN IN DT NN IN JJR NNS CC JJ NNS .\nMr. Chauvin began work in 1971 in the field of metathesis , which studies how molecules are broken down and then rearranged .\tNNP NNP VBD NN IN CD IN DT NN IN NN , WDT VBZ WRB NNS VBP VBN RB CC RB VBD .\nMr. Schrock and Mr. Grubbs later developed more efficient and stable catalysts to reproduce the reaction .\tNNP NNP CC NNP NNP RB VBD RBR JJ CC JJ NNS TO VB DT NN .\nAll three men will share the $ 1.3 million cash award , which they will receive during a formal ceremony on December 10 .\tDT CD NNS MD VB DT $ CD CD NN NN , WDT PRP MD VB IN DT JJ NN IN NNP CD .\nPakistan 's political opposition stormed out of parliament Friday over government statements that a top Pakistani nuclear scientist provided Iran with centrifuges .\tNNP POS JJ NN VBD IN IN NN NNP IN NN NNS IN DT JJ JJ JJ NN VBN NNP IN NNS .\nPakistan 's Information Minister acknowledged for the first time Thursday that Abdul Qadeer Khan sold centrifuges to Iran that can be used to process uranium for nuclear weapons .\tNNP POS NNP NNP VBD IN DT JJ NN NNP IN NNP NNP NNP VBD NNS TO NNP WDT MD VB VBN TO VB NN IN JJ NNS .\nOpposition lawmakers called the remarks irresponsible and stormed out after the parliament 's chairman refused to hold a debate on the issue .\tNNP NNS VBD DT NNS JJ CC VBD RP IN DT NN POS NN VBD TO VB DT NN IN DT NN .\nMr. Khan , known as the father of Pakistan 's nuclear bomb , has been under virtual house arrest after coming under investigation for passing nuclear secrets to Iran , North Korea and Libya .\tNNP NNP , VBN IN DT NN IN NNP POS JJ NN , VBZ VBN IN JJ NN NN IN VBG IN NN IN VBG JJ NNS TO NNP , NNP NNP CC NNP .\nThe West African regional group known as ECOWAS is set to hold an emergency summit Wednesday in Niger to discuss the situation in Togo .\tDT JJ JJ JJ NN VBN IN NNP VBZ VBN TO VB DT NN NN NNP IN NNP TO VB DT NN IN NNP .\nInternational criticism of Togolese authorities continued Tuesday over the choice of Faure Gnassingbe as the country 's new president after the military installed him hours after his father 's death Saturday .\tJJ NN IN NNP NNS VBD NNP IN DT NN IN NNP NNP IN DT NN POS JJ NN IN DT JJ JJ PRP NNS IN PRP$ NN POS NN NNP .\nReacting to the criticism , Togo 's parliament amended the constitution on Sunday to allow Mr. Gnassingbe to serve out his father 's , Gnassingbe Eyadema 's term ending in 2008 .\tVBG TO DT NN , NNP POS NN VBD DT NN IN NNP TO VB NNP NNP TO VB RP PRP$ NN POS , NNP NNP POS NN VBG IN CD .\nThe constitution had called for naming the speaker of parliament as interim president until elections are held in two months .\tDT NN VBD VBN IN VBG DT NN IN NN IN JJ NN IN NNS VBP VBN IN CD NNS .\nThe African Union 's Peace and Security Council Tuesday branded Mr. Gnassingbe 's seizure of power ' a blatant and unacceptable violation of the Togolese constitution . '\tDT NNP NNP POS NNP CC NNP NNP NNP VBD NNP NNP POS NN IN NN `` DT JJ CC JJ NN IN DT NNP NN . ``\nThe United States , Britain and France are calling for new elections .\tDT NNP NNPS , NNP CC NNP VBP VBG IN JJ NNS .\nEnglish football star David Beckham has arrived at the training ground of Premier League team Tottenham Hotspur in preparation of his month-long training stint with the club .\tJJ NN NN NNP NNP VBZ VBN IN DT NN NN IN NNP NNP NN NNP NNP IN NN IN PRP$ JJ NN NN IN DT NN .\nThe 35-year-old Beckham arrived at the team 's facility east of London on Monday .\tDT JJ NNP VBD IN DT NN POS NN NN IN NNP IN NNP .\nTottenham had hoped to reach an agreement with Major League Soccer 's Los Angeles Galaxy to have Beckham for a two-month playing loan .\tNNP VBD VBN TO VB DT NN IN NNP NNP NNP POS NNP NNP NNP TO VB NNP IN DT JJ NN NN .\nBut talks broke down when the MLS club insisted that Beckham report with his Los Angeles teammates on February 10 to prepare for the 2011 season .\tCC NNS VBD RP WRB DT NNP NN VBD IN NNP VB IN PRP$ NNP NNP NNS IN NNP CD TO VB IN DT CD NN .\nThe Galaxy had been reluctant to allow Beckham to spend the offseason playing in Europe after he tore his Achilles ' tendon playing for Italy 's AC Milan last March and missed much of the MLS season .\tDT NNP VBD VBN JJ TO VB NNP TO VB DT NN NN IN NNP IN PRP VBD PRP$ NNP POS NN VBG IN NNP POS NNP NNP JJ NNP CC VBD NN IN DT NNP NN .\nHowever , Hotspurs manager Harry Redknapp is still hopeful the loan agreement can be worked out .\tRB , NNP NN NNP NNP VBZ RB JJ DT NN NN MD VB VBN RP .\nAn international press freedom advocacy group is calling for the unconditional release of Burmese journalist U Win Tin who is about to spend his 76th birthday in prison .\tDT JJ NN NN NN NN VBZ VBG IN DT JJ NN IN JJ NN NNP NNP NNP WP VBZ IN TO VB PRP$ JJ NN IN NN .\nThe Paris-based group Reporters Without Borders issued a joint statement Friday , along with the Burma Media Association saying U Win Tin has been deprived of basic human rights .\tDT JJ NN NNS IN NNS VBD DT JJ NN NNP , IN IN DT NNP NNP NNP VBG NNP NNP NNP VBZ VBN VBN IN JJ JJ NNS .\nThey say he is not allowed to write and has been denied proper medical care for chronic health ailments .\tPRP VBP PRP VBZ RB VBN TO VB CC VBZ VBN VBN JJ JJ NN IN JJ NN NNS .\nThe statement says that since the beginning of the year , he has been denied visits from the International Committee of the Red Cross .\tDT NN VBZ IN IN DT NN IN DT NN , PRP VBZ VBN VBN NNS IN DT NNP NNP IN DT NNP NNP .\nU Win Tin was arrested in 1989 and is serving a 20-year sentence for writing anti-government propaganda .\tNNP NNP NNP VBD VBN IN CD CC VBZ VBG DT JJ NN IN VBG JJ NN .\nHe will turn 76 March 12 .\tPRP MD VB CD NNP CD .\nPakistani officials say militants in northwest Pakistan have bombed a tanker truck carrying fuel to NATO forces in Afghanistan , destroying the tanker and a nearby van .\tJJ NNS VBP NNS IN JJ NNP VBP VBN DT NN NN VBG NN TO NNP NNS IN NNP , VBG DT NN CC DT JJ NN .\nOfficials say the bomb was attached to the tanker and exploded Wednesday as the vehicle traveled through the Khyber tribal area toward the Afghan border .\tNNS VBP DT NN VBD VBN TO DT NN CC VBD NNP IN DT NN VBD IN DT NNP JJ NN IN DT JJ NN .\nThe number of casualties is not clear .\tDT NN IN NNS VBZ RB JJ .\nAt least four people were reported wounded by the explosion and there are reports of at least one death .\tIN JJS CD NNS VBD VBN VBN IN DT NN CC EX VBP NNS IN IN JJS CD NN .\nTaliban militants regularly attack NATO supply vehicles that pass through Pakistan .\tNNP NNS RB VBP NNP NN NNS WDT VBP IN NNP .\nNATO and U.S.-led forces battling insurgents in landlocked Afghanistan are dependent on Pakistan for supplies , with at least 75 percent passing through that country .\tNNP CC JJ NNS VBG NNS IN JJ NNP VBP JJ IN NNP IN NNS , IN IN JJS CD NN NN IN DT NN .\nA U.S. federal inspector says more than 96-million dollars earmarked for projects to rebuild Iraq can not be accounted for .\tDT NNP JJ NN VBZ JJR IN CD NNS VBN IN NNS TO VB NNP MD RB VB VBN IN .\nThe report by Special Inspector General for Iraq Reconstruction Stuart Bowen has prompted a criminal investigation into the missing money .\tDT NN IN NNP NNP NNP IN NNP NNP NNP NNP VBZ VBN DT JJ NN IN DT VBG NN .\nMr. Bowen 's report , released Thursday , describes how tens of millions of dollars were dispersed for Iraq construction projects with little or no documentation during 2003 and 2004 .\tNNP NNP POS NN , VBN NNP , VBZ WRB NNS IN NNS IN NNS VBD VBN IN NNP NN NNS IN JJ CC DT NN IN CD CC CD .\nThe report says that while incompetence or haste may account for some problems , there are indications of fraud .\tDT NN VBZ IN IN NN CC NN MD VB IN DT NNS , EX VBP NNS IN NN .\nThe inspector general notes the money in question was not U.S. taxpayer dollars but rather Iraqi money designated for reconstruction projects .\tDT NN JJ NNS DT NN IN NN VBD RB NNP NN NNS CC RB JJ NN VBN IN NN NNS .\nU.S. officials responding to the report have attributed the accounting problems to the difficulties of working in a war-time environment .\tNNP NNS VBG TO DT NN VBP VBN DT NN NNS TO DT NNS IN VBG IN DT JJ NN .\nUkrainian opposition supporters have ended their two-week-long blockade of government buildings and streets in Kiev , but some protesters vow to stay until a runoff election is held .\tJJ NN NNS VBP VBN PRP$ JJ NN IN NN NNS CC NNS IN NNP , CC DT NNS VBP TO VB IN DT NN NN VBZ VBN .\nOpposition presidential candidate Viktor Yushchenko told demonstrators to go home , after parliament approved new anti-fraud laws for a court ordered December 26 repeat of the runoff vote .\tNNP JJ NN NNP NNP VBD NNS TO VB NN , IN NN VBD JJ JJ NNS IN DT NN VBN NNP CD NN IN DT NN NN .\nPresident Bush Thursday congratulated Presidents Aleksander Kwasniewski of Poland and Valdas Adamkus of Lithuania for helping mediate an end to the political crisis .\tNNP NNP NNP VBD NNS NNP NNP IN NNP CC NNP NNP IN NNP IN VBG VB DT NN TO DT JJ NN .\nAlso Thursday , Russia and NATO agreed to work to ensure free and fair elections in Ukraine .\tRB NNP , NNP CC NNP VBD TO VB TO VB JJ CC JJ NNS IN NNP .\nPrime Minister Viktor Yanukovych was declared the winner of the flawed November election .\tNNP NNP NNP NNP VBD VBN DT NN IN DT JJ NNP NN .\nHe calls the new election laws illegal and say they will do nothing to stop fraud .\tPRP VBZ DT JJ NN NNS JJ CC VBP PRP MD VB DT TO VB NN .\nTropical Storm Alpha made landfall early Sunday in the Dominican Republic .\tJJ NN NNP VBD NN JJ NNP IN DT NNP NNP .\nThe U.S. National Hurricane Center says the storm came ashore near the city of Barahona , with maximum sustained winds close to 85 kilometers per hour .\tDT NNP NNP NNP NNP VBZ DT NN VBD RB IN DT NN IN NNP , IN NN VBN NNS RB TO CD NNS IN NN .\nThe center says Alpha is expected to weaken rapidly but not before bringing heavy rain and possible flooding to the Dominican Republic and neighboring Haiti .\tDT NN VBZ NNP VBZ VBN TO VB RB CC RB IN VBG JJ NN CC JJ NN TO DT NNP NNP CC JJ NNP .\nAlpha is the 22nd named storm of the Atlantic hurricane season , breaking the previous record set in 1933 .\tNNP VBZ DT CD VBN NN IN DT NNP NN NN , VBG DT JJ NN VBN IN CD .\nForecasters have run through this year 's list of names and have turned to the Greek alphabet .\tNNS VBP VBN IN DT NN POS NN IN NNS CC VBP VBN TO DT JJ NN .\nTropical storm warnings remain in effect for the Dominican Republic , Haiti , the Turks and Caicos Islands , and the southeastern Bahamas .\tJJ NN NNS VBP IN NN IN DT NNP NNP , NNP , DT NNS CC NNP NNP , CC DT JJ NNPS .\nElectricity consumption is on the rise across Europe , but high oil prices and a reluctance in some countries to ' go nuclear ' is creating an energy gap .\tNN NN VBZ IN DT NN IN NNP , CC JJ NN NNS CC DT NN IN DT NNS TO `` VB NN `` VBZ VBG DT NN NN .\nSo some power companies are switching back to ' coal ' - but this time , proponents say coal is cleaning up its act .\tRB DT NN NNS VBP VBG RB TO `` NN `` : CC DT NN , NNS VBP NN VBZ VBG RP PRP$ NN .\nA new generation of ' clean coal ' power stations is due to open across the continent during the next five years .\tDT JJ NN IN `` JJ NN `` NN NNS VBZ JJ TO VB IN DT NN IN DT JJ CD NNS .\nBut one of the first to come on line has been met with stiff opposition in the United Kingdom .\tCC CD IN DT JJ TO VB IN NN VBZ VBN VBN IN JJ NN IN DT NNP NNP .\nPaul Burge reports for VOA from London .\tNNP NNP VBZ IN NNP IN NNP .\nThe Israeli army says its soldiers patrolling the border with Egypt have mistakenly shot and wounded an Egyptian security officer .\tDT JJ NN VBZ PRP$ NNS VBG DT NN IN NNP VBP RB VBN CC VBN DT JJ NN NN .\nA military spokeswoman Monday said Israeli troops on patrol outside the city of Eilat saw what they considered a suspicious , armed person at the border .\tDT JJ NN NNP VBD JJ NNS IN NN IN DT NN IN NNP VBD WP PRP VBD DT JJ , JJ NN IN DT NN .\nShe said the troops fired at the man after he cocked his weapon .\tPRP VBD DT NNS VBD IN DT NN IN PRP VBD PRP$ NN .\nThe Israeli army says the soldiers only then realized the man , who was wounded in the chest , was an Egyptian security officer .\tDT JJ NN VBZ DT NNS RB RB VBD DT NN , WP VBD VBN IN DT NN , VBD DT JJ NN NN .\nA joint Israeli-Egyptian team is investigating the incident .\tDT JJ JJ NN VBZ VBG DT NN .\nShootings between Israeli and Egyptian forces along the border region have been rare since the two countries signed a peace treaty in 1979 .\tNNS IN JJ CC JJ NNS IN DT NN NN VBP VBN JJ IN DT CD NNS VBD DT NN NN IN CD .\nTwo British lawmakers have called for an inquiry into claims that a British-based security firm operating in Iraq withheld intelligence from British troops .\tCD JJ NNS VBP VBN IN DT NN IN NNS IN DT JJ NN NN VBG IN NNP VBD NN IN JJ NNS .\nThe Guardian newspaper says the lawmakers want the Foreign and Commonwealth Office to investigate whether the firm ArmorGroup directed an employee to withhold information from British forces .\tDT NNP NN VBZ DT NNS VBP DT NNP CC NNP NNP TO VB IN DT NN NNP VBD DT NN TO VB NN IN JJ NNS .\nThe probe demand follows a Guardian report that a former British policeman working in 2004 and 2005 for the security firm in southern Iraq was told not to share intelligence gained during visits to local Iraqi police stations .\tDT NN NN VBZ DT NNP NN IN DT JJ JJ NN VBG IN CD CC CD IN DT NN NN IN JJ NNP VBD VBN RB TO VB NN VBD IN NNS TO JJ JJ NN NNS .\nThe report says ArmorGroup has ' vigorously ' denied the claims .\tDT NN VBZ NNP VBZ `` RB `` VBN DT NNS .\nMagna International Inc. 's chief financial officer , James McAlpine , resigned and its chairman , Frank Stronach , is stepping in to help turn the automotive-parts manufacturer around , the company said .\tNNP NNP NNP POS JJ JJ NN , NNP NNP , VBD CC PRP$ NN , NNP NNP , VBZ VBG IN TO VB VB DT NNS NN IN , DT NN VBD .\nMr. Stronach will direct an effort to reduce overhead and curb capital spending ' until a more satisfactory level of profit is achieved and maintained , ' Magna said .\tNNP NNP MD VB DT NN TO VB NN CC VB NN NN `` IN DT RBR JJ NN IN NN VBZ VBN CC VBN , `` NNP VBD .\nStephen Akerfeldt , currently vice president finance , will succeed Mr. McAlpine .\tNNP NNP , RB NN NN NN , MD VB NNP NNP .\nAn ambitious expansion has left Magna with excess capacity and a heavy debt load as the automotive industry enters a downturn .\tDT JJ NN VBZ VBN NNP IN JJ NN CC DT JJ NN NN IN DT JJ NN VBZ DT NN .\nThe company has reported declines in operating profit in each of the past three years , despite steady sales growth .\tDT NN VBZ VBN NNS IN NN NN IN DT IN DT JJ CD NNS , IN JJ NNS NN .\nMagna recently cut its quarterly dividend in half and the company 's Class A shares are wallowing far below their 52-week high of 16.125 Canadian dollars ( US $ 13.73 ) .\tNNP RB VBP PRP$ JJ NN IN NN CC DT NN POS NNP NNP NNS VBP VBG RB IN PRP$ JJ NN IN CD JJ NNS LRB NNP $ CD RRB .\nOn the Toronto Stock Exchange yesterday , Magna shares closed up 37.5 Canadian cents to C $ 9.625 .\tIN DT NNP NNP NNP NN , NNP NNS VBD RB CD JJ NNS TO NNP $ CD .\nMr. Stronach , founder and controlling shareholder of Magna , resigned as chief executive officer last year to seek , unsuccessfully , a seat in Canada 's Parliament .\tNNP NNP , NN CC VBG NN IN NNP , VBD IN JJ NN NN JJ NN TO VB , RB , DT NN IN NNP POS NNP .\nAnalysts said Mr. Stronach wants to resume a more influential role in running the company .\tNNS VBD NNP NNP VBZ TO VB DT RBR JJ NN IN VBG DT NN .\nThey expect him to cut costs throughout the organization .\tPRP VBP PRP TO VB NNS IN DT NN .\nThe company said Mr. Stronach will personally direct the restructuring , assisted by Manfred Gingl , president and chief executive .\tDT NN VBD NNP NNP MD RB VB DT NN , VBN IN NNP NNP , NN CC JJ NN .\nNeither they nor Mr. McAlpine could be reached for comment .\tDT PRP CC NNP NNP MD VB VBN IN NN .\nMagna said Mr. McAlpine resigned to pursue a consulting career , with Magna as one of his clients .\tNNP VBD NNP NNP VBD TO VB DT NN NN , IN NNP IN CD IN PRP$ NNS .\nResistance by native Caribs prevented colonization on Saint Vincent until 1719 .\tNN IN JJ NNS VBD NN IN NNP NNP IN CD .\nDisputed between France and the United Kingdom for most of the 18th century , the island was ceded to the latter in 1783 .\tVBN IN NNP CC DT NNP NNP IN JJS IN DT JJ NN , DT NN VBD VBN TO DT NN IN CD .\nBetween 1960 and 1962 , Saint Vincent and the Grenadines was a separate administrative unit of the Federation of the West Indies .\tIN CD CC CD , NNP NNP CC DT NNP VBD DT JJ JJ NN IN DT NNP IN DT NNP NNPS .\nAutonomy was granted in 1969 and independence in 1979 .\tNNP VBD VBN IN CD CC NN IN CD .\nThe Slovene lands were part of the Austro-Hungarian Empire until the latter 's dissolution at the end of World War I .\tDT JJ NNS VBD NN IN DT JJ NN IN DT NN POS NN IN DT NN IN NNP NNP NNP .\nIn 1918 , the Slovenes joined the Serbs and Croats in forming a new multinational state , which was named Yugoslavia in 1929 .\tIN CD , DT NNS VBD DT NNS CC NNS IN VBG DT JJ JJ NN , WDT VBD VBN NNP IN CD .\nAfter World War II , Slovenia became a republic of the renewed Yugoslavia , which though Communist , distanced itself from Moscow 's rule .\tIN NNP NNP NNP , NNP VBD DT NN IN DT VBN NNP , WDT IN NNP , VBD PRP IN NNP POS NN .\nDissatisfied with the exercise of power by the majority Serbs , the Slovenes succeeded in establishing their independence in 1991 after a short 10-day war .\tVBN IN DT NN IN NN IN DT NN NNS , DT NNS VBD IN VBG PRP$ NN IN CD IN DT JJ JJ NN .\nHistorical ties to Western Europe , a strong economy , and a stable democracy have assisted in Slovenia 's transformation to a modern state .\tJJ NNS TO NNP NNP , DT JJ NN , CC DT JJ NN VBP VBN IN NNP POS NN TO DT JJ NN .\nSlovenia acceded to both NATO and the EU in the spring of 2004 ; it joined the eurozone in 2007 .\tNNP VBD TO DT NNP CC DT NNP IN DT NN IN CD ; PRP VBD DT NN IN CD .\nThe use of the name Montenegro began in the 15th century when the Crnojevic dynasty began to rule the Serbian principality of Zeta ; over subsequent centuries Montenegro was able to maintain its independence from the Ottoman Empire .\tDT NN IN DT NN NNP VBD IN DT JJ NN WRB DT NNP NN VBD TO VB DT JJ NN IN NNP ; IN JJ NNS NNP VBD JJ TO VB PRP$ NN IN DT NNP NNP .\nFrom the 16th to 19th centuries , Montenegro became a theocracy ruled by a series of bishop princes ; in 1852 , it was transformed into a secular principality .\tIN DT JJ TO JJ NNS , NNP VBD DT NN VBN IN DT NN IN NN NNS ; IN CD , PRP VBD VBN IN DT JJ NN .\nAfter World War I , Montenegro was absorbed by the Kingdom of Serbs , Croats , and Slovenes , which became the Kingdom of Yugoslavia in 1929 ; at the conclusion of World War II , it became a constituent republic of the Socialist Federal Republic of Yugoslavia .\tIN NNP NNP NNP , NNP VBD VBN IN DT NNP IN NNS , NNS , CC NNS , WDT VBD DT NNP IN NNP IN CD ; IN DT NN IN NNP NNP NNP , PRP VBD DT JJ NN IN DT NNP NNP NNP IN NNP .\nWhen the latter dissolved in 1992 , Montenegro federated with Serbia , first as the Federal Republic of Yugoslavia and , after 2003 , in a looser union of Serbia and Montenegro .\tWRB DT NN VBN IN CD , NNP VBD IN NNP , RB IN DT NNP NNP IN NNP CC , IN CD , IN DT JJR NN IN NNP CC NNP .\nIn May 2006 , Montenegro invoked its right under the Constitutional Charter of Serbia and Montenegro to hold a referendum on independence from the state union .\tIN NNP CD , NNP VBD PRP$ NN IN DT JJ NN IN NNP CC NNP TO VB DT NN IN NN IN DT NN NN .\nThe vote for severing ties with Serbia exceeded 55 % - the threshold set by the EU - allowing Montenegro to formally declare its independence on 3 June 2006 .\tDT NN IN VBG NNS IN NNP VBD CD NN IN DT NN VBN IN DT NNP : VBG NNP TO RB VB PRP$ NN IN CD NNP CD .\nBasutoland was renamed the Kingdom of Lesotho upon independence from the UK in 1966 .\tNNP VBD VBN DT NNP IN NNP IN NN IN DT NNP IN CD .\nThe Basuto National Party ruled for the first two decades .\tDT NNP NNP NNP VBD IN DT JJ CD NNS .\nKing MOSHOESHOE was exiled in 1990 , but returned to Lesotho in 1992 and was reinstated in 1995 and subsequently succeeded by his son , King LETSIE III , in 1996 .\tNNP NNP VBD VBN IN CD , CC VBD TO NNP IN CD CC VBD VBN IN CD CC RB VBN IN PRP$ NN , NNP NNP NNP , IN CD .\nConstitutional government was restored in 1993 after seven years of military rule .\tJJ NN VBD VBN IN CD IN CD NNS IN JJ NN .\nIn 1998 , violent protests and a military mutiny following a contentious election prompted a brief but bloody intervention by South African and Botswana military forces under the aegis of the Southern African Development Community .\tIN CD , JJ NNS CC DT JJ NN VBG DT JJ NN VBD DT JJ CC JJ NN IN NNP NNP CC NNP JJ NNS IN DT NN IN DT JJ NNP NNP NNP .\nSubsequent constitutional reforms restored relative political stability .\tJJ JJ NNS VBD JJ JJ NN .\nPeaceful parliamentary elections were held in 2002 , but the National Assembly elections of February 2007 were hotly contested and aggrieved parties continue to dispute how the electoral law was applied to award proportional seats in the Assembly .\tJJ JJ NNS VBD VBN IN CD , CC DT NNP NNP NNS IN NNP CD VBD RB VBN CC VBN NNS VBP TO VB WRB DT JJ NN VBD VBN TO NN JJ NNS IN DT NN .\nTourism , petroleum refining , and offshore finance are the mainstays of this small economy , which is closely tied to the outside world .\tNN , NN NN , CC JJ NN VBP DT NNS IN DT JJ NN , WDT VBZ RB VBN TO DT JJ NN .\nAlthough GDP grew slightly during the past decade , the island enjoys a high per capita income and a well-developed infrastructure compared with other countries in the region .\tIN NN VBD RB IN DT JJ NN , DT NN VBZ DT JJ IN NN NN CC DT JJ NN VBN IN JJ NNS IN DT NN .\nCuracao has an excellent natural harbor that can accommodate large oil tankers .\tNNP VBZ DT JJ JJ NN WDT MD VB JJ NN NNS .\nThe Venezuelan state oil company leases the single refinery on the island from the government ; most of the oil for the refinery is imported from Venezuela ; most of the refined products are exported to the US .\tDT JJ NN NN NN VBZ DT JJ NN IN DT NN IN DT NN ; JJS IN DT NN IN DT NN VBZ VBN IN NNP ; JJS IN DT JJ NNS VBP VBN TO DT NNP .\nAlmost all consumer and capital goods are imported , with the US , Brazil , Italy , and Mexico being the major suppliers .\tRB DT NN CC NN NNS VBP VBN , IN DT NNP , NNP , NNP , CC NNP VBG DT JJ NNS .\nThe government is attempting to diversify its industry and trade and has signed an Association Agreement with the EU to expand business there .\tDT NN VBZ VBG TO VB PRP$ NN CC NN CC VBZ VBN DT NNP NN IN DT NNP TO VB NN RB .\nPoor soils and inadequate water supplies hamper the development of agriculture .\tJJ NNS CC JJ NN NNS VBP DT NN IN NN .\nBudgetary problems complicate reform of the health and pension systems for an aging population .\tJJ NNS VBZ NN IN DT NN CC NN NNS IN DT VBG NN .\nA quarrel had arisen between the Horse and the Stag , so the Horse came to a Hunter to ask his help to take revenge on the Stag .\tDT NN VBD VBN IN DT NN CC DT NN , IN DT NN VBD TO DT NN TO VB PRP$ NN TO VB NN IN DT NN .\nThe Hunter agreed , but said : ' If you desire to conquer the Stag , you must permit me to place this piece of iron between your jaws , so that I may guide you with these reins , and allow this saddle to be placed upon your back so that I may keep steady upon you as we follow after the enemy . '\tDT NN VBD , CC VBD : `` IN PRP VBP TO VB DT NNP , PRP MD VB PRP TO VB DT NN IN NN IN PRP$ NNS , RB IN PRP MD VB PRP IN DT NNS , CC VB DT NN TO VB VBN IN PRP$ NN RB IN PRP MD VB JJ IN PRP IN PRP VBP IN DT NN . ``\nThe Horse agreed to the conditions , and the Hunter soon saddled and bridled him .\tDT NN VBD TO DT NNS , CC DT NN RB VBD CC VBD PRP .\nThen with the aid of the Hunter the Horse soon overcame the Stag , and said to the Hunter : ' Now , get off , and remove those things from my mouth and back . '\tRB IN DT NN IN DT NN DT NN RB VBD DT NNP , CC VBD TO DT NN : `` RB , VB RP , CC VB DT NNS IN PRP$ NN CC RB . ``\n' Not so fast , friend , ' said the Hunter .\t`` RB RB JJ , NN , `` VBD DT NN .\n' I have now got you under bit and spur , and prefer to keep you as you are at present . '\t`` PRP VBP RB VBN PRP IN NN CC NN , CC VB TO VB PRP IN PRP VBP IN JJ . ``\nIf you allow men to use you for your own purposes , they will use you for theirs .\tIN PRP VBP NNS TO VB PRP IN PRP$ JJ NNS , PRP MD VB PRP IN NN .\nTHE POMEGRANATE and Apple-Tree disputed as to which was the most beautiful .\tDT NN CC NN VBD IN TO WDT VBD DT RBS JJ .\nWhen their strife was at its height , a Bramble from the neighboring hedge lifted up its voice , and said in a boastful tone : ' Pray , my dear friends , in my presence at least cease from such vain disputings . '\tWRB PRP$ NN VBD IN PRP$ NN , DT NN IN DT JJ NN VBD RP PRP$ NN , CC VBD IN DT JJ NN IN `` NNP , PRP$ JJ NNS , IN PRP$ NN IN JJS VB IN JJ JJ NNS . ``\n' ARE the industries of this country in a flourishing condition ? ' asked a Traveller from a Foreign Land of the first man he met in America .\t`` VBP DT NNS IN DT NN IN DT JJ NN . `` VBD DT NN IN DT JJ NN IN DT JJ NN PRP VBD IN NNP .\n' Splendid ! ' said the Man .\t`` JJ . `` VBD DT NN .\n' I have more orders than I can fill . '\t`` PRP VBP JJR NNS IN PRP MD VB . ``\n' What is your business ? ' the Traveller from a Foreign Land inquired .\t`` WP VBZ PRP$ NN . `` DT NN IN DT NNP NNP VBD .\nThe Man replied , ' I make boxing-gloves for the tongues of pugilists . '\tDT NN VBD , `` PRP VBP NNS IN DT NNS IN NNS . ``\nA statistician is someone who is good with numbers but lacks the personality to be an accountant\tDT NN VBZ DT WP VBZ JJ IN NNS CC VBZ DT NN TO VB DT NN\nThe band at Ellsworth Air Force Base , South Dakota , was required to play for all generals who arrived on base .\tDT NN IN NNP NNP NNP NNP , NNP NNP , VBD VBN TO VB IN DT NNS WP VBD IN NN .\nOne morning , when the commanding officer heard on the radio that a General Frost was expected just after noon , he sent the band scrambling to the flight line with instruments .\tCD NN , WRB DT JJ NN VBN IN DT NN IN DT NNP NNP VBD VBN RB IN NN , PRP VBD DT NN VBG TO DT NN NN IN NNS .\nOne of the musicians had also heard the radio announcement .\tCD IN DT NNS VBD RB VBN DT NN NN .\nHe took the C.O . aside for a whispered conference .\tPRP VBD DT NNP . RB IN DT JJ NN .\nWhen they returned , the officer told us the performance was canceled .\tWRB PRP VBD , DT NN VBD PRP DT NN VBD VBN .\nThere was no arriving general .\tEX VBD DT VBG NN .\nWe had almost played for the weather forecast .\tPRP VBD RB VBN IN DT NN NN .\nA gauge of future U.S. economic activity shows the recession is likely to continue another three to six months before recovery begins .\tDT NN IN JJ NNP JJ NN VBZ DT NN VBZ JJ TO VB DT CD CC CD NNS IN NN VBZ .\nMonday 's report from a business group , the Conference Board , says its index of leading indicators fell 0.3 percent in March .\tNNP POS NN IN DT NN NN , DT NNP NNP , VBZ PRP$ NN IN VBG NNS VBD CD NN IN NNP .\nEconomists watch stock prices , unemployment claims , building permits and other factors to predict economic activity in the near future .\tNNS VBP NN NNS , NN NNS , NN NNS CC JJ NNS TO VB JJ NN IN DT JJ NN .\nSome indicators are not falling as fast as they had been , prompting some experts to predict the economy will begin to recover late this year .\tDT NNS VBP RB VBG RB RB IN PRP VBD VBN , VBG DT NNS TO VB DT NN MD VB TO VB RB DT NN .\nUganda has lifted the suspension of a private radio station whose host criticized the government over the death of Sudanese Vice President John Garang .\tNNP VBZ VBN DT NN IN DT JJ NN NN WP$ NN VBD DT NN IN DT NN IN JJ NNP NNP NNP NNP .\nKFM radio renewed broadcasts Thursday , including host Andrew Mwenda whose comments sparked the dispute .\tNNP NN VBN NNS NNP , VBG NN NNP NNP WP$ NNS VBD DT NN .\nLast week , Uganda 's Broadcasting Council shut down the station after Mr. Mwenda accused the government of ' incompetence ' for flying Mr. Garang in what he called a ' junk ' helicopter .\tJJ NN , NNP POS NNP NNP VBD RP DT NN IN NNP NNP VBD DT NN IN `` NN `` IN VBG NNP NNP IN WP PRP VBD DT `` NN `` NN .\nAuthorities also arrested Mr. Mwenda on charges of sedition , saying the comments could have sparked mass riots .\tNNS RB VBN NNP NNP IN NNS IN NN , VBG DT NNS MD VB VBN JJ NNS .\nHe has since been freed on bail .\tPRP VBZ IN VBN VBN IN NN .\nUgandan officials have also ordered the station to pay nearly $ 3,000 for costs of the suspension procedure .\tJJ NNS VBP RB VBN DT NN TO VB RB $ CD IN NNS IN DT NN NN .\nMr. Garang was killed on July 30 while flying back to southern Sudan aboard Ugandan President Yoweri Museveni 's personal helicopter .\tNNP NNP VBD VBN IN NNP CD IN VBG RB TO JJ NNP IN JJ NNP NNP NNP POS JJ NN .\nA British newspaper says one of its reporters has disappeared in Iraq and it fears he has been kidnapped by gunmen .\tDT JJ NN VBZ CD IN PRP$ NNS VBZ VBN IN NNP CC PRP VBZ PRP VBZ VBN VBN IN NNS .\nThe Guardian newspaper says Rory Carroll , a 33-year-old Irishman , was on assignment in Baghdad when he vanished earlier Wednesday .\tDT NNP NN VBZ NNP NNP , DT JJ NN , VBD IN NN IN NNP WRB PRP VBD RBR NNP .\nThe paper issued an appeal for information about his whereabouts .\tDT NN VBD DT NN IN NN IN PRP$ NNS .\nMeanwhile , the British defense ministry reports that a British soldier was killed in a roadside bomb blast late Tuesday in the southern city of Basra .\tRB , DT JJ NN NN VBZ IN DT JJ NN VBD VBN IN DT NN NN NN JJ NNP IN DT JJ NN IN NNP .\nAnd the U.S. military says a roadside bomb also killed one American soldier and wounded two others late Tuesday south of Baghdad , near Iskandariyah .\tCC DT NNP NN VBZ DT NN NN RB VBD CD JJ NN CC VBD CD NNS JJ NNP NN IN NNP , IN NNP .\nThe new violence was reported as Iraqi election officials continue counting and auditing results from Saturday 's referendum on the constitution .\tDT JJ NN VBD VBN IN JJ NN NNS VBP VBG CC VBG NNS IN NNP POS NN IN DT NN .\nThe Colombian navy says more than 100 Ecuadorean migrants are missing and feared drowned after their overcrowded boat capsized and sank in the Pacific Ocean .\tDT JJ NN VBZ JJR IN CD JJ NNS VBP VBG CC VBD VBN IN PRP$ JJ NN VBD CC VBD IN DT NNP NNP .\nAuthorities said Wednesday that the migrants , hoping to enter the United States illegally , were aboard the vessel when it sank last Friday off Colombia 's coast .\tNNS VBD NNP IN DT NNS , VBG TO VB DT NNP NNPS RB , VBD IN DT NN WRB PRP VBD JJ NNP IN NNP POS NN .\nSeven men and two women survived .\tCD NNS CC CD NNS VBD .\nThey were rescued by a fishing boat .\tPRP VBD VBN IN DT NN NN .\nInvestigators say the overcrowded Ecuadorean vessel had the capacity for 15 people but that as many as 120 people may have been on board .\tNNS VBP DT JJ JJ NN VBD DT NN IN CD NNS CC IN RB JJ IN CD NNS MD VB VBN IN NN .\nThe Colombian navy has deployed an airplane and boat to search for bodies .\tDT JJ NN VBZ VBN DT NN CC NN TO VB IN NNS .\nEcuador is also participating in the search .\tNNP VBZ RB VBG IN DT NN .\nOfficials say the doomed boat had set sail from the Ecuadorean port of Manta .\tNNS VBP DT JJ NN VBD VBN NN IN DT JJ NN IN NNP .\nUS Secretary of Defense Donald Rumsfeld has met with his Russian counterpart , Sergei Ivanov , for talks on non-proliferation and other issues of bilateral interest .\tNNP NNP IN NNP NNP NNP VBZ VBN IN PRP$ JJ NN , NNP NNP , IN NNS IN JJ CC JJ NNS IN JJ NN .\nAt a joint news conference in Washington Tuesday , Secretary Rumsfeld said the government that evolves after Iraq 's elections later this month will be a broadly represented administration .\tIN DT JJ NN NN IN NNP NNP , NNP NNP VBD DT NN WDT VBZ IN NNP POS NNS RB DT NN MD VB DT RB VBN NN .\nHe said polls indicate all groups , including Sunnis , want to participate in the January 30 election .\tPRP VBD NNS VBP DT NNS , VBG NNP , VBP TO VB IN DT NNP CD NN .\nMr. Rumsfeld also rejected news reports saying the United States plans to send special forces into Syria in the hunt for militants .\tNNP NNP RB VBD NN NNS VBG DT NNP NNPS VBZ TO VB JJ NNS IN NNP IN DT NN IN NNS .\nThe two officials also discussed defense and security cooperation .\tDT CD NNS RB VBD NN CC NN NN .\nMr. Ivanov also is meeting today at the White House with President Bush .\tNNP NNP RB VBZ VBG NN IN DT NNP NNP IN NNP NNP .\nChina is sending a medical team to its earthquake ravaged southwest to offer reverse sterilization surgery for women who lost their only children in the May 12th quake .\tNNP VBZ VBG DT JJ NN TO PRP$ NN VBD JJ TO VB JJ NN NN IN NNS WP VBD PRP$ JJ NNS IN DT NNP CD NN .\nChina 's ' one-child ' policy limits most families to a single child in most cases and many mothers opt for sterilization surgery after giving birth .\tNNP POS `` JJ `` NN NNS RBS NNS TO DT JJ NN IN JJS NNS CC JJ NNS VBP IN NN NN IN VBG NN .\nThousands of schools collapsed during the May 12th earthquake and by some estimates more than 6,000 students died .\tNNS IN NNS VBD IN DT NNP CD NN CC IN DT NNS JJR IN CD NNS VBD .\nThe offer of reverse sterilization surgery comes as Chinese authorities block access to schools destroyed by the quake in an apparent effort to quell demonstrations by angry , grieving parents .\tDT NN IN JJ NN NN VBZ IN JJ NNS VBP NN TO NNS VBN IN DT NN IN DT JJ NN TO VB NNS IN JJ , VBG NNS .\nThe director of the International Atomic Energy Agency , Mohamed ElBaradei , has stressed the importance of worldwide efforts to guarantee the security of nuclear materials , as he accepted the Nobel Peace Prize .\tDT NN IN DT NNP NNP NNP NNP , NNP NNP , VBZ VBN DT NN IN JJ NNS TO VB DT NN IN JJ NNS , IN PRP VBD DT NNP NNP NNP .\nAt ceremonies in Oslo , Norway , Mr. ElBaradei stressed the importance of the security of the human family .\tIN NNS IN NNP , NNP , NNP NNP VBD DT NN IN DT NN IN DT JJ NN .\nHe said world security strategies have not caught up with the security threats the world faces .\tPRP VBD NN NN NNS VBP RB VBN RP IN DT NN NNS DT NN VBZ .\nIn accepting the prize for himself and his organization , Mr. ElBaradei noted that 15 years after the end of the Cold War removed divisions in Europe , the divisions between rich and poor countries still remain .\tIN VBG DT NN IN PRP CC PRP$ NN , NNP NNP VBD IN CD NNS IN DT NN IN DT NNP NNP VBD NNS IN NNP , DT NNS IN JJ CC JJ NNS RB VBP .\nHe expressed hope that globalization will bring the world community together in resolving problems .\tPRP VBD NN IN NN MD VB DT NN NN RB IN VBG NNS .\nOther Nobel prizes are being awarded in Stockhlom , Sweden , Saturday .\tJJ NNP NNS VBP VBG VBN IN NNP , NNP , NNP .\nLiterature Prize winner Harold Pinter will not attend because of health problems .\tNNP NNP NN NNP NNP MD RB VB IN IN NN NNS .\nIranian President Mahmoud Ahmadinejad has issued a defiant message to U.S. President George Bush , warning that the United States will not be able to attack Iran .\tJJ NNP NNP NNP VBZ VBN DT JJ NN TO NNP NNP NNP NNP , VBG IN DT NNP NNPS MD RB VB JJ TO VB NNP .\nMr. Ahmadinejad said Wednesday that Mr. Bush 's era has ' come to an end . '\tNNP NNP VBD NNP IN NNP NNP POS NN VBZ `` VBN TO DT NN . ``\nThe Iranian president also mocked what he called Mr. Bush 's desire to attack Iran , saying the U.S. leader will not be able to harm ' even one centimeter ' of the country .\tDT JJ NN RB VBD WP PRP VBD NNP NNP POS NN TO VB NNP , VBG DT NNP NN MD RB VB JJ TO VB `` RB CD NN `` IN DT NN .\nMr. Ahmadinejad was speaking during a visit to the central Iranian city of Shahr-e-Kord .\tNNP NNP VBD VBG IN DT NN TO DT JJ JJ NN IN NNP .\nOn Tuesday , President Bush and European Union leaders met in Slovenia and warned of additional steps to pressure Iran to stop its controversial nuclear program .\tIN NNP , NNP NNP CC NNP NNP NNS VBD IN NNP CC VBD IN JJ NNS TO VB NNP TO VB PRP$ JJ JJ NN .\nThe United States and five other major powers also are offering Iran new incentives to suspend its nuclear work .\tDT NNP NNPS CC CD JJ JJ NNS RB VBP VBG NNP JJ NNS TO VB PRP$ JJ NN .\nEU foreign policy chief Javier Solana will visit Tehran later this week to formally present that offer .\tNNP JJ NN NN NNP NNP MD VB NNP RB DT NN TO RB VB DT NN .\nU.S. Middle East envoy George Mitchell holds talks with Israeli Prime Minister Benjamin Netanyahu in Jerusalem Thursday as he launches a new round of indirect peace talks .\tNNP NNP NNP NN NNP NNP VBZ NNS IN JJ NNP NNP NNP NNP IN NNP NNP IN PRP VBZ DT JJ NN IN JJ NN NNS .\nMitchell met Wednesday in Ramallah with Palestinian President Mahmoud Abbas .\tNNP VBD NNP IN NNP IN JJ NNP NNP NNP .\nChief Palestinian negotiator Saeb Erekat says the talks focused on the borders of a future Palestinian state .\tJJ JJ NN NNP NNP VBZ DT NNS VBD IN DT NNS IN DT JJ JJ NN .\nThe Palestinians want a state in areas Israel captured in the 1967 war , with East Jerusalem as a capital .\tDT NNS VBP DT NN IN NNS NNP VBD IN DT CD NN , IN NNP NNP IN DT NN .\nThey are demanding Israel stop building settlements in these areas .\tPRP VBP VBG NNP VB VBG NNS IN DT NNS .\nMr. Netanyahu has accepted the idea of a Palestinian state , but with conditions and without East Jerusalem .\tNNP NNP VBZ VBN DT NN IN DT JJ NN , CC IN NNS CC IN NNP NNP .\nMitchell plans to shuttle back and forth between both sides for as long as four months to help narrow differences .\tNNP VBZ TO NN RB CC RB IN DT NNS IN RB JJ IN CD NNS TO VB JJ NNS .\nU.S. military officials in Afghanistan say coalition troops have killed three Taleban militants , including a top commander , during a firefight in southeastern Paktika province , near the Pakistani border .\tNNP NN NNS IN NNP VBP NN NNS VBP VBN CD NNP NNS , VBG DT JJ NN , IN DT NN IN JJ NNP NN , IN DT JJ NN .\nThe officials say an Afghan woman and two children were also killed in the gunfight that broke out late Tuesday when coalition troops tried to arrest the militants who were hiding in a village .\tDT NNS VBP DT JJ NN CC CD NNS VBD RB VBN IN DT NN WDT VBD RP RB NNP WRB NN NNS VBD TO VB DT NNS WP VBD VBG IN DT NN .\nThe military says among the dead was Taleban commander Raz Mohammed , who was implicated in several attacks against coalition forces .\tDT JJ VBZ IN DT NN VBD NNP NN NNP NNP , WP VBD VBN IN JJ NNS IN NN NNS .\nWednesday , five suspected insurgents were killed in a clash with U.S. troops in nearby Khost province .\tNNP , CD JJ NNS VBD VBN IN DT NN IN NNP NNS IN JJ NNP NN .\nU.S.-led coalition forces in Afghanistan are hunting Taleban loyalists who have been waging a low-level insurgency since the hard-line Islamic regime was ousted in 2001 .\tJJ NN NNS IN NNP VBP VBG NNP NNS WP VBP VBN VBG DT JJ NN IN DT JJ NNP NN VBD VBN IN CD .\nVenezuelan President Hugo Chavez has annulled a controversial intelligence decree that would have forced Venezuelans to become informants and report on their neighbors or face prison time .\tJJ NNP NNP NNP VBZ VBN DT JJ NN NN WDT MD VB VBN NNS TO VB NNS CC NN IN PRP$ NNS CC NN NN NN .\nPresident Chavez took the action Tuesday , saying mistakes were made that must now be corrected .\tNNP NNP VBD DT NN NNP , VBG NNS VBD VBN IN MD RB VB VBN .\nThe move comes just days after Mr. Chavez said the government would amend the law .\tDT NN VBZ RB NNS IN NNP NNP VBD DT NN MD VB DT NN .\nThe new law , which sparked protests , called for Venezuela 's two main intelligence services to be replaced with new agencies overseen by Mr. Chavez .\tDT JJ NN , WDT VBD NNS , VBN IN NNP POS CD JJ NN NNS TO VB VBN IN JJ NNS VBN IN NNP NNP .\nIt also required Venezuelans to act as informants to secret police and community monitoring groups loyal to the president .\tPRP RB VBD NNS TO VB IN NNS TO JJ NN CC NN NN NNS JJ TO DT NN .\nAnyone refusing to provide information faced two to six years in prison .\tDT VBG TO VB NN VBD CD CC CD NNS IN NN .\nHuman rights groups criticized the law , saying it could silence the president 's critics .\tJJ NNS NNS VBD DT NN , VBG PRP MD VB DT NN POS NNS .\nMr. Chavez had said the law was intended to protect national security and combat U.S. interference .\tNNP NNP VBD VBN DT NN VBD VBN TO VB JJ NN CC NN NNP NN .\nOrganizers of Afghanistan 's landmark general elections say that according to early reports from nearly all polling stations , turnout was 53 percent .\tNNS IN NNP POS NN JJ NNS VBP IN VBG TO JJ NNS IN RB DT NN NNS , NN VBD CD NN .\nU.N.-Afghan chief electoral officer Peter Erben says Thursday this is in line with earlier estimates , with some 6.6 million voters casting ballots in the first parliamentary elections in more than 30 years .\tJJ JJ JJ NN NNP NNP VBZ NNP DT VBZ IN NN IN JJR NNS , IN DT CD CD NNS VBG NNS IN DT JJ JJ NNS IN JJR IN CD NNS .\nThe figure for Sunday 's polls is more than one million lower than in last year 's presidential election .\tDT NN IN NNP POS NNS VBZ JJR IN CD CD JJR IN IN JJ NN POS JJ NN .\nAnalysts say a range of factors , including a complex electoral system and the fear of attacks by Taleban insurgents , have caused the drop in numbers .\tNNS VBP DT NN IN NNS , VBG DT JJ JJ NN CC DT NN IN NNS IN NNP NNS , VBP VBN DT NN IN NNS .\nMeanwhile , vote counting from the elections is under way .\tRB , NN NN IN DT NNS VBZ IN NN .\nElection officials say they plan to issue intermittent results , but a final certified result for all of the provinces is expected to take more than month .\tNN NNS VBP PRP VBP TO VB JJ NNS , CC DT JJ JJ NN IN DT IN DT NNS VBZ VBN TO VB JJR IN NN .\nUnited Nations officials say new fighting has been reported between Congolese troops and dissident soldiers in eastern Democratic Republic of Congo .\tNNP NNP NNS VBP JJ NN VBZ VBN VBN IN JJ NNS CC JJ NNS IN JJ JJ NNP IN NNP .\nThe U.N. mission says Sunday 's violence occurred near the town of Kanyabayonga , which is held by dissident army units made of former rebels .\tDT NNP NN VBZ NNP POS NN VBD IN DT NN IN NNP , WDT VBZ VBN IN JJ NN NNS VBN IN JJ NNS .\nTens of thousands of people have fled the area since clashes started more than a week ago .\tNNS IN NNS IN NNS VBP VBN DT NN IN NNS VBD JJR IN DT NN RB .\nDissident soldiers are opposed to a government decision sending thousands of reinforcements to restore order in eastern Congo .\tJJ NNS VBP VBN TO DT NN NN VBG NNS IN NNS TO VB NN IN JJ NNP .\nKinshasa ordered the deployment after neighboring Rwanda warned it may send troops to attack Rwandan Hutu fighters in eastern Congo .\tNNP VBD DT NN IN VBG NNP VBD PRP MD VB NNS TO VB JJ NNP NNS IN JJ NNP .\nRwanda blames the militants for the country 's 1994 genocide .\tNNP VBZ DT NNS IN DT NN POS CD NN .\nSaturday , U.N. officials said foreign troops have recently crossed into eastern Congo , but did not confirm if they were Rwandan soldiers .\tNNP , NNP NNS VBD JJ NNS VBP RB VBN IN JJ NNP , CC VBD RB VB IN PRP VBD JJ NNS .\nU.S. officials in Beijing have announced that Chinese President Hu Jintao plans to visit the United States in April .\tNNP NNS IN NNP VBP VBN IN JJ NNP NNP NNP VBZ TO VB DT NNP NNPS IN NNP .\nDetails of his trip have not been released .\tNNS IN PRP$ NN VBP RB VBN VBN .\nThe news comes as U.S. Deputy Secretary of State Robert Zoellick is in Beijing for talks with top Chinese officials on bilateral relations , security and proliferation issues .\tDT NN VBZ IN NNP NNP NNP IN NNP NNP NNP VBZ IN NNP IN NNS IN JJ JJ NNS IN JJ NNS , NN CC NN NNS .\nZoellick met with Chinese Premier Wen Jiabao Tuesday , and is expected to meet with Foreign Minister Li Zhaoxing .\tNNP VBD IN JJ NNP NNP NNP NNP , CC VBZ VBN TO VB IN NNP NNP NNP NNP .\nAs part of his three-day trip , Zoellick will also travel to the southwestern city of Chengdu .\tIN NN IN PRP$ JJ NN , NNP MD RB VB TO DT JJ NN IN NNP .\nBrazilian drug gangs have stepped up their resistance to an army operation in the slums of Rio de Janeiro , clashing with troops during daylight hours .\tJJ NN NNS VBP VBN RP PRP$ NN TO DT NN NN IN DT NNS IN NNP NNP NNP , VBG IN NNS IN JJ NNS .\nThe two sides exchanged gunfire , with gangs lobbing grenades , in the downtown Providencia shantytown Friday .\tDT CD NNS VBD NN , IN NNS VBG NNS , IN DT NN NNP NN NNP .\nA man , woman and young boy were wounded by fragments during the battle .\tDT NN , NN CC JJ NN VBD VBN IN NNS IN DT NN .\nThe army launched the show of force one week ago in response to the theft of 11 weapons from a military barracks .\tDT NN VBD DT NN IN NN CD NN RB IN NN TO DT NN IN CD NNS IN DT JJ NNS .\nAbout 1,500 troops have been mobilized in several slum areas .\tIN CD NNS VBP VBN VBN IN JJ NN NNS .\nWhile residents from other areas have welcomed the security crackdown , critics have questioned the use of the military in a police role and slum dwellers have complained their lives have been disrupted .\tIN NNS IN JJ NNS VBP VBN DT NN NN , NNS VBP VBN DT NN IN DT NN IN DT NN NN CC NN NNS VBP VBN PRP$ NNS VBP VBN VBN .\nRio is one of the world 's most violent cities .\tNNP VBZ CD IN DT NN POS RBS JJ NNS .\nIts slums are often the scene of gang and drug-related violence that kills hundreds of people each year .\tPRP$ NNS VBP RB DT NN IN NN CC JJ NN WDT VBZ NNS IN NNS DT NN .\nThe United States and France are moving closer to a deal on a United Nations resolution calling for an end to the fighting in Lebanon .\tDT NNP NNPS CC NNP VBP VBG JJR TO DT NN IN DT NNP NNP NN VBG IN DT NN TO DT NN IN NNP .\nIn New York Friday , U.N. Security Council President Nana Effah-Apenteng said American and French diplomats have taken the lead in drafting the resolution .\tIN NNP NNP NNP , NNP NNP NNP NNP NNP NNP VBD JJ CC JJ NNS VBP VBN DT NN IN VBG DT NN .\nBut he said talks may continue through Monday to resolve remaining differences on the best way to stop the fighting .\tCC PRP VBD NNS MD VB IN NNP TO VB VBG NNS IN DT JJS NN TO VB DT NN .\nThe truce resolution has been stalled by U.S. / French differences over whether a cease-fire should precede deployment of peacekeeping troops along the Israeli-Lebanese border .\tDT NN NN VBZ VBN VBN IN NNP CC JJ NNS IN IN DT NN MD VB NN IN VBG NNS IN DT JJ NN .\nIn a sign of the increasing urgency of stopping the violence between Israel and Hezbollah , President Bush and French President Jacques Chirac both discussed the issue with U.N. Secretary-General Kofi Annan Friday .\tIN DT NN IN DT VBG NN IN VBG DT NN IN NNP CC NNP , NNP NNP CC JJ NNP NNP NNP DT VBD DT NN IN NNP NN NNP NNP NNP .\nCuban President Fidel Castro has announced the renovation of the island 's electricity system , an effort to put an end to energy blackouts that have plagued Cubans for the past two years .\tJJ NNP NNP NNP VBZ VBN DT NN IN DT NN POS NN NN , DT NN TO VB DT NN TO NN NNS WDT VBP VBN NNS IN DT JJ CD NNS .\nIn a speech Tuesday , Mr. Castro said the nation 's massive energy plants will be replaced by smaller , regional ones and backed up by generators .\tIN DT NN NNP , NNP NNP VBD DT NN POS JJ NN NNS MD VB VBN IN JJR , JJ NNS CC VBN RP IN NNS .\nCuba 's energy problem reached crisis point in 2004 when a key electrical plant broke down .\tNNP POS NN NN VBD NN NN IN CD WRB DT JJ JJ NN VBD RP .\nSince then , Cubans have suffered sporadic blackouts , often during the hottest months when demand for air conditioning is high .\tIN RB , NNS VBP VBN JJ NNS , RB IN DT JJS NNS WRB NN IN NN NN VBZ JJ .\nThe blackouts and power surges damage some appliances , leaving food to rot in the summer heat .\tDT NNS CC NN VBZ NN DT NNS , VBG NN TO NN IN DT NN NN .\nWitnesses in Somalia say heavy fighting between Islamist insurgents and Ethiopian troops has killed at least five people in the capital .\tNNS IN NNP VBP JJ NN IN NNP NNS CC JJ NNS VBZ VBN IN JJS CD NNS IN DT NN .\nThe latest fighting began after Islamic rebels attacked an Ethiopian military base in Mogadishu .\tDT JJS NN VBD IN JJ NNS VBD DT JJ JJ NN IN NNP .\nWitnesses say several civilians were killed by stray bullets and mortar fire .\tNNS VBP JJ NNS VBD VBN IN JJ NNS CC NN NN .\nEthiopian troops entered Somalia two years ago to help the interim government fight an Islamist movement that was threatening to take over the country .\tJJ NNS VBD NNP CD NNS RB TO VB DT JJ NN VB DT JJ NN WDT VBD VBG TO VB RP DT NN .\nSomalia has been continuously torn by conflict since the fall of dictator Mohamed Siad Barre in 1991 .\tNNP VBZ VBN RB VBN IN NN IN DT NN IN NN NNP NNP NNP IN CD .\nIsraeli troops shot and killed three Palestinians near the Israel-Gaza border fence at the Kissufin crossing , Tuesday .\tJJ NNS VBD CC VBD CD NNS IN DT NNP NN NN IN DT NNP VBG , NNP .\nThe Israeli army said soldiers opened fire after spotting suspicious people near the fence .\tDT JJ NN VBD NNS VBD NN IN VBG JJ NNS IN DT NN .\nIsraeli soldiers arrested at least five suspected Palestinian militants after a brief exchange of gunfire near another Gaza border crossing .\tJJ NNS VBN IN JJS CD JJ JJ NNS IN DT JJ NN IN NN IN DT NNP NN VBG .\nOne of the militants was wounded .\tCD IN DT NNS VBD VBN .\nThe Israeli military said the firefight broke out when soldiers surrounded a house where the militants were holed up .\tDT JJ NN VBD DT NN VBD RP WRB NNS VBN DT NN WRB DT NNS VBD VBN RP .\nPalestinian witnesses say a large number of soldiers backed by tanks and helicopter gunships took part in the operations at Karni - the main terminal for transport of goods between Israel and the Gaza Strip .\tJJ NNS VBP DT JJ NN IN NNS VBN IN NNS CC NN NNS VBD NN IN DT NNS IN NNP IN DT JJ NN IN NN IN NNS IN NNP CC DT NNP NNP .\nWitnesses said Israeli tanks and bulldozers also destroyed farmlands near the town of Khan Yunis .\tNNS VBD JJ NNS CC NNS RB VBD NNS IN DT NN IN NNP NNP .\nIsraeli forces have been carrying out brief incursions into Gaza since launching an offensive in late June to stop cross-border rocket attacks and rescue a captured Israeli soldier .\tJJ NNS VBP VBN VBG RP JJ NNS IN NNP IN VBG DT NN IN JJ NNP TO VB JJ NN NNS CC NN DT VBN JJ NN .\nBolivian President-elect Evo Morales says he welcomes dialogue with the United States and forgives the U.S. government for what he calls ' so many humiliations . '\tJJ NN NNP NNP VBZ PRP VBZ NN IN DT NNP NNPS CC VBZ DT NNP NN IN WP PRP VBZ `` RB JJ NNS . ``\nMorales made the comments Wednesday while visiting South Africa ahead of his inauguration January 22 .\tNNP VBD DT NNS NNP IN VBG NNP NNP RB IN PRP$ NN NNP CD .\nHe said any dialogue that helps end discrimination and poverty is welcome .\tPRP VBD DT NN WDT VBZ NN NN CC NN VBZ JJ .\nMorales did not explain what he meant by ' humiliations . '\tNNPS VBD RB VB WP PRP VBD IN `` NNS . ``\nBut he has made no secret of his plans to end a U.S.-funded coca eradication program at work in his country .\tCC PRP VBZ VBN DT NN IN PRP$ NNS TO VB DT JJ NN NN NN IN NN IN PRP$ NN .\nMorales campaigned on promises to encourage cultivation of the coca plant , which has traditional uses but also is used to make cocaine .\tNNP VBD IN NNS TO VB NN IN DT NN NN , WDT VBZ JJ NNS CC RB VBZ VBN TO VB NN .\nVenezuelan President Hugo Chavez Tuesday said he is sure the U.S. Embassy in Bolivia has already started plotting to overthrow Morales .\tJJ NNP NNP NNP NNP VBD PRP VBZ JJ DT NNP NNP IN NNP VBZ RB VBN VBG TO VB NNP .\nBut an embassy spokeswoman told the Associated Press that the idea is ridiculous .\tCC DT JJ NN VBD DT NNP NNP IN DT NN VBZ JJ .\nThe U.S. ambassador to New Delhi has expressed regret for his remarks that a landmark nuclear deal could fall apart if India votes against sending Iran to the United Nations Security Council for sanctions .\tDT NNP NN TO NNP NNP VBZ VBN NN IN PRP$ NNS IN DT NN JJ NN MD VB RB IN NNP NNS IN VBG NNP TO DT NNP NNP NNP NNP IN NNS .\nIn a statement Thursday , Ambassador David Mulford expressed his sincere regrets , but said his remarks had been taken out of context .\tIN DT NN NNP , NNP NNP NNP VBD PRP$ JJ NNS , CC VBD PRP$ NNS VBD VBN VBN IN IN NN .\nIn Washington , the State Department distanced itself from Mulford 's comments , saying he was expressing his own opinion .\tIN NNP , DT NNP NNP VBD PRP IN NNP POS NNS , VBG PRP VBD VBG PRP$ JJ NN .\nAlso Thursday , India 's Foreign Secretary Shyam Saran summoned Ambassador Mulford to tell him that his remarks were inappropriate and not conductive to building a strong partnership between the two countries .\tRB NNP , NNP POS NNP NNP NNP NNP VBD NNP NNP TO VB PRP IN PRP$ NNS VBD JJ CC RB JJ TO VBG DT JJ NN IN DT CD NNS .\nThe landmark agreement calls for the U.S. to share civilian nuclear technology with India and allow the supply of nuclear fuel to New Delhi .\tDT NN NN VBZ IN DT NNP TO VB JJ JJ NN IN NNP CC VB DT NN IN JJ NN TO NNP NNP .\nIn return , India is to separate its civilian and military nuclear programs and allow international inspection of its civilian facilities .\tIN NN , NNP VBZ TO VB PRP$ JJ CC JJ JJ NNS CC VB JJ NN IN PRP$ JJ NNS .\nPalestinian security sources say Israel troops are withdrawing from the West Bank city of Nablus after two days of house-to-house searches for militants and bomb factories .\tJJ NN NNS VBP NNP NNS VBP VBG IN DT NNP NNP NN IN NNP IN CD NNS IN NN NNS IN NNS CC NN NNS .\nThe sources say the Israeli forces began leaving Nablus late Monday .\tDT NNS VBP DT JJ NNS VBD VBG NNP JJ NNP .\nHowever , the Israeli military has not confirmed that the operation is completely over .\tRB , DT JJ NN VBZ RB VBN IN DT NN VBZ RB IN .\nIsraeli troops entered the densely populated Palestinian city early Sunday and detained dozens of people .\tJJ NNS VBD DT RB JJ JJ NN JJ NNP CC VBN NNS IN NNS .\nThey imposed a curfew that confined about 50,000 Palestinians to their homes .\tPRP VBD DT NN WDT VBD IN CD NNS TO PRP$ NNS .\nPalestinians say Israeli gunfire Monday killed one Palestinian man and wounded several others .\tNNS VBP JJ NN NNP VBD CD JJ NN CC VBD JJ NNS .\nThe Israeli military said soldiers have uncovered at least three explosives laboratories .\tDT JJ NN VBD NNS VBP VBN IN JJS CD NNS NNS .\nPalestinian officials have condemned the operation , saying it could spark a new cycle of violence and undermine efforts to revive the peace process .\tJJ NNS VBP VBN DT NN , VBG PRP MD VB DT JJ NN IN NN CC VB NNS TO VB DT NN NN .\nIsrael , which describes Nablus as a terrorist hub , says the operation has been essential for defending Israeli citizens .\tNNP , WDT VBZ NNP IN DT JJ NN , VBZ DT NN VBZ VBN JJ IN VBG JJ NNS .\nIndonesia has added more than 7,000 people to the death toll from last month 's earthquake and tsunami , bringing the total number of dead in that country to nearly 1,74,000 .\tNNP VBZ VBN JJR IN CD NNS TO DT NN NN IN JJ NN POS NN CC NN , VBG DT JJ NN IN JJ IN DT NN TO RB CD .\nWelfare Minister Alwi Shihab said Saturday that an estimated 1,00,000 people are still missing .\tNNP NNP NNP NNP VBD NNP IN DT JJ CD NNS VBP RB VBG .\nHe added that the death toll may rise as officials begin focusing on rebuilding the devastated province .\tPRP VBD IN DT NN NN MD VB IN NNS VBP VBG IN VBG DT JJ NN .\nMr. Shihab also repeated the government 's call for separatist rebels to resume peace negotiations .\tNNP NNP RB VBD DT NN POS NN IN JJ NNS TO VB NN NNS .\nMeanwhile , Sri Lanka 's Tamil Tiger rebels have accused the government of obstructing aid deliveries to tsunami-affected areas under rebel control - a charge officials deny .\tRB , NNP NNP POS NNP NNP NNS VBP VBN DT NN IN VBG NN NNS TO JJ NNS IN NN NN IN DT NN NNS VBP .\nRebel leaders met with Norwegian Foreign Minister Jan Petersen and another peace envoy in the rebel stronghold , Kilinochchi Saturday to discuss the disaster .\tNN NNS VBD IN JJ NNP NNP NNP NNP CC DT NN NN IN DT NN NN , NNP NNP TO VB DT NN .\nMr. Petersen is in Sri Lanka for talks aimed at reviving peace efforts between the rebels and government , and assess the needs of tsunami-hit areas .\tNNP NNP VBZ IN NNP NNP IN NNS VBN IN VBG NN NNS IN DT NNS CC NN , CC VB DT NNS IN JJ NNS .\nEarly results from Taiwan 's parliamentary election show pro-independence parties in the lead .\tRB NNS IN NNP POS JJ NN VBP JJ NNS IN DT NN .\nPresident Chen Shui-bian 's Democratic Progressive Party and its ally , the Taiwan Solidarity Union , are about three seats ahead of the opposition Nationalist alliance , with about a third of the votes counted .\tNNP NNP NNP POS JJ NNP NNP CC PRP$ NN , DT NNP NNP NNP , VBP IN CD NNS RB IN DT NN NN NN , IN IN DT NN IN DT NNS VBN .\nPresident Chen is hoping his pro-independence coalition will win a majority in Taiwan 's 225-seat legislature .\tNNP NNP VBZ VBG PRP$ JJ NN MD VB DT NN IN NNP POS JJ NN .\nA coalition led by the Nationalist Party , which advocates unification with Beijing , currently controls 51 percent of the legislature .\tDT NN VBN IN DT NNP NNP , WDT VBZ NN IN NNP , RB VBZ CD NN IN DT NN .\nA total of 386 candidates vied for 176 directly elected seats .\tDT NN IN CD NNS VBN IN CD RB VBN NNS .\nThe remaining 49 seats will be allocated based on the proportion of total votes each party receives .\tDT VBG CD NNS MD VB VBN VBN IN DT NN IN JJ NNS DT NN VBZ .\nFull election results are expected by 9.00 p.m. local time .\tJJ NN NNS VBP VBN IN CD NN JJ NN .\nThe United Nations World Food program has condemned the hijacking of another ship it hired to transport food to Somalians suffering from famine .\tDT NNP NNP NNP NNP NN VBZ VBN DT NN IN DT NN PRP VBD TO VB NN TO NNPS VBG IN NN .\nThe WFP says the ship Miltzow was being unloaded Wednesday afternoon at the port of Merka when a group of gunmen boarded and forced the crew to sail out of the port .\tDT NNP VBZ DT NN NNP VBD VBG VBN NNP NN IN DT NN IN NNP WRB DT NN IN NNS VBD CC VBD DT NN TO VB IN IN DT NN .\nThe Miltzow was carrying maize , beans and cooking oil .\tDT NNP VBD VBG NN , NNS CC JJ NN .\nOn Monday , the freighter Torgelow was hijacked off the eastern coast of Somalia .\tIN NNP , DT NN NNP VBD VBN IN DT JJ NN IN NNP .\nThe Torgelow was carrying fuel and supplies to another ship , the Semlow , which was recently freed by hijackers .\tDT NNP VBD VBG NN CC NNS TO DT NN , DT NNP , WDT VBD RB VBN IN NNS .\nThe Semlow was hijacked in June as it sailed from Kenya to Somalia with a load of rice donated by Japan and Germany .\tDT NNP VBD VBN IN NNP IN PRP VBD IN NNP TO NNP IN DT NN IN NN VBN IN NNP CC NNP .\nThe head of the U.N. 's nuclear agency is calling on Iran 's Arab neighbors to play a greater role in resolving the dispute between Tehran and the West over Iran 's nuclear program .\tDT NN IN DT NNP POS JJ NN VBZ VBG IN NNP POS JJ NNS TO VB DT JJR NN IN VBG DT NN IN NNP CC DT NNP IN NNP POS JJ NN .\nInternational Atomic Energy Agency chief Mohamed ElBaradei Tuesday accused Arab nations of ' sitting on the fence , ' and urged them to engage in dialogue .\tNNP NNP NNP NNP JJ NNP NNP NNP VBD JJ NNS IN `` VBG IN DT NN , `` CC VBD PRP TO VB IN NN .\nSpeaking in Vienna , Elbaradei said Iran ' could be a positive force in the region ; it could also be a source of conflict . '\tVBG IN NNP , NNP VBD NNP `` MD VB DT JJ NN IN DT NN ; PRP MD RB VB DT NN IN NN . ``\nSeveral European powers and the U.S. accuse Tehran of secretly seeking nuclear weapons , a charge Iran denies .\tJJ JJ NNS CC DT NNP VBP NNP IN RB VBG JJ NNS , DT NN NNP VBZ .\nThe IAEA says Tehran is hampering its efforts to fully inspect its nuclear program and resolve the dispute .\tDT NNP VBZ NNP VBZ VBG PRP$ NNS TO RB VB PRP$ JJ NN CC VB DT NN .\nElbaradei also welcomed Washington 's recent turnabout at the IAEA , in which it promised to join in talks with other agency board members with Iran about the standoff .\tNNP RB VBD NNP POS JJ NN IN DT NNP , IN WDT PRP VBD TO VB IN NNS IN JJ NN NN NNS IN NNP IN DT NN .\nLebanon has filed charges against two Lebanese brothers named in a U.N. probe into the assassination of former Prime Minister Rafik Hariri .\tNNP VBZ VBN NNS IN CD JJ NNS VBN IN DT NNP NN IN DT NN IN JJ NNP NNP NNP NNP .\nOfficials said they had recently arrested the two men , Ahmad and Mahmoud Abdel-Al , who are members of a pro-Syrian Islamic militant group , Al-Ahbash .\tNNS VBD PRP VBD RB VBN DT CD NNS , NNP CC NNP NNP , WP VBP NNS IN DT JJ JJ JJ NN , NNP .\nMeanwhile , U.S. officials warned of possible measures against Syria if it refuses to cooperate with the U.N. probe into Mr. Hariri 's killing .\tRB , NNP NNS VBD IN JJ NNS IN NNP IN PRP VBZ TO VB IN DT NNP NN IN NNP NNP POS NN .\nU.S. officials are co-sponsoring a draft resolution at the United Nations that would impose sanctions on suspects in the murder .\tNNP NNS VBP VBG DT NN NN IN DT NNP NNP WDT MD VB NNS IN NNS IN DT NN .\nSyrian officials have rejected the U.N. probe , which implicates top Syrian and Lebanese officials .\tJJ NNS VBP VBN DT NNP NN , WDT VBZ JJ JJ CC JJ NNS .\nRussia , which holds a veto on the Security Council , says it will oppose sanctions against Syria .\tNNP , WDT VBZ DT NN IN DT NNP NNP , VBZ PRP MD VB NNS IN NNP .\nThe Arab League and Mr. Hariri 's son , Saad , have also expressed opposition to possible U.N. sanctions .\tDT NNP NNP CC NNP NNP POS NN , NNP , VBP RB VBN NN TO JJ NNP NNS .\nEthiopia has reported 18 new cases of polio as it begins a nationwide vaccination program targeting more than 16 million children under the age of five .\tNNP VBZ VBN CD JJ NNS IN NN IN PRP VBZ DT JJ NN NN VBG JJR IN CD CD NNS IN DT NN IN CD .\nA health ministry official says the polio cases were found in the Tigray , Amhara and Oromia regions .\tDT NN NN NN VBZ DT NN NNS VBD VBN IN DT NNP , NNP CC NNP NNS .\nThe country kicked off its polio immunization campaign on Wednesday with over 1,00,000 volunteers and health workers taking part .\tDT NN VBD RP PRP$ NN NN NN IN NNP IN IN CD NNS CC NN NNS VBG NN .\nPolio has spread in Africa and elsewhere as far as Indonesia following a 2003 boycott of immunizations by Islamic leaders in northern Nigeria .\tNNP VBZ VBN IN NNP CC RB RB RB IN NNP VBG DT CD NN IN NNS IN JJ NNS IN JJ NNP .\nThey claimed the vaccine was contaminated .\tPRP VBD DT NN VBD VBN .\nPresident Bush is promoting his new nominee for Supreme Court justice , citing what he says is a wealth of judicial experience .\tNNP NNP VBZ VBG PRP$ JJ NN IN NNP NNP NN , VBG WP PRP VBZ VBZ DT NN IN JJ NN .\nMr. Bush said on U.S. radio Saturday that Samuel Alito , currently a federal appeals court judge , has more prior judicial experience than any Supreme Court nominee in more than 70 years .\tNNP NNP VBD IN NNP NN NNP IN NNP NNP , RB DT JJ NNS NN NN , VBZ RBR JJ JJ NN IN DT NNP NNP NN IN JJR IN CD NNS .\nHe also said Judge Alito has the qualities the American people expect - mastery of the law , a deep commitment to justice , and great personal character .\tPRP RB VBD NNP NNP VBZ DT NNS DT JJ NNS VBP IN NN IN DT NN , DT JJ NN TO NN , CC JJ JJ NN .\nOn Friday , the president told reporters he is disappointed that Senate confirmation hearings will not take place until January 9 for the man he hopes will succeed retiring Justice Sandra Day O'Connor .\tIN NNP , DT NN VBD NNS PRP VBZ VBN IN NNP NN NNS MD RB VB NN IN NNP CD IN DT NN PRP VBZ MD VB VBG NNP NNP NNP NNP .\nMr. Bush nominated Judge Alito October 31 , four days after his first nominee Harriet Miers withdrew amid criticism that she lacked judicial experience .\tNNP NNP VBD NNP NNP NNP CD , CD NNS IN PRP$ JJ NN NNP NNP VBD IN NN IN PRP VBD JJ NN .\nAfghanistan on Tuesday ordered a top European Union official and a United Nations employee to leave the country for allegedly threatening national security .\tNNP IN NNP VBD DT JJ NNP NNP NN CC DT NNP NNP NN TO VB DT NN IN RB JJ JJ NN .\nGovernment spokesman Humayun Hamidzada said authorities had detained the pair -- one British , the other Irish -- along with their Afghan colleagues who are being investigated .\tNNP NN NNP NNP VBD NNS VBD VBN DT NN : CD NN , DT JJ NN : IN IN PRP$ JJ NNS WP VBP VBG VBN .\nThe spokesman said the two , based in southern Helmand province , were involved in activities outside their mandate .\tDT NN VBD DT CD , VBN IN JJ NNP NN , VBD VBN IN NNS IN PRP$ NN .\nHe said they have been declared persona non grata and have been given 48 hours to leave .\tPRP VBD PRP VBP VBN VBN JJ NN NN CC VBP VBN VBN CD NNS TO VB .\nThe two men are accused of having meetings with different tribes and groups , including possibly the Taliban .\tDT CD NNS VBP VBN IN VBG NNS IN JJ NNS CC NNS , VBG RB DT NNP .\nOne European diplomat said there is hope the incident is a result of a misunderstanding .\tCD JJ NN VBD EX VBZ NN DT NN VBZ DT NN IN DT NN .\nA U.N. spokesman , Aleem Siddique , said the U.N. mission in Afghanistan is trying to clarify the situation .\tDT NNP NN , NNP NNP , VBD DT NNP NN IN NNP VBZ VBG TO VB DT NN .\nMasked assailants with grenades and automatic weapons attacked a wedding party in southeastern Turkey , killing 45 people and wounding at least six others .\tVBN NNS IN NNS CC JJ NNS VBD DT VBG NN IN JJ NNP , VBG CD NNS CC VBG IN JJS CD NNS .\nTurkish officials said the attack occurred Monday in the village of Bilge about 600 kilometers from Ankara .\tJJ NNS VBD DT NN VBD NNP IN DT NN IN NNP IN CD NNS IN NNP .\nThe wounded were taken to the hospital in the nearby city of Mardin .\tDT VBN VBD VBN TO DT NN IN DT JJ NN IN NNP .\nSoldiers cut off the roads leading to the village as they searched for the gunmen .\tNNS VBD RP DT NNS VBG TO DT NN IN PRP VBD IN DT NNS .\nOfficials said they were not sure of the motive for the attack , which took place at the wedding of the daughter of a village official .\tNNS VBD PRP VBD RB JJ IN DT NN IN DT NN , WDT VBD NN IN DT NN IN DT NN IN DT NN NN .\nInterior Minister Besir Atalay said there was no apparent link to terrorism .\tNN NN NNP NNP VBD EX VBD DT JJ NN TO NN .\nTurkey 's NTV television said the fighting may have involved rival members of state-sponsored militia set up to combat Kurdish separatist guerrillas .\tNNP POS NNP NN VBD DT NN MD VB VBN JJ NNS IN JJ NN VBN RP TO VB NNP JJ NNS .\nOther reports suggested the violence was linked to a clan feud .\tJJ NNS VBD DT NN VBD VBN TO DT JJ NN .\nUnited Nations Secretary-General Kofi Annan says he is deeply disappointed in the decision of Burma 's military rulers to extend the house arrest of opposition leader Aung San Suu Kyi for another six months .\tNNP NNP NNP NNP NNP VBZ PRP VBZ RB JJ IN DT NN IN NNP POS JJ NNS TO VB DT NN NN IN NN NN NNP NNP NNP NNP IN DT CD NNS .\nThe statement by Mr. Annan says the continued detention is not in the interest of Burma 's national reconciliation and democratization .\tDT NN IN NNP NNP VBZ DT JJ NN VBZ RB IN DT NN IN NNP POS JJ NN CC NN .\nAung San Suu Kyi , the head of the National League for Democracy , has spent 10 of the past 16 years in detention , mostly under house arrest .\tNNP NNP NNP NNP , DT NN IN DT NNP NNP IN NNP , VBZ VBN CD IN DT JJ CD NNS IN NN , RB IN NN NN .\nHer current sentence was due to expire this month .\tPRP$ JJ NN VBD JJ TO VB DT NN .\nMark Farmaner of Burma Campaign UK told VOA 's Burmese Service that Aung San Suu Kyi 's detention was extended because the junta 's ruling generals hope the world will forget about her .\tNNP NNP IN NNP NNP NNP VBD NNP POS JJ NNP IN NNP NNP NNP NNP POS NN VBD VBN IN DT NN POS NN NNS VBP DT NN MD VB IN PRP .\nThe United States and the European Union have imposed sanctions on Burma for its suppression of the pro-democracy movement .\tDT NNP NNPS CC DT NNP NNP VBP VBN NNS IN NNP IN PRP$ NN IN DT JJ NN .\nOfficials in Seoul say the South Korean government has approved a proposal to withdraw one-third of the country 's troops from Iraq , while extending the remaining soldiers ' deployment by a year .\tNNS IN NNP VBP DT JJ JJ NN VBZ VBN DT NN TO VB NN IN DT NN POS NNS IN NNP , IN VBG DT VBG NNS POS NN IN DT NN .\nPresident Roh Moo-hyun 's Cabinet endorsed the withdrawal of 1,000 troops during the first half of next year .\tNNP NNP NNP POS NNP VBD DT NN IN CD NNS IN DT JJ NN IN JJ NN .\nRemaining members of the 3,200-strong South Korean contingent in Iraq would remain there until December 2006 .\tVBG NNS IN DT JJ JJ JJ NN IN NNP MD VB RB IN NNP CD .\nAfter a review by Mr. Roh , the troop-reduction bill is expected to go before Parliament by Wednesday .\tIN DT NN IN NNP NNP , DT NN NN VBZ VBN TO VB IN NNP IN NNP .\nSouth Korea 's troops have been assigned to relief and rehabilitation efforts in the northern Iraqi town of Arbil since 2004 .\tNNP NNP POS NNS VBP VBN VBN TO NN CC NN NNS IN DT JJ JJ NN IN NNP IN CD .\nAfter the United States and Britain , Seoul 's troops make up the third-largest force in Iraq .\tIN DT NNP NNPS CC NNP , NNP POS NNS VBP RP DT JJ NN IN NNP .\nA new medical report says secondhand smoke can be just as harmful as smoking , and separate sections for smokers and nonsmokers in restaurants and bars do not help .\tDT JJ JJ NN VBZ JJ NN MD VB RB RB JJ IN NN , CC JJ NNS IN NNS CC NNS IN NNS CC NNS VBP RB VB .\nThe U.S. Surgeon General , America 's top medical official , released the report Tuesday .\tDT NNP NNP NNP , NNP POS JJ JJ NN , VBD DT NN NNP .\nIt says only smoke-free buildings and public places really protect nonsmokers from disease-causing agents in tobacco smoke .\tPRP VBZ RB JJ NNS CC JJ NNS RB VBP NNS IN JJ NNS IN NN NN .\nThe report says children are particularly vulnerable to secondhand smoke .\tDT NN VBZ NNS VBP RB JJ TO VB NN .\nIt says children in homes where parents smoke are at increased risk for sudden infant death syndrome , lung infections and more severe asthma .\tPRP VBZ NNS IN NNS WRB NNS VBP VBP IN VBN NN IN JJ NN NN NN , NN NNS CC JJR JJ NN .\nA 2005 report from the Centers for Disease Control and Prevention estimated that secondhand smoke causes some 3,000 deaths each year from lung cancer , and 46,000 deaths from heart disease .\tDT CD NN IN DT NNPS IN NNP NNP CC NNP VBD IN JJ NN VBZ DT CD NNS DT NN IN NN NN , CC CD NNS IN NN NN .\nSecondhand smoke is also blamed for 430 infant deaths annually in the United States .\tNNP NN VBZ RB VBN IN CD NN NNS RB IN DT NNP NNPS .\nPortugal 's national football ( soccer ) team will host a match to raise funds to aid victims of the tsunami disaster in Asia .\tNNP POS JJ NN LRB NN RRB NN MD VB DT NN TO VB NNS TO VB NNS IN DT NN NN IN NNP .\nThe president of the Portuguese Football Federation says Portugal 's national team will play a squad made up of players from the Asian nations hit by last weekend 's devastating tsunami .\tDT NN IN DT JJ NNP NNP VBZ NNP POS JJ NN MD VB DT NN VBN IN IN NNS IN DT JJ NNS VBN IN JJ NN POS JJ NN .\nThe match will be played during the first two weeks of January at Lisbon 's 65,000 seat Stadium of Light .\tDT NN MD VB VBN IN DT JJ CD NNS IN NNP IN NNP POS CD NN NNP IN NNP .\nMoney raised from ticket sales for the game will be donated to charities working to aid victims of the earthquake-triggered disaster , which may have killed as many as 1,50,000 people .\tNN VBN IN NN NNS IN DT NN MD VB VBN TO NNS VBG TO VB NNS IN DT JJ NN , WDT MD VB VBN RB JJ IN CD NNS .\nThe European Parliament , the legislative arm of the European Union , has approved members of a new EU executive commission after nearly three weeks of negotiations .\tDT NNP NNP , DT JJ NN IN DT NNP NNP , VBZ VBN NNS IN DT JJ NNP NN NN IN RB CD NNS IN NNS .\nThe new lineup was approved early Thursday by a wide margin .\tDT JJ NN VBD VBN JJ NNP IN DT JJ NN .\nThe vote means incoming commission chief Jose Manuel Barroso will likely take office Monday .\tDT NN VBZ JJ NN NN NNP NNP NNP MD RB VB NN NNP .\nAfter the vote , Mr. Barroso thanked the parliament for the strong vote of confidence and said he recognizes the responsibility that implies .\tIN DT NN , NNP NNP VBD DT NN IN DT JJ NN IN NN CC VBD PRP VBZ DT NN IN VBZ .\nThe newly-elected commission members were nominated by Mr. Barroso .\tDT JJ NN NNS VBD VBN IN NNP NNP .\nThe commission had been expected to be in place late last month , but Mr. Barroso withdrew his first nominees when parliament objected to some of them .\tDT NN VBD VBN VBN TO VB IN NN RB JJ NN , CC NNP NNP VBD PRP$ JJ NNS WRB NN VBD TO DT IN PRP .\nThe blast occurred at 8.20 am as President Rugova 's motorcade was headed to a meeting with European Union foreign policy chief Javier Solana .\tDT NN VBD IN CD RB IN NNP NNP POS NN VBD VBN TO DT NN IN NNP NNP JJ NN NN NNP NNP .\nThere was no one seriously injured .\tEX VBD DT CD RB VBN .\nOne person was injured .\tCD NN VBD VBN .\nThe president was not injured .\tDT NN VBD RB VBN .\nThere was flying glass and a shop window was blown out .\tEX VBD VBG NN CC DT NN NN VBD VBN RP .\nAnd the police are saying that was apparently detonated by remote control .\tCC DT NNS VBP VBG DT VBD RB VBN IN JJ NN .\nMr. Rugova went on with his regular schedule and said that this proves that there are still elements that want to destabilize Kosovo .\tNNP NNP VBD IN IN PRP$ JJ NN CC VBD IN DT VBZ IN EX VBP RB NNS WDT VBP TO VB NNP .\nSweden has raised its terror alert level from ' low ' to ' elevated ' because of intelligence information the security service said pointed to a ' shift ' in activities by groups targeting the country .\tNNP VBZ VBN PRP$ NN NN NN IN `` JJ `` IN `` VBN `` IN IN NN NN DT NN NN VBD JJ TO DT `` NN `` IN NNS IN NNS VBG DT NN .\nThe Swedish Security Service said Friday there was no imminent threat of an attack .\tDT JJ NNP NNP VBD NNP EX VBD DT JJ NN IN DT NN .\nIt said the shift was linked to groups in Sweden , but did not provide any further details .\tPRP VBD DT NN VBD VBN TO NNS IN NNP , CC VBD RB VB DT JJ NNS .\nSweden 's move comes after a report earlier this week of a potential terror plot being hatched in Pakistan to attack several European capitals .\tNNP POS NN VBZ IN DT NN RBR DT NN IN DT JJ NN NN VBG VBN IN NNP TO VB JJ JJ NNS .\nU.S. and European officials have said that plot was in its initial planning stages and not considered concrete enough to raise the terror threat level in European cities .\tNNP CC JJ NNS VBP VBN IN NN VBD IN PRP$ JJ NN NNS CC RB VBN JJ RB TO VB DT NN NN NN IN JJ NNS .\nSwedish security officials noted that the threat level in Sweden was low compared to other European countries .\tJJ NN NNS VBD IN DT NN NN IN NNP VBD JJ VBN TO JJ JJ NNS .\nSurvivors in southern Egypt say a candle fell over on a stage set late Monday , sparking a fire in a crowded theater that killed at least 31 people and injured about 30 others .\tNNS IN JJ NNP VBP DT NN VBD RP IN DT NN NN JJ NNP , VBG DT NN IN DT JJ NN WDT VBD IN JJ CD NNS CC VBD IN CD NNS .\nWitnesses say the fire in the city of Beni Suef spread quickly across the stage , triggering a stampede of spectators trying to exit the burning building .\tNNS VBP DT NN IN DT NN IN NNP NNP VBD RB IN DT NN , VBG DT NN IN NNS VBG TO VB DT NN NN .\nAuthorities say the one-storey theater building - attached to a state-run culture center - burned to the ground within an hour .\tNNS VBP DT JJ NN NN : VBN TO DT JJ NN NN IN VBN TO DT NN IN DT NN .\nThe fire is the worst in Egypt since a blaze aboard a crowded train near Cairo killed more than 350 people in 2002 .\tDT NN VBZ DT JJS IN NNP IN DT NN IN DT JJ NN IN NNP VBD JJR IN CD NNS IN CD .\nAfghan officials say seven people were killed in eastern Afghanistan Saturday when the vehicle they were driving hit a roadside bomb .\tJJ NNS VBP CD NNS VBD VBN IN JJ NNP NNP WRB DT NN PRP VBD VBG VBN DT NN NN .\nThe blast occurred in the eastern province of Kunar near the Pakistani border .\tDT NN VBD IN DT JJ NN IN NNP IN DT JJ NN .\nThe victims were security guards working for a road construction company .\tDT NNS VBD NN NNS VBG IN DT NN NN NN .\nAuthorities do not know who was behind the attacks .\tNNS VBP RB VB WP VBD IN DT NNS .\nTaliban militants waging an insurgent campaign against the government in Kabul have been blamed for similar incidents in the past .\tNNP NNS VBG DT JJ NN IN DT NN IN NNP VBP VBN VBN IN JJ NNS IN DT NN .\nAlso today , a suicide bomber blew himself up in an attempted attack in the western Farah province .\tRB NN , DT NN NN VBD PRP RP IN DT JJ NN IN DT JJ NNP NN .\nOfficials say there were no other casualties .\tNNS VBP EX VBD DT JJ NNS .\nPolice in France and Germany have encountered small , peaceful protests in sharp contrast to the violent clashes in Strasbourg Thursday evening ahead of NATO 's 60th anniversary summit .\tNNS IN NNP CC NNP VBP VBN JJ , JJ NNS IN JJ NN TO DT JJ NNS IN NNP NNP NN RB IN NNP POS JJ NN NN .\nSeveral hundred demonstrators protested calmly in the German town of Baden-Baden as U.S. President Barack Obama and German Chancellor Angela Merkel met at the town hall .\tJJ CD NNS VBD RB IN DT JJ NN IN JJ IN NNP NNP NNP NNP CC JJ NNP NNP NNP VBD IN DT NN NN .\nFrench police strengthened their cordon around the city of Strasbourg after detaining 300 people during clashes between protesters and police .\tJJ NNS VBD PRP$ NN IN DT NN IN NNP IN VBG CD NNS IN NNS IN NNS CC NNS .\nOfficials say about 100 demonstrators are still in custody .\tNNS VBP IN CD NNS VBP RB IN NN .\nPolice used tear gas on the demonstrators , who smashed windows and set fire to trash bins as security forces sought to block a protest march toward central Strasbourg .\tNNS VBD JJ NN IN DT NNS , WP VBD NNS CC VBD NN TO VB NNS IN NN NNS VBD TO VB DT NN NN IN JJ NNP .\nGerman and French authorities have deployed about 25,000 police to maintain security around the two towns .\tJJ CC JJ NNS VBP VBN IN CD NNS TO VB NN IN DT CD NNS .\nThe absence of Burma 's military leader at an Independence Day dinner this week is generating more concern about his health .\tDT NN IN NNP POS JJ NN IN DT NNP NNP NN DT NN VBZ VBG RBR NN IN PRP$ NN .\nDiplomats say 73-year-old General Than Shwe did not attend Thursday evening 's dinner because he was having medical tests in Singapore .\tNNS VBP JJ NNP NNP NNP VBD RB VB NNP NN POS NN IN PRP VBD VBG JJ NNS IN NNP .\nIt was the first time since Than Shwe took power in 1992 that he did not host the annual dinner .\tPRP VBD DT JJ NN IN NNP NNP VBD NN IN CD IN PRP VBD RB VB DT JJ NN .\nInstead , the military government 's second-in-command , General Maung Aye , hosted the event this year .\tRB , DT JJ NN POS NN , NNP NNP NNP , VBD DT NN DT NN .\nDiplomats say they were told that Than Shwe 's medical tests in Singapore were routine .\tNNS VBP PRP VBD VBN IN NNP NNP POS JJ NNS IN NNP VBD JJ .\nHowever , it is believed that he suffers from hypertension , diabetes and other ailments .\tRB , PRP VBZ VBN IN PRP VBZ IN NN , NNS CC JJ NNS .\nThe military government in the past has dismissed rumors that the ailing senior leader is gravely ill .\tDT JJ NN IN DT NN VBZ VBN NNS IN DT JJ JJ NN VBZ RB JJ .\nThe U.S. automotive company General Motors is reporting its largest annual loss .\tDT NNP JJ NN NNP NNP VBZ VBG PRP$ JJS JJ NN .\nGM Tuesday announced a deficit of $ 38.7 billion in 2007 .\tNNP NNP VBD DT NN IN $ CD CD IN CD .\nIt posted a fourth-quarter loss of $ 722 million .\tPRP VBD DT JJ NN IN $ CD CD .\nIn a restructuring effort , the company said it will offer buyouts to 74,000 hourly workers in the United States .\tIN DT NN NN , DT NN VBD PRP MD VB NNS TO CD JJ NNS IN DT NNP NNPS .\nGeneral Motors is the world 's largest automaker .\tNNP NNPS VBZ DT NN POS JJS NN .\nIt says its North American division is struggling .\tPRP VBZ PRP$ JJ JJ NN VBZ VBG .\nBut overall , GM reported earlier this month that it sold more than two percent more cars this January than it had one year ago .\tCC JJ , NNP VBD RBR DT NN IN PRP VBD JJR IN CD NN JJR NNS DT NNP IN PRP VBD CD NN RB .\nThat increase followed sales declines reported by other major car companies .\tDT NN VBD NNS NNS VBN IN JJ JJ NN NNS .\nWhite House spokeswoman Dana Perino today said GM 's loss is ' significant . '\tNNP NNP NN NNP NNP NN VBD NNP POS NN VBZ `` JJ . ``\nBut she cited the company 's restructuring efforts and expressed optimism that the automaker would remain competitive .\tCC PRP VBD DT NN POS NN NNS CC VBD NN IN DT NN MD VB JJ .\nItalian officials say Taleban forces may have kidnapped an Italian journalist missing in southern Afghanistan for three days .\tJJ NNS VBP NNP NNS MD VB VBN DT JJ NN VBG IN JJ NNP IN CD NNS .\nDaniele Mastrogiacomo , a reporter for Italy 's La Repubblica newspaper , disappeared Sunday in Kandahar province with his interpreter and a guide , both Afghans .\tNNP NNP , DT NN IN NNP POS NNP NNP NN , VBD NNP IN NNP NN IN PRP$ NN CC DT NN , DT NNS .\nA Taleban spokesman said Tuesday the group had captured a European reporter on suspicion of spying for British forces .\tDT NNP NN VBD NNP DT NN VBD VBN DT JJ NN IN NN IN VBG IN JJ NNS .\nThe spokesman did not mention Mastrogiacomo by name .\tDT NN VBD RB VB NNP IN NN .\nItaly 's ambassador to Afghanistan , Ettore Francesco Sequi , told the French Press Agency Wednesday that there has been no contact with the kidnappers so far .\tNNP POS NN TO NNP , NNP NNP NNP , VBD DT NNP NNP NNP NNP IN EX VBZ VBN DT NN IN DT NNS RB RB .\nMastrogiacomo , 52 , has been covering conflicts in Central Asia and the Middle East for La Repubblica since 2002 .\tNNP , CD , VBZ VBN VBG NNS IN NNP NNP CC DT NNP NNP IN NNP NNP IN CD .\nIndian police say one person was killed and at least 26 others wounded by an explosion in Indian-controlled Kashmir Wednesday .\tJJ NNS VBP CD NN VBD VBN CC IN JJS CD NNS VBN IN DT NN IN JJ NNP NNP .\nIt is unclear what caused the blast that sparked panic in a busy market area of Rajouri town , about 100 miles north of Jammu , in southern Kashmir .\tPRP VBZ JJ WP VBD DT NN WDT VBD NN IN DT JJ NN NN IN NNP NN , IN CD NNS RB IN NNP , IN JJ NNP .\nSo far , none of the rebel groups operating in Kashmir have claimed responsiblity .\tRB RB , NN IN DT NN NNS VBG IN NNP VBP VBN NN .\nMilitant separatists have been fighting Indian rule in Kashmir since 1989 .\tJJ NNS VBP VBN VBG JJ NN IN NNP IN CD .\nThousands have died in violence over the disputed region , and India and Pakistan have fought two wars over it .\tNNS VBP VBN IN NN IN DT JJ NN , CC NNP CC NNP VBP VBN CD NNS IN PRP .\nBut violence has eased since the nuclear rivals began moving toward peace more than a year ago .\tCC NN VBZ VBN IN DT JJ NNS VBD VBG IN NN RBR IN DT NN RB .\nPalestinian officials say President Mahmoud Abbas is heading to the Gaza Strip Saturday - his first trip to the region since deadly clashes between Fatah party supporters and the rival Hamas faction .\tJJ NNS VBP NNP NNP NNP VBZ VBG TO DT NNP NNP NNP IN PRP$ JJ NN TO DT NN IN JJ NNS IN NNP NN NNS CC DT JJ NNP NN .\nOfficials have not explained the purpose of his visit .\tNNS VBP RB VBN DT NN IN PRP$ NN .\nMr. Abbas of Fatah and Prime Minister Ismail Haniyeh of Hamas are expected to hold mediation talks in Jordan with King Abdullah .\tNNP NNP IN NNP CC NNP NNP NNP NNP IN NNP VBP VBN TO VB NN NNS IN NNP IN NNP NNP .\nNo date has been given for those talks .\tDT NN VBZ VBN VBN IN DT NNS .\nTensions between Fatah and Hamas have been high for months .\tNNS IN NNP CC NNP VBP VBN JJ IN NNS .\nLast month , forces from each side fought open street battles in Gaza and the West Bank .\tJJ NN , NNS IN DT NN VBD JJ NN NNS IN NNP CC DT NNP NNP .\nAt least 17 people died in that fighting .\tIN JJS CD NNS VBD IN DT NN .\nA ceasefire agreed to last week has largely ended the violence , but has done little to resolve the standoff .\tDT NN VBD TO JJ NN VBZ RB VBN DT NN , CC VBZ VBN RB TO VB DT NN .\nThe first round of historic trade negotiations between Australia and China is under way in Sydney .\tDT JJ NN IN JJ NN NNS IN NNP CC NNP VBZ IN NN IN NNP .\nA free trade agreement between the two countries would boost China 's effort to be accepted as a full market economy and would provide Australia with access to the world 's largest marketplace .\tDT JJ NN NN IN DT CD NNS MD VB NNP POS NN TO VB VBN IN DT JJ NN NN CC MD VB NNP IN NN TO DT NN POS JJS NN .\nThe chairman of China 's National People 's Congress told trade forum members Monday that relations between the two countries have never been better .\tDT NN IN NNP POS NNP NNP POS NNP VBD NN NN NNS NNP IN NNS IN DT CD NNS VBP RB VBN JJR .\nChina is Australia 's third-largest trading partner .\tNNP VBZ NNP POS JJ NN NN .\nChina supplies consumer goods and clothing while key Australian exports include iron ore , wheat , petroleum and coal .\tNNP NNS NN NNS CC NN IN JJ JJ NNS VBP NN NN , NN , NN CC NN .\nAustralia already has negotiated free trade agreements with the United States , Thailand , Singapore and New Zealand .\tNNP RB VBZ VBN JJ NN NNS IN DT NNP NNPS , NNP , NNP CC NNP NNP .\nChina is mired in increasingly bitter trade disputes with the United States and the European Union .\tNNP VBZ VBN IN RB JJ NN NNS IN DT NNP NNPS CC DT NNP NNP .\nOfficials in Pakistan say suspected pro-Taleban militants have killed an elderly tribal leader for allegedly spying for U.S.-led forces operating in neighboring Afghanistan .\tNNS IN NNP VBP JJ JJ NNS VBP VBN DT JJ JJ NN IN RB VBG IN JJ NNS VBG IN VBG NNP .\nThe officials said Saturday they found the bullet-riddled body of Rahim Jan in the tribal northwestern region of North Waziristan .\tDT NNS VBD NNP PRP VBD DT JJ NN IN NNP NNP IN DT JJ JJ NN IN NNP NNP .\nHe was 70 years old .\tPRP VBD CD NNS JJ .\nA note found on the body said anyone else caught for spying would face a similar fate .\tDT NN VBN IN DT NN VBD DT RB VBN IN VBG MD VB DT JJ NN .\nThe volatile North Waziristan region is a known hideout for Taleban remnants .\tDT JJ NNP NNP NN VBZ DT JJ NN IN NNP NNS .\nPakistani President Pervez Musharraf signed a ceasefire accord Tuesday with tribal militants in the region .\tJJ NNP NNP NNP VBD DT JJ NN NNP IN JJ NNS IN DT NN .\nUnder the deal , Pakistan 's military will stop its crackdown in the border region if the militants disarm or expel foreign al-Qaida-linked fighters and stop attacks within Pakistan and in Afghanistan .\tIN DT NN , NNP POS NN MD VB PRP$ NN IN DT NN NN IN DT NNS NN CC VB JJ JJ NNS CC VB NNS IN NNP CC IN NNP .\nVoters in Luxembourg have approved the proposed European Union Constitution in a referendum Sunday - reversing a trend set by France and the Netherlands last month .\tNNS IN NNP VBP VBN DT VBN NNP NNP NNP IN DT NN NNP : VBG DT NN VBN IN NNP CC DT NNP JJ NN .\nWith all the votes counted , the charter was approved by nearly a 13-point margin , of about 57 to 43 percent .\tIN PDT DT NNS VBN , DT NN VBD VBN IN RB DT JJ NN , IN IN CD TO CD NN .\nPrime Minister Jean-Claude Juncker , a staunch supporter of the pact , had promised to resign if it was not approved .\tNNP NNP NNP NNP , DT JJ NN IN DT NN , VBD VBN TO VB IN PRP VBD RB VBN .\nThis was the first referendum on the constitution since French and Dutch voters rejected it last month .\tDT VBD DT JJ NN IN DT NN IN JJ CC JJ NNS VBD PRP JJ NN .\nEU leaders then put the constitution issue on hold , and Britain , Denmark , Portugal , Sweden and Finland postponed planned votes .\tNNP NNS RB VBD DT NN NN IN NN , CC NNP , NNP , NNP , NNP CC NNP VBD JJ NNS .\nAll 25 member nations must approve the constitution before it can take effect .\tDT CD NN NNS MD VB DT NN IN PRP MD VB NN .\nThe United Nations warns Haiti could see a resurgence of violence as the nation gears up for presidential and parliamentary elections .\tDT NNP NNP VBZ NNP MD VB DT NN IN NN IN DT NN VBZ RP IN JJ CC JJ NNS .\nIn a report issued Tuesday , U.N. Secretary-General Kofi Annan says Haiti is at a critical juncture , as the country prepares for its first set of elections since the ouster of President Jean-Bertrand Aristide in February , 2004 .\tIN DT NN VBN NNP , NNP NNP NNP NNP VBZ NNP VBZ IN DT JJ NN , IN DT NN VBZ IN PRP$ JJ NN IN NNS IN DT NN IN NNP NNP NNP IN NNP , CD .\nHe says the security environment has improved in recent months , but the elections process would still benefit from outside assistance on security measures .\tPRP VBZ DT NN NN VBZ VBN IN JJ NNS , CC DT NNS NN MD RB VB IN JJ NN IN NN NNS .\nThe report says elections must not be tainted by candidates seen by the public as criminals , or by funds of dubious origin .\tDT NN VBZ NNS MD RB VB VBN IN NNS VBN IN DT NN IN NNS , CC IN NNS IN JJ NN .\nElections were scheduled for November this year , but officials say the date could be pushed back to December due to delays in preparation .\tNNS VBD VBN IN NNP DT NN , CC NNS VBP DT NN MD VB VBN RB TO NNP JJ TO NNS IN NN .\nInternational relief officials have welcomed the agreement by India and Pakistan to open their heavily-militarized boundary in divided Kashmir to help survivors of this month 's devastating earthquake .\tJJ NN NNS VBP VBN DT NN IN NNP CC NNP TO VB PRP$ JJ NN IN VBN NNP TO VB NNS IN DT NN POS JJ NN .\nThe two governments say crossings will be opened at five points starting November 7 to allow people to cross in both directions on foot .\tDT CD NNS VBP NNS MD VB VBN IN CD NNS VBG NNP CD TO VB NNS TO VB IN DT NNS IN NN .\nPriority will go to families separated by the de~facto border .\tNN MD VB TO NNS VBN IN DT JJ NN .\nA U.N. humanitarian coordinator in the quake zone , Rashid Khalikov , called the agreement a good step that will help extend aid to people in isolated areas .\tDT NNP JJ NN IN DT NN NN , NNP NNP , VBD DT NN DT JJ NN WDT MD VB VB NN TO NNS IN JJ NNS .\nBut with a bitter Himalayan winter approaching and millions of people homeless or needing shelter , aid workers fear hunger , disease , diarrhea and injuries that are not treated could kill thousands more .\tCC IN DT JJ JJ NN VBG CC NNS IN NNS JJ CC JJ NN , NN NNS VBP NN , NN , NN CC NNS WDT VBP RB VBN MD VB NNS RBR .\nSome 2,00,000 people are still without any humanitarian aid three weeks after the quake that killed about 55,000 people , most of them in Pakistani Kashmir .\tDT CD NNS VBP RB IN DT JJ NN CD NNS IN DT NN WDT VBD IN CD NNS , JJS IN PRP IN JJ NNP .\nThe United Nations will host a major conference on the long-term recovery efforts for Iraq Saturday at its main headquarters in New York .\tDT NNP NNP MD VB DT JJ NN IN DT JJ NN NNS IN NNP NNP IN PRP$ JJ NN IN NNP NNP .\nU.N. Secretary-General Ban Ki-moon will co-chair the ministerial session with Iraqi Prime Minister Nouri al-Maliki .\tNNP NNP NNP NNP MD VB DT JJ NN IN JJ NNP NNP NNP NNP .\nRepresentatives from 20 nations will participate in the conference , including many of Iraq 's neighbors , such as Iran , Kuwait and Syria .\tNNS IN CD NNS MD VB IN DT NN , VBG NN IN NNP POS NNS , JJ IN NNP , NNP CC NNP .\nThe meeting will focus on a resolution adopted by the General Assembly last month to expand the U.N. 's presence in Iraq .\tDT NN MD VB IN DT NN VBN IN DT NNP NNP JJ NN TO VB DT NNP POS NN IN NNP .\nAlso on the agenda is the International Compact on Iraq , a five-year economic and political recovery strategy .\tRB IN DT NN VBZ DT NNP NNP IN NNP , DT JJ JJ CC JJ NN NN .\nMr. Ban told reporters earlier this week he will urge the U.N. member states to follow through on their pledges of support for Iraq .\tNNP NNP VBD NNS RBR DT NN PRP MD VB DT NNP NN NNS TO VB IN IN PRP$ NNS IN NN IN NNP .\nU.S. Secretary of State Condoleezza Rice will attend today 's conference .\tNNP NNP IN NNP NNP NNP MD VB NN POS NN .\nA New York court has sentenced former Colombian drug kingpin Alberto Orlandez Gamboa to 40 years in prison for heading a cartel that smuggled large quantities of cocaine into the United States .\tDT NNP NNP NN VBZ VBN JJ JJ NN NN NNP NNP NNP TO CD NNS IN NN IN VBG DT NN WDT VBD JJ NNS IN NN IN DT NNP NNPS .\nAuthorities announced the sentence Thursday , for the 49-year-old Orlandez Gamboa , who once boasted of being among Colombia 's top 10 drug lords .\tNNS VBD DT NN NNP , IN DT JJ NNP NNP , WP RB VBD IN VBG IN NNP POS JJ CD NN NNS .\nThe former kingpin , who was extradited to the United States several years ago , had previously pleaded guilty to conspiracy , drug smuggling and money laundering charges .\tDT JJ NN , WP VBD VBN TO DT NNP NNPS JJ NNS RB , VBD RB VBN JJ TO NN , NN NN CC NN NN NNS .\nOfficials say Orlandez Gamboa led an organization of about a dozen large-scale traffickers in Barranquilla , Colombia , who smuggled tons of cocaine into the United States and other countries .\tNNS VBP NNP NNP VBD DT NN IN IN DT NN JJ NNS IN NNP , NNP , WP VBD NNS IN NN IN DT NNP NNPS CC JJ NNS .\nColombia is the world 's largest cocaine producer .\tNNP VBZ DT NN POS JJS NN NN .\nMost of the cocaine produced there is shipped to the United States .\tJJS IN DT NN VBN EX VBZ VBN TO DT NNP NNPS .\nCuba 's main labor organization says the state is to lay off more than 5,00,000 public sector workers by March .\tNNP POS JJ NN NN VBZ DT NN VBZ TO VB RP JJR IN CD JJ NN NNS IN NNP .\nThe Cuban Workers Confederation said the country can not and should not continue supporting businesses , production entities and services with inflated payrolls .\tDT JJ NNP NNP VBD DT NN MD RB CC MD RB VB VBG NNS , NN NNS CC NNS IN JJ NNS .\nIt said the losses hurt the economy and are ultimately counterproductive , creating bad habits and distorting worker conduct .\tPRP VBD DT NNS VBP DT NN CC VBP RB JJ , VBG JJ NNS CC VBG NN NN .\nIn the statement released on state-run media , the union said Cuba would change its labor structure and salary system and increase private sector job opportunities .\tIN DT NN VBN IN JJ NNS , DT NN VBD NNP MD VB PRP$ NN NN CC NN NN CC VB JJ NN NN NNS .\nCurrently , the state employs 95 percent of the official work force .\tRB , DT NN VBZ CD NN IN DT JJ NN NN .\nSeveral weeks ago , Cuban President Raul Castro said his government would scale back its involvement in the nation 's economy and allow more Cubans to operate their own businesses and hire workers .\tJJ NNS RB , JJ NNP NNP NNP VBD PRP$ NN MD VB RP PRP$ NN IN DT NN POS NN CC VB JJR NNS TO VB PRP$ JJ NNS CC VB NNS .\nHe said the aim was to create jobs for Cubans employed by the government who will be laid off .\tPRP VBD DT NN VBD TO VB NNS IN NNS VBN IN DT NN WP MD VB VBN RP .\nThe leadership of the Palestine Liberation Organization has urged militants to end attacks against Israel , saying such violence ' harms our national interest . '\tDT NN IN DT NNP NNP NNP VBZ VBN NNS TO VB NNS IN NNP , VBG JJ NN `` VBZ PRP$ JJ NN . ``\nThe PLO executive committee made the appeal Sunday just hours after Israeli Prime Minister Ariel Sharon gave his military a free hand against militant groups in Gaza .\tDT NNP NN NN VBD DT NN NNP RB NNS IN JJ NNP NN NNP NNP VBD PRP$ NN DT JJ NN IN JJ NNS IN NNP .\nMr. Sharon accused newly-elected Palestinian Authority President Mahmoud Abbas of doing nothing to curb attacks on Israelis .\tNNP NNP VBD JJ JJ NNP NNP NNP NNP IN VBG DT TO VB NNS IN NNS .\nThe PLO statement said violence by militant groups gives Israel an excuse to obstruct Palestinian stability .\tDT NNP NN VBD NN IN JJ NNS VBZ NNP DT NN TO VB JJ NN .\nPalestinian officials say Mr. Abbas will meet with militants in Gaza Wednesday to urge them to agree to a cease-fire that must be reciprocated by the Jewish state .\tJJ NNS VBP NNP NNP MD VB IN NNS IN NNP NNP TO VB PRP TO VB TO DT NN WDT MD VB VBN IN DT JJ NN .\nIncoming BP head Robert Dudley is expected to travel to Russia next week for the first time since fleeing the country in 2008 , signaling a thaw between BP and its Russian partner TNK-BP .\tVBG NNP NN NNP NNP VBZ VBN TO VB TO NNP JJ NN IN DT JJ NN IN VBG DT NN IN CD , VBG DT NN IN NNP CC PRP$ JJ NN NNP .\nDudley is the former chief executive of TNK-BP and will travel to Moscow with outgoing BP chief Tony Hayward .\tNNP VBZ DT JJ JJ NN IN NNP CC MD VB TO NNP IN VBG NNP NN NNP NNP .\nThe Financial Times reports their discussions with Russian counterparts will likely include the sale of Venezuelan assets from BP to TNK-BP , to help meet the cost of the Gulf of Mexico oil spill .\tDT NNP NNPS VBZ PRP$ NNS IN JJ NNS MD RB VB DT NN IN JJ NNS IN NNP TO NNP , TO VB VB DT NN IN DT NNP IN NNP NN NN .\nDudley was compelled to leave Russia in 2008 in a dispute over control of TNK-BP .\tNNP VBD VBN TO VB NNP IN CD IN DT NN IN NN IN NNP .\nHe officially replaces Tony Hayward October 1 .\tPRP RB VBZ NNP NNP NNP CD .\nMexican police are searching for the people responsible for kidnapping the two top traffic officials in the northern city of Monterrey .\tJJ NNS VBP VBG IN DT NNS JJ IN VBG DT CD JJ NN NNS IN DT JJ NN IN NNP .\nEnrique Barrios Rodriguez was kidnapped early Monday morning when armed assailants rammed through the front gate of his home .\tNNP NNP NNP VBD VBN RB NNP NN WRB JJ NNS VBD IN DT JJ NN IN PRP$ NN .\nIt was just a day after his operations chief , Reynaldo Ramos , was abducted from his home nearby .\tPRP VBD RB DT NN IN PRP$ NNS NN , NNP NNP , VBD VBN IN PRP$ NN RB .\nMonterrey Mayor Fernando Larrazabal said the motive was not yet known .\tNNP NNP NNP NNP VBD DT NN VBD RB RB VBN .\nHe said the state prosecutor 's office is handling the investigation .\tPRP VBD DT NN NN POS NN VBZ VBG DT NN .\nMonterrey is the capital of the Mexican state of Nuevo Leon , which has experienced a recent increase in drug-related violence .\tNNP VBZ DT NN IN DT JJ NN IN NNP NNP , WDT VBZ VBN DT JJ NN IN JJ NN .\nThe mayor has recently fired a large number of traffic police officers suspected of corruption or collusion with drug traffickers .\tDT NN VBZ RB VBN DT JJ NN IN NN NN NNS VBN IN NN CC NN IN NN NNS .\nThe seventh round of peace talks for Sudan 's troubled Darfur region have been postponed , but it is not clear when they will resume .\tDT JJ NN IN NN NNS IN NNP POS JJ NNP NN VBP VBN VBN , CC PRP VBZ RB JJ WRB PRP MD VB .\nThe African-Union sponsored talks were due to begin in the Nigerian capital , Abuja , Monday .\tDT NN VBD NNS VBD JJ TO VB IN DT JJ NN , NNP , NNP .\nAfrican Union officials are quoted as saying the delay could range from several days to an indefinite postponement .\tNNP NNP NNS VBP VBN IN VBG DT NN MD VB IN JJ NNS TO DT JJ NN .\nAU spokesman Nureddin Mezni told the French News Agency , AFP , the talks were postponed because of logistical reasons .\tNNP NN NNP NNP VBD DT NNP NNP NNP , NNP , DT NNS VBD VBN IN IN JJ NNS .\nThe last round of talks ended in October with little progress amid escalating violence in Darfur and infighting within Darfur 's main rebel group .\tDT JJ NN IN NNS VBN IN NNP IN JJ NN IN VBG NN IN NNP CC VBG IN NNP POS JJ NN NN .\nSaturday , a senior U.S. official , Assistant Secretary of State for African Affairs , Jendayi Frazer , met with rival leaders of the rebel Sudan Liberation Army to urge them to present a united front at the next round of peace talks .\tNNP , DT JJ NNP NN , NNP NNP IN NNP IN NNP NNP , NNP NNP , VBD IN JJ NNS IN DT NN NNP NNP NNP TO VB PRP TO VB DT JJ NN IN DT JJ NN IN NN NNS .\nPakistan says it has tightened security around all its nuclear facilities following a surge of militant attacks within its borders .\tNNP VBZ PRP VBZ VBN NN IN DT PRP$ JJ NNS VBG DT NN IN JJ NNS IN PRP$ NNS .\nThe head of the agency that handles Pakistan 's nuclear arsenal , Khalid Kidwai , told foreign reporters Saturday that , in his words , ' the state of alertness has gone up . '\tDT NN IN DT NN WDT VBZ NNP POS JJ NN , NNP NNP , VBD JJ NNS NNP IN , IN PRP$ NNS , `` DT NN IN NN VBZ VBN RP . ``\nHowever , he said there is no conceivable scenario in which Pakistan will fall to al-Qaida or Taliban type extremists .\tRB , PRP VBD EX VBZ DT JJ NN IN WDT NNP MD VB TO NNP CC NNP NN NNS .\nMilitant groups have launched a rising number of attacks on Pakistani security forces and intelligence personnel in recent months .\tJJ NNS VBP VBN DT VBG NN IN NNS IN JJ NN NNS CC NN NNS IN JJ NNS .\nPakistan is estimated to have about 50 nuclear weapons .\tNNP VBZ VBN TO VB IN CD JJ NNS .\nThe New York Timessays international inspectors are requesting access to two secret Iranian military sites , where intelligence suggests Tehran could be developing nuclear weapons .\tDT NNP NNP NNP JJ NNS VBP VBG NN TO CD JJ JJ JJ NNS , WRB NN VBZ NNP MD VB VBG JJ NNS .\nThe newspaper says inspectors from the International Atomic Energy Agency have seen satellite photographs that indicate high explosives are being tested .\tDT NN VBZ NNS IN DT NNP NNP NNP NNP VBP VBN NN NNS WDT VBP JJ NNS VBP VBG VBN .\nAccording to the Times , several sources , including IAEA member countries , diplomats and weapons experts provided intelligence about the Iranian military sites .\tVBG TO DT NNP , JJ NNS , VBG NNP NN NNS , NNS CC NNS NNS VBD NN IN DT JJ JJ NNS .\nThis week , Iran agreed to suspend uranium enrichment activities , staving off a U.S. push to bring the matter to the U.N. Security Council for possible sanctions over Tehran 's alleged nuclear weapons program .\tDT NN , NNP VBD TO VB NN NN NNS , VBG RP DT NNP NN TO VB DT NN TO DT NNP NNP NNP IN JJ NNS IN NNP POS JJ JJ NNS NN .\nBut the Iranian government says it has not abandoned its right to enrich uranium .\tCC DT JJ NN VBZ PRP VBZ RB VBN PRP$ NN TO VB NN .\nThe Indian government has lodged a protest against Pakistan over its plans to build a dam in the disputed region of Kashmir , with the help of China .\tDT JJ NN VBZ VBN DT NN IN NNP IN PRP$ NNS TO VB DT NN IN DT JJ NN IN NNP , IN DT NN IN NNP .\nIndia 's foreign ministry said Friday the dam is being built in part of the Himalayan valley that is ' illegally ' occupied by Pakistan .\tNNP POS JJ NN VBD NNP DT NN VBZ VBG VBN IN NN IN DT NNP NN WDT VBZ `` RB `` VBN IN NNP .\nKashmir is divided between India and Pakistan , but claimed by both .\tNNP VBZ VBN IN NNP CC NNP , CC VBN IN DT .\nLast month , Pakistan and China signed a memorandum of understanding for the construction of the Bunji hydroelectric project , which is aimed at generating electricity for Pakistan .\tJJ NN , NNP CC NNP VBD DT NN IN NN IN DT NN IN DT NNP JJ NN , WDT VBZ VBN IN VBG NN IN NNP .\nThe country is dealing with power shortages .\tDT NN VBZ VBG IN NN NNS .\nThe project has caused concern in India over Pakistan 's growing ties with China .\tDT NN VBZ VBN NN IN NNP IN NNP POS VBG NNS IN NNP .\nFriday , Pakistan summoned an official with the Indian High Commission in Islamabad to reject the India 's protest of the dam .\tNNP , NNP VBD DT NN IN DT JJ NNP NNP IN NNP TO VB DT NNP POS NN IN DT NN .\nThe presidents of Afghanistan and Iran have opened a new road between their countries that they hailed as a symbol of the bilateral cooperation needed to restore peace and stability to the region .\tDT NNS IN NNP CC NNP VBP VBN DT JJ NN IN PRP$ NNS IN PRP VBD IN DT NN IN DT JJ NN VBN TO VB NN CC NN TO DT NN .\nIran agreed to build the 123-kilometer road between its Dogharoun region and Afghanistan 's western Herat province that officials say is a key source of trade for Afghanistan .\tNNP VBD TO VB DT JJ NN IN PRP$ NNP NN CC NNP POS JJ NNP NN WDT NNS VBP VBZ DT JJ NN IN NN IN NNP .\nIn his remarks , Iranian President Mohammad Khatami said Iran desires a stable , modern and free Afghanistan .\tIN PRP$ NNS , JJ NNP NNP NNP VBD NNP VBZ DT JJ , JJ CC JJ NNP .\nHe also said that his government is studying more than 30 road-building projects in Iran to further expand trade to Afghanistan and Central Asia .\tPRP RB VBD IN PRP$ NN VBZ VBG JJR IN CD NN NNS IN NNP TO RB VB NN TO NNP CC NNP NNP .\nVisiting Afghan President Hamid Karzai thanked Iran for building the $ 60 million highway and emphasized that the reconstruction of war-torn Afghanistan will also help its neighbors .\tVBG JJ NNP NNP NNP VBD NNP IN VBG DT $ CD CD NN CC VBD IN DT NN IN JJ NNP MD RB VB PRP$ NNS .\nPresident Karzai used the new highway to return home and end his two day visit .\tNNP NNP VBD DT JJ NN TO VB NN CC VB PRP$ CD NN NN .\nThe U.S. military says five American troops died in Iraq Thursday , including four killed in a roadside bombing .\tDT NNP NN VBZ CD JJ NNS VBD IN NNP NNP , VBG CD VBN IN DT NN NN .\nThe military says the blast in eastern Baghdad also injured two soldiers .\tDT NN VBZ DT NN IN JJ NNP RB VBD CD NNS .\nThe other fatality was of a soldier who died of combat injuries north of Baghdad in Salahaddin province .\tDT JJ NN VBD IN DT NN WP VBD IN NN NNS NN IN NNP IN NNP NN .\nIn other news , a mortar attack Friday killed one person in the southern Baghdad neighborhood of Zafaraniyah .\tIN JJ NN , DT NN NN NNP VBD CD NN IN DT JJ NNP NN IN NNP .\nIn the northern city of Kirkuk , a roadside bomb killed two police officers .\tIN DT JJ NN IN NNP , DT NN NN VBD CD NNS NNS .\nAlso , the British military has confirmed the escape of some prisoners at a British-run detention facility near the southern city of Basra .\tRB , DT JJ NN VBZ VBN DT NN IN DT NNS IN DT JJ NN NN IN DT JJ NN IN NNP .\nThe Reutersnews agency says 10 prisoners escaped earlier this week by swapping clothes and places with individuals who came as visitors .\tDT NNP NN VBZ CD NNS VBD RBR DT NN IN VBG NNS CC NNS IN NNS WP VBD IN NNS .\nThe news agency says those who swapped clothes with the prisoners are being held for questioning .\tDT NN NN VBZ DT WP VBD NNS IN DT NNS VBP VBG VBN IN VBG .\nThe African Union 's Peace and Security Council says that Ivory Coast President Laurent Gbagbo should stay in power after his mandate expires until new post-war elections can be organized .\tDT NNP NNP POS NNP CC NNP NNP VBZ IN NNP NNP NNP NNP NNP MD VB IN NN IN PRP$ NN VBZ IN JJ JJ NNS MD VB VBN .\nIn a statement Thursday following crisis talks on Ivory Coast , AU leaders recommended President Gbagbo stay on for one year and called for the appointment of a new prime minister .\tIN DT NN NNP VBG NN NNS IN NNP NNP , NNP NNS VBD NNP NNP NN IN IN CD NN CC VBD IN DT NN IN DT JJ JJ NN .\nThe president 's mandate ends October 30 - the day an election was to have taken place in Ivory Coast .\tDT NN POS NN VBZ NNP CD IN DT NN DT NN VBD TO VB VBN NN IN NNP NNP .\nThe election has been delayed indefinitely after the warring sides failed to implement key steps to organize the vote .\tDT NN VBZ VBN VBN RB IN DT VBG NNS VBD TO VB JJ NNS TO VB DT NN .\nSeveral peace deals have failed to take hold and Ivory Coast remains divided between rebels who control large swaths of territory in the north and the government in the south .\tJJ NN NNS VBP VBN TO VB NN CC NNP NNP VBZ VBN IN NNS WP VBP JJ NNS IN NN IN DT NN CC DT NN IN DT NN .\nThe U.S. space agency NASA says the Phoenix Mars probe landed in an ideal location to search for evidence that the planet could support life .\tDT NNP NN NN NNP VBZ DT NNP NNPS NN VBD IN DT JJ NN TO VB IN NN IN DT NN MD VB NN .\nAt a news conference Tuesday NASA scientists said the probe is located in a valley in the polar region believed to contain subterranean ice .\tIN DT NN NN NNP NNP NNS VBD DT NN VBZ VBN IN DT NN IN DT JJ NN VBN TO VB JJ NN .\nPhoenix is designed to dig through the Martian soil and into the layer of ice to look for the basic chemical components essential to supporting life .\tNNP VBZ VBN TO VB IN DT JJ NN CC IN DT NN IN NN TO VB IN DT JJ NN NNS JJ TO VBG NN .\nNASA says there were few problems with the landing Sunday , though a radio glitch on a spacecraft orbiting Mars will likely delay the scheduled mission by about one day .\tNNP VBZ EX VBD JJ NNS IN DT NN NNP , IN DT NN NN IN DT NN VBG NNP MD RB VB DT VBN NN IN IN CD NN .\nA team of Canadian scientists reports clear skies at the landing site , with temperatures ranging between negative 30 and negative 80 degrees Celsius , and with 32 kilometer per hour winds .\tDT NN IN JJ NNS VBZ JJ NNS IN DT NN NN , IN NNS VBG IN JJ CD CC JJ CD NNS NNP , CC IN CD NN IN NN NNS .\nPop musician John Mayer will headline an upcoming concert to celebrate the 10th anniversary of Save The Music .\tNNP NN NNP NNP NN NN DT JJ NN TO VB DT JJ NN IN NNP NNP NNP .\nFounded by the VH1 television network to promote music education in U.S. public schools , the organization has reportedly provided $ 34 million worth of instruments to schools around the country .\tVBN IN DT NNP NN NN TO VB NN NN IN NNP JJ NNS , DT NN VBZ RB VBN $ CD CD NN IN NNS TO NNS IN DT NN .\nScheduled for September 20 at New York City 's Lincoln Center , the concert will also feature 50 of the students the organization has helped over the past decade .\tVBN IN NNP CD IN NNP NNP NNP POS NNP NNP , DT NN MD RB VB CD IN DT NNS DT NN VBZ VBN IN DT JJ NN .\nAsian markets fell sharply Monday , on fears a recession in the United States will weaken the demand for Asian exports .\tJJ NNS VBD RB NNP , IN NNS DT NN IN DT NNP NNPS MD VB DT NN IN JJ NNS .\nChina 's Shanghai Composite Index tumbled more than 7 percent while the Nikkei in Tokyo and Sensex in Mumbai were both down almost 4 percent .\tNNP POS NNP NNP NNP VBD JJR IN CD NN IN DT NNP IN NNP CC NNP IN NNP VBD DT IN RB CD NN .\nHong Kong 's Hang Seng index dropped more than 5 percent .\tNNP NNP POS NNP NNP NN VBD JJR IN CD NN .\nThe major European indexes in London , Paris and Frankfurt were also down in midday trading , but much less than Asia , dropping about 2 percent .\tDT JJ JJ NNS IN NNP , NNP CC NNP VBD RB RB IN NN NN , CC RB JJR IN NNP , VBG IN CD NN .\nAnalysts say investors are still nervous following last week 's worldwide plunge , despite President 's Bush 's plan to revitalize the slowing U.S. economy with tax rebates .\tNNS VBP NNS VBP RB JJ VBG JJ NN POS JJ NN , IN NNP POS NNP POS NN TO VB DT VBG NNP NN IN NN NNS .\nThe U.S. Federal Reserve meets this week to consider if another interest rate cut is needed to help stave off a recession .\tDT NNP NNP NNP VBZ DT NN TO VB IN DT NN NN NN VBZ VBN TO VB VB RP DT NN .\nThousands of Palestinian police have begun deploying in the southern Gaza Strip .\tNNS IN JJ NNS VBP VBN VBG IN DT JJ NNP NNP .\nPalestinian authorities say security forces headed for two of the most volatile areas Friday - the refugee camps of Khan Younis and Rafah .\tJJ NNS VBP NN NNS VBN IN CD IN DT RBS JJ NNS NNP IN DT NN NNS IN NNP NNP CC NNP .\nMilitants there have launched rocket and mortar attacks at Israeli troops and Jewish settlements .\tNNS RB VBP VBN NN CC NN NNS IN JJ NNS CC JJ NNS .\nShortly after the Palestinian security move , Israeli army chief General Moshe Yaalon ordered his troops to halt operations in all areas of the Gaza Strip where Palestinian police are deployed .\tRB IN DT JJ NN NN , JJ NN NN NNP NNP NNP VBD PRP$ NNS TO VB NNS IN DT NNS IN DT NNP NNP WRB JJ NNS VBP VBN .\nIsraeli Prime Minister Ariel Sharon said Thursday conditions are right for a ' historic breakthrough ' in the Middle East peace process because of steps taken by the new Palestinian leadership .\tJJ NNP NNP NNP NNP VBD NNP NNS VBP JJ IN DT `` JJ NN `` IN DT NNP NNP NN NN IN IN NNS VBN IN DT JJ JJ NN .\nMr. Sharon told a group of Israeli businessmen , Israel would be willing to advance the peace process if Palestinian President Mahmoud Abbas is able to stop terror attacks .\tNNP NNP VBD DT NN IN JJ NNS , NNP MD VB JJ TO VB DT NN NN IN JJ NNP NNP NNP VBZ JJ TO VB NN NNS .\nNiger President Mamadou Tandja has approved Prime Minister Seyni Oumarou 's new cabinet , with several top ministers returning to posts they held before a no-confidence vote toppled the previous government last month .\tNNP NNP NNP NNP VBZ VBN NNP NNP NNP NNP POS JJ NN , IN JJ JJ NNS VBG TO NNS PRP VBD IN DT NN NN VBD DT JJ NN JJ NN .\nPrime Minister Oumarou took office this week after Niger 's parliament voted out Prime Minister Hama Amadou 's government on May 31 .\tNNP NNP NNP VBD NN DT NN IN NNP POS NN VBD RP NNP NNP NNP NNP POS NN IN NNP CD .\nMr. Amadou 's opponents accused him of complicity in a corruption scandal in Niger 's education ministry .\tNNP NNP POS NNS VBD PRP IN NN IN DT NN NN IN NNP POS NN NN .\nTwo former education ministers have gone to jail since an audit found hundreds of thousands of dollars were missing .\tCD JJ NN NNS VBP VBN TO NN IN DT NN VBD NNS IN NNS IN NNS VBD VBG .\nAmong those keeping their seats in the 31-member cabinet announced Saturday are the Foreign Minister Aichatou Mindaoudou , Interior Minister Albade Abouba and Economy and Finance Minister Ali Mahamane Lamine Zeine .\tIN DT VBG PRP$ NNS IN DT JJ NN VBN NNP VBP DT NNP NNP NNP NNP , NNP NNP NNP NNP CC NNP CC NNP NNP NNP NNP NNP NNP .\nTibet 's spiritual leader , the Dalai Lama , has voiced his support for pro-democracy protests in Burma and is urging Buddhist members of the country 's military government to show more compassion .\tNNP POS JJ NN , DT NNP NNP , VBZ VBN PRP$ NN IN JJ NNS IN NNP CC VBZ VBG NNP NNS IN DT NN POS JJ NN TO VB JJR NN .\nIn an interview with VOA in Washington Tuesday , the Dalai Lama said that he admired the recent efforts of Buddhist monks in Burma to push for democracy and added that he felt that their cause was just .\tIN DT NN IN NNP IN NNP NNP , DT NNP NNP VBD IN PRP VBD DT JJ NNS IN NNP NNS IN NNP TO VB IN NN CC VBD IN PRP VBD IN PRP$ NN VBD RB .\nThe Dalai Lama also urged Buddhist members of Burma 's military government to use the religion 's teachings of ' compassion ' and ' love ' when confronting such situations of crisis .\tDT NNP NNP RB VBD NNP NNS IN NNP POS JJ NN TO VB DT NN POS NNS IN `` NN `` CC `` NN `` WRB VBG JJ NNS IN NN .\nThe Dalai Lama spoke with VOA after meeting with President Bush in Washington on Tuesday .\tDT NNP NNP VBD IN NNP IN VBG IN NNP NNP IN NNP IN NNP .\nThe Burmese government 's bloody crackdown of pro-democracy protests in Burma last month left at least 10 people dead .\tDT JJ NN POS JJ NN IN JJ NNS IN NNP JJ NN VBD IN JJS CD NNS JJ .\nThousands of monks and other activists have been arrested , and many more are believed to have been killed .\tNNS IN NNS CC JJ NNS VBP VBN VBN , CC JJ JJR VBP VBN TO VB VBN VBN .\nUkraine 's opposition party has agreed to hold talks with President Leonid Kuchma to resolve the crisis over Sunday 's disputed presidential elections .\tNNP POS NN NN VBZ VBN TO VB NNS IN NNP NNP NNP TO VB DT NN IN NNP POS JJ JJ NNS .\nMr. Kuchma is calling on all political forces in the former Soviet republic to immediately enter into talks .\tNNP NNP VBZ VBG IN DT JJ NNS IN DT JJ JJ NN TO RB VB IN NNS .\nThe appeal came after about 2,00,000 opposition supporters marched on the presidential office in Kiev to demand that their candidate - Viktor Yushchenko - be declared the winner of the election .\tDT NN VBD IN IN CD NN NNS VBD IN DT JJ NN IN NNP TO VB IN PRP$ NN IN NNP NNP : VB VBN DT NN IN DT NN .\nOfficial preliminary results showed the pro-Russian Prime Minister Viktor Yanukovich winning the vote .\tJJ JJ NNS VBD DT JJ NNP NNP NNP NNP VBG DT NN .\nMr. Kuchma , a backer of the prime minister , called the protests a ' political farce ' that he says could lead to ' unforseeable consequences . '\tNNP NNP , DT NN IN DT JJ NN , VBD DT NNS DT `` JJ NN `` IN PRP VBZ MD VB TO `` JJ NNS . ``\nU.S. and European observers reported indications of extensive voter fraud in Sunday 's election .\tNNP CC JJ NNS VBD NNS IN JJ NN NN IN NNP POS NN .\nRussian President Vladimir Putin called European criticism inadmissible because final results have not been announced .\tJJ NNP NNP NNP VBD JJ NN JJ IN JJ NNS VBP RB VBN VBN .\nTim Nardiello has been reinstated as the U.S. skeleton coach shortly after an arbitrator found no evidence to support claims that he sexually harassed two team members .\tNNP NNP VBZ VBN VBN IN DT NNP NN NN RB IN DT NN VBD DT NN TO VB NNS IN PRP RB VBD CD NN NNS .\nThe U.S. Bobsled and Skeleton Federation board lifted Nardiello 's suspension during a meeting on Monday .\tDT NNP NNP CC NNP NNP NN VBD NNP POS NN IN DT NN IN NNP .\nThe decision was effective immediately .\tDT NN VBD JJ RB .\nNardiello is hoping to rejoin the team for the season 's final skeleton World Cup in Altenberg , Germany , on Thursday and Friday .\tNNP VBZ VBG TO VB DT NN IN DT NN POS JJ NN NNP NNP IN NNP , NNP , IN NNP CC NNP .\nDespite the decision , the U.S. Olympic Committee still controls whether Nardiello will coach the four American sliders at the Turin Olympics , which open on February 10 .\tIN DT NN , DT NNP NNP NNP RB VBZ IN NNP MD VB DT CD JJ NNS IN DT NNP NNP , WDT VBZ IN NNP CD .\nAlso Monday , the best U.S. hope for men 's skeleton gold , Zach Lund , was publicly warned but not suspended by the U.S. Anti-Doping Agency over a failed drug test this season .\tRB NNP , DT JJS NNP NN IN NNS POS NN NN , NNP NNP , VBD RB VBN CC RB VBN IN DT NNP NNP NNP IN DT JJ NN NN DT NN .\nIsrael has charged nuclear whistleblower Mordechai Vanunu with violating the terms of his release from prison .\tNNP VBZ VBN JJ NN NNP NNP IN VBG DT NNS IN PRP$ NN IN NN .\nVanunu was freed from an Israeli jail last year after serving an 18-year sentence for revealing secrets of Israel 's nuclear program to a British journalist in the 1980s .\tNNP VBD VBN IN DT JJ NN JJ NN IN VBG DT JJ NN IN JJ NNS IN NNP POS JJ NN TO DT JJ NN IN DT NNS .\nUnder terms of his release , the former Israeli nuclear technician was barred from contacting foreigners or leaving the country .\tIN NNS IN PRP$ NN , DT JJ JJ JJ NN VBD VBN IN VBG NNS CC VBG DT NN .\nHe was re-arrested in November , after granting another interview in which he said Israel has up to 200 atomic warheads , a neutron bomb , and hydrogen bombs .\tPRP VBD VBN IN NNP , IN VBG DT NN IN WDT PRP VBD NNP VBZ RB TO CD JJ NNS , DT NN NN , CC NN NNS .\nIsrael has never admitted or denied having a nuclear arsenal .\tNNP VBZ RB VBN CC VBN VBG DT JJ NN .\nReuters news agency reports a new indictment includes charges that Vanunu , a Christian convert , also violated release terms by trying to visit the West Bank in December to attend a midnight Christmas religious service .\tNNP NN NN VBZ DT JJ NN VBZ NNS IN NNP , DT JJ NN , RB VBD NN NNS IN VBG TO VB DT NNP NNP IN NNP TO VB DT NN NNP JJ NN .\nThe wife of one of two foreign journalists kidnapped in Gaza City Monday has appealed for their release .\tDT NN IN CD IN CD JJ NNS VBN IN NNP NNP NNP VBZ VBN IN PRP$ NN .\nThe wife of an abducted New Zealand cameraman Wednesday called the kidnappings pointless , saying the men had been sharing the Palestinians ' stories with the world .\tDT NN IN DT JJ NNP NNP NN NNP VBD DT NNS JJ , VBG DT NNS VBD VBN VBG DT NNS POS NNS IN DT NN .\nThe other kidnapping victim is an American .\tDT JJ NN NN VBZ DT NN .\nPalestinian security forces are searching for the two journalists who were working for U.S. media outlet Fox News .\tJJ NN NNS VBP VBG IN DT CD NNS WP VBD VBG IN NNP NNS NN NNP NNP .\nNo group has claimed responsibility for the abductions .\tDT NN VBZ VBN NN IN DT NNS .\nOn the political front , Palestinian President Mahmoud Abbas of the Fatah movement and the ruling group Hamas have agreed to resume talks on forming a unity government .\tIN DT JJ NN , JJ NNP NNP NNP IN DT NNP NN CC DT NN NN NNP VBP VBN TO VB NNS IN VBG DT NN NN .\nPrevious talks collapsed over Hamas 's refusal to implicitly recognize Israel .\tJJ NNS VBD IN NNP POS NN TO RB VB NNP .\nIn another development , hospital sources say an Israeli air strike early Wednesday destroyed a building in southern Gaza , killing two people .\tIN DT NN , NN NNS VBP DT JJ NN NN RB NNP VBD DT NN IN JJ NNP , VBG CD NNS .\nThe Israeli army says it targeted a weapons storage facility .\tDT JJ NN VBZ PRP VBD DT NNS NN NN .\nIsraeli police say a Palestinian suicide bomber has critically wounded two Israeli security guards in the Israeli city of Beersheba .\tJJ NNS VBP DT JJ NN NN VBZ RB VBN CD JJ NN NNS IN DT JJ NN IN NNP .\nPolice say the bomber detonated his explosives outside the city 's main bus station during the morning rush hour .\tNNS VBP DT NN VBD PRP$ NNS IN DT NN POS JJ NN NN IN DT NN NN NN .\nThere has been no immediate claim of responsibility .\tEX VBZ VBN DT JJ NN IN NN .\nPalestinian leader Mahmoud Abbas condemned the bombing - the first such attack since Israel began withdrawing Jewish settlers from the Gaza Strip earlier this month .\tJJ NN NNP NNP VBD DT NN IN DT JJ JJ NN IN NNP VBD VBG JJ NNS IN DT NNP NNP RBR DT NN .\nMeanwhile , the Israeli cabinet has approved the deployment of Egyptian police along Egypt 's border with Gaza .\tRB , DT JJ NN VBZ VBN DT NN IN JJ NNS IN NNP POS NN IN NNP .\nUnder an agreement with Cairo , Egypt is to position 750 border police on the Egyptian side to replace Israeli troops trying to block cross-border smuggling .\tIN DT NN IN NNP , NNP VBZ TO VB CD NN NNS IN DT JJ NN TO VB JJ NNS VBG TO VB JJ NN .\nIsrael says all of its forces in Gaza will leave the border area by the end of September .\tNNP VBZ DT IN PRP$ NNS IN NNP MD VB DT NN NN IN DT NN IN NNP .\nHamas ' political leader says the Islamic group will not renew a truce with Israel that expires at the end of this year .\tNNP POS JJ NN VBZ DT JJ NN MD RB VB DT NN IN NNP WDT VBZ IN DT NN IN DT NN .\nAt a rally in a Palestinian refugee camp near the Syrian capital Friday , Khaled Mashaal said Hamas would not enter a new truce while the Palestinian people are preparing for a new round of conflict .\tIN DT NN IN DT JJ NN NN IN DT JJ NN NNP , NNP NNP VBD NNP MD RB VB DT JJ NN IN DT JJ NNS VBP VBG IN DT JJ NN IN NN .\nLater , Mr. Mashaal told al-Jazeera television that the current truce would not be affected , but that calls for extending it are unrealistic .\tRB , NNP NNP VBD NNP NN IN DT JJ NN MD RB VB VBN , CC DT VBZ IN VBG PRP VBP JJ .\nHe accused Israel of carrying out targeted assassinations , arrests and airstrikes in violation of the truce .\tPRP VBD NNP IN VBG RP JJ NNS , NNS CC NNS IN NN IN DT NN .\nIsrael says such actions are in self-defense .\tNNP VBZ JJ NNS VBP IN NN .\nThe Associated Press reports the Palestinian Authority said Mr. Mashaal 's statement was ' irresponsible ' and a violation of the truce .\tDT NNP NNP VBZ DT JJ NNP VBD NNP NNP POS NN VBD `` JJ `` CC DT NN IN DT NN .\nThe commander of NATO forces in Afghanistan says the international community has underestimated the resurgence of the Taleban , partly because the war in Iraq diverted attention and resources .\tDT NN IN NNP NNS IN NNP VBZ DT JJ NN VBZ VBN DT NN IN DT NNP , RB IN DT NN IN NNP VBN NN CC NNS .\nLieutenant-General David Richards told BBC Thursday that the international community ' took their eye off this ball and a vacuum was allowed to develop ' in Afghanistan .\tJJ NNP NNP VBD NNP NNP IN DT JJ NN `` VBD PRP$ NN IN DT NN CC DT NN VBD VBN TO VB `` IN NNP .\nThe British general said the war in Iraq absorbed people 's interest and resources for a while .\tDT JJ NN VBD DT NN IN NNP VBD NNS POS NN CC NNS IN DT NN .\nBut he said he is optimistic the insurgency in Afghanistan can be defeated .\tCC PRP VBD PRP VBZ JJ DT NN IN NNP MD VB VBN .\nAfghanistan in recent months has suffered the worst violence since a U.S.-led attack ousted the Taleban government in December 2001 , in part for failing to hand over Osama bin Laden .\tNNP IN JJ NNS VBZ VBN DT JJS NN IN DT JJ NN VBD DT NNP NN IN NNP CD , IN NN IN VBG TO VB RP NNP NNP NNP .\nFighting Thursday left 12 suspected Taleban militants dead in southern Nawzad district .\tVBG NNP VBD CD JJ NNP NNS JJ IN JJ NNP NN .\nA coalition soldier was also killed by a landmine in the same province .\tDT NN NN VBD RB VBN IN DT NN IN DT JJ NN .\nBurma 's official media reported Saturday that troops confiscated grenades and other weapons from a border hide-out used by suspected drug traffickers , after an earlier gunbattle killed 13 policemen and members of their patrol .\tNNP POS JJ NNS VBD NNP IN NNS VBD NNS CC JJ NNS IN DT NN NN VBN IN JJ NN NNS , IN DT JJR NN VBD CD NNS CC NNS IN PRP$ NN .\nThe state-run New Light of Myanmar said the shoot-out took place February 20 near the northeastern town of Tachileik , which borders Thailand .\tDT JJ NNP NNP IN NNP VBD DT NN VBD NN NNP CD IN DT JJ NN IN NNP , WDT VBZ NNP .\nThe report said an anti-drug squad was patrolling the Mekong river near Tachileik when it encountered drug traffickers and a gunbattle broke out .\tDT NN VBD DT JJ NN VBD VBG DT NNP NN IN NNP WRB PRP VBD NN NNS CC DT NN VBD RP .\nEight policemen were killed , along with two local militia members and three police boat drivers .\tCD NNS VBD VBN , IN IN CD JJ NN NNS CC CD NNS NN NNS .\nTwo police officers were wounded .\tCD NNS NNS VBD VBN .\nThe paper said that police , acting on a tip , found 15 tents several days later on an island in the Mekong .\tDT NN VBD IN NN , VBG IN DT NN , VBD CD NNS JJ NNS RB IN DT NN IN DT NNP .\nAuthorities seized grenades , rifles , ammunition and blocks of caffeine - an ingredient of methamphetamine tablets .\tNNS VBD NNS , NNS , NN CC NNS IN NN IN DT NN IN NN NNS .\nU.S.-led coalition forces in Afghanistan say troops killed 24 Taleban fighters in a seven-hour battle in the country 's restive south .\tJJ NN NNS IN NNP VBP NNS VBD CD NNP NNS IN DT JJ NN IN DT NN POS JJ NN .\nA coalition statement said the fight happened Wednesday in the Sangin district of Helmand province .\tDT NN NN VBD DT NN VBD NNP IN DT NNP NN IN NNP NN .\nTwo coalition soldiers were wounded .\tCD NN NNS VBD VBN .\nMeanwhile , Amnesty International said Taleban insurgents are deliberately targeting civilians in Afghanistan to instill fear and exert control over the population .\tRB , NNP NNP VBD NNP NNS VBP RB VBG NNS IN NNP TO VB NN CC NN NN IN DT NN .\nThe London-based rights group said civilians are increasingly facing suicide attacks , abductions and beheadings .\tDT JJ NNS NN VBD NNS VBP RB VBG NN NNS , NNS CC NNS .\nThe organization said Taleban militants have a deliberate policy of killing teachers , abducting aid workers and burning school buildings .\tDT NN VBD NNP NNS VBP DT JJ NN IN VBG NNS , VBG NN NNS CC NN NN NNS .\nAmnesty said at least 756 civilians were killed in 2006 , mostly from roadside bombs and suicide attacks .\tNNP VBD IN JJS CD NNS VBD VBN IN CD , RB IN NN NNS CC NN NNS .\nThe rising cost of living is hurting a growing number of Americans , especially those who live on fixed incomes .\tDT VBG NN IN NN VBZ VBG DT VBG NN IN NNS , RB DT WP VBP IN JJ NNS .\nAmong the hardest hit are retirees .\tIN DT JJS NN VBP NNS .\nMore and more are finding that the money they set aside for their golden years may not be enough to take care of their needs .\tJJR CC JJR VBP VBG IN DT NN PRP VBD RB IN PRP$ JJ NNS MD RB VB JJ TO VB NN IN PRP$ NNS .\nIt 's an issue an estimated 46 million Americans will grapple with as they reach retirement age this year .\tPRP VBZ DT NN DT VBN CD CD NNS MD VB IN IN PRP VBP NN NN DT NN .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nIraqi authorities say 50 suspected insurgents have been detained in connection with Sunday 's suicide car bombings in the nation 's two holiest Shi'ite cities , Najaf and Karbala .\tJJ NNS VBP CD JJ NNS VBP VBN VBN IN NN IN NNP POS NN NN NNS IN DT NN POS CD JJS NNP NNS , NNP CC NNP .\nHospital officials say the death toll from the carnage has risen to 66 - at least 52 lives lost in Najaf and 14 in Karbala .\tNN NNS VBP DT NN NN IN DT NN VBZ VBN TO CD : IN JJS CD NNS VBN IN NNP CC CD IN NNP .\nMore than 140 people were wounded by the explosions .\tJJR IN CD NNS VBD VBN IN DT NNS .\nShi'ite Muslim leaders have appealed for calm , saying such attacks are clearly attempts to ignite sectarian violence and prevent Iraq 's first post-Saddam elections , scheduled to take place in six weeks , on January 30 .\tNNP NNP NNS VBP VBN IN NN , VBG JJ NNS VBP RB NNS TO VB JJ NN CC VB NNP POS JJ JJ NNS , VBN TO VB NN IN CD NNS , IN NNP CD .\nShi'ite leaders are urging their followers not to resort to revenge attacks , but to focus on the upcoming national elections .\tNNP NNS VBP VBG PRP$ NNS RB TO VB TO NN NNS , CC TO VB IN DT JJ JJ NNS .\nThe United Nations says that restoring tens of thousands of degraded wetlands around the world could help reduce the threat of a bird flu pandemic .\tDT NNP NNP VBZ IN VBG NNS IN NNS IN JJ NNS IN DT NN MD VB VB DT NN IN DT NN NN NN .\nPreliminary findings of the report were released Tuesday during a conference at the U.N. Environment Program headquarters in Nairobi , Kenya .\tJJ NNS IN DT NN VBD VBN NNP IN DT NN IN DT NNP NNP NNP NN IN NNP , NNP .\nThe report says the loss of wetlands is forcing many wild birds into alternative habitats like farm ponds and paddy fields .\tDT NN VBZ DT NN IN NNS VBZ VBG JJ JJ NNS IN JJ NNS IN NN NNS CC JJ NNS .\nIt says these habitats increase the risk of the birds spreading avian flu to domestic birds like chickens .\tPRP VBZ DT NNS VBP DT NN IN DT NNS VBG JJ NN TO JJ NNS IN NNS .\nThe U.N. agency says current efforts to curb the spread of the disease , like isolation or destroying birds , are likely quick fixes that offer limited short-term benefits .\tDT NNP NN VBZ JJ NNS TO VB DT NN IN DT NN , IN NN CC VBG NNS , VBP JJ JJ NNS WDT VBP VBN JJ NNS .\nBird flu has killed more than 100 people since 2003 , mostly in East Asia .\tNN NN VBZ VBN JJR IN CD NNS IN CD , RB IN NNP NNP .\nThe disease also has been detected in birds in parts of Africa , the Middle East and Europe .\tDT NN RB VBZ VBN VBN IN NNS IN NNS IN NNP , DT NNP NNP CC NNP .\nThe African Union 's peace and security council has called on all African countries to impose sanctions against Togo over the military 's installation of President Faure Gnassingbe .\tDT NNP NNP POS NN CC NN NN VBZ VBN IN DT JJ NNS TO VB NNS IN NNP IN DT NN POS NN IN NNP NNP NNP .\nThe council Friday backed sanctions by the West African group ECOWAS , and urged the AU 's 53 members to follow suit .\tDT NN NNP VBD NNS IN DT NNP NNP NN NNP , CC VBD DT NNP POS CD NNS TO VB NN .\nECOWAS has agreed to slap an arms embargo and travel ban on Togolese officials .\tNNP VBZ VBN TO VB DT NNS NN CC NN NN IN NNP NNS .\nAlso Friday , the vice president of Togo 's ruling party , George Dahoun Gignor , told VOA that Mr. Gnassingbe must step down , saying the embattled leader has no choice .\tRB NNP , DT NN NN IN NNP POS VBG NN , NNP NNP NNP , VBD NNP IN NNP NNP MD VB RB , VBG DT JJ NN VBZ DT NN .\nHowever , the ruling party Friday backed Mr. Gnassingbe as its candidate in presidential elections expected within 60 days .\tRB , DT VBG NN NNP VBD NNP NNP IN PRP$ NN IN JJ NNS VBN IN CD NNS .\nPresident Gnassingbe told cheering party members he accepted the nomination .\tNNP NNP VBD VBG NN NNS PRP VBD DT NN .\nHe took power earlier this month after the death of his father , Gnassingbe Eyadema .\tPRP VBD NN RBR DT NN IN DT NN IN PRP$ NN , NNP NNP .\nUnited Nations peacekeeping troops in Haiti have surrounded the residence of ousted President Jean-Bertrand Aristide , threatening to forcefully evict demobilized soldiers who have seized the compound .\tNNP NNPS VBG NNS IN NNP VBP VBN DT NN IN JJ NNP NNP NNP , VBG TO RB VB JJ NNS WP VBP VBN DT NN .\nHaiti 's interim government has ordered the rebels out of the compound in the suburb of Tabarre .\tNNP POS JJ NN VBZ VBN DT NNS IN IN DT NN IN DT NN IN NNP .\nThe government said Thursday U.N. troops will do whatever is necessary to clear the residence .\tDT NN VBD NNP NNP NNS MD VB WDT VBZ JJ TO VB DT NN .\nThe ex-soldiers - who helped lead the three-week rebellion that ousted Mr. Aristide in February - moved into the compound on Wednesday .\tDT NNS : WP VBD VB DT JJ NN WDT VBD NNP NNP IN NNP : VBD IN DT NN IN NNP .\nMr. Aristide is in exile in South Africa .\tNNP NNP VBZ IN NN IN NNP NNP .\nBritish police have arrested a suspect wanted in Spain in connection with last year 's March 11 train bombings in Madrid in which nearly 200 people died .\tJJ NNS VBP VBN DT NN VBD IN NNP IN NN IN JJ NN POS NNP CD NN NNS IN NNP IN WDT RB CD NNS VBD .\nPolice identified the man as 39-year-old Spaniard Moutaz Almallah Dabas .\tNNS VBD DT NN IN JJ NN NNP NNP NNP .\nThey said they were acting on an extradition warrant from Spain when they took him into custody at Slough , west of London .\tPRP VBD PRP VBD VBG IN DT NN NN IN NNP WRB PRP VBD PRP IN NN IN NNP , NN IN NNP .\nMr. Almallah Dabas is wanted for alleged terrorist offenses linked to the Madrid train bombings .\tNNP NNP NNP VBZ VBN IN JJ JJ NNS VBN TO DT NNP NN NNS .\nHe is due to appear in London 's Bow Street magistrate 's court on Monday .\tPRP VBZ JJ TO VB IN NNP POS NNP NNP NN POS NN IN NNP .\nOn Friday , Spanish police arrested his brother , Mohannad Almallah Dabas , who holds a Syrian passport , also in connection with the Madrid train bombings .\tIN NNP , JJ NN VBN PRP$ NN , NNP NNP NNP , WP VBZ DT JJ NN , RB IN NN IN DT NNP NN NNS .\nThe United States is revitalizing efforts to jumpstart six-party talks on North Korea 's nuclear ambitions .\tDT NNP NNPS VBZ VBG NNS TO VB JJ NNS IN NNP NNP POS JJ NNS .\nIn an interview with Reuters and AFP , Secretary of State Condoleezza Rice says the United States has already made Pyongyang ' a very good proposal ' and is waiting for it to be accepted .\tIN DT NN IN NNP CC NNP , NNP IN NNP NNP NNP VBZ DT NNP NNPS VBZ RB VBN NNP `` DT RB JJ NN `` CC VBZ VBG IN PRP TO VB VBN .\nNorth Korea has so far refused to return for a fourth round of talks , alleging the United States plans to launch military strikes against it - an idea Ms. Rice calls ' farfetched . '\tNNP NNP VBZ RB RB VBN TO VB IN DT JJ NN IN NNS , VBG DT NNP NNPS VBZ TO VB JJ NNS IN PRP IN DT NN NNP NNP VBZ `` VBN . ``\nMeanwhile , a senior U.S. official is in Seoul for talks with South Korean officials after stops in Tokyo and Beijing .\tRB , DT JJ NNP NN VBZ IN NNP IN NNS IN JJ JJ NNS IN NNS IN NNP CC NNP .\nMichael Green , director for Asian affairs on the U.S. National Security Council , says the Bush administration is holding out hope that Pyongyang will return to the negotiations .\tNNP NNP , NN IN JJ NNS IN DT NNP NNP NNP NNP , VBZ DT NNP NN VBZ VBG RP NN IN NNP MD VB TO DT NNS .\nItalian chemical giant Montedison S.p.A. , through its Montedison Acquisition N.V. indirect unit , began its $ 37-a-share tender offer for all the common shares outstanding of Erbamont N.V. , a maker of pharmaceuticals incorporated in the Netherlands .\tJJ NN NN NNP NNP , IN PRP$ NNP NNP NN JJ NN , VBD PRP$ $ JJ NN NN IN PDT DT JJ NNS JJ IN NNP NN , DT NN IN NNS VBN IN DT NNP .\nThe offer , advertised in today 's editions of The Wall Street Journal , is scheduled to expire at the end of November .\tDT NN , VBN IN NN POS NNS IN DT NNP NNP NNP , VBZ VBN TO VB IN DT NN IN NNP .\nMontedison currently owns about 72 % of Erbamont 's common shares outstanding .\tNNP RB VBZ IN CD NN IN NNP POS JJ NNS JJ .\nThe offer is being launched pursuant to a previously announced agreement between the companies .\tDT NN VBZ VBG VBN JJ TO DT RB VBN NN IN DT NNS .\nBurkina Faso ( formerly Upper Volta ) achieved independence from France in 1960 .\tNNP NNP LRB RB NNP NNP RRB VBD NN IN NNP IN CD .\nRepeated military coups during the 1970s and 1980s were followed by multiparty elections in the early 1990s .\tVBN JJ NNS IN DT NNS CC NNS VBD VBN IN JJ NNS IN DT JJ NNS .\nCurrent President Blaise COMPAORE came to power in a 1987 military coup and has won every election since then .\tNNP NNP NNP NNP VBD TO NN IN DT CD JJ NN CC VBZ VBN DT NN IN RB .\nBurkina Faso 's high population density and limited natural resources result in poor economic prospects for the majority of its citizens .\tNNP NNP POS JJ NN NN CC JJ JJ NNS NN IN JJ JJ NNS IN DT NN IN PRP$ NNS .\nRecent unrest in Cote d'Ivoire and northern Ghana has hindered the ability of several hundred thousand seasonal Burkinabe farm workers to find employment in neighboring countries .\tJJ NN IN NNP NNP CC JJ NNP VBZ VBN DT NN IN JJ CD CD JJ NNP NN NNS TO VB NN IN JJ NNS .\nOnce one of the wealthiest of the Yugoslav republics , Croatia 's economy suffered badly during the 1991 - 95 war as output collapsed and the country missed the early waves of investment in Central and Eastern Europe that followed the fall of the Berlin Wall .\tRB CD IN DT JJS IN DT JJ NNS , NNP POS NN VBD RB IN DT CD IN CD NN IN NN VBD CC DT NN VBD DT JJ NNS IN NN IN NNP CC NNP NNP WDT VBD DT NN IN DT NNP NNP .\nBetween 2000 and 2007 , however , Croatia 's economic fortunes began to improve slowly , with moderate but steady GDP growth between 4 % and 6 % led by a rebound in tourism and credit-driven consumer spending .\tIN CD CC CD , RB , NNP POS JJ NNS VBD TO VB RB , IN JJ CC JJ NN NN IN CD NN CC CD NN VBN IN DT NN IN NN CC JJ NN NN .\nInflation over the same period has remained tame and the currency , the kuna , stable .\tNN IN DT JJ NN VBZ VBN JJ CC DT NN , DT NN , JJ .\nNevertheless , difficult problems still remain , including a stubbornly high unemployment rate , a growing trade deficit and uneven regional development .\tRB , JJ NNS RB VBP , VBG DT RB JJ NN NN , DT VBG NN NN CC JJ JJ NN .\nThe state retains a large role in the economy , as privatization efforts often meet stiff public and political resistance .\tDT NN VBZ DT JJ NN IN DT NN , IN NN NNS RB VBP JJ JJ CC JJ NN .\nWhile macroeconomic stabilization has largely been achieved , structural reforms lag because of deep resistance on the part of the public and lack of strong support from politicians .\tIN JJ NN VBZ RB VBN VBN , JJ NNS VBP IN IN JJ NN IN DT NN IN DT NN CC NN IN JJ NN IN NNS .\nThe EU accession process should accelerate fiscal and structural reform .\tDT NNP NN NN MD VB JJ CC JJ NN .\nWhile long term growth prospects for the economy remain strong , Croatia will face significant pressure as a result of the global financial crisis .\tIN JJ NN NN NNS IN DT NN VBP JJ , NNP MD VB JJ NN IN DT NN IN DT JJ JJ NN .\nCroatia 's high foreign debt , anemic export sector , strained state budget , and over-reliance on tourism revenue will result in higher risk to economic stability over the medium term .\tNNP POS JJ JJ NN , JJ NN NN , VBD NN NN , CC NN IN NN NN MD VB IN JJR NN TO JJ NN IN DT JJ NN .\nMorocco annexed the northern two-thirds of Western Sahara ( formerly Spanish Sahara ) in 1976 and claimed the rest of the territory in 1979 , following Mauritania 's withdrawal .\tNNP VBD DT JJ NNS IN JJ NNP LRB RB JJ NNP RRB IN CD CC VBD DT NN IN DT NN IN CD , VBG NNP POS NN .\nA guerrilla war with the Polisario Front contesting Morocco 's sovereignty ended in a 1991 UN-brokered cease-fire ; a UN-organized referendum on the territory 's final status has been repeatedly postponed .\tDT NN NN IN DT NNP NNP VBG NNP POS NN VBD IN DT CD JJ NN ; DT JJ NN IN DT NN POS JJ NN VBZ VBN RB VBN .\nThe UN since 2007 has sponsored intermittent talks between representatives of the Government of Morocco and the Polisario Front to negotiate the status of Western Sahara .\tDT NNP IN CD VBZ VBN JJ NNS IN NNS IN DT NN IN NNP CC DT NNP NNP TO VB DT NN IN NNP NNP .\nMorocco has put forward an autonomy proposal for the territory , which would allow for some local administration while maintaining Moroccan sovereignty .\tNNP VBZ VBN RB DT JJ NN IN DT NN , WDT MD VB IN DT JJ NN IN VBG JJ NN .\nThe Polisario , with Algeria 's support , demands a popular referendum that includes the option of independence .\tDT NNP , IN NNP POS NN , VBZ DT JJ NN WDT VBZ DT NN IN NN .\nThe Genoese built a fortress on the site of present day Monaco in 1215 .\tDT NNP VBD DT NN IN DT NN IN JJ NN NNP IN CD .\nThe current ruling Grimaldi family first seized temporary control in 1297 , and again in 1331 , but were not able to permanently secure their holding until 1419 .\tDT JJ NN NNP NN RB VBD JJ NN IN CD , CC RB IN CD , CC VBD RB JJ TO RB VB PRP$ NN IN CD .\nEconomic development was spurred in the late 19th century with a railroad linkup to France and the opening of a casino .\tJJ NN VBD VBN IN DT JJ JJ NN IN DT NN NN TO NNP CC DT NN IN DT NN .\nSince then , the principality 's mild climate , splendid scenery , and gambling facilities have made Monaco world famous as a tourist and recreation center .\tIN RB , DT NN POS JJ NN , JJ NN , CC NN NNS VBP VBN NNP NN JJ IN DT NN CC NN NN .\nA CRAB , forsaking the seashore , chose a neighboring green meadow as its feeding ground .\tDT NNP , VBG DT NN , VBD DT JJ JJ NN IN PRP$ NN NN .\nA Fox came across him , and being very hungry ate him up .\tDT NNP VBD IN PRP , CC VBG RB JJ NN PRP RP .\nJust as he was on the point of being eaten , the Crab said , ' I well deserve my fate , for what business had I on the land , when by my nature and habits I am only adapted for the sea ? '\tRB IN PRP VBD IN DT NN IN VBG VBN , DT NNP VBD , `` PRP RB VBP PRP$ NN , IN WP NN VBD PRP IN DT NN , WRB IN PRP$ NN CC NNS PRP VBP RB VBN IN DT NN . ``\nContentment with our lot is an element of happiness .\tNN IN PRP$ NN VBZ DT NN IN NN .\nA GROOM used to spend whole days in currycombing and rubbing down his Horse , but at the same time stole his oats and sold them for his own profit .\tDT NN VBD TO VB JJ NNS IN VBG CC VBG RP PRP$ NN , CC IN DT JJ NN VBD PRP$ NNS CC VBD PRP IN PRP$ JJ NN .\n' Alas ! ' said the Horse , ' if you really wish me to be in good condition , you should groom me less , and feed me more . '\t`` UH . `` VBD DT NN , `` IN PRP RB VBP PRP TO VB IN JJ NN , PRP MD VB PRP RBR , CC VB PRP RBR . ``\nA POLITICAL Leader was walking out one sunny day , when he observed his Shadow leaving him and walking rapidly away .\tDT JJ NN VBD VBG RP CD JJ NN , WRB PRP VBD PRP$ NN VBG PRP CC VBG RB RB .\n' Come back here , you scoundrel , ' he cried .\t`` VB RB RB , PRP NN , `` PRP VBD .\n' If I had been a scoundrel , ' answered the Shadow , increasing its speed , ' I should not have left you . '\t`` IN PRP VBD VBN DT NN , `` VBD DT NN , VBG PRP$ NN , `` PRP MD RB VB VBN PRP . ``\nThe makers of French 's Mustard made the following recent statement :\tDT NNS IN NNP POS NNP VBD DT VBG JJ NN :\nWe at the French 's Company wish to put an end to statements that our product is manufactured in France .\tPRP IN DT NNP POS NN NN TO VB DT NN TO NNS IN PRP$ NN VBZ VBN IN NNP .\nThere is no relationship , nor has there ever been a relationship , between our mustard and the country of France .\tEX VBZ DT NN , CC VBZ EX RB VBN DT NN , IN PRP$ NN CC DT NN IN NNP .\nIndeed , our mustard in manufactured in Rochester , NY .\tRB , PRP$ NN IN VBN IN NNP , NNP .\nThe only thing we have in common is that we are both yellow .\tDT JJ NN PRP VBP IN NN VBZ IN PRP VBP DT JJ .\nAt least our team is trying to win a game .\tIN JJS PRP$ NN VBZ VBG TO VB DT NN .\nCoach went out and set up our new pitching machine the other day .\tNNP VBD RB CC VB RP PRP$ JJ NN NN DT JJ NN .\nUnfortunately it beat us 04-Jan .\tRB PRP VBD PRP CD .\nClinton 's mother prayed fervently that Bill would grow up and be president .\tNNP POS NN VBD RB IN NNP MD VB RB CC VB NN .\nSo far , half of her prayer has been answered .\tRB RB , NN IN PRP$ NN VBZ VBN VBN .\nApplied excessively , styling gel could cause you to have a hair-raising experience .\tVBN RB , NN NN MD VB PRP TO VB DT JJ NN .\nIndia says it is increasing security to thwart possible militant strikes in the country .\tNNP VBZ PRP VBZ VBG NN TO VB JJ JJ NNS IN DT NN .\nIndian Home Minister P. Chidambaram Tuesday warned reporters against creating an alarmist picture and said India is increasing its level of preparedness to meet any terror threat or attack .\tJJ NNP NNP NNP NNP NNP VBD NNS IN VBG DT JJ NN CC VBD NNP VBZ VBG PRP$ NN IN NN TO VB DT NN NN CC NN .\nThe minister 's comments come just days after Israel said it has information that the same group that carried out the 2008 attacks in Mumbai , India , is planning another assault against Western and Israeli targets in the country .\tDT NN POS NNS VBP RB NNS IN NNP VBD PRP VBZ NN IN DT JJ NN WDT VBD IN DT CD NNS IN NNP , NNP , VBZ VBG DT NN IN JJ CC JJ NNS IN DT NN .\nIsrael 's counter-terrorism bureau released a statement Thursday , September 17 , saying it has information that terrorists are planning a number of attacks across India , and may be focusing on hitting groups of Israelis and Westerners .\tNNP POS NN NN VBD DT NN NNP , NNP CD , VBG PRP VBZ NN IN NNS VBP VBG DT NN IN NNS IN NNP , CC MD VB VBG IN VBG NNS IN NNS CC NNPS .\nIndia is a popular destination for Israeli tourists , especially during Jewish festivals such as the traditional new year , which began Friday .\tNNP VBZ DT JJ NN IN JJ NNS , RB IN JJ NNS JJ IN DT JJ JJ NN , WDT VBD NNP .\nThe United States , Israel and Australia have issued travel advisories to their citizens .\tDT NNP NNPS , NNP CC NNP VBP VBN NN NNS TO PRP$ NNS .\nIndia 's holiday season includes Hindu , Islamic and secular holidays , as well as the period surrounding the commemoration of the September 11 , 2001 terror attacks on the United States .\tNNP POS NN NN VBZ NNP , NNP CC JJ NNS , RB RB IN DT NN VBG DT NN IN DT NNP CD , CD NN NNS IN DT NNP NNPS .\nUgandan 's president says his country could increase the number of troops it has in Somalia as part of the African Union peacekeeping force .\tJJ POS NN VBZ PRP$ NN MD VB DT NN IN NNS PRP VBZ IN NNP IN NN IN DT NNP NNP VBG NN .\nIn a statement Thursday , President Yoweri Museveni says Uganda is ' capable ' of providing all 8,000 troops authorized for the force by the AU .\tIN DT NN NNP , NNP NNP NNP VBZ NNP VBZ `` JJ `` IN VBG DT CD NNS VBN IN DT NN IN DT NNP .\nThe statement says he made the comment to United Nations Secretary-General Ban Ki-Moon on Wednesday , on the sidelines of the AU summit in Ethiopia .\tDT NN VBZ PRP VBD DT NN TO NNP NNP NNP NNP NNP IN NNP , IN DT NNS IN DT NNP NN IN NNP .\nMr. Museveni told the U.N. leader he has to discuss the matter with his High Command first but will inform Mr. Ban of the decision .\tNNP NNP VBD DT NNP NN PRP VBZ TO VB DT NN IN PRP$ NNP NNP JJ CC MD VB NNP NNP IN DT NN .\nUganda and Burundi have deployed a total of about 2,000 troops to Somalia , where the Somali government and allied Ethiopian troops have been battling an Islamist-led insurgency for more than a year .\tNNP CC NNP VBP VBN DT NN IN IN CD NNS TO NNP , WRB DT JJ NN CC JJ JJ NNS VBP VBN VBG DT JJ NN IN JJR IN DT NN .\nFighting centered in Mogadishu has killed thousands of people and prompted more than 6,00,000 others to flee the city .\tVBG VBN IN NNP VBZ VBN NNS IN NNS CC VBN JJR IN CD NNS TO VB DT NN .\nMr. Ban has expressed concern that few African countries have fulfilled their promise of troops for the AU peacekeeping froce .\tNNP NNP VBZ VBN NN IN JJ JJ NNS VBP VBN PRP$ NN IN NNS IN DT NNP NN NN .\nZimbabwe President Robert Mugabe named an electoral commission to run parliamentary elections expected in March .\tNNP NNP NNP NNP VBD DT JJ NN TO VB JJ NNS VBN IN NNP .\nThe main opposition , Movement for Democratic Change said it had no confidence in the commission .\tDT JJ NN , NN IN JJ NNP VBD PRP VBD DT NN IN DT NN .\nJustice minister Patrick Chinamasa announced that Mr. Mugabe appointed a 5-member body under the chairmanship of High Court Judge , George Chiweshe , who was appointed by President Robert Mugabe , leader of Zimbabwe 's ruling Zanu-PF party .\tNNP NN NNP NNP VBD IN NNP NNP VBD DT JJ NN IN DT NN IN NNP NNP NNP , NNP NNP , WP VBD VBN IN NNP NNP NNP , NN IN NNP POS NN NNP NN .\nJudge Chiweshe made legal history in 2002 when he told the High Court that the state did not have to provide any evidence to continue to detain a critically ill opposition member of parliament who was trying to get out of prison on bail .\tNNP NNP VBD JJ NN IN CD WRB PRP VBD DT NNP NNP IN DT NN VBD RB VB TO VB DT NN TO VB TO VB DT RB JJ NN NN IN NN WP VBD VBG TO VB IN IN NN IN NN .\nHe was also appointed by Mr. Mugabe to draw up a new map of voting districts released before Christmas .\tPRP VBD RB VBN IN NNP NNP TO VB RP DT JJ NN IN NN NNS VBN IN NNP .\nThe MDC expressed concerns over Mr. Chiweshe 's appointment because of the voter redistricting which removed three of the MDC 's stronghold constituencies .\tDT NNP VBD NNS IN NNP NNP POS NN IN IN DT NN VBG WDT VBD CD IN DT NNP POS NN NNS .\nMr. Chinamasa insisted that the commission reflects an all-inclusive consultation process , incorporating all three parties represented in Zimbabwe 's parliament , including the MDC .\tNNP NNP VBD IN DT NN VBZ DT JJ NN NN , VBG DT CD NNS VBN IN NNP POS NN , VBG DT NNP .\nBut , new electoral laws signed into law by Mr. Mugabe last week , for the first time give the military , police and prison officials a substantial role in the next poll , and they can , if recruited to serve , control voting and counting .\tCC , JJ JJ NNS VBD IN NN IN NNP NNP JJ NN , IN DT JJ NN VB DT NN , NN CC NN NNS DT JJ NN IN DT JJ NN , CC PRP MD , IN VBN TO VB , VB NN CC NN .\nThere was a frenzy of lawmaking late last year to establish new legislation and electoral authorities ahead of the poll which Mr. Mugabe says will be held in March ahead of his 25th anniversary of coming to power in 1980 .\tEX VBD DT NN IN VBG JJ JJ NN TO VB JJ NN CC JJ NNS RB IN DT NN WDT NNP NNP VBZ MD VB VBN IN NNP RB IN PRP$ JJ NN IN VBG TO NN IN CD .\nThe MDC suspended participation in all elections five months ago because it said the electoral playing field was uneven .\tDT NNP VBD NN IN DT NNS CD NNS RB IN PRP VBD DT JJ NN NN VBD JJ .\nIt said it would only take part when Zimbabwe 's laws and practice complied with regional electoral principles agreed to by Mr. Mugabe and other southern African countries last August .\tPRP VBD PRP MD RB VB NN WRB NNP POS NNS CC NN VBD IN JJ JJ NNS VBD TO IN NNP NNP CC JJ JJ JJ NNS JJ NNP .\nHowever most political analysts believe the MDC will take part in the general election , despite Zimbabwe 's lack of compliance with regional electoral practices and laws .\tRB RBS JJ NNS VBP DT NNP MD VB NN IN DT JJ NN , IN NNP POS NN IN NN IN JJ JJ NNS CC NNS .\nWestern observers are not expected to be invited to cover Zimbabwe 's poll as they said the last two national elections were neither free nor fair .\tJJ NNS VBP RB VBN TO VB VBN TO VB NNP POS NN IN PRP VBD DT JJ CD JJ NNS VBD RB JJ CC JJ .\nIn a weekend of second-round qualifiers for the 2012 African Cup of Nations , no result was more surprising than Niger 's 1-0 upset of reigning African champions Egypt .\tIN DT NN IN JJ NNS IN DT CD NNP NNP IN NNP , DT NN VBD JJR JJ IN NNP POS JJ NN IN VBG JJ NNS NNP .\nFootball fans in Niger 's capital celebrated throughout the night , blowing horns and singing the praises of their Menas ' win over the Pharaohs of Egypt .\tNN NNS IN NNP POS NN VBD IN DT NN , VBG NNS CC VBG DT NNS IN PRP$ NNS POS NN IN DT NNP IN NNP .\nIt was a stunning upset , even for the most loyal of Niger 's football faithful .\tPRP VBD DT JJ NN , RB IN DT JJS NN IN NNP POS NN NN .\nFIFA ranks Egypt 9th in the world .\tNNP VBZ NNP CD IN DT NN .\nNiger : 154th .\tNNP IN CD .\nNiamey 's 35,000 seat Stade General Seyni Kountche was full long before the mid-afternoon kick-off under a blistering sun .\tNNP POS CD NN NNP NNP NNP NNP VBD JJ RB IN DT NN NN IN DT VBG NN .\nStriker Ouwa Moussa Maazou scored the only goal in the first half , getting past Egyptian defender Mohamed Abel Shafy who failed to clear .\tNNP NNP NNP NNP VBD DT JJ NN IN DT JJ NN , VBG JJ JJ NN NNP NNP NNP WP VBD TO VB .\nGoalkeeper Essam el-Hadary charged Maazou , but the 22-year-old striker - who is on loan from French club Bordeaux - slipped the ball past him into the net .\tNN NNP NNP VBD NNP , CC DT JJ NN : WP VBZ IN NN IN JJ NN NNP : VBD DT NN JJ PRP IN DT NN .\nEgypt pressed for the equalizer at the start of the second half , but rarely got much past midfield .\tNNP VBD IN DT NN IN DT NN IN DT JJ NN , CC RB VBD RB JJ NN .\nTheir best chance came off a free kick in the 76th minute .\tPRP$ JJS NN VBD RP DT JJ NN IN DT JJ NN .\nBut Mahmoud Fathallah was ruled offside .\tCC NNP NNP VBD VBN NN .\nMaazou 's goal and solid defense gives Niger three points in Group G and drops Egypt to the bottom of the group with only one point after two matches , following their opening 01-Jan draw with Sierra Leone in Cairo .\tNNP POS NN CC JJ NN VBZ NNP CD NNS IN NNP NNP CC VBZ NNP TO DT NN IN DT NN IN RB CD NN IN CD NNS , VBG PRP$ NN JJ NN IN NNP NNP IN NNP .\nIt was an inauspicious start for the record seven-time continental champions , who next play South Africa in Johannesburg .\tPRP VBD DT JJ NN IN DT NN JJ JJ NNS , WP RB VBP NNP NNP IN NNP .\nNiger hosts Sierra Leone as it pushes to qualify for the 2012 tournament in Equatorial Guinea and Gabon .\tNNP VBZ NNP NNP IN PRP VBZ TO VB IN DT CD NN IN NNP NNP CC NNP .\nIraqi officials say a car bomb targeting a police patrol has killed six people and wounded at least 11 more in a city north of Baghdad .\tJJ NNS VBP DT NN NN VBG DT NN NN VBZ VBN CD NNS CC VBN IN JJS CD JJR IN DT NN NN IN NNP .\nPolice said Thursday the blast took place in central Tikrit , hometown of former dictator Saddam Hussein .\tNNS VBD NNP DT NN VBD NN IN JJ NNP , NN IN JJ NN NNP NNP .\nThey said four police officers were among the dead and several others were wounded .\tPRP VBD CD NNS NNS VBD IN DT NN CC JJ NNS VBD VBN .\nOverall violence in Iraq has yet to match the peak reached in 2006 and 2007 .\tJJ NN IN NNP VBZ RB TO VB DT NN VBN IN CD CC CD .\nHowever , insurgents have intensified attacks since inconclusive March elections left the country without a governing coalition .\tRB , NNS VBP VBN NNS IN JJ NNP NNS VBD DT NN IN DT NN NN .\nSylvester Stallone faces stiff fines in Australia , where he is accused of importing a muscle-building hormone .\tNNP NNP VBZ JJ NNS IN NNP , WRB PRP VBZ VBN IN VBG DT JJ NN .\nThe movie star was detained Feb. 16 in the Sydney airport , while authorities searched his hotel room .\tDT NN NN VBD VBN NNP CD IN DT NNP NN , IN NNS VBD PRP$ NN NN .\nHe and his group subsequently left the country , and he was not compelled to attend the March 13 hearing .\tPRP CC PRP$ NN RB VBD DT NN , CC PRP VBD RB VBN TO VB DT NNP CD NN .\nHe is accused of possessing human growth hormone , classified in Australia as a restricted performance-enhancing drug .\tPRP VBZ VBN IN VBG JJ NN NN , VBN IN NNP IN DT JJ JJ NN .\nThe maximum penalty for illegal possession is a fine of $ 86,000 and five years in prison .\tDT NN NN IN JJ NN VBZ DT NN IN $ CD CC CD NNS IN NN .\nStallone is unlikely to face such a sentence .\tNNP VBZ JJ TO VB PDT DT NN .\nPolice in western India say at least 52 people were killed and at least eight others injured Thursday , when a train collided with a tractor carrying a wedding party .\tNNS IN JJ NNP VBP IN JJS CD NNS VBD VBN CC IN JJS CD NNS VBN NNP , WRB DT NN VBN IN DT NN VBG DT VBG NN .\nPolice say the accident happened in a small village in Maharashtra state , some 800 kilometers northeast of Bombay , also known as Mumbai .\tNNS VBP DT NN VBD IN DT JJ NN IN NNP NN , DT CD NNS RB IN NNP , RB VBN IN NNP .\nThey say a local train bound for the central city of Nagpur smashed into a tractor as it was crossing the tracks .\tPRP VBP DT JJ NN VBN IN DT JJ NN IN NNP VBD IN DT NN IN PRP VBD VBG DT NNS .\nAccidents are relatively frequent on India 's railway network , which handles 13 million passengers on 14,000 trains every day .\tNNS VBP RB JJ IN NNP POS NN NN , WDT VBZ CD CD NNS IN CD NNS DT NN .\nIn December , a head-on collision of two passenger trains in Punjab state brought opposition party calls for the resignation of Railways Minister Laloo Prasad Yadav .\tIN NNP , DT JJ NN IN CD NN NNS IN NNP NN VBD NN NN VBZ IN DT NN IN NNP NNP NNP NNP NNP .\nAt least 37 people died in that crash .\tIN JJS CD NNS VBD IN DT NN .\nThe New York City Fire Department has released thousands of pages of oral histories and hours of radio transmissions from the September 11 , 2001 , terrorist attacks on the World Trade Center .\tDT NNP NNP NNP NNP NNP VBZ VBN NNS IN NNS IN JJ NNS CC NNS IN NN NNS IN DT NNP CD , CD , JJ NNS IN DT NNP NNP NNP .\nA New York State court of appeals ruled in March that the items must be made public .\tDT NNP NNP NNP NN IN NNS VBD IN NNP IN DT NNS MD VB VBN JJ .\nThe oral histories were complied by firefighters shortly after the attacks on the twin towers , and include accounts from firefighters and emergency medical personnel who were on the scene .\tDT JJ NNS VBD VBN IN NNS RB IN DT NNS IN DT NN NNS , CC VBP NNS IN NNS CC NN JJ NNS WP VBD IN DT NN .\nThe New York Times newspaper and families of the victims of the attacks had sued for the release of the material .\tDT NNP NNP NNP NN CC NNS IN DT NNS IN DT NNS VBD VBN IN DT NN IN DT NN .\nThe city had said it wanted to protect the privacy of those involved , and not jeopardize the case against Zacarias Moussaoui , who later pleaded guilty to conspiring with the hijackers .\tDT NN VBD VBN PRP VBD TO VB DT NN IN DT VBN , CC RB VB DT NN IN NNP NNP , WP RB VBD JJ TO VBG IN DT NNS .\nThe United Nations says the December 26 Indian Ocean tsunami dumped tons of hazardous waste on the shores of Somalia .\tDT NNP NNP VBZ DT NNP CD NNP NNP NNP VBD NNS IN JJ NN IN DT NNS IN NNP .\nA spokesman for the U.N. Environment Program says containers filled with nuclear , chemical and medical waste broke apart when they washed ashore , and have been spread by the weather .\tDT NN IN DT NNP NNP NNP VBZ NNS VBN IN JJ , NN CC JJ NN VBD RB WRB PRP VBD RB , CC VBP VBN VBN IN DT NN .\nThe spokesman says there have been reports from northern Somalia of illnesses consistent with radiation sickness , including respiratory infections , mouth ulcers , abdominal hemorrhages and unusual skin diseases .\tDT NN VBZ EX VBP VBN NNS IN JJ NNP IN NNS JJ IN NN NN , VBG JJ NNS , NN NNS , JJ NNS CC JJ NN NNS .\nThe United Nations says foreign companies , many from Europe , began dumping toxic waste on Somalia 's shore in the 1980s , but the practice accelerated after the 1991 overthrow of dictator Mohamed Siad Barre .\tDT NNP NNP VBZ JJ NNS , JJ IN NNP , VBD VBG JJ NN IN NNP POS NN IN DT NNS , CC DT NN VBD IN DT CD NN IN NN NNP NNP NNP .\nThe tsunami is believed to have dislodged the hazardous materials .\tDT NN VBZ VBN TO VB VBN DT JJ NNS .\nJapan has pledged $ 17 billion in development aid to other Asian countries for infrastructure projects that will help boost growth .\tNNP VBZ VBN $ CD CD IN NN NN TO JJ JJ NNS IN NN NNS WDT MD VB VB NN .\nSpeaking Saturday to the World Economic Forum in Davos , Switzerland , Japanese Prime Minister Taro Aso also repeated a pledge to lend $ 100 billion to the International Monetary Fund .\tVBG NNP TO DT NNP NNP NNP IN NNP , NNP , JJ NNP NNP NNP NNP RB VBD DT NN TO VB $ CD CD TO DT NNP NNP NNP .\nMr. Aso also announced a new greenhouse gas emissions plan for Japan and pledged to announce emissions targets by June .\tNNP NNP RB VBD DT JJ NN NN NNS VBP IN NNP CC VBD TO VB NNS NNS IN NNP .\nThe Japanese leader planned to spend only half a day in the Swiss mountain resort and return home by late Sunday to deal with a stormy session of parliament , where the opposition hopes for a victory in elections that are required to be held this year .\tDT JJ NN VBD TO VB RB PDT DT NN IN DT JJ NN NN CC NN NN IN JJ NNP TO VB IN DT JJ NN IN NN , WRB DT NN VBZ IN DT NN IN NNS WDT VBP VBN TO VB VBN DT NN .\nMore than 5,000 U.S. , Iraqi and British troops have swept through an Iraqi town south of Baghdad in the latest operation against insurgents ahead of January elections .\tJJR IN CD NNP , JJ CC JJ NNS VBP VBN IN DT JJ NN NN IN NNP IN DT JJS NN IN NNS RB IN NNP NNS .\nThe U.S. military says troops arrested 32 suspected insurgents in Jabella Tuesday .\tDT NNP NN VBZ NNS VBN CD JJ NNS IN NNP NNP .\nThe raid follows operations in Fallujah and the northern city of Mosul .\tDT NN VBZ NNS IN NNP CC DT JJ NN IN NNP .\nU.S. Defense Minister Donald Rumsfeld says those operations show how much insurgents are opposed to a democratic Iraq .\tNNP NNP NNP NNP NNP VBZ DT NNS VBP WRB JJ NNS VBP VBN TO DT JJ NNP .\nHe warned that attacks will likely increase ahead of the elections .\tPRP VBD IN NNS MD RB VB RB IN DT NNS .\nMeanwhile , foreign ministers from Arab and Western countries met Tuesday in Egypt and said full participation in the vote is the key to reconciliation in Iraq .\tRB , JJ NNS IN JJ CC JJ NNS VBD NNP IN NNP CC VBD JJ NN IN DT NN VBZ DT NN TO NN IN NNP .\nIn another development , a Sunni Muslim cleric was gunned down outside a mosque north of Baghdad .\tIN DT NN , DT NNP NNP NN VBD VBN RP IN DT NN NN IN NNP .\nTerrorist mastermind Osama bin Laden apparently has surfaced on an audiotape calling for the overthrow of Saudi Arabia 's government .\tNNP NN NNP NNP NNP RB VBZ VBN IN DT JJ NN IN DT NN IN NNP NNP POS NN .\nThe lengthy message criticizes the Saudi monarchy , saying its attempts at reform will not change anything and that change will only come through armed struggle and the government 's overthrow .\tDT JJ NN VBZ DT NNP NN , VBG PRP$ NNS IN NN MD RB VB DT CC IN NN MD RB VB IN JJ NN CC DT NN POS NN .\nAuthorities say the authenticity of the tape , which surfaced Thursday on an Islamist website , could not immediately be verified .\tNNS VBP DT NN IN DT NN , WDT VBD NNP IN DT NN NN , MD RB RB VB VBN .\nHe also praises the militants who attacked the U.S. consulate in the Saudi city of Jeddah earlier this month , asking God to be merciful on them .\tPRP RB VBZ DT NNS WP VBD DT NNP NN IN DT JJ NN IN NNP RBR DT NN , VBG NNP TO VB JJ IN PRP .\nFour of the attackers were killed , a fifth was arrested .\tCD IN DT NNS VBD VBN , DT NN VBD VBN .\nFive consulate staff members who were not American were also killed .\tCD JJ NN NNS WP VBD RB JJ VBD RB VBN .\nOsama bin Laden remains a fugitive .\tNNP NNP NNP VBZ DT JJ .\nHe was last heard from in a videotape shortly before the U.S. presidential elections last month .\tPRP VBD JJ VBN IN IN DT NN RB IN DT NNP JJ NNS JJ NN .\nThe U.S.-led military forces in Afghanistan say more than a dozen militants were killed in a day-long battle in southern part of the country Saturday .\tDT JJ JJ NNS IN NNP VBP JJR IN DT NN NNS VBD VBN IN DT JJ NN IN JJ NN IN DT NN NNP .\nA coalition and an Afghan soldier were also killed in the fighting .\tDT NN CC DT JJ NN VBD RB VBN IN DT NN .\nSaturday 's fighting took place in southern Helmand province .\tNNP POS NN VBD NN IN JJ NNP NN .\nCoalition and Afghan forces called for air strikes on militant positions after coming under attack in the area .\tNN CC JJ NNS VBN IN NN NNS IN JJ NNS IN VBG IN NN IN DT NN .\nAlso in the south , Taleban militants executed the kidnapped son of a district police chief .\tRB IN DT NN , NNP NNS VBD DT VBN NN IN DT NN NN NN .\nThe victim was reported to be between 14 and 18-years-old .\tDT NN VBD VBN TO VB IN CD CC JJ .\nIn other violence , a roadside bomb hit an Afghan army convoy killing at least two soldiers and wounding three others in the western Farah province on Sunday .\tIN JJ NN , DT NN NN VBD DT JJ NN NN VBG IN JJS CD NNS CC VBG CD NNS IN DT JJ NNP NN IN NNP .\nA Taleban spokesperson has taken responsibility for the deadly blast .\tDT NNP NN VBZ VBN NN IN DT JJ NN .\nThe World Food Program ( WFP ) warns that fighting in Chad could leave up to 7,00,000 people short of food .\tDT NNP NNP NNP LRB NNP RRB VBZ IN VBG IN NNP MD VB RP TO CD NNS JJ IN NN .\nThe U.N. agency expressed concern that violence will delay truck convoys trying to reach refugees in eastern Chad and displaced people in Sudan 's Darfur region .\tDT NNP NN VBD NN IN NN MD VB NN NNS VBG TO VB NNS IN JJ NNP CC JJ NNS IN NNP POS NNP NN .\nThe agency says the trucks must get through before the end of next month , when seasonal rains are expected to make road travel impossible .\tDT NN VBZ DT NNS MD VB IN IN DT NN IN JJ NN , WRB JJ NNS VBP VBN TO VB NN NN JJ .\nChad 's government is fighting an insurgency that President Idriss Deby says is backed by Sudan .\tNNP POS NN VBZ VBG DT NN IN NNP NNP NNP VBZ VBZ VBN IN NNP .\nThe Sudanese government denies the charge .\tDT JJ NN VBZ DT NN .\nThe World Food Program says it remains operational in Chad despite recent clashes that led it to evacuate non-essential staff .\tDT NNP NNP NNP VBZ PRP VBZ JJ IN NNP IN JJ NNS WDT VBD PRP TO VB JJ NN .\nThe agency says it is wrapping up April food distribution in eastern Chad , where it looks after some 2,00,000 refugees from Darfur .\tDT NN VBZ PRP VBZ VBG RP NNP NN NN IN JJ NNP , WRB PRP VBZ IN DT CD NNS IN NNP .\nThe agency feeds another 5,00,000 displaced Sudanese in Darfur itself .\tDT NN VBZ DT CD JJ NN IN NNP PRP .\nPolice in the northeastern U.S. state of Connecticut say a disgruntled employee at a beer distribution firm went on a shooting spree at his place of employment , leaving nine people dead including himself .\tNNS IN DT JJ NNP NN IN NNP VBP DT JJ NN IN DT NN NN NN VBD IN DT NN NN IN PRP$ NN IN NN , VBG CD NNS JJ VBG PRP .\nA labor union official says the suspect was a driver who had worked at the company , Hartford Distributors .\tDT NN NN NN VBZ DT NN VBD DT NN WP VBD VBN IN DT NN , NNP NNS .\nHe apparently went on a rampage Tuesday , after being summoned for a disciplinary hearing .\tPRP RB VBD IN DT NN NNP , IN VBG VBN IN DT JJ NN .\nThe shooting took place at 7.30 in the morning at a company warehouse , while a large number of people were inside the building during a shift change .\tDT NN VBD NN IN CD IN DT NN IN DT NN NN , IN DT JJ NN IN NNS VBD IN DT NN IN DT NN NN .\nPolice say , after the rampage , it appears the gunman shot and killed himself .\tNNS VBP , IN DT NN , PRP VBZ DT NN VBD CC VBD PRP .\nAfghan officials are welcoming the Netherlands ' decision to keep its troops in southern Afghanistan , but the officials say the international community must do more to equip domestic forces .\tJJ NNS VBP VBG DT NNP POS NN TO VB PRP$ NNS IN JJ NNP , CC DT NNS VBP DT JJ NN MD VB JJR TO VB JJ NNS .\nAfghan Defense Ministry officials Saturday said the extension of the Dutch mission is a positive step .\tJJ NNP NNP NNS NNP VBD DT NN IN DT JJ NN VBZ DT JJ NN .\nBut they said further training of Afghan troops is necessary to ensure long-term security in Afghanistan .\tCC PRP VBD JJ NN IN JJ NNS VBZ JJ TO VB JJ NN IN NNP .\nThe Dutch government announced Friday it will extend the mandate of its troops until 2010 .\tDT JJ NN VBD NNP PRP MD VB DT NN IN PRP$ NNS IN CD .\nThe soldiers serve as part of a NATO force .\tDT NNS VBP IN NN IN DT NNP NN .\nAround 1,700 Dutch troops have been deployed in the southern Uruzgan province , where NATO and U.S.-led forces are fighting fierce battles against Taliban militants .\tIN CD JJ NNS VBP VBN VBN IN DT JJ NNP NN , WRB NNP CC JJ NNS VBP VBG JJ NNS IN NNP NNS .\nA renewed Taliban insurgency in Afghanistan has turned this year into the deadliest yet since the 2001 U.S.-led invasion ousted the Taliban government .\tDT JJ NNP NN IN NNP VBZ VBN DT NN IN DT JJS RB IN DT CD JJ NN VBD DT NNP NN .\nThe prime minister of Pakistan , Shaukat Aziz , has called for European help in repatriating three million Afghan refugees in his country .\tDT JJ NN IN NNP , NNP NNP , VBZ VBN IN JJ NN IN VBG CD CD JJ NNS IN PRP$ NN .\nMr. Aziz says refugee camps along the border with Afghanistan provide safe havens for terrorists .\tNNP NNP VBZ NN NNS IN DT NN IN NNP VBP JJ NNS IN NNS .\nThe prime minister also promised to strengthen efforts to restrict cross-border attacks into Afghanistan .\tDT JJ NN RB VBD TO VB NNS TO VB JJ NNS IN NNP .\nThe Pakistan government has proposed a controversial plan to fence and mine parts of the mountainous border .\tDT NNP NN VBZ VBN DT JJ NN TO NN CC NN NNS IN DT JJ NN .\nMr. Aziz is in Belgium , holding talks with European Union and NATO leaders .\tNNP NNP VBZ IN NNP , VBG NNS IN NNP NNP CC NNP NNS .\nAfter Tuesday 's meeting , NATO Secretary General Jaap de Hoop Scheffer called for an end to criticism of Pakistan 's efforts to contain militants .\tIN NNP POS NN , NNP NNP NNP NNP IN NNP NNP VBD IN DT NN TO NN IN NNP POS NNS TO VB NNS .\nScheffer said it does not make sense to have a public ' blame game . '\tNNP VBD PRP VBZ RB VB NN TO VB DT JJ `` NN NN . ``\nThe Afghan government and the United States have both accused Pakistan of failing to clamp down on Taleban insurgents based in Pakistan who launch attacks into Afghanistan .\tDT JJ NN CC DT NNP NNPS VBP DT VBN NNP IN VBG TO VB RP IN NNP NNS VBN IN NNP WP VBP NNS IN NNP .\nPolice in Indonesia have asked churches to prepare for possible Christmas attacks by digging holes for suspicious objects that might be bombs .\tNNS IN NNP VBP VBN NNS TO VB IN JJ NNP NNS IN VBG NNS IN JJ NNS WDT MD VB NNS .\nOfficials in the central Java city of Solo said Friday they are requesting churches put any suspicious object into a one-meter deep hole to store until a bomb squad can arrive .\tNNS IN DT JJ NNP NN IN NNP VBD NNP PRP VBP VBG NNS VBD DT JJ NN IN DT JJ JJ NN TO VB IN DT NN NN MD VB .\nEarlier this month , Jakarta 's police chief said he will deploy up to 17,000 security officers to safeguard the Indonesian capital during the upcoming Christian holiday season .\tRBR DT NN , NNP POS NN NN VBD PRP MD VB RP TO CD NN NNS TO VB DT JJ NN IN DT JJ JJ NN NN .\nFive years ago , militants bombed 11 churches on Christmas Eve , killing 19 people .\tCD NNS RB , NNS VBD CD NNS IN NNP NNP , VBG CD NNS .\nPolice suspect the radical Jemaah Islamiyah group was responsible .\tNNS VBP DT JJ NNP NNP NN VBD JJ .\nShops , businesses , and offices were shut in Indian-controlled Kashmir Monday , after separatists called a strike to protest the death of a teenager .\tNNS , NNS , CC NNS VBD VBN IN JJ NNP NNP , IN NNS VBD DT NN TO VB DT NN IN DT NN .\nSeventeen-year-old Tufail Ahmad Matoo was killed in the main town of Srinagar Friday during clashes between anti-India protesters and police .\tJJ NNP NNP NNP VBD VBN IN DT JJ NN IN NNP NNP IN NNS IN JJ NNS CC NNS .\nResidents say Mattoo was hit by a teargas shell fired by police and was carrying a school bag when he was hit .\tNNS VBP NNP VBD VBN IN DT JJ NN VBN IN NN CC VBD VBG DT NN NN WRB PRP VBD VBN .\nPolice say they are investigating the death .\tNNS VBP PRP VBP VBG DT NN .\nClashes between demonstrators and security forces have erupted in Srinagar since the incident , with strict security restrictions in place to prevent further violence .\tNNS IN NNS CC NN NNS VBP VBN IN NNP IN DT NN , IN JJ NN NNS IN NN TO VB JJ NN .\nKashmiri Muslim separatists have been fighting for two decades for independence from India or a merger with Muslim-majority Pakistan .\tJJ NNP NNS VBP VBN VBG IN CD NNS IN NN IN NNP CC DT NN IN NNP NNP .\nThe insurgency has killed more than 47,000 people .\tDT NN VBZ VBN JJR IN CD NNS .\nKashmir is divided between India and Pakistan , but claimed in its entirety by both .\tNNP VBZ VBN IN NNP CC NNP , CC VBD IN PRP$ NN IN DT .\nThe neighbors have fought two wars over the region .\tDT NNS VBP VBN CD NNS IN DT NN .\nHundreds of millions of Christians worldwide are celebrating Christmas Saturday .\tNNS IN NNS IN NNPS NN VBP VBG NNP NNP .\nPope John Paul , in his traditional Christmas Day message , expressed concern at violence in the Middle East and Africa .\tNNP NNP NNP , IN PRP$ JJ NNP NNP NN , VBD NN IN NN IN DT NNP NNP CC NNP .\nThe Roman Catholic pontiff said he follows the situation in Iraq with ' great apprehension . '\tDT NNP NNP NN VBD PRP VBZ DT NN IN NNP IN `` JJ NN . ``\nHe said he has ' anxious concern ' about the situation in the Holy Land but also feels ' invincible confidence ' at the prospects for peace there .\tPRP VBD PRP VBZ `` JJ NN `` IN DT NN IN DT NNP NNP CC RB VBZ `` JJ NN `` IN DT NNS IN NN RB .\nPresident Bush issued a Christmas Day call for Americans to volunteer to help the neediest of their fellow citizens .\tNNP NNP VBD DT NNP NN NN IN NNS TO VB TO VB DT JJS IN PRP$ JJ NNS .\nThe President also acknowledged Americans serving in Afghanistan , Iraq and elsewhere around the world .\tDT NNP RB VBD NNS VBG IN NNP , NNP CC RB IN DT NN .\nBritain 's Queen Elizabeth sent a special radio message to her troops serving around the world expressing pride and gratitude .\tNNP POS NNP NNP VBD DT JJ NN NN TO PRP$ NNS VBG IN DT NN VBG NN CC NN .\nLater in her annual televised Christmas message , the Queen highlighted Britain 's ethnic and religious diversity and appealed for tolerance .\tRB IN PRP$ JJ JJ NNP NN , DT NNP VBD NNP POS JJ CC JJ NN CC VBD IN NN .\nChurch and state leaders have joined ordinary citizens in Russia in marking Orthodox Christmas Eve .\tNN CC NN NNS VBP VBN JJ NNS IN NNP IN VBG NNP NNP NNP .\nThe head of the Russian Orthodox Church , Patriarch Alexy , urged believers to mark Christmas with good deeds .\tDT NN IN DT JJ NNP NNP , NNP NNP , VBD NNS TO VB NNP IN JJ NNS .\nRussia 's Itar-Tass news agency says he urged the faithful to pool their efforts to allow the joy of Christmas to enter every home .\tNNP POS NNP NN NN VBZ PRP VBD DT NN TO NN PRP$ NNS TO VB DT NN IN NNP TO VB DT NN .\nRussian President Vladimir Putin attended a Christmas Eve service at a cathedral in the Siberian city of Yakutsk .\tJJ NNP NNP NNP VBD DT NNP NNP NN IN DT NN IN DT JJ NN IN NNP .\nIn a message to citizens , Mr. Putin urged them to follow the Christmas tradition of helping those in need .\tIN DT NN TO NNS , NNP NNP VBD PRP TO VB DT NNP NN IN VBG DT IN NN .\nIn Rome , Pope Benedict extended Christmas greetings to Orthodox Christians as Roman Catholics marked the feast of the Epiphany - the Three Kings or Wise Men who tradition says brought gifts to Jesus following his birth .\tIN NNP , NNP NNP VBD NNP NNS TO NNP NNPS IN NNP NNPS VBD DT NN IN DT NNP IN DT CD NNS CC JJ NNS WP NN VBZ VBD NNS TO NNP VBG PRP$ NN .\nMany Orthodox churches celebrate Christmas on the Julian calendar - about two weeks later than most other Christians .\tJJ NNP NNS VBP NNP IN DT NNP NN : IN CD NNS RB IN JJS JJ NNS .\nThe Indian foreign ministry says India and Pakistan will hold the first meeting of a joint anti-terrorism panel in March .\tDT JJ JJ NN VBZ NNP CC NNP MD VB DT JJ NN IN DT JJ NN NN IN NNP .\nThe talks will be held in Pakistan 's capital , Islamabad , on March 6 .\tDT NNS MD VB VBN IN NNP POS NN , NNP , IN NNP CD .\nThe idea for the panel was first proposed last year during a meeting in Cuba between Indian Prime Minister Manmohan Singh and Pakistani President Pervez Musharraf .\tDT NN IN DT NN VBD JJ VBN JJ NN IN DT NN IN NNP IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP .\nThe initiative was created after deadly train bombings in Mumbai in July .\tDT NN VBD VBN IN JJ NN NNS IN NNP IN NNP .\nIndia claimed Pakistan 's top intelligence agency ( ISI ) played a role in the attack , a charged denied by Pakistan .\tNNP VBD NNP POS JJ NN NN LRB NNP RRB VBD DT NN IN DT NN , DT VBN VBN IN NNP .\nEfforts to improve relations between India and Pakistan began with a peace process in 2004 .\tNNS TO VB NNS IN NNP CC NNP VBD IN DT NN NN IN CD .\nThe two countries have fought three wars and have yet to resolve their dispute over the region of Kashmir , where an anti-India insurgency has killed tens of thousands since 1989 .\tDT CD NNS VBP VBN CD NNS CC VBP RB TO VB PRP$ NN IN DT NN IN NNP , WRB DT JJ NN VBZ VBN NNS IN NNS IN CD .\nWorld number-two men 's tennis player Rafael Nadal of Spain has withdrawn from the season 's first Grand Slam tournament , the Australian Open , which begins Monday in Melbourne .\tNN JJ NNS POS NN NN NNP NNP IN NNP VBZ VBN IN DT NN POS JJ NNP NNP NN , DT JJ NNP , WDT VBZ NNP IN NNP .\nThe 19-year-old French Open champion said on his website Tuesday that he would be unable to play because of a foot injury he suffered in October at the Madrid Masters .\tDT JJ JJ NN NN VBD IN PRP$ NN NNP IN PRP MD VB JJ TO VB IN IN DT NN NN PRP VBD IN NNP IN DT NNP NNP .\nHe has not played a tour event since .\tPRP VBZ RB VBN DT NN NN IN .\nNadal joins American Andre Agassi on the sidelines for the tournament , which could still lose Russians Marat Safin and Maria Sharapova because of fitness doubts .\tNNP VBZ JJ NNP NNP IN DT NNS IN DT NN , WDT MD RB VB NNS NNP NNP CC NNP NNP IN IN NN NNS .\nBut top men 's seed and world number-one Roger Federer of Switzerland says he is in good form heading into the event and is fully recovered from the ankle injury that hampered him last season .\tCC JJ NNS POS NN CC NN JJ NNP NNP IN NNP VBZ PRP VBZ IN JJ NN VBG IN DT NN CC VBZ RB VBN IN DT JJ NN IN VBN PRP JJ NN .\nU.S. officials say Pakistan and Afghanistan must decide for themselves on an appropriate and effective method of reducing cross-border infiltration .\tNNP NNS VBP NNP CC NNP MD VB IN PRP IN DT JJ CC JJ NN IN VBG JJ NN .\nIn an interview with VOA Wednesday the U.S. Under Secretary of State for Political Affairs , Nicholas Burns , said Pakistan 's plan to lay land mines along parts of its border with Afghanistan is a bilateral issue .\tIN DT NN IN NNP NNP DT NNP IN NNP IN NNP IN NNP NNP , NNP NNP , VBD NNP POS NN TO VB NN NNS IN NNS IN PRP$ NN IN NNP VBZ DT JJ NN .\nAfghan officials have opposed the plan , saying it will do little to prevent terrorism .\tJJ NNS VBP VBN DT NN , VBG PRP MD VB RB TO VB NN .\nAfghanistan has repeatedly accused Pakistan of not doing enough to stop Taleban militants from infiltrating their shared border .\tNNP VBZ RB VBN NNP IN RB VBG RB TO VB NNP NNS IN VBG PRP$ JJ NN .\nBurns also said he hopes the two sides can resolve a wave of Taleban-led attacks on civilians and NATO forces inside Afghanistan .\tNNP RB VBD PRP VBZ DT CD NNS MD VB DT NN IN JJ NNS IN NNS CC NNP NNS IN NNP .\nFighting in Afghanistan increased dramatically last year , killing thousands and igniting tensions between Kabul and Islamabad .\tVBG IN NNP VBD RB JJ NN , VBG NNS CC VBG NNS IN NNP CC NNP .\nEuropean Union Trade Commissioner Peter Mandelson says EU trading partners are not ready to make what he calls the ' hard decisions ' needed for a world trade deal .\tNNP NNP NNP NNP NNP NNP VBZ NNP NN NNS VBP RB JJ TO VB WP PRP VBZ DT `` JJ NNS `` VBN IN DT NN NN NN .\nMonday , Mandelson made his first speech to the European Parliament since last month 's World Trade Organization meeting ended with little progress .\tNNP , NNP VBD PRP$ JJ NN TO DT NNP NNP IN JJ NN POS NNP NNP NNP NN VBD IN JJ NN .\nHe said Hong Kong and other major European trading partners are not yet prepared to make the concessions needed to bring talks to a successful conclusion in 2006 .\tPRP VBD NNP NNP CC JJ JJ JJ NN NNS VBP RB RB VBN TO VB DT NNS VBN TO VB NNS TO DT JJ NN IN CD .\nMandelson said he will do what he can to meet a deadline for a deal , but not at Europe 's expense .\tNNP VBD PRP MD VB WP PRP MD TO VB DT NN IN DT NN , CC RB IN NNP POS NN .\nThe EU says it has made significant compromises on such issues as farm subsidies to open its market to agricultural imports .\tDT NNP VBZ PRP VBZ VBN JJ NNS IN JJ NNS IN NN NNS TO VB PRP$ NN TO JJ NNS .\nThe United States and other countries say the E.U . has not gone far enough .\tDT NNP NNPS CC JJ NNS VBP DT NNP . VBZ RB VBN RB RB .\nCyprus Foreign Minister George Iacovou says his European Union counterparts have agreed on a statement responding to Turkey 's refusal to recognize the internationally backed Cypriot government .\tNNP NNP NNP NNP NNP VBZ PRP$ NNP NNP NNS VBP VBN IN DT NN VBG TO NNP POS NN TO VB DT RB VBN JJ NN .\nMr. Iacovou gave no details of the statement .\tNNP NNP VBD DT NNS IN DT NN .\nBut he told the Cyprus News Agency the ministers left it up to ambassadors of the 25 EU countries to work out the final text of the document .\tCC PRP VBD DT NNP NNP NNP DT NNS VBD PRP RP TO NNS IN DT CD NNP NNS TO VB RP DT JJ NN IN DT NN .\nEarlier , Turkey 's Foreign Minister Abdullah Gul warned his country will abandon its EU membership bid if the bloc imposes new conditions on Ankara , or tries to offer anything less than full membership .\tRB , NNP POS NNP NNP NNP NNP VBD PRP$ NN MD VB PRP$ NNP NN NN IN DT NN VBZ JJ NNS IN NNP , CC VBZ TO VB DT JJR IN JJ NN .\nTurkey has insisted that recognition of the Greek-led Cypriot government depends on a resolution of the three-decade division of Cyprus .\tNNP VBZ VBN IN NN IN DT JJ JJ NN VBZ IN DT NN IN DT JJ NN IN NNP .\nEU ministers have been pressing Turkey to normalize relations with all EU members , including Cyprus .\tNNP NNS VBP VBN VBG NNP TO VB NNS IN DT NNP NNS , VBG NNP .\nTurkey is scheduled to start EU membership talks next month .\tNNP VBZ VBN TO VB NNP NN NNS JJ NN .\nThe U.S. military in Afghanistan says four American soldiers and an Afghan interpreter have been wounded in a roadside explosion in a southeastern part of the country .\tDT NNP NN IN NNP VBZ CD JJ NNS CC DT JJ NN VBP VBN VBN IN DT NN NN IN DT JJ NN IN DT NN .\nA statement said the explosion occurred during a routine patrol near the town of Ghazni Tuesday .\tDT NN VBD DT NN VBD IN DT JJ NN IN DT NN IN NNP NNP .\nIt said initial medical assessments indicated none of the wounds were life-threatening .\tPRP VBD JJ JJ NNS VBD NN IN DT NNS VBD JJ .\nOn Monday , four American soldiers were wounded when a suicide bomber rammed his explosives-laden car into a U.S. military vehicle near the southern city of Kandahar .\tIN NNP , CD JJ NNS VBD VBN WRB DT NN NN VBD PRP$ JJ NN IN DT NNP JJ NN IN DT JJ NN IN NNP .\nTaleban insurgents claimed responsibility for that attack .\tNNP NNS VBD NN IN DT NN .\nMeanwhile , the military said coalition forces killed two insurgents and detained 12 others after a brief firefight near Kandahar Sunday .\tRB , DT NN VBD NN NNS VBD CD NNS CC VBN CD NNS IN DT JJ NN IN NNP NNP .\nIn recent weeks , the guerrillas have stepped up their attacks in southern and eastern Afghanistan , as the country prepares for parliamentary elections expected in September .\tIN JJ NNS , DT NNS VBP VBN RP PRP$ NNS IN JJ CC JJ NNP , IN DT NN VBZ IN JJ NNS VBN IN NNP .\nA group of Iraqi lawmakers loyal to Shi'ite cleric Moqtada al-Sadr has staged a protest against a proposal allowing British troops to remain in the country .\tDT NN IN JJ NNS JJ IN NNP NN NNP NNP VBZ VBN DT NN IN DT NN VBG JJ NNS TO VB IN DT NN .\nThe Sadrist politicians walked out of a session of parliament Saturday , suspending consideration of the proposal .\tDT NNP NNS VBD IN IN DT NN IN NN NNP , VBG NN IN DT NN .\nThe deal would allow up to 100 British troops to stay in Iraq beyond a previously approved withdrawal date .\tDT NN MD VB RP TO CD JJ NNS TO VB IN NNP IN DT RB VBN NN NN .\nThey would be responsible for helping the Iraqi navy protect oil installations off the southern coast .\tPRP MD VB JJ IN VBG DT JJ NN VBP NN NNS IN DT JJ NN .\nMoqtada al-Sadr has been a vocal and influential critic of the foreign military presence in Iraq , led by the United States .\tNNP NNP VBZ VBN DT JJ CC JJ NN IN DT JJ JJ NN IN NNP , VBN IN DT NNP NNPS .\nU.S. troops withdrew from Iraqi cities at the end of June , transferring security responsibilities to Iraqi forces .\tNNP NNS VBD IN JJ NNS IN DT NN IN NNP , VBG NN NNS TO JJ NNS .\nSince then , there have been a several deadly bombings across the country .\tIN RB , EX VBP VBN DT JJ JJ NNS IN DT NN .\nA car bomb Saturday in a Shi'ite district near Mosul killed four people and wounded at least 35 others .\tDT NN NN NNP IN DT NNP NN IN NNP VBD CD NNS CC VBD IN JJS CD NNS .\nChinese National Basketball Association All-Star center Yao Ming will be on the sidelines for several games because of a sore right big toe .\tJJ NNP NNP NNP NNP NN NNP NNP MD VB IN DT NNS IN JJ NNS IN IN DT JJ JJ JJ NN .\nThe Houston Rockets star missed his first game of the season and the third of his NBA career on Sunday .\tDT NNP NNPS NN VBD PRP$ JJ NN IN DT NN CC DT NN IN PRP$ NNP NN IN NNP .\nTeam officials say the injury will keep Yao off the court indefinitely .\tNNP NNS VBP DT NN MD VB NNP IN DT NN RB .\nThe 25-year-old center has played in 266 regular-season games since joining the Rockets in 2002 .\tDT JJ NN VBZ VBN IN CD JJ NNS IN VBG DT NNS IN CD .\nHe has had a problem with his toe for some time , forcing him to miss two pre-season games .\tPRP VBZ VBN DT NN IN PRP$ NN IN DT NN , VBG PRP TO VB CD JJ NNS .\nYao is the leading vote-getter after the first set of returns for this season 's All-Star game .\tNNP VBZ DT VBG NN IN DT JJ NN IN NNS IN DT NN POS JJ NN .\nHe is averaging 19.9 points per game , nine rebounds and 1.36 blocked shots .\tPRP VBZ VBG CD NNS IN NN , CD NNS CC CD VBD NNS .\nItalian police have arrested 40 people linked to Islamic groups in nationwide raids as part of a security crackdown .\tJJ NNS VBP VBN CD NNS VBN TO JJ NNS IN JJ NNS IN NN IN DT NN NN .\nAuthorities say 28 of the detainees were charged with violating rules on residence permits and 12 with other minor offenses .\tNNS VBP CD IN DT NNS VBD VBN IN VBG NNS IN NN NNS CC CD IN JJ JJ NNS .\nBut they said none face terrorism charges .\tCC PRP VBD NN VBZ NN NNS .\nOfficials say they also issued 114 expulsion orders as part of the same operation .\tNNS VBP PRP RB VBD CD NN NNS IN NN IN DT JJ NN .\nThe raids focused on Islamic gathering places , including telephone call centers , Internet cafes and offices for sending cash abroad .\tDT NNS VBD IN JJ NN NNS , VBG NN NN NNS , NNP NNS CC NNS IN VBG NN RB .\nOfficers also raided 15 apartments , mostly those of Pakistanis , in cooperation with a Belgian police investigation into suspected financing of terrorist groups .\tNNS RB VBD CD NNS , RB DT IN NNS , IN NN IN DT JJ NN NN IN JJ NN IN JJ NNS .\nThe raids , Thursday and Friday , followed Thursday 's arrest in Britain of 24 people suspected in an alleged plot to blow up U.S.-bound airliners over the Atlantic Ocean .\tDT NNS , NNP CC NNP , VBD NNP POS NN IN NNP IN CD NNS VBN IN DT JJ NN TO VB RP JJ NNS IN DT NNP NNP .\nTens of thousands of anti-government demonstrators have marched on the main government offices in Thailand 's capital , Bangkok .\tNNS IN NNS IN JJ NNS VBP VBD IN DT JJ NN NNS IN NNP POS NN , NNP .\nSome 30,000 protesters marched through the city for two hours , urging the government to dissolve parliament and punish those responsible for last year 's crippling protests .\tDT CD NNS VBD IN DT NN IN CD NNS , VBG DT NN TO VB NN CC VB DT JJ IN JJ NN POS JJ NNS .\nThe earlier demonstrations ousted current Prime Minister Abhisit Vejjajiva 's pro-Thaksin predecessor Somchai Wongsawat .\tDT JJR NNS VBN JJ NNP NNP NNP NNP POS JJ NN NNP NNP .\nBefore dispersing , the demonstrators promised to make their protest permanent , if their demands are not met within 15 days .\tIN VBG , DT NNS VBD TO VB PRP$ NN JJ , IN PRP$ NNS VBP RB VBN IN CD NNS .\nMore than 5,000 police were deployed to secure the mass protest , which ran from Saturday afternoon into early Sunday .\tJJR IN CD NNS VBD VBN TO VB DT NN NN , WDT VBD IN NNP NN IN JJ NNP .\nLast year , yellow-shirted protesters occupied Government House for about three months , and shut down major airports before a coup ousted the government .\tJJ NN , JJ NNS VBD NNP NNP IN IN CD NNS , CC VBD RP JJ NNS IN DT NN VBD DT NN .\nThailand has been wracked by political unrest for years .\tNNP VBZ VBN VBN IN JJ NN IN NNS .\nThe country is sharply divided between groups who favor and oppose Mr. Thaksin , who was ousted in a coup in 2006 .\tDT NN VBZ RB VBN IN NNS WP VBP CC VBP NNP NNP , WP VBD VBN IN DT NN IN CD .\nIn Liberia , supporters of former soccer star George Weah have vowed to continue their protests of the November 8 presidential run-off election , which they say was fraudulent .\tIN NNP , NNS IN JJ NN NN NNP NNP VBP VBN TO VB PRP$ NNS IN DT NNP CD JJ NN NN , WDT PRP VBP VBD JJ .\nThe elections commission is expected to announce the final results Tuesday .\tDT NNS NN VBZ VBN TO VB DT JJ NNS NNP .\nFrank Sainworla , radio director of the VOA affiliate , Radio Veritas in the Liberian capital , Monrovia , talked with English to Africa reporter James Butty .\tNNP NNP , NN NN IN DT NNP NN , NNP NNP IN DT JJ NN , NNP , VBD IN NNP TO NNP NN NNP NNP .\nThe Hubble Space Telescope is back to work , after a month-long shutdown to fix problems it was having in sending information to Earth .\tDT NNP NNP NNP VBZ RB TO NN , IN DT JJ NN TO VB NNS PRP VBD VBG IN VBG NN TO NNP .\nThe U.S. space agency , NASA , said Thursday the telescope 's camera is now working as it was before the problems .\tDT NNP NN NN , NNP , VBD NNP DT NN POS NN VBZ RB VBG IN PRP VBD IN DT NNS .\nThe agency said it took a photo of a pair of galaxies and that it ' scored a perfect 10 ' .\tDT NN VBD PRP VBD DT NN IN DT NN IN NNS CC IN PRP `` VBD DT JJ CD `` .\nThe photo shows the ring-shaped galaxies just after they collided .\tDT NN VBZ DT JJ NNS RB IN PRP VBD .\nThe Hubble stopped beaming information to Earth in late September when a data unit failed .\tDT NNP VBD VBG NN TO NNP IN JJ NNP WRB DT NN NN VBD .\nThe computer glitch forced NASA to postpone a shuttle mission to repair the Hubble .\tDT NN NN VBD NNP TO VB DT NN NN TO VB DT NNP .\nThat mission has been rescheduled for next year .\tDT NN VBZ VBN VBN IN JJ NN .\nThe Hubble has been orbiting about 600 kilometers above the Earth since 1990 .\tDT NNP VBZ VBN VBG IN CD NNS IN DT NN IN CD .\nThe telescope sends images from space back to Earth and has revolutionized understanding of the universe .\tDT NN VBZ NNS IN NN RB TO NNP CC VBZ VBN NN IN DT NN .\nArmed militants briefly occupied the West Bank headquarters of the Palestinian Cabinet Thursday , in a protest against the territory 's new Hamas-led government .\tVBN NNS RB VBD DT NNP NNP NN IN DT JJ NNP NNP , IN DT NN IN DT NN POS JJ JJ NN .\nPalestinian authorities say about 20 militants from the Al Aqsa Martyrs Brigades forced their way into the cabinet offices Thursday in Ramallah , the administrative headquarters of the Palestinian Authority .\tJJ NNS VBP IN CD NNS IN DT NNP NNP NNP NNP VBD PRP$ NN IN DT NN NNS NNP IN NNP , DT JJ NN IN DT JJ NNP .\nThe gunmen stayed for about an hour , before they were persuaded to leave by a police contingent that arrived at the scene .\tDT NNS VBD IN IN DT NN , IN PRP VBD VBN TO VB IN DT NN JJ IN VBD IN DT NN .\nAl Aqsa Martyrs ' Brigades is a militant faction of Fatah , and the security forces at the scene were also under the control of Fatah leader and Palestinian Authority President Mahmoud Abbas .\tNNP NNP NNP POS NNS VBZ DT JJ NN IN NNP , CC DT NN NNS IN DT NN VBD RB IN DT NN IN NNP NN CC JJ NNP NNP NNP NNP .\nA suicide bomber tried to kill the leader of Iraq 's most powerful Shi'ite political group Monday while the main Sunni party withdrew from the country 's January 30th election .\tDT NN NN VBD TO VB DT NN IN NNP POS RBS JJ NNP JJ NN NNP IN DT JJ NNP NN VBD IN DT NN POS NNP CD NN .\nAbdul Aziz al-Hakim , whose United Iraqi Alliance is expected to dominate the vote , survived the Baghdad attack .\tNNP NNP NNP , WP$ NNP JJ NNP VBZ VBN TO VB DT NN , VBD DT NNP NN .\nBut at least 13 people were killed .\tCC IN JJS CD NNS VBD VBN .\nEarlier in the day , the Sunni Iraqi Islamic Party pulled out of the vote because of concerns over violence .\tRBR IN DT NN , DT NNP JJ NNP NNP VBD IN IN DT NN IN IN NNS IN NN .\nThe party says more time is needed to ensure that all Shi'ites and Sunnis participate in the election .\tDT NN VBZ JJR NN VBZ VBN TO VB IN DT NNS CC NNS VBP IN DT NN .\nIn other election news , a new audiotape purportedly from Osama bin Laden calls for Iraqis to boycott the vote , saying those who take part will be infidels .\tIN JJ NN NN , DT JJ NN RB IN NNP NNP NNP VBZ IN NNS TO VB DT NN , VBG DT WP VBP NN MD VB NNS .\nThe speaker also endorses Abu Musab al-Zarqawi as his deputy in Iraq .\tDT NN RB VBZ NNP NNP NNP IN PRP$ NN IN NNP .\nThe tape has not been authenticated .\tDT NN VBZ RB VBN VBN .\nNew Mexico governor Bill Richardson , a former presidential candidate , plans to endorse Democratic Senator Barack Obama for president .\tNNP NNP NN NNP NNP , DT JJ JJ NN , VBZ TO VB JJ NNP NNP NNP IN NN .\nOfficials with Obama 's campaign tell news agencies that the two men will appear together at a rally Friday in Portland , Oregon .\tNNS IN NNP POS NN VBP NN NNS IN DT CD NNS MD VB RB IN DT NN NNP IN NNP , NNP .\nIn a statement obtained by the Associated Press , Richardson calls Obama a ' one of a kind ' leader who can bring the country together .\tIN DT NN VBN IN DT NNP NNP , NNP VBZ NNP DT `` CD IN DT NN `` NN WP MD VB DT NN RB .\nRichardson , the nation 's only Hispanic governor , was energy secretary under former President Bill Clinton and was also an ambassador to the United Nations .\tNNP , DT NN POS RB JJ NN , VBD NN NN IN JJ NNP NNP NNP CC VBD RB DT NN TO DT NNP NNPS .\nRecent opinion polls indicate that Hispanics have tended to support Obama 's Democratic rival , Senator Hillary Clinton .\tJJ NN NNS VBP IN NNS VBP VBN TO VB NNP POS JJ NN , NNP NNP NNP .\nObama currently leads among delegates selected at Democratic primaries and caucuses .\tNNP RB VBZ IN NNS VBN IN JJ NNS CC NNS .\nThe next major primary is to take place in Pennsylvania next month - April 22 .\tDT JJ JJ NN VBZ TO VB NN IN NNP JJ NN IN NNP CD .\nSome 6,00,000 revelers are expected to pack Rio de Janeiro over the next few days , as the Brazilian city celebrates the annual Carnival before Lent - the Christian season of repentance .\tDT CD NNS VBP VBN TO VB NNP IN NNP IN DT JJ JJ NNS , IN DT JJ NN VBZ DT JJ NN IN NNP IN DT JJ NN IN NN .\nRio celebrates Carnival with parades featuring the sensual Brazilian dance known as the samba .\tNNP VBZ NNP IN NNS VBG DT JJ JJ NN VBN IN DT NN .\nThe celebration culminates Sunday and Monday with a giant samba competition in the city 's 60,000-seat Sambadrome stadium .\tDT NN VBZ NNP CC NNP IN DT JJ NN NN IN DT NN POS JJ JJ NN .\nOutside the Sambadrome , Brazilians and tourists extend the party into the streets , wearing outlandish costumes and masks and eating and drinking to excess .\tIN DT NNP , NNS CC NNS VBP DT NN IN DT NNS , VBG JJ NNS CC NNS CC NN CC NN TO NN .\nSimilar celebrations take place in New Orleans in the United States , and in many parts of Europe , as people of the Christian faith squeeze in a last few days of indulgence before beginning six weeks of fasting and prayer .\tJJ NNS VBP NN IN NNP NNP IN DT NNP NNPS , CC IN JJ NNS IN NNP , IN NNS IN DT JJ NN NN IN DT JJ JJ NNS IN NN IN VBG CD NNS IN NN CC NN .\nA Palestinian court has sentenced a man to death by hanging for selling West Bank land to Israeli citizens .\tDT JJ NN VBZ VBN DT NN TO NN IN VBG IN VBG NNP NNP NN TO JJ NNS .\nThe sentence was handed down Tuesday by a court in the West Bank town of Hebron , but it may be unlikely to be carried out .\tDT NN VBD VBN RP NNP IN DT NN IN DT NNP NNP NN IN NNP , CC PRP MD VB JJ TO VB VBN RP .\nProsecutors say the defendant sold to Israelis land that did not belong to him in the village of Beit Omar near Hebron .\tNNS VBP DT NN VBD TO NNS NN WDT VBD RB VB TO PRP IN DT NN IN NNP NNP IN NNP .\nThe Palestinian Authority considers the sale of Palestinian land to Israelis to be treason .\tDT JJ NNP VBZ DT NN IN JJ NN TO NNS TO VB NN .\nPalestinian President Mahmoud Abbas must approve the sentence for it to be carried out .\tJJ NNP NNP NNP MD VB DT NN IN PRP TO VB VBN RP .\nHe has withheld approval in many other death penalty cases .\tPRP VBZ VBN NN IN JJ JJ NN NN NNS .\nSeveral other Palestinians charged with collaborating with Israel are currently on death row .\tJJ JJ NNS VBN IN VBG IN NNP VBP RB IN NN NN .\nThe Arabic television station al-Jazeera has broadcast a videotape of al-Qaida 's second in command , Ayman al-Zawahri , who vowed to keep fighting the United States unless Washington changes its policies towards the Muslim world .\tDT JJ NN NN NNP VBZ VBN DT NN IN NNP POS JJ IN NN , NNP NNP , WP VBD TO VB VBG DT NNP NNPS IN NNP VBZ PRP$ NNS IN DT NNP NN .\nIn excerpts of the video aired Monday , Osama bin Laden 's deputy said al-Qaida was not concerned with the results of the U.S. presidential election .\tIN NNS IN DT NN VBN NNP , NNP NNP NNP POS NN VBD NNP VBD RB VBN IN DT NNS IN DT NNP JJ NN .\nIt was unclear if the video was filmed before or after the November 2 vote .\tPRP VBD JJ IN DT NN VBD VBN IN CC IN DT NNP CD NN .\nJust days before the election , al-Jazeera aired a video from Osama bin Laden , who also said the United States must stop threatening Muslims if it wants to avoid another September 11-style attack .\tRB NNS IN DT NN , NNP VBD DT NN IN NNP NNP NNP , WP RB VBD DT NNP NNPS MD VB VBG NNPS IN PRP VBZ TO VB DT NNP JJ NN .\nThe head of the U.S. central bank signaled Tuesday that interest rates are not likely to be cut anytime soon .\tDT NN IN DT NNP JJ NN VBD NNP IN NN NNS VBP RB JJ TO VB VBN RB RB .\nFederal Reserve Chairman Ben Bernanke said interest rate policies and efforts to stimulate the faltering U.S. economy are ' well positioned ' to promote growth and stable prices .\tNNP NNP NNP NNP NNP VBD NN NN NNS CC NNS TO VB DT VBG NNP NN VBP `` RB VBN `` TO VB NN CC JJ NNS .\nThe Fed has been cutting interest rates steadily to boost economic growth .\tDT NNP VBZ VBN VBG NN NNS RB TO VB JJ NN .\nBut officials must balance the need to boost the economy with the concern that cutting interest rates too low could spark inflation .\tCC NNS MD VB DT NN TO VB DT NN IN DT NN IN VBG NN NNS RB JJ MD VB NN .\nInflation concerns have been rising along with the price of oil .\tNN NNS VBP VBN VBG IN IN DT NN IN NN .\nFuel price hikes are also forcing the biggest U.S. automaker to slash truck production and make more small , fuel-efficient cars .\tNN NN NNS VBP RB VBG DT JJS NNP NN TO VB NN NN CC VB JJR JJ , JJ NNS .\nGeneral Motors Tuesday announced that it will close four North American plants that make trucks .\tNNP NNPS NNP VBD IN PRP MD VB CD JJ JJ NNS WDT VBP NNS .\nRussian authorities have detained a man suspected of being involved in the deadly school siege in the southern town of Beslan .\tJJ NNS VBP VBN DT NN VBN IN VBG VBN IN DT JJ NN NN IN DT JJ NN IN NNP .\nOfficials in Moscow Wednesday said the man was arrested by security forces in Ingushetia , near the North Ossetia region where the attack took place .\tNNS IN NNP NNP VBD DT NN VBD VBN IN NN NNS IN NNP , IN DT NNP NNP NN WRB DT NN VBD NN .\nThey say there is also information the man took part in an armed attack targeting police facilities in Ingushetia last June .\tPRP VBP EX VBZ RB NN DT NN VBD NN IN DT JJ NN VBG NN NNS IN NNP JJ NNP .\nMilitants attacked one of Beslan 's schools last September , seizing more than 1,000 children , parents and teachers .\tNNS VBD CD IN NNP POS NNS JJ NNP , VBG JJR IN CD NNS , NNS CC NNS .\nThe ordeal ended in a chaotic outburst of gunfire and explosions that killed more than 330 people , about half of them children .\tDT NN VBD IN DT JJ NN IN NN CC NNS WDT VBD JJR IN CD NNS , IN NN IN PRP NNS .\nRed Cross officials in Kabul say suspects detained by U.S. troops in Afghanistan have been allowed to speak with family members through a new video-teleconference system .\tNNP NNP NNS IN NNP VBP NNS VBN IN NNP NNS IN NNP VBP VBN VBN TO VB IN NN NNS IN DT JJ NN NN .\nOfficials said Monday , that about 60 families have so far taken advantage of the opportunity to speak with prisoners held at the detention center on the U.S. Bagram Air Force Base .\tNNS VBD NNP , IN IN CD NNS VBP RB RB VBN NN IN DT NN TO VB IN NNS VBN IN DT NN NN IN DT NNP NNP NNP NNP NNP .\nMany families have not spoken to their detained relatives for several years .\tJJ NNS VBP RB VBN TO PRP$ VBN NNS IN JJ NNS .\nAround 600 detainees are being held at the facility .\tIN CD NNS VBP VBG VBN IN DT NN .\nThe International Committee of the Red Cross helped organize the initiative , which is the first of its kind .\tDT NNP NNP IN DT NNP NNP VBD VB DT NN , WDT VBZ DT NN IN PRP$ NN .\nSince the 2001 U.S.-led invasion of Afghanistan , hundreds of Taliban and al-Qaida suspects have been detained , along with others accused of terrorist activities .\tIN DT CD JJ NN IN NNP , NNS IN NNP CC NNP NNS VBP VBN VBN , IN IN NNS VBN IN JJ NNS .\nThe U.S. Senate is to begin debate Wednesday on one of President Bush 's judicial nominees - setting the stage for a possible showdown on the delaying tactic known as a filibuster .\tDT NNP NNP VBZ TO VB NN NNP IN CD IN NNP NNP POS JJ NNS IN VBG DT NN IN DT JJ NN IN DT NN NN VBN IN DT NN .\nThe leader of the Republican majority in the Senate , Bill Frist , plans to bring to the Senate floor Mr. Bush 's nomination of Priscilla Owen .\tDT NN IN DT JJ NN IN DT NNP , NNP NNP , VBZ TO VB TO DT NNP NN NNP NNP POS NN IN NNP NNP .\nA Texas Supreme Court justice , Ms. Owen was one of seven nominees blocked by Democrats during the president 's first term .\tDT NNP NNP NNP NN , NNP NNP VBD CD IN CD NNS VBN IN NNPS IN DT NN POS JJ NN .\nIf Democrats are successful again , Republicans say they will seek early next week to change Senate rules to limit filibusters , a parliamentary delaying procedure aimed at preventing a vote .\tIN NNPS VBP JJ RB , NNS VBP PRP MD VB JJ JJ NN TO VB NNP NNS TO VB NNS , DT JJ NN NN VBN IN VBG DT NN .\nOpposition Democrats say changing Senate rules would drastically curtail the rights of the minority .\tNNP NNPS VBP VBG NNP NNS MD RB VB DT NNS IN DT NN .\nTalks seeking a compromise have not been successful .\tNNS VBG DT NN VBP RB VBN JJ .\nThe largest Sunni bloc in Iraq 's parliament has suspended its participation in the government and is threatening to withdraw completely .\tDT JJS NNP NN IN NNP POS NN VBZ VBN PRP$ NN IN DT NN CC VBZ VBG TO VB RB .\nThe Accordance Front Wednesday , gave Prime Minister Nouri al-Maliki one week to meet its demands to deal with Shi'ite militias and reform the conduct of raids and arrests .\tDT NNP NNP NNP , VBD NNP NNP NNP NNP CD NN TO VB PRP$ NNS TO VB IN NNP NNS CC VB DT NN IN NNS CC NNS .\nThe bloc has been boycotting cabinet meetings since June to protest legal proceedings against Culture Minister Asad Kamal al-Hashimi .\tDT NN VBZ VBN VBG NN NNS IN NNP TO VB JJ NNS IN NNP NNP NNP NNP NNP .\nAl-Hashimi has been accused of arranging to have another politician killed .\tNNP VBZ VBN VBN IN VBG TO VB DT NN VBN .\nLast week , the Accordance Front and a group of Shi'ite lawmakers ended a boycott of Iraq 's parliament .\tJJ NN , DT NNP NNP CC DT NN IN NNP NNS VBD DT NN IN NNP POS NN .\nAlso Tuesday , Baghdad police say at least six people were killed when U.S. and Iraqi forces clashed with Shi'ite militias in the Sadr City neighborhood .\tRB NNP , NNP NNS VBP IN JJS CD NNS VBD VBN WRB NNP CC JJ NNS VBD IN NNP NNS IN DT NNP NNP NN .\nAnd the U.S. military says it has detained the administrative head of al-Qaida in Iraq 's Mosul operations during early morning raids .\tCC DT NNP NN VBZ PRP VBZ VBN DT JJ NN IN NNP IN NNP POS NNP NNS IN JJ NN NNS .\nThe world 's largest maker of jetliners , Airbus , says it sold more planes than rival Boeing last year .\tDT NN POS JJS NN IN NNS , NNP , VBZ PRP VBD JJR NNS IN JJ NNP JJ NN .\nTuesday 's announcement surprised some analysts who thought Boeing might regain the sales lead .\tNNP POS NN VBD DT NNS WP VBD NNP MD VB DT NNS NN .\nAirbus says it has firm orders for a record 1055 planes , while Boeing has orders for 1002 , which is a record for the company .\tNNP VBZ PRP VBZ JJ NNS IN DT NN CD NNS , IN NNP VBZ NNS IN CD , WDT VBZ DT NN IN DT NN .\nBoeing 's orders include more wide-body planes , so at list prices , its orders are worth somewhat more than Airbus .\tNNP POS NNS VBP JJR JJ NNS , RB IN NN NNS , PRP$ NNS VBP JJ RB JJR IN NNP .\nOrders for jetliners soared in 2005 , as Asian airlines expanded their fleets to meet growing demand , and other airlines sought new , more fuel-efficient planes to cope with high oil costs .\tNNS IN NNS VBD IN CD , IN JJ NNS VBD PRP$ NNS TO VB VBG NN , CC JJ NNS VBD JJ , RBR JJ NNS TO VB IN JJ NN NNS .\nU.S. Defense Secretary Robert Gates is in Pakistan to discuss counter-terrorism efforts and the Taleban insurgency in neighboring Afghanistan .\tNNP NNP NNP NNP NNP VBZ IN NNP TO VB NN NNS CC DT NNP NN IN VBG NNP .\nGates arrived in the capital , Islamabad , Monday to meet with Pakistani President Pervez Musharraf .\tNNP VBD IN DT NN , NNP , NNP TO VB IN JJ NNP NNP NNP .\nWashington has been putting pressure on General Musharraf to stop Taleban fighters from crossing into Afghanistan .\tNNP VBZ VBN VBG NN IN NNP NNP TO VB NNP NNS IN VBG IN NNP .\nGates just finished four days of meetings in Spain and Germany focused largely on the war in Afghanistan .\tNNP RB VBD CD NNS IN NNS IN NNP CC NNP VBD RB IN DT NN IN NNP .\nPakistan 's foreign minister , Khursheed Kasuri , recently said the government has decided against mining its border with Afghanistan , but still intends to build a fence along parts of it .\tNNP POS JJ NN , NNP NNP , RB VBD DT NN VBZ VBN IN VBG PRP$ NN IN NNP , CC RB VBZ TO VB DT NN IN NNS IN PRP .\nOn Sunday , the governor of southern Afghanistan 's Helmand province said 700 foreign fighters , including Pakistanis , are in the region to help Taleban insurgents .\tIN NNP , DT NN IN JJ NNP POS NNP NN VBD CD JJ NNS , VBG NNS , VBP IN DT NN TO VB NNP NNS .\nA U.N. court begins hearing testimony Monday in the case of a well-known Rwandan musician accused of using his music to spread ethnic hatred during the country 's 1994 genocide .\tDT NNP NN VBZ VBG NN NNP IN DT NN IN DT JJ JJ NN VBN IN VBG PRP$ NN TO VB JJ NN IN DT NN POS CD NN .\nSimon Bikindi , a musician and former official in Rwanda 's Ministry of Youth and Sports , faces six counts of genocide from the International Criminal Tribunal for Rwanda .\tNNP NNP , DT NN CC JJ NN IN NNP POS NNP IN NNP CC NNP , VBZ CD NNS IN NN IN DT NNP NNP NNP IN NNP .\nHe has pleaded not guilty to all of the charges from the Tanzania-based court .\tPRP VBZ VBN RB JJ TO DT IN DT NNS IN DT JJ NN .\nProsecutors say Bikindi composed and recorded songs that encouraged Hutus to kill Tutsis .\tNNS VBP NNP VBN CC VBN NNS WDT VBD NNP TO VB NNP .\nThey say he consulted with former Rwandan President Juvenal Habyarimana over song lyrics before passing them on to a privately owned station that broadcast anti-Tutsi propaganda .\tPRP VBP PRP VBD IN JJ JJ NNP NNP NNP IN NN NNS IN VBG PRP IN TO DT RB VBN NN WDT VBD JJ NN .\nBikindi was arrested in the Netherlands in 2001 .\tNNP VBD VBN IN DT NNP IN CD .\nA police chief in western Iraq says the country began stationing thousands of extra security officers along Iraq 's border with Syria this week in an effort to keep out insurgents .\tDT NN NN IN JJ NNP VBZ DT NN VBD VBG NNS IN JJ NN NNS IN NNP POS NN IN NNP DT NN IN DT NN TO VB RP NNS .\nThe chief , Major-General Tariq Youssef , said Friday that Iraqi Prime Minister Nouri al-Maliki ordered the reinforcements , in the wake of August truck bombings in Baghdad that killed more than 100 people .\tDT NN , NNP NNP NNP , VBD NNP IN JJ NNP NNP NNP NNP VBD DT NNS , IN DT NN IN NNP NN NNS IN NNP WDT VBD JJR IN CD NNS .\nThe Iraqi government has linked the blasts to Baathist sympathizers located in Syria .\tDT JJ NN VBZ VBN DT NNS IN NNP NNS VBN IN NNP .\nSyria has demanded Iraqi authorities provide evidence to back up their allegations .\tNNP VBZ VBN JJ NNS VBP NN TO VB RP PRP$ NNS .\nIraq has also demanded that Syria hand over two people that Baghdad suspects played a role in the attacks .\tNNP VBZ RB VBN IN NNP VB RB CD NNS IN NNP VBZ VBD DT NN IN DT NNS .\nSyria has refused , demanding proof .\tNNP VBZ VBN , VBG NN .\nThe bombings have soured relations between Iraq and Syria .\tDT NNS VBP VBN NNS IN NNP CC NNP .\nTurkey has been holding talks aimed at defusing tensions between the two countries .\tNNP VBZ VBN VBG NNS VBN IN VBG NNS IN DT CD NNS .\nVenezuelan officials say they are investigating allegations that military officers passed state secrets to the United States .\tJJ NNS VBP PRP VBP VBG NNS IN JJ NNS VBD NN NNS TO DT NNP NNPS .\nThe nation 's Military Attorney General 's Office told El~Universal newspaper Thursday that it has launched a probe of the alleged spies , although it would not say how many suspects there were .\tDT NN POS JJ NNP NNP POS NNP VBD NNP NN NNP IN PRP VBZ VBN DT NN IN DT JJ NNS , IN PRP MD RB VB WRB JJ NNS EX VBD .\nVenezuela 's Vice President Jose Vicente Rangel said Wednesday that several low-level military officers were caught passing information to the U.S. military .\tNNP POS NNP NNP NNP NNP NNP VBD NNP IN JJ JJ JJ NNS VBD VBN VBG NN TO DT NNP NN .\nHe said some of the suspects have been detained and others have left the country .\tPRP VBD DT IN DT NNS VBP VBN VBN CC NNS VBP VBN DT NN .\nThe attorney for one of the suspects told reporters a U.S. military attache , identified as John Correa , has been mentioned as a possible link between the Venezuelan officers and the United States .\tDT NN IN CD IN DT NNS VBD NNS DT NNP JJ NN , VBN IN NNP NNP , VBZ VBN VBN IN DT JJ NN IN DT JJ NNS CC DT NNP NNPS .\nThe U.S. embassy in Caracas had no comment .\tDT NNP NN IN NNP VBD DT NN .\nAn Israeli newspaper reports the filmmaker whose documentary sparked an outrage in Egypt has admitted that he mistakenly identified 250 Palestinian fighters as Egyptian prisoners , who he claimed were killed by Israeli troops during the 1967 Six-Day War .\tDT JJ NN VBZ DT NN WP$ NN VBD DT NN IN NNP VBZ VBN IN PRP RB VBD CD JJ NNS IN JJ NNS , WP PRP VBD VBD VBN IN JJ NNS IN DT CD NNP NNP .\nThe Jerusalem Post says the filmmaker Ran Edelist also admitted using incorrect archival footage to illustrate the incident .\tDT NNP NNP VBZ DT NN NNP NNP RB VBD VBG JJ JJ NN TO VB DT NN .\nSince the documentary was aired last week , Israel repeatedly denied that its soldiers killed Egyptian prisoners during the war .\tIN DT NN VBD VBN JJ NN , NNP RB VBD IN PRP$ NNS VBD JJ NNS IN DT NN .\nIsrael also agreed to hand over a copy of the film and its transcript to Egypt .\tNNP RB VBD TO VB IN DT NN IN DT NN CC PRP$ NN TO NNP .\nHowever , Egypt asked for an investigation .\tRB , NNP VBD IN DT NN .\nAnd , an Egyptian parliamentary committee has threatened to review economic relations and agreements with Israel if the incident is not investigated .\tCC , DT JJ JJ NN VBZ VBN TO VB JJ NNS CC NNS IN NNP IN DT NN VBZ RB VBN .\nBecause of rising tensions over the film , Israeli Cabinet Minister Benjamin Ben-Eliezer earlier this week postponed a scheduled visit to Egypt .\tIN IN VBG NNS IN DT NN , JJ NNP NNP NNP NNP RBR DT NN VBD DT JJ NN TO NNP .\nBen-Eliezer commanded the military unit at the center of the controversy .\tNNP VBD DT JJ NN IN DT NN IN DT NN .\nU.S. Olympic Committee chairman Peter Ueberroth is calling on the U.S. government to reverse a decision to deny Cuba 's national baseball team permission to play in the United States .\tNNP NNP NNP NN NNP NNP VBZ VBG IN DT NNP NN TO VB DT NN TO VB NNP POS JJ NN NN NN TO VB IN DT NNP NNPS .\nLast week , the Treasury Department denied a permit for Cuba to play in the inaugural 16-team World Baseball Classic in March .\tJJ NN , DT NNP NNP VBD DT NN IN NNP TO VB IN DT JJ JJ NNP NNP NNP IN NNP .\nUeberroth says the decision will damage American efforts to host the Olympics in the future .\tNNP VBZ DT NN MD VB JJ NNS TO VB DT NNS IN DT NN .\nOlympic host countries must guarantee all nations can participate .\tNNP NN NNS MD VB DT NNS MD VB .\nCuba had been set to play against Puerto Rico , Panama and the Netherlands in the U.S. territory of Puerto Rico in the first round .\tNNP VBD VBN VBN TO VB IN NNP NNP , NNP CC DT NNP IN DT NNP NN IN NNP NNP IN DT JJ NN .\nA permit from the Treasury Department 's Office of Foreign Assets Control is necessary because of U.S. laws governing certain commercial transactions with the communist island nation .\tDT NN IN DT NNP NNP POS NNP IN NNP NNPS NNP VBZ JJ IN IN NNP NNS VBG JJ JJ NNS IN DT JJ NN NN .\nIraqi officials say a senior Interior Ministry official has been shot and killed in Baghdad .\tJJ NNS VBP DT JJ NNP NNP NN VBZ VBN VBN CC VBN IN NNP .\nThe assassination occurred Tuesday .\tDT NN VBD NNP .\nReuters news agency says the group led by Jordanian terrorist leader Abu Musab al-Zarqawi claimed responsibility for the killing .\tNNP NN NN VBZ DT NN VBN IN JJ JJ NN NNP NNP NNP VBD NN IN DT NN .\nGuerrillas loyal to Zaraqawi 's group also took responsibility for some of the attacks Monday in Iraq that left 25 people dead .\tNNP JJ TO NNP POS NN RB VBD NN IN DT IN DT NNS NNP IN NNP WDT VBD CD NNS JJ .\nA suicide attack killed 15 people north of Baghdad while several attacks on Iraqi police and soldiers in Baquba killed 10 people .\tDT NN NN VBD CD NNS RB IN NNP IN JJ NNS IN JJ NNS CC NNS IN NNP VBD CD NNS .\nIndia 's Prime Minister Manmohan Singh has invited Kashmir 's pro-independence leader , Yasin Malik , for talks on ending the decades-old dispute over the Himalayan territory .\tNNP POS NNP NNP NNP NNP VBZ VBN NNP POS JJ NN , NNP NNP , IN NNS IN VBG DT JJ NN IN DT NNP NN .\nAn adviser to Mr. Singh , Sanjaya Baru , told reporters the talks are scheduled to be held in New Delhi on February 17 .\tDT NN TO NNP NNP , NNP NNP , VBD NNS DT NNS VBP VBN TO VB VBN IN NNP NNP IN NNP CD .\nMalik is the chief of the Jammu-Kashmir Liberation Front .\tNNP VBZ DT NN IN DT NNP NNP NNP .\nHe told a Pakistani TV channel , Geo TV , that he has convened a meeting of the working committee of his group on February 15th to decide on how to respond to the invitation .\tPRP VBD DT JJ NN NN , NNP NN , IN PRP VBZ VBN DT NN IN DT VBG NN IN PRP$ NN IN NNP CD TO VB IN WRB TO VB TO DT NN .\nThe front is one of the several Kashmiri separatist groups that are demanding independence for Kashmir .\tDT NN VBZ CD IN DT JJ JJ NN NNS WDT VBP VBG NN IN NNP .\nOther groups are demanding a merger with Pakistan .\tJJ NNS VBP VBG DT NN IN NNP .\nWarlords in Somalia 's capital , Mogadishu , have begun surrendering their weapons , in an effort to restore stability in the city and ease the return of the country 's transitional government , currently in exile in Kenya .\tNNS IN NNP POS NN , NNP , VBP VBN VBG PRP$ NNS , IN DT NN TO VB NN IN DT NN CC VB DT NN IN DT NN POS JJ NN , RB IN NN IN NNP .\nHundreds of warlords who spent more than a decade fighting each other are disarming in camps outside Mogadishu .\tNNS IN NNS WP VBD JJR IN DT NN VBG DT NN VBP VBG IN NNS IN NNP .\nThe African Union and the United States have said such a move is essential to restoring stability and eventually paving the way for the return of Somalia 's first central government in 14 years .\tDT NNP NNP CC DT NNP NNPS VBP VBN PDT DT NN VBZ JJ TO VBG NN CC RB VBG DT NN IN DT NN IN NNP POS JJ JJ NN IN CD NNS .\nLast week , Somali lawmakers were locked in a dispute over moving to Mogadishu .\tJJ NN , JJ NNS VBD VBN IN DT NN IN VBG TO NNP .\nSome lawmakers feel the capital city is still too unsafe , and they want to move to other , less violent parts of Somalia or stay in Nairobi .\tDT NNS VBP DT NN NN VBZ RB RB JJ , CC PRP VBP TO VB TO JJ , RBR JJ NNS IN NNP CC VB IN NNP .\nItalian labor unions have agreed not to strike during next month 's Winter Olympic Games in Turin , Italy .\tJJ NN NNS VBP VBN RB TO VB IN JJ NN POS NNP NNP NNPS IN NNP , NNP .\nThe unions and the Italian government signed a deal Wednesday that averted work stoppages between January 31 and March 23 .\tDT NNS CC DT JJ NN VBD DT NN NNP WDT VBD NN NNS IN NNP CD CC NNP CD .\nThe Turin Olympics run from February 10 to the 26 .\tDT NNP NNPS VBP IN NNP CD TO DT CD .\nFlight attendants with Alitalia airlines had announced they planned a 24-hour strike February 10 , the day of the opening ceremonies .\tNN NNS IN NNP NNS VBD VBN PRP VBD DT JJ NN NNP CD , DT NN IN DT NN NNS .\nPilots had threatened a four-hour walkout February 9 .\tNNS VBD VBN DT JJ NN NNP CD .\nThe truce will also ban protests in telecommunications and railways industries .\tDT NN MD RB VB NNS IN NNS CC NNS NNS .\nLocal protests outside Turin that have no impact on the Olympics will be allowed .\tJJ NNS IN NNP WDT VBP DT NN IN DT NNS MD VB VBN .\nLast season , a small Milan television worker 's union strike led to the cancellation of the giant slalom at the World Alpine skiing championships in Bormio .\tJJ NN , DT JJ NNP NN NN POS NN NN VBD TO DT NN IN DT JJ NN IN DT NNP NNP NN NNS IN NNP .\nOrchid growers are trying to grab a bigger share of the global trade in flowers , which accounts for several billion dollars each year .\tNNP NNS VBP VBG TO VB DT JJR NN IN DT JJ NN IN NNS , WDT VBZ IN JJ CD NNS DT NN .\nGrowers from Latin America and Asia are scrambling to market unique plants and develop brand new varieties to meet the growing demand .\tNNS IN NNP NNP CC NNP VBP VBG TO VB JJ NNS CC VB NN JJ NNS TO VB DT VBG NN .\nVOA 's Brian Wagner has this report from Miami .\tNNP POS NNP NNP VBZ DT NN IN NNP .\nColombia 's main rebel group has insisted the government pull troops out of two mountain towns before it will take part in face-to-face meetings .\tNNP POS JJ NN NN VBZ VBN DT NN VB NNS IN IN CD NN NNS IN PRP MD VB NN IN JJ NNS .\nThe Revolutionary Armed Forces of Colombia , or FARC , issued a statement to President Alvaro Uribe , calling on the government to pull troops out of two towns in the Valle del Cauca region .\tDT JJ JJ NNS IN NNP , CC NNP , VBD DT NN TO NNP NNP NNP , VBG IN DT NN TO VB NNS IN IN CD NNS IN DT NNP NNP NNP NN .\nMr. Uribe has rejected the request .\tNNP NNP VBZ VBN DT NN .\nLast month , the Colombian government offered to to meet with the FARC at a time and a place of their choosing to discuss a possible prisoner swap .\tJJ NN , DT JJ NN VBD TO TO VB IN DT NNP IN DT NN CC DT NN IN PRP$ NN TO VB DT JJ NN NN .\nThe leftist rebel group is said to be holding 59 hostages , including three Americans .\tDT JJ NN NN VBZ VBN TO VB VBG CD NNS , VBG CD NNS .\nFARC , along with a smaller rebel group and rightist paramilitaries , is locked in a long-running war with the government that kills thousands of people each year .\tNNP , IN IN DT JJR NN NN CC NN NNS , VBZ VBN IN DT JJ NN IN DT NN WDT VBZ NNS IN NNS DT NN .\nExit polls in Ecuador indicate voters have overwhelmingly approved President Rafael Correa 's proposal to establish an assembly to rewrite the country 's constitution .\tNN NNS IN NNP VBP NNS VBP RB VBN NNP NNP NNP POS NN TO VB DT NN TO VB DT NN POS NN .\nThe Cedatos-Gallup poll says 78 percent of voters supported the referendum that Mr. Correa says will help end government corruption and inefficiency .\tDT JJ NN VBZ CD NN IN NNS VBD DT NN IN NNP NNP VBZ MD VB VB NN NN CC NN .\nHowever , critics accuse the leftist president of trying to centralize power around himself by stripping authority from the country 's unpopular congress .\tRB , NNS VBP DT JJ NN IN VBG TO VB NN IN PRP IN VBG NN IN DT NN POS JJ NN .\nMr. Correa 's plans to redefine the government are similar to what his ally , Venezuelan President Hugo Chavez , has done in his country .\tNNP NNP POS NNS TO VB DT NN VBP JJ TO WP PRP$ NN , JJ NNP NNP NNP , VBZ VBN IN PRP$ NN .\nMr. Correa , who became president in January , had threatened to resign if the proposal was not approved .\tNNP NNP , WP VBD NN IN NNP , VBD VBN TO VB IN DT NN VBD RB VBN .\nEarlier this year , the nation 's electoral court fired 57 opposition lawmakers who attempted to block the referendum .\tRBR DT NN , DT NN POS JJ NN VBD CD NN NNS WP VBD TO VB DT NN .\nJapanese officials have unveiled plans to cope with a possible bird flu epidemic .\tJJ NNS VBP VBN NNS TO VB IN DT JJ NN NN NN .\nThe action plan released by the Japanese health ministry Monday anticipates that a quarter of the population , some 32 million people , could become infected and that as many as 6,40,000 people could die .\tDT NN NN VBN IN DT JJ NN NN NNP VBZ IN DT NN IN DT NN , DT CD CD NNS , MD VB JJ CC IN RB JJ IN CD NNS MD VB .\nThe Japanese plan would shut down schools , ban large gatherings and declare a state of emergency in the case of a severe flu epidemic .\tDT JJ NN MD VB RP NNS , VB JJ NNS CC VB DT NN IN NN IN DT NN IN DT JJ NN NN .\nThe government will also increase stockpiles of the anti-viral drug Tamiflu .\tDT NN MD RB VB NNS IN DT JJ NN NNP .\nJapan has reported no human deaths from bird flu so far .\tNNP VBZ VBN DT JJ NNS IN NN NN RB RB .\nAn Australian and a Palestinian have been kidnapped at gunpoint in Gaza City and those claiming responsibility say the abduction is in response to Thursday 's kidnapping of a Palestinian intelligence officer .\tDT NN CC DT NN VBP VBN VBN IN NN IN NNP NNP CC DT VBG NN VBP DT NN VBZ IN NN TO NNP POS NN IN DT JJ NN NN .\nMasked gunmen forced the two victims into a vehicle outside a beachfront hotel Friday .\tVBN NNS VBD DT CD NNS IN DT NN IN DT NN NN NNP .\nRelatives of the intelligence service officer , Jihad Abed , who was abducted the day before in Gaza , are claiming responsibility for holding the Australian and Palestinian .\tNNS IN DT NN NN NN , NNP NNP , WP VBD VBN DT NN IN IN NNP , VBP VBG NN IN VBG DT NN CC NN .\nThe officer 's abduction is being blamed on the Jenin Martyrs Brigades militant group .\tDT NN POS NN VBZ VBG VBN IN DT NNP NNP NNP JJ NN .\nThere has been no response from the group .\tEX VBZ VBN DT NN IN DT NN .\nThe officer 's family says Friday 's kidnapping was because of the failure of Palestinian authorities to secure the officer 's release , and a relative says the Australian and Palestinian will be freed in exchange for the release of the officer .\tDT NN POS NN VBZ NNP POS NN VBD IN IN DT NN IN JJ NNS TO VB DT NN POS NN , CC DT NN VBZ DT NN CC NN MD VB VBN IN NN IN DT NN IN DT NN .\nCuba is criticizing recent efforts by U.S.-funded TV Marti to bring its anti-Castro programming to Cuban viewers .\tNNP VBZ VBG JJ NNS IN JJ NN NNP TO VB PRP$ JJ NN TO JJ NNS .\nCuba 's Communist Party newspaper Granma , in an article published Tuesday , said Cuban authorities will take the measures to block the TV Marti programming broadcast on a Miami local television station .\tNNP POS NNP NNP NN NNP , IN DT NN VBN NNP , VBD JJ NNS MD VB DT NNS TO VB DT NN NNP NN NN IN DT NNP JJ NN NN .\nThe station , WPMF-TV , can be received by Cubans with satellite dishes , although such devices are illegal in Cuba .\tDT NN , NNP , MD VB VBN IN NNS IN NN NNS , IN JJ NNS VBP JJ IN NNP .\nRadio and TV Marti announced in December that it would pay to have its programming broadcast on Spanish-language stations in Miami that are received by illegal satellite dishes in Cuba .\tNNP CC NNP NNP VBD IN NNP IN PRP MD VB TO VB PRP$ NN NN IN JJ NNS IN NNP WDT VBP VBN IN JJ NN NNS IN NNP .\nNepali authorities say at least six Maoist rebels were killed and several soldiers were missing following a fierce gunbattle in eastern Nepal .\tJJ NNS VBP IN JJS CD NNP NNS VBD VBN CC JJ NNS VBD VBG VBG DT JJ NN IN JJ NNP .\nOfficials say the fighting erupted Wednesday , when rebels ambushed a security patrol in a rural area of Ilam , about 680 kilometers east of Kathmandu .\tNNS VBP DT NN VBD NNP , WRB NNS VBD DT NN NN IN DT JJ NN IN NNP , IN CD NNS NN IN NNP .\nThe rebels say they have killed 20 soldiers .\tDT NNS VBP PRP VBP VBN CD NNS .\nBut officials say they could not confirm if the army suffered any casualties .\tCC NNS VBP PRP MD RB VB IN DT NN VBD DT NNS .\nEarlier this week , the Nepali army had warned that the Maoists could be planning major attacks to mark next month 's ninth anniversary of the start of their revolt .\tRBR DT NN , DT JJ NN VBD VBN IN DT NNS MD VB VBG JJ NNS TO VB JJ NN POS JJ NN IN DT NN IN PRP$ NN .\nThe rebels , who want to establish a communist republic in the world 's only Hindu kingdom , last week rejected a government deadline to resume peace talks .\tDT NNS , WP VBP TO VB DT JJ NN IN DT NN POS JJ NNP NN , JJ NN VBD DT NN NN TO VB NN NNS .\nThe government is pushing ahead with plans for long-delayed elections later this year .\tDT NN VBZ VBG RB IN NNS IN JJ NNS RBR DT NN .\nOfficials say at least 25 other al-Qaida-linked fighters were wounded during intense strikes in the villages of Loi Sam , Rashakai and Tang Khata in the Bajaur tribal region .\tNNS VBP IN JJS CD JJ JJ NNS VBD VBN IN JJ NNS IN DT NNS IN NNP NNP , NNP CC NNP NNP IN DT NNP JJ NN .\nPakistan says more than 100 people , most of them militants , have been killed in a renewed military offensive in the northwest over the past few days .\tNNP VBZ JJR IN CD NNS , JJS IN PRP NNS , VBP VBN VBN IN DT VBN JJ NN IN DT JJS IN DT JJ JJ NNS .\nPakistani officials say Pakistani security forces , backed by helicopter gunships and artillery , killed 16 suspected militants Sunday near the Afghan border .\tJJ NNS VBP JJ NN NNS , VBN IN NN NNS CC NN , VBD CD JJ NNS NNP IN DT JJ NN .\nLast month , Pakistan 's Interior Ministry chief , Rehman Malik , said the military would suspend offensives against militants in Bajaur during the Muslim holy month of Ramadan , but reserved the right to attack if provoked .\tJJ NN , NNP POS NNP NNP NN , NNP NNP , VBD DT NN MD VB NNS IN NNS IN NNP IN DT NNP JJ NN IN NNP , CC VBD DT NN TO VB IN VBN .\nPakistan has committed itself to fighting Islamic militancy in its tribal areas , while discouraging the United States from undertaking military operations on its territory .\tNNP VBZ VBN PRP TO VBG JJ NN IN PRP$ JJ NNS , IN VBG DT NNP NNPS IN VBG JJ NNS IN PRP$ NN .\nThree New Orleans police officers have been charged in the beating of a 64-year-old man and the assaulting of a television news producer with a crew that videotaped the incident .\tCD NNP NNP NN NNS VBP VBN VBN IN DT NN IN DT JJ NN CC DT NN IN DT NN NN NN IN DT NN WDT VBD DT NN .\nThe video shows two uniformed officers and two other men repeatedly punching Robert Davis in the face and body as he was being arrested Saturday night for public drunkenness in the southern U.S. city .\tDT NN VBZ CD JJ NNS CC CD JJ NNS RB VBG NNP NNP IN DT NN CC NN IN PRP VBD VBG VBN NNP NN IN JJ NN IN DT JJ NNP NN .\nThe Associated Press cameraman then took pictures of a third officer manhandling the producer who was holding up his credentials to the officer .\tDT NNP NNP NN RB VBD NNS IN DT JJ NN VBG DT NN WP VBD VBG RP PRP$ NNS TO DT NN .\nOther ( CNN ) video shows Mr. Davis in handcuffs lying on the ground in a pool of blood with his face badly beaten .\tJJ LRB NNP RRB NN VBZ NNP NNP IN NNS VBG IN DT NN IN DT NN IN NN IN PRP$ NN RB JJ .\nThe three officers have been suspended and charged with battery .\tDT CD NNS VBP VBN VBN CC VBN IN NN .\nThe New Orleans police department has come under heavy scrutiny for their response to Hurricane Katrina .\tDT NNP NNP NN NN VBZ VBN IN JJ NN IN PRP$ NN TO NNP NNP .\nMany officers have been accused of deserting their posts or joining in the looting that broke out .\tJJ NNS VBP VBN VBN IN VBG PRP$ NNS CC VBG IN DT NN WDT VBD RP .\nMuslims in northwestern Pakistan continue to protest against the controversial Prophet Muhammad cartoons as the EU foreign policy chief arrives in Saudi Arabia , saying Europe respects Islam .\tNNPS IN JJ NNP VBP TO VB IN DT JJ NNP NNP NNS IN DT NNP JJ NN NN VBZ IN NNP NNP , VBG NNP VBZ NNP .\nThe protest in Pakistan began Monday morning when students marched to different universities in the city of Peshawar , urging people to join the demonstration .\tDT NN IN NNP VBD NNP NN WRB NNS VBD TO JJ NNS IN DT NN IN NNP , VBG NNS TO VB DT NN .\nThey pelted offices and shops with stones as they marched .\tPRP VBD NNS CC NNS IN NNS IN PRP VBD .\nPolice fired tear gas and used batons to disperse the protesters when they tried to march on the provincial governor 's residence .\tNNS VBD JJ NN CC VBD NNS TO VB DT NNS WRB PRP VBD TO VB IN DT JJ NN POS NN .\nIn Jeddah , EU foreign policy chief Javier Solana said Europe had never wanted to offend the feelings of Muslims and never will .\tIN NNP , NNP JJ NN NN NNP NNP VBD NNP VBD RB VBN TO VB DT NNS IN NNPS CC RB MD .\nSolana made the remarks as he met with the head of the 57-member Organization of the Islamic Conference , Ekmeleddin Ihsanoglu .\tNNP VBD DT NNS IN PRP VBD IN DT NN IN DT JJ NNP IN DT NNP NNP , NNP NNP .\nThe unrest was sparked by cartoons of the prophet published initially by a Danish newspaper last September .\tDT NN VBD VBN IN NNS IN DT NN VBN RB IN DT JJ NN JJ NNP .\nFinnish authorities say Russian military aircraft have repeatedly violated Finland 's airspace in recent months despite the Nordic country 's demands for an end to such actions .\tJJ NNS VBP JJ JJ NN VBP RB VBN NNP POS NN IN JJ NNS IN DT NNP NN POS NNS IN DT NN TO JJ NNS .\nThe Foreign Ministry late Thursday said the flights were either on their way to Russia 's Baltic enclave of Kaliningrad or returning to Russia when they entered Finnish airspace over the Gulf of Finland .\tDT NNP NNP JJ NNP VBD DT NNS VBD RB IN PRP$ NN TO NNP POS JJ NN IN NNP CC VBG TO NNP WRB PRP VBD JJ NN IN DT NNP IN NNP .\nRussia 's Interfax news Agency quotes defense ministry officials as denying any violations .\tNNP POS NNP NN NNP VBZ NN NN NNS IN VBG DT NNS .\nFinnish officials say Prime Minister Matti Vanhanen will raise the issue during his visit to Moscow next month .\tJJ NNS VBP NNP NNP NNP NNP MD VB DT NN IN PRP$ NN TO NNP JJ NN .\nKaliningrad is a Russian Baltic enclave cut off from the rest of Russia by Belarus , Lithuania and Poland .\tNNP VBZ DT JJ NNP NN VBN RP IN DT NN IN NNP IN NNP , NNP CC NNP .\nNigeria 's main militant group said one of its commanders and 62 of his followers were not captured by the military , but rather turned themselves in for a promised cash reward .\tNNP POS JJ JJ NN VBD CD IN PRP$ NNS CC CD IN PRP$ NNS VBD RB VBN IN DT JJ , CC RB VBD PRP IN IN DT JJ NN NN .\nThe military had said it arrested the militants Friday in southern Nigeria 's Rivers State .\tDT NN VBD VBN PRP VBN DT NNS NNP IN JJ NNP POS NNP NNP .\nOn Saturday , it paraded the men in front of the media at an air force base in the southern oil hub of Port Harcourt .\tIN NNP , PRP VBD DT NNS IN NN IN DT NNS IN DT NN NN NN IN DT JJ NN NN IN NNP NNP .\nIn a statement Monday , the Movement for the Emancipation of the Niger Delta ( MEND ) refuted the government 's account of the arrests , saying its fighters ' handed themselves over ' with ' no exchange of gunfire . '\tIN DT NN NNP , DT NN IN DT NN IN DT NNP NNP LRB NNP RRB VBD DT NN POS NN IN DT NNS , VBG PRP$ NNS `` VBN PRP IN `` IN `` DT NN IN NN . ``\nNigerian authorities say the militants kidnapped 19 oil and construction workers in the Niger Delta region .\tJJ NNS VBP DT NNS VBD CD NN CC NN NNS IN DT NNP NNP NN .\nThe hostages , who were freed last week , included seven foreigners .\tDT NNS , WP VBD VBN JJ NN , VBD CD NNS .\nThe group has threatened more attacks on oil facilities .\tDT NN VBZ VBN JJR NNS IN NN NNS .\nIraqi Foreign Minister Hoshyar Zebari says coalition forces will next hand over control of southern Maysan province to Iraqi troops .\tJJ NNP NNP NNP NNP VBZ NN NNS MD RB VB IN NN IN JJ NNP NN TO JJ NNS .\nZebari was speaking in London Tuesday , after talks with British Foreign Secretary Margaret Beckett .\tNNP VBD VBG IN NNP NNP , IN NNS IN JJ NNP NNP NNP NNP .\nZebari did not say when he expects the transfer to take place .\tNNP VBD RB VB WRB PRP VBZ DT NN TO VB NN .\nOn Monday , Iraqi Prime Minister Nouri al-Maliki confirmed that British , Australian and Japanese troops will soon turn over security responsibility to Iraqi forces in southern Muthana province .\tIN NNP , JJ NNP NNP NNP NNP VBD IN JJ , JJ CC JJ NNS MD RB VB RP NN NN TO JJ NNS IN JJ NNP NN .\nBeckett would not say whether the transfer of responsibility will mean that British forces will return home or be redeployed elsewhere in Iraq .\tNNP MD RB VB IN DT NN IN NN MD VB IN JJ NNS MD VB NN CC VB VBN RB IN NNP .\nBritain has about 7,200 troops in southern Iraq based around the city of Basra .\tNNP VBZ RB CD NNS IN JJ NNP VBN IN DT NN IN NNP .\nThe leader of opposition Democrats in the U.S. Senate says the Bush administration needs to explain what role it had in the exposure of a covert CIA officer .\tDT NN IN NN NNS IN DT NNP NNP VBZ DT NNP NN VBZ TO VB WP NN PRP VBD IN DT NN IN DT JJ NNP NN .\nInterviewed Sunday on the ABC television program ' This Week , ' Senator Harry Reid said President Bush and Vice President Dick Cheney ' come clean with the American public . '\tVBN NNP IN DT NNP NN NN `` DT NN , `` NNP NNP NNP VBD NNP NNP CC NNP NNP NNP NNP `` VB JJ IN DT JJ NN . ``\nMr. Reid also said the president should pledge not to pardon Mr. Cheney 's former chief of staff Lewis Libby if he is convicted .\tNNP NNP RB VBD DT NN MD NN RB TO VB NNP NNP POS JJ NN IN NN NNP NNP IN PRP VBZ VBN .\nMr. Libby resigned Friday after being indicted on five charges in connection with statements he made to investigators probing the CIA leak .\tNNP NNP VBD NNP IN VBG VBN IN CD NNS IN NN IN NNS PRP VBD TO NNS VBG DT NNP NN .\nBoth the president and Mr. Cheney have refused to comment on the probe .\tDT DT NN CC NNP NNP VBP VBN TO VB IN DT NN .\nSenator Reid also called for the resignation of Mr. Bush 's chief adviser , Karl Rove .\tNNP NNP RB VBD IN DT NN IN NNP NNP POS JJ NN , NNP NNP .\nMr. Rove has not been charged with a crime in the probe but reportedly remains under investigation .\tNNP NNP VBZ RB VBN VBN IN DT NN IN DT NN CC RB VBZ IN NN .\nPolitical leaders and rebels in Ivory Coast say they accept the choice of economist Charles Konan Banny to be the nation 's transitional prime minister .\tJJ NNS CC NNS IN NNP NNP VBP PRP VBP DT NN IN NN NNP NNP NNP TO VB DT NN POS JJ JJ NN .\nA rebel spokesman told VOA that he hopes the international community will give Mr. Banny the power to do his job .\tDT NN NN VBD NNP IN PRP VBZ DT JJ NN MD VB NNP NNP DT NN TO VB PRP$ NN .\nA United Nations resolution gives the new prime minister expanded authority to carry out rebel disarmament and electoral reforms , with the goal of holding new elections by next October .\tDT NNP NNPS NN VBZ DT JJ JJ NN VBN NN TO VB RP JJ NN CC JJ NNS , IN DT NN IN VBG JJ NNS IN JJ NNP .\nAfrican mediators appointed Mr. Banny on Sunday , ending a deadlock between President Laurent Gbagbo , opposition leaders and the rebels .\tJJ NNS VBD NNP NNP IN NNP , VBG DT NN IN NNP NNP NNP , NN NNS CC DT NNS .\nMr. Banny , the governor of West Africa 's central bank , is expected to travel from Dakar , Senegal , to Abijan Monday .\tNNP NNP , DT NN IN NNP NNP POS JJ NN , VBZ VBN TO VB IN NNP , NNP , TO NNP NNP .\nHe had been going to run for president himself , but in his new position , he is barred from seeking the office .\tPRP VBD VBN VBG TO VB IN NN PRP , CC IN PRP$ JJ NN , PRP VBZ VBN IN VBG DT NN .\nTsunami rescue workers in India 's Andaman archipelago say they have found nine survivors on a remote island , 38 days after large waves devastated villages in the region .\tNN NN NNS IN NNP POS NNP NN VBP PRP VBP VBN CD NNS IN DT JJ NN , CD NNS IN JJ NNS VBD NNS IN DT NN .\nPolice say the group of five men , two women and two teenagers was found wandering in a remote part of Campbell Bay island .\tNNS VBP DT NN IN CD NNS , CD NNS CC CD NNS VBD VBN VBG IN DT JJ NN IN NNP NNP NN .\nPolice say the Nicobari tribespeople had fled to a hill when the tsunami flooded the island .\tNNS VBP DT NNP NN VBD VBN TO DT NN WRB DT NN VBD DT NN .\nThe emaciated survivors largely lived off coconuts until they were rescued Wednesday .\tDT JJ NNS RB VBD RP NNS IN PRP VBD VBN NNP .\nThey are the latest survivors discovered from the disaster that officials estimate killed more than 1,70,000 people , mostly in Indonesia and Sri Lanka .\tPRP VBP DT JJS NNS VBN IN DT NN IN NNS VBP VBN RBR IN CD NNS , RB IN NNP CC NNP NNP .\nTens of thousands of people are still listed as missing .\tNNS IN NNS IN NNS VBP RB VBN IN VBG .\nAn Afghan official says Taleban militants have captured a district in southern Kandahar province after several days of fierce fighting .\tDT JJ NN VBZ NNP NNS VBP VBN DT NN IN JJ NNP NN IN JJ NNS IN JJ NN .\nKandahar 's provincial police chief , Esmatullah Alizai , Tuesday said the Taleban took control of Mian Neshin district late Monday .\tNNP POS JJ NN NN , NNP NNP , NNP VBD DT NNP VBD NN IN NNP NNP NN JJ NNP .\nOfficials said Afghan forces made a tactical decision to withdraw from clashes with militants .\tNNS VBD JJ NNS VBD DT JJ NN TO VB IN NNS IN NNS .\nThey added that authorities are planning an operation to recapture the district .\tPRP VBD IN NNS VBP VBG DT NN TO VB DT NN .\nElsewhere , in nearby Uruzgan province , fighting continues Tuesday between NATO forces and Taleban militants .\tRB , IN JJ NNP NN , VBG VBZ NNP IN NNP NNS CC NNP NNS .\nOfficials say about 60 Taleban insurgents have been killed in the past three days of fighting in the district of Chora .\tNNS VBP IN CD NNP NNS VBP VBN VBN IN DT JJ CD NNS IN VBG IN DT NN IN NNP .\nAfghan authorities say civilians were also killed , but casualty figures could not be verified .\tJJ NNS VBP NNS VBD RB VBN , CC NN NNS MD RB VB VBN .\nAuthorities in Iraq say at least 12 people were killed in a series of attacks Wednesday , mainly in and around the northern city of Mosul .\tNNS IN NNP VBP IN JJS CD NNS VBD VBN IN DT NN IN NNS NNP , RB IN CC IN DT JJ NN IN NNP .\nIraqi officials say a car bomb exploded near a Shi'ite mosque on the outskirts of Mosul , killing nine people and wounding others .\tJJ NNS VBP DT NN NN VBD IN DT NNP NN IN DT NNS IN NNP , VBG CD NNS CC VBG NNS .\nA second blast in a nearby village also caused injuries .\tDT JJ NN IN DT JJ NN RB VBD NNS .\nAt least 22 people were wounded in the two explosions .\tIN JJS CD NNS VBD VBN IN DT CD NNS .\nAnd police in central Mosul say at least seven people were wounded Wednesday when a gunman threw an explosive device at a police patrol .\tCC NNS IN JJ NNP VBP IN JJS CD NNS VBD VBN NNP WRB DT NN VBD DT JJ NN IN DT NN NN .\nMosul has been the scene of a number of deadly attacks since U.S. combat troops formally withdrew from the city last week .\tNNP VBZ VBN DT NN IN DT NN IN JJ NNS IN NNP NN NNS RB VBD IN DT NN JJ NN .\nIn other violence , Iraqi police and witnesses say at least three people have been killed and 18 wounded in a bombing south of Baghdad .\tIN JJ NN , JJ NNS CC NNS VBP IN JJS CD NNS VBP VBN VBN CC CD VBN IN DT VBG NN IN NNP .\nAuthorities say the blast in the town of Musayyib appeared to target a wedding party .\tNNS VBP DT NN IN DT NN IN NNP VBD TO VB DT VBG NN .\nSuicide car bombers carried out two deadly attacks in Baghdad Thursday , killing 11 people as the Iraqi president met with Britain 's prime minister in London ahead of Iraq 's constitutional referendum .\tNN NN NNS VBD RP CD JJ NNS IN NNP NNP , VBG CD NNS IN DT JJ NN VBD IN NNP POS JJ NN IN NNP RB IN NNP POS JJ NN .\nAn American soldier also was killed Thursday in combat operations in northern Baghdad .\tDT JJ NN RB VBD VBN NNP IN NN NNS IN JJ NNP .\nFear of spiraling violence before next week 's referendum was one of the topics President Jalal Talabani and Prime Minister Tony Blair were expected to discuss .\tNN IN VBG NN IN JJ NN POS NN VBD CD IN DT NNS NNP NNP NNP CC NNP NNP NNP NNP VBD VBN TO VB .\nAt a joint news conference after their meeting , Mr. Talabani said the presence of American and British troops in Iraq is absolutely vital , and that no timetable for their departure has been set .\tIN DT JJ NN NN IN PRP$ NN , NNP NNP VBD DT NN IN NNP CC JJ NNS IN NNP VBZ RB JJ , CC IN DT NN IN PRP$ NN VBZ VBN VBN .\nFor his part , Mr. Blair said new , more dangerous explosives are being used in Iraq , and there are unproven suspicions they are coming from Iran or its Lebanese ally , Hezbollah .\tIN PRP$ NN , NNP NNP VBD JJ , RBR JJ NNS VBP VBG VBN IN NNP , CC EX VBP JJ NNS PRP VBP VBG IN NNP CC PRP$ JJ NN , NNP .\nThose charges were quickly denied by Iranian and Hezbollah officials .\tDT NNS VBD RB VBN IN JJ CC NNP NNS .\nInsurgents have carried out a series of attacks across Iraq , killing at least 25 people and wounding more than 93 others .\tNNS VBP VBN RP DT NN IN NNS IN NNP , VBG IN JJS CD NNS CC VBG JJR IN CD NNS .\nSpain 's interior minister says police confiscated documents indicating potential terrorism targets from two suspected members of the Basque separatist group ETA arrested in France Thursday .\tNNP POS JJ NN VBZ NNS VBD NNS VBG JJ NN NNS IN CD JJ NNS IN DT NNP NN NN NNP VBN IN NNP NNP .\nJose Antonio Alonso told reporters the documents included information about four Madrid sports complexes the city has listed in its bid for the 2012 Olympics .\tNNP NNP NNP VBD NNS DT NNS VBD NN IN CD NNP NNS VBZ DT NN VBZ VBN IN PRP$ NN IN DT CD NNS .\nThe other two sites were water desalinization plants in southern Spain .\tDT JJ CD NNS VBD NN NN NNS IN JJ NNP .\nMr. Alonso Thursday identified one of the men arrested near the southern French city of Toulouse as Pedro Esquisabel Urtuzaga , the chief of ETA international operations .\tNNP NNP NNP VBD CD IN DT NNS VBN IN DT JJ JJ NN IN NNP IN NNP NNP NNP , DT NN IN NNP JJ NNS .\nETA has been blamed for the deaths of more than 800 people since the late 1960s , when it launched its terrorist campaign for creation of an independent Basque state in southwestern France and northern Spain .\tNNP VBZ VBN VBN IN DT NNS IN JJR IN CD NNS IN DT JJ NNS , WRB PRP VBD PRP$ JJ NN IN NN IN DT JJ JJ NN IN JJ NNP CC JJ NNP .\nThe Palestinian militant group Hamas has canceled plans for its anniversary rally over fears of an Israeli attack .\tDT JJ JJ NN NNP VBZ VBN NNS IN PRP$ NN NN IN NNS IN DT JJ NN .\nThousands of Hamas supporters had been expected to join the rally Friday to mark the 17th anniversary of the founding of the movement .\tNNS IN NNP NNS VBD VBN VBN TO VB DT NN NNP TO VB DT JJ NN IN DT NN IN DT NN .\nA Hamas spokesman Mushir al-Masri said the rally at a Gaza City sports stadium has been canceled because of renewed concern about the safety of Hamas leaders - particularly after Sunday 's attack on an Israeli military post in Gaza that killed five soldiers .\tDT NNP NN NNP NNP VBD DT NN IN DT NNP NNP NNS NN VBZ VBN VBN IN IN JJ NN IN DT NN IN NNP NNS IN RB IN NNP POS NN IN DT JJ JJ NN IN NNP WDT VBD CD NNS .\nIsrael has assassinated Hamas founder and his successor in separate air strikes earlier this year .\tNNP VBZ VBN NNP NN CC PRP$ NN IN JJ NN NNS RBR DT NN .\nIsrael also killed more than a dozen Hamas fighters when it bombed a soccer field where the militants were training .\tNNP RB VBD JJR IN DT JJ NNP NNS WRB PRP VBD DT NN NN WRB DT NNS VBD NN .\nHonduran authorities have arrested two gang members in the death of an American agent who was fatally shot while on vacation in Tegucigalpa .\tJJ NNS VBP VBN CD NN NNS IN DT NN IN DT JJ NN WP VBD RB VBN IN IN NN IN NNP .\nOfficials say the suspects were arrested Saturday in connection with the death of Timothy Markey , an agent with the U.S. Drug Enforcement Administration .\tNNS VBP DT NNS VBD VBN NNP IN NN IN DT NN IN NNP NNP , DT NN IN DT NNP NNP NNP NNP .\nAuthorities say Mr. Markey was visiting a cathedral in the capital city Friday when he was approached and shot in the leg .\tNNS VBP NNP NNP VBD VBG DT NN IN DT NN NN NNP WRB PRP VBD VBN CC VBN IN DT NN .\nMr. Markey was rushed to a hospital , where he was later pronounced dead .\tNNP NNP VBD VBN TO DT NN , WRB PRP VBD RB JJ NN .\nOfficials say the fatal incident appears to have been an attempted robbery .\tNNS VBP DT JJ NN VBZ TO VB VBN DT JJ NN .\nA DEA statement says the 44-year-old agent had worked for the administration since 1989 , and was assigned to a unit in the southern U.S. state of Texas .\tDT NNP NN VBZ DT JJ NN VBD VBN IN DT NN IN CD , CC VBD VBN TO DT NN IN DT JJ NNP NN IN NNP .\nThe White House is urging the United Nations Security Council to keep pressure on Syria , after a report further implicated senior Syrian officials in the murder of former Lebanese Prime Minister Rafik Hariri .\tDT NNP NNP VBZ VBG DT NNP NNP NNP NNP TO VB NN IN NNP , IN DT NN RBR JJ JJ JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP .\nSpokesman Scott McClellan said Tuesday that the United States supports U.N. investigator Detlev Mehlis ' request to extend the murder investigation for another six months .\tNNP NNP NNP VBD NNP IN DT NNP NNPS VBZ NNP NN NNP NNP POS NN TO VB DT NN NN IN DT CD NNS .\nMr. Mehlis requested the extension Monday , saying his team had found new evidence implicating Syria in the February assassination .\tNNP NNP VBD DT NN NNP , VBG PRP$ NN VBD VBN JJ NN VBG NNP IN DT NNP NN .\nThe Security Council is due to discuss Mr. Mehlis ' report today .\tDT NNP NNP VBZ JJ TO VB NNP NNP POS NN NN .\nMeanwhile , in Beirut , Lebanese mourned the killing Monday of prominent anti-Syrian legislator and newspaper publisher Gibran Tueni in a car bomb blast .\tRB , IN NNP , JJ VBD DT NN NNP IN JJ JJ NN CC NN NN NNP NNP IN DT NN NN NN .\nMany schools and businesses were closed , as Mr. Tueni 's family received condolences at a Greek Orthodox church in East Beirut .\tJJ NNS CC NNS VBD VBN , IN NNP NNP POS NN VBD NNS IN DT JJ NNP NN IN NNP NNP .\nA coalition of anti-Syrian groups has called for a general strike Wednesday to coincide with his funeral .\tDT NN IN JJ NNS VBZ VBN IN DT JJ NN NNP TO VB IN PRP$ NN .\nDiplomats in Brussels say the foreign ministers of Britain , France and Germany will meet Iran 's top nuclear official Monday to discuss a long-term nuclear cooperation agreement .\tNNS IN NNP VBP DT JJ NNS IN NNP , NNP CC NNP MD VB NNP POS JJ JJ NN NNP TO VB DT JJ JJ NN NN .\nThe European Union 's foreign policy chief , Javier Solana , also will attend the negotiations .\tDT NNP NNP POS JJ NN NN , NNP NNP , RB MD VB DT NNS .\nThe Europeans are expected to offer Iran a package of economic and political incentives in exchange for its permanently suspending work on uranium enrichment .\tDT NNS VBP VBN TO VB NNP DT NN IN JJ CC JJ NNS IN NN IN PRP$ RB VBG NN IN NN NN .\nLast month , Iran agreed to a temporary suspension in an effort to avoid being brought before the U.N. Security Council for possible sanctions .\tJJ NN , NNP VBD TO DT JJ NN IN DT NN TO VB VBG VBN IN DT NNP NNP NNP IN JJ NNS .\nThe European Union also is expected to formally agree to resume stalled trade talks with Iran on an agreement that could include European support for Iran 's membership in the World Trade Organization .\tDT NNP NNP RB VBZ VBN TO RB VB TO VB VBN NN NNS IN NNP IN DT NN WDT MD VB JJ NN IN NNP POS NN IN DT NNP NNP NNP .\nThe United States has previously blocked Iran 's WTO entry bids .\tDT NNP NNPS VBZ RB VBN NNP POS NNP NN NNS .\nGOODY PRODUCTS Inc. cut its quarterly dividend to five cents a share from 11.5 cents a share .\tNNP NNP NNP VBD PRP$ JJ NN TO CD NNS DT NN IN CD NNS DT NN .\nThe reduced dividend is payable Jan. 2 to stock of record Dec. 15 .\tDT VBN NN VBZ JJ NNP CD TO NN IN NN NNP CD .\nThe Kearny , N.J.-based maker of hair accessories and other cosmetic products said it cut the dividend due to its third-quarter loss of $ 9,92,000 , or 15 cents a share .\tDT NNP , JJ NN IN NN NNS CC JJ JJ NNS VBD PRP VBP DT NN JJ TO PRP$ JJ NN IN $ CD , CC CD NNS DT NN .\nIn the year-ago quarter , the company reported net income of $ 1.9 million , or 29 cents a share .\tIN DT JJ NN , DT NN VBD JJ NN IN $ CD CD , CC CD NNS DT NN .\nThe company also adopted an anti-takeover plan .\tDT NN RB VBD DT JJ NN .\nBelgium became independent from the Netherlands in 1830 ; it was occupied by Germany during World Wars I and II .\tNNP VBD JJ IN DT NNP IN CD ; PRP VBD VBN IN NNP IN NNP NNP NNP CC NNP .\nThe country prospered in the past half century as a modern , technologically advanced European state and member of NATO and the EU .\tDT NN VBD IN DT JJ JJ NN IN DT JJ , RB JJ JJ NN CC NN IN NNP CC DT NNP .\nTensions between the Dutch-speaking Flemings of the north and the French-speaking Walloons of the south have led in recent years to constitutional amendments granting these regions formal recognition and autonomy .\tNNS IN DT JJ NNS IN DT NN CC DT JJ NNS IN DT NN VBP VBN IN JJ NNS TO JJ NNS VBG DT NNS JJ NN CC NN .\nTurkmenistan is largely a desert country with intensive agriculture in irrigated oases and sizeable gas and oil resources .\tNNP VBZ RB DT NN NN IN JJ NN IN JJ NNS CC JJ NN CC NN NNS .\nThe two largest crops are cotton , most of which is produced for export , and wheat , which is domestically consumed .\tDT CD JJS NNS VBP NN , JJS IN WDT VBZ VBN IN NN , CC NN , WDT VBZ RB VBN .\nAlthough agriculture accounts for roughly 10 % of GDP , it continues to employ nearly half of the country 's workforce .\tIN NN NNS IN RB CD NN IN NN , PRP VBZ TO VB RB NN IN DT NN POS NN .\nWith an authoritarian ex-Communist regime in power and a tribally based social structure , Turkmenistan has taken a cautious approach to economic reform , hoping to use gas and cotton export revenues to sustain its inefficient economy .\tIN DT JJ JJ NN IN NN CC DT RB VBN JJ NN , NNP VBZ VBN DT JJ NN TO JJ NN , VBG TO VB NN CC NN NN NNS TO VB PRP$ JJ NN .\nPrivatization goals remain limited .\tNN NNS VBP JJ .\nFrom 1998 - 2005 , Turkmenistan suffered from the continued lack of adequate export routes for natural gas and from obligations on extensive short-term external debt .\tIN CD IN CD , NNP VBD IN DT JJ NN IN JJ NN NNS IN JJ NN CC IN NNS IN JJ JJ JJ NN .\nAt the same time , however , total exports rose by an average of roughly 15 % per year from 2003 - 8 , largely because of higher international oil and gas prices .\tIN DT JJ NN , RB , JJ NNS VBD IN DT NN IN RB CD NN IN NN IN CD IN CD , RB IN IN JJR JJ NN CC NN NNS .\nNew pipelines to China and Iran , that began operation in early 2010 , have given Turkmenistan additional export routes for its gas , although these new routes have not offset the sharp drop in export revenue since early 2009 from decreased gas exports to Russia .\tJJ NNS TO NNP CC NNP , WDT VBD NN IN JJ CD , VBP VBN NNP JJ NN NNS IN PRP$ NN , IN DT JJ NNS VBP RB VBN DT JJ NN IN NN NN IN JJ CD IN JJ NN NNS TO NNP .\nOverall prospects in the near future are discouraging because of widespread internal poverty , endemic corruption , a poor educational system , government misuse of oil and gas revenues , and Ashgabat 's reluctance to adopt market-oriented reforms .\tJJ NNS IN DT JJ NN VBP VBG IN IN JJ JJ NN , JJ NN , DT JJ JJ NN , NN NN IN NN CC NN NNS , CC NNP POS NN TO VB JJ NNS .\nIn the past , Turkmenistan 's economic statistics were state secrets .\tIN DT NN , NNP POS JJ NNS VBD NN NNS .\nThe new government has established a State Agency for Statistics , but GDP numbers and other figures are subject to wide margins of error .\tDT JJ NN VBZ VBN DT NNP NNP IN NNPS , CC NN NNS CC JJ NNS VBP JJ TO JJ NNS IN NN .\nIn particular , the rate of GDP growth is uncertain .\tIN NN , DT NN IN NN NN VBZ JJ .\nSince his election , President BERDIMUHAMEDOW unified the country 's dual currency exchange rate , ordered the redenomination of the manat , reduced state subsidies for gasoline , and initiated development of a special tourism zone on the Caspian Sea .\tIN PRP$ NN , NNP NNP VBN DT NN POS JJ NN NN NN , VBD DT NN IN DT NN , VBD NN NNS IN NN , CC VBD NN IN DT JJ NN NN IN DT NNP NNP .\nAlthough foreign investment is encouraged , numerous bureaucratic obstacles impede international business activity .\tIN JJ NN VBZ VBN , JJ JJ NNS VBP JJ NN NN .\nHungary became a Christian kingdom in A.D. 1000 and for many centuries served as a bulwark against Ottoman Turkish expansion in Europe .\tNNP VBD DT JJ NN IN NNP CD CC IN JJ NNS VBD IN DT NN IN NNP NNP NN IN NNP .\nThe kingdom eventually became part of the polyglot Austro-Hungarian Empire , which collapsed during World War I .\tDT NN RB VBD NN IN DT NN JJ NN , WDT VBD IN NNP NNP NNP .\nThe country fell under Communist rule following World War II .\tDT NN VBD IN JJ NN VBG NNP NNP NNP .\nIn 1956 , a revolt and an announced withdrawal from the Warsaw Pact were met with a massive military intervention by Moscow .\tIN CD , DT NN CC DT VBN NN IN DT NNP NNP VBD VBN IN DT JJ JJ NN IN NNP .\nUnder the leadership of Janos KADAR in 1968 , Hungary began liberalizing its economy , introducing so-called ' Goulash Communism . '\tIN DT NN IN NNP NNP IN CD , NNP VBD VBG PRP$ NN , VBG JJ `` NNP NNP . ``\nHungary held its first multiparty elections in 1990 and initiated a free market economy .\tNNP VBD PRP$ JJ JJ NNS IN CD CC VBD DT JJ NN NN .\nIt joined NATO in 1999 and the EU five years later .\tPRP VBD NNP IN CD CC DT NNP CD NNS RB .\nIn 2011 , Hungary assumed the six-month rotating presidency of the EU for the first time .\tIN CD , NNP VBD DT JJ VBG NN IN DT NNP IN DT JJ NN .\nA FROG once upon a time came forth from his home in the marsh and proclaimed to all the beasts that he was a learned physician , skilled in the use of drugs and able to heal all diseases .\tDT NN RB IN DT NN VBD RB IN PRP$ NN IN DT NN CC VBD TO PDT DT NNS IN PRP VBD DT JJ NN , JJ IN DT NN IN NNS CC JJ TO VB DT NNS .\nA Fox asked him , ' How can you pretend to prescribe for others , when you are unable to heal your own lame gait and wrinkled skin ? '\tDT NN VBD PRP , `` WRB MD PRP VB TO VB IN NNS , WRB PRP VBP JJ TO VB PRP$ JJ NN NN CC VBN NN . ``\nA SWALLOW who had built her nest in a court of justice reared a fine family of young birds .\tDT NN WP VBD VBN PRP$ NN IN DT NN IN NN VBD DT JJ NN IN JJ NNS .\nOne day a Snake came out of a chink in the wall and was about to eat them .\tCD NN DT NN VBD IN IN DT NN IN DT NN CC VBD IN TO VB PRP .\nThe Just Judge at once issued an injunction , and making an order for their removal to his own house , ate them himself .\tDT NN NN IN RB VBN DT NN , CC VBG DT NN IN PRP$ NN TO PRP$ JJ NN , VBD PRP PRP .\nA BOY put his hand into a pitcher full of filberts .\tDT NN VBD PRP$ NN IN DT NN JJ IN NNS .\nHe grasped as many as he could possibly hold , but when he tried to pull out his hand , he was prevented from doing so by the neck of the pitcher .\tPRP VBD RB JJ IN PRP MD RB VB , CC WRB PRP VBD TO VB RP PRP$ NN , PRP VBD VBN IN VBG RB IN DT NN IN DT NN .\nUnwilling to lose his filberts , and yet unable to withdraw his hand , he burst into tears and bitterly lamented his disappointment .\tVBG TO VB PRP$ NNS , CC RB JJ TO VB PRP$ NN , PRP VBD IN NNS CC RB VBD PRP$ NN .\nA bystander said to him , ' Be satisfied with half the quantity , and you will readily draw out your hand . '\tDT NN VBD TO PRP , `` VB JJ IN PDT DT NN , CC PRP MD RB VB RP PRP$ NN . ``\nDo not attempt too much at once .\tVBP RB VB RB RB IN RB .\nKidnappers in Haiti have released a group of children they abducted from a school bus early Thursday .\tNNS IN NNP VBP VBN DT NN IN NNS PRP VBD IN DT NN NN RB NNP .\nPolice said Friday the kidnappers freed the children unharmed later Thursday .\tNNS VBD NNP DT NNS VBD DT NNS JJ RB NNP .\nLocal media report the abductors were paid an unspecified ransom .\tJJ NNS VBP DT NNS VBD VBN DT JJ NN .\nBut the Associated Press quotes a police commissioner as denying any ransom was paid .\tCC DT NNP NNP VBZ DT NN NN IN VBG DT NN VBD VBN .\nPolice also said they are working to secure the release of an American missionary kidnapped Thursday in a separate incident .\tNNS RB VBD PRP VBP VBG TO VB DT NN IN DT JJ NN VBN NNP IN DT JJ NN .\nNeither case was considered to be politically motivated .\tDT NN VBD VBN TO VB RB JJ .\nThe United States is giving $ 750 million to Pakistan to help develop its remote tribal region .\tDT NNP NNPS VBZ VBG $ CD CD TO NNP TO VB VB PRP$ JJ JJ NN .\nThe U.S. Agency for International Development says the money - to be allocated over five years - will fund projects in Pakistan 's Federally Administered Tribal Areas ( FATAs ) , which border Afghanistan .\tDT NNP NNP IN NNP NNP VBZ DT NN : TO VB VBN IN CD NNS : MD VB NNS IN NNP POS NNP NNP NNP NNP LRB NNP RRB , WDT VBP NNP .\nThe agency says the projects include efforts to strengthen livelihoods , expand economic opportunities and improve education and healthcare .\tDT NN VBZ DT NNS VBP NNS TO VB NNS , VB JJ NNS CC VB NN CC NN .\nA $ 43 million contract has been awarded by the agency to Development Alternatives , Incorporated .\tDT $ CD CD NN VBZ VBN VBN IN DT NN TO NNP NNP , VBN .\nThe company will help the Pakistani government and non-governmental organizations to plan , implement and monitor a wide range of development programs .\tDT NN MD VB DT JJ NN CC JJ NNS TO VB , VB CC VB DT JJ NN IN NN NNS .\nThe Federally Administered Tribal Areas are governed by the Pakistani central government , but Pashtun tribal elders run the day to day affairs of the region .\tDT NNP VBD NNP NNP VBP VBN IN DT JJ JJ NN , CC NNP JJ NNS VBP DT NN TO NN NNS IN DT NN .\nOfficials in northwest Pakistan say at least 12 people were killed Sunday when a minibus ran off a mountainous road and plunged into a ravine .\tNNS IN JJ NNP VBP IN JJS CD NNS VBD VBN NNP WRB DT NN VBD RP DT JJ NN CC VBD IN DT NN .\nAt least eight others were injured in the crash , which occurred near the town of Malakand , northwest of Islamabad .\tIN JJS CD NNS VBD VBN IN DT NN , WDT VBD IN DT NN IN NNP , NN IN NNP .\nPolice say the vehicle was headed to the town of Chitral from the provincial capital , Peshawar , when the driver lost control of the vehicle .\tNNS VBP DT NN VBD VBN TO DT NN IN NNP IN DT JJ NN , NNP , WRB DT NN VBD NN IN DT NN .\nIt is unclear how many people were traveling on the bus at the time of the accident .\tPRP VBZ JJ WRB JJ NNS VBD VBG IN DT NN IN DT NN IN DT NN .\nFatal road accidents are common in Pakistan , due mainly to poorly maintained roads and disregard for traffic rules .\tJJ NN NNS VBP JJ IN NNP , JJ RB TO RB VBN NNS CC NN IN NN NNS .\nRussian President Dmitri Medvedev has sent a new nuclear arms reduction treaty with the United States to parliament for ratification .\tJJ NNP NNP NNP VBZ VBN DT JJ JJ NNS NN NN IN DT NNP NNPS TO NN IN NN .\nMr. Medvedev and U.S. President Barack Obama signed the treaty last month in the Czech capital , Prague .\tNNP NNP CC NNP NNP NNP NNP VBD DT NN JJ NN IN DT JJ NN , NNP .\nPresident Obama submitted the treaty to the U.S. Senate for approval earlier this month .\tNNP NNP VBD DT NN TO DT NNP NNP IN NN RBR DT NN .\nMr. Medvedev urged Russian lawmakers Friday to synchronize their ratification process with the Senate .\tNNP NNP VBD JJ NNS NNP TO VB PRP$ NN NN IN DT NNP .\nThe new Strategic Arms Reduction Treaty cuts U.S. and Russian nuclear arsenals by 30 percent , leaving each side with about 1,500 strategic nuclear weapons .\tDT JJ NNP NNP NNP NNP VBZ NNP CC JJ JJ NNS IN CD NN , VBG DT NN IN IN CD JJ JJ NNS .\nThe agreement replaces the 1991 START treaty .\tDT NN VBZ DT CD NNP NN .\nBoth the U.S. Senate and Russia 's parliament must ratify the treaty before it can take effect .\tDT DT NNP NNP CC NNP POS NN MD VB DT NN IN PRP MD VB NN .\nPresident Obama has called the treaty ' an important milestone ' for nuclear security and non-proliferation .\tNNP NNP VBZ VBN DT NN `` DT JJ NN `` IN JJ NN CC NN .\nA British judge has dropped charges against seven soldiers accused of beating an Iraqi teenager to death in 2003 .\tDT JJ NN VBZ VBN NNS IN CD NNS VBN IN VBG DT JJ NN TO NN IN CD .\nThe judge ruled Thursday there was not enough evidence against the soldiers .\tDT NN VBD NNP EX VBD RB JJ NN IN DT NNS .\nThey had faced a court-martial in connection with the death of 18-year-old Nadhem Abdullah during a skirmish in southern Iraq .\tPRP VBD VBN DT JJ IN NN IN DT NN IN JJ NNP NNP IN DT NN IN JJ NNP .\nAustralia 's cricket team has scored 337-9 at stumps on the first day of its first test against India in Melbourne .\tNNP POS NN NN VBZ VBN CD IN NNS IN DT JJ NN IN PRP$ JJ NN IN NNP IN NNP .\nMatthew Hayden scored his 28th test century in the match , making 124 before being caught out by Sourav Ganguly .\tNNP NNP VBD PRP$ JJ NN NN IN DT NN , VBG CD IN VBG VBN RP IN NNP NNP .\nThe century was Hayden 's 19th in Australia , surpassing countrymen Donald Bradman and Ricky Ponting , who have 18 each .\tDT NN VBD NNP POS JJ IN NNP , VBG NNS NNP NNP CC NNP NNP , WP VBP CD DT .\nBut India 's bowlers put a damper on Australia 's lineup with Anil Kumble May-84 .\tCC NNP POS NNS VBD DT NN IN NNP POS NN IN NNP NNP CD .\nZaheer Khan was Mar-93 for India .\tNNP NNP VBD CD IN NNP .\nThe test is being played on the Melbourne Cricket Ground in front of more than 65,000 fans .\tDT NN VBZ VBG VBN IN DT NNP NNP NNP IN NN IN JJR IN CD NNS .\nPolice say that 110 persons were ejected from the grounds Wednesday , most for throwing objects in the air .\tNNS VBP IN CD NNS VBD VBN IN DT NNS NNP , JJS IN VBG NNS IN DT NN .\nTwelve people were arrested .\tCD NNS VBD VBN .\nA leading U.S. newspaper reports that the Central Intelligence Agency has set up secret joint anti-terrorist centers in more than 20 nations .\tDT VBG NNP NN VBZ IN DT NNP NNP NNP VBZ VBN RP JJ JJ NN NNS IN JJR IN CD NNS .\nThe Washington Post Friday says the centers may act on tips provided by the CIA , but local agents are used to capture suspected terrorists .\tDT NNP NNP NNP VBZ DT NNS MD VB IN NNS VBN IN DT NNP , CC JJ NNS VBP VBN TO VB JJ NNS .\nThe newspaper based its report on interviews with current and former U.S. and foreign officials who declined to be named .\tDT NN VBD PRP$ NN IN NNS IN JJ CC JJ NNP CC JJ NNS WP VBD TO VB VBN .\nThe Post says the secret program is legal and received a huge boost after the September 2001 terrorist attacks .\tDT NNP VBZ DT JJ NN VBZ JJ CC VBD DT JJ NN IN DT NNP CD JJ NNS .\nIt says increased funding has allowed the CIA to entice a wide variety of countries to work with it , including Indonesia , Uzbekistan and France .\tPRP VBZ VBN NN VBZ VBN DT NNP TO VB DT JJ NN IN NNS TO VB IN PRP , VBG NNP , NNP CC NNP .\nThe newspaper reports the centers are separate from the secret CIA prisons the Post says exist in several countries .\tDT NN VBZ DT NNS VBP JJ IN DT JJ NNP NNS DT NNP VBZ VB IN JJ NNS .\nThe CIA had no immediate comment on the report .\tDT NNP VBD DT JJ NN IN DT NN .\nThe presidential election in Lebanon has been postponed until Friday to give rival political factions more time to agree on a candidate .\tDT JJ NN IN NNP VBZ VBN VBN IN NNP TO VB JJ JJ NNS RBR NN TO VB IN DT NN .\nParliament speaker Nabih Berri announced the delay in a statement , saying the balloting in parliament was moved from Wednesday to Friday .\tNNP NN NNP NNP VBD DT NN IN DT NN , VBG DT NN IN NN VBD VBN IN NNP TO NNP .\nThe delay is the fourth time voting has been postponed .\tDT NN VBZ DT JJ NN NN VBZ VBN VBN .\nThe pro-Western governing coalition and the Hezbollah-led opposition are at odds over who will succeed pro-Syrian President Emile Lahoud , whose term ends Friday night .\tDT JJ NN NN CC DT JJ NN VBP IN NNS IN WP MD VB JJ NNP NNP NNP , WP$ NN VBZ NNP NN .\nFrench Foreign Minister Bernard Kouchner and Arab League chief Amr Moussa are in Lebanon holding talks with both sides .\tJJ NNP NNP NNP NNP CC NNP NNP NN NNP NNP VBP IN NNP VBG NNS IN DT NNS .\nLebanon 's government has threatened to use its simple parliamentary majority to elect one of its own members if the factions do not agree on a candidate .\tNNP POS NN VBZ VBN TO VB PRP$ JJ JJ NN TO VB CD IN PRP$ JJ NNS IN DT NNS VBP RB VB IN DT NN .\nUnited Nations Secretary-General Ban Ki-moon visited Lebanon last week and called on leaders there to set aside their differences and elect a new president .\tNNP NNP NNP NNP NNP VBD NNP JJ NN CC VBD IN NNS RB TO VB RP PRP$ NNS CC VB DT JJ NN .\nAfghan security officials say Taliban militants have hanged five policeman in southern Afghanistan as a public warning to others .\tJJ NN NNS VBP NNP NNS VBP VBN CD NN IN JJ NNP IN DT JJ NN TO NNS .\nThe Uruzgan province police chief , Juma Gul Himat , describing the incident Sunday , said the five policemen had been abducted two months ago and were mutilated before being killed and their bodies hung from trees .\tDT NNP NN NN NN , NNP NNP NNP , VBG DT NN NNP , VBD DT CD NNS VBD VBN VBN CD NNS RB CC VBD VBN IN VBG VBN CC PRP$ NNS VBN IN NNS .\nIn other developments , a provincial police official , Sayed Agha Saqeb says NATO-led forces killed at least 20 Taliban militants in fighting that began Saturday west of Kandahar .\tIN JJ NNS , DT JJ NN NN , NNP NNP NNP VBZ JJ NNS VBN IN JJS CD NNP NNS IN VBG WDT VBD NNP NN IN NNP .\nA Taliban spokesman , Yusuf Ahmadi said the Kandahar operation killed only four insurgents , and left many civilians dead .\tDT NNP NN , NNP NNP VBD DT NNP NN VBD RB CD NNS , CC VBD JJ NNS JJ .\nRecent violence also claimed the lives of two Canadian soldiers and their interpreter .\tJJ NN RB VBD DT NNS IN CD JJ NNS CC PRP$ NN .\nPalestinian activists tore down a section of the Israeli-built barrier that cordons off the West Bank , in a protest that coincides with the 20th anniversary of the fall of the Berlin Wall .\tJJ NNS VBD RP DT NN IN DT JJ NN WDT VBZ RP DT NNP NNP , IN DT NN WDT VBZ IN DT JJ NN IN DT NN IN DT NNP NNP .\nRock-throwing demonstrators cheered Monday as they used a truck to pull down a segment of the wall .\tJJ NNS VBD NNP IN PRP VBD DT NN TO VB RP DT NN IN DT NN .\nIsraeli troops used tear gas to disperse the protesters .\tJJ NNS VBD JJ NN TO VB DT NNS .\nThe structure is a combination of concrete barriers , fencing and barbed wire that will measure about 700 kilometers long once construction is finished .\tDT NN VBZ DT NN IN JJ NNS , NN CC JJ NN WDT MD VB IN CD NNS RB RB NN VBZ VBN .\nThe United Nations estimates the barrier is more than 60 percent complete .\tDT NNP NNP VBZ DT NN VBZ JJR IN CD NN JJ .\nIsrael says it needs the barrier for security , but Palestinians view it as a land-grab .\tNNP VBZ PRP VBZ DT NN IN NN , CC NNS VBP PRP IN DT NN .\nThe wall cuts into territory Palestinians want for a future state , putting about 10 percent of the West Bank on the Israeli side of the barrier .\tDT NN VBZ IN NN NNS VBP IN DT JJ NN , VBG IN CD NN IN DT NNP NNP IN DT JJ NN IN DT NN .\nTurkish troops have killed three suspected Kurdish rebels during a military offensive in southeastern Turkey .\tJJ NNS VBP VBN CD JJ NNP NNS IN DT JJ NN IN JJ NNP .\nMonday 's fighting in Tunceli province occurred as more than 5,000 Turkish troops swept through the mountainous region searching for members of the outlawed Kurdistan Workers Party , known as the PKK .\tNNP POS NN IN NNP NN VBD IN JJR IN CD JJ NNS VBD IN DT JJ NN VBG IN NNS IN DT JJ NNP NNP NNP , VBN IN DT NNP .\nElsewhere in the region , Turkey says rebels kidnapped a policeman after stopping his car at a roadblock in an area close to the borders of Iraq and Syria .\tRB IN DT NN , NNP VBZ NNS VBD DT NN IN VBG PRP$ NN IN DT NN IN DT NN NN TO DT NNS IN NNP CC NNP .\nOfficials say troops are looking for the officer .\tNNS VBP NNS VBP VBG IN DT NN .\nThe violence comes days after the Kurdish rebels ended a 60-day unilateral ceasefire with Turkey .\tDT NN VBZ NNS IN DT JJ NNS VBD DT JJ JJ NN IN NNP .\nThe rebels accuse the Ankara government of ignoring the truce and continuing military operations against rebel fighters .\tDT NNS VBP DT NNP NN IN VBG DT NN CC VBG JJ NNS IN JJ NNS .\nTibet 's exiled spiritual leader , the Dalai Lama , has been admitted to a hospital in India Thursday after complaining of abdominal pains .\tNNP POS VBN JJ NN , DT NNP NNP , VBZ VBN VBN TO DT NN IN NNP NNP IN VBG IN JJ NNS .\nHis personal secretary said there is no major cause for concern .\tPRP$ JJ NN VBD EX VBZ DT JJ NN IN NN .\nDoctors at the hospital where he was admitted in Mumbai tell Reuters news agency that he is ' cheerful . '\tNNS IN DT NN WRB PRP VBD VBN IN NNP VBP NNP NN NN IN PRP VBZ `` JJ . ``\nOn Thursday , the Dalai Lama canceled two upcoming foreign trips to undergo medical tests , after experiencing discomfort during recent travels .\tIN NNP , DT NNP NNP VBD CD JJ JJ NNS TO VB JJ NNS , IN VBG NN IN JJ NNS .\nHis office said the 73-year-old Buddhist leader 's doctors had diagnosed him with exhaustion and recommended that he complete some medical tests .\tPRP$ NN VBD DT JJ NNP NN POS NNS VBD VBN PRP IN NN CC VBD IN PRP VB DT JJ NNS .\nThe Dalai Lama spends several months a year traveling to promote Tibetan causes .\tDT NNP NNP VBZ JJ NNS DT NN VBG TO VB JJ NNS .\nHe recently returned to India after a visit to France .\tPRP RB VBD TO NNP IN DT NN TO NNP .\nSome African heads of state plan to push for a united continent during an African Union summit that begins Sunday in the Ghanaian capital of Accra .\tDT JJ NNS IN NN NN TO VB IN DT JJ NN IN DT NNP NNP NN WDT VBZ NNP IN DT JJ NN IN NNP .\nThe three-day summit agenda is almost entirely dedicated to the idea of a United States of Africa .\tDT JJ NN NN VBZ RB RB VBN TO DT NN IN DT NNP NNP IN NNP .\nProponents of the plan argue that a united federation of African nations could exercise more influence and better address problems facing the world 's poorest continent .\tNNS IN DT NN VBP IN DT JJ NN IN JJ NNS MD VB JJR NN CC JJR NN NNS VBG DT NN POS JJS NN .\nAlthough several countries support the idea of a united continent , some regional powers like South Africa favor a more gradual consolidation of regional economic groups .\tIN JJ NNS VBP DT NN IN DT JJ NN , DT JJ NNS IN NNP NNP VBP DT JJR JJ NN IN JJ JJ NNS .\nLeaders at the summit will also discuss the conflicts in Darfur and Zimbabwe .\tNNS IN DT NN MD RB VB DT NNS IN NNP CC NNP .\nThe idea of a united Africa was conceived four decades ago by Ghana 's first president , Kwame Nkrumah .\tDT NN IN DT JJ NNP VBD VBN CD NNS RB IN NNP POS JJ NN , NNP NNP .\nJapanese Prime Minister Junichiro Koizumi has renewed Tokyo 's call for a permanent seat on the U.N. Security Council .\tJJ NNP NNP NNP NNP VBZ VBN NNP POS NN IN DT JJ NN IN DT NNP NNP NNP .\nMr. Koizumi , fresh from a landslide election win , addressed world leaders at the United Nations summit in New York on Thursday .\tNNP NNP , JJ IN DT NN NN NN , VBD NN NNS IN DT NNP NNP NN IN NNP NNP IN NNP .\nHe said Security Council reform is a ' just cause ' for the international community .\tPRP VBD NNP NNP NN VBZ DT `` RB VB `` IN DT JJ NN .\nHe stressed Japan 's record of pacifism since the end of World War II .\tPRP VBD NNP POS NN IN NN IN DT NN IN NNP NNP NNP .\nA proposal by the so-called Group of Four nations - Brazil , India , Germany and Japan - calls for increasing the Security Council to 25 with six new permanent members .\tDT NN IN DT JJ NNP IN CD NNS IN NNP , NNP , NNP CC NNP : VBZ IN VBG DT NNP NNP TO CD IN CD JJ JJ NNS .\nBut the proposal is opposed by China and the United States and has failed to gain support among other council members .\tCC DT NN VBZ VBN IN NNP CC DT NNP NNPS CC VBZ VBN TO VB NN IN JJ NN NNS .\nEurope 's debt crisis got worse Tuesday as a rating agency slashed the credit ratings for the Greek and Portuguese governments .\tNNP POS NN NN VBD JJR NNP IN DT NN NN VBD DT NN NNS IN DT JJ CC JJ NNS .\nStandard and Poor 's cut Greek long-term government bonds three levels to speculative or ' junk ' status because of the ' political , economic and budgetary challenges ' facing Athens .\tNNP CC NNP POS VBD JJ JJ NN NNS CD NNS TO JJ CC `` NN `` NN IN IN DT `` JJ , JJ CC JJ NNS `` VBG NNP .\nThe same agency downgraded Portugal 's sovereign debt by two notches .\tDT JJ NN VBD NNP POS JJ NN IN CD NNS .\nS & P said it has growing concerns about the ability of the Greek and Portuguese governments to repay debts .\tNNP CC NNP VBD PRP VBZ VBG NNS IN DT NN IN DT JJ CC JJ NNS TO VB NNS .\nThe move followed weeks of talks among European nations and the International Monetary Fund about an aid package worth as much as $ 60 billion for Greece .\tDT NN VBD NNS IN NNS IN JJ NNS CC DT NNP NNP NNP IN DT NN NN JJ RB JJ IN $ CD CD IN NNP .\nThe lower rating means lenders will demand higher interest rates , raising borrowing costs at a time when Greece and Portugal are already struggling with financial issues .\tDT JJR NN VBZ NNS MD VB JJR NN NNS , VBG NN NNS IN DT NN WRB NNP CC NNP VBP RB VBG IN JJ NNS .\nThe downgrades prompted Greek and Portuguese stocks to fall sharply in Tuesday 's trading .\tDT NNS VBD JJ CC JJ NNS TO VB RB IN NNP POS NN .\nChina says it is ' sincere ' about establishing diplomatic relations with the Vatican , but has repeated a long-standing requirement that the Holy See acknowledge Taiwan as part of China .\tNNP VBZ PRP VBZ `` JJ `` IN VBG JJ NNS IN DT NNP , CC VBZ VBN DT JJ NN IN DT NNP NNP VBP NNP IN NN IN NNP .\nA Chinese Foreign Ministry spokesman , Kong Quan , Tuesday expressed hope that under the new pope , the Vatican will create favorable conditions for establishing relations .\tDT JJ NNP NNP NN , NNP NNP , NNP VBD NN IN IN DT JJ NN , DT NNP MD VB JJ NNS IN VBG NNS .\nBut he said the Vatican must recognize Taiwan as an ' inseparable part of China . '\tCC PRP VBD DT NNP MD VB NNP IN DT `` JJ NN IN NNP . ``\nPope Benedict last week invited countries without diplomatic relations with the Vatican to establish ties soon .\tNNP NNP JJ NN VBD NNS IN JJ NNS IN DT NNP TO VB NNS RB .\nHe did not name the countries , but China , Saudi Arabia and Vietnam are among the nations that do not have diplomatic ties with the Vatican .\tPRP VBD RB VB DT NNS , CC NNP , NNP NNP CC NNP VBP IN DT NNS WDT VBP RB VB JJ NNS IN DT NNP .\nChina broke relations with the Vatican after the communists took power more than 50 years ago .\tNNP VBD NNS IN DT NNP IN DT NNS VBD NN JJR IN CD NNS RB .\nThe Vatican , meanwhile , has maintained full diplomatic relations with Taiwan .\tDT NNP , RB , VBZ VBN JJ JJ NNS IN NNP .\nAl Jazeera , the Arabic-language television news network , says a telephone caller threatened to blow up the building housing its Beirut bureau because of the network 's coverage of Saturday 's car bomb explosion in Beirut .\tNNP NNP , DT JJ NN NN NN , VBZ DT NN NN VBD TO VB RP DT NN NN PRP$ NNP NN IN IN DT NN POS NN IN NNP POS NN NN NN IN NNP .\nOther news organizations also occupy office space in the same building .\tJJ NN NNS RB JJ NN NN IN DT JJ NN .\nAl Jazeera says all news agencies in the building continued normal operations .\tNNP NNP VBZ DT NN NNS IN DT NN VBD JJ NNS .\nAl Jazeera 's coverage of the bombing contained an interview with Lebanese opposition leader Walid Jumblatt .\tNNP NNP POS NN IN DT NN VBD DT NN IN JJ NN NN NNP NNP .\nMr. Jumblatt alleged that three bombings in Beirut last week were the work of Syrian-backed Lebanese security agents .\tNNP NNP VBD IN CD NNS IN NNP JJ NN VBD DT NN IN JJ JJ NN NNS .\nAccording to Al Jazeera 's website , Mr. Jumblatt said the agents are trying to defend Lebanon 's pro-Syria leadership .\tVBG TO NNP NNP POS NN , NNP NNP VBD DT NNS VBP VBG TO VB NNP POS JJ NN .\nLebanon 's opposition has also accused Syria of involvement in the assassination of former prime minister Rafik al-Hariri .\tNNP POS NN VBZ RB VBN NNP IN NN IN DT NN IN JJ JJ NN NNP NNP .\nLynndie England arrives for a pretrial hearing at Fort Hood , Texas One of the U.S. Army soldiers at the center of the Iraqi prisoner abuse scandal is scheduled to appear in a U.S. military court in Texas , Thursday for a pre-trial hearing and arraignment .\tNNP NNP VBZ IN DT JJ NN IN NNP NNP , NNP CD IN DT NNP NNP NNS IN DT NN IN DT JJ NN NN NN VBZ VBN TO VB IN DT NNP JJ NN IN NNP , NNP IN DT JJ NN CC NN .\nPrivate First Class Lynndie England is charged with maltreatment , conspiracy to maltreat detainees , and committing an indecent act .\tNNP NNP NNP NNP NNP VBZ VBN IN NN , NN TO VB NNS , CC VBG DT JJ NN .\nShe faces up to 11 years in prison .\tPRP VBZ RP TO CD NNS IN NN .\nIn May , Private England 's case ended in a mistrial when the presiding judge threw out her guilty plea .\tIN NNP , NNP NNP POS NN VBD IN DT NN WRB DT VBG NN VBD RP PRP$ JJ NN .\nThe judge said testimony from a key witness indicated that Private England did not know her actions were a crime when she committed them .\tDT NN VBD NN IN DT JJ NN VBD IN NNP NNP VBD RB VB PRP$ NNS VBD DT NN WRB PRP VBD PRP .\nTo plead guilty under U.S. military law , a defendant must know they were committing a crime .\tTO VB JJ IN NNP JJ NN , DT NN MD VB PRP VBD VBG DT NN .\nPhotos of Private England mistreating Iraqi detainees at the Abu Ghraib prison sparked international outrage last year .\tNNP IN NNP NNP VBG JJ NNS IN DT NNP NNP NN VBD JJ NN JJ NN .\nA U.N. spokeswoman says the United Nations Human Rights Council will hold a special meeting later this week to examine Israel 's military offensive in Lebanon .\tDT NNP NN VBZ DT NNP NNP NNP NNP NNP MD VB DT JJ NN RB DT NN TO VB NNP POS JJ NN IN NNP .\nThe spokeswoman said Tuesday Tunisia requested the meeting on behalf of the 57-member Organization of the Islamic Conference .\tDT NN VBD NNP NNP VBD DT NN IN NN IN DT JJ NNP IN DT NNP NNP .\nThe Islamic countries called on the council to take action on what they called ' gross violations of human rights by Israel in Lebanon . '\tDT JJ NNS VBN IN DT NN TO VB NN IN WP PRP VBD `` JJ NNS IN JJ NNS IN NNP IN NNP . ``\nChina , Russia and South Africa also signed the request .\tNNP , NNP CC NNP NNP RB VBD DT NN .\nIn a similar session in July , the council voted 29 to 11 to condemn Israel 's military operations in the Gaza Strip .\tIN DT JJ NN IN NNP , DT NN VBD CD TO CD TO VB NNP POS JJ NNS IN DT NNP NNP .\nIsrael 's ambassador rejected the July resolution and accused the council of bias against the Jewish state .\tNNP POS NN VBD DT NNP NN CC VBD DT NN IN NN IN DT JJ NN .\nRussia and France are calling on Iran to stop all uranium enrichment .\tNNP CC NNP VBP VBG IN NNP TO VB DT NN NN .\nThe two countries issued their statement Tuesday during a visit to Moscow by French Prime Minister Dominique de Villepin .\tDT CD NNS VBD PRP$ NN NNP IN DT NN TO NNP IN JJ NNP NNP NNP NNP NNP .\nIran resumed small-scale uranium enrichment Monday -- an initial step in the process of producing fuel for nuclear reactors or atomic weapons .\tNNP VBD JJ NN NN NNP IN DT JJ NN IN DT NN IN VBG NN IN JJ NNS CC JJ NNS .\nIran had threatened to resume enrichment after the International Atomic Energy Agency referred it this month to the U.N. Security Council for possible sanctions .\tNNP VBD VBN TO VB NN IN DT NNP NNP NNP NNP VBD PRP DT NN TO DT NNP NNP NNP IN JJ NNS .\nChina , another permanent member of the U.N. Security Council , called Tuesday for continued diplomatic efforts to ease growing tensions over Iran 's nuclear program .\tNNP , DT JJ NN IN DT NNP NNP NNP , VBD NNP IN JJ JJ NNS TO VB VBG NNS IN NNP POS JJ NN .\nU.N. Secretary-General Kofi Annan , who met with President Bush in Washington Monday , said he hopes there will be no steps to escalate the situation .\tNNP NNP NNP NNP , WP VBD IN NNP NNP IN NNP NNP , VBD PRP VBZ EX MD VB DT NNS TO VB DT NN .\nIran denies Western charges that it is trying to build atomic weapons .\tNNP VBZ JJ NNS IN PRP VBZ VBG TO VB JJ NNS .\nUkraine 's president , Viktor Yushchenko , is to address a joint meeting of the U.S. Congress next week .\tNNP POS NN , NNP NNP , VBZ TO VB DT JJ NN IN DT NNP NNP JJ NN .\nSenate Majority leader Bill Frist and House Speaker Dennis Hastert say they look forward to hearing from the Ukrainian leader April 6 .\tNNP NNP NN NNP NNP CC NNP NNP NNP NNP VBP PRP VBP RB TO NN IN DT JJ NN NNP CD .\nIn a statement , the lawmakers said Mr. Yushchenko 's election last year is inspiring the spread of democracy throughout the world .\tIN DT NN , DT NNS VBD NNP NNP POS NN JJ NN VBZ VBG DT NN IN NN IN DT NN .\nMr. Yushchenko meets President Bush at the White House Monday .\tNNP NNP VBZ NNP NNP IN DT NNP NNP NNP .\nLast year 's presidential election in Ukraine was a bitter contest marred by controversy .\tJJ NN POS JJ NN IN NNP VBD DT JJ NN VBN IN NN .\nMr. Yushchenko defeated his rival Viktor Yanukovych in a repeat election held after Ukraine 's Supreme Court threw out the results of a previous vote because of widespread fraud .\tNNP NNP VBD PRP$ JJ NNP NNP IN DT NN NN VBN IN NNP POS NNP NNP VBD RP DT NNS IN DT JJ NN IN IN JJ NN .\nU.S. military officials in Iraq say American and Iraqi forces have launched operations against insurgents in the northern city of Mosul .\tNNP JJ NNS IN NNP VBP JJ CC JJ NNS VBP VBN NNS IN NNS IN DT JJ NN IN NNP .\nSpokeswoman Captain Angela Bowman told reporters in Iraq 's third largest city that forces are moving in Tuesday to secure police stations hit hard by insurgents in recent days .\tNN NNP NNP NNP VBD NNS IN NNP POS JJ JJS NN IN NNS VBP VBG IN NNP TO VB NN NNS VBN JJ IN NNS IN JJ NNS .\nThe most intense fighting in Iraq has been shifting from Fallujah to Mosul and other areas .\tDT RBS JJ NN IN NNP VBZ VBN VBG IN NNP TO NNP CC JJ NNS .\nOn Monday , U.S. Marine officials said coalition forces were now able to move throughout Fallujah after a week of heavy battles to oust entrenched militants , but were still finding pockets of resistance .\tIN NNP , NNP NNP NNS VBD NN NNS VBD RB JJ TO VB IN NNP IN DT NN IN JJ NNS TO VB JJ NNS , CC VBD RB VBG NNS IN NN .\nElsewhere , officials say insurgents killed an American soldier in centraql Iraq , near Balad .\tRB , NNS VBP NNS VBD DT JJ NN IN JJ NNP , IN NNP .\nKuwait authorities say a policeman , a suspected militant and a Bahraini man have been killed in a shootout near Kuwait City .\tNNP NNS VBP DT NN , DT JJ NN CC DT JJ NN VBP VBN VBN IN DT NN IN NNP NNP .\nThe Interior Ministry said four security officers and a second gunman were wounded in the firefight , which erupted when police stormed a suspected militant hideout .\tDT NNP NNP VBD CD NN NNS CC DT JJ NN VBD VBN IN DT NN , WDT VBD WRB NNS VBD DT JJ JJ NN .\nAt least one other suspect was taken into custody .\tIN JJS CD JJ NN VBD VBN IN NN .\nThe police raid came after U.S. and Kuwaiti authorities issued statements warning of the likelihood of more attacks against Western targets in the emirate .\tDT NN NN VBD IN NNP CC JJ NNS VBD NNS NN IN DT NN IN JJR NNS IN JJ NNS IN DT NN .\nIt was the third such clash in Kuwait this month .\tPRP VBD DT JJ JJ NN IN NNP DT NN .\nTwo security officers and two gunmen were killed in the earlier violence .\tCD NN NNS CC CD NNS VBD VBN IN DT JJR NN .\nPakistan and India have begun two days of talks in Islamabad on a proposed multi-billion dollar pipeline that would carry gas from Iran into India through Pakistan .\tNNP CC NNP VBP VBN CD NNS IN NNS IN NNP IN DT VBN JJ NN NN WDT MD VB NN IN NNP IN NNP IN NNP .\nIt is the first meeting between India 's Oil Minister Mani Shankar Aiyar and his Pakistani counterpart , Amanullah Khan Jadoon , on the 2,700 kilometer project .\tPRP VBZ DT JJ NN IN NNP POS NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP NNP , IN DT CD NN NN .\nPakistan 's foreign ministry spokesman said recently the bilateral talks will be followed later this year by three-way discussions involving Iranian officials .\tNNP POS JJ NN NN VBD RB DT JJ NNS MD VB VBN RBR DT NN IN JJ NNS VBG JJ NNS .\nWashington opposes the project over concerns about Iran 's nuclear program .\tNNP VBZ DT NN IN NNS IN NNP POS JJ NN .\nBut Mr. Aiyar dismissed U.S. opposition , saying India will not be pressured by any country .\tCC NNP NNP VBD NNP NN , VBG NNP MD RB VB VBN IN DT NN .\nBurma has released thousands of prisoners to mark the 57th anniversary of the country 's independence from Britain .\tNNP VBZ VBN NNS IN NNS TO VB DT JJ NN IN DT NN POS NN IN NNP .\nA government-run newspaper , New Light of Myanmar , says 5,588 prisoners have been freed on humanitarian grounds to coincide with the holiday .\tDT JJ NN , NNP NNP IN NNP , VBZ CD NNS VBP VBN VBN IN JJ NNS TO VB IN DT NN .\nMonday 's gesture differs from three previous mass releases , which were conducted because of what the junta described as irregularities in arrests by the now dismantled National Intelligence bureau .\tNNP POS NN NNS IN CD JJ NN NNS , WDT VBD VBN IN IN WP DT NN VBD IN NNS IN NNS IN DT RB JJ NNP NNP NN .\nThe bureau 's former chief , former prime minister Khin Nyunt , has been placed under house arrest on accusations of corruption .\tDT NN POS JJ NN , JJ JJ NN NNP NNP , VBZ VBN VBN IN NN NN IN NNS IN NN .\nThe government has released nearly 20,000 prisoners since early November .\tDT NN VBZ VBN RB CD NNS IN JJ NNP .\nAlthough about 50 dissidents were freed in prior releases , there was no indication that any political prisoners were let go this time .\tIN IN CD NNS VBD VBN IN JJ NNS , EX VBD DT NN IN DT JJ NNS VBD VBN VB DT NN .\nHuman Rights Watch says a climate of fear threatens the Democratic Republic of Congo 's first elections in 40 years .\tNNP NNP NNP VBZ DT NN IN NN VBZ DT JJ NNP IN NNP POS JJ NNS IN CD NNS .\nThe New York-based rights group says there was an increase in the number of attacks and detentions of journalists , human rights defenders and members of the political opposition in April and May .\tDT NNP JJ NNS NN VBZ EX VBD DT NN IN DT NN IN NNS CC NNS IN NNS , JJ NNS NNS CC NNS IN DT JJ NN IN NNP CC NNP .\nHuman Rights Watch said Congolese authorities have failed to provide protection to the groups , and charged that security forces were involved in some of the attacks .\tNNP NNP NNP VBD JJ NNS VBP VBN TO VB NN TO DT NNS , CC VBD IN NN NNS VBD VBN IN DT IN DT NNS .\nThe rights group urged a U.N. Security Council delegation set to visit the DRC Sunday to speak out against the intimidation .\tDT NNS NN VBD DT NNP NNP NNP NN VBD TO VB DT NNP NNP TO VB RP IN DT NN .\nIt said the elections , set for July 30 , can not be free and fair if the press and civil society are too afraid to speak out or engage in legitimate political debate .\tPRP VBD DT NNS , VBN IN NNP CD , MD RB VB JJ CC JJ IN DT NN CC JJ NN VBP RB JJ TO VB RP CC VB IN JJ JJ NN .\nThe DRC has been struggling to recover from a five-year civil war that left an estimated four million people dead .\tDT NNP VBZ VBN VBG TO VB IN DT JJ JJ NN WDT VBD DT VBN CD CD NNS JJ .\nA moderate earthquake has sent people running away from the coastline of Indonesia 's Sulawesi island , less than a week after a powerful quake off Java island generated a tsunami that killed nearly 700 people .\tDT JJ NN VBZ VBN NNS VBG RB IN DT NN IN NNP POS NNP NN , JJR IN DT NN IN DT JJ NN IN NNP NN VBD DT NN WDT VBD RB CD NNS .\nThe latest quake , of 6.1 magnitude , struck deep under the waters of Tomini Bay off northern Sulawesi 's Gorontalo province Sunday .\tDT JJS NN , IN CD NN , VBD JJ IN DT NNS IN NNP NNP IN JJ NNP POS NNP NN NNP .\nFears of a tsunami proved unfounded , however , and there are no reports of damage or injuries .\tNNS IN DT NN VBD JJ , RB , CC EX VBP DT NNS IN NN CC NNS .\nJapanese and U.S. monitoring agencies in the Pacific Ocean did not issue a tsunami warning after the quake .\tJJ CC NNP NN NNS IN DT NNP NNP VBD RB VB DT NN NN IN DT NN .\nA powerful earthquake off the coast of Java last Monday generated a crushing wave that barreled through homes , restaurants and hotels in the Pangandaran area .\tDT JJ NN IN DT NN IN NNP JJ NNP VBD DT JJ NN WDT VBD IN NNS , NNS CC NNS IN DT NNP NN .\nIndonesian officials say the death toll from that tsunami has climbed to at least 668 .\tJJ NNS VBP DT NN NN IN DT NN VBZ VBN TO IN JJS CD .\nThousands of prisoners in Kenya reportedly volunteered to skip lunch on New Year 's day so that the food could be sent to those suffering from famine .\tNNS IN NNS IN NNP RB VBD TO VB NN IN NNP NNP POS NN RB IN DT NN MD VB VBN TO DT VBG IN NN .\nThey skipped the meal after President Mwai Kibaki declared Kenya 's famine a national disaster and asked for more than $ 150 million in relief aid .\tPRP VBD DT NN IN NNP NNP NNP VBD NNP POS NN DT JJ NN CC VBD IN JJR IN $ CD CD IN NN NN .\nInadequate rainfall during Kenya 's rainy season has caused crop failure and the depletion of livestock herds .\tJJ NN IN NNP POS NN NN VBZ VBN NN NN CC DT NN IN NN NNS .\nPresident Kibaki said in his New Year 's address that nearly one in 10 Kenyans will need famine relief for the next six months .\tNNP NNP VBD IN PRP$ NNP NNP POS NN IN RB CD IN CD NNS MD VB NN NN IN DT JJ CD NNS .\nAt least 20 people and thousands of livestock have died as a result of the drought and famine .\tIN JJS CD NNS CC NNS IN NN VBP VBN IN DT NN IN DT NN CC NN .\nPresident Bush is expected to nominate one of his closest friends , Karen Hughes , to lead a State Department effort to improve the reputation of the United States among Muslims in the Arab world .\tNNP NNP VBZ VBN TO VB CD IN PRP$ JJS NNS , NNP NNP , TO VB DT NNP NNP NN TO VB DT NN IN DT NNP NNPS IN NNPS IN DT JJ NN .\nThe 48-year-old Ms. Hughes is expected to be nominated next week as Under Secretary of State for Public Diplomacy and Public Affairs , a position that requires Senate confirmation .\tDT JJ NNP NNP VBZ VBN TO VB VBN JJ NN IN IN NNP IN NNP IN NNP NNP CC NNP NNP , DT NN WDT VBZ NNP NN .\nMs. Hughes will join Secretary of State Condoleezza Rice in leading the president 's push for democracy in the Middle East .\tNNP NNP MD VB NNP IN NNP NNP NNP IN VBG DT NN POS NN IN NN IN DT NNP NNP .\nMs. Hughes has been one of President Bush 's closest advisors since he became the governor of Texas 10 years ago .\tNNP NNP VBZ VBN CD IN NNP NNP POS JJS NNS IN PRP VBD DT NN IN NNP CD NNS RB .\nThe position of Under Secretary for Public Diplomacy has been vacant since last June when Margaret Tutwiler resigned after only six months on the job .\tDT NN IN IN NNP IN NNP NNP VBZ VBN JJ IN JJ NNP WRB NNP NNP VBD IN RB CD NNS IN DT NN .\nA Burmese aid group says Burma 's military government has launched a new offensive along the country 's eastern border with Thailand .\tDT JJ NN NN VBZ NNP POS JJ NN VBZ VBN DT JJ NN IN DT NN POS JJ NN IN NNP .\nThe Free Burma Rangers says Burmese forces have displaced thousands of villagers in Karen state , burning their homes and rice crops .\tDT NNP NNP NNP VBZ JJ NNS VBP VBN NNS IN NNS IN NNP NN , VBG PRP$ NNS CC NN NNS .\nThe group says nearly 5000 villagers are hiding in jungle and mountain areas of Burma .\tDT NN VBZ RB CD NNS VBP VBG IN NN CC NN NNS IN NNP .\nThe U.S. Campaign for Burma last week reported similar attacks .\tDT NNP NN IN NNP JJ NN VBD JJ NNS .\nThe human right group said the attacks were aimed at bringing eastern Burma , which has historically been under control of Burma 's ethnic minorities , under the control of the country 's military government .\tDT JJ NN NN VBD DT NNS VBD VBN IN VBG JJ NNP , WDT VBZ RB VBN IN NN IN NNP POS JJ NNS , IN DT NN IN DT NN POS JJ NN .\nRights groups say more than 5,00,000 villagers are believed to have been forced from their homes in eastern Burma over the past decade .\tNNS NNS VBP JJR IN CD NNS VBP VBN TO VB VBN VBN IN PRP$ NNS IN JJ NNP IN DT JJ NN .\nSpanish authorities say firefighters are making progress against wildfires that have scorched large parts of the Canary Islands .\tJJ NNS VBP NNS VBP VBG NN IN NNS WDT VBP VBN JJ NNS IN DT NNP NNP .\nOfficials said Wednesday the fires on the main islands of Tenerife and Gran Canaria had ' stabilized ' as winds eased and temperatures moderated .\tNNS VBD NNP DT NNS IN DT JJ NNS IN NNP CC NNP NNP VBD `` VBN `` IN NNS VBD CC NNS VBD .\nSpanish Prime Minister Jose Luis Rodriguez Zapatero inspected the damage and promised special government aid .\tJJ NNP NNP NNP NNP NNP NNP VBD DT NN CC VBD JJ NN NN .\nAuthorities say a quarter of the forests on both islands have been incinerated , along with habitats of rare plants and animals .\tNNS VBP DT NN IN DT NNS IN DT NNS VBP VBN VBN , IN IN NNS IN JJ NNS CC NNS .\nThe blazes have not reached coastal resorts popular with European tourists .\tDT NNS VBP RB VBN JJ NNS JJ IN JJ NNS .\nEnvironmentalists call the fires a catastrophe .\tNNS VBP DT NNS DT NN .\nAbout 9,000 people were in emergency shelters on Tenerife Wednesday , while most of the 5,000 displaced people on Gran Canaria have begun returning home .\tIN CD NNS VBD IN NN NNS IN NNP NNP , IN JJS IN DT CD JJ NNS IN NNP NNP VBP VBN VBG NN .\nTenerife authorities say they suspect arsonists started the wildfire on the island .\tNNP NNS VBP PRP VBP NNS VBD DT NN IN DT NN .\nPolice on Gran Canaria are holding a forest worker who confessed to starting a fire there last Friday .\tNNS IN NNP NNP VBP VBG DT NN NN WP VBD TO VBG DT NN RB JJ NNP .\nA group of prominent political religious and business figures , led by former Czech President Vaclav Havel , has criticized Russia 's handling of a separatist rebellion in Chechnya .\tDT NN IN JJ JJ NN CC NN NNS , VBN IN JJ JJ NNP NNP NNP , VBZ VBN NNP POS NN IN DT JJ NN IN NNP .\nA letter by the group Wednesday accuses Russian President Vladimir Putin of using the war in Chechnya to take away people 's freedoms and re-establish an autocracy .\tDT NN IN DT NN NNP VBZ JJ NNP NNP NNP IN VBG DT NN IN NNP TO VB RP NNS POS NNS CC VB DT NN .\nIn addition to Havel , the authors of the letter include former Irish President Mary Robinson , retired South African Archbishop Desmond Tutu , and billionaire George Soros .\tIN NN TO NNP , DT NNS IN DT NN VBP JJ JJ NNP NNP NNP , VBN NNP JJ NN NNP NNP , CC NN NNP NNP .\nThe letter appeared in a Prague newspaper , the Mlada Fronta Dnes , Wednesday as the Russian leader was due to begin a visit to the Czech capital .\tDT NN VBD IN DT NNP NN , DT NNP NNP NNP , NNP IN DT JJ NN VBD JJ TO VB DT NN TO DT JJ NN .\nRussian troops battled separatist rebels in Chechnya for several years in the 1990s , but the fighting has subsided in recent years with pro-Russian forces controlling much of the republic .\tJJ NNS VBD JJ NNS IN NNP IN JJ NNS IN DT NNS , CC DT NN VBZ VBN IN JJ NNS IN JJ NNS VBG NN IN DT NN .\nCuban President Raul Castro says the ruling Communist Party will hold a congress in April , the first party congress to be held in Cuba since 1997 .\tJJ NNP NNP NNP VBZ DT NN NNP NNP MD VB DT NN IN NNP , DT JJ NN NN TO VB VBN IN NNP IN CD .\nMr. Castro said the island 's leaders will meet to chart a new economic future for the country .\tNNP NNP VBD DT NN POS NNS MD VB TO VB DT JJ JJ NN IN DT NN .\nHe made the announcement after meeting Monday with Venezuelan President Hugo Chavez .\tPRP VBD DT NN IN VBG NNP IN JJ NNP NNP NNP .\nThere has been intense speculation that Fidel Castro 's future might be discussed at the next Communist Party congress , but Raul Castro did not mention his brother Monday .\tEX VBZ VBN JJ NN IN NNP NNP POS NN MD VB VBN IN DT JJ NNP NNP NN , CC NNP NNP VBD RB VB PRP$ NN NNP .\nFidel Castro , 84 , stepped down as president of Cuba in 2006 , but remains head of the Communist Party .\tNNP NNP , CD , VBD RP IN NN IN NNP IN CD , CC VBZ NN IN DT NNP NNP .\nVatican officials say Pope John Paul II is getting nutrition through a nasal tube to boost his calorie intake and help what they call his ' slow and progressive ' recovery from throat surgery .\tNNP NNS VBP NNP NNP NNP NNP VBZ VBG NN IN DT JJ NN TO VB PRP$ NN NN CC VB WP PRP VBP PRP$ `` JJ CC JJ `` NN IN NN NN .\nA Vatican spokesman said the pontiff spends many hours in an armchair , celebrates Mass and works in contact with his aides in directly following church activities .\tDT NNP NN VBD DT NN VBZ JJ NNS IN DT NN , VBZ NNP CC VBZ IN NN IN PRP$ NNS IN RB VBG NN NNS .\nHe issued the statement shortly after the 84-year-old pontiff appeared at his window overlooking Saint Peter 's Square Wednesday , to bless the faithful .\tPRP VBD DT NN RB IN DT JJ NN VBD IN PRP$ NN VBG NNP NNP POS NNP NNP , TO VB DT NN .\nThe crowd greeted the pope with cheers and applause when he raised his hand to bless them .\tDT NN VBD DT NN IN NNS CC NN WRB PRP VBD PRP$ NN TO JJ PRP .\nBut he was unable to speak when an aide put a microphone in front of him .\tCC PRP VBD JJ TO VB WRB DT NN VBD DT NN IN NN IN PRP .\nThe Vatican statement was the first official medical report on the pope since March 10 , three days before he was discharged from a hospital following a tracheotomy .\tDT NNP NN VBD DT JJ JJ JJ NN IN DT NN IN NNP CD , CD NNS IN PRP VBD VBN IN DT NN VBG DT NN .\nA group of Palestinian gunmen have briefly seized Bethelehem city hall in the West Bank , apparently demanding financial assistance from the Palestinian Authority .\tDT NN IN JJ NNS VBP RB VBN NNP NN NN IN DT NNP NNP , RB VBG JJ NN IN DT JJ NNP .\nAbout 20 gunmen appeared on the roof of the city hall Tuesday , ordered all workers out and threatened to open fire .\tIN CD NNS VBD IN DT NN IN DT NN NN NNP , VBD DT NNS IN CC VBD TO VB NN .\nPalestinian police sealed off the streets leading to the building on Manger Square , near the Church of the Nativity .\tJJ NN VBD RP DT NNS VBG TO DT NN IN NNP NNP , IN DT NN IN DT NN .\nOfficials say the gunmen were linked to the al-Aqsa Martyrs Brigades militant faction of the ruling Fatah movement of Palestinian leader Mahmoud Abbas .\tNNS VBP DT NNS VBD VBN TO DT NNP NNP NNP JJ NN IN DT NN NNP NN IN JJ NN NNP NNP .\nThey were demanding money for about 300 members .\tPRP VBD VBG NN IN IN CD NNS .\nThe gunmen left the building after about an hour , following talks with the governor of Bethlehem .\tDT NNS VBD DT NN IN IN DT NN , VBG NNS IN DT NN IN NNP .\nIt was not immediately clear how the standoff was resolved .\tPRP VBD RB RB JJ WRB DT NN VBD VBN .\nThe incident is another sign of growing turmoil within the Palestinian territories ahead of a January parliamentary election .\tDT NN VBZ DT NN IN VBG NN IN DT JJ NNS RB IN DT NNP JJ NN .\nPakistani officials say five militants , including suicide bombers , have been killed while trying to enter a military training area in the country 's northwest .\tJJ NNS VBP CD NNS , VBG NN NNS , VBP VBN VBN IN VBG TO VB DT JJ NN NN IN DT NN POS NN .\nAuthorities say security forces opened fire on the attackers Tuesday as they tried to infiltrate the training center in the town of Mardan , near the Afghan border .\tNNS VBP NN NNS VBD NN IN DT NNS NNP IN PRP VBD TO VB DT NN NN IN DT NN IN NNP , IN DT JJ NN .\nOfficials say three suicide bombers detonated their explosives during the gunbattle , while two other militants were killed by troops .\tNNS VBP CD NN NNS VBD PRP$ NNS IN DT NN , IN CD JJ NNS VBD VBN IN NNS .\nFour soldiers were wounded in the attack .\tCD NNS VBD VBN IN DT NN .\nThere was no immediate claim of responsibility , but Taliban militants have carried out attacks in the area in the past .\tEX VBD DT JJ NN IN NN , CC NNP NNS VBP VBN RP NNS IN DT NN IN DT NN .\nRussian President Vladimir Putin says the Kremlin 's opposition to independence for Kosovo is based on international law and a desire for regional stability .\tJJ NNP NNP NNP VBZ DT NNP POS NN TO NN IN NNP VBZ VBN IN JJ NN CC DT NN IN JJ NN .\nMr. Putin said during talks with Serbian President Boris Tadic Sunday that Russia 's position is not based on what he calls ethnic or historical considerations .\tNNP NNP VBD IN NNS IN JJ NNP NNP NNP NNP IN NNP POS NN VBZ RB VBN IN WP PRP VBZ JJ CC JJ NNS .\nMr. Tadic repeated Serbia 's opposition to an independent Kosovo , but said he is willing to compromise .\tNNP NNP VBD NNP POS NN TO DT JJ NNP , CC VBD PRP VBZ JJ TO VB .\nKosovo is an ethnic Albanian majority province of Serbia .\tNNP VBZ DT JJ JJ NN NN IN NNP .\nThe United Nations Security Council is considering a draft resolution that backs a U.N. envoy 's plan for supervised independence for the region .\tDT NNP NNP NNP NNP VBZ VBG DT NN NN WDT VBZ DT NNP NN POS NN IN JJ NN IN DT NN .\nRussia , a traditional Serbian ally , has hinted it would veto the resolution .\tNNP , DT JJ JJ NN , VBZ VBN PRP MD VB DT NN .\nKosovo has been under U.N. supervision since 1999 , when NATO airstrikes drove out Serbian and Yugoslav forces waging violence against the ethnic Albanians .\tNNP VBZ VBN IN NNP NN IN CD , WRB NNP NNS VBD RP JJ CC JJ NNS VBG NN IN DT JJ NNS .\nSouth Korea and China have canceled meetings with top Japanese officials to protest Japanese Prime Minister Junichiro Koizumi 's visit to a controversial war shrine .\tNNP NNP CC NNP VBP VBN NNS IN JJ JJ NNS TO VB JJ NNP NNP NNP NNP POS NN TO DT JJ NN NN .\nSouth Korean Foreign Minister Ban Ki-moon said Wednesday he had called off a trip to Japan , saying the visit would not be ' appropriate . '\tNNP JJ NNP NNP NNP NNP VBD NNP PRP VBD VBN RP DT NN TO NNP , VBG DT NN MD RB VB `` JJ . ``\nOfficials in Seoul also say President Roh Moo-hyun may cancel a summit with Mr. Koizumi , expected to take place later this year .\tNNS IN NNP RB VBP NNP NNP NNP MD VB DT NN IN NNP NNP , VBD TO VB NN RB DT NN .\nTuesday , China canceled a trip to Beijing by Japan 's foreign minister , saying the visit was not timely given the current situation .\tNNP , NNP VBD DT NN TO NNP IN NNP POS JJ NN , VBG DT NN VBD RB JJ VBN DT JJ NN .\nThe Yasukuni shrine honors 2.5 million Japanese war dead , including convicted war criminals .\tDT NNP NN NNS CD CD JJ NN NN , VBG VBN NN NNS .\nCritics say Yasukuni represents Japan 's past military aggression , but Mr. Koizumi says his visits are to pray for peace .\tNNS VBP NNP VBZ NNP POS JJ JJ NN , CC NNP NNP VBZ PRP$ NNS VBP TO VB IN NN .\nPresident Bush says sanctions are a ' real possibility ' against Iran for its controversial nuclear program .\tNNP NNP VBZ NNS VBP DT `` JJ NN `` IN NNP IN PRP$ JJ JJ NN .\nInterviewed Friday on the CBS television network , Mr. Bush said a free world can not allow Iran to have a nuclear weapon .\tVBN NNP IN DT NNP NN NN , NNP NNP VBD DT JJ NN MD RB VB NNP TO VB DT JJ NN .\nMr. Bush said he is open to all possible options for dealing with Iran , including military intervention .\tNNP NNP VBD PRP VBZ JJ TO DT JJ NNS IN VBG IN NNP , VBG JJ NN .\nBut he said that would be the last option .\tCC PRP VBD DT MD VB DT JJ NN .\nIn Tehran , the chief of Iran 's Revolutionary Guards , General Yahya Rahim Safavi , said Saturday his country would use ballistic missiles to defend itself if attacked .\tIN NNP , DT NN IN NNP POS NNP NNPS , NNP NNP NNP NNP , VBD NNP PRP$ NN MD VB JJ NNS TO VB PRP IN VBN .\nOn Friday , the U.S. Senate voted unanimously to condemn Iran 's nuclear program , and to support referring Tehran to the United Nations Security Council for allegedly violating the Nuclear Non-Proliferation Treaty .\tIN NNP , DT NNP NNP VBD RB TO VB NNP POS JJ NN , CC TO VB VBG NNP TO DT NNP NNP NNP NNP IN RB VBG DT NNP NNP NNP .\nThe International Atomic Energy Agency meets February 2 in Vienna to discuss the Iran nuclear standoff .\tDT NNP NNP NNP NNP VBZ NNP CD IN NNP TO VB DT NNP JJ NN .\nA brief gunbattle between rival Fatah factions erupted outside the Gaza headquarters of Palestinian President Mahmoud Abbas Wednesday , as the ruling party prepared to register its list of candidates for January 's parlimentary elections .\tDT JJ NN IN JJ NNP NNS VBD IN DT NNP NN IN JJ NNP NNP NNP NNP , IN DT NN NN VBD TO VB PRP$ NN IN NNS IN NNP POS JJ NNS .\nWitnesses say at least three people were wounded .\tNNS VBP IN JJS CD NNS VBD VBN .\nThe clash occurred after Fatah gunmen stormed the building demanding that the party respect the results of recent primary elections .\tDT NN VBD IN NNP NNS VBD DT NN VBG IN DT NN VB DT NNS IN JJ JJ NNS .\nMr. Abbas has decided to appoint candidates after canceling the results of the primaries in Gaza and some other areas where balloting was marred by violence and fraud .\tNNP NNP VBZ VBN TO VB NNS IN VBG DT NNS IN DT NNS IN NNP CC DT JJ NNS WRB NN VBD VBN IN NN CC NN .\nSome hard-liners fear they will not be properly represented in the Fatah list .\tDT NNS VBP PRP MD RB VB RB VBN IN DT NNP NN .\nOn Tuesday , a flare-up of election-related violence in Gaza forced Palestinian election officials to close their offices in the there and in the West Bank .\tIN NNP , DT NN IN JJ NN IN NNP VBD JJ NN NNS TO VB PRP$ NNS IN DT EX CC IN DT NNP NNP .\nThe offices are to open later today .\tDT NNS VBP TO VB RB NN .\nMr. Abbas has been struggling to contain internal unrest since Israel pulled out of Gaza in September .\tNNP NNP VBZ VBN VBG TO VB JJ NN IN NNP VBD IN IN NNP IN NNP .\nU.S. troops and Iraqi security forces have detained 49 suspected insurgents north of Baghdad , as operations continue to secure the country ahead of January 's election .\tNNP NNS CC JJ NN NNS VBP VBN CD JJ NNS NN IN NNP , IN NNS VBP TO VB DT NN RB IN NNP POS NN .\nThe U.S. military says the pre-dawn raid Friday was in the town of Duluiyah , in the insurgent-plagued Sunni Triangle north and west of Baghdad .\tDT NNP NN VBZ DT JJ NN NNP VBD IN DT NN IN NNP , IN DT JJ NNP NNP NN CC NN IN NNP .\nMeanwhile , in Baghdad , firefighters extinguished a blaze at the city 's main oil refinery , which was attacked by saboteurs late Thursday .\tRB , IN NNP , NNS VBD DT NN IN DT NN POS JJ NN NN , WDT VBD VBN IN NNS JJ NNP .\nAlso Friday , near Fallujah , the body of an Iraqi National Guardsman was found with a note warning others against working with U.S.-led forces .\tRB NNP , IN NNP , DT NN IN DT JJ NNP NNP VBD VBN IN DT NN VBG NNS IN VBG IN JJ NNS .\nIraq 's security forces have been the main target of insurgent violence .\tNNP POS NN NNS VBP VBN DT JJ NN IN JJ NN .\nAnd South Korea 's parliament overwhelmingly approved keeping its 3,600 troops in northern Iraq for another year .\tCC NNP NNP POS NN RB VBD VBG PRP$ CD NNS IN JJ NNP IN DT NN .\nPope Benedict has met with the parents of the four-year-old British girl who disappeared from a tourist resort in Portugal in early May .\tNNP NNP VBZ VBN IN DT NNS IN DT JJ JJ NN WP VBD IN DT NN NN IN NNP IN JJ NNP .\nThe pope Wednesday spoke to Gerry and Kate McCann following his weekly audience in St. Peter 's Square .\tDT NN NNP VBD TO NNP CC NNP NNP VBG PRP$ JJ NN IN NNP NNP POS NNP .\nThe pontiff blessed a photograph of their daughter , Madeleine , who disappeared when the parents left her and two siblings in a resort hotel while they went to dinner .\tDT NN VBD DT NN IN PRP$ NN , NNP , WP VBD WRB DT NNS VBD PRP CC CD NNS IN DT NN NN IN PRP VBD TO NN .\nKate McCann said the pope told her he would continue to pray for Madeleine 's safe return .\tNNP NNP VBD DT NN VBD PRP PRP MD VB TO VB IN NNP POS JJ NN .\nThe couple are devout Catholics , but Gerry McCann said he had conflicting emotions about meeting the pope because of the circumstances .\tDT NN VBP JJ NNS , CC NNP NNP VBD PRP VBD VBG NNS IN VBG DT NN IN IN DT NNS .\nThe McCann 's are also planning to travel to Spain and Germany in their continued campaign to publicize their daughter 's disappearance .\tDT NNP POS VBP RB VBG TO VB TO NNP CC NNP IN PRP$ VBN NN TO VB PRP$ NN POS NN .\nA public outcry in Britain and Portugal at the apparent abduction of young Madeleine has prompted politicians and celebrities to offer their support .\tDT JJ NN IN NNP CC NNP IN DT JJ NN IN JJ NNP VBZ VBN NNS CC NNS TO VB PRP$ NN .\nA leading human rights group is criticizing what it calls the refusal by the United States and other western countries to intervene in Sudan 's troubled Darfur region .\tDT VBG JJ NNS NN VBZ VBG WP PRP VBZ DT NN IN DT NNP NNPS CC JJ JJ NNS TO VB IN NNP POS JJ NNP NN .\nIn its annual report , Human Rights Watch says western countries are wrong to leave peacekeeping duties in Darfur to the African Union , which the group calls a new institution with no peacekeeping experience .\tIN PRP$ JJ NN , NNP NNP NNP VBZ JJ NNS VBP JJ TO VB VBG NNS IN NNP TO DT NNP NNP , WDT DT NN VBZ DT JJ NN IN DT NN NN .\nLast year , the African Union began sending peacekeepers to Darfur , where two years of fighting between rebels and government-backed militias have claimed an estimated 70,000 lives .\tJJ NN , DT NNP NNP VBD VBG NNS TO NNP , WRB CD NNS IN VBG IN NNS CC JJ NNS VBP VBN DT JJ CD NNS .\nOn another issue , the HRW report says the abuse of prisoners by U.S. soldiers at Abu Ghraib prison in Iraq weakened the worldwide system for protecting human rights .\tIN DT NN , DT NNP NN VBZ DT NN IN NNS IN NNP NNS IN NNP NNP NN IN NNP VBD DT JJ NN IN VBG JJ NNS .\nThe report also condemns attacks on the rights of sexual minorities around the world .\tDT NN RB VBZ NNS IN DT NNS IN JJ NNS IN DT NN .\nThe Supreme Court of Pakistan has given the country 's election commission 30 days to register all eligible voters left out of draft electoral lists .\tDT NNP NNP IN NNP VBZ VBN DT NN POS NN NN CD NNS TO VB DT JJ NNS VBD IN IN NN JJ NNS .\nThe petition was filed by former Prime Minister Benazir Bhutto and her opposition Pakistan People 's Party .\tDT NN VBD VBN IN JJ NNP NNP NNP NNP CC PRP$ NN NNP NNP POS NNP .\nIt contends that more than 20 million eligible voters had not been enrolled .\tPRP VBZ IN JJR IN CD CD JJ NNS VBD RB VBN VBN .\nAt a hearing Friday , the election commission requested 140 days to prepare the revised lists .\tIN DT NN NNP , DT NN NN VBD CD NNS TO VB DT VBN NNS .\nThe two-member bench rejected the request , saying the time period was too long .\tDT JJ NN VBD DT NN , VBG DT NN NN VBD RB JJ .\nThe court instead granted the commission 30 days to make the necessary changes .\tDT NN RB VBD DT NN CD NNS TO VB DT JJ NNS .\nThe decision comes a day after Pakistani President Pervez Musharraf decided against declaring a state of emergency that could have delayed elections for a year .\tDT NN VBZ DT NN IN JJ NNP NNP NNP VBD IN VBG DT NN IN NN WDT MD VB VBN NNS IN DT NN .\nBritish diplomat John Sawers says Iran presented no major new proposals at Monday 's last-ditch talks aimed at resolving the standoff over Iran 's nuclear program .\tJJ NN NNP NNP VBZ NNP VBD DT JJ JJ NNS IN NNP POS JJ NNS VBN IN VBG DT NN IN NNP POS JJ NN .\nBut Iran 's negotiator Javad Vaeedi described the session with Britain , Germany and France in Brussels as positive .\tCC NNP POS NN NNP NNP VBD DT NN IN NNP , NNP CC NNP IN NNP IN JJ .\nThe talks came before Monday 's meeting in London of the five permanent members of the U.N. Security Council and Germany on Iran 's nuclear program .\tDT NNS VBD IN NNP POS NN IN NNP IN DT CD JJ NNS IN DT NNP NNP NNP CC NNP IN NNP POS JJ NN .\nPresident Bush , speaking at the White House , said there is an international consensus that Iran should not be allowed to develop a nuclear weapon .\tNNP NNP , NN IN DT NNP NNP , VBD EX VBZ DT JJ NN IN NNP MD RB VB VBN TO VB DT JJ NN .\nHe says U.S. and other officials are working on how to go about achieving that goal .\tPRP VBZ NNP CC JJ NNS VBP VBG IN WRB TO VB RB VBG DT NN .\nLater this week , the International Atomic Energy Agency holds an emergency session that could see Iran referred to the U.N. Security Council for possible sanctions .\tRB DT NN , DT NNP NNP NNP NNP VBZ DT NN NN WDT MD VB NNP VBD TO DT NNP NNP NNP IN JJ NNS .\nThe U.S. unemployment rate fell unexpectedly in July , in one of the strongest signals yet that the worst economic downturn since the Great Depression may be ending .\tDT NNP NN NN VBD RB IN NNP , IN CD IN DT JJS NNS RB IN DT JJS JJ NN IN DT NNP NNP MD VB VBG .\nA report from the Labor Department Friday shows the unemployment rate dropped to 9.4 percent last month , compared to 9.5 percent in June .\tDT NN IN DT NNP NNP NNP VBZ DT NN NN VBD TO CD NN JJ NN , VBN TO CD NN IN NNP .\nIt is the first time the jobless rate has fallen since April 2008 .\tPRP VBZ DT JJ NN DT JJ NN VBZ VBN IN NNP CD .\nEmployers cut 2,47,000 jobs in July .\tNNS VBD CD NNS IN NNP .\nThe number is much less than analysts had expected , but still an indication of a weak job market .\tDT NN VBZ RB JJR IN NNS VBD VBN , CC RB DT NN IN DT JJ NN NN .\nIn total , about 14.5 million people are unemployed in the United States .\tIN NN , IN CD CD NNS VBP VBN IN DT NNP NNPS .\nPresident Barack Obama has said the $ 787 billion economic stimulus plan he signed within months of taking office has stopped the recession from getting worse .\tNNP NNP NNP VBZ VBN DT $ CD CD JJ NN NN PRP VBD IN NNS IN VBG NN VBZ VBN DT NN IN VBG JJR .\nChinese President Hu Jintao is calling for closer economic and cultural relations with Taiwan to maintain peace in the region , and to curb what he calls the island 's ' secessionist activities . '\tJJ NNP NNP NNP VBZ VBG IN JJR JJ CC JJ NNS IN NNP TO VB NN IN DT NN , CC TO VB WP PRP VBZ DT NN POS `` JJ NNS . ``\nChina 's official Xinhua news agency says Mr. Hu made the comments Saturday in Beijing at a forum on China and Taiwan business ties .\tNNP POS JJ NNP NN NN VBZ NNP NNP VBD DT NNS NNP IN NNP IN DT NN IN NNP CC NNP NN NNS .\nXinhua says that during the forum , the Chinese leader met with the honorary chairman of Taiwan 's main opposition party , Lien Chan .\tNNP VBZ IN IN DT NN , DT JJ NN VBD IN DT JJ NN IN NNP POS JJ NN NN , NNP NNP .\nAbout 500 participants are attending the two-day event .\tIN CD NNS VBP VBG DT JJ NN .\nThey are expected to discuss issues including direct flights from Taiwan to the mainland .\tPRP VBP VBN TO VB NNS VBG JJ NNS IN NNP TO DT NN .\nTaiwan and China split in 1949 following a civil war .\tNNP CC NNP VBD IN CD VBG DT JJ NN .\nBut Beijing still considers the island as part of its territory and has threatened to use force if necessary to reunite the two sides .\tCC NNP RB VBZ DT NN IN NN IN PRP$ NN CC VBZ VBN TO VB NN IN JJ TO VB DT CD NNS .\nThe man who has been guiding the U.S. economy for the past 18 years , Federal Reserve Chairman Alan Greenspan , is set to retire at the end of January .\tDT NN WP VBZ VBN VBG DT NNP NN IN DT JJ CD NNS , NNP NNP NNP NNP NNP , VBZ VBN TO VB IN DT NN IN NNP .\nThe head of the U.S. central bank is highly regarded by economists , markets and political leaders .\tDT NN IN DT NNP JJ NN VBZ RB VBN IN NNS , NNS CC JJ NNS .\nPresident Bush has given no indication who he is considering to replace Mr. Greenspan or when his decision will be announced .\tNNP NNP VBZ VBN DT NN WP PRP VBZ VBG TO VB NNP NNP CC WRB PRP$ NN MD VB VBN .\nNews reports speculate that the chairman of Mr. Bush 's Council of Economic Advisors , Ben Bernanke , is the leading candidate .\tNNP NNS VBP IN DT NN IN NNP NNP POS NNP IN NNP NNPS , NNP NNP , VBZ DT JJ NN .\nHe is a monetary economist and a former member of the key Fed committee that sets interest rates .\tPRP VBZ DT JJ NN CC DT JJ NN IN DT JJ NNP NN WDT VBZ NN NNS .\nOther candidates include academic economists with policy experience like Glenn Hubbard and Martin Feldstein .\tJJ NNS VBP JJ NNS IN NN NN IN NNP NNP CC NNP NNP .\nVenezuela says a bomb attack has killed Deputy Attorney General Danilo Anderson .\tNNP VBZ DT NN NN VBZ VBN NNP NNP NNP NNP NNP .\nOfficials told VOA Friday the charred body has been positively identified as that of Mr. Anderson , who was killed around midnight Thursday as he drove through a suburb of Caracas .\tNNS VBD NNP NNP DT JJ NN VBZ VBN RB VBN IN DT IN NNP NNP , WP VBD VBN IN NN NNP IN PRP VBD IN DT NN IN NNP .\nMr. Anderson had been in charge of prosecuting several hundred politicians , businessmen and former military officers involved in a failed April 2002 coup that briefly ousted President Hugo Chavez .\tNNP NNP VBD VBN IN NN IN VBG JJ CD NNS , NNS CC JJ JJ NNS VBN IN DT JJ NNP CD NN IN RB VBD NNP NNP NNP .\nOfficials say President Chavez has canceled his trip to Costa Rica Friday to attend the Ibero-American summit .\tNNS VBP NNP NNP VBZ VBN PRP$ NN TO NNP NNP NNP TO VB DT JJ NN .\nThey say he has also canceled a two-week tour of Spain , Iran , Libya and Russia that was to begin this weekend .\tPRP VBP PRP VBZ RB VBN DT JJ NN IN NNP , NNP , NNP CC NNP WDT VBD TO VB DT NN .\nThe price of crude oil soared Tuesday , hitting a new record high above $ 119 a barrel in New York trading .\tDT NN IN JJ NN VBD NNP , VBG DT JJ NN NN IN $ CD DT NN IN NNP NNP NN .\nThe price of crude oil for future delivery went to $ 119.48 cents a barrel .\tDT NN IN JJ NN IN JJ NN VBD TO $ CD NNS DT NN .\nTraders say a tight balance between demand and supply means oil prices jump when supplies seem threatened or demand rises .\tNNS VBP DT JJ NN IN NN CC NN VBZ NN NNS VBP WRB NNS VBP JJ CC NN NNS .\nCurrently supply concerns are growing out of violence in Nigeria , reports that Russia will produce less oil this year , and a possible strike by Scottish refinery workers .\tRB NN NNS VBP VBG IN IN NN IN NNP , VBZ IN NNP MD VB JJR NN DT NN , CC DT JJ NN IN JJ NN NNS .\nThe Organization of Petroleum Exporting Countries says it will boost its current 32-million-barrel-a-day output by a bit more than one quarter by the year 2020 .\tDT NNP IN NNP NNP NNPS VBZ PRP MD VB PRP$ JJ JJ NN IN DT NN RBR IN CD NN IN DT NN CD .\nThat will help meet growing demand in the long term but has little effect on oil prices right now .\tDT MD VB VB VBG NN IN DT JJ NN CC VBZ JJ NN IN NN NNS RB RB .\nOPEC officials say there is sufficient oil on the market and blames rising prices on speculators and the falling U.S. dollar .\tNNP NNS VBP EX VBZ JJ NN IN DT NN CC VBZ VBG NNS IN NNS CC DT VBG NNP NN .\nThree people have been rescued after a tunnel allegedly used by Palestinian weapons smugglers collapsed .\tCD NNS VBP VBN VBN IN DT NN RB VBN IN JJ NNS NNS VBD .\nIsrael says a joint Israeli army and Palestinian operation succeeded in reaching the men , several hours after the tunnel along the border between the Gaza Strip and Egypt fell in .\tNNP VBZ DT JJ JJ NN CC JJ NN VBD IN VBG DT NNS , JJ NNS IN DT NN IN DT NN IN DT NNP NNP CC NNP VBD IN .\nThe incident happened in the same area where Israeli soldiers shot and killed three Egyptian police officers Thursday .\tDT NN VBD IN DT JJ NN WRB JJ NNS VBD CC VBD CD JJ NN NNS NNP .\nThe Israeli army says a tank crew mistook the Egyptians for Palestinian militants and opened fire .\tDT JJ NN VBZ DT NN NN VBD DT NNS IN JJ NNS CC VBD NN .\nEgypt has condemned the killings .\tNNP VBZ VBN DT NNS .\nThe Israeli army has expressed its regret .\tDT JJ NN VBZ VBN PRP$ NN .\nIsraeli officials also apologized and opened an investigation .\tJJ NNS RB VBD CC VBD DT NN .\nEuropean Union regulators have fined Microsoft Corporation $ 357 million for failing to share programming code with its rivals , as demanded by a 2004 antitrust ruling .\tNNP NNP NNS VBP VBN NNP NNP $ CD CD IN VBG TO VB NN NN IN PRP$ NNS , IN VBN IN DT CD JJ NN .\nThe EU Competition Commissioner Neelie Kroes says Microsoft is continuing its illegal conduct , and no company is above the law .\tDT NNP NNP NNP NNP NNP VBZ NNP VBZ VBG PRP$ JJ NN , CC DT NN VBZ IN DT NN .\nThe fine was assessed at a rate of nearly $ 2 million a day from December 16 through June 20 .\tDT NN VBD VBN IN DT NN IN RB $ CD CD DT NN IN NNP CD IN NNP CD .\nEU officials say Microsoft 's daily fines will double ( to $ 3.8 million ) at the end of this month if the company 's violations continue .\tNNP NNS VBP NNP POS JJ NNS MD VB LRB TO $ CD CD RRB IN DT NN IN DT NN IN DT NN POS NNS VBP .\nThe European Union fined Microsoft $ 633 million in 2004 and ordered the company to give its rivals the technical information necessary for their programs to operate smoothly on computers using Microsoft 's Windows operating system .\tDT NNP NNP VBD NNP $ CD CD IN CD CC VBD DT NN TO VB PRP$ NNS DT JJ NN JJ IN PRP$ NNS TO VB RB IN NNS VBG NNP POS NNP NN NN .\nMicrosoft has said it has 300 people working full time to comply with the EU 's orders , and that any additional fines would be unjustified .\tNNP VBZ VBN PRP VBZ CD NNS VBG JJ NN TO VB IN DT NNP POS NNS , CC IN DT JJ NNS MD VB JJ .\nIcy rain and snow brought down a major power line in Moscow , shutting down the city 's main airport and snarling traffic on its busy streets .\tNNP NN CC NN VBD RP DT JJ NN NN IN NNP , VBG RP DT NN POS JJ NN CC VBG NN IN PRP$ JJ NNS .\nOfficials said on Sunday that flights from the Domodedovo airport were suspended for almost 15 hours until the power was partially restored and some planes were allowed to take off .\tNNS VBD IN NNP IN NNS IN DT NNP NN VBD VBN IN RB CD NNS IN DT NN VBD RB VBN CC DT NNS VBD VBN TO VB RP .\nFlights from Moscow 's second airport , Sheremetyevo , were operating , but travelers experienced delays .\tNNS IN NNP POS JJ NN , NNP , VBD VBG , CC NNS VBD NNS .\nRoughly 2,00,000 people were left without power as ice snapped power lines and slicked over the capital 's streets and encased cars .\tRB CD NNS VBD VBN IN NN IN NN VBD NN NNS CC VBD IN DT NN POS NNS CC JJ NNS .\nAccording to Russia 's state-owned news agency , Ria Novosti , some 6,000 passengers were stranded at Domodedovo , and taxis were charging more than $ 300 to take clients to the airport .\tVBG TO NNP POS JJ NN NN , NNP NNP , DT CD NNS VBD VBN IN NNP , CC NNS VBD VBG JJR IN $ CD TO VB NNS TO DT NN .\nOfficials warned residents to stay home until conditions improved .\tNNS VBD NNS TO VB NN IN NNS VBN .\nThe United Nations says in the past year more than one million people contracted HIV infections in South Asia , and the disease is spreading largely due to drug use and unsafe sex .\tDT NNP NNP VBZ IN DT JJ NN RBR IN CD CD NNS VBD NNP NNS IN NNP NNP , CC DT NN VBZ VBG RB JJ TO NN NN CC JJ NN .\nIn its annual report on the global AIDS epidemic , the world body says the spread of HIV is stabilizing in some of India 's states , but overall it is still rising .\tIN PRP$ JJ NN IN DT JJ NNP NN , DT NN NN VBZ DT NN IN NNP VBZ VBG IN DT IN NNP POS NNS , CC JJ PRP VBZ RB VBG .\nIndia already has an estimated 5.1 million HIV-positive people .\tNNP RB VBZ DT VBN CD CD JJ NNS .\nAccording to the report , some 42 percent of female sex workers in India say they are able to guess if their clients are HIV positive because of their physical appearance .\tVBG TO DT NN , DT CD NN IN JJ NN NNS IN NNP VBP PRP VBP JJ TO VB IN PRP$ NNS VBP NNP JJ IN IN PRP$ JJ NN .\nBut the report says ignorance about the disease is serious elsewhere in South Asia .\tCC DT NN VBZ NN IN DT NN VBZ JJ RB IN NNP NNP .\nCiting Pakistan as an example , the report says one in every five female sex workers in the largest city of Karachi can not recognize a condom , and one-third never heard of AIDS .\tVBG NNP IN DT NN , DT NN VBZ CD IN DT CD JJ NN NNS IN DT JJS NN IN NNP MD RB VB DT NN , CC NN RB VBD IN NNP .\nIsrael has agreed to free 170 Palestinian prisoners .\tNNP VBZ VBN TO VB CD JJ NNS .\nThe release is part of a promise Israeli Prime Minister Ariel Sharon made to Egyptian President Hosni Mubarak to secure the release this month of an Israeli jailed by Egypt on espionage charges .\tDT NN VBZ NN IN DT NN JJ NNP NNP NNP NNP VBD TO JJ NNP NNP NNP TO VB DT NN DT NN IN DT NN VBN IN NNP IN NN NNS .\nIsraeli Prime Minister Ariel Sharon called Sunday 's decision a goodwill gesture toward the Egyptian leader .\tJJ NNP NNP NNP NNP VBD NNP POS NN DT NN NN IN DT JJ NN .\nThe Palestinians are expected to be freed in the next week .\tDT NNS VBP VBN TO VB VBN IN DT JJ NN .\nThe prisoners ' identities were not immediately known , but Israel has said it would not release those it said had ' blood on their hands . '\tDT NNS POS NNS VBD RB RB VBN , CC NNP VBZ VBN PRP MD RB VB DT PRP VBD VBD `` NN IN PRP$ NNS . ``\nPalestinian officials have long demanded the release of thousands of prisoners held by Israel .\tJJ NNS VBP RB VBN DT NN IN NNS IN NNS VBN IN NNP .\nThey have also criticized previous prisoner releases as inadequate .\tPRP VBP RB VBN JJ NN NNS IN JJ .\nThe U.S. secretary of the interior said he will not change a Bush administration rule on protection of polar bears , despite pressure from environmentalists .\tDT NNP NN IN DT NN VBD PRP MD RB VB DT NNP NN NN IN NN IN JJ NNS , IN NN IN NNS .\nKen Salazar announced Friday that a special rule applying to polar bears , under the Endangered Species Act , can only restrict dangers to the bears that originate in the bears ' northern habitat .\tNNP NNP VBD NNP IN DT JJ NN VBG TO JJ NNS , IN DT NNP NNP NNP , MD RB VB NNS TO DT NNS WDT VBP IN DT NNS POS JJ NN .\nThat rules out application of the rule to carbon emissions farther south , even though they can affect the Arctic climate where the bears live .\tDT NNS IN NN IN DT NN TO NN NNS RB RB , RB IN PRP MD VB DT NNP NN WRB DT NNS VBP .\nSalazar said the Endangered Species Act was not the ' proper mechanism ' for dealing with climate change and said a more comprehensive strategy is needed .\tNNP VBD DT NNP NNP NNP VBD RB DT `` JJ NN `` IN VBG IN NN NN CC VBD DT RBR JJ NN VBZ VBN .\nEnvironmentalists criticized the decision as threatening to the polar bear population .\tNNS VBD DT NN IN VBG TO DT JJ NN NN .\nPolar bears have been a touchstone in discussions on climate change because they rely on sea ice , which scientists say is melting as the planet 's atmosphere warms .\tJJ NNS VBP VBN DT NN IN NNS IN NN NN IN PRP VBP IN NN NN , WDT NNS VBP VBZ VBG IN DT NN POS NN VBZ .\nPolice in southwest Pakistan say gunmen have shot and killed the government spokesman in southwestern Balochistan province .\tNNS IN JJ NNP VBP NNS VBP VBN CC VBN DT NN NN IN JJ NNP NN .\nLocal officers say that Raziq Bugti died at the scene after unidentified assailants fired a barrage of shots into his vehicle as it traveled through the provincial capital , Quetta .\tJJ NNS VBP IN NNP NNP VBD IN DT NN IN JJ NNS VBD DT NN IN NNS IN PRP$ NN IN PRP VBD IN DT JJ NN , NNP .\nBugti served as the spokesman for the provincial government and advisor to the chief minister .\tNNP VBD IN DT NN IN DT JJ NN CC NN TO DT JJ NN .\nIn May , Pakistani President Pervez Musharraf said that government forces have wiped out nearly all separatist camps in the gas-rich province .\tIN NNP , JJ NNP NNP NNP VBD IN NN NNS VBP VBN RP RB DT JJ NNS IN DT JJ NN .\nNationalist rebels have been fighting for decades for a larger share of the profits from the resources of Balochistan , Pakistan 's biggest province .\tNNP NNS VBP VBN VBG IN NNS IN DT JJR NN IN DT NNS IN DT NNS IN NNP , NNP POS JJS NN .\nHundreds of people have been killed in separatist attacks on gas , transport and other energy facilities .\tNNS IN NNS VBP VBN VBN IN JJ NNS IN NN , NN CC JJ NN NNS .\nNigeria has rejected as unfair a new corruption index which says the oil-rich nation is seen as the most corrupt on the African continent .\tNNP VBZ VBN IN JJ DT JJ NN NN WDT VBZ DT JJ NN VBZ VBN IN DT RBS JJ IN DT JJ NN .\nIn a statement , Nigeria 's Information Ministry said the index by Berlin-based group Transparency International failed to recognize the government 's efforts at fighting graft .\tIN DT NN , NNP POS NNP NNP VBD DT NN IN JJ NN NNP NNP VBD TO VB DT NN POS NNS IN VBG NN .\nIt accused the group of using faulty and outdated information in its annual ranking of 146 nations based on perceived corruption .\tPRP VBD DT NN IN VBG JJ CC JJ NN IN PRP$ JJ NN IN CD NNS VBN IN VBN NN .\nNigerian officials also say the index focuses on governments taking bribes , but ignores western companies blamed for offering illegal payments .\tJJ NNS RB VBP DT NN VBZ IN NNS VBG NNS , CC VBZ JJ NNS VBN IN VBG JJ NNS .\nThe index lists Nigeria ahead of only Bangladesh and Haiti as the most corrupt nations in the world .\tDT NN VBZ NNP RB IN JJ NNP CC NNP IN DT RBS JJ NNS IN DT NN .\nTransparency International says corruption is often high among other oil-producing nations as well , including Angola , Chad , Libya and Sudan .\tNNP NNP VBZ NN VBZ RB JJ IN JJ JJ NNS RB RB , VBG NNP , NNP , NNP CC NNP .\nAfghanistan 's Interior Ministry says roadside bomb blasts in southern Helmand province have killed six civilians .\tNNP POS NNP NNP VBZ NN NN NNS IN JJ NNP NN VBP VBN CD NNS .\nThe Interior Ministry said the deaths occurred Saturday in two places after the victims drove over the devices .\tDT NNP NNP VBD DT NNS VBD NNP IN CD NNS IN DT NNS VBD IN DT NNS .\nMeanwhile , a joint NATO-Afghan security force has killed several Taliban fighters in an operation in the northeast .\tRB , DT JJ JJ NN NN VBZ VBN JJ NNP NNS IN DT NN IN DT NN .\nNATO says one of the insurgents killed Saturday near Alasay Valley in Kapisa province , outside Kabul , is a suspected Taliban commander .\tNNP VBZ CD IN DT NNS VBD NNP IN NNP NNP IN NNP NN , IN NNP , VBZ DT JJ NNP NN .\nHe is believed to be responsible for violent attacks against Afghan government officials , as well as the joint forces .\tPRP VBZ VBN TO VB JJ IN JJ NNS IN JJ NN NNS , RB RB IN DT JJ NNS .\nOfficials say the insurgents are also suspected of imposing strict curfews on the villages in the valley and conducting illegal patrols to enforce Taliban control on local civilians .\tNNS VBP DT NNS VBP RB VBN IN VBG JJ NNS IN DT NNS IN DT NN CC VBG JJ NNS TO VB NNP NN IN JJ NNS .\nMultiple weapons , including a rocket-propelled grenade , were discovered during the operation .\tNNP NNS , VBG DT JJ NN , VBD VBN IN DT NN .\nIn southern Afghanistan , the British Defense Ministry said Saturday one of its soldiers was killed by a suicide blast .\tIN JJ NNP , DT NNP NNP NNP VBD NNP CD IN PRP$ NNS VBD VBN IN DT NN NN .\nCroatia 's Janica Kostelic has won her first ever women 's World Cup giant slalom title in Spindleruv Mlyn , the Czech Republic .\tNNP POS NNP NNP VBZ VBN PRP$ JJ RB NNS POS NNP NNP NN NN NN IN NNP NNP , DT JJ NNP .\nKostelic finished with a combined time of two minutes , 21.3 seconds .\tNNP VBD IN DT JJ NN IN CD NNS , CD NNS .\nKathrin Zettel of Austria was second , 0.08 of one second back .\tNNP NNP IN NNP VBD JJ , CD IN CD NN RB .\nAnother Austrian , Marlies Schild , was third ( 2.21.40 ) .\tDT NN , NNP NNP , VBD JJ LRB CD RRB .\nKostelic , the reigning Olympic giant slalom champion , had never won the event on the World Cup circuit before .\tNNP , DT VBG NNP JJ NN NN , VBD RB VBN DT NN IN DT NNP NNP NN IN .\nKostelic has won previously in World Cup slalom and combined events and claimed the world championships in the downhill , the slalom and the combined .\tNNP VBZ VBN RB IN NNP NNP NN CC VBN NNS CC VBD DT NN NNS IN DT NN , DT NN CC DT VBN .\nA Ukrainian court has ruled the privatization of the country 's largest steel mill was illegal .\tDT JJ NN VBZ VBN DT NN IN DT NN POS JJS NN NN VBD JJ .\nA court in Kiev made the ruling Thursday regarding the Kryvorizhstal mill .\tDT NN IN NNP VBD DT NN NNP VBG DT NNP NN .\nA consortium that included the son-in-law of former Ukrainian President Leonid Kuchma purchased the complex in June for $ 800 million , far less than its estimated value .\tDT NN WDT VBD DT NN IN JJ JJ NNP NNP NNP VBD DT NN IN NNP IN $ CD CD , RB JJR IN PRP$ JJ NN .\nPrime Minister Yulia Tymoshenko said Wednesday that some 3,000 privatizations will be reviewed to ensure they were conducted fairly .\tNNP NNP NNP NNP VBD NNP IN DT CD NNS MD VB VBN TO VB PRP VBD VBN RB .\nMeanwhile , Justice Minister Roman Zvarych is threatening to quit after less than two weeks on the job , citing efforts by businessmen to influence his ministry .\tRB , NNP NNP NNP NNP VBZ VBG TO VB IN JJR IN CD NNS IN DT NN , VBG NNS IN NNS TO VB PRP$ NN .\nHe told Canal Five television he refuses to allow businessmen who are also deputies with oil ties to interfere with his work , and said he will not allow members of the government , who he did not name , drag his family into corruption schemes .\tPRP VBD NNP CD NN PRP VBZ TO VB NNS WP VBP RB NNS IN NN NNS TO VB IN PRP$ NN , CC VBD PRP MD RB VB NNS IN DT NN , WP PRP VBD RB VB , VB PRP$ NN IN NN NNS .\nMilitary forces of two Burmese ethnic groups engaged in intense fighting along the border with Thailand earlier this week .\tJJ NNS IN CD JJ JJ NNS VBN IN JJ NN IN DT NN IN NNP RBR DT NN .\nSources say the fighting broke out Tuesday between forces aligned with the Wa and Shan groups near Thailand 's northern Mae Hong Son province .\tNNS VBP DT NN VBD IN NNP IN NNS VBN IN DT NNP CC NNP NNS IN NNP POS JJ NNP NNP NNP NN .\nThe battle began after talks to resolve several issues broke down , including a dispute over water use .\tDT NN VBD IN NNS TO VB JJ NNS VBD RP , VBG DT NN IN NN NN .\nThere is also speculation that illegal drugs also played a part in the fighting .\tEX VBZ RB NN IN JJ NNS RB VBD DT NN IN DT NN .\nThailand has increased security along the Burmese border to keep the violence from spilling over into its territories .\tNNP VBZ VBN NN IN DT JJ NN TO VB DT NN IN VBG RP IN PRP$ NNS .\nThe U.S. military says it has captured a number of key terrorist leaders in a series of operations aimed at weakening al-Qaida in Iraq .\tDT NNP NN VBZ PRP VBZ VBN DT NN IN JJ JJ NNS IN DT NN IN NNS VBN IN VBG NNP IN NNP .\nThe military says its forces spread out across central and northern Iraq Thursday , detaining 25 suspected terrorists .\tDT JJ VBZ PRP$ NNS VBD RP IN JJ CC JJ NNP NNP , VBG CD JJ NNS .\nOfficials say one of the suspects is an alleged leader of an al-Qaida cell in Baghdad who was helping to bring foreign terrorists into Iraq .\tNNS VBP CD IN DT NNS VBZ DT JJ NN IN DT NNP NN IN NNP WP VBD VBG TO VB JJ NNS IN NNP .\nForces also arrested a man thought to be senior al-Qaida leader in Mosul .\tNNS RB VBN DT NN VBN TO VB JJ NNP NN IN NNP .\nIn violence Wednesday , a suicide car bomber attacked an Iraqi army patrol in the northern city of Mosul , killing three people and wounding 14 others .\tIN NN NNP , DT NN NN NN VBD DT JJ NN NN IN DT JJ NN IN NNP , VBG CD NNS CC VBG CD NNS .\nIn Baghdad , the military said a roadside bomb wounded three Iraqi civilians .\tIN NNP , DT NN VBD DT NN NN VBD CD JJ NNS .\nThe military also said Iraqi soldiers recovered Iranian-made rockets and other weapons in Baghdad 's Sadr City district on Monday .\tDT NN RB VBD JJ NNS VBD JJ NNS CC JJ NNS IN NNP POS NNP NNP NN IN NNP .\nIt said some of the Iranian munitions had a manufacture date of early 2008 .\tPRP VBD DT IN DT JJ NNS VBD DT NN NN IN JJ CD .\nPakistan 's Interior Ministry says gunmen have released all the children briefly held hostage at a high school in North West Frontier Province .\tNNP POS NNP NNP VBZ NNS VBP VBN PDT DT NNS RB VBD NN IN DT JJ NN IN NNP NNP NNP NNP .\nMinistry spokesman Javed Cheema says the gunmen surrendered to the local jirga ( tribal council ) along with their weapons and released the children .\tNN NN NNP NNP VBZ DT NNS VBD TO DT JJ NN LRB JJ NN RRB IN IN PRP$ NNS CC VBD DT NNS .\nThe ministry said up to 250 students were being held .\tDT NN VBD RP TO CD NNS VBD VBG VBN .\nThe gunmen took refuge in the school after an aborted attempt to abduct a health official in a neighboring district .\tDT NNS VBD NN IN DT NN IN DT JJ NN TO VB DT NN NN IN DT JJ NN .\nThe official was eventually freed after clashes with police .\tDT NN VBD RB VBN IN NNS IN NN .\nPolice then surrounded the building while tribesmen negotiated with the insurgents .\tNNS RB VBN DT NN IN NNS VBN IN DT NNS .\nOfficials say the kidnappers had demanded safe passage in return for freeing the students .\tNNS VBP DT NNS VBD VBN JJ NN IN NN IN VBG DT NNS .\nViolence has spread in recent months in areas of Pakistan near the border with Afghanistan , which are believed to be sanctuaries for al Qaeda and Taliban militants .\tNN VBZ VBN IN JJ NNS IN NNS IN NNP IN DT NN IN NNP , WDT VBP VBN TO VB NNS IN NNP NNP CC NNP NNS .\nThe head of the World Health Organization says the world 's capacity for making enough swine flu vaccine for nearly seven billion people is ' woefully inadequate . '\tDT NN IN DT NNP NNP NNP VBZ DT NN POS NN IN VBG JJ NN NN NN IN RB CD CD NNS VBZ `` RB JJ . ``\nMargaret Chan said at a Geneva conference Tuesday that almost everyone on the planet is susceptible to the H1N1 swine flu virus .\tNNP NNP VBD IN DT NNP NN NNP IN RB DT IN DT NN VBZ JJ TO DT NNP NN NN NN .\nBut she said most of the limited supply of the vaccine will go to wealthy countries , calling it an example of life-saving intervention biased towards affluence .\tCC PRP VBD JJS IN DT JJ NN IN DT NN MD VB TO JJ NNS , VBG PRP DT NN IN JJ NN VBN IN NN .\nChan called for more innovation in developing new medicines to ensure everyone gets the vaccine .\tNNP VBD IN JJR NN IN VBG JJ NNS TO VB DT VBZ DT NN .\nWHO officials have said they believe the first mass vaccines will be available by September and that health care providers should get inoculated first .\tNNP NNS VBP VBN PRP VBP DT JJ NN NNS MD VB JJ IN NNP CC IN NN NN NNS MD VB VBN RB .\nThe latest WHO report confirms nearly 95,000 swine flu cases worldwide with 429 deaths .\tDT JJS NNP NN VBZ RB CD JJ NN NNS VBP IN CD NNS .\nPolitical analysts say the results of some close elections across the United States could be delayed for days or weeks , as absentee and provisional ballots are counted .\tJJ NNS VBP DT NNS IN DT JJ NNS IN DT NNP NNPS MD VB VBN IN NNS CC NNS , IN NN CC JJ NNS VBP VBN .\nMany states have allowed voters to cast absentee ballots for weeks .\tJJ NNS VBP VBN NNS TO VB JJ NNS IN NNS .\nThose votes , however , usually take longer to count , and a final tally of the results from those ballots could take days .\tDT NNS , RB , RB VBP JJR TO VB , CC DT JJ NN IN DT NNS IN DT NNS MD VB NNS .\nProvisional ballots are often used when a voter is not registered at the polling place , who did not bring the proper type of identification or who shows up at the wrong voting precinct .\tJJ NNS VBP RB VBN WRB DT NN VBZ RB VBN IN DT NN NN , WP VBD RB VB DT JJ NN IN NN CC WP VBZ RP IN DT JJ NN NN .\nIn 2004 , the first year provisional ballots were used nationwide , about 1.9 million people cast them .\tIN CD , DT JJ NN JJ NNS VBD VBN JJ , IN CD CD NNS VBD PRP .\nMore than 1.2 million of those votes were ruled valid .\tJJR IN CD CD IN DT NNS VBD VBN JJ .\nIn the northwestern state of Washington in 2004 , provisional ballots played a role in delaying Democratic gubernatorial candidate Christine Gregoire 's victory for more than eight weeks .\tIN DT JJ NN IN NNP IN CD , JJ NNS VBD DT NN IN VBG JJ JJ NN NNP NNP POS NN IN JJR IN CD NNS .\nA massive winter storm is barreling across the central United States , causing mayhem on the roads and threatening to ruin many Americans ' Christmas holiday plans .\tDT JJ NN NN VBZ VBG IN DT JJ NNP NNPS , VBG NN IN DT NNS CC VBG TO VB JJ NNS POS NNP NN NNS .\nThe storm stretches as far north as Minnesota , along the Canadian border , to Texas in the south .\tDT NN VBZ IN RB RB IN NNP , IN DT JJ NN , TO NNP IN DT NN .\nFreezing rain , snow and heavy winds are making driving conditions extremely dangerous in some states .\tVBG NN , NN CC JJ NNS VBP VBG JJ NNS RB JJ IN DT NNS .\nThe National Weather Service has issued a blizzard warning to remain in effect for many areas until Saturday , predicting up to 30 centimeters of snow in many northern locales .\tDT NNP NNP NNP VBZ VBN DT JJ NN TO VB IN NN IN JJ NNS IN NNP , VBG RP TO CD NNS IN NN IN JJ JJ NNS .\nThe warning says ' life-threatening ' weather conditions are expected and strongly discourages travel .\tDT NN VBZ `` JJ `` NN NNS VBP VBN CC RB VBZ NN .\nAmericans on the east coast are just recovering from a major storm last week that dropped as much as 60 centimeters of snow in some areas , and caused widespread power outages .\tNNS IN DT JJ NN VBP RB VBG IN DT JJ NN JJ NN WDT VBD RB JJ IN CD NNS IN NN IN DT NNS , CC VBD JJ NN NNS .\nA winter storm in the northeastern United States has shut down airline travel and cut power to thousands of people .\tDT NN NN IN DT JJ NNP NNPS VBZ VBN RP NN NN CC NN NN TO NNS IN NNS .\nU.S. weather forecasters said more than 50 centimeters of snow has fallen in some areas since Saturday , and more snow was expected through Sunday .\tNNP NN NNS VBD JJR IN CD NNS IN NN VBZ VBN IN DT NNS IN NNP , CC JJR NN VBD VBN IN NNP .\nOfficials closed at least two major airports servicing New York City , and air traffic was disrupted at other key cities .\tNNS VBD IN JJS CD JJ NNS VBG NNP NNP NNP , CC NN NN VBD VBN IN JJ JJ NNS .\nService resumed at Ronald Reagan National airport in Washington , which had closed earlier in the day .\tNN VBD IN NNP NNP NNP NN IN NNP , WDT VBD VBN RBR IN DT NN .\nHeavy snow snapped trees and power lines near Washington , cutting electricity to thousands of people .\tNNP VBD JJ NNS CC NN NNS IN NNP , VBG NN TO NNS IN NNS .\nNew York Mayor Michael Bloomberg warned residents to remain indoors until roads and sidewalks were cleared .\tNNP NNP NNP NNP NNP VBD NNS TO VB NNS IN NNS CC NNS VBD VBN .\nA blizzard warning was in effect for New York city and surrounding areas .\tDT JJ NN VBD IN NN IN NNP NNP NN CC VBG NNS .\nAnd The National Weather Service issued a heavy snow warning for an area extending from West Virginia to Maine .\tCC DT NNP NNP NNP VBD DT JJ NN NN IN DT NN VBG IN NNP NNP TO NNP .\nCuba has announced an increase in government salaries for workers with advanced university degrees , municipal and provincial employees , and those certified as masters of their trades or otherwise noted for their productivity .\tNNP VBZ VBN DT NN IN NN NNS IN NNS IN JJ NN NNS , JJ CC JJ NNS , CC DT VBN IN NNS IN PRP$ NNS CC RB VBN IN PRP$ NN .\nThe pay hike is designed to help those who were not affected by a minimum wage hike in May .\tDT NN NN VBZ VBN TO VB DT WP VBD RB VBN IN DT JJ NN NN IN NNP .\nRetirement and social assistance pensions were also raised .\tNNP CC JJ NN NNS VBD RB VBN .\nIn a speech last week , Cuban President Fidel Castro indicated pay increases may be needed to battle corruption .\tIN DT NN JJ NN , JJ NNP NNP NNP VBD NN NNS MD VB VBN TO VB NN .\nAt the same time , Cuba announced a steep increase in utility rates for heavy users of electricity .\tIN DT JJ NN , NNP VBD DT JJ NN IN NN NNS IN JJ NNS IN NN .\nThe heavily subsidized rates Cubans now pay for the first 100 kilowatt hours will stay the same , but after that , rates increase to up to three times their former rates for the heaviest users .\tDT RB JJ NNS NNS RB VBP IN DT JJ CD NN NNS MD VB DT NN , CC IN DT , NNS VBP TO RB TO CD NNS PRP$ JJ NNS IN DT JJS NNS .\nGranma , the Cuban Communist Party newspaper , said the increase was to encourage energy conservation among Cubans .\tNNP , DT JJ NNP NNP NN , VBD DT NN VBD TO VB NN NN IN NNS .\nIraqi authorities say at least 10 people have been killed and 21 others wounded in a car bomb attack on a Shi'ite mosque in central Iraq .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN CC CD NNS VBD IN DT NN NN NN IN DT NNP NN IN JJ NNP .\nPolice say a suicide bomber blew himself up early Friday , as worshippers were leaving the al-Rasul al-Aadham mosque in the central town of Tuz Khurmatu , nearly 170 kilometers north of Baghdad .\tNNS VBP DT NN NN VBD PRP RP RB NNP , IN NNS VBD VBG DT JJ NN NN IN DT JJ NN IN NNP NNP , RB CD NNS RB IN NNP .\nEarlier Friday in the capital , Iraqi police say gunmen opened fire on a group of day laborers , killing at least three people and wounding 13 others .\tRB NNP IN DT NN , JJ NNS VBP NNS VBD NN IN DT NN IN NN NNS , VBG IN JJS CD NNS CC VBG CD NNS .\nThe attacks come as part of a campaign of violence by insurgents that has killed more than 180 people in Iraq since Wednesday .\tDT NNS VBP IN NN IN DT NN IN NN IN NNS WDT VBZ VBN JJR IN CD NNS IN NNP IN NNP .\nSeparately , the U.S. military says an American soldier was killed late Thursday in an explosion in the city of Ramadi , in al-Anbar province .\tRB , DT NNP NN VBZ DT JJ NN VBD VBN JJ NNP IN DT NN IN DT NN IN NNP , IN NNP NN .\nA delegation of U.S. lawmakers and businessmen is expected to arrive in Cuba Wednesday for talks aimed at selling more agricultural products to the communist nation .\tDT NN IN NNP NNS CC NNS VBZ VBN TO VB IN NNP NNP IN NNS VBN IN VBG RBR JJ NNS TO DT JJ NN .\nDemocratic Senator Max Baucus of Montana , state lawmakers and agricultural producers will meet in Havana with Cuban officials for several days of talks .\tJJ NNP NNP NNP IN NNP , NN NNS CC JJ NNS MD VB IN NNP IN JJ NNS IN JJ NNS IN NNS .\nThey hope to sign deals aimed at selling $ 100 million in food and agricultural products to Havana .\tPRP VBP TO VB NNS VBN IN VBG $ CD CD IN NN CC JJ NNS TO NNP .\nUnder an exemption to the U.S. sanctions against Cuba , American agricultural goods can be sold to the island on a cash-only basis .\tIN DT NN TO DT NNP NNS IN NNP , JJ JJ NNS MD VB VBN TO DT NN IN DT JJ NN .\nSince 2001 , Havana has purchased more than $ 700 million in food products .\tIN CD , NNP VBZ VBN JJR IN $ CD CD IN NN NNS .\nMeanwhile , Cuba is pressing ahead with its largest military exercise in 20 years .\tRB , NNP VBZ VBG RB IN PRP$ JJS JJ NN IN CD NNS .\nOfficials say military forces , reservists and millions of civilians are taking part in the six-day exercise , called Bastion 2004 .\tNNS VBP JJ NNS , NNS CC NNS IN NNS VBP VBG NN IN DT JJ NN , VBD NNP CD .\nA top United Nations envoy has held what he describes as ' encouraging ' talks with Syrian President Bashar al-Assad about a U.N. resolution calling for all Syrian troops to leave Lebanon .\tDT JJ NNP NNP NN VBZ VBN WP PRP VBZ IN `` VBG `` NNS IN JJ NNP NNP NNP IN DT NNP NN VBG IN DT JJ NNS TO VB NNP .\nAfter meeting the Syrian leader Thursday in Damascus , envoy Terje Roed-Larsen said he delivered a message from U.N. Secretary-General Kofi Annan , and that he is hopeful about implementing the U.N. measure .\tIN VBG DT JJ NN NNP IN NNP , NN NNP NNP VBD PRP VBD DT NN IN NNP NNP NNP NNP , CC IN PRP VBZ JJ IN VBG DT NNP NN .\nNo schedule for further talks has been announced .\tDT NN IN JJ NNS VBZ VBN VBN .\nWestern analysts say Syria has at least 14,000 troops in neighboring Lebanon .\tJJ NNS VBP NNP VBZ IN JJS CD NNS IN JJ NNP .\nDamascus has been sharply critical of a U.N. resolution passed last September , which calls for the withdrawal of all foreign forces from Lebanon .\tNNP VBZ VBN RB JJ IN DT NNP NN VBN JJ NNP , WDT VBZ IN DT NN IN DT JJ NNS IN NNP .\nSyria has criticized the resolution as an infringement on a bilateral agreement with the Beirut government .\tNNP VBZ VBN DT NN IN DT NN IN DT JJ NN IN DT NNP NN .\nFederal officials in the U.S. state of Arizona have indicted 13 Bosnian Serbs on charges of lying on their visa applications about their prior military service .\tNNP NNS IN DT NNP NN IN NNP VBP VBN CD JJ NNS IN NNS IN VBG IN PRP$ NN NNS IN PRP$ JJ JJ NN .\nOfficials said seven others were being held on similar charges .\tNNS VBD CD NNS VBD VBG VBN IN JJ NNS .\nThe indicted ethnic Serbs from Bosnia-Herzegovina are charged with concealing their prior service in Bosnian Serb forces .\tDT VBN JJ NNS IN NNP VBP VBN IN VBG PRP$ JJ NN IN JJ JJ NNS .\nHowever , some families of the accused have said they did not serve in the military ; others said they were conscripted against their will .\tRB , DT NNS IN DT VBN VBP VBN PRP VBD RB VB IN DT NN ; NNS VBD PRP VBD VBN IN PRP$ NN .\nLast year , four other Bosnian Serbs in Arizona were arrested and charged with lying on immigration paperwork .\tJJ NN , CD JJ JJ NNS IN NNP VBD VBN CC VBN IN VBG IN NN NN .\nAll immigrants applying for legal residency in the United States must disclose prior military service .\tDT NNS VBG IN JJ NN IN DT NNP NNPS MD VB RB JJ NN .\nWidespread atrocities occurred during the conflict of the 1990s in Bosnia-Herzegovina , including the slaughter of thousands of civilians by Serb forces .\tJJ NNS VBD IN DT NN IN DT NNS IN NNP , VBG DT NN IN NNS IN NNS IN JJ NNS .\nDoctors say Indian Prime Minister Manmohan Singh is recovering well from heart surgery and has been moved out of intensive care .\tNNS VBP JJ NNP NNP NNP NNP VBZ VBG RB IN NN NN CC VBZ VBN VBN IN IN JJ NN .\nHis doctors told several Indian news agencies Wednesday that the prime minister is likely to be discharged from the hospital within the next few days if he continues to recover on schedule .\tPRP$ NNS VBD JJ JJ NN NNS NNP IN DT JJ NN VBZ JJ TO VB VBN IN DT NN IN DT JJ JJ NNS IN PRP VBZ TO VB IN NN .\nThe prime minister had heart bypass surgery on Saturday after he complained of chest pains and tests showed he had several blocked arteries .\tDT JJ NN VBD NN NN NN IN NNP IN PRP VBD IN NN NNS CC NNS VBD PRP VBD JJ VBN NNS .\nHe had a similar operation in Britain in 1990 .\tPRP VBD DT JJ NN IN NNP IN CD .\nDoctors have previously said that Mr. Singh , who is 76 , should be able to resume his full duties within four weeks .\tNNS VBP RB VBN IN NNP NNP , WP VBZ CD , MD VB JJ TO VB PRP$ JJ NNS IN CD NNS .\nNo acting prime minister has been named .\tDT JJ JJ NN VBZ VBN VBN .\nIndian officials say until Mr. Singh recovers , there will be collective decision-making by the Cabinet , chaired by External Affairs Minister Pranab Mukherjee .\tJJ NNS VBP IN NNP NNP VBZ , EX MD VB JJ NN IN DT NNP , VBN IN NNP NNP NNP NNP NNP .\nThe United Nation 's food agency has tripled the amount of emergency aid it is seeking for Niger , saying more is needed to save 2.5 million people from extreme hunger .\tDT NNP NNP POS NN NN VBZ VBN DT NN IN NN NN PRP VBZ VBG IN NNP , VBG RBR VBZ VBN TO VB CD CD NNS IN JJ NN .\nThe World Food Program said Wednesday it now needs more than $ 57 million for its operations in Niger .\tDT NNP NNP NNP VBD NNP PRP RB VBZ JJR IN $ CD CD IN PRP$ NNS IN NNP .\nIt says this is the third time in six months it has raised its appeal .\tPRP VBZ DT VBZ DT JJ NN IN CD NNS PRP VBZ VBN PRP$ NN .\nExecutive Director James Morris says if donors had responded earlier , the cost of the operation would be greatly reduced .\tNNP NNP NNP NNP VBZ IN NNS VBD VBN RBR , DT NN IN DT NN MD VB RB VBN .\nHe said the situation has deteriorated severely over recent months .\tPRP VBD DT NN VBZ VBN RB IN JJ NNS .\nThe agency says donations only started flowing recently after television pictures showed images of starving children .\tDT NN VBZ NNS RB VBD VBG RB IN NN NNS VBD NNS IN VBG NNS .\nTuesday , Niger 's President , Mamadou Tandja , thanked humanitarian agencies for sending emergency aid and said Niger 's food crisis is improving .\tNNP , NNP POS NNP , NNP NNP , VBD JJ NNS IN VBG NN NN CC VBD NNP POS NN NN VBZ VBG .\nLebanese soldiers have seized several buildings in a Palestinian refugee camp where they have been battling Islamic militants for two months .\tJJ NNS VBP VBN JJ NNS IN DT JJ NN NN WRB PRP VBP VBN VBG JJ NNS IN CD NNS .\nThe Lebanese military says two soldiers were killed in Sunday 's fighting in the Nahr el-Bared camp near Tripoli .\tDT JJ NN VBZ CD NNS VBD VBN IN NNP POS NN IN DT NNP JJ NN IN NNP .\nWitnesses say Lebanese flags were seen flying over buildings in the camp .\tNNS VBP JJ NNS VBD VBN VBG IN NNS IN DT NN .\nThe military also bombarded militants ' positions with artillery shells for a second day , as the militants fired rockets that hit fields outside the camp .\tDT NN RB VBD NNS POS NNS IN NN NNS IN DT JJ NN , IN DT NNS VBD NNS WDT VBD NNS IN DT NN .\nMore than 170 people , including at least 97 Lebanese soldiers , have been killed since the standoff began May 20th .\tJJR IN CD NNS , VBG IN JJS CD JJ NNS , VBP VBN VBN IN DT NN VBD NNP JJ .\nNearly all of the Palestinian refugees living in the camp have fled .\tRB DT IN DT JJ NNS VBG IN DT NN VBP VBN .\nLast month , Lebanese officials claimed victory in the fighting , but daily firefights have continued since then .\tJJ NN , JJ NNS VBD NN IN DT NN , CC JJ NNS VBP VBN IN RB .\nThe price of crude oil has fallen to its lowest level in more than 18 months as mild weather in the northern hemisphere has caused inventories to rise .\tDT NN IN JJ NN VBZ VBN TO PRP$ JJS NN IN JJR IN CD NNS IN JJ NN IN DT JJ NN VBZ VBN NNS TO VB .\nLight sweet crude for February delivery Tuesday dropped as much as $ 2 a barrel to $ 53.88 .\tJJ JJ NN IN NNP NN NNP VBD RB JJ IN $ CD DT NN TO $ CD .\nThat is the lowest price per barrel in New York trading since June 2005 .\tDT VBZ DT JJS NN IN NN IN NNP NNP NN IN NNP CD .\nThe price drop comes despite the disruption of Russia 's oil exports to Europe .\tDT NN NN VBZ IN DT NN IN NNP POS NN NNS TO NNP .\nMoscow refuses to pay a newly imposed customs tax by Minsk for its oil crossing Belarus , which supplies 20 percent of Russian oil to Europe .\tNNP VBZ TO VB DT RB VBN NNS NN IN NNP IN PRP$ NN VBG NNP , WDT VBZ CD NN IN JJ NN TO NNP .\nOil also declined as traders expressed skepticism OPEC plans to cut oil production by another 5,00,000 barrels per day .\tNN RB VBD IN NNS VBD NN NNP VBZ TO VB NN NN IN DT CD NNS IN NN .\nThe international oil cartel agreed to a production cut of one million barrels per day in November , but prices have continued to drop .\tDT JJ NN NN VBD TO DT NN NN IN CD CD NNS IN NN IN NNP , CC NNS VBP VBN TO VB .\nThe White House is hailing an upcoming Israeli-Palestinian summit in Egypt , calling it an encouraging step that shows both sides want to seize the opportunity for peace .\tDT NNP NNP VBZ VBG DT JJ JJ NN IN NNP , VBG PRP DT JJ NN WDT VBZ DT NNS VBP TO VB DT NN IN NN .\nThe U.S. comments Wednesday followed announcements that Israeli Prime Minister Ariel Sharon will meet new Palestinian leader Mahmoud Abbas and Jordan 's King Abdullah Tuesday in Sharm al-Sheikh .\tDT NNP NNS NNP VBD NNS IN JJ NNP NNP NNP NNP MD VB JJ JJ NN NNP NNP CC NNP POS NNP NNP NNP IN NNP NNP .\nThe summit coincides with a visit to the region by U.S. Secretary of State Condoleezza Rice , who is to meet separately with Mr. Sharon and Mr. Abbas the day before the February 8 summit .\tDT NN VBZ IN DT NN TO DT NN IN NNP NNP IN NNP NNP NNP , WP VBZ TO VB RB IN NNP NNP CC NNP NNP DT NN IN DT NNP CD NN .\nIn Cairo Wednesday , Egypt held talks with Palestinian militant leaders , as part of a push to strengthen support for the de~facto Israeli-Palestinian cease-fire in effect for most of the past two weeks .\tIN NNP NNP , NNP VBD NNS IN JJ JJ NNS , IN NN IN DT NN TO VB NN IN DT JJ JJ NN IN NN IN JJS IN DT JJ CD NNS .\nSources said Hamas leader Khaled Meshaal and Islamic Jihad leader Ramadan Shallah both met with Egyptian negotiators .\tNNS VBD NNP NN NNP NNP CC NNP NNP NN NNP NNP DT VBD IN JJ NNS .\nEgyptian security forces have arrested at least 10 more members of the country 's largest opposition group , the Muslim Brotherhood .\tJJ NN NNS VBP VBN IN JJS CD JJR NNS IN DT NN POS JJS NN NN , DT NNP NNP .\nThursday 's arrests come after 17 Brotherhood members were detained earlier this week .\tNNP POS NNS VBD IN CD NNP NNS VBD VBN RBR DT NN .\nThe Egyptian government is intensifying its crackdown on the banned Islamist political group .\tDT JJ NN VBZ VBG PRP$ NN IN DT VBN NNP JJ NN .\nThe Brotherhood says the government campaign is a direct reaction to the group 's rejection of constitutional amendments proposed by President Hosni Mubarak .\tDT NNP VBZ DT NN NN VBZ DT JJ NN TO DT NN POS NN IN JJ NNS VBN IN NNP NNP NNP .\nOfficials of the Brotherhood say the amendments are aimed at giving the ruling party more power and barring Muslim Brothers from politics .\tNNS IN DT NNP VBP DT NNS VBP VBN IN VBG DT VBG NN JJR NN CC VBG NNP NNPS IN NNS .\nThe Brotherhood won a fifth of the seats in Egypt 's parliament by running members as independents in the 2005 elections , making it the largest opposition group .\tDT NNP VBD DT NN IN DT NNS IN NNP POS NN IN VBG NNS IN NNS IN DT CD NNS , VBG PRP DT JJS NN NN .\nThe constitutional amendments proposed by Mr. Mubarak would reduce the role of judges in monitoring elections and ban religious groups from forming political parties .\tDT JJ NNS VBN IN NNP NNP MD VB DT NN IN NNS IN VBG NNS CC VB JJ NNS IN VBG JJ NNS .\nThe Brotherhood advocates an Islamic state , achieved through peaceful means .\tDT NNP VBZ DT JJ NN , VBN IN JJ NNS .\nAn Israeli security official says a top Hamas commander captured last week could be a ' bargaining chip ' to win the release of an Israeli soldier held for over a year .\tDT JJ NN NN VBZ DT JJ NNP NN VBD JJ NN MD VB DT `` NN NN `` TO VB DT NN IN DT JJ NN VBN IN IN DT NN .\nPublic Security Minister Avi Dichter told Israeli Army Radio Monday that Hamas commander Mhawesh al-Qadi might be exchanged for Israeli soldier Gilad Shalit .\tNNP NNP NNP NNP NNP VBD JJ NNP NNP NNP IN NNP NN NNP NNP MD VB VBN IN JJ NN NNP NNP .\nIsraeli commandos dressed as Palestinian security forces abducted the Hamas commander in Gaza Strip in a raid on Friday .\tJJ NNS VBN IN JJ NN NNS VBD DT NNP NN IN NNP NNP IN DT NN IN NNP .\nShalit was captured by militant groups in Gaza in June 2006 .\tNNP VBD VBN IN JJ NNS IN NNP IN NNP CD .\nHamas , which seized control of Gaza three months ago , has demanded the release of hundreds of Palestinian prisoners in exchange for the Israeli soldier .\tNNP , WDT VBD NN IN NNP CD NNS RB , VBZ VBN DT NN IN NNS IN JJ NNS IN NN IN DT JJ NN .\nAfghan officials say two senior members of Afghanistan 's former Taleban regime have surrendered to the government under an amnesty offer .\tJJ NNS VBP CD JJ NNS IN NNP POS JJ NNP NN VBP VBN TO DT NN IN DT JJ NN .\nThe two men are Mullah Mohammad Naseem , the former Taleban governor of Zabul province , and Haji Mohammad Akhtar , the former police chief of Farah province .\tDT CD NNS VBP NNP NNP NNP , DT JJ NNP NN IN NNP NN , CC NNP NNP NNP , DT JJ NN NN IN NNP NN .\nThe governor of Helmand province , Mullah Sher Mohammad , said they surrendered after month-long talks .\tDT NN IN NNP NN , NNP NNP NNP , VBD PRP VBD IN JJ NNS .\nIn the southeastern Khost province , the U.S. military said coalition forces have killed at least 12 insurgents in a clash in southeastern Khost province .\tIN DT JJ NNP NN , DT NNP NN VBD NN NNS VBP VBN IN JJS CD NNS IN DT NN IN JJ NNP NN .\nA military statement Thursday , said the fighting erupted late Tuesday , when insurgents fired rockets at a U.S. base at Salerno and troops retaliated with artillery and air strikes at rebel positions .\tDT JJ NN NNP , VBD DT NN VBD JJ NNP , WRB NNS VBD NNS IN DT NNP NN IN NNP CC NNS VBD IN NN CC NN NNS IN JJ NNS .\nThere were no coalition casualties .\tEX VBD DT NN NNS .\nThe pairs freeskate program highlights action at the 2006 Olympics Monday in Turin , Italy as top Russian and Chinese pairs duel for a gold medal .\tDT NNS NN NN VBZ NN IN DT CD NNS NNP IN NNP , NNP IN JJ JJ CC JJ NNS NN IN DT NN NN .\nTwo-time world and five-time European champion Maxim Marinin and Tatiana Totmianina of Russian placed first in the short program Saturday .\tJJ NN CC JJ JJ NN NNP NNP CC NNP NNP IN JJ VBD RB IN DT JJ NN NNP .\nThey will try to hold off Zhang Dan and Zhang Hao ( not related ) .\tPRP MD VB TO VB RP NNP NNP CC NNP NNP LRB RB VBN RRB .\nThe Chinese pair is second after the short program .\tDT JJ NN VBZ JJ IN DT JJ NN .\nGold is up for grabs in the women 's 15-kilometer biathlon , which combines shooting with cross-country skiing .\tNN VBZ RP IN NNS IN DT NNS POS JJ NN , WDT VBZ NN IN JJ NN .\nSeven-time world champion Liv-Grete Poiree of Norway will seek her first Olympic gold in her third appearance at the Winter Games .\tJJ NN NN NNP NNP IN NNP MD VB PRP$ JJ NNP NN IN PRP$ JJ NN IN DT NNP NNPS .\nWomen 's half-pipe snowboarding will award a gold medal , with 2002 Olympic champion Kelly Clark hoping to take home another gold and lead a U.S. sweep .\tNNS POS NN VBG MD VB DT NN NN , IN CD NNP NN NNP NNP VBG TO VB NN DT NN CC VB DT NNP NN .\nThe men go for gold in the 500-meters long track speed skating event .\tDT NNS VBP IN NN IN DT NNS RB VBP NN NN NN .\nFrench authorities responded to several new arson attacks late Friday as rioting continued for the ninth straight night in the suburbs of Paris .\tJJ NNS VBD TO JJ JJ NN NNS RB NNP IN VBG VBD IN DT JJ JJ NN IN DT NNS IN NNP .\nDozens of vehicles and buildings were set on fire in suburbs north of the city as gangs of young rioters , mostly of North African origin , harassed police and firefighters .\tNNS IN NNS CC NNS VBD VBN IN NN IN NNS RB IN DT NN IN NNS IN JJ NNS , RB IN JJ JJ NN , VBD NNS CC NNS .\nSimilar incidents were reported elsewhere in France for the second night .\tJJ NNS VBD VBN RB IN NNP IN DT JJ NN .\nThe latest outbreak comes despite the presence of more than one thousand police officers in the Paris suburbs .\tDT JJS NN VBZ IN DT NN IN JJR IN CD CD NN NNS IN DT NNP NNS .\nFrench Prime Minister Dominique de Villepin met with youths from those areas earlier Friday to discuss the crisis .\tJJ NN NN NNP NNP NNP VBD IN NNS IN DT NNS RB NNP TO VB DT NN .\nMany of the rioters say the French government has a racial bias and treats them as second class citizens .\tNN IN DT NNS VBP DT JJ NN VBZ DT JJ NN CC VBZ PRP IN JJ NN NNS .\nThe violence started last week when two North African teenagers hid from police at a power station and were accidentally electrocuted .\tDT NN VBD JJ NN WRB CD JJ JJ NNS VBD IN NN IN DT NN NN CC VBD RB VBN .\nPresident Bush is on his way to Mar Del Plata , Argentina , to attend the Summit of the Americas , which opens Friday .\tNNP NNP VBZ IN PRP$ NN TO NNP NNP NNP , NNP , TO VB DT NN IN DT NNPS , WDT VBZ NNP .\nMr. Bush and 31 other democratically elected leaders will discuss ways to boost employment , fight poverty and strengthen democracy throughout the western hemisphere .\tNNP NNP CC CD JJ RB VBN NNS MD VB NNS TO VB NN , VB NN CC VB NN IN DT JJ NN .\nTwo other democratic nations : Panama and Honduras , are sending delegations , but not their head of state .\tCD JJ JJ NNS IN NNP CC NNP , VBP VBG NNS , CC RB PRP$ NN IN NN .\nAt the summit , Mr. Bush is expected to push for resumed negotiations on a free trade zone that would encompass North , Central and South America .\tIN DT NN , NNP NNP VBZ VBN TO VB IN VBN NNS IN DT JJ NN NN WDT MD VB NNP , NNP CC NNP NNP .\nMexico has voiced support for the idea , but critics such as Venezuela and Cuba say it will do nothing for the poor .\tNNP VBZ VBN NN IN DT NN , CC NNS JJ IN NNP CC NNP VBP PRP MD VB DT IN DT NN .\nMr. Bush is also expected to meet privately with Argentina 's president , Nestor Kirchner .\tNNP NNP VBZ RB VBN TO VB RB IN NNP POS NN , NNP NNP .\nAfter the summit , the U.S. leader will visit Brazil and Panama before returning to Washington Monday .\tIN DT NN , DT NNP NN MD VB NNP CC NNP IN VBG TO NNP NNP .\nThe U.S. Navy says it has captured a group of suspected pirates in the Indian Ocean off the coast of Somalia .\tDT NNP NNP VBZ PRP VBZ VBN DT NN IN JJ NNS IN DT NNP NNP IN DT NN IN NNP .\nThe Navy says a missile destroyer , the USS Winston S. Churchill , and other U.S. Naval forces in the area located the pirate ship Saturday after receiving a report of a piracy attempt .\tDT NNP VBZ DT NN NN , DT NNP NNP NNP NNP , CC JJ NNP NNP NNS IN DT NN VBN DT NN NN NNP IN VBG DT NN IN DT NN NN .\nAfter unsuccessful attempts to contact the ship , the destroyer began what the Navy called ' aggressive maneuvering ' to stop the vessel .\tIN JJ NNS TO VB DT NN , DT NN VBD WP DT NNP VBD `` JJ VBG `` TO VB DT NN .\nThe pirate ship finally stopped after the destroyer fired warning shots , and the crew effectively surrendered .\tDT NN NN RB VBD IN DT NN VBD VBG NNS , CC DT NN RB VBD .\nThe Navy says sailors discovered small arms on the ship .\tDT NNP VBZ NNS VBD JJ NNS IN DT NN .\nPirates have carried out about 25 attacks off the Somali coast since last March .\tNNS VBP VBN RP IN CD NNS IN DT JJ NN IN JJ NNP .\nSomalia 's transitional government has signed a multi-million dollar deal with a U.S. maritime security firm to fight piracy .\tNNP POS JJ NN VBZ VBN DT JJ NN NN IN DT NNP NN NN NN TO VB NN .\nAustralia is scheduled to host the sixth annual Homeless World Cup later this year .\tNNP VBZ VBN TO VB DT JJ JJ JJ NNP NNP RB DT NN .\nThe event brings together hundreds of homeless players from 48 countries to compete .\tDT NN VBZ RB NNS IN JJ NNS IN CD NNS TO VB .\nVOA 's Sean Maroney has more on the recent Homeless USA Cup in Washington .\tNNP POS NNP NNP VBZ RBR IN DT JJ NNP NNP NNP IN NNP .\nIndonesian authorities say a masked man featured on a video threatening attacks against the United States , Britain and Australia could be Malaysian fugitive Noordin Mohamad Top .\tJJ NNS VBP DT VBN NN VBD IN DT NN VBG NNS IN DT NNP NNPS , NNP CC NNP MD VB JJ JJ NNP NNP NNP .\nThe video was shown to the public Wednesday .\tDT NN VBD VBN TO DT JJ NNP .\nIt was among several found last week during raids that resulted in the killing of Azahari bin Husin , who police believe was the terrorist group Jemaah Islamiyah 's master bombmaker .\tPRP VBD IN JJ VBN JJ NN IN NNS WDT VBD IN DT NN IN NNP NNP NNP , WP NNS VBP VBD DT JJ NN NNP NNP POS NN NN .\nThe tapes were discovered at a house that police say Noordin Mohamad Top rented in central Java .\tDT NNS VBD VBN IN DT NN IN NNS VBP NNP NNP NNP VBD IN JJ NNP .\nPolice have been hunting him and Azahari since the 2002 Bali bombings that killed 202 people .\tNNS VBP VBN VBG PRP CC NNP IN DT CD NNP NNS WDT VBD CD NNS .\nAuthorities also blame the two men for other attacks , including a car bomb blast outside the Australian embassy in Jakarta last year that killed 10 people .\tNNS RB VBP DT CD NNS IN JJ NNS , VBG DT NN NN NN IN DT JJ NN IN NNP JJ NN IN VBD CD NNS .\nThe French sports daily L'Equipe has named Swiss tennis star Roger Federer its ' Champion of Champions ' for 2005 .\tDT JJ NNS JJ NNP VBZ VBN JJ NN NN NNP NNP PRP$ `` NNP IN NNPS `` IN CD .\nThe world number-one men 's tennis player received 676 points in a vote by L'Equipe journalists to give him an overwhelming victory over world motorcycle champion Valentino Rossi of Italy .\tDT NN JJ NNS POS NN NN VBD CD NNS IN DT NN IN NNP NNS TO VB PRP DT JJ NN IN NN NN NN NNP NNP IN NNP .\nRossi got 387 points to take second place .\tNNP VBD CD NNS TO VB JJ NN .\nThird place went to Formula 1 world champion Fernando Alonso of Spain , while Ethiopian distance runner Kenenisa Bekele took fourth place .\tNNP NN VBD TO NNP CD NN NN NNP NNP IN NNP , IN JJ NN NN NNP NNP VBD JJ NN .\nThe 24-year-old Federer dominated men 's tennis in 2005 , compiling an 81-4 winning record for the season .\tDT JJ NNP VBD NNS POS NN IN CD , VBG DT JJ NN NN IN DT NN .\nHe also captured the Wimbledon and U.S. Open Grand Slam titles for the second straight year .\tPRP RB VBD DT NNP CC NNP NNP NNP NNP NNS IN DT JJ JJ NN .\nFederer is the just the second tennis player to win the L'Equipe award in its 25-year history .\tNNP VBZ DT RB DT JJ NN NN TO VB DT NNP NN IN PRP$ JJ NN .\nAmerican Andre Agassi won in 1999 .\tJJ NNP NNP VBD IN CD .\nIraqi officials say 965 Shi'ite pilgrims were killed Wednesday in a stampede on a bridge leading to a Baghdad shrine .\tJJ NNS VBP CD NNP NNS VBD VBN NNP IN DT NN IN DT NN VBG TO DT NNP NN .\nThey say more than 450 others were injured and that the death toll could still rise .\tPRP VBP JJR IN CD NNS VBD VBN CC IN DT NN NN MD RB VB .\nOfficials say panic swept through the crowd after a rumor spread that a suicide bomber was among the hundreds of thousands of pilgrims .\tNNS VBP NN VBD IN DT NN IN DT NN NN IN DT NN NN VBD IN DT NNS IN NNS IN NNS .\nHundreds of women , children and the elderly were either trampled or shoved to their deaths in the Tigris River below .\tNNS IN NNS , NNS CC DT NN VBD RB VBN CC VBN TO PRP$ NNS IN DT NNP NNP IN .\nPrime Minister Ibrahim al-Jaafari declared three days of mourning .\tNNP NNP NNP NNP VBD CD NNS IN NN .\nThe United States offered its condolences and help to the victims .\tDT NNP NNPS VBD PRP$ NNS CC NN TO DT NNS .\nEarlier Wednesday , insurgents fired mortars near the shrine , killing seven people .\tRBR NNP , NNS VBD NNS IN DT NN , VBG CD NNS .\nA little-known militant group claimed responsibility for the attack in an unverifiable Internet statement .\tDT JJ JJ NN VBD NN IN DT NN IN DT JJ NN NN .\nElsewhere in Iraq , the U.S. military reports the deaths of two soldiers since Tuesday .\tRB IN NNP , DT NNP JJ NNS DT NNS IN CD NNS IN NNP .\nIsrael has returned to Lebanon the bodies of three Hezbollah militants who were killed in cross-border fighting earlier this week .\tNNP VBZ VBN TO NNP DT NNS IN CD NNP NNS WP VBD VBN IN JJ NN RBR DT NN .\nIsraeli military officials say the bodies were returned in an effort to defuse tensions and following a request from Lebanon .\tJJ JJ NNS VBP DT NNS VBD VBN IN DT NN TO VB NNS CC VBG DT NN IN NNP .\nRed Cross officials brought the bodies to the Lebanese border , where hundreds of black-clad Hezbollah fighters were waiting .\tNNP NNP NNS VBD DT NNS TO DT JJ NN , WRB NNS IN JJ NNP NNS VBD VBG .\nThe three were killed Monday when they crossed into Israel during some of the heaviest fighting along the border since Israeli troops withdrew from southern Lebanon in 2000 .\tDT CD VBD VBN NNP WRB PRP VBD IN NNP IN DT IN DT JJS NN IN DT NN IN JJ NNS VBD IN JJ NNP IN CD .\nA fourth Hezbollah fighter was killed , but his body was quickly retrieved by the Lebanese .\tDT JJ NNP NN VBD VBN , CC PRP$ NN VBD RB VBN IN DT NNS .\nEleven Israeli soldiers were wounded in the fighting .\tCD JJ NNS VBD VBN IN DT NN .\nPolice in Pakistan say they have arrested six Islamic militants who belong to a group accused of attacks on the country 's Shi'ite minority .\tNNS IN NNP VBP PRP VBP VBN CD JJ NNS WP VBP TO DT NN VBN IN NNS IN DT NN POS JJ NN .\nPolice say the militants belong to the banned Lashkar-e-Jhangvi group , which has alleged links to al-Qaida .\tNNS VBP DT NNS VBP TO DT VBN NNP NN , WDT VBZ VBN NNS TO NNP .\nThey made the arrests during a raid on the group 's base in Multan , in central Pakistan .\tPRP VBD DT NNS IN DT NN IN DT NN POS NN IN NNP , IN JJ NNP .\nOfficials say the group is responsible for suicide bombings on Shi'ite religious sites and may have been planning new attacks .\tNNS VBP DT NN VBZ JJ IN NN NNS IN NNP JJ NNS CC MD VB VBN VBG JJ NNS .\nPolice have arrested several other members of the group recently .\tNNS VBP VBN JJ JJ NNS IN DT NN RB .\nYemeni officials say al-Qaida militants ambushed a military convoy on Friday , killing 12 soldiers .\tJJ NNS VBP NNP NNS VBD DT JJ NN IN NNP , VBG CD NNS .\nOfficials say the militants fired machine guns and rocket-propelled grenades at the convoy as it was traveling in southern Abyan province .\tNNS VBP DT NNS VBD NN NNS CC JJ NNS IN DT NN IN PRP VBD VBG IN JJ NNP NN .\nAuthorities say the convoy was carrying supplies , including water , to military bases in the area .\tNNS VBP DT NN VBD VBG NNS , VBG NN , TO JJ NNS IN DT NN .\nYemen 's weak central government is struggling with a growing threat from al-Qaida , which has stepped up attacks in the impoverished country .\tNNP POS JJ JJ NN VBZ VBG IN DT VBG NN IN NNP , WDT VBZ VBN RP NNS IN DT JJ NN .\nMeanwhile , the French News Agency ( AFP ) says secessionists militants in Yemen have kidnapped an intelligence officer and three other people .\tRB , DT NNP NNP NNP LRB NNP RRB VBZ NNS NNS IN NNP VBP VBN DT NN NN CC CD JJ NNS .\nThe news agency quotes southern secessionist activists as saying the abductions were in retaliation for the government 's hunt for a member of their group .\tDT NN NN VBZ JJ NN NNS IN VBG DT NNS VBD IN NN IN DT NN POS NN IN DT NN IN PRP$ NN .\nA panel of U.N. experts has asked the Security Council to impose sanctions on people it accuses of blocking peace in Sudan 's Darfur region .\tDT NN IN NNP NNS VBZ VBN DT NNP NNP TO VB NNS IN NNS PRP VBZ IN VBG NN IN NNP POS NNP NN .\nThe panel 's report says the council should consider placing a travel ban and a total asset freeze on figures in the Sudanese government , Darfur rebel groups , and government-backed militias .\tDT NN POS NN VBZ DT NN MD VB VBG DT NN NN CC DT JJ NN NN IN NNS IN DT JJ NN , NNP NN NNS , CC JJ NNS .\nThe Security Council authorized the sanctions last March but has yet to impose them on anyone .\tDT NNP NNP VBD DT NNS JJ NNP CC VBZ RB TO VB PRP IN DT .\nNews agencies that obtained the report say it was scheduled to go to the full council this week but was temporarily blocked by Qatar and China .\tNN NNS WDT VBD DT NN VBP PRP VBD VBN TO VB TO DT JJ NN DT NN CC VBD RB VBN IN NNP CC NNP .\nTens of thousands of people in Darfur have been killed and some two million displaced during three years of conflict between the rebels and Sudan 's government .\tNNS IN NNS IN NNS IN NNP VBP VBN VBN CC DT CD CD VBD IN CD NNS IN NN IN DT NNS CC NNP POS NN .\nSeveral rounds of peace talks have failed to yield any substantial progress .\tJJ NNS IN NN NNS VBP VBN TO VB DT JJ NN .\nThe medical aid group Doctors Without Borders says lead poisoning has killed some 400 children in northern Nigeria over the past six months .\tDT JJ NN NN NNS IN NNP VBZ NN NN VBZ VBN DT CD NNS IN JJ NNP IN DT JJ CD NNS .\nThe new toll is more than double the 160 deaths , including 111 children , that Nigerian authorities reported in June .\tDT JJ NN VBZ JJR IN VB DT CD NNS , VBG CD NNS , IN JJ NNS VBD IN NNP .\nAt that time , the World Health Organization said lead concentrations in parts of Nigeria 's Zamfara state were 250 times higher than those allowed in residential areas in the United States and France .\tIN DT NN , DT NNP NNP NNP VBD JJ NNS IN NNS IN NNP POS NNP NN VBD CD NNS JJR IN DT VBN IN JJ NNS IN DT NNP NNPS CC NNP .\nNigerian health officials have said the poisoning is linked to illegal gold mining .\tJJ NN NNS VBP VBN DT NN VBZ VBN TO JJ NN NN .\nThe WHO has sent epidemiologists and pediatricians to help contain the outbreak and prevent similar problems in the future .\tDT NNP VBZ VBN NNS CC NNS TO VB VB DT NN CC VB JJ NNS IN DT NN .\nConcentration of lead in the body can damage the kidneys , nervous system and reproductive system .\tNN IN NN IN DT NN MD VB DT NNS , JJ NN CC JJ NN .\nChildren under the age of six are especially vulnerable .\tNNS IN DT NN IN CD VBP RB JJ .\nSri Lanka 's Tamil Tiger separatists are being praised by international aid workers for their efficient handling of the tsunami aftermath in the northern region controlled by the rebels .\tNNP NNP POS NNP NNP NNS VBP VBG VBN IN JJ NN NNS IN PRP$ JJ NN IN DT NN NN IN DT JJ NN VBN IN DT NNS .\nThe Washington Post reports from northern Sri Lanka that the Tigers should get most of the credit for quickly restoring order , at least in the town of Mullaittivu , which lost 3,000 of its 5,300 residents to the tsunami .\tDT NNP NNP VBZ IN JJ NNP NNP IN DT NNP MD VB JJS IN DT NN IN RB VBG NN , IN JJS IN DT NN IN NNP , WDT VBD CD IN PRP$ CD NNS TO DT NN .\nThe report says by Monday afternoon , just eight days after the devastating tsunami hit Sri Lanka , most of the corpses had been burned and the ground sprayed with disinfectant .\tDT NN VBZ IN NNP NN , RB CD NNS IN DT JJ NN VBD NNP NNP , JJS IN DT NNS VBD VBN VBN CC DT NN VBD IN NN .\nIt says Mullaittivu 's streets had been cleared and utility poles were being re-erected .\tPRP VBZ NNP POS NNS VBD VBN VBN CC NN NNS VBD VBG VBN .\nThe newspaper 's correspondent found that some 1500 displaced residents had been sheltered in a college building - complete with adequate food , clothes and medicines .\tDT NN POS NN VBD IN DT CD JJ NNS VBD VBN VBN IN DT NN NN : JJ IN JJ NN , NNS CC NNS .\nJapan 's foreign minister is in Afghanistan on an unannounced visit to meet with President Hamid Karzai and Foreign Minister Rangin Dadfar Spanta .\tNNP POS JJ NN VBZ IN NNP IN DT JJ NN TO VB IN NNP NNP NNP CC NNP NNP NNP NNP NNP .\nMasahiko Komuri arrived in Kabul Sunday after a visit to Pakistan .\tNNP NNP VBD IN NNP NNP IN DT NN TO NNP .\nHe was expected to discuss security issues and Afghan reconstruction with Mr. Karzai and with Spanta .\tPRP VBD VBN TO VB NN NNS CC JJ NN IN NNP NNP CC IN NNP .\nThe French news agency reports that Komura asked his Afghan counterpart to work on improving relations with Pakistan .\tDT JJ NN NN NNS IN NNP VBD PRP$ JJ NN TO VB IN VBG NNS IN NNP .\nThe two nations have been struggling with armed militants sheltering along their mutual border .\tDT CD NNS VBP VBN VBG IN JJ NNS VBG IN PRP$ JJ NN .\nJapan said Komuri 's visit was not announced ahead of time because of safety concerns .\tNNP VBD NNP POS NN VBD RB VBN RB IN NN IN IN NN NNS .\nPresident Karzai was the target of a bomb attack on April 27 .\tNNP NNP VBD DT NN IN DT NN NN IN NNP CD .\nIn Pakistan Saturday , Komuri met with President Pervez Musharraf and Prime Minister Yousuf Raza Gilani , as well as Foreign Minister Shah Mehmood Qureshi .\tIN NNP NNP , NNP VBD IN NNP NNP NNP CC NNP NNP NNP NNP NNP , RB RB IN NNP NNP NNP NNP NNP .\nTalks there centered on terrorism and cooperation on infrastructure projects .\tNNS RB VBD IN NN CC NN IN NN NNS .\nShops and schools are closed in the main city of Indian Kashmir in protest of Israel 's continuing air strikes on southern Lebanon .\tNNS CC NNS VBP VBN IN DT JJ NN IN JJ NNP IN NN IN NNP POS VBG NN NNS IN JJ NNP .\nThe one-day strike Saturday in Kashmir 's summer capital of Srinagar was called by Syed Ali Geelani .\tDT JJ NN NNP IN NNP POS NN NN IN NNP VBD VBN IN NNP NNP NNP .\nHe heads the hard-line wing of the separatist alliance , the All Parties Hurriyat Conference .\tPRP VBZ DT JJ NN IN DT JJ NN , DT NNP NNP NNP NNP .\nAngry protests were held in several parts of India Friday against Israel 's military action .\tJJ NNS VBD VBN IN JJ NNS IN NNP NNP IN NNP POS JJ NN .\nProtests erupted soon after Muslim prayers Friday afternoon in Kashmir .\tNNS VBD RB IN NNP NNS NNP NN IN NNP .\nKashmir is divided between India and Pakistan and is claimed in full by both\tNNP VBZ VBN IN NNP CC NNP CC VBZ VBN IN JJ IN DT\nHaitian authorities said three inmates were killed Sunday in a prison riot in Haiti 's quake-damaged penitentiary .\tJJ NNS VBD CD NNS VBD VBN NNP IN DT NN NN IN NNP POS JJ NN .\nOfficials said the three were trying to escape from the Port-au-Prince prison .\tNNS VBD DT CD VBD VBG TO VB IN DT NN NN .\nIt was not immediately clear if any other inmates did escape .\tPRP VBD RB RB JJ IN DT JJ NNS VBD NN .\nUnited Nations troops and Haitian police were in the prison at the time of the uprising .\tNNP NNP NNS CC JJ NNS VBD IN DT NN IN DT NN IN DT NN .\nThe U.N. said the inmates briefly held seven people connected with the United Nations hostage .\tDT NNP VBD DT NNS RB VBD CD NNS VBN IN DT NNP NNP NN .\nSome of the hostages suffered minor injuries .\tDT IN DT NNS VBD JJ NNS .\nThe Miami Herald newspaper reports the prison upheaval was quashed by mid-afternoon when U.N. troops blocked off the streets surrounding the prison .\tDT NNP NNP NN VBZ DT NN NN VBD VBN IN NN WRB NNP NNS VBD RP DT NNS VBG DT NN .\nSunday 's uprising continues a long saga of unrest and dangerous conditions in Haiti 's prisons .\tNNP POS NN VBZ DT JJ NN IN NN CC JJ NNS IN NNP POS NNS .\nIn the chaos after Haiti 's devastating earthquake in January , thousands of prisoners escaped the massively overcrowded penitentiary , including some well-known , dangerous gang leaders .\tIN DT NN IN NNP POS JJ NN IN NNP , NNS IN NNS VBD DT RB JJ NN , VBG DT JJ , JJ NN NNS .\nA prominent U.S. Republican lawmaker is criticizing CNN for airing a video from Iraqi insurgents showing a U.S. soldier in Iraq getting shot by a sniper .\tDT JJ NNP NNP NN VBZ VBG NNP IN VBG DT NN IN JJ NNS VBG DT NNP NN IN NNP VBG VBN IN DT NN .\nRepresentative Duncan Hunter of California , who chairs the House Armed Services Committee , has sent a letter to Defense Secretary Donald Rumsfeld saying the U.S.-based network served as ' the publicist for an enemy propaganda film . '\tNNP NNP NNP IN NNP , WP VBZ DT NNP NNP NNPS NNP , VBZ VBN DT NN TO NNP NNP NNP NNP VBG DT JJ NN VBD IN `` DT NN IN DT NN NN NN . ``\nCNN first aired the video Wednesday .\tNNP RB VBD DT NN NNP .\nA CNN producer says the network broadcast the video ' to present the unvarnished truth ' about the situation in Iraq .\tDT NNP NN VBZ DT NN VBD DT NN `` TO VB DT JJ NN `` IN DT NN IN NNP .\nBut in his letter to Rumsfeld , Hunter denounces the film as ' nothing short of a terrorist snuff film . '\tCC IN PRP$ NN TO NNP , NNP VBZ DT NN IN `` DT NN IN DT JJ NN NN . ``\nHe is demanding that any CNN reporters embedded with U.S. forces in Iraq be expelled .\tPRP VBZ VBG IN DT NNP NNS VBD IN NNP NNS IN NNP VB VBN .\nIntegra-A Hotel & Restaurant Co. said its planned rights offering to raise about $ 9 million was declared effective and the company will begin mailing materials to shareholders at the end of this week .\tNNP NNP CC NNP NNP VBD PRP$ VBN NNS NN TO VB IN $ CD CD VBD VBN JJ CC DT NN MD VB VBG NNS TO NNS IN DT NN IN DT NN .\nUnder the offer , shareholders will receive one right for each 105 common shares owned .\tIN DT NN , NNS MD VB CD NN IN DT CD JJ NNS VBN .\nEach right entitles the shareholder to buy $ 100 face amount of 13.5 % bonds due 1993 and warrants to buy 23.5 common shares at 30 cents a share .\tDT NN VBZ DT NN TO VB $ CD NN NN IN CD NN NNS JJ CD CC NNS TO VB CD JJ NNS IN CD NNS DT NN .\nThe rights , which expire Nov. 21 , can be exercised for $ 100 each .\tDT NNS , WDT VBP NNP CD , MD VB VBN IN $ CD DT .\nIntegra , which owns and operates hotels , said that Hallwood Group Inc. has agreed to exercise any rights that are n't exercised by other shareholders .\tNNP , WDT VBZ CC VBZ NNS , VBD IN NNP NNP NNP VBZ VBN TO VB DT NNS WDT VBP RB VBN IN JJ NNS .\nHallwood , a Cleveland merchant bank , owns about 11 % of Integra .\tNNP , DT NNP NN NN , VBZ IN CD NN IN NNP .\nHaving a small , open economy makes Macedonia vulnerable to economic developments in Europe and dependent on regional integration and progress toward EU membership for continued economic growth .\tVBG DT JJ , JJ NN VBZ NNP JJ TO JJ NNS IN NNP CC JJ IN JJ NN CC NN IN NNP NN IN JJ JJ NN .\nAt independence in September 1991 , Macedonia was the least developed of the Yugoslav republics , producing a mere 5 % of the total federal output of goods and services .\tIN NN IN NNP CD , NNP VBD DT JJS VBN IN DT JJ NNS , VBG DT JJ CD NN IN DT JJ JJ NN IN NNS CC NNS .\nThe collapse of Yugoslavia ended transfer payments from the central government and eliminated advantages from inclusion in a de~facto free trade area .\tDT NN IN NNP VBD NN NNS IN DT JJ NN CC VBD NNS IN NN IN DT JJ JJ NN NN .\nAn absence of infrastructure , UN sanctions on the downsized Yugoslavia , and a Greek economic embargo over a dispute about the country 's constitutional name and flag hindered economic growth until 1996 .\tDT NN IN NN , NNP NNS IN DT JJ NNP , CC DT JJ JJ NN IN DT NN IN DT NN POS JJ NN CC NN VBD JJ NN IN CD .\nSince then , Macedonia has maintained macroeconomic stability with low inflation , but it has so far lagged the region in attracting foreign investment and creating jobs , despite making extensive fiscal and business sector reforms .\tIN RB , NNP VBZ VBN JJ NN IN JJ NN , CC PRP VBZ RB RB VBN DT NN IN VBG JJ NN CC VBG NNS , IN VBG JJ JJ CC NN NN NNS .\nOfficial unemployment remains high at 31.7 % , but may be overstated based on the existence of an extensive gray market , estimated to be more than 20 % of GDP , that is not captured by official statistics .\tJJ NN VBZ JJ IN CD NN , CC MD VB VBN VBN IN DT NN IN DT JJ JJ NN , VBN TO VB JJR IN CD NN IN NN , WDT VBZ RB VBN IN JJ NNS .\nIn the wake of the global economic downturn , Macedonia has experienced decreased foreign direct investment , lowered credit , and a large trade deficit .\tIN DT NN IN DT JJ JJ NN , NNP VBZ VBN VBN JJ JJ NN , VBN NN , CC DT JJ NN NN .\nHowever , as a result of conservative fiscal policies and a sound financial system , in 2010 the country received slightly improved credit ratings .\tRB , IN DT NN IN JJ JJ NNS CC DT JJ JJ NN , IN CD DT NN VBD RB VBN NN NNS .\nMacroeconomic stability also was maintained by a prudent monetary policy , which kept the domestic currency at the pegged level against the euro , while interest rates were falling .\tJJ NN RB VBD VBN IN DT JJ JJ NN , WDT VBD DT JJ NN IN DT VBN NN IN DT NN , IN NN NNS VBD VBG .\nAs a result , GDP growth was modest , but positive , in 2010 .\tIN DT NN , NN NN VBD JJ , CC JJ , IN CD .\nIn late 1999 , about 70 % of the economic infrastructure of Timor-Leste was laid waste by Indonesian troops and anti-independence militias .\tIN JJ CD , IN CD NN IN DT JJ NN IN NN VBD VBN NN IN JJ NNS CC JJ NNS .\nThree hundred thousand people fled westward .\tCD CD CD NNS VBD RB .\nOver the next three years a massive international program , manned by 5,000 peacekeepers ( 8,000 at peak ) and 1,300 police officers , led to substantial reconstruction in both urban and rural areas .\tIN DT JJ CD NNS DT JJ JJ NN , VBN IN CD NNS LRB CD IN NN RRB CC CD NN NNS , VBD TO JJ NN IN DT JJ CC JJ NNS .\nBy the end of 2005 , refugees had returned or had settled in Indonesia .\tIN DT NN IN CD , NNS VBD VBN CC VBN VBN IN NNP .\nThe country continues to face great challenges in rebuilding its infrastructure , strengthening the civil administration , and generating jobs for young people entering the work force .\tDT NN VBZ TO VB JJ NNS IN VBG PRP$ NN , VBG DT JJ NN , CC VBG NNS IN JJ NNS VBG DT NN NN .\nThe development of oil and gas resources in offshore waters has greatly supplemented government revenues .\tDT NN IN NN CC NN NNS IN JJ NNS VBZ RB VBN NN NNS .\nThis technology-intensive industry , however , has done little to create jobs for the unemployed because there are no production facilities in Timor-Leste .\tDT JJ NN , RB , VBZ VBN RB TO VB NNS IN DT JJ IN EX VBP DT NN NNS IN NNP .\nGas is piped to Australia .\tNNP VBZ VBN TO NNP .\nIn June 2005 , the National Parliament unanimously approved the creation of a Petroleum Fund to serve as a repository for all petroleum revenues and to preserve the value of Timor-Leste 's petroleum wealth for future generations .\tIN NNP CD , DT NNP NNP RB VBD DT NN IN DT NNP NNP TO VB IN DT NN IN DT NN NNS CC TO VB DT NN IN NNP POS NN NN IN JJ NNS .\nThe Fund held assets of US $ 6.6 billion as of October 2010 .\tDT NNP VBD NNS IN NNP $ CD CD IN IN NNP CD .\nThe economy continues to recover strongly from the mid-2006 outbreak of violence and civil unrest , which disrupted both private and public sector economic activity .\tDT NN VBZ TO VB RB IN DT JJ NN IN NN CC JJ NN , WDT VBD DT JJ CC JJ NN JJ NN .\nThe government in 2008 resettled tens of thousands of an estimated 1,00,000 internally displaced persons ( IDPs ) ; most IDPs returned home by early 2009 .\tDT NN IN CD VBD NNS IN NNS IN DT VBN CD RB JJ NNS LRB NNP RRB ; RBS NNPS VBD NN IN RB CD .\nGovernment spending increased markedly in 2009 and 2010 , primarily on basic infrastructure , including electricity and roads .\tNN NN VBD RB IN CD CC CD , RB IN JJ NN , VBG NN CC NNS .\nLimited experience in procurement and infrastructure building has hampered these projects .\tJJ NN IN NN CC NN NN VBZ VBN DT NNS .\nThe underlying economic policy challenge the country faces remains how best to use oil-and-gas wealth to lift the non-oil economy onto a higher growth path and to reduce poverty .\tDT JJ JJ NN NN DT NN VBZ VBZ WRB JJS TO VB JJ NN TO VB DT JJ NN IN DT JJR NN NN CC TO VB NN .\nFinland was a province and then a grand duchy under Sweden from the 12th to the 19th centuries , and an autonomous grand duchy of Russia after 1809 .\tNNP VBD DT NN CC RB DT JJ NN IN NNP IN DT CD TO DT JJ NNS , CC DT JJ JJ NN IN NNP IN CD .\nIt won its complete independence in 1917 .\tPRP VBD PRP$ JJ NN IN CD .\nDuring World War II , it was able to successfully defend its freedom and resist invasions by the Soviet Union - albeit with some loss of territory .\tIN NNP NNP NNP , PRP VBD JJ TO RB VB PRP$ NN CC VB NNS IN DT NNP NNP : IN IN DT NN IN NN .\nIn the subsequent half century , the Finns made a remarkable transformation from a farm / forest economy to a diversified modern industrial economy ; per capita income is now among the highest in Western Europe .\tIN DT JJ NN NN , DT NNS VBD DT JJ NN IN DT NN NN NN NN TO DT JJ JJ JJ NN ; IN NN NN VBZ RB IN DT JJS IN NNP NNP .\nA member of the European Union since 1995 , Finland was the only Nordic state to join the euro system at its initiation in January 1999 .\tDT NN IN DT NNP NNP IN CD , NNP VBD DT JJ JJ NN TO VB DT NN NN IN PRP$ NN IN NNP CD .\nIn the 21st century , the key features of Finland 's modern welfare state are a high standard of education , equality promotion , and national social security system - currently challenged by an aging population and the fluctuations of an export-driven economy .\tIN DT JJ NN , DT JJ NNS IN NNP POS JJ NN NN VBP DT JJ NN IN NN , NN NN , CC JJ JJ NN NN : RB VBN IN DT VBG NN CC DT NNS IN DT JJ NN .\nAlthough 115 species of fish have been identified in the territorial waters of Clipperton Island , the only economic activity is tuna fishing .\tIN CD NNS IN NN VBP VBN VBN IN DT JJ NNS IN NNP NNP , DT JJ JJ NN VBZ JJ NN .\nA RAVEN saw a Swan and desired to secure for himself the same beautiful plumage .\tDT NN VBD DT NN CC VBN TO VB IN PRP DT JJ JJ NN .\nSupposing that the Swan 's splendid white color arose from his washing in the water in which he swam , the Raven left the altars in the neighborhood where he picked up his living , and took up residence in the lakes and pools .\tVBG IN DT NN POS JJ JJ NN VBD IN PRP$ NN IN DT NN IN WDT PRP VBD , DT NN VBD DT NNS IN DT NN WRB PRP VBD RP PRP$ NN , CC VBD RP NN IN DT NNS CC NNS .\nBut cleansing his feathers as often as he would , he could not change their color , while through want of food he perished .\tCC VBG PRP$ NNS RB RB IN PRP MD , PRP MD RB VB PRP$ NN , IN IN VBP IN NN PRP VBD .\nChange of habit can not alter Nature .\tNNP IN NN MD RB VB NN .\nA BOY was stung by a Nettle .\tDT NN VBD VBN IN DT NN .\nHe ran home and told his Mother , saying , ' Although it hurts me very much , I only touched it gently . '\tPRP VBD NN CC VBD PRP$ NNP , VBG , `` IN PRP VBZ PRP RB RB , PRP RB VBD PRP RB . ``\n' That was just why it stung you , ' said his Mother .\t`` DT VBD RB WRB PRP VBD PRP , `` VBD PRP$ NNP .\n' The next time you touch a Nettle , grasp it boldly , and it will be soft as silk to your hand , and not in the least hurt you . '\t`` DT JJ NN PRP VB DT NN , VB PRP RB , CC PRP MD VB JJ IN NN TO PRP$ NN , CC RB IN DT JJS NN PRP . ``\nWhatever you do , do with all your might .\tWDT PRP VBP , VB IN DT PRP$ NN .\nThe wind blew so much dust around the field today , we could n't even see who was beating us .\tDT NN VBD RB JJ NN IN DT NN NN , PRP MD RB RB VB WP VBD VBG PRP .\nPhilosophy is a game with objectives and no rules .\tNN VBZ DT NN IN NNS CC DT NNS .\nMathematics is a game with rules and no objectives .\tNN VBZ DT NN IN NNS CC DT NNS .\nKids in the back seat cause accidents .\tNNS IN DT JJ NN VBP NNS .\nAccidents in the back seat cause kids .\tNNS IN DT JJ NN VBP NNS .\nThe greatest financier in the Bible was the Pharaoh 's daughter .\tDT JJS NN IN DT NNP VBD DT NNP POS NN .\nOne day she went down to the Bank of the Nile and drew out a little prophet .\tCD NN PRP VBD RB TO DT NNP IN DT NNP CC VBD RP DT JJ NN .\nHelium was up .\tNNP VBD RB .\nFeathers were down .\tNNS VBD RB .\nPaper was stationary .\tNN VBD JJ .\nKnives were up sharply .\tNNS VBD RB RB .\nPencils lost a few points .\tNNS VBD DT JJ NNS .\nHiking equipment was trailing .\tVBG NN VBD VBG .\nElevators rose , while escalators continued a slow decline .\tNNS VBD , IN NNS VBD DT JJ NN .\nLight switches were off .\tNN NNS VBD RB .\nMining equipment hit rock bottom .\tNN NN VBD NN NN .\nDiapers remained unchanged .\tNNS VBD JJ .\nShipping lines stayed at an even keel .\tVBG NNS VBD IN DT RB NN .\nBalloon prices were inflated .\tNN NNS VBD VBN .\nAnd batteries exploded in an attempt to recharge the market .\tCC NNS VBD IN DT NN TO VB DT NN .\nA new public opinion poll indicates that Americans ' support for the war in Iraq is at its lowest ever - and that in the aftermath of Hurricane Katrina , most Americans are concerned Iraq is draining money and resources needed at home .\tDT JJ JJ NN NN VBZ IN NNS POS NN IN DT NN IN NNP VBZ IN PRP$ JJS RB : CC IN IN DT NN IN NNP NNP , JJS NNS VBP JJ NNP VBZ VBG NN CC NNS VBN IN NN .\nIn a New York Times / CBS poll released Saturday , a record low number of those surveyed - only 44 percent - said the United States made the right decision in going to war in Iraq .\tIN DT NNP NNP NNP CC NNP NN VBN NNP , DT NN JJ NN IN DT VBN : RB CD NN : VBD DT NNP NNPS VBD DT JJ NN IN VBG TO NN IN NNP .\nFifty-two percent wanted troops to be withdrawn as soon as possible , even if it means leaving the country unstable .\tCD NN VBD NNS TO VB VBN RB RB IN JJ , RB IN PRP VBZ VBG DT NN JJ .\nNinety percent said they would oppose cutting spending on domestic programs to continue funding the war .\tCD NN VBD PRP MD VB VBG NN IN JJ NNS TO VB VBG DT NN .\nThe nationwide poll of more than 1,000 adults was conducted September 9 through 13 .\tDT JJ NN IN JJR IN CD NNS VBD VBN NNP CD IN CD .\nThe United Nations food agency says a lack of funds has left three million Ethiopians who rely on food aid in danger of malnutrition .\tDT NNP NNP NN NN VBZ DT NN IN NNS VBZ VBN CD CD NNS WP VBP IN NN NN IN NN IN NN .\nThe World Food Program ( WFP ) appealed for $ 33 million Tuesday so that it can continue providing food in Ethiopia for the next two and a half months .\tDT NNP NNP NNP LRB NNP RRB VBD IN $ CD CD NNP RB IN PRP MD VB VBG NN IN NNP IN DT JJ CD CC DT JJ NNS .\nIt says it has received only slightly more than half of the $ 212 million it needs this year for food aid in Ethiopia .\tPRP VBZ PRP VBZ VBN RB RB JJR IN NN IN DT $ CD CD PRP VBZ DT NN IN NN NN IN NNP .\nThe agency says it has less than 20 percent of what it needs for non-food items such as health , water and sanitation facilities .\tDT NN VBZ PRP VBZ JJR IN CD NN IN WP PRP VBZ IN JJ NNS JJ IN NN , NN CC NN NNS .\nThe WFP says malnutrition rates are on the rise in Ethiopia , with the situation especially bad in the eastern Somali region .\tDT NNP VBZ NN NNS VBP IN DT NN IN NNP , IN DT NN RB JJ IN DT JJ JJ NN .\nThere , the WFP says nearly five percent of children are severely malnourished .\tRB , DT NNP VBZ RB CD NN IN NNS VBP RB VBN .\nU.S. military officials say elements of the Russian Air Force will join U.S. and Canadian air units in the first-ever joint air defense exercises between the former Cold War foes .\tNNP JJ NNS VBP NNS IN DT JJ NNP NNP MD VB NNP CC JJ NN NNS IN DT JJ JJ NN NN NNS IN DT JJ NNP NNP NNS .\nA statement from the North American Aerospace Defense Command , NORAD , says the maneuvers - set to begin August 8 - will include training to detect and combat terrorist attacks on commercial airliners .\tDT NN IN DT NNP NNP NNP NNP NNP , NNP , VBZ DT NNS IN VBN TO VB NNP CD : MD VB NN TO VB CC VB JJ NNS IN JJ NNS .\nThe exercises , code-named Vigilant Eagle , will be coordinated from a U.S. military command center at Elmendorf air base in Alaska and Russian facilities near the Far Eastern city of Khabarovsk .\tDT NNS , JJ NNP NNP , MD VB VBN IN DT NNP JJ NN NN IN NNP NN NN IN NNP CC JJ NNS IN DT NNP NNP NN IN NNP .\nRussian Air Force spokesman , Lieutenant Colonel Vladimir Drik , described the exercises as part of a working plan to improve cooperation between Russian and U.S. forces .\tJJ NNP NNP NN , NNP NNP NNP NNP , VBD DT NNS IN NN IN DT VBG NN TO VB NN IN JJ CC NNP NNS .\nA NORAD statement said the maneuvers will require both the Russian and NORAD bases to launch or divert fighter planes to investigate and shadow commercial aircraft .\tDT NNP NN VBD DT NNS MD VB DT DT JJ CC NNP NNS TO VB CC VB NN NNS TO VB CC VB JJ NN .\nA U.S. general says Iraqi investigators have broken up a ring of police officers who were kidnapping people , extorting ransoms and sometimes killing their victims .\tDT NNP NN VBZ JJ NNS VBP VBN RP DT NN IN NN NNS WP VBD VBG NNS , VBG NNS CC RB VBG PRP$ NNS .\nIn an interview with the USA Today newspaper , Major General Joseph Peterson said the unit is alleged to have operated in northern Baghdad , under the command of an Iraqi police general .\tIN DT NN IN DT NNP NNP NN , NNP NNP NNP NNP VBD DT NN VBZ VBN TO VB VBN IN JJ NNP , IN DT NN IN DT JJ NN NN .\nGeneral Peterson said the police general , who was not identified , was arrested and then released last month .\tNNP NNP VBD DT NN NN , WP VBD RB VBN , VBD VBN CC RB VBN JJ NN .\nHe is said to remain under investigation .\tPRP VBZ VBN TO VB IN NN .\nHe said 17 others linked to the alleged ring remain in custody .\tPRP VBD CD NNS VBN TO DT JJ NN VBP IN NN .\nAllegations of Iraqi police death squads operating in Iraq 's Shi'ite-dominated security forces have circulated widely in recent weeks .\tNNS IN JJ NN NN NNS VBG IN NNP POS JJ NN NNS VBP VBN RB IN JJ NNS .\nHundreds of bodies - many of them showing signs of torture - have turned up in and around the capital since the February 22 bombing of a major Shi'ite shrine near Baghdad .\tNNS IN NNS IN NN IN PRP VBG NNS IN NN : VBP VBN RP IN CC IN DT NN IN DT NNP CD NN IN DT JJ NNP NN IN NNP .\nAt least 35,000 people have rallied in Pakistan 's largest city , Karachi , to protest controversial cartoons depicting the Prophet Muhammad .\tIN JJS CD NNS VBP VBN IN NNP POS JJS NN , NNP , TO VB JJ NNS VBG DT NNP NNP .\nShouting anti-American and anti-European slogans , the demonstrators marched through the city to denounce the cartoons , first published in Denmark last September .\tVBG JJ CC JJ NNS , DT NNS VBD IN DT NN TO VB DT NNS , RB VBN IN NNP JJ NNP .\nA coalition of radical Islamic groups which opposes President Pervez Musharraf 's support for the U.S.-led war on terror organized Sunday 's rally .\tDT NN IN JJ NNP NNS WDT VBZ NNP NNP NNP POS NN IN DT JJ NN IN NN VBN NNP POS NN .\nHundreds of riot police closely watched the gathering but no violence was reported .\tNNS IN NN NN RB VBD DT NN CC DT NN VBD VBN .\nSome protests in Pakistan have turned deadly and at least five people died in rioting last month .\tDT NNS IN NNP VBP VBN JJ CC IN JJS CD NNS VBD IN NN JJ NN .\nIraqi officials say former dictator Saddam Hussein will go on trial in the second half of October , so as not to affect the outcome of a national referendum on the constitution to be held October 15 .\tJJ NNS VBP JJ NN NNP NNP MD VB IN NN IN DT JJ NN IN NNP , RB IN RB TO VB DT NN IN DT JJ NN IN DT NN TO VB VBN NNP CD .\nNo official announcement has come from the Iraqi Special Tribunal in charge of the trials , but officials close to the case said Friday that Saddam Hussein will be tried for the 1982 killing of dozens of residents of the town of Dujail .\tDT NN NN VBZ VBN IN DT JJ NNP NNP IN NN IN DT NNS , CC NNS RB TO DT NN VBD NNP IN NNP NNP MD VB VBN IN DT CD NN IN NNS IN NNS IN DT NN IN NNP .\nThe killings were allegedly in retaliation for a failed assassination attempt against him there .\tDT NNS VBD RB IN NN IN DT JJ NN NN IN PRP RB .\nLater , Saddam Hussein is expected to be tried for other alleged crimes , including the 1988 gassing of Kurds in Halabja and the 1991 suppression of a Shi'ite uprising in southern Iraq .\tRB , NNP NNP VBZ VBN TO VB VBN IN JJ JJ NNS , VBG DT CD NN IN NNS IN NNP CC DT CD NN IN DT NNP NN IN JJ NNP .\nA U.S. official says the United States is willing to give Iran more time to consider a key uranium enrichment deal that will yield fuel for an Iranian nuclear research reactor .\tDT NNP NN VBZ DT NNP NNPS VBZ JJ TO VB NNP JJR NN TO VB DT JJ NN NN NN WDT MD VB NN IN DT JJ JJ NN NN .\nWashington 's envoy to the International Atomic Energy Agency , Glyn Davies , told reporters in Vienna Monday that , in his words , ' we want to give Iran some space . '\tNNP POS NN TO DT NNP NNP NNP NNP , NNP NNP , VBD NNS IN NNP NNP IN , IN PRP$ NNS , `` PRP VBP TO VB NNP DT NN . ``\nDavies also noted the negotiations have gone beyond the scheduled time frame .\tNNP RB VBD DT NNS VBP VBN IN DT JJ NN NN .\nIran has not officially responded to a U.N.-backed uranium-enrichment proposal that was drafted three weeks ago in Vienna .\tNNP VBZ RB RB VBD TO DT JJ NN NN WDT VBD VBN CD NNS RB IN NNP .\nBut leading Iranian parliamentarian Alaeddin Boroujerdi Saturday indicated Tehran will reject the plan to send any of its 1,200 kilograms of enriched uranium abroad for further enrichment .\tCC VBG JJ NN NNP NNP NNP VBD NNP MD VB DT NN TO VB DT IN PRP$ CD NNS IN VBN NN RB IN JJ NN .\nIAEA chief Mohamed ElBaradei had asked for the parties involved with the proposal ( Iran , the United States , Russia and France ) to respond by October 23 .\tNNP NN NNP NNP VBD VBN IN DT NNS VBN IN DT NN LRB NNP , DT NNP NNPS , NNP CC NNP RRB TO VB IN NNP CD .\nThe U.S. Senate has been debating a military funding bill that would require President Bush to begin withdrawing troops from Iraq in October .\tDT NNP NNP VBZ VBN VBG DT JJ NN NN WDT MD VB NNP NNP TO VB VBG NNS IN NNP IN NNP .\nThe measure is expected to pass Thursday in the Democratic-controlled Senate .\tDT NN VBZ VBN TO VB NNP IN DT JJ NNP .\nThe legislation sets a non-binding goal of withdrawing U.S. troops from Iraq by April of next year .\tDT NN VBZ DT JJ NN IN VBG NNP NNS IN NNP IN NNP IN JJ NN .\nIt also sets benchmarks for Iraq 's government to show progress in securing the country .\tPRP RB VBZ NNS IN NNP POS NN TO VB NN IN VBG DT NN .\nThe Democratic-controlled U.S. House of Representatives approved a similar measure Wednesday .\tDT JJ NNP NNP IN NNP VBD DT JJ NN NNP .\nWhite House spokeswoman Dana Perino said President Bush will veto the legislation ' very soon ' after it arrives on his desk .\tNNP NNP NN NNP NNP VBD NNP NNP MD VB DT NN `` RB RB `` IN PRP VBZ IN PRP$ NN .\nThe House measure lacked the two-thirds majority needed to override a veto , and the Senate measure is not expected to have enough votes to override a veto , either .\tDT NNP NN VBD DT NNS NN VBN TO VB DT NN , CC DT NNP NN VBZ RB VBN TO VB JJ NNS TO VB DT NN , RB .\nThe Senate bill includes some $ 95 billion to fund military operations in Iraq and Afghanistan through the end of September .\tDT NNP NN VBZ DT $ CD CD TO VB JJ NNS IN NNP CC NNP IN DT NN IN NNP .\nAmnesty International says Taleban insurgents are deliberately targeting civilians in Afghanistan to instill fear and exert control over the population .\tNNP NNP VBZ NNP NNS VBP RB VBG NNS IN NNP TO VB NN CC NN NN IN DT NN .\nThe London-based rights group said Thursday that civilians are increasingly facing suicide attacks , abductions and beheadings .\tDT JJ NNS NN VBD NNP IN NNS VBP RB VBG NN NNS , NNS CC NNS .\nThe organization said Taleban militants have a deliberate policy of killing teachers , abducting aid workers and burning school buildings .\tDT NN VBD NNP NNS VBP DT JJ NN IN VBG NNS , VBG NN NNS CC NN NN NNS .\nIt said targets also include women 's rights activists , clerics , government and health workers and teachers .\tPRP VBD NNS RB VBP NNS POS NNS NNS , NNS , NN CC NN NNS CC NNS .\nAmnesty said at least 756 civilians were killed in 2006 , mostly from roadside bombs and suicide attacks .\tNNP VBD IN JJS CD NNS VBD VBN IN CD , RB IN NN NNS CC NN NNS .\nOn Wednesday , a U.S. commander in eastern Afghanistan said an expected Taleban offensive has not materialized , partly because of increased operations by U.S. and NATO forces .\tIN NNP , DT NNP NN IN JJ NNP VBD DT VBN NNP NN VBZ RB VBN , RB IN IN VBN NNS IN NNP CC NNP NNS .\nBrigadier General Joseph Votel says there are clashes every day , but they are mostly small scale .\tNN NNP NNP NNP VBZ EX VBP NNS DT NN , CC PRP VBP RB JJ NN .\nU.S. Treasury Secretary Henry Paulson is warning against irresponsible borrowing or lending to countries that have recently received debt relief .\tNNP NNP NNP NNP NNP VBZ VBG IN JJ NN CC NN TO NNS WDT VBP RB VBN NN NN .\nSpeaking in Singapore Monday to the World Bank 's policy-setting committee , Paulson said the organization should develop an approach that prevents a reemergence of debt distress .\tVBG IN NNP NNP TO DT NNP NNP POS JJ NN , NNP VBD DT NN MD VB DT NN WDT VBZ DT NN IN NN NN .\nHe did not single out any country , but stressed that creditors are still providing large loans to countries that have recently received debt relief .\tPRP VBD RB VB RP DT NN , CC VBD IN NNS VBP RB VBG JJ NNS TO NNS WDT VBP RB VBN NN NN .\nChina , in particular , has come under fire for providing loans to many countries in Africa that have only recently had large debts forgiven .\tNNP , IN JJ , VBZ VBN IN NN IN VBG NNS TO JJ NNS IN NNP WDT VBP RB RB VBD JJ NNS VBN .\nAnnual meetings of the World Bank and International Monetary Fund take place in Singapore Tuesday and Wednesday .\tJJ NNS IN DT NNP NNP CC NNP NNP NNP VB NN IN NNP NNP CC NNP .\nSliders Preston Griffal and Dan Joye have earned the second U.S. Olympic luge team doubles berth by beating countrymen Christian Niccum and Patrick Quinn .\tNNS NNP NNP CC NNP NNP VBP VBN DT JJ NNP NNP NN NN VBZ JJ IN VBG NNS NNP NNP CC NNP NNP .\nGriffal and Joye won in the two-run competition by 0.12 seconds Wednesday in Lake Placid , New York .\tNNP CC NNP VBD IN DT JJ NN IN CD NNS NNP IN NNP NNP , NNP NNP .\nThey will join two-time Olympic medalists Mark Grimmette and Brian Martinin the doubles competition .\tPRP MD VB JJ NNP NNS NNP NNP CC NNP NNP DT NNS NN .\nNiccum will still compete in singles luge but Quinn will not compete in the Turin Winter Games .\tNNP MD RB VB IN NNS VBP CC NNP MD RB VB IN DT NNP NNP NNPS .\nMeanwhile , the final men 's singles spot on the U.S. team goes to Jonathan Myles , who beat compatriot Chris Mazdzer by 0.161 seconds .\tRB , DT JJ NNS POS NNS NN IN DT NNP NN VBZ TO NNP NNP , WP VBD NN NNP NNP IN CD NNS .\nMyles and Niccum join medal hopeful Tony Benshoofin the men 's singles .\tNNP CC NNP VBP JJ JJ NNP NNP DT NNS POS NNS .\nThe U.S. women 's luge team , named last week , will be Samantha Retrosi , Erin Hamlin and Courtney Zablocki .\tDT NNP NNS POS NN NN , VBN JJ NN , MD VB NNP NNP , NNP NNP CC NNP NNP .\nA top U.S. lawmaker says he has urged North Korea to return to the six-party talks over its nuclear weapons program .\tDT JJ NNP NN VBZ PRP VBZ VBN NNP NNP TO VB TO DT JJ NNS IN PRP$ JJ NNS NN .\nCongressman Tom Lantos - a Democrat from the western U.S. state of California - spoke in Beijing Tuesday after three days of talks with high-ranking North Korean officials including the vice president of the Presidium of the Supreme People 's Assembly , Yang Hyong-sop , and Foreign Minister Paek Nam Sun .\tNNP NNP NNP IN DT NNP IN DT JJ NNP NN IN NNP : VBD IN NNP NNP IN CD NNS IN NNS IN JJ JJ JJ NNS VBG DT NN NN IN DT NN IN DT NNP NNP POS NNP , NNP NNP , CC NNP NNP NNP NNP NNP .\nMr. Lantos says the officials told him they support a resumption of the talks , but want to see the shape of President Bush 's second administration before making any commitments .\tNNP NNP VBZ DT NNS VBD PRP PRP VBP DT NN IN DT NNS , CC VBP TO VB DT NN IN NNP NNP POS JJ NN IN VBG DT NNS .\nHowever , Mr. Lantos says there is no reason for Pyongyang to expect a significant change in U.S. policy towards the Korean peninsula .\tRB , NNP NNP VBZ EX VBZ DT NN IN NNP TO VB DT JJ NN IN NNP NN IN DT JJ NN .\nNorth Korea has participated in three rounds of multi-party talks on its nuclear ambitions , but boycotted a fourth round scheduled for September because of what it called Washington 's hostile policy .\tNNP NNP VBZ VBN IN CD NNS IN JJ NNS IN PRP$ JJ NNS , CC VBD DT JJ NN VBN IN NNP IN IN WP PRP VBD NNP POS JJ NN .\nIraqi police say a car bomb has killed at least five people and wounded 17 others in Baghdad , shattering a lull in insurgent attacks in the Iraqi capital .\tJJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS CC VBD CD NNS IN NNP , VBG DT NN IN JJ NNS IN DT JJ NN .\nIraqi and U.S. forces launched a massive sweep for militants in Baghdad two weeks ago .\tJJ CC NNP NNS VBD DT JJ NN IN NNS IN NNP CD NNS RB .\nAbout 1,000 suspects have been arrested and the number of attacks has dropped .\tIN CD NNS VBP VBN VBN CC DT NN IN NNS VBZ VBN .\nBut a U.S. military commander says he can not declare victory and warns that insurgents are looking for the chance to carry out large-scale attacks in Baghdad .\tCC DT NNP JJ NN VBZ PRP MD RB VB NN CC VBZ IN NNS VBP VBG IN DT NN TO VB RP JJ NNS IN NNP .\nThe U.S military says a roadside bomb killed five Marines Thursday in Iraq 's western Anbar province .\tDT NNP NN VBZ DT NN NN VBD CD NNS NNP IN NNP POS JJ NNP NN .\nAlso in Anbar Friday , police found the bodies of 21 Iraqi men who were apparently executed .\tRB IN NNP NNP , NN VBD DT NNS IN CD JJ NNS WP VBD RB VBN .\nSome of them had been beheaded .\tDT IN PRP VBD VBN VBN .\nAuthorities believe the victims were kidnapped Iraqi soldiers .\tNNS VBP DT NNS VBD VBN JJ NNS .\nThe U.S. economy shrank at a 5.7 percent annual pace in the first three months of this year .\tDT NNP NN VBD IN DT CD NN JJ NN IN DT JJ CD NNS IN DT NN .\nFriday 's report from the Commerce Department said the decline was a bit less ( 0.4 percent ) than estimated earlier , and better than the prior quarter .\tNNP POS NN IN DT NNP NNP VBD DT NN VBD DT NN RBR LRB CD NN RRB IN VBN RBR , CC JJR IN DT JJ NN .\nMany government economic experts and private economists say the worst of the recession may have passed , and they predict slow economic growth will resume later this year .\tJJ NN JJ NNS CC JJ NNS VBP DT JJS IN DT NN MD VB VBN , CC PRP VBP JJ JJ NN MD VB RBR DT NN .\nOther economic reports Friday showed U.S. business activity declining faster in a key region , while consumers grew less pessimistic .\tJJ JJ NNS NNP VBD NNP NN NN VBG RBR IN DT JJ NN , IN NNS VBD RBR JJ .\nConsumer sentiment hit its highest level since September , but remained at a relatively low level .\tNN NN VBD PRP$ JJS NN IN NNP , CC VBD IN DT RB JJ NN .\nEconomists track consumer confidence for clues about the consumer demand that drives most U.S. economic activity .\tNNS VBP NN NN IN NNS IN DT NN NN WDT VBZ RBS NNP JJ NN .\nA separate report from an industry group said the pace of business activity in the U.S. Midwest fell even faster in May than in the previous month .\tDT JJ NN IN DT NN NN VBD DT NN IN NN NN IN DT NNP NNP VBD RB RBR IN NNP IN IN DT JJ NN .\nRiot police have clashed with thousands of demonstrators in Indian Kashmir 's summer capital , Srinagar .\tNN NNS VBP VBN IN NNS IN NNS IN NNP NNP POS NN NN , NNP .\nPolice fired teargas to disperse up to 4,000 people who took to the streets Saturday to protest the shooting death of a musician by security forces .\tNN VBD NNS TO VB RP TO CD NNS WP VBD TO DT NNS NNP TO VB DT NN NN IN DT NN IN NN NNS .\nAt least six police officers were injured in the clashes .\tIN JJS CD NNS NNS VBD VBN IN DT NNS .\nWitnesses say police officers fired at 31-year-old composer Inayatullah Bhat late Friday near his home in Srinagar .\tNNS VBP NN NNS VBD IN JJ NN NNP NNP JJ NNP IN PRP$ NN IN NNP .\nA police spokesman said police acted when Bhat refused orders to stop , but residents say the musician was on a routine stroll .\tDT NN NN VBD NN VBD WRB NNP VBD NNS TO VB , CC NNS VBP DT NN VBD IN DT JJ NN .\nIndia has been fighting a separatist movement in its predominantly Muslim area of divided Kashmir since 1989 .\tNNP VBZ VBN VBG DT JJ NN IN PRP$ RB JJ NN IN VBN NNP IN CD .\nBomb attacks have killed nearly 70 people in Iraq , including about 50 who died in a double truck bomb explosion .\tNN NNS VBP VBN RB CD NNS IN NNP , VBG IN CD WP VBD IN DT JJ NN NN NN .\nMore than 100 people were wounded in the twin truck bombing Tuesday in the northern town of Tal Afar .\tJJR IN CD NNS VBD VBN IN DT JJ NN VBG NNP IN DT JJ NN IN NNP NNP .\nHours earlier , a suicide bomber killed 10 people and wounded 25 near the city of Ramadi .\tNNS RB , DT NN NN VBD CD NNS CC VBD CD IN DT NN IN NNP .\nThe U.S. military also said two Marines died in separate incidents during combat operations in volatile al-Anbar province .\tDT NNP NN RB VBD CD NNS VBD IN JJ NNS IN NN NNS IN JJ NNP NN .\nOn the political front , Iraq 's prime minister and president have introduced legislation to make it easier for former members of Saddam Hussein 's Baath party to resume working in government and security positions .\tIN DT JJ NN , NNP POS JJ NN CC NN VBP VBN NN TO VB PRP JJR IN JJ NNS IN NNP NNP POS NNP NN TO VB VBG IN NN CC NN NNS .\nDeputy Prime Minister Barham Salih said the measure is necessary for national reconciliation .\tNNP NNP NNP NNP NNP VBD DT NN VBZ JJ IN JJ NN .\nThe cabinet and parliament still must approve the legislation .\tDT NN CC NN RB MD VB DT NN .\nThe most valuable player of Major League Baseball 's 2003 World Series has a new one-year contract with the Florida Marlins .\tDT RBS JJ NN IN NNP NNP NNP POS CD NNP NNP VBZ DT JJ JJ NN IN DT NNP NNPS .\nPitcher Josh Beckett avoided arbitration Tuesday by signing a deal worth $ 2.4 million .\tNN NNP NNP VBD NN NNP IN VBG DT NN JJ $ CD CD .\nHe earned $ 1.5 million last year .\tPRP VBD $ CD CD JJ NN .\nConsidered one of Major League Baseball 's top young pitchers , the 24-year-old Beckett battled injuries last season and had three separate stints on the disabled list .\tVBN CD IN NNP NNP NNP POS JJ JJ NNS , DT JJ NNP VBD NNS JJ NN CC VBD CD JJ NNS IN DT NN NN .\nHe posted a 09-Sep record with an earned run average of 3.76 in 29 starts overall in 2004 .\tPRP VBD DT JJ NN IN DT VBN NN NN IN CD IN CD NNS JJ IN CD .\nBeckett enjoyed his greatest success in the 2003 postseason , helping the Marlins to their second championship when he went 02-Feb in six games , including a win and loss in two World Series starts against the New York Yankees .\tNNP VBD PRP$ JJS NN IN DT CD NN , VBG DT NNPS TO PRP$ JJ NN WRB PRP VBD CD IN CD NNS , VBG DT NN CC NN IN CD NNP NNP VBZ IN DT NNP NNP NNP .\nSirens wailed across Israel Tuesday in remembrance of victims of the Holocaust , with citizens briefly standing in silence and motorists stopping their cars at the sides of major highways .\tNNS VBD IN NNP NNP IN NN IN NNS IN DT NNP , IN NNS RB VBG IN NN CC NNS VBG PRP$ NNS IN DT NNS IN JJ NNS .\nCommemorations honoring the estimated six million Jews killed by the Nazis during World War II were held at Yad Vashem holocaust memorial in Jerusalem .\tNNS VBG DT VBN CD CD NNPS VBN IN DT NNPS IN NNP NNP NNP VBD VBN IN NNP NNP NN NN IN NNP .\nThousands of people also marched in silence in southern Poland at the site of the Auschwitz death camp .\tNNS IN NNS RB VBD IN NN IN JJ NNP IN DT NN IN DT NNP NN NN .\nFormer Israeli Prime Minister and Nobel Peace Prize laureate Shimon Peres joined the commemoration .\tJJ JJ NNP NNP CC NNP NNP NNP NN NNP NNP VBD DT NN .\nA shofar , or ram 's horn sounded as about 8,000 people began the three-kilometer trek to the gas chambers at Birkenau , where the Nazis killed at least 1.1 million Jews , Roma ( Gypsies ) and others .\tDT NN , CC NN POS NN VBD IN IN CD NNS VBD DT JJ NN TO DT NN NNS IN NNP , WRB DT NNPS VBD IN JJS CD CD NNPS , NNP LRB NNP RRB CC NNS .\nThe first such march was held 20 years ago and now takes place as an annual memorial to the victims of Nazi Germany 's extermination campaign .\tDT JJ JJ NN VBD VBN CD NNS IN CC RB VBZ NN IN DT JJ NN TO DT NNS IN NNP NNP POS NN NN .\nSudan 's government and southern rebels have signed an agreement promising to end the nation 's 21-year civil war by the end of the year .\tNNP POS NN CC JJ NNS VBP VBN DT NN VBG TO VB DT NN POS JJ JJ NN IN DT NN IN DT NN .\nA Sudanese government official and a negotiator from the rebel Sudan People 's Liberation Movement put the December 31 deadline in writing Friday , at a rare meeting of the United Nations Security Council in Nairobi , Kenya .\tDT JJ NN NN CC DT NN IN DT NN NNP NNP POS NNP NNP VBD DT NNP CD NN IN VBG NNP , IN DT JJ NN IN DT NNP NNP NNP NNP IN NNP , NNP .\nCouncil members passed a resolution Friday urging Sudan 's government and southern rebels to make peace and linking future development aid to a comprehensive accord .\tNNP NNS VBD DT NN NNP VBG NNP POS NN CC JJ NNS TO VB NN CC VBG JJ NN NN TO DT JJ NN .\nThe resolution also called for an end to the 21-month-old conflict between the government and a separate rebel group in Darfur , which has left more than a million people displaced .\tDT NN RB VBD IN DT NN TO DT JJ NN IN DT NN CC DT JJ NN NN IN NNP , WDT VBZ VBN JJR IN DT CD NNS VBN .\nMalawai 's Vice President Cassim Chilumpha has been arrested on charges of plotting to overthrow the government .\tNNP POS NNP NNP NNP NNP VBZ VBN VBN IN NNS IN VBG TO VB DT NN .\nThe Minister of Justice says the vice president was plotting with associates to hire an assassin to kill Malawi 's President Bingu wa Mutharika .\tDT NNP IN NNP VBZ DT NN NN VBD VBG IN NNS TO VB DT NN TO VB NNP POS NNP NNP NNP NNP .\nHe told local media he has taped conversations of Chilumpha 's meetings with the would-be assassin .\tPRP VBD JJ NNS PRP VBZ VBN NNS IN NNP POS NNS IN DT JJ NN .\nIn February , Mr. Mutharika tried to fire the vice president for failing to attend cabinet meetings , among other charges .\tIN NNP , NNP NNP VBD TO VB DT NN NN IN VBG TO VB NN NNS , IN JJ NNS .\nMalawi 's high court reinstated Chilumpha last month .\tNNP POS JJ NN VBD NNP JJ NN .\nMr. Mutharika and Chilumpha were running mates in the 2004 elections , but have been feuding since the president quit the United Political Party and created his own political party .\tNNP NNP CC NNP VBD VBG NNS IN DT CD NNS , CC VBP VBN VBG IN DT NN VBD DT NNP NNP NNP CC VBD PRP$ JJ JJ NN .\nFrance 's minister of education says the government has prepared lessons that could be broadcast on television and radio in case schools are shut down by outbreaks of swine flu .\tNNP POS NN IN NN VBZ DT NN VBZ VBN NNS WDT MD VB VBN IN NN CC NN IN NN NNS VBP VBN RP IN NNS IN NN NN .\nThe minister , Luc Chatel , announced Wednesday that the lessons were prepared by distance learning authorities .\tDT NN , NNP NNP , VBD NNP IN DT NNS VBD VBN IN NN VBG NNS .\nHe said that no closures are currently scheduled , but flu-related changes will be handled on a case-by-case basis .\tPRP VBD IN DT NNS VBP RB VBN , CC JJ NNS MD VB VBN IN DT JJ NN .\nChina is objecting to a decision by Internet search engine Google to change maps referring to Taiwan as a province of China .\tNNP VBZ VBG TO DT NN IN NNP NN NN NNP TO VB NNS VBG TO NNP IN DT NN IN NNP .\nChina 's state media report that officials are worried the decision may mislead people and give the impression of an independent Taiwan .\tNNP POS NN NNS VBP IN NNS VBP VBN DT NN MD VB NNS CC VB DT NN IN DT JJ NNP .\nA Google spokesman told Xinhua the change was part of a regular update of all the site 's maps , rather than a deliberate effort to update the Taiwan page .\tDT NNP NN VBD NNP DT NN VBD NN IN DT JJ NN IN PDT DT NN POS NNS , RB IN DT JJ NN TO VB DT NNP NN .\nEarlier this month , Taiwan asked Google to stop listing it as a Chinese province on its maps .\tRBR DT NN , NNP VBD NNP TO VB VBG PRP IN DT JJ NN IN PRP$ NNS .\nNow Google maps simply call the island Taiwan .\tRB NNP NNS RB VBP DT NN NNP .\nTaiwan calls itself the Republic of China .\tNNP VBZ PRP DT NNP IN NNP .\nChina views Taiwan as a breakaway province .\tNNP VBZ NNP IN DT NN NN .\nThe two split in a civil war that ended in 1949 .\tDT CD VBD IN DT JJ NN WDT VBD IN CD .\nThe NATO-led force in Afghanistan says three of its soldiers have been killed in bomb attacks .\tDT JJ NN IN NNP VBZ CD IN PRP$ NNS VBP VBN VBN IN NN NNS .\nNATO says two service members were killed by a bomb blast in the east , while another died in an explosion in the south .\tNNP VBZ CD NN NNS VBD VBN IN DT NN NN IN DT NN , IN DT VBD IN DT NN IN DT NN .\nIt did not give further details .\tPRP VBD RB VB JJ NNS .\nMore than 530 foreign troops have been killed in Afghanistan this year , making it the deadliest year for international forces since the U.S.-led invasion in 2001 .\tJJR IN CD JJ NNS VBP VBN VBN IN NNP DT NN , VBG PRP DT JJS NN IN JJ NNS IN DT JJ NN IN CD .\nAlso Saturday , NATO said Afghan and coalition forces killed more than 30 insurgents in an operation in eastern Laghman province .\tRB NNP , NNP VBD JJ CC NN NNS VBD JJR IN CD NNS IN DT NN IN JJ NNP NN .\nIn a separate operation in Paktika province , NATO said its forces killed a Taliban commander who helped conduct bombings and was directly linked to attacks during last week 's parliamentary elections .\tIN DT JJ NN IN NNP NN , NNP VBD PRP$ NNS VBD DT NNP NN WP VBD VB NNS CC VBD RB VBN TO NNS IN JJ NN POS JJ NNS .\nThe commander was reported killed in an air strike Friday .\tDT NN VBD VBN VBN IN DT NN NN NNP .\nNATO said at least two other Taliban commanders were captured this week .\tNNP VBD IN JJS CD JJ NNP NNS VBD VBN DT NN .\nAfghanistan 's Interior Ministry says a suspected suicide bomber has tried to kill the governor of southern Helmand province by detonating a car bomb outside his office .\tNNP POS NNP NNP VBZ DT JJ NN NN VBZ VBN TO VB DT NN IN JJ NNP NN IN VBG DT NN NN IN PRP$ NN .\nA ministry spokesman says the blast occurred Monday just before key local officials were to meet at the governor 's office .\tDT NN NN VBZ DT NN VBD NNP RB IN JJ JJ NNS VBD TO VB IN DT NN POS NN .\nThe governor was not hurt in the explosion but the bomber , who was described as a foreigner , was seriously wounded .\tDT NN VBD RB VBN IN DT NN CC DT NN , WP VBD VBN IN DT NN , VBD RB VBN .\nHe later died in a local hospital .\tPRP RB VBD IN DT JJ NN .\nA man claiming to be a Taleban spokesman said the attacker was a local Taleban activist .\tDT NN VBG TO VB DT NNP NN VBD DT NN VBD DT JJ NNP NN .\nThe ousted Taleban regime and its supporters have recently stepped up insurgent activities mainly in southern and eastern Afghanistan .\tDT JJ NNP NN CC PRP$ NNS VBP RB VBN RP JJ NNS RB IN JJ CC JJ NNP .\nThe International Committee of the Red Cross ( ICRC ) says a staff member who was kidnapped in Darfur three days ago is doing well and is in good spirits .\tDT NNP NNP IN DT NNP NNP LRB NNP RRB VBZ DT NN NN WP VBD VBN IN NNP CD NNS RB VBZ VBG RB CC VBZ IN JJ NNS .\nThe kidnappers allowed Red Cross officials to speak with Gauthier Lefevre by telephone for the first time on Sunday .\tDT NNS VBD NNP NNP NNS TO VB IN NNP NNP IN NN IN DT JJ NN IN NNP .\nLefevre , a French national , was traveling in one of two clearly marked Red Cross vehicles when he was abducted Thursday near the town of Al Geneina in West Darfur .\tNNP , DT JJ NN , VBD VBG IN CD IN CD RB VBN NNP NNP NNS WRB PRP VBD VBN NNP IN DT NN IN NNP NNP IN NNP NNP .\nThe Red Cross says Lefevre was taken captive after he and another staffer had just completed a trip to help local communities upgrade their water systems .\tDT NNP NNP VBZ NNP VBD VBN JJ IN PRP CC DT NN VBD RB VBN DT NN TO VB JJ NNS VB PRP$ NN NNS .\nThe captors have not made any ransom demands .\tDT NNS VBP RB VBN DT NN NNS .\nForeign aid groups have faced increased hostility in Darfur since the International Criminal Court indicted Sudan 's President Omar al-Bashir in March for alleged war crimes .\tJJ NN NNS VBP VBN VBN NN IN NNP IN DT NNP NNP NNP VBD NNP POS NNP NNP NNP IN NNP IN JJ NN NNS .\nThe presidents of Benin and Nigeria have helped launch a program to vaccinate 40 million children in the region against polio .\tDT NNS IN NNP CC NNP VBP VBN VB DT NN TO VB CD CD NNS IN DT NN IN NN .\nBenin 's President Mathieu Kerekou and his Nigerian counterpart Olusegun Obasanjo met on their shared border Sunday to drop vaccine into babies ' mouths to start the campaign .\tNNP POS NNP NNP NNP CC PRP$ JJ NN NNP NNP VBD IN PRP$ JJ NN NNP TO VB NN IN NNS POS NNS TO VB DT NN .\nThe World Health Organization is backing the effort aimed at reversing a surge in polio cases which started in Nigeria .\tDT NNP NNP NNP VBZ VBG DT NN VBN IN VBG DT NN IN NN NNS WDT VBD IN NNP .\nIn late 2003 , Islamic leaders in northwestern Nigeria suspended immunizations , claiming the WHO had supplied a vaccine that would cause sterility .\tIN JJ CD , JJ NNS IN JJ NNP VBD NNS , VBG DT NNP VBD VBN DT NN WDT MD VB NN .\nHealth officials denied the claim .\tNN NNS VBD DT NN .\nThe WHO said the ban caused the number of polio cases in West Africa to double last year .\tDT NNP VBD DT NN VBD DT NN IN NN NNS IN NNP NNP TO VB JJ NN .\nNigerian leaders last year agreed to resume anti-polio efforts , using a different vaccine .\tJJ NNS JJ NN VBD TO VB JJ NNS , VBG DT JJ NN .\nThe news that the 17-year-old unmarried daughter of Republican vice-presidential nominee Sarah Palin is pregnant has brought the issues of teen sex and sex education into the media spotlight .\tDT NN IN DT JJ JJ NN IN NNP JJ NN NNP NNP VBZ JJ VBZ VBN DT NNS IN JJ NN CC NN NN IN DT NNS NN .\nFor the first time in 15 years , the teen birth rate in America is on the rise .\tIN DT JJ NN IN CD NNS , DT JJ NN NN IN NNP VBZ IN DT NN .\nAs Brian Padden reports , the issues of sexual activity by teens and how information about sex is conveyed to them in school are highly controversial .\tIN NNP NNP VBZ , DT NNS IN JJ NN IN NNS CC WRB NN IN NN VBZ VBN TO PRP IN NN VBP RB JJ .\nThe U.S. business newspaper The Wall Street Journal says a United Nations study of problems with the U.N. oil-for-food program in Iraq will criticize Secretary-General Kofi Annan for a series of management lapses , among them conflicts of interest involving Mr. Annan 's son , Kojo .\tDT NNP NN NN DT NNP NNP NNP VBZ DT NNP NNP NN IN NNS IN DT NNP NN NN IN NNP MD VB JJ NNP NNP IN DT NN IN NN NNS , IN PRP NNS IN NN VBG NNP NNP POS NN , NNP .\nAn investigative panel headed by former U.S. Federal Reserve chairman Paul Volcker is expected to criticize Mr. Annan for failing to take action to correct flaws in the U.N. bureaucracy that allowed problems to develop in the $ 40 billion oil-for-food program .\tDT JJ NN VBN IN JJ NNP NNP NNP NN NNP NNP VBZ VBN TO VB NNP NNP IN VBG TO VB NN TO VB NNS IN DT NNP NN WDT VBD NNS TO VB IN DT $ CD CD NN NN .\nThe Wall Street Journal says the U.N. report will find that Mr. Annan held at least four meetings with Cotecna , a Swiss company that held lucrative United Nations contracts and also employed Mr. Annan 's son , Kojo .\tDT NNP NNP NNP VBZ DT NNP NN MD VB IN NNP NNP VBD IN JJS CD NNS IN NNP , DT JJ NN WDT VBD JJ NNP NNPS NNS CC RB VBN NNP NNP POS NN , NNP .\nThe new report , the second of three to be issued by the Volcker commission this year , is due to be made public on Tuesday .\tDT JJ NN , DT NN IN CD TO VB VBN IN DT NNP NN DT NN , VBZ JJ TO VB VBN JJ IN NNP .\nA senior Palestinian security official says there is progress in efforts to free two Western journalists abducted in Gaza nearly two weeks ago .\tDT JJ JJ NN NN VBZ EX VBZ NN IN NNS TO JJ CD JJ NNS VBN IN NNP RB CD NNS RB .\nInterior Minister Said Siyam , of the militant Islamic group Hamas , said Friday officials are attempting to secure the release of the men .\tNN NN NNP NNP , IN DT JJ NNP NN NNP , VBD NNP NNS VBP VBG TO VB DT NN IN DT NNS .\nHe did not elaborate .\tPRP VBD RB VB .\nHis statement was the first upbeat assessment by Palestinian officials since gunmen seized Fox correspondent , American Steve Centanni , and cameraman Olaf Wiig of New Zealand on August 14 .\tPRP$ NN VBD DT JJ JJ NN IN JJ NNS IN NNS VBN NNP NN , NNP NNP NNP , CC NN NNP NNP IN NNP NNP IN NNP CD .\nOn Thursday , Palestinian Prime Minister Ismail Haniyeh condemned the kidnapping and called for the release of the men .\tIN NNP , JJ NNP NNP NNP NNP VBD DT NN CC VBN IN DT NN IN DT NNS .\nA group calling itself the Holy Jihad Brigades said it is holding the two journalists .\tDT NN VBG PRP DT NNP NNP NNP VBD PRP VBZ VBG DT CD NNS .\nIt demanded that the U.S. release Muslim prisoners it is holding by Saturday .\tPRP VBD IN DT NNP NN NNP VBZ PRP VBZ VBG IN NNP .\nThe commander of Russia 's strategic missile force says Russia is capable of targeting U.S. missile defense sites if they are built in the Czech Republic and Poland .\tDT NN IN NNP POS JJ NN NN VBZ NNP VBZ JJ IN VBG NNP NN NN NNS IN PRP VBP VBN IN DT JJ NNP CC NNP .\nGeneral Nikolai Solovtsov warned Monday that Russia has the ability to resume building intermediate and short-range missiles if the Kremlin drops out of an arms treaty with the United States .\tNNP NNP NNP VBD NNP IN NNP VBZ DT NN TO VB VBG JJ CC JJ NNS IN DT NNP VBZ IN IN DT NNS NN IN DT NNP NNPS .\nA NATO spokesman Monday described the general 's comments as ' extreme language ' that is uncalled for and out of date .\tDT NNP NN NNP VBD DT NN POS NNS IN `` JJ NN `` WDT VBZ JJ IN CC IN IN NN .\nThe Polish and Czech prime ministers , Jaroslaw Kaczynski and Mirek Topolanek , said Monday they would likely accept Washington 's proposal to build U.S. missile defense sites .\tDT JJ CC JJ JJ NNS , NNP NNP CC NNP NNP , VBD NNP PRP MD RB VB NNP POS NN TO VB NNP NN NN NNS .\nWashington says the sites would defend against missile launches from Iran or North Korea .\tNNP VBZ DT NNS MD VB IN NN NNS IN NNP CC NNP NNP .\nRussian President Vladimir Putin has called the presence of a missile defense system so close to Russia 's border a threat to its security .\tJJ NNP NNP NNP VBZ VBN DT NN IN DT NN NN NN RB JJ TO NNP POS NN DT NN TO PRP$ NN .\nThousands of Syrians took to the streets of Damascus Monday to protest a U.N. probe they said unfairly blames the government for the killing of Lebanese former Prime Minister Rafik al-Hariri .\tNNS IN NNS VBD TO DT NNS IN NNP NNP TO VB DT NNP NN PRP VBD RB VBZ DT NN IN DT NN IN JJ JJ NNP NNP NNP NNP .\nDamascus says the investigation was politically motivated and denies any involvement in the assassination .\tNNP VBZ DT NN VBD RB JJ CC VBZ DT NN IN DT NN .\nThe U.N. report , issued last week , implicated Lebanese and Syrian officials in the killing .\tDT NNP NN , VBN JJ NN , VBN JJ CC JJ NNS IN DT NN .\nIt said Syria 's cooperation in the probe was limited .\tPRP VBD NNP POS NN IN DT NN VBD VBN .\nIn an interview with British radio on Sunday , U.S. Secretary of State Condoleezza Rice and British Foreign Secretary Jack Straw called for international pressure against Syria .\tIN DT NN IN JJ NN IN NNP , NNP NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP VBD IN JJ NN IN NNP .\nSyria 's official news agency reported President Bashar al-Assad sent a message to members of the U.N. Security Council , which is expected to consider sanctions over the killing .\tNNP POS JJ NN NN VBD NNP NNP NNP VBD DT NN TO NNS IN DT NNP NNP NNP , WDT VBZ VBN TO VB NNS IN DT NN .\nVenezuelan President Hugo Chavez has called for an investigation into U.S.-based CNN , saying the news network was seeking his assassination after its Spanish-language channel ran an image of him next to a caption that read , ' Who killed him ? '\tJJ NNP NNP NNP VBZ VBN IN DT NN IN JJ NNP , VBG DT NN NN VBD VBG PRP$ NN IN PRP$ JJ NN VBD DT NN IN PRP IN TO DT NN WDT VBD , `` WP VBD PRP . ``\nCNN issued an apology over Tuesday 's video mix-up , saying the caption had been meant for a story about Washington Redskins football star Sean Taylor , who died Tuesday in Florida of a gunshot wound .\tNNP VBD DT NN IN NNP POS NN NN , VBG DT NN VBD VBN VBN IN DT NN IN NNP NNP NN NN NNP NNP , WP VBD NNP IN NNP IN DT NN NN .\nBut President Chavez said he doubted the caption was broadcast next to his image by mistake and called on his attorney general to probe the incident .\tCC NNP NNP VBD PRP VBD DT NN VBD VBN JJ TO PRP$ NN IN NN CC VBN IN PRP$ NN NN TO VB DT NN .\nHe accused the network of possibly seeking to ' instigate a political assassination . '\tPRP VBD DT NN IN RB VBG TO `` VB DT JJ NN . ``\nMr. Chavez , who was briefly ousted in a 2002 coup , has often reported alleged attempts to assassinate him but without offering significant evidence .\tNNP NNP , WP VBD RB VBN IN DT CD NN , VBZ RB VBN JJ NNS TO VB PRP CC IN VBG JJ NN .\nAmerican tennis veteran Andre Agassi has notched another win at the Delray Beach International Championships in Florida .\tJJ NN NN NNP NNP VBZ VBN DT NN IN DT NNP NNP NNP NNP IN NNP .\nBut the tournament 's top seed had to work to get past Ramon Delgado of Paraguay Wednesday .\tCC DT NN POS JJ NN VBD TO VB TO VB JJ NNP NNP IN NNP NNP .\nAfter losing the first set , 04-Jun , Agassi survived a tough second set that included two match points , 07-Jun .\tIN VBG DT JJ NN , CD , NNP VBD DT JJ JJ NN WDT VBD CD NN NNS , CD .\nHe then cruised through the deciding third set , 6-0 .\tPRP RB VBD IN DT JJ JJ NN , CD .\nAlso winning in the second round was third seeded Xavier Malisse of Belgium .\tRB VBG IN DT JJ NN VBD JJ JJ NNP NNP IN NNP .\nHe defeated American Justin Gimelstob , 06-Feb , 07-May .\tPRP VBD JJ NNP NNP , CD , CD .\nGerman Florian Mayer , the sixth seed at the Delray Beach Tennis Center , ousted Oliver Marach of Austria , 07-May , 06-Mar .\tJJ NNP NNP , DT JJ NN IN DT NNP NNP NNP NNP , VBD NNP NNP IN NNP , CD , CD .\nGuillermo Garcia-Lopez of Spain was a 06-Mar , 06-Feb winner over Todd Widom of the United States in a match between unseeded players .\tNNP NNP IN NNP VBD DT CD , CD NN IN NNP NNP IN DT NNP NNPS IN DT NN IN JJ NNS .\nIraq 's top Shi'ite cleric , Grand Ayatollah Ali al-Sistani , has warned the nation 's prime minister that the government must provide for security or risk ' other groups ' taking over that responsibility .\tNNP POS JJ NNP NN , NNP NNP NNP NNP , VBZ VBN DT NN POS JJ NN IN DT NN MD VB IN NN CC NN `` JJ NNS `` VBG RP DT NN .\nIn a statement released Saturday , the ayatollah called the failure of Iraqi security forces to decrease the violence plaguing the country ' serious . '\tIN DT NN VBN NNP , DT NN VBD DT NN IN JJ NN NNS TO VB DT NN VBG DT NN `` JJ . ``\nHe made the comments after holding talks with Iraqi Prime Minister Nouri al-Maliki in Najaf .\tPRP VBD DT NNS IN VBG NNS IN JJ NNP NNP NNP NNP IN NNP .\nMr. Maliki , who has been criticized for failing to clamp down on sectarian violence , said he planned to make changes to four government ministries .\tNNP NNP , WP VBZ VBN VBN IN VBG TO VB RP IN JJ NN , VBD PRP VBD TO VB NNS TO CD NN NNS .\nIn other developments , Iraqi officials say they have found the bodies of 14 South Asian Shi'ite pilgrims slaughtered Thursday as they traveled for a religious ceremony in Karbala .\tIN JJ NNS , JJ NNS VBP PRP VBP VBN DT NNS IN CD NNP NNP NNP VBZ VBN NNP IN PRP VBD IN DT JJ NN IN NNP .\nOfficials say the victims included 11 Pakistanis and three Indians .\tNNS VBP DT NNS VBD CD NNS CC CD NNS .\nPanama and Chile have signed a free trade agreement that will eliminate nearly all tariffs between the nations within 10 years .\tNNP CC NNP VBP VBN DT JJ NN NN WDT MD VB RB DT NNS IN DT NNS IN CD NNS .\nSigned Tuesday , the deal aims to improve access to markets , cross-border services and conflict resolution .\tVBN NNP , DT NN VBZ TO VB NN TO NNS , JJ NNS CC NN NN .\nIt also includes an environmental cooperation pact .\tPRP RB VBZ DT JJ NN NN .\nPanamanian officials say the pact will also help the tiny country to build its export industry .\tJJ NNS VBP DT NN MD RB VB DT JJ NN TO VB PRP$ NN NN .\nIraqi judges have begun questioning two of Saddam Hussein 's top 11 lieutenants in preparation for war crimes trials involving the former regime .\tJJ NNS VBP VBN VBG CD IN NNP NNP POS JJ CD NNS IN NN IN NN NNS NNS VBG DT JJ NN .\nThe chief judge Raad al-Juhyi for the Special Tribunal , which is in charge of the trials , said Saddam 's cousin , Ali Hassan al-Majid , also known as ' Chemical Ali , ' appeared Saturday along with Saddam 's former defense minister , General Sultan Hashim Ahmad .\tDT NN NN NNP NNP IN DT JJ NNP , WDT VBZ IN NN IN DT NNS , VBD NNP POS NN , NNP NNP NNP , RB VBN IN `` NNP NNP , `` VBD NNP IN IN NNP POS JJ NN NN , NNP NNP NNP NNP .\nThe hearings will examine the charges brought against the men , examine any evidence , and determine whether they should stand trial .\tDT NNS MD VB DT NNS VBN IN DT NNS , VB DT NN , CC VB IN PRP MD VB NN .\nThere are indications that Saddam likely will be tried last .\tEX VBP NNS IN NNP RB MD VB VBN JJ .\nNo formal charges have been announced against Chemical Ali or the former defense minister , but charges are likely to include crimes against the country 's Kurds and Shi'ites , as well as the 1990 invasion of neighboring Kuwait .\tDT JJ NNS VBP VBN VBN IN NNP NNP CC DT JJ NN NN , CC NNS VBP JJ TO VB NNS IN DT NN POS NNS CC NNS , RB RB IN DT CD NN IN VBG NNP .\nAn insurgent group in Iraq has released a videotape that purports to show the suicide bomber who killed 22 people last week at a U.S. military base in the Iraqi city of Mosul .\tDT JJ NN IN NNP VBZ VBN DT NN WDT VBZ TO VB DT NN NN WP VBD CD NNS JJ NN IN DT NNP JJ NN IN DT JJ NN IN NNP .\nThe video is posted on the Army of Ansar al-Sunna web site .\tDT NN VBZ VBN IN DT NNP IN NNP NNP NNP NN .\nIn it , a masked man displays a map of the U.S. installation and describes plans for the attack .\tIN PRP , DT VBN NN NNS DT NN IN DT NNP NN CC VBZ NNS IN DT NN .\nAnother masked man , identified as the bomber , embraces colleagues .\tDT VBN NN , VBN IN DT NN , VBZ NNS .\nThe video then shows what appears to be the explosion that ripped through the dining tent on Tuesday .\tDT NN RB VBZ WP VBZ TO VB DT NN WDT VBD IN DT VBG NN IN NNP .\nIn other developments , masked gunmen Sunday killed a high-ranking Iraqi security officer and wounded several of his bodyguards in Baghdad .\tIN JJ NNS , VBN NNS NNP VBD DT JJ JJ NN NN CC VBD NN IN PRP$ NNS IN NNP .\nSeparately , a roadside bomb wounded three U.S. soldiers traveling in a convoy in Mosul .\tRB , DT NN NN VBD CD NNP NNS VBG IN DT NN IN NNP .\nA senior United Nations aid official says tents used to shelter Pakistan 's earthquake survivors are not adequate for the harsh winter setting into the Himalayan region .\tDT JJ NNP NNPS NN NN VBZ NNS VBN TO NN NNP POS NN NNS VBP RB JJ IN DT JJ NN VBG IN DT JJ NN .\nDarren Boisvert , the U.N. official in charge of distributing shelter in the quake zone , said Friday more than 4,20,000 tents have been handed out , but that 90 percent of them have not been winterized .\tNNP NNP , DT NNP NN IN NN IN VBG NN IN DT NN NN , VBD NNP JJR IN CD NNS VBP VBN VBN RP , CC IN CD NN IN PRP VBP RB VBN VBN .\nHe said some survivors were strengthening their shelters with plastic sheets and blankets .\tPRP VBD DT NNS VBD VBG PRP$ NNS IN NN NNS CC NNS .\nTemperatures in the high mountains of Pakistani-controlled Kashmir have already fallen below freezing and snowfall is expected to increase in the coming weeks .\tNNS IN DT JJ NNS IN JJ NNP VBP RB VBN IN VBG CC NN VBZ VBN TO VB IN DT JJ NNS .\nThe October 8 earthquake killed more than 70,000 people and left nearly three million without shelter .\tDT NNP CD NN VBD JJR IN CD NNS CC VBD RB CD CD IN NN .\nThe United States ' Supreme Court has essentially revived a case against senior U.S. military officials launched by former detainees at Guantanamo Bay , Cuba .\tDT NNP NNPS POS NNP NNP VBZ RB VBN DT NN IN JJ NNP NN NNS VBN IN JJ NNS IN NNP NNP , NNP .\nThe justices Monday ordered an appeals court in Washington to reconsider its January 2008 dismissal of a lawsuit brought by four British men .\tDT NNS NNP VBD DT NNS NN IN NNP TO VB PRP$ NNP CD NN IN DT NN VBN IN CD JJ NNS .\nThe former detainees say they were tortured and prevented from freely practicing Islam during their imprisonment at the U.S. military detention facility .\tDT JJ NNS VBP PRP VBD VBN CC VBN IN RB VBG NNP IN PRP$ NN IN DT NNP JJ NN NN .\nThey argue that their treatment violated the U.S. Religious Freedom Restoration Act .\tPRP VBP IN PRP$ NN VBD DT NNP JJ NNP NNP NNP .\nThe Supreme Court says the lower court must review the case based on the high court 's ruling in June .\tDT NNP NNP VBZ DT JJR NN MD VB DT NN VBN IN DT JJ NN POS NN IN NNP .\nAt that time , the Supreme Court said foreign terrorism suspects held at Guantanamo can challenge their detentions in civilian courts .\tIN DT NN , DT NNP NNP VBD JJ NN NNS VBN IN NNP MD VB PRP$ NNS IN JJ NNS .\nThe Bush administration has repeatedly said detainees in U.S. custody are treated humanely .\tDT NNP NN VBZ RB VBN NNS IN NNP NN VBP VBN RB .\nAbout 250 men are still being held at Guantanamo .\tIN CD NNS VBP RB VBG VBN IN NNP .\nAn Ethiopian court has issued a death sentence to a former regional official charged with murder and with supporting an Eritrean-backed terror group .\tDT JJ NN VBZ VBN DT NN NN TO DT JJ JJ NN VBN IN NN CC IN VBG DT JJ NN NN .\nThe state-run Ethiopian News Agency reports that Jemua Ruphael Amen was found guilty and sentenced on Tuesday by the country 's Federal High Court .\tDT JJ NNP NNP NNP VBZ IN NNP NNP NNP VBD VBN JJ CC VBN IN NNP IN DT NN POS NNP NNP NNP .\nThe agency cited a statement from the Ministry of Justice that said Jemua had murdered ' three innocent civilians . '\tDT NN VBD DT NN IN DT NNP IN NNP WDT VBD NNP VBD VBN `` CD JJ NNS . ``\nThe statement also said Jemua formed a separatist movement in Benishangul Gumuz state and was carrying out terrorist attacks there with the Eritrean government .\tDT NN RB VBD NNP VBD DT JJ NN IN NNP NNP NN CC VBD VBG RP JJ NNS RB IN DT JJ NN .\nThe agency says Juma was once in charge of economic planning in the regional government .\tDT NN VBZ NNP VBD RB IN NN IN JJ NN IN DT JJ NN .\nRelations between Ethiopia and Eritrea have been tense since a 1998 to 2000 border war .\tNNP IN NNP CC NNP VBP VBN JJ IN DT CD TO CD NN NN .\nThe countries often accuse each other of being behind various plots and attacks on each other 's territory .\tDT NNS RB VBP DT NN IN VBG IN JJ NNS CC NNS IN DT NN POS NN .\nCalifornia Governor Arnold Schwarzenegger has signed a bill capping greenhouse gas emissions in the Western U.S. state -- a law he says will change the course of history .\tNNP NNP NNP NNP VBZ VBN DT NN VBG NN NN NNS IN DT JJ NNP NN IN DT NN PRP VBZ MD VB DT NN IN NN .\nThe Republican governor signed the bill Wednesday in a ceremony on Treasure Island in San Francisco Bay .\tDT JJ NN VBD DT NN NNP IN DT NN IN NNP NNP IN NNP NNP NNP .\nThe new law makes California the first U.S. state to move beyond the federal government and impose its own greenhouse gas limits .\tDT JJ NN VBZ NNP DT JJ NNP NN TO VB IN DT JJ NN CC VB PRP$ JJ NN NN NNS .\nThe law requires major energy companies in the state to cut carbon dioxide emissions by 25 percent by 2020 .\tDT NN VBZ JJ NN NNS IN DT NN TO VB NN NN NNS IN CD NN IN CD .\nSchwarzenegger said California is entering a bold new era of environmental protection .\tNNP VBD NNP VBZ VBG DT JJ JJ NN IN JJ NN .\nHe said people must do everything in their power to slow down global warming before it is too late .\tPRP VBD NNS MD VB DT IN PRP$ NN TO VB RP JJ NN IN PRP VBZ RB JJ .\nMany scientists blame pollution from cars , factories , and power plants for global warming while others say natural climate changes are causing the planet to warm .\tJJ NNS VBP NN IN NNS , NNS , CC NN NNS IN JJ NN IN NNS VBP JJ NN NNS VBP VBG DT NN TO VB .\nIraq 's interior ministry has launched a probe into allegations that death squads are operating within the police force and targeting Sunni Arabs .\tNNP POS JJ NN VBZ VBN DT NN IN NNS IN NN NNS VBP VBG IN DT NN NN CC VBG NNP NNS .\nA senior official , Major-General Hussein Kamal , said the probe follows the arrest of 22 people dressed as police commandos , who were taking away a Sunni man to be shot .\tDT JJ NN , NNP NNP NNP , VBD DT NN VBZ DT NN IN CD NNS VBN IN NN NNS , WP VBD VBG RP DT NNP NN TO VB VBN .\nAn American general , Major General Joseph Peterson , told a U.S. daily , The Chicago Tribune , that the men were stopped by an Iraqi checkpoint in northern Iraq last month .\tDT JJ NN , NNP NNP NNP NNP , VBD DT NNP NN , DT NNP NNP , IN DT NNS VBD VBN IN DT JJ NN IN JJ NNP JJ NN .\nSunnis often complain of atrocities by Iraqi police , most of whom are Shi'ite Muslims .\tNNS RB VBP IN NNS IN JJ NNS , JJS IN WP VBP JJ NNS .\nMeanwhile , Iraqi insurgents killed at least nine people in a series of attacks in Baghdad and northern Iraq Thursday .\tRB , JJ NNS VBD IN JJS CD NNS IN DT NN IN NNS IN NNP CC JJ NNP NNP .\nAnd radical Shi'ite cleric Moqtada al-Sadr arrived in Jordan today for talks with King Abdullah and other officials in coming days .\tCC JJ NNP NN NNP NNP VBD IN NNP NN IN NNS IN NNP NNP CC JJ NNS IN VBG NNS .\nThe U.S. State Department says the human rights situation in China remains poor and the government continues to commit numerous and serious abuses .\tDT NNP NNP NNP VBZ DT JJ NNS NN IN NNP VBZ JJ CC DT NN VBZ TO VB JJ CC JJ NNS .\nThe department 's annual human rights report says there has been a trend towards increased harassment , detention and imprisonment of those perceived as a threat to authority in China .\tDT NN POS JJ JJ NNS NN VBZ EX VBZ VBN DT NN IN VBN NN , NN CC NN IN DT VBN IN DT NN TO NN IN NNP .\nThe report says the Chinese government has also adopted measures to more tightly control print , broadcast and electronic media .\tDT NN VBZ DT JJ NN VBZ RB VBN NNS TO RBR RB JJ NN , NN CC JJ NNS .\nThe report did note efforts to make legal reforms in the past year , but those efforts stalled .\tDT NN VBD VB NNS TO VB JJ NNS IN DT JJ NN , CC DT NNS VBN .\nThe government did adopt new protections for religious groups .\tDT NN VBD VB JJ NNS IN JJ NNS .\nAlso in East Asia , the State Department reports North Korea remains an absolute dictatorship where the government 's human rights record is extremely poor .\tRB IN NNP NNP , DT NNP NNP VBZ NNP NNP VBZ DT JJ NN WRB DT NN POS JJ NNS NN VBZ RB JJ .\nThe report says the human rights record of Burma 's military government also worsened over the year .\tDT NN VBZ DT JJ NNS NN IN NNP POS JJ NN RB VBD IN DT NN .\nThe Iraqi government is urging voters to approve a new constitution Saturday , and says Iraqis should stand firm against insurgents trying to stop the referendum .\tDT JJ NN VBZ VBG NNS TO VB DT JJ NN NNP , CC VBZ NNS MD VB NN IN NNS VBG TO VB DT NN .\nIn Baghdad Sunday , government spokesman Laith Kuba compared insurgents to rats , saying they spread disease and death among the people .\tIN NNP NNP , NN NN NNP NNP VBD NNS TO NNS , VBG PRP VBP NN CC NN IN DT NNS .\nEarlier , a suicide car bomb exploded in southern Iraq outside an apartment building used by a Shi'ite militia .\tRB , DT NN NN NN VBD IN JJ NNP IN DT NN NN VBN IN DT NNP NN .\nAt least one child was reported killed in the blast and several others wounded .\tIN JJS CD NN VBD VBN VBN IN DT NN CC JJ NNS VBN .\nThe attack in Basra appeared aimed at the Iranian-backed Badr Brigade militia .\tDT NN IN NNP VBD VBN IN DT JJ NNP NNP NN .\nNews reports say Basra 's former governor Hassan al-Rashid , a senior militia leader , escaped unharmed .\tNN NNS VBP NNP POS JJ NN NNP NNP , DT JJ NN NN , VBD JJ .\nSeparately , the U.S. military says a Marine was killed late Saturday in Ramadi when a bomb blast ripped through his vehicle .\tRB , DT NNP NN VBZ DT NN VBD VBN JJ NNP IN NNP WRB DT NN NN VBN IN PRP$ NN .\nEgyptian authorities say the death toll from a massive rockslide in a poor Cairo neighborhood has risen to at least 72 , while many more bodies are feared to remain under the rubble .\tJJ NNS VBP DT NN NN IN DT JJ NN IN DT JJ NNP NN VBZ VBN TO IN JJS CD , IN JJ JJR NNS VBP VBN TO VB IN DT NN .\nSecurity officials Thursday added to the official death toll with the discovery of more bodies , five days after giant rocks fell from the limestone cliff above the Manshiyet Nasr slum .\tNN NNS NNP VBD TO DT JJ NN NN IN DT NN IN JJR NNS , CD NNS IN JJ NNS VBD IN DT NN NN IN DT NNP NNP NN .\nResidents have clashed with rescue workers out of anger over what they consider an inadequate response to the disaster .\tNNS VBP VBN IN NN NNS IN IN NN IN WP PRP VBP DT JJ NN TO DT NN .\nRescuers have had to work mostly by hand to remove debris because streets in the neighborhood are too narrow for large machinery .\tNNS VBP VBN TO VB RB IN NN TO VB NN IN NNS IN DT NN VBP RB JJ IN JJ NN .\nOfficials say rockslides are frequent in the area .\tNNS VBP NNS VBP JJ IN DT NN .\nArgentina 's government offered small farmers a package of benefits Monday in an effort to end a 19-day strike triggered by new , higher taxes .\tNNP POS NN VBD JJ NNS DT NN IN NNS NNP IN DT NN TO VB DT JJ NN VBN IN JJ , JJR NNS .\nPresident Cristina Fernandez de Kirchner 's administration said it would give the farmers a rebate on the new export taxes on soy beans , sunflower seeds , and other grains .\tNNP NNP NNP IN NNP POS NN VBD PRP MD VB DT NNS DT NN IN DT JJ NN NNS IN NN NNS , NN NNS , CC JJ NNS .\nThe government also offered to subsidize the cost of transporting grain from farm to market .\tDT NN RB VBD TO VB DT NN IN VBG NN IN NN TO NN .\nPresident Fernandez has asked the farmers to lift the roadblocks they have constructed during the strike .\tNNP NNP VBZ VBN DT NNS TO VB DT NNS PRP VBP VBN IN DT NN .\nThe roadblocks have caused food shortages and blocked the export of agricultural products .\tDT NNS VBP VBN NN NNS CC VBD DT NN IN JJ NNS .\nFarm leaders rejected the president 's appeal and said the strike would continue at least through mid-week .\tNN NNS VBD DT NN POS NN CC VBD DT NN MD VB IN JJS IN NN .\nThe strike began on March 13 , two days after the government raised the agricultural export taxes in an effort to redistribute wealth to the poor and control domestic food prices .\tDT NN VBD IN NNP CD , CD NNS IN DT NN VBD DT JJ NN NNS IN DT NN TO VB NN TO DT NN CC NN JJ NN NNS .\nVenezuelan Foreign Minister Ali Rodriguez says his country and U.S. diplomats have agreed to discuss improving relations after weeks of increasingly sharp accusations between the two countries .\tJJ NNP NNP NNP NNP VBZ PRP$ NN CC NNP NNS VBP VBN TO VB VBG NNS IN NNS IN RB JJ NNS IN DT CD NNS .\nMr. Rodriguez issued the statement following a meeting Thursday with U.S. Ambassador to Venezuela William Brownfield .\tNNP NNP VBD DT NN VBG DT NN NNP IN NNP NNP TO NNP NNP NNP .\nThe meeting marks the first time Mr. Brownfield has held talks with a top official of the Caracas government since he arrived six months ago .\tDT NN VBZ DT JJ NN NNP NNP VBZ VBN NNS IN DT JJ NN IN DT NNP NN IN PRP VBD CD NNS RB .\nMr. Rodriguez says they agreed to work on ' sensitive ' issues , and have also agreed to move forward in the areas of energy-related issues , drug trafficking , and terrorism .\tNNP NNP VBZ PRP VBD TO VB IN `` JJ `` NNS , CC VBP RB VBN TO VB RB IN DT NNS IN JJ NNS , NN NN , CC NN .\nVenezuelan President Hugo Chavez recently accused the U.S. government of plotting to assassinate him - an accusation the Bush administration has dismissed as ' ridiculous . '\tJJ NNP NNP NNP RB VBD DT NNP NN IN VBG TO VB PRP IN DT NN DT NNP NN VBZ VBN IN `` NN . ``\nMr. Chavez also has threatened to cut off oil sales to the United States .\tNNP NNP RB VBZ VBN TO VB RP NN NNS TO DT NNP NNPS .\nSyrian authorities say they have restored order at a prison near the capital , Damascus , after a riot there broke out Saturday .\tJJ NNS VBP PRP VBP VBN NN IN DT NN IN DT NN , NNP , IN DT NN RB VBD IN NNP .\nThe official SANA news agency says security forces took action at Sidnaya prison Sunday and put down the violent protest started by prisoners convicted of extremism and terror crimes .\tDT JJ NNP NN NN VBZ NN NNS VBD NN IN NNP NN NNP CC VBD RP DT JJ NN VBN IN NNS VBN IN NN CC NN NNS .\nThe agency did not say whether there were any casualties .\tDT NN VBD RB VB IN EX VBD DT NNS .\nBut the London-based group - The Syrian Observatory for Human Rights - said rioting by Islamist inmates , some of whom have been held at Sidnaya without trial , continued Sunday .\tCC DT JJ NN : DT JJ NNP IN NNP NNPS : VBD NN IN NNP NNS , DT IN WP VBP VBN VBN IN NNP IN NN , VBD NNP .\nThe group said 25 prisoners were killed and many more wounded when security forces opened fire to end the disturbance , and that some prisoners fled to the roof , fearing for their lives .\tDT NN VBD CD NNS VBD VBN CC JJ JJR VBN WRB NN NNS VBD NN TO VB DT NN , CC IN DT NNS VBD TO DT NN , VBG IN PRP$ NNS .\nA new poll finds most Iraqis disapprove of the presence of American troops in their country , but are optimistic about this week 's election and the country 's future .\tDT JJ NN VBZ RBS NNS VBZ IN DT NN IN JJ NNS IN PRP$ NN , CC VBP JJ IN DT NN POS NN CC DT NN POS NN .\nThe ABC News poll , conducted with Time Magazine , says more than two-thirds of the Iraqis surveyed oppose having U.S.-led coalition troops in Iraq .\tDT NNP NNP NN , VBN IN NNP NNP , VBZ JJR IN NNS IN DT NNS VBN VBP VBG JJ NN NNS IN NNP .\nIt says half say the U.S.-led invasion was wrong , up from 39 percent in early 2004 .\tPRP VBZ NN VBP DT JJ NN VBD JJ , RB IN CD NN IN JJ CD .\nBut it says 71 percent of Iraqis say their own lives are going well , with their economic situation improving .\tCC PRP VBZ CD NN IN NNS VBP PRP$ JJ NNS VBP VBG RB , IN PRP$ JJ NN VBG .\nThe survey also says three-quarters of Iraqis expressed confidence in this week 's parliamentary vote , and 70 percent approve of Iraq 's constitution and want the country to remain unified .\tDT NN RB VBZ NNS IN NNS VBD NN IN DT NN POS JJ NN , CC CD NN VB IN NNP POS NN CC VBP DT NN TO VB JJ .\nAn unknown group in Iraq says it has abducted two Egyptian engineers .\tDT JJ NN IN NNP VBZ PRP VBZ VBN CD JJ NNS .\nIn an unauthenticated Internet statement , the Nationalist Movement to Free Iraq says the hostages are being interrogated about why they are in the country .\tIN DT JJ NN NN , DT NNP NNP TO NNP NNP VBZ DT NNS VBP VBG VBN IN WRB PRP VBP IN DT NN .\nIn an accompanying video , two men are shown holding identification cards showing them to work for an Iraqi company .\tIN DT JJ NN , CD NNS VBP VBN VBG NN NNS VBG PRP TO VB IN DT JJ NN .\nMeanwhile , an Iraqi-born Swedish citizen who had been held captive since January , says his kidnappers let him go Friday without a ransom being paid .\tRB , DT JJ JJ NN WP VBD VBN VBN JJ IN NNP , VBZ PRP$ NNS VB PRP VB NNP IN DT NN VBG VBN .\nThe Iraqi Vengeance Brigade had threatened to behead Minas al-Yousifi , the head of the Iraqi Christian Democratic party unless a large ransom was paid and U.S. troops withdrew from Iraq .\tDT JJ NNP NNP VBD VBN TO VB NNP NNP , DT NN IN DT JJ NNP NNP NN IN DT JJ NN VBD VBN CC NNP NNS VBD IN NNP .\nU.S. fighter planes in Iraq have begun dropping bombs on insurgent targets in western Iraq as part of a major combat operation launched against Iraqi rebels .\tNNP NN NNS IN NNP VBP VBN VBG NNS IN JJ NNS IN JJ NNP IN NN IN DT JJ NN NN VBN IN JJ NNS .\nMilitary officials say about 1,000 troops are taking part in ' Operation Spear , ' which began early Friday in Iraq 's restive Anbar province , near the Syrian border .\tJJ NNS VBP IN CD NNS VBP VBG NN IN `` NNP NNP , `` WDT VBD RB NNP IN NNP POS JJ NNP NN , IN DT JJ NN .\nReuters news agency says U.S. fighter planes have dropped at least nine 220-kilogram bombs on insurgent target areas near the town of Qaim .\tNNP NN NN VBZ NNP NN NNS VBP VBN IN JJS CD JJ NNS IN JJ NN NNS IN DT NN IN NNP .\nCasualty figures are not yet available .\tNN NNS VBP RB RB JJ .\nAnbar province is where U.S. forces say they killed about 40 militants in air strikes in Karabila on June 11 .\tNNP NN VBZ WRB NNP NNS VBP PRP VBD IN CD NNS IN NN NNS IN NNP IN NNP CD .\nElsewhere , at least six Iraqi police were killed and more than 20 others wounded Thursday in a suicide car bombing on Baghdad 's airport road .\tRB , IN JJS CD JJ NNS VBD VBN CC JJR IN CD NNS VBD NNP IN DT NN NN VBG IN NNP POS NN NN .\nAnd an Iraqi judge and his driver were gunned down in the northern city of Mosul .\tCC DT JJ NN CC PRP$ NN VBD VBN RB IN DT JJ NN IN NNP .\nU.S. pharmaceutical giant , Merck , says a recent study showed a new experimental vaccine to be 100 percent effective for the short-term in blocking two viruses that can cause cervical cancer in women .\tNNP JJ NN , NNP , VBZ DT JJ NN VBD DT JJ JJ NN TO VB CD NN NN IN DT JJ IN VBG CD NNS WDT MD VB JJ NN IN NNS .\nMerck said Thursday , its Gardasil vaccine blocks infection from Human Papillovirus 16 and 18 - which both cause about 70 percent of all cases of cervical cancer .\tNNP VBD NNP , PRP$ NNP NN VBZ NN IN JJ NNP CD CC CD : WDT DT VBP IN CD NN IN DT NNS IN JJ NN .\nThe drug company said the trial among 12,000 women from 13 countries also found that Gardasil blocks cervical lesions that could become cancerous .\tDT NN NN VBD DT NN IN CD NNS IN CD NNS RB VBD IN NNP VBZ JJ NNS WDT MD VB JJ .\nSexually transmitted viruses known as HPVs strike about 75 percent of all women at some time in their lives , and kill almost 3,00,000 women without healthy immune systems ever year .\tRB JJ NNS VBN IN NNP VBP IN CD NN IN DT NNS IN DT NN IN PRP$ NNS , CC VB RB CD NNS IN JJ JJ NNS RB NN .\nA separate study earlier this year found that a vaccine developed by British firm , GlaxoSmithKline , was 92 percent effective in blocking cancer from four HPVs .\tDT JJ NN RBR DT NN VBD IN DT NN VBN IN JJ NN , NNP , VBD CD NN JJ IN VBG NN IN CD NNS .\nKenyan police say they have arrested two Germans and a Dutch national on suspicion of terrorist activities .\tJJ NNS VBP PRP VBP VBN CD NNS CC DT JJ NN IN NN IN JJ NNS .\nPolice spokesman Eric Kiraithe says the three were arrested at Nairobi 's international airport late Thursday as they attempted to leave the country .\tNN NN NNP NNP VBZ DT CD VBD VBN IN NNP POS JJ NN RB NNP IN PRP VBD TO VB DT NN .\nThe three have been identified as Germans Andrej Hermlin and Gerd Uwe , along with a Dutch woman , Fleur van Dissel .\tDT CD VBP VBN VBN IN NNS NNP NNP CC NNP NNP , IN IN DT JJ NN , NNP NNP NNP .\nKiraithe says the suspects entered the country as journalists but have ' been conducting themselves in a suspicious manner . '\tNNP VBZ DT NNS VBD DT NN IN NNS CC VBP `` VBN VBG PRP IN DT JJ NN . ``\nHe says the three took video footage of security installations in the country .\tPRP VBZ DT CD VBD NN NN IN NN NNS IN DT NN .\nThe spokesman says police are still investigating the incident .\tDT NN VBZ NNS VBP RB VBG DT NN .\nAfghanistan 's education minister says the government will never allow the Taleban to set up schools in the south of the country .\tNNP POS NN NN VBZ DT NN MD RB VB DT NNP TO VB RP NNS IN DT NN IN DT NN .\nMohammad Hanif Atmar told a news conference Monday that a Taleban vow to open schools in Afghanistan was an excuse for setting up terrorist training centers in the country .\tNNP NNP NNP VBD DT NN NN NNP IN DT NNP NN TO JJ NNS IN NNP VBD DT NN IN VBG RP JJ NN NNS IN DT NN .\nA Taleban spokesman , Abdul Hai Muthmahien , said by telephone from a secret location late Saturday that the schools would be set up beginning in March to ' counter propaganda of the West and its puppets against Islam . '\tDT NNP NN , NNP NNP NNP , VBD IN NN IN DT JJ NN JJ NNP IN DT NNS MD VB VBN RP VBG IN NNP TO `` JJ NN IN DT NNP CC PRP$ NNS IN NNP . ``\nAtmar says Taleban militants had burned 183 schools in the past year and killed 61 students and teachers .\tNNP VBZ NNP NNS VBD VBN CD NNS IN DT JJ NN CC VBD CD NNS CC NNS .\nHe says Taleban violence had also closed down nearly 400 schools in areas where the militants said they would set them up .\tPRP VBZ NNP NN VBD RB VBN IN RB CD NNS IN NNS WRB DT NNS VBD PRP MD VB PRP RP .\nVenezuelan President Hugo Chavez is expected to buy more military equipment when he visits Russia later this month .\tJJ NNP NNP NNP VBZ VBN TO VB JJR JJ NN WRB PRP VBZ NNP RB DT NN .\nThe government of Venezuela announced Thursday that Mr. Chavez will meet with Russian President Dmitri Medvedev on July 22 , when he begins a five-day European tour .\tDT NN IN NNP VBD NNP IN NNP NNP MD VB IN JJ NNP NNP NNP IN NNP CD , WRB PRP VBZ DT JJ JJ NN .\nThe statement said President Chavez plans to buy new military hardware , including tanks .\tDT NN VBD NNP NNP VBZ TO VB JJ JJ NN , VBG NNS .\nVenezuela has already purchased $ 3 billion in Russian fighter jets , helicopters and guns .\tNNP VBZ RB VBN $ CD CD IN JJ NN NNS , NNS CC NNS .\nThe two leaders are also expected to discuss setting up a joint bank and the development of industrial and technological projects .\tDT CD NNS VBP RB VBN TO VB VBG RP DT JJ NN CC DT NN IN JJ CC JJ NNS .\nA Turkish press report says Turkey will remove Iran from a watchlist of nations it considers as threats to its national security .\tDT JJ NN NN VBZ NNP MD VB NNP IN DT NN IN NNS PRP VBZ IN NNS TO PRP$ JJ NN .\nThe newspaper Milliyet reported Monday that Turkey also will remove Russia , Iraq and Greece as primary threats in the so-called Red Book - a national security policy document .\tDT NN NNP VBD NNP IN NNP RB MD VB NNP , NNP CC NNP IN JJ NNS IN DT JJ NNP NNP IN DT JJ NN NN NN .\nThe report said the updated list is part of a security review by Turkey 's National Security Council , which will be adopted in October .\tDT NN VBD DT VBN NN VBZ NN IN DT NN NN IN NNP POS NNP NNP NNP , WDT MD VB VBN IN NNP .\nThe national security document was last revised in 2005 , when Islamic fundamentalism and Kurdish separatism were considered the greatest threats to Turkish security .\tDT JJ NN NN VBD JJ VBN IN CD , WRB NNP NN CC JJ NN VBD VBN DT JJS NNS TO JJ NN .\nTurkey and Iran are active trading partners in the energy sector .\tNNP CC NNP VBP JJ NN NNS IN DT NN NN .\nTurkey already buys a third of its gas imports from Iran and is looking to expand its relationship to power sales and the transit of Iranian gas to Europe .\tNNP RB VBZ DT NN IN PRP$ NN NNS IN NNP CC VBZ VBG TO VB PRP$ NN TO NN NNS CC DT NN IN JJ NN TO NNP .\nAfghan military officials say a roadside bomb blast in the volatile south has killed six Afghan soldiers .\tJJ JJ NNS VBP DT NN NN NN IN DT JJ NN VBZ VBN CD JJ NNS .\nThe officials say the incident occurred Tuesday , in the Sangin district in Helmand province .\tDT NNS VBP DT NN VBD NNP , IN DT NNP NN IN NNP NN .\nThe blast came just hours after another roadside bombing in neighboring Kandahar province killed three Afghans and two foreigners .\tDT NN VBD RB NNS IN DT NN VBG IN JJ NNP NN VBD CD NNS CC CD NNS .\nAccording to local officials , the victims worked for an American security company and were killed on the road linking Kandahar with Herat .\tVBG TO JJ NNS , DT NNS VBD IN DT JJ NN NN CC VBD VBN IN DT NN VBG NNP IN NNP .\nAlso Tuesday , in the center of Kandahar city , two suicide bombers blew themselves up but there were no other casualties .\tRB NNP , IN DT NN IN NNP NN , CD NN NNS VBD PRP RP CC EX VBD DT JJ NNS .\nThe governor of Kandahar province blamed the blasts on Taleban militants who have increased attacks in southern Afghanistan in recent months .\tDT NN IN NNP NN VBD DT NNS IN NNP NNS WP VBP VBN NNS IN JJ NNP IN JJ NNS .\nAngola says the outbreak of the deadly Marburg virus , which has already killed 244 people , appears to be under control .\tNNP VBZ DT NN IN DT JJ NNP NN , WDT VBZ RB VBN CD NNS , VBZ TO VB IN NN .\nHealth ministry officials in Luanda Friday said the virus , which has already stricken 266 people , has largely been confined to the northwestern province of Uige .\tNNP NN NNS IN NNP NNP VBD DT NN , WDT VBZ RB VBN CD NNS , VBZ RB VBN VBN TO DT JJ NN IN NNP .\nA spokesman said four neighboring provinces , including the capital where doctors previously detected infections , have not reported any new cases .\tDT NN VBD CD JJ NNS , VBG DT NN WRB NNS RB VBD NNS , VBP RB VBN DT JJ NNS .\nInternational aid groups , including the World Health Organization , are working to control the highly contagious and incurable virus .\tJJ NN NNS , VBG DT NNP NNP NNP , VBP VBG TO VB DT RB JJ CC JJ NN .\nExperts say the Ebola-like virus , which is spread through contact with bodily fluids , can be contained with relatively simple hygienic precautions .\tNNS VBP DT JJ NN , WDT VBZ VBN IN NN IN RB NNS , MD VB VBN IN RB JJ JJ NNS .\nPreviously , the most serious outbreak of the disease occurred in the neighboring Democratic Republic of Congo , killing at least 123 between 1998 and 2000 .\tRB , DT RBS JJ NN IN DT NN VBD IN DT JJ NNP NNP IN NNP , VBG IN JJS CD IN CD CC CD .\nBritain 's upper house of parliament has rejected a plan that would have allowed a government minister to issue restraints against terrorism suspects .\tNNP POS JJ NN IN NN VBZ VBN DT NN WDT MD VB VBN DT NN NN TO VB NNS IN NN NNS .\nThe House of Lords Monday insisted that only a judge could issue orders to place suspects under curfew or impose bans on telephone and Internet use .\tDT NNP IN NNPS NNP VBD IN RB DT NN MD VB NNS TO VB NNS IN NN CC VB NNS IN NN CC NN NN .\nPrime Minister Tony Blair has been trying to push through new anti-terrorism laws before March 14 , when current security legislation expires .\tJJ NN NNP NNP VBZ VBN VBG TO VB IN JJ JJ NNS IN NNP CD , WRB JJ NN NN VBZ .\nThe government last week conceded to lower-house demands that only a judge could issue orders for house arrest .\tDT NN JJ NN VBD TO VB NNS WDT RB DT NN MD VB NNS IN NN NN .\nIn the face of strong criticism by the opposition and some members of his own Labor Party , Mr. Blair was given a public boost for new legislation Sunday .\tIN DT NN IN JJ NN IN DT NN CC DT NNS IN PRP$ JJ NNP NNP , NNP NNP VBD VBN DT JJ NN IN JJ NN NNP .\nThe recently retired head of London 's police force warned that there are at least 100 al-Qaida terrorists in Britain determined to carry out attacks there .\tDT RB VBN NN IN NNP POS NN NN VBD IN EX VBP IN JJS CD NNP NNS IN NNP VBN TO VB RP NNS RB .\nFugitive Taleban leader Mullah Omar says he is confident his followers will drive foreign troops out of Afghanistan .\tJJ NNP NN NNP NNP VBZ PRP VBZ JJ PRP$ NNS MD VB JJ NNS IN IN NNP .\nThe message was sent to news agencies Friday .\tDT NN VBD VBN TO NN NNS NNP .\nIn it , he says Afghanistan has a history of expelling its enemies by force and that no aggressive force has left the country willingly .\tIN PRP , PRP VBZ NNP VBZ DT NN IN VBG PRP$ NNS IN NN CC IN DT JJ NN VBZ VBN DT NN RB .\nOmar also dismissed a proposal by Afghan and Pakistani officials to hold tribal councils on both sides of their border to end the violence .\tNNP RB VBD DT NN IN JJ CC JJ NNS TO VB JJ NNS IN DT NNS IN PRP$ NN TO VB DT NN .\nHe said the councils are a ' trap ' created by aggressors and puppets .\tPRP VBD DT NNS VBP DT `` NN `` VBN IN NNS CC NNS .\nThe authenticity of the message could not be verified .\tDT NN IN DT NN MD RB VB VBN .\nThe U.S. government has offered a $ 10 million reward for Omar 's arrest .\tDT NNP NN VBZ VBN DT $ CD CD NN IN NNP POS NN .\nHe went into hiding shortly after U.S.-led forces forced the Taleban from power in Afghanistan in 2001 .\tPRP VBD IN VBG RB IN JJ NNS VBD DT NNP IN NN IN NNP IN CD .\nHamas security forces briefly detained the Fatah-allied Palestinian attorney general Thursday after accusing him of taking important information from his office .\tNNP NN NNS RB VBD DT JJ JJ NN NN NNP IN VBG PRP IN VBG JJ NN IN PRP$ NN .\nWitnesses say Hamas forces seized Attorney General Ahmed Mughani at his office in Gaza City and released him a short time later .\tNNS VBP NNP NNS VBD NNP NNP NNP NNP IN PRP$ NN IN NNP NNP CC VBD PRP DT JJ NN RB .\nMughani said the Hamas-led Executive Force asked him to sign an agreement to resign his duties and to remain in Gaza .\tNNP VBD DT JJ NNP NNP VBD PRP TO VB DT NN TO VB PRP$ NNS CC TO VB IN NNP .\nThe attorney general said he refused to sign the conditions and called Hamas ' action a violation of the law .\tDT NN NN VBD PRP VBD TO VB DT NNS CC VBD NNP POS NN DT NN IN DT NN .\nMughani is close with the Fatah-led Palestinian government in the West Bank , which is headed by President Mahmoud Abbas .\tNNP VBZ RB IN DT JJ JJ NN IN DT NNP NNP , WDT VBZ VBN IN NNP NNP NNP .\nHamas , which took control of the Gaza Strip nearly two months ago , says it is aiming to reform the territory 's justice system .\tNNP , WDT VBD NN IN DT NNP NNP RB CD NNS RB , VBZ PRP VBZ VBG TO VB DT NN POS NN NN .\nTurkish government ministers and representatives of the poultry industry are meeting Saturday to discuss how to minimize the economic effects of the bird flu outbreak .\tJJ NN NNS CC NNS IN DT NN NN VBP VBG NNP TO VB WRB TO VB DT JJ NNS IN DT NN NN NN .\nDeputy Prime Minister Abdulatif Sener told reporters ahead of the meeting in Ankara the group will try to find a solution to the problem .\tNNP NNP NNP NNP NNP VBD NNS RB IN DT NN IN NNP DT NN MD VB TO VB DT NN TO DT NN .\nHe says any measures must have Cabinet approval .\tPRP VBZ DT NNS MD VB NNP NN .\nIndustry experts say poultry sales in the country have dropped by 70 percent since the deadly H5N1 strain of bird flu was reported in humans in Turkey late last month and killed three people - the first bird flu deaths outside Asia .\tNN NNS VBP NN NNS IN DT NN VBP VBN IN CD NN IN DT JJ NNP NN IN NN NN VBD VBN IN NNS IN NNP RB JJ NN CC VBD CD NNS IN DT JJ NN NN NNS IN NNP .\nIn another development , Belgian officials say a person has been hospitalized in Brussels with suspected bird flu after visiting the region in Turkey hit by the disease .\tIN DT NN , JJ NNS VBP DT NN VBZ VBN VBN IN NNP IN JJ NN NN IN VBG DT NN IN NNP VBN IN DT NN .\nThe officials gave no other details .\tDT NNS VBD DT JJ NNS .\nThe Everglades stretch almost 200 kilometers across Florida\tDT NNPS NN RB CD NNS IN NNP\nWildlife has also been threatened as the glades shrink .\tNN VBZ RB VBN VBN IN DT NNS VB .\nThe National Park Service estimates that the number of wading birds has declined from a quarter of a million in the 1930s to fewer than 20,000 today .\tDT NNP NNP NNP VBZ IN DT NN IN VBG NNS VBZ VBN IN DT NN IN DT CD IN DT NNS TO JJR IN CD NN .\nBut you 'll still see plenty of alligators .\tCC PRP MD RB VB NN IN NNS .\nThey sun themselves along the old , two-lane state road through the Everglades , and may be diminished but are still an awesome sight .\tPRP VBP PRP IN DT JJ , JJ NN NN IN DT NNPS , CC MD VB VBN CC VBP RB DT JJ NN .\nThere 's nothing like them , anywhere in the world .\tEX VBZ DT IN PRP , RB IN DT NN .\nJapan 's billion dollar Kibo science laboratory has been delivered to the International Space Station , and the astronauts have been installing and setting it up .\tNNP POS CD NN NNP NN NN VBZ VBN VBN TO DT NNP NNP NNP , CC DT NNS VBP VBN VBG CC VBG PRP RP .\nThis week , crew members from shuttle Discovery and the space station have also been doing a little ' home repair ' on the station 's toilet .\tDT NN , NN NNS IN NN NN CC DT NN NN VBP RB VBN VBG DT JJ `` NN NN `` IN DT NN POS NN .\nPaul Sisco has a report on the week 's activities in space .\tNNP NNP VBZ DT NN IN DT NN POS NNS IN NN .\nFormer Peruvian President Alberto Fujimori has announced he will run for president again in the upcoming election .\tJJ JJ NNP NNP NNP VBZ VBN PRP MD VB IN NN RB IN DT JJ NN .\nMr. Fujimori made the announcement at a news conference Thursday , in Japan .\tNNP NNP VBD DT NN IN DT NN NN NNP , IN NNP .\nHe has been living in self-imposed exile in Japan since fleeing Peru in November 2000 in the midst of a corruption scandal .\tPRP VBZ VBN VBG IN JJ NN IN NNP IN VBG NNP IN NNP CD IN DT NN IN DT NN NN .\nHe was granted Japanese nationality due to his ancestry , but last month received a new Peruvian passport .\tPRP VBD VBN JJ NN JJ TO PRP$ NN , CC JJ NN VBD DT JJ JJ NN .\nPeruvian prosecutors have also petitioned Japan to extradite Mr. Fujimori so he can face criminal charges on allegations ranging from abuse of power and embezzlement to sanctioning a paramilitary death squad .\tJJ NNS VBP RB VBN NNP TO VB NNP NNP IN PRP MD VB JJ NNS IN NNS VBG IN NN IN NN CC NN TO VBG DT JJ NN NN .\nHe has denied all the charges .\tPRP VBZ VBN PDT DT NNS .\nPeru 's congress has banned him from holding public office again until at least 2010 .\tNNP POS NN VBZ VBN PRP IN VBG JJ NN RB IN IN JJS CD .\nA New York art show chronicles the impact of the feminist movement on art between 1965 and 1980 .\tDT NNP NNP NN NN VBZ DT NN IN DT JJ NN IN NN IN CD CC CD .\nThe show features works by artists from around the world and includes paintings , sculptures and performance art .\tDT NN VBZ NNS IN NNS IN IN DT NN CC VBZ NNS , NNS CC NN NN .\nVOA 's Behnam Nateghi toured the show at the P.S. One Contemporary Art Center .\tNNP POS NNP NNP VBD DT NN IN DT NNP CD NNP NNP NNP .\nJim Bertel narrates .\tNNP NNP VBZ .\nAfghan officials say a kidnapped Italian aid worker is in good health and that her abductors have opened a channel of communication with authorities .\tJJ NNS VBP DT VBN JJ NN NN VBZ IN JJ NN CC IN PRP$ NNS VBP VBN DT NN IN NN IN NNS .\nItalian aid worker Clementina Cantoni is seen in this file photo released by CARE International\tJJ NN NN NNP NNP VBZ VBN IN DT NN NN VBN IN NNP NNP\nOfficials say they have spoken with the CARE International worker Clementina Cantoni , who was seized from her car in Kabul by four gunmen on Monday .\tNNS VBP PRP VBP VBN IN DT NNP NNP NN NNP NNP , WP VBD VBN IN PRP$ NN IN NNP IN CD NNS IN NNP .\nItalian embassy officials in Kabul confirmed that contact has been established with alleged abductors , but declined to provide details .\tJJ NN NNS IN NNP VBD IN NN VBZ VBN VBN IN JJ NNS , CC VBD TO VB NNS .\nEarlier , Afghan police said a criminal gang kidnapped the woman and wanted to exchange her for its jailed leader and several accomplices .\tRB , JJ NNS VBD DT JJ NN VBD DT NN CC VBD TO VB PRP IN PRP$ JJ NN CC JJ NNS .\nTuesday , about 200 Afghan widows , who have received help from the aid worker , staged a tearful demonstration , demanding her immediate release .\tNNP , IN CD JJ NNS , WP VBP VBN NN IN DT NN NN , VBD DT JJ NN , VBG PRP$ JJ NN .\nNorwegian Frode Andresen has won a World Cup men 's biathlon sprint event in Ruhpolding , Germany , but Frenchman Raphael Poiree is the overall leader .\tJJ NNP NNP VBZ VBN DT NNP NNP NNS POS NN NN NN IN NNP , NNP , CC NNP NNP NNP VBZ DT JJ NN .\nAndresen finished the 10-kilometer event in 25.03.05 seconds with one shooting miss .\tNNP VBD DT JJ NN IN CD NNS IN CD NN VBP .\nMichael Rosch of Germany was second 3.8 seconds back with no penalties .\tNNP NNP IN NNP VBD JJ CD NNS RB IN DT NNS .\nMichael Greis of German was third , 11.8 seconds behind Andresen with one shooting miss .\tNNP NNP IN JJ VBD JJ , CD NNS IN NNP IN CD NN VBP .\nPoiree finished fourth in the race , more than 15 seconds behind the Norwegian , but leads the overall World Cup standings with 298 points after 10 events .\tNNP VBD RB IN DT NN , JJR IN CD NNS IN DT NN , CC VBZ DT JJ NNP NNP NNS IN CD NNS IN CD NNS .\nThe men 's 12.5-kilometer pursuit race is Sunday at the same venue .\tDT NNS POS JJ NN NN VBZ NNP IN DT JJ NN .\nBiathlon combines cross-country skiing and rifle shooting from a variety of positions .\tNNP VBZ NN NN CC NN NN IN DT NN IN NNS .\nAthletes must ski penalty laps for shooting misses .\tNNS MD VB NN NNS IN VBG NNS .\nThe leader of the world 's largest Muslim organization has warned Thai officials that using military force to try to end the unrest in Thailand 's south will only make the extremists stronger .\tDT NN IN DT NN POS JJS NN NN VBZ VBN JJ NNS IN VBG JJ NN TO VB TO VB DT NN IN NNP POS NN MD RB VB DT NNS JJR .\nThe chairman of the Indonesia-based Nahdlatul Ulama , Hasyim Muzadi , gave the warning in Bangkok where he is meeting with Thai Prime Minister Thaksin Shinawatra and King Bhumibol Adulyadej on ways to end the unrest .\tDT NN IN DT JJ NNP NNP , NNP NNP , VBD DT NN IN NNP WRB PRP VBZ VBG IN JJ NNP NNP NNP NNP CC NNP NNP NNP IN NNS TO VB DT NN .\nMr. Thaksin and Mr. Muzadi agreed that improved education in the south will help boost living standards and end economic problems that contribute to violence .\tNNP NNP CC NNP NNP VBD IN JJ NN IN DT NN MD VB VB VBG NNS CC VB JJ NNS WDT VBP TO NN .\nLater this week , Mr. Muzadi will travel to Thailand 's three Muslim-majority southern provinces to meet Muslim leaders and leading Thai Buddhist monks .\tRB DT NN , NNP NNP MD VB TO NNP POS CD JJ JJ NNS TO VB JJ NNS CC VBG JJ NNP NNS .\nMore than 650 people have been killed in separatist violence in southern Thailand since the beginning of 2004 .\tJJR IN CD NNS VBP VBN VBN IN JJ NN IN JJ NNP IN DT NN IN CD .\nSyrian President Bashar al-Assad says his country wants to cooperate with the new administration of U.S. President-elect Barack Obama , and to contribute to Middle East stability .\tJJ NNP NNP NNP VBZ PRP$ NN VBZ TO VB IN DT JJ NN IN NNP NNP NNP NNP , CC TO VB TO NNP NNP NN .\nMr. Assad made his remarks in an interview with the German magazine Der Spiegel released Saturday .\tNNP NNP VBD PRP$ NNS IN DT NN IN DT JJ NN NNP NNP VBD NNP .\nMr. Obama has said he may seek Syria 's help in curbing Iran 's controversial nuclear work .\tNNP NNP VBZ VBN PRP MD VB NNP POS NN IN VBG NNP POS JJ JJ NN .\nIn response , Mr. Assad said Damascus must be included in the process , and that Syria has long been isolated from the talks .\tIN NN , NNP NNP VBD NNP MD VB VBN IN DT NN , CC DT NNP VBZ RB VBN VBN IN DT NNS .\nMr. Assad also signaled Damascus is not ready to give up its ties to Iran .\tNNP NNP RB VBD NNP VBZ RB JJ TO VB RP PRP$ NNS TO NNP .\nHe said good relations with the United States would not mean bad relations with Tehran .\tPRP VBD JJ NNS IN DT NNP NNPS MD RB VB JJ NNS IN NNP .\nSyria 's president encouraged Mr. Obama to become seriously involved in the Middle East peace process .\tNNP POS NN VBD NNP NNP TO VB RB VBN IN DT NNP NNP NN NN .\nHe said Syria must help in the process , together with the Europeans .\tPRP VBD NNP MD VB IN DT NN , RB IN DT NNS .\nTop officials from countries neighboring Iraq are holding talks in Turkey to welcome the formation of the new government in Baghdad .\tJJ NNS IN NNS VBG NNP VBP VBG NNS IN NNP TO VB DT NN IN DT JJ NN IN NNP .\nDiplomats from Iran , Jordan , Kuwait , Syria , Saudi Arabia and Turkey met in Istanbul Friday to set the agenda for talks by each country 's foreign minister on Saturday .\tNNS IN NNP , NNP , NNP , NNP , NNP NNP CC NNP VBD IN NNP NNP TO VB DT NN IN NNS IN DT NN POS JJ NN IN NNP .\nRepresentatives of regional power , Egypt , also attended the meeting .\tNNS IN JJ NN , NNP , RB VBD DT NN .\nOfficials say the diplomats were to discuss the recent political developments in Iraq , and the next stages of the political process including the drafting of the nation 's constitution by the new government of Prime Minister Ibrahim al-Jaafari .\tNNS VBP DT NNS VBD TO VB DT JJ JJ NNS IN NNP , CC DT JJ NNS IN DT JJ NN VBG DT NN IN DT NN POS NN IN DT JJ NN IN NNP NNP NNP NNP .\nThe participants also were expected to draft a statement of support for the new government .\tDT NNS RB VBD VBN TO VB DT NN IN NN IN DT JJ NN .\nSources say the document will stress the political integrity and sovereignty of the war-torn country and will call for international support for Baghdad .\tNNS VBP DT NN MD VB DT JJ NN CC NN IN DT JJ NN CC MD VB IN JJ NN IN NNP .\nMilitary sources in Chad say the commander of its army has died from injuries sustained during a firefight with rebel forces .\tJJ NNS IN NNP VBP DT NN IN PRP$ NN VBZ VBN IN NNS VBN IN DT NN IN JJ NNS .\nGeneral Abakar Yusuf Itno was wounded Thursday near the eastern Chadian town of Adre .\tNNP NNP NNP NNP VBD VBN NNP IN DT JJ JJ NN IN NNP .\nThe sources say the rebels were backed by Janjaweed Arab militia forces who crossed the border from neighboring Sudan .\tDT NNS VBP DT NNS VBD VBN IN NNP NNP NN NNS WP VBD DT NN IN VBG NNP .\nItno was the nephew of President Idriss Deby .\tNNP VBD DT NN IN NNP NNP NNP .\nMr. Deby has been trying to quell a rebellion launched against his government by a group known as the Rally for Democracy and Liberty .\tNNP NNP VBZ VBN VBG TO VB DT NN VBN IN PRP$ NN IN DT NN VBN IN DT NNP IN NNP CC NNP .\nHe has accused Sudan of backing rebel efforts to overthrow him .\tPRP VBZ VBN NNP IN VBG JJ NNS TO VB PRP .\nThe Khartoum-backed Janjaweed militias have been fighting with rebels in Sudan 's Darfur region .\tDT JJ NNP NNS VBP VBN VBG IN NNS IN NNP POS NNP NN .\nThe fighting has left some 1,80,000 people dead and another two million homeless .\tDT NN VBZ VBN DT CD NNS JJ CC DT CD CD NN .\nU.S. authorities started a man-made flood in the Grand Canyon Wednesday in an attempt to help the canyon 's ecosystem .\tNNP NNS VBD DT JJ NN IN DT NNP NNP NNP IN DT NN TO VB DT NN POS NN .\nSecretary of the Interior Dirk Kempthorne pulled a lever releasing water from the Glen Canyon Dam , which regulates the flow of the Colorado River .\tNNP IN DT NNP NNP NNP VBD DT NN VBG NN IN DT NNP NNP NNP , WDT VBZ DT NN IN DT NNP NNP .\nHe said the flooding is meant to help redistribute sediment deposits to rebuild beaches downstream .\tPRP VBD DT NN VBZ VBN TO VB VB NN NNS TO VB NNS NN .\nKempthorne said the water is being released at a rate that would fill the Empire State Building - New York City 's tallest skyscraper - in 20 minutes .\tNNP VBD DT NN VBZ VBG VBN IN DT NN WDT MD VB DT NNP NNP NNP IN NNP NNP NNP POS JJS NN : IN CD NNS .\nAuthorities conducted similar experiments in 1996 and 2004 .\tNNS VBD JJ NNS IN CD CC CD .\nCritics of the move say they fear the sudden change will damage wildlife habitats and affect endangered species .\tNNS IN DT NN VBP PRP VBP DT JJ NN MD VB NN NNS CC VB JJ NNS .\nThe superintendent of Grand Canyon National Park , Steve Martin told the Los Angeles Times he fears there are non-environmental motives for the flooding , suggesting it is well-timed to aid hydroelectric power producers preparing for high demand during the upcoming summer months .\tDT NN IN NNP NNP NNP NNP , NNP NNP VBD DT NNP NNP NNP PRP VBZ EX VBP JJ NNS IN DT NN , VBG PRP VBZ JJ TO VB JJ NN NNS VBG IN JJ NN IN DT JJ NN NNS .\nLebanese and Israeli soldiers exchanged cross-border fire Wednesday , but no casualties were reported .\tJJ CC JJ NNS VBD JJ NN NNP , CC DT NNS VBD VBN .\nThe Lebanese army says its soldiers opened fire on an Israeli bulldozer that crossed the border .\tDT JJ NN VBZ PRP$ NNS VBD NN IN DT JJ NN WDT VBD DT NN .\nThe Israeli army says its soldiers returned fire .\tDT JJ NN VBZ PRP$ NNS VBD NN .\nThe Israeli forces were searching for explosives along the border , after discovering four bombs there Monday .\tDT JJ NNS VBD VBG IN NNS IN DT NN , IN VBG CD NNS RB NNP .\nThe Shi'ite militant group Hezbollah says it did not recently plant the bombs .\tDT NNP JJ NN NNP VBZ PRP VBD RB RB VB DT NNS .\nHezbollah officials said Tuesday that the bombs were placed before last year 's war between Israel and Hezbollah .\tNNP NNS VBD NNP IN DT NNS VBD VBN IN JJ NN POS NN IN NNP CC NNP .\nIsraeli officials have said they believe the bombs were placed in recent days under the cover of fog and rain .\tJJ NNS VBP VBN PRP VBP DT NNS VBD VBN IN JJ NNS IN DT NN IN NN CC NN .\nIf Hezbollah is responsible for placing explosives in recent days , it would mark a violation of a U.N.-brokered ceasefire agreement declared last August .\tIN NNP VBZ JJ IN VBG NNS IN JJ NNS , PRP MD VB DT NN IN DT JJ NN NN VBN JJ NNP .\nIn July 2006 , Hezbollah abducted two Israeli soldiers in a cross-border raid , which started a month-long war between Israel and the militia .\tIN NNP CD , NNP VBD CD JJ NNS IN DT JJ NN , WDT VBD DT JJ NN IN NNP CC DT NN .\nEarly returns in Colombia 's legislative elections indicate majority support of Colombian President Alvaro Uribe .\tRB NNS IN NNP POS JJ NNS VBP NN NN IN JJ NNP NNP NNP .\nWith at least 34 percent of the vote counted supporters of President Uribe 's tough stance on rebel forces seem likely to win a majority of the 102 senate seats that were being contested .\tIN IN JJS CD NN IN DT NN VBD NNS IN NNP NNP POS JJ NN IN NN NNS VBP JJ TO VB DT NN IN DT CD NN NNS WDT VBD VBG VBN .\nSunday 's election , which also selected 166 members of the lower house , was widely viewed as a test of Mr. Uribe 's popularity .\tNNP POS NN , WDT RB VBD CD NNS IN DT JJR NN , VBD RB VBN IN DT NN IN NNP NNP POS NN .\nHe is up for re-election in May .\tPRP VBZ RP IN NN IN NNP .\nThe leftist Revolutionary Armed Forces of Colombia , known as FARC , had stepped up attacks in advance of the election , killing dozens of civilians in the past few weeks .\tDT JJ JJ JJ NNS IN NNP , VBN IN NNP , VBD VBN RP NNS IN NN IN DT NN , VBG NNS IN NNS IN DT JJ JJ NNS .\nBut the elections , themselves , were peaceful amid heavy security .\tCC DT NNS , PRP , VBD JJ IN JJ NN .\nRightwing paramilitaries , who have made peace overtures to the Colombian government , have been campaigning for congressional allies .\tVBG NNS , WP VBP VBN NN NNS TO DT JJ NN , VBP VBN VBG IN JJ NNS .\nFrench Foreign Minister Philippe Douste-Blazy has announced he will soon head to Colombia to try to win freedom for kidnapped former presidential candidate Ingrid Betancourt .\tJJ NNP NNP NNP NNP VBZ VBN PRP MD RB VB TO NNP TO VB TO VB NN IN VBN JJ JJ NN NNP NNP .\nColombian Marxist rebels kidnapped her in February 2002 while she campaigned .\tJJ JJ NNS VBD PRP IN NNP CD IN PRP VBD .\nHer father , the late Gabriel Betancourt , was a Colombian ambassador to France .\tPRP$ NN , DT JJ NNP NNP , VBD DT JJ NN TO NNP .\nMr. Douste-Blazy told French television Tuesday that in the name of human rights , it is unthinkable to leave her in such conditions .\tNNP NNP VBD JJ NN NNP IN IN DT NN IN JJ NNS , PRP VBZ JJ TO VB PRP IN JJ NNS .\nColombia 's main rebel group , the Revolutionary Armed Forces of Colombia , has already rejected a joint French-Spanish-Swiss proposed prisoner exchange with the Colombian government to win freedom for Ms. Betancourt and other hostages .\tNNP POS JJ NN NN , DT NNP NNP NNS IN NNP , VBZ RB VBN DT JJ NN VBN NN NN IN DT JJ NN TO VB NN IN NNP NNP CC JJ NNS .\nA purported Taleban commander says al-Qaida terror network chief Osama bin Laden and Taleban leader Mullah Mohammad Omar are both alive after more than three years on the run .\tDT JJ NNP NN VBZ NNP NN NN NN NNP NNP NNP CC NNP NN NNP NNP NNP VBP DT JJ IN JJR IN CD NNS IN DT NN .\nThe commander , identified as Mullah Akhtar Usmani , told Pakistan 's private GEO Television both men are in good health but refused to say where they are .\tDT NN , VBN IN NNP NNP NNP , VBD NNP POS JJ NNP NNP DT NNS VBP IN JJ NN CC VBD TO VB WRB PRP VBP .\nHe said Mullah Omar remains in command of the hard-line Islamic militia that formerly ruled Afghanistan .\tPRP VBD NNP NNP VBZ IN NN IN DT JJ NNP NN WDT RB VBD NNP .\nThe Taleban remnants have again become active and have been attacking U.S.-led forces in Afghanistan , who ousted them in late 2001 .\tDT NNP NNS VBP RB VBN JJ CC VBP VBN VBG JJ NNS IN NNP , WP VBD PRP IN JJ CD .\nThe commander , said to be Mullah Omar 's former deputy and now the head of Taleban operations , held a Kalashnikov assault rifle and partly covered his face with a black turban during the interview .\tDT NN , VBN TO VB NNP NNP POS JJ NN CC RB DT NN IN NNP NNS , VBD DT NNP NN NN CC RB VBD PRP$ NN IN DT JJ NN IN DT NN .\nOfficials in Somalia say insurgents have killed two people and wounded two others in an attack on an army camp near Baidoa , the home of the transitional parliament .\tNNS IN NNP VBP NNS VBP VBN CD NNS CC VBD CD NNS IN DT NN IN DT NN NN IN NNP , DT NN IN DT JJ NN .\nThe Islamist insurgent group Shabab claimed responsibility for the attack on the Daynunay military base .\tDT NNP JJ NN NNP VBD NN IN DT NN IN DT NNP JJ NN .\nTwo days ago , Shabab insurgents fired mortars at the presidential palace and airport in Baidoa , killing at least two soldiers and wounding seven .\tCD NNS RB , NNP NNS VBD NNS IN DT JJ NN CC NN IN NNP , VBG IN JJS CD NNS CC VBG CD .\nSomali 's government dismissed that attack as a publicity stunt for the insurgent group , and said that Baidoa is functioning and safe .\tJJ POS NN VBD DT NN IN DT NN NN IN DT JJ NN , CC VBD IN NNP VBZ VBG CC JJ .\nInsurgents have briefly overrun more a dozen towns in Somalia in recent months in their fight against the interim government and its Ethiopian military allies .\tNNS VBP RB VBN RBR DT NN NNS IN NNP IN JJ NNS IN PRP$ NN IN DT JJ NN CC PRP$ JJ JJ NNS .\nEthiopian troops entered Somalia two years ago to help the interim government fight an Islamist movement that was threatening to take over the country .\tJJ NNS VBD NNP CD NNS RB TO VB DT JJ NN VB DT JJ NN WDT VBD VBG TO VB RP DT NN .\nSomalia has been continuously torn by conflict since the fall of the last stable government in 1991 .\tNNP VBZ VBN RB VBN IN NN IN DT NN IN DT JJ JJ NN IN CD .\nA top Russian lawmaker is denying a newspaper report that Russia has helped Iran acquire ballistic missile technology that would bring much of Europe within target range .\tDT JJ JJ NN VBZ VBG DT NN NN IN NNP VBZ VBN NNP VB JJ NN NN WDT MD VB NN IN NNP IN NN NN .\nKonstantin Kosachyov , who chairs the Duma 's International Affairs Committee , told the Interfax news agency Sunday that Russia could not and did not cooperate on such a project .\tNNP NNP , WP VBZ DT NNP POS NNP NNP NNP , VBD DT NNP NN NN NNP IN NNP MD RB CC VBD RB VB IN PDT DT NN .\nHe responded to a report published Sunday in London 's Sunday Telegraph , saying that members of the Russian military acted as go-betweens with North Korea and Iran .\tPRP VBD TO DT NN VBN NNP IN NNP POS NNP NNP , VBG IN NNS IN DT JJ NN VBD IN NNS IN NNP NNP CC NNP .\nThe report , which cited unidentified Western intelligence sources , says the deal enabled Teheran to get shipments of top-secret missile technology capable of delivering a nuclear weapon 3,500 kilometers .\tDT NN , WDT VBD JJ JJ NN NNS , VBZ DT NN VBD NNP TO VB NNS IN JJ NN NN JJ IN VBG DT JJ NN CD NNS .\nMoscow itself falls within that range .\tNNP PRP VBZ IN DT NN .\nMr. Kosachyov urged Russian agencies to respond to the report to prevent what he called a spiraling of speculation .\tNNP NNP VBD JJ NNS TO VB TO DT NN TO VB WP PRP VBD DT NN IN NN .\nA United Nations war crimes court has sentenced a former Rwandan mayor to 15 years in prison for his role in the 1994 genocide .\tDT NNP NNPS NN NNS NN VBZ VBN DT JJ JJ NN TO CD NNS IN NN IN PRP$ NN IN DT CD NN .\nThe International Criminal Tribunal for Rwanda accepted a plea bargain in which Paul Bisengimina pled guilty to two counts of murder and extermination .\tDT NNP NNP NNP IN NNP VBD DT NN NN IN WDT NNP NNP VBD JJ TO CD NNS IN NN CC NN .\nIn exchange , the prosecution dropped eight other charges .\tIN NN , DT NN VBD CD JJ NNS .\nThe 58-year-old Bisengimina was mayor of Gikoro in 1994 and was involved in the slaughter of minority Tutsis who had sought refuge at a church .\tDT JJ NNP VBD NN IN NNP IN CD CC VBD VBN IN DT NN IN NN NN WP VBD VBN NN IN DT NN .\nPresiding Judge Arlete Ramaroson said Thursday that Bisengimina 's guilty plea could encourage others to come forward and confess their crimes .\tNNP NNP NNP NNP VBD NNP IN NNP POS JJ NN MD VB NNS TO VB RB CC VB PRP$ NNS .\nHutu extremists killed an estimated 8,00,000 Tutsis and moderate Hutus during the 1994 three-month killing spree .\tNNP NNS VBD DT VBN CD NN CC JJ NN IN DT CD JJ NN NN .\nHealth officials in Pakistan have confirmed the country 's first human fatality caused by bird flu .\tNNP NNS IN NNP VBP VBN DT NN POS JJ JJ NN VBN IN NN NN .\nThe Health Ministry says the victim worked at a poultry farm in Pakistan 's North West Frontier Province , near the border with Afghanistan .\tDT NNP NNP VBZ DT NN VBD IN DT NN NN IN NNP POS NNP NNP NNP NNP , IN DT NN IN NNP .\nOfficials say the brother of the man infected with avian influenza also died recently , but he was not tested for the disease .\tNNS VBP DT NN IN DT NN VBN IN JJ NN RB VBD RB , CC PRP VBD RB VBN IN DT NN .\nAt least five other people from the same border region have recently been confirmed as suffering from the deadly H5N1 strain of bird flu .\tIN JJS CD JJ NNS IN DT JJ NN NN VBP RB VBN VBN IN NN IN DT JJ NNP NN IN NN NN .\nPakistani authorities say two have recovered , and the remaining patients are in quarantine .\tJJ NNS VBP CD VBP VBN , CC DT VBG NNS VBP IN NN .\nThe World Health Organization said Saturday it was aware of eight suspected human cases of H5N1 bird flu in Pakistan 's Peshawar region .\tDT NNP NNP NNP VBD NNP PRP VBD JJ IN CD JJ JJ NNS IN NNP NN NN IN NNP POS NNP NN .\nThe Geneva-based organisation says it is providing technical support to the country 's Health Ministry .\tDT JJ NN VBZ PRP VBZ VBG JJ NN TO DT NN POS NNP NNP .\nWHO says more than 200 people have died of bird flu worldwide since 2003 .\tNNP VBZ JJR IN CD NNS VBP VBN IN NN NN NN IN CD .\nPhilippine military aircraft are rushing relief supplies to parts of the country devastated this week by heavy rains , flooding and mudslides caused by two typhoons .\tJJ JJ NN VBP VBG NN NNS TO NNS IN DT NN VBD DT NN IN JJ NNS , NN CC NNS VBN IN CD NNS .\nCargo planes and helicopters delivered food , water , and medical supplies Saturday to residents on the northeastern coast of the main island of Luzon .\tNNP NNS CC NNS VBN NN , NN , CC JJ NNS NNP TO NNS IN DT JJ NN IN DT JJ NN IN NNP .\nPresident Gloria Arroyo visited towns in some of the hardest hit areas , and she declared a ban on commercial logging , which has been blamed for some of the mudslides .\tNNP NNP NNP VBD NNS IN DT IN DT RBS VBN NNS , CC PRP VBD DT NN IN JJ NN , WDT VBZ VBN VBN IN DT IN DT NNS .\nAuthorities estimate at least 1,000 people are either dead or missing .\tNNS VBP IN JJS CD NNS VBP RB JJ CC JJ .\nInternational aid organizations and a number of countries have pledged millions of dollars in aid , and the United Nations says it is sending a team of experts to assist with recovery efforts .\tJJ NN NNS CC DT NN IN NNS VBP VBN NNS IN NNS IN NN , CC DT NNP NNP VBZ PRP VBZ VBG DT NN IN NNS TO VB IN NN NNS .\nA U.S. newspaper reports that American officials are reviewing a second Dubai company 's plans to acquire interests in the United States .\tDT NNP NN NNS IN JJ NNS VBP VBG DT JJ NNP NN POS NNS TO VB NNS IN DT NNP NNPS .\nThe Washington Post says Thursday the review involves plans by Dubai International Capital to take over a British firm , Doncasters Group that makes parts for U.S. defense contractors .\tDT NNP NNP VBZ NNP DT NN VBZ NNS IN NNP NNP NNP TO VB RP DT JJ NN , NNP NNP WDT VBZ NNS IN NNP NN NNS .\nThe company confirms it is seeking U.S. approval for the billion-dollar deal .\tDT NN VBZ PRP VBZ VBG NNP NN IN DT JJ NN .\nThe report comes days after another Dubai firm , Dubai Ports World and U.S. officials agreed to a new , broader review of its plans to take over some operations in six U.S. ports .\tDT NN VBZ NNS IN DT NNP NN , NNP NNP NNP CC NNP NNS VBD TO DT JJ , JJR NN IN PRP$ NNS TO VB RP DT NNS IN CD NNP NNS .\nThe port deal has angered U.S. lawmakers from both parties , who say they were not informed about the plan before its approval .\tDT JJ NN VBZ VBN NNP NNS IN DT NNS , WP VBP PRP VBD RB VBN IN DT NN IN PRP$ NN .\nThe Post also reports that U.S. officials are reviewing an Israeli company 's bid to buy a software security firm that does business with the Defense Department .\tDT NNP RB VBZ IN NNP NNS VBP VBG DT JJ NN POS NN TO VB DT NN NN NN WDT VBZ NN IN DT NNP NNP .\nThousands of Peruvians took to the streets of the capital , Lima , Tuesday to demand the extradition of former President Alberto Fujimori from Chile .\tNNS IN NNS VBD TO DT NNS IN DT NN , NNP , NNP TO VB DT NN IN JJ NNP NNP NNP IN NNP .\nReports from the scene say the protest was led by human rights groups and labor unions seeking to have the former president returned to Chile , where he faces charges of corruption and of authorizing death squads during his 10-year presidency .\tNNS IN DT NN VBP DT NN VBD VBN IN JJ NNS NNS CC NN NNS VBG TO VB DT JJ NN VBD TO NNP , WRB PRP VBZ NNS IN NN CC IN VBG NN NNS IN PRP$ JJ NN .\nMr. Fujimori fled to Japan and faxed his resignation letter to Peru in the midst of a corruption scandal in 2000 .\tNNP NNP VBD TO NNP CC VBD PRP$ NN NN TO NNP IN DT NN IN DT NN NN IN CD .\nHe was arrested when he traveled to Chile last week .\tPRP VBD VBN WRB PRP VBD TO NNP JJ NN .\nMeanwhile , the Santiago Court of Appeals Tuesday turned down a motion by a private citizen to free the former president .\tRB , DT NNP NNP IN NNP NNP VBD RP DT NN IN DT JJ NN TO VB DT JJ NN .\nThe citizen 's connection to the case was not clear .\tDT NN POS NN TO DT NN VBD RB JJ .\nThis means Mr. Fujimori will remain under arrest .\tDT VBZ NNP NNP MD VB IN NN .\nThe United Nations is sending a veteran Portuguese diplomat to war-torn Ivory Coast to help organize presidential elections in October .\tDT NNP NNP VBZ VBG DT NN JJ NN TO JJ NNP NNP TO VB VB JJ NNS IN NNP .\nU.N. Secretary General Kofi Annan Friday chose Antonio Monteiro for the job , a former Portuguese foreign minister and U.N. ambassador .\tNNP NNP NNP NNP NNP NNP VBD NNP NNP IN DT NN , DT JJ JJ JJ NN CC NNP NN .\nHe is tasked with ensuring the elections are open , free and fair .\tPRP VBZ VBN IN VBG DT NNS VBP JJ , JJ CC JJ .\nLast month , Ivory Coast 's warring parties renewed pledges to abide by an April peace deal brokered by South Africa , which includes holding elections on October 30 .\tJJ NN , NNP NNP POS VBG NNS VBN NNS TO VB IN DT NNP NN NN VBN IN NNP NNP , WDT VBZ VBG NNS IN NNP CD .\nSeveral previous deals failed to take hold because of political disagreements and delays by both the government and rebels to disarm .\tJJ JJ NNS VBD TO VB NN IN IN JJ NNS CC NNS IN DT DT NN CC NNS TO VB .\nIvory Coast has been split in two , with rebels in the north and the government in control of the south , since a failed coup attempt in 2002 .\tNNP NNP VBZ VBN VBN IN CD , IN NNS IN DT NN CC DT NN IN NN IN DT NN , IN DT VBN NN NN IN CD .\nBurma has released two lawyers who were convicted of contempt of court last year and sentenced to four months in prison .\tNNP VBZ VBN CD NNS WP VBD VBN IN NN IN NN JJ NN CC VBD TO CD NNS IN NN .\nSupreme court lawyers U Aung Thein and U Khin Maung Shein were released Friday after serving their full sentences .\tNNP NN NNS NNP NNP NNP CC NNP NNP NNP NNP VBD VBN NNP IN VBG PRP$ JJ NNS .\nThe two lawyers had represented student activists .\tDT CD NNS VBD VBN NN NNS .\nBurma 's High Court sentenced them in November for what was described as a lack of respect for the court .\tNNP POS NNP NNP VBD PRP IN NNP IN WP VBD VBN IN DT NN IN NN IN DT NN .\nThe Asian Human Rights Commission welcomed their release and expressed hope they will be permitted to continue practicing their profession .\tDT NNP NNP NNP NNP VBD PRP$ NN CC VBD NN PRP MD VB VBN TO VB VBG PRP$ NN .\nThe Hong-Kong-based group quoted U Aung Thein and U Khin Maung Shein as saying they had no chance to defend themselves .\tDT JJ NN VBN NNP NNP NNP CC NNP NNP NNP NNP IN VBG PRP VBD DT NN TO VB PRP .\nThe two said their clients withdrew their powers of attorney because they lost faith in the judicial process .\tDT CD VBD PRP$ NNS VBD PRP$ NNS IN NN IN PRP VBD NN IN DT JJ NN .\nThe Asian Human Rights Commission said Burma 's contempt-of-court law contains no guidance on how contempt is to be assessed and heard fairly .\tDT NNP NNP NNP NNP VBD NNP POS NN NN VBZ DT NN IN WRB NN VBZ TO VB VBN CC VBN RB .\nIraqi negotiators are struggling to reach an agreement on a new constitution before a Monday deadline , as hundreds marched to press their demands for a new government .\tJJ NNS VBP VBG TO VB DT NN IN DT JJ NN IN DT NNP NN , IN NNS VBD TO VB PRP$ NNS IN DT JJ NN .\nOfficials said Saturday they were nearing agreement on a Shi'ite demand to enshrine Islam as the only source of legislation .\tNNS VBD NNP PRP VBD VBG NN IN DT JJ NN TO VB NNP IN DT JJ NN IN NN .\nKurdish officials said they still oppose the move .\tNNP NNS VBD PRP RB VBP DT NN .\nBut negotiators say the United States may be prepared to drop its objections to having Islam as the sole basis of a new Iraqi government .\tCC NNS VBP DT NNP NNPS MD VB VBN TO VB PRP$ NNS TO VBG NNP IN DT JJ NN IN DT JJ JJ NN .\nSaturday 's talks also focused on granting self-determination to Iraqi Kurds .\tNNP POS NNS RB VBD IN VBG NN TO JJ NNPS .\nMeanwhile , hundreds of Sunni Arabs in Ramadi and Kirkuk marched against the possibility of a federal Iraq , saying they want a strong central government .\tRB , NNS IN NNP NNS IN NNP CC NNP VBD IN DT NN IN DT JJ NNP , VBG PRP VBP DT JJ JJ NN .\nIf completed by Monday , the new constitution will be voted on in an October referendum .\tIN VBN IN NNP , DT JJ NN MD VB VBN IN IN DT NNP NN .\nA U.S. bankruptcy court is considering whether it has jurisdiction in a case filed by the embattled Russian oil giant Yukos .\tDT NNP NN NN VBZ VBG IN PRP VBZ NN IN DT NN VBN IN DT VBN JJ NN NN NNP .\nYukos filed the case with the court in Houston , Texas last year to stop a Russian court-ordered auction of its key production unit , Yuganskneftgaz .\tNNP VBD DT NN IN DT NN IN NNP , NNP JJ NN TO VB DT JJ JJ NN IN PRP$ JJ NN NN , NNP .\nThe U.S. court issued an injunction against the sale , but it went on anyway .\tDT NNP NN VBD DT NN IN DT NN , CC PRP VBD IN RB .\nYukos assets in the United States are bank accounts and a home owned by the company 's financial chief .\tNNP NNS IN DT NNP NNPS VBP NN NNS CC DT NN VBN IN DT NN POS JJ NN .\nYukos is now suing Russian energy firms including the natural gas giant Gazprom and the state-owned Rosneft for $ 20 billion in damages .\tNNP VBZ RB VBG JJ NN NNS VBG DT JJ NN NN NNP CC DT JJ NNP IN $ CD CD IN NNS .\nA planned merger between Gazprom and Rosneft has been put on hold to wait for the decision from the U.S. court .\tDT JJ NN IN NNP CC NNP VBZ VBN VBN IN NN TO VB IN DT NN IN DT NNP NN .\nCritics call the Russian government probe of Yukos politically motivated because former Yukos chief Mikhail Khodorkovsky had supported the opposition .\tNNS VBP DT JJ NN NN IN NNP RB JJ IN JJ NNP NN NNP NNP VBD VBN DT NN .\nThe Kremlin says Yukos owes billions in back taxes .\tDT NNP VBZ NNP VBZ NNS IN JJ NNS .\nROGERS COMMUNICATIONS Inc. said it plans to raise 175 million to 180 million Canadian dollars ( US $ 148.9 million to $ 153.3 million ) through a private placement of perpetual preferred shares .\tNNP NNPS NNP VBD PRP VBZ TO VB CD CD TO CD CD JJ NNS LRB NNP $ CD CD TO $ CD CD RRB IN DT JJ NN IN JJ JJ NNS .\nPerpetual preferred shares are n't retractable by the holders , the company said .\tJJ JJ NNS VBP RB JJ IN DT NNS , DT NN VBD .\nRogers said the shares will be convertible into Class B shares , but that the company has the option to redeem the shares before a conversion takes place .\tNNP VBD DT NNS MD VB JJ IN NN NNP NNS , CC IN DT NN VBZ DT NN TO VB DT NNS IN DT NN VBZ NN .\nA spokesman for the Toronto cable television and telecommunications concern said the coupon rate has n't yet been fixed , but will probably be set at around 8 % .\tDT NN IN DT NNP NN NN CC NNS NN VBD DT NN NN VBZ RB RB VBN VBN , CC MD RB VB VBN IN IN CD NN .\nHe declined to discuss other terms of the issue .\tPRP VBD TO VB JJ NNS IN DT NN .\nDespite its small size and limited natural resources , Liechtenstein has developed into a prosperous , highly industrialized , free-enterprise economy with a vital financial service sector and likely the second highest per capita income in the world .\tIN PRP$ JJ NN CC JJ JJ NNS , NNP VBZ VBN IN DT JJ , RB VBN , JJ NN IN DT JJ JJ NN NN CC JJ DT JJ JJS IN NN NN IN DT NN .\nThe Liechtenstein economy is widely diversified with a large number of small businesses .\tDT NNP NN VBZ RB VBN IN DT JJ NN IN JJ NNS .\nLow business taxes - the maximum tax rate is 20 % - and easy incorporation rules have induced many holding companies to establish nominal offices in Liechtenstein providing 30 % of state revenues .\tNNP NN NNS IN DT JJ NN NN VBZ CD NN : CC JJ NN NNS VBP VBN JJ VBG NNS TO VB JJ NNS IN NNP VBG CD NN IN NN NNS .\nThe country participates in a customs union with Switzerland and uses the Swiss franc as its national currency .\tDT NN VBZ IN DT NNS NN IN NNP CC VBZ DT JJ NN IN PRP$ JJ NN .\nIt imports more than 90 % of its energy requirements .\tPRP VBZ JJR IN CD NN IN PRP$ NN NNS .\nLiechtenstein has been a member of the European Economic Area ( an organization serving as a bridge between the European Free Trade Association ( EFTA ) and the EU ) since May 1995 .\tNNP VBZ VBN DT NN IN DT JJ NNP NNP LRB DT NN VBG IN DT NN IN DT JJ NNP NNP NNP LRB NNP RRB CC DT NNP RRB IN NNP CD .\nThe government is working to harmonize its economic policies with those of an integrated Europe .\tDT NN VBZ VBG TO VB PRP$ JJ NNS IN DT IN DT VBN NNP .\nIn 2008 , Liechtenstein came under renewed international pressure - particularly from Germany - to improve transparency in its banking and tax systems .\tIN CD , NNP VBD IN JJ JJ NN : RB IN NNP : TO VB NN IN PRP$ NN CC NN NNS .\nIn December 2008 , Liechtenstein signed a Tax Information Exchange Agreement with the US .\tIN NNP CD , NNP VBD DT NNP NNP NNP NN IN DT NNP .\nUpon Liechtenstein 's conclusion of 12 bilateral information-sharing agreements , the OECD in October 2009 removed the principality from its ' grey list ' of countries that had yet to implement the organization 's Model Tax Convention .\tIN NNP POS NN IN CD JJ NN NNS , DT NNP IN NNP CD VBD DT NN IN PRP$ `` NN NN `` IN NNS WDT VBD RB TO VB DT NN POS NNP NNP NNP .\nBy the end of 2010 , Liechtenstein had signed 25 Tax Information Exchange Agreements or Double Tax Agreements .\tIN DT NN IN CD , NNP VBD VBN CD NNP NNP NNP NNPS CC NNP NNP NNPS .\nUruguay 's economy is characterized by an export-oriented agricultural sector , a well-educated work force , and high levels of social spending .\tNNP POS NN VBZ VBN IN DT JJ JJ NN , DT JJ NN NN , CC JJ NNS IN JJ NN .\nFollowing financial difficulties in the late 1990s and early 2000s , economic growth for Uruguay averaged 8 % annually during the period 2004 - 8 .\tVBG JJ NNS IN DT JJ NNS CC RB NNS , JJ NN IN NNP VBD CD NN RB IN DT NN CD : CD .\nThe 2008 - 9 global financial crisis put a brake on Uruguay 's vigorous growth , which decelerated to 2.9 % in 2009 .\tDT CD : CD JJ JJ NN VBD DT NN IN NNP POS JJ NN , WDT VBD TO CD NN IN CD .\nNevertheless , the country managed to avoid a recession and keep positive growth rates , mainly through higher public expenditure and investment , and GDP growth exceeded 8 % in 2010 .\tRB , DT NN VBD TO VB DT NN CC VB JJ NN NNS , RB IN JJR JJ NN CC NN , CC NN NN VBD CD NN IN CD .\nSince 1997 , Sudan has been working with the IMF to implement macroeconomic reforms including a managed float of the exchange rate and a large reserve of foreign exchange .\tIN CD , NNP VBZ VBN VBG IN DT NNP TO VB JJ NNS VBG DT VBN NN IN DT NN NN CC DT JJ NN IN JJ NN .\nA new currency , the Sudanese Pound , was introduced in January 2007 at an initial exchange rate of $ 1 equals 2 Sudanese Pounds .\tDT JJ NN , DT JJ NNP , VBD VBN IN NNP CD IN DT JJ NN NN IN $ CD VBZ CD JJ NNS .\nSudan began exporting crude oil in the last quarter of 1999 and the economy boomed on the back of increases in oil production , high oil prices , and significant inflows of foreign direct investment until the second half of 2008 .\tNNP VBD VBG JJ NN IN DT JJ NN IN CD CC DT NN VBN IN DT NN IN NNS IN NN NN , JJ NN NNS , CC JJ NNS IN JJ JJ NN IN DT JJ NN IN CD .\nThe Darfur conflict , the aftermath of two decades of civil war in the south , the lack of basic infrastructure in large areas , and a reliance by much of the population on subsistence agriculture ensure much of the population will remain at or below the poverty line for years to come despite rapid rises in average per capita income .\tDT NNP NN , DT NN IN CD NNS IN JJ NN IN DT NN , DT NN IN JJ NN IN JJ NNS , CC DT NN IN NN IN DT NN IN NN NN VB NN IN DT NN MD VB IN CC IN DT NN NN IN NNS TO VB IN JJ NNS IN JJ IN NN NN .\nSudan 's real GDP expanded by 5.2 % during 2010 , an improvement over 2009 's 4.2 % growth but significantly below the more than 10 % per year growth experienced prior to the global financial crisis in 2006 and 2007 .\tNNP POS JJ NN VBN IN CD NN IN CD , DT NN IN CD POS CD NN NN CC RB IN DT JJR IN CD NN IN NN NN VBN RB TO DT JJ JJ NN IN CD CC CD .\nWhile the oil sector continues to drive growth , services and utilities play an increasingly important role in the economy with agriculture production remaining important as it employs 80 % of the work force and contributes a third of GDP .\tIN DT NN NN VBZ TO VB NN , NNS CC NNS VBP DT RB JJ NN IN DT NN IN NN NN VBG JJ IN PRP VBZ CD NN IN DT NN NN CC VBZ DT NN IN NN .\nIn the lead up to the referendum on southern secession , which took place in January 2011 , Sudan saw its currency depreciate considerably on the black market with the Central Bank 's official rate also losing value as the Sudanese people started to hoard foreign currency .\tIN DT NN RB TO DT NN IN JJ NN , WDT VBD NN IN NNP CD , NNP VBD PRP$ NN VB RB IN DT JJ NN IN DT NNP NNP POS JJ NN RB VBG NN IN DT JJ NNS VBD TO VB JJ NN .\nThe Central Bank of Sudan intervened heavily in the currency market to defend the value of the pound and the Sudanese government introduced a number of measures to restrain excess local demand for hard currency , but uncertainty about the secession has meant that foreign exchange remains in heavy demand .\tDT NNP NNP IN NNP VBD RB IN DT NN NN TO VB DT NN IN DT NN CC DT JJ NN VBD DT NN IN NNS TO VB JJ JJ NN IN JJ NN , CC NN IN DT NN VBZ VBN IN JJ NN VBZ IN JJ NN .\nThe Swiss Confederation was founded in 1291 as a defensive alliance among three cantons .\tDT JJ NN VBD VBN IN CD IN DT JJ NN IN CD NNS .\nIn succeeding years , other localities joined the original three .\tIN VBG NNS , JJ NNS VBD DT JJ CD .\nThe Swiss Confederation secured its independence from the Holy Roman Empire in 1499 .\tDT JJ NN VBD PRP$ NN IN DT NNP NNP NNP IN CD .\nA constitution of 1848 , subsequently modified in 1874 , replaced the confederation with a centralized federal government .\tDT NN IN CD , RB VBN IN CD , VBD DT NN IN DT JJ JJ NN .\nSwitzerland 's sovereignty and neutrality have long been honored by the major European powers , and the country was not involved in either of the two world wars .\tNNP POS NN CC NN VBP RB VBN VBN IN DT JJ JJ NNS , CC DT NN VBD RB VBN IN DT IN DT CD NN NNS .\nThe political and economic integration of Europe over the past half century , as well as Switzerland 's role in many UN and international organizations , has strengthened Switzerland 's ties with its neighbors .\tDT JJ CC JJ NN IN NNP IN DT JJ JJ NN , RB RB IN NNP POS NN IN JJ NNP CC JJ NNS , VBZ VBN NNP POS NNS IN PRP$ NNS .\nHowever , the country did not officially become a UN member until 2002 .\tRB , DT NN VBD RB RB VB DT NNP NN IN CD .\nSwitzerland remains active in many UN and international organizations but retains a strong commitment to neutrality .\tNNP VBZ JJ IN JJ NNP CC JJ NNS CC VBZ DT JJ NN TO NN .\nA CROW was jealous of the Raven , because he was considered a bird of good omen and always attracted the attention of men , who noted by his flight the good or evil course of future events .\tDT NN VBD JJ IN DT NN , IN PRP VBD VBN DT NN IN JJ NNS CC RB VBD DT NN IN NNS , WP VBD IN PRP$ NN DT JJ CC JJ NN IN JJ NNS .\nSeeing some travelers approaching , the Crow flew up into a tree , and perching herself on one of the branches , cawed as loudly as she could .\tVBG DT NNS VBG , DT NN VBD RP IN DT NN , CC VBG PRP IN CD IN DT NNS , VBD RB RB IN PRP MD .\nThe travelers turned towards the sound and wondered what it foreboded , when one of them said to his companion , ' Let us proceed on our journey , my friend , for it is only the caw of a crow , and her cry , you know , is no omen . '\tDT NNS VBD IN DT NN CC VBD WP PRP VBD , WRB CD IN PRP VBD TO PRP$ NN , `` VB PRP VB IN PRP$ NN , PRP$ NN , IN PRP VBZ RB DT NN IN DT NN , CC PRP$ NN , PRP VBP , VBZ DT NN . ``\nThose who assume a character which does not belong to them , only make themselves ridiculous .\tDT WP VBP DT NN WDT VBZ RB VB TO PRP , RB VBP PRP JJ .\nA RICH MAN lived near a Tanner , and not being able to bear the unpleasant smell of the tan-yard , he pressed his neighbor to go away .\tDT NNP NNP VBD IN DT NN , CC RB VBG JJ TO VB DT JJ NN IN DT NN , PRP VBD PRP$ NN TO VB RB .\nThe Tanner put off his departure from time to time , saying that he would leave soon .\tDT NNP VBD RP PRP$ NN IN NN TO NN , VBG IN PRP MD VB RB .\nBut as he still continued to stay , as time went on , the rich man became accustomed to the smell , and feeling no manner of inconvenience , made no further complaints .\tCC IN PRP RB VBD TO VB , IN NN VBD IN , DT JJ NN VBD JJ TO DT NN , CC VBG DT NN IN NN , VBD DT JJ NNS .\nA FARMER who had a deadly and implacable hatred against a certain Fox , caught him and tied some tow to his tail ; then carrying him to the centre of his own grain-field , set the tow on fire and let the animal go .\tDT NN WP VBD DT JJ CC JJ NN IN DT JJ NN , VBD PRP CC VBN DT NN TO PRP$ NN ; RB VBG PRP TO DT NN IN PRP$ JJ NN , VBD DT NN IN NN CC VB DT NN NN .\n' Alas ! ' said the Farmer , seeing the result ; ' if that grain had not been heavily insured , I might have had to dissemble my hatred of the Fox . '\t`` UH . `` VBD DT NN , VBG DT NN ; `` IN DT NN VBD RB VBN RB VBN , PRP MD VB VBN TO VB PRP$ NN IN DT NN . ``\nSOME BOYS , playing near a pond , saw a number of Frogs in the water and began to pelt them with stones .\tDT NNS , VBG IN DT NN , VBD DT NN IN NNS IN DT NN CC VBD TO VB PRP IN NNS .\nThey killed several of them , when one of the Frogs , lifting his head out of the water , cried out : ' Pray stop , my boys : what is sport to you , is death to us . '\tPRP VBD NN IN PRP , WRB CD IN DT NNS , VBG PRP$ NN IN IN DT NN , VBN RP IN `` NNP NN , PRP$ NNS IN WP VBZ NN TO PRP , VBZ NN TO PRP . ``\n- ' One man 's pleasure may be another 's pain . ' -\t: `` CD NN POS NN MD VB DT POS NN . `` :\nSoftball is better than baseball because the Seventh Inning Stretch means stand up and go home .\tNN VBZ JJR IN NN IN DT NNP NNP NNP VBZ VB RP CC VB NN .\nMath is like love ; a simple idea , but it can get complicated .\tNN VBZ IN NN ; DT JJ NN , CC PRP MD VB JJ .\nI 'm not saying that the customer service in my bank is bad , but when I went in the other day and asked the clerk to check my balance ... she leaned over and pushed me .\tPRP VBP RB VBG IN DT NN NN IN PRP$ NN VBZ JJ , CC WRB PRP VBD IN DT JJ NN CC VBD DT NN TO VB PRP$ NN : PRP VBD IN CC VBD PRP .\nA priest who was walking through a small town saw a blackboard outside the front door of a school .\tDT NN WP VBD VBG IN DT JJ NN VBD DT NN IN DT JJ NN IN DT NN .\nIt had been washed and put out to dry in the open air .\tPRP VBD VBN VBN CC VBN RP TO VB IN DT JJ NN .\nThere was a piece of chalk at the foot of the blackboard .\tEX VBD DT NN IN NN IN DT NN IN DT NN .\nThe priest took the chalk and wrote in large letters , ' I 'm a priest and I pray for you all . '\tDT NN VBD DT NN CC VBD IN JJ NNS , `` PRP VBP DT NN CC PRP VBP IN PRP DT . ``\nA lawyer happened to pass next and when he saw what the priest had written , he added under it , ' I 'm a lawyer and I defend you all . '\tDT NN VBD TO VB JJ CC WRB PRP VBD WP DT NN VBD VBN , PRP VBD IN PRP , `` PRP VBP DT NN CC PRP VBP PRP DT . ``\nThen , a doctor came by , took the piece of chalk , and wrote on the blackboard , ' I 'm a doctor and I cure you all . '\tRB , DT NN VBD IN , VBD DT NN IN NN , CC VBD IN DT NN , `` PRP VBP DT NN CC PRP VB PRP DT . ``\nFinally , an ordinary citizen stopped , looked at what the others had written , thought for a few seconds and then added , ' I am an ordinary citizen and I pay for you all . '\tRB , DT JJ NN VBD , VBD IN WP DT NNS VBD VBN , VBD IN DT JJ NNS CC RB VBD , `` PRP VBP DT JJ NN CC PRP VBP IN PRP DT . ``\nA strain of the bird flu virus that can spread to humans has been found among poultry in northern Nigeria .\tDT NN IN DT NN NN NN WDT MD VB TO NNS VBZ VBN VBN IN NN IN JJ NNP .\nThe Paris-based World Organization for Animal Health says it found a ' highly pathogenic ' version of the H5N1 strain at a chicken farm in the village of Jaji in Kaduna state .\tDT JJ NNP NNP IN NNP NNP VBZ PRP VBD DT `` RB JJ `` NN IN DT NNP NN IN DT NN NN IN DT NN IN NNP IN NNP NN .\nThis is the first reported case of H5N1 in Africa .\tDT VBZ DT JJ JJ NN IN NNP IN NNP .\nThe organization says Nigerian authorities have disinfected the premises , and imposed a quarantine and restrictions on the movement of animals .\tDT NN VBZ JJ NNS VBP VBN DT NNS , CC VBD DT NN CC NNS IN DT NN IN NNS .\nIt says it plans to coordinate a joint response to the situation with the U.N. 's Food and Agriculture Organization .\tPRP VBZ PRP VBZ TO VB DT JJ NN TO DT NN IN DT NNP POS NNP CC NNP NNP .\nAvian flu has killed or forced the slaughter of millions of birds over the last two years .\tJJ NN VBZ VBN CC VBN DT NN IN NNS IN NNS IN DT JJ CD NNS .\nThe H5N1 strain has killed at least 88 people in seven countries , mostly in Asia , since late 2003 .\tDT NNP NN VBZ VBN IN JJS CD NNS IN CD NNS , RB IN NNP , IN JJ CD .\nThe European Parliament has endorsed next week 's planned start of European Union membership talks with Turkey .\tDT NNP NNP VBZ VBN JJ NN POS JJ NN IN NNP NNP NN NNS IN NNP .\nHowever , lawmakers on Wednesday also postponed ratifying Turkey 's customs accord with the European Union because of Turkey 's continued refusal to recognize Cyprus , which gained EU membership last year .\tRB , NNS IN NNP RB VBD VBG NNP POS NNS NN IN DT NNP NNP IN IN NNP POS JJ NN TO VB NNP , WDT VBD NNP NN JJ NN .\nAlso , the European Parliament passed a non-binding resolution calling on Turkey to recognize the massacre of hundreds of thousands of Armenians under the Ottoman Empire as a genocide .\tRB , DT NNP NNP VBD DT JJ NN VBG IN NNP TO VB DT NN IN NNS IN NNS IN NNS IN DT NNP NNP IN DT NN .\nArmenia says 1.5 million Armenians were slaughtered by the Turks 90 years ago during the final years of the Ottoman Empire .\tNNP VBZ CD CD NNS VBD VBN IN DT NNS CD NNS RB IN DT JJ NNS IN DT NNP NNP .\nTurkey says 3,00,000 Armenians and thousands of Turks were killed during an Armenian uprising .\tNNP VBZ CD NNS CC NNS IN NNS VBD VBN IN DT JJ NN .\nPolice in Afghanistan say suspected Taleban militants have kidnapped four Afghan aid workers in the eastern part of the country .\tNNS IN NNP VBP VBN NNP NNS VBP VBN CD JJ NN NNS IN DT JJ NN IN DT NN .\nA provincial police chief General Abdul Hanan Raufi said Monday the four aid workers , employed by the International Organization for Migration , were abducted Sunday in eastern Paktia province .\tDT JJ NN NN NNP NNP NNP NNP VBD NNP DT CD NN NNS , VBN IN DT NNP NNP IN NNP , VBD VBN NNP IN JJ NNP NN .\nHe said elders in the area are involved in negotiating for their release .\tPRP VBD NNS IN DT NN VBP VBN IN VBG IN PRP$ NN .\nFarther east , the U.-S.-led coalition force says troops captured a known al-Qaida terrorist and five other extremists Monday during an operation near the city of Khost .\tNNP RB , DT JJ NN NN VBZ NNS VBD DT VBN NNP JJ CC CD JJ NNS NNP IN DT NN IN DT NN IN NNP .\nA military statement did not identify the captured men , but said the troops found grenades , military equipment , armor-piercing rounds and assault rifles during a search of the compound where the men were caught .\tDT JJ NN VBD RB VB DT VBN NNS , CC VBD DT NNS VBD NNS , JJ NN , JJ NNS CC NN NNS IN DT NN IN DT NN WRB DT NNS VBD VBN .\nRussia 's foreign minister says Moscow will let NATO take armored vehicles through its territory to Afghanistan under an expanded transit deal .\tNNP POS JJ NN VBZ NNP MD VB NNP VB JJ NNS IN PRP$ NN TO NNP IN DT VBN NN NN .\nForeign Minister Sergei Lavrov told a news conference in Moscow Thursday that the opening of the Russian route applies to vehicles with anti-mine protection .\tNNP NNP NNP NNP VBD DT NN NN IN NNP NNP IN DT NN IN DT JJ NN VBZ TO NNS IN JJ NN .\nNATO chief Anders Fogh Rasmussen announced last week at a NATO-Russia Council meeting that Russia had agreed to increase its cooperation on the war in Afghanistan , allowing more equipment to be moved through the country to support NATO troops .\tNNP NN NNP NNP NNP VBD JJ NN IN DT NNP NNP NN IN NNP VBD VBN TO VB PRP$ NN IN DT NN IN NNP , VBG JJR NN TO VB VBN IN DT NN TO VB NNP NNS .\nRussian President Dmitry Medvedev led the NATO-Russia Council talks in Lisbon .\tJJ NNP NNP NNP VBD DT NNP NNP NNS IN NNP .\nIt was the first gathering of the 29-member group since April 2008 , just before Moscow 's brief war with Georgia , a Western ally .\tPRP VBD DT JJ NN IN DT JJ NN IN NNP CD , RB IN NNP POS JJ NN IN NNP , DT JJ NN .\nTropical Storm Ophelia has headed northward , as residents of coastal North and South Carolina assess damage from the slow-moving storm .\tJJ NN NNP VBZ VBN RB , IN NNS IN JJ NNP CC NNP NNP VBP NN IN DT JJ NN .\nThousands of homes and businesses remained without power Friday , despite the fact that the nation 's first hurricane since Katrina never officially made landfall .\tNNS IN NNS CC NNS VBD IN NN NNP , IN DT NN IN DT NN POS JJ NN IN NNP RB RB VBN NN .\nExperts say the Category 1 hurricane caused power outages , flooded streets , and significant damage to buildings because it moved slowly , battering the same area for two days and dumping dozens of centimeters of rain .\tNNS VBP DT NNP CD NN VBD NN NNS , VBN NNS , CC JJ NN TO NNS IN PRP VBD RB , VBG DT JJ NN IN CD NNS CC VBG NNS IN NNS IN NN .\nAs Ophelia continues to weaken and move northward , tropical storm watches are in effect for parts of the northeastern U.S. state of Massachusetts and the Canadian province of Nova Scotia .\tIN NNP VBZ TO VB CC VB RB , JJ NN NNS VBP IN NN IN NNS IN DT JJ NNP NN IN NNP CC DT JJ NN IN NNP NNP .\nA remote-controlled bomb ripped through the vehicle of an influential pro-government figure in southern Afghanistan Friday , wounding several people and killing at least two others .\tDT JJ NN VBD IN DT NN IN DT JJ NN NN IN JJ NNP NNP , VBG JJ NNS CC VBG IN JJS CD NNS .\nTribal elder Mullah Naqib , as well as some of his family members and guards , were wounded in the blast as their vehicle crossed a bridge in Kandahar province .\tNNP NN NNP NNP , RB RB IN DT IN PRP$ NN NNS CC NNS , VBD VBN IN DT NN IN PRP$ NN VBD DT NN IN NNP NN .\nNaqib also was a commander during the resistance to the Soviet occupation in the 1980s .\tNNP RB VBD DT NN IN DT NN TO DT JJ NN IN DT NNS .\nWitnesses say two bystanders also were killed .\tNNS VBP CD NNS RB VBD VBN .\nIn separate news , authorities in northern Afghanistan say police Friday detained eight suspects in connection with Thursday 's killing of a German aid worker .\tIN JJ NN , NNS IN JJ NNP VBP NNS NNP VBD CD NNS IN NN IN NNP POS NN IN DT JJ NN NN .\nIt is not clear if the suspects were militants or bandits .\tPRP VBZ RB JJ IN DT NNS VBD NNS CC NNS .\nThe foreign aid worker was killed when gunmen attacked his vehicle in Sari Pul province .\tDT JJ NN NN VBD VBN WRB NNS VBD PRP$ NN IN NNP NNP NN .\nThe assailants robbed three Afghan nationals traveling with him .\tDT NNS VBN CD JJ NNS VBG IN PRP .\nA study indicates that the average level of nicotine in cigarettes has risen 10 percent in the past six years , making it harder for smokers to quit .\tDT NN VBZ IN DT JJ NN IN NN IN NNS VBZ VBN CD NN IN DT JJ CD NNS , VBG PRP JJR IN NNS TO VB .\nThe health department for the state of Massachusetts released a study this week .\tDT NN NN IN DT NN IN NNP VBD DT NN DT NN .\nIt shows how much nicotine content has changed and how much nicotine smokers inhale when they smoke .\tPRP VBZ WRB JJ NN NN VBZ VBN CC WRB JJ NN NNS VBP WRB PRP VBP .\nThe study said cigarettes in 2004 yielded the smoker nearly 10 percent more nicotine per cigarette than in 1998 .\tDT NN VBD NNS IN CD VBD DT NN RB CD NN JJR NN IN NN IN IN CD .\nThe increase in nicotine levels varied by brand , with some increasing as much as 30 percent .\tDT NN IN JJ NNS VBN IN NN , IN DT VBG RB JJ IN CD NN .\nFifty two out of 116 brands studied had nicotine increases of more than 10 percent .\tCD CD IN IN CD NNS VBN VBD JJ NNS IN JJR IN CD NN .\nHealth experts say higher nicotine content makes cigarettes more addictive and smoking harder to quit .\tNN NNS VBP JJR JJ NN VBZ NNS RBR JJ CC NN JJR TO VB .\nU.S. tobacco companies have not commented on the study .\tNNP NN NNS VBP RB VBN IN DT NN .\nTurkey has sent more troops and tanks to the Iraqi border , as speculation grows about a possible Turkish incursion against Kurdish rebels in northern Iraq .\tNNP VBZ VBN JJR NNS CC NNS TO DT JJ NN , IN NN VBZ IN DT JJ JJ NN IN JJ NNS IN JJ NNP .\nTurkish Prime Minister Recep Tayyip Erdogan says his patience has run out for the United States and Iraq to take action against the Kurdish rebels .\tJJ NNP NNP NNP NNP NNP VBZ PRP$ NN VBZ VBN RP IN DT NNP NNPS CC NNP TO VB NN IN DT JJ NNS .\nBut U.S. officials have expressed concerns that a cross-border operation could destabilize northern Iraq .\tCC NNP NNS VBP VBN NNS IN DT JJ NN MD VB JJ NNP .\nMeanwhile , Turkish security forces continue large-scale operations against the Kurdistan Worker 's Party , or PKK , rebels in southeast Turkey .\tRB , JJ NN NNS VBP JJ NNS IN DT NNP NNP POS NNP , CC NNP , NNS IN JJ NNP .\nA Turkish soldier in the region was killed Wednesday by a landmine blast .\tDT JJ NN IN DT NN VBD VBN NNP IN DT NN NN .\nPressure for action against the PKK is mounting as Turkey prepares for national elections on July 22 , and after two bombings last week .\tNN IN NN IN DT NNP VBZ VBG IN NNP VBZ IN JJ NNS IN NNP CD , CC IN CD NNS JJ NN .\nThe PKK has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 .\tDT NNP VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD .\nThe United States , the European Union and Turkey classify the PKK as a terrorist group .\tDT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN .\nA South Korean official who visited Washington last week says talks to discuss North Korea 's nuclear program could resume as early as this month .\tDT JJ JJ NN WP VBD NNP JJ NN VBZ NNS TO VB NNP NNP POS JJ NN MD VB RB JJ IN DT NN .\nIn a radio interview Monday , Kim Sook , director-general for North American affairs at the South Korean Foreign Ministry , said he is cautiously optimistic about the resumption of six-party talks in July .\tIN DT NN NN NNP , NNP NNP , NN IN JJ JJ NNS IN DT NNP JJ NNP NNP , VBD PRP VBZ RB JJ IN DT NN IN JJ NNS IN NNP .\nHe added that North Korea has not set a firm date for their return to the negotiating table .\tPRP VBD IN NNP NNP VBZ RB VBN DT NN NN IN PRP$ NN TO DT NN NN .\nMr. Kim joined South Korea 's Unification Minister , Chung Dong-young , in Washington last week for talks with U.S. officials concerning Pyongyang .\tNNP NNP VBD NNP NNP POS NNP NNP , NNP NNP , IN NNP JJ NN IN NNS IN NNP NNS VBG NNP .\nReuters quotes Japan 's foreign minister today saying Tokyo 's patience on North Korea 's decision is running out .\tNNP VBZ NNP POS JJ NN NN VBG NNP POS NN IN NNP NNP POS NN VBZ VBG RP .\nNobutaka Machimura told the news agency that Japan is neither optimistic nor pessimistic about the talks resuming anytime soon .\tNNP NNP VBD DT NN NN IN NNP VBZ RB JJ CC JJ IN DT NNS VBG RB RB .\nFormer Sudanese President Jaafar Nimeiri - who imposed strict lslamic law on Sudan - has died .\tJJ JJ NNP NNP NNP : WP VBD JJ JJ NN IN NNP : VBZ VBN .\nA statement from Sudan 's presidential office says the 79-year-old former leader died from an unspecified illness .\tDT NN IN NNP POS JJ NN VBZ DT JJ JJ NN VBD IN DT JJ NN .\nIt says he will be buried on Sunday in Omdurman near the capital , Khartoum .\tPRP VBZ PRP MD VB VBN IN NNP IN NNP IN DT NN , NNP .\nMr. Nimeiri came to power in a coup in 1969 and served for 16 years until he too was ousted by a coup in 1985 while visiting the United States .\tNNP NNP VBD TO NN IN DT NN IN CD CC VBD IN CD NNS IN PRP RB VBD VBN IN DT NN IN CD IN VBG DT NNP NNPS .\nPresident Nimeiri imposed Islamic Sharia on Sudan in 1983 , a move that alienated the largely non-Muslim south , and is widely viewed as the catalyst for the nation 's 22-year civil war .\tNNP NNP VBD NNP NNP IN NNP IN CD , DT NN WDT VBD DT RB JJ NN , CC VBZ RB VBN IN DT NN IN DT NN POS JJ JJ NN .\nFollowing his ouster , Mr. Nimeiri lived in exile in Egypt .\tVBG PRP$ NN , NNP NNP VBD IN NN IN NNP .\nHe returned to Sudan in 1999 .\tPRP VBD TO NNP IN CD .\nThe Nigerian military has fired on several barges it says were being used by oil smugglers in the Niger Delta region .\tDT JJ NN VBZ VBN IN JJ NNS PRP VBZ VBD VBG VBN IN NN NNS IN DT NNP NNP NN .\nA helicopter gunship carried out the attack Wednesday in Delta state , near the city of Warri .\tDT NN NN VBD IN DT NN NNP IN NNP NN , IN DT NN IN NNP .\nIt was the first known assault by Nigeria 's military in the Delta since local militants carried out a series of attacks against the oil industry , including the kidnapping of four foreign oil workers last month .\tPRP VBD DT JJ VBN NN IN NNP POS NN IN DT NNP IN JJ NNS VBD RP DT NN IN NNS IN DT NN NN , VBG DT NN IN CD JJ NN NNS JJ NN .\nA local group known as the Movement for the Emancipation of the Niger Delta condemned the helicopter strike , saying it targeted ethnic Ijaw communities .\tDT JJ NN VBN IN DT NN IN DT NN IN DT NNP NNP VBD DT NN NN , VBG PRP VBD JJ NNP NNS .\nThe group alleges the helicopter took off from an civilian airstrip operated by Royal Dutch Shell .\tDT NN VBZ DT NN VBD RP IN DT JJ NN VBN IN NNP NNP NNP .\nIt threatened to shoot down aircraft using the strip if Nigeria 's military uses it again .\tPRP VBD TO VB RP NN VBG DT NN IN NNP POS JJ NNS PRP RB .\nThe militants want greater local control over southern Nigeria 's oil wealth .\tDT NNS VBP JJR JJ NN IN JJ NNP POS NN NN .\nThe United States says it has temporarily suspended the resettlement of at least 6,000 Hmong refugees from Thailand , after at least a score of refugees already in the U.S. were diagnosed with tuberculosis .\tDT NNP NNPS VBZ PRP VBZ RB VBN DT NN IN IN JJS CD JJ NNS IN NNP , IN IN JJS DT NN IN NNS RB IN DT NNP VBD VBN IN NN .\nAt least 20 refugees infected with the disease are in the western U.S. state of California .\tIN JJS CD NNS VBN IN DT NN VBP IN DT JJ NNP NN IN NNP .\nHealth officials say 11 of the patients are children .\tNNP NNS VBP CD IN DT NNS VBP NNS .\nA handful of other cases were located in the midwestern states of Minnesota and Wisconsin .\tDT NN IN JJ NNS VBD VBN IN DT JJ NNS IN NNP CC NNP .\nThe U.S. has resettled at least 9,000 Hmong refugees living in the Wat Tham Krabok camp since June of last year .\tDT NNP VBZ VBN IN JJS CD NNP NNS VBG IN DT NNP NNP NNP NN IN NNP IN JJ NN .\nOfficials say they will begin enhanced medical treatment and screenings at the camp .\tNNS VBP PRP MD VB JJ JJ NN CC NNS IN DT NN .\nThe suspension is expected to last for up to six months .\tDT NN VBZ VBN TO VB IN RP TO CD NNS .\nZimbabwe 's ruling party has elected its first woman vice president .\tNNP POS NN NN VBZ VBN PRP$ JJ NN NN NN .\nAt the conclusion of the ZANU-PF party congress Saturday , delegates approved the nomination 49-year old Joyce Mujuru , Zimbabwe 's minister of water and infrastructure .\tIN DT NN IN DT NNP NN NN NNP , NNS VBD DT NN JJ JJ NNP NNP , NNP POS NN IN NN CC NN .\nShe will share the post with Joseph Msika - filling a vacancy left by Simon Muzenda , who died last year .\tPRP MD VB DT NN IN NNP NNP IN VBG DT NN VBN IN NNP NNP , WP VBD JJ NN .\nMs. Mujuru was President Robert Mugabe 's hand-chosen candidate .\tNNP NNP VBD NNP NNP NNP POS JJ NN .\nEarlier this week , Mr. Mugabe suspended seven top party officials and reprimanded another for allegedly plotting against Ms. Mujuru 's election , in favor of another candidate , parliamentary speaker Emmerson Mnangawa .\tRBR DT NN , NNP NNP VBD CD JJ NN NNS CC VBD DT IN RB VBG IN NNP NNP POS NN , IN NN IN DT NN , JJ NN NNP NNP .\nAnalysts said whoever won the vice presidency would be in a good position to possibly succeed Mr. Mugabe , now 80 years old , when he steps down .\tNNS VBD WP VBD DT NN NN MD VB IN DT JJ NN TO RB VB NNP NNP , RB CD NNS JJ , WRB PRP VBZ RB .\nThe United Nations has condemned the killing of an Afghan election worker by suspected Taleban rebels , the first killing linked to parliamentary polls scheduled for September .\tDT NNP NNP VBZ VBN DT NN IN DT JJ NN NN IN JJ NNP NNS , DT JJ NN VBN TO JJ NNS VBN IN NNP .\nU.N. spokeswoman Ariane Quentier said the world body condemns any type of violence aimed at derailing the democratic process in Afghanistan .\tNNP NN NNP NNP VBD DT NN NN VBZ DT NN IN NN VBN IN VBG DT JJ NN IN NNP .\nOfficials say suspected Taleban rebels surrounded a village Friday and shot the election worker as he came out of a mosque .\tNNS VBP VBN NNP NNS VBN DT NN NNP CC VBD DT NN NN IN PRP VBD IN IN DT NN .\nThe victim was part of a project educating villagers on how to cast their votes in Uruzgan province .\tDT NN VBD NN IN DT NN VBG NNS IN WRB TO VB PRP$ NNS IN NNP NN .\nThe killing has raised fears of further violence ahead of the September 18 parliamentary polls - the country 's next key step toward democracy after 25 years of war .\tDT NN VBZ VBN NNS IN JJ NN RB IN DT NNP CD JJ NNS IN DT NN POS JJ JJ NN IN NN IN CD NNS IN NN .\nA new survey shows support for U.S. President Barack Obama has fallen in Europe , though his popularity remains high .\tDT JJ NN VBZ NN IN NNP NNP NNP NNP VBZ VBN IN NNP , IN PRP$ NN VBZ JJ .\nMr. Obama 's approval ratings among Europeans dropped from 83 percent in 2009 to 78 percent in the annual Transatlantic Trends survey released Wednesday .\tNNP NNP POS NN NNS IN NNS VBD IN CD NN IN CD TO CD NN IN DT JJ NNP NNPS NN VBN NNP .\nThe poll , conducted by the German Marshall Fund of the United States , surveyed 1,000 people each in the United States , Turkey and 11 European Union nations .\tDT NN , VBN IN DT JJ NNP NNP IN DT NNP NNPS , VBN CD NNS DT IN DT NNP NNPS , NNP CC CD NNP NNP NNS .\nWhile Mr. Obama enjoys overall support in Europe , fewer than half of those polled approved of his handling of Iran and Afghanistan .\tIN NNP NNP VBZ JJ NN IN NNP , JJR IN NN IN DT VBN VBN IN PRP$ NN IN NNP CC NNP .\nA majority of Europeans said membership in the EU was good for their economy , even if the euro currency was not .\tDT NN IN NNS VBD NN IN DT NNP VBD JJ IN PRP$ NN , RB IN DT NN NN VBD RB .\nU.S. military officials say five Americans are being held in Iraq under suspicion of terrorist activity .\tNNP JJ NNS VBP CD NNS VBP VBG VBN IN NNP IN NN IN JJ NN .\nPentagon spokesman Bryan Whitman declined to identify any of the detainees .\tNNP NN NNP NNP VBD TO VB DT IN DT NNS .\nBut news reports said three of them are Iraqi-Americans , one is an Iranian-American and the fifth suspect is Jordanian-American .\tCC NN NNS VBD CD IN PRP VBP JJ , CD VBZ DT JJ CC DT JJ NN VBZ JJ .\nMr. Whitman said none of them have been charged with a crime and that there is no connection between the suspects .\tNNP NNP VBD NN IN PRP VBP VBN VBN IN DT NN CC IN EX VBZ DT NN IN DT NNS .\nThe Iranian-American has been identified by his family as Cyrus Kar of Los Angeles .\tDT JJ VBZ VBN VBN IN PRP$ NN IN NNP NNP IN NNP NNP .\nHis laywers have sued the U.S. government in an effort to secure his release .\tPRP$ NNS VBP VBN DT NNP NN IN DT NN TO VB PRP$ NN .\nPresident Bush says the United States is a prayerful nation , which he says he believes makes the nation strong .\tNNP NNP VBZ DT NNP NNPS VBZ DT JJ NN , WDT PRP VBZ PRP VBZ VBZ DT NN JJ .\nHe made the remark at a White House event Thursday for the National Day of Prayer , which is observed on the first Thursday of May .\tPRP VBD DT NN IN DT NNP NNP NN NNP IN DT NNP NNP IN NNP , WDT VBZ VBN IN DT JJ NNP IN NNP .\nThose in attendance included members of the military , religious leaders , lawmakers , cabinet officials , and Washington Mayor Adrian Fenty .\tDT IN NN VBD NNS IN DT JJ , JJ NNS , NNS , NN NNS , CC NNP NNP NNP NNP .\nMr. Bush says Americans have answered the call for prayer since the founding of the nation more than two centuries ago .\tNNP NNP VBZ NNS VBP VBN DT NN IN NN IN DT NN IN DT NN JJR IN CD NNS RB .\nHe says the greatest gift someone can give is the gift of prayer , saying it has the power to change lives and the course of history .\tPRP VBZ DT JJS NN DT MD VB VBZ DT NN IN NN , VBG PRP VBZ DT NN TO VB NNS CC DT NN IN NN .\nChina says at least 18 people have been killed after moderate earthquake hit a mountainous area in southwest China 's Yunnan province .\tNNP VBZ IN JJS CD NNS VBP VBN VBN IN JJ NN VBD DT JJ NN IN JJ NNP POS NNP NN .\nThe official Xinhua news agency says the 5.1-magnitude earthquake shook Yunnan 's Yanjin county Saturday morning .\tDT JJ NNP NN NN VBZ DT JJ NN VBD NNP POS NNP NN NNP NN .\nThe epicenter of the quake was about 90 kilometers from Zhaotong city .\tDT NN IN DT NN VBD IN CD NNS IN NNP NN .\nRescue teams have been deployed to the area , where large rocks tumbled down from hills onto residential areas .\tNN NNS VBP VBN VBN TO DT NN , WRB JJ NNS VBD RB IN NNS IN JJ NNS .\nAt least 56 houses were reported destroyed in the quake .\tIN JJS CD NNS VBD VBN VBN IN DT NN .\nAt least 60 people were injured .\tIN JJS CD NNS VBD VBN .\nThey have been taken to hospitals for treatment .\tPRP VBP VBN VBN TO NNS IN NN .\nExperts with a local seismological bureau told Xinhua that houses in Yanjin were built mostly near hillsides , making them vulnerable to earthquakes .\tNNS IN DT JJ JJ NN VBD NNP IN NNS IN NNP VBD VBN RB IN NNS , VBG PRP JJ TO NNS .\nYanjin is a county on the Yunnan-Guizhou plateau with a population of 3,50,000 people .\tNNP VBZ DT NN IN DT NNP NN IN DT NN IN CD NNS .\nThe head of South Korea 's ruling Uri Party has resigned after parliament failed to pass several pieces of reform legislation by the end of 2004 .\tDT NN IN NNP NNP POS NN NNP NNP VBZ VBN IN NN VBD TO VB JJ NNS IN NN NN IN DT NN IN CD .\nUri Party Chairman Lee Bu-young and members of the party 's standing central committee stepped down Monday citing the failure of his attempts to scrap the National Security Law .\tNNP NNP NNP NNP NNP CC NNS IN DT NN POS NN JJ NN VBD RB NNP VBG DT NN IN PRP$ NNS TO VB DT NNP NNP NNP .\nThe Uri Party vowed to push through a bill repealing the law last year , but the opposition Grand National Party blocked the legislation , saying North Korea still poses a threat to national security .\tDT NNP NNP VBD TO VB IN DT NN VBG DT NN JJ NN , CC DT NN NNP NNP NNP VBD DT NN , VBG NNP NNP RB VBZ DT NN TO JJ NN .\nThe impasse over the security legislation threatened passage of the country 's budget and a one-year extension of its troop deployment in Iraq .\tDT NN IN DT NN NN VBD NN IN DT NN POS NN CC DT JJ NN IN PRP$ NN NN IN NNP .\nThe Uri Party leadership plans to hold a meeting this week to pick an interim leader who will serve until a party convention in April .\tDT NNP NNP NN VBZ TO VB DT NN DT NN TO VB DT JJ NN WP MD VB IN DT NN NN IN NNP .\nThe U.S. State Department 's annual human rights report , released Tuesday , says some African countries are making progress , while others are regressing or lagging behind .\tDT NNP NNP NNP POS JJ JJ NNS NN , VBN NNP , VBZ DT JJ NNS VBP VBG NN , IN NNS VBP VBG CC VBG RB .\nThe report praises Liberia , noting that President Ellen Johnson Sirleaf has dismissed some corrupt officials , and that her government is investigating war crimes committed during the country 's civil war .\tDT NN VBZ NNP , VBG IN NNP NNP NNP NNP VBZ VBN DT JJ NNS , CC IN PRP$ NN VBZ VBG NN NNS VBN IN DT NN POS JJ NN .\nBut the U.S. report has harsh words for Zimbabwe , saying the Mugabe government continues ' across-the-board ' human rights violations .\tCC DT NNP NN VBZ JJ NNS IN NNP , VBG DT NNP NN VBZ `` JJ `` JJ NNS NNS .\nThe report is even harder on Eritrea 's government , which it says continues to be one of the most repressive in sub-Saharan Africa .\tDT NN VBZ RB RBR IN NNP POS NN , WDT PRP VBZ VBZ TO VB CD IN DT RBS JJ IN JJ NNP .\nThere is especially strong criticism of Sudan .\tEX VBZ RB JJ NN IN NNP .\nThe report says the Sudanese government and government-backed Janjaweed militia bear responsibility for what the U.S. calls the genocide in Darfur .\tDT NN VBZ DT JJ NN CC JJ NNP NN VBP NN IN WP DT NNP VBZ DT NN IN NNP .\nSingapore 's men 's national football team has defeated Indonesia , 03-Jan , in the first leg of the Tiger Cup finals in Jakarta .\tNNP POS NNS POS JJ NN NN VBZ VBN NNP , CD , IN DT JJ NN IN DT NNP NNP NNS IN NNP .\nFirst-half goals from England native Daniel Bennett and Khairul Amri gave Singapore the lead .\tJJ NNS IN NNP JJ NNP NNP CC NNP NNP VBD NNP DT NN .\nNigerian-born Agu Casmir added another goal in the second half .\tJJ NNP NNP VBD DT NN IN DT JJ NN .\nIndonesia 's only score came in injury time when substitute Mahyadi Panggabean deflected a free kick into the goal .\tNNP POS JJ NN VBD IN NN NN WRB NN NNP NNP VBD DT JJ NN IN DT NN .\nSingapore holds a two-goal lead over Indonesia headed into the second leg match in Singapore January 16 .\tNNP VBZ DT JJ NN IN NNP VBD IN DT JJ NN NN IN NNP NNP CD .\nSingapore is trying to win the tournament for the second time in six years .\tNNP VBZ VBG TO VB DT NN IN DT JJ NN IN CD NNS .\nIndonesia has lost twice before in the Tiger Cup finals in 2000 and 2002 .\tNNP VBZ VBN RB RB IN DT NNP NNP NNS IN CD CC CD .\nAttacks in Pakistan 's southern Shaktoi area have become a source of friction between the U.S. and Pakistan , which sees them as a violation of its sovereignty Pakistani officials say a suspected U.S. drone missile strike has killed at least 20 militants .\tNNS IN NNP POS JJ NNP NN VBP VBN DT NN IN NN IN DT NNP CC NNP , WDT VBZ PRP IN DT NN IN PRP$ NN JJ NNS VBP DT JJ NNP NN NN NN VBZ VBN IN JJS CD NNS .\nAuthorities say the toll could rise .\tNNS VBP DT NN MD VB .\nSunday 's attack took place in the Shaktoi area of Pakistan 's restive South Waziristan region .\tNNP POS NN VBD NN IN DT NNP NN IN NNP POS JJ NNP NNP NN .\nSaturday , Pakistani Taliban militants issued a new audio recording they said proved their leader , Hakimullah Mehsud , survived a suspected U.S. missile strike last week .\tNNP , JJ NNP NNS VBD DT JJ NN NN PRP VBD VBD PRP$ NN , NNP NNP , VBD DT JJ NNP NN NN JJ NN .\nPakistani intelligence sources had said Mehsud was wounded in the missile strike that killed at least 12 suspected militants Thursday .\tJJ NN NNS VBD VBN NNP VBD VBN IN DT NN NN WDT VBD IN JJS CD JJ NNS NNP .\nThe United States has increased attacks using drones since a suicide bomber killed seven U.S. intelligence agents in eastern Afghanistan in late December .\tDT NNP NNPS VBZ VBN NNS VBG NNS IN DT NN NN VBD CD NNP NN NNS IN JJ NNP IN JJ NNP .\nAn international journalism advocacy group says the U.S.-based Yahoo Internet company works regularly with Chinese police to supply information on dissidents who use its service .\tDT JJ NN NN NN VBZ DT JJ NNP NNP NN VBZ RB IN JJ NNS TO VB NN IN NNS WP VBP PRP$ NN .\nIn a statement issued Thursday , the Paris-based organization Reporters Without Borders called on Yahoo to release a list of all the dissidents on whom it has provided data .\tIN DT NN VBN NNP , DT JJ NN NNS IN NNS VBN IN NNP TO VB DT NN IN PDT DT NNS IN WP PRP VBZ VBN NNS .\nThe group says it has discovered that Yahoo provided information relating to the arrest of at least two jailed dissidents , one in 2003 and the other last year .\tDT NN VBZ PRP VBZ VBN IN NNP VBD NN VBG TO DT NN IN IN JJS CD JJ NNS , CD IN CD CC DT JJ JJ NN .\nReporters Without Borders says the men received sentences of eight and 10 years , both based on electronic data supplied by Yahoo .\tNNS IN NNP VBZ DT NNS VBD NNS IN CD CC CD NNS , DT VBN IN JJ NNS VBN IN NNP .\nYahoo spokeswoman Mary Osako says that when the company receives subpoenas it is not usually told how the information is being used .\tNNP NN NNP NNP VBZ IN WRB DT NN VBZ NNS PRP VBZ RB RB VBD WRB DT NN VBZ VBG VBN .\nA U.S. congressional committee will hold a hearing next week on ethical responsibilities of Internet companies .\tDT NNP JJ NN MD VB DT NN JJ NN IN JJ NNS IN NN NNS .\nThree Australians went on trial Wednesday in Bali for allegedly trying to smuggle heroin from the resort island .\tCD NNS VBD IN NN NNP IN NNP IN RB VBG TO VB NN IN DT NN NN .\nThey are among nine Australians facing charges after the group was arrested in April .\tPRP VBP IN CD NNS VBG NNS IN DT NN VBD VBN IN NNP .\nIf convicted , they could be executed .\tIN VBN , PRP MD VB VBN .\nTwo other trials began Tuesday .\tCD JJ NNS VBD NNP .\nThis is the latest in a string of high-profile drug cases involving Australians in Indonesia .\tDT VBZ DT JJS IN DT NN IN JJ NN NNS VBG NNS IN NNP .\nIn May , Australian Schapelle Corby was sentenced to 20 years in prison on charges of smuggling marijuana onto the island .\tIN NNP , JJ NNP NNP VBD VBN TO CD NNS IN NN IN NNS IN VBG NN IN DT NN .\nHer conviction angered some in Australia who say she is innocent or the sentence is too harsh .\tPRP$ NN VBD DT IN NNP WP VBP PRP VBZ JJ CC DT NN VBZ RB JJ .\nIndonesia has some of the toughest drug laws in the world .\tNNP VBZ DT IN DT JJS NN NNS IN DT NN .\nThose convicted of possessing or distributing illegal drugs face sentences ranging from several years in prison to the death penalty .\tDT VBN IN VBG CC VBG JJ NNS VBP NNS VBG IN JJ NNS IN NN TO DT NN NN .\nGerman officials say that Russia is to remove large quantities of enriched uranium from the Soviet-era atomic reactor in former East Germany .\tJJ NNS VBP IN NNP VBZ TO VB JJ NNS IN VBN NN IN DT NNP JJ NN IN JJ NNP NNP .\nPolice said Sunday that more than 300 kilograms of nuclear waste , produced in the Rossendorf reactor near the city of Dresden , was to be flown out of Germany overnight .\tNNS VBD NNP IN JJR IN CD NNS IN JJ NN , VBN IN DT NNP NN IN DT NN IN NNP , VBD TO VB VBN IN IN NNP RB .\nGermans shut down the Soviet-built research reactor soon after reunification in 1990 .\tNNS VBD RP DT JJ NN NN RB IN NN IN CD .\nThe waste is to be treated in Russia under an international agreement aimed at preventing proliferation of nuclear material .\tDT NN VBZ TO VB VBN IN NNP IN DT JJ NN VBN IN VBG NN IN JJ NN .\nRepresentatives of U.N. Vienna-based International Atomic Energy Agency were to observe loading of the nuclear waste into aircraft at the Dresden airport .\tNNS IN NNP JJ NNP NNP NNP NNP VBD TO VB NN IN DT JJ NN IN NN IN DT NNP NN .\nIran continues to downplay the threat of U.S. military strikes , and says any U.S. attack on the Islamic republic would be a strategic mistake .\tNNP VBZ TO VB DT NN IN NNP JJ NNS , CC VBZ DT NNP NN IN DT JJ NN MD VB DT JJ NN .\nForeign Ministry spokesman Hamid Reza Asefi told a news conference Sunday the chance of a U.S. strike is very low , echoing recent comments from President Mohammad Khatami .\tNNP NNP NN NNP NNP NNP VBD DT NN NN NNP DT NN IN DT NNP NN VBZ RB JJ , VBG JJ NNS IN NNP NNP NNP .\nWashington and Tehran have been locked in a three-year stand-off over U.S. allegations that Iran is using its nuclear program to develop banned weapons .\tNNP CC NNP VBP VBN VBN IN DT JJ NN IN NNP NNS IN NNP VBZ VBG PRP$ JJ NN TO VB VBN NNS .\nIran has repeatedly denied the charges .\tNNP VBZ RB VBN DT NNS .\nLast week , a published report said U.S. commandos have carried out clandestine missions in Iran to identify targets for possible military strikes .\tJJ NN , DT VBN NN VBD NNP NNS VBP VBN RP JJ NNS IN NNP TO VB NNS IN JJ JJ NNS .\nThe White House rejected The New Yorker magazine report , but President Bush later said military action to deal with Iran 's nuclear threat had not been ruled out .\tDT NNP NNP VBD DT NNP NNP NN NN , CC NNP NNP RB VBD JJ NN TO VB IN NNP POS JJ NN VBD RB VBN VBN RP .\nSunday , Mr. Asefi characterized the president 's comments as psychological warfare .\tNNP , NNP NNP VBD DT NN POS NNS IN JJ NN .\nSecurity forces in Bosnia-Herzegovina have detained a former Bosnian Serb paramilitary leader suspected of crimes against humanity during the Balkan conflict of the 1990s .\tNNP NNS IN NNP VBP VBN DT JJ JJ JJ JJ NN VBN IN NNS IN NN IN DT JJ NN IN DT NNS .\nAuthorities say they picked up Momir Savic in the southeastern town of Visegrad .\tNNS VBP PRP VBD RP NNP NNP IN DT JJ NN IN NNP .\nProsecutors issued a warrant for Savic 's arrest on suspicion of war crimes against Muslim civilians in the Visegrad area in 1992 , as ethnic Serb forces killed or expelled most of the Muslims and Croats from eastern Bosnia .\tNNS VBD DT NN IN NNP POS NN IN NN IN NN NNS IN NNP NNS IN DT NNP NN IN CD , IN JJ JJ NNS VBD CC VBD JJS IN DT NNPS CC NNS IN JJ NNP .\nAuthorities gave no further details .\tNNS VBD DT JJ NNS .\nThe Bosnian conflict formally ended with the 1995 Dayton Accord , which divided the country into two entities , the Bosnian Serb Republic and the Muslim-Croat Federation .\tDT JJ NN RB VBD IN DT CD NNP NNP , WDT VBD DT NN IN CD NNS , DT JJ JJ NNP CC DT NNP NNP .\nBrazil 's president declared the country independent of the need for foreign oil as he opened a huge new offshore oilrig in the Atlantic Ocean on Thursday .\tNNP POS NN VBD DT NN NN IN DT NN IN JJ NN IN PRP VBD DT JJ JJ JJ NN IN DT NNP NNP IN NNP .\nPresident Luiz Inacio Lula da Silva flipped a switch and drenched his hands in the flowing oil .\tNNP NNP NNP NNP NNP NNP VBD DT NN CC VBD PRP$ NNS IN DT JJ NN .\nHis gesture recreated one made by President Getulio Vargas when he created the government-run Petrobras oil company in 1953 .\tPRP$ NN VBD CD VBN IN NNP NNP NNP WRB PRP VBD DT JJ NNP NN NN IN CD .\nIronically , the new rig came online in the same week that oil prices set record highs .\tRB , DT JJ NN VBD NN IN DT JJ NN IN NN NNS VBD NN NNS .\nRoughly 30 years ago , Brazil imported about 80 percent of its oil .\tRB CD NNS RB , NNP VBD IN CD NN IN PRP$ NN .\nPetrobras says that when the huge new P-50 oil rig is producing at full capacity six months from now , Brazil 's oil production will average 1.9 million barrels a day , slightly more than the nation 's average daily consumption of 1.85 barrels a day .\tNNP VBZ IN WRB DT JJ JJ JJ NN NN VBZ VBG IN JJ NN CD NNS IN RB , NNP POS NN NN MD VB CD CD NNS DT NN , RB JJR IN DT NN POS JJ JJ NN IN CD NNS DT NN .\nA cease-fire due to be signed Friday by the Ugandan government and rebels to end an 18-year war in the north of the country has been postponed .\tDT NN JJ TO VB VBN NNP IN DT JJ NN CC NNS TO VB DT JJ NN IN DT NN IN DT NN VBZ VBN VBN .\nThe delay was announced as negotiators on both sides tried to hammer out unresolved parts of the proposed cease-fire agreement during meetings in the northern district of Kitgum , near the Sudanese border .\tDT NN VBD VBN IN NNS IN DT NNS VBD TO VB RP JJ NNS IN DT VBN NN NN IN NNS IN DT JJ NN IN NNP , IN DT JJ NN .\nA new date for its signing has not been decided .\tDT JJ NN IN PRP$ NN VBZ RB VBN VBN .\nThe chief mediator for the Ugandan government , Betty Bigombe , said Thursday the agreement could clear the way for formal negotiations on ending the conflict .\tDT JJ NN IN DT JJ NN , NNP NNP , VBD NNP DT NN MD VB DT NN IN JJ NNS IN VBG DT NN .\nThe northern-based Lord 's Resistance Army has fought to overthrow the Ugandan government since 1987 , displacing more than one million people .\tDT JJ NNP POS NN NNP VBZ VBN TO VB DT JJ NN IN CD , VBG JJR IN CD CD NNS .\nIts rebels are notorious for attacking civilians and kidnapping children .\tPRP$ NNS VBP JJ IN VBG NNS CC VBG NNS .\nThe U.S. space agency 's Mars probe is set to land Sunday , May 25 .\tDT NNP NN NN POS NNP NN VBZ VBN TO VB NNP , NNP CD .\nNASA scientists in Washington recently talked about what they call the mission 's ' seven minutes of terror . '\tNNP NNS IN NNP RB VBD IN WP PRP VBP DT NN POS `` CD NNS IN NN . ``\nThat is how long it will take for a probe to slow down enough to land on its surface .\tDT VBZ WRB JJ PRP MD VB IN DT NN TO VB RB RB TO VB IN PRP$ NN .\nOnce there , the Phoenix Mars Lander will dig into the Martian ice and soil , study the planet 's atmosphere , and more .\tRB RB , DT NNP NNP NNP MD VB IN DT JJ NN CC NN , NN DT NN POS NN , CC RBR .\nVOA 's Paul Sisco reports .\tNNP POS NNP NNP VBZ .\nThousands of New Orleans residents are returning to their homes and businesses Friday , as clean-up efforts continue after Hurricanes Katrina and Rita .\tNNS IN NNP NNP NNS VBP VBG TO PRP$ NNS CC NNS NNP , IN JJ NNS VBP IN NNP NNP CC NNP .\nMany residents who live in reopened areas of the city , including the French Quarter and Garden District , have been permitted to return with proof of residency .\tJJ NNS WP VBP IN VBN NNS IN DT NN , VBG DT JJ NN CC NNP NNP , VBP VBN VBN TO VB IN NN IN NN .\nUtility crews continue to work on restoring electricity and providing drinkable water .\tNN NNS VBP TO VB IN VBG NN CC VBG JJ NN .\nSome business owners returned to the city on Thursday , and many are dealing with both structural damage and losses from looting .\tDT NN NNS VBD TO DT NN IN NNP , CC NN VBP VBG IN DT JJ NN CC NNS IN VBG .\nPolice say they are investigating whether some police officers took part in looting after Hurricane Katrina .\tNNS VBP PRP VBP VBG IN DT NN NNS VBD NN IN VBG IN NNP NNP .\nPolice spokesman Marlon Defillo says the investigation centers on about 12 officers who allegedly took non-essential items from store shelves .\tNNS NN NNP NNP VBZ DT NN NNS IN IN CD NNS WP RB VBD JJ NNS IN NN NNS .\nPolice in Afghanistan say Afghan and NATO forces have killed 10 Taleban rebels in fighting in the country 's south .\tNNS IN NNP VBP JJ CC NNP NNS VBP VBN CD NNP NNS IN VBG IN DT NN POS NN .\nPolice say the fighting broke out when Afghan and NATO forces raided the rebels ' hideouts in Helmand province 's Garmser district .\tNNS VBP DT NN VBD RP WRB JJ CC NNP NNS VBD DT NNS POS NNS IN NNP NN POS NNP NN .\nIt is the same area where , on Tuesday , Afghan and NATO forces killed 18 Taleban insurgents .\tPRP VBZ DT JJ NN WRB , IN NNP , JJ CC NNP NNS VBD CD NNP NNS .\nOne police officer was also killed .\tCD NN NN VBD RB VBN .\nNATO took over security operations from U.S.-led coalition forces this week in six southern Afghan provinces .\tNNP VBD RP NN NNS IN JJ NN NNS DT NN IN CD JJ JJ NNS .\nRussian President Vladimir Putin and British Prime Minister Tony Blair have met in London for talks focusing on energy issues and the struggle against terrorism .\tJJ NNP NNP NNP CC NNP NNP NNP NNP NNP VBP VBN IN NNP IN NNS VBG IN NN NNS CC DT NN IN NN .\nRussian officials say during the 90 minutes of discussions the two leaders paid special attention to the energy issue , noting that within seven years Britain will become an importer of natural gas and oil .\tJJ NNS VBP IN DT CD NNS IN NNS DT CD NNS VBD JJ NN TO DT NN NN , VBG IN IN CD NNS NNP MD VB DT NN IN JJ NN CC NN .\nThe Russian officials say both sides expressed readiness to cooperate in efforts to deal with tensions in the Middle East , Central Asia and Afghanistan .\tDT JJ NNS VBP DT NNS VBD NN TO VB IN NNS TO VB IN NNS IN DT NNP NNP , NNP NNP CC NNP .\nThey said Mr. Blair stressed the importance of tightening British anti-terrorist legislation .\tPRP VBD NNP NNP VBD DT NN IN VBG JJ JJ NN .\nThe meeting came ahead of ceremonies in which Mr. Putin honored the British team that helped rescue seven Russian sailors trapped in a submarine off the coast of Russia 's Kamchatka Peninsula last August .\tDT NN VBD RB IN NNS IN WDT NNP NNP VBD DT JJ NN WDT VBD VB CD JJ NNS VBN IN DT NN IN DT NN IN NNP POS NNP NNP JJ NNP .\nTuesday , Mr. Putin and European Union leaders held a summit in London .\tNNP , NNP NNP CC NNP NNP NNS VBD DT NN IN NNP .\nPresident Bush has condemned the terrorist attacks at three hotels in Jordan , and expressed his condolences to King Abdullah and the country 's people .\tNNP NNP VBZ VBN DT JJ NNS IN CD NNS IN NNP , CC VBD PRP$ NNS TO NNP NNP CC DT NN POS NNS .\nIn a statement , the president 's spokesman said the United States will offer any cooperation to Jordan in investigating the attacks and bringing those responsible to justice .\tIN DT NN , DT NN POS NN VBD DT NNP NNPS MD VB DT NN TO NNP IN VBG DT NNS CC VBG DT JJ TO NN .\nSecretary of State Condoleezza Rice called the attacks a ' great tragedy , ' adding it shows people are willing to take innocent life without remorse .\tNNP IN NNP NNP NNP VBD DT NNS DT `` JJ NN , `` VBG PRP VBZ NNS VBP JJ TO VB JJ NN IN NN .\nUnited Nations Secretary-General Kofi Annan condemned the attacks and renewed a call for U.N. members to advance a comprehensive plan to combat terrorism .\tNNP NNP NNP NNP NNP VBD DT NNS CC VBN DT NN IN NNP NNS TO VB DT JJ NN TO VB NN .\nU.N. officials said Mr. Annan , who is currently on a Middle East trip , has canceled plans to visit Jordan this week .\tNNP NNS VBD NNP NNP , WP VBZ RB IN DT NNP NNP NN , VBZ VBN NNS TO VB NNP DT NN .\nA Vietnamese man has died from bird flu , raising the country 's death toll from the deadly virus to 39 .\tDT JJ NN VBZ VBN IN NN NN , VBG DT NN POS NN NN IN DT JJ NN TO CD .\nHealth officials say the Hanoi resident died Tuesday after being hospitalized six days earlier .\tNNP NNS VBP DT NNP NN VBD NNP IN VBG VBN CD NNS RBR .\nIt was unclear how the man contracted bird flu .\tPRP VBD JJ WRB DT NN VBD JJ NN .\nThe Vietnamese government says it will begin nationwide vaccinations of poultry in August in an effort to contain the spread of the virus , which has also killed 12 people in Thailand and four others from Cambodia .\tDT JJ NN VBZ PRP MD VB JJ NNS IN NN IN NNP IN DT NN TO VB DT NN IN DT NN , WDT VBZ RB VBN CD NNS IN NNP CC CD NNS IN NNP .\nMedical experts say the H5N1 virus that causes bird flu appears to be spread only by close contact between humans and infected poultry .\tJJ NNS VBP DT NNP NN WDT VBZ NN NN VBZ TO VB VBN RB IN JJ NN IN NNS CC JJ NN .\nHowever , they warn that bird flu could change into a form that can easily pass between people , triggering a global pandemic .\tRB , PRP VBP IN NN NN MD VB IN DT NN WDT MD RB VB IN NNS , VBG DT JJ NN .\nMembers of the Philippine Senate have urged President Gloria Arroyo to pressure Burma 's military government to free pro-democracy leader Aung San Suu Kyi .\tNNS IN DT JJ NNP VBP VBN NNP NNP NNP TO VB NNP POS JJ NN TO JJ JJ NN NNP NNP NNP NNP .\nAll 23 members of the Senate signed a resolution urging the action Wednesday .\tDT CD NNS IN DT NNP VBD DT NN VBG DT NN NNP .\nIt is nonbinding , meaning it only serves to express the lawmakers ' opinions .\tPRP VBZ JJ , VBG PRP RB VBZ TO VB DT NNS POS NNS .\nThe resolution also opposes Burma 's takeover of the chairmanship of the Association of Southeast Asian Nations next year as scheduled .\tDT NN RB VBZ NNP POS NN IN DT NN IN DT NNP IN NNP NNP NNP JJ NN IN VBN .\nIt says Burma 's human rights record makes it unfit to head the organization .\tPRP VBZ NNP POS JJ NNS NN VBZ PRP JJ TO VB DT NN .\nPresident Arroyo met last month with Burma 's leader , Lieutenant-General Soe Win , and expressed fear for Aung San Suu Kyi , who has been under house arrest since May , 2003 .\tNNP NNP VBD JJ NN IN NNP POS NN , JJ NNP NNP , CC VBD NN IN NNP NNP NNP NNP , WP VBZ VBN IN NN NN IN NNP , CD .\nIndonesia 's Health Ministry says a 17-year-old woman has died of bird flu .\tNNP POS NNP NNP VBZ DT JJ NN VBZ VBN IN NN NN .\nAuthorities say the woman died Tuesday in Tangerang , west of Indonesia 's capital , Jakarta .\tNNS VBP DT NN VBD NNP IN NNP , NN IN NNP POS NN , NNP .\nShe is the 83rd Indonesian to have died of the virus .\tPRP VBZ DT JJ NN TO VB VBN IN DT NN .\nEarlier this week , a 29-year-old woman living on the island of Bali died of the disease , becoming the resort island 's first known human fatality from the often-deadly H5N1 strain of the virus .\tRBR DT NN , DT JJ NN VBG IN DT NN IN NNP VBD IN DT NN , VBG DT NN NN POS JJ VBN JJ NN IN DT JJ NNP NN IN DT NN .\nMore than 190 people worldwide have died from bird flu since the outbreak began in 2003 , mostly in Asian nations .\tJJR IN CD NNS JJ VBP VBN IN NN NN IN DT NN VBD IN CD , RB IN JJ NNS .\nThe virus is mainly passed to humans through contact with infected animals , but experts fear the virus could mutate into a form that is easily transmissible by human-to-human contact .\tDT NN VBZ RB VBN TO NNS IN NN IN JJ NNS , CC NNS VBP DT NN MD VB IN DT NN WDT VBZ RB JJ IN JJ NN .\nNATO officials say alliance troops have killed at least 48 suspected Taleban rebels and several civilians in three separate clashes in southern Afghanistan .\tNNP NNS VBP NN NNS VBP VBN IN JJS CD JJ NNP NNS CC JJ NNS IN CD JJ NNS IN JJ NNP .\nThe alliance said Wednesday four civilians were also wounded in the clashes in Kandahar 's Zhari and Panjwayi districts Tuesday .\tDT NN VBD NNP CD NNS VBD RB VBN IN DT NNS IN NNP POS NNP CC NNP NNS NNP .\nA NATO spokesman says the alliance is looking into ' credible reports ' of civilian deaths during at least one of the clashes .\tDT NNP NN VBZ DT NN VBZ VBG IN `` JJ NNS `` IN JJ NNS IN IN JJS CD IN DT NNS .\nHe says the alliance deeply regrets any civilian casualties .\tPRP VBZ DT NN RB VBZ DT JJ NNS .\nEarlier , NATO officials said Afghan police and NATO-led troops seized more than nine tons of hashish from a truck traveling in southern Afghanistan .\tRB , NNP NNS VBD JJ NNS CC JJ NNS VBD JJR IN CD NNS IN NN IN DT NN VBG IN JJ NNP .\nAlliance officials say security forces found the drugs while searching the truck at a checkpoint in Zabul province .\tNNP NNS VBP NN NNS VBD DT NNS IN VBG DT NN IN DT NN IN NNP NN .\nThe troops arrested the driver and three passengers .\tDT NNS VBN DT NN CC CD NNS .\nAfghan officials say Taleban-led militants are fueling the drug trade because it helps fund the rebellion .\tJJ NNS VBP JJ NNS VBP VBG DT NN NN IN PRP VBZ VB DT NN .\nThe United Nations children 's agency has called for an end to female genital mutilation , saying the cruel and dangerous practice is spreading .\tDT NNP NNP NNS POS NN VBZ VBN IN DT NN TO JJ JJ NN , VBG DT JJ CC JJ NN VBZ VBG .\nA report issued Thursday by UNICEF says millions of girls and women in Africa alone are still subjected to the procedure , known as female circumcision , which involves cutting off portions of or all of the female genitalia .\tDT NN VBN NNP IN NNP VBZ NNS IN NNS CC NNS IN NNP RB VBP RB VBN TO DT NN , VBN IN JJ NN , WDT VBZ VBG RP NNS IN CC DT IN DT JJ NN .\nThe report says that immigration has led to a ' globalization ' of the practice and it is affecting far more women than previously believed .\tDT NN VBZ IN NN VBZ VBN TO DT `` NN `` IN DT NN CC PRP VBZ VBG RB JJR NNS IN RB VBN .\nIt says the procedure often leads to hemorrhaging , infection and , later , problems during child birth .\tPRP VBZ DT NN RB VBZ TO NN , NN CC , RB , NNS IN NN NN .\nUNICEF is working with other organizations to stop female circumcision through education within traditional communities .\tNNP VBZ VBG IN JJ NNS TO VB JJ NN IN NN IN JJ NNS .\nIran 's new foreign minister says Tehran will not return to a full suspension of nuclear fuel activities and warned against referring the issue to the U.N. Security Council .\tNNP POS JJ JJ NN VBZ NNP MD RB VB TO DT JJ NN IN JJ NN NNS CC VBD IN VBG DT NN TO DT NNP NNP NNP .\nForeign Minister Manouchehr Mottaki made his comments at a news conference Sunday .\tNNP NNP NNP NNP VBD PRP$ NNS IN DT NN NN NNP .\nMr. Mottaki reiterated Iran 's position that it will not stop uranium processing .\tNNP NNP VBD NNP POS NN IN PRP MD RB VB NN NN .\nHe also rejected a European threat to refer Tehran to the U.N. Security Council for possible sanctions as a no-win situation .\tPRP RB VBD DT JJ NN TO VB NNP TO DT NNP NNP NNP IN JJ NNS IN DT JJ NN .\nHe warned such a move would result in certain consequences , but he did not elaborate .\tPRP VBD PDT DT NN MD VB IN JJ NNS , CC PRP VBD RB VB .\nEuropean negotiators have been trying to convince Iran to totally abandon nuclear fuel work in exchange for a package of trade , diplomatic , security and technological incentives .\tJJ NNS VBP VBN VBG TO VB NNP TO RB VB JJ NN NN IN NN IN DT NN IN NN , JJ , NN CC JJ NNS .\nThe United States accuses Iran of using its nuclear program as a cover to secretly produce nuclear weapons .\tDT NNP NNPS VBZ NNP IN VBG PRP$ JJ NN IN DT NN TO RB VB JJ NNS .\nTehran says it only wants nuclear technology to produce electricity .\tNNP VBZ PRP RB VBZ JJ NN TO VB NN .\nA leading human rights group is calling on European investigators to look into allegations of torture in secret prisons in Chechnya .\tDT VBG JJ NNS NN VBZ VBG IN JJ NNS TO VB IN NNS IN NN IN JJ NNS IN NNP .\nThe International Helsinki Federation for Human Rights released a report Monday in which it says it has proof that Russian and Chechen security forces are operating such prisons .\tDT NNP NNP NNP IN NNP NNP VBD DT NN NNP IN WDT PRP VBZ PRP VBZ NN IN JJ CC JJ NN NNS VBP VBG JJ NNS .\nIt says Chechens are kidnapped and then tortured and sometimes killed in the jails .\tPRP VBZ NNS VBP VBN CC RB VBD CC RB VBN IN DT NNS .\nThe report says the prisons violate Russian law and European human rights treaties .\tDT NN VBZ DT NNS VBP JJ NN CC JJ JJ NNS NNS .\nRussia has not yet responded to Monday 's report , but has denied allegations of torture in Chechen prisons in the past .\tNNP VBZ RB RB VBN TO NNP POS NN , CC VBZ VBN NNS IN NN IN JJ NNS IN DT NN .\nRussia has been battling Chechen separatists for much of the last decade .\tNNP VBZ VBN VBG JJ NNS IN NN IN DT JJ NN .\nThailand 's military-installed government says it plans to lift a ban on political gatherings but will maintain martial law .\tNNP POS JJ NN VBZ PRP VBZ TO VB DT NN IN JJ NNS CC MD VB JJ NN .\nInterim Prime Minister Surayud Chulanont said Tuesday in Bangkok that the political restrictions will be lifted after consultations with the military panel of coup leaders .\tJJ JJ NNP NNP NNP VBD NNP IN NNP IN DT JJ NNS MD VB VBN IN NNS IN DT JJ NN IN NN NNS .\nMartial law and related restrictions were put in place after Thailand 's military removed Prime Minister Thaksin Shinawatra from office in a peaceful coup in September .\tNNP NN CC VBN NNS VBD VBN IN NN IN NNP POS NN VBD NNP NNP NNP NNP IN NN IN DT JJ NN IN NNP .\nCases of violence or discontent have been rare since then .\tNNS IN NN CC NN VBP VBN JJ IN RB .\nMr. Thaksin had faced public calls for his resignation over allegations of abuse of power and graft .\tNNP NNP VBD VBN JJ NNS IN PRP$ NN IN NNS IN NN IN NN CC NN .\nMr. Surayud has vowed to unite the country .\tNNP NNP VBZ VBN TO VB DT NN .\nHe will remain prime minister until elections next October .\tPRP MD VB JJ NN IN NNS IN NNP .\nVenezuelan President Hugo Chavez has met with Russian business leaders to discuss joint oil and gas ventures during a visit to Moscow .\tJJ NNP NNP NNP VBZ VBN IN JJ NN NNS TO VB JJ NN CC NN NNS IN DT NN TO NNP .\nAccording to Associated Press , Mr. Chavez praised the close ties between Russia and Venezuela during the meeting , and urged top executives to invest in future energy projects .\tVBG TO NNP NNP , NNP NNP VBD DT JJ NNS IN NNP CC NNP IN DT NN , CC VBD JJ NNS TO VB IN JJ NN NNS .\nPresident Chavez is on a two-day visit to Russia .\tNNP NNP VBZ IN DT JJ NN TO NNP .\nHe scheduled to hold talks with his Russian counterpart , Vladimir Putin on Friday .\tPRP VBD TO VB NNS IN PRP$ JJ NN , NNP NNP IN NNP .\nRussia is the world 's second largest oil exporter , while Venezuela is fifth among oil-exporting countries .\tNNP VBZ DT NN POS JJ JJS NN NN , IN NNP VBZ JJ IN JJ NNS .\nMuslims around the world are awaiting the sighting of the crescent moon to begin fasting for Islam 's holy month of Ramadan .\tNNPS IN DT NN VBP VBG DT NN IN DT NN NN TO VB VBG IN NNP POS JJ NN IN NNP .\nMuslims observe the ninth month of the lunar Islamic calendar by abstaining from eating , drinking and sexual relations from dawn until sunset .\tNNPS VBP DT JJ NN IN DT NN JJ NN IN VBG IN NN , NN CC JJ NNS IN NN IN NN .\nThe holy month is expected to begin Wednesday or a day later , depending on the sighting of the moon the night before .\tDT JJ NN VBZ VBN TO VB NNP CC DT NN RB , VBG IN DT NN IN DT NN DT NN IN .\nThis year Ramadan begins amid scorching temperatures in the Middle East and elsewhere , with the first six months of 2010 being the warmest ever recorded .\tDT NN NNP VBZ IN VBG NNS IN DT NNP NNP CC RB , IN DT JJ CD NNS IN CD VBG DT NN RB VBN .\nThe month marks the time more than 1,400 years ago when Muslims believe the words of Islam 's holy book , the Koran , were revealed to the Prophet Mohammed .\tDT NN VBZ DT NN JJR IN CD NNS RB WRB NNS VBP DT NNS IN NNP POS JJ NN , DT NNP , VBD VBN TO DT NNP NNP .\nMuslims celebrate the month with family visits , invitations to iftars and shared meals that break the fast .\tNNPS VBP DT NN IN NN NNS , NNS TO NNS CC JJ NNS WDT VBP DT JJ .\nRamadan will conclude in September with a celebration called Eid al-Fitr .\tNNP MD VB IN NNP IN DT NN VBN NNP NNP .\nSudanese President Omar al-Bashir has made a rare visit to Darfur , where he made an appeal for peace and unity in the region .\tJJ NNP NNP NNP VBZ VBN DT JJ NN TO NNP , WRB PRP VBD DT NN IN NN CC NN IN DT NN .\nMr. Bashir spoke Saturday to a gathering in Nyala , the provincial capital .\tNNP NNP VBD NNP TO DT NN IN NNP , DT JJ NN .\nThe president said citizens want a comprehensive peace followed by development .\tDT NN VBD NNS VBP DT JJ NN VBN IN NN .\nHe called on armed rebels to join the political process .\tPRP VBD RP JJ NNS TO VB DT JJ NN .\nLater Sunday , President Bashir will chair a Cabinet meeting in El~Fasher , the capital of north Darfur .\tRB NNP , NNP NNP NN NN DT NNP NN IN NNP , DT NN IN JJ NNP .\nHe returns Monday to Khartoum .\tPRP VBZ NNP TO NNP .\nMore than four years of fighting in the western Sudanese Darfur region have killed an estimated 2,00,000 people and displaced more than two million others .\tJJR IN CD NNS IN VBG IN DT JJ JJ NNP NN VBP VBN DT JJ CD NNS CC VBN JJR IN CD CD NNS .\nThe Sudanese government has been accused of arming Arab militia , which have been blamed for many atrocities .\tDT JJ NN VBZ VBN VBN IN VBG JJ NN , WDT VBP VBN VBN IN JJ NNS .\nKhartoum denies any connection with the violence .\tNNP VBZ DT NN IN DT NN .\nBritish police say they are examining suspicious material found in a north London apartment connected to at least one of the suspects in last week 's failed transit bombings .\tJJ NNS VBP PRP VBP VBG JJ NN VBN IN DT JJ NNP NN VBN TO IN JJS CD IN DT NNS IN JJ NN POS VBN NN NNS .\nInvestigators Tuesday said they found a large quantity of possibly explosive material in the house .\tNNS NNP VBD PRP VBD DT JJ NN IN RB JJ NN IN DT NN .\nThe apartment , which police raided Monday , has been dubbed by some British newspapers as a ' bomb factory . '\tDT NN , WDT NN VBD NNP , VBZ VBN VBN IN DT JJ NNS IN DT POS NN NN . POS\nEarlier , police released the names of two of the suspects , one a naturalized British citizen from Eritrea and one a Somali living in the country legally .\tRBR , NNS VBD DT NNS IN CD IN DT NNS , CD DT JJ JJ NN IN NNP CC CD DT JJ NN IN DT NN RB .\nNo one was injured in the July 21 attacks , and officials say the four would-be bombers are most likely hiding in Britain .\tDT NN VBD VBN IN DT NNP CD NNS , CC NNS VBP DT CD JJ NNS VBP RBS JJ NN IN NNP .\nTwo weeks before , on July 7 , 56 people , including four suicide bombers , died when explosions ripped through three subway trains and a bus .\tCD NNS RB , IN NNP CD , CD NNS , VBG CD NN NNS , VBD WRB NNS VBD IN CD NN NNS CC DT NN .\nSix American and two Afghan soldiers were killed Sunday when a suicide bomber drove an explosives-laden van into a new jointly operated outpost in southern Kandahar province .\tCD JJ CC CD JJ NNS VBD VBN NNP WRB DT NN NN VBD DT JJ NN IN DT JJ RB VBN NN IN JJ NNP NN .\nU.S. and Afghan officials said a number of American and Afghan troops were wounded in the powerful blast .\tNNP CC JJ NNS VBD DT NN IN JJ CC JJ NNS VBD VBN IN DT JJ NN .\nThe Taliban claimed responsibility for the attack .\tDT NNP VBD NN IN DT NN .\nIn other violence , NATO said its security forces killed two insurgents , including a reputed Taliban leader , in eastern Afghanistan on Saturday .\tIN JJ NN , NNP VBD PRP$ NN NNS VBD CD NNS , VBG DT JJ NNP NN , IN JJ NNP IN NNP .\nAlso in the east , a joint Afghan-NATO force hunting for a Taliban ' shadow governor ' killed one insurgent and detained 10 others in Nangarhar province Saturday night .\tRB IN DT NN , DT JJ JJ NN NN IN DT NNP `` NN NN `` VBD CD NN CC VBD CD NNS IN NNP NN NNP NN .\nIn northern Kunduz province , one insurgent was killed and five others detained during a search for a high-ranking leader of the Islamic Movement of Uzbekistan .\tIN JJ NNP NN , CD NN VBD VBN CC CD NNS VBN IN DT NN IN DT JJ NN IN DT JJ NN IN NNP .\nAnd in southern Helmand province Saturday , a joint NATO-Afghan force found a drug cache containing one ton of opium and 37 kilograms of refined morphine .\tCC IN JJ NNP NN NNP , DT JJ NN NN VBD DT NN NN VBG CD NN IN NN CC CD NNS IN JJ NN .\nJordan has announced that parliamentary elections will be held on November 9 .\tNNP VBZ VBN IN JJ NNS MD VB VBN IN NNP CD .\nThe date was set in a Cabinet meeting Tuesday .\tDT NN VBD VBN IN DT NNP NN NNP .\nIt comes nearly a month after the government enacted a new election law increasing the number of seats from 110 to 120 .\tPRP VBZ RB DT NN IN DT NN VBD DT JJ NN NN VBG DT NN IN NNS IN CD TO CD .\nIt also doubled the quota of women lawmakers to 12 .\tPRP RB VBD DT NN IN NNS NNS TO CD .\nJordan 's King Abdullah dissolved parliament last year after accusing lawmakers of ineffectiveness .\tNNP POS NNP NNP VBD NN JJ NN IN VBG NNS IN NN .\nFrench police placed four people four youths under investigation in connection with a bus attack Saturday in Marseille that left a passenger in critical condition .\tJJ NNS VBD CD NNS CD NNS IN NN IN NN IN DT NN NN NNP IN NNP WDT VBD DT NN IN JJ NN .\nUnder the French legal system , being placed under investigation is one step short of the filing of formal charges Officials say the teenagers , between the ages of 15 and 17 , have previous records for delinquency .\tIN DT JJ JJ NN , VBG VBN IN NN VBZ CD NN NN IN DT NN IN JJ NNS NNS VBP DT NNS , IN DT NNS IN CD CC CD , VBP JJ NNS IN NN .\nA Marseille prosecutor , Jacques Baume , said three of the youths have admitted taking part in the incident .\tDT NNP NN , NNP NNP , VBD CD IN DT NNS VBP VBN VBG NN IN DT NN .\nThe victim - a 26-year-old woman - remains hospitalized after being burned on more than half of her body .\tDT NN IN DT JJ NN : VBZ VBN IN VBG VBN IN JJR IN NN IN PRP$ NN .\nThe bus attack is one of the most severe incidents coinciding with the anniversary of riots that raged through mainly immigrant suburbs of France a year ago .\tDT NN NN VBZ CD IN DT RBS JJ NNS VBG IN DT NN IN NNS WDT VBD IN RB JJ NNS IN NNP DT NN RB .\nImmigrant families rioted last November to protest discrimination and a lack of jobs for young people .\tJJ NNS VBD JJ NNP TO VB NN CC DT NN IN NNS IN JJ NNS .\nOfficials from Nigeria 's southeastern state of Bayelsa say they are negotiating the release of two German and four Nigerian oil workers kidnapped by militants .\tNNS IN NNP POS JJ NN IN NNP VBP PRP VBP VBG DT NN IN CD JJ CC CD JJ NN NNS VBN IN NNS .\nThe six employees were abducted on Wednesday while traveling by boat to an offshore oil field .\tDT CD NNS VBD VBN IN NNP IN VBG IN NN TO DT JJ NN NN .\nThey work for the German firm Bilfinger Berger , a subsidiary of Royal-Dutch Shell .\tPRP VBP IN DT JJ NN NNP NNP , DT NN IN NNP NNP .\nThe kidnappers - ethnic Ijaw militants - are demanding $ 20 million in ransom from Shell along with a promise to honor a previous agreement to give jobs and other benefits to local residents .\tDT NNS IN JJ NNP NNS : VBP VBG $ CD CD IN NN IN NNP IN IN DT NN TO VB DT JJ NN TO VB NNS CC JJ NNS TO JJ NNS .\nCommunities in Nigeria 's oil rich southern region have long complained they have been cut out of the money made from the resources extracted from their land .\tNNS IN NNP POS NN JJ JJ NN VBP RB VBN PRP VBP VBN VBN IN IN DT NN VBN IN DT NNS VBN IN PRP$ NN .\nMilitant groups frequently attack oil operations of multi-national companies to demand social services and better job opportunities .\tJJ NNS RB VBP NN NNS IN JJ NNS TO VB JJ NNS CC JJR NN NNS .\nLawyers for veterans of Kenya 's Mau Mau uprising of the 1950s say the British government has denied responsibility for colonial-era claims of torture and other atrocities .\tNNS IN NNS IN NNP POS NNP NNP NN IN DT NNS VBP DT JJ NN VBZ VBN NN IN NN NNS IN NN CC JJ NNS .\nAt a news conference in Nairobi Tuesday , the lawyers presented a letter from the British Foreign and Commonwealth Office rejecting the claim .\tIN DT NN NN IN NNP NNP , DT NNS VBD DT NN IN DT NNP NNP CC NNP NNP VBG DT NN .\nThe letter argues the British government had no direct link to the colonial administration in Kenya at the time .\tDT NN VBZ DT JJ NN VBD DT JJ NN TO DT NN NN IN NNP IN DT NN .\nThe office also said too much time had passed to consider the claims .\tDT NN RB VBD RB JJ NN VBD VBN TO VB DT NNS .\nSix Mau Mau veterans have launched a claim against the British government seeking damages for torture and other abuses suffered during the uprising against British colonial rule from 1952 to 1959 .\tCD NNP NNP NNS VBP VBN DT NN IN DT JJ NN VBG NNS IN NN CC JJ NNS VBD IN DT NN IN JJ NN NN IN CD TO CD .\nThe veterans say they plan to move forward with legal action against the British government .\tDT NNS VBP PRP VBP TO VB RB IN JJ NN IN DT JJ NN .\nA Japanese energy company says Tokyo has given it permission to drill in a gas field in the East China Sea along a disputed sea border with China .\tDT JJ NN NN VBZ NNP VBZ VBN PRP NN TO VB IN DT NN NN IN DT NNP NNP NNP IN DT JJ NN NN IN NNP .\nTeikoku Oil said Japan 's Economy , Trade and Industry Ministry informed the company Thursday , it can explore the deep-sea gas deposits .\tNNP NNP VBD NNP POS NNP , NNP CC NNP NNP VBD DT NN NNP , PRP MD VB DT JJ NN NNS .\nThe area is inside territory that Japan regards as its exclusive economic zone , but Beijing disputes the demarcation .\tDT NN VBZ JJ NN IN NNP VBZ IN PRP$ JJ JJ NN , CC NNP VBZ DT NN .\nChina says a Japanese authorization of drilling in the area will infringe on China 's sovereignty and complicate the situation in the East China Sea .\tNNP VBZ DT JJ NN IN NN IN DT NN MD VB IN NNP POS NN CC VB DT NN IN DT NNP NNP NNP .\nJapan and China have been feuding over a range of territorial and diplomatic disputes , including claims to the undersea gas deposits .\tNNP CC NNP VBP VBN VBG IN DT NN IN JJ CC JJ NNS , VBG NNS TO DT NN NN NNS .\nIran 's top nuclear negotiator has called for other countries to join the three European nations engaged in talks with Tehran about its nuclear program .\tNNP POS JJ JJ NN VBZ VBN IN JJ NNS TO VB DT CD JJ NNS VBN IN NNS IN NNP IN PRP$ JJ NN .\nIranian state television quotes Ali Larijani as saying questions have been raised in Iran as to why the talks are being conducted with just Britain , Germany and France .\tJJ NN NN NNS NNP NNP IN VBG NNS VBP VBN VBN IN NNP IN TO WRB DT NNS VBP VBG VBN IN RB NNP , NNP CC NNP .\nHe said Iran would welcome negotiations with other members of the International Atomic Energy Agency 's board of governors and members of the Non-Aligned Movement .\tPRP VBD NNP MD VB NNS IN JJ NNS IN DT NNP NNP NNP NNP POS NN IN NNS CC NNS IN DT JJ NN .\nIran 's talks with Europe appeared close to collapse this week when the European nations canceled an August 31 meeting .\tNNP POS NNS IN NNP VBD JJ TO VB DT NN WRB DT JJ NNS VBD DT NNP CD NN .\nBut both sides have expressed a willingness to continue .\tCC DT NNS VBP VBN DT NN TO VB .\nThe European powers are trying to persuade Iran to give up parts of its nuclear program that could be used to produce nuclear weapons .\tDT JJ NNS VBP VBG TO VB NNP TO VB RP NNS IN PRP$ JJ NN WDT MD VB VBN TO VB JJ NNS .\nIran insists it has a right to the technology , and asserts that its nuclear program is peaceful .\tNNP VBZ PRP VBZ DT NN TO DT NN , CC VBZ IN PRP$ JJ NN VBZ JJ .\nThe Red Cross and the Pentagon have acknowledged that they discussed complaints of Koran desecration from detainees held at the U.S. military prison in Guantanamo Bay , Cuba in 2002 and 2003 .\tDT NNP NNP CC DT NNP VBP VBN IN PRP VBD NNS IN NNP NN IN NNS VBN IN DT NNP JJ NN IN NNP NNP , NNP IN CD CC CD .\nOn Thursday , Red Cross officials said that after several discussions with the Pentagon about the allegations , the complaints ceased .\tIN NNP , NNP NNP NNS VBD IN IN JJ NNS IN DT NNP IN DT NNS , DT NNS VBD .\nNeither Red Cross officials nor the Pentagon have disclosed details of the allegations , but the Pentagon said the incidents were rare and minor .\tDT NNP NNP NNS CC DT NNP VBP VBN NNS IN DT NNS , CC DT NNP VBD DT NNS VBD JJ CC JJ .\nDefense officials say they are continuing to investigate allegations of Koran desecration that have fueled anti-U.S. protests around the world , leaving at least 17 people dead in Afghanistan .\tNN NNS VBP PRP VBP VBG TO VB NNS IN NNP NN WDT VBP VBN JJ NNS IN DT NN , VBG IN JJS CD NNS JJ IN NNP .\nThe uproar began after Newsweek magazine said a Defense Department report found that U.S. interrogators had flushed a copy of the Muslim holy book down a toilet to rattle detainees .\tDT NN VBD IN NNP NN VBD DT NNP NNP NN VBD IN NNP NNS VBD VBN DT NN IN DT NNP JJ NN IN DT NN TO VB NNS .\nNewsweek later retracted the story and apologized .\tNNP RB VBD DT NN CC VBD .\nRussia says it has conducted a successful test launch of an interceptor missile from a testing range in Kazakhstan .\tNNP VBZ PRP VBZ VBN DT JJ NN NN IN DT NN NN IN DT NN NN IN NNP .\nA spokesman for the Russian space forces , Alexei Kuznetsov , said the launch on Tuesday was part of a program aimed at extending the service life of interceptor missiles in the country 's defense system .\tDT NN IN DT JJ NN NNS , NNP NNP , VBD DT NN IN NNP VBD NN IN DT NN VBN IN VBG DT NN NN IN NN NNS IN DT NN POS NN NN .\nKuznetsov told the Interfax news agency that initial information indicates that the tests confirmed the missile 's main characteristics .\tNNP VBD DT NNP NN NN IN JJ NN VBZ IN DT NNS VBD DT NN POS JJ NNS .\nInterceptor missiles are designed to shoot down enemy missiles .\tNNP NNS VBP VBN TO VB RP NN NNS .\nRussia conducted a similar test in 2004 .\tNNP VBD DT JJ NN IN CD .\nThe United Nations highest court has begun hearing the Democratic Republic of Congo 's complaint against neighboring Uganda for violating humanitarian law .\tDT NNP NNPS JJS NN VBZ VBN VBG DT JJ NNP IN NNP POS NN IN JJ NNP IN VBG JJ NN .\nCongo accused Uganda of massacring civilians , looting and destruction in its opening argument Monday at the International Court of Justice in The Hague .\tNNP VBD NNP IN VBG NNS , NN CC NN IN PRP$ NN NN NNP IN DT NNP NNP IN NNP IN DT NNP .\nCongo also charged the Ugandan government with continuing to back warlords on Congolese territory who are plundering natural resources in the eastern part of the country .\tNNP RB VBD DT JJ NN IN VBG TO VB NNS IN JJ NN WP VBP VBG JJ NNS IN DT JJ NN IN DT NN .\nResource-rich Congo is demanding reparations for damages suffered during five years of war in which more than three million people died .\tNNP NNP VBZ VBG NNS IN NNS VBN IN CD NNS IN NN IN WDT JJR IN CD CD NNS VBD .\nUganda has previously denied the allegations and will make its argument Friday .\tNNP VBZ RB VBN DT NNS CC MD VB PRP$ NN NNP .\nCongo first took Uganda to the World Court for abuses in 1999 , one year after Uganda and Rwanda launched an invasion .\tNNP RB VBD NNP TO DT NNP NNP IN NNS IN CD , CD NN IN NNP CC NNP VBD DT NN .\nBoth nations have since signed peace deals with the Congolese government .\tDT NNS VBP IN VBN NN NNS IN DT JJ NN .\nBritain 's Prince Charles and his new wife , Camilla , have begun a week-long tour of the United States with a visit to the site of the World Trade Center in New York City .\tNNP POS NNP NNP CC PRP$ JJ NN , NNP , VBP VBN DT JJ NN IN DT NNP NNPS IN DT NN TO DT NN IN DT NNP NNP NNP IN NNP NNP NNP .\nTelevision reports say few onlookers turned out for a glimpse of the Prince of Wales and his longtime companion , the Duchess of Cornwall , whom he married earlier this year .\tNN NNS VBP JJ NNS VBD RP IN DT NN IN DT NNP IN NNP CC PRP$ JJ NN , DT NN IN NNP , WP PRP VBD RBR DT NN .\nPrince Charles and Camilla are expected Tuesday to dedicate a memorial garden for British victims of the September 11 , 2001 terrorist attacks .\tNNP NNP CC NNP VBP VBN NNP TO VB DT JJ NN IN JJ NNS IN DT NNP CD , CD JJ NNS .\nOn Wednesday they travel to Washington to visit President and Mrs. Bush at the White House .\tIN NNP PRP VBP TO NNP TO VB NNP CC NNP NNP IN DT NNP NNP .\nFriday , the royal couple will visit New Orleans to meet with victims of Hurricane Katrina , which devastated the Gulf Coast in August .\tNNP , DT JJ NN MD VB NNP NNP TO VB IN NNS IN NNP NNP , WDT VBD DT NNP NNP IN NNP .\nOpinion polls indicate American interest in the trip falls far short of the prince 's 1985 visit with his first wife , the late Princess Diana .\tNN NNS VBP JJ NN IN DT NN VBZ RB JJ IN DT NN POS CD NN IN PRP$ JJ NN , DT JJ NNP NNP .\nA Bosnian Serb war crimes suspect wanted for shelling Sarajevo has been taken into custody and will be sent to the U.N. war crimes tribunal in The Hague .\tDT JJ JJ NN NNS VBP VBN IN VBG NNP VBZ VBN VBN IN NN CC MD VB VBN TO DT NNP NN NNS JJ IN DT NNP .\nChief Prosecutor Carla del Ponte announced Friday that Dragomir Milosevic had apparently surrendered in Serbia .\tNN NNP NNP NNP NNP VBD NNP IN NNP NNP VBD RB VBN IN NNP .\nMr. Milosevic , who is no relation to former Yugoslav president Slobodan Milosevic , was commander of a Bosnian-Serb corps wanted for attacks on the Bosnian capital .\tNNP NNP , WP VBZ DT NN TO JJ JJ NN NNP NNP , VBD NN IN DT NNP NN VBN IN NNS IN DT JJ NN .\nMs. del Ponte said she had few details on the suspect 's surrender .\tNNP NNP NNP VBD PRP VBD JJ NNS IN DT NN POS NN .\nTwo of the tribunal 's top suspects - Radovan Karadzic and Ratko Mladic - are still at large .\tCD IN DT NN POS JJ NNS IN NNP NNP CC NNP NNP : VBP RB IN JJ .\nThousands of followers of radical Shi'ite cleric Moqtada al-Sadr have rallied in the streets of Iraq to protest a triple car bombing Wednesday that killed at least 40 people and wounded about 125 more .\tNNS IN NNS IN JJ NNP NN NNP NNP VBP VBN IN DT NNS IN NNP TO VB DT JJ NN NN NNP WDT VBD IN JJS CD NNS CC VBD IN CD JJR .\nProtesters took to the streets in Baghdad and Basra Friday to denounce the attacks .\tNNS VBD TO DT NNS IN NNP CC NNP NNP TO VB DT NNS .\nThere has been no claim of responsibility for the bombings in the mainly Shi'ite southern city of Amarah .\tEX VBZ VBN DT NN IN NN IN DT NNS IN DT RB JJ JJ NN IN NNP .\nIn other violence , the U.S. military in Iraq says two American soldiers were killed in separate incidents .\tIN JJ NN , DT NNP NN IN NNP VBZ CD JJ NNS VBD VBN IN JJ NNS .\nThe military says one soldier was shot in an attack in the capital Thursday , and another soldier died of wounds from a roadside bombing south of Baghdad .\tDT JJ VBZ CD NN VBD VBN IN DT NN IN DT NN NNP , CC DT NN VBD IN NNS IN DT NN VBG NN IN NNP .\nSeparately , the military says coalition forces killed three suspected terrorists and detained 12 others during operations Friday targeting al-Qaida networks in central Iraq .\tRB , DT NN VBZ NN NNS VBD CD JJ NNS CC VBN CD NNS IN NNS NNP VBG NNP NNS IN JJ NNP .\nSomalia 's Prime Minister Mohammed Ali Gedi has postponed a visit to his homeland .\tNNP POS NNP NNP NNP NNP NNP VBZ VBN DT NN TO PRP$ NN .\nSome press reports say the trip was delayed because the government had not been able to obtain aircraft capable of landing in Somalia 's various airstrips .\tDT NN NNS VBP DT NN VBD VBN IN DT NN VBD RB VBN JJ TO VB NN JJ IN NN IN NNP POS JJ NNS .\nBut Yusef Omar Azhari , the legal and political advisor President Abdullahi Yusuf Ahmed , says the delegation is waiting for some parliamentarians to return to Nairobi from Rome today ( Wednesday ) before leaving for Mogadishu in the next few days .\tCC NNP NNP NNP , DT JJ CC JJ NN NNP NNP NNP NNP , VBZ DT NN VBZ VBG IN DT NNS TO VB TO NNP IN NNP NN LRB NNP RRB IN VBG IN NNP IN DT JJ JJ NNS .\nThe president and prime minister are expected to tour Somalia as part of an effort to relocate the interim government from neighboring Kenya .\tDT NN CC JJ NN VBP VBN TO VB NNP IN NN IN DT NN TO VB DT JJ NN IN VBG NNP .\nMilitary experts from several African nations have already been in Somalia to assess the security situation ahead of a proposed peacekeeping mission .\tJJ NNS IN JJ JJ NNS VBP RB VBN IN NNP TO VB DT NN NN RB IN DT VBN NN NN .\nMr. Azhari told VOA reporter William Eagle that he expects the government to be completely relocated from Nairobi , Kenya to Somalia by March 20th\tNNP NNP VBD NNP NN NNP NNP IN PRP VBZ DT NN TO VB RB VBN IN NNP , NNP TO NNP IN NNP JJ\nThe European Union has urged oil-producing countries and oil companies to do more to increase oil production in the face of rising gas prices that EU officials say pose a threat to the bloc 's economic growth .\tDT NNP NNP VBZ VBN JJ NNS CC NN NNS TO VB JJR TO VB NN NN IN DT NN IN VBG NN NNS IN NNP NNS VBP VB DT NN TO DT NN POS JJ NN .\nIn a statement issued Saturday at the end of their two-day meeting in Manchester , England , EU finance ministers urged oil companies to , among other things , increase investment in oil exploration , production and refinement .\tIN DT NN VBN NNP IN DT NN IN PRP$ JJ NN IN NNP , NNP , NNP NN NNS VBD NN NNS TO , IN JJ NNS , VB NN IN NN NN , NN CC NN .\nEU officials have said higher oil prices in the wake of Hurricane Katrina in the southern United States could cut economic growth across the 12-country euro currency zone from the originally forecast 1.3 percent to as little as one percent .\tNNP NNS VBP VBN JJR NN NNS IN DT NN IN NNP NNP IN DT JJ NNP NNPS MD VB JJ NN IN DT JJ NN NN NN IN DT RB VBN CD NN TO RB JJ IN CD NN .\nOil prices closed at $ 64.08 a barrel in New York on Friday after hitting an all-time record high of $ 70.85 on August 30 .\tNN NNS VBD IN $ CD DT NN IN NNP NNP IN NNP IN VBG DT JJ NN NN IN $ CD IN NNP CD .\nThe European Union has extended sanctions against Burma 's military government and has called for an international arms embargo .\tDT NNP NNP VBZ VBN NNS IN NNP POS JJ NN CC VBZ VBN IN DT JJ NNS NN .\nThe 27-member bloc endorsed a one-year extension of political and economic sanctions Tuesday at a meeting in Luxembourg .\tDT JJ NN VBD DT JJ NN IN JJ CC JJ NNS NNP IN DT NN IN NNP .\nEU foreign ministers issued a statement warning that the measures could be expanded .\tNNP JJ NNS VBD DT NN VBG IN DT NNS MD VB VBN .\nThose sanctions ban EU arms exports to Burma and impose an assets freeze and travel ban on Burmese leaders .\tDT NNS VBP NNP NNS NNS TO NNP CC VB DT NNS NN CC NN NN IN JJ NNS .\nIn its statement , the EU also called for the release of all political prisoners , including detained opposition leader Aung San Suu Kyi .\tIN PRP$ NN , DT NNP RB VBD IN DT NN IN DT JJ NNS , VBG JJ NN NN NNP NNP NNP NNP .\nLast week , the United States circulated a revised draft Security Council statement , urging Burma to initiate dialogue with Aung San Suu Kyi , who has been under house arrest since 2003 .\tJJ NN , DT NNP NNPS VBD DT JJ NN NNP NNP NN , VBG NNP TO VB NN IN NNP NNP NNP NNP , WP VBZ VBN IN NN NN IN CD .\nThe non-binding statement also called for the Burmese military government to allow the Nobel Prize laureate and other political figures to fully participate in a constitutional referendum scheduled for May 10 .\tDT JJ NN RB VBD IN DT JJ JJ NN TO VB DT NNP NNP NN CC JJ JJ NNS TO RB VB IN DT JJ NN VBN IN NNP CD .\nAn al-Qaida Internet statement says a Saudi militant killed in 2004 was supposed to have been the 20th suicide plane hijacker in the September 11 , 2001 attacks on the United States .\tDT NNP NN NN VBZ DT JJ NN VBN IN CD VBD VBN TO VB VBN DT JJ NN NN NN IN DT NNP CD , CD NNS IN DT NNP NNPS .\nThe statement says Osama bin Laden chose Turki bin Fuheid al-Muteiry to be the 20th attacker .\tDT NN VBZ NNP NNP NNP VBD NNP NNP NNP JJ TO VB DT JJ NN .\nIt says the militant , who also went by the name Fawaz al-Nashmi , did not take part because of the timing of the September 11 attacks .\tPRP VBZ DT NN , WP RB VBD IN DT NN NNP NNP , VBD RB VB NN IN IN DT NN IN DT NNP CD NNS .\nMost of the 19 hijackers were Saudi nationals .\tJJS IN DT CD NNS VBD JJ NNS .\nU.S. officials have called Zacarias Moussaoui the 20th hijacker .\tNNP NNS VBP VBN NNP NNP DT JJ NN .\nHe confessed to a role in the attacks and is serving life in prison .\tPRP VBD TO DT NN IN DT NNS CC VBZ VBG NN IN NN .\nBut bin Laden said in a tape earlier this year that Moussaoui had nothing to do with September 11 .\tCC NNP NNP VBD IN DT NN RBR DT NN IN NNP VBD DT TO VB IN NNP CD .\nMuteiry died in a shootout with Saudi security forces in 2004 after the militant allegedly took part in an attack on foreigners in the oil city of Khobar .\tNNP VBD IN DT NN IN JJ NN NNS IN CD IN DT NN RB VBD NN IN DT NN IN NNS IN DT NN NN IN NNP .\nNineteen suspected members of the violent street gang , Mara Salvatrucha ( or MS-13 ) have been indicted on federal racketeering charges in Maryland .\tCD JJ NNS IN DT JJ NN NN , NNP NNP LRB CC NNP RRB VBP VBN VBN IN JJ NN NNS IN NNP .\nThe indictments , released Thursday , accuse the men of murders , kidnappings and other gang-related crimes from April 2003 to June of this year .\tDT NNS , VBN NNP , VBP DT NNS IN NNS , NNS CC JJ JJ NNS IN NNP CD TO NNP IN DT NN .\nThe 19 suspected gang members are accused of six murders and several attempted murders .\tDT CD JJ NN NNS VBP VBN IN CD NNS CC JJ JJ NNS .\nThe crimes took place in suburban Maryland , outside of Washington , D.C.\tDT NNS VBD NN IN JJ NNP , IN IN NNP , NNP\nThe gang is traditionally made up of immigrants from El Salvador .\tDT NN VBZ RB VBN IN IN NNS IN NNP NNP .\nIts U.S. activities originated in Los Angeles in the 1980s .\tPRP$ NNP NNS VBN IN NNP NNP IN DT NNS .\nAn estimated 10,000 members are in the United States .\tDT VBN CD NNS VBP IN DT NNP NNPS .\nFederal agents and local police officers arrested many of the indicted gang members Thursday .\tJJ NNS CC JJ NN NNS VBN NN IN DT VBN NN NNS NNP .\nThe indictments are the latest attempt by the federal government to target the organization .\tDT NNS VBP DT JJS NN IN DT JJ NN TO VB DT NN .\nSomali pirates say they have moved a kidnapped British couple onto land , to await negotiations for their rescue after demanding $ 7 million in ransom .\tJJ NNS VBP PRP VBP VBN DT VBN JJ NN IN NN , TO VB NNS IN PRP$ NN IN VBG $ CD CD IN NN .\nThe pirates spoke by phone to news agencies Saturday .\tDT NNS VBD IN NN TO NN NNS NNP .\nPaul and Rachel Chandler were headed to Tanzania on a trip that started in the Seychelles when they sent a distress signal October 23 off the coast of Somalia .\tNNP CC NNP NNP VBD VBN TO NNP IN DT NN WDT VBD IN DT NNS WRB PRP VBD DT NN NN NNP CD IN DT NN IN NNP .\nTheir yacht , the Lynn Rival , later was found empty in waters off East Africa .\tPRP$ NN , DT NNP NNP , RB VBD VBN JJ IN NNS IN NNP NNP .\nChandler has since spoken several times to reporters and said he and his wife are doing well .\tNNP VBZ IN VBN JJ NNS TO NNS CC VBD PRP CC PRP$ NN VBP VBG RB .\nIn recent months , France and the United States have used military force to rescue hostages , while at other times , foreign hostages have been released after ransoms were paid .\tIN JJ NNS , NNP CC DT NNP NNPS VBP VBN JJ NN TO VB NNS , IN IN JJ NNS , JJ NNS VBP VBN VBN IN NNS VBD VBN .\nThere have been persistent high-seas hijackings in recent years in waters off east Africa , despite a growing armada of international warships to secure the area .\tEX VBP VBN JJ NNS NNS IN JJ NNS IN NNS IN JJ NNP , IN DT VBG NN IN JJ NNS TO VB DT NN .\nAl-Qaida-linked terrorists in Iraq say they have killed Egypt 's top envoy , who was kidnapped late last week in the Iraqi capital .\tJJ NNS IN NNP VBP PRP VBP VBN NNP POS NN NN , WP VBD VBN RB JJ NN IN DT JJ NN .\nA video posted on a website Thursday , showed a blindfolded man believed to be Egyptian Ambassador Ihab al-Sherif .\tDT NN VBN IN DT JJ NNP , VBD DT JJ NN VBN TO VB JJ NN NNP NNP .\nThe tape did not show the killing , and has not been authenticated .\tDT NN VBD RB VB DT NN , CC VBZ RB VBN VBN .\nThe diplomat was kidnapped off a Baghdad street on Saturday as he stopped to buy a newspaper .\tDT NN VBD VBN RP DT NNP NN IN NNP IN PRP VBD TO VB DT NN .\nMeanwhile , Iraqi police say twin car bombs have killed at least 13 people and wounded nearly 30 others south of Baghdad in the town of Mashruh .\tRB , JJ NNS VBP JJ NN NNS VBP VBN IN JJS CD NNS CC VBN RB CD NNS RB IN NNP IN DT NN IN NNP .\nIn Mosul , authorities say three Iraqis were killed and more than 40 others wounded by insurgent mortar fire apparently aimed at police stations in the central city .\tIN NNP , NNS VBP CD NNS VBD VBN CC JJR IN CD NNS VBN IN JJ NN NN RB VBN IN NN NNS IN DT JJ NN .\nIsraeli medical officials say former Prime Minister Ariel Sharon has been transferred to the intensive care unit of a Tel Aviv hospital for kidney dialysis .\tJJ JJ NNS VBP JJ NNP NNP NNP NNP VBZ VBN VBN TO DT JJ NN NN IN DT NNP NNP NN IN NN NN .\nThe 78-year-old former political leader has been in a coma for six months , since suffering a massive stroke on January 4 .\tDT JJ JJ JJ NN VBZ VBN IN DT NN IN CD NNS , IN VBG DT JJ NN IN NNP CD .\nA hospital spokesperson , Anat Dolev , said Mr. Sharon was taken to intensive care Wednesday so doctors could remove excess fluids that have accumulated in his body as a result of kidney failure .\tDT NN NN , NNP NNP , VBD NNP NNP VBD VBN TO JJ NN NNP IN NNS MD VB JJ NNS WDT VBP VBN IN PRP$ NN IN DT NN IN NN NN .\nEarlier in the week , hospital officials said that Mr. Sharon 's condition had deteriorated , noting the accumulation of fluids and changes in his brain tissue .\tRBR IN DT NN , NN NNS VBD IN NNP NNP POS NN VBD VBN , VBG DT NN IN NNS CC NNS IN PRP$ NN NN .\nChina has announced a new outbreak of bird flu virus among birds in its northwestern region of Ningxia .\tNNP VBZ VBN DT JJ NN IN NN NN NN IN NNS IN PRP$ JJ NN IN NNP .\nChina 's Agriculture Ministry says the outbreak of the deadly H5N1 virus was found in Zhongwei city .\tNNP POS NNP NNP VBZ DT NN IN DT JJ NNP NN VBD VBN IN NNP NN .\nDetails on how many birds were affected or whether it was among farm-raised poultry were not immediately available .\tNNS IN WRB JJ NNS VBD VBN CC IN PRP VBD IN JJ NN VBD RB RB JJ .\nChina has reported nearly 40 outbreaks of bird flu in birds and poultry across China over the past year .\tNNP VBZ VBN RB CD NNS IN NN NN IN NNS CC NN IN NNP IN DT JJ NN .\nThe country 's human bird flu infections stands at 19 , 12 of whom have died .\tDT NN POS JJ NN NN NNS VBZ IN CD , CD IN WP VBP VBN .\nThe World Health Organization says the H5N1 strain of the virus has killed at least 130 people since reappearing in Asia in 2003 .\tDT NNP NNP NNP VBZ DT NNP NN IN DT NN VBZ VBN IN JJS CD NNS IN VBG IN NNP IN CD .\nMost of the victims have gotten the disease from animals , but health experts fear the virus may change into a form easily passed between humans .\tJJS IN DT NNS VBP VBN DT NN IN NNS , CC NN NNS VBP DT NN MD VB IN DT NN RB VBN IN NNS .\nThe first witness to appear in person at the trial of Saddam Hussein has given graphic testimony about the 1982 killing of more than 140 people in a mainly Shi'ite town .\tDT JJ NN TO VB IN NN IN DT NN IN NNP NNP VBZ VBN JJ NN IN DT CD NN IN JJR IN CD NNS IN DT RB JJ NN .\nAhmed Mohammed Hassem said he knew several people killed in Dujail after an assassination attempt on Saddam there .\tNNP NNP NNP VBD PRP VBD JJ NNS VBN IN NNP IN DT NN NN IN NNP RB .\nHis testimony was interrupted by exchanges with one of Saddam 's seven co-defendants - his half-brother Barzan Ibrahim .\tPRP$ NN VBD VBN IN NNS IN CD IN NNP POS CD NNS IN PRP$ NN NNP NNP .\nBefore the judge adjourned proceedings , Saddam told the court he is not afraid of execution .\tIN DT NN VBD NNS , NNP VBD DT NN PRP VBZ RB JJ IN NN .\nHe earlier yelled out ' long live Iraq , long live the Arab state . '\tPRP RB VBD RP `` RB VBP NNP , RB VBP DT JJ NN . ``\nCourt officials say the trial will resume Tuesday .\tNNP NNS VBP DT NN MD VB NNP .\nAlso Monday , one of Saddam 's lawyers , former U.S. Attorney General Ramsey Clark , demanded better security for defense lawyers , two of whom have been killed .\tRB NNP , CD IN NNP POS NNS , JJ NNP NNP NNP NNP NNP , VBD JJR NN IN NN NNS , CD IN WP VBP VBN VBN .\nOn Sunday , Iraqi authorities said they had foiled an insurgent plot to bomb the trial during Monday 's proceedings .\tIN NNP , JJ NNS VBD PRP VBD VBN DT JJ NN TO VB DT NN IN NNP POS NNS .\nKid Rock wo n't face charges after a woman claimed he pushed her headfirst into a snowbank after a night of drinking .\tNNP NNP MD RB VB NNS IN DT NN VBD PRP VBD PRP$ NN IN DT NN IN DT NN IN NN .\nThe 36-year-old rock singer - real name Bob Ritchie - now says he 'll sue the 28-year-old woman for filing a FALSE police report .\tDT JJ NN NN IN JJ NN NNP NNP : RB VBZ PRP MD VB DT JJ NN IN VBG DT JJ NN NN .\nShe alleged that Kid Rock roughed her up after meeting her and a male friend at a bar in the Midwestern state of Michigan , and then inviting them to his house .\tPRP VBD IN NNP NNP VBD PRP RP IN VBG PRP CC DT JJ NN IN DT NN IN DT JJ NN IN NNP , CC RB VBG PRP TO PRP$ NN .\nProsecutors said March 16 that insufficient evidence existed to charge Kid Rock with a crime .\tNNS VBD NNP CD IN JJ NN VBD TO VB NNP NNP IN DT NN .\nKid Rock made headlines last year after marrying - and divorcing - actress Pamela Anderson in a four-month span .\tNNP NNP VBD NNS JJ NN IN VBG : CC VBG : NN NNP NNP IN DT JJ NN .\nRival factions in Kenya have clashed again in an increasingly violent campaign over a constitutional referendum , as authorities appealed for calm and vowed to punish anyone provoking unrest .\tNNP NNS IN NNP VBP VBN RB IN DT RB JJ NN IN DT JJ NN , IN NNS VBD IN NN CC VBD TO VB DT VBG NN .\nPolice say Thursday 's riot in the central town of Garissa began when supporters of the referendum tried to disrupt a rally held by opponents of the constitution .\tNNS VBP NNP POS NN IN DT JJ NN IN NNP VBD WRB NNS IN DT NN VBD TO VB DT NN VBN IN NNS IN DT NN .\nPolice restored order after the crowd hurled rocks , bananas - the ballot symbol for a ' yes ' vote - and oranges , representing a ' no ' vote .\tNNS VBD NN IN DT NN VBD NNS , NNS IN DT NN NN IN DT `` UH `` NN : CC NNS , VBG DT `` DT `` NN .\nAt least one person was injured .\tIN JJS CD NN VBD VBN .\nKenyans are to vote on a new proposed constitution in a national referendum on November 21 .\tNNS VBP TO VB IN DT JJ VBN NN IN DT JJ NN IN NNP CD .\nThe 197-page document allows Kenyan President Mwai Kibaki to retain his wide-ranging powers .\tDT JJ NN VBZ JJ NNP NNP NNP TO VB PRP$ JJ NNS .\nOpponents say it fails to establish a strong prime ministerial post , which they argue is needed to balance the president 's authority .\tNNS VBP PRP VBZ TO VB DT JJ JJ JJ NN , WDT PRP VBP VBZ VBN TO VB DT NN POS NN .\nElection officials in East Timor say there were many ' inconsistencies ' in the country 's presidential election last Monday .\tNN NNS IN NNP NNP VBP EX VBD JJ `` NNS `` IN DT NN POS JJ NN JJ NNP .\nThe reported inconsistencies range from poor organization to discrepancies between the number of voters and the votes cast .\tDT JJ NNS VBP IN JJ NN TO NNS IN DT NN IN NNS CC DT NNS NN .\nSeveral districts , including the capital , Dili , had problems .\tJJ NNS , VBG DT NN , NNP , VBD NNS .\nA spokesman for the National Electoral Commission Martinho Gusmao told a news conference Friday that voting officials have just 72 hours to resolve the issues before official results are announced on Monday .\tDT NN IN DT NNP NNP NNP NNP NNP VBD DT NN NN NNP IN NN NNS VBP RB CD NNS TO VB DT NNS IN JJ NNS VBP VBN IN NNP .\nElection officials have rejected a request from several candidates for a recount .\tNN NNS VBP VBN DT NN IN JJ NNS IN DT NN .\nUnofficial results show ruling party Prime Minister Jose Ramos-Horta and parliament chief Francisco ' Lu Olo ' Guterres will be competing in a runoff election .\tJJ NNS VBP VBG NN NNP NNP NNP NNP CC NN NN NNP `` NNP NNP `` NNPS MD VB VBG IN DT NN NN .\nEast Timor has been struggling to strengthen its democracy since voting for independence from Indonesia in 1999 .\tNNP NNP VBZ VBN VBG TO VB PRP$ NN IN NN IN NN IN NNP IN CD .\nPolice in Kenya have detained a Somali minister and two lawmakers for their role in a bloody brawl that broke out during a parliamentary session of the Somali government-in-exile .\tNNS IN NNP VBP VBN DT JJ NN CC CD NNS IN PRP$ NN IN DT JJ NN WDT VBD RP IN DT JJ NN IN DT JJ NN .\nThe fight on Thursday took place during a contentious vote over the deployment of peacekeepers to Somalia .\tDT NN IN NNP VBD NN IN DT JJ NN IN DT NN IN NNS TO NNP .\nTelevision footage showed lawmakers beating each other with walking sticks and throwing chairs and books at each other at a hotel in Nairobi where parliament is meeting .\tNN NN VBD NNS VBG DT NN IN VBG NNS CC VBG NNS CC NNS IN DT NN IN DT NN IN NNP WRB NN VBZ NN .\nPolice say one of those detained is Somali trade minister , Musa Sudi Yalahow .\tNNS VBP CD IN DT VBN VBZ JJ NN NN , NNP NNP NNP .\nSomali lawmakers are divided over whether to allow peacekeepers into Somalia from bordering countries .\tJJ NNS VBP VBN IN IN TO VB NNS IN NNP IN VBG NNS .\nFriday , East African officials attempted to defuse the situation , saying the first group of peacekeepers would only come from countries that do not border Somalia .\tNNP , NNP NNP NNS VBD TO VB DT NN , VBG DT JJ NN IN NNS MD RB VB IN NNS WDT VBP RB VB NNP .\nThe World Health Organization has confirmed Burma 's first human case of bird flu .\tDT NNP NNP NNP VBZ VBN NNP POS JJ JJ NN IN NN NN .\nBased on information provided by the Burmese Ministry of Health , the WHO identified the victim as a seven-year-old girl from eastern Shan State .\tVBN IN NN VBN IN DT JJ NNP IN NNP , DT NNP VBD DT NN IN DT JJ NN IN JJ NNP NNP .\nOfficials say she developed symptoms of the disease last month in an area where there had been an outbreak of the H5N1 virus in poultry .\tNNS VBP PRP VBD NNS IN DT NN JJ NN IN DT NN WRB EX VBD VBN DT NN IN DT NNP NN IN NN .\nThe girl survived the disease .\tDT NN VBD DT NN .\nSeven countries in East Asia have reported human cases of the potentially deadly H5N1 virus .\tCD NNS IN NNP NNP VBP VBN JJ NNS IN DT RB JJ NNP NN .\nThe two with the greatest number of cases are Indonesia and Vietnam .\tDT CD IN DT JJS NN IN NNS VBP NNP CC NNP .\nMore than 200 people in 13 countries have died from the disease since 2003 .\tJJR IN CD NNS IN CD NNS VBP VBN IN DT NN IN CD .\nA second group that says it has links to the al-Qaida terrorist network has claimed responsibility for Thursday 's attacks in London .\tDT JJ NN WDT VBZ PRP VBZ NNS TO DT NNP JJ NN VBZ VBN NN IN NNP POS NNS IN NNP .\nInjured tube passengers are escorted away from Edgware Road Tube Station in London following explosion , Thursday A group calling itself the ' Abu Hafs al-Masri Brigades ' posted a statement on an Arabic language Islamist website Saturday , congratulating itself for the bombings on three subway trains and one bus in the central part of the British capital .\tJJ NN NNS VBP VBN RB IN NNP NNP NNP NNP IN NNP VBG NN , NNP NNP NN VBG PRP DT `` NNP NNP NNP NNP `` VBD DT NN IN DT JJ NN NNP NNP NNP , VBG PRP IN DT NNS IN CD NN NNS CC CD NN IN DT JJ NN IN DT JJ NN .\nThe same group also claimed responsibility for the March , 2004 Madrid train bombings that killed nearly 200 people .\tDT JJ NN RB VBD NN IN DT NNP , CD NNP NN NNS WDT VBD RB CD NNS .\nJust hours after Thursday 's bombings , a group calling itself ' The Secret Organization of al-Qaida in Europe ' issued a statement on another Arabic language Islamist website claiming responsibility for the attacks .\tRB NNS IN NNP POS NNS , DT NN VBG PRP `` DT NNP NNP IN NNP IN NNP `` VBN DT NN IN DT JJ NN NN JJ VBG NN IN DT NNS .\nNeither claim has been verified .\tDT NN VBZ VBN VBN .\nBritain says it will extradite a computer expert to the United States to face terrorism charges .\tNNP VBZ PRP MD VB DT NN NN TO DT NNP NNPS TO VB NN NNS .\nHome Secretary Charles Clarke says he has agreed to extradite 31-year-old British citizen Babar Ahmad , who is accused of running web sites in support of the al-Qaida terrorist network , Afghanistan 's ousted Taleban regime and Russia 's Chechen separatists .\tNNP NNP NNP NNP VBZ PRP VBZ VBN TO VB JJ JJ NN NNP NNP , WP VBZ VBN IN VBG NN NNS IN NN IN DT NNP JJ NN , NNP POS JJ NNP NN CC NNP POS JJ NNS .\nMr. Ahmad has been in jail since his arrest in August 2004 under a U.S. arrest warrant .\tNNP NNP VBZ VBN IN NN IN PRP$ NN IN NNP CD IN DT NNP NN NN .\nNew British laws allow the United States to seek the extradition of someone without presenting any evidence .\tJJ JJ NNS VBP DT NNP NNPS TO VB DT NN IN DT IN VBG DT NN .\nA British court ruled earlier this year that Mr. Ahmad should be extradited after the United States promised he would not be labeled an ' enemy combatant ' and imprisoned in the U.S. naval base on Guantanamo Bay , Cuba .\tDT JJ NN VBD RBR DT NN IN NNP NNP MD VB VBN IN DT NNP NNPS VBD PRP MD RB VB VBN DT `` NN NN `` CC VBN IN DT NNP JJ NN IN NNP NNP , NNP .\nThe case was then passed on to Mr. Clarke .\tDT NN VBD RB VBN IN TO NNP NNP .\nMr. Ahmad 's family is denouncing the decision , and promises to appeal .\tNNP NNP POS NN VBZ VBG DT NN , CC VBZ TO VB .\nKurdish witnesses in northwestern Iran say security forces killed at least 11 Kurdish demonstrators in a clash Wednesday in the city of Saqiz .\tJJ NNS IN JJ NNP VBP NN NNS VBN IN JJS CD JJ NNS IN DT NN NNP IN DT NN IN NNP .\nWitnesses tell VOA that government buildings in the town were damaged in the clash .\tNNS VBP NNP IN NN NNS IN DT NN VBD VBN IN DT NN .\nThey say police are heavily deployed across Saqiz .\tPRP VBP NNS VBP RB VBN IN NNP .\nThe Iranian government has not commented on the reports .\tDT JJ NN VBZ RB VBN IN DT NNS .\nThe protest and clash are the latest in a wave of violence across Kurdish areas of Iran following last month 's killing of a Kurdish activist by Iranian security forces .\tDT NN CC NN VBP DT JJS IN DT NN IN NN IN JJ NNS IN NNP VBG JJ NN POS NN IN DT JJ NN IN JJ NN NNS .\nA North Korean patrol boat crossed briefly into South Korean waters Sunday to seize a Chinese fishing boat that had been illegally fishing in the North .\tDT JJ JJ NN NN VBD RB IN JJ JJ NNS NNP TO VB DT JJ NN NN WDT VBD VBN RB VBG IN DT NNP .\nThe patrol boat sped nearly two kilometers into the southern section of the Yellow Sea , notifying the South Korean navy that it was tracking an illegal fishing boat .\tDT JJ NN VBD RB CD NNS IN DT JJ NN IN DT NNP NNP , VBG DT JJ JJ NN IN PRP VBD VBG DT JJ NN NN .\nSouth Korea 's Joint Chiefs of Staff said in a statement , the South Korean navy radioed a warning about the border crossing , and 25 minutes later the patrol boat crossed back into North Korean waters .\tNNP NNP POS NNP NNPS IN NNP VBD IN DT NN , DT JJ JJ NN VBD DT NN IN DT NN VBG , CC CD NNS RB DT NN NN VBD RB IN JJ JJ NNS .\nThe Yellow Sea , on the western side of the Korean Peninsula , has been the scene of deadly North and South confrontations in recent years .\tDT NNP NNP , IN DT JJ NN IN DT JJ NNP , VBZ VBN DT NN IN JJ NNP CC NNP NNS IN JJ NNS .\nThe two sides have established a radio protocol to prevent future clashes .\tDT CD NNS VBP VBN DT NN NN TO VB JJ NNS .\nActivists from the environmental group Greenpeace displayed dead whales and dolphins in front of Berlin 's famed Brandenburg Gate Monday to demonstrate why it believes a whale hunting moratorium should continue .\tNNS IN DT JJ NN NNP VBD JJ NNS CC NNS IN NN IN NNP POS JJ NNP NNP NNP TO VB WRB PRP VBZ DT NN NN NN MD VB .\nGreenpeace says it found the dead mammals on various European beaches , saying some drowned while trapped in fisherman 's nets while others were badly wounded in collisions with ships .\tNNP VBZ PRP VBD DT JJ NNS IN JJ JJ NNS , VBG DT VBN IN VBN IN NN POS NNS IN NNS VBD RB VBN IN NNS IN NNS .\nGreenpeace marine biologist Stefanie Werner says 3,00,000 whales and dolphins drown in fishing nets every year and many others die from pollution , accidents with ships , or from the effects of global warming .\tNNP JJ NN NNP NNP VBZ CD NNS CC NNS VBN IN NN NNS DT NN CC JJ NNS VBP IN NN , NNS IN NNS , CC IN DT NNS IN JJ NN .\nShe asked how can pro-whaling nations justify hunting them ?\tPRP VBD WRB MD JJ NNS VB VBG PRP .\nThe International Whaling Commission meets next week in Anchorage , Alaska , where Iceland , Japan , and Norway are expected to push to end a worldwide ban on commercial whaling .\tDT NNP NNP NNP VBZ JJ NN IN NNP , NNP , WRB NNP , NNP , CC NNP VBP VBN TO VB TO VB DT JJ NN IN JJ NN .\nWhaling is a tradition and an industry for many in those countries .\tNN VBZ DT NN CC DT NN IN JJ IN DT NNS .\nPolice in Nepal 's capital have arrested a senior opposition party official ahead of a planned protest .\tNNS IN NNP POS NN VBP VBN DT JJ NN NN NN RB IN DT JJ NN .\nPolice detained Arjun Narsingh , spokesman of the Nepali Congress Party , outside the party 's offices in Kathmandu .\tNNP VBD NNP NNP , NN IN DT NNP NNP NNP , IN DT NN POS NNS IN NNP .\nMr. Narsingh had called a party meeting to plan demonstrations on Friday - Nepal 's Democracy Day - against the new royal government .\tNNP NNP VBD VBN DT NN NN TO VB NNS IN NNP IN NNP POS NNP NNP : IN DT JJ JJ NN .\nNepal 's King Gyanendra dismissed the previous government and declared a state of emergency two weeks ago because of what he said was its failure to put down a growing Maoist rebellion .\tNNP POS NNP NNP VBD DT JJ NN CC VBD DT NN IN NN CD NNS RB IN IN WP PRP VBD VBD PRP$ NN TO VB RP DT VBG NN NN .\nOutside Nepal the power grab has been widely criticized and several nations , including the United States , some EU countries and Nepal 's close ally India , have recalled their ambassadors for consultations .\tIN NNP DT NN NN VBZ VBN RB VBN CC JJ NNS , VBG DT NNP NNPS , DT NNP NNS CC NNP POS JJ NN NNP , VBP VBN PRP$ NNS IN NNS .\nAn Iranian news agency says authorities have reinstated 300 more candidates ahead of next month 's parliamentary elections , bringing the total reinstated in the past week to almost 600 .\tDT JJ NN NN VBZ NNS VBP VBN CD JJR NNS RB IN JJ NN POS JJ NNS , VBG DT JJ VBN IN DT JJ NN TO RB CD .\nIran 's official news agency , IRNA , quotes an official as saying the candidates ' names will be released later Saturday .\tNNP POS JJ NN NN , NNP , VBZ DT NN IN VBG DT NNS POS NNS MD VB VBN RB NNP .\nIran 's Interior Ministry banned more than 2,200 candidates , mostly reformists , from competing in the March 14 vote .\tNNP POS NNP NNP VBD JJR IN CD NNS , RB NNS , IN VBG IN DT NNP CD NN .\nSeveral days ago , Iran 's highest oversight body , the Guardian Council , said that it had reinstated 280 of those candidates .\tJJ NNS RB , NNP POS JJS NN NN , DT NNP NNP , VBD IN PRP VBD VBN CD IN DT NNS .\nIranian authorities can disqualify candidates who are not deemed as showing sufficient loyalty to Iran 's Islamic system .\tJJ NNS MD VB NNS WP VBP RB VBN IN VBG JJ NN TO NNP POS JJ NN .\nReformists and conservatives have strongly criticized the mass disqualifications , warning that they undermine the election process .\tNNS CC NNS VBP RB VBN DT NN NNS , VBG IN PRP VBP DT NN NN .\nBritish Prime Minister Tony Blair has again defended plans to toughen anti-terrorism laws and detain suspects for three months without charge .\tJJ NNP NNP NNP NNP VBZ RB VBN NNS TO VB JJ NNS CC NN NNS IN CD NNS IN NN .\nMr. Blair told his monthly news conference in London that police have made compelling arguments to extend the length of detention from its current two weeks .\tNNP NNP VBD PRP$ JJ NN NN IN NNP IN NNS VBP VBN JJ NNS TO VB DT NN IN NN IN PRP$ JJ CD NNS .\nHe says authorities are fighting a new kind of terrorism , which requires more time to investigate and often the cooperation of foreign agencies .\tPRP VBZ NNS VBP VBG DT JJ NN IN NN , WDT VBZ JJR NN TO VB CC RB DT NN IN JJ NNS .\nBut civil rights activists and opposition politicians say the changes are counterproductive and will undermine efforts by authorities to get more cooperation from Britain 's Muslim community .\tCC JJ NNS NNS CC NN NNS VBP DT NNS VBP JJ CC MD VB NNS IN NNS TO VB JJR NN IN NNP POS NNP NN .\nMr. Blair proposed the new laws , which would also allow authorities to deport extremists , after the July 7 suicide bombings in London that killed 52 people .\tNNP NNP VBD DT JJ NNS , WDT MD RB VB NNS TO VB NNS , IN DT NNP CD NN NNS IN NNP WDT VBD CD NNS .\nVenezuelan President Hugo Chavez warns that he will not renew the license of a television station he accuses of backing a failed coup against him in 2002 .\tJJ NNP NNP NNP VBZ IN PRP MD RB VB DT NN IN DT NN NN PRP VBZ IN VBG DT VBN NN IN PRP IN CD .\nMr. Chavez said in a speech Thursday to the military that the concession for Radio Caracas Television will end in March .\tNNP NNP VBD IN DT NN NNP TO DT NN IN DT NN IN NNP NNP NNP MD VB IN NNP .\nEarlier , the information minister , William Lara , said the broadcaster 's license would expire next May .\tRB , DT NN NN , NNP NNP , VBD DT NN POS NN MD VB JJ NNP .\nMr. Chavez also said he will not tolerate any media outlets that support efforts to remove him from power .\tNNP NNP RB VBD PRP MD RB VB DT NNS NNS WDT VBP NNS TO VB PRP IN NN .\nThere was no immediate response from the Caracas-based station .\tEX VBD DT JJ NN IN DT JJ NN .\nPresident Chavez has repeatedly denounced RCTV and other pro-opposition broadcasters for what he says is overly critical coverage of his government .\tNNP NNP VBZ RB VBN NNP CC JJ JJ NNS IN WP PRP VBZ VBZ RB JJ NN IN PRP$ NN .\nThe press rights group Reporters Without Borders has urged Venezuela to end its efforts to shut down RCTV .\tDT NN NNS NN NNP NNP NNP VBZ VBN NNP TO VB PRP$ NNS TO VB RP NNP .\nThe death toll from Saturday 's collapse of a metal exposition hall roof in the southern Polish city of Katowice continues to climb .\tDT NN NN IN NNP POS NN IN DT NN NN NN NN IN DT JJ JJ NN IN NNP VBZ TO VB .\nOfficials now say they have pulled at least 26 bodies from the rubble .\tNNS RB VBP PRP VBP VBN IN JJS CD NNS IN DT NN .\nA spokesman for the government of the Silesia region , where Katowice is located , said another 130 were injured .\tDT NN IN DT NN IN DT NNP NN , WRB NNP VBZ VBN , VBD DT CD VBD VBN .\nPolice say about 500 people from Poland and other countries across Europe were inside the facility attending a homing pigeon exhibition .\tNNS VBP IN CD NNS IN NNP CC JJ NNS IN NNP VBD IN DT NN VBG DT NN NN NN .\nOfficials say several foreigners were believed to be among the casualties , but there are conflicting reports about their nationalities and condition .\tNNS VBP JJ NNS VBD VBN TO VB IN DT NNS , CC EX VBP VBG NNS IN PRP$ NNS CC NN .\nOfficials say the collapse was likely the result of the weight of snow on the roof after heavy snows and an arctic freeze that swept through Poland and neighboring countries this week .\tNNS VBP DT NN VBD JJ DT NN IN DT NN IN NN IN DT NN IN JJ NNS CC DT JJ NN WDT VBD IN NNP CC JJ NNS DT NN .\nTemperatures plunged to minus 15 degrees Celsius as rescue efforts continued .\tNNS VBD TO CC CD NNS NNP IN NN NNS VBD .\nIsraeli troops and tanks entered the northern Gaza Strip Sunday , hours after Israel ended an operation against Palestinian militants in southern Gaza .\tJJ NNS CC NNS VBD DT JJ NNP NNP NNP , NNS IN NNP VBD DT NN IN JJ NNS IN JJ NNP .\nThe Beit Hanoun operation began soon after Israeli forces withdrew from Khan Younis after a three-day assault .\tDT NNP NNP NN VBD RB IN JJ NNS VBD IN NNP NNP IN DT JJ NN .\nIsrael says both raids were aimed at stopping militants from firing rockets and mortar shells at Israeli settlements and towns .\tNNP VBZ DT NNS VBD VBN IN VBG NNS IN VBG NNS CC NN NNS IN JJ NNS CC NNS .\nThe Israeli military actions come one week before Palestinian elections to replace the late Palestinian Authority President Yasser Arafat .\tDT JJ JJ NNS VBP CD NN IN JJ NNS TO VB DT JJ JJ NNP NNP NNP NNP .\nA new opinion survey by the Palestinian Center for Policy and Survey Research shows Palestine Liberation Organization chairman Mahmoud Abbas with a 65-to-22 percent lead over his nearest rival , Mustafa Barghouti .\tDT JJ NN NN IN DT JJ NNP IN NNP CC NNP NNP VBZ NNP NNP NNP NN NNP NNP IN DT JJ NN NN IN PRP$ JJS NN , NNP NNP .\nMr. Abbas has vowed to protect Palestinian militants from Israeli raids .\tNNP NNP VBZ VBN TO VB JJ NNS IN JJ NNS .\nHe also has criticized attacks on Israelis , saying they are not productive .\tPRP RB VBZ VBN NNS IN NNS , VBG PRP VBP RB JJ .\nAn auction house in Hong Kong has broken the price-per-carat record for a gemstone auctioned off , with the sale of a six-carat blue diamond at nearly $ 8 million .\tDT NN NN IN NNP NNP VBZ VBN DT NN NN IN DT NN VBN RP , IN DT NN IN DT JJ JJ NN IN RB $ CD CD .\nSotheby 's of Hong Kong announced the sale Monday , noting that the price comes out to $ 1.32 million a carat .\tNNP POS IN NNP NNP VBD DT NN NNP , VBG IN DT NN VBZ RP TO $ CD CD DT NN .\nThe sale bested a 20-year record held by a diamond known as the ' Hancock Red ' that fetched just over $ 9,00,000 per carat in 1987 .\tDT NN VBD DT JJ NN VBN IN DT NN VBN IN DT `` NNP NNP `` WDT VBD RB IN $ CD IN NN IN CD .\nThe buyer for the diamond is Moussaieff Jewelers , a London-based jeweler that collects rare gemstones .\tDT NN IN DT NN VBZ NNP NNPS , DT JJ NN WDT VBZ JJ NNS .\nThe diamond is said to be in perfect condition with a rare , vivid blue color - the result of the element boron in the stone 's crystal structure .\tDT NN VBZ VBN TO VB IN JJ NN IN DT JJ , JJ JJ NN IN DT NN IN DT NN NN IN DT NN POS JJ NN .\nThe Iraqi government 's top executive body , called the president 's council , has issued a controversial law that allows some former members of Saddam Hussein 's Baath Party to return to government service .\tDT JJ NN POS JJ NN NN , VBD DT NN POS NN , VBZ VBN DT JJ NN WDT VBZ DT JJ NNS IN NNP NNP POS NNP NNP TO VB TO NN NN .\nThe Kurdish , Jalal Talabani , and Shi'ite , Adel Abdul-Mahdi , representatives of the three-member presidency council issued the law Sunday despite the objection of the Sunni representative , Tareq al-Hashemi .\tDT NNP , NNP NNP , CC NNP , NNP NNP , NNS IN DT JJ NN NN VBD DT NN NNP IN DT NN IN DT NNP NN , NNP NNP .\nSunni politicians say the law contains provisions that will force out many current government workers .\tNNP NNS VBP DT NN VBZ NNS WDT MD VB RP JJ JJ NN NNS .\nThe law is one of 18 pieces of so-called benchmark legislation aimed at achieving reconciliation among Iraq 's Kurdish , Sunni Arab and Shi'ite communities .\tDT NN VBZ CD IN CD NNS IN JJ JJ NN VBN IN VBG NN IN NNP POS NNP , NNP NNP CC NNP NNS .\nMeanwhile , the U.S. military says the bodies of four Iraqi militia members working with U.S. forces were recovered in Baquba Sunday .\tRB , DT NNP NN VBZ DT NNS IN CD JJ NN NNS VBG IN NNP NNS VBD VBN IN NNP NNP .\nThe military also said coalition forces killed three suspected terrorists and captured 36 others in the last two days in operations in central and northern Iraq .\tDT NN RB VBD NN NNS VBD CD JJ NNS CC VBD CD NNS IN DT JJ CD NNS IN NNS IN JJ CC JJ NNP .\nBosnian officials say DNA tests on human remains taken from mass graves have identified 50 victims of the war in Croatia in the early 1990s .\tJJ NNS VBP NN NNS IN JJ NNS VBN IN NN NNS VBP VBN CD NNS IN DT NN IN NNP IN DT JJ NNS .\nExperts in Bosnian and Croatian laboratories compared the DNA with blood samples taken from more than 750 families who have reported missing relatives .\tNNS IN JJ CC JJ NNS VBN DT NN IN NN NNS VBN IN JJR IN CD NNS WP VBP VBN VBG NNS .\nFifty of the samples led to positive identifications .\tCD IN DT NNS VBD TO JJ NNS .\nA Bosnian official calls the results extraordinary .\tDT JJ NN VBZ DT NNS JJ .\nThe Sarajevo-based International Commission for Missing Persons runs one of the world 's most sophisticated DNA laboratories\tDT JJ NNP NNP IN VBG NNS VBZ CD IN DT NN POS RBS JJ NN NNS\nThe lab helped identify victims of the September 11 , 2001 terror attacks on the United States and last year 's Asian tsunami .\tDT NN VBD VB NNS IN DT NNP CD , CD NN NNS IN DT NNP NNPS CC JJ NN POS JJ NN .\nThe United States has announced it is giving $ 40 million worth of food aid to Bangladesh , which is facing shortages after flooding and a devastating cyclone last year .\tDT NNP NNPS VBZ VBN PRP VBZ VBG $ CD CD NN IN NN NN TO NNP , WDT VBZ VBG NNS IN NN CC DT JJ NN JJ NN .\nU.S. Ambassador to Bangladesh James Moriarty said Sunday in Dhaka the aid will go to school children , along with cyclone and flood victims .\tNNP NNP TO NNP NNP NNP VBD NNP IN NNP DT NN MD VB TO NN NNS , IN IN NN CC NN NNS .\nLast year 's Cyclone Sidr killed an estimated 3,500 people and left another two million homeless .\tJJ NN POS NNP NNP VBD DT JJ CD NNS CC VBD DT CD CD NN .\nThe cyclone also destroyed roughly two million tons of rice .\tDT NN RB VBD RB CD CD NNS IN NN .\nThe Bangladeshi government has said this year 's rice crop looks like it will be plentiful , but it is still anticipating possible rice shortages .\tDT JJ NN VBZ VBN DT NN POS NN NN VBZ IN PRP MD VB JJ , CC PRP VBZ RB VBG JJ NN NNS .\nBermuda enjoys the third highest per capita income in the world , more than 50 % higher than that of the US ; the average cost of a house by the mid-2000s exceeded $ 10,00,000 .\tNNP VBZ DT JJ JJS IN NN NN IN DT NN , JJR IN CD NN JJR IN DT IN DT NNP ; DT JJ NN IN DT NN IN DT NNS VBD $ CD .\nIts economy is primarily based on providing financial services for international business and luxury facilities for tourists .\tPRP$ NN VBZ RB VBN IN VBG JJ NNS IN JJ NN CC NN NNS IN NNS .\nA number of reinsurance companies relocated to the island following the 11 September 2001 attacks and again after Hurricane Katrina in August 2005 contributing to the expansion of an already robust international business sector .\tDT NN IN NN NNS VBD TO DT NN VBG DT CD NNP CD NNS CC RB IN NNP NNP IN NNP CD VBG TO DT NN IN DT RB JJ JJ NN NN .\nBermuda 's tourism industry - which derives over 80 % of its visitors from the US - continues to struggle but remains the island 's number two industry .\tNNP POS NN NN : WDT VBZ IN CD NN IN PRP$ NNS IN DT NNP : VBZ TO VB CC VBZ DT NN POS NN CD NN .\nMost capital equipment and food must be imported .\tJJS NN NN CC NN MD VB VBN .\nBermuda 's industrial sector is largely focused on construction and agriculture is limited , with only 20 % of the land being arable .\tNNP POS JJ NN VBZ RB VBN IN NN CC NN VBZ VBN , IN RB CD NN IN DT NN VBG JJ .\nThe former French colony of Ubangi-Shari became the Central African Republic upon independence in 1960 .\tDT JJ JJ NN IN NNP VBD DT NNP NNP NNP IN NN IN CD .\nAfter three tumultuous decades of misrule - mostly by military governments - civilian rule was established in 1993 and lasted for one decade .\tIN CD JJ NNS IN NN : RB IN JJ NNS IN JJ NN VBD VBN IN CD CC VBD IN CD NN .\nPresident Ange-Felix PATASSE 's civilian government was plagued by unrest , and in March 2003 he was deposed in a military coup led by General Francois BOZIZE , who established a transitional government .\tNNP NNP NNP POS JJ NN VBD VBN IN NN , CC IN NNP CD PRP VBD VBN IN DT JJ NN VBN IN NNP NNP NNP , WP VBD DT JJ NN .\nThough the government has the tacit support of civil society groups and the main parties , a wide field of candidates contested the municipal , legislative , and presidential elections held in March and May of 2005 in which General BOZIZE was affirmed as president .\tIN DT NN VBZ DT JJ NN IN JJ NN NNS CC DT JJ NNS , DT JJ NN IN NNS VBD DT JJ , JJ , CC JJ NNS VBN IN NNP CC NNP IN CD IN WDT NNP NNP VBD VBN IN NN .\nThe government still does not fully control the countryside , where pockets of lawlessness persist .\tDT NN RB VBZ RB RB VB DT NN , WRB NNS IN NN VBP .\nUnrest in the neighboring nations of Chad , Sudan , and the DRC continues to affect stability in the Central African Republic as well .\tNNP IN DT JJ NNS IN NNP , NNP , CC DT NNP VBZ TO VB NN IN DT NNP NNP NNP RB RB .\nThe Gilbert Islands became a British protectorate in 1892 and a colony in 1915 ; they were captured by the Japanese in the Pacific War in 1941 .\tDT NNP NNP VBD DT JJ NN IN CD CC DT NN IN CD ; PRP VBD VBN IN DT NNS IN DT NNP NNP IN CD .\nThe islands of Makin and Tarawa were the sites of major US amphibious victories over entrenched Japanese garrisons in 1943 .\tDT NNS IN NNP CC NNP VBD DT NNS IN JJ NNP JJ NNS IN JJ JJ NNS IN CD .\nThe Gilbert Islands were granted self-rule by the UK in 1971 and complete independence in 1979 under the new name of Kiribati .\tDT NNP NNP VBD VBN JJ IN DT NNP IN CD CC JJ NN IN CD IN DT JJ NN IN NNP .\nThe US relinquished all claims to the sparsely inhabited Phoenix and Line Island groups in a 1979 treaty of friendship with Kiribati .\tDT NNP VBD DT NNS TO DT RB JJ NNP CC NNP NNP NNS IN DT CD NN IN NN IN NNP .\nSpain 's mixed capitalist economy is the 12th largest in the world , and its per capita income roughly matches that of Germany and France .\tNNP POS JJ JJ NN VBZ DT JJ JJS IN DT NN , CC PRP$ IN NN NN RB VBZ IN IN NNP CC NNP .\nHowever , after almost 15 years of above average GDP growth , the Spanish economy began to slow in late 2007 and entered into a recession in the second quarter of 2008 .\tRB , IN RB CD NNS IN IN JJ NN NN , DT JJ NN VBD TO VB IN JJ CD CC VBD IN DT NN IN DT JJ NN IN CD .\nGDP contracted by 3.7 % in 2009 , ending a 16-year growth trend , and by another 0.2 % in 2010 , making Spain the last major economy to emerge from the global recession .\tNN VBD IN CD NN IN CD , VBG DT JJ NN NN , CC IN DT CD NN IN CD , VBG NNP DT JJ JJ NN TO VB IN DT JJ NN .\nThe reversal in Spain 's economic growth reflected a significant decline in construction amid an oversupply of housing and falling consumer spending , while exports actually have begun to grow .\tDT NN IN NNP POS JJ NN VBD DT JJ NN IN NN IN DT NN IN NN CC VBG NN NN , IN NNS RB VBP VBN TO VB .\nGovernment efforts to boost the economy through stimulus spending , extended unemployment benefits , and loan guarantees did not prevent a sharp rise in the unemployment rate , which rose from a low of about 8 % in 2007 to 20 % in 2010 .\tNN NNS TO VB DT NN IN NN NN , VBN NN NNS , CC NN NNS VBD RB VB DT JJ NN IN DT NN NN , WDT VBD IN DT NN IN IN CD NN IN CD CC CD NN IN CD .\nThe government budget deficit worsened from 3.8 % of GDP in 2008 to 9.2 % of GDP in 2010 , more than three times the euro-zone limit .\tDT NN NN NN VBD IN CD NN IN NN IN CD TO CD NN IN NN IN CD , JJR IN CD NNS DT NN NN .\nSpain 's large budget deficit and poor economic growth prospects have made it vulnerable to financial contagion from other highly-indebted euro zone members despite the government 's efforts to cut spending , privatize industries , and boost competitiveness through labor market reforms .\tNNP POS JJ NN NN CC JJ JJ NN NNS VBP VBN PRP JJ TO JJ NN IN JJ JJ NN NN NNS IN DT NN POS NNS TO VB NN , NN NNS , CC NN NN IN NN NN NNS .\nSpanish banks ' high exposure to the collapsed domestic construction and real estate market also poses a continued risk for the sector .\tJJ NNS POS JJ NN TO DT JJ JJ NN CC JJ NN NN RB VBZ DT JJ NN IN DT NN .\nThe government oversaw a restructuring of the savings bank sector in 2010 , and provided some $ 15 billion in capital to various institutions .\tDT NN VBD DT NN IN DT NNS NN NN IN CD , CC VBD DT $ CD CD IN NN TO JJ NNS .\nInvestors remain concerned that Madrid may need to bail out more troubled banks .\tNNS VBP JJ IN NNP MD VB TO VB RP JJR JJ NNS .\nThe Bank of Spain , however , is seeking to boost confidence in the financial sector by pressuring banks to come clean about their losses and consolidate into stronger groups .\tDT NNP IN NNP , RB , VBZ VBG TO VB NN IN DT JJ NN IN VBG NNS TO VB JJ IN PRP$ NNS CC VB IN JJR NNS .\nA CROW in great want of food saw a Serpent asleep in a sunny nook , and flying down , greedily seized him .\tDT NN IN JJ VBP IN NN VBD DT NN JJ IN DT JJ NN , CC VBG RB , RB VBD PRP .\nThe Serpent , turning about , bit the Crow with a mortal wound .\tDT NN , VBG RB , RB DT NN IN DT JJ NN .\nIn the agony of death , the bird exclaimed :\tIN DT NN IN NN , DT NN VBD :\n' O unhappy me ! who have found in that which I deemed a happy windfall the source of my destruction . '\t`` NNP JJ PRP . WP VBP VBN IN DT WDT PRP VBD DT JJ NN DT NN IN PRP$ NN . ``\nAT ONE TIME the Horse had the plain entirely to himself .\tIN CD NN DT NN VBD DT NN RB TO PRP .\nThen a Stag intruded into his domain and shared his pasture .\tRB DT NN VBD IN PRP$ NN CC VBD PRP$ NN .\nThe Horse , desiring to revenge himself on the stranger , asked a man if he were willing to help him in punishing the Stag .\tDT NN , VBG TO VB PRP IN DT NN , VBD DT NN IN PRP VBD JJ TO VB PRP IN VBG DT NNP .\nThe man replied that if the Horse would receive a bit in his mouth and agree to carry him , he would contrive effective weapons against the Stag .\tDT NN VBD IN IN DT NNP MD VB DT NN IN PRP$ NN CC VB TO VB PRP , PRP MD VB JJ NNS IN DT NNP .\nThe Horse consented and allowed the man to mount him .\tDT NN VBD CC VBD DT NN TO VB PRP .\nFrom that hour he found that instead of obtaining revenge on the Stag , he had enslaved himself to the service of man .\tIN DT NN PRP VBD IN RB IN VBG NN IN DT NNP , PRP VBD VBN PRP TO DT NN IN NN .\nTHE people of Madagonia had an antipathy to the people of Novakatka and set upon some sailors of a Novakatkan vessel , killing two and wounding twelve .\tDT NNS IN NNP VBD DT JJ TO DT NNS IN NNP CC VBN IN DT NNS IN DT JJ NN , VBG CD CC VBG NN .\nThe King of Madagonia having refused either to apologise or pay , the King of Novakatka made war upon him , saying that it was necessary to show that Novakatkans must not be slaughtered .\tDT NN IN NNP VBG VBN DT TO VB CC VB , DT NNP IN NNP VBD NN IN PRP , VBG IN PRP VBD JJ TO VB IN NNS MD RB VB VBN .\nIn the battles which ensued the people of Madagonia slaughtered two thousand Novakatkans and wounded twelve thousand .\tIN DT NNS WDT VBD DT NNS IN NNP VBD CD CD NNS CC VBD CD CD .\nBut the Madagonians were unsuccessful , which so chagrined them that never thereafter in all their land was a Novakatkan secure in property or life .\tCC DT NNS VBD JJ , WDT RB VBD PRP WDT RB RB IN DT PRP$ NN VBD DT NN JJ IN NN CC NN .\nSoftball is better than baseball because you do n't have to watch your team lose for NINE innings .\tNN VBZ JJR IN NN IN PRP VBP RB VB TO VB PRP$ NN VB IN CD NNS .\nUkraine 's Supreme Court has halted official publication of the results of the December 26 presidential election .\tNNP POS NNP NNP VBZ VBN JJ NN IN DT NNS IN DT NNP CD JJ NN .\nThe high court announced Tuesday it must first review an appeal from former Prime Minister Viktor Yanukovych , who officials say lost the race to opposition leader Viktor Yushchenko .\tDT JJ NN VBD NNP PRP MD RB VB DT NN IN JJ NNP NNP NNP NNP , WP NNS VBP VBN DT NN TO NN NN NNP NNP .\nThe results must be printed in two government newspapers before the winner can be inaugurated .\tDT NNS MD VB VBN IN CD NN NNS IN DT NN MD VB VBN .\nElection officials say Mr. Yushchenko garnered 52 percent support in the court-ordered repeat election , over Mr. Yanukovych 's 44 percent .\tNN NNS VBP NNP NNP VBD CD NN NN IN DT JJ NN NN , IN NNP NNP POS CD NN .\nThe former prime minister is alleging widespread fraud in the hotly contested race , and has filed a number of complaints with the Supreme Court and electoral officials .\tDT JJ JJ NN VBZ VBG JJ NN IN DT RB VBN NN , CC VBZ VBN DT NN IN NNS IN DT NNP NNP CC JJ NNS .\nThe December election replaced a November run-off that the high court said was rigged in favor of Mr. Yanukovych .\tDT NNP NN VBD DT NNP NN IN DT JJ NN VBD VBD VBN IN NN IN NNP NNP .\nTop officials with the Organization for Security and Cooperation in Europe have congratulated Mr. Yushchenko on the election .\tJJ NNS IN DT NNP IN NNP CC NNP IN NNP VBP VBN NNP NNP IN DT NN .\nThe child molestation trial of pop star Michael Jackson is set to begin in southern California .\tDT NN NN NN IN NN NN NNP NNP VBZ VBN TO VB IN JJ NNP .\nLawyers are expected to begin screening the first of as many as 750 potential jurors at a Santa Barbara county court Monday for the trial that could last several months .\tNNS VBP VBN TO VB VBG DT NN IN RB JJ IN CD JJ NNS IN DT NNP NNP NN NN NNP IN DT NN WDT MD VB JJ NNS .\nMr. Jackson faces 10 charges involving a child under the age of 14 .\tNNP NNP VBZ CD NNS VBG DT NN IN DT NN IN CD .\nHe has pleaded not guilty , saying he is completely innocent .\tPRP VBZ VBN RB JJ , VBG PRP VBZ RB JJ .\nIn a court-approved video statement Sunday , Mr. Jackson criticized recent leaks of grand jury testimony on the case , calling them ' malicious , disgusting and FALSE . '\tIN DT JJ NN NN NNP , NNP NNP VBD JJ NNS IN JJ NN NN IN DT NN , VBG PRP `` JJ , JJ CC JJ . ``\nGrand jury testimony , although secret and not publicly released , is often leaked to the media .\tNNP NN NN , IN JJ CC RB RB VBN , VBZ RB VBN TO DT NNS .\nRussia 's President Vladimir Putin has made more harsh comments about the Bush administration , accusing it of using what he calls a ' nonexistent Russian threat ' to get more defense spending from Congress .\tNNP POS NNP NNP NNP VBZ VBN RBR JJ NNS IN DT NNP NN , VBG PRP IN VBG WP PRP VBZ DT `` JJ JJ NN `` TO VB JJR NN NN IN NNP .\nMr. Putin said during a visit to Jordan Tuesday that the administration has used the ' Russian card ' to address its political problems , including the wars in Iraq and Afghanistan , and for the deployment of a missile defense system .\tNNP NNP VBD IN DT NN TO NNP NNP IN DT NN VBZ VBN DT `` JJ NN `` TO VB PRP$ JJ NNS , VBG DT NNS IN NNP CC NNP , CC IN DT NN IN DT NN NN NN .\nHe said he only expressed what many other countries also believe , when he complained last week about what he described as the almost uncontained use of U.S. military force .\tPRP VBD PRP RB VBD WP JJ JJ NNS RB VBP , WRB PRP VBD JJ NN IN WP PRP VBD IN DT RB JJ NN IN NNP JJ NN .\nThe White House called his remarks disappointing .\tDT NNP NNP VBD PRP$ NNS JJ .\nLast week , U.S. Defense Secretary Robert Gates spoke to a congressional committee and identified Russia as a potential threat .\tJJ NN , NNP NNP NNP NNP NNP VBD TO DT JJ NN CC VBN NNP IN DT JJ NN .\nTwo armed Pakistani inmates were holed up in Afghanistan 's main prison Friday , after an escape attempt that left at least five people dead .\tCD JJ JJ NNS VBD VBN RP IN NNP POS JJ NN NNP , IN DT NN NN WDT VBD IN JJS CD NNS JJ .\nThe head of the Pul-i-Charki prison in the Afghan capital , Kabul , says four inmates linked to the al-Qaida terrorist network began the uprising Friday .\tDT NN IN DT NNP NN IN DT JJ NN , NNP , VBZ CD NNS VBN TO DT NNP JJ NN VBD DT NN NNP .\nThe four men , identified as one Iraqi and three Pakistanis , overpowered and killed a prison guard and seized his rifle , then killed two more guards .\tDT CD NNS , VBN IN CD JJ CC CD NNS , VBD CC VBD DT NN NN CC VBD PRP$ NN , RB VBD CD JJR NNS .\nTwo of the original four prisoners died in a shootout .\tCD IN DT JJ CD NNS VBD IN DT NN .\nReports from the scene say a shootout has been under way between the remaining two inmates and security forces surrounding the prison .\tNNS IN DT NN VBP DT NN VBZ VBN IN NN IN DT VBG CD NNS CC NN NNS VBG DT NN .\nThe prison , on the outskirts of Kabul , is used to house inmates held for criminal offenses .\tDT NN , IN DT NNS IN NNP , VBZ VBN TO VB NNS VBN IN JJ NNS .\nIt is separate from detention facilities operated by the United States to house captured Taliban and al-Qaida fighters .\tPRP VBZ JJ IN NN NNS VBN IN DT NNP NNPS TO VB VBN NNP CC NNP NNS .\nIran 's intelligence minister says authorities have arrested members of a group which allegedly carried out an attack in northwestern Iran on Wednesday that killed 12 people .\tNNP POS NN NN VBZ NNS VBP VBN NNS IN DT NN WDT RB VBD RP DT NN IN JJ NNP IN NNP WDT VBD CD NNS .\nHeidar Moslehi did not publicly identify the group Thursday .\tNNP NNP VBD RB RB VB DT NN NNP .\nHowever , he said those responsible for what he called ' this terrorist attack ' had targeted ' unity ' between Shi'ites and Sunnis in the region .\tRB , PRP VBD DT JJ IN WP PRP VBD `` DT JJ NN `` VBD VBN `` NN `` IN NNS CC NNS IN DT NN .\nThe bombing in the town of Mahabad came during a military parade marking the 30th anniversary of the start of the Iran-Iraq War .\tDT NN IN DT NN IN NNP VBD IN DT JJ NN VBG DT JJ NN IN DT NN IN DT NNP NNP .\nOfficials say at least 70 others were injured in the blast .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NN .\nNo group has claimed responsibility .\tDT NN VBZ VBN NN .\nLocal officials blamed Kurdish separatists .\tJJ NNS VBD NNP NNS .\nBut a leading Kurdish faction condemned the bombing .\tCC DT JJ NNP NN VBD DT NN .\nFormer Iranian President Akbar Hashemi Rafsanjani is in Iraq for talks on boosting political , religious and economic ties .\tJJ JJ NNP NNP NNP NNP VBZ IN NNP IN NNS IN VBG JJ , JJ CC JJ NNS .\nMr. Rafsanjani , who heads the influential Expediency Council , arrived Monday in Baghdad and met with Iraqi President Jalal Talabani .\tNNP NNP , WP VBZ DT JJ NNP NNP , VBD NNP IN NNP CC VBD IN JJ NNP NNP NNP .\nMr. Talabani was in Iran last week , as the two former foes rebuild their ties following the ouster of Iranian arch-rival , former Iraqi President Saddam Hussein .\tNNP NNP VBD IN NNP JJ NN , IN DT CD JJ NNS VB PRP$ NNS VBG DT NN IN JJ JJ , JJ JJ NNP NNP NNP .\nMr. Talabani was seeking Iranian investment in his country , devastated in the years since the U.S.-led invasion in 2003 .\tNNP NNP VBD VBG JJ NN IN PRP$ NN , VBN IN DT NNS IN DT JJ NN IN CD .\nWashington has expressed concern about increasing ties between the two Shi'ite-majority neighbors .\tNNP VBZ VBN NN IN VBG NNS IN DT CD JJ NNS .\nIt has accused Tehran of supporting anti-U.S. militants in Iraq , a charge Iran denies .\tPRP VBZ VBN NNP IN VBG JJ NNS IN NNP , DT NN NNP VBZ .\nAbout 7,000 Hamas supporters have held a rally in Gaza City to mark the anniversary of the assassination of the group 's founder and send a warning to Israel .\tIN CD NNP NNS VBP VBN DT NN IN NNP NNP TO VB DT NN IN DT NN IN DT NN POS NN CC VB DT NN TO NNP .\nHamas spiritual leader Sheikh Ahmed Yassin was killed in an Israeli air strike March 22 , last year .\tNNP JJ NN NNP NNP NNP VBD VBN IN DT JJ NN NN NNP CD , JJ NN .\nHamas leaders Friday vowed to resume attacks on Israel unless it accepts their demands for prisoner releases and other concessions .\tNNP NNS NNP VBD TO VB NNS IN NNP IN PRP VBZ PRP$ NNS IN NN NNS CC JJ NNS .\nA top Hamas official said he would participate in cease-fire talks scheduled next week in Egypt , but has not decided on whether the group will sign an agreement .\tDT JJ NNP NN VBD PRP MD VB IN NN NNS VBN JJ NN IN NNP , CC VBZ RB VBN IN IN DT NN MD VB DT NN .\nSome palestinian militants have been observing a ' cooling off ' period with Israel that was agreed to during a recent summit in Sharm el-Sheik , Egypt .\tDT JJ NNS VBP VBN VBG DT `` VBG RP `` NN IN NNP WDT VBD VBN TO IN DT JJ NN IN NNP NNP , NNP .\nIndia and Sri Lanka say peace talks with Tamil rebels should resume early in order to prevent the island nation from plunging back into civil war .\tNNP CC NNP NNP VBP NN NNS IN NNP NNS MD VB RB IN NN TO VB DT NN NN IN VBG RB IN JJ NN .\nThe call was made after visiting Sri Lankan President Mahinda Rajapakse met with Indian Prime Minister Manmohan Singh and briefed him about his government 's efforts to restart peace talks with Tamil Tiger rebels .\tDT NN VBD VBN IN VBG NNP NNP NNP NNP NNP VBD IN JJ NNP NNP NNP NNP CC VBD PRP IN PRP$ NN POS NNS TO VB NN NNS IN NNP NNP NNS .\nAn Indian spokesman said both countries agreed about the need to strengthen the almost three-year-old ceasefire , which is becoming fragile .\tDT JJ NN VBD DT NNS VBD IN DT NN TO VB DT RB JJ NN , WDT VBZ VBG JJ .\nBoth the Tigers and the Sri Lankan government have agreed to hold talks , but the government insists they must take place in an Asian country , while the rebels want to hold them in Norway , which brokered a 2002 truce .\tDT DT NNPS CC DT NNP NNP NN VBP VBN TO VB NNS , CC DT NN VBZ PRP MD VB NN IN DT JJ NN , IN DT NNS VBP TO VB PRP IN NNP , WDT VBD DT CD NN .\nIn New Delhi , Mr. Rajapakse is also holding talks on enhancing economic cooperation and trade relations with India .\tIN NNP NNP , NNP NNP VBZ RB VBG NNS IN VBG JJ NN CC NN NNS IN NNP .\nUnited Nations humanitarian agencies say they are searching for a new route into southern Lebanon to help war refugees , after Israel imposed an indefinite ban on movement in the region .\tNNP NNP JJ NNS VBP PRP VBP VBG IN DT JJ NN IN JJ NNP TO VB NN NNS , IN NNP VBD DT JJ NN IN NN IN DT NN .\nA spokeswoman for the U.N. World Food Program , Christiane Berthiaume , said Tuesday relief agencies are looking for alternative ways to provide aid to Lebanese civilians cut off by heavy fighting .\tDT NN IN DT NNP NNP NNP NNP , NNP NNP , VBD NNP NN NNS VBP VBG IN JJ NNS TO VB NN TO VB NNS VBN RP IN JJ NN .\nAid officials say road transport is too dangerous after the Israeli military warned it would strike any vehicle traveling south of the Litani River on suspicion of transporting weapons .\tNN NNS VBP NN NN VBZ RB JJ IN DT JJ NN VBD PRP MD VB DT NN VBG NN IN DT NNP NNP IN NN IN VBG NNS .\nThe U.N. spokeswoman said there are hundreds of thousands of people who need aid in Lebanon .\tDT NNP NN VBD EX VBP NNS IN NNS IN NNS WP VBP NN IN NNP .\nThe World Food Program has brought 404 tons of food into the region , but she said that is not enough .\tDT NNP NNP NNP VBZ VBN CD NNS IN NN IN DT NN , CC PRP VBD DT VBZ RB RB .\nThe U.N. human rights chief says Sudanese authorities are restricting press freedoms and making arbitrary arrests , as a referendum approaches on the independence of south Sudan .\tDT NNP NN NNS NN VBZ JJ NNS VBP VBG NN NNS CC VBG JJ NNS , IN DT NN VBZ IN DT NN IN JJ NNP .\nNavi Pillay said it is important the referendum is free and fair , calling it a critical moment in Sudan 's history .\tNNP NNP VBD PRP VBZ JJ DT NN VBZ JJ CC JJ , VBG PRP DT JJ NN IN NNP POS NN .\nShe urged the governments of Sudan and south Sudan to quickly halt efforts to intimidate voters or taint the result of the referendum , which begins on Sunday .\tPRP VBD DT NNS IN NNP CC RB NNP TO RB VB NNS TO VB NNS CC NN DT NN IN DT NN , WDT VBZ IN NNP .\nNearly 4 million southern Sudanese are registered to vote in the referendum , which will allow voters to secede or remain united with the north .\tRB CD CD JJ NNS VBP VBN TO VB IN DT NN , WDT MD VB NNS TO VB CC VB JJ IN DT NN .\nThe vote is expected to split Africa 's largest country in two .\tDT NN VBZ VBN TO VB NNP POS JJS NN IN CD .\nThe referendum is the centerpiece of the 2005 peace deal that ended Sudan 's north-south civil war .\tDT NN VBZ DT NN IN DT CD NN NN WDT VBD NNP POS JJ JJ NN .\nU.S. President George Bush Tuesday thanked troops who are back from Iraq and Afghanistan , where he said , thanks to their sacrifices , ' the forces of freedom and liberty will prevail . '\tNNP NNP NNP NNP NNP VBD NNS WP VBP RB IN NNP CC NNP , WRB PRP VBD , NNS TO PRP$ NNS , `` DT NNS IN NN CC NN MD VB . ``\nMr. Bush addressed about 7,500 military personnel at Fort Campbell , in the central U.S. state of Kentucky two days before the Thanksgiving Day holiday .\tNNP NNP VBD IN CD JJ NNS IN NNP NNP , IN DT JJ NNP NN IN NNP CD NNS IN DT NNP NNP NN .\nAbout 10,000 Fort Campbell troops have returned from the wars in Afghanistan and Iraq since October .\tIN CD NNP NNP NNS VBP VBN IN DT NNS IN NNP CC NNP IN NNP .\nOthers troops are scheduled to depart for the regions in the coming week .\tJJ NNS VBP VBN TO VB IN DT NNS IN DT JJ NN .\nMr. Bush told the men and women that they have earned the thanks of every American for a ' job well done . '\tNNP NNP VBD DT NNS CC NNS IN PRP VBP VBN DT NNS IN DT NNP IN DT `` NN RB VBN . ``\nHe credited the troops with taking the fight against terrorism overseas so that Americans do not have to face the threat at home .\tPRP VBD DT NNS IN VBG DT NN IN NN RB RB IN NNS VBP RB VB TO VB DT NN IN NN .\nA senior Afghan intelligence official says a military aircraft crashed in the country 's northern region Thursday .\tDT JJ JJ NN NN VBZ DT JJ NN VBD IN DT NN POS JJ NN NNP .\nProvincial intelligence chief Abdul Majid Azimi says the aircraft went down in the mountains of Afghanistan 's Baghlan province .\tNNP NN NN NNP NNP NNP VBZ DT NN VBD RB IN DT NNS IN NNP POS NNP NN .\nHe says it is unclear if the aircraft involved is a helicopter or a plane or to whom it belonged .\tPRP VBZ PRP VBZ JJ IN DT NN VBN VBZ DT NN CC DT NN CC TO WP PRP VBD .\nA spokesman for NATO 's international coalition in Afghanistan ( International Security Assistance Force or ISAF ) says there were no immediate reports of a crash involving any of its aircraft .\tDT NN IN NNP POS JJ NN IN NNP LRB NNP NNP NNP NNP CC NNP RRB VBZ EX VBD DT JJ NNS IN DT NN VBG DT IN PRP$ NN .\nBritish anti-terror police have arrested six Muslim men in a series of London raids , on suspicion of raising funds for terrorists and inciting others to commit acts of terrorism .\tJJ JJ NNS VBP VBN CD NNP NNS IN DT NN IN NNP NNS , IN NN IN VBG NNS IN NNS CC VBG NNS TO VB NNS IN NN .\nOne of the suspects , identified as radical Muslim Abu Izzadeen , was widely known in Britain for heckling Home Secretary John Reid last year in a televised public meeting .\tCD IN DT NNS , VBN IN JJ NNP NNP NNP , VBD RB VBN IN NNP IN VBG NNP NNP NNP NNP JJ NN IN DT JJ JJ NN .\nA spokesman , Anjem Choudary , for the banned Islamic militant group al-Ghurabaa confirmed Izzadeen 's arrest Tuesday .\tDT NN , NNP NNP , IN DT VBN NNP JJ NN NNP VBD NNP POS NN NNP .\nIzzadeen , a Muslim convert and former electrician , was arrested and released on bail earlier this year in a separate case alleging that he encouraged terrorism .\tNNP , DT NNP NN CC JJ NN , VBD VBN CC VBN IN NN RBR DT NN IN DT JJ NN VBG IN PRP VBD NN .\nPolice say the suspects , aged between 21 and 35 , are in custody at a London police precinct .\tNNS VBP DT NNS , VBN IN CD CC CD , VBP IN NN IN DT NNP NN NN .\nAuthorities also say other searches in connection with the probe are ongoing .\tNNS RB VBP JJ NNS IN NN IN DT NN VBP JJ .\nTurkish officials say three people were killed Wednesday at a publishing house that printed Bibles .\tJJ NNS VBP CD NNS VBD VBN NNP IN DT NN NN WDT VBD NNS .\nThey say the attackers slit the throats of the victims at the Zirve publishing house in the city of Malatya .\tPRP VBP DT NNS VBP DT NNS IN DT NNS IN DT NNP NN NN IN DT NN IN NNP .\nA fourth person was injured when he jumped out of window to escape .\tDT JJ NN VBD VBN WRB PRP VBD IN IN NN TO VB .\nThe publisher had received threats for printing Bibles .\tDT NN VBD VBN NNS IN VBG NNS .\nOfficials say police are questioning several people in relation to the attack .\tNNS VBP NNS VBP VBG JJ NNS IN NN TO DT NN .\nTurkish television showed police wrestling a man to the ground outside the building .\tJJ NN VBD NN VBG DT NN TO DT NN IN DT NN .\nThe attack is the latest on Turkey 's small Christian minority .\tDT NN VBZ DT JJS IN NNP POS JJ JJ NN .\nLast year , a Catholic priest was shot and killed in the Black Sea city of Trabzon .\tJJ NN , DT NNP NN VBD VBN CC VBN IN DT NNP NNP NN IN NNP .\nPolice in Chad Tuesday killed at least one person when they opened fire on a protest by wounded soldiers demanding better medical care .\tNNS IN NNP NNP VBD IN JJS CD NN WRB PRP VBD NN IN DT NN IN JJ NNS VBG JJR JJ NN .\nA Defense Ministry official , Blabague Marboulaye , said Wednesday that the soldiers were demonstrating in front of a military hospital in the capital , N'Djamena .\tDT NNP NNP NN , NNP NNP , VBD NNP IN DT NNS VBD VBG IN NN IN DT JJ NN IN DT NN , NNP .\nThe official said the troops were disruptive and that the protests had been infiltrated by civilians who wanted to benefit from health services .\tDT NN VBD DT NNS VBD JJ CC IN DT NNS VBD VBN VBN IN NNS WP VBD TO VB IN NN NNS .\nPolice were called in to disperse the protest , making several arrests in addition to shooting the demonstrator .\tNNS VBD VBN IN TO VB DT NN , VBG JJ NNS IN NN TO VBG DT NN .\nOfficials say the protests had interrupted operations at the hospital , but calm has been restored at the facility .\tNNS VBP DT NNS VBD VBN NNS IN DT NN , CC NN VBZ VBN VBN IN DT NN .\nThe troops were wounded in combat against rebels in eastern Chad .\tDT NNS VBD VBN IN NN IN NNS IN JJ NNP .\nThe rebels have waged a low-intensity war against the government of President Idriss Deby for the past year .\tDT NNS VBP VBN DT JJ NN IN DT NN IN NNP NNP NNP IN DT JJ NN .\nSeparatist politicians from Indian Kashmir are making an unprecedented trip to Pakistani Kashmir for talks on the disputed region 's future .\tNNP NNS IN JJ NNP VBP VBG DT JJ NN TO JJ NNP IN NNS IN DT JJ NN POS NN .\nThe officials from Indian Kashmir 's main separatist political alliance , the All Parties Hurriyat Conference , are using the recently launched bus service between the two regions .\tDT NNS IN NNP NNP POS JJ JJ JJ NN , DT NNP NNP NNP NNP , VBP VBG DT RB VBN NN NN IN DT CD NNS .\nThey plan to meet with leaders of Pakistani Kashmir and Pakistan-based rebel groups which have been involved in a violent insurgency in Indian Kashmir for the past 15 years .\tPRP VBP TO VB IN NNS IN JJ NNP CC JJ NN NNS WDT VBP VBN VBN IN DT JJ NN IN JJ NNP IN DT JJ CD NNS .\nThe Hurriyat alliance seeks an independent Kashmir .\tDT NNP NN VBZ DT JJ NNP .\nBut its hard-line pro-Pakistani splinter group has rejected the invitation , accusing Islamabad of diluting its stand over Kashmir and appeasing New Delhi .\tCC PRP$ JJ JJ NN NN VBZ VBN DT NN , VBG NNP IN VBG PRP$ NN IN NNP CC VBG NNP NNP .\nIndia has previously denied permission to Hurriyat leaders to visit Pakistan , saying the Kashmir dispute is India 's internal matter .\tNNP VBZ RB VBN NN TO VB NNS TO VB NNP , VBG DT NNP NN VBZ NNP POS JJ NN .\nThe United Nations has condemned alleged abuses by American forces in Afghanistan , calling them ' totally unacceptable ' .\tDT NNP NNP VBZ VBN VBN NNS IN JJ NNS IN NNP , VBG PRP `` RB JJ `` .\nAsked about a report that U.S. troops allegedly burned the bodies of two Taleban fighters to taunt other fighters , a U.N. spokesman said such abuses are an affront to the work of the international community in Afghanistan .\tVBN IN DT NN IN NNP NNS RB VBD DT NNS IN CD NNP NNS TO VB JJ NNS , DT NNP NN VBD JJ NNS VBP DT NN TO DT NN IN DT JJ NN IN NNP .\nThe United Nations issued a similar statement in May amid claims of abuses of Afghan prisoners by U.S. forces .\tDT NNP NNP VBD DT JJ NN IN NNP IN NNS IN NNS IN JJ NNS IN NNP NNS .\nAfghan President Hamid Karzai has also condemned the purported burning incident and ordered an inquiry .\tJJ NNP NNP NNP VBZ RB VBN DT JJ NN NN CC VBD DT NN .\nU.S. Defense Secretary Donald Rumsfeld said the alleged actions do not represent the overwhelmingly positive behavior of the U.S. military , adding he wants the U.S. military in Afghanistan to accelerate its own investigation .\tNNP NNP NNP NNP NNP VBD DT JJ NNS VBP RB VB DT RB JJ NN IN DT NNP NN , VBG PRP VBZ DT NNP NN IN NNP TO VB PRP$ JJ NN .\nThe U.S. military in Afghanistan says two American soldiers have been charged with assaulting detainees at a coalition base in Uruzgan province .\tDT NNP NN IN NNP VBZ CD JJ NNS VBP VBN VBN IN VBG NNS IN DT NN NN IN NNP NN .\nA statement says the two soldiers allegedly punched two detainees on the chest , shoulders and stomach , but that neither detainee required medical attention .\tDT NN VBZ DT CD NNS RB VBD CD NNS IN DT NN , NNS CC NN , CC IN DT NN VBD JJ NN .\nThe charges come 10 days after the U.S. military began an investigation into allegations that American soldiers burned the bodies of two Taleban fighters and used the act to taunt other fighters .\tDT NNS VBP CD NNS IN DT NNP NN VBD DT NN IN NNS IN JJ NNS VBD DT NNS IN CD NNP NNS CC VBD DT NN TO VB JJ NNS .\nAustralian television aired a video purportedly showing the soldiers burning the bodies of the fighters they had killed near the former Taleban stronghold of Kandahar .\tJJ NN VBD DT NN RB VBG DT NNS VBG DT NNS IN DT NNS PRP VBD VBN IN DT JJ NNP NN IN NNP .\nCremation of corpses is banned in the Islamic faith and the alleged desecration sparked outrage in Afghanistan .\tNN IN NNS VBZ VBN IN DT JJ NN CC DT JJ NN VBD NN IN NNP .\nA top U.S. official says ' uncertainties ' about how China will use its increasing power may inhibit its relations with other countries , including the United States .\tDT JJ NNP NN VBZ `` NNS `` IN WRB NNP MD VB PRP$ VBG NN MD VB PRP$ NNS IN JJ NNS , VBG DT NNP NNPS .\nDeputy Secretary of State Robert Zoellick addressed the National Committee on U.S. - China Relations Wednesday in New York .\tNNP NNP IN NNP NNP NNP VBD DT NNP NNP IN NNP IN NNP NNP NNP IN NNP NNP .\nMr. Zoellick praised the ' constructive role ' China played in hosting the recent six-party talks on North Korea 's nuclear program .\tNNP NNP VBD DT `` JJ NN `` NNP VBD IN VBG DT JJ JJ NNS IN NNP NNP POS JJ NN .\nBut he also encouraged China to be a responsible stakeholder in global affairs .\tCC PRP RB VBD NNP TO VB DT JJ NN IN JJ NNS .\nHe said Beijing 's ' lack of transparency ' raises questions about the purpose of China 's rapid military modernization On trade , Mr. Zoellick said China should not take for granted its access to the U.S. market .\tPRP VBD NNP POS `` NN IN NN `` VBZ NNS IN DT NN IN NNP POS JJ JJ NN IN NN , NNP NNP VBD NNP MD RB VB IN VBN PRP$ NN TO DT NNP NN .\nOn democracy issues , Mr. Zoellick said China 's closed political system is ' simply not sustainable . '\tIN NN NNS , NNP NNP VBD NNP POS JJ JJ NN VBZ `` RB RB JJ . ``\nHe said as economic growth continues , the Chinese people will want a greater say in their future .\tPRP VBD IN JJ NN VBZ , DT JJ NNS MD VB DT JJR NN IN PRP$ NN .\nThe Egyptian Health Ministry says a 15-year-old girl has died of bird flu , the second such death in as many days .\tDT JJ NNP NNP VBZ DT JJ NN VBZ VBN IN NN NN , DT JJ JJ NN IN IN JJ NNS .\nThe ministry says the girl died Monday after contracting the deadly H5N1 strain of bird flu .\tDT NN VBZ DT NN VBD NNP IN VBG DT JJ NNP NN IN NN NN .\nThe girl was apparently from the same family as a 30-year-old woman who died of bird flu on Sunday .\tDT NN VBD RB IN DT JJ NN IN DT JJ NN WP VBD IN NN NN IN NNP .\nTwo members of the woman 's family had also been diagnosed with bird flu .\tCD NNS IN DT NN POS NN VBD RB VBN VBN IN NN NN .\nA regional official of the World Health Organization said the woman had been hospitalized in mid-December but was only tested for the deadly form of the flu in the last few days .\tDT JJ NN IN DT NNP NNP NNP VBD DT NN VBD VBN VBN IN NNP CC VBD RB VBN IN DT JJ NN IN DT NN IN DT JJ JJ NNS .\nHe said she initially did not tell health officials that she lived in close contact with ducks .\tPRP VBD PRP RB VBD RB VB NN NNS IN PRP VBD IN JJ NN IN NNS .\nNine Egyptians have now died from bird flu since it was first detected in Egyptian poultry in February .\tCD NNS VBP RB VBN IN NN NN IN PRP VBD RB VBN IN JJ NN IN NNP .\nMany poor Egyptians live in close contact with chickens and ducks that they raise for their own consumption .\tJJ JJ NNS VBP IN JJ NN IN NNS CC NNS IN PRP VBP IN PRP$ JJ NN .\nThe U.S. military is denying a report that Saddam Hussein has begun a jailhouse hunger strike , and says the ousted Iraqi leader had eaten on Sunday .\tDT NNP NN VBZ VBG DT NN IN NNP NNP VBZ VBN DT NN NN NN , CC VBZ DT JJ JJ NN VBD VBN IN NNP .\nA lawyer for Iraq 's former deputy prime minister Tariq Aziz said earlier that Saddam Hussein and other detainees had stopped eating .\tDT NN IN NNP POS JJ JJ JJ NN NNP NNP VBD RBR IN NNP NNP CC JJ NNS VBD VBN VBG .\nMonday is the first anniversary of Saddam 's capture by U.S. forces .\tNNP VBZ DT JJ NN IN NNP POS NN IN NNP NNS .\nA U.S. spokesman said authorities are checking reports that others in a group of 11 high-profile detainees in U.S. custody may be rejecting some meals .\tDT NNP NN VBD NNS VBP VBG NNS IN NNS IN DT NN IN CD JJ NNS IN NNP NN MD VB VBG DT NNS .\nMeanwhile , the U.S. military says a U.S. Marine was killed in action west of Baghdad Sunday in Anbar province .\tRB , DT NNP NN VBZ DT NNP NN VBD VBN IN NN NN IN NNP NNP IN NNP NN .\nSeparately , a U.S. soldier wounded by a roadside bomb Saturday in Baghdad has died .\tRB , DT NNP NN VBN IN DT NN NN NNP IN NNP VBZ VBN .\nMilitary officials also say U.S. forces and Iraqi police detained more than 50 people during weekend raids targeting insurgents around Baquba , north of Baghdad .\tJJ NNS RB VBP NNP NNS CC JJ NNS VBD JJR IN CD NNS IN NN NNS VBG NNS IN NNP , NN IN NNP .\nScientists at the U.S. space agency , NASA , have unveiled dramatic photographs of a huge crater on Mars taken by the roving surface probe Opportunity .\tNNS IN DT NNP NN NN , NNP , VBP VBN JJ NNS IN DT JJ NN IN NNP VBN IN DT VBG NN NN NN .\nOn Friday , Opportunity sent back its first color panorama of Victoria , the 800-meter-wide Martian crater the rover reached last week after a 21-month trek .\tIN NNP , NNP VBD RP PRP$ JJ NN NN IN NNP , DT JJ JJ NN DT NN VBD JJ NN IN DT JJ NN .\nNASA scientists told reporters Friday the sharp images of rock formations and soil layers open a window on the past of the planet .\tNNP NNS VBD NNS NNP DT JJ NNS IN NN NNS CC NN NNS VBP DT NN IN DT NN IN DT NN .\nThey say Victoria 's exposed rock layers could help reveal the mystery of whether life existed on Mars .\tPRP VBP NNP POS JJ NN NNS MD VB VB DT NN IN IN NN VBD IN NNP .\nNASA also displayed new photos taken by the Mars Reconnaissance satellite orbiting overhead , that included pictures of Victoria Crater and the Opportunity rover .\tNNP RB VBD JJ NNS VBN IN DT NNP NNP NN VBG NN , WDT VBD NNS IN NNP NNP CC DT NN NN .\nNASA researchers say they will use the photographs to plot the best route for the six-wheeled rover to descend into the crater .\tNNP NNS VBP PRP MD VB DT NNS TO VB DT JJS NN IN DT JJ NN TO VB IN DT NN .\nThe U.S. media seized on recent reports that high school girls in a Massachusetts town had made a pact to get pregnant and raise babies together .\tDT NNP NNS VBD IN JJ NNS IN JJ NN NNS IN DT NNP NN VBD VBN DT NN TO VB JJ CC VB NNS RB .\nOfficials have rejected reports of a pregnancy pact , but the incident highlights concern among some adolescent health experts that the U.S. teen birth rate is starting to rise again .\tNNS VBP VBN NNS IN DT NN NN , CC DT NN NNS NN IN DT JJ NN NNS IN DT NNP JJ NN NN VBZ VBG TO VB RB .\nLeta Hong Fincher has more on teen mothers and efforts to reduce teen pregnancy .\tNNP NNP NNP VBZ RBR IN JJ NNS CC NNS TO VB JJ NN .\nA Nigerian military aircraft carrying at least 12 people has crashed in the southeast part of the country .\tDT JJ JJ NN VBG IN JJS CD NNS VBZ VBN IN DT JJ NN IN DT NN .\nMilitary officers are among those who were on board .\tJJ NNS VBP IN DT WP VBD IN NN .\nSome on the plane are believed to have survived the crash .\tDT IN DT NN VBP VBN TO VB VBN DT NN .\nThe air force plane was flying from Nigeria 's capital , Abuja , to Obudu near Nigeria 's southeast border with Cameroon .\tDT NN NN NN VBD VBG IN NNP POS NN , NNP , TO NNP IN NNP POS NN NN IN NNP .\nFormer Chilean dictator Augusto Pinochet is spending his 90th birthday Friday under house arrest after a judge charged him with human rights violations .\tJJ JJ NN NNP NNP VBZ VBG PRP$ JJ NN NNP IN NN NN IN DT NN VBD PRP IN JJ NNS NNS .\nThe charges , which were leveled against the former dictator Thursday , stem from the disappearance of seven people arrested by General Pinochet 's security services in the early years of his 1973 to 1990 rule .\tDT NNS , WDT VBD VBN IN DT JJ NN NNP , VBD IN DT NN IN CD NNS VBN IN NNP NNP POS NN NNS IN DT JJ NNS IN PRP$ CD TO CD NN .\nThey were among 119 people who disappeared while in custody in a case known as ' Operation Colombo . '\tPRP VBD IN CD NNS WP VBD IN IN NN IN DT NN VBN IN `` NNP NNP . ``\nThis is the second indictment in two days against the former dictator .\tDT VBZ DT JJ NN IN CD NNS IN DT JJ NN .\nGeneral Pinochet had just made bail following his indictment Wednesday on charges of tax evasion , corruption and using FALSE passports in a case involving an estimated $ 27 million hidden in foreign bank accounts .\tNNP NNP VBD RB VBN NN VBG PRP$ NN NNP IN NNS IN NN NN , NN CC VBG JJ NNS IN DT NN VBG DT VBN $ CD CD VBN IN JJ NN NNS .\nDutch oil giant Shell has asked a Nigerian court to block oil workers from joining a nationwide labor strike set to begin November 16 .\tJJ NN NN NNP VBZ VBN DT JJ NN TO VB NN NNS IN VBG DT JJ NN NN VBN TO VB NNP CD .\nA judge in Lagos Monday declined to rule on the case immediately and scheduled a second hearing two days after the launch of the strike .\tDT NN IN NNP NNP VBD TO VB IN DT NN RB CC VBD DT JJ NN CD NNS IN DT NN IN DT NN .\nSunday , the country 's main labor union , the Nigeria Labor Congress , said the next work stoppage will be ' indefinite ' and will aim to disrupt the country 's oil exports .\tNNP , DT NN POS JJ NN NN , DT NNP NNP NNP , VBD DT JJ NN NN MD VB `` NN `` CC MD VB TO VB DT NN POS NN NNS .\nThe union 's president , Adams Oshiomole , also called Shell an ' enemy ' of the Nigerian people .\tDT NN POS NN , NNP NNP , RB VBD NNP DT `` NN `` IN DT JJ NNS .\nLast month , the union held a four-day strike , which did not include oil workers .\tJJ NN , DT NN VBD DT JJ NN , WDT VBD RB VB NN NNS .\nNigerian unions have criticized rising fuel prices in the country , Africa 's leading oil producer .\tJJ NNS VBP VBN VBG NN NNS IN DT NN , NNP POS JJ NN NN .\nThe government says price hikes are needed to end costly subsidies .\tDT NN VBZ NN NNS VBP VBN TO VB JJ NNS .\nThe leader of a Saudi Arabian opposition group is calling on protesters to take to the streets of Riyadh and Jeddah Thursday in a peaceful call for the monarchy 's removal .\tDT NN IN DT JJ JJ NN NN VBZ VBG IN NNS TO VB TO DT NNS IN NNP CC NNP NNP IN DT JJ NN IN DT NN POS NN .\nSaad al-Fagih , the London-based head of the Movement of Islamic Reform in Arabia and protest organizer , says his group wants total change , not minor economic , political or social reform .\tNNP NNP , DT JJ NN IN DT NN IN NNP NNP IN NNP CC NN NN , VBZ PRP$ NN VBZ JJ NN , RB JJ JJ , JJ CC JJ NN .\nHe said he expects ' tens of thousands ' of people to take part in the protest , which will begin after noon prayers Thursday .\tPRP VBD PRP VBZ `` NNS IN NNS `` IN NNS TO VB NN IN DT NN , WDT MD VB IN NN NNS NNP .\nSuch demonstrations are illegal in Saudi Arabia , and those participating would risk arrest .\tJJ NNS VBP JJ IN NNP NNP , CC DT VBG MD VB NN .\nMr. Fagih , has lived in London for eight years .\tNNP NNP , VBZ VBN IN NNP IN CD NNS .\nLast year , he accused Saudi agents of attempting to kill him in a stabbing incident at his London home .\tJJ NN , PRP VBD JJ NNS IN VBG TO VB PRP IN DT VBG NN IN PRP$ NNP NN .\nThe Saudi government denied any involvement .\tDT JJ NN VBD DT NN .\nFormer Iraqi President Abdel Rahman Aref , who was overthrown in a 1968 coup that brought Saddam Hussein 's Baath Party to power , has died in Jordan .\tJJ JJ NNP NNP NNP NNP , WP VBD VBN IN DT CD NN WDT VBD NNP NNP POS NNP NNP TO NN , VBZ VBN IN NNP .\nHe was 91 .\tPRP VBD CD .\nMr. Aref died Friday at a hospital in Amman .\tNNP NNP VBD NNP IN DT NN IN NNP .\nHe had lived in Jordan for the last three years .\tPRP VBD VBN IN NNP IN DT JJ CD NNS .\nMr. Aref , who is survived by his wife and five children , became president in 1966 after his brother , who was president at the time , died in an aviation crash .\tNNP NNP , WP VBZ VBN IN PRP$ NN CC CD NNS , VBD NN IN CD IN PRP$ NN , WP VBD NN IN DT NN , VBD IN DT NN NN .\nThe brother was part of a 1958 military coup that overthrew the monarchy .\tDT NN VBD NN IN DT CD JJ NN WDT VBD DT NN .\nMr. Aref was president for two years , until he was ousted in a Baathist Party coup .\tNNP NNP VBD NN IN CD NNS , IN PRP VBD VBN IN DT NNP NNP NN .\nHe lived in exile in Turkey and eventually returned to Iraq .\tPRP VBD IN NN IN NNP CC RB VBD TO NNP .\nHe moved to Jordan in 2004 .\tPRP VBD TO NNP IN CD .\nThe World Health Organization estimates that at least 17 million people die every year from cardiovascular disease .\tDT NNP NNP NNP VBZ IN IN JJS CD CD NNS VBP DT NN IN JJ NN .\nBecause heart related illnesses are often diagnosed in people who are overweight or obese , treatment can be complicated .\tIN NN VBN NNS VBP RB VBN IN NNS WP VBP JJ CC JJ , NN MD VB VBN .\nBut as VOA 's Melinda Smith reports , a drug used for weight loss is showing promise for some heart patients .\tCC IN NNP POS NNP NNP VBZ , DT NN VBN IN NN NN VBZ VBG NN IN DT NN NNS .\nA top North Korean official says Pyongyang will increase its nuclear deterrent to defend against alleged hostile U.S. policies .\tDT JJ JJ JJ NN VBZ NNP MD VB PRP$ JJ NN TO VB IN JJ JJ NNP NNS .\nNews reports quote Kim Yong-nam , head of the North 's legislature , as saying Pyongyang will increase its nuclear deterrent to counter any threat to isolate and stifle the republic .\tNN NNS VBP NNP NNP , NN IN DT NNP POS NN , IN VBG NNP MD VB PRP$ JJ NN TO VB DT NN TO VB CC VB DT NN .\nHe said North Korea would destroy any aggressor if war breaks out on the Korean peninsula .\tPRP VBD NNP NNP MD VB DT NN IN NN VBZ RP IN DT JJ NN .\nMr. Kim , who ranks second behind top leader Kim Jong-il , is the highest ranking North Korean official to state Pyongyang 's intention to boost its nuclear arsenal .\tNNP NNP , WP VBZ JJ IN JJ NN NNP NNP , VBZ DT JJS JJ JJ JJ NN TO NN NNP POS NN TO VB PRP$ JJ NN .\nHis comments come amid a standoff over the North 's nuclear weapons program .\tPRP$ NNS VBP IN DT NN IN DT NNP POS JJ NNS NN .\nPyongyang claimed in February to possess atomic weapons and said it would indefinitely boycott international disarmament talks .\tNNP VBD IN NNP TO VB JJ NNS CC VBD PRP MD RB VB JJ NN NNS .\nU.S. economic forecasters say total losses from Hurricane Katrina 's devastation could top $ 100 billion .\tNNP JJ NNS VBP JJ NNS IN NNP NNP POS NN MD VB $ CD CD .\nIn terms of insurance losses alone , industry forecasters say they are estimating payouts to be around $ 25 billion .\tIN NNS IN NN NNS RB , NN NNS VBP PRP VBP VBG NNS TO VB IN $ CD CD .\nInsurance adjusters say they will have a clearer picture of the damage when they are able to enter New Orleans and other Gulf of Mexico coastal cities .\tNN NNS VBP PRP MD VB DT JJR NN IN DT NN WRB PRP VBP JJ TO VB NNP NNP CC JJ NNP IN NNP JJ NNS .\nThey say losses are likely growing by tens of millions of dollars each day in New Orleans as water damage becomes worse , sporadic fires continue to burn and looters ravage the city .\tPRP VBP NNS VBP JJ VBG IN NNS IN NNS IN NNS DT NN IN NNP NNP IN NN NN VBZ JJR , JJ NNS VBP TO VB CC NNS VBP DT NN .\nPresident Bush has signed a $ 10.5 billion emergency spending bill for the hurricane area , and said more relief will be needed .\tNNP NNP VBZ VBN DT $ CD CD NN NN NN IN DT NN NN , CC VBD JJR NN MD VB VBN .\nHe has also appointed his father , former President George Herbert Walker Bush , and former President Bill Clinton to coordinate private fundraising efforts .\tPRP VBZ RB VBN PRP$ NN , JJ NNP NNP NNP NNP NNP , CC JJ NNP NNP NNP TO VB JJ NN NNS .\nThe European Union is expected to review credit rating companies after allegations that they were too slow to warn of problems with the U.S. home loan businesses .\tDT NNP NNP VBZ VBN TO VB NN NN NNS IN NNS IN PRP VBD RB JJ TO VB IN NNS IN DT NNP NN NN NNS .\nFrench President Nicholas Sarkozy has urged the group of seven industrialized nations to better monitor international financial markets in the face of global credit concerns .\tJJ NNP NNP NNP VBZ VBN DT NN IN CD JJ NNS TO RB VB JJ JJ NNS IN DT NN IN JJ NN NNS .\nHis appeal in a letter to German Chancellor Angela Merkel was made public Thursday as the French stock market dropped to its lowest level this year .\tPRP$ NN IN DT NN TO JJ NNP NNP NNP VBD VBN JJ NNP IN DT JJ NN NN VBD TO PRP$ JJS NN DT NN .\nCritics have accused credit rating firms , including Moody 's Investors Service and Standard and Poor 's , of underestimating the risk in the sub-prime mortgage market .\tNNS VBP VBN NN NN NNS , VBG NNP POS NNPS NNP CC NNP CC NNP POS , IN VBG DT NN IN DT JJ NN NN .\nDefaults on sub-prime loans , or those made to people with poor credit , have risen sharply in the United States in recent months .\tNNS IN JJ NNS , CC DT VBN TO NNS IN JJ NN , VBP VBN RB IN DT NNP NNPS IN JJ NNS .\nThe problem has begun to affect banks and financial companies elsewhere in the world .\tDT NN VBZ VBN TO VB NNS CC JJ NNS RB IN DT NN .\nThe U.S. military says the pilot of an American U-2 spy plane was killed when the plane crashed late Tuesday in southwest Asia .\tDT NNP NN VBZ DT NN IN DT JJ NN NN NN VBD VBN WRB DT NN VBD JJ NNP IN JJ NNP .\nMilitary officials have not specified the exact location of the crash , saying that ' host nation sensitivities ' are involved .\tJJ NNS VBP RB VBN DT JJ NN IN DT NN , VBG IN `` NN NN NNS `` VBP VBN .\nBut officials say the plane went down as it returned to Al Dhafra Air Base in the United Arab Emirates .\tCC NNS VBP DT NN VBD RB IN PRP VBD TO NNP NNP NNP NNP IN DT NNP NNP NNPS .\nThe U-2s are assigned to the 380th Air Expeditionary Wing , which operates out of the base .\tDT NNS VBP VBN TO DT CD NNP NNP NNP , WDT VBZ IN IN DT NN .\nCentral Command says the plane had just finished a mission for Operation Enduring Freedom - the name for U.S. operations in Afghanistan .\tNNP NNP VBZ DT NN VBD RB VBN DT NN IN NNP NNP NNP IN DT NN IN NNP NNS IN NNP .\nOfficials say they do not believe the plane was brought down by hostile fire .\tNNS VBP PRP VBP RB VB DT NN VBD VBN RP IN JJ NN .\nThe U-2 is a high-altitude aircraft used for reconnaissance and surveillance .\tDT NN VBZ DT JJ NN VBN IN NN CC NN .\nThe U.S. State Department has announced that Secretary of State Hillary Clinton will depart Saturday for a tour of three Persian Gulf nations to promote political reform and discuss regional security concerns .\tDT NNP NNP NNP VBZ VBN IN NNP IN NNP NNP NNP MD VB NNP IN DT NN IN CD NNP NNP NNS TO VB JJ NN CC VB JJ NN NNS .\nThe five-day visit will include stops in the United Arab Emirates , Oman and Qatar .\tDT JJ NN MD VB NNS IN DT NNP NNP NNPS , NNP CC NNP .\nA state department official says Clinton will meet with government officials to discuss ' a full-range of regional and bilateral issues . '\tDT NN NN NN VBZ NNP MD VB IN NN NNS TO VB `` DT NN IN JJ CC JJ NNS . ``\nIn Qatar , Clinton is to participate in the seventh Forum for the Future , a U.S.-backed effort for political reform in the Middle East .\tIN NNP , NNP VBZ TO VB IN DT JJ NN IN DT NN , DT JJ NN IN JJ NN IN DT NNP NNP .\nIt will be Clinton 's second trip to the Gulf in as many months .\tPRP MD VB NNP POS JJ NN TO DT NNP IN IN JJ NNS .\nShe participated in a global security conference in Bahrain in early December .\tPRP VBD IN DT JJ NN NN IN NNP IN JJ NNP .\nThe U.S. military says seven U.S. Marines have been killed in action in western Iraq .\tDT NNP NN VBZ CD NNP NNS VBP VBN VBN IN NN IN JJ NNP .\nA spokesman says six of the troops were killed Monday in the town of Haditha , near the Syrian border , but he did not give details .\tDT NN VBZ CD IN DT NNS VBD VBN NNP IN DT NN IN NNP , IN DT JJ NN , CC PRP VBD RB VB NNS .\nThe seventh Marine also died on Monday , in a car bomb blast in Hit , about 70 kilometers southeast of Haditha .\tDT JJ NN RB VBD IN NNP , IN DT NN NN NN IN NNP , IN CD NNS NN IN NNP .\nEarlier this week , the U.S. military reported killing 11 insurgents during fighting in Haditha .\tRBR DT NN , DT NNP NN VBD VBG CD NNS IN VBG IN NNP .\nElsewhere , Iraqi police say some civilians were killed when a car bomb targeting a U.S. military convoy exploded Tuesday in central Baghdad .\tRB , JJ NNS VBP DT NNS VBD VBN WRB DT NN NN VBG DT NNP JJ NN VBD NNP IN JJ NNP .\nMore than 20 people were also wounded in the explosion .\tJJR IN CD NNS VBD RB VBN IN DT NN .\nThere were no reports of U.S. casualties .\tEX VBD DT NNS IN NNP NNS .\nAlso in Baghdad , Iraqi police say gunmen killed the head of the Abu Ghraib police station , Mizhir Hamad Yousi .\tRB IN NNP , JJ NNS VBP NNS VBD DT NN IN DT NNP NNP NN NN , NNP NNP NNP .\nHis driver was wounded in the attack .\tPRP$ NN VBD VBN IN DT NN .\nTogo 's new President Faure Gnassingbe has visited his counterpart in Gabon , amid intense international pressure on the Togolese leader to step down .\tNNP POS JJ NNP NNP NNP VBZ VBN PRP$ NN IN NNP , IN JJ JJ NN IN DT JJ NN TO VB RB .\nMr. Gnassingbe said he went to Gabon Thursday to seek advice from President Omar Bongo , calling him a wise man and brother .\tNNP NNP VBD PRP VBD TO NNP NNP TO VB NN IN NNP NNP NNP , VBG PRP DT JJ NN CC NN .\nThe Togolese leader then left for talks with Libyan officials in Tripoli .\tDT NNP NN RB VBD IN NNS IN JJ NNS IN NNP .\nMeantime , the African Union postponed a meeting Thursday to discuss the crisis in Togo until Friday .\tRB , DT NNP NNP VBD DT NN NNP TO VB DT NN IN NNP IN NNP .\nThe AU 's Peace and Security Council is expected to consider sanctions against the West African country to pressure Mr. Gnassingbe to step down .\tDT NNP POS NNP CC NNP NNP VBZ VBN TO VB NNS IN DT JJ JJ NN TO VB NNP NNP TO VB RB .\nThe bloc has suspended Togo , accusing the country 's military of staging a coup to install Mr. Gnassingbe , after his father 's death this month .\tDT NN VBZ VBN NNP , VBG DT NN POS NN IN VBG DT NN TO VB NNP NNP , IN PRP$ NN POS NN DT NN .\nMonday , Togo 's parliament ordered new presidential elections in 60 days , while allowing Mr. Gnassingbe to remain in office .\tNNP , NNP POS NN VBD JJ JJ NNS IN CD NNS , IN VBG NNP NNP TO VB IN NN .\nThousands of Pakistani women have demonstrated in south-central Punjab province , calling for equal rights on International Women 's Day .\tNNS IN JJ NNS VBP VBN IN JJ NNP NN , VBG IN JJ NNS IN NNP NNP POS NN .\nThe rally in Multan Wednesday was being led by Mukhtaran Mai , a woman who gained international attention after she was gang-raped in 2002 on the orders of a tribal council , as punishment for her brother 's alleged affair .\tDT NN IN NNP NNP VBD VBG VBN IN NNP NNP , DT NN WP VBD JJ NN IN PRP VBD JJ IN CD IN DT NNS IN DT JJ NN , IN NN IN PRP$ NN POS JJ NN .\nWomen also rallied against oppression in the southern city of Karachi .\tNNS RB VBD IN NN IN DT JJ NN IN NNP .\nIn Afghanistan , President Hamid Karzai Wednesday called for an end to forced marriage and violence against women .\tIN NNP , NNP NNP NNP NNP VBD IN DT NN TO JJ NN CC NN IN NNS .\nSpeaking at a Women 's Day event , the president says women are still oppressed , despite strides toward gender equality since the Taleban was overthrown in 2001 .\tVBG IN DT NNP POS NNP NN , DT NN VBZ NNS VBP RB VBN , IN NNS IN NN NN IN DT NNP VBD VBN IN CD .\nThe oil company Royal Dutch Shell says one of its key oil terminals in Nigeria can not honor its export contracts due to security problems .\tDT NN NN NNP NNP NNP VBZ CD IN PRP$ JJ NN NNS IN NNP MD RB VB PRP$ NN NNS JJ TO NN NNS .\nThe company issued a statement Thursday saying security concerns have prevented workers from repairing pipeline leaks at the Bonny terminal in the West African nation .\tDT NN VBD DT NN NNP VBG NN NNS VBP VBN NNS IN VBG NN NNS IN DT NNP NN IN DT JJ JJ NN .\nShell says it will not be able to meet orders for 1,30,000 barrels of light crude oil per day through March .\tNNP VBZ PRP MD RB VB JJ TO VB NNS IN CD NNS IN JJ JJ NN IN NN IN NNP .\nShell invoked a contractual provision that lifts delivery obligations in case of events out of the company 's control .\tNNP VBD DT JJ NN WDT VBZ NN NNS IN NN IN NNS IN IN DT NN POS NN .\nArmed attacks and kidnappings by rebels in the Niger Delta have disrupted oil production over the past two years and reduced by a quarter regular oil output of 2.5 million barrels per day .\tJJ NNS CC NNS IN NNS IN DT NNP NNP VBP VBN NN NN IN DT JJ CD NNS CC VBN IN DT NN JJ NN NN IN CD CD NNS IN NN .\nOfficials in Nairobi say Somali pirates have released a vessel with its crew , after holding it for almost two months .\tNNS IN NNP VBP JJ NNS VBP VBN DT NN IN PRP$ NN , IN VBG PRP IN RB CD NNS .\nThe Liberian-flagged chemical tanker Biscaglia with its crew of 25 Indians and three Bangladeshis was hijacked November 28 .\tDT JJ NN NN NNP IN PRP$ NN IN CD NNS CC CD NNS VBD VBN NNP CD .\nThree security guards jumped overboard shortly after the pirates overtook the vessel .\tCD NN NNS VBD RB RB IN DT NNS VBD DT NN .\nIt was not immediately clear whether a ransom was paid for the release of the ship and its crew .\tPRP VBD RB RB JJ IN DT NN VBD VBN IN DT NN IN DT NN CC PRP$ NN .\nPirates based in Somalia have made the waters off East Africa some of the most dangerous in the world .\tNNS VBN IN NNP VBP VBN DT NNS IN NNP NNP DT IN DT RBS JJ IN DT NN .\nAn international coalition of warships patrols in the area off Somalia to prevent hijackings .\tDT JJ NN IN NNS NNS IN DT NN IN NNP TO VB NNS .\nFormer world indoor triple-jump champion Ashia Hansen of Britain has announced her retirement after failing to recover from a knee injury in time for next month 's Beijing Olympics .\tJJ NN JJ JJ NN NNP NNP IN NNP VBZ VBN PRP$ NN IN VBG TO VB IN DT NN NN IN NN IN JJ NN POS NNP NNPS .\nThe 36-year-old American-born Hansen had been expected to be a gold medal contender at the 2004 Athens Olympics .\tDT JJ JJ NNP VBD VBN VBN TO VB DT NN NN NN IN DT CD NNP NNPS .\nBut she missed those Games after suffering a knee injury at the 2004 European Cup final .\tCC PRP VBD DT NNPS IN VBG DT NN NN IN DT CD JJ NNP JJ .\nHansen set the former indoor world record of 15.16 meters at the European Championships in 1998 .\tNNP VBD DT JJ JJ NN NN IN CD NNS IN DT JJ NNS IN CD .\nShe had hoped to compete at the British Olympic trials in Birmingham this weekend , but decided she was not fit enough to do so .\tPRP VBD VBN TO VB IN DT JJ NNP NNS IN NNP DT NN , CC VBD PRP VBD RB JJ RB TO VB RB .\nHansen said it had become clear to her that she could ' no longer train through the pain of injury ' as she used to .\tNNP VBD PRP VBD VBN JJ TO PRP IN PRP MD `` DT JJR NN IN DT NN IN NN `` IN PRP VBD TO .\nShe added that it was time to take the pressure off herself and that she had few complaints after the achievements in her career .\tPRP VBD IN PRP VBD NN TO VB DT NN IN PRP CC IN PRP VBD JJ NNS IN DT NNS IN PRP$ NN .\nThe Vatican says Pope John Paul 's condition has worsened .\tDT NNP VBZ NNP NNP NNP POS NN VBZ VBN .\nThe Vatican Friday said the pontiff 's breathing has become shallow , he is facing kidney problems , and his respiratory and circulatory difficulties have increased .\tDT NNP NNP VBD DT NN POS NN VBZ VBN JJ , PRP VBZ VBG NN NNS , CC PRP$ JJ CC JJ NNS VBP VBN .\nEarlier , spokesman Joaquin Navarro-Valls said the pope received Vatican officials in his apartment and asked for scriptures to be read .\tRB , NN NNP NNP VBD DT NN VBD NNP NNS IN PRP$ NN CC VBD IN NNS TO VB VBN .\nHe also celebrated Mass .\tPRP RB VBD NNP .\nCardinal Camillo Ruini celebrated a public Mass in Rome Friday for the pope .\tNNP NNP NNP VBD DT JJ NNP IN NNP NNP IN DT NN .\nOfficials Friday also announced the appointment of a number of bishops and other church officials .\tNNS NNP RB VBD DT NN IN DT NN IN NNS CC JJ NN NNS .\nThe Vatican said Thursday the pontiff suffered a ' cardio-circulatory collapse ' after developing a high fever from a urinary tract infection .\tDT NNP VBD NNP DT NN VBD DT `` JJ NN `` IN VBG DT JJ NN IN DT JJ NN NN .\nOfficials said the pope was informed of the gravity of his situation , but wanted to remain at his apartment in the Vatican .\tNNS VBD DT NN VBD VBN IN DT NN IN PRP$ NN , CC VBD TO VB IN PRP$ NN IN DT NNP .\nHe underwent a procedure in February to ease breathing difficulties .\tPRP VBD DT NN IN NNP TO VB NN NNS .\nThe U.S. military in Afghanistan says one of its soldiers , an Afghan serviceman and 11 insurgents were killed in heavy fighting Monday in southern Uruzgan province .\tDT NNP NN IN NNP VBZ CD IN PRP$ NNS , DT JJ NN CC CD NNS VBD VBN IN JJ NN NNP IN JJ NNP NN .\nA military statement described how a group of 15 to 30 militants attacked a coalition patrol with guns , mortars and rocket-propelled grenades .\tDT JJ NN VBD WRB DT NN IN CD TO CD NNS VBD DT NN NN IN NNS , NNS CC JJ NNS .\nIt added that U.S. fighter jets and helicopters responded to the attack and pounded militant positions .\tPRP VBD IN NNP NN NNS CC NNS VBD TO DT NN CC VBN JJ NNS .\nIn addition to those killed , three American troops and an Afghan soldier were wounded .\tIN NN TO DT VBN , CD JJ NNS CC DT JJ NN VBD VBN .\nEight insurgents were captured and a number of weapons seized .\tCD NNS VBD VBN CC DT NN IN NNS VBN .\nAlso today , in Kabul , three Afghan policemen were wounded when a bomb exploded at a checkpoint on a road to the city 's airport .\tRB NN , IN NNP , CD JJ NNS VBD VBN WRB DT NN VBD IN DT NN IN DT NN TO DT NN POS NN .\nAnd , in eastern Khost province , another blast wounded a pro-government Muslim cleric who the day before had spoken out against the ousted Taleban regime in a radio interview .\tCC , IN JJ NNP NN , DT NN VBD DT JJ NNP NN WP DT NN IN VBD VBN RP IN DT JJ NNP NN IN DT NN NN .\nThe Sudanese government says it will stop flying Russian-made Antonov planes over the Darfur region where it has been accused of bombing villages .\tDT JJ NN VBZ PRP MD VB VBG JJ NNP NNS IN DT NNP NN WRB PRP VBZ VBN VBN IN VBG NNS .\nSudan 's Interior Minister Abdel Rahim Hussein told Reuters news agency ( Saturday ) the government would no longer use the aircraft , a move that follows last week 's request by the United Nations .\tNNP POS NNP NNP NNP NNP NNP VBD NNP NN NN LRB NNP RRB DT NN MD RB RB VB DT NN , DT NN WDT VBZ JJ NN POS NN IN DT NNP NNPS .\nTop U.N. envoy Jan Pronk told Sudan 's government that civilians are fleeing their homes and villages whenever the planes fly over , and also fear the Antonovs are being used to coordinate ground attacks with Arab militia .\tJJ NNP NN NNP NNP VBD NNP POS NN IN NNS VBP VBG PRP$ NNS CC NNS WRB DT NNS VBP IN , CC RB VBP DT NNS VBP VBG VBN TO VB NN NNS IN JJ NN .\nGovernment bombers and helicopter gunships have been reported over Darfur in recent weeks .\tNN NNS CC NN NNS VBP VBN VBN IN NNP IN JJ NNS .\nThe Sudanese insist the Antonovs are being used for surveillance , not bombing .\tDT NNS VBP DT NNS VBP VBG VBN IN NN , RB VBG .\nTens of thousands of people have been killed in the western Sudan region while nearly two million people have fled their homes .\tNNS IN NNS IN NNS VBP VBN VBN IN DT JJ NNP NN IN RB CD CD NNS VBP VBN PRP$ NNS .\nBurmese state media say North Korea 's first ambassador to Burma has taken up his post after a diplomatic break of 24 years between the two countries .\tJJ NN NNS VBP NNP NNP POS JJ NN TO NNP VBZ VBN RP PRP$ NN IN DT JJ NN IN CD NNS IN DT CD NNS .\nBurma 's New Light of Myanmar says ties were restored Friday when North Korean Ambassador Kim Sok Chol presented his credentials to Senior General Than Shwe in the administrative capital , Naypyidaw .\tNNP POS NNP NNP IN NNP VBZ NNS VBD VBN NNP WRB NNP JJ NNP NNP NNP NNP VBD PRP$ NNS TO NNP NNP NNP NNP IN DT JJ NN , NNP .\nThe two countries severed ties in 1983 after North Korean agents carried out a bombing in Rangoon that killed more than 20 people during a visit by South Korean President Chun Doo-hwan .\tDT CD NNS VBD NNS IN CD IN JJ JJ NNS VBD RP DT NN IN NNP WDT VBD JJR IN CD NNS IN DT NN IN NNP JJ NNP NNP NNP .\nBurma and North Korea agreed to resume diplomatic relations in April during a visit by North Korean Deputy Foreign Minister Kim Yong Il .\tNNP CC NNP NNP VBD TO VB JJ NNS IN NNP IN DT NN IN NNP JJ NNP NNP NNP NNP NNP NNP .\nDoctors and other trained professionals can face steep challenges when they move to the United States and pursue their careers .\tNNS CC JJ JJ NNS MD VB JJ NNS WRB PRP VBP TO DT NNP NNPS CC VB PRP$ NNS .\nLicense requirements and added education can make it a difficult transition .\tNN NNS CC JJ NN MD VB PRP DT JJ NN .\nVOA 's Brian Wagner reports on a program in Florida that helps immigrant physicians find new careers in U.S. hospitals .\tNNP POS NNP NNP VBZ IN DT NN IN NNP WDT VBZ JJ NNS VBP JJ NNS IN NNP NNS .\nTwo spectators were injured Thursday at a parade in New York when a huge balloon went out of control , knocking part of a lamp post down on the victims .\tCD NNS VBD VBN NNP IN DT NN IN NNP NNP WRB DT JJ NN VBD IN IN NN , VBG NN IN DT NN NN RB IN DT NNS .\nA woman , 26 , and a girl , 11 , were taken to a hospital for treatment .\tDT NN , CD , CC DT NN , CD , VBD VBN TO DT NN IN NN .\nThe wayward balloon was part of the Macy 's Thanksgiving Parade , an American tradition since 1924 .\tDT JJ NN VBD NN IN DT NNP POS NNP NNP , DT JJ NN IN CD .\nThe Macy 's parade features many huge balloons , which are made to resemble cartoon characters and are guided down the streets by dozens of people hanging onto ropes .\tDT NNP POS NN VBZ JJ JJ NNS , WDT VBP VBN TO VB NN NNS CC VBP VBN IN DT NNS IN NNS IN NNS VBG IN NNS .\nIt is the second such recent accident for the parade .\tPRP VBZ DT JJ JJ JJ NN IN DT NN .\nBack in 1997 , a balloon seriously injured a woman when a ' Cat in the Hat ' balloon was caught by high winds and knocked over a lamppost .\tRB IN CD , DT NN RB VBD DT NN WRB DT `` NN IN DT NNP `` NN VBD VBN IN JJ NNS CC VBD IN DT NN .\nFrench Prime Minister Dominique de Villepin has announced he is formally endorsing the presidential bid of his longtime rival , Interior Minister Nicolas Sarkozy .\tJJ NNP NNP NNP NNP NNP VBZ VBN PRP VBZ RB VBG DT JJ NN IN PRP$ JJ NN , NNP NNP NNP NNP .\nThe interior minister is the leader of the conservative ruling party , the Union for a Popular Movement .\tDT JJ NN VBZ DT NN IN DT JJ NN NN , DT NNP IN DT NNP NN .\nMonday 's endorsement of Sarkozy by the prime minister comes a day after President Jacques Chirac announced his retirement .\tNNP POS NN IN NNP IN DT JJ NN VBZ DT NN IN NNP NNP NNP VBD PRP$ NN .\nMr. Chirac has not endorsed a candidate for next month 's election .\tNNP NNP VBZ RB VBN DT NN IN JJ NN POS NN .\nIn addition to Sarkozy , the two other main candidates vying to succeed Mr. Chirac are Socialist leader Segolene Royal and centrist leader Francois Bayrou .\tIN NN TO NNP , DT CD JJ JJ NNS VBG TO VB NNP NNP VBP JJ NN NNP NNP CC JJ NN NNP NNP .\nColombia 's largest rebel group says it will release two hostages on Saturday .\tNNP POS JJS NN NN VBZ PRP MD VB CD NNS IN NNP .\nIn a statement Wednesday , the Revolutionary Armed Forces of Colombia , or FARC , said it will fulfill a promise to release police officers Luis Almanza Patron and Carlos Alberto Logarda .\tIN DT NN NNP , DT NNP NNP NNS IN NNP , CC NNP , VBD PRP MD VB DT NN TO VB NN NNS NNP NNP NNP CC NNP NNP NNP .\nThe statement said the two men will be handed over to the Red Cross and presidential candidate Alvaro Leyva in Putumayo department , near Colombia 's border with Ecuador .\tDT NN VBD DT CD NNS MD VB VBN IN TO DT NNP NNP CC JJ NN NNP NNP IN NNP NN , IN NNP POS NN IN NNP .\nThe police officers were captured in a FARC offensive late last year .\tDT NN NNS VBD VBN IN DT NNP NN RB JJ NN .\nThe rebels also have a group of nearly 60 hostages they want to exchange for hundreds of rebel fighters jailed by Colombian authorities .\tDT NNS RB VBP DT NN IN RB CD NNS PRP VBP TO VB IN NNS IN NN NNS VBN IN JJ NNS .\nBut the administration of President Alvaro Uribe has shown no willingness to make such a swap .\tCC DT NN IN NNP NNP NNP VBZ VBN DT NN TO VB JJ DT NN .\nIsrael 's parliament has approved the government 's plan to withdraw Jewish settlers from the Gaza Strip and northern West Bank .\tNNP POS NN VBZ VBN DT NN POS NN TO VB JJ NNS IN DT NNP NNP CC JJ NNP NNP .\nBy a vote of 59 to 40 , Israeli lawmakers passed a bill Wednesday to compensate the 8,500 settlers who will be affected by Prime Minister Ariel Sharon 's plan .\tIN DT NN IN CD TO CD , JJ NNS VBD DT NN NNP TO VB DT CD NNS WP MD VB VBN IN NNP NNP NNP NNP POS NN .\nLawmakers rejected proposed amendments to call a referendum on the withdrawal and delay evacuation orders .\tNNS VBD VBN NNS TO VB DT NN IN DT NN CC NN NN NNS .\nThe Sharon government hopes to implement its plan by September , over strong opposition from hardline Israeli nationalists .\tDT NNP NN VBZ TO VB PRP$ NN IN NNP , IN JJ NN IN JJ JJ NNS .\nThe plan could still be derailed if the government does not win passage of a state budget by March 31 - a failure that would cause its automatic fall from power .\tDT NN MD RB VB VBN IN DT NN VBZ RB VB NN IN DT NN NN IN NNP CD IN DT NN WDT MD VB PRP$ JJ NN IN NN .\nIn Ramallah Wednesday , Palestinian officials said leader Mahmoud Abbas has formed a new cabinet , with supporters due to take over the interior and foreign ministries .\tIN NNP NNP , JJ NNS VBD NN NNP NNP VBZ VBN DT JJ NN , IN NNS JJ TO VB RP DT NN CC JJ NNS .\nMilitants in Nigeria 's oil-rich Niger Delta region say they have killed three soldiers in a clash near a major natural gas plant .\tNNS IN NNP POS NN NNP NNP NN VBP PRP VBP VBN CD NNS IN DT NN IN DT JJ JJ NN NN .\nThe Movement for the Emancipation of the Niger Delta made the announcement in an e-mail statement Saturday .\tDT NN IN DT NN IN DT NNP NNP VBD DT NN IN DT JJ NN NNP .\nThe group says it seized a military boat as well as weapons and ammunition during Thursday 's encounter .\tDT NN VBZ PRP VBD DT JJ NN RB RB IN NNS CC NN IN NNP POS NN .\nAn Army spokesman says three soldiers went missing near Soku , but says at this time , there is no confirmation of them being killed .\tDT NNP NN VBZ CD NNS VBD VBG IN NNP , CC VBZ IN DT NN , EX VBZ DT NN IN PRP VBG VBN .\nMilitants groups are demanding greater autonomy for the Delta region .\tNNS NNS VBP VBG JJR NN IN DT NNP NN .\nThey have carried out several attacks and kidnapped foreign oil workers in recent months .\tPRP VBP VBN RP JJ NNS CC VBN JJ NN NNS IN JJ NNS .\nMilitants are still holding three hostages , two Americans and a Briton .\tNNS VBP RB VBG CD NNS , CD NNS CC DT NN .\nA human rights group says tens of thousands of women and girls in the eastern part of the Democratic Republic of the Congo have been raped by armed groups on both sides of the conflict .\tDT JJ NNS NN VBZ NNS IN NNS IN NNS CC NNS IN DT JJ NN IN DT JJ NNP IN DT NNP VBP VBN VBN IN JJ NNS IN DT NNS IN DT NN .\nU.S.-based Human Rights Watch says government soldiers and rebel forces have sexually assaulted females on a daily basis since fighting broke out in 1998 .\tJJ NNP NNPS NNP VBZ NN NNS CC JJ NNS VBP RB VBN NNS IN DT JJ NN IN VBG VBN RP IN CD .\nBut the group says only a handful have been prosecuted for the crimes .\tCC DT NN VBZ RB DT NN VBP VBN VBN IN DT NNS .\nHuman Rights Watch says many more incidents of rape have probably gone unreported in the Congo .\tNNP NNP NNP VBZ JJ JJR NNS IN NN VBP RB VBN JJ IN DT NNP .\nWorld oil prices declined slightly Wednesday after the Bush administration said it will release crude oil from a national reserve to ease disruptions caused by Hurricane Katrina .\tNNP NN NNS VBD RB NNP IN DT NNP NN VBD PRP MD VB JJ NN IN DT JJ NN TO VB NNS VBN IN NNP NNP .\nU.S. Energy Secretary Samuel Bodman told television interviewers the oil will be loaned to refiners who need it .\tNNP NNP NNP NNP NNP VBD NN NNS DT NN MD VB VBN TO NNS WP VBP PRP .\nThe U.S. government 's Strategic Petroleum Reserve has nearly 700 million barrels of crude oil in underground salt caverns - enough to meet U.S. demand for about one month .\tDT NNP NN POS NNP NNP NNP VBZ RB CD CD NNS IN JJ NN IN JJ NN NNS IN JJ TO VB NNP NN IN RB CD NN .\nWorld oil prices surged to a record $ 70.85 a barrel Tuesday as investors worried that hurricane damage will curtail U.S. crude oil , gasoline , and heating oil production .\tNNP NN NNS VBD TO DT NN $ CD DT NN NNP IN NNS VBD IN NN NN MD VB NNP JJ NN , NN , CC NN NN NN .\nPrices fell below $ 70 after the announcement .\tNNS VBD RB $ CD IN DT NN .\nThe loan of crude oil will help some refineries continue production .\tDT NN IN JJ NN MD VB DT NNS VBP NN .\nBut analysts say the industry still has to get storm affected refineries back to the work of converting crude oil to gasoline and heating oil .\tCC NNS VBP DT NN RB VBZ TO VB NN VBN NNS RB TO DT NN IN VBG JJ NN TO NN CC NN NN .\nPresident Bush says he would consider using force to press Iran to give up its nuclear program , but only as a last resort .\tNNP NNP VBZ PRP MD VB VBG NN TO VB NNP TO VB RP PRP$ JJ NN , CC RB IN DT JJ NN .\nSpeaking from his Texas ranch in an interview with Israeli television broadcast Saturday , Mr. Bush said the United States and Israel agree that Iran must not be allowed to have a nuclear weapon .\tVBG IN PRP$ NNP NN IN DT NN IN JJ NN NN NNP , NNP NNP VBD DT NNP NNPS CC NNP VBP IN NNP MD RB VB VBN TO VB DT JJ NN .\nWhen asked if that included the use of force , Mr. Bush said ' all options are on the table ' if diplomacy fails .\tWRB VBN IN DT VBD DT NN IN NN , NNP NNP VBD `` DT NNS VBP IN DT NN `` IN NN VBZ .\nIran angered Washington and the European Union by resuming uranium conversion this week after rejecting an EU offer of political and economic incentives in return for giving up its nuclear program .\tNNP VBD NNP CC DT NNP NNP IN VBG NN NN DT NN IN VBG DT NNP NN IN JJ CC JJ NNS IN NN IN VBG RP PRP$ JJ NN .\nTehran says the program is only for peaceful purposes .\tNNP VBZ DT NN VBZ RB IN JJ NNS .\nEurope and the United States have warned they will refer Iran to the U.N. Security Council for possible sanctions if Tehran does not cooperate .\tNNP CC DT NNP NNPS VBP VBN PRP MD VB NNP TO DT NNP NNP NNP IN JJ NNS IN NNP VBZ RB VB .\nSuspected Taleban insurgents have attacked a police post in Afghanistan 's southern Kandahar province , leaving at least four policemen and five militants dead .\tNNP NNP NNS VBP VBN DT NN NN IN NNP POS JJ NNP NN , VBG IN JJS CD NNS CC CD NNS JJ .\nLocal officials say the militants fled after the Monday night clash , which lasted for three hours .\tJJ NNS VBP DT NNS VBD IN DT NNP NN NN , WDT VBD IN CD NNS .\nEarlier , security officials say that suspected Taleban rebels ambushed and killed an Afghan government official in an area bordering Pakistan .\tRB , NN NNS VBP IN JJ NNP NNS VBD CC VBD DT JJ NN NN IN DT NN VBG NNP .\nPolice say the official , Mohammed Zahir , was attacked Tuesday , in the town of Paktia .\tNNS VBP DT NN , NNP NNP , VBD VBN NNP , IN DT NN IN NNP .\nIn the exchange of fire , Zahir and one of the attackers were fatally shot and at least one other militant was wounded .\tIN DT NN IN NN , NNP CC CD IN DT NNS VBD RB VBN CC IN JJS CD JJ NN VBD VBN .\nThe Taleban was ousted from power in Afghanistan by U.S.-led forces in late 2001 .\tDT NNP VBD VBN IN NN IN NNP IN JJ NNS IN JJ CD .\nThe invasion was carried out after the fundamentalist regime refused to hand over al-Qaida leader Osama bin Laden following the September 11th terror attacks on the United States .\tDT NN VBD VBN RP IN DT NN NN VBD TO VB RP NNP NN NNP NNP NNP VBG DT NNP JJ NN NNS IN DT NNP NNPS .\nIsraeli police investigating a money-laundering scheme have arrested 22 employees of the country 's largest bank .\tJJ NN VBG DT JJ NN VBP VBN CD NNS IN DT NN POS JJS NN .\nAuthorities say the employees of Bank Hapoalim helped customers transfer hundreds of millions of dollars without filing the reports required by Israeli law .\tNNS VBP DT NNS IN NNP NNP VBD NNS VB NNS IN NNS IN NNS IN VBG DT NNS VBN IN JJ NN .\nPolice say the arrested employees all worked at the same branch in Tel Aviv .\tNNS VBP DT VBN NNS DT VBD IN DT JJ NN IN NNP NNP .\nWhile no customers have yet been arrested , they say the case involves many individuals and companies overseas .\tIN DT NNS VBP RB VBN VBN , PRP VBP DT NN VBZ JJ NNS CC NNS RB .\nIn a news conference Sunday , France was the only foreign country named by police as working with investigators .\tIN DT NN NN NNP , NNP VBD DT JJ JJ NN VBN IN NNS IN VBG IN NNS .\nAuthorities say their year-long investigation involves 80 bank accounts and 170 customers .\tNNS VBP PRP$ JJ NN VBZ CD NN NNS CC CD NNS .\nA spokesman for Bank Hapoalim said the bank has ordered its employees to cooperate fully with police .\tDT NN IN NNP NNP VBD DT NN VBZ VBN PRP$ NNS TO VB RB IN NNS .\nA United Nations envoy says Mozambique is showing signs of becoming a vibrant economy but still faces humanitarian problems .\tDT NNP NNPS NN VBZ NNP VBZ VBG NNS IN VBG DT JJ NN CC RB VBZ JJ NNS .\nJames Morris told reporters Wednesday that he is impressed by the progress Mozambique has made since 1992 , when rebels signed a peace deal ending 16 years of civil war with the government .\tNNP NNP VBD NNS NNP IN PRP VBZ VBN IN DT NN NNP VBZ VBN IN CD , WRB NNS VBD DT NN NN VBG CD NNS IN JJ NN IN DT NN .\nBut he says the southern African country still faces challenges because of natural disasters , food shortages and rising rates of HIV / AIDS .\tCC PRP VBZ DT JJ JJ NN RB VBZ NNS IN IN JJ NNS , NN NNS CC VBG NNS IN NNP NNP NNP .\nHe says as long as those problems remain , the country 's poorest people will suffer .\tPRP VBZ RB JJ IN DT NNS VBP , DT NN POS JJS NNS MD VB .\nMorris , a U.N. special envoy for humanitarian aid , spoke at the end of a two-day visit to Mozambique .\tNNP , DT NNP JJ NN IN JJ NN , VBD IN DT NN IN DT JJ NN TO NNP .\nMozambique 's economy is growing about 10 percent per year , but natural disasters have left 8,00,000 people in need of food aid .\tNNP POS NN VBZ VBG IN CD NN IN NN , CC JJ NNS VBP VBN CD NNS IN NN IN NN NN .\nA published report says members of the commission that investigated the September 11 terrorist attacks have criticized the federal government for failing to act on many of the panel 's recommendations to prevent another terrorist attack .\tDT JJ NN VBZ NNS IN DT NN WDT VBD DT NNP CD JJ NNS VBP VBN DT JJ NN IN VBG TO VB IN NN IN DT NN POS NNS TO VB DT JJ NN .\nThe New York Times says members of the commission will release new , privately financed report on Thursday that is critical of the Bush administration and Congress .\tDT NNP NNP NNP VBZ NNS IN DT NN MD VB JJ , RB VBN NN IN NNP WDT VBZ JJ IN DT NNP NN CC NNP .\nTimothy Roemer , a former Democratic congressman and a member of the bipartisan panel , is quoted as saying the Federal Bureau of Investigation will be singled out for not carrying out promised reforms .\tNNP NNP , DT JJ JJ NN CC DT NN IN DT JJ NN , VBZ VBN IN VBG DT NNP NNP IN NNP MD VB VBN RP IN RB VBG RP JJ NNS .\nThe Times says the White House is also criticized for not doing enough to defend civil liberties and privacy rights .\tDT NNP VBZ DT NNP NNP VBZ RB VBN IN RB VBG RB TO VB JJ NNS CC NN NNS .\nThe International Monetary Fund has proposed several structural reforms aimed at improving its ability to respond to crises in a rapidly changing global economy .\tDT NNP NNP NNP VBZ VBN JJ JJ NNS VBN IN VBG PRP$ NN TO VB TO NNS IN DT RB VBG JJ NN .\nThe proposed reforms include increasing the voice of emerging market countries in the Fund 's decision-making process .\tDT VBN NNS VBP VBG DT NN IN VBG NN NNS IN DT NNP POS JJ NN .\nThe world 's lender of last resort also agreed to overhaul its economic surveillance mechanism .\tDT NN POS NN IN JJ NN RB VBD TO VB PRP$ JJ NN NN .\nThe change could give the Fund more oversight in exchange-rate policies as well as broader powers in addressing regional trade disputes , such as the massive trade deficit between the United States and Asia .\tDT NN MD VB DT NNP JJR NN IN JJ NNS RB RB IN JJR NNS IN VBG JJ NN NNS , JJ IN DT JJ NN NN IN DT NNP NNPS CC NNP .\nThe IMF 's 184 member countries is finishing spring meetings urging the leadership to develop concrete reform proposals for September 's meeting in Singapore .\tDT NNP POS CD NN NNS VBZ VBG NN NNS VBG DT NN TO VB JJ NN NNS IN NNP POS NN IN NNP .\nOn Friday , the World Bank approved full debt cancellation for some of the world 's poorest countries , including Bolivia , Ethiopia , Nicaragua and Rwanda .\tIN NNP , DT NNP NNP VBD JJ NN NN IN DT IN DT NN POS JJS NNS , VBG NNP , NNP , NNP CC NNP .\nIranian President Mahmoud Ahmadinejad has nominated a veteran executive to head the country 's all-important oil ministry , after his first three nominees failed to gain the backing of parliament .\tJJ NNP NNP NNP VBZ VBN DT NN NN TO VB DT NN POS JJ NN NN , IN PRP$ JJ CD NNS VBD TO VB DT NN IN NN .\nIn a televised session of parliament Sunday , the president named career oil official Kazem Vaziri-Hamaneh to the post .\tIN DT JJ NN IN NN NNP , DT NN VBN NN NN NN NNP NNP TO DT NN .\nLawmakers are to vote on the nominee next week .\tNNS VBP TO VB IN DT NN JJ NN .\nMr. Ahmadinejad 's first three nominees - a politician , a Revolutionary Guards commander and an architect - were widely criticized for their lack of oil experience .\tNNP NNP POS JJ CD NNS IN DT NN , DT JJ NNP NN CC DT NN : VBD RB VBN IN PRP$ NN IN NN NN .\nTwo were rejected by parliament , and a third withdrew his nomination .\tCD VBD VBN IN NN , CC DT NN VBD PRP$ NN .\nAnalysts say the months-long dispute has shaken investor confidence and hurt the Iranian economy , which derives 80 percent of its revenues from oil exports .\tNNS VBP DT JJ NN VBZ VBN NN NN CC VB DT JJ NN , WDT VBZ CD NN IN PRP$ NNS IN NN NNS .\nSwedish police have ordered artist Lars Vilks out of his own home telling him it is no longer safe for him to live there .\tJJ NNS VBP VBN NN NNP NNP IN IN PRP$ JJ NN VBG PRP PRP VBZ RB RB JJ IN PRP TO VB RB .\nThe head of al-Qaida in Iraq , Abu Omar al-Baghdadi , says he will pay as much as $ 1,50,000 to anyone who can kill Vilks because of what he calls offensive pictures of the Muslim Prophet Momammad .\tDT NN IN NNP IN NNP , NNP NNP NNP , VBZ PRP MD VB RB JJ IN $ CD TO DT WP MD VB NNP IN IN WP PRP VBZ JJ NNS IN DT NNP NNP NNP .\nVilks says police have told him that the threats on his life are very serious .\tNNP VBZ NNS VBP VBN PRP IN DT NNS IN PRP$ NN VBP RB JJ .\nHe says he was only allowed to return to his house in Stockholm to pick up a few items .\tPRP VBZ PRP VBD RB VBN TO VB TO PRP$ NN IN NNP TO VB RP DT JJ NNS .\nA Swedish newspaper last month printed Vilks ' cartoon of Mohammad 's head on a dog 's body .\tDT JJ NN JJ NN VBD NNP POS NN IN NNP POS NN IN DT NN POS NN .\nVilks received support of the press freedom group Reporters Without Borders Monday , saying what it calls barbaric fundamentalism can not take away the freedom to draw cartoons .\tNNP VBD NN IN DT NN NN NN VBZ IN NNS NNP , VBG WP PRP VBZ JJ NN MD RB VB RP DT NN TO VB NNS .\nIt says offering a reward for Vilks ' death shows a shocking lack of humanity .\tPRP VBZ VBG DT NN IN NNP POS NN VBZ DT JJ NN IN NN .\nLebanese security officials say Syria has completed the first phase of its troop withdrawal from Lebanon .\tJJ NN NNS VBP NNP VBZ VBN DT JJ NN IN PRP$ NN NN IN NNP .\nThe announcement comes amid U.S. , European and Lebanese opposition demands for an end to Syria 's three-decade military presence in Lebanon .\tDT NN VBZ IN NNP , JJ CC JJ NN NNS IN DT NN TO NNP POS JJ JJ NN IN NNP .\nA senior Lebanese security official told Reuters news agency all Syrian troops and intelligence officers in Lebanon had pulled back either to the Bekaa Valley in eastern Lebanon or had crossed back into Syria .\tDT JJ JJ NN NN VBD NNP NN NN DT JJ NNS CC NN NNS IN NNP VBD VBN RB RB TO DT NNP NNP IN JJ NNP CC VBD VBN RB IN NNP .\nSyria began the re-deployment of its 14-thousand troops in Lebanon on March 8th , after coming under international pressure to withdraw following the February 14th assassination of former prime minister Rafik Hariri in Beirut .\tNNP VBD DT NN IN PRP$ JJ NNS IN NNP IN NNP CD , IN VBG IN JJ NN TO VB VBG DT NNP JJ NN IN JJ JJ NN NNP NNP IN NNP .\nMeanwhile , a top Lebanese security chief says he and other security officials are willing to stand trial to clear them of any allegations of involvement in the assassination .\tRB , DT JJ JJ NN NN VBZ PRP CC JJ NN NNS VBP JJ TO VB NN TO VB PRP IN DT NNS IN NN IN DT NN .\nThe United Nations counter-narcotics chief says Afghanistan has reduced the production and cultivation of opium for the first time since the Taleban regime fell in 2001 .\tDT NNP NNP NNS NN VBZ NNP VBZ VBN DT NN CC NN IN NN IN DT JJ NN IN DT NNP NN VBD IN CD .\nAntonio Maria Costa says land devoted to growing opium poppies was down 21 percent over the past year .\tNNP NNP NNP VBZ NN VBN TO VBG NN NNS VBD RB CD NN IN DT JJ NN .\nBut good weather made remaining fields more bountiful , and the harvest declined just 2.4 percent .\tCC JJ NN VBD VBG NNS RBR JJ , CC DT NN VBD RB CD NN .\nThe UN officials says he is pleased to credit the drop to farmers ' restraint - a crucial element in controlling the drug production and trafficking problem .\tDT NNP NNS VBZ PRP VBZ JJ TO VB DT NN TO NNS POS NN IN DT JJ NN IN VBG DT NN NN CC NN NN .\nBut he says Afghanistan remains the world 's biggest producer of opium , the basis of heroin .\tCC PRP VBZ NNP VBZ DT NN POS JJS NN IN NN , DT NN IN NN .\nAfter US-led forces toppled the fundamentalist Taleban nearly four years ago , opium production in Afghanistan surged .\tIN JJ NNS VBD DT NN NNP RB CD NNS RB , NN NN IN NNP VBD .\nThe international community has donated millions of dollars for drug eradication efforts .\tDT JJ NN VBZ VBN NNS IN NNS IN NN NN NNS .\nSouth Africa says two of its citizens were abducted this week in Nigeria 's volatile , oil-rich Niger Delta region .\tNNP NNP VBZ CD IN PRP$ NNS VBD VBN DT NN IN NNP POS JJ , JJ NNP NNP NN .\nThe South African Foreign Affairs Ministry says its officials in Nigeria are doing everything they can to secure the hostages ' release .\tDT NNP NNP NNP NNP NNP VBZ PRP$ NNS IN NNP VBP VBG DT PRP MD TO VB DT NNS POS NN .\nIt says the victims were kidnapped Tuesday .\tPRP VBZ DT NNS VBD VBN NNP .\nIt is not clear who carried out the abduction .\tPRP VBZ RB JJ WP VBD RP DT NN .\nGunmen in the Niger Delta regularly attack oil company facilities and kidnap their staff .\tNNS IN DT NNP NNP RB VBP NN NN NNS CC VBP PRP$ NN .\nMost hostages are released unharmed .\tJJS NNS VBP VBN JJ .\nSome attackers are militants who say they are fighting so the region 's impoverished residents get a greater share of the oil wealth .\tDT NNS VBP NNS WP VBP PRP VBP VBG IN DT NN POS JJ NNS VBP DT JJR NN IN DT NN NN .\nOthers are gangs motivated by the ransom companies pay for the hostages .\tNNS VBP NNS VBN IN DT NN NNS VBP IN DT NNS .\nA surge in the unrest that began in late 2005 has resulted in Nigeria 's oil production dropping by about 25 percent .\tDT NN IN DT NN WDT VBD IN JJ CD VBZ VBN IN NNP POS NN NN VBG IN IN CD NN .\nNigeria 's former education minister and six legislators have been charged in one of the country 's most serious cases of high-level corruption .\tNNP POS JJ NN NN CC CD NNS VBP VBN VBN IN CD IN DT NN POS RBS JJ NNS IN JJ NN .\nAll seven were charged in the High Court in Abuja with a string of offenses related to giving and receiving bribes .\tDT CD VBD VBN IN DT NNP NNP IN NNP IN DT NN IN NNS VBN TO VBG CC VBG NNS .\nThey all pleaded not guilty .\tPRP DT VBD RB JJ .\nFormer education minister Fabian Osuji is accused of paying legislators , including then Senate President Adolphus Wabara , $ 4,00,000 to approve an inflated budget .\tJJ NN NN NNP NNP VBZ VBN IN VBG NNS , VBG RB NNP NNP NNP NNP , $ CD TO VB DT JJ NN .\nMr. Osuji has admitted to paying the money .\tNNP NNP VBZ VBN TO VBG DT NN .\nHe was fired last month by President Olusegun Obasanjo during a televised address to the nation .\tPRP VBD VBN JJ NN IN NNP NNP NNP IN DT JJ NN TO DT NN .\nLast week , the senate president resigned his post - the third highest ranking position in Nigeria 's government .\tJJ NN , DT NN NN VBD PRP$ NN IN DT JJ JJS JJ NN IN NNP POS NN .\nIsraeli Prime Minister Ariel Sharon says his country could eventually remove more West Bank settlements than originally planned .\tJJ NNP NNP NNP NNP VBZ PRP$ NN MD RB VB JJR NNP NNP NNS IN RB VBN .\nIn an interview published Friday in Israeli newspaper Yediot Ahronot , Mr. Sharon was asked whether Israel would pull out of several small West Bank settlements in addition to the four already slated for withdrawal .\tIN DT NN VBN NNP IN JJ NN NNP NNP , NNP NNP VBD VBN IN NNP MD VB IN IN JJ JJ NNP NNP NNS IN NN TO DT CD RB VBN IN NN .\nHe responded that not everything would remain and said the issue would be raised during final status negotiations with the Palestinians .\tPRP VBD IN RB DT MD VB CC VBD DT NN MD VB VBN IN JJ NN NNS IN DT NNS .\nHe added that he has no regrets about his plan to evacuate about 8,500 Jewish settlers from 21 settlements in the Gaza Strip beginning Wednesday , despite fierce internal opposition .\tPRP VBD IN PRP VBZ DT NNS IN PRP$ NN TO VB IN CD JJ NNS IN CD NNS IN DT NNP NNP VBG NNP , IN JJ JJ NN .\nSeparately , the militant Palestinian group Hamas says it will not surrender weapons to the Palestinian Authority after Israel 's withdrawal , because its resistance against Israel 's occupation of Palestinian lands continues .\tRB , DT JJ JJ NN NNP VBZ PRP MD RB VB NNS TO DT JJ NNP IN NNP POS NN , IN PRP$ NN IN NNP POS NN IN JJ NNS VBZ .\nOPEC 's president Sheikh Ahmad Fahd al-Sabah , who is also Kuwait 's energy minister , said Monday the cartel will pump an extra 5,00,000 barrels a day in May to calm supply fears .\tNNP POS NN NNP NNP NNP NNP , WP VBZ RB NNP POS NN NN , VBD NNP DT NN MD VB DT JJ CD NNS DT NN IN NNP TO VB NN NNS .\nOver the weekend , the Group of Seven Industrialized nations - comprising the United States , Japan , Germany , France , Britain , Italy , and Canada - asked OPEC to lower prices by increasing output .\tIN DT NN , DT NNP IN CD VBN NNS IN VBG DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , CC NNP : VBD NNP TO VB NNS IN VBG NN .\nLast month , the Organization of the Petroleum Exporting Countries boosted its production quota by 5,00,000 barrels a day to 27.5 million barrels .\tJJ NN , DT NNP IN DT NNP NNP NNPS VBD PRP$ NN NN IN CD NNS DT NN TO CD CD NNS .\nOPEC 's 11 members supply nearly 40 percent of the world 's crude oil .\tNNP POS CD NNS VBP RB CD NN IN DT NN POS JJ NN .\nIn Monday 's trading , crude oil for May delivery rose 41 cents to $ 50.9 a barrel on the New York Mercantile Exchange .\tIN NNP POS NN , JJ NN IN NNP NN VBD CD NNS TO $ CD DT NN IN DT NNP NNP NNP NNP .\nPrices remain about 30 percent higher than a year ago .\tNNS VBP IN CD NN JJR IN DT NN RB .\nBritish Prime Minister Tony Blair says he has not ruled out eventually holding an official inquiry into Britain 's role in the war in Iraq , but he said now is not the time .\tJJ NNP NNP NNP NNP VBZ PRP VBZ RB VBN IN RB VBG DT JJ NN IN NNP POS NN IN DT NN IN NNP , CC PRP VBD RB VBZ RB DT NN .\nMr. Blair spoke just hours after his government narrowly defeated a parliamentary motion calling for an immediate inquiry into Britain 's involvement in the war .\tNNP NNP VBD RB NNS IN PRP$ NN RB VBD DT JJ NN VBG IN DT JJ NN IN NNP POS NN IN DT NN .\nAt his weekly question and answer session in parliament Wednesday , the prime minister said an immediate inquiry would send an unwelcome signal to coalition allies and ' dismay ' the Baghdad government .\tIN PRP$ JJ NN CC NN NN IN NN NNP , DT JJ NN VBD DT JJ NN MD VB DT JJ NN TO NN NNS CC `` VB `` DT NNP NN .\nLate Tuesday , lawmakers voted against the proposed inquiry 298 to 273 , with 12 members of Mr. Blair 's Labor Party voting in favor .\tRB NNP , NNS VBD IN DT VBN NN CD TO CD , IN CD NNS IN NNP NNP POS NNP NNP NN IN NN .\nWelsh and Scottish nationalist parties proposed the motion in light of deteriorating security and growing sectarian violence in Iraq .\tJJ CC JJ NN NNS VBD DT NN IN NN IN VBG NN CC VBG JJ NN IN NNP .\nA U.S. military court has convicted an Army sergeant of murdering two of his comrades and wounding 14 others in a grenade and rifle attack two years ago in Kuwait .\tDT NNP JJ NN VBZ VBN DT NNP NN IN VBG CD IN PRP$ NNS CC VBG CD NNS IN DT NN CC NN NN CD NNS RB IN NNP .\nA military jury in Fort Bragg , North Carolina Thursday found Sergeant Hasan Akbar , a member of the Army 's 101st Airborne Division , guilty of ambushing the troops as they slept in tents at the start of the Iraq war .\tDT JJ NN IN NNP NNP , NNP NNP NNP VBD NNP NNP NNP , DT NN IN DT NNP POS CD NNP NNP , NN IN VBG DT NNS IN PRP VBD IN NNS IN DT NN IN DT NNP NN .\nSergeant Akbar faces a possible death sentence .\tNNP NNP VBZ DT JJ NN NN .\nIf condemned to death , he would become the first soldier to be executed in more than 40 years .\tIN VBN TO NN , PRP MD VB DT JJ NN TO VB VBN IN JJR IN CD NNS .\nHis military lawyers claimed that constant ridicule over his being a black Muslim caused him to snap , triggering the attack .\tPRP$ JJ NNS VBD IN JJ NN IN PRP$ VBG DT JJ NN VBD PRP TO VB , VBG DT NN .\nThe trial 's sentencing phase is scheduled to begin Monday .\tDT NN POS NN NN VBZ VBN TO VB NNP .\nAmerican pop star Madonna has visited an orphanage in Malawi for children who have lost their parents to the AIDS epidemic .\tJJ NN NN NNP VBZ VBN DT NN IN NNP IN NNS WP VBP VBN PRP$ NNS TO DT NNP NN .\nSeveral orphans sang to the music star at the home near the city of Blantyre Thursday .\tJJ NNS VBD TO DT NN NN IN DT NN IN DT NN IN NNP NNP .\nMadonna handed out copies of her children 's book , The English Roses , which had been translated into Malawi 's main language .\tNNP VBD RP NNS IN PRP$ NNS POS NN , DT NNP NNPS , WDT VBD VBN VBN IN NNP POS JJ NN .\nThe singer arrived in the southern African country on Wednesday , in part to inspect a large orphan care center she is funding near the capital , Lilongwe .\tDT NN VBD IN DT JJ JJ NN IN NNP , IN NN TO VB DT JJ NN NN NN PRP VBZ VBG IN DT NN , NNP .\nGovernment officials have said Madonna also is using the trip to adopt a boy from Malawi .\tNN NNS VBP VBN NNP RB VBZ VBG DT NN TO VB DT NN IN NNP .\nBut a spokesperson for Madonna , Liz Rosenberg , denied the reports .\tCC DT NN IN NNP , NNP NNP , VBD DT NNS .\nShe added the singer hopes publicity surrounding her trip will draw attention to the plight of Malawi 's estimated one million AIDS orphans .\tPRP VBD DT NN VBZ NN VBG PRP$ NN MD VB NN TO DT NN IN NNP POS VBN CD CD NNP NNS .\nVenezuelan President Hugo Chavez and Cuban leader Fidel Castro have strongly criticized the U.S.-backed Free Trade Area of the Americas as a plan by Washington to dominate Latin America .\tJJ NNP NNP NNP CC JJ NN NNP NNP VBP RB VBN DT JJ NNP NNP NNP IN DT NNPS IN DT NN IN NNP TO VB NNP NNP .\nDuring a rally in Havana Friday at the end of a three-day visit to Cuba , Mr. Chavez called on regional governments to instead join the Bolivarian Alternative for the Americas - a competing plan he introduced last year .\tIN DT NN IN NNP NNP IN DT NN IN DT JJ NN TO NNP , NNP NNP VBD IN JJ NNS TO RB VB DT NNP NNP IN DT NNPS IN DT VBG NN PRP VBD JJ NN .\nSo far , Cuba is the only country to join the Venezuelan leader 's socialist alternative to the U.S.-backed plan , which was to begin in January , but has yet to be finalized .\tRB RB , NNP VBZ DT JJ NN TO VB DT JJ NN POS JJ NN TO DT JJ NN , WDT VBD TO VB IN NNP , CC VBZ RB TO VB VBN .\nThe Cuban and Venezuelan leaders announced new bilateral trade agreements on Friday , including Cuba 's plan to buy $ 412 million worth of goods from Venezuela , which provides inexpensive oil and other subsidies to communist Cuba .\tDT JJ CC JJ NNS VBD JJ JJ NN NNS IN NNP , VBG NNP POS NN TO VB $ CD CD NN IN NNS IN NNP , WDT VBZ JJ NN CC JJ NNS TO JJ NNP .\nA United Nations war crimes court has increased a Roman Catholic priest 's sentence to life imprisonment for his role in Rwanda 's 1994 genocide .\tDT NNP NNPS NN NNS NN VBZ VBN DT NNP NNP NN POS NN TO NN NN IN PRP$ NN IN NNP POS CD NN .\nAn appeals court for the International Criminal Court for Rwanda ruled Wednesday that an original sentence for Father Athanase Seromba of 15 years in prison was too lenient .\tDT NNS NN IN DT NNP NNP NNP IN NNP VBD NNP IN DT JJ NN IN NNP NNP NNP IN CD NNS IN NN VBD RB JJ .\nThe priest was convicted by the court in 2006 on charges of genocide and extermination .\tDT NN VBD VBN IN DT NN IN CD IN NNS IN NN CC NN .\nProsecutors say the priest helped to orchestrate the slaughter of 2,000 ethnic Tutsis who sought shelter at his parish church .\tNNS VBP DT NN VBD TO VB DT NN IN CD JJ NN WP VBD NN IN PRP$ JJ NN .\nWitnesses say the priest ordered militias to demolish the crowded church with bulldozers , and to kill anyone who survived the church 's collapse .\tNNS VBP DT NN VBD NNS TO VB DT JJ NN IN NNS , CC TO VB DT WP VBD DT NN POS NN .\nDuring Rwanda 's 1994 genocide , Hutu extremists killed an estimated 8,00,000 minority Tutsis and Hutu moderates during the span of 100 days .\tIN NNP POS CD NN , NNP NNS VBD DT VBN CD NN NN CC NNP NNS IN DT NN IN CD NNS .\nIndian officials say four chickens have tested positive for the H5 bird flu virus in western India , but it was unclear whether they had the deadly H5N1 strain .\tJJ NNS VBP CD NNS VBP VBN JJ IN DT NNP NN NN NN IN JJ NNP , CC PRP VBD JJ IN PRP VBD DT JJ NNP NN .\nThe outbreak is in the state of Maharashtra , the scene of India 's first outbreak of bird flu last month .\tDT NN VBZ IN DT NN IN NNP , DT NN IN NNP POS JJ NN IN NN NN JJ NN .\nOfficials say four villages in Jalgaon district in the northern part of the state were affected by the latest outbreak .\tNNS VBP CD NNS IN NNP NN IN DT JJ NN IN DT NN VBD VBN IN DT JJS NN .\nJalgaon is one district away from Nandurbar , where India reported the deadly H5N1 strain of bird flu last month .\tNNP VBZ CD NN RB IN NNP , WRB NNP VBD DT JJ NNP NN IN NN NN JJ NN .\nHundreds of thousands of chickens were destroyed in the town of Navapur and neighboring areas after that outbreak , and last week authorities said they had contained the virus there .\tNNS IN NNS IN NNS VBD VBN IN DT NN IN NNP CC JJ NNS IN DT NN , CC JJ NN NNS VBD PRP VBD VBN DT NN RB .\nOfficials say chickens in the Jalgaon area will also be culled .\tNNS VBP NNS IN DT NNP NN MD RB VB VBN .\nA private Chinese company plans to build the country 's first oil pipeline to Russia .\tDT JJ JJ NN VBZ TO VB DT NN POS JJ NN NN TO NNP .\nChinese state media say the planned 30-kilometer project announced Wednesday will link railway lines between Heihe in China 's northeast Heilongjiang province and the eastern Russian city of Blagoveshchensk .\tJJ NN NNS VBP DT JJ JJ NN VBN NNP MD VB NN NNS IN NNP IN NNP POS NN NNP NN CC DT JJ JJ NN IN NNP .\nThe two cities are the closest along the borders of the two countries , separated by the Heilongjiang River in China - known as the Amur River in Russia .\tDT CD NNS VBP DT JJS IN DT NNS IN DT CD NNS , VBN IN DT NNP NNP IN NNP : VBN IN DT NNP NNP IN NNP .\nThe $ 64 million project is expected to be operational in September 2006 , and will carry 21 million barrels of oil per year .\tDT $ CD CD NN VBZ VBN TO VB JJ IN NNP CD , CC MD VB CD CD NNS IN NN IN NN .\nIt is the latest project to help Beijing as it looks for alternatives to Middle East oil .\tPRP VBZ DT JJS NN TO VB NNP IN PRP VBZ IN NNS TO NNP NNP NN .\nPolish President Lech Kaczynski has invited his Russian counterpart Dmitri Medvedev to this month 's 65th anniversary of the liberation of the Nazi death camp , Auschwitz .\tJJ NNP NNP NNP VBZ VBN PRP$ JJ NN NNP NNP TO DT NN POS JJ NN IN DT NN IN DT NNP NN NN , NNP .\nPresident Kaczynski 's office confirmed the invitation in a statement on his Web site .\tNNP NNP POS NN VBD DT NN IN DT NN IN PRP$ NNP NN .\nThe move is being seen as an effort to improve ties with Russia .\tDT NN VBZ VBG VBN IN DT NN TO VB NNS IN NNP .\nMore than one million people died at the Auschwitz camp in southern Poland - most of them Jews - before it was liberated by Soviet troops on January 27 , 1945 .\tJJR IN CD CD NNS VBD IN DT NNP NN IN JJ NNP IN JJS IN PRP NNPS : IN PRP VBD VBN IN JJ NNS IN NNP CD , CD .\nThe camp was part of a network set up by Nazi Germany during World War II to exterminate Jews and anyone else it considered undesirable .\tDT NN VBD NN IN DT NN VBN RP IN NNP NNP IN NNP NNP NNP TO VB NNPS CC DT RB PRP VBD JJ .\nThe anniversary commemoration at the camp site , which is now a museum , is expected to draw a range of foreign officials .\tDT NN NN IN DT NN NN , WDT VBZ RB DT NN , VBZ VBN TO VB DT NN IN JJ NNS .\nTaiwan President Chen Shui-bian briefly joined a massive rally Saturday in Taipei to protest China 's threat to use force against the island if it formally declares independence .\tNNP NNP NNP NNP NN VBD DT JJ NN NNP IN NNP TO VB NNP POS NN TO VB NN IN DT NN IN PRP RB VBZ NN .\nSpeaking to more than 1,00,000 protesters , Mr. Chen told the crowd that Taiwan is an independent , sovereign state .\tVBG TO JJR IN CD NNS , NNP NNP VBD DT NN IN NNP VBZ DT JJ , JJ NN .\nHe said the island 's future should not be decided by China .\tPRP VBD DT NN POS NN MD RB VB VBN IN NNP .\nDemonstrators chanted slogans such as ' Loving Peace , Opposing Missiles , ' and ' Oppose Annexation . '\tNNS VBD NNS JJ IN `` VBG NN , VBG NNP , `` CC `` VB NN . ``\nThe rally comes amid this week 's one-year anniversary of China 's approval of an anti-secession law .\tDT NN VBZ IN DT NN POS JJ NN IN NNP POS NN IN DT JJ NN .\nThe law says China will employ ' non-peaceful means ' to prevent Taiwan 's independence if efforts at peaceful reunification fail .\tDT NN VBZ NNP MD VB `` JJ NNS `` TO VB NNP POS NN IN NNS IN JJ NN VBP .\nMr. Chen angered Beijing last month when he decided to stop funding a unification council and scrap guidelines for reunification with China .\tNNP NNP VBD NNP JJ NN WRB PRP VBD TO VB VBG DT NN NN CC NN NNS IN NN IN NNP .\nChina and Taiwan split in 1949 after a civil war , but Beijing considers Taiwan a renegade province .\tNNP CC NNP NN IN CD IN DT JJ NN , CC NNP VBZ NNP DT NN NN .\nIsrael forces say they killed a Palestinian militant in the Gaza Strip during a gunbattle early Friday .\tNNP NNS VBP PRP VBD DT JJ NN IN DT NNP NNP IN DT NN JJ NNP .\nThe army says three Palestinians began firing missiles and small arms at Israeli soldiers from an abandoned building near the Gaza settlement of Kfar Darom .\tDT NN VBZ CD NNS VBD VBG NNS CC JJ NNS IN JJ NNS IN DT JJ NN IN DT NNP NN IN NNP NNP .\nAs Israeli forces returned fire , two of the militants escaped , but an army spokesman says the third man was killed .\tIN JJ NNS VBD NN , CD IN DT NNS VBD , CC DT NN NN VBZ DT JJ NN VBD VBN .\nThree militant groups , Hamas , the Popular Resistance Committees and the Al-Aqsa Martyrs ' Brigade , say they were involved in the attempt to infiltrate the Jewish settlement .\tCD JJ NNS , NNP , DT NNP NNP NNS CC DT NNP NNPS POS NN , VBP PRP VBD VBN IN DT NN TO VB DT JJ NN .\nToday 's clash further strained a shaky three-month cease-fire .\tNN POS NN RB VBD DT JJ JJ NN .\nHamas and the Al-Aqsa Martyrs ' Brigade have pledged to respect the truce , but both groups say they are determined to avenge Israel 's recent military actions in Gaza .\tNNP CC DT NNP NNP POS NNP VBP VBN TO VB DT NN , CC DT NNS VBP PRP VBP VBN TO VB NNP POS JJ JJ NNS IN NNP .\nThe Israeli military has been ordered Thursday to use all means necessary to suppress Gaza militants ' attacks on Jewish targets .\tDT JJ NN VBZ VBN VBN NNP TO VB DT NNS JJ TO VB NNP NNS POS NNS IN JJ NNS .\nU.S. officials in Afghanistan say a member of a Special Operations team missing since Tuesday has been rescued in the eastern part of the country .\tNNP NNS IN NNP VBP DT NN IN DT JJ NNP NN VBG IN NNP VBZ VBN VBN IN DT JJ NN IN DT NN .\nDefense Department officials say he is a member of the elite Navy Seals .\tNNP NNP NNS VBP PRP VBZ DT NN IN DT JJ NNP NNS .\nThe sailor was wounded , but evaded the enemy until his rescue on Sunday .\tDT NN VBD VBN , CC VBD DT NN IN PRP$ NN IN NNP .\nHe has been flown to a U.S. military hospital in Germany .\tPRP VBZ VBN VBN TO DT NNP JJ NN IN NNP .\nThree other members of his Navy Seals team are still missing .\tCD JJ NNS IN PRP$ NNP NNPS NN VBP RB VBG .\nU.S. and Afghan troops are scouring the mountainous region in Kunar province looking for them .\tNNP CC JJ NNS VBP VBG DT JJ NN IN NNP NN VBG IN PRP .\nThe Navy commandos went missing Tuesday after calling for help during a battle with insurgents while on a reconnaissance mission .\tDT NNP NNS VBD VBG NNP IN VBG IN NN IN DT NN IN NNS IN IN DT NN NN .\nThe U.S. military helicopter sent to rescue them was shot down by suspected Taleban militants , killing all 16 U.S. service members aboard .\tDT NNP NN NN VBN TO VB PRP VBD VBN RB IN JJ NNP NNS , VBG DT CD NNP NN NNS RB .\nPope Benedict XVI waves from his studio 's window overlooking St. Peter 's Square during the Angelus prayer\tNNP NNP NNP VBZ IN PRP$ NN POS NN VBG NNP NNP POS NNP IN DT NNP NN\nPope Benedict has called on the terrorists responsible for last week 's London bombings to , in his words , ' stop in the name of God . '\tNNP NNP VBZ VBN IN DT NNS JJ IN JJ NN POS NNP NNS TO , IN PRP$ NNS , `` NN IN DT NN IN NNP . ``\nSpeaking at the Vatican Sunday , the pontiff urged the faithful to pray not only for the London victims and their families , but also for the attackers .\tVBG IN DT NNP NNP , DT NN VBD DT NN TO VB RB RB IN DT NNP NNS CC PRP$ NNS , CC RB IN DT NNS .\nThe pope said he hopes God will touch their hearts .\tDT NN VBD PRP VBZ NNP MD VB PRP$ NNS .\nIn comments directed at the terrorists , Benedict said , ' God loves life , which he created , not death . '\tIN NNS VBN IN DT NNS , NNP VBD , `` NNP VBZ NN , WDT PRP VBD , RB NN . ``\nBenedict made his plea following his weekly blessing in St. Peter 's Square .\tNNP VBD PRP$ NN VBG PRP$ JJ NN IN NNP NNP POS NNP .\nOn the day of the London transport system bombings , the German-born pope condemned the attacks as ' barbaric acts against humanity . '\tIN DT NN IN DT NNP NN NN NNS , DT JJ NN VBD DT NNS IN `` JJ NNS IN NN . ``\nIran 's president says Tehran will never abandon its nuclear activities , but will continue talks , for now , on its nuclear program with the European Union and the International Atomic Energy Agency .\tNNP POS NN VBZ NNP MD RB VB PRP$ JJ NNS , CC MD VB NNS , IN RB , IN PRP$ JJ NN IN DT NNP NNP CC DT NNP NNP NNP NNP .\nIn an interview with a French newspaper , Le Figaro , President Mohammed Khatami said Iran is ready to consider any reasonable solution , but will not suspend its nuclear activities permanently .\tIN DT NN IN DT JJ NN , NNP NNP , NNP NNP NNP VBD NNP VBZ JJ TO VB DT JJ NN , CC MD RB VB PRP$ JJ NNS RB .\nHe said the Europeans must understand that the Nuclear Non-Proliferation Treaty and other international agreements allow Iran to develop nuclear technology for peaceful purposes .\tPRP VBD DT NNS MD VB IN DT NNP NNP NNP CC JJ JJ NNS VBP NNP TO VB JJ NN IN JJ NNS .\nFrance , Germany and Britain , with U.S. support , are offering Iran economic incentives in exchange for its suspension of uranium enrichment activity .\tNNP , NNP CC NNP , IN NNP NN , VBP VBG NNP JJ NNS IN NN IN PRP$ NN IN NN NN NN .\nThe enrichment process , which makes fuel for civilian reactors , can also be used to make weapons grade material .\tDT NN NN , WDT VBZ NN IN JJ NNS , MD RB VB VBN TO VB NNS NN NN .\nThe United States accuses Iran of secretly trying to develop nuclear weapons .\tDT NNP NNPS VBZ NNP IN RB VBG TO VB JJ NNS .\nIran denies the charge .\tNNP VBZ DT NN .\nKevin Costner is suing a music promoter , alleging the company breached a contract to back his fledgling music career .\tNNP NNP VBZ VBG DT NN NN , VBG DT NN VBD DT NN TO VB PRP$ NN NN NN .\nThe 52-year-old movie actor-turned-musician filed an April 3 lawsuit against Mahee Worldwide Ventures Inc. , accusing it of fraud and breach of contract .\tDT JJ NN NN VBD DT NNP CD NN IN NNP NNP NNP NNP , VBG PRP IN NN CC NN IN NN .\nCostner is seeking damages in excess of $ 8.5 million .\tNNP VBZ VBG NNS IN NN IN $ CD CD .\nKevin Costner is the lead singer and songwriter for the Kevin Costner Band .\tNNP NNP VBZ DT NN NN CC NN IN DT NNP NNP NNP .\nThe lawsuit claims Costner 's music company , Kevin 's Music LLC , entered into a two-year agreement with Mahee Worldwide Ventures which would allow the band to perform as many as five concerts annually .\tDT NN VBZ NNP POS NN NN , NNP POS NNP NNP , VBD IN DT JJ NN IN NNP NNP NNP WDT MD VB DT NN TO VB RB JJ IN CD NNS RB .\nMahee would also create and maintain a Web site marketing Costner 's band .\tNNP MD RB VB CC VB DT NNP NN VBG NNP POS NN .\nThe suit claims Mahee reneged on all its agreements .\tDT NN VBZ NNP VBD IN DT PRP$ NNS .\nMahee Worldwide Ventures has not responded to requests for comment .\tNNP NNP NNP VBZ RB VBN TO NNS IN NN .\nThe International Monetary Fund says Haiti qualifies for partial cancellation of its debt .\tDT NNP NNP NNP VBZ NNP VBZ IN JJ NN IN PRP$ NN .\nTakatoshi Kato , the IMF 's deputy managing director , said Tuesday that Haiti has an unsustainable amount of debt and therefore is eligible for assistance under the Highly Indebted Poor Countries Initiative .\tNNP NNP , DT NNP POS NN NN NN , VBD NNP IN NNP VBZ DT JJ NN IN NN CC RB VBZ JJ IN NN IN DT NNP NNP NNP NNPS NNP .\nThe impoverished country is struggling to manage roughly $ 1 billion in debt .\tDT JJ NN VBZ VBG TO VB RB $ CD CD IN NN .\nThe Fund said in July that under the IMF-World Bank initiative , Haiti could receive up to $ 14 million in credit in the first year and possibly additional contributions of $ 22 million .\tDT NNP VBD IN NNP WDT IN DT NNP NNP NN , NNP MD VB RP TO $ CD CD IN NN IN DT JJ NN CC RB JJ NNS IN $ CD CD .\nKato said the IMF welcomes the Haitian government 's commitment to policies aimed at sustaining macroeconomic stability .\tNNP VBD DT NNP VBZ DT JJ NN POS NN TO NNS VBN IN VBG JJ NN .\nBut , he said Haiti needs continued financial support from the international community as the country faces challenges in the areas of security , social conditions and sustained income growth .\tCC , PRP VBD NNP VBZ JJ JJ NN IN DT JJ NN IN DT NN VBZ NNS IN DT NNS IN NN , JJ NNS CC JJ NN NN .\nA Moroccan court has sentenced to death two radical Islamists convicted of leading a terror cell .\tDT JJ NN VBZ VBN TO NN CD JJ NNS VBN IN VBG DT NN NN .\nProsecutors say the two , Toufik Hanouichi and Mohcine Bouarfa , led a group that killed several Moroccans , including a Moroccan Jew .\tNNS VBP DT CD , NNP NNP CC NNP NNP , VBD DT NN WDT VBD JJ NNS , VBG DT JJ NN .\nFour people arrested with them were given life sentences .\tCD NNS VBN IN PRP VBD VBN NN NNS .\nAnother 31 cell members were given prison terms of one to 20 years , and nine were acquitted .\tDT CD NN NNS VBD VBN NN NNS IN CD CC CD NNS , CC CD VBD VBN .\nMost of the terror cell members were arrested in January , 2004 , during a massive police operation in the towns of Meknes and Fez .\tJJS IN DT NN NN NNS VBD VBN IN NNP , CD , IN DT JJ NN NN IN DT NNS IN NNP CC NNP .\nMorocco has not carried out a death sentence in more than a decade .\tNNP VBZ RB VBN IN DT NN NN IN JJR IN DT NN .\nPakistani President Pervez Musharraf says India will allow leaders of Kashmir 's main separatist political alliance to visit Pakistan for talks on the disputed region 's future .\tJJ NNP NNP NNP VBZ NNP MD VB NNS IN NNP POS JJ JJ JJ NN TO VB NNP IN NNS IN DT JJ NN POS NN .\nPakistan has invited an alliance of about two dozen Kashmiri separatist groups known as the All Parties Hurriyat Conference to visit on June 2 .\tNNP VBZ VBN DT NN IN IN CD NN JJ JJ NNS VBN IN DT NNP NNP NNP NNP TO VB IN NNP CD .\nIndia has previously denied permission to Hurriyat leaders to visit Pakistan , saying the Kashmir dispute is India 's internal matter .\tNNP VBZ RB VBN NN TO VB NNS TO VB NNP , VBG DT NNP NN VBZ NNP POS JJ NN .\nBut in an interview with the Daily Times published Tuesday , General Musharraf speaks of a breakthrough , saying this time Prime Minister Manmohan Singh has allowed Hurriyat leaders to travel to Pakistan .\tCC IN DT NN IN DT NNP NNP VBN NNP , NNP NNP VBZ IN DT NN , VBG DT NN NNP NNP NNP NNP VBZ VBN NNP NNS TO VB TO NNP .\nHe said once they talk to Pakistan and then India , there will be a trilateral arrangement going .\tPRP VBD RB PRP VBP TO NNP CC RB NNP , EX MD VB DT JJ NN VBG .\nThere has been no word from New Delhi .\tEX VBZ VBN DT NN IN NNP NNP .\nGeneral Musharraf met the Kashmiri separatist leaders last month during his visit to New Delhi .\tNNP NNP VBD DT JJ NN NNS JJ NN IN PRP$ NN TO NNP NNP .\nThe United Nations has launched an urgent appeal for more than $ 20 million to build shelter for people left homeless by a devastating earthquake in Pakistan and a demolition drive in Zimbabwe .\tDT NNP NNP VBZ VBN DT JJ NN IN JJR IN $ CD CD TO VB NN IN NNS VBN NN IN DT JJ NN IN NNP CC DT NN NN IN NNP .\nThe Nairobi-based U.N. Human Settlement Program , popularly known as HABITAT , has asked donors to contribute $ 22 million for the appeal .\tDT JJ NNP NNP NNP NNP , RB VBN IN NNP , VBZ VBN NNS TO VB $ CD CD IN DT NN .\nHABITAT chief Ann Tibaijuka has issued a statement , saying there is an urgent need to stabilize the shelter conditions of poor people evicted in Zimbabwe , and those left out in the open in Pakistan .\tNNP NN NNP NNP VBZ VBN DT NN , VBG EX VBZ DT JJ NN TO VB DT NN NNS IN JJ NNS VBN IN NNP , CC DT VBN RP IN DT JJ IN NNP .\nMore than $ 18 million will be spent in Pakistan , where more than three million people were left homeless by the October quake .\tJJR IN $ CD CD MD VB VBN IN NNP , WRB JJR IN CD CD NNS VBD VBN JJ IN DT NNP NN .\nThe remainder is to be used in a U.N.-backed program to build 2,500 semi-permanent housing units for at least 12,500 Zimbabweans .\tDT NN VBZ TO VB VBN IN DT JJ NN TO VB CD JJ NN NNS IN IN JJS CD NNS .\nChina has criticized Japan 's defense agency for charting out scenarios for a potential Chinese military attack against Japan .\tNNP VBZ VBN NNP POS NN NN IN VBG RP NNS IN DT JJ JJ JJ NN IN NNP .\nA Chinese Foreign Ministry spokeswoman Zhang Qiyue accused Japan of having , in her words , a ' Cold War mentality , ' adding that the scenarios were without merit .\tDT JJ NNP NNP NN NNP NNP VBD NNP IN VBG , IN PRP$ NNS , DT `` NNP NNP NN , `` VBG IN DT NNS VBD IN NN .\nJapanese media reported Monday that a Japanese defense agency review presented three possibilities for Chinese action against Japan .\tJJ NNS VBD NNP IN DT JJ NN NN NN VBD CD NNS IN JJ NN IN NNP .\nIt says China might take action to secure Chinese interests in a gas field in the East China Sea , to seize a disputed set of islands known as Daioyu in China and Senkaku in Japanto or to keep U.S. forces based in Japan from protecting Taiwan .\tPRP VBZ NNP MD VB NN TO VB JJ NNS IN DT NN NN IN DT NNP NNP NNP , TO VB DT JJ NN IN NNS VBN IN NNP IN NNP CC NNP IN NNP CC TO VB NNP NNS VBN IN NNP IN VBG NNP .\nThe Japanese report advises using diplomatic means to keep the situation stable .\tDT JJ NN VBZ VBG JJ NNS TO VB DT NN JJ .\nSome of this information provided by Reuters and AP .\tDT IN DT NN VBN IN NNP CC NNP .\nDefending World Cup football champion Brazil has defeated Croatia , 1-0 , in the opening match for both teams in Germany .\tVBG NNP NNP NN NN NNP VBZ VBN NNP , CD , IN DT NN NN IN DT NNS IN NNP .\nKaka scored in the 44th minute Tuesday for the only goal of the Group F game in Berlin .\tNNP VBD IN DT JJ NN NNP IN DT JJ NN IN DT NNP NNP NN IN NNP .\nEarlier in Group G , South Korea defeated Togo , 02-Jan , in Frankfurt while France and Switzerland played to a scoreless draw in Stuttgart .\tRBR IN NNP NNP , NNP NNP VBD NNP , CD , IN NNP IN NNP CC NNP VBD TO DT JJ NN IN NNP .\nSouth Korea battled back from 1-0 half-time deficit for a 02-Jan win that sent the Asian side to the top of the group standings with three points .\tNNP NNP VBD RB IN CD JJ NN IN DT JJ NN WDT VBD DT JJ NN TO DT NN IN DT NN NNS IN CD NNS .\nTogo captain Jean-Paul Abalo was sent off in the 53rd minute after receiving his second yellow card .\tNNP NN NNP NNP VBD VBN RP IN DT CD NN IN VBG PRP$ JJ JJ NN .\nLee Chun-soo and Ahn Jung-hwan scored for South Korea .\tNNP NNP CC NNP NNP VBD IN NNP NNP .\nThe Swiss and French teams sputtered to their third draw in as many encounters .\tDT JJ CC JJ NNS VBD TO PRP$ JJ NN IN IN JJ NNS .\nBritain says a raid by multinational forces in Iraq has freed three Western Christian aid workers who had been held hostage by Muslim militants since November .\tNNP VBZ DT NN IN JJ NNS IN NNP VBZ VBN CD JJ JJ NN NNS WP VBD VBN VBN NN IN NNP NNS IN NNP .\nThe announcement of the release of the two Canadians and one Briton has been made in London by British Foreign Secretary Jack Straw .\tDT NN IN DT NN IN DT CD NNS CC CD NN VBZ VBN VBN IN NNP IN NNP NNP NNP NNP NNP .\n' This is wonderful news for the family and it 's a huge tribute to the professionalism of the multinational forces and the Iraqi forces that they 've been able to achieve this result , ' he said .\t`` DT VBZ JJ NN IN DT NN CC PRP VBZ DT JJ NN TO DT NN IN DT JJ NNS CC DT JJ NNS IN PRP VBP VBN JJ TO VB DT NN , `` PRP VBD .\nStraw says 74-year-old Norman Kember of Britain is in reasonable condition after the raid .\tNNP VBZ JJ NNP NNP IN NNP VBZ IN JJ NN IN DT NN .\nHowever , he says , Canadian citizens James Loney and Harmeet Singh Sooden have required hospital treatment .\tRB , PRP VBZ , JJ NNS NNP NNP CC NNP NNP NNP VBP VBN NN NN .\nA fourth hostage , American Tom Fox , was found shot to death on March 10 .\tDT JJ NN , NNP NNP NNP , VBD VBN VBN IN NN IN NNP CD .\nAll four men had been kidnapped in November by a Muslim militant group called the Swords of Righteousness Brigade .\tDT CD NNS VBD VBN VBN IN NNP IN DT NNP JJ NN VBD DT NNS IN NNP NNP .\nSao Tome 's prime minister , Damiao Vaz de Almeida , has resigned following contentious oil deals negotiated by the president .\tNNP NNP POS JJ NN , NNP NNP NNP NNP , VBZ VBN VBG JJ NN NNS VBN IN DT NN .\nThe Associated Press quotes Mr. Vaz de Almeida as saying he objected to President Fradique de Menezes awarding oil exploration deals to Nigerian companies , which he said were ' of doubtful credibility and inadequate technical ability . '\tDT NNP NNP VBZ NNP NNP NNP NNP IN VBG PRP VBD TO NNP NNP IN NNP VBG NN NN NNS TO JJ NNS , WDT PRP VBD VBD `` IN JJ NN CC JJ JJ NN . ``\nAccording to the report , Mr. Vaz de Almeida was angered by the president 's refusal to back the government this week during a major civil servants ' strike over pay .\tVBG TO DT NN , NNP NNP NNP NNP VBD VBN IN DT NN POS NN TO VB DT NN DT NN IN DT JJ JJ NNS POS NN IN NN .\nMr. Vaz de Almeida had been in office for about eight months .\tNNP NNP IN NNP VBD VBN IN NN IN IN CD NNS .\nTwo years ago , President Menezes was briefly removed from power in a bloodless coup by rebellious soldiers .\tCD NNS RB , NNP NNP VBD RB VBN IN NN IN DT JJ NN IN JJ NNS .\nThey demanded more transparency in oil contracts , following the discovery of large oil reserves .\tPRP VBD RBR NN IN NN NNS , VBG DT NN IN JJ NN NNS .\nA senior Iranian official has warned countries opposed to Tehran 's nuclear program that they will face retaliation if sanctions are imposed on Iran .\tDT JJ JJ NN VBZ VBN NNS VBD TO NNP POS JJ NN IN PRP MD VB NN IN NNS VBP VBN IN NNP .\nIran 's top nuclear negotiator , Ali Larijani , issued the warning in comments to reporters in Tehran Friday .\tNNP POS JJ JJ NN , NNP NNP , VBD DT NN IN NNS TO NNS IN NNP NNP .\nLarijani said Western nations will face ' painful ' measures if the United Nations Security Council imposes sanctions on Iran for its nuclear program .\tNNP VBD JJ NNS MD VB `` JJ `` NNS IN DT NNP NNP NNP NNP VBZ NNS IN NNP IN PRP$ JJ NN .\nThe permanent U.N. Security Council members plus Germany are trying to reach agreement on a sanctions resolution .\tDT JJ NNP NNP NNP NNS IN NNP VBP VBG TO VB NN IN DT NNS NN .\nIran ignored an August 31st UN deadline to suspend uranium enrichment .\tNNP VBD DT NNP CD NNP NN TO VB NN NN .\nThe U.S. and its western allies believe Iran 's enrichment activities are part of a program to develop nuclear weapons .\tDT NNP CC PRP$ JJ NNS VBP NNP POS NN NNS VBP NN IN DT NN TO VB JJ NNS .\nIran says its nuclear program is to produce energy , not weapons .\tNNP VBZ PRP$ JJ NN VBZ TO VB NN , RB NNS .\nA United Nations war crimes court has sentenced a former Rwandan administrator to 25 years in prison for his role in the country 's 1994 genocide .\tDT NNP NNPS NN NNS NN VBZ VBN DT JJ JJ NN TO CD NNS IN NN IN PRP$ NN IN DT NN POS CD NN .\nThe International Criminal Tribunal for Rwanda , based in Tanzania , found Dominique Ntawukulilyayo guilty of genocide .\tDT NNP NNP NNP IN NNP , VBN IN NNP , VBD NNP NNP NN IN NN .\nCourt prosecutors say Ntawukulilyayo , who was deputy administrator of Rwanda 's southern Gisagara district , transported soldiers to an area where thousands of Tutsis had taken refuge , leaving the soldiers to carry out a mass slaughter .\tNNP NNS VBP NNP , WP VBD JJ NN IN NNP POS JJ NNP NN , VBD NNS TO DT NN WRB NNS IN NNP VBD VBN NN , VBG DT NNS TO VB RP DT NN NN .\nNtawukulilyayo was arrested in France in 2007 and later transferred to the U.N. detention facility in Arusha to face charges .\tNNP VBD VBN IN NNP IN CD CC RB VBN TO DT NNP NN NN IN NNP TO VB NNS .\nHutu extremists killed an estimated 8,00,000 ethnic Tutsis and moderate Hutus during the 1994 Rwandan genocide .\tNNP NNS VBD DT VBN CD JJ NN CC JJ NN IN DT CD JJ NN .\nThe U.N. tribunal was set up to prosecute those who organized the killings .\tDT NNP NN VBD VBN RP TO VB DT WP VBD DT NNS .\nThe court has convicted about 40 people so far , while about 30 suspects are either being tried or awaiting trial .\tDT NN VBZ VBN IN CD NNS RB RB , IN IN CD NNS VBP RB VBG VBN CC VBG NN .\nWorld leaders are hailing key general elections in Afghanistan , saying Afghans have braved Taleban violence in a show of determination to build a peaceful future .\tNNP NNS VBP VBG JJ JJ NNS IN NNP , VBG NNS VBP VBN NNP NN IN DT NN IN NN TO VB DT JJ NN .\nPresident Bush congratulated the Afghan people and the government for a successful vote .\tNNP NNP VBD DT JJ NNS CC DT NN IN DT JJ NN .\nHe said it was a major step forward in Afghanistan 's development as a democratic state governed by the rule of law .\tPRP VBD PRP VBD DT JJ NN RB IN NNP POS NN IN DT JJ NN VBN IN DT NN IN NN .\nU.S. Secretary of State Condoleezza Rice said the extremist elements that once again attempted to disrupt the electoral process have failed .\tNNP NNP IN NNP NNP NNP VBD DT NN NNS WDT RB RB VBD TO VB DT JJ NN VBP VBN .\nPakistan 's Foreign Ministry said the completion of the electoral process in Afghanistan was a big step forward on the road to peace and stability , national reconstruction and development .\tNNP POS NNP NNP VBD DT NN IN DT JJ NN IN NNP VBD DT JJ NN RB IN DT NN TO NN CC NN , JJ NN CC NN .\nThe European Union , the United Nations and NATO hailed the election and praised those who voted .\tDT NNP NNP , DT NNP NNPS CC NNP VBD DT NN CC VBD DT WP VBD .\nAfghan President Hamid Karzai called the election a defeat for terrorism .\tJJ NNP NNP NNP VBD DT NN DT NN IN NN .\nNATO 's secretary general says a proposed U.S. missile defense system in Europe risks splitting the alliance between those countries it would fully protect and those left vulnerable to threats .\tNNP POS NN NN VBZ DT JJ NNP NN NN NN IN NNP NNS VBG DT NN IN DT NNS PRP MD RB VB CC DT VBD JJ TO NNS .\nJaap de Hoop Scheffer 's warning appeared Monday in an interview with the British newspaper , The Financial Times .\tNNP NNP NNP NNP POS NN VBD NNP IN DT NN IN DT JJ NN , DT NNP NNP .\nExperts say the proposed missile system in Poland and the Czech Republic would shield most of Europe from any attacks from what Washington calls rogue states such as Iran or North Korea .\tNNS VBP DT VBN NN NN IN NNP CC DT JJ NNP MD VB JJS IN NNP IN DT NNS IN WP NNP VBZ NN NNS JJ IN NNP CC NNP NNP .\nBut NATO officials told the newspaper that countries in southeastern Europe such as Turkey , Greece and Italy would need extra short-range missile protection because of their proximity to Iran .\tCC NNP NNS VBD DT NN IN NNS IN JJ NNP JJ IN NNP , NNP CC NNP MD VB JJ NN NN NN IN IN PRP$ NN TO NNP .\nDe Hoop Scheffer suggests that the proposed U.S. system could be complemented by NATO plans for a smaller , mobile system scheduled to become operational in 2010 .\tNNP NNP NNP VBZ IN DT VBN NNP NN MD VB VBN IN NNP NNS IN DT JJR , JJ NN VBN TO VB JJ IN CD .\nVenezuela 's ambassador to Washington is calling on the U.S. to extradite a Cuban militant accused of planning a deadly airplane bombing in 1976 .\tNNP POS NN TO NNP VBZ VBG IN DT NNP TO VB DT JJ NN VBN IN VBG DT JJ NN VBG IN CD .\nAmbassador Bernardo Alvarez told Venezuelan state television Monday the extradition of Luis Posada Carriles should not be considered an immigration issue .\tNNP NNP NNP VBD JJ NN NN NNP DT NN IN NNP NNP NNPS MD RB VB VBN DT NN NN .\nCarriles is a former CIA operative who is considered to be the mastermind behind the in-flight bombing of a Cubana Airlines plane that killed 73 people .\tNNP VBZ DT JJ NNP NN WP VBZ VBN TO VB DT NN IN DT JJ NN IN DT NNP NNP NN WDT VBD CD NNS .\nHe is being held in a detention center in the U.S. state of Texas for immigration violations .\tPRP VBZ VBG VBN IN DT NN NN IN DT NNP NN IN NNP IN NN NNS .\nAlvarez called Carriles the ' Osama bin Laden ' of Latin America .\tNNP VBD NNP DT `` NNP NNP NNP `` IN NNP NNP .\nHe said he discussed the extradition request with U.S. Under Secretary of State Thomas Shannon last month .\tPRP VBD PRP VBD DT NN NN IN NNP IN NNP IN NNP NNP NNP JJ NN .\nVenezuela 's government often clashes with Washington .\tNNP POS NN RB VBZ IN NNP .\nVenezuelan President Hugo Chavez sharply criticized President Bush Sunday , days after a White House report called Mr. Chavez a demagogue .\tJJ NNP NNP NNP RB VBD NNP NNP NNP , NNS IN DT NNP NNP NN VBD NNP NNP DT NN .\nWilliam C. Walbrecher Jr. , an executive at San Francisco-based 1st Nationwide Bank , was named president and chief executive officer of Citadel Holding Corp. and its principal operating unit , Fidelity Federal Bank .\tNNP NNP NNP NNP , DT NN IN NNP JJ CD NNP NNP , VBD VBN NN CC JJ JJ NN IN NNP NNP NNP CC PRP$ JJ NN NN , NNP NNP NNP .\nThe appointment takes effect Nov. 13 .\tDT NN VBZ NN NNP CD .\nHe succeeds James A. Taylor , who stepped down as chairman , president and chief executive in March for health reasons .\tPRP VBZ NNP NNP NNP , WP VBD RB IN NN , NN CC JJ NN IN NNP IN NN NNS .\nEdward L. Kane succeeded Mr. Taylor as chairman .\tNNP NNP NNP VBD NNP NNP IN NN .\nSeparately , Citadel posted a third-quarter net loss of $ 2.3 million , or 68 cents a share , versus net income of $ 5.3 million , or $ 1.61 a share , a year earlier .\tRB , NNP VBD DT JJ JJ NN IN $ CD CD , CC CD NNS DT NN , IN JJ NN IN $ CD CD , CC $ CD DT NN , DT NN RBR .\nThe latest results include some unusual write-downs , which had an after-tax impact of $ 4.9 million .\tDT JJS NNS VBP DT JJ NNS , WDT VBD DT JJ NN IN $ CD CD .\nThose included costs associated with the potential Valley Federal Savings and Loan Association acquisition , which was terminated on Sept. 27 , 1989 .\tDT VBD NNS VBN IN DT JJ NNP NNP NNP CC NNP NNP NN , WDT VBD VBN IN NNP CD , CD .\nIn addition , operating results were hit by an increase in loan and real estate loss reserves .\tIN NN , NN NNS VBD VBN IN DT NN IN NN CC JJ NN NN NNS .\nIn American Stock Exchange composite trading , Citadel shares closed yesterday at $ 45.75 , down 25 cents .\tIN NNP NNP NNP JJ NN , NNP NNS VBD NN IN $ CD , RB CD NNS .\nOil-rich Nigeria has been hobbled by political instability , corruption , inadequate infrastructure , and poor macroeconomic management but in 2008 began pursuing economic reforms .\tNNP NNP VBZ VBN VBN IN JJ NN , NN , JJ NN , CC JJ JJ NN CC IN CD VBD VBG JJ NNS .\nNigeria 's former military rulers failed to diversify the economy away from its overdependence on the capital-intensive oil sector , which provides 95 % of foreign exchange earnings and about 80 % of budgetary revenues .\tNNP POS JJ JJ NNS VBD TO VB DT NN RB IN PRP$ NN IN DT JJ NN NN , WDT VBZ CD NN IN JJ NN NNS CC IN CD NN IN JJ NNS .\nFollowing the signing of an IMF stand-by agreement in August 2000 , Nigeria received a debt-restructuring deal from the Paris Club and a $ 1 billion credit from the IMF , both contingent on economic reforms .\tVBG DT NN IN DT NNP JJ NN IN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP CC DT $ CD CD NN IN DT NNP , DT JJ IN JJ NNS .\nNigeria pulled out of its IMF program in April 2002 , after failing to meet spending and exchange rate targets , making it ineligible for additional debt forgiveness from the Paris Club .\tNNP VBD IN IN PRP$ NNP NN IN NNP CD , IN VBG TO VB NN CC NN NN NNS , VBG PRP JJ IN JJ NN NN IN DT NNP NNP .\nIn November 2005 , Abuja won Paris Club approval for a debt-relief deal that eliminated $ 18 billion of debt in exchange for $ 12 billion in payments - a total package worth $ 30 billion of Nigeria 's total $ 37 billion external debt .\tIN NNP CD , NNP VBD NNP NNP NN IN DT JJ NN WDT VBD $ CD CD IN NN IN NN IN $ CD CD IN NNS IN DT JJ NN JJ $ CD CD IN NNP POS JJ $ CD CD JJ NN .\nSince 2008 the government has begun to show the political will to implement the market-oriented reforms urged by the IMF , such as modernizing the banking system , curbing inflation by blocking excessive wage demands , and resolving regional disputes over the distribution of earnings from the oil industry .\tIN CD DT NN VBZ VBN TO VB DT JJ NN TO VB DT JJ NNS VBN IN DT NNP , JJ IN VBG DT NN NN , VBG NN IN VBG JJ NN NNS , CC VBG JJ NNS IN DT NN IN NNS IN DT NN NN .\nGDP rose strongly in 2007 - 10 because of increased oil exports and high global crude prices in 2010 .\tNN VBD RB IN CD IN CD IN IN VBN NN NNS CC JJ JJ NN NNS IN CD .\nPresident JONATHAN has pledged to continue the economic reforms of his predecessor with emphasis on infrastructure improvements .\tNNP NNP VBZ VBN TO VB DT JJ NNS IN PRP$ NN IN NN IN NN NNS .\nInfrastructure is the main impediment to growth and in August 2010 JONATHAN unveiled a power sector blueprint that includes privatization of the state-run electricity generation and distribution facilities .\tNNP VBZ DT JJ NN TO NN CC IN NNP CD NNP VBD DT NN NN NN WDT VBZ NN IN DT JJ NN NN CC NN NNS .\nThe government also is working toward developing stronger public-private partnerships for roads .\tDT NN RB VBZ VBG IN VBG JJR JJ NNS IN NNS .\nNigeria 's financial sector was hurt by the global financial and economic crises and the Central Bank governor has taken measures to strengthen that sector .\tNNP POS JJ NN VBD VBN IN DT JJ JJ CC JJ NNS CC DT NNP NNP NN VBZ VBN NNS TO VB DT NN .\nBahrain is one of the most diversified economies in the Persian Gulf .\tNNP VBZ CD IN DT RBS JJ NNS IN DT NNP NNP .\nHighly developed communication and transport facilities make Bahrain home to numerous multinational firms with business in the Gulf .\tRB VBN NN CC NN NNS VBP NNP NN TO JJ JJ NNS IN NN IN DT NNP .\nAs part of its diversification plans , Bahrain implemented a Free Trade Agreement ( FTA ) with the US in August 2006 , the first FTA between the US and a Gulf state .\tIN NN IN PRP$ NN NNS , NNP VBD DT NNP NNP NNP LRB NNP RRB IN DT NNP IN NNP CD , DT JJ NN IN DT NNP CC DT NNP NN .\nBahrain 's economy , however , continues to depend heavily on oil .\tNNP POS NN , RB , VBZ TO VB RB IN NN .\nPetroleum production and refining account for more than 60 % of Bahrain 's export receipts , 70 % of government revenues , and 11 % of GDP ( exclusive of allied industries ) .\tNN NN CC NN NN IN JJR IN CD NN IN NNP POS NN NNS , CD NN IN NN NNS , CC CD NN IN NN LRB JJ IN JJ NNS RRB .\nOther major economic activities are production of aluminum - Bahrain 's second biggest export after oil - finance , and construction .\tJJ JJ JJ NNS VBP NN IN NN IN NNP POS JJ JJS NN IN NN IN NN , CC NN .\nBahrain competes with Malaysia as a worldwide center for Islamic banking and continues to seek new natural gas supplies as feedstock to support its expanding petrochemical and aluminum industries .\tNNP VBZ IN NNP IN DT JJ NN IN JJ NN CC VBZ TO VB JJ JJ NN NNS IN NN TO VB PRP$ VBG NN CC NN NNS .\nUnemployment , especially among the young , is a long-term economic problem Bahrain struggles to address .\tNN , RB IN DT JJ , VBZ DT JJ JJ NN NNP VBZ TO VB .\nIn 2009 , to help lower unemployment among Bahraini nationals , Bahrain reduced sponsorship for expatriate workers , increasing the costs of employing foreign labor .\tIN CD , TO VB JJR NN IN JJ NNS , NNP VBD NN IN JJ NNS , VBG DT NNS IN VBG JJ NN .\nThe global financial crisis caused funding for many non-oil projects to dry up and resulted in slower economic growth for Bahrain .\tDT JJ JJ NN VBD NN IN JJ JJ NNS TO VB RP CC VBD IN JJR JJ NN IN NNP .\nOther challenges facing Bahrain include the slow growth of government debt as a result of a large subsidy program , the financing of large government projects , and debt restructuring , such as the bailout of state-owned Gulf Air .\tJJ NNS VBG NNP VBP DT JJ NN IN NN NN IN DT NN IN DT JJ NN NN , DT NN IN JJ NN NNS , CC NN NN , JJ IN DT NN IN JJ NNP NNP .\nSan Marino 's economy relies heavily on its tourism and banking industries , as well as on the manufacture and export of ceramics , clothing , fabrics , furniture , paints , spirits , tiles , and wine .\tNNP NNP POS NN VBZ RB IN PRP$ NN CC NN NNS , RB RB IN IN DT NN CC NN IN NNS , NN , NNS , NN , NNS , NNS , NNS , CC NN .\nThe per capita level of output and standard of living are comparable to those of the most prosperous regions of Italy , which supplies much of its food .\tDT IN NN NN IN NN CC NN IN NN VBP JJ TO DT IN DT RBS JJ NNS IN NNP , WDT VBZ NN IN PRP$ NN .\nThe economy benefits from foreign investment due to its relatively low corporate taxes and low taxes on interest earnings .\tDT NN VBZ IN JJ NN JJ TO PRP$ RB JJ JJ NNS CC JJ NNS IN NN NNS .\nSan Marino has recently faced increased international pressure to improve cooperation with foreign tax authorities and transparency within its own banking sector , which generates about one-fifth of the country 's tax revenues .\tNNP NNP VBZ RB VBN VBN JJ NN TO VB NN IN JJ NN NNS CC NN IN PRP$ JJ NN NN , WDT VBZ IN NN IN DT NN POS NN NNS .\nItaly 's implementation in October 2009 of a tax amnesty to repatriate untaxed funds held abroad has resulted in financial outflows from San Marino to Italy worth more than $ 4.5 billion .\tNNP POS NN IN NNP CD IN DT NN NN TO VB JJ NNS VBN RB VBZ VBN IN JJ NNS IN NNP NNP TO NNP NN JJR IN $ CD CD .\nSuch outflows , combined with a money-laundering scandal at San Marino 's largest financial institution and the recent global economic downturn , have contributed to a deep recession and growing budget deficit .\tJJ NNS , VBN IN DT JJ NN IN NNP NNP POS JJS JJ NN CC DT JJ JJ JJ NN , VBP VBN TO DT JJ NN CC VBG NN NN .\nIndustrial production declined sharply in 2010 , especially in the textile sector .\tJJ NN VBD RB IN CD , RB IN DT NN NN .\nHowever , San Marino has little national debt , and an unemployment rate less than half the size of Italy 's .\tRB , NNP NNP VBZ JJ JJ NN , CC DT NN NN JJR IN PDT DT NN IN NNP POS .\nThe San Marino government has adopted measures to counter the downturn , including subsidized credit to businesses .\tDT NNP NNP NN VBZ VBN NNS TO VB DT NN , VBG JJ NN TO NNS .\nSan Marino also continues to work towards harmonizing its fiscal laws with EU members and international standards .\tNNP NNP RB VBZ TO VB IN VBG PRP$ JJ NNS IN NNP NNS CC JJ NNS .\nIn September 2009 , the OECD removed San Marino from its list of tax havens that have yet to fully implement global tax standards , and in 2010 San Marino signed Tax Information Exchange Agreements with most major countries .\tIN NNP CD , DT NNP VBD NNP NNP IN PRP$ NN IN NN NNS WDT VBP RB TO RB VB JJ NN NNS , CC IN CD NNP NNP VBD NNP NNP NNP NNPS IN JJS JJ NNS .\nThe future of the country 's economy will be heavily influenced by the signing of a financial information exchange agreement with Italy , which many Italian investors see as fundamental for their business operations with San Marino .\tDT NN IN DT NN POS NN MD VB RB VBN IN DT NN IN DT JJ NN NN NN IN NNP , WDT JJ JJ NNS VBP IN JJ IN PRP$ NN NNS IN NNP NNP .\nRevenues of this tiny island traditionally have come from exports of phosphates .\tNNS IN DT JJ NN RB VBP VBN IN NNS IN NNS .\nFew other resources exist , with most necessities being imported , mainly from Australia , its former occupier and later major source of support .\tJJ JJ NNS VBP , IN JJS NNS VBG VBN , RB IN NNP , PRP$ JJ NN CC RB JJ NN IN NN .\nIn 2005 an Australian company entered into an agreement to exploit remaining supplies .\tIN CD DT JJ NN VBD IN DT NN TO VB VBG NNS .\nPrimary reserves of phosphates were exhausted and mining ceased in 2006 , but mining of a deeper layer of ' secondary phosphate ' in the interior of the island began the following year .\tJJ NNS IN NNS VBD VBN CC NN VBD IN CD , CC NN IN DT JJR NN IN `` JJ NN `` IN DT NN IN DT NN VBD DT JJ NN .\nThe secondary phosphate deposits may last another 30 years .\tDT JJ NN NNS MD VB DT CD NNS .\nThe rehabilitation of mined land and the replacement of income from phosphates are serious long-term problems .\tDT NN IN JJ NN CC DT NN IN NN IN NNS VBP JJ JJ NNS .\nIn anticipation of the exhaustion of Nauru 's phosphate deposits , substantial amounts of phosphate income were invested in trust funds to help cushion the transition and provide for Nauru 's economic future .\tIN NN IN DT NN IN NNP POS NN NNS , JJ NNS IN JJ NN VBD VBN IN NN NNS TO VB VB DT NN CC VB IN NNP POS JJ NN .\nAs a result of heavy spending from the trust funds , the government faced virtual bankruptcy .\tIN DT NN IN JJ NN IN DT NN NNS , DT NN VBD JJ NN .\nTo cut costs the government has frozen wages and reduced overstaffed public service departments .\tTO VB NNS DT NN VBZ VBN NNS CC VBN JJ JJ NN NNS .\nNauru lost further revenue in 2008 with the closure of Australia 's refugee processing center , making it almost totally dependent on food imports and foreign aid .\tNNP VBD JJ NN IN CD IN DT NN IN NNP POS NN NN NN , VBG PRP RB RB JJ IN NN NNS CC JJ NN .\nHousing , hospitals , and other capital plant are deteriorating .\tNN , NNS , CC JJ NN NN VBP VBG .\nThe cost to Australia of keeping the government and economy afloat continues to climb .\tDT NN TO NNP IN VBG DT NN CC NN RB VBZ TO VB .\nFew comprehensive statistics on the Nauru economy exist with estimates of Nauru 's GDP varying widely .\tJJ JJ NNS IN DT NNP NN VBP IN NNS IN NNP POS NN VBG RB .\nThe French colonies of Senegal and the French Sudan were merged in 1959 and granted their independence as the Mali Federation in 1960 .\tDT JJ NNS IN NNP CC DT JJ NNP VBD VBN IN CD CC VBD PRP$ NN IN DT NNP NNP IN CD .\nThe union broke up after only a few months .\tDT NN VBD RP IN RB DT JJ NNS .\nSenegal joined with The Gambia to form the nominal confederation of Senegambia in 1982 .\tNNP VBD IN DT NNP TO VB DT JJ NN IN NNP IN CD .\nThe envisaged integration of the two countries was never carried out , and the union was dissolved in 1989 .\tDT JJ NN IN DT CD NNS VBD RB VBN RP , CC DT NN VBD VBN IN CD .\nThe Movement of Democratic Forces in the Casamance ( MFDC ) has led a low-level separatist insurgency in southern Senegal since the 1980s , and several peace deals have failed to resolve the conflict .\tDT NN IN JJ NNS IN DT NNP LRB NNP RRB VBZ VBN DT JJ NN NN IN JJ NNP IN DT NNS , CC JJ NN NNS VBP VBN TO VB DT NN .\nNevertheless , Senegal remains one of the most stable democracies in Africa .\tRB , NNP VBZ CD IN DT RBS JJ NNS IN NNP .\nSenegal was ruled by a Socialist Party for 40 years until current President Abdoulaye WADE was elected in 2000 .\tNNP VBD VBN IN DT NNP NNP IN CD NNS IN JJ NNP NNP NNP VBD VBN IN CD .\nHe was reelected in February 2007 and has amended Senegal 's constitution over a dozen times to increase executive power and to weaken the opposition , part of the president 's increasingly autocratic governing style .\tPRP VBD VBN IN NNP CD CC VBZ VBN NNP POS NN IN DT NN NNS TO VB JJ NN CC TO VB DT NN , NN IN DT NN POS RB JJ NN NN .\nSenegal has a long history of participating in international peacekeeping and regional mediation .\tNNP VBZ DT JJ NN IN VBG IN JJ NN CC JJ NN .\nA CERTAIN HUNTER , having snared a hare , placed it upon his shoulders and set out homewards .\tDT JJ NN , VBG VBN DT NN , VBD PRP IN PRP$ NNS CC VBN RP NNS .\nOn his way he met a man on horseback who begged the hare of him , under the pretense of purchasing it .\tIN PRP$ NN PRP VBD DT NN IN NN WP VBD DT NN IN PRP , IN DT NN IN VBG PRP .\nHowever , when the Horseman got the hare , he rode off as fast as he could .\tRB , WRB DT NNP VBD DT NN , PRP VBD RP RB RB IN PRP MD .\nThe Hunter ran after him , as if he was sure of overtaking him , but the Horseman increased more and more the distance between them .\tDT NN VBD IN PRP , IN IN PRP VBD JJ IN VBG PRP , CC DT NN VBD JJR CC JJR DT NN IN PRP .\nThe Hunter , sorely against his will , called out to him and said , ' Get along with you ! for I will now make you a present of the hare . '\tDT NN , RB IN PRP$ NN , VBD RP TO PRP CC VBD , `` VB IN IN PRP . IN PRP MD RB VB PRP DT NN IN DT NN . ``\nA physicist and a mathematician are sitting in a faculty lounge .\tDT NN CC DT NN VBP VBG IN DT NN NN .\nSuddenly , the coffee machine catches on fire .\tRB , DT NN NN NNS IN NN .\nThe physicist grabs a bucket and leap towards the sink , filled the bucket with water and puts out the fire .\tDT NN VBZ DT NN CC NN IN DT NN , VBD DT NN IN NN CC VBZ RP DT NN .\nSecond day , the same two sit in the same lounge .\tJJ NN , DT JJ CD VBP IN DT JJ NN .\nAgain , the coffee machine catches on fire .\tRB , DT NN NN NNS IN NN .\nThis time , the mathematician stands up , got a bucket , hands the bucket to the physicist , thus reducing the problem to a previously solved one .\tDT NN , DT NN VBZ RP , VBD DT NN , NNS DT NN TO DT NN , RB VBG DT NN TO DT RB VBN CD .\nPresident Bush says he is starting the process of picking the cabinet and White House staff for his second term in office .\tNNP NNP VBZ PRP VBZ VBG DT NN IN VBG DT NN CC NNP NNP NN IN PRP$ JJ NN IN NN .\nMr. Bush , spending the weekend at the presidential retreat , Camp David , in Maryland , did not indicate what changes he is considering for his team .\tNNP NNP , VBG DT NN IN DT JJ NN , NNP NNP , IN NNP , VBD RB VB WP VBZ PRP VBZ VBG IN PRP$ NN .\nU.S. media reports , however , say Attorney General John Ashcroft could depart before Mr. Bush is sworn in for a second term in January .\tNNP NNS NNS , RB , VBP NNP NNP NNP NNP MD VB IN NNP NNP VBZ VBN IN IN DT JJ NN IN NNP .\nOthers reportedly considering leaving include Secretary of State Colin Powell and Homeland Security Chief Tom Ridge .\tNNS RB VBG VBG VBP NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP .\nMeanwhile , U.S. counterterrorism coordinator Cofer Black has resigned his post , becoming the first to leave since President Bush 's re-election .\tRB , NNP NN NN NNP NNP VBZ VBN PRP$ NN , VBG DT JJ TO VB IN NNP NNP POS NN .\nHe had served the State Department since 2002 , and had previously worked for the CIA for nearly three decades .\tPRP VBD VBN DT NNP NNP IN CD , CC VBD RB VBN IN DT NNP IN RB CD NNS .\nThe U.S. Army 's top general says the Army is planning for the possibility of keeping the current number of troops in Iraq - well over 1,00,000 - for four more years .\tDT NNP NNP POS JJ NN VBZ DT NNP VBZ VBG IN DT NN IN VBG DT JJ NN IN NNS IN NNP : RB IN CD : IN CD JJR NNS .\nGeneral Peter Schoomaker told the Associated Press Saturday he was confident the Army could continue to provide the current number of forces in Iraq for several more years .\tNNP NNP NNP VBD DT NNP NNP NNP PRP VBD JJ DT NNP MD VB TO VB DT JJ NN IN NNS IN NNP IN JJ JJR NNS .\nPresident Bush , in his weekly radio address , expressed confidence in what he called the ' ultimate triumph of our cause . '\tNNP NNP , IN PRP$ JJ NN NN , VBD NN IN WP PRP VBD DT `` JJ NN IN PRP$ NN . ``\nIn Saturday 's Democratic radio address , former Senator Max Cleland of Georgia said Mr. Bush 's plan for victory is not working .\tIN NNP POS JJ NN NN , JJ NNP NNP NNP IN NNP VBD NNP NNP POS NN IN NN VBZ RB VBG .\nMr. Cleland said the United States needs a strategy to win in Iraq or an exit strategy to leave .\tNNP NNP VBD DT NNP NNPS VBZ DT NN TO VB IN NNP CC DT NN NN TO VB .\nMr. Bush has said there will be no timetable for withdrawing the troops , because that would signal the United States is weak .\tNNP NNP VBZ VBN EX MD VB DT NN IN VBG DT NNS , IN DT MD VB DT NNP NNPS VBZ JJ .\nIran is insisting it will resume uranium conversion this week , after rejecting European incentives to end its nuclear fuel work .\tNNP VBZ VBG PRP MD VB NN NN DT NN , IN VBG JJ NNS TO VB PRP$ JJ NN NN .\nSpeaking Sunday in Tehran , a Foreign Ministry spokesman said work at Iran 's Isfahan nuclear plant will begin once the International Atomic Energy Agency installs surveillance cameras .\tVBG NNP IN NNP , DT NNP NNP NN VBD NN IN NNP POS NNP JJ NN MD VB RB DT NNP NNP NNP NNP VBZ NN NNS .\nThe IAEA says inspection equipment will be in place by mid-week .\tDT NNP VBZ NN NN MD VB IN NN IN NN .\nBritish , French and German negotiators have called an emergency meeting of the IAEA on Tuesday to issue Tehran a final warning against restarting the fuel program .\tJJ , JJ CC JJ NNS VBP VBN DT NN NN IN DT NNP IN NNP TO VB NNP DT JJ NN IN VBG DT NN NN .\nWestern governments suspect Iran 's nuclear activities are aimed at developing atomic weaponry .\tJJ NNS VBP NNP POS JJ NNS VBP VBN IN VBG JJ NN .\nTehran insists its nuclear intentions are peaceful .\tNNP VBZ PRP$ JJ NNS VBP JJ .\nIf the stand-off continues , the Europeans say they will ask the U.N. Security Council to consider imposing economic sanctions to force Tehran to end its fuel work .\tIN DT NN VBZ , DT NNS VBP PRP MD VB DT NNP NNP NNP TO VB VBG JJ NNS TO VB NNP TO VB PRP$ NN NN .\nIsrael 's attorney general has ordered a new criminal investigation into Prime Minister Ehud Olmert , who is facing two other police probes .\tNNP POS NN NN VBZ VBN DT JJ JJ NN IN NNP NNP NNP NNP , WP VBZ VBG CD JJ NN NNS .\nA Justice Ministry statement says the new probe will focus on political appointments made while Mr. Olmert was trade and industry minister .\tDT NNP NNP NN VBZ DT JJ NN MD VB IN JJ NNS VBN IN NNP NNP VBD NN CC NN NN .\nThe police will also look into suspicions Mr. Olmert assisted his political friends in different public bodies .\tDT NN MD RB VB IN NNS NNP NNP VBD PRP$ JJ NNS IN JJ JJ NNS .\nThe prime minister says the new investigation is unnecessary and will be closed without any results .\tDT JJ NN VBZ DT JJ NN VBZ JJ CC MD VB VBN IN DT NNS .\nLast week , police questioned Mr. Olmert about allegations he tried to steer the sale of government-owned Bank Leumi in 2005 while he was acting finance minister .\tJJ NN , NN VBD NNP NNP IN NNS PRP VBD TO VB DT NN IN JJ NNP NNP IN CD IN PRP VBD VBG NN NN .\nMr. Olmert also is under investigation for his purchase of a Jerusalem apartment in 2004 .\tNNP NNP RB VBZ IN NN IN PRP$ NN IN DT NNP NN IN CD .\nHe allegedly received a discounted price in return for helping the builder obtain construction permits from the city government .\tPRP RB VBD DT JJ NN IN NN IN VBG DT NN VB NN NNS IN DT NN NN .\nA British newspaper reports that United Nations peacekeepers in southern Sudan are facing allegations of raping and sexually abusing children as young as 12 .\tDT JJ NN NNS IN NNP NNPS NNS IN JJ NNP VBP VBG NNS IN VBG CC RB JJ NNS IN JJ IN CD .\nThe Daily Telegraph says it based its story on an internal report by the United Nations Children 's Fund .\tDT NNP NNP VBZ PRP VBD PRP$ NN IN DT JJ NN IN DT NNP NNP NNP POS NNP .\nThe newspaper says the alleged abuse started shortly after U.N. peacekeepers arrived in southern Sudan in March , 2005 .\tDT NN VBZ DT JJ NN VBD RB IN NNP NNS VBD IN JJ NNP IN NNP , CD .\nOne 13-year-old alleged victim said U.N. personnel enticed him into their car with money , sexually abused him , then tossed him out with no cash .\tCD JJ JJ NN VBD NNP NNS VBD PRP IN PRP$ NN IN NN , RB VBD PRP , RB VBD PRP RP IN DT NN .\nA British peacekeeping official has already denied the charges .\tDT JJ NN NN VBZ RB VBN DT NNS .\nBut a senior U.N. official has told the Associated Press that the allegations will be treated seriously and investigated .\tCC DT JJ NNP NN VBZ VBN DT NNP NNP IN DT NNS MD VB VBN RB CC VBN .\nU.N. officials fired one peacekeeper and suspended several others without pay in 2005 for allegations of bribing women and girls for sex in the Democratic Republic of Congo .\tNNP NNS VBD CD NN CC VBD JJ NNS IN NN IN CD IN NNS IN VBG NNS CC NNS IN NN IN DT JJ NNP IN NNP .\nGunmen in Iraq attacked a local police chief 's convoy Saturday , wounding him and two others .\tNNS IN NNP VBD DT JJ NN NN POS NN NNP , VBG PRP CC CD NNS .\nThe police chief was traveling near Mosul when militants fired on the motorcade .\tDT NN NN VBD VBG IN NNP WRB NNS VBD IN DT NN .\nThe attack sparked a clash between police and militants that left one officer dead and at least one other person wounded .\tDT NN VBD DT NN IN NNS CC NNS WDT VBD CD NN NN CC IN JJS CD JJ NN VBN .\nAnother policeman was killed and at least two others wounded when a roadside bomb exploded near their patrol outside Fallujah .\tDT NN VBD VBN CC IN JJS CD NNS VBD WRB DT NN NN VBD IN PRP$ NN IN NNP .\nThe European Union under the rotating presidency of Slovenia says it will seek to move forward with accession talks with Turkey .\tDT NNP NNP IN DT VBG NN IN NNP VBZ PRP MD VB TO VB RB IN NN NNS IN NNP .\nSpeaking in the Slovenian capital , Prime Minister Janez Jansa told reporters Monday that he will seek the total support of all EU member-countries for expanded accession talks .\tVBG IN DT JJ NN , NNP NNP NNP NNP VBD NNS NNP IN PRP MD VB DT JJ NN IN DT NNP NNS IN VBN NN NNS .\nTurkey is an official candidate for EU membership .\tNNP VBZ DT JJ NN IN NNP NN .\nBut its entry bid has roused opposition , most notably from France .\tCC PRP$ NN NN VBZ VBN NN , RBS RB IN NNP .\nPresident Nicolas Sarkozy has said repeatedly that largely-Muslim Turkey should be offered a privileged partnership rather than full membership .\tNNP NNP NNP VBZ VBN RB IN JJ NNP MD VB VBN DT JJ NN RB IN JJ NN .\nThe internationally recognized Greek-led government of Cyprus also opposes Turkish EU membership .\tDT RB VBN JJ NN IN NNP RB VBZ JJ NNP NN .\nTurkey has refused to open trade and travel links with the Cyprus government , as part of its ongoing territorial dispute over the divided island .\tNNP VBZ VBN TO VB NN CC NN NNS IN DT NNP NN , IN NN IN PRP$ JJ JJ NN IN DT VBN NN .\nThe first members of a U.N. peacekeeping mission for southern Sudan have arrived in the country to help implement a January peace deal .\tDT JJ NNS IN DT NNP NN NN IN JJ NNP VBP VBN IN DT NN TO VB VB DT NNP NN NN .\nTwelve Nepalese soldiers flew into the central town of El-Obeid Wednesday , one of the main operational centers for aid agencies working in the south .\tCD JJ NNS VBD IN DT JJ NN IN JJ NNP , CD IN DT JJ JJ NNS IN NN NNS VBG IN DT NN .\nThe soldiers are part of an eventual deployment of 10,000 peacekeeping troops .\tDT NNS VBP NN IN DT JJ NN IN CD VBG NNS .\nThe force will come mostly from Bangladesh , China , Egypt , India , Kenya and Zambia .\tDT NN MD VB RB IN NNP , NNP , NNP , NNP , NNP CC NNP .\nThe conflict in southern Sudan lasted more than two decades and claimed more than two million lives , mostly from war-induced famine and disease .\tDT NN IN JJ NNP VBD JJR IN CD NNS CC VBD JJR IN CD CD NNS , RB IN JJ NN CC NN .\nIt is separate from the conflict in Sudan 's western Darfur region .\tPRP VBZ JJ IN DT NN IN NNP POS JJ NNP NN .\nMore than 2,000 African Union troops have been deployed there to monitor a cease-fire .\tJJR IN CD NNP NNP NNS VBP VBN VBN RB TO VB DT NN .\nIndonesia 's national police chief says one of Southeast Asia 's most wanted men may be dead .\tNNP POS JJ NN NN VBZ CD IN NNP NNP POS JJS JJ NNS MD VB JJ .\nGeneral Sutanto says they hope to confirm the death of Malaysian bomb maker Azahari bin Husin Thursday .\tNNP NNP VBZ PRP VBP TO VB DT NN IN JJ NN NN NNP NNP NNP NNP .\nIndonesian police raided a suspected militant hideout in Batu , in East Java Province Wednesday .\tJJ NN VBD DT JJ JJ NN IN NNP , IN NNP NNP NNP NNP .\nAt least three people are thought to be dead from the gunbattle and explosions that rocked the house .\tIN JJS CD NNS VBP VBN TO VB JJ IN DT NN CC NNS WDT VBD DT NN .\nPolice fear the building may be booby trapped and will wait for daylight before retrieving the bodies and making further investigations .\tNNS VBP DT NN MD VB JJ JJ CC MD VB IN NN IN VBG DT NNS CC VBG JJ NNS .\nWitnesses say Azahari bin Husin may have blown himself up rather than be captured by police .\tNNS VBP NNP NNP NNP MD VB VBN PRP RP RB IN VB VBN IN NNS .\nThe fugitive terrorist is linked to Jemaah Islamiyah , a group seen as the regional arm of al-Qaida , and is accused of masterminding at least four deadly blasts in Indonesia , including the 2002 Bali bombings that killed 202 people .\tDT JJ NN VBZ VBN TO NNP NNP , DT NN VBN IN DT JJ NN IN NNP , CC VBZ VBN IN VBG IN JJS CD JJ NNS IN NNP , VBG DT CD NNP NNS WDT VBD CD NNS .\nA suicide bomber targeted a police station in Pakistan 's capital , Islamabad , Monday evening , killing himself and one officer .\tDT NN NN VBD DT NN NN IN NNP POS NN , NNP , NNP NN , VBG PRP CC CD NN .\nOfficials say police tried to stop the bomber at a point before he detonated his explosives .\tNNS VBP NNS VBD TO VB DT NN IN DT NN IN PRP VBD PRP$ NNS .\nIt is not clear how many people were wounded in the attack .\tPRP VBZ RB JJ WRB JJ NNS VBD VBN IN DT NN .\nMilitants have staged a wave of attacks over the past few years in Pakistan , including several in the capital .\tNNS VBP VBN DT NN IN NNS IN DT JJ JJ NNS IN NNP , VBG JJ IN DT NN .\nThe government has recently signed two separate peace deals with Islamist groups in the tribal regions near the border with Afghanistan .\tDT NN VBZ RB VBN CD JJ NN NNS IN JJ NNS IN DT JJ NNS IN DT NN IN NNP .\nThe country marked its national holiday , Pakistan Day , on Monday .\tDT NN VBD PRP$ JJ NN , NNP NNP , IN NNP .\nThe holiday commemorates the 69th anniversary of the movement by Muslims on the Indian sub-continent to create a separate country .\tDT NN VBZ DT JJ NN IN DT NN IN NNS IN DT JJ JJ TO VB DT JJ NN .\nOne of the most powerful women in U.S. business has been forced out of her job as chief executive of the huge , high-tech Hewlett-Packard company .\tCD IN DT RBS JJ NNS IN NNP NN VBZ VBN VBN IN IN PRP$ NN IN JJ NN IN DT JJ , JJ NNP NN .\nCarly Fiorina stepped down Wednesday after six years at the helm , citing differences with the board of directors over the company 's strategy .\tNNP NNP VBD RP NNP IN CD NNS IN DT NN , VBG NNS IN DT NN IN NNS IN DT NN POS NN .\nHP is the world 's second largest personal computer maker and operates a highly profitable printer business .\tNNP VBZ DT NN POS JJ JJS JJ NN NN CC VBZ DT RB JJ NN NN .\nMs. Fiorina pushed HP to merge with rival Compaq , saying the merger would bring increased scale , efficiency , and profit .\tNNP NNP VBD NNP TO VB IN JJ NNP , VBG DT NN MD VB VBN NN , NN , CC NN .\nBut some investors and analysts say the result was disappointing .\tCC DT NNS CC NNS VBP DT NN VBD JJ .\nChief Financial Officer Robert Wayman was named interim CEO .\tNNP NNP NNP NNP NNP VBD VBN JJ NN .\nA district court in Belarus has sentenced a political opposition figure to 15 days in jail on charges resisting police forces .\tDT NN NN IN NNP VBZ VBN DT JJ NN NN TO CD NNS IN NN IN NNS VBG NN NNS .\nSyarhei Antonchyk was sentenced Friday - one day after several other opposition figures were given similar sentences , all of which will keep them imprisoned until after the presidential election , set for March 19\tNNP NNP VBD VBN NNP : CD NN IN JJ JJ NN NNS VBD VBN JJ NNS , DT IN WDT MD VB PRP VBN IN IN DT JJ NN , VBN IN NNP CD\nThursday , a Minsk court sentenced Vintsuk Vyachorka , leader of the Belarus Popular Front , for taking part in what it called an unsanctioned demonstration .\tNNP , DT NNP NN VBD NNP NNP , NN IN DT NNP NNP NNP , IN VBG NN IN WP PRP VBD DT JJ NN .\nPolice detained him and other campaign staff members of opposition presidential candidate Alexander Milinkevich Wednesday after an opposition rally in the Belarusian capital .\tNNS VBD PRP CC JJ NN NN NNS IN NN JJ NN NNP NNP NNP IN DT NN NN IN DT JJ NN .\nPresident Alexander Lukashenko has ruled the former Soviet republic since 1994 , and is seeking a third term .\tNNP NNP NNP VBZ VBN DT JJ JJ NN IN CD , CC VBZ VBG DT JJ NN .\nThe West has criticized his human rights record and quashing of political opposition .\tDT NNP VBZ VBN PRP$ JJ NNS NN CC VBG IN JJ NN .\nThe United States has called Mr. Lukashenko Europe 's last dictator .\tDT NNP NNP VBZ VBN NNP NNP NNP POS JJ NN .\nFrench and Iraqi officials say a French engineer kidnapped last month in Baghdad has been freed .\tJJ CC JJ NNS VBP DT JJ NN VBN JJ NN IN NNP VBZ VBN VBN .\nIraq Interior Ministry officials and police say Bernard Planche was found Sunday near a security checkpoint , west of Baghdad .\tNNP NNP NNP NNS CC NNS VBP NNP NNP VBD VBN NNP IN DT NN NN , NN IN NNP .\nMr. Planche was abducted Thursday from his home in Baghdad .\tNNP NNP VBD VBN NNP IN PRP$ NN IN NNP .\nThe kidnappers had threatened to kill him if France did not end what they called its ' illegitimate presence ' in Iraq .\tDT NNS VBD VBN TO VB PRP IN NNP VBD RB VB WP PRP VBD PRP$ `` JJ NN `` IN NNP .\nThe engineer 's release comes a day after an American journalist was kidnapped in Baghdad .\tDT NN POS NN VBZ DT NN IN DT JJ NN VBD VBN IN NNP .\nMeanwhile , the U.S. military says five Marines were killed in separate insurgent attacks in Iraq Sunday and Saturday .\tRB , DT NNP NN VBZ CD NNS VBD VBN IN JJ JJ NNS IN NNP NNP CC NNP .\nOn the political front , Iraqi President Jalal Talabani says leaders of the country 's political parties have agreed in principle to form a national unity government .\tIN DT JJ NN , JJ NNP NNP NNP VBZ NNS IN DT NN POS JJ NNS VBP VBN IN NN TO VB DT JJ NN NN .\nPro-Taleban militants have released at least 30 of nearly 250 Pakistani soldiers abducted near the Afghan border in late August .\tJJ NNS VBP VBN IN JJS CD IN RB CD JJ NNS VBN IN DT JJ NN IN JJ NNP .\nThe militants freed the soldiers early Saturday in the South Waziristan tribal region .\tDT NNS VBD DT NNS JJ NNP IN DT NNP NNP JJ NN .\nLast month , pro-Taleban militants handed over at least 25 of the captured soldiers to a tribal council of elders ( or jirga ) near Wana , the main town in South Waziristan .\tJJ NN , JJ NNS VBD RP IN JJS CD IN DT VBN NNS TO DT JJ NN IN NNS LRB CC NN RRB IN NNP , DT JJ NN IN NNP NNP .\nThe militants have demanded that Pakistani security forces release detained fighters and pull out of the tribal region in return for freeing more soldiers .\tDT NNS VBP VBN IN JJ NN NNS VBP VBN NNS CC VB IN IN DT JJ NN IN NN IN VBG JJR NNS .\nThe capture of the troops has been an embarrassment for Pakistan 's army as it struggles to contain a recent upsurge in violence near the Afghan border .\tDT NN IN DT NNS VBZ VBN DT NN IN NNP POS NN IN PRP VBZ TO VB DT JJ NN IN NN IN DT JJ NN .\nThe violence follows the collapse of a peace deal in July between Pakistan 's government and pro-Taleban tribesmen .\tDT NN VBZ DT NN IN DT NN NN IN NNP IN NNP POS NN CC JJ NNS .\nTibet 's spiritual leader , the Dalai Lama , has expressed condolences for Pope John Paul , saying he had great respect and admiration for the Catholic leader .\tNNP POS JJ NN , DT NNP NNP , VBZ VBN NNS IN NNP NNP NNP , VBG PRP VBD JJ NN CC NN IN DT JJ NN .\nThe Dalai Lama said the pope 's experience in Communist Poland helped give him a clear understanding of conditions in Tibet under Chinese rule .\tDT NNP NNP VBD DT NN POS NN IN NNP NNP VBD VB PRP DT JJ NN IN NNS IN NNP IN JJ NN .\nThe Tibetan leader said he developed a close personal friendship with the pontiff , after meeting on several occasions .\tDT JJ NN VBD PRP VBD DT JJ JJ NN IN DT NN , IN VBG IN JJ NNS .\nThe Dalai Lama also praised John Paul for his mission to bring peace to the world and his frequent travels , despite the pontiff 's failing health .\tDT NNP NNP RB VBD NNP NNP IN PRP$ NN TO VB NN TO DT NN CC PRP$ JJ NNS , IN DT NN POS VBG NN .\nHe says he and the pope shared a keen interest in promoting harmony among different religious traditions in an effort to spread a unified message of peace .\tPRP VBZ PRP CC DT NN VBD DT JJ NN IN VBG NN IN JJ JJ NNS IN DT NN TO VB DT JJ NN IN NN .\nNepal 's Maoist rebels have called for an indefinite nationwide strike as part of their campaign against the royalist government .\tNNP POS NNP NNS VBP VBN IN DT JJ JJ NN IN NN IN PRP$ NN IN DT NN NN .\nA statement released Saturday said the strike will begin April 3 .\tDT NN VBN NNP VBD DT NN MD VB NNP CD .\nRebel leaders say the strike will be preceded by a blockade of the capital , Kathmandu , on March 14 .\tNN NNS VBP DT NN MD VB VBN IN DT NN IN DT NN , NNP , IN NNP CD .\nKing Gyanendra seized absolute power a year ago , saying the move was necessary to curb the Maoist rebellion .\tNNP NNP VBD JJ NN DT NN RB , VBG DT NN VBD JJ TO VB DT NNP NN .\nSome 13,000 people have died in the insurgency since 1996 .\tDT CD NNS VBP VBN IN DT NN IN CD .\nElections held earlier this month were marred by low voter turnout and allegations by several countries , including India , Japan , Britain and the United States , who all said the vote was flawed .\tNNS VBN RBR DT NN VBD VBN IN JJ NN NN CC NNS IN JJ NNS , VBG NNP , NNP , NNP CC DT NNP NNPS , WP DT VBD DT NN VBD VBN .\nSeven major opposition parties boycotted the vote , and the election sparked almost daily anti-government demonstrations .\tCD JJ NN NNS VBD DT NN , CC DT NN VBD RB JJ NN NNS .\nChinese health officials say a 44-year-old woman from southern China has died from the deadly strain of the bird flu virus .\tJJ NN NNS VBP DT JJ NN IN JJ NNP VBZ VBN IN DT JJ NN IN DT NN NN NN .\nA statement on the Web site of the Health Department of Guangdong province identified the woman as a migrant worker from Shanwei City in Sichuan province .\tDT NN IN DT NNP NN IN DT NNP NNP IN NNP NN VBD DT NN IN DT NN NN IN NNP NNP IN NNP NN .\nThe statement said the woman tested positive for the H5N1 strain of the disease and that she became ill after contact with dead poultry suspected of having the virus .\tDT NN VBD DT NN VBD JJ IN DT NNP NN IN DT NN CC IN PRP VBD JJ IN NN IN JJ NN VBN IN VBG DT NN .\nIt also said that no one else who has come into contact with the woman has shown any symptoms of the virus .\tPRP RB VBD IN DT CD NN WP VBZ VBN IN NN IN DT NN VBZ VBN DT NNS IN DT NN .\nChina 's central Health Ministry in Beijing has yet to comment on the case .\tNNP POS JJ NNP NNP IN NNP VBZ RB TO VB IN DT NN .\nChina has reported two other bird flu deaths this year .\tNNP VBZ VBN CD JJ NN NN NNS DT NN .\nThe World Health Organization says China has had 19 bird flu deaths and 29 cases since the outbreak began in 2003 .\tDT NNP NNP NNP VBZ NNP VBZ VBN CD NN NN NNS CC CD NNS IN DT NN VBD IN CD .\nU.S. Defense Secretary Donald Rumsfeld says Central American democracies must work together to fight drug trafficking , smuggling , hostage-taking , terrorism and gang violence .\tNNP NNP NNP NNP NNP VBZ NNP NNP NNS MD VB RB TO VB NN NN , NN , NN , NN CC NN NN .\nMr. Rumsfeld is hosting a two-day conference in Miami on regional security cooperation with defense ministers from seven Central American countries .\tNNP NNP VBZ VBG DT JJ NN IN NNP IN JJ NN NN IN NN NNS IN CD JJ JJ NNS .\nThe Defense Department says the meeting is meant to strengthen Central America 's group identity and capabilities .\tDT NNP NNP VBZ DT NN VBZ VBN TO VB NNP NNP POS NN NN CC NNS .\nIn addition to the topics Mr. Rumsfeld listed , ministers are discussing maritime security and the formation of a regional peacekeeping unit and a rapid response force for coping with disasters .\tIN NN TO DT NNS NNP NNP VBD , NNS VBP VBG JJ NN CC DT NN IN DT JJ NN NN CC DT JJ NN NN IN VBG IN NNS .\nThe ministers may also address the role improved security can play in promoting economic development .\tDT NNS MD RB VB DT NN VBD NN MD VB IN VBG JJ NN .\nParticipants include ministers from Guatemala , Honduras , El Salvador , Nicaragua , Belize , Costa Rica , and Panama .\tNNS VBP NNS IN NNP , NNP , NNP NNP , NNP , NNP , NNP NNP , CC NNP .\nMexico and several other countries were expected to send observers .\tNNP CC JJ JJ NNS VBD VBN TO VB NNS .\nAn exiled Iranian opposition group has accused a well-known Pakistani scientist of giving Tehran weapons grade uranium in 2001 .\tDT VBN JJ NN NN VBZ VBN DT JJ JJ NN IN VBG JJ NNS NN NN IN CD .\nFarid Soleiman , a spokesman for the group , National Council of Resistance of Iran , made the comment Wednesday to reporters in Vienna , the home of the International Atomic Energy Agency .\tNNP NNP , DT NN IN DT NN , NNP NNP IN NNP IN NNP , VBD DT NN NNP TO NNS IN NNP , DT NN IN DT NNP NNP NNP NNP .\nHe said the enriched uranium in question was given to Iran by Abdul Qadeer Khan , who built Pakistan 's nuclear bomb .\tPRP VBD DT VBN NN IN NN VBD VBN TO NNP IN NNP NNP NNP , WP VBD NNP POS JJ NN .\nMr. Khan ran a global nuclear black market that supplied Libya , North Korea and Iran with nuclear technology until it was shut down this year .\tNNP NNP VBD DT JJ JJ JJ NN WDT VBD NNP , NNP NNP CC NNP IN JJ NN IN PRP VBD VBN RB DT NN .\nThe Iranian opposition group also said Iran has been conducting secret nuclear activities at sites unknown to international inspectors .\tDT JJ NN NN RB VBD NNP VBZ VBN VBG JJ JJ NNS IN NNS JJ TO JJ NNS .\nInternational Atomic Energy Agency officials and the government of Iran have yet to respond to the accusations .\tNNP NNP NNP NNP NNS CC DT NN IN NNP VBP RB TO VB TO DT NNS .\nA European Union court has upheld sanctions imposed on U.S. software giant Microsoft by a European anti-trust commission .\tDT NNP NNP NN VBZ VBN NNS VBN IN NNP NN NN NNP IN DT JJ JJ NN .\nThe Luxembourg-based European Court of First Instance announced the decision Wednesday .\tDT JJ NNP NNP IN NNP NNP VBD DT NN NNP .\nMicrosoft said after the ruling it still hopes to reach a settlement with the anti-trust authorities .\tNNP VBD IN DT NN PRP RB VBZ TO VB DT NN IN DT JJ NNS .\nIn March , the EU competition commission ruled Microsoft had abused its position in the market by only offering a version of Windows with Media Player .\tIN NNP , DT NNP NN NN VBD NNP VBD VBN PRP$ NN IN DT NN IN RB VBG DT NN IN NNS IN NNP NNP .\nThe commission said this shut out competitors who produced servers and media player programs .\tDT NN VBD DT VBD RP NNS WP VBD NNS CC NNS NN NNS .\nIt ordered the company to market a version of Windows without Media Player software and to share more information with competitors .\tPRP VBD DT NN TO VB DT NN IN NNP IN NNP NNP NN CC TO VB RBR NN IN NNS .\nBritish military officials in Iraq say three British soldiers have been killed in a suspected roadside bombing in the southern part of the country .\tJJ JJ NNS IN NNP VBP CD JJ NNS VBP VBN VBN IN DT JJ NN VBG IN DT JJ NN IN DT NN .\nThe British command says the attack occurred early Saturday in the city of Amarah , north of Basra .\tDT JJ NN VBZ DT NN VBD JJ NNP IN DT NN IN NNP , NN IN NNP .\nThe combat deaths were the first for British forces in Iraq in months .\tDT NN NNS VBD DT JJ IN JJ NNS IN NNP IN NNS .\nBritish forces , based in the mainly Shi'ite south , have suffered far fewer losses than the much larger U.S. force fighting Sunni Arab insurgents and foreign fighters in the rest of Iraq .\tJJ NNS , VBN IN DT RB JJ NN , VBP VBN RB JJR NNS IN DT JJ JJR NNP NN VBG NNP NNP NNS CC JJ NNS IN DT NN IN NNP .\nTwo United Nations agencies are warning that North Korea is still struggling with severe food shortages , despite enjoying its best harvest in a decade .\tCD NNP NNPS NNS VBP VBG IN NNP NNP VBZ RB VBG IN JJ NN NNS , IN VBG PRP$ JJS NN IN DT NN .\nThe World Food Program and the Food and Agriculture Organization said Tuesday that 6.4 million North Koreans - more than a quarter of its population - will require international food aid in 2005 .\tDT NNP NNP NNP CC DT NNP CC NNP NNP VBD NNP IN CD CD NNP NNS : JJR IN DT NN IN PRP$ NN : MD VB JJ NN NN IN CD .\nThe agencies also noted a sharp rise in North Korean food prices , saying the cost of rice came to about 30 percent of a typical North Korean monthly wage .\tDT NNS RB VBD DT JJ NN IN JJ JJ NN NNS , VBG DT NN IN NN VBD TO IN CD NN IN DT JJ JJ JJ JJ NN .\nExperts blame much of the problem on Pyongyang 's mismanagement of agriculture .\tNNS VBP NN IN DT NN IN NNP POS NN IN NN .\nThe World Food Program has provided more than one billion dollars in food aid to North Korea since 1995 .\tDT NNP NNP NNP VBZ VBN JJR IN CD CD NNS IN NN NN TO NNP NNP IN CD .\nA senior NATO official says member nations face a growing threat of attack by long-range missiles .\tDT JJ NNP NN VBZ NN NNS VBP DT VBG NN IN NN IN JJ NNS .\nNATO 's Assistant Secretary General for Defense Investment , Marshall Billingslea , Wednesday urged officials to consider ways to address such a threat , including the creation of a missile defense system .\tNNP POS NNP NNP NNP IN NNP NNP , NNP NNP , NNP VBD NNS TO VB NNS TO VB PDT DT NN , VBG DT NN IN DT NN NN NN .\nBillingslea did not say which nations pose a security threat to NATO members , nor did he elaborate upon the current threat level .\tNNP VBD RB VB WDT NNS VBP DT NN NN TO NNP NNS , CC VBD PRP VB IN DT JJ NN NN .\nThe comments came as Billingslea presented a 10,000 page report on the subject of threats and defense systems to NATO officials .\tDT NNS VBD IN NNP VBD DT CD NN NN IN DT NN IN NNS CC NN NNS TO NNP NNS .\nBillingslea says the study , commissioned in 2002 , found that a missile defense shield would be technically and financially feasible .\tNNP VBZ DT NN , VBN IN CD , VBD IN DT NN NN NN MD VB RB CC RB JJ .\nIndia will proceed with plans to help build a pipeline from Iran even though that nation is facing international sanctions because of its nuclear activities .\tNNP MD VB IN NNS TO VB VB DT NN IN NNP RB IN DT NN VBZ VBG JJ NNS IN IN PRP$ JJ NNS .\nIndia reaffirmed it 's commitment to the project Saturday during Indian Foreign Minister Natwar Singh 's visit to Tehran .\tNNP VBD PRP VBZ NN TO DT NN NNP IN JJ NNP NNP NNP NNP POS NN TO NNP .\nHe is expected to leave the country on Sunday .\tPRP VBZ VBN TO VB DT NN IN NNP .\nFollowing talks with his Iranian counterpart ( Manouchehr Mottaki ) , Mr. Singh said he hopes oil ministers from Iran , India and Pakistan can hold a joint meeting to finalize the pipeline deal before the end of the year .\tVBG NNS IN PRP$ JJ NN LRB NNP NNP RRB , NNP NNP VBD PRP VBZ NN NNS IN NNP , NNP CC NNP MD VB DT JJ NN TO VB DT NN NN IN DT NN IN DT NN .\nMr. Singh also announced plans for a joint commission meeting in March 2006 to review bilateral relations between India and Iran .\tNNP NNP RB VBD NNS IN DT JJ NN NN IN NNP CD TO VB JJ NNS IN NNP CC NNP .\nThe United States and the European Union suspect Iran is using its nuclear program to develop atomic weapons , which Iran has denied .\tDT NNP NNPS CC DT NNP NNP NN NNP VBZ VBG PRP$ JJ NN TO VB JJ NNS , WDT NNP VBZ VBN .\nBroadcasters in the Somali capital , Mogadishu , have gone off the air for 24 hours to protest a government crackdown on independent media .\tNNS IN DT JJ NN , NNP , VBP VBN RP DT NN IN CD NNS TO VB DT NN NN IN JJ NNS .\nThe four local radio stations still operating went silent Monday .\tDT CD JJ NN NNS RB VBG VBD JJ NNP .\nTheir directors say they want to show solidarity with three other stations the government shut down last week .\tPRP$ NNS VBP PRP VBP TO VB NN IN CD JJ NNS DT NN VBD RB JJ NN .\nAuthorities have accused Radio Simba , Radio Banadir and Radio Shabelle of making inflammatory and anti-government broadcasts .\tNNS VBP VBN NNP NNP , NNP NNP CC NNP NNP IN VBG JJ CC JJ NNS .\nThe government has also ordered all Somali media houses to register with the government or face closure .\tDT NN VBZ RB VBN DT JJ NNS NNS TO VB IN DT NN CC NN NN .\nMedia advocacy groups like Reporters Without Borders have strongly criticized the moves , saying the government is trying to censor unwelcome news .\tNNS NN NNS IN NNS IN NNS VBP RB VBN DT NNS , VBG DT NN VBZ VBG TO VB JJ NN .\nThe closed stations have reported regularly on the violence in Mogadishu between insurgents and Ethiopian troops backing the Somali interim government .\tDT JJ NNS VBP VBN RB IN DT NN IN NNP IN NNS CC JJ NNS VBG DT JJ JJ NN .\nThe fighting over the past 11 months has killed thousands , and prompted hundreds of thousands more to flee the Somali capital .\tDT NN IN DT JJ CD NNS VBZ VBN NNS , CC VBD NNS IN NNS RBR TO VB DT JJ NN .\nDeep into the mountain state of West Virginia , a group of volunteers is determined to restore nature the way it was a century ago , before mining , logging and fires changed the landscape .\tNNP IN DT NN NN IN NNP NNP , DT NN IN NNS VBZ VBN TO VB NN DT NN PRP VBD DT NN RB , IN NN , VBG CC NNS VBD DT NN .\nTo do so , thousands of native trees are being planted .\tTO VB RB , NNS IN JJ NNS VBP VBG VBN .\nProducer Zulima Palacio prepared the story .\tNN NNP NNP VBD DT NN .\nIraqi insurgents have threatened to kill a kidnapped U.S. journalist unless female prisoners in Iraq are released within 72 hours .\tJJ NNS VBP VBN TO VB DT VBN NNP NN IN JJ NNS IN NNP VBP VBN IN CD NNS .\nThe kidnappers made the threat in a new videotape shown Tuesday by Arab satellite broadcaster al-Jazeera .\tDT NNS VBD DT NN IN DT JJ NN VBN NNP IN JJ NN NN NNP .\nThe tape also showed the journalist , Jill Carroll , speaking , but her voice could not be heard .\tDT NN RB VBD DT NN , NNP NNP , NN , CC PRP$ NN MD RB VB VBN .\nGunmen seized Carroll and killed her Iraqi interpreter in an attack in Baghdad earlier this month .\tNNS VBD NNP CC VBD PRP$ JJ NN IN DT NN IN NNP RBR DT NN .\nIn Washington , a State Department spokesman said officials are making every effort to secure Carroll 's release .\tIN NNP , DT NNP NNP NN VBD NNS VBP VBG DT NN TO VB NNP POS NN .\nMeanwhile , gunmen in the northern Iraqi city of Kirkuk killed at least one person in an attack on the offices of a Kurdish group .\tRB , NNS IN DT JJ JJ NN IN NNP VBD IN JJS CD NN IN DT NN IN DT NNS IN DT JJ NN .\nAnd Iraq 's military called on Iran to release nine coast guard sailors seized in a dispute on the Shatt al-Arab waterway .\tCC NNP POS JJ VBN IN NNP TO VB CD NN NN NNS VBD IN DT NN IN DT NNP NNP NN .\nRussia 's state-owned oil firm Rosneft has installed one of its senior executives as head of Yuganskneftegas , a key unit of dismantled oil empire Yukos .\tNNP POS JJ NN NN NNP VBZ VBN CD IN PRP$ JJ NNS IN NN IN NNP , DT JJ NN IN JJ NN NN NNP .\nRosneft said Friday it has registered its ownership of Yuganskneftegas and named Vladimir Bulba as company chief .\tNNP VBD NNP PRP VBZ VBN PRP$ NN IN NNP CC VBN NNP NNP IN NN NN .\nLast Sunday , the mysterious Baikal Group picked up the Yukos subsidiary at a government auction for about half of what analysts said it was worth .\tJJ NNP , DT JJ NNP NNP VBD RP DT NNP NN IN DT NN NN IN IN NN IN WP NNS VBD PRP VBD JJ .\nIn turn , Rosneft bought Baikal last week .\tIN NN , NNP VBD NNP JJ NN .\nNext month , Rosneft and another state-owned energy firm , Gazprom , are expected to merge .\tJJ NN , NNP CC DT JJ NN NN , NNP , VBP VBN TO VB .\nThe Russian government ordered the sale of Yukos assets to recover what it says are more than $ 25 billion in back taxes by the company .\tDT JJ NN VBD DT NN IN NNP NNS TO VB WP PRP VBZ VBP JJR IN $ CD CD IN JJ NNS IN DT NN .\nCritics of the Kremlin have called the move payback for political activities by Yukos founder Mikhail Khodorkovsky , who is now in prison .\tNNS IN DT NNP VBP VBN DT NN NN IN JJ NNS IN NNP NN NNP NNP , WP VBZ RB IN NN .\nThe Kremlin has denied the charge .\tDT NNP VBZ VBN DT NN .\nThe World Health Organization says it has confirmed 160 human cases of bird flu worldwide .\tDT NNP NNP NNP VBZ PRP VBZ VBN CD JJ NNS IN NN NN NN .\nA statement from the United Nations health agency Tuesday said 85 of those infected have died , including four people in Turkey .\tDT NN IN DT NNP NNP NN NN NNP VBD CD IN DT VBN VBP VBN , VBG CD NNS IN NNP .\nThe WHO also said it is sending a team of specialists to northern Iraq to investigate possible bird flu cases there .\tDT NNP RB VBD PRP VBZ VBG DT NN IN NNS TO JJ NNP TO VB JJ NN NN NNS RB .\nIraqi health minister said Monday that a girl who died earlier this month in the Kurdish city of Sulaymaniya , near the border with Turkey and Iran , had the deadly H5N1 strain of bird flu .\tJJ NN NN VBD NNP IN DT NN WP VBD RBR DT NN IN DT JJ NN IN NNP , IN DT NN IN NNP CC NNP , VBD DT JJ NNP NN IN NN NN .\nIraqi officials are on high alert to try to prevent the virus from becoming established .\tJJ NNS VBP IN JJ NN TO VB TO VB DT NN IN VBG VBN .\nAuthorities are destroying hundreds of thousands of birds and have quarantined a number of people who have symptoms of the disease .\tNNS VBP VBG NNS IN NNS IN NNS CC VBP VBN DT NN IN NNS WP VBP NNS IN DT NN .\nThe Palestinian parliament has passed a new electoral law , removing an obstacle that had delayed elections for a new legislature .\tDT JJ NN VBZ VBN DT JJ JJ NN , VBG DT NN WDT VBD VBN NNS IN DT JJ NN .\nThe new law creates a mixed electoral system , with half the lawmakers to be chosen by districts and the other half to be chosen from a national slate of party candidates .\tDT JJ NN VBZ DT JJ JJ NN , IN PDT DT NNS TO VB VBN IN NNS CC DT JJ NN TO VB VBN IN DT JJ NN IN NN NNS .\nDifferences over the voting system led to the postponement earlier this month of elections that had been scheduled for mid-July .\tNNS IN DT NN NN VBD TO DT NN RBR DT NN IN NNS WDT VBD VBN VBN IN NN .\nThere is no word yet on a date for re-scheduled elections .\tEX VBZ DT NN RB IN DT NN IN JJ NNS .\nIsraeli Prime Minister Ariel Sharon has arrived in the United States , seeking President Bush 's strong endorsement for Israel 's scheduled withdrawal from the Gaza Strip .\tJJ NNP NNP NNP NNP VBZ VBN IN DT NNP NNPS , VBG NNP NNP POS JJ NN IN NNP POS VBN NN IN DT NNP NNP .\nThe two leaders are to meet Monday at the president 's Texas ranch , for talks also expected to focus on Israel 's plan to expand its largest West Bank settlement .\tDT CD NNS VBP TO VB NNP IN DT NN POS NNP NN , IN NNS RB VBN TO VB IN NNP POS NN TO VB PRP$ JJS NNP NNP NN .\nIsrael insists on building 3,500 new homes in the Maale Adumim settlement near Jerusalem .\tNNP VBZ IN NN CD JJ NNS IN DT NNP NNP NN IN NNP .\nBut U.S. officials have said the plan is at odds with the U.S.-backed ' roadmap ' for peace between Israel and the Palestinians .\tCC NNP NNS VBP VBN DT NN VBZ IN NNS IN DT JJ `` NN `` IN NN IN NNP CC DT NNS .\nIn Jerusalem , Israeli police deployed in force Sunday to head off ultranationalist Jews who threatened to occupy a site sacred to Muslims and Jews .\tIN NNP , JJ NN VBD IN NN NNP TO VB RP JJ NNPS WP VBD TO VB DT NN VBN TO NNPS CC NNPS .\nAuthorities say about 200 protesters were blocked from entering the hill-top compound known to Muslims as the Nobel Sanctuary and to Jews as the Temple Mount .\tNNS VBP IN CD NNS VBD VBN IN VBG DT JJ NN VBN TO NNPS IN DT NNP NNP CC TO NNPS IN DT NNP NNP .\nThe U.S. military in Afghanistan says four coalition and four Afghan soldiers have been wounded in separate explosions in the eastern and southern parts of the country .\tDT NNP NN IN NNP VBZ CD NN CC CD JJ NNS VBP VBN VBN IN JJ NNS IN DT JJ CC JJ NNS IN DT NN .\nA military spokesman says the coalition troops were wounded when their vehicle was hit by a roadside bomb in the Khogyani district of eastern Nangarhar province .\tDT JJ NN VBZ DT NN NNS VBD VBN WRB PRP$ NN VBD VBN IN DT NN NN IN DT NNP NN IN JJ NNP NN .\nNo details of the soldiers ' nationalities nor the extent of their wounds were given .\tDT NNS IN DT NNS POS NNS CC DT NN IN PRP$ NNS VBD VBN .\nHours later , in southern Zabul province , a similar explosion wounded four Afghan soldiers on patrol .\tNNS RB , IN JJ NNP NN , DT JJ NN VBD CD JJ NNS IN NN .\nMeanwhile , Afghan President Hamid Karzai has ordered an investigation into the killings of eight Afghans , including a child , by U.S.-led coalition forces in Kunar province on Thursday .\tRB , JJ NNP NNP NNP VBZ VBN DT NN IN DT NNS IN CD NNS , VBG DT NN , IN JJ NN NNS IN NNP NN IN NNP .\nAfghan and U.S.-led forces say the dead were suspected al-Qaida militants , but local authorities say they were civilians who had no connection to the terror network .\tJJ CC JJ NNS VBP DT NN VBD VBN NNP NNS , CC JJ NNS VBP PRP VBD NNS WP VBD DT NN TO DT NN NN .\nThe White House says President Bush will travel to Argentina , Brazil and Panama next month .\tDT NNP NNP VBZ NNP NNP MD VB TO NNP , NNP CC NNP JJ NN .\nA statement issued Wednesday said the president will visit Argentina from November 3 through 5 to meet with President Nestor Carlos Kirchner , and to attend the Summit of the Americas in Mar del Plata .\tDT NN VBN NNP VBD DT NN MD VB NNP IN NNP CD IN CD TO VB IN NNP NNP NNP NNP , CC TO VB DT NN IN DT NNPS IN NNP NNP NNP .\nThat summit will bring together 34 democratically elected heads of state and government from North , Central and South America .\tDT NN MD VB RB CD RB VBN NNS IN NN CC NN IN NNP , NNP CC NNP NNP .\nThe White House says Mr. Bush will promote open markets , free trade and what it calls the ' consolidation of democracy ' in the region .\tDT NNP NNP VBZ NNP NNP MD VB JJ NNS , JJ NN CC WP PRP VBZ DT `` NN IN NN `` IN DT NN .\nAfterward , Mr. Bush is to visit Brazil on November 5 and 6 at the invitation of President Luiz Inacio Lula da Silva .\tRB , NNP NNP VBZ TO VB NNP IN NNP CD CC CD IN DT NN IN NNP NNP NNP NNP NNP NNP .\nHe then is expected to go to Panama to meet with President Martin Torrijos Espino .\tPRP RB VBZ VBN TO VB TO NNP TO VB IN NNP NNP NNP NNP .\nNepal 's royal government has imposed a day-time curfew in Kathmandu and its suburbs on Friday after an opposition alliance said it will hold a pro-democracy rally on that day .\tNNP POS JJ NN VBZ VBN DT JJ NN IN NNP CC PRP$ NNS IN NNP IN DT NN NN VBD PRP MD VB DT JJ NN IN DT NN .\nPolice have also rounded up nearly 80 political activists and cut off cell phone communications ahead of the rally .\tNNS VBP RB VBN RP RB CD JJ NNS CC VB RP NN NN NNS RB IN DT NN .\nBut political activists say hundreds of people have been detained .\tCC JJ NNS VBP NNS IN NNS VBP VBN VBN .\nIndia , Japan , the United Nations and the European Union have expressed concern about the arrests and restrictions , calling them regrettable .\tNNP , NNP , DT NNP NNPS CC DT NNP NNP VBP VBN NN IN DT NNS CC NNS , VBG PRP JJ .\nNepal 's Home Minister Kamal Thapa says the arrests were a protective move to prevent Maoist rebels from infiltrating the protest and inciting violence .\tNNP POS NNP NNP NNP NNP VBZ DT NNS VBD DT JJ NN TO VB JJ NNS IN VBG DT NN CC VBG NN .\nAn alliance of seven political parties has called for the rally despite a government ban and Maoist rebels have been urging support for the protest .\tDT NN IN CD JJ NNS VBZ VBN IN DT NN IN DT NN NN CC JJ NNS VBP VBN VBG NN IN DT NN .\nThe king fired the elected parliament and seized absolute power last February .\tDT NN VBD DT VBN NN CC VBD JJ NN JJ NNP .\nPope Benedict says the anniversary of the 2001 September 11 attacks on the United States should be a day to remember all victims of terrorism .\tNNP NNP VBZ DT NN IN DT CD NNP CD NNS IN DT NNP NNPS MD VB DT NN TO VB DT NNS IN NN .\nThe pope Sunday called for all people to , in his words , ' renounce hatred and build a world of justice , solidarity , and peace . '\tDT NN NNP VBD IN DT NNS TO , IN PRP$ NNS , `` VB NN CC VB DT NN IN NN , NN , CC NN . ``\nThe Roman Catholic leader made his comments to pilgrims gathered outside his summer residence in Castelgandolfo near Rome to hear his weekly blessing .\tDT NNP NNP NN VBD PRP$ NNS TO NNS VBN IN PRP$ NN NN IN NNP IN NNP TO VB PRP$ JJ NN .\nU.S. Secretary of Defense Donald Rumsfeld has made a surprise Christmas Eve trip Friday to Iraq , visiting American soldiers wounded in Tuesday 's suicide attack near Mosul .\tNNP NN IN NN NNP NNP VBZ VBN DT NN NNP NNP NN NNP TO NNP , VBG JJ NNS VBN IN NNP POS NN NN IN NNP .\nTwenty-two people were killed and 69 wounded in the attack , and Mr. Rumsfeld awarded medals to some of the injured at a hospital not far from the base .\tCD NNS VBD VBN CC CD VBN IN DT NN , CC NNP NNP VBD NNS TO DT IN DT NN IN DT NN RB RB IN DT NN .\nThe secretary said his trip had been planned before the attack , but was kept secret for security reasons .\tDT NN VBD PRP$ NN VBD VBN VBN IN DT NN , CC VBD VBN JJ IN NN NNS .\nFollowing a stop in Tikrit , Mr. Rumsfeld visited troops near Fallujah , where dozens of American military personnel were killed last month in an offensive to crush insurgents holed up there .\tVBG DT NN IN NNP , NNP NNP VBD NNS IN NNP , WRB NNS IN JJ JJ NNS VBD VBN JJ NN IN DT JJ TO VB NNS VBD RB RB .\nThe U.S. military says more than 900 displaced residents returned to Fallujah for the first time Thursday , assisted by U.S. and Iraqi troops who are providing security and humanitarian aid .\tDT NNP NN VBZ JJR IN CD VBN NNS VBD TO NNP IN DT JJ NN NNP , VBN IN NNP CC JJ NNS WP VBP VBG NN CC JJ NN .\nWorld Cup football ( soccer ) champion Brazil has knocked 2006 host Germany out in the semifinals of the Confederations Cup tournament in Nuremberg .\tNNP NNP NN LRB NN RRB NN NNP VBZ VBN CD NN NNP IN IN DT NNS IN DT NNPS NNP NN IN NNP .\nTwo goals by Adriano ( in the 21st and 76th minutes ) and a Ronaldinho penalty gave the Brazilians the 03-Feb victory .\tCD NNS IN NNP LRB IN DT CD CC CD NNS RRB CC DT NNP NN VBD DT NNS DT JJ NN .\nBrazil had the lead twice at the Frankenstadion , but Germany was able to even the match on a goal from Lukas Podolski ( 23rd minute ) and Michael Ballack 's penalty kick ( in the 48th minute ) .\tNNP VBD DT NN RB IN DT NNP , CC NNP VBD JJ TO VB DT NN IN DT NN IN NNP NNP LRB JJ NN RRB CC NNP NNP POS NN NN LRB IN DT JJ NN RRB .\nHowever , Adriano scored the game winning goal to put Brazil into the final against the winner of Sunday 's semifinal between Mexico and Argentina .\tRB , NNP VBD DT NN VBG NN TO VB NNP IN DT NN IN DT NN IN NNP POS NN IN NNP CC NNP .\nGermany will play the loser of the Mexico-Argentina match for third place in Leipzig .\tNNP MD VB DT NN IN DT NNP NN IN JJ NN IN NNP .\nThe final is in Frankfurt Wednesday .\tDT JJ VBZ IN NNP NNP .\nUkraine and Russia have signed an agreement to create a joint venture to deliver Russian and Central Asian gas to Ukraine .\tNNP CC NNP VBP VBN DT NN TO VB DT JJ NN TO VB JJ CC JJ JJ NN TO NNP .\nThe agreement ended a bitter price dispute between the two countries , which led to a brief Russian cut off of natural gas deliveries to Ukraine New Year 's Day .\tDT NN VBD DT JJ NN NN IN DT CD NNS , WDT VBD TO DT JJ JJ NN IN IN JJ NN NNS TO NNP NNP NNP POS NN .\nUnder the deal , the new venture , UkrGazEnergo will oversee gas sales to Ukrainian consumers .\tIN DT NN , DT JJ NN , NNP MD VB NN NNS TO JJ NNS .\nIt will be co-owned by Naftogaz Ukraine and RosUkrEnergo , which is controlled by Russia 's giant natural gas monopoly Gazprom and a group of unidentified investors .\tPRP MD VB VBN IN NNP NNP CC NNP , WDT VBZ VBN IN NNP POS JJ JJ NN NN NNP CC DT NN IN JJ NNS .\nThe agreement calls for Ukraine to pay Russia $ 95 per 1,000 cubic meters of natural gas - nearly twice as much as the previous rate but less than the amount originally charged by Gazprom .\tDT NN VBZ IN NNP TO VB NNP $ CD IN CD JJ NNS IN JJ NN IN RB RB RB JJ IN DT JJ NN CC JJR IN DT NN RB VBN IN NNP .\nTop-seeded Anabel Medina Garrigues of Spain has advanced to the semifinals of the Canberra International women 's tennis tournament in Australia .\tJJ NNP NNP NNP IN NNP VBZ VBN TO DT NNS IN DT NNP NNP NNS POS NN NN IN NNP .\nMedina Garrigues beat Ekaterina Bychkova of Russia , 06-Mar , 06-Apr on Wednesday to advance to the final four .\tNNP NNP VBD NNP NNP IN NNP , CD , CD IN NNP TO VB TO DT JJ CD .\nShe will play number four Shahar Peer of Israel , who bounced back from a first set loss after a three-hour rain delay to beat Japan 's Aiko Nakamura , 02-Jun , 06-Mar , 6-0 .\tPRP MD VB NN CD NNP NNP IN NNP , WP VBD RB IN DT JJ NN NN IN DT JJ NN NN TO VB NNP POS NNP NNP , CD , CD , CD .\nSixth-seeded Catalonia Cassation of Colombia also made it into the semifinals .\tJJ NNP NNP IN NNP RB VBD PRP IN DT NNS .\nShe was leading 05-Feb when her opponent , Julia Scruff of Germany , withdrew due to heat illness .\tPRP VBD VBG CD WRB PRP$ NN , NNP NNP IN NNP , VBD JJ TO NN NN .\nCassation will face South Korea 's Cho Yoon-jeong , who advanced with a 04-Jun , 06-Mar , 06-Mar win over Melinda Czink of Hungary .\tNNP MD VB NNP NNP POS NNP NNP , WP VBD IN DT CD , CD , CD NN IN NNP NNP IN NNP .\nAmerican classical pianist Martin Berkofsky has long impressed music critics around the world with his firebrand virtuosity .\tJJ NN NN NNP NNP VBZ RB VBN NN NNS IN DT NN IN PRP$ NN NN .\nBut as VOA 's Irina Robertson learned when she met recently with Berkovsky , he stopped playing for personal fame 25 years ago and began performing for charitable causes .\tCC IN NNP POS NNP NNP VBD WRB PRP VBD RB IN NNP , PRP VBD VBG IN JJ NN CD NNS RB CC VBD VBG IN JJ NNS .\nScot Riddlesberger narrates the story .\tNNP NNP VBZ DT NN .\nFormer Colombian hostage Ingrid Betancourt has met with Venezuelan President Hugo Chavez to discuss Venezuelan support for freeing other hostages held by rebels in Colombia .\tJJ JJ NN NNP NNP VBZ VBN IN JJ NNP NNP NNP TO VB JJ NN IN VBG JJ NNS VBN IN NNS IN NNP .\nBetancourt met with Mr. Chavez Monday at the presidential palace in Caracas .\tNNP VBD IN NNP NNP NNP IN DT JJ NN IN NNP .\nThe French-Colombian politician has been on a tour of South American countries to solicit regional support for persuading rebels with the Revolutionary Armed Forces of Colombia , or FARC , to release their captives .\tDT JJ NN VBZ VBN IN DT NN IN JJ JJ NNS TO VB JJ NN IN VBG NNS IN DT JJ JJ NNS IN NNP , CC NNP , TO VB PRP$ NNS .\nThe rebels are holding some 700 hostages for ransom or political leverage .\tDT NNS VBP VBG DT CD NNS IN NN CC JJ NN .\nBetancourt 's tour , which began last month , included her native country as well as Ecuador , Brazil , Argentina , Peru , Chile , Bolivia , and now Venezuela .\tNNP POS NN , WDT VBD JJ NN , VBD PRP$ JJ NN RB RB IN NNP , NNP , NNP , NNP , NNP , NNP , CC RB NNP .\nBetancourt was a presidential candidate in Colombia when she was captured by FARC rebels in 2002 .\tNNP VBD DT JJ NN IN NNP WRB PRP VBD VBN IN NNP NNS IN CD .\nShe was held for more than six years before being rescued by the Colombian military in July .\tPRP VBD VBN IN JJR IN CD NNS IN VBG VBN IN DT JJ NN IN NNP .\nThe commander of NATO-led forces in Afghanistan says the alliance is sending thousands of extra troops to the war-torn country .\tDT NN IN JJ NNS IN NNP VBZ DT NN VBZ VBG NNS IN JJ NNS TO DT JJ NN .\nDuring a visit to the southern Afghan city of Kandahar Friday , General David Richards said NATO is committed to the mission in Afghanistan .\tIN DT NN TO DT JJ JJ NN IN NNP NNP , NNP NNP NNP VBD NNP VBZ VBN TO DT NN IN NNP .\nHe said the U.S. would provide part of the increase by extending the tour of more than 3,000 American troops by four months .\tPRP VBD DT NNP MD VB NN IN DT NN IN VBG DT NN IN JJR IN CD JJ NNS IN CD NNS .\nGeneral Richards did not specify which other NATO members would be sending additional forces .\tNNP NNP VBD RB VB WDT JJ NNP NNS MD VB VBG JJ NNS .\nMeanwhile , NATO says it has killed a senior Taleban leader and his deputies in an airstrike along Afghanistan 's southern border with Pakistan .\tRB , NNP VBZ PRP VBZ VBN DT JJ NNP NN CC PRP$ NNS IN DT NN IN NNP POS JJ NN IN NNP .\nThe alliance did not identify the suspected Taleban members killed in the attack .\tDT NN VBD RB VB DT JJ NNP NNS VBN IN DT NN .\nLast month , in the same province , a U.S. airstrike killed the Taleban 's chief of military operations , who was also a close associate of al-Qaida leader Osama bin Laden .\tJJ NN , IN DT JJ NN , DT NNP NN VBD DT NNP POS NN IN JJ NNS , WP VBD RB DT JJ NN IN NNP NN NNP NNP NNP .\nTurkey 's state-run news agency says a court has charged four army officers in connection with an alleged plot to overthrow the government .\tNNP POS JJ NN NN VBZ DT NN VBZ VBN CD NN NNS IN NN IN DT JJ NN TO VB DT NN .\nThe Anatolia news agency said Saturday that the officers - two colonels and two lieutenants - had been charged with belonging to a terrorist organization which , the ruling party says , was seeking to topple Turkey 's Islamic-rooted government .\tDT NNP NN NN VBD NNP IN DT NNS IN CD NNS CC CD NNS : VBD VBN VBN IN VBG TO DT JJ NN WDT , DT VBG NN VBZ , VBD VBG TO VB NNP POS JJ NN .\nThe agency did not release the names of those charged .\tDT NN VBD RB VB DT NNS IN DT VBN .\nOn Friday , Anatolia reported that investigators had found a weapons cache full of missile launchers , plastic explosives , and other weaponry at a state-owned farm outside the capital , Ankara .\tIN NNP , NNP VBD IN NNS VBD VBN DT NNS NN JJ IN NN NNS , JJ NNS , CC JJ NN IN DT JJ NN IN DT NN , NNP .\nEighty-six people , including former army officers , leftist politicians and journalists , are already on trial in the case .\tNNP NNS , VBG JJ NN NNS , JJ NNS CC NNS , VBP RB IN NN IN DT NN .\nProsecutors accuse them of planning assassinations and bombings to sow chaos in Turkey , forcing the army to step in and overthrow the government .\tNNS VBP PRP IN VBG NNS CC NNS TO VB NN IN NNP , VBG DT NN TO VB IN CC VB DT NN .\nUkraine 's president , Victor Yushchenko , has called for closer ties between his country and Ukrainians living abroad in an effort to revive the economy and solidify democracy .\tNNP POS NN , NNP NNP , VBZ VBN IN JJR NNS IN PRP$ NN CC NNS VBG RB IN DT NN TO VB DT NN CC JJ NN .\nPresident Yushchenko Friday presented his concept of cooperation to representatives of ethnic Ukrainians attending a three-day World Forum conference in Kiev .\tNNP NNP NNP VBD PRP$ NN IN NN TO NNS IN JJ NNS VBG DT JJ NNP NNP NN IN NNP .\nHe said about 20 million Ukrainians live in more than 60 countries .\tPRP VBD IN CD CD NNS VBP IN JJR IN CD NNS .\nEthnic Ukrainians abroad often have stronger nationalistic tendencies than those at home .\tNNP NNS RB RB VBP JJR JJ NNS IN DT IN NN .\nThe president urged Ukrainians to abandon the idea of a federal state , which some political groups have proposed for the country divided between Russian-speaking and Ukrainian-speaking populations .\tDT NN VBD NNS TO VB DT NN IN DT JJ NN , WDT DT JJ NNS VBP VBN IN DT NN VBN IN JJ CC JJ NNS .\nMr. Yushchenko said federalism would further split Ukraine .\tNNP NNP VBD NN MD RB VB NNP .\nA U.S.-based global labor advocacy group says Colombia is the world 's most dangerous country for labor activists .\tDT JJ JJ NN NN NN VBZ NNP VBZ DT NN POS RBS JJ NN IN NN NNS .\nThe AFL-CIO Solidarity Center said in a report released Thursday that more trade union members are killed in Colombia each year than in the rest of the world combined .\tDT NNP NNP NNP VBD IN DT NN VBN NNP IN JJR NN NN NNS VBP VBN IN NNP DT NN IN IN DT NN IN DT NN VBN .\nThe Washington-based non-profit group also said about 4,000 trade unionists have been murdered in Colombia since the mid-1980s and that most of the incidents can be directly linked to the victims ' participation in a labor dispute .\tDT JJ JJ NN RB VBD IN CD NN NNS VBP VBN VBN IN NNP IN DT NNS CC IN JJS IN DT NNS MD VB RB VBN TO DT NNS POS NN IN DT NN NN .\nColombian President Alvaro Uribe called the report outdated .\tJJ NNP NNP NNP VBD DT NN VBD .\nThe Colombian leader met Wednesday in Washington with President Bush for talks that covered trade and the fight against illegal drug trafficking .\tDT JJ NN VBD NNP IN NNP IN NNP NNP IN NNS WDT VBD NN CC DT NN IN JJ NN NN .\nBoth presidents said they hoped soon to finalize remaining details of a free trade agreement between their countries so Mr. Bush can submit it to Congress .\tDT NNS VBD PRP VBD RB TO VB VBG NNS IN DT JJ NN NN IN PRP$ NNS IN NNP NNP MD VB PRP TO NNP .\nThey also pledged to continue working together to defeat the drug trade .\tPRP RB VBD TO VB VBG RB TO VB DT NN NN .\nU.S. military officials in Iraq say fighting in the northern city of Mosul has calmed after an intense operation Tuesday to regain police stations and government buildings taken by insurgents last week .\tNNP JJ NNS IN NNP VBP VBG IN DT JJ NN IN NNP VBZ VBN IN DT JJ NN NNP TO VB NN NNS CC NN NNS VBN IN NNS JJ NN .\nOfficials Wednesday said that some pockets of resistance remain as coalition forces work to secure Iraq 's third-largest city .\tNNS NNP VBD IN DT NNS IN NN VBP IN NN NNS VBP TO VB NNP POS JJ NN .\nEarlier today , U.S. and Iraqi forces pounded insurgent positions in Fallujah , in an effort to oust the remaining fighters more than a week after the launch of an offensive there .\tRBR NN , NNP CC JJ NNS VBD JJ NNS IN NNP , IN DT NN TO VB DT VBG NNS RBR IN DT NN IN DT NN IN DT NN RB .\nScattered attacks and car bombings have been reported today in other parts of Iraq , causing an unknown number of casualties .\tJJ NNS CC NN NNS VBP VBN VBN NN IN JJ NNS IN NNP , VBG DT JJ NN IN NNS .\nMeanwhile , family members of CARE International aid worker Margaret Hassan say it appears she has been killed by kidnappers who abducted her last month in Iraq .\tRB , NN NNS IN NNP NNP NN NN NNP NNP VBP PRP VBZ PRP VBZ VBN VBN IN NNS WP VBD PRP$ JJ NN IN NNP .\nPope Benedict encourages priests to embrace new digital media to create deeper forms of relationship with faithful across greater distances Pope Benedict has urged Roman Catholic priests to use the Internet to spread the word of God .\tNNP NNP VBZ NNS TO VB JJ JJ NNS TO VB JJR NNS IN NN IN NN IN JJR NNS NNP NNP VBZ VBN NNP NNP VBZ TO VB DT NN TO VB DT NN IN NNP .\nIn his message Saturday , the pope encouraged priests to embrace the new digital media to create deeper forms of relationship with the faithful across greater distances .\tIN PRP$ NN NNP , DT NN VBD NNS TO VB DT JJ JJ NNS TO VB JJR NNS IN NN IN DT NN IN JJR NNS .\nBut the pontiff also warned that Catholic clergy should be less notable for their media skills than for their vocation .\tCC DT NN RB VBD IN NNP NN MD VB RBR JJ IN PRP$ NNS NNS IN IN PRP$ NN .\nThe pope 's message comes as the church prepares for its annual World Communication Day , May 16 .\tDT NN POS NN VBZ IN DT NN VBZ IN PRP$ JJ NNP NNP NNP , NNP CD .\nThe Vatican has long had a Web site in several languages .\tDT NNP VBZ RB VBN DT NNP NN IN JJ NNS .\nIt has recently created a news channel on the Youtube video sharing site and a Facebook networking site Pope2You .\tPRP VBZ RB VBN DT NN NN IN DT NNP NN NN NN CC DT NNP VBG NN NNP .\nU.S. lawmakers have approved a measure to double the number of U.S. troops in Colombia to 800 .\tNNP NNS VBP VBN DT NN TO VB DT NN IN NNP NNS IN NNP TO CD .\nThe government of Colombian President Alvaro Uribe welcomed the support in its fight against the drug trade and left-wing Marxist rebels .\tDT NN IN JJ NNP NNP NNP VBD DT NN IN PRP$ NN IN DT NN NN CC JJ JJ NNS .\nBut human rights groups criticized the increase , saying more U.S. troops could escalate the violence in the South American country .\tCC JJ NNS NNS VBD DT NN , VBG JJR NNP NNS MD VB DT NN IN DT JJ JJ NN .\nThe U.S. Congress also voted to increase the number of American civilian contractors in Colombia from 400 to 600 .\tDT NNP NNP RB VBD TO VB DT NN IN JJ JJ NNS IN NNP IN CD TO CD .\nThe United States is providing $ 1.3 billion for ' Plan Colombia , ' an initiative launched by Colombia 's government to fight the illegal drug trade , protect human rights , and expand economic development .\tDT NNP NNPS VBZ VBG $ CD CD IN `` NNP NNP , `` DT NN VBN IN NNP POS NN TO VB DT JJ NN NN , VB JJ NNS , CC VB JJ NN .\nThree Pakistan cricketers accused of involvement in a match-fixing scandal are returning home .\tCD NNP NNS VBN IN NN IN DT JJ NN VBP VBG NN .\nLawyers representing test captain Salman Butt , and bowlers Mohammad Asif and Mohammad Amir said their clients are flying back to Pakistan from Britain Friday .\tNNS VBG NN NN NNP NNP , CC NNS NNP NNP CC NNP NNP VBD PRP$ NNS VBP VBG RB TO NNP IN NNP NNP .\nA British tabloid accused the players of taking bribes to intentionally bowl illegal ' no-balls ' during a test match against England last month .\tDT JJ NN VBD DT NNS IN VBG NNS TO RB NN JJ `` NNS `` IN DT NN NN IN NNP JJ NN .\nBritish police questioned the players on September 3 , but so far no charges have been brought against them .\tJJ NN VBD DT NNS IN NNP CD , CC RB RB DT NNS VBP VBN VBN IN PRP .\nCricket 's world authority , the ICC , suspended Butt , Asif and Amir last week pending its own investigation .\tNN POS NN NN , DT NNP , VBD NNP , NNP CC NNP JJ NN VBG PRP$ JJ NN .\nThe three maintain they are innocent .\tDT CD VBP PRP VBP JJ .\nLawyers said the trio has agreed to continue cooperating with British police and would return to London , if required .\tNNS VBD DT NN VBZ VBN TO VB VBG IN JJ NN CC MD VB TO NNP , IN VBN .\nThe World Health Organization is warning that malaria could become resistant to new drugs unless they are used in combination with a second medicine .\tDT NNP NNP NNP VBZ VBG DT NN MD VB JJ TO JJ NNS IN PRP VBP VBN IN NN IN DT JJ NN .\nDr. Pascal Ringwald , a medical officer with the WHO , says it is crucial that the drugs be used correctly .\tNNP NNP NNP , DT JJ NN IN DT NNP , VBZ PRP VBZ JJ IN DT NNS VB VBN RB .\nHe says so far , the U.N. health agency has not discovered any resistance , but that it is monitoring the situation closely .\tPRP VBZ RB RB , DT NNP NN NN VBZ RB VBN DT NN , CC IN PRP VBZ VBG DT NN RB .\nNew malaria-fighting drugs , derived from a plant known as Artemisia , have been developed in response to other anti-malaria medicines becoming ineffective as resistance developed .\tJJ JJ NNS , VBN IN DT NN VBN IN NNP , VBP VBN VBN IN NN TO JJ JJ NNS VBG JJ IN NN VBD .\nThe WHO says the new Artemisian-based drugs must be used together with older malaria medication , such as mefloquine .\tDT NNP VBZ DT JJ JJ NNS MD VB VBN RB IN JJR NN NN , JJ IN NN .\nThe agency estimates the mosquito-borne disease kills more than one million people every year , most of them young children in Africa .\tDT NN VBZ DT JJ NN VBZ JJR IN CD CD NNS DT NN , JJS IN PRP JJ NNS IN NNP .\nA Kurdish news agency says Turkish warplanes have bombed Kurdish rebel positions in northern Iraq .\tDT JJ NN NN VBZ JJ NNS VBP VBN JJ NN NNS IN JJ NNP .\nThe Firat news agency quotes Kurdish party officials as saying Turkish jets hit the Hakurk region Wednesday near the borders of Iraq , Iran and Turkey .\tDT NNP NN NN VBZ JJ NN NNS IN VBG JJ NNS VBD DT NNP NN NNP IN DT NNS IN NNP , NNP CC NNP .\nIt said there were no reports of casualties .\tPRP VBD EX VBD DT NNS IN NNS .\nA spokesman for the outlawed Kurdistan Workers ' Party , or PKK , confirmed the strike .\tDT NN IN DT JJ NNP NNP POS NNP , CC NNP , VBD DT NN .\nThere was no official confirmation from the Turkish military .\tEX VBD DT JJ NN IN DT JJ NN .\nTurkey accuses the PKK of using strongholds in northern Iraq to launch attacks .\tNNP VBZ DT NN IN VBG NNS IN JJ NNP TO VB NNS .\nThe military has conducted several air strikes and at least one ground incursion into Iraq against the rebels this year .\tDT NN VBZ VBN JJ NN NNS CC IN JJS CD NN NN IN NNP IN DT NNS DT NN .\nThe PKK has been fighting for Kurdish autonomy in Turkey 's mainly Kurdish southeast for nearly 25 years .\tDT NNP VBZ VBN VBG IN NNP NN IN NNP POS RB JJ NN IN RB CD NNS .\nThat violence has killed more than 30,000 people .\tDT NN VBZ VBN JJR IN CD NNS .\nTurkey , the United States and other nations have designated the PKK a terrorist group .\tNNP , DT NNP NNPS CC JJ NNS VBP VBN DT NNP DT JJ NN .\nPolice in Brussels have clashed with several hundred demonstrators protesting President Bush 's visit to the Belgian capital .\tNNS IN NNP VBP VBN IN JJ CD NNS VBG NNP NNP POS NN TO DT JJ NN .\nPolice arrested several demonstrators during the sometimes violent clashes but there are no reports of serious injuries .\tNNS VBN JJ NNS IN DT RB JJ NNS CC EX VBP DT NNS IN JJ NNS .\nAuthorities used trucks to push demonstrators back from European Union headquarters , where Mr. Bush was meeting with EU leaders .\tNNS VBD NNS TO VB NNS RB IN NNP NNP NN , WRB NNP NNP VBD VBG IN NNP NNS .\nDemonstrators carried signs and chanted slogans criticizing what they called Mr. Bush 's ' warmongering ' policies , including the U.S.-led war in Iraq .\tNNS VBD NNS CC VBD NNS VBG WP PRP VBD NNP NNP POS `` VBG `` NNS , VBG DT JJ NN IN NNP .\nThe French News Agency reports that rallies against Mr. Bush 's European visit also took place in several cities in Germany , where Mr. Bush is scheduled to arrive on Wednesday .\tDT NNP NNP NNP VBZ IN NNS IN NNP NNP POS JJ NN RB VBD NN IN JJ NNS IN NNP , WRB NNP NNP VBZ VBN TO VB IN NNP .\nPakistani officials say security forces backed by helicopter gunships attacked a militant training camp near the Afghan border Tuesday , killing at least three rebels .\tJJ NNS VBP NN NNS VBN IN NN NNS VBD DT JJ NN NN IN DT JJ NN NNP , VBG IN JJS CD NNS .\nArmy spokesman Major General Waheed Arshad said after receiving reports about the facility in North Waziristan , tribal elders were sent to the area to tell the organizers to shut it down .\tNNP NN NNP NNP NNP NNP VBD IN VBG NNS IN DT NN IN NNP NNP , JJ NNS VBD VBN TO DT NN TO VB DT NNS TO VB PRP RP .\nThe general said fighting began when militants refused to meet the peace delegation and opened fire on them .\tDT NN VBD NN VBD WRB NNS VBD TO VB DT NN NN CC VBD NN IN PRP .\nPakistan reached a peace deal with pro-Taleban militants in North Waziristan last year to stop attacks on security forces inside Pakistan and Afghanistan and expel foreign militants .\tNNP VBD DT NN NN IN JJ NNS IN NNP NNP JJ NN TO VB NNS IN NN NNS IN NNP CC NNP CC VB JJ NNS .\nLocal tribal leaders are responsible for overseeing the deal 's implementation .\tJJ JJ NNS VBP JJ IN VBG DT NN POS NN .\nBritish police are questioning five people detained under anti-terrorism laws after police found a number of weapons in their possession .\tJJ NNS VBP VBG CD NNS VBN IN NN NNS IN NN VBD DT NN IN NNS IN PRP$ NN .\nAuthorities say the detentions of the three men and two women follow a raid Friday on a home in the southwestern British city of Plymouth .\tNNS VBP DT NNS IN DT CD NNS CC CD NNS VBP DT NN NNP IN DT NN IN DT JJ JJ NN IN NNP .\nOfficers confiscated a number of weapons , suspected imitation weapons , other suspicious devices and materials related to what authorities described as ' political ideology . '\tNNS VBD DT NN IN NNS , JJ NN NNS , JJ JJ NNS CC NNS VBN TO WP NNS VBD IN `` JJ NN . ``\nBut officials say the investigation is not linked to any religious group .\tCC NNS VBP DT NN VBZ RB VBN TO DT JJ NN .\nAuthorities identified the five as British nationals and said three of them face drug charges .\tNNS VBD DT CD IN JJ NNS CC VBD CD IN PRP VBP NN NNS .\nNews media reports say authorities believe the five were planning to take part in protests in London during the Group of 20 economic summit in the British capital Thursday .\tNNP NNS NNS VBP NNS VBP DT CD VBD VBG TO VB NN IN NNS IN NNP IN DT NNP IN CD JJ NN IN DT JJ NN NNP .\nSecurity is reported extremely tight in the city with thousands of officers taking part .\tNNP VBZ VBN RB JJ IN DT NN IN NNS IN NNS VBG NN .\nWitnesses say Syrian security forces have clashed with gunmen thought to be Islamist militants in the northwestern city of Aleppo .\tNNS VBP JJ NN NNS VBP VBN IN NNS VBN TO VB JJ NNS IN DT JJ NN IN NNP .\nThe Associated Press quotes residents as saying the clashes occurred Sunday on a road leading to the airport in the city .\tDT NNP NNP VBZ NNS IN VBG DT NNS VBD NNP IN DT NN VBG TO DT NN IN DT NN .\nAl Jazeera television said as many as three gunmen died when they blew up their car after being surrounded by police .\tNNP NNP NN VBD RB JJ IN CD NNS VBD WRB PRP VBD RP PRP$ NN IN VBG VBN IN NNS .\nThere were no reports of further casualties .\tEX VBD DT NNS IN JJ NNS .\nThere has been no official confirmation of the clash from the Damascus government .\tEX VBZ VBN DT JJ NN IN DT NN IN DT NNP NN .\nIndonesia 's communications minister says local broadcasters will soon be banned from airing live news provided by foreign broadcasters , such as the Voice of America and the British Broadcasting Corporation .\tNNP POS NNS NN VBZ JJ NNS MD RB VB VBN IN VBG JJ NN VBN IN JJ NNS , JJ IN DT NNP IN NNP CC DT NNP NNP NNP .\nCommunications and information minister Sofyan Djalil said Monday the ban will take effect February 5 when new media regulations are implemented .\tNNP CC NN NN NNP NNP VBD NNP DT NN MD VB NN NNP CD WRB JJ NNS NNS VBP VBN .\nUnder the regulations , foreign news and music broadcasts must be edited locally .\tIN DT NNS , JJ NN CC NN NNS MD VB VBN RB .\nIndonesian officials say that will ensure that the content meets community standards .\tJJ NNS VBP WDT MD VB IN DT NN VBZ NN NNS .\nIt remains unclear what the standards will be , but last week , Sofyan told a VOA correspondent the rules may be ambiguous .\tPRP VBZ JJ WP DT NNS MD VB , CC JJ NN , NNP VBD DT NNP NN DT NNS MD VB JJ .\nThe new regulations were approved in November , but after an outcry by media companies and lawmakers , the government and parliament postponed implementing them .\tDT JJ NNS VBD VBN IN NNP , CC IN DT NN IN NNS NNS CC NNS , DT NN CC NN VBD VBG PRP .\nDiscussions continue in parliament , but it is unclear how long the talks will go on , or what effect they may have on the media regulations .\tNNS VBP IN NN , CC PRP VBZ JJ WRB RB DT NNS MD VB IN , CC WP NN PRP MD VB IN DT NNS NNS .\nIraqi authorities say at least eight Iraqi prison guards and detainees have been killed in a shootout at a high-security jail in Baghdad .\tJJ NNS VBP IN JJS CD JJ NN NNS CC NNS VBP VBN VBN IN DT NN IN DT JJ NN IN NNP .\nAuthorities say a prisoner attempting a jail break grabbed an assault rifle from a guard and opened fire .\tNNS VBP DT NN VBG DT NN NN VBD DT NN NN IN DT NN CC VBD NN .\nA U.S. soldier was one of at least four people wounded .\tDT NNP NN VBD CD IN IN JJS CD NNS VBN .\nThe prison is said to hold several hundred detainees including some foreigners held as suspected terrorists .\tDT NN VBZ VBN TO VB JJ CD NNS VBG DT NNS VBN IN JJ NNS .\nMeanwhile , demonstrations against alleged fraud in the recent parliamentary elections are continuing in mainly Sunni Arab regions of Iraq .\tRB , NNS IN JJ NN IN DT JJ JJ NNS VBP VBG IN RB NNP NNP NNS IN NNP .\nProtesters are demanding a re-vote in some areas and an international probe into hundreds of ballot complaints .\tNNS VBP VBG DT NN IN DT NNS CC DT JJ NN IN NNS IN NN NNS .\nInitial vote results show that Shi'ite candidates won 130 seats in the 275-seat parliament .\tJJ NN NNS VBP IN NNP NNS VBD CD NNS IN DT JJ NN .\nFinal results are expected next month .\tJJ NNS VBP VBN JJ NN .\nU.S. Secretary of State Condoleezza Rice has met the editors and the son of slain Russian journalist Anna Politkovskaya .\tNNP NNP IN NNP NNP NNP VBZ VBN DT NNS CC DT NN IN NN JJ NN NNP NNP .\nU.S. officials say the meeting took place at Rice 's hotel in Moscow , where she arrived Saturday for talks with Russian officials .\tNNP NNS VBP DT NN VBD NN IN NNP POS NN IN NNP , WRB PRP VBD NNP IN NNS IN JJ NNS .\nThe meeting included editors from Novaya Gazeta and Politkovskaya 's 28-year-old son .\tDT NN VBD NNS IN NNP NNP CC NNP POS JJ NN .\nBefore arriving in the Russian capital , Rice told reporters that the fate of journalists in Russia is a major concern for the United States .\tIN VBG IN DT JJ NN , NNP VBD NNS IN DT NN IN NNS IN NNP VBZ DT JJ NN IN DT NNP NNPS .\nPolitkovskaya was shot dead in the elevator of her Moscow apartment building October seventh .\tNNP VBD VBN RB IN DT NN IN PRP$ NNP NN NN NNP JJ .\nInvestigators say her death was likely related to her reporting on human rights abuses by the Russian military in Chechnya .\tNNS VBP PRP$ NN VBD JJ VBN TO PRP$ NN IN JJ NNS NNS IN DT JJ NN IN NNP .\nThe Sri Lankan military says suspected Tamil Tiger rebels have launched a series of attacks against security forces in the eastern part of the country , killing four people and wounding at least 19 others .\tDT NNP NNP NN VBZ VBN NNP NNP NNS VBP VBN DT NN IN NNS IN NN NNS IN DT JJ NN IN DT NN , VBG CD NNS CC VBG IN JJS CD NNS .\nOfficials say the attacks occurred Thursday in the cities of Batticaloa and Trincomalee .\tNNS VBP DT NNS VBD NNP IN DT NNS IN NNP CC NNP .\nThe attacks came shortly after the government in Colombo extended the state of emergency throughout the country for another month , despite protests by minority Tamil legislators .\tDT NNS VBD RB IN DT NN IN NNP VBD DT NN IN NN IN DT NN IN DT NN , IN NNS IN NN NN NNS .\nParliament has been extending the state of emergency by one month at a time since August , following the assassination of Foreign Minister Lakshman Kadirgamar .\tNNP VBZ VBN VBG DT NN IN NN IN CD NN IN DT NN IN NNP , VBG DT NN IN NNP NNP NNP NNP .\nThe government accuses Tamil rebels of carrying out the killing .\tDT NN VBZ NNP NNS IN VBG RP DT NN .\nBut they deny the charge .\tCC PRP VBP DT NN .\nIsraeli warplanes have carried out air strikes in the Gaza Strip , after two Israeli soldiers were wounded Tuesday in a mortar bomb attack by Palestinian militants .\tJJ NNS VBP VBN RP NN NNS IN DT NNP NNP , IN CD JJ NNS VBD VBN NNP IN DT NN NN NN IN JJ NNS .\nVOA Jerusalem Correspondent Luis Ramirez talks about the raid :\tNNP NNP NNP NNP NNP NNS IN DT NN :\nLocal sources say the air strikes targeted smuggling tunnels in southern Gaza and a site near the town of Khan Younis close to the Egyptian border .\tJJ NNS VBP DT NN VBZ JJ NN NNS IN JJ NNP CC DT NN IN DT NN IN NNP NNP RB TO DT JJ NN .\nThere were no immediate reports of casualties .\tEX VBD DT JJ NNS IN NNS .\nPalestinians use tunnels under the Egypt-Gaza border to sneak weapons and goods into the Palestinian enclave .\tNNS VBP NNS IN DT NNP NN TO VB NNS CC NNS IN DT JJ NN .\nOn Monday , Israeli troops killed a Palestinian militant in the Gaza Strip near the Israeli border .\tIN NNP , JJ NNS VBD DT JJ NN IN DT NNP NNP IN DT JJ NN .\nThe Israeli military said the militant was killed when troops opened fire on Palestinians trying to plant an explosive device close to the border .\tDT JJ NN VBD DT NN VBD VBN WRB NNS VBD NN IN NNS VBG TO VB DT JJ NN NN TO DT NN .\nFormer U.S. President Bill Clinton will lead U.N. efforts to promote reconstruction in South Asian countries hit by December 's tsunami , but will not play a role in ending conflicts in Indonesia and Sri Lanka .\tJJ NNP NNP NNP NNP MD VB NNP NNS TO VB NN IN NNP NNP NNS VBN IN NNP POS NN , CC MD RB VB DT NN IN VBG NNS IN NNP CC NNP NNP .\nOn Wednesday , U.N. spokesman Fred Eckhard said he misunderstood Mr. Clinton 's mandate when he told reporters earlier the former president would also try to make progress in resolving conflicts in those nations .\tIN NNP , NNP NN NNP NNP VBD PRP VBD NNP NNP POS NN WRB PRP VBD NNS RB DT JJ NN MD RB VB TO VB NN IN VBG NNS IN DT NNS .\nMr. Eckhard said Mr. Clinton will focus on maintaining the world 's interest in the vital recovery and reconstruction efforts following the devastating tsunami .\tNNP NNP VBD NNP NNP MD VB IN VBG DT NN POS NN IN DT JJ NN CC NN NNS VBG DT JJ NN .\nMr. Clinton said in a statement he is looking forward to taking up the post once he returns from a trip to the region later this month with former president George H.W. Bush .\tNNP NNP VBD IN DT NN PRP VBZ VBG RB TO VBG RP DT NN RB PRP VBZ IN DT NN TO DT NN RB DT NN IN JJ NN NNP NNP NNP .\nFormer women 's world number-one tennis player Martina Hingis of Switzerland will play in her first professional tournament in more than two years in Thailand next month .\tJJ NNS POS NN JJ NN NN NNP NNP IN NNP MD VB IN PRP$ JJ JJ NN IN JJR IN CD NNS IN NNP JJ NN .\nHingis has agreed to play the Volvo Women 's Open in Pattaya .\tNNP VBZ VBN TO VB DT NNP NNP POS NNP IN NNP .\nShe says she will use the tournament to raise money for Thai charities that help women and children who have suffered from abuse , homelessness and illness .\tPRP VBZ PRP MD VB DT NN TO VB NN IN JJ NNS WDT VBP NNS CC NNS WP VBP VBN IN NN , NN CC NN .\nHingis won 76 singles and doubles titles during her career , including five Grand Slam singles crowns .\tNNP VBD CD NN CC NN NNS IN PRP$ NN , VBG CD NNP NNP VBZ NNS .\nShe retired at age 22 in 2002 due to ankle problems .\tPRP VBD IN NN CD IN CD JJ TO JJ NNS .\nThe U.S. Senate has approved legislation allocating up to $ 4 billion to fight bird flu by stocking up on anti-viral drugs .\tDT NNP NNP VBZ VBN NN VBG RP TO $ CD CD TO VB NN NN IN VBG RP IN JJ NNS .\nThe Senate measure passed Thursday also commits money to increase global surveillance of the disease .\tDT NNP NN VBN NNP RB VBZ NN TO VB JJ NN IN DT NN .\nThe legislation , passed as an amendment to an unrelated military spending bill , now goes to the House of Representatives , where it faces an uncertain future .\tDT NN , VBN IN DT NN TO DT JJ JJ NN NN , RB VBZ TO DT NNP IN NNP , WRB PRP VBZ DT JJ NN .\nSupporters of the measure say the time to act is now , before an outbreak occurs .\tNNS IN DT NN VBP DT NN TO VB VBZ RB , IN DT NN VBZ .\nU.N officials warn an avian flu pandemic could kill as many as five million people worldwide , and have urged the international community to take an aggressive stand against the disease .\tNNP NNS VBP DT JJ NN NN MD VB RB JJ IN CD CD NNS JJ , CC VBP VBN DT JJ NN TO VB DT JJ NN IN DT NN .\nMilitary officials in Russia say six Chechen rebels have been killed in a clash with Russian commandos south of the provincial capital , Grozny .\tJJ NNS IN NNP VBP CD JJ NNS VBP VBN VBN IN DT NN IN JJ NNS RB IN DT JJ NN , NNP .\nA military spokesman said Monday Russian forces on an overnight mission Sunday in the North Caucasus region ambushed the guerrillas near two villages , Starye Atagi and Novye Atagi .\tDT JJ NN VBD NNP JJ NNS IN DT JJ NN NNP IN DT NNP NNP NN VBD DT NNS IN CD NNS , NNP NNP CC NNP NNP .\nA spokesman for the Chechen rebels denies the clash took place and accuses the Russian military of spreading disinformation to discredit a cease-fire called by rebel leader Aslan Maskhadov .\tDT NN IN DT JJ NNS VBZ DT NN VBD NN CC VBZ DT JJ NN IN VBG NN TO VB DT NN VBN IN JJ NN NNP NNP .\nRussian officials have consistently refused to hold any talks with Mr. Maskhadov , whom they call a terrorist and accuse of attacking civilians .\tJJ NNS VBP RB VBN TO VB DT NNS IN NNP NNP , WP PRP VBP DT JJ CC VBP IN VBG NNS .\nRussian forces have been battling Chechen insurgents for much of the past decade .\tJJ NNS VBP VBN VBG JJ NNS IN NN IN DT JJ NN .\nU.S. congressional leaders are close to finishing work on a compromise budget bill that includes money for the U.S.-led war in Iraq , without a deadline to withdraw the troops .\tNNP JJ NNS VBP RB TO VBG NN IN DT NN NN NN WDT VBZ NN IN DT JJ NN IN NNP , IN DT NN TO VB DT NNS .\nThe $ 500 billion spending package would include at least $ 70 billion to fund military operations in Iraq and Afghanistan , while providing $ 11 billion more than what President Bush requested for domestic programs favored by Democratic Party representatives .\tDT $ CD CD NN NN MD VB IN JJS $ CD CD TO VB JJ NNS IN NNP CC NNP , IN VBG $ CD CD JJR IN WP NNP NNP VBD IN JJ NNS VBN IN NNP NNP NNS .\nThe agreement on the Iraq war funding represents the latest failed attempt by many congressional Democrats to impose a timeline that would bring U.S. troops out of Iraq .\tDT NN IN DT NNP NN NN VBZ DT JJS VBN NN IN JJ JJ NNS TO VB DT NN WDT MD VB NNP NNS IN IN NNP .\nPresident Bush has adamantly rejected any timelines , and lawmakers in his Republican Party have firmly backed his efforts .\tNNP NNP VBZ RB VBN DT NNS , CC NNS IN PRP$ NNP NNP VBP RB VBN PRP$ NNS .\nThe measure is expected come to a vote in the House of Representatives early next week .\tDT NN VBZ VBN VB TO DT NN IN DT NNP IN NNPS RB JJ NN .\nAfghan Muslim clerics and tribal elders have urged U.S. authorities to quickly investigate allegations that U.S. interrogators desecrated the Muslim holy book .\tJJ NNP NNS CC JJ NNS VBP VBN NNP NNS TO RB VB NNS IN NNP NNS VBD DT NNP JJ NN .\nThe clerics and tribal elders gathered Sunday in Faizabad , the capital of Badakhshan province , to pass a resolution demanding a reaction from U.S. authorities within three days .\tDT NNS CC JJ NNS VBD NNP IN NNP , DT NN IN NNP NN , TO VB DT NN VBG DT NN IN NNP NNS IN CD NNS .\nTheir call came after four days of deadly anti-American protests following an unconfirmed report in a U.S. magazine that interrogators at Guantanamo military prison allegedly desecrated the Koran .\tPRP$ NN VBD IN CD NNS IN JJ JJ NNS VBG DT JJ NN IN DT NNP NN WDT VBZ IN NNP JJ NN RB VBD DT NNP .\nThe Bangladeshi government also condemned the alleged abuses urging Washington to bring those responsible to justice .\tDT JJ NN RB VBD DT JJ NNS VBG NNP TO VB DT JJ TO NN .\nA foreign ministry statement said ' the incident has hurt the sentiments of Muslims all over the world not least in Bangladesh . '\tDT JJ NN NN VBD `` DT NN VBZ VBN DT NNS IN NNPS DT IN DT NN RB JJS IN NNP . ``\nU.S. officials have promised an open investigation into the allegations contained in the Newsweek magazine article , but say that so far they have found nothing to confirm the report .\tNNP NNS VBP VBN DT JJ NN IN DT NNS VBN IN DT NNP NN NN , CC VBP IN RB RB PRP VBP VBN DT TO VB DT NN .\nAn avalanche in a mountainous area of northern Pakistan has killed 25 people who were digging for precious stones .\tDT NN IN DT JJ NN IN JJ NNP VBZ VBN CD NNS WP VBD VBG IN JJ NNS .\nOfficials say the incident happened Thursday in the remote Kohistan region , in Pakistan 's Northwest Frontier province .\tNNS VBP DT NN VBD NNP IN DT JJ NNP NN , IN NNP POS NNP NNP NN .\nAuthorities say the victims were exploring mines and searching for precious stones when they were buried by the avalanche .\tNNS VBP DT NNS VBD VBG NNS CC VBG IN JJ NNS WRB PRP VBD VBN IN DT NN .\nRescuers rushed to the site but were only able to save one person .\tNNS VBD TO DT NN CC VBD RB JJ TO VB CD NN .\nKohistan is about 350 kilometers northeast of Peshawar , the provincial capital .\tNNP VBZ IN CD NNS RB IN NNP , DT JJ NN .\nThree Romanian journalists kidnapped in Iraq nearly two months ago have returned to Bucharest , one day after their release .\tCD JJ NNS VBN IN NNP RB CD NNS RB VBP VBN TO NNP , CD NN IN PRP$ NN .\nA military plane carrying the journalists , reporter Marie-Jeanne Ion , cameraman Sorin Miscoci , and newspaper reporter Eduard Ovidiu Ohanesian , returned home Monday from Baghdad .\tDT JJ NN VBG DT NNS , NN NNP NNP , NN NNP NNP , CC NN NN NNP NNP NNP , VBD NN NNP IN NNP .\nIraqi insurgents kidnapped the journalists , along with their Iraqi-American translator Mohammed Monaf , in Baghdad on March 28 .\tJJ NNS VBD DT NNS , IN IN PRP$ JJ NN NNP NNP , IN NNP IN NNP CD .\nThe militants threatened , in a videotape , to kill the hostages by April 27 unless Romania withdrew its troops from Iraq .\tDT NNS VBD , IN DT NN , TO VB DT NNS IN NNP CD IN NNP VBD PRP$ NNS IN NNP .\nThat deadline passed without word on their fate .\tDT NN VBD IN NN IN PRP$ NN .\nRomanian President Traian Basescu said that the continuing violence in Iraq had made it increasingly difficult to maintain contact with the kidnappers .\tJJ NNP NNP NNP VBD IN DT VBG NN IN NNP VBD VBN PRP RB JJ TO VB NN IN DT NNS .\nThe incident sparked protests in Romania , with demonstrators taking to the streets of Bucharest , calling for the withdrawal of Romanian troops from Iraq .\tDT NN VBD NNS IN NNP , IN NNS VBG TO DT NNS IN NNP , VBG IN DT NN IN JJ NNS IN NNP .\nBosnian police have arrested a former Bosnian Serb police officer suspected of genocide in the 1995 massacre of 8,000 Muslim men and boys .\tJJ NNS VBP VBN DT JJ JJ JJ NN NN VBN IN NN IN DT CD NN IN CD NNP NNS CC NNS .\nAuthorities Monday said Dragan Crnogorac has been arrested by the State Investigation and Protection agency in the northern town of Banja Luka .\tNNS NNP VBD NNP NNP VBZ VBN VBN IN DT NNP NNP CC NNP NN IN DT JJ NN IN NNP NNP .\nThe 38-year-old is accused of personally taking part in the executions of Bosnian Muslim men and boys in Srebrenica , in what is considered the worst atrocity in Europe since World War Two .\tDT JJ VBZ VBN IN RB VBG NN IN DT NNS IN JJ NNP NNS CC NNS IN NNP , IN WP VBZ VBN DT JJS NN IN NNP IN NNP NNP CD .\nProsecutors say Crnogorac was a member of Bosnian Serb forces that captured the U.N.-protected Srebrenica enclave on July 11 , 1995 , at the end of Bosnia 's three-year war .\tNNS VBP NNP VBD DT NN IN JJ JJ NNS WDT VBD DT JJ NNP NN IN NNP CD , CD , IN DT NN IN NNP POS JJ NN .\nThe Bosnian war crimes court has put dozens of Bosnian Serbs on trial for complicity in the Srebrenica killings .\tDT JJ NN NNS NN VBZ VBN NNS IN JJ NNS IN NN IN NN IN DT NNP NNS .\nThe head of the Organization of Petroleum Exporting Countries ( OPEC ) has called on the United States to release some of its oil reserves to help reduce world oil prices .\tDT NN IN DT NNP IN NNP NNP NNPS LRB NNP RRB VBZ VBN IN DT NNP NNPS TO VB DT IN PRP$ NN NNS TO VB VB NN NN NNS .\nPurnomo Yusgiantoro , who is also Indonesia 's energy minister , did not say whether the United States has responded to the request .\tNNP NNP , WP VBZ RB NNP POS NN NN , VBD RB VB IN DT NNP NNPS VBZ VBN TO DT NN .\nThe United States has hundreds of millions of barrels of oil in its strategic petroleum reserve .\tDT NNP NNPS VBZ NNS IN NNS IN NNS IN NN IN PRP$ JJ NN NN .\nThe reserve has been tapped on several , exceptional occasions .\tDT NN VBZ VBN VBN IN JJ , JJ NNS .\nWorld oil prices have risen sharply this year , and currently stand at over $ 55 a barrel .\tNNP NN NNS VBP VBN RB DT NN , CC RB VBP IN IN $ CD DT NN .\nThe top United Nations envoy to Haiti has congratulated the country on its successful holding of local , municipal and legislative elections .\tDT JJ NNP NNPS NN TO NNP VBZ VBN DT NN IN PRP$ JJ NN IN JJ , JJ CC JJ NNS .\nA U.N. statement says more than 3,00,000 voters in 25 communities voted in 69 centers and 770 polling stations to choose their representatives .\tDT NNP NN VBZ JJR IN CD NNS IN CD NNS VBD IN CD NNS CC CD NN NNS TO VB PRP$ NNS .\nThe statement says all polling stations opened on time with the help of the U.N. Stabilization Mission in Haiti , known as MINUSTAH , and the Haitian national police .\tDT NN VBZ DT NN NNS VBD IN NN IN DT NN IN DT NNP NNP NNP IN NNP , VBN IN NNP , CC DT JJ JJ NN .\nLast month , the U.N. said it had mobilized nearly 600 members of its staff in Haiti to support the country 's electoral process .\tJJ NN , DT NNP VBD PRP VBD VBN RB CD NNS IN PRP$ NN IN NNP TO VB DT NN POS JJ NN .\nThe head of electoral support for the U.N. mission , Marc Plum , said the elections would show the international community that democracy is still alive in Haiti .\tDT NN IN JJ NN IN DT NNP NN , NNP NNP , VBD DT NNS MD VB DT JJ NN IN NN VBZ RB JJ IN NNP .\nHaiti is the Western Hemisphere 's poorest country and has been plagued by violence .\tNNP VBZ DT NNP NNP POS JJS NN CC VBZ VBN VBN IN NN .\nAn Indian court has convicted two men , and acquitted one , on charges connected to a series of bombings 13 years ago that killed 257 people in Mumbai - formerly known as Bombay .\tDT JJ NN VBZ VBN CD NNS , CC VBN CD , IN NNS VBN TO DT NN IN NNS CD NNS IN DT VBD CD NNS IN NNP : RB VBN IN NNP .\nThe court found Nasir Dhakla and Mohammed Shaikh guilty Thursday of attending conspiracy meetings and undergoing arms training in Pakistan .\tDT NN VBD NNP NNP CC NNP NNP JJ NNP IN VBG NN NNS CC VBG NNS NN IN NNP .\nBut the court acquitted a third man accused of making arrangements for the bombings due to insufficient evidence .\tCC DT NN VBN DT JJ NN VBN IN VBG NNS IN DT NNS JJ TO JJ NN .\nThe judge in the case says prosecutors failed to prove Mohammed Mansoor was responsible for facilitating terrorist acts .\tDT NN IN DT NN VBZ NNS VBD TO VB NNP NNP VBD JJ IN VBG JJ NNS .\nIndian authorities say the bombings were in retaliation for the destruction of a 16th century mosque , in the northern city of Ayodhya , by a Hindu mob a year earlier .\tJJ NNS VBP DT NNS VBD IN NN IN DT NN IN DT JJ NN NN , IN DT JJ NN IN NNP , IN DT NNP NN DT NN RBR .\nThe mammoth trial began in 1994 , and the latest two guilty verdicts bring the number of convictions to 28 .\tDT JJ NN VBD IN CD , CC DT JJS CD JJ NNS VBP DT NN IN NNS TO CD .\nIndia and the United States have discussed new areas of cooperation in high-technology , less than a month after Washington lifted restrictions on nuclear technology exports to India .\tNNP CC DT NNP NNPS VBP VBN JJ NNS IN NN IN NN , JJR IN DT NN IN NNP VBD NNS IN JJ NN NNS TO NNP .\nAn Indian Foreign Ministry spokesman said U.S. Undersecretary of State for Commerce Kenneth Juster and India 's Foreign Secretary Shyam Saran have identified four sectors of potential collaboration .\tDT JJ NNP NNP NN VBD NNP NNP IN NNP IN NNP NNP NNP CC NNP POS NNP NNP NNP NNP VBP VBN CD NNS IN JJ NN .\nThey include biotechnology , nano-technology , advanced information technology and defense .\tPRP VBP NN , NN , JJ NN NN CC NN .\nNano-technology is used to make micro-miniature equipment by manipulating atoms and molecules .\tNN VBZ VBN TO VB JJ NN IN VBG NNS CC NNS .\nU.S. Assistant Secretary of State for South Asia , Christina Rocca , will visit India next week to further discuss this cooperation .\tNNP NNP NNP IN NNP IN NNP NNP , NNP NNP , MD VB NNP JJ NN TO RB VB DT NN .\nThe United States imposed sanctions on India and Pakistan after they conducted nuclear weapons tests in 1998 .\tDT NNP NNPS VBD NNS IN NNP CC NNP IN PRP VBD JJ NNS NNS IN CD .\nRestrictions included the sale of technology that could potentially be used for developing weapons .\tNNS VBD DT NN IN NN WDT MD RB VB VBN IN VBG NNS .\nEuropean Union nations have summoned Iranian ambassadors to protest the detention of British Embassy staff in Tehran .\tNNP NNP NNS VBP VBN JJ NNS TO VB DT NN IN JJ NNP NN IN NNP .\nOfficials say EU members agreed to the move Friday at a meeting in Brussels .\tNNS VBP NNP NNS VBD TO DT NN NNP IN DT NN IN NNP .\nEU officials are considering additional measures including visa bans on Iranian officials .\tNNP NNS VBP VBG JJ NNS VBG NN NNS IN JJ NNS .\nA top Iranian cleric Friday said that some British Embassy staff will be put on trial for allegedly playing a role in post-election demonstrations .\tDT JJ JJ NN NNP VBD IN DT JJ NNP NN MD VB VBN IN NN IN RB VBG DT NN IN JJ NNS .\nAyatollah Ahmad Jannati said during a prayer sermon that some embassy employees confessed to instigating unrest .\tNNP NNP NNP VBD IN DT NN NN IN DT JJ NNS VBD TO VBG NN .\nJannati is close to Iran 's supreme leader .\tNNP VBZ JJ TO NNP POS JJ NN .\nNine British Embassy staffers were arrested in Tehran last Sunday .\tCD NNP NNP NNS VBD VBN IN NNP JJ NNP .\nSome were freed , but the British government says two are still in custody .\tDT VBD VBN , CC DT JJ NN VBZ CD VBP RB IN NN .\nBritain 's foreign office expressed concern Friday and said it is investigating reports that the employees face trial .\tNNP POS JJ NN VBD NN NNP CC VBD PRP VBZ VBG NNS IN DT NNS VBP NN .\nTurkey 's Foreign Ministry has denied that it canceled this week 's international air force exercise over opposition to Israel 's participation .\tNNP POS NNP NNP VBZ VBN IN PRP VBD DT NN POS JJ NN NN NN IN NN TO NNP POS NN .\nThe ministry said Monday the cancellation was ' not political , ' and urged Israeli officials to approach the situation with common sense .\tDT NN VBD NNP DT NN VBD `` RB JJ , `` CC VBD JJ NNS TO VB DT NN IN JJ NN .\nIsraeli military officials said Saturday Turkey canceled the Anatolian Eagle exercise because it wanted to exclude the Israeli air force from taking part in the drill .\tJJ NN NNS VBD NNP NNP VBD DT NNP NNP NN IN PRP VBD TO VB DT JJ NN NN IN VBG NN IN DT NN .\nThe military exercise also was scheduled to include U.S. , Italian and NATO forces .\tDT JJ NN RB VBD VBN TO VB NNP , JJ CC NNP NNS .\nTurkey and Israel have had close ties , but their relations have been uneven since Israeli forces clashed with Hamas fighters in the Gaza Strip at the beginning of this year .\tNNP CC NNP VBP VBN JJ NNS , CC PRP$ NNS VBP VBN JJ IN JJ NNS VBN IN NNP NNS IN DT NNP NNP IN DT NN IN DT NN .\nTurkey 's prime minister Recep Tayyip Erdogan has criticized the Israeli campaign in the Palestinian territory .\tNNP POS JJ NN NNP NNP NNP VBZ VBN DT JJ NN IN DT JJ NN .\nTurkey has also played a role in trying to restart peace talks between Israel and Syria , but those contacts broke down last year .\tNNP VBZ RB VBN DT NN IN VBG TO VB NN NNS IN NNP CC NNP , CC DT NNS VBD RP JJ NN .\nAmerican Thomas Schelling Israeli-American Robert Aumann have won this year 's Nobel Prize in Economics for their work on people 's decisions in business and society .\tNNP NNP NNP NNP NNP NNP VBP VBN DT NN POS NNP NNP IN NNP IN PRP$ NN IN NNS POS NNS IN NN CC NN .\nThe Royal Swedish Academy of Sciences announced the one-point-three million dollar prize Monday in Stockholm .\tDT NNP JJ NNP IN NNP VBD DT JJ CD NN NN NNP IN NNP .\nMr. Schelling and Mr. Aumann were honored for their separate work on ' game theory . '\tNNP NNP CC NNP NNP VBD VBN IN PRP$ JJ NN IN `` NN NN . ``\nThe theory attempts to explain how people make strategic and mathematically-based decisions on matters ranging from trade disputes , crime , and wars to such mundane choices as theater seats .\tDT NN VBZ TO VB WRB NNS VBP JJ CC JJ NNS IN NNS VBG IN NN NNS , NN , CC NNS TO JJ JJ NNS IN NN NNS .\nThe Nobel committee says their research goes far beyond economics to global security and arms control .\tDT NNP NN VBZ PRP$ NN VBZ RB IN NNS TO JJ NN CC NNS NN .\nThe final 2005 Nobel Prize to be awarded is in literature .\tDT JJ CD NNP NNP TO VB VBN VBZ IN NN .\nThe date for the prize has yet to be announced .\tDT NN IN DT NN VBZ RB TO VB VBN .\nElection officials in Haiti have scheduled runoff elections for a new legislative assembly for late April .\tNN NNS IN NNP VBP VBN NN NNS IN DT JJ JJ NN IN JJ NNP .\nThe election was originally scheduled for March 19 , but was delayed following widespread street protests that accompanied last month 's presidential elections .\tDT NN VBD RB VBN IN NNP CD , CC VBD VBN VBG JJ NN NNS WDT VBD JJ NN POS JJ NNS .\nRene Preval was declared president after his supporters staged angry demonstrations accusing election officials of manipulating the vote count to deny him a first-round victory .\tNNP NNP VBD VBN NN IN PRP$ NNS VBD JJ NNS VBG NN NNS IN VBG DT NN NN TO VB PRP DT JJ NN .\nThe delay in holding the legislative runoffs forced the postponement of Preval 's inauguration , which was scheduled for March 29 .\tDT NN IN VBG DT JJ NNS VBD DT NN IN NNP POS NN , WDT VBD VBN IN NNP CD .\nThe Vatican has announced that U.S. President George Bush will meet with Pope Benedict in June .\tDT NNP VBZ VBN IN NNP NNP NNP NNP MD VB IN NNP NNP IN NNP .\nVatican spokesman Federico Lombardi said Saturday that the exact date for the private meeting has not yet been set , but it could be around June 9 or June 10 .\tNNP NN NNP NNP VBD NNP IN DT JJ NN IN DT JJ NN VBZ RB RB VBN VBN , CC PRP MD VB IN NNP CD CC NNP CD .\nPresident Bush is to travel to Europe in June to attend a summit of the Group of Eight industrialized nations in Germany .\tNNP NNP VBZ TO VB TO NNP IN NNP TO VB DT NN IN DT NNP IN CD JJ NNS IN NNP .\nMr. Bush visited the Vatican in 2005 for Pope John Paul 's funeral .\tNNP NNP VBD DT NNP IN CD IN NNP NNP NNP POS NN .\nIran 's nuclear energy chief says the country has built a new generation of centrifuges , which are used to enrich uranium .\tNNP POS JJ NN NN VBZ DT NN VBZ VBN DT JJ NN IN NNS , WDT VBP VBN TO VB NN .\nAli Akbar Salehi , the head of the Atomic Energy Organization , announced the development Tuesday .\tNNP NNP NNP , DT NN IN DT NNP NNP NNP , VBD DT NN NNP .\nEnriched uranium can be used in nuclear fuel for a power plant .\tVBN NN MD VB VBN IN JJ NN IN DT NN NN .\nBut Western countries suspect Iran is using the ingredient to build a nuclear weapon .\tCC JJ NNS VBP NNP VBZ VBG DT NN TO VB DT JJ NN .\nIran denies this .\tNNP VBZ DT .\nIranian officials are expected to resume negotiations with world powers about their controversial nuclear program next week .\tJJ NNS VBP VBN TO VB NNS IN NN NNS IN PRP$ JJ JJ NN JJ NN .\nKazakhstan 's Information Ministry has ordered a popular opposition newspaper to close .\tNNP POS NNP NNP VBZ VBN DT JJ NN NN TO VB .\nIn ordering the closure , the ministry accused the Respublika newspaper of inciting ethnic hatred by publishing an interview with a prominent Russian politician who made disparaging remarks about Kazakhs .\tIN VBG DT NN , DT NN VBD DT NNP NN IN VBG JJ NN IN VBG DT NN IN DT JJ JJ NN WP VBD VBG NNS IN NNS .\nThe paper 's deputy editor Galina Dyrdina called the closure order politically-motivated , and vowed to appeal .\tDT NN POS NN NN NNP NNP VBD DT NN NN JJ , CC VBD TO VB .\nThe newspaper has been dogged by lawsuits and attacks , including a firebombing .\tDT NN VBZ VBN VBN IN NNS CC NNS , VBG DT NN .\nGovernment critics in Kazakhstan say the order is part of a crackdown on free media ahead of possible presidential elections in December .\tNN NNS IN NNP VBP DT NN VBZ NN IN DT NN IN JJ NNS RB IN JJ JJ NNS IN NNP .\nPresident Nursultan Nazarbayev has ruled the former Soviet Republic since its independence in 1991 , and is expected to run again in December .\tNNP NNP NNP VBZ VBN DT JJ NNP NNP IN PRP$ NN IN CD , CC VBZ VBN TO VB RB IN NNP .\nAfghan officials say a suicide bomber has killed seven people , and wounded nearly 30 others in an attack in southeastern Afghanistan .\tJJ NNS VBP DT NN NN VBZ VBN CD NNS , CC VBN RB CD NNS IN DT NN IN JJ NNP .\nPolice say the attack happened Saturday in the town of Spin Boldak , in the southern province of Kandahar .\tNNS VBP DT NN VBD NNP IN DT NN IN NNP NNP , IN DT JJ NN IN NNP .\nPolice say the bomber was riding a motorbike when he blew himself up near a busy market .\tNNS VBP DT NN VBD VBG DT NN WRB PRP VBD PRP RP IN DT JJ NN .\nOfficials say he was targeting police officers in the area .\tNNS VBP PRP VBD VBG NN NNS IN DT NN .\nTwo policemen were among those killed .\tCD NNS VBD IN DT VBN .\nReuters news service says the Taleban claimed responsibility for the attack .\tNNP NN NN VBZ DT NNP VBD NN IN DT NN .\nTaleban militants have carried out numerous attacks in southern and eastern Afghanistan as part of their campaign against the government and foreign troops .\tNNP NNS VBP VBN RP JJ NNS IN JJ CC JJ NNP IN NN IN PRP$ NN IN DT NN CC JJ NNS .\nThe bombing comes as Muslims celebrate the Eid-al-Fitr holiday which marks the end of the fasting month of Ramadan .\tDT NN VBZ IN NNPS VBP DT NNP NN WDT VBZ DT NN IN DT JJ NN IN NNP .\nThe U.S. military says it has opened a criminal probe into the death of a relative of Iraq 's ambassador to the United Nations .\tDT NNP NN VBZ PRP VBZ VBN DT JJ NN IN DT NN IN DT NN IN NNP POS NN TO DT NNP NNPS .\nThe son of Ambassador Samir Sumaidaie 's cousin was killed in June as U.S. Marines searched his home in western Iraq .\tDT NN IN NNP NNP NNP POS NN VBD VBN IN NNP IN NNP NNPS VBD PRP$ NN IN JJ NNP .\nA U.S. military statement Sunday says the top Marine commander in Iraq has referred the case to the Naval Criminal Investigative Service .\tDT NNP JJ NN NNP VBZ DT JJ NN NN IN NNP VBZ VBN DT NN TO DT NNP NNP NNP NNP .\nMohammed Sumaidaie was killed near Haditha on June 25 .\tNNP NNP VBD VBN IN NNP IN NNP CD .\nWeeks later , the ambassador called the killing a crime and demanded a full investigation .\tNNS RB , DT NN VBD DT NN DT NN CC VBD DT JJ NN .\nMeanwhile , Iraqi Kurdish , Sunni and Shi'ite negotiators are meeting today in an 11th-hour effort to agree on a constitution ahead of a Monday night deadline .\tRB , JJ NNP , NNP CC NNP NNS VBP VBG NN IN DT JJ NN TO VB IN DT NN RB IN DT NNP NN NN .\nNegotiators have been unable to bridge differences over demands for political autonomy and the role of Islamic law in post-war Iraq .\tNNS VBP VBN JJ TO VB NNS IN NNS IN JJ NN CC DT NN IN JJ NN IN JJ NNP .\nOil prices fell sharply Monday as the U.S. House of Representatives voted against a $ 700-billion government plan to rescue troubled U.S. financial institutions .\tNN NNS VBD RB NNP IN DT NNP NNP IN NNP VBD IN DT $ JJ NN NN TO VB JJ NNP JJ NNS .\nThe price of a barrel of oil for future delivery dropped more than $ 10 to hit $ 96.26 a barrel at the close of New York trading Monday .\tDT NN IN DT NN IN NN IN JJ NN VBD JJR IN $ CD TO VB $ CD DT NN IN DT NN IN NNP NNP NN NNP .\nTraders worried that rejection of the controversial plan could hurt U.S. economic growth , and cut demand for energy .\tNNS VBD IN NN IN DT JJ NN MD VB NNP JJ NN , CC VBD NN IN NN .\nA century-old rabbi has declared Israel 's Western Wall off-limits to Jews on their holiest day of the week because he says security cameras at the holy site are desecrating the Sabbath .\tDT JJ NN VBZ VBN NNP POS JJ NNP NNS IN NNS IN PRP$ JJS NN IN DT NN IN PRP VBZ NN NNS IN DT JJ NN VBP VBG DT NNP .\nYosef Shalom Eliashiv says that use of the closed-circuit surveillance cameras violates the Jewish practice of refraining from operating electronics on the weekly holy day .\tNNP NNP NNP VBZ IN NN IN DT JJ NN NNS VBZ DT JJ NN IN VBG IN VBG NNS IN DT JJ JJ NN .\nA rabbi overseeing religious activities at the wall says talks with Jerusalem police are under way to find a compromise .\tDT NN VBG JJ NNS IN DT NN VBZ NNS IN NNP NNS VBP IN NN TO VB DT NN .\nThe 100-year-old rabbi is highly revered among ultra-Orthodox Jews .\tDT JJ NN VBZ RB VBN IN JJ NNS .\nHis opinion has wide influence among them .\tPRP$ NN VBZ JJ NN IN PRP .\nThe Western Wall is at the base of a compound known to Jews as the Temple Mount , which is Judaism 's holiest site .\tDT NNP NNP VBZ IN DT NN IN DT NN VBN TO NNPS IN DT NNP NNP , WDT VBZ NNP POS JJS NN .\nMuslims also consider the compound one of their holiest sites , calling it the Noble Sanctuary .\tNNS RB VBP DT NN CD IN PRP$ JJS NNS , VBG PRP DT NNP NNP .\nIraq 's foreign minister says four Iraqi military officers have been detained in the kidnapping this week of an Iranian diplomat .\tNNP POS JJ NN VBZ CD JJ JJ NNS VBP VBN VBN IN DT NN DT NN IN DT JJ NN .\nForeign minister Hoshyar Zebari told reporters in Baghdad Wednesday that the four men , although military officers , were apparently not linked to the government .\tJJ NN NNP NNP VBD NNS IN NNP NNP IN DT CD NNS , IN JJ NNS , VBD RB RB VBN TO DT NN .\nHe did not elaborate .\tPRP VBD RB VB .\nHe said the men are being questioned about who ordered the kidnapping .\tPRP VBD DT NNS VBP VBG VBN IN WP VBD DT NN .\nGunmen in Iraqi army uniforms kidnapped the Iranian diplomat on Sunday .\tNNS IN JJ NN VBZ VBN DT JJ NN IN NNP .\nIran has said it holds the United States responsible for the safety of the diplomat .\tNNP VBZ VBN PRP VBZ DT NNP NNPS JJ IN DT NN IN DT NN .\nAn Iranian spokesman said the kidnappers are linked to Iraq 's defense ministry , which , he said , ' works under the supervision of American forces . '\tDT JJ NN VBD DT NNS VBP VBN TO NNP POS NN NN , WDT , PRP VBD , `` VBZ IN DT NN IN JJ NNS . ``\nThe U.S. has denied involvement in the incident .\tDT NNP VBZ VBN NN IN DT NN .\nU.S. forces in Iraq arrested a number of Iranians recently .\tNNP NNS IN NNP VBN DT NN IN NNS RB .\nWashington has accused Tehran of aiding Shi'ite militants involved in sectarian attacks .\tNNP VBZ VBN NNP IN VBG NNP NNS VBN IN JJ NNS .\nAt least five people have been killed and six others wounded in shootings at two Pakistani military posts in a semi-autonomous tribal region bordering Afghanistan .\tIN JJS CD NNS VBP VBN VBN CC CD NNS VBN IN NNS IN CD JJ JJ NNS IN DT JJ JJ NN VBG NNP .\nSecurity officials say rockets hit a base near Miranshah in North Waziristan before dawn Sunday , killing at least three people , including a soldier , and wounding four .\tNN NNS VBP NNS VBD DT NN IN NNP IN NNP NNP IN NN NNP , VBG IN JJ CD NNS , IN DT NN , CC VBG CD .\nLater in the same region , Pakistani security forces fatally shot two armed men at a checkpoint and arrested two others , one of whom was wounded .\tRB IN DT JJ NN , JJ NN NNS RB VBD CD JJ NNS IN DT NN CC VBN CD NNS , CD IN WP VBD VBN .\nPakistan 's army has been trying to clear militants from its tribal regions .\tNNP POS NN VBZ VBN VBG TO VB NNS IN PRP$ JJ NNS .\nMany of the militants operating in the border areas are al-Qaida-linked fighters who fled Afghanistan after U.S.-led forces ousted the Taleban .\tNN IN DT NNS VBG IN DT NN NNS VBP JJ NNS WP VBD NNP IN JJ NNS VBD DT NNP .\nAfghan President Hamid Karzai has rejected U.S. criticism of his anti-drug program , called international help in the fight ' half-hearted , ' and demanded greater control over U.S. military operations in his country .\tJJ NNP NNP NNP VBZ VBN NNP NN IN PRP$ JJ NN , VBD JJ NN IN DT NN `` JJ , `` CC VBN JJR NN IN NNP JJ NNS IN PRP$ NN .\nSpeaking on CNN on the eve of a White House meeting Monday with President Bush , Mr. Karzai also condemned the reported deaths of two Afghan prisoners in U.S. custody .\tVBG IN NNP IN DT NN IN DT NNP NNP NN NNP IN NNP NNP , NNP NNP RB VBD DT JJ NNS IN CD JJ NNS IN NNP NN .\nHe called for strict punishment for those who abuse detainees , but added the behavior of a few must not reflect on the United States as a whole .\tPRP VBD IN JJ NN IN DT WP VB NNS , CC VBD DT NN IN DT JJ MD RB VB IN DT NNP NNPS IN DT NN .\nMr. Karzai noted that at least 30 percent of the country 's poppy fields have been destroyed and called on international community to step up its own efforts instead of blaming the Afghans .\tNNP NNP VBD IN IN JJS CD NN IN DT NN POS NN NNS VBP VBN VBN CC VBN IN JJ NN TO VB RP PRP$ JJ NNS IN IN VBG DT NNS .\nThe United Nations says unidentified gunmen in Sudan 's western Darfur region have ambushed and wounded three members of an African Union team .\tDT NNP NNP VBZ JJ NNS IN NNP POS JJ NNP NN VBP VBN CC VBN CD NNS IN DT NNP NNP NN .\nA U.N. spokeswoman said Wednesday , two of those wounded were AU monitors .\tDT NNP NN VBD NNP , CD IN DT VBN VBD NNP NNS .\nThe third victim was a Sudanese translator .\tDT JJ NN VBD DT JJ NN .\nThe spokeswoman said one of the monitors was shot in the neck during the attack Tuesday north of the town of Nyala .\tDT NN VBD CD IN DT NNS VBD VBN IN DT NN IN DT NN NNP NN IN DT NN IN NNP .\nShe said the other two were only lightly hurt and that all three are now in stable condition .\tPRP VBD DT JJ CD VBD RB RB VBN CC IN DT CD VBP RB IN JJ NN .\nLast week , a U.S. development official was shot in the face while working in Darfur .\tJJ NN , DT NNP NN NN VBD VBN IN DT NN IN VBG IN NNP .\nShe survived the attack .\tPRP VBD DT NN .\nThe African Union has a force of at least 2,000 personnel in Darfur , including troops and cease-fire monitors .\tDT NNP NNP VBZ DT NN IN IN JJS CD NNS IN NNP , VBG NNS CC NN NNS .\nThe force has limited power to protect civilians .\tDT NN VBZ VBN NN TO VB NNS .\nNegotiations to win the freedom of 19 South Korean hostages held in Afghanistan have stalled .\tNNS TO VB DT NN IN CD JJ JJ NNS VBN IN NNP VBP VBN .\nFace to face talks between South Korean officials and Taleban militants broke down last week after the kidnappers released two female hostages in what they called a gesture of goodwill .\tNN TO VB NNS IN JJ JJ NNS CC NNP NNS VBD RB JJ NN IN DT NNS VBD CD JJ NNS IN WP PRP VBD DT NN IN NN .\nTaleban spokesmen say South Korean negotiators have asked for more time .\tNNP NNS VBP JJ JJ NNS VBP VBN IN JJR NN .\nThe militants have already executed two male hostages and are threatening to kill the rest if the Afghan government does not release Taleban prisoners .\tDT NNS VBP RB VBN CD JJ NNS CC VBP VBG TO VB DT NN IN DT JJ NN VBZ RB VB NNP NNS .\nKabul has ruled out a prisoner swap .\tNNP VBZ VBN RP DT NN NN .\nTaleban militants abducted the group of 23 Koreans more than a month ago as they traveled by bus to southern Afghanistan to do charity work on behalf of their Christian church .\tNNP NNS VBD DT NN IN CD NNS JJR IN DT NN RB IN PRP VBD IN NN TO JJ NNP TO VB NN NN IN NN IN PRP$ JJ NN .\nMuslims around the world are preparing for the start of Islam 's holy month of Ramadan .\tNNPS IN DT NN VBP VBG IN DT NN IN NNP POS JJ NN IN NNP .\nSome countries begin observances Monday .\tDT NNS VBP NNS NNP .\nThe timing of the start of the holiday varies in Muslim communities and countries depending on the sighting of the new moon .\tDT NN IN DT NN IN DT NN NNS IN NNP NNS CC NNS VBG IN DT NN IN DT JJ NN .\nRamadan , the ninth month of the Islamic calendar , marks the time 1,400 years ago when Muslims believe the words of Islam 's holy book , the Koran , were revealed to the Prophet Muhammed .\tNNP , DT JJ NN IN DT NNP NN , VBZ DT NN CD NNS RB WRB NNS VBP DT NNS IN NNP POS JJ NN , DT NNP , VBD VBN TO DT NNP NNP .\nDuring Ramadan , Muslims fast from sunrise to sundown - abstaining from eating , drinking , smoking and sexual relations .\tIN NNP , NNP RB IN NN TO VB : VBG IN NN , NN , NN CC JJ NNS .\nThe fast is broken at sundown each day with a feast called ' iftaar . '\tDT NN VBZ VBN IN NN DT NN IN DT NN VBN `` NNP . ``\nPakistani officials say a clash between security forces and Taliban militants has killed at least 10 people in the northwestern Swat Valley region .\tJJ NNS VBP DT NN IN NN NNS CC NNP NNS VBZ VBN IN JJS CD NNS IN DT JJ NNP NNP NN .\nOfficials say the fighting erupted when militants attacked a paramilitary convoy late Tuesday in the Kabal area , a Taliban stronghold .\tNNS VBP DT NN VBD WRB NNS VBD DT JJ NN JJ NNP IN DT NNP NN , DT NNP NN .\nThey say security forces later foiled a suicide attack , destroying an explosives-laden vehicle in the same area .\tPRP VBP NN NNS RB VBD DT NN NN , VBG DT JJ NN IN DT JJ NN .\nOfficials say at least five security personnel and five militants were killed in the fighting .\tNNS VBP IN JJS CD NN NNS CC CD NNS VBD VBN IN DT NN .\nSince August , Pakistan 's military has been locked in ongoing battles against Taliban and al-Qaida militants in parts of the country 's rural northwest .\tIN NNP , NNP POS NN VBZ VBN VBN IN JJ NNS IN NNP CC NNP NNS IN NNS IN DT NN POS JJ NN .\nThe Pakistani government is under pressure from neighboring Afghanistan and the United States to take on militants based along the Afghan border .\tDT JJ NN VBZ IN NN IN VBG NNP CC DT NNP NNPS TO VB RP NNS VBN IN DT JJ NN .\nSeveral armed Palestinian factions have pledged to maintain calm during Wednesday 's Palestinian parliamentary elections .\tJJ JJ JJ NNS VBP VBN TO VB NN IN NNP POS JJ JJ NNS .\nThe groups , including Hamas and Fatah-linked al-Aqsa Martyrs Brigades , say their militants will not be armed during the vote .\tDT NNS , VBG NNP CC NNP NNP NNP NNP , VBP PRP$ NNS MD RB VB VBN IN DT NN .\nDespite the pledge , a Fatah election worker was killed in the West Bank town of Nablus overnight .\tIN DT NN , DT NNP NN NN VBD VBN IN DT NNP NNP NN IN NNP RB .\nPalestinian Authority President Mahmoud Abbas called Tuesday for all Palestinians to take part in the election .\tJJ NNP NNP NNP NNP VBD NNP IN DT NNS TO VB NN IN DT NN .\nOpinion polls show almost equal support for the militant group Hamas and Mr. Abbas ' Fatah .\tNNP NNS VBP RB JJ NN IN DT JJ NN NNP CC NNP NNP POS NNP .\nBoth groups have indicated they would be ready to form a coalition after the vote .\tDT NNS VBP VBN PRP MD VB JJ TO VB DT NN IN DT NN .\nA top Hamas leader also suggested his group might agree to future negotiations with Israel through a third party .\tDT JJ NNP NN RB VBD PRP$ NN MD VB TO JJ NNS IN NNP IN DT JJ NN .\nHamas has carried out dozens of suicide bombings and remains committed to Israel 's destruction .\tNNP VBZ VBN RP NNS IN NN NNS CC VBZ JJ TO NNP POS NN .\nIsraeli and U.S. officials call Hamas a terrorist organization .\tJJ CC NNP NNS VBP NNP DT JJ NN .\nHealth officials in China say the number of cholera cases reported on the southern island of Hainan has increased to 51 .\tNN NNS IN NNP VBP DT NN IN NN NNS VBN IN DT JJ NN IN NNP VBZ VBN TO CD .\nChina 's official Xinhua news agency reports the provincial health department saying that 29 of those affected have been treated and released from the hospital .\tNNP POS JJ NNP NN NN VBZ DT JJ NN NN VBG IN CD IN DT VBN VBP VBN VBN CC VBN IN DT NN .\nNo deaths from the outbreak have been reported .\tDT NNS IN DT NN VBP VBN VBN .\nOn Sunday , authorities sealed the campus of Hainan University after 70 students were hospitalized with intestinal problems .\tIN NNP , NNS VBD DT NN IN NNP NNP IN CD NNS VBD VBN IN JJ NNS .\nHealth officials say the outbreak began at a village dinner party near Danzhou .\tNN NNS VBP DT NN VBD IN DT NN NN NN IN NNP .\nThey have blamed heavy floods for creating conditions ripe for the disease .\tPRP VBP VBN JJ NNS IN VBG NNS JJ IN DT NN .\nCholera is a water-borne disease , which starts with acute diarrhea and can lead to kidney failure .\tNNP VBZ DT JJ NN , WDT VBZ IN JJ NN CC MD VB TO NN NN .\nIt is especially dangerous for young children .\tPRP VBZ RB JJ IN JJ NNS .\nReed International PLC said that net income for the six months ended Oct. 1 slipped 5 % to # 89.7 million ( $ 141.9 million ) , or 16 pence a share , from # 94.8 million ( $ 149.9 million ) , or 17.3 pence a share .\tNNP NNP NNP VBD IN JJ NN IN DT CD NNS VBN NNP CD VBD CD NN TO $ CD CD LRB $ CD CD RRB , CC CD NN DT NN , IN $ CD CD LRB $ CD CD RRB , CC CD NN DT NN .\nThe British paper , packaging and publishing concern , said profit from continuing lines fell 10 % to # 118 million from # 130.6 million .\tDT JJ NN , NN CC NN NN , VBD NN IN VBG NNS VBD CD NN TO $ CD CD IN $ CD CD .\nWhile there were no one-time gains or losses in the latest period , there was a one-time gain of # 18 million in the 1988 period .\tIN EX VBD DT JJ NNS CC NNS IN DT JJS NN , EX VBD DT JJ NN IN $ CD CD IN DT CD NN .\nAnd while there was no profit this year from discontinued operations , last year they contributed # 34 million , before tax .\tCC IN EX VBD DT NN DT NN IN VBN NNS , JJ NN PRP VBD $ CD CD , IN NN .\nPretax profit fell 3.7 % to # 128 million from # 133 million and was below analysts ' expectations of # 130 million to # 135 million , but shares rose 6 pence to 388 pence in early trading yesterday in London .\tJJ NN VBD CD NN TO $ CD CD IN $ CD CD CC VBD IN NNS POS NNS IN $ CD CD TO $ CD CD , CC NNS VBD CD NN TO CD NN IN JJ NN NN IN NNP .\nReed is paying an interim dividend of 4.6 pence , up 15 % from 4 pence a year earlier .\tNNP VBZ VBG DT JJ NN IN CD NN , RB CD NN IN CD NN DT NN RBR .\nSales fell 20 % to # 722 million .\tNNS VBD CD NN TO $ CD CD .\nEarnings were hurt by disposal of operations in its restructuring , Reed said .\tNNS VBD VBN IN NN IN NNS IN PRP$ NN , NNP VBD .\nThe German economy - the fifth largest economy in the world in PPP terms and Europe 's largest - is a leading exporter of machinery , vehicles , chemicals , and household equipment and benefits from a highly skilled labor force .\tDT JJ NN IN DT JJ JJS NN IN DT NN IN NNP NNS CC NNP POS JJS : VBZ DT VBG NN IN NN , NNS , NNS , CC NN NN CC NNS IN DT RB JJ NN NN .\nLike its western European neighbors , Germany faces significant demographic challenges to sustained long-term growth .\tIN PRP$ JJ JJ NNS , NNP VBZ JJ JJ NNS TO JJ JJ NN .\nLow fertility rates and declining net immigration are increasing pressure on the country 's social welfare system and necessitate structural reforms .\tNNP NN NNS CC VBG JJ NN VBP VBG NN IN DT NN POS JJ NN NN CC JJ JJ NNS .\nThe modernization and integration of the eastern German economy - where unemployment can exceed 20 % in some municipalities - continues to be a costly long-term process , with annual transfers from west to east amounting in 2008 alone to roughly $ 12 billion .\tDT NN CC NN IN DT JJ JJ NN : WRB NN MD VB CD NN IN DT NNS : VBZ TO VB DT JJ JJ NN , IN JJ NNS IN NN TO JJ NN IN CD RB TO RB $ CD CD .\nReforms launched by the government of Chancellor Gerhard SCHROEDER ( 1998 - 2005 ) , deemed necessary to address chronically high unemployment and low average growth , contributed to strong growth in 2006 and 2007 and falling unemployment .\tNNS VBN IN DT NN IN NNP NNP NNP LRB CD IN CD RRB , VBD JJ TO VB RB JJ NN CC JJ JJ NN , VBD TO JJ NN IN CD CC CD CC VBG NN .\nThese advances , as well as a government subsidized , reduced working hour scheme , help explain the relatively modest increase in unemployment during the 2008 - 9 recession - the deepest since World War II - and its decrease to 7.4 % in 2010 .\tDT NNS , RB RB IN DT NN JJ , JJ VBG NN NN , VBP VB DT RB JJ NN IN NN IN DT CD : CD NN IN DT JJS IN NNP NNP NNP : CC PRP$ NN TO CD NN IN CD .\nGDP contracted 4.7 % in 2009 but grew by 3.6 % in 2010 .\tNN VBD CD NN IN CD CC VBD IN CD NN IN CD .\nIn its annual projection for 2011 , the Federal Government expects the upswing to continue , with GDP forecast to grow this year at a real rate of 2.3 % .\tIN PRP$ JJ NN IN CD , DT NNP NNP VBZ DT NN TO VB , IN NN NN TO VB DT NN IN DT JJ NN IN CD NN .\nThe recovery was attributable primarily to rebounding manufacturing orders and exports - increasingly outside the Euro Zone .\tDT NN VBD JJ RB TO VBG NN NNS CC NNS IN RB IN DT NNP NNP .\nDomestic demand , however , is becoming more significant driver of Germany 's economic expansion .\tJJ NN , RB , VBZ VBG RBR JJ NN IN NNP POS JJ NN .\nStimulus and stabilization efforts initiated in 2008 and 2009 and tax cuts introduced in Chancellor Angela MERKEL 's second term increased Germany 's budget deficit to 3.3 % in 2010 .\tNN CC NN NNS VBN IN CD CC CD CC NN NNS VBN IN NNP NNP NNP POS JJ NN VBD NNP POS NN NN TO CD NN IN CD .\nThe Bundesbank expects the deficit to drop to about 2.5 % in 2011 , below the EU 's 3 % limit .\tDT NNP VBZ DT NN TO VB TO IN CD NN IN CD , IN DT NNP POS CD NN NN .\nA constitutional amendment approved in 2009 likewise limits the federal government to structural deficits of no more than 0.35 % of GDP per annum as of 2016 .\tDT JJ NN VBN IN CD RB VBZ DT JJ NN TO JJ NNS IN DT JJR IN CD NN IN NN IN NN IN IN CD .\nTwo centuries of Viking raids into Europe tapered off following the adoption of Christianity by King Olav TRYGGVASON in 994 .\tCD NNS IN VBG NNS IN NNP VBD RP VBG DT NN IN NN IN NNP NNP NNP IN CD .\nConversion of the Norwegian kingdom occurred over the next several decades .\tNN IN DT JJ NN VBD IN DT JJ JJ NNS .\nIn 1397 , Norway was absorbed into a union with Denmark that lasted more than four centuries .\tIN CD , NNP VBD VBN IN DT NN IN NNP WDT VBD JJR IN CD NNS .\nIn 1814 , Norwegians resisted the cession of their country to Sweden and adopted a new constitution .\tIN CD , NNS VBD DT NN IN PRP$ NN TO NNP CC VBD DT JJ NN .\nSweden then invaded Norway but agreed to let Norway keep its constitution in return for accepting the union under a Swedish king .\tNNP RB VBD NNP CC VBD TO VB NNP VB PRP$ NN IN NN IN VBG DT NN IN DT JJ NN .\nRising nationalism throughout the 19th century led to a 1905 referendum granting Norway independence .\tVBG NN IN DT JJ NN VBD TO DT CD NN VBG NNP NN .\nAlthough Norway remained neutral in World War I , it suffered heavy losses to its shipping .\tIN NNP VBD JJ IN NNP NNP NNP , PRP VBD JJ NNS TO PRP$ NN .\nNorway proclaimed its neutrality at the outset of World War II , but was nonetheless occupied for five years by Nazi Germany ( 1940 - 45 ) .\tNNP VBD PRP$ NN IN DT NN IN NNP NNP NNP , CC VBD RB VBN IN CD NNS IN NNP NNP LRB CD IN CD RRB .\nIn 1949 , neutrality was abandoned and Norway became a member of NATO .\tIN CD , NN VBD VBN CC NNP VBD DT NN IN NNP .\nDiscovery of oil and gas in adjacent waters in the late 1960s boosted Norway 's economic fortunes .\tNN IN NN CC NN IN JJ NNS IN DT JJ NNS VBD NNP POS JJ NNS .\nIn referenda held in 1972 and 1994 , Norway rejected joining the EU .\tIN NN VBN IN CD CC CD , NNP VBD VBG DT NNP .\nKey domestic issues include immigration and integration of ethnic minorities , maintaining the country 's extensive social safety net with an aging population , and preserving economic competitiveness .\tNNP JJ NNS VBP NN CC NN IN JJ NNS , VBG DT NN POS JJ JJ NN NN IN DT VBG NN , CC VBG JJ NN .\nIn 1959 , three years before independence from Belgium , the majority ethnic group , the Hutus , overthrew the ruling Tutsi king .\tIN CD , CD NNS IN NN IN NNP , DT NN JJ NN , DT NNP , VBD DT NN NNP NN .\nOver the next several years , thousands of Tutsis were killed , and some 1,50,000 driven into exile in neighboring countries .\tIN DT JJ JJ NNS , NNS IN NNPS VBD VBN , CC DT CD VBN IN NN IN JJ NNS .\nThe children of these exiles later formed a rebel group , the Rwandan Patriotic Front ( RPF ) , and began a civil war in 1990 .\tDT NNS IN DT NNS RB VBD DT NN NN , DT JJ NNP NNP LRB NNP RRB , CC VBD DT JJ NN IN CD .\nThe war , along with several political and economic upheavals , exacerbated ethnic tensions , culminating in April 1994 in a state-orchestrated genocide , in which Rwandans killed up to a million of their fellow citizens , including approximately three-quarters of the Tutsi population .\tDT NN , IN IN JJ JJ CC JJ NNS , VBD JJ NNS , VBG IN NNP CD IN DT JJ NN , IN WDT NNS VBD RP TO DT CD IN PRP$ JJ NNS , VBG RB NNS IN DT NNP NN .\nThe genocide ended later that same year when the predominantly Tutsi RPF , operating out of Uganda and northern Rwanda , defeated the national army and Hutu militias , and established an RPF-led government of national unity .\tDT NN VBD RB DT JJ NN WRB DT RB NNP NNP , VBG IN IN NNP CC JJ NNP , VBD DT JJ NN CC NNP NNS , CC VBD DT JJ NN IN JJ NN .\nApproximately 2 million Hutu refugees - many fearing Tutsi retribution - fled to neighboring Burundi , Tanzania , Uganda , and Zaire .\tRB CD CD NNP NNS IN JJ VBG NNP NN : VBD TO VBG NNP , NNP , NNP , CC NNP .\nSince then , most of the refugees have returned to Rwanda , but several thousand remained in the neighboring Democratic Republic of the Congo ( DRC ; the former Zaire ) and formed an extremist insurgency bent on retaking Rwanda , much as the RPF tried in 1990 .\tIN RB , JJS IN DT NNS VBP VBN TO NNP , CC JJ CD VBD IN DT JJ NNP NNP IN DT NNP LRB NNP ; DT JJ NNP RRB CC VBD DT NN NN NN IN VBG NNP , RB IN DT NNP VBD IN CD .\nRwanda held its first local elections in 1999 and its first post-genocide presidential and legislative elections in 2003 .\tNNP VBD PRP$ JJ JJ NNS IN CD CC PRP$ JJ JJ JJ CC JJ NNS IN CD .\nRwanda in 2009 staged a joint military operation with the Congolese Army in DRC to rout out the Hutu extremist insurgency there and Kigali and Kinshasa restored diplomatic relations .\tNNP IN CD VBD DT JJ NN NN IN DT JJ NNP IN NNP TO NN IN DT NNP NN NN RB CC NNP CC NNP VBD JJ NNS .\nRwanda also joined the Commonwealth in late 2009 .\tNNP RB VBD DT NN IN JJ CD .\nTourism , commerce , and finance are the mainstays of Andorra 's tiny , well-to-do economy , accounting for more than three-quarters of GDP .\tNNP , NN , CC NN VBP DT NNS IN NNP POS JJ , JJ NN , VBG IN JJR IN NNS IN NN .\nAn estimated 9 million tourists visit annually , attracted by Andorra 's duty-free status for some products and by its summer and winter resorts .\tDT VBN CD CD NNS NN RB , VBN IN NNP POS JJ NN IN DT NNS CC IN PRP$ NN CC NN NNS .\nAndorra 's comparative advantage eroded when the borders of neighboring France and Spain opened , providing broader availability of goods and lower tariffs .\tNNP POS JJ NN VBN WRB DT NNS IN JJ NNP CC NNP VBD , VBG JJR NN IN NNS CC JJR NNS .\nThe banking sector also contributes substantially to the economy .\tDT NN NN RB VBZ RB TO DT NN .\nAgricultural production is limited - only 2 % of the land is arable - and most food has to be imported .\tJJ NN VBZ VBN IN RB CD NN IN DT NN VBZ JJ : CC RBS NN VBZ TO VB VBN .\nThe principal livestock activity is sheep raising .\tDT JJ NN NN VBZ JJ NN .\nManufacturing output and exports consist mainly of perfumes and cosmetic products , products of the printing industry , electrical machinery and equipment , clothing , tobacco products , and furniture .\tNNP NN CC NNS VBP RB IN NNS CC JJ NNS , NNS IN DT NN NN , JJ NN CC NN , NN , NN NNS , CC NN .\nAndorra is a member of the EU Customs Union and is treated as an EU member for trade in manufactured goods ( no tariffs ) and as a non-EU member for agricultural products .\tNNP VBZ DT NN IN DT NNP NNP NNP CC VBZ VBN IN DT NNP NN IN NN IN JJ NNS LRB DT NNS RRB CC IN DT JJ NN IN JJ NNS .\nA PRINCE had some Monkeys trained to dance .\tDT NN VBD DT NNS VBN TO VB .\nBeing naturally great mimics of men 's actions , they showed themselves most apt pupils , and when arrayed in their rich clothes and masks , they danced as well as any of the courtiers .\tVBG RB JJ NNS IN NNS POS NNS , PRP VBD PRP RBS JJ NNS , CC WRB VBN IN PRP$ JJ NNS CC NNS , PRP VBD RB RB IN DT IN DT NNS .\nThe spectacle was often repeated with great applause , till on one occasion a courtier , bent on mischief , took from his pocket a handful of nuts and threw them upon the stage .\tDT NN VBD RB VBN IN JJ NN , NN IN CD NN DT NN , NN IN NN , VBD IN PRP$ NN DT NN IN NNS CC VBD PRP IN DT NN .\nThe Monkeys at the sight of the nuts forgot their dancing and became ( as indeed they were ) Monkeys instead of actors .\tDT NNS IN DT NN IN DT NNS VBP PRP$ NN CC VBD LRB IN RB PRP VBD RRB NNPS IN IN NNS .\nPulling off their masks and tearing their robes , they fought with one another for the nuts .\tVBG RP PRP$ NNS CC VBG PRP$ NNS , PRP VBD IN CD DT IN DT NNS .\nThe dancing spectacle thus came to an end amidst the laughter and ridicule of the audience .\tDT NN NN RB VBD TO DT NN IN DT NN CC NN IN DT NN .\n- ' Not everything you see is what it appears to be . '\t: `` RB DT PRP VBP VBZ WP PRP VBZ TO VB . ``\nA HUNTSMAN , returning with his dogs from the field , fell in by chance with a Fisherman who was bringing home a basket well laden with fish .\tDT NN , VBG IN PRP$ NNS IN DT NN , VBD IN IN NN IN DT NN WP VBD VBG NN DT NN RB VBN IN NN .\nThe Huntsman wished to have the fish , and their owner experienced an equal longing for the contents of the game-bag .\tDT NN VBD TO VB DT NN , CC PRP$ NN VBD DT JJ NN IN DT NNS IN DT NN .\nThey quickly agreed to exchange the produce of their day 's sport .\tPRP RB VBD TO VB DT NN IN PRP$ NN POS NN .\nEach was so well pleased with his bargain that they made for some time the same exchange day after day .\tDT VBD RB RB VBN IN PRP$ NN IN PRP VBD IN DT NN DT JJ NN NN IN NN .\nFinally a neighbor said to them , ' If you go on in this way , you will soon destroy by frequent use the pleasure of your exchange , and each will again wish to retain the fruits of his own sport . '\tRB DT NN VBD TO PRP , `` IN PRP VBP IN IN DT NN , PRP MD RB VB IN JJ NN DT NN IN PRP$ NN , CC DT MD RB VB TO VB DT NNS IN PRP$ JJ NN . ``\nAbstain and enjoy .\tVB CC VB .\nA THIEF who had brought a suit against his accomplices to recover his share of the plunder taken from an Honest Man , demanded the Honest Man 's attendance at the trial to testify to his loss .\tDT NN WP VBD VBN DT NN IN PRP$ NNS TO VB PRP$ NN IN DT NN VBN IN DT NNP NN , VBD DT NNP NNP POS NN IN DT NN TO VB TO PRP$ NN .\nBut the Honest Man explained that as he was merely the agent of a company of other honest men it was none of his affair ; and when the officers came to serve him with a subpoena he hid himself behind his back and wiled away the dragging hours of retirement and inaction by picking his own pockets .\tCC DT JJ NN VBD IN IN PRP VBD RB DT NN IN DT NN IN JJ JJ NNS PRP VBD NN IN PRP$ NN ; CC WRB DT NNS VBD TO VB PRP IN DT NN PRP VBD PRP IN PRP$ NN CC VBD RP DT VBG NNS IN NN CC NN IN VBG PRP$ JJ NNS .\nOne day after Senator Barack Obama picked up the endorsement of a key Democrat , U.S. media reports say Obama has gained as many as eight delegates .\tCD NN IN NNP NNP NNP VBD RP DT NN IN DT JJ NNP , NNP NNS NNS VBP NNP VBZ VBN RB JJ IN CD NNS .\nThe reports conflict on how many moved from Senator John Edwards , who endorsed Obama May 14 .\tDT NNS VBP IN WRB JJ VBD IN NNP NNP NNP , WP VBD NNP NNP CD .\nOn Thursday , the Democratic Party frontrunner lashed out at the White House , following comments by President Bush in Israel .\tIN NNP , DT NNP NNP NN VBD RP IN DT NNP NNP , VBG NNS IN NNP NNP IN NNP .\nVOA 's Robert Raffaele has more .\tNNP POS NNP NNP VBZ RBR .\nTension has flared on the border between Pakistan and Afghanistan after the two sides exchanged artillery and machine-gun fire .\tNNP VBZ VBN IN DT NN IN NNP CC NNP IN DT CD NNS VBD NN CC JJ NN .\nThere were no confirmed reports of casualties in the clash that took place late Monday in the North Waziristan tribal region .\tEX VBD DT VBN NNS IN NNS IN DT NN WDT VBD NN JJ NNP IN DT NNP NNP JJ NN .\nThe clash came a day after mortar rounds fired from the Afghan side of the border killed a Pakistani soldier and wounded three others in the same mountainous border area .\tDT NN VBD DT NN IN NN NNS VBD IN DT JJ NN IN DT NN VBD DT JJ NN CC VBD CD NNS IN DT JJ JJ NN NN .\nPakistani military officials say they are still unclear about who was responsible for the firing from the Afghan side of the border .\tJJ JJ NNS VBP PRP VBP RB JJ IN WP VBD JJ IN DT NN IN DT JJ NN IN DT NN .\nOn Monday , a Pakistani spokesman said he is certain the shelling did not come from American positions , but is asking for a U.S. investigation because coalition forces are responsible for security along the Afghan border .\tIN NNP , DT JJ NN VBD PRP VBZ JJ DT NN VBD RB VB IN JJ NNS , CC VBZ VBG IN DT NNP NN IN NN NNS VBP JJ IN NN IN DT JJ NN .\nThe United States and Britain have temporarily closed their diplomatic offices in Lagos , Nigeria , citing a security issue .\tDT NNP NNPS CC NNP VBP RB VBN PRP$ JJ NNS IN NNP , NNP , VBG DT NN NN .\nA public affairs officer , Claudia Annyaso , at the U.S. Embassy in Abuja told VOA Friday that the U.S. consulate in Lagos has been close because of an security issue , which was being addressed by U.S. and Nigerian officials .\tDT JJ NNS NN , NNP NNP , IN DT NNP NNP IN NNP VBD NNP NNP IN DT NNP NN IN NNP VBZ VBN RB IN IN DT NN NN , WDT VBD VBG VBN IN NNP CC JJ NNS .\nThe officer would not speculate on when the consulate would reopen , and had no further information on the security situation .\tDT NN MD RB VB IN WRB DT NN MD VB , CC VBD DT JJ NN IN DT NN NN .\nBritish officials say they also have closed their High Commission offices in Lagos .\tJJ NNS VBP PRP RB VBP VBN PRP$ NNP NNP NNS IN NNP .\nIn the past , al-Qaida leader Osama Bin Laden has cited Nigeria as a candidate for what he called ' liberation . '\tIN DT NN , NNP NN NNP NNP NNP VBZ VBN NNP IN DT NN IN WP PRP VBD `` NN . ``\nNigeria is a major petroleum producer and Africa 's most populous nation .\tNNP VBZ DT JJ NN NN CC NNP POS JJS JJ NN .\nMusician Ted Onulak is passionate about his music .\tNN NNP NNP VBZ JJ IN PRP$ NN .\nHis playing and singing style are deeply rooted in the blues , and he lists such jazz greats as Charlie Parker and John Lee Hooker as his musical influences .\tPRP$ NN CC NN NN VBP RB VBN IN DT NNS , CC PRP VBZ JJ NN NNS IN NNP NNP CC NNP NNP NNP IN PRP$ JJ NNS .\nBut his current career only came about when fate intervened in his life .\tCC PRP$ JJ NN RB VBD IN WRB NN VBD IN PRP$ NN .\nVOA 's Tetiana Koprowicz recently caught up with him and has more on how this former diplomat turned his loss of eyesight into inspiration .\tNNP POS NNP NNP RB VBD RP IN PRP CC VBZ RBR IN WRB DT JJ NN VBD PRP$ NN IN NN IN NN .\nJim Bertel narrates .\tNNP NNP VBZ .\nIn Bangladesh , the death toll from flooding and mudslides unleashed by monsoon rains reached nearly 100 on Monday .\tIN NNP , DT NN NN IN NN CC NNS VBN IN NN NNS VBD RB CD IN NNP .\nBangladeshi officials say worst hit was the southeastern port city of Chittagong , where 84 people died after many hillside homes were swept away or collapsed under tons of mud .\tJJ NNS VBP JJS NN VBD DT JJ JJ NN IN NNP , WRB CD NNS VBD IN JJ JJ NNS VBD VBN RB CC VBN IN NNS IN NN .\nTelephone lines to the rest of Bangladesh are down , and shops and schools in Chittagong are closed .\tNNP NNS TO DT NN IN NNP VBP RB , CC NNS CC NNS IN NNP VBP VBN .\nAnother 15 people were reported killed in other parts of the country by thunderstorms and lightning .\tDT CD NNS VBD VBN VBN IN JJ NNS IN DT NN IN NNS CC NN .\nMany people are missing , and the death toll is expected to rise as rescue workers search through rubble .\tJJ NNS VBP VBG , CC DT NN NN VBZ VBN TO VB IN NN NNS NN IN NN .\nRescue efforts are being hampered by damaged roads and flooding .\tNN NNS VBP VBG VBN IN JJ NNS CC NN .\nJune marks the beginning of the annual monsoon season in South Asia which lasts until mid-September .\tNNP VBZ DT NN IN DT JJ NN NN IN NNP NNP WDT VBZ IN NN .\nIraqi officials say two suicide bombers killed at least four people and wounded 17 in an attack outside a Shi'ite mosque in the northwestern city of Tal Afar .\tJJ NNS VBP CD NN NNS VBD IN JJS CD NNS CC VBD CD IN DT NN IN DT NNP NN IN DT JJ NN IN NNP NNP .\nPolice say security forces fired at the bombers , who still managed to blow themselves up during prayer services Friday at the mosque .\tNNS VBP NN NNS VBD IN DT NNS , WP RB VBD TO VB PRP RP IN NN NNS NNP IN DT NN .\nIn other news , the U.S. military says troops detained two suspected al-Qaida in Iraq fighters allegedly linked to a fatal roadside bombing on January 29 .\tIN JJ NN , DT NNP NN VBZ NNS VBD CD JJ NNP IN NNP NNS RB VBN TO DT JJ NN VBG IN NNP CD .\nA military statement says one of the suspects was the ' number one high value ' target of the U.S. brigade that captured him .\tDT JJ NN VBZ CD IN DT NNS VBD DT `` NN CD JJ NN `` NN IN DT NNP NN WDT VBD PRP .\nThe statement says five other al-Qaida members suspected of facilitating roadside bombings in Taji Qada , northwest of Baghdad , were also detained .\tDT NN VBZ CD JJ NNP NNS VBN IN VBG NN NNS IN NNP NNP , NN IN NNP , VBD RB VBN .\nU.S. military officials in Iraq say at least 21 Iraqis have been killed in three attacks north of Baghdad .\tNNP JJ NNS IN NNP VBP IN JJS CD NNS VBP VBN VBN IN CD NNS RB IN NNP .\nIn the largest attack , authorities say gunmen in two vehicles opened fire on buses taking Iraqis to work at a U.S. facility in Tikrit , killing 17 civilians and wounding 13 others .\tIN DT JJS NN , NNS VBP NNS IN CD NNS VBD NN IN NNS VBG NNS TO VB IN DT NNP NN IN NNP , VBG CD NNS CC VBG CD NNS .\nLater , officials say a car bomb killed at least three Iraqi National Guardsmen north of Tikrit .\tRB , NNS VBP DT NN NN VBD IN JJS CD JJ NNP NNP NN IN NNP .\nSeparately , an Iraqi soldier was killed when a patrol came under attack in Samarra .\tRB , DT JJ NN VBD VBN WRB DT NN VBD IN NN IN NNP .\nIn other developments , the U.S. military says its engineers have begun drafting a reconstruction plan for the city of Fallujah .\tIN JJ NNS , DT NNP NN VBZ PRP$ NNS VBP VBN VBG DT NN NN IN DT NN IN NNP .\nMuch of the flashpoint city west of Baghdad was devastated last month in fighting between insurgents and U.S. forces .\tNN IN DT NN NN NN IN NNP VBD VBN JJ NN IN VBG IN NNS CC NNP NNS .\nOfficials say engineers will first move to restore water and electricity , before rebuilding hospitals , schools and solid waste facilities .\tNNS VBP NNS MD RB VB TO VB NN CC NN , IN VBG NNS , NNS CC JJ NN NNS .\nThe U.S. military says a roadside bomb has killed an American soldier in eastern Afghanistan .\tDT NNP NN VBZ DT NN NN VBZ VBN DT JJ NN IN JJ NNP .\nThe blast in Paktika province wounded another U.S. service member and an Afghan soldier .\tDT NN IN NNP NN VBD DT NNP NN NN CC DT JJ NN .\nIn neighboring Zabul province , suspected Taleban insurgents killed an Afghan intelligence officer Thursday .\tIN JJ NNP NN , JJ NNP NNS VBD DT JJ NN NN NNP .\nAnd in Helmand province , a Muslim cleric was wounded by unidentified gunmen riding a motorcycle .\tCC IN NNP NN , DT NNP NN VBD VBN IN JJ NNS VBG DT NN .\nA purported Taleban spokesman claimed responsibility for those two attacks .\tDT JJ NNP NN VBD NN IN DT CD NNS .\nMeanwhile , the United States and Afghanistan agreed in principle to transfer most Afghans in U.S. custody to the Afghan government .\tRB , DT NNP NNPS CC NNP VBD IN NN TO VB RBS NNS IN NNP NN TO DT JJ NN .\nA spokesman for Afghan President Hamid Karzai says prisoners from the Guantanamo Bay detention center and U.S. facilities in Afghanistan will be among those handed over .\tDT NN IN JJ NNP NNP NNP VBZ NNS IN DT NNP NNP NN NN CC NNP NNS IN NNP MD VB IN DT VBN RP .\nFormer world number one women 's tennis player Kim Clijsters of Belgium has beaten Russia 's Vera Douchevina at the Eastbourne , England grass court tennis tournament to claim her third tournament title this year .\tJJ NN NN CD NNS POS NN NN NNP NNP IN NNP VBZ VBN NNP POS NNP NNP IN DT NNP , NNP VBZ NN NN NN TO VB PRP$ JJ NN NN DT NN .\nClijsters , seeded seventh , ousted Douchevina in straight sets , 07-May , 6-0 .\tNNP , VBD JJ , JJ NNP IN JJ NNS , CD , CD .\nEarlier this year , Clijsters won tournaments at Indian Wells , California , and Miami , Florida .\tRBR DT NN , NNP VBD NNS IN NNP NNP , NNP , CC NNP , NNP .\nDouchevina was the 2002 junior champion at Wimbledon and had beaten top-seeded Amelie Mauresmo of France on her way to the finals .\tNNP VBD DT CD NN NN IN NNP CC VBD VBN JJ NNP NNP IN NNP IN PRP$ NN TO DT NNS .\nThe grass court tournament is a key warm-up for the Wimbledon championships , which start Monday in London .\tDT NN NN NN VBZ DT JJ NN IN DT NNP NNS , WDT VBP NNP IN NNP .\nTwo suspected Taleban members blew themselves up while strapping on explosives in southern Afghanistan .\tCD JJ NNP NNS VBD PRP RP IN VBG IN NNS IN JJ NNP .\nThe blast occurred Thursday near a market in an Afghan town near the Pakistani border .\tDT NN VBD NNP IN DT NN IN DT JJ NN IN DT JJ NN .\nAfghan officials say no one else was hurt in the explosion .\tJJ NNS VBP DT NN RB VBD VBN IN DT NN .\nThe blast came a day after a roadside bomb ripped through a U.S. military vehicle in the eastern province of Kunar , killing one soldier and wounding two others .\tDT NN VBD DT NN IN DT NN NN VBD IN DT NNP JJ NN IN DT JJ NN IN NNP , VBG CD NN CC VBG CD NNS .\nSuicide attacks have increased in Afghanistan in recent months , primarily in southern and eastern regions where U.S.-led coalition forces are hunting Taleban and al-Qaida fighters .\tNN NNS VBP VBN IN NNP IN JJ NNS , RB IN JJ CC JJ NNS WRB JJ NN NNS VBP VBG NNP CC NNP NNS .\nUnited Nations peacekeepers in Haiti say they will increase patrols to prevent possible kidnappings when schools reopen next week .\tNNP NNP NNS IN NNP VBP PRP MD VB NNS TO VB JJ NNS WRB NNS VB JJ NN .\nIn a statement , U.N. officials said troops and Haitian police will conduct vehicle searches and other security measures .\tIN DT NN , NNP NNS VBD NNS CC JJ NNS MD VB NN NNS CC JJ NN NNS .\nA U.N. spokesman told the Associated Press that officials fear that kidnappers may seek new victims as students return to class .\tDT NNP NN VBD DT NNP NNP IN NNS VBP IN NNS MD VB JJ NNS IN NNS VBP IN NN .\nThe U.N. Children 's Fund has condemned recent abductions of children in and around the Haitian capital , Port-au-Prince .\tDT NNP NNP POS NNP VBZ VBN JJ NNS IN NNS IN CC IN DT JJ NN , NNP .\nSince 2004 , the U.N. force in Haiti has been working to restore security and battle impunity in the impoverished nation .\tIN CD , DT NNP NN IN NNP VBZ VBN VBG TO VB NN CC NN NN IN DT JJ NN .\nThe United Nations torture investigator says he has been blocked from visiting Cuba to look into allegations of human rights abuses .\tDT NNP NNP NN NN VBZ PRP VBZ VBN VBN IN VBG NNP TO VB IN NNS IN JJ NNS NNS .\nManfred Nowak said Wednesday he was disappointed when Cuba informed him they would be unable to accommodate his mission before his term ends several months from now on October 30 .\tNNP NNP VBD NNP PRP VBD VBN WRB NNP VBD PRP PRP MD VB JJ TO VB PRP$ NN IN PRP$ NN VBZ JJ NNS IN RB IN NNP CD .\nNowak said Cuba had issued a ' clear invitation ' to allow him to assess the torture situation on the ground , but repeated attempts to schedule the trip had been blocked .\tNNP VBD NNP VBD VBN DT `` JJ NN `` TO VB PRP TO VB DT NN NN IN DT NN , CC VBN NNS TO VB DT NN VBD VBN VBN .\nThere was no immediate comment from Cuba .\tEX VBD DT JJ NN IN NNP .\nLast week , the U.S.-based human rights group Freedom House named Cuba among the top 20 worst human rights abusers in the world , saying it and the other listed countries severely suppress political opposition , independent organization , and criticism of the state .\tJJ NN , DT JJ JJ NNS NN NNP NNP VBD NNP IN DT JJ CD JJS JJ NNS NNS IN DT NN , VBG PRP CC DT JJ JJ NNS RB JJ JJ NN , JJ NN , CC NN IN DT NN .\nPresident Bush was in the state of Tennessee Friday , to highlight some of his administration 's environmental accomplishments .\tNNP NNP VBD IN DT NN IN NNP NNP , TO VB DT IN PRP$ NN POS JJ NNS .\nHe stopped there after bad weather forced him to cancel an Earth Day visit to the Great Smoky Mountains National Park .\tPRP VBD RB IN JJ NN VBD PRP TO VB DT NNP NNP NN TO DT NNP NNP NNP NNP NNP .\nThe president said Earth Day is an opportunity for Americans to recommit themselves to good stewardship of the land .\tDT NN VBD NNP NNP VBZ DT NN IN NNS TO VB PRP TO JJ NN IN DT NN .\nHe said that since the 1970s , ' the air 's cleaner , the land is better ... and the economy is growing . '\tPRP VBD IN IN DT NNS , `` DT NN POS NN , DT NN VBZ JJR : CC DT NN VBZ VBG . ``\nHe added that ozone levels have dropped , said he has enacted provisions to cut emissions from heavy diesel engines by 90 percent , and described how his administration is aggressively restoring , improving and protecting a total of three million acres of wetlands .\tPRP VBD IN NN NNS VBP VBN , VBD PRP VBZ VBN NNS TO VB NNS IN JJ NN NNS IN CD NN , CC VBD WRB PRP$ NN VBZ RB VBG , VBG CC VBG DT NN IN CD CD NNS IN NNS .\nBut critics chide him for , among other things , allowing companies to sidestep anti-pollution regulations and seeking to open public lands to timber , oil and gas exploration .\tCC NNS VBP PRP IN , IN JJ NNS , VBG NNS TO VB JJ NNS CC VBG TO VB JJ NNS TO VB , NN CC NN NN .\nColombia has rejected asylum requests by former Venezuelan military officers accused of plotting a 2002 coup against Venezuelan President Hugo Chavez .\tNNP VBZ VBN NN NNS IN JJ JJ JJ NNS VBN IN VBG DT CD NN IN JJ NNP NNP NNP .\nA Colombian government official said Tuesday the requests for refugee status had been denied but also said the decisions are being appealed .\tDT JJ NN NN VBD NNP DT NNS IN NN NN VBD VBN VBN CC RB VBD DT NNS VBP VBG VBN .\nVenezuelan former Admiral Hector Ramirez told Colombian television Tuesday that he and at least seven other former top officers face persecution if they go back to Venezuela .\tJJ JJ NNP NNP NNP VBD JJ NN NNP IN PRP CC IN JJS CD JJ JJ JJ NNS VBP NN IN PRP VBP RB TO NNP .\nThe group has been in Colombia since late last year .\tDT NN VBZ VBN IN NNP IN RB JJ NN .\nMr. Ramirez was named defense minister during the two-day long coup which temporarily deposed President Chavez .\tNNP NNP VBD VBN NN NN IN DT JJ JJ NN WDT RB VBD NNP NNP .\nVenezuelan business leader Pedro Carmona , who served as president during the coup , has been granted asylum by Colombia .\tJJ NN NN NNP NNP , WP VBD IN NN IN DT NN , VBZ VBN VBN NN IN NNP .\nBrazilian police have detained two men in connection with the recent theft of nearly $ 70 million from a bank vault in one of the largest bank robberies in history .\tJJ NNS VBP VBN CD NNS IN NN IN DT JJ NN IN RB $ CD CD IN DT NN NN IN CD IN DT JJS NN NNS IN NN .\nAuthorities say the men were detained near the southeastern city of Belo Horizonte Wednesday , after police stopped their truck loaded with vehicles that were purchased in cash Saturday from a car dealership .\tNNS VBP DT NNS VBD VBN IN DT JJ NN IN NNP NNP NNP , IN NNS VBD PRP$ NN VBN IN NNS WDT VBD VBN IN NN NNP IN DT NN NN .\nOfficials say they also found a fraction of the stolen money hidden in one of the vehicles .\tNNS VBP PRP RB VBD DT NN IN DT JJ NN VBN IN CD IN DT NNS .\nPolice say Saturday 's daring theft at a central bank branch in the northeastern city of Fortaleza was carried out by 10 to 20 people taking three months to dig an 80-meter tunnel from a house where they had set up a phony landscaping company .\tNNS VBP NNP POS VBG NN IN DT JJ NN NN IN DT JJ NN IN NNP VBD VBN RP IN CD CC CD NNS VBG CD NNS TO VB DT JJ NN IN DT NN WRB PRP VBD VBN RP DT JJ NN NN .\nThe thieves left behind tools used to dig the tunnel and get through the vault 's one-meter thick concrete and steel floor .\tDT NNS VBD IN NNS VBN TO VB DT NN CC VB IN DT NN POS JJ JJ NN CC NN NN .\nRussian lawmakers have voted to extend presidential term limits from four to six years .\tJJ NNS VBP VBN TO VB JJ NN NNS IN CD CC CD NNS .\nThe lower house of parliament overwhelmingly approved the measure during its first reading Friday .\tDT JJR NN IN NN RB VBD DT NN IN PRP$ JJ NN NNP .\nIt will need to pass through two more readings to change the constitution and become law .\tPRP MD VB TO VB IN CD JJR NNS TO VB DT NN CC VB NN .\nThe lower house has fast tracked the measure , which was announced by President Dmitri Medvedev last week .\tDT JJR NN VBZ RB VBN DT NN , WDT VBD VBN IN NNP NNP NNP JJ NN .\nOpponents say the measure could allow former Russian President Vladimir Putin , who now is Russia 's prime minister , to quickly seek to return to the presidency .\tNNS VBP DT NN MD VB JJ JJ NNP NNP NNP , WP RB VBZ NNP POS JJ NN , TO RB VB TO VB TO DT NN .\nMr. Medvedev has also proposed extending the term of the State Duma from four to five years .\tNNP NNP VBZ RB VBN VBG DT NN IN DT NNP NNP IN CD CC CD NNS .\nBritain 's Prime Minister Tony Blair has called a national election for May 5 .\tNNP POS NNP NNP NNP NNP VBZ VBN DT JJ NN IN NNP CD .\nMr. Blair made the announcement Tuesday after asking Queen Elizabeth for permission to dissolve parliament , in line with pre-election protocol .\tNNP NNP VBD DT NN NNP IN VBG NNP NNP IN NN TO VB NN , IN NN IN JJ NN .\nThe prime minister had been expected to call the election , with Britain enjoying a strong economy .\tDT JJ NN VBD VBN VBN TO VB DT NN , IN NNP VBG DT JJ NN .\nSeveral opinion polls published today show Mr. Blair 's Labor Party with a lead of two to five percentage points .\tJJ NN NNS VBN NN VBP NNP NNP POS NNP NNP IN DT NN IN CD CC CD NN NNS .\nThe main opposition parties hope to overcome that lead by highlighting Mr. Blair 's support for the war in Iraq , which remains largely unpopular in Britain .\tDT JJ NN NNS VBP TO VB DT NN IN VBG NNP NNP POS NN IN DT NN IN NNP , WDT VBZ RB JJ IN NNP .\nThe Labor Party enters the race with a commanding 161-seat majority in parliament .\tDT NNP NNP VBZ DT NN IN DT JJ JJ NN IN NN .\nMr. Blair will be seeking his third term in office , following landslide victories in 1997 and 2001 .\tNNP NNP MD VB VBG PRP$ JJ NN IN NN , VBG NN NNS IN CD CC CD .\nMilitary officials in the Democratic Republic of Congo say rebel fighters have attacked an army camp in the eastern Ituri region .\tJJ NNS IN DT JJ NNP IN NNP VBP JJ NNS VBP VBN DT NN NN IN DT JJ NNP NN .\nThere were few details about Saturday night 's raid , but army officials said at least two militia fighters were killed in gunbattles .\tEX VBD JJ NNS IN NNP NN POS NN , CC NN NNS VBD IN JJS CD NN NNS VBD VBN IN NNS .\nRebel groups regularly clash with military forces in the DRC .\tNN NNS RB VB IN JJ NNS IN DT NNP .\nThe United Nations says the violence has caused some 1,70,000 Congolese to flee their homes in recent months .\tDT NNP NNP VBZ DT NN VBZ VBN DT CD NNS TO VB PRP$ NNS IN JJ NNS .\nSome 17,000 U.N. peacekeepers are stationed in Congo to secure the country for nationwide elections July 30 .\tDT CD NNP NNS VBP VBN IN NNP TO VB DT NN IN JJ NNS NNP CD .\nOn Friday , the head of the notorious Mai Mai militia surrendered to U.N. forces and pledged to disarm his troops .\tIN NNP , DT NN IN DT JJ NNP NNP NN VBD TO NNP NNS CC VBD TO VB PRP$ NNS .\nOfficials said it was a major victory for stabilizing the country .\tNNS VBD PRP VBD DT JJ NN IN VBG DT NN .\nBurma 's prime minister , General Thein Sein , will make official visits to Indonesia and Singapore later this month .\tNNP POS JJ NN , NNP NNP NNP , MD VB JJ NNS TO NNP CC NNP RB DT NN .\nBurma 's state-owned New Light of Myanmar newspaper said the prime minister would make the visits in the near future .\tNNP POS JJ NNP NNP IN NNP NN VBD DT JJ NN MD VB DT NNS IN DT JJ NN .\nIt gave no further details of his plans .\tPRP VBD DT JJ NNS IN PRP$ NNS .\nHowever , Burmese officials said on condition of anonymity that General Thein Sein will depart Sunday for Indonesia .\tRB , JJ NNS VBD IN NN IN NN IN NNP NNP NNP MD VB NNP IN NNP .\nBurma , Indonesia and Singapore all belong to the 10-member Association of Southeast Asian nations , which held a summit in Thailand earlier this month .\tNNP , NNP CC NNP DT VBP TO DT JJ NN IN JJ JJ NNS , WDT VBD DT NN IN NNP RBR DT NN .\nDuring that meeting , Southeast Asian leaders encouraged Burma 's military government to release political detainees and open up next year 's election to more political parties .\tIN DT NN , NNP NNP NNS VBD NNP POS JJ NN TO VB JJ NNS CC VB RP JJ NN POS NN TO JJR JJ NNS .\nThe military has ruled Burma since 1962 .\tDT NN VBZ VBN NNP IN CD .\nThe government has created a ' roadmap to democracy , ' but critics say it further strengthens the generals ' grip on power .\tDT NN VBZ VBN DT `` NN TO NN , `` CC NNS VBP PRP RBR VBZ DT NNS POS NN IN NN .\nPakistani officials say security forces and helicopter gunships have killed at least 21 suspected militants in the northwestern tribal region of Orakzai .\tJJ NNS VBP NN NNS CC NN NNS VBP VBN IN JJS CD JJ NNS IN DT JJ JJ NN IN NNP .\nThey say troops and aircraft attacked militant compounds in the area on Wednesday , destroying a training center , a bunker and an ammunition dump .\tPRP VBP NNS CC NN VBD JJ NNS IN DT NN IN NNP , VBG DT NN NN , DT NN CC DT NN NN .\nIn the past year Pakistani forces have been carrying out anti-Taliban offensives in the country 's northwestern tribal regions , particularly South Waziristan .\tIN DT JJ NN JJ NNS VBP VBN VBG RP JJ NNS IN DT NN POS JJ JJ NNS , RB NNP NNP .\nU.S. missile strikes in the tribal areas are also targeting Taliban and al-Qaida commanders , often in the North Waziristan region .\tNNP NN NNS IN DT JJ NNS VBP RB VBG NNP CC NNP NNS , RB IN DT NNP NNP NN .\nMilitants based in the region have retaliated by launching gun and bomb attacks against government workers , police and civilians in Pakistan 's cities .\tNNS VBN IN DT NN VBP VBN IN VBG NN CC NN NNS IN NN NNS , NNS CC NNS IN NNP POS NNS .\nPresident Bush said nations around the world need to stand with moderate reformers in the MIddle East .\tNNP NNP VBD NNS IN DT NN VBP TO VB IN JJ NNS IN DT NNP NNP .\nHe said the world must seek stability in the region through the establishment of free and just societies .\tPRP VBD DT NN MD VB NN IN DT NN IN DT NN IN JJ CC RB NNS .\nMr. Bush also pledged to continue to support the government of Iraq in its struggle with terrorists .\tNNP NNP RB VBD TO VB TO VB DT NN IN NNP IN PRP$ NN IN NNS .\nIn addition , the president said Iran must abandon what he called its ambition for nuclear weapons .\tIN NN , DT NN VBD NNP MD VB WP PRP VBD PRP$ NN IN JJ NNS .\nHe said the United States is working for a diplomatic solution to the issue , and said the U.S. does not oppose a truly peaceful nuclear program for Iran .\tPRP VBD DT NNP NNPS VBZ VBG IN DT JJ NN TO DT NN , CC VBD DT NNP VBZ RB VB DT RB JJ JJ NN IN NNP .\nHong Kong police have released 944 protesters detained after sometimes violent demonstrations during last week 's World Trade Organization meetings .\tNNP NNP NNS VBP VBN CD NNS VBN IN RB JJ NNS IN JJ NN POS NNP NNP NNP NNS .\nMore than 1000 anti-free trade protesters were arrested .\tJJR IN CD JJ NN NNS VBD VBN .\nMost of them were South Korean farmers .\tJJS IN PRP VBD JJ JJ NNS .\nOn Saturday , the demonstrators attacked riot police with bamboo poles , pipes and bottles as they tried to force their way into the conference hall where trade ministers were meeting .\tIN NNP , DT NNS VBD NN NNS IN NN NNS , NNS CC NNS IN PRP VBD TO VB PRP$ NN IN DT NN NN WRB NN NNS VBD VBG .\nHong Kong police say they are charging 14 people with unlawful assembly .\tNNP NNP NNS VBP PRP VBP VBG CD NNS IN JJ NN .\nNearly 200 of the demonstrators had been released earlier .\tRB CD IN DT NNS VBD VBN VBN RBR .\nSouth Korea 's Deputy Foreign Minister Lee Kyu-hyung arrived in Hong Kong Monday to express his government 's regret over the violence .\tNNP NNP POS NNP NNP NNP NNP NNP VBD IN NNP NNP NNP TO VB PRP$ NN POS NN IN DT NN .\nThe government of Colombia says it will allow no more international missions seeking the release of hostages held by leftist rebels .\tDT NN IN NNP VBZ PRP MD VB DT JJR JJ NNS VBG DT NN IN NNS VBN IN JJ NNS .\nForeign Minister Fernando Araujo said Monday that the failed mission led by Venezuelan President Hugo Chavez left what he called ' a bad taste ' .\tNNP NNP NNP NNP VBD NNP IN DT JJ NN VBN IN JJ NNP NNP NNP VBD WP PRP VBD `` DT JJ NN `` .\nAraujo said Mr. Chavez and the leftist observers came to criticize the government and defend the guerrillas .\tNNP VBD NNP NNP CC DT JJ NNS VBD TO VB DT NN CC VB DT NNS .\nIn late December Mr. Chavez assembled the observers to oversee the release of three hostages held by the Revolutionary Armed Forces of Colombia or FARC .\tIN JJ NNP NNP NNP VBD DT NNS TO VB DT NN IN CD NNS VBN IN DT NNP NNP NNS IN NNP CC NNP .\nOn New Year 's Eve , the release collapsed amid accusations from the FARC that Colombian military operations interfered with the release .\tIN NNP NNP POS NNP , DT NN VBD IN NNS IN DT NNP IN JJ JJ NNS VBD IN DT NN .\nIt was later learned that one of the hostages , a three-year-old boy , was not under the control of the FARC , but had been released in 2005 .\tPRP VBD RB VBN IN CD IN DT NNS , DT JJ NN , VBD RB IN DT NN IN DT NNP , CC VBD VBN VBN IN CD .\nFrench authorities say violence flared for the 13th night in several cities despite night-time curfews , but the number of attacks dropped sharply .\tJJ NNS VBP NN VBD IN DT JJ NN IN JJ NNS IN JJ NNS , CC DT NN IN NNS VBD RB .\nOfficial say rampaging youths burned more than 600 vehicles across the country , about half the number set aflame night before .\tNNP VBP VBG NNS VBD JJR IN CD NNS IN DT NN , IN PDT DT NN VBN JJ NN IN .\nPolice say 204 people were arrested in the latest violence , which has been carried out mainly by Muslim youths of North African descent .\tNNS VBP CD NNS VBD VBN IN DT JJS NN , WDT VBZ VBN VBN IN RB IN NNP NNS IN JJ JJ NN .\nA state of emergency went into effect at midnight permitting such cities as Amiens , Orleans and the Paris suburb of Savigny-sur-Orge to declare curfews .\tDT NN IN NN VBD IN NN IN NN VBG JJ NNS IN NNP , NNP CC DT NNP NN IN NNP TO VB NNS .\nIn the southern city of Lyon , officials shut the entire subway system after a firebomb exploded in one station late Tuesday .\tIN DT JJ NN IN NNP , NNS VBD DT JJ NN NN IN DT NN VBD IN CD NN JJ NNP .\nNo injuries were reported .\tDT NNS VBD VBN .\nPrime Minister Dominique de Villepin Tuesday announced a number of measures to address what many French say are the main causes of the riots - youth unemployment , poor schools and discrimination .\tNNP NNP NNP NNP NNP NNP VBD DT NN IN NNS TO VB WP JJ NNS VBP VBP DT JJ NNS IN DT NNS IN NN NN , JJ NNS CC NN .\nCuban state media say former President Fidel Castro will appear at a special session of parliament Saturday for the first time since 2006 , when he ceded power to his younger brother , Raul .\tJJ NN NNS VBP JJ NNP NNP NNP MD VB IN DT JJ NN IN NN NNP IN DT JJ NN IN CD , WRB PRP VBD NN TO PRP$ JJR NN , NNP .\nThe reports said Wednesday that the Cuban National Assembly will debate several issues relating to the international situation , but did not elaborate .\tDT NNS VBD NNP IN DT JJ NNP NNP MD VB JJ NNS VBG TO DT JJ NN , CC VBD RB VB .\nThe elder Castro said last week that he would ask for such a session to discuss his concerns that a nuclear war involving the United States and Iran will erupt in the near future .\tDT NN NNP VBD JJ NN IN PRP MD VB IN PDT DT NN TO VB PRP$ NNS IN DT JJ NN VBG DT NNP NNPS CC NNP MD VB IN DT JJ NN .\nThe former president , who turns 84 later this month , has increased his public appearances in recent weeks following a long period of seclusion , resulting from an illness suffered in 2006 .\tDT JJ NN , WP VBZ CD RB DT NN , VBZ VBN PRP$ JJ NNS IN JJ NNS VBG DT JJ NN IN NN , VBG IN DT NN VBD IN CD .\nFidel Castro underwent intestinal surgery that year and turned over power on a provisional basis to his brother , who formally assumed the presidency in February 2008 .\tNNP NNP VBD JJ NN IN NN CC VBD RP NN IN DT JJ NN TO PRP$ NN , WP RB VBD DT NN IN NNP CD .\nMilitary officials in the Philippines say the death toll from a fuel truck explosion in the country 's south has risen to 50 , with more than 40 others injured .\tJJ NNS IN DT NNPS VBP DT NN NN IN DT NN NN NN IN DT NN POS NN VBZ VBN TO CD , IN JJR IN CD NNS VBN .\nThe truck exploded Friday on a road in Zamoanga del Sur province , destroying the tanker , as well as a passenger bus on the opposite side of the road .\tDT NN VBD NNP IN DT NN IN NNP NNP NNP NN , VBG DT NN , RB RB IN DT NN NN IN DT JJ NN IN DT NN .\nSoldiers are still recovering bodies .\tNNS VBP RB VBG NNS .\nThere are disagreements as to what the truck was carrying .\tEX VBP NNS IN TO WP DT NN VBD VBG .\nSome reports say it was hauling compressed carbon dioxide , while others say it was carrying liquified petroleum gas .\tDT NNS VBP PRP VBD VBG JJ NN NN , IN NNS VBP PRP VBD VBG JJ NN NN .\nTop finance officials of the Group of Eight industrialized nations meet Friday in London in an effort to work out an agreement on debt relief for the world 's poorest countries .\tJJ NN NNS IN DT NNP IN CD JJ NNS VBP NNP IN NNP IN DT NN TO VB RP DT NN IN NN NN IN DT NN POS JJS NNS .\nThe finance ministers will try to settle differences over the issue before a G8 summit next month in Scotland .\tDT NN NNS MD VB TO VB NNS IN DT NN IN DT NNP NN JJ NN IN NNP .\nPresident Bush and British Prime Minister Tony Blair said earlier this week after meeting in Washington that they were close to completing a proposal to cancel all debt for the world 's poorest countries .\tNNP NNP CC JJ NNP NNP NNP NNP VBD RBR DT NN IN NN IN NNP IN PRP VBD JJ TO VBG DT NN TO VB DT NN IN DT NN POS JJS NNS .\nThe New York Times Friday quotes an unidentified senior official in Washington as saying an agreement has been reached .\tDT NNP NNP NNP NNP VBZ DT JJ JJ NN IN NNP IN VBG DT NN VBZ VBN VBN .\nThe report says the plan would free 18 mostly African countries from their entire debt obligation .\tDT NN VBZ DT NN MD VB CD RB JJ NNS IN PRP$ JJ NN NN .\nHowever , other G8 countries are sharply divided on how to finance debt relief .\tRB , JJ NNP NNS VBP RB VBN IN WRB TO VB NN NN .\nBernie Mac says he intends to retire from stand-up comedy after 30 years .\tNNP NNP VBZ PRP VBZ TO VB IN JJ NN IN CD NNS .\nThe 49-year-old comic - real name Bernard McCullogh - made the announcement Monday March 19 on David Letterman 's U.S. television talk show .\tDT JJ NN IN JJ NN NNP NNP : VBD DT NN NNP NNP CD IN NNP NNP POS NNP NN NN NN .\nHe says the move will allow him to continue producing and acting in films , while spending more time at home .\tPRP VBZ DT NN MD VB PRP TO VB VBG CC VBG IN NNS , IN VBG JJR NN IN NN .\nLater this year , he 'll release his final performance film , The Whole Truth , Nothing But The Truth , So Help Me Mac .\tRB DT NN , PRP MD VB PRP$ JJ NN NN , DT NNP NNP , DT CC DT NNP , RB VB NNP NNP .\nBernie Mac 's next film , the sports drama Pride , opens March 23 in the United States .\tNNP NNP POS JJ NN , DT NNS NN NNP , VBZ NNP CD IN DT NNP NNPS .\nThe husband of former Pakistani Prime Minister Benazir Bhutto says he wants to improve relations between India and Pakistan .\tDT NN IN JJ JJ NNP NNP NNP NNP VBZ PRP VBZ TO VB NNS IN NNP CC NNP .\nAsif Ali Zardari , leader of the Pakistan People 's Party , says he wants to set aside the dispute over the Kashmir region so the two countries can focus on other issues , including boosting trade .\tNNP NNP NNP , NN IN DT NNP NNP POS NNP , VBZ PRP VBZ TO VB RP DT NN IN DT NNP NN IN DT CD NNS MD VB IN JJ NNS , VBG VBG NN .\nHe made the remarks during an interview broadcast on India 's CNN-IBN television network Friday .\tPRP VBD DT NNS IN DT NN NN IN NNP POS JJ NN NN NNP .\nKashmir is divided between India and Pakistan , but is claimed in total by both .\tNNP VBZ VBN IN NNP CC NNP , CC VBZ VBN IN JJ IN DT .\nThe two countries have fought two wars over the disputed territory located in the Himalayan mountain valley .\tDT CD NNS VBP VBN CD NNS IN DT JJ NN VBN IN DT NNP NN NN .\nZardari says relations between India and Pakistan should not be held hostage to the Kashmir situation , and that both countries can agree to disagree on the issue .\tNNP VBZ NNS IN NNP CC NNP MD RB VB VBN NN TO DT NNP NN , CC IN DT NNS MD VB TO VB IN DT NN .\nViolence in Indian-controlled Kashmir has declined since India and Pakistan entered into a peace process in 2004 .\tNN IN JJ NNP VBZ VBN IN NNP CC NNP VBD IN DT NN NN IN CD .\nCeremonies are being held Wednesday in the United States to mark the 64th anniversary of the Japanese attack on Pearl Harbor , Hawaii , which drew America into World War II .\tNNS VBP VBG VBN NNP IN DT NNP NNPS TO VB DT JJ NN IN DT JJ NN IN NNP NNP , NNP , WDT VBD NNP IN NNP NNP NNP .\nOne ceremony is taking place at the USS Arizona Memorial , the site at Pearl Harbor where that battleship was sunk in the attack .\tCD NN VBZ VBG NN IN DT NNP NNP NNP , DT NN IN NNP NNP WRB DT NN VBD VBN IN DT NN .\nGuests at the memorial observed a moment of silence at the same time the Japanese attack began on December 7 , 1941 .\tNNS IN DT NN VBD DT NN IN NN IN DT JJ NN DT JJ NN VBD IN NNP CD , CD .\nThe attack killed more than 2,400 people and destroyed most of the U.S. Pacific fleet , which was based at Pearl Harbor .\tDT NN VBD JJR IN CD NNS CC VBD JJS IN DT NNP NNP NN , WDT VBD VBN IN NNP NNP .\nIn a speech Wednesday in Washington , President Bush honored Americans who fought in World War II , saying the United States did not waver in the cause for freedom .\tIN DT NN NNP IN NNP , NNP NNP VBD NNS WP VBD IN NNP NNP NNP , VBG DT NNP NNPS VBD RB VB IN DT NN IN NN .\nMr. Bush also said the victory by Allied forces in the war laid a foundation of peace for generations .\tNNP NNP RB VBD DT NN IN JJ NNS IN DT NN VBD DT NN IN NN IN NNS .\nA series of bombings has killed at least 14 people in Baghdad , ahead of the highly anticipated transfer of operational command of Iraq 's armed forces from the U.S.-led coalition to Iraqi authorities .\tDT NN IN NNS VBZ VBN IN JJS CD NNS IN NNP , RB IN DT RB VBN NN IN JJ NN IN NNP POS JJ NNS IN DT JJ NN TO JJ NNS .\nOfficials say more than 30 others were wounded in suicide car bombings and roadside bomb blasts across the city Thursday .\tNNS VBP JJR IN CD NNS VBD VBN IN NN NN NNS CC NN NN NNS IN DT NN NNP .\nThe deadliest attack took place in the Karrada neighborhood , where a suicide bomber detonated his explosives-filled car at the entrance of a gas station for police vehicles .\tDT JJS NN VBD NN IN DT NNP NN , WRB DT NN NN VBD PRP$ JJ NN IN DT NN IN DT NN NN IN NN NNS .\nAt least 10 people died and 17 others were wounded in that attack .\tIN JJS CD NNS VBD CC CD NNS VBD VBN IN DT NN .\nMeanwhile , senior Iraqi military officials are preparing for the country 's prime minister to take control of the armed forces at a ceremony that was originally scheduled five days ago .\tRB , JJ JJ NN NNS VBP VBG IN DT NN POS JJ NN TO VB NN IN DT JJ NNS IN DT NN WDT VBD RB VBN CD NNS RB .\nSeparately , the Iraqi government said 27 ' terrorists ' convicted of killings and rapes were executed Wednesday .\tRB , DT JJ NN VBD CD `` NNS `` VBN IN NNS CC NNS VBD VBN NNP .\nThe top U.S. presidential candidates say the latest unemployment numbers make it much more important for Congress to act quickly and responsibly to address the country 's financial crisis .\tDT JJ NNP JJ NNS VBP DT JJS NN NNS VBP PRP RB RBR JJ IN NNP TO VB RB CC RB TO VB DT NN POS JJ NN .\nRepublican John McCain and Democrat Barack Obama released statements Friday , calling on the House of Representatives to pass a financial bailout package for troubled financial institutions .\tNNP NNP NNP CC NNP NNP NNP VBD NNS NNP , VBG IN DT NNP IN NNPS TO VB DT JJ NN NN IN JJ JJ NNS .\nBoth candidates are U.S. senators , and voted in favor of a revised rescue plan earlier this week .\tDT NNS VBP NNP NNS , CC VBD IN NN IN DT VBN NN NN RBR DT NN .\nMcCain says Friday 's jobs report from the Labor Department shows the nation 's economy is on the wrong track .\tNNP VBZ NNP POS NNS NN IN DT NNP NNP VBZ DT NN POS NN VBZ IN DT JJ NN .\nHe says if elected president he will ' clean up the mess ' created by the greed of financial firms , and fix the root causes of the crisis .\tPRP VBZ IN VBN NN PRP MD `` VB RP DT NN `` VBN IN DT NN IN JJ NNS , CC VB DT NN NNS IN DT NN .\nObama says if elected he will rebuild the middle class and create millions of new jobs by investing in the country 's infrastructure and in renewable energy .\tNNP VBZ IN VBN PRP MD VB DT JJ NN CC VB NNS IN JJ NNS IN VBG IN DT NN POS NN CC IN JJ NN .\nIraq 's interim defense minister says one of Saddam Hussein 's closest aides , Ali Hassan al-Majid - better known as Chemical Ali - will be the first member of the ousted regime to go on trial for war crimes .\tNNP POS JJ NN NN VBZ CD IN NNP NNP POS JJS NNS , NNP NNP NNP : RB VBN IN NNP NNP : MD VB DT JJ NN IN DT JJ NN TO VB IN NN IN NN NNS .\nThe minister , Hazem Shaalan , told reporters in Baghdad Wednesday , the trial could begin as early as next week , and that he did not expect it to be a long process .\tDT NN , NNP NNP , VBD NNS IN NNP NNP , DT NN MD VB RB JJ IN JJ NN , CC IN PRP VBD RB VB PRP TO VB DT JJ NN .\nOn Tuesday , interim Prime Minister Iyad Allawi announced that trials against Saddam 's top deputies would start next week , but did not specify which officials would appear in court .\tIN NNP , JJ NNP NNP NNP NNP VBD IN NNS IN NNP POS JJ NNS MD VB JJ NN , CC VBD RB VB WDT NNS MD VB IN NN .\nMeanwhile , campaigning for Iraq 's January 30 election officially got under way Wednesday .\tRB , VBG IN NNP POS NNP CD NN RB VBD IN NN NNP .\nMr. Allawi was among the first to officially announce his candidacy Wednesday , appealing to the country 's diverse ethnic and religious groups .\tNNP NNP VBD IN DT JJ TO RB VB PRP$ NN NNP , VBG TO DT NN POS JJ JJ CC JJ NNS .\nEgypt 's health ministry says a teenage girl who tested positive for the H5N1 avian flu has died -- raising the number of deaths from the disease in Egypt to 14 .\tNNP POS NN NN VBZ DT NN NN WP VBD JJ IN DT NNP JJ NN VBZ VBN : VBG DT NN IN NNS IN DT NN IN NNP TO CD .\nThe health ministry said the 15-year-old girl died at a Cairo hospital late Tuesday , despite being treated with the antiviral drug Tamiflu and being placed on a respirator .\tDT NN NN VBD DT JJ NN VBD IN DT NNP NN JJ NNP , IN VBG VBN IN DT JJ NN NNP CC VBG VBN IN DT NN .\nThe girl was hospitalized last week .\tDT NN VBD VBN JJ NN .\nOfficials say none of her family members was found to have the deadly form of bird flu .\tNNS VBP NN IN PRP$ NN NNS VBD VBN TO VB DT JJ NN IN NN NN .\nThe Egyptian government and the World Health Organization say 34 Egyptians , including several children , have contracted the H5N1 form of avian flu .\tDT JJ NN CC DT NNP NNP NNP VBP CD NNS , VBG JJ NNS , VBP VBN DT NNP NN IN JJ NN .\nFourteen of them have now died died .\tCD IN PRP VBP RB VBN VBD .\nEgypt has the largest number of human bird flu cases outside of Asia .\tNNP VBZ DT JJS NN IN JJ NN NN NNS IN IN NNP .\nAustralian Prime Minister John Howard says the apparent killing of international aid worker Margaret Hassan in Iraq is shocking and inhumane .\tJJ NNP NNP NNP NNP VBZ DT JJ NN IN JJ NN NN NNP NNP IN NNP VBZ VBG CC NN .\nMr. Howard also told the parliament Thursday in Canberra that the body of a woman found in Fallujah appears to be that of Ms. Hassan .\tNNP NNP RB VBD DT NN NNP IN NNP IN DT NN IN DT NN VBN IN NNP VBZ TO VB IN IN NNP NNP .\nHowever , when questioned by reporters afterwards , Mr. Howard would not elaborate on the statement , saying only that Ms. Hassan 's killers have not returned her body .\tRB , WRB VBN IN NNS RB , NNP NNP MD RB VB IN DT NN , VBG RB IN NNP NNP POS NNS VBP RB VBN PRP$ NN .\nOn Sunday , U.S. Marines in Fallujah found the mutilated body of what appeared to be a Western woman .\tIN NNP , NNP NNPS IN NNP VBD DT JJ NN IN WP VBD TO VB DT JJ NN .\nDays earlier , Arabic television network al-Jazeera had said it received a video that appeared to show the killing .\tNNS RB , JJ NN NN NNP VBD VBN PRP VBD DT NN WDT VBD TO VB DT NN .\nUnidentified kidnappers abducted Ms. Hassan last month and called on Britain to withdraw its troops from Iraq .\tJJ NNS VBD NNP NNP JJ NN CC VBN IN NNP TO VB PRP$ NNS IN NNP .\nMs. Hassan headed Iraqi operations of the international charity CARE , as an employee of the group 's Australian branch .\tNNP NNP VBD JJ NNS IN DT JJ NN NN , IN DT NN IN DT NN POS JJ NN .\nPolice in southern Kyrgyzstan say a clash between protesters and security guards outside a hotel in the city of Osh has injured four people .\tNNS IN JJ NNP VBP DT NN IN NNS CC NN NNS IN DT NN IN DT NN IN NNP VBZ VBN CD NNS .\nLocal authorities say security guards fired at the demonstrators with automatic weapons to disperse them .\tJJ NNS VBP NN NNS VBN IN DT NNS IN JJ NNS TO VB PRP .\nThe hotel is believed to be owned by prominent politician , Bayaman Erkinbayev , who survived an attempt on his life by unknown assailants six weeks ago .\tDT NN VBZ VBN TO VB VBN IN JJ NN , NNP NNP , WP VBD DT NN IN PRP$ NN IN JJ NNS CD NNS RB .\nMonday 's clash in Osh follows a similar incident at a market place in the border town of Kara-Suu Thursday , which Mr. Erkinbayev says belongs to his wife .\tNNP POS NN IN NNP VBZ DT JJ NN IN DT NN NN IN DT NN NN IN NNP NNP , WDT NNP NNP VBZ VBZ TO PRP$ NN .\nKyrgyzstan , a mountainous Central Asian country , has been unstable since President Askar Akayev 's ouster in March .\tNNP , DT JJ JJ JJ NN , VBZ VBN JJ IN NNP NNP NNP POS NN IN NNP .\nPresidential elections to replace Mr. Akayev are scheduled for July 10 .\tJJ NNS TO VB NNP NNP VBP VBN IN NNP CD .\nMr. Erkinbayev is one of the candidates .\tNNP NNP VBZ CD IN DT NNS .\nBrazilian President Luiz Inacio Lula da Silva and his Colombian counterpart , Alvaro Uribe , have held talks that included the diplomatic dispute between Colombia and Venezuela .\tJJ NNP NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBP VBN NNS WDT VBD DT JJ NN IN NNP CC NNP .\nThe two presidents met in a Colombian town to discuss the rift over Colombia 's capture of a FARC rebel leader in Caracas last month .\tDT CD NNS VBD IN DT JJ NN TO VB DT NN IN NNP POS NN IN DT NNP NN NN IN NNP JJ NN .\nBrazil and Mexico have offered to mediate the rift , which began after Colombia acknowledged paying bounty hunters to capture Rodrigo Granda .\tNNP CC NNP VBP VBN TO VB DT NN , WDT VBD IN NNP VBD VBG NN NNS TO VB NNP NNP .\nVenezuelan President Hugo Chavez says Colombia violated his country 's sovereignty .\tJJ NNP NNP NNP VBZ NNP VBD PRP$ NN POS NN .\nLast week , Venezuela froze trade relations with Colombia and recalled its ambassador from Bogota .\tJJ NN , NNP VBD NN NNS IN NNP CC VBD PRP$ NN IN NNP .\nThe Colombians say they plan to send Caracas proof that Colombian guerrillas are in Venezuelan territory .\tDT NNS VBP PRP VBP TO VB NNP NN IN JJ NNS VBP IN JJ NN .\nColombia is mired in a long-running civil war involving leftist rebels , rightist paramilitaries and the government .\tNNP VBZ VBN IN DT JJ JJ NN VBG JJ NNS , JJ NNS CC DT NN .\nThe conflict leaves thousands dead each year .\tDT NN VBZ NNS JJ DT NN .\nAustralian scientists have unveiled fossils of what they say are the largest dinosaurs ever found in Australia .\tJJ NNS VBP VBN NNS IN WP PRP VBP VBP DT JJS NNS RB VBN IN NNP .\nFossilized bones of two titanosaurs went on display Thursday at the Queensland Museum in the eastern city of Brisbane .\tVBN NNS IN CD NNS VBD IN NN NNP IN DT NNP NNP IN DT JJ NN IN NNP .\nThe 25-meter-long dinosaurs , nicknamed Cooper and George , were found by ranchers in 2005 and 2006 , near the town of Eromanga , in southwest Queensland state .\tDT JJ NNS , VBN NNP CC NNP , VBD VBN IN NNS IN CD CC CD , IN DT NN IN NNP , IN JJ NNP NN .\nThe discoveries were kept secret until now to allow scientists to dig them up and study them .\tDT NNS VBD VBN JJ IN RB TO VB NNS TO VB PRP RP CC VB PRP .\nA single leg bone from one of the titanosaurs measures 1.5 meters long , and weighs 100 kilograms .\tDT JJ NN NN IN CD IN DT NNS VBZ CD NNS RB , CC VBZ CD NNS .\nThe titanosaurs were among the largest and heaviest prehistoric animals ever to roam the Earth , with extremely long necks and tails .\tDT NNS VBD IN DT JJS CC JJS JJ NNS RB TO VB DT NN , IN RB JJ NNS CC NNS .\nThe titanosaurs were plant-eating dinosaurs , called sauropods , that lived more than 100 million years ago .\tDT NNS VBD JJ NNS , VBD NNS , WDT VBD JJR IN CD CD NNS RB .\nTrial began in Amman Monday , for an Iraqi woman charged with taking part in a triple bomb attack that killed 60 people in the Jordanian capital last year .\tNNP VBD IN NNP NNP , IN DT JJ NN VBN IN VBG NN IN DT JJ NN NN WDT VBD CD NNS IN DT JJ NN JJ NN .\nSajida Mubarak al-Rishawi was captured when her explosives belt failed to detonate during the suicide attack at three hotels on November 9 .\tNNP NNP NNP VBD VBN WRB PRP$ NNS NN VBD TO VB IN DT NN NN IN CD NNS IN NNP CD .\nAl-Rishawi , whose husband blew himself up in the bombings , is the only defendant in custody .\tNNP , WP$ NN VBD PRP RP IN DT NNS , VBZ DT JJ NN IN NN .\nJordanian-born terrorist Abu Musab al-Zarqawi , the accused mastermind of the attacks , and others were charged in absentia .\tJJ JJ NNP NNP NNP , DT VBN NN IN DT NNS , CC NNS VBD VBN IN NN .\nAl-Zarqawi 's al-Qaida in Iraq group claimed responsibility for the attacks , which were aimed at foreign visitors but wound up killing mostly Jordanians .\tNNP POS NNP IN NNP NN VBD NN IN DT NNS , WDT VBD VBN IN JJ NNS CC VBD RP VBG RB NNS .\nJohn Bolton appearing before Senate President Bush 's choice for U.S. ambassador to the United Nations is fielding tough questions at his confirmation hearing Monday .\tNNP NNP VBG IN NNP NNP NNP POS NN IN NNP NN TO DT NNP NNP VBZ VBG JJ NNS IN PRP$ NN NN NNP .\nIn his opening statement , John Bolton pledged to work with other countries to make the United Nations stronger and more effective .\tIN PRP$ NN NN , NNP NNP VBD TO VB IN JJ NNS TO VB DT NNP NNPS JJR CC JJR JJ .\nBut Senate Democrats remain clearly opposed to Mr. Bolton , who has in the past condemned the world body and bluntly criticized a number of countries .\tCC NNP NNPS VBP RB VBN TO NNP NNP , WP VBZ IN DT NN VBN DT NN NN CC RB VBD DT NN IN NNS .\nDemocrats today raised questions about an incident in which Mr. Bolton pressured State Department intelligence analysts who challenged his assertion that Cuba possessed banned weapons .\tNNS NN VBD NNS IN DT NN IN WDT NNP NNP VBD NNP NNP NN NNS WP VBD PRP$ NN IN NNP VBD VBN NNS .\nIn testimony , Mr. Bolton admitted that he tried to have the men moved to other jobs .\tIN NN , NNP NNP VBD IN PRP VBD TO VB DT NNS VBD TO JJ NNS .\nSenator Christopher Dodd called that ' dreadfully wrong . '\tNNP NNP NNP VBD DT `` RB JJ . ``\nMr. Bolton currently serves as undersecretary of state for arms control .\tNNP NNP RB VBZ IN NN IN NN IN NNS NN .\nHis hearing continues through Wednesday .\tPRP$ NN VBZ IN NNP .\nThe first group of United Nations peacekeepers has left Burundi as part of a gradual 12-month withdrawal plan from the central African country .\tDT JJ NN IN NNP NNP NNS VBZ VBN NNP IN NN IN DT JJ JJ NN NN IN DT JJ JJ NN .\nU.N. officials say some 170 Mozambican peacekeepers departed Saturday from an airport in the capital , Bujumbura .\tNNP NNS VBP DT CD NNP NNS VBD NNP IN DT NN IN DT NN , NNP .\nThe United Nations plans to reduce its 5,500-member peacekeeping force in Burundi by 40 percent by April .\tDT NNP NNPS VBZ TO VB PRP$ JJ NN NN IN NNP IN CD NN IN NNP .\nNext to leave will be the Kenyans , followed by the Ethiopians and other nationalities which make up the force .\tNNP TO VB MD VB DT NNS , VBN IN DT NNS CC JJ NNS WDT VBP RP DT NN .\nU.N. peacekeepers have been in Burundi since 2004 , when the government and rebels signed an agreement ending their 12-year civil war .\tNNP NNS VBP VBN IN NNP IN CD , WRB DT NN CC NNS VBD DT NN VBG PRP$ JJ JJ NN .\nSome 3,00,000 people died in the long ethnic conflict between Hutu rebels and the politically-dominant Tutsis .\tDT CD NNS VBD IN DT JJ JJ NN IN NNP NNS CC DT JJ NN .\nWater levels are receding in India 's desert state of Rajasthan and relief workers there have stepped up efforts to rescue thousands of stranded villagers .\tNN NNS VBP VBG IN NNP POS NN NN IN NNP CC NN NNS RB VBP VBN RP NNS TO VB NNS IN JJ NNS .\nOfficials say floods caused by monsoon rains killed at least 140 people in the past week , most of them in the district of Barmer .\tNNS VBP NNS VBN IN NN NNS VBD IN JJS CD NNS IN DT JJ NN , JJS IN PRP IN DT NN IN NNP .\nMore than 7,00,000 people have been stranded .\tJJR IN CD NNS VBP VBN VBN .\nIn western and southern India , more than 500 people have been killed and millions left homeless since the annual monsoon rains began in June .\tIN JJ CC JJ NNP , JJR IN CD NNS VBP VBN VBN CC NNS VBD JJ IN DT JJ NN NNS VBD IN NNP .\nFloods have also killed at least 31 people in neighboring Nepal in the past three days .\tNNS VBP RB VBN IN JJS CD NNS IN VBG NNP IN DT JJ CD NNS .\nSoldiers have been using helicopters and rubber boats to rescue hundreds of people .\tNNS VBP VBN VBG NNS CC NN NNS TO VB NNS IN NNS .\nOfficials say most of the deaths came in the worst-hit seven districts in the plains of western Nepal .\tNNS VBP JJS IN DT NNS VBD IN DT JJ CD NNS IN DT NNS IN JJ NNP .\nU.S. and Iraqi forces are continuing a major security operation in restive al-Anbar province , west of Baghdad .\tNNP CC JJ NNS VBP VBG DT JJ NN NN IN JJ JJ NN , NN IN NNP .\nAmerican military officials say strict security measures were imposed Sunday on several cities along the Euphrates River , including Ramadi , where a curfew was ordered .\tJJ JJ NNS VBP JJ NN NNS VBD VBN NNP IN JJ NNS IN DT NNP NNP , VBG NNP , WRB DT NN VBD VBN .\nIn another development , the Indonesian foreign ministry confirmed Monday that kidnappers in Iraq have freed two Indonesian journalists who were abducted last week .\tIN DT NN , DT JJ JJ NN VBD NNP IN NNS IN NNP VBP VBN CD JJ NNS WP VBD VBN JJ NN .\nMeanwhile , Iraqi officials in the northern city of Mosul say an anchorwoman for a regional television station was abducted at gunpoint late Sunday .\tRB , JJ NNS IN DT JJ NN IN NNP VBP DT NN IN DT JJ NN NN VBD VBN IN NN JJ NNP .\nA videotape said to come from al-Qaida has been seen on al-Jazeera television .\tDT NN VBN TO VB IN NNP VBZ VBN VBN IN NNP NN .\nThe tape carries a message in the name of the terrorist group 's No. 2 leader , Ayman al-Zawahiri , denouncing U.S. calls for reform in the Muslim world .\tDT NN VBZ DT NN IN DT NN IN DT JJ NN POS NN CD NN , NNP NNP , VBG NNP NNS IN NN IN DT NNP NN .\nLebanese troops have unearthed the remains of 25 bodies from a mass grave in an eastern town near the former headquarters of Syrian intelligence in Lebanon .\tJJ NNS VBP VBN DT NNS IN CD NNS IN DT NN NN IN DT JJ NN IN DT JJ NN IN JJ NN IN NNP .\nOfficials Saturday said the bodies were found in the Bekaa Valley town of Anjar .\tNNP NNP VBD DT NNS VBD VBN IN DT NNP NNP NN IN NNP .\nThey say the bodies , one of which was dressed in a Lebanese military uniform , have been buried for years .\tPRP VBP DT NNS , CD IN WDT VBD VBN IN DT JJ JJ NN , VBP VBN VBN IN NNS .\nThe Syrian headquarters was notorious for the arrest and torture of Lebanese prisoners during its nearly three-decade presence in Lebanon .\tDT JJ NN VBD JJ IN DT NN CC NN IN JJ NNS IN PRP$ RB JJ NN IN NNP .\nAuthorized by the Arab League , Syria first moved troops into Lebanon in 1976 to try to maintain order one year after the outbreak of the country 's devastating 15-year civil war .\tVBN IN DT NNP NNP , NNP RB VBD NNS IN NNP IN CD TO VB TO VB NN CD NN IN DT NN IN DT NN POS JJ JJ JJ NN .\nDamascus was forced to withdraw its troops earlier this year under intense domestic and international pressure after senior Syrian officials were implicated in the murder of former Lebanese prime minister Rafik Hariri .\tNNP VBD VBN TO VB PRP$ NNS RBR DT NN IN JJ JJ CC JJ NN IN JJ JJ NNS VBD VBN IN DT NN IN JJ JJ JJ NN NNP NNP .\nSyria has denied any role in the killing .\tNNP VBZ VBN DT NN IN DT NN .\nIndia and Pakistan have begun a trial run of a bus service linking the Sikh holy city of Amritsar in India with the Pakistani city of Lahore .\tNNP CC NNP VBP VBN DT NN NN IN DT NN NN VBG DT NNP JJ NN IN NNP IN NNP IN DT JJ NN IN NNP .\nIndian transport officials were on board the yellow bus as it left Amritsar Sunday for the 60-kilometer journey to Lahore .\tJJ NN NNS VBD IN NN DT JJ NN IN PRP VBD NNP NNP IN DT JJ NN TO VB .\nThe bus crossed into Pakistan at Wagah .\tDT NN VBD IN NNP IN NNP .\nA Pakistani bus will carry out a trial run to Amritsar on December 13 , and the full twice-weekly passenger service between the two cities is expected to begin on December 23 .\tDT JJ NN MD VB RP DT NN NN TO VB IN NNP CD , CC DT JJ JJ NN NN IN DT CD NNS VBZ VBN TO VB IN NNP CD .\nThe bus link is part of efforts started two years ago to ease decades of hostility between India and Pakistan .\tDT NN NN VBZ NN IN NNS VBD CD NNS RB TO VB NNS IN NN IN NNP CC NNP .\nIn early April , buses started running across divided Kashmir to reunite families , some of whom have been separated for almost 60 years .\tIN JJ NNP , NNS VBD VBG IN VBN NNP TO VB NNS , DT IN WP VBP VBN VBN IN RB CD NNS .\nHaiti 's government says it is seeking the arrest of ousted President Jean-Bertrand Aristide on corruption charges .\tNNP POS NN VBZ PRP VBZ VBG DT NN IN JJ NNP NNP NNP IN NN NNS .\nPrime Minister Gerard Latortue announced Friday that formal instructions have been sent to the Justice Ministry for an arrest warrant to be issued as quickly as possible .\tNNP NNP NNP NNP VBD NNP IN JJ NNS VBP VBN VBN TO DT NNP NNP IN DT NN NN TO VB VBN RB RB IN JJ .\nMr. Aristide is in exile in South Africa .\tNNP NNP VBZ IN NN IN NNP NNP .\nMr. Latortue made the remarks as the government opened a commission to investigate the charges against Mr. Aristide , who fled Haiti during an armed uprising in February .\tNNP NNP VBD DT NNS IN DT NN VBD DT NN TO VB DT NNS IN NNP NNP , WP VBD NNP IN DT JJ NN IN NNP .\nMr. Aristide 's Miami-based lawyer , Ira Kurzban , says the allegations are politically motivated and have no basis in fact .\tNNP NNP POS JJ NN , NNP NNP , VBZ DT NNS VBP RB JJ CC VBP DT NN IN NN .\nMr. Kurzban also tells VOA the charges are a public relations ploy to divert attention from a government he says was not elected and that is engaged in gross human rights violations .\tNNP NNP RB VBZ NNP DT NNS VBP DT JJ NNS NN TO VB NN IN DT NN PRP VBZ VBD RB VBN CC DT VBZ VBN IN JJ JJ NNS NNS .\nMedical personnel in the stricken city of New Orleans are desperately trying to continue to aid patients amid depleting supplies and deteriorating conditions .\tNNP NNS IN DT JJ NN IN NNP NNP VBP RB VBG TO VB TO VB NNS IN VBG NNS CC JJ NNS .\nHospitals are severely crippled in the flooding that has submerged most of the city .\tNNS VBP RB VBN IN DT NN WDT VBZ VBN JJS IN DT NN .\nSome patients , including babies , have been airlifted to other facilities .\tDT NNS , VBG NNS , VBP VBN VBN TO JJ NNS .\nThe Associated Press says doctors from two hospitals have issued a plea for their facilities to be evacuated , saying conditions are dire and they are nearly out of food and emergency power .\tDT NNP NNP VBZ NNS IN CD NNS VBP VBN DT NN IN PRP$ NNS TO VB VBN , VBG NNS VBP JJ CC PRP VBP RB IN IN NN CC NN NN .\nIn the streets of New Orleans , corpses are lying in the open and anxious refugees are pleading for water and food .\tIN DT NNS IN NNP NNP , NNS VBP VBG IN DT JJ CC JJ NNS VBP VBG IN NN CC NN .\nField hospitals are overwhelmed with the sick .\tNNP NNS VBP VBN IN DT NN .\nU.S. officials say shots have been fired at emergency personnel and the security situation remains a problem .\tNNP NNS VBP NNS VBP VBN VBN IN NN NNS CC DT NN NN VBZ DT NN .\nThe New Orleans mayor has issued a desperate SOS ( plea for help ) .\tDT NNP NNP NN VBZ VBN DT JJ NNP LRB NN IN NN RRB .\nChina has confirmed that senior envoys from the United States , North Korea , and China met in Beijing this week in an effort to restart six-nation talks on Pyongyang 's nuclear program .\tNNP VBZ VBN IN JJ NNS IN DT NNP NNPS , NNP NNP , CC NNP VBD IN NNP DT NN IN DT NN TO VB JJ NNS IN NNP POS JJ NN .\nA Chinese foreign ministry spokesman said Thursday Wednesday 's talks included the top U.S. envoy to the nuclear negotiations , Christopher Hill .\tDT JJ JJ NN NN VBD NNP NNP POS NNS VBD DT JJ NNP NN TO DT JJ NNS , NNP NNP .\nFurther details were not provided .\tJJ NNS VBD RB VBN .\nWednesday , North Korea 's official news agency confirmed leader Kim Jong il recently visited China , and held talks with Chinese President Hu Jintao .\tNNP , NNP NNP POS JJ NN NN VBD NN NNP NNP NNP RB VBD NNP , CC VBD NNS IN JJ NNP NNP NNP .\nIt said during the talks Mr. Kim reaffirmed a commitment to rid the Korean Peninsula of nuclear weapons and pursue the six-party talks .\tPRP VBD IN DT NNS NNP NNP VBD DT NN TO VB DT JJ NNP IN JJ NNS CC VB DT JJ NNS .\nPyongyang has demanded that the United States first lift economic sanctions against North Korea as a precondition for returning to the stalled talks .\tNNP VBZ VBN IN DT NNP NNPS RB VBP JJ NNS IN NNP NNP IN DT NN IN VBG TO DT VBN NNS .\nWashington has rejected the demand .\tNNP VBZ VBN DT NN .\nUkrainian President Viktor Yushchenko met with leaders of parliamentary factions Tuesday in an effort to end a standoff that has prevented the formation of a new government .\tJJ NNP NNP NNP VBD IN NNS IN JJ NNS NNP IN DT NN TO VB DT NN WDT VBZ VBN DT NN IN DT JJ NN .\nRepresentatives of the country 's pro-Western coalition say talks scheduled for Monday were canceled after Viktor Yanukovych , the leader of the opposition pro-Russian Party of Regions failed to attend .\tNNS IN DT NN POS JJ NN VBP NNS VBN IN NNP VBD VBN IN NNP NNP , DT NN IN DT NN JJ NN IN NNS VBD TO VB .\nBut a spokesman for the opposition group said the meeting was intended for experts , not top leaders .\tCC DT NN IN DT NN NN VBD DT NN VBD VBN IN NNS , RB JJ NNS .\nThe pro-Russian party has been blocking parliamentary proceedings for the past week by barring access to the podium .\tDT JJ NN VBZ VBN VBG JJ NNS IN DT JJ NN IN VBG NN TO DT NN .\nParty members are dissatisified with the role they have been offered in the new government .\tNNP NNS VBP VBN IN DT NN PRP VBP VBN VBN IN DT JJ NN .\nThey contend that because they won more seats in parliament than any other group in the March elections , they deserve a bigger role .\tPRP VBP IN IN PRP VBD JJR NNS IN NN IN DT JJ NN IN DT NNP NNS , PRP VBP DT JJR NN .\nThe pro-Western coalition is made up of three parties that led the 2004 Orange Revolution and brought Mr. Yushchenko to power .\tDT JJ NN VBZ VBN IN IN CD NNS WDT VBD DT CD NNP NNP CC VBD NNP NNP TO NN .\nAmerican Andy Roddick , Czech Tomas Berdych and Spaniard David Ferrer have claimed the remaining qualifying spots for the Association of Tennis Professionals ( ATP ) World Tour Finals in London .\tNNP NNP NNP , JJ NNP NNP CC NN NNP NNP VBP VBN DT VBG VBG NNS IN DT NNP IN NNP NNP LRB NNP RRB NNP NNP NNP IN NNP .\nThe players will be joining Spaniard Rafael Nadal , Swiss Roger Federer , Serbian Novak Djokovic , Scott Andy Murray and Swede Robin Soderling in the eight-man tournament that takes place from November 21 - 28 .\tDT NNS MD VB VBG NN NNP NNP , JJ NNP NNP , JJ NNP NNP , NNP NNP NNP CC NNP NNP NNP IN DT JJ NN WDT VBZ NN IN NNP CD IN CD .\nIt will be the first appearance at the season finale for 2010 Wimbledon finalist Berdych .\tPRP MD VB DT JJ NN IN DT NN NN IN CD NNP NN NNP .\nThe final spots were decided when Frenchman Gael Monfils scored a third-round victory over Spain 's Fernando Verdasco at the Paris Masters .\tDT JJ NNS VBD VBN WRB NNP NNP NNP VBD DT JJ NN IN NNP POS NNP NNP IN DT NNP NNPS .\nVerdasco needed to reach the final to have any hope of qualifying for the elite indoor hard-court tournament .\tNNP VBD TO VB DT JJ TO VB DT NN IN VBG IN DT NN JJ NN NN .\nRussian Nikolay Davydenko defeated Argentine Juan Martin del Potro to claim the 2009 title .\tJJ NNP NNP VBD JJ NNP NNP NNP NNP TO VB DT CD NN .\nNeither will be playing in this year 's edition .\tDT MD VB VBG IN DT NN POS NN .\nNATO peacekeepers in Bosnia-Herzegovina have raided a business owned by the son-in-law of fugitive Bosnian Serb war crimes suspect Radovan Karadzic .\tNNP NNS IN NNP VBP VBN DT NN VBN IN DT NN IN JJ JJ JJ NN NNS VBP NNP NNP .\nAlliance officials say the raid on a photography and electronics business in Pale run by Branislav Jovicevic was aimed at gaining additional information about the supply network assisting Mr. Karadzic and was aimed at disrupting it .\tNN NNS VBP DT NN IN DT NN CC NNS NN IN NNP VBN IN NNP NNP VBD VBN IN VBG JJ NN IN DT NN NN VBG NNP NNP CC VBD VBN IN VBG PRP .\nThe United Nations war crimes tribunal has indicted Mr. Karadzic for his role in attacks on civilians during the Bosnian conflict of the 1990s .\tDT NNP NNPS NN NNS JJ VBZ VBN NNP NNP IN PRP$ NN IN NNS IN NNS IN DT JJ NN IN DT NNS .\nHe is believed to be hiding in Bosnia or in neighboring Montenegro .\tPRP VBZ VBN TO VB VBG IN NNP CC IN JJ NNP .\nThe U.S. military says it has not found the pilot of an F-16 fighter jet that crashed in Iraq Monday .\tDT NNP NN VBZ PRP VBZ RB VBN DT NN IN DT NN NN NN WDT VBD IN NNP NNP .\nOfficials say the pilot was not at the crash site northwest of Baghdad when U.S. ground forces arrived .\tNNS VBP DT NN VBD RB IN DT NN NN NN IN NNP WRB NNP NN NNS VBD .\nThe Air Force says it can not confirm whether the pilot is alive or dead .\tDT NNP NNP VBZ PRP MD RB VB IN DT NN VBZ JJ CC JJ .\nMilitary officials say fighter aircraft spotted insurgents in the area of the crash site immediately after the warplane went down .\tJJ NNS VBP NN NN VBD NNS IN DT NN IN DT NN NN RB IN DT NN VBD RB .\nAir Force officials say the cause of the crash is being investigated but that it is unlikely the jet was shot down .\tNNP NNP NNS VBP DT NN IN DT NN VBZ VBG VBN CC IN PRP VBZ JJ DT NN VBD VBN RB .\nA scientist watches a rocket carrying CARTOSAT-1 and HAMSAT on a screen just before the take-off at Sriharokota , India India has launched a rocket carrying two satellites , as part of the country 's ambitious space program that aims to send a probe to the moon .\tDT NN VBZ DT NN VBG NNP CC NNP IN DT NN RB IN DT NN IN NNP , NNP NNP VBZ VBN DT NN VBG CD NNS , IN NN IN DT NN POS JJ NN NN WDT VBZ TO VB DT NN TO DT NN .\nThe indigenous high-tech rocket , called the Polar Satellite Launch Vehicle , or PSLAV blasted off from India 's spaceport of Sriharokota on the coast of the Bay of Bengal Thursday .\tDT JJ NN NN , VBD DT NNP NNP NNP NNP , CC NNP VBD RP IN NNP POS NN IN NNP IN DT NN IN DT NNP IN NNP NNP .\nAmong the two satellites , the heavier CARTOSAT-1 is designed to supply high-resolution pictures for more precise maps for a wide range of uses , including water resources management , town planning and environmental assessment .\tIN DT CD NNS , DT JJR NN VBZ VBN TO VB JJ NNS IN JJR JJ NNS IN DT JJ NN IN NNS , VBG NN NNS NN , NN NN CC JJ NN .\nThe smaller HAMSAT communication satellite will provide high radio frequencies .\tDT JJR NNP NN NN MD VB JJ NN NNS .\nIndian space scientists say they plan to use a version of the PSLAV rocket for their moon mission which they hope to complete by 2008 .\tJJ NN NNS VBP PRP VBP TO VB DT NN IN DT NNP NN IN PRP$ NN NN WDT PRP VBP TO VB IN CD .\nTwo Lebanese soldiers were killed in fighting , as the army continues its assault against Islamic militants holed up inside a Palestinian refugee camp .\tCD JJ NNS VBD VBN IN NN , IN DT NN VBZ PRP$ NN IN NNP NNS VBD RP IN DT JJ NN NN .\nArmy officials say the soldiers were killed Wednesday inside the Nahr el-Bared refugee camp in northern Lebanon .\tNNP NNS VBP DT NNS VBD VBN NNP IN DT NNP JJ NN NN IN JJ NNP .\nMore than 130 people - including 63 soldiers and at least 20 civilians - have been killed since fighting between Lebanese troops and the militant group Fatah al-Islam broke out at the camp more than three weeks ago .\tJJR IN CD NNS : VBG CD NNS CC IN JJS CD NNS : VBP VBN VBN IN VBG IN JJ NNS CC DT JJ NN NNP NNP VBD RP IN DT NN RBR IN CD NNS RB .\nTens of thousands of Palestinian refugees managed to flee the area , but thousands more remain inside .\tNNS IN NNS IN JJ NNS VBD TO VB DT NN , CC NNS JJR VBP JJ .\nIn related news , the U.S.-based rights group Human Rights Watch has accused the Lebanese army of physically abusing and illegally detaining civilians fleeing the camp .\tIN JJ NN , DT JJ NNS NN NNP NNP NNP VBZ VBN DT JJ NN IN RB VBG CC RB VBG NNS VBG DT NN .\nLebanese officials would not comment on the allegations .\tJJ NNS MD RB VB IN DT NNS .\nOil prices hit new record highs Tuesday on heightened concerns about a potential Turkish incursion into northern Iraq to pursue Kurdish rebels .\tNN NNS VBD JJ NN NNS NNP IN JJ NNS IN DT JJ JJ NN IN JJ NNP TO VB JJ NNS .\nThe price of U.S. crude for November delivery settled up $ 1.48 at a record $ 87.61 per barrel .\tDT NN IN NNP NN IN NNP NN VBD RP $ CD IN DT NN $ CD IN NN .\nEarlier , the price climbed as high as $ 88.2 .\tRB , DT NN VBD RB JJ IN $ CD .\nDealers say there is concern that an escalation of fighting along the Turkish-Iraqi border could affect oil production and pipelines in northern Iraq .\tNNS VBP EX VBZ NN IN DT NN IN VBG IN DT JJ NN MD VB NN NN CC NNS IN JJ NNP .\nThey say another factor driving up the prices is low supplies of oil in the United States and other consumer nations heading into winter .\tPRP VBP DT NN VBG RP DT NNS VBZ JJ NNS IN NN IN DT NNP NNPS CC JJ NN NNS VBG IN NN .\nIn a statement Tuesday , the chief of powerful oil cartel OPEC , Abdullah Al-Badri , said the group does not favor higher prices , and insists the market is well-supplied .\tIN DT NN NNP , DT NN IN JJ NN NN NNP , NNP NNP , VBD DT NN VBZ RB VB JJR NNS , CC VBZ DT NN VBZ JJ .\nIraq 's defense ministry says security forces have arrested 93 suspects in an al-Qaida crackdown in the western Anbar province .\tNNP POS NN NN VBZ NN NNS VBP VBN CD NNS IN DT NNP NN IN DT JJ NNP NN .\nA defense ministry spokesman , Major General Mohammed al-Askari , said Thursday the arrests included 60 wanted men .\tDT NN NN NN , NNP NNP NNP NNP , VBD NNP DT NNS VBD CD JJ NNS .\nHe said the detentions resulted from a series of raids launched late Tuesday that included help from police , the army , pro-government tribal forces and members of an anti-al-Qaida militia .\tPRP VBD DT NNS VBD IN DT NN IN NNS VBN RB NNP WDT VBD NN IN NNS , DT NN , JJ JJ NNS CC NNS IN DT JJ NN .\nEarlier this week , Iraqi Prime Minister Nouri al-Maliki named security as one of his top priorities after parliament approved cabinet ministers for his new government .\tRBR DT NN , JJ NNP NNP NNP NNP VBD NN IN CD IN PRP$ JJ NNS IN NN VBD NN NNS IN PRP$ JJ NN .\nMeanwhile , Iraqi officials say gunmen using silencers have killed a brigadier general and wounded a police lieutenant colonel .\tRB , JJ NNS VBP NNS VBG NNS VBP VBN DT NN NN CC VBD DT NN NN NN .\nBoth incidents occurred late Wednesday in Baghdad .\tDT NNS VBD JJ NNP IN NNP .\nTurkey has detained 10 people with suspected links to the al-Qaida terrorist network .\tNNP VBZ VBN CD NNS IN JJ NNS TO DT NNP JJ NN .\nAmong those arrested was a lawyer who identified himself as the leader of the group in Turkey .\tIN DT VBN VBD DT NN WP VBD PRP IN DT NN IN DT NN IN NNP .\nThe official Anatolia news agency said Saturday the suspects were detained in simultaneous operations begun in November in the capital , Ankara , Istanbul and the western city of Izmir .\tDT JJ NNP NN NN VBD NNP DT NNS VBD VBN IN JJ NNS VBN IN NNP IN DT NN , NNP , NNP CC DT JJ NN IN NNP .\nTurkey has suffered several attacks blamed on al-Qaida .\tNNP VBZ VBN JJ NNS VBN IN NNP .\nIn November 2003 , more than 60 people were killed in bombings of two synagogues , the British Consulate and a bank office in Istanbul .\tIN NNP CD , JJR IN CD NNS VBD VBN IN NNS IN CD NNS , DT JJ NNP CC DT NN NN IN NNP .\nThe United States Supreme Court has ruled that lawsuits are permitted against tobacco companies who allegedly use deceptive tactics to advertise ' light ' brand cigarettes .\tDT NNP NNP NNP NNP VBZ VBN IN NNS VBP VBN IN NN NNS WP RB VBP JJ NNS TO VB `` JJ `` NN NNS .\nBy a narrow 05-Apr vote Monday , the justices said smokers may use state consumer protection laws to sue companies for the way they promote ' low tar ' or ' light ' cigarettes .\tIN DT JJ JJ NN NNP , DT NNS VBD NNS MD VB NN NN NN NNS TO VB NNS IN DT NN PRP VBP `` JJ NN `` CC `` JJ `` NNS .\nThe case stems from a class action lawsuit from three residents in the northeastern state of Maine who alleged manufacturers hid information that ' light ' cigarettes are as dangerous as regular ones .\tDT NN VBZ IN DT NN NN NN IN CD NNS IN DT JJ NN IN NNP WP VBD NNS JJ NN IN `` JJ `` NNS VBP RB JJ IN JJ NNS .\nTobacco companies argued that a federal cigarette-labeling law does not allow states to regulate any aspect of cigarette advertising involving smoking and health .\tNNP NNS VBD IN DT JJ JJ NN VBZ RB VB NNS TO VB DT NN IN NN NN VBG NN CC NN .\nThe high court decision Monday is a blow to Altria Group 's Philip Morris unit and other tobacco companies , who face scores of similar lawsuits across the country .\tDT JJ NN NN NNP VBZ DT NN TO NNP NNP POS NNP NNP NN CC JJ NN NNS , WP VBP NNS IN JJ NNS IN DT NN .\nThe European Union has announced a $ 195 million humanitarian aid package for 10 African nations , including Sudan and the Democratic Republic of Congo .\tDT NNP NNP VBZ VBN DT $ CD CD JJ NN NN IN CD JJ NNS , VBG NNP CC DT JJ NNP IN NNP .\nEU Development Commissioner Louis Michel says millions of Africans remain vulnerable to ' silent tsunamis ' such as droughts , floods and armed conflicts .\tNNP NNP NNP NNP NNP VBZ NNS IN NNS VBP JJ TO `` JJ NNS `` JJ IN NNS , NNS CC JJ NNS .\nNearly $ 57 million has been earmarked to help displaced persons return to Sudan 's violence-plagued Darfur region , while $ 45 million will be spent to improve health care for women and children in the war weary Congo .\tRB $ CD CD VBZ VBN VBN TO VB JJ NNS NN TO NNP POS JJ NNP NN , IN $ CD CD MD VB VBN TO VB NN NN IN NNS CC NNS IN DT NN JJ NNP .\nThe rest of the money will fund aid efforts in Uganda , Burundi , Comoros , Liberia , Ivory Coast , Madagascar , Chad and Tanzania .\tDT NN IN DT NN MD VB NN NNS IN NNP , NNP , NNP , NNP , NNP NNP , NNP , NNP CC NNP .\nThe money will be funneled through several humanitarian aid organizations , including the United Nations and Red Cross .\tDT NN MD VB VBN IN JJ JJ NN NNS , VBG DT NNP NNPS CC NNP NNP .\nLeaders of Germany 's two main political parties will hold a special meeting Thursday to determine who should lead a so-called ' grand coalition ' government , after last month 's general election ended without a clear winner .\tNNS IN NNP POS CD JJ JJ NNS MD VB DT JJ NN NNP TO VB WP MD VB DT JJ `` JJ NN `` NN , IN JJ NN POS JJ NN VBD IN DT JJ NN .\nThe announcement followed Wednesday 's third round of coalition talks between Christian Democratic leader Angela Merkel and Chancellor Gerhard Schroeder , who heads the ruling Social Democrats .\tDT NN VBD NNP POS JJ NN IN NN NNS IN NNP JJ NN NNP NNP CC NNP NNP NNP , WP VBZ DT NN NNP NNPS .\nMs. Merkel , who is battling to become chancellor , told reporters she is more optimistic than pessimistic .\tNNP NNP , WP VBZ VBG TO VB NN , VBD NNS PRP VBZ RBR JJ IN JJ .\nThe Social Democrats have insisted that Mr. Schroeder remain in office even though the Christian Democrats hold a slight lead in parliament after recent elections .\tDT NNP NNPS VBP VBN IN NNP NNP VBP IN NN RB IN DT NNP NNPS VBP DT JJ NN IN NN IN JJ NNS .\nBoth parties failed to win enough seats to govern with their respective small party allies .\tDT NNS VBD TO VB JJ NNS TO VB IN PRP$ JJ JJ NN NNS .\nA poll released Wednesday shows 34 percent of Germans supporting Ms. Merkel as chancellor and 26 percent for Mr. Schroeder .\tDT NN VBN NNP VBZ CD NN IN NNS VBG NNP NNP IN NN CC CD NN IN NNP NNP .\nU.S. and Iraqi officials say insurgents killed at least 13 people in several attacks across Iraq Monday .\tNNP CC JJ NNS VBP NNS VBN IN JJS CD NNS IN JJ NNS IN NNP NNP .\nThe officials say two car bombs in western Baghdad killed five people each .\tDT NNS VBP CD NN NNS IN JJ NNP VBD CD NNS DT .\nOne of the cars exploded near a courthouse .\tCD IN DT NNS VBD IN DT NN .\nInsurgents killed at least two people in drive-by shootings outside the capital .\tNNS VBD IN JJS CD NNS IN JJ NNS IN DT NN .\nElsewhere , the U.S. military in Iraq says a roadside bomb killed an American soldier southeast of Baghdad .\tRB , DT NNP NN IN NNP VBZ DT NN NN VBD DT JJ NN NN IN NNP .\nAnd the bodies of two Iraqi journalists were found Monday , one day after they were abducted .\tCC DT NNS IN CD JJ NNS VBD VBN NNP , CD NN IN PRP VBD VBN .\nAuthorities also found the bodies of three police commandos kidnapped last week .\tNNS RB VBD DT NNS IN CD NNS VBZ VBN JJ NN .\nIn a separate statement , the U.S. military says troops killed Ali Wali , an explosives expert and member of the Ansar al-Islam terrorist group , during a counterterrorist raid in ( the Mansur district of ) Baghdad on Saturday .\tIN DT JJ NN , DT NNP NN VBZ NNS VBD NNP NNP , DT NNS NN CC NN IN DT NNP NNP JJ NN , IN DT NN NN IN LRB DT NNP NN IN RRB NNP IN NNP .\nHeather Mills vows she 's ready to hit the dance floor on U.S. television .\tNNP NNP VBZ PRP VBZ JJ TO VB DT NN NN IN NNP NN .\nThe model-turned-activist , currently divorcing her husband of four years , Paul McCartney , says her decision to compete on the popular U.S. TV series Dancing With The Stars is no publicity stunt .\tDT NN , RB VBG PRP$ NN IN CD NNS , NNP NNP , VBZ PRP$ NN TO VB IN DT JJ NNP NN NN VBG IN DT NNP VBZ DT NN NN .\nMills , who lost her left leg below the knee in a 1993 motorcycle accident , will be the show 's first contestant with an artificial limb .\tNNP , WP VBD PRP$ JJ NN IN DT NN IN DT CD NN NN , MD VB DT NN POS JJ NN IN DT JJ NN .\nShe will dance with a sleeve over her prosthesis to prevent it slipping off , and says she also has a spare if necessary .\tPRP MD VB IN DT NN IN PRP$ NN TO VB PRP VBG RP , CC VBZ PRP RB VBZ DT JJ IN JJ .\nHeather Mills plans to donate her appearance fee to the animal rights organization Viva .\tNNP NNP VBZ TO VB PRP$ NN NN TO DT NN NNS NN NNP .\nOne of the highest-rated shows on U.S. television , Dancing With The Stars begins its fourth season on March 19 .\tCD IN DT JJ NNS IN NNP NN , VBG IN DT NNP VBZ PRP$ JJ NN IN NNP CD .\nAt least 30 people were killed in a theater fire that broke out Monday night in the Egyptian town of Beni Suef , about 100 kilometers south of Cairo .\tIN JJS CD NNS VBD VBN IN DT NN NN WDT VBD RP NNP NN IN DT JJ NN IN NNP NNP , IN CD NNS RB IN NNP .\nAt least 45 were injured .\tIN JJS CD VBD VBN .\nCandles being used by performers came into contact with the stage curtains during a play , panicking the crowd of about 1000 people who fled the theater .\tNNS VBG VBN IN NNS VBD IN NN IN DT NN NNS IN DT NN , VBG DT NN IN IN CD NNS WP VBD DT NN .\nSome of the victims are believed to have been trampled underfoot .\tDT IN DT NNS VBP VBN TO VB VBN VBN NN .\nSenate Democrats are asking President Bush not to choose a hard-line conservative to replace retiring U.S. Supreme Court Justice Sandra Day O'Connor .\tNNP NNPS VBP VBG NNP NNP RB TO VB DT JJ JJ TO VB VBG NNP NNP NNP NNP NNP NNP NNP .\nSenate Minority Leader Harry Reid said the president should nominate a candidate ' whose views are within the broad constitutional mainstream , ' as former President Ronald Reagan did when he nominated Ms. O'Connor .\tNNP NNP NNP NNP NNP VBD DT NN MD VB DT NN `` WP$ NNS VBP IN DT JJ JJ NN , `` IN JJ NNP NNP NNP VBD WRB PRP VBD NNP NNP .\nShe was approved by the Senate unanimously .\tPRP VBD VBN IN DT NNP RB .\nSenator Ted Kennedy said Democrats will oppose a candidate who , in his words , wants to roll back the freedoms of the American people .\tNNP NNP NNP VBD NNPS MD VB DT NN WP , IN PRP$ NNS , VBZ TO VB RP DT NNS IN DT JJ NNS .\nMr. Bush and Senate Democrats waged an extended political battle earlier this year over several of the president 's nominees for U.S. appeals court positions .\tNNP NNP CC NNP NNPS VBD DT JJ JJ NN RBR DT NN IN NN IN DT NN POS NNS IN NNP NNS NN NNS .\nA Supreme Court nominee has to win a majority of Senate votes for confirmation .\tDT NNP NNP NN VBZ TO VB DT NN IN NNP NNS IN NN .\nRepublicans control the Senate by a 55-to-45 margin .\tNNPS VBP DT NNP IN DT JJ NN .\nA Nigerian militant group has released the nationalities of seven hostages abducted Sunday from an offshore oil rig in Akwa Ibom state .\tDT JJ JJ NN VBZ VBN DT NNS IN CD NNS VBN NNP IN DT JJ NN NN IN NNP NNP NN .\nThe Movement for the Emancipation of the Niger Delta said Friday its hostages are two Americans , two French nationals , one Canadian and two Indonesians .\tDT NN IN DT NN IN DT NNP NNP VBD NNP PRP$ NNS VBP CD NNS , CD JJ NNS , CD JJ CC CD NNS .\nMEND says they are in good health .\tNNP VBZ PRP VBP IN JJ NN .\nThe seven were abducted during an attack on a rig operated by Afren .\tDT CD VBD VBN IN DT NN IN DT NN VBN IN NNP .\nAt least two of the rig 's crew members were wounded in the attack and left on the rig .\tIN JJS CD IN DT NN POS NN NNS VBD VBN IN DT NN CC VBN IN DT NN .\nU.S. State Department spokesman P.J. Crowley said earlier this week that the United States is working with Nigerian officials to secure freedom for the hostages .\tNNP NNP NNP NN NNP NNP VBD RBR DT NN IN DT NNP NNPS VBZ VBG IN JJ NNS TO VB NN IN DT NNS .\nThe Niger Delta is home to criminal gangs that steal oil and take hostages for ransom .\tDT NNP NNP VBZ NN TO JJ NNS WDT VBP NN CC VB NNS IN NN .\nThe region also has militants who say they are fighting for a fairer distribution of oil wealth .\tDT NN RB VBZ NNS WP VBP PRP VBP VBG IN DT JJR NN IN NN NN .\nSouth Korea 's Defense Ministry says the country will draw up plans by the end of June to withdraw its remaining troops from Iraq .\tNNP NNP POS NNP NNP VBZ DT NN MD VB RP NNS IN DT NN IN NNP TO VB PRP$ VBG NNS IN NNP .\nThe ministry said Friday , that a plan on the termination of the mission will be sent to parliament .\tDT NN VBD NNP , IN DT NN IN DT NN IN DT NN MD VB VBN TO NN .\nSpeaking in Seoul Thursday , visiting Iraqi Prime Minister Nouri al-Maliki said South Korea can begin reducing its troops in northern Iraq next month , after Iraqi forces take over security in the Kurdish region .\tVBG IN NNP NNP , VBG JJ NNP NNP NNP NNP VBD NNP NNP MD VB VBG PRP$ NNS IN JJ NNP JJ NN , IN JJ NNS VBP RP NN IN DT JJ NN .\nSouth Korea sent nearly 3600 soldiers to Iraq in 2004 - the third-largest contingent after the United States and Britain .\tNNP NNP VBD RB CD NNS TO NNP IN CD IN DT JJ JJ IN DT NNP NNPS CC NNP .\nSeoul has been gradually withdrawing its troops since then .\tNNP VBZ VBN RB VBG PRP$ NNS IN RB .\nMr. Maliki is the highest-ranking Iraqi official to visit South Korea since the Iraqi government took office last May .\tNNP NNP VBZ DT JJ JJ NN TO VB NNP NNP IN DT JJ NN VBD NN JJ NNP .\nDuring his three-day visit , he also urged South Korean companies to take part in his country 's postwar reconstruction projects .\tIN PRP$ JJ NN , PRP RB VBD JJ JJ NNS TO VB NN IN PRP$ NN POS JJ NN NNS .\nRegulators say they will publish results of a special examination of the 19 largest U.S. banks on May 4 .\tNNS VBP PRP MD VB NNS IN DT JJ NN IN DT CD JJS NNP NNS IN NNP CD .\nWorries that the large banks might not be strong enough to cope with a deepening recession prompted officials to institute a series of ' stress tests . '\tNNS IN DT JJ NNS MD RB VB JJ RB TO VB IN DT VBG NN VBD NNS TO VB DT NN IN `` NN NNS . ``\nExperts looked over the banks ' assets and tried to figure out if they would need financial help if unemployment rose even higher or other economic conditions deteriorated .\tNNS VBD IN DT NNS POS NNS CC VBD TO VB RP IN PRP MD VB JJ NN IN NN VBD RB JJR CC JJ JJ NNS VBD .\nA suspected U.S. missile strike has killed two people in Pakistan 's North Waziristan tribal region .\tDT JJ NNP NN NN VBZ VBN CD NNS IN NNP POS NNP NNP JJ NN .\nPakistani intelligence officials say the strike Saturday hit a house near the region 's main town of Miran Shah .\tJJ NN NNS VBP DT NN NNP VBD DT NN IN DT NN POS JJ NN IN NNP NNP .\nThe Pakistani government has strongly condemned the suspected U.S. strikes in the country , saying they undermine Pakistan 's counter-terrorism efforts .\tDT JJ NN VBZ RB VBN DT JJ NNP NNS IN DT NN , VBG PRP VBP NNP POS NN NNS .\nPakistan 's defense minister , Ahmed Mukhtar , says officials will meet in early December to discuss the strikes , which allegedly are carried out by unmanned ( drone ) U.S. aircraft .\tNNP POS NN NN , NNP NNP , VBZ NNS MD VB IN JJ NNP TO VB DT NNS , WDT RB VBP VBN RP IN JJ LRB NN RRB NNP NN .\nIran says it stands by its U.N. commitments not to use violence against another country , amid international criticism over the Iranian president 's call for Israel 's destruction .\tNNP VBZ PRP VBZ IN PRP$ NNP NNS RB TO VB NN IN DT NN , IN JJ NN IN DT JJ NN POS NN IN NNP POS NN .\nThe foreign ministry said Saturday Iran has never resorted to , nor threatened to resort to force against another country .\tDT JJ NN VBD NNP NNP VBZ RB VBN TO , CC VBD TO VB IN NN IN DT NN .\nIranian President Mahmoud Ahmadinejad caused an international outcry on Wednesday by saying Israel should be ' wiped off the map . '\tJJ NNP NNP NNP VBD DT JJ NN IN NNP IN VBG NNP MD VB `` VBN RP DT NN . ``\nHe stood by those comments Friday during massive anti-Israeli protests in Tehran .\tPRP VBD IN DT NNS NNP IN JJ JJ NNS IN NNP .\nPalestinian chief negotiator Saeb Erekat said Palestinians have recognized Israel 's right to exist .\tJJ NN NN NNP NNP VBD NNS VBP VBN NNP POS NN TO VB .\nHe said what the international community should be discussing is adding a Palestinian state to the map , not wiping Israel from it .\tPRP VBD WP DT JJ NN MD VB VBG VBZ VBG DT JJ NN TO DT NN , RB VBG NNP IN PRP .\nFriday , the U.N. Security Council condemned the Iranian president 's remarks .\tNNP , DT NNP NNP NNP VBD DT JJ NN POS NNS .\nIraqi officials say a car bomb has exploded in northern Baghdad , killing at least seven people .\tJJ NNS VBP DT NN NN VBZ VBN IN JJ NNP , VBG IN JJS CD NNS .\nAuthorities say the blast in the Kadhimiya district on Wednesday evening injured at least 14 others .\tNNS VBP DT NN IN DT NNP NN IN NNP NN NN IN JJS CD NNS .\nBomb attacks and other violence Wednesday in Iraq killed about 50 people overall , many in the Baghdad area .\tNN NNS CC JJ NN NNP IN NNP VBD IN CD NNS JJ , JJ IN DT NNP NN .\nThe attacks included a roadside bomb blast that killed five police officers in Samarra , north of the capital , while gunmen killed four policemen in an ambush near Kirkuk .\tDT NNS VBD DT NN NN NN WDT VBD CD NNS NNS IN NNP , NN IN DT NN , IN NNS VBD CD NNS IN DT NN IN NNP .\nIn other news , the U.S. military says a high-level al-Qaida leader , Mehmet Yilmaz , and his associate Mehmet Resit Isik were killed in a coalition raid Saturday south of Hawija .\tIN JJ NN , DT NNP NN VBZ DT JJ NNP NN , NNP NNP , CC PRP$ JJ NNP NNP NNP VBD VBN IN DT NN NN NNP NN IN NNP .\nA military spokesman described the men as dangerous and significant international terrorists .\tDT JJ NN VBD DT NNS IN JJ CC JJ JJ NNS .\nThe military also announced the combat-related deaths of two U.S. troops , one in eastern Baghdad Wednesday and the other in al-Anbar province on Tuesday .\tDT NN RB VBD DT JJ NNS IN CD NNP NNS , CD IN JJ NNP NNP CC DT JJ IN JJ NN IN NNP .\nA leading American newspaper says police and security forces in the northern Iraqi city of Kirkuk have abducted hundreds of Arabs and Turkmens - sometimes with the knowledge of U.S. forces in the region .\tDT JJ JJ NN VBZ NNS CC NN NNS IN DT JJ JJ NN IN NNP VBP VBN NNS IN NNS CC NNS : RB IN DT NN IN NNP NNS IN DT NN .\nCiting U.S. government documents and victims ' families , the Washington Post said the men have been abducted in raids led by Kurdish political parties and the detainees transferred secretly to prisons in Kurdish cities in northern Iraq .\tVBG NNP NN NNS CC NNS POS NNS , DT NNP NNP VBD DT NNS VBP VBN VBN IN NNS VBN IN NNP JJ NNS CC DT NNS VBD RB TO NNS IN JJ NNS IN JJ NNP .\nThe newspaper says it has obtained a confidential U.S. State Department cable addressed to the White House , the Defense Department and the U.S. Embassy in Baghdad that raises concern about the unlawful detentions and transfers .\tDT NN VBZ PRP VBZ VBN DT JJ NNP NNP NNP NN VBD TO DT NNP NNP , DT NNP NNP CC DT NNP NNP IN NNP WDT VBZ NN IN DT JJ NNS CC NNS .\nKirkuk is claimed by three Iraqi ethnic groups - Kurds , Arabs and Turkmens .\tNNP VBZ VBN IN CD JJ JJ NNS : NNPS , NNS CC NNPS .\nThere has been a sharp rise of violence and tension in the oil-rich city in recent months\tEX VBZ VBN DT JJ NN IN NN CC NN IN DT JJ NN IN JJ NNS\nPresident Bush plans to meet Turkish Prime Minister Recep Tayyip Erdogan in Washington next month for talks on cooperation in the war against terrorism .\tNNP NNP VBZ TO VB JJ NNP NNP NNP NNP NNP IN NNP JJ NN IN NNS IN NN IN DT NN IN NN .\nThe White House released a statement Tuesday that said the talks will be held October second and will include discussion on how to counter Kurdish rebels in Turkey .\tDT NNP NNP VBD DT NN NNP WDT VBD DT NNS MD VB VBN NNP JJ CC MD VB NN IN WRB TO VB JJ NNS IN NNP .\nThe statement said the two leaders also will discuss ways to advance freedom in Lebanon , Iraq and other parts of the Middle East .\tDT NN VBD DT CD NNS RB MD VB NNS TO VB NN IN NNP , NNP CC JJ NNS IN DT NNP NNP .\nAnd they will talk about political and economic reforms in Turkey , as well as U.S. support for Turkey 's efforts to join the European Union .\tCC PRP MD VB IN JJ CC JJ NNS IN NNP , RB RB IN NNP NN IN NNP POS NNS TO VB DT NNP NNP .\nThe human rights group Amnesty International has issued a critical report charging that Israel prevents Palestinians in the occupied West Bank and Gaza Strip from receiving adequate water supplies .\tDT JJ NNS NN NNP NNP VBZ VBN DT JJ NN VBG IN NNP VBZ NNS IN DT JJ NNP NNP CC NNP NNP IN VBG JJ NN NNS .\nThe report , issued Tuesday , says Israel is pumping more than its share of water from an aquifer it controls in the West Bank .\tDT NN , VBN NNP , VBZ NNP VBZ VBG JJR IN PRP$ NN IN NN IN DT NN PRP VBZ IN DT NNP NNP .\nAccording to Amnesty , on a per-capita basis , Israelis use four times as much water as Palestinians , whose water supply is far below the minimum recommended by the World Health Organization .\tVBG TO NNP , IN DT JJ NN , NNS VBP CD NNS RB RB NN IN NNS , WP$ NN NN VBZ RB IN DT NN VBN IN DT NNP NNP NNP .\nIsraeli officials say the Amnesty report is biased and incorrect .\tJJ NNS VBP DT JJ NN VBZ JJ CC JJ .\nThey contend water shortages result from the Palestinians ' failure to develop their own water infrastructure .\tPRP VBP NN NNS VBP IN DT NNS POS NN TO VB PRP$ JJ NN NN .\nThe scarcity of water in Israel and the Palestinian territories has led to steep price increases for all residents .\tDT NN IN NN IN NNP CC DT JJ NNS VBZ VBN TO JJ NN NNS IN DT NNS .\nU.N. Secretary-General Ban Ki-moon is offering to hold an international summit on global finance reform by early December .\tNNP NNP NNP NNP VBZ VBG TO VB DT JJ NN IN JJ NN NN IN JJ NNP .\nThe secretary-general Saturday agreed to host the gathering at the U.N. headquarters in the northeastern U.S. state of New York .\tDT JJ NNP VBD TO VB DT NN IN DT NNP NN IN DT JJ NNP NN IN NNP NNP .\nMr. Ban says French President Nicolas Sarkozy , who holds the rotating EU presidency , has agreed to the gathering .\tNNP NNP VBZ JJ NNP NNP NNP , WP VBZ DT VBG NNP NN , VBZ VBN TO DT NN .\nThe U.N. chief says it is important to work quickly to reform the global financial system .\tDT NNP NN VBZ PRP VBZ JJ TO VB RB TO VB DT JJ JJ NN .\nIn September , President Sarkozy told the U.N. General Assembly the international community has a political and moral responsibility to act quickly .\tIN NNP , NNP NNP VBD DT NNP NNP NNP DT JJ NN VBZ DT JJ CC JJ NN TO VB RB .\nMr. Sarkozy called for the creation of global institutions to regulate and rebuild the financial system .\tNNP NNP VBD IN DT NN IN JJ NNS TO VB CC VB DT JJ NN .\nU.S. Government experts are drawing a more complete picture of hurricane damage to the southern United States .\tNNP NN NNS VBP VBG DT RBR JJ NN IN NN NN TO DT JJ NNP NNPS .\nThe Commerce Department said Friday , Hurricane Katrina caused $ 100 billion in damage that will not be covered by insurance .\tDT NNP NNP VBD NNP , NNP NNP VBD $ CD CD IN NN WDT MD RB VB VBN IN NN .\nHigher energy prices sparked by hurricanes also helped to depress one measure of consumer spending by about one percent - the steepest drop since the terror attacks in 2001 .\tJJR NN NNS VBN IN NNS RB VBD TO VB CD NN IN NN NN IN IN CD NN IN DT JJS NN IN DT NN NNS IN CD .\nExperts track consumer spending because consumer demand drives most U.S. economic activity .\tNNS VBP NN NN IN NN NN VBZ RBS NNP JJ NN .\nA separate report from the non-partisan Congressional Budget Office on Thursday says the hurricanes will temporarily cut U.S. economic growth by about 0.5 percent .\tDT JJ NN IN DT JJ NNP NNP NNP IN NNP VBZ DT NNS MD RB VB NNP JJ NN IN IN CD NN .\nThat is less than first thought , and the CBO says the reduction will probably be offset by a surge of rebuilding activity by early next year .\tDT VBZ JJR IN JJ NN , CC DT NNP VBZ DT NN MD RB VB VBN IN DT NN IN NN NN IN JJ JJ NN .\nRussia 's natural gas firm Gazprom is seeking at least a threefold increase in the price for gas sold to Belarus next year .\tNNP POS JJ NN NN NNP VBZ VBG IN JJS DT JJ NN IN DT NN IN NN VBN TO NNP JJ NN .\nThe firm 's deputy chairman , Alexander Ryazanov , said Tuesday that the two sides will negotiate a price but stressed that the hike would be an economic decision , not a political one .\tDT NN POS NN NN , NNP NNP , VBD NNP IN DT CD NNS MD VB DT NN CC VBD IN DT NN MD VB DT JJ NN , RB DT JJ NN .\nHe said Belarus is the only member of the Commonwealth of Independent States not paying market prices for Russian gas .\tPRP VBD NNP VBZ DT JJ NN IN DT NNP IN NNP NNPS RB VBG NN NNS IN JJ NN .\nRyazanov said Belarus now pays about $ 47 for 1,000 cubic meters of gas .\tNNP VBD NNP RB VBZ IN $ CD IN CD JJ NNS IN NN .\nThe world price stands at about $ 230 per 1,000 cubic meters .\tDT NN NN VBZ IN IN $ CD IN CD JJ NNS .\nEarlier this year , Gazprom temporarily shut off gas supplies to Ukraine when Kiev initially refused to pay a sharp hike in prices .\tRBR DT NN , NNP RB VBD RP NN NNS TO VB WRB NNP RB VBD TO VB DT JJ NN IN NNS .\nPakistan and India have opened a fifth and final crossing point along the Line of Control in the divided Kashmir region to exchange earthquake relief aid .\tNNP CC NNP VBP VBN DT JJ CC JJ VBG NN IN DT NN IN NN IN DT VBN NNP NN TO VB NN NN NN .\nOfficials say permission to people to cross the de~facto border will be given at a later date .\tNNS VBP NN TO NNS TO VB DT JJ NN MD VB VBN IN DT JJ NN .\nMeanwhile , British military helicopters have joined the airlift of relief supplies from the capital of Pakistani Kashmir , Muzaffarabad , to remote villages devastated by October 8 quake .\tRB , JJ JJ NNS VBP VBN DT NN IN NN NNS IN DT NN IN JJ NNP , NNP , TO VB NNS VBN IN NNP CD NN .\nAid agencies and governments are trying to help quake survivors before the harsh Himalayan winter sets in .\tJJ NNS CC NNS VBP VBG TO VB NN NNS IN DT JJ JJ NN NNS IN .\nDonors are to meet in Islamabad on Saturday .\tNNS VBP TO VB IN NNP IN NNP .\nPresident Pervez Musharraf has appealed for more than five billion dollars for quake relief and reconstruction .\tNNP NNP NNP VBZ VBN IN JJR IN CD CD NNS IN NN NN CC NN .\nHe also says the disaster presents an opportunity for Pakistan and India to resolve their long-running dispute over Kashmir .\tPRP RB VBZ DT NN VBZ DT NN IN NNP CC NNP TO VB PRP$ JJ NN IN NNP .\nThe Pakistani president said the final and most accurate death toll in the quake now stands at more than 73,000 .\tDT JJ NN VBD DT JJ CC RBS JJ NN NN IN DT NN RB VBZ IN JJR IN CD .\nA relatively strong earthquake rocked southeastern Iran , Saturday , a day after a 5.7 magnitude quake shook a northeastern province , injuring at least 170 people .\tDT RB JJ NN VBD JJ NNP , NNP , DT NN IN DT CD NN NN VBD DT JJ NN , VBG IN JJS CD NNS .\nIranian state media say Saturday 's quake had a 5.7 magnitude .\tJJ NN NNS VBP NNP POS NN VBD DT CD NN .\nThe U.S. Geological Survey says it had a magnitude of 5.3 .\tDT NNP NNP NNP VBZ PRP VBD DT NN IN CD .\nThe quake jolted the Negar region of Kerman province around mid-morning , local time .\tDT NN VBD DT JJ NN IN NNP NN IN NN , JJ NN .\nThere have been no reports of damage or injuries .\tEX VBP VBN DT NNS IN NN CC NNS .\nThe U.S. Geological Survey says Friday 's quake was centered near the northeastern city of Torbat-e-Heydariyeh .\tDT NNP NNP NNP VBZ NNP POS NN VBD VBN IN DT JJ NN IN NNP .\nIran is located on major seismic fault lines .\tNNP VBZ VBN IN JJ JJ NN NNS .\nThe worst recent quake in Iran occurred in 2003 , killing about 30,000 people and destroying much of the ancient southern city of Bam .\tDT JJS JJ NN IN NNP VBD IN CD , VBG IN CD NNS CC VBG NN IN DT JJ JJ NN IN NNP .\nLindsay Lohan has reportedly checked into a Utah rehabilitation center .\tNNP NNP VBZ RB VBN IN DT NNP NN NN .\nCBS News reports the 21-year-old actress has checked into the Cirque Lodge drug and alcohol treatment center in Sundance , Utah .\tNNP NNP VBZ DT JJ NN VBZ VBN IN DT NNP NNP NN CC NN NN NN IN NNP , NNP .\nIt would be her third stint in rehab , following two stays at Wonderland and Promises in the Los Angeles area .\tPRP MD VB PRP$ JJ NN IN NN , VBG CD NNS IN NNP CC NNP IN DT NNP NNP NN .\nTown and Country Magazine recently named Cirque Lodge as one of the nation 's top substance abuse treatment facilities .\tNNP CC NNP NNP RB VBD NNP NNP IN CD IN DT NN POS JJ NN NN NN NNS .\nThe New York Post reported that Lohan had on August 3 gone to her mother 's home on Long Island .\tDT NNP NNP NNP VBD IN NNP VBD IN NNP CD VBN TO PRP$ NN POS NN IN NNP NNP .\nThe exact day of her reported check-in to Cirque Lodge is not known .\tDT JJ NN IN PRP$ VBN NN TO NNP NNP VBZ RB VBN .\nLohan 's representatives did not comment on her whereabouts .\tNNP POS NNS VBD RB VB IN PRP$ NNS .\nShe is due in court in Santa Monica , CA on August 24 , when she faces charges from her July 24 arrest for suspicion of driving under the influence and driving on a suspended license .\tPRP VBZ JJ IN NN IN NNP NNP , NNP IN NNP CD , WRB PRP VBZ NNS IN PRP$ NNP CD NN IN NN IN VBG IN DT NN CC VBG IN DT JJ NN .\nShe also faces previous DUI-related charges .\tPRP RB VBZ JJ JJ NNS .\nOfficials say the clinic in Mexico where Coretta Scott King died has been shut down .\tNNS VBP DT NN IN NNP WRB NNP NNP NNP VBD VBZ VBN VBN RP .\nThe health department in Mexico 's Baja California state announced the closure of the Hospital Santa Monica Thursday because it was performing some procedures without authorization .\tDT NN NN IN NNP POS NN NNP NN VBD DT NN IN DT NNP NNP NNP NNP IN PRP VBD VBG DT NNS IN NN .\nThe statement said the alternative-medicine clinic , located some 26 kilometers south of San Diego , was performing surgeries , X-rays and unconventional treatments without permission .\tDT NN VBD DT JJ NN , VBN DT CD NNS RB IN NNP NNP , VBD VBG NNS , NNS CC JJ NNS IN NN .\nIt also said unknown substances were found there .\tPRP RB VBD JJ NNS VBD VBN RB .\nA spokesman for the clinic told the Atlanta Journal-Constitution newspaper Friday that Mrs. King was only receiving nutrition and had not yet started treatments .\tDT NN IN DT NN VBD DT NNP NNP NN NNP IN NNP NNP VBD RB VBG NN CC VBD RB RB VBN NNS .\nShe checked into the clinic January 26 , suffering from ovarian cancer and the effects of a stroke and heart attack sustained last year .\tPRP VBD IN DT NN NNP CD , VBG IN JJ NN CC DT NNS IN DT NN CC NN NN VBD JJ NN .\nNorth Korea has rejected a recent United Nations resolution that criticized Pyongyang 's human rights record .\tNNP NNP VBZ VBN DT JJ NNP NNP NN WDT VBD NNP POS JJ NNS NN .\nNorth Korea 's foreign ministry said the report was politically motivated and baseless .\tNNP NNP POS JJ NN VBD DT NN VBD RB JJ CC JJ .\nLast week , the 53-country U.N. Human Rights Commission passed a resolution condemning what it called ' systematic ' violations of human rights in North Korea .\tJJ NN , DT JJ NNP NNP NNP NNP VBD DT NN VBG WP PRP VBD `` JJ `` NNS IN JJ NNS IN NNP NNP .\nThe vote was 30 to nine .\tDT NN VBD CD TO CD .\nThe U.S. State Department says North Korea remains one of the most repressive countries in the world , where an estimated 1,50,000 to 2,00,000 people are held in detention camps for political reasons .\tDT NNP NNP NNP VBZ NNP NNP VBZ CD IN DT RBS JJ NNS IN DT NN , WRB DT VBN CD TO CD NNS VBP VBN IN NN NNS IN JJ NNS .\nIt says defectors report many prisoners have died from torture , starvation , disease or exposure .\tPRP VBZ NNS VBP JJ NNS VBP VBN IN NN , NN , NN CC NN .\nSeveral Burmese government departments reportedly are preparing to move from Rangoon to a more secure location , as protection against what leaders of the military junta fear might be a possible U.S. invasion .\tJJ JJ NN NNS RB VBP VBG TO VB IN NNP TO DT RBR JJ NN , IN NN IN WP NNS IN DT JJ NN NN MD VB DT JJ NNP NN .\nNews reports from the Burmese capital quote diplomatic analysts as saying the Ministries of Agriculture , Defense , Energy and Information will relocate to Pyinmana , just over 150 kilometers north of Rangoon , within a few months .\tNNP NNS IN DT JJ NN VBZ JJ NNS IN VBG DT NNS IN NNP , NNP , NNP CC NNP MD VB TO NNP , RB IN CD NNS RB IN NNP , IN DT JJ NNS .\nA series of major construction projects in the area already has begun , with office buildings , bunkers , hospitals , underground tunnels and military airstrips reportedly nearing completion .\tDT NN IN JJ NN NNS IN DT NN RB VBZ VBN , IN NN NNS , NNS , NNS , JJ NNS CC JJ NNS RB VBG NN .\nPyinmana , in central Burma , was the military headquarters of Burma 's resistance movement against occupying Japanese forces during World War II , and the rugged area also served as a hideout for Communist insurgents .\tNNP , IN JJ NNP , VBD DT JJ NN IN NNP POS NN NN IN VBG JJ NNS IN NNP NNP NNP , CC DT JJ NN RB VBD IN DT NN IN JJ NNS .\nSome analysts say the ruling generals fear an Iraq-style invasion by the United States and want a defensible fallback position .\tDT NNS VBP DT NN NNS VBP DT JJ NN IN DT NNP NNPS CC VBP DT JJ NN NN .\nThe head of the United Nations mission in Kosovo is in Belgrade for two days of talks with top Serbian officials .\tDT NN IN DT NNP NNPS NN IN NNP VBZ IN NNP IN CD NNS IN NNS IN JJ JJ NNS .\nU.N. representative Soren Jessen-Petersen met Sunday with Serbia-Montenegro 's Foreign Minister Vuk Draskovic .\tNNP NN NNP NNP VBD NNP IN NNP POS NNP NNP NNP NNP .\nA statement later issued by Mr. Draskovic 's office said that he had demanded protection for the province 's Serb minority .\tDT NN RB VBN IN NNP NNP POS NN VBD IN PRP VBD VBN NN IN DT NN POS JJ NN .\nOn Monday , Mr. Jessen-Petersen is scheduled to meet with Serbian President Boris Tadic and Prime Minister Vojislav Kostunica .\tIN NNP , NNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP CC NNP NNP NNP NNP .\nTalks on the province 's future between Kosovo 's ethnic Albanian-led government and Serbian leaders are due to begin later this year .\tNNS IN DT NN POS NN IN NNP POS JJ JJ NN CC JJ NNS VBP JJ TO VB RB DT NN .\nKosovo 's ethnic Albanian majority wants independence , while its Serb minority wants the province to remain part of Serbia .\tNNP POS JJ JJ NN VBZ NN , IN PRP$ JJ NN VBZ DT NN TO VB NN IN NNP .\nThe U.N. has been administering the area since 1999 .\tDT NNP VBZ VBN VBG DT NN IN CD .\nFormer Pakistani Prime Minister Nawaz Sharif is calling on the U.S. to abandon ties to President Pervez Musharraf .\tJJ JJ NNP NNP NNP NNP VBZ VBG IN DT NNP TO VB NNS TO NNP NNP NNP .\nDuring an appearance on Voice of America , Mr. Sharif said Pakistan was going through a major security and political crisis and that President Musharraf should be excluded from the national government .\tIN DT NN IN NNP IN NNP , NNP NNP VBD NNP VBD VBG IN DT JJ NN CC JJ NN CC IN NNP NNP MD VB VBN IN DT JJ NN .\nMr. Sharif also said the government has done nothing to improve security after the December 27 assassination of former prime minister Benazir Bhutto .\tNNP NNP RB VBD DT NN VBZ VBN DT TO VB NN IN DT NNP CD NN IN JJ JJ NN NNP NNP .\nHe criticized his own security detail , saying he had not been given a bullet and bomb-proof vehicle .\tPRP VBD PRP$ JJ NN NN , VBG PRP VBD RB VBN VBN DT NN CC JJ NN .\nMr. Sharif has accused President Musharraf of ordering anti-terror operations that have left the country ' drowned in blood . '\tNNP NNP VBZ VBN NNP NNP IN VBG JJ NNS WDT VBP VBN DT NN `` VBN IN NN . ``\nThe former Pakistani prime minister has been campaigning for his Pakistan Muslim League-Nawaz party ahead of the February 18 parliamentary elections .\tDT JJ JJ JJ NN VBZ VBN VBG IN PRP$ NNP NNP NNP NN RB IN DT NNP CD JJ NNS .\nMr. Sharif has been barred from running .\tNNP NNP VBZ VBN VBN IN VBG .\nHe was deposed by President Musharraf in coup in 1999 .\tPRP VBD VBN IN NNP NNP IN NN IN CD .\nAfghan police say Taliban militants attacked a police patrol in southern Helmand province overnight Saturday , killing four officers and wounding seven others .\tJJ NNS VBP NNP NNS VBD DT NN NN IN JJ NNP NN JJ NNP , VBG CD NNS CC VBG CD NNS .\nThe local police commander , Khair Mohammad Shuja , said the attack took place in the Gereshk district and that his forces detained wounded Taliban at the scene early Sunday .\tDT JJ NN NN , NNP NNP NNP , VBD DT NN VBD NN IN DT NNP NN CC IN PRP$ NNS VBD VBN NNP IN DT NN JJ NNP .\nNews reports say two additional attacks took place in Afghanistan Sunday resulting in more police and civilian deaths but details are still emerging about those incidents .\tNNP NNS VBP CD JJ NNS VBD NN IN NNP NNP VBG IN JJR NN CC JJ NNS CC NNS VBP RB VBG IN DT NNS .\nMauritania has extradited to Mali a Malian national convicted of kidnapping three Spanish aid workers last year .\tNNP VBZ VBN IN NNP DT JJ NN VBN IN VBG CD JJ NN NNS JJ NN .\nMauritanian authorities say Omar Sid-Ahmed Ould Hamma was extradited late Monday .\tJJ NNS VBP NNP NNP NNP NNP VBD VBN JJ NNP .\nNo further details were released .\tDT JJ NNS VBD VBN .\nOuld Hamma was sentenced in July to 12 years in prison for organizing the kidnapping of the aid workers and for handing them over to an al-Qaida-linked group in the region , al-Qaida in the Islamic Maghreb .\tNNP NNP VBD VBN IN NNP TO CD NNS IN NN IN VBG DT NN IN DT NN NNS CC IN VBG PRP RP TO DT JJ NN IN DT NN , NNP IN DT NNP NNP .\nThe three Spanish aid workers were seized last November on a road that links the Mauritanian capital , Nouakchott , with the city of Nouadhibou to the north .\tDT CD JJ NN NNS VBD VBN JJ NNP IN DT NN WDT VBZ DT JJ NN , NNP , IN DT NN IN NNP TO DT NN .\nOne of the captives was released in March , but the other two are still being held in an unknown location in the vast Sahara desert .\tCD IN DT NNS VBD VBN IN NNP , CC DT JJ CD VBP RB VBG VBN IN DT JJ NN IN DT JJ NNP NN .\nThe region stretches through Mauritania , Mali , Algeria and Niger , all countries struggling to contain Islamist militant groups .\tDT NN VBZ IN NNP , NNP , NNP CC NNP , DT NNS VBG TO VB JJ JJ NNS .\nN.V. DSM said net income in the third quarter jumped 63 % as the company had substantially lower extraordinary charges to account for a restructuring program .\tNN NNP VBD JJ NN IN DT JJ NN VBD CD NN IN DT NN VBD RB JJR JJ NNS TO VB IN DT NN NN .\nThe Dutch chemical group said net income gained to 235 million guilders ( $ 113.2 million ) , or 6.7 guilders a share , from 144 million guilders , or 4.1 guilders a share , a year ago .\tDT JJ NN NN VBD JJ NN VBD TO CD CD NNS LRB $ CD CD RRB , CC CD NNS DT NN , IN CD CD NNS , CC CD NNS DT NN , DT NN RB .\nThe 32 % state-owned DSM had eight million guilders of extraordinary charges in the latest quarter , mainly to reflect one-time losses in connection with the disposal of some operations .\tDT CD NN JJ NNP VBD CD CD NNS IN JJ NNS IN DT JJS NN , RB TO VB JJ NNS IN NN IN DT NN IN DT NNS .\nThe charges were offset in part by a gain from the sale of the company 's construction division .\tDT NNS VBD VBN IN NN IN DT NN IN DT NN IN DT NN POS NN NN .\nLast year , DSM had 71 million guilders of extraordinary charges for the restructuring program and other transactions .\tJJ NN , NNP VBD CD CD NNS IN JJ NNS IN DT NN NN CC JJ NNS .\nThe earnings growth also was fueled by the company 's ability to cut net financing spending by half to around 15 million guilders .\tDT NNS NN RB VBD VBN IN DT NN POS NN TO VB JJ NN NN IN NN TO IN CD CD NNS .\nAlso , substantially lower Dutch corporate tax rates helped the company keep its tax outlay flat relative to earnings growth , the company added .\tRB , RB JJR JJ JJ NN NNS VBD DT NN VB PRP$ NN NN JJ NN TO NNS NN , DT NN VBD .\nSales , however , were little changed at 2.46 billion guilders , compared with 2.42 billion guilders .\tNNS , RB , VBD RB JJ IN CD CD NNS , VBN IN CD CD NNS .\nThe economy of Saint Barthelemy is based upon high-end tourism and duty-free luxury commerce , serving visitors primarily from North America .\tDT NN IN NNP NNP VBZ VBN IN JJ NN CC JJ NN NN , VBG NNS RB IN NNP NNP .\nThe luxury hotels and villas host 70,000 visitors each year with another 1,30,000 arriving by boat .\tDT NN NNS CC NNS VBP CD NNS DT NN IN DT CD NN IN NN .\nThe relative isolation and high cost of living inhibits mass tourism .\tDT JJ NN CC JJ NN IN VBG NNS JJ NN .\nThe construction and public sectors also enjoy significant investment in support of tourism .\tDT NN CC JJ NNS RB VBP JJ NN IN NN IN NN .\nWith limited fresh water resources , all food must be imported , as must all energy resources and most manufactured goods .\tIN JJ JJ NN NNS , DT NN MD VB VBN , IN MD DT NN NNS CC RBS JJ NNS .\nEmployment is strong and attracts labor from Brazil and Portugal .\tNN VBZ JJ CC VBZ NN IN NNP CC NNP .\nUntil recently , only two autocratic presidents had ruled Gabon since its independence from France in 1960 .\tIN RB , RB CD JJ NNS VBD VBN NNP IN PRP$ NN IN NNP IN CD .\nThe recent president of Gabon , El Hadj Omar BONGO Ondimba - one of the longest-serving heads of state in the world - had dominated the country 's political scene for four decades .\tDT JJ NN IN NNP , NNP NNP NNP NNP NNP IN CD IN DT JJ NNS IN NN IN DT NN : VBD VBN DT NN POS JJ NN IN CD NNS .\nPresident BONGO introduced a nominal multiparty system and a new constitution in the early 1990s .\tNNP NNP VBD DT JJ NN NN CC DT JJ NN IN DT JJ NNS .\nHowever , allegations of electoral fraud during local elections in 2002 - 3 and the presidential elections in 2005 exposed the weaknesses of formal political structures in Gabon .\tRB , NNS IN JJ NN IN JJ NNS IN CD IN CD CC DT JJ NNS IN CD VBD DT NNS IN JJ JJ NNS IN NNP .\nPresident BONGO died in June 2009 .\tNNP NNP VBD IN NNP CD .\nNew elections in August 2009 brought Ali Ben BONGO , son of the former president , to power .\tJJ NNS IN NNP CD VBD NNP NNP NNP , NN IN DT JJ NN , TO NN .\nDespite political conditions , a small population , abundant natural resources , and considerable foreign support have helped make Gabon one of the more prosperous and stable African countries .\tIN JJ NNS , DT JJ NN , JJ JJ NNS , CC JJ JJ NN VBP VBN VB NNP CD IN DT JJR JJ CC JJ JJ NNS .\nIn January 2010 , Gabon assumed a nonpermanent seat on the UN Security Council for the 2010 - 11 term .\tIN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD IN CD NN .\nThe third smallest state in Europe ( after the Holy See and Monaco ) , San Marino also claims to be the world 's oldest republic .\tDT JJ JJS NN IN NNP LRB IN DT NNP NNP CC NNP RRB , NNP NNP RB VBZ TO VB DT NN POS JJS NN .\nAccording to tradition , it was founded by a Christian stonemason named Marinus in A.D. 301 .\tVBG TO NN , PRP VBD VBN IN DT JJ NN VBN NNP IN NNP CD .\nSan Marino 's foreign policy is aligned with that of the European Union , although it is not a member ; social and political trends in the republic track closely with those of its larger neighbor , Italy .\tNNP NNP POS JJ NN VBZ VBN IN DT IN DT NNP NNP , IN PRP VBZ RB DT NN ; JJ CC JJ NNS IN DT NN NN RB IN DT IN PRP$ JJR NN , NNP .\nAlmost five centuries as a Portuguese colony came to a close with independence in 1975 .\tRB CD NNS IN DT JJ NN VBD TO DT NN IN NN IN CD .\nLarge-scale emigration , economic dependence on South Africa , a severe drought , and a prolonged civil war hindered the country 's development until the mid 1990s .\tJJ NN , JJ NN IN NNP NNP , DT JJ NN , CC DT JJ JJ NN VBD DT NN POS NN IN DT JJ NNS .\nThe ruling Front for the Liberation of Mozambique ( Frelimo ) party formally abandoned Marxism in 1989 , and a new constitution the following year provided for multiparty elections and a free market economy .\tDT NN NN IN DT NN IN NNP LRB NNP RRB NN RB VBD NNP IN CD , CC DT JJ NN DT JJ NN VBN IN JJ NNS CC DT JJ NN NN .\nA UN-negotiated peace agreement between Frelimo and rebel Mozambique National Resistance ( Renamo ) forces ended the fighting in 1992 .\tDT JJ NN NN IN NNP CC JJ NNP NNP NNP LRB NNP RRB NNS VBD DT NN IN CD .\nIn December 2004 , Mozambique underwent a delicate transition as Joaquim CHISSANO stepped down after 18 years in office .\tIN NNP CD , NNP VBD DT JJ NN IN NNP NNP VBD RP IN CD NNS IN NN .\nHis elected successor , Armando Emilio GUEBUZA , promised to continue the sound economic policies that have encouraged foreign investment .\tPRP$ VBN NN , NNP NNP NNP , VBD TO VB DT JJ JJ NNS WDT VBP VBN JJ NN .\nPresident GUEBUZA was reelected to a second term in October 2009 .\tNNP NNP VBD VBN TO DT JJ NN IN NNP CD .\nHowever , the elections were flawed by voter fraud , questionable disqualification of candidates , and Frelimo use of government resources during the campaign .\tRB , DT NNS VBD VBN IN NN NN , JJ NN IN NNS , CC NNP NN IN NN NNS IN DT NN .\nAs a result , Freedom House removed Mozambique from its list of electoral democracies .\tIN DT NN , NNP NNP VBD NNP IN PRP$ NN IN JJ NNS .\nEcuador is substantially dependent on its petroleum resources , which have accounted for more than half of the country 's export earnings and approximately one-third of public sector revenues in recent years .\tNNP VBZ RB JJ IN PRP$ NN NNS , WDT VBP VBN IN JJR IN NN IN DT NN POS NN NNS CC RB NN IN JJ NN NNS IN JJ NNS .\nIn 1999 / 2000 , Ecuador suffered a severe economic crisis , with GDP contracting by 5.3 % .\tIN CD NN CD , NNP VBD DT JJ JJ NN , IN NN NN IN CD NN .\nPoverty increased significantly , the banking system collapsed , and Ecuador defaulted on its external debt .\tNN VBD RB , DT NN NN VBD , CC NNP VBD IN PRP$ JJ NN .\nIn March 2000 , the Congress approved a series of structural reforms that also provided for the adoption of the US dollar as legal tender .\tIN NNP CD , DT NNP VBD DT NN IN JJ NNS WDT RB VBD IN DT NN IN DT NNP NN IN JJ NN .\nDollarization stabilized the economy , and positive growth returned in the years that followed , helped by high oil prices , remittances , and increased non-traditional exports .\tNN VBD DT NN , CC JJ NN VBD IN DT NNS WDT VBD , VBN IN JJ NN NNS , NNS , CC JJ JJ NNS .\nFrom 2002 - 6 the economy grew an average of 5.2 % per year , the highest five-year average in 25 years .\tIN CD : CD DT NN VBD DT NN IN CD NN IN NN , DT JJS JJ NN IN CD NNS .\nAfter moderate growth in 2007 , the economy reached a growth rate of 7.2 % in 2008 , in large part due to high global petroleum prices and increased public sector investment .\tIN JJ NN IN CD , DT NN VBD DT NN NN IN CD NN IN CD , IN JJ NN JJ TO JJ JJ NN NNS CC JJ JJ NN NN .\nPresident Rafael CORREA , who took office in January 2007 , defaulted in December 2008 on Ecuador 's sovereign debt , which , with a total face value of approximately US $ 3.2 billion , represented about 80 % of Ecuador 's private external debt .\tNNP NNP NNP , WP VBD NN IN NNP CD , VBN IN NNP CD IN NNP POS JJ NN , WDT , IN DT JJ NN NN IN RB NNP $ CD CD , VBD IN CD NN IN NNP POS JJ JJ NN .\nIn May 2009 , Ecuador bought back 91 % of its ' defaulted ' bonds via an international auction .\tIN NNP CD , NNP VBD RB CD NN IN PRP$ `` JJ `` NNS IN DT JJ NN .\nEconomic policies under the CORREA administration - including an announcement in late 2009 of its intention to terminate 13 bilateral investment treaties , including one with the United States - have generated economic uncertainty and discouraged private investment .\tJJ NNS IN DT NNP NN : VBG DT NN IN JJ CD IN PRP$ NN TO VB CD JJ NN NNS , VBG CD IN DT NNP NNPS : VBP VBN JJ NN CC JJ JJ NN .\nThe Ecuadorian economy contracted 0.4 % in 2009 due to the global financial crisis and to the sharp decline in world oil prices and remittance flows .\tDT JJ NN VBD CD NN IN CD JJ TO DT JJ JJ NN CC TO DT JJ NN IN NN NN NNS CC NN NNS .\nGrowth picked up to a 3.7 % rate in 2010 , according to Ecuadorian government estimates .\tNN VBD RP TO DT CD NN NN IN CD , VBG TO JJ NN NNS .\nOne time I had to go to a funeral at 6 AM .\tCD NN PRP VBD TO VB TO DT NN IN CD NNP .\nI should n't have been there .\tPRP MD RB VB VBN RB .\nI 'm not a mourning person .\tPRP VBP RB DT VBG NN .\nThe United Nations ' food agency says the battle to contain the lethal form of avian flu in Indonesia is failing .\tDT NNP NNPS POS NN NN VBZ DT NN TO VB DT JJ NN IN JJ NN IN NNP VBZ VBG .\nJoseph Domenech , the head of the U.N. 's Food and Agricultural Organization , says the East Asian archipelago is facing ' an uphill battle ' trying to control the H5N1 form of the virus .\tNNP NNP , DT NN IN DT NNP POS NNP CC NNP NNP , VBZ DT NNP NNP NN VBZ VBG `` DT JJ NN `` VBG TO VB DT NNP NN IN DT NN .\nDomenech says he is concerned that the high levels of infected birds in Indonesia could help the virus mutate into a form that could be passed among humans , triggering a worldwide pandemic that could kill millions .\tNNP VBZ PRP VBZ VBN IN DT JJ NNS IN JJ NNS IN NNP MD VB DT NN NN IN DT NN WDT MD VB VBN IN NNS , VBG DT JJ NN WDT MD VB NNS .\nThe H5N1 form of avian flu has killed nearly 240 people across Asia since it was first detected in 2003 , including 105 in Indonesia .\tDT NNP NN IN JJ NN VBZ VBN RB CD NNS IN NNP IN PRP VBD RB VBN IN CD , VBG CD IN NNP .\nDomenech says major financial and human resources , stronger political commitment and better coordination between all levels of government in Indonesia are needed to fight the virus .\tNNP VBZ JJ JJ CC JJ NNS , JJR JJ NN CC JJR NN IN DT NNS IN NN IN NNP VBP VBN TO VB DT NN .\nFrench aviation authorities say they have banned Cameroon Airlines flights from France because of safety concerns .\tJJ NN NNS VBP PRP VBP VBN NNP NNPS NNS IN NNP IN IN NN NNS .\nThe civil aviation authority said in a statement Friday that Cameroon Airlines was not respecting international standards for safety .\tDT JJ NN NN VBD IN DT NN NNP IN NNP NNPS VBD RB VBG JJ NNS IN NN .\nThe statement said the concerns were notably in the areas of loading , transport of dangerous materials , navigation documentation and tire maintenance .\tDT NN VBD DT NNS VBD RB IN DT NNS IN NN , NN IN JJ NNS , NN NN CC NN NN .\nThe statement said French and Cameroonian authorities agreed on a plan of action earlier this year to correct the situation , but new tests carried out in July and August still showed persistent problems .\tDT NN VBD JJ CC JJ NNS VBD IN DT NN IN NN RBR DT NN TO VB DT NN , CC JJ NNS VBN RP IN NNP CC NNP RB VBD JJ NNS .\nEarlier this month , France banned six African , Caribbean , and Asian airlines from its airspace for safety reasons , following a string of recent aviation accidents .\tRBR DT NN , NNP VBD CD NNP , NNP , CC JJ NNS IN PRP$ NN IN NN NNS , VBG DT NN IN JJ NN NNS .\nBrad Delp was found dead March 9 , at his home in the northeastern state of New Hampshire .\tNNP NNP VBD VBN JJ NNP CD , IN PRP$ NN IN DT JJ NN IN NNP NNP .\nThe 55-year-old musician , who sang for the popular rock act Boston , was apparently alone at the time of his death .\tDT JJ NN , WP VBD IN DT JJ NN NN NNP , VBD RB RB IN DT NN IN PRP$ NN .\nA police investigation is ongoing .\tDT NN NN VBZ JJ .\nFormed in the early 1970s , Boston remains a staple on U.S. classic rock radio playlists .\tVBN IN DT JJ NNS , NNP VBZ DT NN IN NNP JJ NN NN NNS .\nThe band was reportedly planning a mid-year tour .\tDT NN VBD RB VBG DT JJ NN .\nKenya 's President Mwai Kibaki has announced the resignation of two senior cabinet members implicated in corruption scandals .\tNNP POS NNP NNP NNP VBZ VBN DT NN IN CD JJ NN NNS VBN IN NN NNS .\nSpeaking on state television today , Mr. Kibaki said his energy minister and education minister have stepped down so investigations into the scandals can proceed .\tVBG IN NN NN NN , NNP NNP VBD PRP$ NN NN CC NN NN VBP VBN RP RB NNS IN DT NNS MD VB .\nThe Kibaki government has been shaken by accusations of multi-million dollar graft against several top officials , including Vice President Moody Awori .\tDT NNP NN VBZ VBN VBN IN NNS IN JJ NN NN IN JJ JJ NNS , VBG NNP NNP NNP NNP .\nThe allegations led former finance minister David Mwiraria to resign last month .\tDT NNS VBD JJ NN NN NNP NNP TO VB JJ NN .\nThe accused officials have denied any wrongdoing .\tDT VBN NNS VBP VBN DT NN .\nThe Kibaki government took power in 2002 pledging to stamp out corruption , which was prevalent under previous Kenyan governments .\tDT NNP NN VBD NN IN CD VBG TO VB RP NN , WDT VBD JJ IN JJ JJ NNS .\nIraqi police say an Italian journalist , a reporter for the Italian newspaper Il Manifesto , has been kidnapped in Baghdad .\tJJ NNS VBP DT JJ NN , DT NN IN DT JJ NN NNP NNP , VBZ VBN VBN IN NNP .\nUnknown gunmen abducted Giuliana Sgrena Friday as she was conducting an interview near Baghdad University .\tJJ NNS VBD NNP NNP NNP IN PRP VBD VBG DT NN IN NNP NNP .\nSeveral Italians have been kidnapped in Iraq over the past 18 months .\tJJ NNS VBP VBN VBN IN NNP IN DT JJ CD NNS .\nTwo Italian aid workers were abducted in Baghdad last September and threatened with death before being released unharmed several weeks later .\tCD JJ NN NNS VBD VBN IN NNP JJ NNP CC VBN IN NN IN VBG VBN JJ JJ NNS RB .\nAnother Italian journalist was snatched in August and was killed after Rome refused to yield to the kidnappers ' demand that Italy withdraw its nearly 3,000 troops from Iraq .\tDT JJ NN VBD VBN IN NNP CC VBD VBN IN NNP VBD TO VB TO DT NNS POS NN IN NNP VB PRP$ RB CD NNS IN NNP .\nIndonesian President Susilo Bambang Yudhoyono says his country plans to build a hospital for Palestinians in Gaza Strip .\tJJ NNP NNP NNP NNP VBZ PRP$ NN VBZ TO VB DT NN IN NNS IN NNP NNP .\nMr. Yudhoyono made the pledge during a meeting Saturday with visiting Palestinian President Mahmoud Abbas .\tNNP NNP VBD DT NN IN DT NN NNP IN VBG JJ NNP NNP NNP .\nHe said Indonesia will contribute more than $ 2 million to fund the project .\tPRP VBD NNP MD VB JJR IN $ CD CD TO VB DT NN .\nSpeaking to reporters in Jakarta after the meeting , he also said Indonesia is ready to play a role in the Middle East peace process .\tVBG TO NNS IN NNP IN DT NN , PRP RB VBD NNP VBZ JJ TO VB DT NN IN DT NNP NNP NN NN .\nMr. Abbas said he had asked President Yudhoyono to support of his efforts to end Israel 's siege of Gaza .\tNNP NNP VBD PRP VBD VBN NNP NNP TO VB IN PRP$ NNS TO VB NNP POS NN IN NNP .\nIsrael has blockaded the Palestinian territory for three years , after the militant group Hamas seized power from the moderate government .\tNNP VBZ VBN DT JJ NN IN CD NNS , IN DT JJ NN NNP VBD NN IN DT JJ NN .\nIndonesia is the world 's most populous Muslim nation .\tNNP VBZ DT NN POS RBS JJ NN NN .\nIt has long supported the Palestinian cause and does not have diplomatic relations with Israel .\tPRP VBZ RB VBN DT JJ NN CC VBZ RB VB JJ NNS IN NNP .\nPresident Abbas is on an Asian tour that will also take him to Vietnam and Malaysia .\tNNP NNP VBZ IN DT JJ NN WDT MD RB VB PRP TO NNP CC NNP .\nJapan and South Korea have announced plans to create tens of thousands of new jobs aimed at boosting the economy while protecting the environment .\tNNP CC NNP NNP VBP VBN NNS TO VB NNS IN NNS IN JJ NNS VBN IN VBG DT NN IN VBG DT NN .\nThe Japanese environment ministry says it is preparing a so-called ' Green New Deal Plan ' to create at least one million new jobs in energy-saving and other environment-friendly technologies .\tDT JJ NN NN VBZ PRP VBZ VBG DT JJ `` NNP NNP NNP NNP `` TO VB IN JJS CD CD JJ NNS IN JJ CC JJ JJ NNS .\nThe plan could include incentives to encourage the production and purchase of electric cars and energy-efficient household electronics .\tDT NN MD VB NNS TO VB DT NN CC NN IN JJ NNS CC JJ NN NNS .\nSouth Korea 's government Tuesday also unveiled a so-called Green New Job Creation Plan , expected to create 9,60,000 new jobs .\tNNP NNP POS NN NNP RB VBD DT JJ NNP NNP NNP NNP NNP , VBD TO VB CD JJ NNS .\nAbout 1,40,000 new jobs are targeted for this year .\tIN CD JJ NNS VBP VBN IN DT NN .\nOfficials say they will invest about $ 38 billion in the next few years to clean-up the country 's four main rivers , maintain forests , develop cleaner transportation and conserve energy .\tNNS VBP PRP MD VB IN $ CD CD IN DT JJ JJ NNS TO VB DT NN POS CD JJ NNS , VBP NNS , VB JJR NN CC NN NN .\nA new report by the United Nations Children 's Fund ( UNICEF ) says millions of children in Eastern Europe and Central Asia still live in poverty , despite economic progress across the regions .\tDT JJ NN IN DT NNP NNP NNP POS NNP LRB NNP RRB VBZ NNS IN NNS IN NNP NNP CC NNP NNP RB VBP IN NN , IN JJ NN IN DT NNS .\nUNICEF says its findings indicate economic growth alone does not necessarily improve the lives of children .\tNNP VBZ PRP$ NNS VBP JJ NN RB VBZ RB RB VB DT NNS IN NNS .\nAt Wednesday 's unveiling of the report in Moscow , UNICEF director Carol Bellamy said poverty leads to poor nutrition and sick children , as well as young people not being able to attend school .\tIN NNP POS NN IN DT NN IN NNP , NNP NN NNP NNP VBD NN VBZ TO JJ NN CC JJ NNS , RB RB IN JJ NNS RB VBG JJ TO VB NN .\nShe said , at worst , it also ' means violence and desperation , with more children in institutions , ' plus ' soaring drug and alcohol abuse among the young . '\tPRP VBD , IN JJS , PRP RB `` VBZ NN CC NN , IN JJR NNS IN NNS , `` CC `` VBG NN CC NN NN IN DT JJ . ``\nThe report laments that economic growth in the regions has rarely been accompanied by initiatives to tackle serious problems affecting children .\tDT NN VBZ IN JJ NN IN DT NNS VBZ RB VBN VBN IN NNS TO VB JJ NNS VBG NNS .\nChinese state media say a fire in a popular restaurant in the northeastern province of Liaoning has killed 11 people and injured 16 others .\tJJ NN NNS VBP DT NN IN DT JJ NN IN DT JJ NN IN NNP VBZ VBN CD NNS CC VBN CD NNS .\nThe official Xinhua news agency reports Sunday that the fire broke out in the kitchen and fully engulfed the Baixinglou restaurant in the city of Chaoyang Saturday evening .\tDT JJ NNP NN NN VBZ NNP IN DT NN VBD RP IN DT NN CC RB VBD DT NNP NN IN DT NN IN NNP NNP NN .\nFirefighters put out the blaze after battling the flames for more than hour .\tNNS VBD RP DT NN IN VBG DT NNS IN JJR IN NN .\nXinhua says the victims included diners and waiters at the restaurant .\tNNP VBZ DT NNS VBD NNS CC NNS IN DT NN .\nThey are hospitalized and are reported in stable condition .\tPRP VBP VBN CC VBP VBN IN JJ NN .\nThe news agency says initial investigations show improper use of a stove sparked the fire .\tDT NN NN VBZ JJ NNS VBP JJ NN IN DT NN VBD DT NN .\nIndia 's trade minister says rich countries must be flexible if negotiations on a new global trade treaty are to be revived .\tNNP POS NN NN VBZ JJ NNS MD VB JJ IN NNS IN DT JJ JJ NN NN VBP TO VB VBN .\nCommerce and Industry Minister Kamal Nath says he has been speaking with trade ministers of several other countries in an effort to revive the talks .\tNNP CC NNP NNP NNP NNP VBZ PRP VBZ VBN VBG IN NN NNS IN JJ JJ NNS IN DT NN TO VB DT NNS .\nTrade ministers from the United States , the European Union , Japan , Australia , India and Brazil halted the talks last month because of differences over farm subsidies .\tNNP NNS IN DT NNP NNPS , DT NNP NNP , NNP , NNP , NNP CC NNP VBD DT NNS JJ NN IN IN NNS IN NN NNS .\nThe World Trade Organization or WTO organized the talks .\tDT NNP NNP NNP CC NNP VBD DT NNS .\nNath says the talks collapsed because the United States and EU sought to backtrack on their commitments to reduce agricultural subsidies and tariffs in coming years to help poor countries .\tNNP VBZ DT NNS VBD IN DT NNP NNPS CC NNP VBD TO VB IN PRP$ NNS TO VB JJ NNS CC NNS IN VBG NNS TO VB JJ NNS .\nHe said the rich countries want greater market access for their exports before helping poorer nations .\tPRP VBD DT JJ NNS VBP JJR NN NN IN PRP$ NNS IN VBG JJR NNS .\nHe said that WTO talks could go no where until that mind-set changed .\tPRP VBD IN NNP NNS MD VB DT WRB IN DT NN VBD .\nChristians on a rampage in southern Nigeria have burned two mosques in retaliation for Muslim protests last weekend in which dozens of people , many of them Christian , died .\tNNS IN DT NN IN JJ NNP VBP VBN CD NNS IN NN IN NNP NNS JJ NN IN WDT NNS IN NNS , NN IN PRP JJ , VBD .\nToday 's riots took place in Onitsha , the capital of the mostly Christian state of Anambra .\tNN POS NNS VBD NN IN NNP , DT NN IN DT RB JJ NN IN NNP .\nAt least one person has died .\tIN JJS CD NN VBZ VBN .\nAn Anambra police spokesman told the French news agency that a scuffle broke out between Hausas , who are Muslim , and Ibos , ethnic Christians from the south .\tDT NNP NN NN VBD DT JJ NN NN IN DT NN VBD RP IN NNS , WP VBP NNP , CC NNS , JJ NNS IN DT NN .\nChristian rioters then set the mosques on fire .\tNNP NNS RB VBD DT NNS IN NN .\nThe spokesman said order has been restored .\tDT NN VBD NN VBZ VBN VBN .\nMuslim protests last weekend in northern Nigeria were the deadliest yet since cartoons of the Prophet Muhammad appeared in a Danish newspaper last year .\tNNP VBZ JJ NN IN JJ NNP VBD DT JJS RB IN NNS IN DT NNP NNP VBD IN DT JJ NN JJ NN .\nRioters attacked Christians and burned down churches .\tNNS VBD NNS CC VBD RP NNS .\nNigeria is mostly Muslim in the North and Christian in the south .\tNNP VBZ RB NN IN DT NNP CC NNP IN DT NN .\nSectarian violence in one part of the country frequently sparks reprisals elsewhere .\tJJ NN IN CD NN IN DT NN RB VBZ NNS RB .\nU.S. military spokesmen say four American soldiers have been wounded by an insurgent 's roadside bomb that hit their armored vehicle in northeastern Afghanistan .\tNNP JJ NNS VBP CD JJ NNS VBP VBN VBN IN DT NN POS NN NN WDT VBD PRP$ JJ NN IN JJ NNP .\nThe troops were attacked as they returned from defusing another bomb near Asadabad town , in Kunar province .\tDT NNS VBD VBN IN PRP VBD IN VBG DT NN IN NNP NN , IN NNP NN .\nA military statement says the wounded were evacuated to Bagram Air Base , north of Kabul , where they are in stable condition .\tDT JJ NN VBZ DT VBN VBD VBN TO NNP NNP NNP , NN IN NNP , WRB PRP VBP IN JJ NN .\nThe statement also says U.S. and Afghan troops have begun a search ' to kill or capture those responsible . '\tDT NN RB VBZ NNP CC JJ NNS VBP VBN DT NN `` TO VB CC VB DT JJ . ``\nSimilar attacks in the past have been blamed on the Taleban , which was ousted by a U.S.-led invasion four years ago .\tJJ NNS IN DT NN VBP VBN VBN IN DT NNP , WDT VBD VBN IN DT JJ NN CD NNS RB .\nU.S. Secretary of State Condoleezza Rice says great democracies have an obligation to respect the rule of law .\tNNP NNP IN NNP NNP NNP VBZ JJ NNS VBP DT NN TO VB DT NN IN NN .\nShe also told reporters Thursday in Brussels that if allegations of human rights abuses by U.S. personnel are reported , they will be investigated and punished .\tPRP RB VBD NNS NNP IN NNP IN IN NNS IN JJ NNS NNS IN NNP NNS VBP VBN , PRP MD VB VBN CC VBN .\nMs. Rice discussed U.S. policy on detainees with NATO officials on Wednesday .\tNNP NNP VBD NNP NN IN NNS IN NNP NNS IN NNP .\nAfterward , NATO Secretary-General Jaap De Hoop Scheffer said Ms. Rice had cleared the air about Washington 's views on secret prisons and the treatment of terrorist suspects overseas .\tRB , NNP NNP NNP NNP NNP NNP VBD NNP NNP VBD VBN DT NN IN NNP POS NNS IN JJ NNS CC DT NN IN JJ NNS RB .\nHe did not elaborate .\tPRP VBD RB VB .\nMs. Rice 's four-nation European tour has been overshadowed by reports that the CIA has used European airports to fly terror suspects to secret prisons in eastern Europe .\tNNP NNP POS JJ JJ NN VBZ VBN VBN IN NNS IN DT NNP VBZ VBN JJ NNS TO VB NN NNS TO JJ NNS IN JJ NNP .\nShe has not confirmed or denied the existence of the prisons , but on Wednesday she said the United Nations Convention Against Torture applies to U.S. personnel both at home and abroad .\tPRP VBZ RB VBN CC VBN DT NN IN DT NNS , CC IN NNP PRP VBD DT NNP NNP NNP NNP NNP VBZ TO NNP NNS DT IN NN CC RB .\nHundreds of truckers gathered in Washington DC on April 28 to protest the high cost of fuel .\tNNS IN NNS VBN IN NNP NNP IN NNP CD TO VB DT JJ NN IN NN .\nThe truckers say Washington lawmakers have been far too silent on an issue that has grave repercussions for the U.S. economy .\tDT NNS VBP NNP NNS VBP VBN RB RB JJ IN DT NN WDT VBZ JJ NNS IN DT NNP NN .\nThey called on Congress to stop subsidizing big oil companies and demanded a cap on the cost of fuel .\tPRP VBD IN NNP TO VB VBG JJ NN NNS CC VBD DT NN IN DT NN IN NN .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nA U.S.-based press watchdog group has sent a delegation to Venezuela to study allegations of repression against journalists in the country .\tDT JJ NN NN NN VBZ VBN DT NN TO NNP TO VB NNS IN NN IN NNS IN DT NN .\nMembers of the Inter American Press Association say they hoped to discuss the concerns with officials , but add Information Minister William Lara had refused to meet them .\tNNS IN DT NNP NNP NNP NNP VBP PRP VBD TO VB DT NNS IN NNS , CC VBP NNP NNP NNP NNP VBD VBN TO VB PRP .\nTuesday , the delegation visited the offices of Correo del Caroni newspaper , which local lawmakers had slated for demolition .\tNNP , DT NN VBD DT NNS IN NNP NNP NNP NN , WDT JJ NNS VBD VBN IN NN .\nIn a report last year , the group said press freedom is ' seriously threatened ' in Venezuela , and accused officials of persecuting opposition journalists .\tIN DT NN JJ NN , DT NN VBD NN NN VBZ `` RB VBN `` IN NNP , CC VBN NNS IN VBG NN NNS .\nIt also expressed concern about recent laws that restrict television and radio broadcasts .\tPRP RB VBD NN IN JJ NNS WDT VBP NN CC NN NNS .\nVenezuela 's government has defended the laws , saying they are intended to raise media standards and not limit free speech .\tNNP POS NN VBZ VBN DT NNS , VBG PRP VBP VBN TO VB NNS NNS CC RB VB JJ NN .\nAsia-Pacific Economic Cooperation leaders , meeting in Singapore , have called for more cooperation on global economic recovery efforts , and have warned against withdrawing economic stimulus measures too early .\tNNP NNP NNP NNS , VBG IN NNP , VBP VBN IN JJR NN IN JJ JJ NN NNS , CC VBP VBN IN VBG JJ NN NNS RB RB .\nRussian President Dmitri Medvedev Saturday called for broad international cooperation to overcome the global crisis and achieve sustainable growth .\tJJ NNP NNP NNP NNP VBD IN JJ JJ NN TO VB DT JJ NN CC VB JJ NN .\nAustralian Prime Minister Kevin Rudd proposed creating an Asia-Pacific Community , styled after the European Union .\tJJ NNP NNP NNP NNP VBD VBG DT NNP NNP , VBN IN DT NNP NNP .\nChinese President Hu Jintao said promoting openness in international trade and curbing protectionism would help revive the world economy .\tJJ NNP NNP NNP VBD VBG NN IN JJ NN CC VBG NN MD VB VB DT NN NN .\nMexican President Felipe Calderon singled out Washington for ' going in the opposite sense of free trade . '\tJJ NNP NNP NNP VBD RP NNP IN `` VBG IN DT JJ NN IN JJ NN . ``\nRussian President Dmitri Medvedev made the same point .\tJJ NNP NNP NNP VBD DT JJ NN .\nIn Tokyo earlier Saturday , U.S. President Barack Obama called on Asian countries to break their dependence on exports to the United States , and to pursue ' balanced ' and sustainable economic growth .\tIN NNP RBR NNP , NNP NNP NNP NNP VBD IN JJ NNS TO VB PRP$ NN IN NNS TO DT NNP NNPS , CC TO VB `` VBN `` CC JJ JJ NN .\nThe leader of Al-Qaida in Iraq has called on weapons experts to supply his fighters with biological weapons and dirty bombs .\tDT NN IN NNP IN NNP VBZ VBN IN NNS NNS TO VB PRP$ NNS IN JJ NNS CC NN NNS .\nIn an audio recording posted Thursday on the Internet , a man who identified himself as Abu Hamza al-Muhajer also urged militants in Iraq to kidnap Western Christians to swap for a Muslim cleric jailed for life in the U.S. Egyptian cleric Omar Abdel-Rahman was convicted of plotting to attack New York city landmarks , including the 1993 bombing of the World Trade Center .\tIN DT NN NN VBD NNP IN DT NNP , DT NN WP VBD PRP IN NNP NNP NNP RB VBD NNS IN NNP TO VB JJ NNS TO VB IN DT NNP NN VBN IN NN IN DT NNP JJ NN NNP NNP VBD VBN IN VBG TO VB NNP NNP NN NNS , VBG DT CD NN IN DT NNP NNP NNP .\nThe voice on the recording could not be independently verified .\tDT NN IN DT NN MD RB VB RB VBN .\nIn violence Thursday , more than 20 people were killed in Iraq .\tIN NN NNP , JJR IN CD NNS VBD VBN IN NNP .\nBombings and shootings in and around Baghdad targeted civilians , Iraqi soldiers and police .\tNNS CC NNS IN CC IN NNP VBD NNS , JJ NNS CC NNS .\nOfficials also reported finding 40 bodies showing signs of torture .\tNNS RB VBD VBG CD NNS VBG NNS IN NN .\nU.S. military intelligence officials warned that illegal militias are returning to Baghdad neighborhoods recently cleared by U.S. and Iraqi troops .\tNNP JJ NN NNS VBD IN JJ NNS VBP VBG TO NNP NNS RB VBN IN NNP CC JJ NNS .\nThe United Nations says U.N. and Congolese troops have launched an offensive against a militia group in the eastern Democratic Republic of Congo .\tDT NNP NNP VBZ NNP CC JJ NNS VBP VBN DT NN IN DT NN NN IN DT JJ JJ NNP IN NNP .\nThe U.N. peacekeeping force in Congo says one government soldier and at least six militia fighters have been killed in fighting this week in Ituri province .\tDT NNP NN NN IN NNP VBZ CD NN NN CC IN JJS CD NN NNS VBP VBN VBN IN VBG DT NN IN NNP NN .\nA spokesman for the force said at least 1,000 Congolese government troops are involved in the operation .\tDT NN IN DT NN VBD IN JJS CD JJ NN NNS VBP VBN IN DT NN .\nReuters news agency cites him as saying the militiamen are ethnic Lendu fighters who have refused to join the U.N.-backed disarmament process .\tNNP NN NN VBZ PRP IN VBG DT NNS VBP JJ NNP NNS WP VBP VBN TO VB DT JJ NN NN .\nSome 15,000 U.N. troops are in Congo trying to restore order after years of instability and war .\tDT CD NNP NNS VBP IN NNP VBG TO VB NN IN NNS IN NN CC NN .\nWednesday , the U.N. Security Council passed a resolution deploring that foreign armed groups continue to operate in the eastern DRC , and demanded that they immediately disarm .\tNNP , DT NNP NNP NNP VBD DT NN VBG IN JJ JJ NNS VBP TO VB IN DT JJ NNP , CC VBD IN PRP RB VBP .\nPalestinian witnesses say Israeli forces have shot and killed four Palestinians during a raid on a town in the northern West Bank .\tJJ NNS VBP JJ NNS VBP VBN CC VBN CD NNS IN DT NN IN DT NN IN DT JJ NNP NNP .\nWitnesses say Israeli troops killed two Palestinian gunmen during the raid Thursday , including a local leader of the al-Aqsa Martyrs Brigade .\tNNS VBP JJ NNS VBD CD JJ NNS IN DT NN NNP , VBG DT JJ NN IN DT NNP NNP NNP .\nThe militant group is linked to the Fatah faction of Palestinian President Mahmoud Abbas .\tDT JJ NN VBZ VBN TO DT NNP NN IN JJ NNP NNP NNP .\nIn fierce exchanges of fire , two unarmed Palestinians were also killed and at least 10 others wounded .\tIN JJ NNS IN NN , CD JJ NNS VBD RB VBN CC IN JJS CD NNS VBD .\nIn other news , Arab League foreign ministers met in Cairo Wednesday to discuss ways to revive the Middle East peace process .\tIN JJ NN , NNP NNP JJ NNS VBD IN NNP NNP TO VB NNS TO VB DT NNP NNP NN NN .\nBahrain 's foreign minister , Khalid bin Ahmed al-Khalifa , told the opening session that a new and effective mechanism from the United Nations Security Council is needed to re-launch the process .\tNNP POS JJ NN , NNP NNP NNP NNP , VBD DT NN NN IN DT JJ CC JJ NN IN DT NNP NNP NNP NNP VBZ VBN TO VB DT NN .\nFor most of the countries of the former Yugoslavia , the ride from armed conflict during the 1990s to the calmer waters of European integration has been stormy , with various degrees of success .\tIN JJS IN DT NNS IN DT JJ NNP , DT NN IN JJ NN IN DT NNS TO DT NN NNS IN JJ NN VBZ VBN JJ , IN JJ NNS IN NN .\nVOA 's Jela de Franceschi takes a closer look at progress made in transforming the Western Balkans into a region of economic and political stability .\tNNP POS NNP NNP NNP VBZ DT JJR NN IN NN VBN IN VBG DT JJ NNS IN DT NN IN JJ CC JJ NN .\nReports from China say a woman in southwestern Sichuan province has died of bird flu .\tNNS IN NNP VBP DT NN IN JJ NNP NN VBZ VBN IN NN NN .\nChina 's Health Ministry confirmed Monday that the 29-year-old woman was the seventh person to succumb to the deadly H5N1 form of the bird flu virus .\tNNP POS NNP NNP VBD NNP IN DT JJ NN VBD DT JJ NN TO VB TO DT JJ NNP NN IN DT NN NN NN .\nIndonesian health officials said Wednesday local tests have confirmed that a chicken seller in Jakarta has the deadly strain of the virus .\tJJ NN NNS VBD NNP JJ NNS VBP VBN IN DT NN NN IN NNP VBZ DT JJ NN IN DT NN .\nWorld Health Organization officials in Indonesia say they are focusing on the need to improve hygiene at markets to reduce exposure to the disease .\tNNP NNP NNP NNS IN NNP VBP PRP VBP VBG IN DT NN TO VB NN IN NNS TO VB NN TO DT NN .\nFriday , health workers from refugee camps and migrant communities on Burma 's border are to meet with local officials and donors in Thailand to prepare for possible bird flu outbreaks .\tNNP , NN NNS IN NN NNS CC JJ NNS IN NNP POS NN VBP TO VB IN JJ NNS CC NNS IN NNP TO VB IN JJ NN NN NNS .\nBird flu has killed at least 81 people in East Asia and Turkey since 2003 .\tNN NN VBZ VBN IN JJS CD NNS IN NNP NNP CC NNP IN CD .\nEuropean Union leaders are meeting at Britain 's Hampton Court Palace near London to consider policies that will help the grouping compete in the world economy and deal with challenges posed by globalization .\tNNP NNP NNS VBP VBG IN NNP POS NNP NNP NNP IN NNP TO VB NNS WDT MD VB DT NN VB IN DT NN NN CC NN IN NNS VBN IN NN .\nBritish Prime Minister Tony Blair , whose country holds the rotating EU presidency , wants leaders to reach consensus on how the block will deal with such issues as free trade .\tJJ NNP NNP NNP NNP , WP$ NN VBZ DT VBG NNP NN , VBZ NNS TO VB NN IN WRB DT NN MD VB IN JJ NNS IN JJ NN .\nHe also hopes the one-day informal summit will help resolve the stalemate over the bloc 's upcoming five-year budget for the period beginning in 2007 .\tPRP RB VBZ DT JJ JJ NN MD VB VB DT NN IN DT NN POS JJ JJ NN IN DT NN VBG IN CD .\nBudget talks collapsed in June after a dispute between Britain and France on EU spending .\tNNP NNS VBD IN NNP IN DT NN IN NNP CC NNP IN NNP NN .\nAhead of Thursday 's meeting , Mr. Blair told the European Parliament in Strasbourg that Europe is facing competition from such emerging economies as China and India .\tNN IN NNP POS NN , NNP NNP VBD DT NNP NNP IN NNP IN NNP VBZ VBG NN IN JJ VBG NNS IN NNP CC NNP .\nMeanwhile , the parliament asked EU countries to contribute more money for research , development , and to aid poor regions .\tRB , DT NN VBD NNP NNS TO VB JJR NN IN NN , NN , CC TO VB JJ NNS .\nRussian news reports say police have arrested the governor of a mineral-rich region on suspicion of embezzlement .\tJJ NN NNS VBP NNS VBP VBN DT NN IN DT JJ NN IN NN IN NN .\nThe reports say Alexi Barinov , governor of the Nenets autonomous region in Russia 's Arctic , is in police custody and has begun a hunger strike .\tDT NNS VBP NNP NNP , NN IN DT NNPS JJ NN IN NNP POS NNP , VBZ IN NN NN CC VBZ VBN DT NN NN .\nProsecutors reportedly opened a case against Barinov last week .\tNNS RB VBD DT NN IN NNP JJ NN .\nThe suspect was previously the chief executive officer for a unit of the oil company Lukoil .\tDT NN VBD RB DT JJ NN NN IN DT NN IN DT NN NN NNP .\nBarinov said last week that while at Lukoil prosecutors had dropped a criminal case against him for lack of evidence .\tNNP VBD JJ NN IN IN IN NNP NNS VBD VBN DT JJ NN IN PRP IN NN IN NN .\nThe RIA-Novosti news service says the probe centers on allegations that Barinov used his post at Lukoil to purchase several apartments illegally through the company .\tDT JJ NN NN VBZ DT NN NNS IN NNS IN NNP VBD PRP$ NN IN NNP TO VB JJ NNS RB IN DT NN .\nA Barinov spokesman has denied the charges .\tDT NNP NN VBZ VBN DT NNS .\nIraq 's oil minister says government forces could be ready to take over security responsibility from international forces by the end of next year .\tNNP POS NN NN VBZ NN NNS MD VB JJ TO VB RP NN NN IN JJ NNS IN DT NN IN JJ NN .\nHussain al-Shahristani , who is making his first visit to Australia , told reporters in Canberra Thursday that it would not take years for foreign troops to withdraw from Iraq .\tNNP NNP , WP VBZ VBG PRP$ JJ NN TO NNP , VBD NNS IN NNP NNP IN PRP MD RB VB NNS IN JJ NNS TO VB IN NNP .\nHe said more than half of country is now under total control of Iraqi forces .\tPRP VBD JJR IN NN IN NN VBZ RB IN JJ NN IN JJ NNS .\nHe said for the rest of the country , the government is planning to have sufficient trained and equipped Iraqi forces by the end of 2007 or - perhaps 2008 .\tPRP VBD IN DT NN IN DT NN , DT NN VBZ VBG TO VB JJ VBN CC VBN JJ NNS IN DT NN IN CD CC : RB CD .\nBut Australian Foreign Minister Alexander Downer called the Iraqi official 's timeframe ' optimistic . '\tCC JJ NNP NNP NNP NNP VBD DT JJ NN POS NN `` JJ . ``\nDowner cautioned against a premature withdrawal of international forces from Iraq , saying the insurgents are likely to call that a victory and use that argument to recruit more terrorists .\tNNP VBD IN DT JJ NN IN JJ NNS IN NNP , VBG DT NNS VBP JJ TO VB DT DT NN CC VB DT NN TO VB JJR NNS .\nFrench Prime Minister Dominique de Villepin says European Union membership negotiations with Turkey can not begin unless Ankara recognizes all EU member states , including Cyprus .\tJJ NNP NNP NNP NNP NNP VBZ NNP NNP NN NNS IN NNP MD RB VB IN NNP VBZ DT NNP NN NNS , VBG NNP .\nMr. de Villepin made the comment during a radio interview Tuesday .\tNNP NNP NNP VBD DT NN IN DT NN NN NNP .\nIn response , Turkish Foreign Minister Abdullah Gul said Ankara expects France 's continued support for Turkey 's EU process .\tIN NN , JJ JJ NN NNP NNP VBD NNP VBZ NNP POS JJ NN IN NNP POS NNP NN .\nThe 25-nation bloc plans to open membership talks with Turkey in October .\tDT JJ NN VBZ TO VB NN NNS IN NNP IN NNP .\nLast week , Turkey signed an accord that extends its customs agreement with the European Union to new member states .\tJJ NN , NNP VBD DT NN WDT VBZ PRP$ NNS NN IN DT NNP NNP TO JJ NN NNS .\nThese include the divided island of Cyprus , which joined the bloc last year .\tDT VBP DT VBN NN IN NNP , WDT VBD DT NN JJ NN .\nBut Turkey said the agreement does not represent a diplomatic recognition of the Greek Cypriot government .\tCC NNP VBD DT NN VBZ RB VB DT JJ NN IN DT JJ JJ NN .\nThe EU and most nations view the Greek Cypriot government as the divided island 's legitimate authority .\tDT NNP CC JJS NNS VBP DT JJ JJ NN IN DT VBN NN POS JJ NN .\nAnkara recognizes a separate government dominated by ethnic Turks .\tNNP VBZ DT JJ NN VBN IN JJ NNS .\nA jury has been selected for the trial of pop star Michael Jackson on child molestation charges .\tDT NN VBZ VBN VBN IN DT NN IN NN NN NNP NNP IN NN NN NNS .\nAttorneys Wednesday settled on a jury of four men and eight women , ranging from 20 to 79 years old .\tNNP NNP VBD IN DT NN IN CD NNS CC CD NNS , VBG IN CD CC CD NNS JJ .\nThe jury reportedly contains eight whites , three Hispanics , one Asian , and no African-Americans .\tDT NN RB VBZ CD NNS , CD NNS , CD NN , CC DT NNS .\nThe selection process took only two-and-a-half days after being delayed for a week by Jackson 's hospitalization with flu-like symptoms .\tDT NN NN VBD RB JJ NNS IN VBG VBN IN DT NN IN NNP POS NN IN JJ NNS .\nThe entertainer is accused of sexually molesting a 13-year-old boy at the singer 's Neverland ranch .\tDT NN VBZ VBN IN RB VBG DT JJ NN IN DT NN POS NNP NN .\nJackson has pleaded not guilty and predicted his acquittal .\tNNP VBZ VBN RB JJ CC VBD PRP$ NN .\nIn 1993 , he paid more than $ 23 million to settle a separate child molestation case out of court .\tIN CD , PRP VBD JJR IN $ CD CD TO VB DT JJ NN NN NN IN IN NN .\nSri Lanka 's Tamil Tiger rebels say new government air raids have killed 14 people , but the military denies that civilians were targeted in the attacks .\tNNP NNP POS NNP NNP NNS VBP JJ NN NN NNS VBP VBN CD NNS , CC DT NN VBZ IN NNS VBD VBN IN DT NNS .\nA rebel statement Tuesday said fighter jets dropped bombs on Mannar in northwest Sri Lanka , destroying residential homes .\tDT JJ NN NNP VBD NN NNS VBD NNS IN NNP IN NNP NNP NNP , VBG JJ NNS .\nIt said six children were among those killed , and that dozens of other civilians were wounded .\tPRP VBD CD NNS VBD IN DT VBN , CC IN NNS IN JJ NNS VBD VBN .\nBut the military strongly denied targeting civilians .\tCC DT NN RB VBD VBG NNS .\nA military spokesman said one raid focused on a rebel naval base in Mannar , while another air attack was carried out on a rebel position in the east .\tDT JJ NN VBD CD NN VBD IN DT JJ JJ NN IN NNP , IN DT NN NN VBD VBN RP IN DT JJ NN IN DT NN .\nViolence has flared in Sri Lanka despite a 2002 truce between the government and rebels , who are fighting for independence .\tNN VBZ VBN IN NNP NNP IN DT CD NN IN DT NN CC NNS , WP VBP VBG IN NN .\nMore than 3,000 people were killed last year .\tJJR IN CD NNS VBD VBN JJ NN .\nSince 1983 , some 67,000 civilians , troops and rebels have died in the conflict .\tIN CD , DT CD NNS , NNS CC NNS VBP VBN IN DT NN .\nTop-seeded Ivan Ljubicic of Croatia has broken Spaniard Carlos Moya 's hold on the Chennai Open tennis tournament by beating the two-time defending champion 07-Jun , 06-Feb in the title match in India .\tJJ NNP NNP IN NNP VBZ VBN NN NNP NNP POS NN IN DT NNP NNP NN NN IN VBG DT JJ VBG NN CD , CD IN DT NN NN IN NNP .\nThe third-seeded Moya , who was trying for his third straight title at this event , squandered a 4-0 lead in the first set tiebreaker Sunday .\tDT JJ NNP , WP VBD VBG IN PRP$ JJ JJ NN IN DT NN , VBD DT JJ NN IN DT JJ NN NN NNP .\nLjubicic then dominated Moya in the second set .\tNNP RB VBD NNP IN DT JJ NN .\nBut before making it to the title match , Ljubicic had to get past Belgium 's Kristof Vliegen in a semifinal match disrupted by heavy rain Saturday night .\tCC IN VBG PRP TO DT NN NN , NNP VBD TO VB JJ NNP POS NNP NNP IN DT JJ NN VBN IN JJ NN NNP NN .\nLjubicic led the match 03-Jan in the first set when the match was suspended .\tNNP VBD DT NN CD IN DT JJ NN WRB DT NN VBD VBN .\nResuming Sunday , Ljubicic won the first set 06-Mar , before dropping the second set 03-Jun .\tVBG NNP , NNP VBD DT JJ NN CD , IN VBG DT JJ NN CD .\nThe Croatian then survived a scare from Vliegen by rallying from 0-3 and 02-May deficits in the final set tiebreaker to win the match , 06-Mar , 03-Jun , 07-Jun .\tDT NN RB VBD DT NN IN NNP IN VBG IN CD CC CD NNS IN DT JJ NN NN TO VB DT NN , CD , CD , CD .\nA published report says the Bush administration is planning new measures against anyone doing business with Iranian , North Korean and Syrian companies Washington believes are involved in weapons programs .\tDT JJ NN VBZ DT NNP NN VBZ VBG JJ NNS IN DT VBG NN IN JJ , JJ JJ CC JJ NNS NNP VBZ VBP VBN IN NNS NNS .\nThe Washington Post quotes unidentified U.S. officials in its report Monday saying the plan would initially target eight entities mostly suspected of working with missile programs in those three countries .\tDT NNP NNP VBZ JJ NNP NNS IN PRP$ NN NNP VBG DT NN MD RB VB CD NNS RB VBN IN VBG IN NN NNS IN DT CD NNS .\nAn internal government memo indicates the plan would provide a new tool against the trafficking of weapons of mass destruction .\tDT JJ NN NN VBZ DT NN MD VB DT JJ NN IN DT NN IN NNS IN NN NN .\nThe newspaper says new measures would include freezing assets of any U.S. or foreign individual or company conducting business with the suspected Iranian , North Korean and Syrian companies .\tDT NN VBZ JJ NNS MD VB VBG NNS IN DT NNP CC JJ JJ CC NN VBG NN IN DT JJ JJ , JJ JJ CC JJ NNS .\nWhite House officials are reported to be hopeful President Bush will sign the executive order before he heads to Scotland late this week for the Group of Eight summit .\tNNP NNP NNS VBP VBN TO VB JJ NNP NNP MD VB DT NN NN IN PRP VBZ TO NNP RB DT NN IN DT NNP IN CD NN .\nHeavy monsoon rains in Pakistan 's south have killed at least 26 people and cut off electricity in the country 's largest city , Karachi .\tJJ NN NNS IN NNP POS NN VBP VBN IN JJS CD NNS CC VB RP NN IN DT NN POS JJS NN , NNP .\nThe rainfall started Saturday and flooded areas of the port city .\tDT NN VBD NNP CC VBN NNS IN DT JJ NN .\nOfficials say some of the victims died from drowning and electrocution .\tNNS VBP DT IN DT NNS VBD IN VBG CC NN .\nOthers were killed by collapsing homes .\tNNS VBD VBN IN VBG NNS .\nThe 15 centimeters of rainfall damaged hundreds of buildings and downed power lines across the city .\tDT CD NNS IN NN VBN NNS IN NNS CC JJ NN NNS IN DT NN .\nPakistani officials say they are working to restore electricity and control the situation .\tJJ NNS VBP PRP VBP VBG TO VB NN CC VB DT NN .\nDespite the downpour , meteorologists are predicting almost a third less rainfall this year .\tIN DT NN , NNS VBP VBG RB DT JJ JJR NN DT NN .\nKarachi suffers from outdated infrastructure and a poor drainage system that leaves parts of the city vulnerable to flooding .\tNNP VBZ IN VBN NN CC DT JJ NN NN WDT VBZ NNS IN DT NN NN TO NN .\nThe Court of Arbitration for Sport has denied the appeal by Greek sprinters Konstantinos Kenteris and Ekaterina Thanou to be allowed to return to competition .\tDT NNP IN NNP IN NNP VBZ VBN DT NN IN JJ NNS NNP NNP CC NNP NNP TO VB VBN TO VB TO NN .\nThe court refused to lift the sprinters ' provisional ban until after it rules whether Kenteris and Thanou deserve suspensions for missing three doping tests before the 2004 Olympics in Athens .\tDT NN VBD TO VB DT NNS POS JJ NN IN IN PRP VBZ IN NNP CC NNP VBP NNS IN VBG CD NN NNS IN DT CD NNS IN NNP .\nThe Lausanne-based court said Monday it will take up the case again on June 26 , and plans to render its ruling within two to three days .\tDT JJ NN VBD NNP PRP MD VB RP DT NN RB IN NNP CD , CC VBZ TO VB PRP$ NN IN CD CC CD NNS .\nBut the ban will stand until a decision is reached .\tCC DT NN MD VB IN DT NN VBZ VBN .\nKenteris was the 200-meter Sydney Olympics champion in 2000 , while Thanou won the women 's 100-meter silver medal at the same Games .\tNNP VBD DT JJ NNP NNP NN IN CD , IN NNP VBD DT NNS POS JJ NN NN IN DT JJ NNPS .\nThey were provisionally suspended by the athletics world governing body , IAAF last year after the Greek Athletics Federation refused to punish them .\tPRP VBD RB VBN IN DT NNS NN NN NN , NNP JJ NN IN DT JJ NNP NNP VBD TO VB PRP .\nChilean President Ricardo Lagos is promising that his country will give a fair extradition trial to jailed former Peruvian President Alberto Fujimori .\tJJ NNP NNP NNP VBZ VBG IN PRP$ NN MD VB DT JJ NN NN TO JJ JJ JJ NNP NNP NNP .\nPresident Lagos said in Santiago that Mr. Fujimori will be accorded due process in line with the tradition of Chile 's judicial system .\tNNP NNP VBD IN NNP IN NNP NNP MD VB VBN JJ NN IN NN IN DT NN IN NNP POS JJ NN .\nPeru is seeking Mr. Fujimori 's extradition so he can face charges that include corruption and human rights abuses .\tNNP VBZ VBG NNP NNP POS NN IN PRP MD VB NNS WDT VBP NN CC JJ NNS NNS .\nHe fled Peru in 2000 , after 10 years in office , and spent the past five years in his parents ' native Japan .\tPRP VBD NNP IN CD , IN CD NNS IN NN , CC VBD DT JJ CD NNS IN PRP$ NNS POS JJ NNP .\nMr. Fujimori arrived in Chile Sunday , despite an international warrant for his arrest .\tNNP NNP VBD IN NNP NNP , IN DT JJ NN IN PRP$ NN .\nHe was later arrested by Chilean police and was refused bond Japanese Embassy officials met with him at his detention facility on Wednesday .\tPRP VBD RB VBN IN JJ NN CC VBD VBN NN JJ NNP NNS VBD IN PRP IN PRP$ NN NN IN NNP .\nThey say that Mr. Fujimori , who holds Japanese citizenship , expressed satisfaction with his living conditions .\tPRP VBP IN NNP NNP , WP VBZ JJ NN , VBD NN IN PRP$ NN NNS .\nThe government of the Netherlands has suspended education , environment and water programs in Kenya , citing concerns over corruption .\tDT NN IN DT NNP VBZ VBN NN , NN CC NN NNS IN NNP , VBG NNS IN NN .\nIn a statement , the Dutch government said it was suspending aid worth nearly $ 150 million to the east African country , because it has not seen enough proof the Kenyan government is fighting corruption .\tIN DT NN , DT JJ NN VBD PRP VBD VBG NN JJ RB $ CD CD TO DT JJ JJ NN , IN PRP VBZ RB VBN JJ NN DT JJ NN VBZ VBG NN .\nThe Dutch government said it will continue to fund judicial reform and good governance programs .\tDT JJ NN VBD PRP MD VB TO VB JJ NN CC JJ NN NNS .\nThe government of Kenyan President Mwai Kibaki has been hit by two major multimillion dollar corruption scandals that have forced the ministers of energy , finance and education to resign .\tDT NN IN JJ NNP NNP NNP VBZ VBN VBN IN CD JJ JJ NN NN NNS WDT VBP VBN DT NNS IN NN , NN CC NN TO VB .\nKenya 's vice president , central bank governor , former intelligence and security ministers and other officials are being investigated in connection with the scandals .\tNNP POS NN NN , JJ NN NN , JJ NN CC NN NNS CC JJ NNS VBP VBG VBN IN NN IN DT NNS .\nMr. Kibaki won the presidency in 2002 and pledged to root out the systemic corruption that marked former President Daniel arap Moi 's 24 years in power .\tNNP NNP VBD DT NN IN CD CC VBD TO VB RP DT JJ NN WDT VBD JJ NNP NNP NNP NNP POS CD NNS IN NN .\nPolice in Iraq say 17 people have been killed in a car bomb explosion south of Baghdad .\tNNS IN NNP VBP CD NNS VBP VBN VBN IN DT NN NN NN NN IN NNP .\nOfficials say Saturday 's blast occurred near a hospital in Musayyib , about 55 kilometers south of the Iraqi capital .\tNNS VBP NNP POS NN VBD IN DT NN IN NNP , IN CD NNS RB IN DT JJ NN .\nAbout 20 people were injured .\tIN CD NNS VBD VBN .\nEarlier Saturday , masked assailants in the southern city of Basra shot and killed a judge , Taha al-Amiri , who had worked in Saddam Hussein 's regime .\tRBR NNP , VBN NNS IN DT JJ NN IN NNP VBD CC VBD DT NN , NNP NNP , WP VBD VBN IN NNP NNP POS NN .\nMeanwhile , police in the northern city of Mosul say they have discovered the bodies of at least six Iraqis who had been shot in the head and chest .\tRB , NNS IN DT JJ NN IN NNP VBP PRP VBP VBN DT NNS IN IN JJS CD NNS WP VBD VBN VBN IN DT NN CC NN .\nThe violence comes one day after 23 people were killed in attacks against Shi'ite Muslim targets in Iraq .\tDT NN VBZ CD NN IN CD NNS VBD VBN IN NNS IN NNP NNP NNS IN NNP .\nAbout 20,000 Mexican union workers clogged rush hour traffic in the capital Tuesday demanding that the recently ousted miners ' union boss be reinstated .\tIN CD JJ NN NNS VBD NN NN NN IN DT NN NNP VBG IN DT RB VBN NNS POS NN NN VB VBN .\nUnion leaders threatened to call a general strike if the government did not retract its support for the newly installed General Secretary of the miners ' union , Elias Morales .\tNNP NNS VBD TO VB DT JJ NN IN DT NN VBD RB VB PRP$ NN IN DT RB VBN NNP NNP IN DT NNS POS NN , NNP NNPS .\nThe government had earlier removed Napoleon Gomez from the elected position .\tDT NN VBD RBR VBN NNP NNP IN DT VBN NN .\nGomez has been under investigation by the government for alleged corruption .\tNNP VBZ VBN IN NN IN DT NN IN JJ NN .\nTuesday 's march comes days after the 250,000-member National Miners and Metal Workers Union shut down most mining and steel operations across the country in a two-day strike to support Gomez .\tNNP POS NN VBZ NNS IN DT JJ NNP NNPS CC NNP NNP NNP VBD RP RBS NN CC NN NNS IN DT NN IN DT JJ NN TO VB NNP .\nEgypt 's ruling party said Wednesday that it will back 82-year-old Hosni Mubarak if he decides run for another term as president in 2011 , even though Mr. Mubarak has yet to say whether he will seek another term .\tNNP POS NN NN VBD NNP IN PRP MD VB JJ NNP NNP IN PRP VBZ VBN IN DT NN IN NN IN CD , RB IN NNP NNP VBZ RB TO VB IN PRP MD VB DT NN .\nEgypt 's state-run MENA news agency quotes National Democratic Party leader Safwat Sherif as saying his party is just waiting for President Mubarak 's decision on whether he will run again in 2011 .\tNNP POS JJ NNP NN NN VBZ NNP NNP NNP NN NNP NNP IN VBG PRP$ NN VBZ RB VBG IN NNP NNP POS NN IN IN PRP MD VB RB IN CD .\nThe 82-year-old leader has ruled Egypt for nearly 30 years .\tDT JJ NN VBZ VBN NNP IN RB CD NNS .\nThere has been speculation about his health and whether he will again seek office since his gallbladder surgery in March .\tEX VBZ VBN NN IN PRP$ NN CC IN PRP MD RB VB NN IN PRP$ NN NN IN NNP .\nAlso , many political experts believe Mr. Mubarak is grooming his son , Gamal , to take over .\tRB , JJ JJ NNS VBP NNP NNP VBZ VBG PRP$ NN , NNP , TO VB RP .\nMr. Mubarak and his son have both denied any succession plan , but the Reuters news agency quotes one party official as saying Gamal Mubarak could be a candidate , along with others in the 2011 contest .\tNNP NNP CC PRP$ NN VBP DT VBN DT NN NN , CC DT NNP NN NN VBZ CD NN NN IN VBG NNP NNP MD VB DT NN , IN IN NNS IN DT CD NN .\nA hamstring injury will keep Olympic triple jump champion Christian Olsson of Sweden out of the Summer Games in Beijing .\tDT VBG NN MD VB NNP JJ NN NN NNP NNP IN NNP IN IN DT NNPS NNPS IN NNP .\nOlsson says he pulled a muscle Tuesday in his fourth jump at the DN Galan athletic meet in Stockholm .\tNNP VBZ PRP VBD DT NN NNP IN PRP$ JJ NN IN DT NNP NNP JJ VB IN NNP .\nThe 28-year-old Swede has been plagued by injuries since winning the gold medal in Athens four years ago .\tDT JJ NN VBZ VBN VBN IN NNS IN VBG DT NN NN IN NNP CD NNS RB .\nHe was competing this week for the first time after a long break .\tPRP VBD VBG DT NN IN DT JJ NN IN DT JJ NN .\nOlsson placed third with a jump of 17-meters from a second round jump at Olympic Stadium .\tNNP VBD JJ IN DT NN IN NNS IN DT JJ NN NN IN NNP NNP .\nBut Olsson says he will have to consider if he should continue his career .\tCC NNP VBZ PRP MD VB TO VB IN PRP MD VB PRP$ NN .\nMarian Oprea of Romania won Tuesday 's triple jump with an effort of 17 meters , 25 centimeters .\tNNP NNP IN NNP VBD NNP POS JJ NN IN DT NN IN CD NNS , CD NNS .\nDmitrij Valukevic of Slovakia was second - 17 meters , one centimeter .\tNNP NNP IN NNP VBD JJ IN CD NNS , CD NN .\nSri Lankan President Chandrika Kumaratunga says the unprecedented tragedy gripping the country offers an opportunity to find a permanent solution to the ethnic conflict plaguing the island nation .\tNNP NNP NNP NNP NNP VBZ DT JJ NN VBG DT NN VBZ DT NN TO VB DT JJ NN TO DT JJ NN VBG DT NN NN .\nIn a New Year 's message , Mrs. Kumaratunga asked her country to unite - without regard to ethnicity , religion or class - to face the staggering destruction from Sunday 's tsunami .\tIN DT NNP NNP POS NN , NNP NNP VBD PRP$ NN TO VB : IN NN TO NN , NN CC NN : TO VB DT JJ NN IN NNP POS NN .\nThe president 's attempts to revive peace talks with Tamil separatists have been deadlocked for 20 months and her remarks were being seen in Colombo as an overture for peace .\tDT NN POS NNS TO VB NN NNS IN NNP NNS VBP VBN VBN IN CD NNS CC PRP$ NNS VBD VBG VBN IN NNP IN DT NN IN NN .\nRelief supplies have begun arriving in Sri Lanka , but reports indicate that aid convoys continue to have difficulty reaching some of the hardest hit areas .\tNNP NNS VBP VBN VBG IN NNP NNP , CC NNS VBP IN NN NNS VBP TO VB NN VBG DT IN DT RBS VBN NNS .\nThe Israeli parliament has voted down the 2005 state budget , triggering a political crisis that could stall or wreck Prime Minister Ariel Sharon 's plans to evacuate the Gaza Strip .\tDT JJ NN VBZ VBN IN DT CD NN NN , VBG DT JJ NN WDT MD VB CC VB NNP NNP NNP NNP POS NNS TO VB DT NNP NNP .\nThe 69-43 vote comes as Mr. Sharon struggles to keep his minority Likud coalition together ahead of upcoming votes on the planned 2005 Gaza withdrawal .\tDT JJ NN VBZ IN NNP NNP VBZ TO VB PRP$ NN NNP NN RB RB IN VBG NNS IN DT JJ CD NNP NN .\nOpponents have vowed to scuttle the evacuation .\tNNS VBP VBN TO VB DT NN .\nThe political crisis erupted Wednesday , when the secular Shinui party - upset with funding provisions for religious parties - defied Mr. Sharon 's orders and voted against the budget on its first reading .\tDT JJ NN VBD NNP , WRB DT JJ NNP NN : VBN IN NN NNS IN JJ NNS : VBD NNP NNP POS NNS CC VBD IN DT NN IN PRP$ JJ NN .\nA short while later , the prime minister fired the renegade Shinui ministers , leaving the Likud coalition in control of only 40 votes in the 120-seat Knesset .\tDT JJ NN RB , DT JJ NN VBD DT NN NNP NNS , VBG DT NNP NN IN NN IN RB CD NNS IN DT JJ NNP .\nParty officials say Mr. Sharon will soon begin negotiations to bring the opposition Labor Party 's 22 lawmakers into the government .\tNNP NNS VBP NNP NNP MD RB VB NNS TO VB DT NN NNP NNP POS CD NNS IN DT NN .\nThe Israeli military says it has carried out three air strikes on Gaza following rocket attacks by Palestinian militants .\tDT JJ NN VBZ PRP VBZ VBN IN CD NN NNS IN NNP VBG NN NNS IN JJ NNS .\nGaza officials say no injuries were reported from the strikes .\tNNP NNS VBP DT NNS VBD VBN IN DT NNS .\nThe Israeli army says two of the strikes hit smuggling tunnels on the territory 's border with Egypt .\tDT JJ NN VBZ CD IN DT NNS VBD VBG NNS IN DT NN POS NN IN NNP .\nAircraft also struck a building allegedly used by militants to store arms .\tNNP RB VBD DT NN RB VBN IN NNS TO VB NNS .\nPalestinian militants fired two rockets into Israel Sunday causing no injuries .\tJJ NNS VBD CD NNS IN NNP NNP VBG DT NNS .\nIsrael launched a three-week offensive in late December against the Palestinian militant group Hamas , which rules the Gaza Strip .\tNNP VBD DT JJ NN IN JJ NNP IN DT JJ JJ NN NNP , WDT VBZ DT NNP NNP .\nThe offensive was in response to continuing rocket attacks from Gaza .\tDT NN VBD IN NN TO VBG NN NNS IN NNP .\nBoth Hamas and Israel declared unilateral cease-fires in January , but the violence continues almost daily .\tDT NNP CC NNP VBD JJ NNS IN NNP , CC DT NN VBZ RB RB .\nChad 's president has urged Sudan 's government and rebels in the western Darfur region to respect a repeatedly violated cease-fire , and declare an end to their two-year civil war .\tNNP POS NN VBZ VBN NNP POS NN CC NNS IN DT JJ NNP NN TO VB DT RB VBN NN , CC VB DT NN TO PRP$ JJ JJ NN .\nPresident Idriss Deby told officials from both sides at a meeting in Chad Thursday that it is time for them to respect their commitments .\tNNP NNP NNP VBD NNS IN DT NNS IN DT NN IN NNP NNP IN PRP VBZ NN IN PRP TO VB PRP$ NNS .\nWednesday , officials at the meeting , including Sudan 's President Omar Hassan al-Bashir , asked mediators to prepare for a new round of talks later this month .\tNNP , NNS IN DT NN , VBG NNP POS NNP NNP NNP NNP , VBD NNS TO VB IN DT JJ NN IN NNS RB DT NN .\nThree previous rounds of talks have failed to stop the violence in Darfur , which has left at least 70,000 people dead and 1.5 million others displaced .\tCD JJ NNS IN NNS VBP VBN TO VB DT NN IN NNP , WDT VBZ VBN IN JJS CD NNS JJ CC CD CD NNS VBD .\nU.N. Secretary-General Kofi Annan urged the Security Council Wednesday to act quickly to stop what he called ' further death and suffering ' in Darfur .\tNNP NNP NNP NNP VBD DT NNP NNP NNP TO VB RB TO VB WP PRP VBD `` RBR NN CC VBG `` IN NNP .\nDifferences over an election bill and choice for interior minister have delayed Monday 's expected announcement of formation of a new government in Lebanon .\tNNS IN DT NN NN CC NN IN JJ NN VBP VBN NNP POS JJ NN IN NN IN DT JJ NN IN NNP .\nAn official in Beirut said talks were under way to break the impasse , which threatens to delay parliamentary elections scheduled for May .\tDT NN IN NNP VBD NNS VBD IN NN TO VB DT NN , WDT VBZ TO VB JJ NNS VBN IN NNP .\nLebanon has been without a government since mass protests erupted after the assassination of former Prime Minister Rafik Hariri .\tNNP VBZ VBN IN DT NN IN JJ NNS VBD IN DT NN IN JJ NNP NNP NNP NNP .\nUnder intense domestic and international pressure following the demonstrations , pro-Syrian Prime Minister Omar Karami and his government resigned in February .\tIN JJ JJ CC JJ NN VBG DT NNS , JJ NNP NNP NNP NNP CC PRP$ NN VBD IN NNP .\nHe was re-appointed two weeks later after pro-Syrian legislators refused to accept his resignation .\tPRP VBD JJ CD NNS RB IN JJ NNS VBD TO VB PRP$ NN .\nAnti-Syrian opposition leaders say Mr. Karami 's inability to form a new government is really a delaying tactic to try to derail the elections , which can not be held until a new government if formed .\tJJ NN NNS VBP NNP NNP POS NN TO VB DT JJ NN VBZ RB DT NN NN TO VB TO VB DT NNS , WDT MD RB VB VBN IN DT JJ NN IN VBN .\nU.S. President George Bush has signed a measure extending unemployment benefits for a growing number of out-of-work Americans .\tNNP NNP NNP NNP VBZ VBN DT NN VBG NN NNS IN DT VBG NN IN JJ NNS .\nMr. Bush signed the legislation into law Friday and it allows unemployed Americans to receive government payment for an extra seven weeks .\tNNP NNP VBD DT NN IN NN NNP CC PRP VBZ JJ NNS TO VB NN NN IN DT JJ CD NNS .\nThose in states with higher unemployment rates can receive benefits even longer .\tDT IN NNS IN JJR NN NNS MD VB NNS RB RBR .\nThe U.S. Senate passed the bill Thursday , after a new report showed the number of unemployed Americans signing up for benefits for the first time grew to the highest level in 16 years .\tDT NNP NNP VBD DT NN NNP , IN DT JJ NN VBD DT NN IN JJ NNS VBG RP IN NNS IN DT JJ NN VBD TO DT JJS NN IN CD NNS .\nThe White House said the financial and credit crises has slowed the U.S. economy ' dramatically ' , and has had an impact on job creation .\tDT NNP NNP VBD DT JJ CC NN NNS VBZ VBN DT NNP NN `` RB `` , CC VBZ VBN DT NN IN NN NN .\nU.N. special envoy , former U.S. President George H.W. Bush , has toured a tent camp in the Pakistani capital , Islamabad , housing the survivors of last year 's devastating earthquake .\tNNP JJ NN , JJ NNP NNP NNP NNP NNP , VBZ VBN DT JJ NN IN DT JJ NN , NNP , NN DT NNS IN JJ NN POS JJ NN .\nBut winter weather prevented him from visiting Pakistani Kashmir 's ruined capital , Muzaffarabad , and also grounded vital aid flights to survivors there for a third straight day .\tCC NN NN VBD PRP IN VBG JJ NNP POS JJ NN , NNP , CC RB VBD JJ NN NNS TO NNS RB IN DT JJ JJ NN .\nAt a joint news conference with Pakistan 's Prime Minister Shaukat Aziz , Tuesday Mr. Bush said his role is to encourage those who have pledged relief and reconstruction aid to deliver on their pledges .\tIN DT JJ NN NN IN NNP POS NNP NNP NNP NNP , NNP NNP NNP VBD PRP$ NN VBZ TO VB DT WP VBP VBN NN CC NN NN TO VB IN PRP$ NNS .\nA U.N.-led relief operation is under way in Pakistan , but U.N. officials say the world body is still far short of the $ 500 million needed to sustain the effort .\tDT JJ NN NN VBZ IN NN IN NNP , CC NNP NNS VBP DT NN NN VBZ RB RB JJ IN DT $ CD CD VBN TO VB DT NN .\nThe October 8 quake killed more than 73,000 people and left some three million homeless .\tDT NNP CD NN VBD JJR IN CD NNS CC VBD DT CD CD NN .\nPope Benedict says the Catholic Church must examine failures that have allowed for ' an unimaginable dimension ' of sexual abuse by priests .\tNN NNP VBZ DT NNP NNP MD VB NNS WDT VBP VBN IN `` DT JJ NN `` IN JJ NN IN NNS .\nThe pope said Monday that church authorities also must renew efforts to help victims and screen potential pedophiles from the priesthood .\tDT NN VBD NNP IN NN NNS RB MD VB NNS TO VB NNS CC NN JJ NNS IN DT NN .\nSpeaking to cardinals and bishops gathered in Rome to hear the pontiff 's traditional Christmas message , the pope defended most priests for their good works but said the church had to ask itself what was wrong in its message that allowed such abuse to occur .\tVBG TO NNS CC NNS VBN IN NNP TO VB DT NN POS JJ NNP NN , DT NN VBD RBS NNS IN PRP$ JJ NNS CC VBD DT NN VBD TO VB PRP WP VBD JJ IN PRP$ NN WDT VBD JJ NN TO VB .\nCatholics in Ireland , Germany , the Netherlands and Belgium have demanded church accountability for the abuses , which began coming to light eight years ago in the United States and later became apparent in Europe .\tNNS IN NNP , NNP , DT NNP CC NNP VBP VBN NN NN IN DT NNS , WDT VBD VBG TO NN CD NNS RB IN DT NNP NNPS CC RB VBD JJ IN NNP .\nVictims have accused the church hierarchy of failing for decades to act swiftly to punish errant priests .\tNNS VBP VBN DT NN NN IN VBG IN NNS TO VB RB TO VB JJ NNS .\nPeru 's economy expanded 9.8 percent in 2008 as strong commodity prices helped it grow at the fastest rate in 14 years .\tNNP POS NN VBD CD NN IN CD IN JJ NN NNS VBD PRP VB IN DT JJS NN IN CD NNS .\nNews reports say growth slowed a bit at the end of 2008 and the beginning of this year .\tNN NNS VBP NN VBD DT NN IN DT NN IN CD CC DT NN IN DT NN .\nA report from Bloomberg also says Peru 's government is reporting a one percentage point increase in unemployment , putting the rate at 8.8 percent .\tDT NN IN NNP RB VBZ NNP POS NN VBZ VBG DT CD NN NN NN IN NN , VBG DT NN IN CD NN .\nPeruvian officials apparently hope to boost trade to help economic growth .\tJJ NNS RB VBP TO VB NN TO VB JJ NN .\nJapan 's Kyoto news service reports that Peru 's foreign and trade ministers plan a visit to Japan for talks on bilateral trade and other issues February 23 .\tNNP POS NNP NN NN VBZ IN NNP POS JJ CC NN NNS VBP DT NN TO NNP IN NNS IN JJ NN CC JJ NNS NNP CD .\nJapan is seeking lower duties on cars it sells to Peru while Peru wants better access to Japan 's farm and fisheries markets .\tNNP VBZ VBG JJR NNS IN NNS PRP VBZ TO NNP IN NNP VBZ JJR NN TO NNP POS NN CC NNS NNS .\nChina has confirmed that the next round of six-country talks on North Korea 's nuclear weapons program will begin November 9 in Beijing .\tNNP VBZ VBN IN DT JJ NN IN JJ NNS IN NNP NNP POS JJ NNS NN MD VB NNP CD IN NNP .\nThe date was announced Thursday , by China 's Foreign Ministry .\tDT NN VBD VBN NNP , IN NNP POS NNP NNP .\nNext Wednesday 's start for the six-party talks comes just ahead of the Asia-Pacific Economic Cooperation forum November 18 and 19 in Busan , South Korea .\tJJ NNP POS NN IN DT JJ NNS VBZ RB RB IN DT NNP NNP NNP NN NNP CD CC CD IN NNP , NNP NNP .\nAt the last round of nuclear talks in September , North Korea agreed to abandon its nuclear programs in exchange for economic aid and security assurances .\tIN DT JJ NN IN JJ NNS IN NNP , NNP NNP VBD TO VB PRP$ JJ NNS IN NN IN JJ NN CC NN NNS .\nBut Pyongyang then said it will not disarm unless it is first given a civilian light-water nuclear reactor for power generation - a demand U.S. officials say is unacceptable .\tCC NNP RB VBD PRP MD RB VB IN PRP VBZ RB VBN DT JJ NN JJ NN IN NN NN IN DT NN NNP NNS VBP VBZ JJ .\nThe six party talks include both Koreas , China , Russia , Japan and the United States .\tDT CD NN NNS VBP DT NNP , NNP , NNP , NNP CC DT NNP NNPS .\nFormer Ecuadorean President Lucio Gutierrez has formally requested political asylum in Colombia after receiving reports he is wanted in his homeland on treason charges .\tJJ NNP NNP NNP NNP VBZ RB VBN JJ NN IN NNP IN VBG NNS PRP VBZ VBN IN PRP$ NN IN NN NNS .\nColombian officials say Mr. Gutierrez submitted his application after arriving from Peru Wednesday and that he has permission to remain in Colombia for 90 days while the asylum request is examined .\tJJ NNS VBP NNP NNP VBD PRP$ NN IN VBG IN NNP NNP CC IN PRP VBZ NN TO VB IN NNP IN CD NNS IN DT NN NN VBZ VBN .\nLast July , the Ecuadorean government issued an arrest warrant for the former president , charging him with harming national security .\tJJ NNP , DT JJ NN VBD DT NN NN IN DT JJ NN , VBG PRP IN VBG JJ NN .\nAides to Mr. Gutierrez say the charges may be related to comments he made in the United States shortly after his ouster in April , claiming he remains Ecuador 's constitutional president .\tNNS TO NNP NNP VBP DT NNS MD VB VBN TO NNS PRP VBD IN DT NNP NNPS RB IN PRP$ NN IN NNP , VBG PRP VBZ NNP POS JJ NN .\nEcuador 's Congress removed Mr. Gutierrez from office after weeks of mass protests .\tNNP POS NNP VBD NNP NNP IN NN IN NNS IN JJ NNS .\nCritics had demanded his resignation for what they called an abuse of power after he packed the Supreme Court with his allies .\tNNS VBD VBN PRP$ NN IN WP PRP VBD DT NN IN NN IN PRP VBD DT NNP NNP IN PRP$ NNS .\nIsraeli media say the navy is building an underwater barrier off the coast of northern Gaza to stop potential Palestinian infiltrators .\tJJ NNS VBP DT NN VBZ VBG DT NN NN IN DT NN IN JJ NNP TO VB JJ JJ NNS .\nThe Jerusalem Post newspaper quotes Israeli military officials as saying the barrier will stretch 950 meters into the sea from Israel 's border with the Gaza Strip .\tDT NNP NNP NN VBZ JJ NN NNS IN VBG DT NN MD VB CD NNS IN DT NN IN NNP POS NN IN DT NNP NNP .\nThe report says the first 150 meters will consist of cement pilings buried into the sandy bottom while the remaining 800 meters will be formed by a floating fence .\tDT NN VBZ DT JJ CD NNS MD VB IN NN NNS VBN IN DT JJ NN IN DT VBG CD NNS MD VB VBN IN DT JJ NN .\nThe structure is designed to stop Gaza-based militants from swimming to the Israeli coast once Israel pulls out of Gaza and parts of the West Bank .\tDT NN VBZ VBN TO VB JJ NNS IN NN TO DT JJ NN RB NNP VBZ IN IN NNP CC NNS IN DT NNP NNP .\nIsrael is also building a land barrier along the West Bank .\tNNP VBZ RB VBG DT NN NN IN DT NNP NNP .\nThe U.S. military says three more American service members have been killed in Iraq .\tDT NNP NN VBZ CD JJR JJ NN NNS VBP VBN VBN IN NNP .\nA military statement says two Marines died Thursday from wounds sustained in combat in Anbar province -- a Sunni insurgent stronghold west of Baghdad .\tDT JJ NN VBZ CD NNP VBD NNP IN NNS VBN IN NN IN NNP NN IN DT NNP JJ NN NN IN NNP .\nAnother statement said a soldier died in combat this week in Ninewa province , northwest of Baghdad More than 2900 U.S. troops have been killed in Iraq since the 2003 invasion .\tDT NN VBD DT NN VBD IN NN DT NN IN NNP NN , NN IN NNP JJR IN CD NNP NNS VBP VBN VBN IN NNP IN DT CD NN .\nIn Baghdad Thursday , Arizona Republican Senator John McCain called for 15,000 to 30,000 more U.S. troops in Iraq to help stop sectarian violence .\tIN NNP NNP , NNP NNP NNP NNP NNP VBD IN CD TO CD JJR NNP NNS IN NNP TO VB VB JJ NN .\nBut the U.S. Army 's top general , Peter Schoomaker , warned of the strains on the Army from overseas deployments .\tCC DT NNP NNP POS JJ NN , NNP NNP , VBD IN DT NNS IN DT NN IN JJ NNS .\nThe general said the Army ' will break ' without thousands more active duty soldiers .\tDT NN VBD DT NNP `` MD VB `` IN NNS RBR JJ NN NNS .\nThe Israeli military says a rocket fired from the Gaza Strip has landed in southern Israel , further straining the fragile cease-fire between Israel and the Palestinian militant group Hamas .\tDT JJ NN VBZ DT NN VBN IN DT NNP NNP VBZ VBN IN JJ NNP , RB VBG DT JJ NN IN NNP CC DT JJ JJ NN NNP .\nIsraeli officials did not report any injuries or damage from the rocket .\tJJ NNS VBD RB VB DT NNS CC NN IN DT NN .\nNo one has claimed responsibility for Monday 's incident .\tDT NN VBZ VBN NN IN NNP POS NN .\nHamas has warned it will take action against anyone who breaks the truce .\tNNP VBZ VBN PRP MD VB NN IN DT WP VBZ DT NN .\nOn Sunday , Israel re-opened a border crossing with Gaza to allow about 80 truckloads of commercial goods into the Palestinian territory .\tIN NNP , NNP VBD DT NN VBG IN NNP TO VB IN CD NNS IN JJ NNS IN DT JJ NN .\nIsrael closed the crossings after an Islamic Jihad rocket attack last week .\tNNP VBD DT NNS IN DT JJ NN NN NN JJ NN .\nThe group said the attack was revenge for Israel 's killing of one of its commanders in the West Bank .\tDT NN VBD DT NN VBD NN IN NNP POS NN IN CD IN PRP$ NNS IN DT NNP NNP .\nThe West Bank is not included in a cease-fire agreement between Israel and Hamas leaders in the Gaza Strip .\tDT NNP NNP VBZ RB VBN IN DT NN NN IN NNP CC NNP NNS IN DT NNP NNP .\nSupporters and opponents of the war in Iraq have faced off against each other at rival rallies outside President Bush 's Crawford , Texas ranch .\tNNS CC NNS IN DT NN IN NNP VBP VBN RP IN DT NN IN JJ NNS IN NNP NNP POS NNP , NNP NN .\nOn Saturday , police kept dozens of Bush supporters and anti-war activists on separate sides of a narrow country road , as the two sides jeered at each other .\tIN NNP , NN VBD NNS IN NNP NNS CC JJ NNS IN JJ NNS IN DT JJ NN NN , IN DT CD NNS VBD IN DT NN .\nAt least two people were arrested .\tIN JJS CD NNS VBD VBN .\nElsewhere in town , thousands of people gathered for pro-Bush and anti-war rallies .\tRB IN NN , NNS IN NNS VBN IN JJ CC JJ NNS .\nFolk singer and peace activist Joan Baez led supporters in song at the anti-war gathering .\tNN NN CC NN NN NNP NNP VBD NNS IN NN IN DT JJ NN .\nThe anti-war activists are led by Cindy Sheehan , whose son , Casey , was killed in Iraq last year .\tDT JJ NNS VBP VBN IN NNP NNP , WP$ NN , NNP , VBD VBN IN NNP JJ NN .\nMrs. Sheehan began holding vigils in Crawford earlier this month and has demanded to meet with President Bush to discuss the war .\tNNP NNP VBD VBG NNS IN NNP RBR DT NN CC VBZ VBN TO VB IN NNP NNP TO VB DT NN .\nDuring his radio address Saturday , the president appealed for Americans to be patient with the military mission in Iraq .\tIN PRP$ NN NN NNP , DT NN VBD IN NNS TO VB JJ IN DT JJ NN IN NNP .\nColombia 's Constitutional Court has approved a law that allows presidents to serve more than one term , which could pave the way for the current president to run again .\tNNP POS NNP NNP VBZ VBN DT NN WDT VBZ NNS TO VB JJR IN CD NN , WDT MD VB DT NN IN DT JJ NN TO VB RB .\nThe decision from the country 's highest court came Wednesday .\tDT NN IN DT NN POS JJS NN VBD NNP .\nColombian President Alvaro Uribe must wait for the court to decide on another measure that sets the rules for incumbents before his name can appear on the ballot for elections set for May .\tJJ NNP NNP NNP MD VB IN DT NN TO VB IN DT NN WDT VBZ DT NNS IN NNS IN PRP$ NN MD VB IN DT NN IN NNS VBN IN NNP .\nThe president , who was elected in 2002 , has instituted tough policies against insurgents and drug traffickers .\tDT NN , WP VBD VBN IN CD , VBZ VBN JJ NNS IN NNS CC NN NNS .\nColombia has been mired in four decades of civil war .\tNNP VBZ VBN VBN IN CD NNS IN JJ NN .\nEgypt 's intelligence chief Omar Suleiman met with Hamas leader Khaled Meshaal Tuesday in Cairo for talks on forging a power-sharing deal between Hamas and its political rival Fatah .\tNNP POS NN NN NNP NNP VBD IN NNP NN NNP NNP NNP IN NNP IN NNS IN VBG DT JJ NN IN NNP CC PRP$ JJ NN NNP .\nThe meeting comes just days after Suleiman met with members of a Fatah delegation .\tDT NN VBZ RB NNS IN NNP VBD IN NNS IN DT NNP NN .\nEgypt has been trying to get the two groups to form a unity government , but tensions between the rival factions have been rising , with recent deadly clashes in the West Bank .\tNNP VBZ VBN VBG TO VB DT CD NNS TO VB DT NN NN , CC NNS IN DT JJ NNS VBP VBN VBG , IN JJ JJ NNS IN DT NNP NNP .\nIn the West Bank Tuesday , Palestinian security forces shot and wounded a motorist who they believed was threatening a convoy carrying a senior aide to Palestinian President Mahmoud Abbas .\tIN DT NNP NNP NNP , JJ NN NNS VBD CC VBD DT NN WP PRP VBD VBD VBG DT NN VBG DT JJ NN TO JJ NNP NNP NNP .\nA spokesman for the security forces , Adnan Damiri , said the driver refused orders to move his car away from the convoy carrying Mr. Abbas ' aide , Tayyeb Abel-Rahim .\tDT NN IN DT NN NNS , NNP NNP , VBD DT NN VBD NNS TO VB PRP$ NN RB IN DT NN VBG NNP NNP POS NN , NNP NNP .\nThe spokesman said it was not clear whether the man was posing a deliberate threat .\tDT NN VBD PRP VBD RB JJ IN DT NN VBD VBG DT JJ NN .\nCrude oil prices rose above $ 96 a barrel in Tuesday 's trading .\tJJ NN NNS VBD IN $ CD DT NN IN NNP POS NN .\nThat is a rise of more than $ 2 .\tDT VBZ DT NN IN JJR IN $ CD .\nOil traders say the rising price of oil is partly the result of the falling value of the U.S. dollar .\tNN NNS VBP DT VBG NN IN NN VBZ RB DT NN IN DT VBG NN IN DT NNP NN .\nThe greenback hit a record low compared to the euro Tuesday .\tDT NN VBD DT NN NN VBN TO DT NN NNP .\nOil has traditionally been priced in dollars , so when the value of the dollar falls , it puts upward pressure on the price of crude .\tNNP VBZ RB VBN VBN IN NNS , RB WRB DT NN IN DT NN VBZ , PRP VBZ JJ NN IN DT NN IN NN .\nPalestinian security forces have arrested a Hamas militant long wanted by both the Palestinian Authority and Israel .\tJJ NN NNS VBP VBN DT NNP NN RB VBN IN DT DT JJ NNP CC NNP .\nSenior Palestinian security officials , speaking on the condition of anonymity Friday , said forces captured Ayoub Al-Qawasmi near the West Bank city of Hebron .\tJJ JJ NN NNS , VBG IN DT NN IN NN NNP , VBD NNS VBD NNP NNP IN DT NNP NNP NN IN NNP .\nOfficials said al-Qawasmi has been wanted since 1998 for a series of attacks on Israelis .\tNNS VBD NNP VBZ VBN VBN IN CD IN DT NN IN NNS IN NNS .\nIsrael has also been conducting security sweeps near Hebron in recent days .\tNNP VBZ RB VBN VBG NN NNS IN NNP IN JJ NNS .\nIsraeli forces on Thursday seized a Hamas member of the Palestinian parliament who had recently been released from an Israeli prison .\tJJ NNS IN NNP VBD DT NNP NN IN DT JJ NN WP VBD RB VBN VBN IN DT JJ NN .\nSeparately , the French News Agency ( AFP ) Friday said Israel 's Shin Bet security service released a statement saying 2010 has had the fewest militant attacks against Israel since a Palestinian uprising began a decade ago .\tRB , DT NNP NNP NNP LRB NNP RRB NNP VBD NNP POS NNP NNP NN NN VBN DT NN VBG CD VBZ VBN DT JJS JJ NNS IN NNP IN DT JJ NN VBD DT NN RB .\nBut , the statement also says Hamas leaders in the Gaza Strip have intensified efforts to smuggle in advanced weapons .\tCC , DT NN RB VBZ NNP NNS IN DT NNP NNP VBP VBN NNS TO VB IN JJ NNS .\nBritish Finance Minister Gordon Brown has outlined a series of measures to halt the funding of terrorists .\tNNP NNP NNP NNP NNP VBZ VBN DT NN IN NNS TO VB DT NN IN NNS .\nDuring a speech in London Tuesday , Mr. Brown said the new measures would allow the Treasury to act based on classified intelligence .\tIN DT NN IN NNP NNP , NNP NNP VBD DT JJ NNS MD VB DT NNP TO VB VBN IN JJ NN .\nHe said there should be no safe haven for terrorists nor those who finance them anywhere in the world .\tPRP VBD EX MD VB DT JJ NN IN NNS CC DT WP VB PRP RB IN DT NN .\nBrown said the government measures would be accountable to parliament scrutiny .\tNNP VBD DT NN NNS MD VB JJ TO NN NN .\nPolitical analysts say the speech was designed to bolster Brown 's credentials to succeed Prime Minister Tony Blair , who has said he plans to step down within the next year .\tJJ NNS VBP DT NN VBD VBN TO VB NNP POS NNS TO VB NNP NNP NNP NNP , WP VBZ VBN PRP VBZ TO VB RP IN DT JJ NN .\nThe British government already has tightened several anti-terrorism laws since four British Islamist suicide bombers killed 52 people on London 's transport network last July .\tDT JJ NN RB VBZ VBN JJ NN NNS IN CD JJ NNP NN NNS VBD CD NNS IN NNP POS NN NN JJ NNP .\nThe traditional Christmas shopping season in the U.S. kicked off in surprising fashion this past weekend .\tDT JJ NNP NN NN IN DT NNP VBD RP IN JJ NN DT JJ NN .\nBut , some analysts say the brief spending spree will not be enough to boost retail profits or spare the industry from the weakest holiday sales in decades .\tCC , DT NNS VBP DT JJ NN NN MD RB VB RB TO VB JJ NNS CC VB DT NN IN DT JJS NN NNS IN NNS .\nAs Carolyn Presutti reports , the gains came at the expense of stores that slashed prices to lure shoppers .\tIN NNP NNP VBZ , DT NNS VBD IN DT NN IN NNS WDT VBD NNS TO VB NNS .\nIsraeli troops have shot and killed three Hamas militants in separate incidents along Israel 's border with the Gaza Strip .\tJJ NNS VBP VBN CC VBN CD NNP NNS IN JJ NNS IN NNP POS NN IN DT NNP NNP .\nIn the first incident Wednesday , Israeli soldiers killed two Hamas militants near the Karni cargo crossing .\tIN DT JJ NN NNP , JJ NNS VBD CD NNP NNS IN DT NNP NN VBG .\nHours later , the Israeli military says troops opened fire at several gunmen who approached the border fence near the Erez crossing in northern Gaza .\tNNS RB , DT JJ NN VBZ NNS VBD NN IN JJ NNS WP VBD DT NN NN IN DT NNP VBG IN JJ NNP .\nOne Hamas militant was reported killed and two others were wounded .\tCD NNP NN VBD VBN VBN CC CD NNS VBD VBN .\nIsraeli troops frequently fire at Palestinians who approach Gaza 's border fence to prevent infiltrations and to stop militants from launching rockets into Israel .\tJJ NNS RB VBP IN NNS WP VBP NNP POS NN NN TO VB NNS CC TO VB NNS IN VBG NNS IN NNP .\nHamas seized control of Gaza in mid-June after weeks of fighting with rival Fatah security forces loyal to Palestinian President Mahmoud Abbas .\tNNP VBD NN IN NNP IN NNP IN NNS IN VBG IN JJ NNP NN NNS JJ TO JJ NNP NNP NNP .\nIsrael and the international community support the West Bank-based Palestinian government formed by Mr. Abbas and do not recognize Hamas as a legitimate governing body .\tNNP CC DT JJ NN NN DT NNP JJ JJ NN VBN IN NNP NNP CC VBP RB VB NNP IN DT JJ NN NN .\nA train accident in the Republic of Congo has killed around 60 people and injured hundreds of others .\tDT NN NN IN DT NNP IN NNP VBZ VBN IN CD NNS CC JJ NNS IN NNS .\nOfficials with rail company CFCO say four train cars filled with passengers derailed and plunged into a ravine late on Monday .\tNNS IN NN NN NNP VBP CD NN NNS VBN IN NNS VBN CC VBN IN DT NN RB IN NNP .\nMedia reports say at least 300 people were hurt in the crash .\tNNS NNS VBP IN JJS CD NNS VBD VBN IN DT NN .\nThe accident occurred near the southern coastal city of Pointe Noire .\tDT NN VBD IN DT JJ JJ NN IN NNP NNP .\nThe train was en route to the capital , Brazzaville .\tDT NN VBD IN NN TO DT NN , NNP .\nPakistani officials say gunmen have killed 16 people in two separate attacks in the restive southwest of the country .\tJJ NNS VBP NNS VBP VBN CD NNS IN CD JJ NNS IN DT JJ NN IN DT NN .\nPolice say the first incident took place Saturday in Aab-e-Ghum , a town near the Baluchistan provincial capital of Quetta .\tNNS VBP DT JJ NN VBD NN NNP IN NNP , DT NN IN DT NNP JJ NN IN NNP .\nGunmen stopped a bus , forced some passengers off the vehicle and then killed 10 of them .\tNNS VBD DT NN , VBD DT NNS IN DT NN CC RB VBD CD IN PRP .\nPolice say the victims were all non-ethnic Baluchis from the eastern Punjab province .\tNNS VBP DT NNS VBD DT JJ NNS IN DT JJ NNP NN .\nThe second attack occurred in Quetta , where gunmen killed six people .\tDT JJ NN VBD IN NNP , WRB NNS VBD CD NNS .\nNo group has so far claimed responsibility for the attacks and it was not clear whether they were linked .\tDT NN VBZ RB RB VBN NN IN DT NNS CC PRP VBD RB JJ IN PRP VBD VBN .\nSeparatists have waged a low-level insurgency in Baluchistan for years , seeking more autonomy for the province and a greater share of the profits from its natural resources .\tNNS VBP VBN DT JJ NN IN NNP IN NNS , VBG JJR NN IN DT NN CC DT JJR NN IN DT NNS IN PRP$ JJ NNS .\nThe region is also plagued by sectarian violence .\tDT NN VBZ RB VBN IN JJ NN .\nNepalese journalists staged a protest in the capital , Kathmandu , to demand an end to government censorship .\tJJ NNS VBD DT NN IN DT NN , NNP , TO VB DT NN TO NN NN .\nMore than 300 journalists marched through the city Tuesday , waving signs calling for freedom of the press and down with autocracy .\tJJR IN CD NNS VBD IN DT NN NNP , VBG NNS VBG IN NN IN DT NN CC RB IN NN .\nPolice did not break up the rally or make any arrests , as in previous protests .\tNNS VBD RB VB RP DT NN CC VB DT NNS , IN IN JJ NNS .\nNepal 's King Gyanendra dismissed the government on February 1 , suspended civil liberties and imposed emergency rule .\tNNP POS NNP NNP VBD DT NN IN NNP CD , VBN JJ NNS CC VBN NN NN .\nThe Federation of Nepalese Journalists ( FNJ ) says at least 13 journalists have been detained since then .\tDT NNP IN JJ NNPS LRB NNP RRB VBZ IN JJS CD NNS VBP VBN VBN IN RB .\nThe head of the organization says its members are going to fight until complete press freedom is restored in the country .\tDT NN IN DT NN VBZ PRP$ NNS VBP VBG TO VB IN JJ NN NN VBZ VBN IN DT NN .\nKing Gyanendra said he made the power grab in order to subdue increasingly violent Maoist rebels .\tNNP NNP VBD PRP VBD DT NN NN IN NN TO VB RB JJ NNP NNS .\nU.N. humanitarian chief Jan Egeland says he may halt aid to the western Darfur region of Sudan if violence there continues to escalate .\tNNP JJ NN NNP NNP VBZ PRP MD VB NN TO DT JJ NNP NN IN NNP IN NN RB VBZ TO VB .\nMr. Egeland told reporters at U.N. headquarters in Geneva Wednesday that the rising violence in the Darfur region has put aid workers at risk .\tNNP NNP VBD NNS IN NNP NN IN NNP NNP IN DT VBG NN IN DT NNP NN VBZ VBN NN NNS IN NN .\nHe says if the situation worsens , they may not be able to continue the humanitarian operation for the 2.5 million people in the region who require assistance .\tPRP VBZ IN DT NN VBZ , PRP MD RB VB JJ TO VB DT JJ NN IN DT CD CD NNS IN DT NN WP VBP NN .\nMr. Egeland says the situation has gotten so serious , the aid could stop within a day .\tNNP NNP VBZ DT NN VBZ VBN RB JJ , DT NN MD VB IN DT NN .\nEarlier this week , special U.N. advisor Juan Mendez said violence was continuing in Darfur despite the claims of the Sudanese government .\tRBR DT NN , JJ NNP NN NNP NNP VBD NN VBD VBG IN NNP IN DT NNS IN DT JJ NN .\nThe fighting in Darfur pits rebels against government-backed Arab militia and has sent hundreds of thousands of people fleeing into Chad .\tDT NN IN NNP NNS NNS IN JJ JJ NN CC VBZ VBN NNS IN NNS IN NNS VBG IN NNP .\nFormer South African Deputy President Jacob Zuma has held a fundraising rally on the eve of the verdict in his high-profile rape trial .\tJJ NNP NNP NNP NNP NNP NNP VBZ VBN DT JJ NN IN DT NN IN DT NN IN PRP$ JJ NN NN .\nThousands of supporters attended a concert in the Johannesburg suburb of Soweto for the 64-year-old anti-apartheid veteran .\tNNS IN NNS VBD DT NN IN DT NNP NN IN NNP IN DT JJ JJ NN .\nZuma is accused of raping a 31-year-old H.I.V. positive woman who is a longtime family friend .\tNNP VBZ VBN IN VBG DT JJ NNP JJ NN WP VBZ DT JJ NN NN .\nHe claims the sex was consensual .\tPRP VBZ DT NN VBD JJ .\nThe trial has drawn widespread interest across South Africa and Monday 's verdict ( at 700 UTC ) is scheduled to be broadcast live on television .\tDT NN VBZ VBN JJ NN IN NNP NNP CC NNP POS NN LRB IN CD NNP RRB VBZ VBN TO VB VBN RB IN NN .\nThe three-month trial has focused attention on South Africa 's high incidence of rape and H.I.V. infection .\tDT JJ NN VBZ VBN NN IN NNP NNP POS JJ NN IN NN CC NNP NN .\nThe 64-year-old Zuma was once considered a strong contender to succeed President Thabo Mbeki , who fired him because of corruption-related accusations last year .\tDT JJ NNP VBD RB VBN DT JJ NN TO VB NNP NNP NNP , WP VBD PRP IN IN JJ NNS JJ NN .\nZuma is due to stand trial on corruption charges in July .\tNNP VBZ JJ TO VB NN IN NN NNS IN NNP .\nRussian lawmakers have passed a sweeping new anti-terrorism bill that would allow the military to attack planes and ships used in terrorist acts , even if hostages are aboard .\tJJ NNS VBP VBN DT JJ JJ JJ NN WDT MD VB DT NN TO VB NNS CC NNS VBN IN JJ NNS , RB IN NNS VBP RB .\nThe 450-seat lower house of parliament , or Duma , overwhelmingly approved the legislation by a vote of 423-1 , Sunday .\tDT JJ JJR NN IN NN , CC NNP , RB VBD DT NN IN DT NN IN CD , NNP .\nThe bill now goes to the upper house of parliament , where approval is expected , after which it would be signed into law by Russian President Vladimir Putin .\tDT NN RB VBZ TO DT JJ NN IN NN , WRB NN VBZ VBN , IN WDT PRP MD VB VBN IN NN IN JJ NNP NNP NNP .\nThe legislation defines terrorism and what constitutes a terrorist act , and outlines procedures for carrying out counter-terrorism operations within and outside Russian territory .\tDT NN VBZ NN CC WP VBZ DT JJ NN , CC VBZ NNS IN VBG RP NN NNS IN CC IN JJ NN .\nThe proposed law also would allow Russian authorities to monitor telephone conversations and control electronic communications for security reasons .\tDT VBN NN RB MD VB JJ NNS TO VB NN NNS CC VB JJ NNS IN NN NNS .\nSix Arab states on the Persian Gulf are considering a proposal to invite Iran to join in declaring the oil-rich region a nuclear-free zone .\tCD JJ NNS IN DT NNP NNP VBP VBG DT NN TO VB NNP TO VB IN VBG DT JJ NN DT JJ NN .\nLeaders of Bahrain , Kuwait , Oman , Qatar and Saudi Arabia joined UAE officials in Abu Dhabi Sunday under tight security for the two-day meeting .\tNNS IN NNP , NNP , NNP , NNP CC NNP NNP VBD NNP NNS IN NNP NNP NNP IN JJ NN IN DT JJ NN .\nBefore the summit , the Gulf Cooperation Council 's secretary-general ( Abdul Rahman al-Attiya ) said the group trusts Iran , but wants to ensure that a nuclear power plant is not built close to the waters of member states .\tIN DT NN , DT NNP NNP NNP POS NN LRB NNP NNP NNP RRB VBD DT NN VBZ NNP , CC VBZ TO VB IN DT JJ NN NN VBZ RB VBN RB TO DT NNS IN NN NNS .\nIran is under intense international pressure to halt work on its suspect nuclear fuel program and allow inspectors full access to its nuclear sites .\tNNP VBZ IN JJ JJ NN TO VB NN IN PRP$ JJ JJ NN NN CC VB NNS JJ NN TO PRP$ JJ NNS .\nThe United States accuses Tehran of secretly trying to develop an atomic bomb , but Iran says its program is aimed at developing electricity .\tDT NNP NNPS VBZ NNP IN RB VBG TO VB DT JJ NN , CC NNP VBZ PRP$ NN VBZ VBN IN VBG NN .\nThe Bush administration 's top economic advisors say immigration benefits native-born workers in the United States .\tDT NNP NN POS JJ JJ NNS VBP NN NNS JJ NNS IN DT NNP NNPS .\nA report issued Tuesday , by the President 's Council of Economic Advisors also says immigrants make up more than 15 percent of the U.S. workforce , and they pay more in taxes than they use in benefits .\tDT NN VBN NNP , IN DT NNP POS NNP IN NNP NNPS RB VBZ NNS VBP RP RBR IN CD NN IN DT NNP NN , CC PRP VBP RBR IN NNS IN PRP VBP IN NNS .\nImmigrants are concentrated in the lowest and highest economic levels - those without a high school diploma , and those who hold a doctorate degree .\tNNS VBP VBN IN DT JJS CC JJS JJ NNS IN DT IN DT JJ NN NN , CC DT WP VBP DT JJ NN .\nFierce political debates have been going on in the United States over how to cope with the estimated 12 million people who have already migrated here illegally .\tJJ JJ NNS VBP VBN VBG IN IN DT NNP NNPS IN WRB TO VB IN DT VBN CD CD NNS WP VBP RB VBN RB RB .\nCongress and the Bush administration are also haggling over who should be allowed to immigrate in the future .\tNNP CC DT NNP NN VBP RB VBG IN WP MD VB VBN TO VB IN DT NN .\nThe U.S. military says coalition forces killed between 15 to 20 militants in the past two days in Sangin district , of the southern Afghan province of Helmand .\tDT NNP NN VBZ NN NNS VBN IN CD CC CD NNS IN DT JJ CD NNS IN NNP NN , IN DT JJ JJ NN IN NNP .\nA statement says the militants were carrying assault rifles and grenade launchers .\tDT NN VBZ DT NNS VBD VBG NN NNS CC NN NNS .\nThe violence continued Monday , with two suicide attacks and a roadside bomb blast .\tDT NN VBD NNP , IN CD NN NNS CC DT NN NN NN .\nLocal officials say a suspected Taleban suicide attacker in a car exploded a bomb near a coalition convoy in Uruzgan province .\tJJ NNS VBP DT JJ NNP NN NN IN DT NN VBD DT NN IN DT NN NN IN NNP NN .\nThe attacker died , and one soldier and one civilian were hurt .\tDT NN VBD , CC CD NN CC CD JJ VBD VBN .\nAnother suicide attacker blew up his car near an Afghan army convoy in Helmand province , killing the attacker but hurting no one else .\tDT NN NN VBD RP PRP$ NN IN DT JJ NN NN IN NNP NN , VBG DT NN CC VBG DT NN RB .\nMeanwhile , a bomb exploded near a convoy of coalition forces traveling along a highway in southern Kandahar province , injuring two Canadian soldiers .\tRB , DT NN VBD IN DT NN IN NN NNS VBG IN DT NN IN JJ NNP NN , VBG CD JJ NNS .\nViolence has intensified in Afghanistan in recent months , as NATO builds up troop numbers in the restive south .\tNN VBZ VBN IN NNP IN JJ NNS , IN NNP VBZ RP NN NNS IN DT JJ NN .\nU.S. automaker Ford unveils its latest attempt to stem North American losses on Monday .\tNNP NN NNP VBZ PRP$ JJS NN TO VB JJ JJ NNS IN NNP .\nMedia reports say Ford will cut 25,000 or more jobs over the next four to five years , and close some manufacturing facilities .\tNNS NNS VBP NNP MD VB CD CC JJR NNS IN DT JJ CD CC CD NNS , CC RB DT NN NNS .\nChief Executive Officer William Clay Ford Jr. will announce the new plan , which has been dubbed ' Way Forward . '\tNNP NNP NNP NNP NNP NNP NNP MD VB DT JJ NN , WDT VBZ VBN VBN `` NNP NNP . ``\nIt will be the CEO 's second major restructuring of the company since taking over in 2001 .\tPRP MD VB DT NNP POS JJ JJ NN IN DT NN IN VBG RP IN CD .\nFord is the world 's third-largest automaker .\tNNP VBZ DT NN POS JJ NN .\nIt has endured 10 consecutive years of market-share losses to Asian carmakers , particularly Toyota .\tPRP VBZ VBN CD JJ NNS IN JJ NNS TO JJ NNS , RB NNP .\nSome of its most popular products , such as the Explorer SUV , have seen sales fall dramatically as fuel prices have risen to record levels .\tDT IN PRP$ RBS JJ NNS , JJ IN DT NNP NNP , VBP VBN NNS NN RB IN NN NNS VBP VBN TO NN NNS .\nAfghanistan and Italy have expressed confidence that kidnapped Italian aid worker Clementina Cantoni will be released safely .\tNNP CC NNP VBP VBN NN IN VBN JJ NN NN NNP NNP MD VB VBN RB .\nAfghan Interior Ministry spokesman Lutfullah Mashal told a Kabul news conference Saturday the government has been in regular contact with the kidnappers who seized Ms. Cantoni May 16th and that leaders are optimistic she will be freed .\tJJ NNP NNP NN NNP NNP VBD DT NNP NN NN NNP DT NN VBZ VBN IN JJ NN IN DT NNS WP VBD NNP NNP NNP JJ CC IN NNS VBP JJ PRP MD VB VBN .\nLater , Italian Prime Minister Silvio Berlusconi expressed similar views to journalists after speaking with Italy 's intelligence minister about the case .\tRB , JJ NNP NNP NNP NNP VBD JJ NNS TO NNS IN VBG IN NNP POS NN NN IN DT NN .\nThe statements came a day after Afghan religious leaders issued a fatwa , or religious decree , pledging death to anyone killing a foreigner who is in the country legally .\tDT NNS VBD DT NN IN JJ JJ NNS VBD DT NN , CC JJ NN , VBG NN TO DT VBG DT NN WP VBZ IN DT NN RB .\nMs. Cantoni , who is 32 , has run a Care International food distribution program in Kabul for three years , assisting thousands of widows and orphans .\tNNP NNP , WP VBZ CD , VBZ VBN DT NNP NNP NN NN NN IN NNP IN CD NNS , VBG NNS IN NNS CC NNS .\nA happy event has turned to tragedy at the Beijing Zoo , where officials say a giant panda accidentally crushed and killed her newborn cub .\tDT JJ NN VBZ VBN TO NN IN DT NNP NNP , WRB NNS VBP DT JJ NN RB VBN CC VBN PRP$ JJ NN .\nThe cub was one of two born Friday to 8-year-old mother Yinghua .\tDT NN VBD CD IN CD VBN NNP TO JJ NN NNP .\nBut in what zookeepers say is normal panda behavior , Yinghua abandoned one of the cubs , which has been removed to an incubator in Sichuan province .\tCC IN WP NNS VBP VBZ JJ NN NN , NNP VBD CD IN DT NNS , WDT VBZ VBN VBN TO DT NN IN NNP NN .\nXinhua news agency quoted zoo official Zhang Jingguo saying the mother was looking for the remaining cub in order to nurse it when she rolled over and crushed it early Saturday .\tNNP NN NN VBN NN NN NNP NNP VBG DT NN VBD VBG IN DT VBG NN IN NN TO VB PRP WRB PRP VBD RB CC VBN PRP JJ NNP .\nHe said pandas are known for their poor eyesight .\tPRP VBD NNS VBP VBN IN PRP$ JJ NN .\nPandas are among the world 's most endangered species , with only about 300 living in captivity and 1,600 in the wild .\tNNS VBP IN DT NN POS RBS JJ NNS , IN RB IN CD NN IN NN CC CD IN DT NN .\nThe Beijing Zoo has seven pandas .\tDT NNP NNP VBZ CD NNS .\nGhana plans Friday to repatriate 45 Liberian refugees who were arrested earlier this week at a refugee camp outside the capital , Accra .\tNNP VBZ NNP TO VB CD JJ NNS WP VBD VBN RBR DT NN IN DT NN NN IN DT NN , NNP .\nAuthorities say the refugees found their way illegally into the Gomoa Buduburam Refugee Camp .\tNNS VBP DT NNS VBD PRP$ NN RB IN DT NNP NNP NNP NNP .\nThey are among the 600 refugees rounded up for fueling tensions in the camp with a month-long protest .\tPRP VBP IN DT CD NNS VBN RP IN VBG NNS IN DT NN IN DT JJ NN .\nThe refugees had refused to stop the demonstration against a United Nations-funded program that provides refugees with a free trip and $ 100 to resettle in Liberia .\tDT NNS VBD VBN TO VB DT NN IN DT NNP JJ NN WDT VBZ NNS IN DT JJ NN CC $ CD TO VB IN NNP .\nMany refugees say they would rather settle in another country because they fear persecution at home .\tJJ NNS VBP PRP MD RB VB IN DT NN IN PRP VBP NN IN NN .\nU.N. officials have said large-scale resettlement outside Liberia is not an option , and that these refugees should make an effort to help rebuild their country .\tNNP NNS VBP VBN JJ NN IN NNP VBZ RB DT NN , CC IN DT NNS MD VB DT NN TO VB VB PRP$ NN .\nGhana says 40,000 Liberian refugees remain in the country , even though the Liberian civil war ended in 2003 .\tNNP VBZ CD JJ NNS VBP IN DT NN , RB IN DT JJ JJ NN VBN IN CD .\nIraqi authorities say a suicide bomber has killed at least 25 people outside an Iraqi army recruitment center near the border with Syria .\tJJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN NN NN IN DT NN IN NNP .\nPolice say dozens more people were wounded in the attack in the town of Rabiah , about 10 kilometers east of the Syrian border .\tNNS VBP NNS JJR NNS VBD VBN IN DT NN IN DT NN IN NNP , IN CD NNS RB IN DT JJ NN .\nIn an Internet statement , Abu Musab al-Zarqawi 's terror group , al-Qaida in Iraq , claimed responsibility for the bombing , saying one of their members carried out the attack using an explosives belt .\tIN DT NNP NN , NNP NNP NNP POS NN NN , NNP IN NNP , VBD NN IN DT NN , VBG CD IN PRP$ NNS VBD RP DT NN VBG DT NNS NN .\nIt was not possible to authenticate the claim of responsibility .\tPRP VBD RB JJ TO VB DT NN IN NN .\nIraqi security forces and police are frequent targets of insurgents .\tJJ NN NNS CC NNS VBP JJ NNS IN NNS .\nIn other developments , ousted Iraqi leader Saddam Hussein appeared before the Iraqi Special Tribunal Thursday to answer questions about the repression of a Shi'ite uprising in 1991 .\tIN JJ NNS , JJ JJ NN NNP NNP VBD IN DT JJ NNP NNP NNP TO VB NNS IN DT NN IN DT NNP NN IN CD .\nPalestinian medical officials say two Palestinian children were killed in an explosion in the Gaza Strip that may have been caused by an Israeli tank shell .\tJJ JJ NNS VBP CD JJ NNS VBD VBN IN DT NN IN DT NNP NNP WDT MD VB VBN VBN IN DT JJ NN NN .\nThe medical officials say the children , who were cousins aged 10 and 12 , died in the explosion Wednesday in the northern Gaza Strip .\tDT JJ NNS VBP DT NNS , WP VBD NNS VBN CD CC CD , VBD IN DT NN NNP IN DT JJ NNP NNP .\nThe officials say a young female cousin was critically injured .\tDT NNS VBP DT JJ JJ NN VBD RB VBN .\nThe Israeli military said it fired at rocket launchers in the area .\tDT JJ NN VBD PRP VBD IN NN NNS IN DT NN .\nTuesday , the leaders of Israel and the Palestinian Authority met in Jerusalem to discuss some of the core issues of the Mideast conflict .\tNNP , DT NNS IN NNP CC DT JJ NNP VBD IN NNP TO VB DT IN DT NN NNS IN DT JJ NN .\nIsraeli officials said Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas talked about the status of Jerusalem , Palestinian refugees and final borders .\tJJ NNS VBD NNP NNP NNP NNP CC JJ NNP NNP NNP VBD IN DT NN IN NNP , JJ NNS CC JJ NNS .\nThe International Court of Justice has affirmed a decades-old treaty that granted Colombia three small islands in the Caribbean .\tDT NNP NNP IN NNP VBZ VBN DT JJ NN WDT VBD NNP CD JJ NNS IN DT NNP .\nThe court in The Hague , Netherlands , Thursday said the sovereignty of the islands of San Andres , Providencia and Santa Catalina was settled in the 1928 treaty between Colombia and Nicaragua .\tDT NN IN DT NNP , NNP , NNP VBD DT NN IN DT NNS IN NNP NNP , NNP CC NNP NNP VBD VBN IN DT CD NN IN NNP CC NNP .\nNicaragua had challenged the ownership to the islands , which lie some 220 kilometers off its coast in waters rich in fish and potential oil .\tNNP VBD VBN DT NN TO DT NNS , WDT VBZ DT CD NNS IN PRP$ NN IN NNS JJ IN NN CC JJ NN .\nThe U.N. court is now to take up the question of sovereignty over other areas in the archipelago that are not addressed in the treaty .\tDT NNP NN VBZ RB TO VB RP DT NN IN NN IN JJ NNS IN DT NN WDT VBP RB VBN IN DT NN .\nAmnesty International is denouncing Algeria 's alleged use of torture to obtain information about terrorism from prisoners .\tNNP NNP VBZ VBG NNP POS JJ NN IN NN TO VB NN IN NN IN NNS .\nThe human rights group says Algeria 's intelligence agency , the Department for Information and Security , is using the international ' war on terror ' to perpetuate abuses .\tDT JJ NNS NN VBZ NNP POS NN NN , DT NNP IN NNP CC NNP , VBZ VBG DT JJ `` NN IN NN `` TO VB NNS .\nThe group says detainees are held for months without outside contact and are subject to beatings , electrical shocks and the forced ingestion of dirty water , urine or chemicals .\tDT NN VBZ NNS VBP VBN IN NNS IN JJ NN CC VBP JJ TO NNS , JJ NNS CC DT JJ NN IN JJ NN , NN CC NNS .\nAmnesty also urged foreign governments to not forcibly return Algerians likely to be abused .\tNNP RB VBD JJ NNS TO RB RB VB NNS JJ TO VB VBN .\nAmnesty issued its report Monday one day before Algeria 's President Abdelaziz Bouteflika is to meet British Prime Minister Tony Blair in London .\tNNP VBD PRP$ NN NNP CD NN IN NNP POS NNP NNP NNP VBZ TO VB JJ NNP NNP NNP NNP IN NNP .\nThey are expected to discuss an agreement that would enable Britain to deport Algerian terror suspects .\tPRP VBP VBN TO VB DT NN WDT MD VB NNP TO VB JJ NN NNS .\nThe Algerian Embassy in London declined comment on the Amnesty report .\tDT JJ NN IN NNP VBD NN IN DT NNP NN .\nThe U.S. Treasury Department is putting tight financial restrictions on the Syria-based leader of a group linked to al-Qaida , accused of helping supply terrorists in Iraq .\tDT NNP NNP NNP VBZ VBG JJ JJ NNS IN DT JJ NN IN DT NN VBN TO NNP , VBN IN VBG NN NNS IN NNP .\nThe Treasury announced Thursday it is freezing all assets held by Abu Khalaf under U.S. jurisdiction , and is prohibiting American citizens from doing business with him .\tDT NNP VBD NNP PRP VBZ VBG DT NNS VBN IN NNP NNP IN NNP NN , CC VBZ VBG JJ NNS IN VBG NN IN PRP .\nAccording to the department , Khalaf is a senior leader of al-Qaida in Iraq 's ' facilitation network , ' which controls the flow of resources -- including weapons , money and militants -- from Syria into Iraq .\tVBG TO DT NN , NNP VBZ DT JJ NN IN NNP IN NNP POS `` NN NN , `` WDT VBZ DT NN IN NNS : VBG NNS , NN CC NNS : IN NNP IN NNP .\nA Treasury official , Undersecretary for Terrorism and Financial Intelligence Stuart Levey , said the department will continue to target al-Qaida-linked terrorists who ' threaten the safety of Coalition Forces and the stability of Iraq . '\tDT NNP NN , NNP IN NNP CC NNP NNP NNP NNP , VBD DT NN MD VB TO VB JJ NNS WP `` VBP DT NN IN NN NNS CC DT NN IN NNP . ``\nThe Treasury Department has the authority to impose financial sanctions on foreign businesses and people considered a threat to U.S. national security and foreign policy goals .\tDT NNP NNP VBZ DT NN TO VB JJ NNS IN JJ NNS CC NNS VBD DT NN TO NNP JJ NN CC JJ NN NNS .\nJordan 's largest opposition group says it will boycott the country 's November parliamentary elections .\tNNP POS JJS NN NN VBZ PRP MD VB DT NN POS NNP JJ NNS .\nThe decision late Thursday deals a blow to polls the government hailed as a cornerstone of political reforms .\tDT NN RB NNP VBZ DT NN TO NNS DT NN VBD IN DT NN IN JJ NNS .\nThe powerful Muslim Brotherhood Movement based its decision on the fallout from a new electoral law , which it says will undercut the group 's robust showing in past elections .\tDT JJ NNP NNP NNP VBD PRP$ NN IN DT NN IN DT JJ JJ NN , WDT PRP VBZ MD VB DT NN POS JJ NN IN JJ NNS .\nThe new legislation reduced seats for lawmakers elected from urban areas , where the Brotherhood is popular .\tDT JJ NN VBN NNS IN NNS VBN IN JJ NNS , WRB DT NNP VBZ JJ .\nIt increased seats from rural regions , dominated by pro-government Bedouin tribes .\tPRP VBD NNS IN JJ NNS , VBN IN JJ NNP NNS .\nThe boycott by the country 's largest opposition group will leave it without a voice in parliament .\tDT NN IN DT NN POS JJS NN NN MD VB PRP IN DT NN IN NN .\nKuwait 's Interior Ministry says a suspected Saudi militant has been killed in a lengthy gunbattle with police .\tNNP POS NNP NNP VBZ DT JJ NNP NN VBZ VBN VBN IN DT JJ NN IN NNS .\nAnother militant , with Kuwaiti nationality , was captured , and authorities seized a large cache of weapons , ammunition and explosives in the daytime raid Saturday .\tDT NN , IN JJ NN , VBD VBN , CC NNS VBD DT JJ NN IN NNS , NN CC NNS IN DT JJ NN NNP .\nHouse-to-house searches were continuing in the residential Umm al-Haiman district , south of Kuwait City for several other suspects who fled .\tNN NNS VBD VBG IN DT JJ NNP NNP NN , NN IN NNP NNP IN JJ JJ NNS WP VBD .\nState television carried pictures of the scene , where two security officers also were wounded .\tNN NN VBD NNS IN DT NN , WRB CD NN NNS RB VBD VBN .\nCitizens were warned not to harbor any fugitives and to call police if they saw any suspicious activity .\tNNPS VBD VBN RB TO NN DT NNS CC TO VB NN IN PRP VBD DT JJ NN .\nToday 's incident is the second in less than a week .\tNN POS NN VBZ DT JJ IN JJR IN DT NN .\nA militant and two policemen were killed in a gunfight Monday in Kuwait City .\tDT JJ CC CD NNS VBD VBN IN DT NN NNP IN NNP NNP .\nIsrael 's cabinet is set to vote Sunday on a final go-ahead for this month 's evacuation of Jewish settlers from the Gaza Strip .\tNNP POS NN VBZ VBN TO VB NNP IN DT JJ NN IN DT NN POS NN IN JJ NNS IN DT NNP NNP .\nOfficials say the debate may be prolonged , but Prime Minister Ariel Sharon 's evacuation plan is likely to win final approval .\tNNS VBP DT NN MD VB VBN , CC NNP NNP NNP NNP POS NN NN VBZ JJ TO VB JJ NN .\nThe cabinet is expected to begin by reviewing plans for evacuating the three most isolated settlements in Gaza - Netzarim , Morag and Kfar Darom - a stronghold of those who oppose the withdrawal .\tDT NN VBZ VBN TO VB IN VBG NNS IN VBG DT CD RBS JJ NNS IN NNP IN NNP , NNP CC NNP NNP IN DT NN IN DT WP VBP DT NN .\nFears of violence have increased ahead of the August 15 pullout , since a Jewish militant boarded a bus and shot four Israeli Arabs to death , apparently to stir unrest and draw security forces away from Gaza .\tNNS IN NN VBP VBN RB IN DT NNP CD NN , IN DT JJ NN VBD DT NN CC VBD CD JJ NNS TO NN , RB TO VB NN CC VB NN NNS RB IN NNP .\nIn the West Bank today , Palestinian militants opened fire on an Israeli car near the Jewish settlement of Ateret , north of Jerusalem .\tIN DT NNP NNP NN , JJ NNS VBD NN IN DT JJ NN IN DT JJ NN IN NNP , NN IN NNP .\nAt least two people , including a 10-year-old boy , were wounded .\tIN JJS CD NNS , VBG DT JJ NN , VBD VBN .\nThe United Nations Security Council is extending the mission of the joint U.N.-African Union peacekeeping force in Sudan 's war-torn Darfur region for another year .\tDT NNP NNP NNP NNP VBZ VBG DT NN IN DT JJ NNP NNP VBG NN IN NNP POS JJ NNP NN IN DT NN .\nIn a resolution unanimously adopted Thursday , the council extended the mandate of the force ( UNAMID ) until July 31 , 2010 .\tIN DT NN RB VBD NNP , DT NN VBD DT NN IN DT NN LRB NNP RRB IN NNP CD , CD .\nThe United Nations and African Union are in the final phase of deploying the world 's largest peacekeeping mission in the troubled region .\tDT NNP NNPS CC NNP NNP VBP IN DT JJ NN IN VBG DT NN POS JJS NN NN IN DT JJ NN .\nU.N. officials have said they expect 26,000 soldiers to be in Darfur by the end of this year .\tNNP NNS VBP VBN PRP VBP CD NNS TO VB IN NNP IN DT NN IN DT NN .\nDarfur rebel groups took up arms against Sudan 's government in 2003 , accusing it of neglecting Darfur .\tNNP NN NNS VBD RP NNS IN NNP POS NN IN CD , VBG PRP IN VBG NNP .\nThe United Nations estimates 3,00,000 people have died during the conflict .\tDT NNP NNP VBZ CD NNS VBP VBN IN DT NN .\nSudan 's government gives a much lower figure of 10,000 war-related deaths .\tNNP POS NN VBZ DT RB JJR NN IN CD JJ NNS .\nThe head of the International Committee of the Red Cross has met with President Bush to discuss concerns about detainees held at U.S. facilities in Iraq and Guantanamo Bay , Cuba .\tDT NN IN DT NNP NNP IN DT NNP NNP VBZ VBN IN NNP NNP TO VB NNS IN NNS VBN IN NNP NNS IN NNP CC NNP NNP , NNP .\nRed Cross officials in Geneva say the Monday talks between ICRC President Jakob Kellenberger and Mr. Bush in Washington focused on the humanitarian agency 's concerns regarding U.S. detentions , ICRC relief operations and armed conflicts worldwide .\tNNP NNP NNS IN NNP VBP DT NNP NNS IN NNP NNP NNP NNP CC NNP NNP IN NNP VBD IN DT JJ NN POS NNS VBG NNP NNS , NNP NN NNS CC JJ NNS NN .\nA White House spokesman Tuesday said the president 's meeting with Mr. Kellenberger focused on a wide range of issues , but he did not give details .\tDT NNP NNP NN NNP VBD DT NN POS NN IN NNP NNP VBD IN DT JJ NN IN NNS , CC PRP VBD RB VB NNS .\nThe spokesman said that when the ICRC has concerns , the Bush administration listens .\tDT NN VBD IN WRB DT NNP VBZ NNS , DT NNP NN NNS .\nMr. Kellenberger also met Monday with Secretary of State Condoleezza Rice , and he is scheduled to meet with Defense Secretary Donald Rumsfeld later today .\tNNP NNP RB VBD NNP IN NNP IN NNP NNP NNP , CC PRP VBZ VBN TO VB IN NNP NNP NNP NNP RB NN .\nThe ICRC has been at odds with the Bush administration over the status of prisoners since the 2001 U.S.-led war in Afghanistan .\tDT NNP VBZ VBN IN NNS IN DT NNP NN IN DT NN IN NNS IN DT CD JJ NN IN NNP .\nState media in Guinea say military leaders have put the army on high alert after learning of an alleged plot to overthrow the government .\tNNP NNS IN NNP VBP JJ NNS VBP VBN DT NN IN JJ NN IN VBG IN DT JJ NN TO VB DT NN .\nAn official statement read on television said Captain Moussa ' Dadis ' Camara took the measures after learning that fighters in neighboring countries were planning to attack Guinea .\tDT JJ NN VBN IN NN VBD NNP NNP `` NNPS `` NNP VBD DT NNS IN VBG DT NNS IN JJ NNS VBD VBG TO VB NNP .\nIt said the fighters are financed by drug traffickers who have fled Guinea to avoid arrest .\tPRP VBD DT NNS VBP VBN IN NN NNS WP VBP VBN NNP TO VB NN .\nThe report did not say where the government was getting its information .\tDT NN VBD RB VB WRB DT NN VBD VBG PRP$ NN .\nCamara seized power in December just hours after the death of longtime dictator Lansana Conte .\tNNP VBD NN IN NNP RB NNS IN DT NN IN JJ NN NNP NNP .\nThe military leader quickly suspended the constitution and dismissed the civilian government .\tDT JJ NN RB VBD DT NN CC VBD DT JJ NN .\nHe won public support by vowing to crack down on corruption and drug trafficking .\tPRP VBD JJ NN IN VBG TO VB RP IN NN CC NN NN .\nBut critics such as Human Rights Watch have accused Camara 's forces of restricting political activity and arbitrarily arresting and beating people .\tCC NNS JJ IN NNP NNP NNP VBP VBN NNP POS NNS IN VBG JJ NN CC RB VBG CC VBG NNS .\nThe trial of Saddam Hussein is to resume Monday , but it remains unclear if the former Iraqi leader and his seven co-defendants will appear in court .\tDT NN IN NNP NNP VBZ TO VB NNP , CC PRP VBZ JJ IN DT JJ JJ NN CC PRP$ CD NNS MD VB IN NN .\nSaddam , his co-defendants and his defense team boycotted the last session of the trial , saying they would not return until the new chief judge is replaced .\tNNP , PRP$ NNS CC PRP$ NN NN VBD DT JJ NN IN DT NN , VBG PRP MD RB VB IN DT JJ NN NN VBZ VBN .\nThey say the judge , Rauf Abdel Rahman , is biased against the defendants .\tPRP VBP DT NN , NNP NNP NNP , VBZ VBN IN DT NNS .\nSaddam 's legal team also said they were wrong in earlier reporting that he planned to go on a hunger strike to protest his trial .\tNNP POS JJ NN RB VBD PRP VBD JJ IN JJR NN IN PRP VBD TO VB IN DT NN NN TO VB PRP$ NN .\nThey now say no hunger strike is planned .\tPRP RB VBP DT NN NN VBZ VBN .\nThe former Iraqi dictator and his co-defendants are on trial for the killing of more than 140 Shi'ites , in the village of Dujail , following a 1982 assassination attempt against Saddam .\tDT JJ JJ NN CC PRP$ NNS VBP IN NN IN DT NN IN JJR IN CD NNS , IN DT NN IN NNP , VBG DT CD NN NN IN NNP .\nIsrael 's top general has ordered the army to stop using Palestinian civilians as human shields in arrest raids .\tNNP POS JJ NN VBZ VBN DT NN TO VB VBG JJ NNS IN JJ NNS IN NN NNS .\nThursday 's order from General Dan Halutz came hours after the Israeli Supreme Court ruled that the army 's practice of forcing Palestinian civilians to approach the homes of suspected militants violates international law .\tNNP POS NN IN NNP NNP NNP VBD NNS IN DT JJ NNP NNP VBD IN DT NN POS NN IN VBG JJ NNS TO VB DT NNS IN JJ NNS VBZ JJ NN .\nThe court ruling grew out of a 2002 case brought by Israeli and Palestinian human rights groups , after a Palestinian teenager was forced to knock on the door of a suspected West Bank militant .\tDT NN NN VBD IN IN DT CD NN VBN IN JJ CC JJ JJ NNS NNS , IN DT JJ NN VBD VBN TO VB IN DT NN IN DT JJ NNP NNP NN .\nThe teenager was shot dead when gunfire erupted moments later .\tDT NN VBD VBN JJ WRB NN VBD NNS RB .\nIn August of 2002 , the court issued a temporary injunction against the practice .\tIN NNP IN CD , DT NN VBD DT JJ NN IN DT NN .\nBut a 2004 photograph of a Palestinian boy strapped to the front of an Israeli jeep under attack by Palestinian stone-throwers prompted human rights activists to complain the army was ignoring the court order .\tCC DT CD NN IN DT JJ NN VBN TO DT NN IN DT JJ NN IN NN IN JJ NNS VBD JJ NNS NNS TO VB DT NN VBD VBG DT NN NN .\nThe judge at the trial of Saddam Hussein has thrown out one of the former Iraqi leader 's co-defendants amid fierce arguments over the veracity of prosecution witnesses .\tDT NN IN DT NN IN NNP NNP VBZ VBN RP CD IN DT JJ JJ NN POS NNS IN JJ NNS IN DT NN IN NN NNS .\nThe judge in Baghdad removed defendant Barzan al-Tikriti from the courtroom and threatened to keep him in a cell after a heated exchange of words between the two men Wednesday .\tDT NN IN NNP VBD NN NNP NNP IN DT NN CC VBD TO VB PRP IN DT NN IN DT JJ NN IN NNS IN DT CD NNS NNP .\nEarlier , the defense team accused a prosecution witness of perjury and presented a video disc , claiming it contained a contradictory statement from a witness who testified against Saddam late last year .\tRB , DT NN NN VBD DT NN NN IN NN CC VBD DT NN NN , VBG PRP VBD DT JJ NN IN DT NN WP VBD IN NNP RB JJ NN .\nThe footage shown in the court shows the witness saying there was no attempt to kill Saddam in Dujail in 1982 , only celebratory firing to mark the former dictator 's visit .\tDT NN VBN IN DT NN VBZ DT NN VBG EX VBD DT NN TO VB NNP IN NNP IN CD , RB JJ NN TO VB DT JJ NN POS NN .\nSaddam and seven co-defendants are facing charges of crimes against humanity in connection to the deaths of 148 Shi'ite Muslims following the failed attempt on his life .\tNNP CC CD NNS VBP VBG NNS IN NNS IN NN IN NN TO DT NNS IN CD NNP NNPS VBG DT JJ NN IN PRP$ NN .\nChina says a recent outbreak of avian flu in the northwestern Xinjiang region has killed nearly 5,000 birds .\tNNP VBZ DT JJ NN IN JJ NN IN DT JJ NNP NN VBZ VBN RB CD NNS .\nOfficial Chinese news agency Xinhua reported Friday that authorities killed 29,000 birds to control the outbreak in the city of Turpan .\tJJ JJ NN NN NNP VBD NNP IN NNS VBD CD NNS TO VB DT NN IN DT NN IN NNP .\nOn Thursday , a government laboratory confirmed the presence in poultry of the deadly H5N1 strain of the virus .\tIN NNP , DT NN NN VBD DT NN IN NN IN DT JJ NNP NN IN DT NN .\nBird flu outbreaks were reported also this week in Bangladesh , Israel and Vietnam .\tNN NN NNS VBD VBN RB DT NN IN NNP , NNP CC NNP .\nThe World Health Organization says the virus has killed more than 200 people worldwide .\tDT NNP NNP NNP VBZ DT NN VBZ VBN JJR IN CD NNS JJ .\nThe U.S. government says it has distributed nearly $ 690 million in direct aid to the victims of Hurricane Katrina .\tDT NNP NN VBZ PRP VBZ VBN RB $ CD CD IN JJ NN TO DT NNS IN NNP NNP .\nThe Federal Emergency Management Agency says it has distributed the money among more than 3,30,000 families displaced by the catastrophic storm .\tDT NNP NNP NNP NNP VBZ PRP VBZ VBN DT NN IN JJR IN CD NNS VBN IN DT JJ NN .\nThe majority of the money ( $ 551 million ) has been handed out to 2,68,000 families in the hard-hit state of Louisiana .\tDT NN IN DT NN LRB $ CD CD RRB VBZ VBN VBN RP TO CD NNS IN DT JJ NN IN NNP .\nMuch of the money has been given out in the form of $ 2,000 grants .\tNN IN DT NN VBZ VBN VBN RP IN DT NN IN $ CD NNS .\nFEMA has been criticized for what many say was a slow response to Hurricane Katrina .\tNNP VBZ VBN VBN IN WP NN VBP VBD DT JJ NN TO NNP NNP .\nMichael Brown , the agency 's director , was removed this week from heading relief operations in the Gulf Coast .\tNNP NNP , DT NN POS NN , VBD VBN DT NN IN VBG NN NNS IN DT NNP NNP .\nU.S. officials say differences remain in talks with India on a civilian nuclear cooperation agreement , but there is hope a final deal can be reached before President Bush visits New Delhi next month .\tNNP NNS VBP NNS VBP IN NNS IN NNP IN DT JJ JJ NN NN , CC EX VBZ NN DT JJ NN MD VB VBN IN NNP NNP VBZ NNP NNP JJ NN .\nThe U.S. Embassy released a statement Saturday expressing hope for an agreement after Washington 's negotiator , Nicholas Burns , left New Delhi following three days of talks .\tDT NNP NNP VBD DT NN NNP VBG NN IN DT NN IN NNP POS NN , NNP NNP , VBD NNP NNP VBG CD NNS IN NNS .\nWashington has offered to provide India with civilian nuclear technology , but wants assurances that the Indian government will not use the technology for military purposes .\tNNP VBZ VBN TO VB NNP IN JJ JJ NN , CC VBZ NNS IN DT JJ NN MD RB VB DT NN IN JJ NNS .\nPresident Bush has said he wants to return from India with a final nuclear cooperation pact so he can begin work on getting approval from Congress .\tNNP NNP VBZ VBN PRP VBZ TO VB IN NNP IN DT JJ JJ NN NN IN PRP MD VB NN IN VBG NN IN NNP .\nMr. Bush 's national security advisor , Stephen Hadley , said Friday that if no deal is reached before the visit , negotiations will continue after the president 's trip .\tNNP NNP POS JJ NN NN , NNP NNP , VBD NNP IN IN DT NN VBZ VBN IN DT NN , NNS MD VB IN DT NN POS NN .\nSyria 's ambassador to Washington says his country has halted military and intelligence cooperation with the United States , because of what he calls unjust American allegations .\tNNP POS NN TO NNP VBZ PRP$ NN VBZ VBN JJ CC NN NN IN DT NNP NNPS , IN IN WP PRP VBZ JJ JJ NNS .\nIn an interview with the New York Times published Monday , Ambassador Imad Moustapha said that in the last 10 days , Damascus severed all links with the U.S. military and Central Intelligence Agency .\tIN DT NN IN DT NNP NNP NNP VBD NNP , NNP NNP NNP VBD IN IN DT JJ CD NNS , NNP VBD DT NNS IN DT NNP NN CC NNP NNP NNP .\nMr. Moustapha said he believes the Bush administration has decided to escalate the situation with Syria , despite steps it has taken against insurgents in Iraq and the pullout of its troops from Lebanon .\tNNP NNP VBD PRP VBZ DT NNP NN VBZ VBN TO VB DT NN IN NNP , IN NNS PRP VBZ VBN IN NNS IN NNP CC DT NN IN PRP$ NNS IN NNP .\nBush administration officials have frequently complained that Syria is not doing enough to stem the flow of men and money to the insurgency in Iraq .\tNNP NN NNS VBP RB VBN IN NNP VBZ RB VBG RB TO VB DT NN IN NNS CC NN TO DT NN IN NNP .\nThe New York Times says Syria 's action has prompted high-level debate within the Bush administration about steps that might be taken against the Syrian government .\tDT NNP NNP NNP VBZ NNP POS NN VBZ VBN JJ NN IN DT NNP NN IN NNS WDT MD VB VBN IN DT JJ NN .\nAfghan security forces have stopped a suspected al-Qaida assassination attempt on a provincial governor in northern Afghanistan .\tJJ NN NNS VBP VBN DT JJ NNP NN NN IN DT JJ NN IN JJ NNP .\nPolice say bodyguards arrested an alleged al-Qaida member when he entered the home of the governor of Balkh province , Atta Mohammed , with explosives hidden under his clothes .\tNNS VBP NNS VBN DT JJ NNP NN WRB PRP VBD DT NN IN DT NN IN NNP NN , NNP NNP , IN NNS VBN IN PRP$ NNS .\nPolice say the man is from the African nation of Mali , and they suspect he intended to blow himself up when he was with the governor .\tNNS VBP DT NN VBZ IN DT JJ NN IN NNP , CC PRP VBP PRP VBD TO VB PRP RP WRB PRP VBD IN DT NN .\nAtta Mohammed was a senior leader in the Northern Alliance , which teamed up with U.S.-led international forces to oust the Taleban in 2001 .\tNNP NNP VBD DT JJ NN IN DT NNP NNP , WDT VBD RP IN JJ JJ NNS TO VB DT NNP IN CD .\nIn eastern Afghanistan , a U.S. soldier was killed in an attack on his patrol near Mihtarlam , in Laghman province .\tIN JJ NNP , DT NNP NN VBD VBN IN DT NN IN PRP$ NN IN NNP , IN NNP NN .\nA U.S. statement says the patrol returned fire and called in air support but the attackers fled .\tDT NNP NN VBZ DT NN VBD NN CC VBN IN NN NN CC DT NNS VBD .\nMore people in divided Kashmir are being allowed to use the five crossing points opened by India and Pakistan on the military Line of Control after the October earthquake .\tJJR NNS IN VBN NNP VBP VBG VBN TO VB DT CD VBG NNS VBN IN NNP CC NNP IN DT JJ NN IN NNP IN DT NNP NN .\nEarlier , the openings were used mainly for exchanging materials for quake relief .\tRB , DT NNS VBD VBN RB IN VBG NNS IN NN NN .\nThe crossing points have been opened to civilians so they can know the welfare of relatives on the other side .\tDT VBG NNS VBP VBN VBN TO NNS IN PRP MD VB DT NN IN NNS IN DT JJ NN .\nOn Thursday , 25 people crossed the Line of Control , in the Uri sector of Indian Kashmir .\tIN NNP , CD NNS VBD DT NN IN NNP , IN DT NNP NN IN JJ NNP .\nIndian officials say 20 went to the Pakistani side , while five people returned home to the Indian side .\tJJ NNS VBP CD VBD TO DT JJ NN , IN CD NNS VBD NN TO DT JJ NN .\nThose crossing to the Pakistani side included four residents of Pakistani Kashmir who had been stranded in Indian Kashmir .\tDT VBG TO DT JJ NN VBD CD NNS IN JJ NNP WP VBD VBN VBN IN JJ NNP .\nThe effort to reunite separated Kashmiri families by opening the de~facto border is seen as an offshoot of the almost two-year-old peace process between Pakistan and India .\tDT NN TO VB JJ JJ NNS IN VBG DT JJ NN VBZ VBN IN DT NN IN DT RB JJ NN NN IN NNP CC NNP .\nIran has barred journalists from the Cable News Network from the country , following a mistaken translation that quoted Iran 's president as saying his country has a right to build nuclear weapons .\tNNP VBZ VBN NNS IN DT NNP NNP NNP IN DT NN , VBG DT JJ NN WDT VBD NNP POS NN IN VBG PRP$ NN VBZ DT NN TO VB JJ NNS .\nPresident Mahmoud Ahmadinejad told reporters Saturday that his nation has a right to pursue nuclear technology .\tNNP NNP NNP VBD NNS NNP IN PRP$ NN VBZ DT NN TO VB JJ NN .\nBut CNN 's translator used the word ' weapon ' instead .\tCC NNP POS NN VBD DT NN `` NN `` RB .\nCNN has apologized for the error .\tNNP VBZ VBN IN DT NN .\nBut Iran says the network 's reporters and stringers are barred until further notice .\tCC NNP VBZ DT NN POS NNS CC NNS VBP VBN IN JJ NN .\nThe network said Monday it has not been officially notified of the ban .\tDT NN VBD NNP PRP VBZ RB VBN RB VBN IN DT NN .\nCNN does not have a permanent correspondent in Iran .\tNNP VBZ RB VB DT JJ NN IN NNP .\nBut reporters have occasionally been allowed to enter the country for brief assignments .\tCC NNS VBP RB VBN VBN TO VB DT NN IN JJ NNS .\nElco Industries Inc. said it expects net income in the year ending June 30 , 1990 , to fall below a recent analyst 's estimate of $ 1.65 a share .\tNNP NNPS NNP VBD PRP VBZ NN NN IN DT NN VBG NNP CD , CD , TO VB IN DT JJ NN POS NN IN $ CD DT NN .\nThe Rockford , Ill. , maker of fasteners also said it expects to post sales in the current fiscal year that are ' slightly above ' fiscal 1989 sales of $ 155 million .\tDT NNP , NNP , NN IN NNS RB VBD PRP VBZ TO VB NNS IN DT JJ JJ NN WDT VBP `` RB IN `` JJ CD NNS IN $ CD CD .\nThe company said its industrial unit continues to face margin pressures and lower demand .\tDT NN VBD PRP$ JJ NN VBZ TO VB NN NNS CC JJR NN .\nIn fiscal 1989 , Elco earned $ 7.8 million , or $ 1.65 a share .\tIN JJ CD , NNP VBD $ CD CD , CC $ CD DT NN .\nThe company 's stock fell $ 1.125 to $ 13.625 in over-the-counter trading yesterday .\tDT NN POS NN VBD $ CD TO $ CD IN JJ NN NN .\nCharacterized by large and well-developed agricultural , mining , manufacturing , and service sectors , Brazil 's economy outweighs that of all other South American countries , and Brazil is expanding its presence in world markets .\tVBN IN JJ CC JJ JJ , NN , NN , CC NN NNS , NNP POS NN VBZ IN IN DT JJ JJ JJ NNS , CC NNP VBZ VBG PRP$ NN IN NN NNS .\nSince 2003 , Brazil has steadily improved its macroeconomic stability , building up foreign reserves , and reducing its debt profile by shifting its debt burden toward real denominated and domestically held instruments .\tIN CD , NNP VBZ RB VBN PRP$ JJ NN , VBG RP JJ NNS , CC VBG PRP$ NN NN IN VBG PRP$ NN NN IN JJ VBN CC RB VBN NNS .\nIn 2008 , Brazil became a net external creditor and two ratings agencies awarded investment grade status to its debt .\tIN CD , NNP VBD DT JJ JJ NN CC CD NNS NNS VBN NN NN NN TO PRP$ NN .\nAfter record growth in 2007 and 2008 , the onset of the global financial crisis hit Brazil in September 2008 .\tIN NN NN IN CD CC CD , DT NN IN DT JJ JJ NN VBD NNP IN NNP CD .\nBrazil experienced two quarters of recession , as global demand for Brazil 's commodity-based exports dwindled and external credit dried up .\tNNP VBD CD NNS IN NN , IN JJ NN IN NNP POS JJ NNS VBD CC JJ NN VBD RP .\nHowever , Brazil was one of the first emerging markets to begin a recovery .\tRB , NNP VBD CD IN DT JJ VBG NNS TO VB DT NN .\nConsumer and investor confidence revived and GDP growth returned to positive in 2010 , boosted by an export recovery .\tNN CC NN NN VBN CC NN NN VBD TO JJ IN CD , VBN IN DT NN NN .\nBrazil 's strong growth and high interest rates make it an attractive destination for foreign investors .\tNNP POS JJ NN CC JJ NN NNS VBP PRP DT JJ NN IN JJ NNS .\nLarge capital inflows over the past year have contributed to the rapid appreciation of its currency and led the government to raise taxes on some foreign investments .\tJJ NN NNS IN DT JJ NN VBP VBN TO DT JJ NN IN PRP$ NN CC VBD DT NN TO VB NNS IN DT JJ NNS .\nPresident Dilma ROUSSEFF has pledged to retain the previous administration 's commitment to inflation targeting by the Central Bank , a floating exchange rate , and fiscal restraint .\tNNP NNP NNP VBZ VBN TO VB DT JJ NN POS NN TO NN VBG IN DT NNP NNP , DT JJ NN NN , CC JJ NN .\nGreece achieved independence from the Ottoman Empire in 1829 .\tNNP VBD NN IN DT NNP NNP IN CD .\nDuring the second half of the 19th century and the first half of the 20th century , it gradually added neighboring islands and territories , most with Greek-speaking populations .\tIN DT JJ NN IN DT JJ NN CC DT JJ NN IN DT JJ NN , PRP RB VBD JJ NNS CC NNS , JJS IN JJ NNS .\nIn World War II , Greece was first invaded by Italy ( 1940 ) and subsequently occupied by Germany ( 1941 - 44 ) ; fighting endured in a protracted civil war between supporters of the king and other anti-Communists and Communist rebels .\tIN NNP NNP NNP , NNP VBD JJ VBN IN NNP LRB CD RRB CC RB VBN IN NNP LRB CD : CD RRB ; VBG VBN IN DT JJ JJ NN IN NNS IN DT NN CC JJ NNS CC JJ NNS .\nFollowing the latter 's defeat in 1949 , Greece joined NATO in 1952 .\tVBG DT NN POS NN IN CD , NNP VBD NNP IN CD .\nIn 1967 , a group of military officers seized power , establishing a military dictatorship that suspended many political liberties and forced the king to flee the country .\tIN CD , DT NN IN JJ NNS VBD NN , VBG DT JJ NN WDT VBD JJ JJ NNS CC VBD DT NN TO VB DT NN .\nIn 1974 , democratic elections and a referendum created a parliamentary republic and abolished the monarchy .\tIN CD , JJ NNS CC DT NN VBD DT JJ NN CC VBD DT NN .\nIn 1981 , Greece joined the EC ( now the EU ) ; it became the 12th member of the European Economic and Monetary Union in 2001 .\tIN CD , NNP VBD DT NNP LRB RB DT NNP RRB ; PRP VBD DT JJ NN IN DT JJ NNP CC NNP NNP IN CD .\nIn 2010 , the prospect of a Greek default on its euro-denominated debt created severe strains within the EMU and raised the question of whether a member country might voluntarily leave the common currency or be removed .\tIN CD , DT NN IN DT JJ NN IN PRP$ JJ NN VBN JJ NNS IN DT NNP CC VBD DT NN IN IN DT NN NN MD RB VB DT JJ NN CC VB VBN .\nTokelau 's small size ( three villages ) , isolation , and lack of resources greatly restrain economic development and confine agriculture to the subsistence level .\tNNP POS JJ NN LRB CD NNS RRB , NN , CC NN IN NNS RB VB JJ NN CC NN NN TO DT NN NN .\nThe people rely heavily on aid from New Zealand - about $ 10 million annually in 2008 and 2009 - to maintain public services .\tDT NNS VBP RB IN NN IN NNP NNP IN IN $ CD CD RB IN CD CC CD : TO VB JJ NNS .\nNew Zealand 's support amounts to 80 % of Tokelau 's recurrent government budget .\tNNP NNP POS NN NNS TO CD NN IN NNP POS JJ NN NN .\nAn international trust fund , currently worth nearly US $ 32 million , was established in 2004 to provide Tokelau an independent source of revenue .\tDT JJ NN NN , RB JJ RB NNP $ CD CD , VBD VBN IN CD TO VB NNP DT JJ NN IN NN .\nThe principal sources of revenue come from sales of copra , postage stamps , souvenir coins , and handicrafts .\tDT JJ NNS IN NN VBN IN NNS IN NN , NN NNS , NN NNS , CC NNS .\nMoney is also remitted to families from relatives in New Zealand .\tNN VBZ RB VBN TO NNS IN NNS IN NNP NNP .\nEastern Turkmenistan for centuries formed part of the Persian province of Khurasan ; in medieval times Merv ( today known as Mary ) was one of the great cities of the Islamic world and an important stop on the Silk Road .\tNNP NNP IN NNS VBN NN IN DT NNP NN IN NNP ; IN JJ NNS NNP LRB NN VBN IN NNP RRB VBD CD IN DT JJ NNS IN DT JJ NN CC DT JJ NN IN DT NNP NNP .\nAnnexed by Russia between 1865 and 1885 , Turkmenistan became a Soviet republic in 1924 .\tVBN IN NNP IN CD CC CD , NNP VBD DT JJ NN IN CD .\nIt achieved independence upon the dissolution of the USSR in 1991 .\tPRP VBD NN IN DT NN IN DT NNP IN CD .\nExtensive hydrocarbon / natural gas reserves could prove a boon to this underdeveloped country once extraction and delivery projects are expanded .\tJJ NN CC JJ NN NNS MD VB DT NN TO DT JJ NN RB NN CC NN NNS VBP VBN .\nThe Turkmen Government is actively working to diversify its gas export routes beyond the still dominant Russian pipeline network .\tDT NNP NNP VBZ RB VBG TO VB PRP$ NN NN NNS IN DT RB JJ JJ NN NN .\nIn 2010 , new gas export pipelines that carry Turkmen gas to China and to northern Iran began operating , effectively ending the Russian monopoly on Turkmen gas exports .\tIN CD , JJ NN NN NNS WDT VBP JJ NN TO NNP CC TO JJ NNP VBD VBG , RB VBG DT JJ NN IN JJ NN NNS .\nPresident for Life Saparmurat NYYAZOW died in December 2006 , and Turkmenistan held its first multi-candidate presidential election in February 2007 .\tNNP IN NNP NNP NNP VBD IN NNP CD , CC NNP VBD PRP$ JJ JJ JJ NN IN NNP CD .\nGurbanguly BERDIMUHAMEDOW , a deputy cabinet chairman under NYYAZOW , emerged as the country 's new president .\tNNP NNP , DT NN NN NN IN NNP , VBD IN DT NN POS JJ NN .\nLike many other South Pacific island nations , the Cook Islands ' economic development is hindered by the isolation of the country from foreign markets , the limited size of domestic markets , lack of natural resources , periodic devastation from natural disasters , and inadequate infrastructure .\tIN JJ JJ NNP NNP NN NNS , DT NNP NNP POS JJ NN VBZ VBN IN DT NN IN DT NN IN JJ NNS , DT JJ NN IN JJ NNS , NN IN JJ NNS , JJ NN IN JJ NNS , CC JJ NN .\nAgriculture , employing more than one-quarter of the working population , provides the economic base with major exports made up of copra and citrus fruit .\tNNP , VBG JJR IN NN IN DT VBG NN , VBZ DT JJ NN IN JJ NNS VBN IN IN NN CC NN NN .\nBlack pearls are the Cook Islands ' leading export .\tNNP NNS VBP DT NNP NNP POS VBG NN .\nManufacturing activities are limited to fruit processing , clothing , and handicrafts .\tNNP NNS VBP VBN TO NN NN , NN , CC NNS .\nTrade deficits are offset by remittances from emigrants and by foreign aid overwhelmingly from New Zealand .\tNNP NNS VBP VBN IN NNS IN NNS CC IN JJ NN RB IN NNP NNP .\nIn the 1980s and 1990s , the country lived beyond its means , maintaining a bloated public service and accumulating a large foreign debt .\tIN DT NNS CC NNS , DT NN VBD IN PRP$ NNS , VBG DT JJ JJ NN CC VBG DT JJ JJ NN .\nSubsequent reforms , including the sale of state assets , the strengthening of economic management , the encouragement of tourism , and a debt restructuring agreement , have rekindled investment and growth .\tJJ NNS , VBG DT NN IN NN NNS , DT NN IN JJ NN , DT NN IN NN , CC DT NN NN NN , VBP VBN NN CC NN .\nSOME White Christians engaged in driving Chinese Heathens out of an American town found a newspaper published in Peking in the Chinese tongue , and compelled one of their victims to translate an editorial .\tDT JJ NNS VBD IN VBG JJ NNS IN IN DT JJ NN VBD DT NN VBN IN VBG IN DT JJ NN , CC VBN CD IN PRP$ NNS TO VB DT NN .\nIt turned out to be an appeal to the people of the Province of Pang Ki to drive the foreign devils out of the country and burn their dwellings and churches .\tPRP VBD RP TO VB DT NN TO DT NNS IN DT NNP IN NNP NNP TO VB DT JJ NNS IN IN DT NN CC VBP PRP$ NNS CC NNS .\nAt this evidence of Mongolian barbarity the White Christians were so greatly incensed that they carried out their original design .\tIN DT NN IN JJ NN DT NNP NNPS VBD RB RB VBN IN PRP VBD RP PRP$ JJ NN .\nA MIND Reader made a wager that he would be buried alive and remain so for six months , then be dug up alive .\tDT NN NN VBD DT NN IN PRP MD VB VBN JJ CC VBP RB IN CD NNS , RB VB VBG RP JJ .\nIn order to secure the grave against secret disturbance , it was sown with thistles .\tIN NN TO VB DT NN IN JJ NN , PRP VBD VBN IN NNS .\nAt the end of three months , the Mind Reader lost his money .\tIN DT NN IN CD NNS , DT NN NN VBD PRP$ NN .\nHe had come up to eat the thistles .\tPRP VBD VBN RP TO VB DT NNS .\nThe church janitor was also the organist , and had to watch his keys and pews .\tDT NN NN VBD RB DT NN , CC VBD TO VB PRP$ NNS CC NNS .\nThe White House is reported ready to eliminate funding to service the Hubble Space Telescope and has directed the U.S. space agency NASA to focus on de-orbiting the popular spacecraft .\tDT NNP NNP VBZ VBN JJ TO VB NN TO VB DT NNP NNP NNP CC VBZ VBN DT NNP NN NN NNP TO VB IN VBG DT JJ NN .\nAccording to a report by the online news service space.com Friday , NASA Administrator Sean O'Keefe will announce the decision to scrap the repair mission when he reveals the space agency 's 2006 budget request in February .\tVBG TO DT NN IN DT JJ NN NN NNP NNP , NNP NNP NNP NNP MD VB DT NN TO VB DT NN NN WRB PRP VBZ DT NN NN POS CD NN NN IN NNP .\nThe Earth-orbiting observatory has operated continuously for 14 years , providing incredibly sharp celestial images that have made significant contributions to astronomical research .\tDT JJ NN VBZ VBN RB IN CD NNS , VBG RB JJ JJ NNS WDT VBP VBN JJ NNS TO JJ NN .\nNASA has been unable to complete the final repair mission for Hubble due to the grounding of the space shuttle fleet following the destruction of the Space Shuttle Columbia in February 2003 .\tNNP VBZ VBN JJ TO VB DT JJ NN NN IN NNP JJ TO DT NN IN DT NN NN NN VBG DT NN IN DT NNP NNP NNP IN NNP CD .\nSources say lawmakers are likely to try to restore funding to repair the telescope , which has widespread support .\tNNS VBP NNS VBP JJ TO VB TO VB NN TO VB DT NN , WDT VBZ JJ NN .\nHaiti 's interim government has announced that the nation 's Supreme Court will no longer have the ability to overrule election officials .\tNNP POS JJ NN VBZ VBN IN DT NN POS NNP NNP MD RB RB VB DT NN TO VB NN NNS .\nThe decision came Thursday , two days after the nation 's highest court ruled a Haitian-American businessman could run for office .\tDT NN VBD NNP , CD NNS IN DT NN POS JJS NN VBD DT JJ NN MD VB IN NN .\nElection authorities had previously told Haitian-born Dumarsais Simeus that he was not eligible to run because he holds U.S. citizenship .\tNN NNS VBD RB VBN JJ NNP NNP IN PRP VBD RB JJ TO VB IN PRP VBZ NNP NN .\nAlso Thursday , Haiti 's government announced a committee would be created to review the nationalities of all candidates running for the presidency .\tRB NNP , NNP POS NN VBD DT NN MD VB VBN TO VB DT NNS IN DT NNS VBG IN DT NN .\nHaiti 's interim Prime Minister Gerard Latortue has said the nation 's elections will be delayed by several weeks , and not be held November 20 as scheduled .\tNNP POS JJ NNP NNP NNP NNP VBZ VBN DT NN POS NNS MD VB VBN IN JJ NNS , CC RB VB VBN NNP CD IN VBN .\nThe upcoming election will be the first since President Jean-Bertrand Aristide 's ouster in February 2004 .\tDT JJ NN MD VB DT JJ IN NNP NNP NNP POS NN IN NNP CD .\nEthiopia says scores of birds found dead recently have tested negative for the bird flu .\tNNP VBZ NNS IN NNS VBN JJ RB VBP VBN JJ IN DT NN NN .\nA spokesman for Ethiopia 's Agriculture Ministry , Mulgueta Debalk , says the birds that were tested died of the Newcastle virus , which is common among fowl but harmless to humans .\tDT NN IN NNP POS NNP NNP , NNP NNP , VBZ DT NNS WDT VBD VBN VBD IN DT NNP NN , WDT VBZ JJ IN JJ CC JJ TO NNS .\nEthiopia tested a total of 62 birds after hundreds of pigeons , chickens and other birds were found dead in various parts of the country several weeks ago .\tNNP VBD DT NN IN CD NNS IN NNS IN NNS , NNS CC JJ NNS VBD VBN JJ IN JJ NNS IN DT NN JJ NNS RB .\nEthiopia and other African nations have been watching for any sign of the deadly H5N1 bird flu virus .\tNNP CC JJ JJ NNS VBP VBN VBG IN DT NN IN DT JJ NNP NN NN NN .\nThe virus has killed more than 70 people in Asia since 2003 .\tDT NN VBZ VBN JJR IN CD NNS IN NNP IN CD .\nThere are fears that migratory birds could carry it to Africa .\tEX VBP NNS IN JJ NNS MD VB PRP TO NNP .\nThe virus has already been found in birds in Europe and the Middle East .\tDT NN VBZ RB VBN VBN IN NNS IN NNP CC DT NNP NNP .\nThe U.N. refugee agency says at least 33 migrants trying to reach Yemen have drowned in the Gulf of Aden .\tDT NNP NN NN VBZ IN JJS CD NNS VBG TO VB NNP VBP VBN IN DT NNP IN NNP .\nThe agency says the drownings occurred after human smugglers forced all 137 passengers off a boat and into deep waters off the Yemeni coast .\tDT NN VBZ DT NNS VBD IN JJ NNS VBD DT CD NNS IN DT NN CC IN JJ NNS IN DT JJ NN .\nIt says the boat had sailed from Somalia with 134 Somalis and three Ethiopians on board .\tPRP VBZ DT NN VBD VBN IN NNP IN CD NNS CC CD NNS IN NN .\nSome of the migrants reached shore , but others are still missing .\tDT IN DT NNS VBD NN , CC NNS VBP RB VBG .\nThe agency says it learned of the tragedy on Saturday , but it was unclear when the incident actually occurred .\tDT NN VBZ PRP VBD IN DT NN IN NNP , CC PRP VBD JJ WRB DT NN RB VBD .\nThousands of Somalis and Ethiopians try to cross the Gulf of Aden each year in hopes of escaping poverty and violence in their homelands .\tNNS IN NNS CC NNS VBP TO VB DT NNP IN NNP DT NN IN NNS IN VBG NN CC NN IN PRP$ NNS .\nThe U.N. says many of the smugglers are ruthless , beating the migrants or making them swim long distances to shore .\tDT NNP VBZ NN IN DT NNS VBP JJ , VBG DT NNS CC VBG PRP VBP RB VBZ TO VB .\nViolence continues to flare in southern Thailand despite the government 's latest action to ease tension in the Muslim-dominated region , an air drop of millions of paper doves as a gesture of peace .\tNN VBZ TO VB IN JJ NNP IN DT NN POS JJS NN TO VB NN IN DT JJ NN , DT NN NN IN NNS IN NN NNS IN DT NN IN NN .\nPolice say a bomb explosion in Narathiwat province Monday injured at least one soldier .\tNNS VBP DT NN NN IN NNP NN NNP VBD IN JJS CD NN .\nA second bomb exploded in the province several hours later , injuring an official .\tDT JJ NN VBD IN DT NN JJ NNS RB , VBG DT NN .\nArson attacks in the same area on Sunday destroyed a home for teachers and damaged a school .\tNN NNS IN DT JJ NN IN NNP VBD DT NN IN NNS CC VBD DT NN .\nAbout 50 Thai air force planes flew over three restive southern provinces Sunday to drop 120 million ( origami ) birds made of folded paper , symbolizing the national wish for peace .\tIN CD JJ NN NN NNS VBD IN CD JJ JJ NNS NNP TO VB CD CD LRB NN RRB NNS VBN IN JJ NN , VBG DT JJ NN IN NN .\nAll Thais were asked to take part in the campaign , which also marked the birthday of King Bhumibol Adulyadej .\tDT NNS VBD VBN TO VB NN IN DT NN , WDT RB VBD DT NN IN NNP NNP NNP .\nA suicide bomber blew himself up Sunday in a northern Iraqi cafe , killing at least 13 people and wounding 23 others in the town of Tuz Khurmatu .\tDT NN NN VBD PRP RP NNP IN DT JJ JJ NN , VBG IN JJS CD NNS CC VBG CD NNS IN DT NN IN NNP NNP .\nElsewhere , Iraqi officials say gunmen who kidnapped 30 sports officials have freed six of them in Baghdad .\tRB , JJ NNS VBP NNS WP VBD CD NNS NNS VBP VBN CD IN PRP IN NNP .\nThere was no word on the other hostages , including Iraq 's Olympic Committee chief .\tEX VBD DT NN IN DT JJ NNS , VBG NNP POS NNP NNP NN .\nMeanwhile , insurgents raided the detention wing of a hospital northeast of Baghdad and freed several wounded comrades .\tRB , NNS VBD DT NN NN IN DT NN NN IN NNP CC VBD JJ JJ NNS .\nFour security men were killed in the attack .\tCD NN NNS VBD VBN IN DT NN .\nIn southern Iraq , British officials said gunmen killed a British soldier in Basra - the country 's first military death in Iraq since late May .\tIN JJ NNP , NNP NNS VBD NNS VBD DT JJ NN IN NNP IN DT NN POS JJ JJ NN IN NNP IN JJ NNP .\nSeparately , two British soldiers were wounded by a roadside bomb .\tRB , CD JJ NNS VBD VBN IN DT NN NN .\nIn Kirkuk , U.S. and Iraqi forces killed one gunman and captured two after the gunmen ambushed and wounded an Iraqi security officer .\tIN NNP , NNP CC JJ NNS VBD CD NN CC VBD CD IN DT NNS VBD CC VBD DT JJ NN NN .\nVenezuelan President Hugo Chavez says his country is willing to reconsider pulling out of the five-nation Andean Community trade bloc .\tJJ NNP NNP NNP VBZ PRP$ NN VBZ JJ TO VB VBG IN IN DT JJ NNP NNP NN NN .\nMr. Chavez on Monday said Venezuela would reconsider its decision if Colombia and Peru reconsider their free trade deals with the United States .\tNNP NNP IN NNP VBD NNP MD VB PRP$ NN IN NNP CC NNP VB PRP$ JJ NN NNS IN DT NNP NNPS .\nBolivian President Evo Morales has called on Mr. Chavez to reverse his decision , and he also called for a meeting to save the bloc .\tJJ NNP NNP NNP VBZ VBN IN NNP NNP TO VB PRP$ NN , CC PRP RB VBD IN DT NN TO VB DT NN .\nLast week , President Chavez said the bloc is ' fatally wounded ' because Colombia and Peru finalized free trade agreements with the U.S. Advocates say the free trade deals open up markets and create more jobs .\tJJ NN , NNP NNP VBD DT NN VBZ `` RB VBN `` IN NNP CC NNP VBD JJ NN NNS IN DT NNP NNS VBP DT JJ NN NNS VBP RP NNS CC VB JJR NNS .\nCritics say the pacts leave developing countries at a disadvantage with competition from cheaper U.S. products .\tNNS VBP DT NNS VBP VBG NNS IN DT NN IN NN IN JJR NNP NNS .\nA showdown looms in the U.S. Senate , which has begun debate on one of President Bush 's most contested judicial nominees and a possible rule change strongly opposed by Democrats .\tDT NN VBZ IN DT NNP NNP , WDT VBZ VBN NN IN CD IN NNP NNP POS JJS VBN JJ NNS CC DT JJ NN NN RB VBN IN NNPS .\nThe debate began Wednesday with Republican Majority Leader Bill Frist raising the nomination of Judge Priscilla Owen .\tDT NN VBD NNP IN NNP NNP NNP NNP NNP VBG DT NN IN NNP NNP NNP .\nShe is one of seven appeals court candidates Democrats have blocked using filibusters , a parliamentary delaying tactic .\tPRP VBZ CD IN CD NNS NN NNS NNPS VBP VBN VBG NNS , DT JJ NN NN .\nRepublicans have said that unless Democrats allow votes on all seven , they will try to enact a new rule banning filibusters against judicial nominees .\tNNPS VBP VBN IN IN NNPS VBP NNS IN DT CD , PRP MD VB TO VB DT JJ NN VBG NNS IN JJ NNS .\nThe minority Democrats , who consider the seven Bush nominees too conservative , accused Republicans of making a power grab .\tDT NN NNS , WP VBP DT CD NNP NNS RB JJ , VBN NNS IN VBG DT NN NN .\nThe dispute has been intensified by the effect the proposed change could have on future Supreme Court nominations .\tDT NN VBZ VBN VBN IN DT NN DT VBN NN MD VB IN JJ NNP NNP NNS .\nIt is unclear whether Republican leaders have the votes to achieve their goal , known as the ' nuclear option . '\tPRP VBZ JJ IN JJ NNS VBP DT NNS TO VB PRP$ NN , VBN IN DT `` JJ NN . ``\nFrench President Jacques Chirac has completed his four-day visit to China with a tour of archaeological sites in the historic city of Xian .\tJJ NNP NNP NNP VBZ VBN PRP$ JJ NN TO NNP IN DT NN IN JJ NNS IN DT JJ NN IN NNP .\nMr. Chirac visited an ancient tomb built more than 2,000 years ago for an emperor of China 's Han dynasty .\tNNP NNP VBD DT JJ NN VBD JJR IN CD NNS RB IN DT NN IN NNP POS NNP NN .\nHe expressed a strong admiration for Chinese history and the efforts of archaeologists .\tPRP VBD DT JJ NN IN JJ NN CC DT NNS IN NNS .\nMr. Chirac earlier traveled to the central Chinese city of Wuhan to lay the foundation stone for a new Peugeot-Citroen auto factory .\tNNP NNP RB VBD TO DT JJ JJ NN IN NNP TO VB DT NN NN IN DT JJ JJ NN NN .\nThe plant is a joint venture with Chinese firm Dongfeng , and is expected to start producing cars in 2009 .\tDT NN VBZ DT JJ NN IN JJ NN NNP , CC VBZ VBN TO VB VBG NNS IN CD .\nIn Beijing Thursday , the French president presided over the signing of 13 deals between French and Chinese businesses .\tIN NNP NNP , DT JJ NN VBD IN DT NN IN CD NNS IN JJ CC JJ NNS .\nThe highlight was China 's decision to buy 150 Airbus passenger jets , worth about $ 10 billion .\tDT NN VBD NNP POS NN TO VB CD NNP NN NNS , JJ IN $ CD CD .\nMr. Chirac also met with Chinese President Hu Jintao Thursday to discuss the nuclear disputes with Iran and North Korea .\tNNP NNP RB VBD IN JJ NNP NNP NNP NNP TO VB DT JJ NNS IN NNP CC NNP NNP .\nPakistani officials say two bombings have killed more than 50 people and wounded nearly 100 others in the country 's northwest tribal area near the Afghan border .\tJJ NNS VBP CD NNS VBP VBN JJR IN CD NNS CC VBD RB CD NNS IN DT NN POS JJS JJ NN IN DT JJ NN .\nPolice said Friday a suicide bomber on a motorcycle detonated explosives outside a government office in the Yakaghund village in Pakistan 's northwest Mohmand tribal region .\tNNP VBD NNP DT NN NN IN DT NN VBN NNS IN DT NN NN IN DT NNP NN IN NNP POS JJS NNP JJ NN .\nThey suspected the second explosion was from a car bomb .\tPRP VBD DT JJ NN VBD IN DT NN NN .\nThe early morning blasts flattened dozens of buildings .\tDT JJ NN NNS VBD NNS IN NNS .\nThey occurred as officials nearby were distributing wheelchairs and other aid to those in need .\tPRP VBD IN NNS RB VBD VBG NNS CC JJ NN TO DT IN NN .\nMohmand is part of Pakistan 's lawless tribal belt where Taliban and al-Qaida militants are believed to be hiding .\tNNP VBZ NN IN NNP POS JJ NN NN WRB NNP CC NNP NNS VBP VBN TO VB VBG .\nThe Pakistani army has carried out operations in Mohmand , but it has been unable to extricate the militants .\tDT JJ NN VBZ VBN RP NNS IN NNP , CC PRP VBZ VBN JJ TO VB DT NNS .\nPakistan is under pressure from the United States to go after the insurgents , who also have carried out attacks on Western forces in Afghanistan .\tNNP VBZ IN NN IN DT NNP NNPS TO VB IN DT NNS , WP RB VBP VBN RP NNS IN JJ NNS IN NNP .\nIranian authorities have shut down two Kurdish language newspapers in northwestern Iran , a day after at least 11 people were killed in that region during a clash between Kurdish demonstrators and Iranian police .\tJJ NNS VBP VBN RP CD JJ NN NNS IN JJ NNP , DT NN IN IN JJS CD NNS VBD VBN IN DT NN IN DT NN IN JJ NNS CC JJ NN .\nThe official Iranian news agency ( IRNA ) quotes the managing editor of the bilingual ( Kurdish and Iranian ) Ashti daily Thursday as saying a provincial court ordered the temporary closure of the paper .\tDT JJ JJ NN NN LRB NNP RRB VBZ DT NN NN IN DT NN LRB NNP CC JJ RRB NNP RB NNP IN VBG DT JJ NN VBD DT JJ NN IN DT NN .\nA Kurdish journalist in the region told VOA 's Kurdish service that a second paper , Aso , also was shut down because it reported on the recent wave of anti-Iranian protests in Iran 's northern Kurdish region .\tDT JJ NN IN DT NN VBD NNP POS JJ NN IN DT JJ NN , NNP , RB VBD VBN RB IN PRP VBD IN DT JJ NN IN JJ NNS IN NNP POS JJ NNP NN .\nThe killing last month of a Kurdish activist by Iranian security forces sparked demonstrations , some of them violent , in several predominantly Kurdish cities in northwestern Iran .\tDT NN JJ NN IN DT JJ NN IN JJ NN NNS VBD NNS , DT IN PRP JJ , IN JJ RB JJ NNS IN JJ NNP .\nA Turkish court has jailed five suspects pending trial in the killing of three people at a Christian publishing house last week .\tDT JJ NN VBZ VBN CD NNS VBG NN IN DT NN IN CD NNS IN DT JJ NN NN JJ NN .\nNo trial date has been set .\tDT NN NN VBZ VBN VBN .\nThe court also released Sunday six other people who were in custody .\tDT NN RB VBD NNP CD JJ NNS WP VBD IN NN .\nIt is unclear what charges they faced .\tPRP VBZ JJ WP VBZ PRP VBD .\nA German citizen and two Turks who had converted to Christianity were killed in the attack in Malatya .\tDT JJ NN CC CD NNS WP VBD VBN TO NNP VBD VBN IN DT NN IN NNP .\nThey were found bound to chairs with their throats slit .\tPRP VBD VBN VBN TO NNS IN PRP$ NNS VBP .\nAt least one of the victims also had several stab wounds .\tIN JJS CD IN DT NNS RB VBD JJ JJ NNS .\nRepresentatives of Turkey 's small Protestant community have blamed the killings on growing intolerance towards Christians and missionaries .\tNNS IN NNP POS JJ JJ NN VBP VBN DT NNS IN VBG NN IN NNS CC NNS .\nThe Catholic and Greek Orthodox churches have condemned the attack , as has Turkish President Ahmet Necdet Sezer , who said there can be no justification for it .\tDT NNP CC JJ NNP NNS VBP VBN DT NN , IN VBZ JJ NNP NNP NNP NNP , WP VBD EX MD VB DT NN IN PRP .\nChinese state media say an explosion at a chemical plant in eastern China has killed at least 14 people and injured 30 others .\tJJ NN NNS VBP DT NN IN DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN CD NNS .\nThe official Xinhua news agency says the blast happened Friday at a chemical plant in Anhui province 's Dangtu County .\tDT JJ NNP NN NN VBZ DT NN VBD NNP IN DT NN NN IN NNP NN POS NNP NNP .\nIt is not immediately clear how many workers were in the plant at the time of the explosion .\tPRP VBZ RB RB JJ WRB JJ NNS VBD IN DT NN IN DT NN IN DT NN .\nXinhua says the plant produces explosives for civilian uses such as mining .\tNNP VBZ DT NN VBZ NNS IN JJ NNS JJ IN NN .\nWorld leaders and diplomats are uniting to condemn Saturday 's deadly suicide bombings on the Indonesian resort island of Bali .\tNNP NNS CC NNS VBP VBG TO VB NNP POS JJ NN NNS IN DT JJ NN NN IN NNP .\nU.S. Secretary of State Condoleezza Rice denounced the attacks and said the United States stands with Indonesia as it works to bring the perpetrators to justice .\tNNP NNP IN NNP NNP NNP VBD DT NNS CC VBD DT NNP NNPS VBZ IN NNP IN PRP VBZ TO VB DT NNS TO NN .\nBritish Prime Minister Tony Blair says his government is ready to help in any way possible , while Australian Prime Minister John Howard accused the attackers of trying to undermine Indonesia 's moderate government .\tNNP NNP NNP NNP NNP VBZ PRP$ NN VBZ JJ TO VB IN DT NN JJ , IN JJ NNP NNP NNP NNP VBD DT NNS IN VBG TO VB NNP POS JJ NN .\nA U.N. spokesman says Secretary-General Kofi Annan is ' dismayed ' that Bali is again the scene of an attack , and he urged authorities to promptly bring the perpetrators of what he called a ' cowardly attack ' to justice .\tDT NNP NN VBZ NNP NNP NNP VBZ `` VBN `` DT NNP VBZ RB DT NN IN DT NN , CC PRP VBD NNS TO RB VB DT NNS IN WP PRP VBD DT `` RB NN `` TO NN .\nLeaders of Japan , the Philippines , New Zealand , Singapore , Germany , France and other nations around the globe have also condemned the attacks .\tNNS IN NNP , DT NNPS , NNP NNP , NNP , NNP , NNP CC JJ NNS IN DT NN VBP RB VBN DT NNS .\nSweden will have the chance to add the Olympic Games women 's curling title to its world and European crowns .\tNNP MD VB DT NN TO VB DT NNP NNPS NNS POS VBG NN TO PRP$ NN CC JJ NNS .\nThe Swedes reached the tournament final at the Turin Winter Games with a 05-Apr semifinal victory over Norway Wednesday .\tDT NNS VBD DT NN JJ IN DT NNP NNP NNPS IN DT CD JJ NN IN NNP NNP .\nIn the final on Thursday , Sweden will face Switzerland , which was a 07-May winner over 1998 Olympic champion Canada .\tIN DT JJ IN NNP , NNP MD VB NNP , WDT VBD DT CD NN IN CD JJ NN NNP .\nBoth Sweden and Switzerland will compete for gold with identical records in Turin .\tDT NNP CC NNP MD VB IN NN IN JJ NNS IN NNP .\nEach finished the preliminary round with win-loss records of 07-Feb in the 10-nation tournament .\tDT VBD DT JJ NN IN JJ NNS IN CD IN DT JJ NN .\nIndonesian officials say a landslide has killed five people on Flores Island .\tJJ NNS VBP DT NN VBZ VBN CD NNS IN NNP NNP .\nLocal officials said the landslide was triggered by several days of heavy rain .\tJJ NNS VBD DT NN VBD VBN IN JJ NNS IN JJ NN .\nFloods and landslides are common in Indonesia , especially during the rainy season .\tNNS CC NNS VBP JJ IN NNP , RB IN DT NN NN .\nMany landslides are caused by illegal logging or the clearing of farmland that strips away natural barriers .\tJJ NNS VBP VBN IN JJ NN CC DT NN IN NN WDT VBZ RB JJ NNS .\nFlores is an island in the southeastern part of the Indonesian archipelago , about 15 hundred kilometers from the capital , Jakarta .\tNNP VBZ DT NN IN DT JJ NN IN DT JJ NN , IN CD CD NNS IN DT NN , NNP .\nAn Italian newspaper says Italy 's defense minister has ruled out a troop withdrawal from Afghanistan as demanded by the kidnappers of an Italian photojournalist .\tDT JJ NN VBZ NNP POS NN NN VBZ VBN RP DT NN NN IN NNP IN VBN IN DT NNS IN DT JJ NN .\nThe Italian daily La Stampa reported Thursday that Defense Minister Arturo Parisi says the troops will stay in Afghanistan despite the new demand .\tDT JJ JJ NNP NNP VBD NNP IN NNP NNP NNP NNP VBZ DT NNS MD VB IN NNP IN DT JJ NN .\nKidnappers who seized Italian photojournalist Gabriele Torsello in Afghanistan last week issued the demand late Wednesday .\tNNS WP VBD JJ NN NNP NNP IN NNP JJ NN VBD DT NN JJ NNP .\nPreviously , the abductors said they would release Torsello if Italian authorities returned an Afghan convert to Christianity who was granted asylum in Italy .\tRB , DT NNS VBD PRP MD VB NNP IN JJ NNS VBD DT JJ NN TO NNP WP VBD VBN NN IN NNP .\nTorsello was kidnapped in Helmand province last week .\tNNP VBD VBN IN NNP NN JJ NN .\nAuthorities blamed the abduction on the Taleban , but the radical Islamist group denies any involvement .\tNNS VBD DT NN IN DT NNP , CC DT JJ NN NN VBZ DT NN .\nIn Rome , the Foreign Ministry said it was working for the release of the photographer .\tIN NNP , DT NNP NNP VBD PRP VBD VBG IN DT NN IN DT NN .\nU.S. Defense Secretary Donald Rumsfeld says there is reason for optimism in Afghanistan five years after the fall of the Taleban .\tNNP NNP NNP NNP NNP VBZ EX VBZ NN IN NN IN NNP CD NNS IN DT NN IN DT NNP .\nIn an opinion piece in Saturday 's Washington Post newspaper , Rumsfeld wrote that despite Afghanistan 's rising opium production and violence in the south , ' the trajectory is a hopeful and promising one . '\tIN DT NN NN IN NNP POS NNP NNP NN , NNP VBD IN IN NNP POS VBG NN NN CC NN IN DT NN , `` DT NN VBZ DT JJ CC JJ CD . ``\nThe secretary cited several improvements including an economy that has tripled in five years , a military that has grown by 1,000 soldiers a month and a 500 percent increase in children attending school .\tDT NN VBD JJ NNS VBG DT NN WDT VBZ VBN IN CD NNS , DT NN WDT VBZ VBN IN CD NNS DT NN CC DT CD NN NN IN NNS VBG NN .\nRumsfeld also mentioned a few setbacks , including a surge in drug production and rising violence by insurgents .\tNNP RB VBD DT JJ NNS , VBG DT NN IN NN NN CC VBG NN IN NNS .\nPakistan has criticized remarks by a U.S. State Department counter-terrorism official who said Pakistan is not doing enough to remove Taleban and al-Qaida members from its soil .\tNNP VBZ VBN NNS IN DT NNP NNP NNP NN NN WP VBD NNP VBZ RB VBG RB TO VB NNP CC NNP NNS IN PRP$ NN .\nHenry Crumpton , in Kabul Saturday after talks in Pakistan , praised Pakistan for arresting hundreds of al-Qaida members but added that miliant leaders had found safe haven in Pakistan 's lawless semi-autonomous tribal region bordering Afghanistan .\tNNP NNP , IN NNP NNP IN NNS IN NNP , VBD NNP IN VBG NNS IN NNP NNS CC VBD IN JJ NNS VBD VBN JJ NN IN NNP POS JJ JJ JJ NN VBG NNP .\nPakistan 's military and government spokesman , Major-General Shaukat Sultan , called Crumpton 's statement irresponsible , saying he did not make the same criticisms during his talks with Pakistani officials .\tNNP POS JJ CC NN NN , NNP NNP NNP , VBD NNP POS NN JJ , VBG PRP VBD RB VB DT JJ NNS IN PRP$ NNS IN JJ NNS .\nPakistan , a key U.S. ally in the war against terrorism , has deployed about 80,000 troops to its tribal regions to root out foreign militants and their local allies .\tNNP , DT JJ NNP NN IN DT NN IN NN , VBZ VBN IN CD NNS TO PRP$ JJ NNS TO VB RP JJ NNS CC PRP$ JJ NNS .\nPakistani officials say that 324 militants , including 76 foreigners had been killed in the area since last July .\tJJ NNS VBP IN CD NNS , VBG CD NNS VBD VBN VBN IN DT NN IN JJ NNP .\nInsurgents in Iraq have launched new attacks Thursday on police and U.S. troops , killing at least 17 people .\tNNS IN NNP VBP VBN JJ NNS NNP IN NN CC NNP NNS , VBG IN JJS CD NNS .\nIn the deadliest blast , witnesses say a suicide bomber , dressed in a police uniform , drove into the compound of the Tikrit police headquarters and detonated his vehicle .\tIN DT JJS NN , NNS VBP DT NN NN , VBN IN DT NN NN , VBD IN DT NN IN DT NNP NN NN CC VBD PRP$ NN .\nThe massive explosion in Saddam Hussein 's hometown killed at least 12 people , wounded 35 , and set a dozen cars on fire .\tDT JJ NN IN NNP NNP POS NN VBD IN JJS CD NNS , VBD CD , CC VBD DT NN NNS IN NN .\nSouth of the capital , in Iskandariya , an explosion near a police convoy killed two policemen and at least one civilian .\tNNP IN DT NN , IN NNP , DT NN IN DT NN NN VBD CD NNS CC IN JJS CD JJ .\nDespite the continued violence against Iraqi police , nearly 2,000 new recruits , including 46 women , graduated this week from police training courses in Sulaymaniyeh and Baghdad .\tIN DT JJ NN IN JJ NN , RB CD JJ NNS , VBG CD NNS , VBN DT NN IN NN NN NNS IN NNP CC NNP .\nMeanwhile , the U.S. military says two American soldiers were killed and another two were wounded in separate roadside bombings north of Baghdad .\tRB , DT NNP NN VBZ CD JJ NNS VBD VBN CC DT CD VBD VBN IN JJ NN NNS NN IN NNP .\nIraqi police say a suicide truck bomb attack has killed at least 22 people and wounded 40 others in a small town in northern Iraq .\tJJ NNS VBP DT NN NN NN NN VBZ VBN IN JJS CD NNS CC VBN CD NNS IN DT JJ NN IN JJ NNP .\nAuthorities say the blast ripped through a crowded outdoor market Saturday in Emerli , a village north of Baghdad .\tNNS VBP DT NN VBD IN DT JJ NN NN NNP IN NNP , DT NN NN IN NNP .\nOn Friday , a car bombing in a Kurdish village killed at least 22 people and wounded about 17 others .\tIN NNP , DT NN NN IN DT JJ NN VBD IN JJS CD NNS CC VBD IN CD NNS .\nPolice said they believe a suicide car bomber was responsible for the attack in the village of Ahmad Maref , northeast of the capital .\tNNS VBD PRP VBP DT NN NN NN VBD JJ IN DT NN IN DT NN IN NNP NNP , NN IN DT NN .\nThe U.S. military Saturday reported the deaths of six American soldiers and an Iraqi interpreter over the past few days , mostly in Baghdad .\tDT NNP NN NNP VBD DT NNS IN CD JJ NNS CC DT JJ NN IN DT JJ JJ NNS , RB IN NNP .\nSix soldiers were wounded .\tCD NNS VBD VBN .\nIn other news , Britain 's defense ministry says a British soldier has died in the southern city of Basra .\tIN JJ NN , NNP POS NN NN VBZ DT JJ NN VBZ VBN IN DT JJ NN IN NNP .\nA spokesman did not provide details .\tDT NN VBD RB VB NNS .\nAuthorities in California say lightning strikes have sparked more than 400 fires in the northern part of the state , consuming thousands of hectares and forcing some residents to evacuate .\tNNS IN NNP VBP NN NNS VBP VBN JJR IN CD NNS IN DT JJ NN IN DT NN , VBG NNS IN NNS CC VBG DT NNS TO VB .\nThe office of Governor Arnold Schwarzenegger says the fires stretch more than 500 kilometers from south of San Francisco to the border of the neighboring state of Oregon .\tDT NN IN NNP NNP NNP VBZ DT NNS VB JJR IN CD NNS IN NN IN NNP NNP TO DT NN IN DT JJ NN IN NNP .\nThe governor has ordered the California National Guard to assist in fighting the blazes .\tDT NN VBZ VBN DT NNP NNP NNP TO VB IN VBG DT NNS .\nMeanwhile , much of California is bracing for a fifth straight day of record high temperatures .\tRB , NN IN NNP VBZ VBG IN DT JJ JJ NN IN NN JJ NNS .\nForecasters say temperatures reached above 32 degrees Celsius on Saturday in San Jose , Los Angeles and the state capital of Sacramento .\tNNS VBP NNS VBD IN CD NNS NNP IN NNP IN NNP NNP , NNP NNP CC DT NN NN IN NNP .\nThe heat wave has sent people scurrying to beaches and rivers to cool off , and strained regional power grids as millions of residents turn on air conditioners .\tDT NN NN VBZ VBN NNS VBG TO NNS CC NNS TO VB RP , CC VBD JJ NN NNS IN NNS IN NNS VBP IN NN NNS .\nAfghanistan 's foreign minister has met with top Pakistani officials in Islamabad to discuss issues that affect both countries ahead of a visit by the new U.S. special envoy .\tNNP POS JJ NN VBZ VBN IN JJ JJ NNS IN NNP TO VB NNS WDT VBP DT NNS RB IN DT NN IN DT JJ NNP JJ NN .\nThe Pakistani foreign ministry says visiting Afghan Foreign Minister Rangin Dadfar Spanta met with his Pakistani counterpart , Shah Mahmood Qureshi , and with Pakistani President Asif Ali Zardari .\tDT JJ JJ NN VBZ VBG JJ NNP NNP NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP NNP , CC IN JJ NNP NNP NNP NNP .\nThe ministry says they expressed readiness to strengthen their cross-border cooperation on fighting terrorism and militancy .\tDT NN VBZ PRP VBD NN TO VB PRP$ JJ NN IN VBG NN CC NN .\nThe new U.S. envoy to Pakistan and Afghanistan , Richard Holbrooke , will visit South Asia next week as the Obama administration reviews its policy on the Afghan conflict .\tDT JJ NNP NN TO NNP CC NNP , NNP NNP , MD VB NNP NNP JJ NN IN DT NNP NN VBZ PRP$ NN IN DT JJ NN .\nA statement from Pakistan 's foreign ministry says Qureshi hopes what it called a ' military surge ' in Afghanistan will be paired with a politically and developmentaly-oriented surge .\tDT NN IN NNP POS JJ NN VBZ NNP VBZ WP PRP VBD DT `` JJ NN `` IN NNP MD VB VBN IN DT RB CC JJ NN .\nThe United States says it is boosting its troop strength in Afghanistan by some 30,000 soldiers .\tDT NNP NNPS VBZ PRP VBZ VBG PRP$ NN NN IN NNP IN DT CD NNS .\nIn Iran , a gunman on a motorcycle has shot dead a judge trying the high-profile case of jailed Iranian journalist Akbar Ganji .\tIN NNP , DT NN IN DT NN VBZ VBN JJ DT NN VBG DT JJ NN IN JJ JJ NN NNP NNP .\nA judiciary spokesman says the judge , Massoud Moghaddasi , was shot Tuesday while he was leaving his office in Tehran .\tDT NN NN VBZ DT NN , NNP NNP , VBD VBN NNP IN PRP VBD VBG PRP$ NN IN NNP .\nThe judge has been presiding over the case of Mr. Ganji , who has been in jail since 2001 for publishing articles implicating government officials in the murders of prominent dissidents .\tDT NN VBZ VBN VBG IN DT NN IN NNP NNP , WP VBZ VBN IN NN IN CD IN NN NNS VBG NN NNS IN DT NNS IN JJ NNS .\nMr. Ganji currently is in custody at a Tehran hospital .\tNNP NNP RB VBZ IN NN IN DT NNP NN .\nHis family says his health is rapidly deteriorating because he has been on a hunger strike for more than 50 days .\tPRP$ NN VBZ PRP$ NN VBZ RB VBG IN PRP VBZ VBN IN DT NN NN IN JJR IN CD NNS .\nDeputy Secretary of State John Negroponte says US looks forward to working with new Pakistani leaders\tNNP NNP IN NNP NNP NNP VBZ NNP VBZ RB TO VBG IN JJ JJ NNS\nThe U.S. National Hurricane Center says Tropical Storm Tomas is about 640 kilometers south-southeast of Haiti 's capital , Port-au-Prince , with maximum sustained winds of 75 kilometers per hour .\tDT NNP NNP NNP NNP VBZ NNP NNP NNP VBZ IN CD NNS NN IN NNP POS NN , NNP , IN JJ JJ NNS IN CD NNS IN NN .\nThe storm was downgraded from a hurricane late Sunday , but forecasters expect it to gain strength again on Wednesday .\tDT NN VBD VBN IN DT NN JJ NNP , CC NNS VBP PRP TO VB NN RB IN NNP .\nCurrent projections put the storm on a path to Haiti , where hundreds of thousands of people are living in tent camps following an earthquake in January .\tJJ NNS VBD DT NN IN DT NN TO NNP , WRB NNS IN NNS IN NNS VBP VBG IN JJ NNS VBG DT NN IN NNP .\nUnited Nations agencies and other aid groups have ordered food , shelter and emergency supplies to be stockpiled in camps across Haiti and coastal communities threatened by the storm .\tNNP NNPS NNS CC JJ NN NNS VBP VBN NN , NN CC NN NNS TO VB VBN IN NNS IN NNP CC JJ NNS VBN IN DT NN .\nThe country is also struggling to contain a cholera outbreak that has already killed more than 300 people .\tDT NN VBZ RB VBG TO VB DT NN NN WDT VBZ RB VBN JJR IN CD NNS .\nSomalia 's transitional government has announced plans to begin relocating to the capital Mogadishu from Kenya February 21 .\tNNP POS JJ NN VBZ VBN NNS TO VB VBG TO DT NN NNP IN NNP NNP CD .\nThe government has been operating from Kenya since its formation last year , fearing continued instability in Somalia .\tDT NN VBZ VBN VBG IN NNP IN PRP$ NN JJ NN , VBG JJ NN IN NNP .\nOfficials met Tuesday with clan leaders in Mogadishu who promised to hand over the city 's port and former government buildings .\tNNS VBD NNP IN JJ NNS IN NNP WP VBD TO VB RB DT NN POS NN CC JJ NN NNS .\nSomalia 's Prime Minister Mohammed Ali Gedi said today how quickly the relocation takes place depends on the support the new government receives from donor nations .\tNNP POS NNP NNP NNP NNP NNP VBD NN WRB RB DT NN VBZ NN VBZ IN DT NN DT JJ NN VBZ IN NN NNS .\nThe government is seeking about $ 77 million to fund its transition .\tDT NN VBZ VBG RB $ CD CD TO VB PRP$ NN .\nTuesday , the African Union authorized the deployment of east African troops to help the new government relocate .\tNNP , DT NNP NNP VBD DT NN IN JJ JJ NNS TO VB DT JJ NN NN .\nA former Haitian refugee is being sworn in Tuesday as Canada 's governor general , the representative of Britain 's Queen Elizabeth .\tDT JJ JJ NN VBZ VBG VBN IN NNP IN NNP POS NN NN , DT NN IN NNP POS NNP NNP .\nMichaelle Jean will be the first black and only the third woman to hold the position .\tNNP NNP MD VB DT JJ JJ CC RB DT JJ NN TO VB DT NN .\nAt 48 , she is also one of Canada 's youngest governor generals .\tIN CD , PRP VBZ RB CD IN NNP POS JJS NN NNS .\nShe replaces Adrienne Clarkson in the ceremonial role .\tPRP VBZ NNP NNP IN DT JJ NN .\nMs. Jean immigrated to Canada 's French-speaking Quebec province as a child , after her parents fled Haiti to escape dictatorial rule .\tNNP NNP VBD TO NNP POS JJ NNP NN IN DT NN , IN PRP$ NNS VBD NNP TO VB JJ NN .\nCritics have accused her of ties to Quebec 's separatist movement , although the former broadcast journalist says she is committed to Canadian federalism .\tNNS VBP VBN PRP IN NNS TO NNP POS JJ NN , IN DT JJ NN NN VBZ PRP VBZ VBN TO JJ NN .\nCanada became a self-governing dominion in 1867 , but retains some ties to the British crown .\tNNP VBD DT JJ NN IN CD , CC VBZ DT NNS TO DT JJ NN .\nVice President Dick Cheney says U.S. officials are not concerned that Iraq 's next government will seek to fashion an Islamic state like neighboring Iran .\tNNP NNP NNP NNP VBZ NNP NNS VBP RB VBN IN NNP POS JJ NN MD VB TO VB DT JJ NN IN VBG NNP .\nThe vice president was responding a story in the New York Times that said leading Iraqi Shi'ite clerics want Islam to be the guiding principle in Iraq 's new constitution .\tDT NN NN VBD VBG DT NN IN DT NNP NNP NNP WDT VBD VBG JJ NNP NNS VBP NNP TO VB DT VBG NN IN NNP POS JJ NN .\nAsked about the story on the Fox News Sunday television program , Mr. Cheney said it is premature to say what the clerics are pushing for .\tVBN IN DT NN IN DT NNP NNP NNP NN NN , NNP NNP VBD PRP VBZ JJ TO VB WP DT NNS VBP VBG IN .\nBut he said Shi'ite religious leader Ayatollah Ali al-Sistani has made it clear that clerics should not play a direct role in the new government .\tCC PRP VBD NNP JJ NN NNP NNP NNP VBZ VBN PRP JJ IN NNS MD RB VB DT JJ NN IN DT JJ NN .\nHe said he thinks a ' great many people ' involved in Iraq 's political process want a balance between secular beliefs and religion .\tPRP VBD PRP VBZ DT `` JJ JJ NNS `` VBN IN NNP POS JJ NN VBP DT NN IN JJ NNS CC NN .\nEarly returns from last Sunday 's Iraqi elections show the main Shi'ite coalition headed for victory .\tRB NNS IN JJ NNP POS JJ NNS VBP DT JJ NNP NN VBD IN NN .\nLuxembourg voters will cast ballots Sunday in a referendum on the European Union 's troubled constitution .\tNNP NNS MD VB NNS NNP IN DT NN IN DT NNP NNP POS JJ NN .\nPrime Minister Jean-Claude Juncker , who has been a strong promoter of passage of the constitution , has threatened to resign if Luxembourg voters reject it .\tNNP NNP NNP NNP , WP VBZ VBN DT JJ NN IN NN IN DT NN , VBZ VBN TO VB IN NNP NNS VBP PRP .\nA June opinion poll showed 45 percent of respondents oppose the constitution .\tDT NNP NN NN VBD CD NN IN NNS VBP DT NN .\nThe Luxembourg vote comes despite the postponement of referendums in Britain , Denmark , Portugal , Sweden and Finland .\tDT NNP NN VBZ IN DT NN IN NNS IN NNP , NNP , NNP , NNP CC NNP .\nFrench and Dutch voters rejected the constitution in referendums , placing the future of the pact in doubt .\tJJ CC JJ NNS VBD DT NN IN NNS , VBG DT NN IN DT NN IN NN .\nEU leaders put the constitution issue on hold at a meeting last month in response to the rejections .\tNNP NNS VBD DT NN NN IN NN IN DT NN JJ NN IN NN TO DT NNS .\nThe constitution requires unanimous backing from all 25 member nations .\tDT NN VBZ JJ NN IN DT CD NN NNS .\nSo far , 11 countries have ratified the document .\tRB RB , CD NNS VBP VBN DT NN .\nNATO early warning surveillance aircraft will patrol the skies over alliance members Latvia and the Netherlands when President Bush visits the two countries later this week .\tNNP JJ NN NN NN MD VB DT NNS IN NN NNS NNP CC DT NNP WRB NNP NNP VBZ DT CD NNS RB DT NN .\nAn alliance statement Wednesday , says NATO Airborne Early Warning and Control aircraft , commonly called AWACS , will monitor airspace over the two countries from Friday to Sunday at the request of their governments .\tDT NN NN NNP , VBZ NNP NNP NNP NNP CC NNP NN , RB VBN NNP , MD VB NN IN DT CD NNS IN NNP TO NNP IN DT NN IN PRP$ NNS .\nMr. Bush is flying to the Latvian capital , Riga , Friday for talks on Saturday with the presidents of Estonia , Latvia and Lithuania .\tNNP NNP VBZ VBG TO DT JJ NN , NNP , NNP IN NNS IN NNP IN DT NNS IN NNP , NNP CC NNP .\nHe then flies to the Netherlands , where he will meet with Dutch officials and mark the 60th anniversary of the end of World War II in Europe with a stop at an American military cemetery in Margraten .\tPRP RB VBZ TO DT NNP , WRB PRP MD VB IN JJ NNS CC VB DT JJ NN IN DT NN IN NNP NNP NNP IN NNP IN DT NN IN DT JJ JJ NN IN NNP .\nPresident Bush then travels to Moscow for Monday 's World War II observances in the Russian capital .\tNNP NNP RB VBZ TO NNP IN NNP POS NNP NNP NNP NNS IN DT JJ NN .\nLouisiana Governor Kathleen Blanco says a number of fishing villages in the state 's Cameron Parish have been ' erased from the map ' by Hurricane Rita .\tNNP NNP NNP NNP VBZ DT NN IN NN NNS IN DT NN POS NNP NNP VBP VBN `` VBN IN DT NN `` IN NNP NNP .\nSearch and rescue operations are set to wrap up today in the state 's rural Vermilion Parish , also hard-hit by tidal surges from the storm that made landfall on Saturday .\tNNP CC NN NNS VBP VBN TO VB RP NN IN DT NN POS JJ NNP NNP , RB JJ IN JJ NNS IN DT NN WDT VBD NN IN NNP .\nMany streets and homes are more than one meter under water .\tJJ NNS CC NNS VBP JJR IN CD NN IN NN .\nGovernor Blanco has asked the federal government for $ 34 billion in recovery aid for her state , which has been hit by two major hurricanes in four weeks .\tNNP NNP VBZ VBN DT JJ NN IN $ CD CD IN NN NN IN PRP$ NN , WDT VBZ VBN VBN IN CD JJ NNS IN CD NNS .\nIn New Orleans , Mayor Ray Nagin is calling on residents of one neighborhood , Algiers , to return home and help rebuild the city .\tIN NNP NNP , NNP NNP NNP VBZ VBG IN NNS IN CD NN , NNP , TO VB NN CC NN VB DT NN .\nIn Texas , thousands of residents are planning to return to Houston Monday .\tIN NNP , NNS IN NNS VBP VBG TO VB TO NNP NNP .\nThe nation 's fourth largest city escaped the worst of the storm .\tDT NN POS JJ JJS NN VBD DT JJS IN DT NN .\nPolice in northwest Pakistan say a suicide bomber has struck near a market , killing at least 18 people and wounding more than 30 .\tNNS IN JJ NNP VBP DT NN NN VBZ VBN IN DT NN , VBG IN JJS CD NNS CC VBG JJR IN CD .\nAuthorities say the attack happened Wednesday in the town of Kohat .\tNNS VBP DT NN VBD NNP IN DT NN IN NNP .\nPolice say the bomber blew himself by a passenger bus near Tirah market .\tNNS VBP DT NN VBD PRP IN DT NN NN IN NNP NN .\nOfficials say the bus was headed to nearby Orakzai district .\tNNS VBP DT NN VBD VBN TO JJ NNP NN .\nNo one has claimed responsibility for the blast .\tDT NN VBZ VBN NN IN DT NN .\nMeanwhile , a purported spokesman for the Pakistani Taliban has claimed responsibility for a deadly blast that took place Monday during an anti-Taliban meeting .\tRB , DT JJ NN IN DT JJ NNP VBZ VBN NN IN DT JJ NN WDT VBD NN NNP IN DT JJ NN .\nIn that attack , two suicide bombers blew themselves in Mohmand near the Afghanistan border , killing 50 people .\tIN DT NN , CD NN NNS VBD PRP IN NNP IN DT NNP NN , VBG CD NNS .\nThe Pakistani army has been fighting insurgents in the area but has been unable to defeat Taliban and al-Qaida linked groups .\tDT JJ NN VBZ VBN VBG NNS IN DT NN CC VBZ VBN JJ TO VB NNP CC NNP VBN NNS .\nInsurgents in Iraq launched a wave of suicide attacks against U.S. forces and kidnapped an American contractor Monday .\tNNS IN NNP VBD DT NN IN NN NNS IN NNP NNS CC VBD DT JJ NN NNP .\nA spokesman for the U.S. embassy says the contractor was abducted near Baghdad .\tDT NN IN DT NNP NN VBZ DT NN VBD VBN IN NNP .\nEarlier , suicide bombers blew up three vehicles at the entrance to a U.S. base in western Iraq .\tRB , NN NNS VBD RP CD NNS IN DT NN TO DT NNP NN IN JJ NNP .\nThree U.S. Marines and three Iraqi civilians were wounded .\tCD NNP NNS CC CD JJ NNS VBD VBN .\nInsurgents in another vehicle opened fire on the base before a U.S. helicopter destroyed their car .\tNNS IN DT NN VBD NN IN DT NN IN DT NNP NN VBD PRP$ NN .\nAnd in Samarra , a suicide car bomber killed three people and wounded 20 others when his vehicle exploded near a U.S. convoy .\tCC IN NNP , DT NN NN NN VBD CD NNS CC VBD CD NNS WRB PRP$ NN VBD IN DT NNP NN .\nMeanwhile , media reports say the U.S. Defense Department may withdraw tens of thousands of troops from Iraq by early next year .\tRB , NNS NNS VBP DT NNP NNP NNP MD VB NNS IN NNS IN NNS IN NNP IN JJ JJ NN .\nLebanon 's prime minister-designate says he will offer his resignation to the Lebanese president , after failing to form a government of national unity .\tNNP POS JJ NN VBZ PRP MD VB PRP$ NN TO DT JJ NN , IN VBG TO VB DT NN IN JJ NN .\nOmar Karami told reporters Tuesday in Beirut he will inform President Emile Lahoud of his decision when they meet on Wednesday .\tNNP NNP VBD NNS NNP IN NNP PRP MD VB NNP NNP NNP IN PRP$ NN WRB PRP VBP IN NNP .\nThe pro-Syrian Mr. Karami first resigned on February 28 , in the face of growing anti-Syrian protests sparked by the assassination of former Prime Minister Rafik Hariri .\tDT JJ NNP NNP RB VBD IN NNP CD , IN DT NN IN VBG JJ NNS VBN IN DT NN IN JJ NNP NNP NNP NNP .\nPresident Lahoud re-appointed him on March 10 , but he has not been able to bring the opposition into a new government .\tNNP NNP VBD PRP IN NNP CD , CC PRP VBZ RB VBN JJ TO VB DT NN IN DT JJ NN .\nMeanwhile , security officials say the pro-Syrian head of military intelligence in Lebanon , General Raymond Azar , will take a month-long leave of absence .\tRB , NN NNS VBP DT JJ NN IN JJ NN IN NNP , NNP NNP NNP , MD VB DT JJ NN IN NN .\nOpposition leaders have called for his resignation , along with those of several other security officials .\tNN NNS VBP VBN IN PRP$ NN , IN IN DT IN JJ JJ NN NNS .\nDefending Olympic women 's marathon champion Mizuki Noguchi of Japan has withdrawn from the Beijing Games because of a left thigh injury .\tVBG JJ NNS POS NN NN NNP NNP IN NNP VBZ VBN IN DT NNP NNPS IN IN DT JJ NN NN .\nThe chief of Japan 's Olympic delegation Tomiaki Fukuda made the announcement Tuesday , saying the 30-year-old Noguchi has an injured muscle in her left thigh .\tDT NN IN NNP POS NNP NN NNP NNP VBD DT NN NNP , VBG DT JJ NNP VBZ DT JJ NN IN PRP$ NN NN .\nJapan will not send a replacement marathoner for Noguchi , because her substitute also is injured .\tNNP MD RB VB DT NN NN IN NNP , IN PRP$ NN RB VBZ VBN .\nNo runner has won the women 's marathon gold in two consecutive Olympics .\tDT NN VBZ VBN DT NNS POS NN NN IN CD JJ NNS .\nThis year 's field looks wide open , with Noguchi out and British world record holder Paula Radcliffe still attempting to recover from a stress fracture in her left thigh .\tDT NN POS NN VBZ JJ JJ , IN NNP IN CC JJ NN NN NN NNP NNP RB VBG TO VB IN DT NN NN IN PRP$ NN NN .\nThe U.N. Security Council has unanimously approved a new mission to East Timor to help establish security in the country .\tDT NNP NNP NNP VBZ RB VBN DT JJ NN TO NNP NNP TO VB VB NN IN DT NN .\nThe resolution passed on Friday sends more than 1,600 police and military liaison officers to East Timor for six months .\tDT NN VBD IN NNP VBZ JJR IN CD NNS CC JJ NN NNS TO NNP NNP IN CD NNS .\nThere will be no military troops in the new mission , but the Australian-led peacekeeping force already in East Timor will remain in place .\tEX MD VB DT JJ NNS IN DT JJ NN , CC DT JJ NN NN RB IN NNP NNP MD VB IN NN .\nAustralia sent 1,500 troops and 200 police officers to East Timor in May after weeks of street violence , sparked by a split in the ranks of East Timor 's armed forces .\tNNP VBD CD NNS CC CD NN NNS TO NNP NNP IN NNP IN NNS IN NN NN , VBN IN DT NN IN DT NNS IN NNP NNP POS JJ NNS .\nAnother 600 peacekeepers come from Malaysia , New Zealand , and Portugal .\tDT CD NNS VBP IN NNP , NNP NNP , CC NNP .\nEarlier on Friday , the commander of the peacekeepers , Steve Lancaster , said officers have detained 62 people for questioning in an attack on one of the Australian police officers last week .\tRBR IN NNP , DT NN IN DT NNS , NNP NNP , VBD NNS VBP VBN CD NNS IN VBG IN DT NN IN CD IN DT JJ NN NNS JJ NN .\nWith the HIV / AIDS epidemic now 25-years-old , the World Bank has launched a new strategy to combat the disease where it is the most prevalent -- Africa .\tIN DT NNP NNP NNP NN RB JJ , DT NNP NNP VBZ VBN DT JJ NN TO VB DT NN WRB PRP VBZ DT RBS JJ : NNP .\nNearly two million have died on the continent and HIV has cost the World Bank $ 1.6 billion .\tRB CD CD VBP VBN IN DT NN CC NNP VBZ VBN DT NNP NNP $ CD CD .\nIn Washington this week , World Bank officials said it 's time to move away from an initial ' emergency response ' to a new four-year action agenda .\tIN NNP DT NN , NNP NNP NNS VBD PRP VBZ NN TO VB RB IN DT JJ `` NN NN `` TO DT JJ JJ NN NN .\nProducer Zulima Palacio has the story .\tNNP NNP NNP VBZ DT NN .\nCarol Pearson narrates .\tNNP NNP VBZ .\nWitnesses in Somalia 's capital Mogadishu say fighting between rival militias has claimed the lives of at least 15 people since Saturday .\tNNS IN NNP POS NN NNP VBP VBG IN JJ NNS VBZ VBN DT NNS IN IN JJS CD NNS IN NNP .\nResidents say the clashes resumed Monday after a one-day lull .\tNNS VBP DT NNS VBD NNP IN DT JJ NN .\nThe fighting was sparked by a territorial dispute between gunmen loyal to Mogadishu 's Islamic courts and fighters allied with local warlords .\tDT NN VBD VBN IN DT JJ NN IN NNS JJ TO NNP POS JJ NNS CC NNS VBN IN JJ NNS .\nTen people were killed and 40 wounded in Saturday 's clashes .\tCD NNS VBD VBN CC CD VBN IN NNP POS NNS .\nSomalia has been without an effective central government since 1991 , when warlords overthrew former President Mohamed Siad Barre .\tNNP VBZ VBN IN DT JJ JJ NN IN CD , WRB NNS VBD JJ NNP NNP NNP NNP .\nThe country 's interim government , set up in 2004 , has been hampered by disputes between political leaders .\tDT NN POS JJ NN , VBN RP IN CD , VBZ VBN VBN IN NNS IN JJ NNS .\nThe interim parliament is scheduled to hold its first meeting on Somali soil this Sunday after previous meetings in Kenya .\tDT JJ NN VBZ VBN TO VB PRP$ JJ NN IN JJ NN DT NNP IN JJ NNS IN NNP .\nActing Israeli Prime Minister Ehud Olmert has called a meeting of top military and political officials to discuss the possibility that the radical Hamas movement may make strong gains in upcoming Palestinian elections .\tVBG JJ NNP NNP NNP NNP VBZ VBN DT NN IN JJ JJ CC JJ NNS TO VB DT NN IN DT JJ NNP NN MD VB JJ NNS IN VBG JJ NNS .\nHamas , whose military wing has claimed scores of attacks against Israel , has called for the destruction of the Jewish state .\tNNP , WP$ JJ NN VBZ VBN NNS IN NNS IN NNP , VBZ VBN IN DT NN IN DT JJ NN .\nSurveys ahead of Wednesday 's polls show a Hamas slate almost even with Fatah candidates .\tNNS RB IN NNP POS NNS VBP DT NNP NN RB RB IN NNP NNS .\nSunday , Israeli cabinet minister Tzachi Hanegbi was quoted by Reuters as saying that Hamas ' presence in a post-election Palestinian Authority would have a ' tragic impact ' on any future peace talks .\tNNP , JJ NN NN NNP NNP VBD VBN IN NNP IN VBG IN NNP POS NN IN DT JJ JJ NNP MD VB DT `` JJ NN `` IN DT JJ NN NNS .\nSeparately , a published report says the United States is providing financial assistance to boost political support for the ruling Fatah movement .\tRB , DT VBN NN VBZ DT NNP NNPS VBZ VBG JJ NN TO VB JJ NN IN DT NN NNP NN .\nThe Washington Post says the U.S. Agency for International Development is using about $ 2 million to promote the Palestinian Authority ahead of the polls .\tDT NNP NNP VBZ DT NNP NNP IN NNP NNP VBZ VBG IN $ CD CD TO VB DT JJ NNP RB IN DT NNS .\nItalian police say a parcel bomb was found Monday at the Greek embassy in Rome .\tJJ NNS VBP DT NN NN VBD VBN NNP IN DT JJ NN IN NNP .\nPolice say the device failed to explode and was defused by bomb disposal experts .\tNNS VBP DT NN VBD TO VB CC VBD VBN IN NN NN NNS .\nThe bomb arrived just days after two similar packages exploded at the Chilean and Swiss embassies in the Italian capital .\tDT NN VBD RB NNS IN CD JJ NNS VBD IN DT JJ CC JJ NNS IN DT JJ NN .\nTwo staffers were wounded in those blasts .\tCD NNS VBD VBN IN DT NNS .\nMembers of an anarchist group claimed responsibility for last week 's parcel bombs , but there was no immediate claim for Monday 's attempt .\tNNS IN DT NN NN VBD NN IN JJ NN POS NN NNS , CC EX VBD DT JJ NN IN NNP POS NN .\nPolice across much of Europe have been on heightened alert since a suicide bombing in Stockholm earlier this month killed the suspected bomber and wounded two others .\tNNS IN NN IN NNP VBP VBN IN JJ NN IN DT NN VBG IN NNP RBR DT NN VBD DT JJ NN CC VBD CD NNS .\nLast week , 12 terror suspects were arrested in Britain .\tJJ NN , CD NN NNS VBD VBN IN NNP .\nNorth Korea has barred border crossings with South Korea for a second straight day Saturday , stranding hundreds of people in the North .\tNNP NNP VBZ VBN NN NNS IN NNP NNP IN DT JJ JJ NN NNP , VBG NNS IN NNS IN DT NNP .\nPyongyang banned border traffic on Friday , preventing more than 400 people who work at a joint industrial complex at Kaesong from returning South .\tNNP VBD NN NN IN NNP , VBG JJR IN CD NNS WP VBP IN DT JJ JJ NN IN NNP IN VBG NNP .\nSeoul 's Unification Ministry says five people were allowed to cross , including four foreigners and a bride-to-be .\tNNP POS NNP NNP VBZ CD NNS VBD VBN TO VB , VBG CD NNS CC DT NN .\nEarlier this week , North Korea switched off military military phones to the South to protest annual military exercises being conducted jointly by the United States and South Korea .\tRBR DT NN , NNP NNP VBD RP JJ JJ NNS TO DT NNP TO VB JJ JJ NNS VBG VBN RB IN DT NNP NNPS CC NNP NNP .\nNorth Korea routinely accuses the United States and South Korea of having aggressive intentions when they carry out the joint military drills .\tNNP NNP RB VBZ DT NNP NNPS CC NNP NNP IN VBG JJ NNS WRB PRP VBP RP DT JJ JJ NNS .\nThe maneuvers include a U.S. aircraft carrier , 26,000 U.S. troops and more than 30,000 South Korean soldiers .\tDT NNS VBP DT NNP NN NN , CD NNP NNS CC JJR IN CD JJ JJ NNS .\nThe drills are expected to conclude on March 20 .\tDT NNS VBP VBN TO VB IN NNP CD .\nThe United Nations Security Council is considering a 12-month extension of the peacekeeping force in Haiti .\tDT NNP NNP NNP NNP VBZ VBG DT JJ NN IN DT NN NN IN NNP .\nThe council met Monday but did not reach a decision about the force 's mandate , which is due to expire February 15 .\tDT NN VBD NNP CC VBD RB VB DT NN IN DT NN POS NN , WDT VBZ JJ TO VB NNP CD .\nFormer U.N. Secretary General Kofi Annan had called for a 12-month extension before leaving his post last year .\tJJ NNP NNP NNP NNP NNP VBD VBN IN DT JJ NN IN VBG PRP$ NN JJ NN .\nAfter Monday 's meeting , Russia 's U.N. ambassador Vitaly Churkin said that some of the council 's 15 members continue to oppose extending the force .\tIN NNP POS NN , NNP POS NNP NN NNP NNP VBD IN DT IN DT NN POS CD NNS VBP TO VB VBG DT NN .\nThere are almost 8,000 U.N. peacekeepers in Haiti currently working to root out violent gangs .\tEX VBP RB CD NNP NNS IN NNP RB VBG TO VB RP JJ NNS .\nThe peacekeepers were deployed in 2004 after former President Jean-Bertrand Aristide was ousted in an uprising .\tDT NNS VBD VBN IN CD IN JJ NNP NNP NNP VBD VBN IN DT NN .\nPhilippine President Gloria Arroyo says a Philippine hostage in Iraq has been released after nearly eight months in captivity .\tJJ NNP NNP NNP VBZ DT JJ NN IN NNP VBZ VBN VBN IN RB CD NNS IN NN .\nMs. Arroyo announced Wednesday , that Roberto Tarongoy is in the custody of Philippine diplomats in Baghdad and that arrangements are being made for him to return home .\tNNP NNP VBD NNP , IN NNP NNP VBZ IN DT NN IN JJ NNS IN NNP CC IN NNS VBP VBG VBN IN PRP TO VB NN .\nPresident Arroyo did not provide further details .\tNNP NNP VBD RB VB JJ NNS .\nMr. Tarongoy , who worked for a Saudi firm , was abducted in early November along with an American colleague , Roy Hallums , whose fate remains unknown .\tNNP NNP , WP VBD IN DT JJ NN , VBD VBN IN JJ NNP IN IN DT JJ NN , NNP NNP , WP$ NN VBZ JJ .\nLast year , the Philippines pulled out its small military contingent from Iraq , after a Philippine truck driver was kidnapped .\tJJ NN , DT NNPS VBD RP PRP$ JJ JJ NN IN NNP , IN DT JJ NN NN VBD VBN .\nThe truck driver was later released .\tDT NN NN VBD RB VBN .\nThe word tattoo is most often associated with artwork on someone 's body .\tDT NN NN VBZ RBS RB VBN IN NN IN DT POS NN .\nBut it also a military tradition dating back to the 17th century of calling soldiers or sailors back to their quarters at night with a drum or bugle .\tCC PRP RB DT JJ NN VBG RB TO DT JJ NN IN VBG NNS CC NNS RB TO PRP$ NNS IN NN IN DT NN CC NN .\nEach year that tradition is recreated in Washington in a weekly sunset military pageant known as the ' Twilight Tattoo ' .\tDT NN IN NN VBZ VBN IN NNP IN DT JJ NN JJ NN VBN IN DT `` NNP NNP `` .\nVOA 's Jeff Feuer has more on this storied tradition .\tNNP POS NNP NNP VBZ RBR IN DT JJ NN .\nThe European Union has insisted that Poland restructure the historic Gdansk shipyard , site of protests that led to the formation of the Solidarity labor union .\tDT NNP NNP VBZ VBN IN NNP VBP DT JJ NNP NN , NN IN NNS WDT VBD TO DT NN IN DT NNP NN NN .\nEU officials said Tuesday that the Gdansk shipyard must streamline its operations or repay hefty state subsidies , to come into line with rules allowing subsidies only for businesses working toward long-term sustainability .\tNNP NNS VBD NNP IN DT NNP NN MD VB PRP$ NNS CC VB JJ NN NNS , TO VB IN NN IN NNS VBG NNS RB IN NNS VBG IN JJ NN .\nTrade unions object to proposed changes at the shipyard , saying they will eliminate hundreds of jobs .\tNNP NNS VBP TO VBN NNS IN DT NN , VBG PRP MD VB NNS IN NNS .\nThe Gdansk shipyard is the location where labor leader Lech Walesa led a strike that led to government recognition for the Solidarity labor union , a major development in the eventual collapse of European communism .\tDT NNP NN VBZ DT NN WRB NN NN NNP NNP VBD DT NN WDT VBD TO NN NN IN DT NNP NN NN , DT JJ NN IN DT JJ NN IN JJ NN .\nAbout 100 Polish workers demonstrated outside EU headquarters in Brussels last week to protest plans to restructure the shipyard .\tIN CD JJ NNS VBD JJ NNP NN IN NNP JJ NN TO VB NNS TO VB DT NN .\nIt was the 27th anniversary of the ratification of the agreement that led to Solidarity 's creation .\tPRP VBD DT JJ NN IN DT NN IN DT NN WDT VBD TO NNP POS NN .\nLebanese opposition leaders have called for a one-day national strike to demand that Beirut 's pro-Syrian government resign .\tJJ NN NNS VBP VBN IN DT JJ JJ NN TO VB IN NNP POS JJ NN VB .\nThe strike , set for Monday , would come two weeks after the assassination of former Lebanese Prime Minister Rafik Hariri .\tDT NN , VBN IN NNP , MD VB CD NNS IN DT NN IN JJ JJ NNP NNP NNP NNP .\nIt would also coincide with opposition plans to call for a no-confidence vote against the government .\tPRP MD RB VB IN NN NNS TO VB IN DT JJ NN IN DT NN .\nOpposition leaders blame Beirut and close-ally Syria for the car bombing that killed Mr. Hariri February 14 .\tNN NNS VBP NNP CC RB NNP IN DT NN NN WDT VBD NNP NNP NNP CD .\nBoth Beirut and Damascus deny involvement .\tDT NNP CC NNP VBP NN .\nEarlier Wednesday , Egyptian President Hosni Mubarak dispatched his intelligence chief to Damascus , in a move to ease post-assassination tensions between Syria and Lebanon .\tRBR NNP , JJ NNP NNP NNP VBD PRP$ NN NN TO NNP , IN DT NN TO VB JJ NNS IN NNP CC NNP .\nA Mubarak spokesman said the mission was also triggered by growing pressure on Syria coming from a U.S.-European summit in Brussels .\tDT NNP NN VBD DT NN VBD RB VBN IN VBG NN IN NNP VBG IN DT JJ NN IN NNP .\nPresident Bush and European leaders are calling for Syria to withdraw its forces from Lebanon , and for a speedy investigation into the Hariri killing .\tNNP NNP CC JJ NNS VBP VBG IN NNP TO VB PRP$ NNS IN NNP , CC IN DT JJ NN IN DT NNP NN .\nGunmen dressed in Iraqi police commando uniforms killed eight people during a raid on a Baghdad electronics store Wednesday .\tNNS VBN IN JJ NN NN NNS VBD CD NNS IN DT NN IN DT NNP NN NN NNP .\nThree women were among those killed .\tCD NNS VBD IN DT VBN .\nAnother six people were wounded .\tDT CD NNS VBD VBN .\nThe attack is the latest in the affluent Mansour district and comes after gunmen abducted more than 30 Iraqis in Baghdad this week .\tDT NN VBZ DT JJS IN DT JJ NNP NN CC VBZ IN NNS VBD JJR IN CD NNS IN NNP DT NN .\nNorth of the capital , a roadside bomb killed three Iraqi soldiers near Kirkuk .\tNNP IN DT NN , DT NN NN VBD CD JJ NNS IN NNP .\nAnd the U.S. military said Wednesday three insurgents were killed Tuesday when an unmanned aircraft fired a missile at them while they were planting a roadside bomb near Balad Air Base .\tCC DT NNP NN VBD NNP CD NNS VBD VBN NNP WRB DT JJ NN VBD DT NN IN PRP IN PRP VBD VBG DT NN NN IN NNP NNP NNP .\nIn other violence Tuesday , two U.S. soldiers were killed in separate incidents .\tIN JJ NN NNP , CD NNP NNS VBD VBN IN JJ NNS .\nIran has attacked President Bush 's planned trip to the Middle East and says it has no plans to normalize relations with the United States .\tNNP VBZ VBN NNP NNP POS JJ NN TO DT NNP NNP CC VBZ PRP VBZ DT NNS TO VB NNS IN DT NNP NNPS .\nForeign Ministry spokesman Mohammad Ali Hosseini told a new conference Sunday that Iran sees Mr. Bush 's trip as interference in the countries of the region .\tNNP NNP NN NNP NNP NNP VBD DT JJ NN NNP IN NNP VBZ NNP NNP POS NN IN NN IN DT NNS IN DT NN .\nHosseini also said Iran has no immediate plans to restore ties with America .\tNNP RB VBD NNP VBZ DT JJ NNS TO VB NNS IN NNP .\nIranian leaders have often said they would not establish ties with the United States unless Washington changes its behavior towards the Islamic Republic .\tJJ NNS VBP RB VBN PRP MD RB VB NNS IN DT NNP NNPS IN NNP VBZ PRP$ NN IN DT NNP NNP .\nIran 's Supreme Leader Ayatollah Ali Khamenei suggested last Thursday that ties with Washington might one day be possible , although he said it would harm Iran to restore relations now .\tNNP POS NNP NNP NNP NNP NNP VBD JJ NNP IN NNS IN NNP MD CD NN VB JJ , IN PRP VBD PRP MD VB NNP TO VB NNS RB .\nGunmen in Iraq have assassinated a prominent tribal leader in the northern Iraqi city of Tikrit .\tNNS IN NNP VBP VBN DT JJ JJ NN IN DT JJ JJ NN IN NNP .\nIraqi police said Tuesday Mahmoud al-Nida , the head of Saddam Hussein 's tribe , died following the attack Monday night .\tJJ NNS VBD NNP NNP NNP , DT NN IN NNP NNP POS NN , VBD VBG DT NN NNP NN .\nMeanwhile , an influential Shi'ite leader in Iraq said residents should be allowed to form self-defense units to protect themselves against sectarian attacks .\tRB , DT JJ NNP NN IN NNP VBD NNS MD VB VBN TO VB JJ NNS TO VB PRP IN JJ NNS .\nAbdul Aziz al-Hakim , the leader of the Supreme Council for the Islamic Revolution in Iraq , told the Washington Post that Iraqis should band together and take up arms to protect their neighborhoods against rampant violence .\tNNP NNP NNP , DT NN IN DT NNP NNP IN DT NNP NNP IN NNP , VBD DT NNP NNP IN NNS MD VB RB CC VB RP NNS TO VB PRP$ NNS IN JJ NN .\nThe continuing violence comes as Iraqi Prime Minister Nouri al-Maliki met with President Bush Tuesday to discuss ways to end the rising sectarian violence in Baghdad .\tDT VBG NN VBZ IN JJ NNP NNP NNP NNP VBD IN NNP NNP NNP TO VB NNS TO VB DT VBG JJ NN IN NNP .\nFrench President Jacques Chirac says the U.S-led invasion of Iraq has destabilized the entire Middle East and boosted the spread of terrorism .\tJJ NNP NNP NNP VBZ DT JJ NN IN NNP VBZ VBN DT JJ NNP NNP CC VBD DT NN IN NN .\nIn the latest in a series of speeches marking the New Year , Mr. Chirac Friday called the war in Iraq an American ' adventure . '\tIN DT JJS IN DT NN IN NNS VBG DT NNP NNP , NNP NNP NNP VBD DT NN IN NNP DT JJ `` NN . ``\nHe said it has increased divisions between Iraqi communities and undermined the integrity of the war-torn country .\tPRP VBD PRP VBZ VBN NNS IN JJ NNS CC VBD DT NN IN DT JJ NN .\nThe French president also renewed his call for an international conference on the Middle East peace process .\tDT JJ NN RB VBD PRP$ NN IN DT JJ NN IN DT NNP NNP NN NN .\nIn separate speeches earlier this week , Mr. Chirac addressed the French economy and homelessness in his country .\tIN JJ NNS RBR DT NN , NNP NNP VBD DT JJ NN CC NN IN PRP$ NN .\nAlthough widely seen as unlikely to run for a third term in this year 's presidential elections , the 74-year-old president has not yet announced his intentions for the April balloting .\tIN RB VBN IN JJ TO VB IN DT JJ NN IN DT NN POS JJ NNS , DT JJ NN VBZ RB RB VBN PRP$ NNS IN DT NNP NN .\nAt the plaza in front of the Western Wall , Israeli police arrest an ultra-Orthodox Israeli Israeli police have prevented right-wing Jewish extremists from staging a rally at a disputed holy site in Jerusalem .\tIN DT NN IN NN IN DT NNP NNP , JJ NN NN DT JJ JJ JJ NNS VBP VBN JJ JJ NNS IN VBG DT NN IN DT JJ JJ NN IN NNP .\nThousands of Israeli police encircled Jerusalem 's Old City Sunday , stopping cars and setting up roadblocks to prevent an ultranationalist group from entering a disputed holy site .\tNNS IN JJ NN VBD NNP POS NNP NNP NNP , VBG NNS CC VBG RP NNS TO VB DT NN NN IN VBG DT JJ JJ NN .\nAuthorities say police arrested at least a dozen Israeli right-wing activists , including the leader of an ultranationalist group , Revava .\tNNS VBP NNS VBN IN JJS DT NN JJ JJ NNS , VBG DT NN IN DT JJ NN , NNP .\nThe group planned to lead thousands of activists into the Al-Aqsa Mosque compound Sunday .\tDT NN VBD TO VB NNS IN NNS IN DT NNP NNP NN NNP .\nThe hilltop compound is the most hotly contested site in Jerusalem , known to Muslims as the Noble Sanctuary and to Jews as the Temple Mount .\tDT NN NN VBZ DT RBS RB VBN NN IN NNP , VBN TO NNPS IN DT NNP NNP CC TO NNPS IN DT NNP NNP .\nPalestinian militants have warned of an uprising if the Jews try to enter the site .\tJJ NNS VBP VBN IN DT NN IN DT NNPS VBP TO VB DT NN .\nCrude oil prices are down more than $ 1 in New York after a U.S. government report showed inventories rose to the highest level in six years .\tJJ NN NNS VBP RB JJR IN $ CD IN NNP NNP IN DT NNP NN NN VBD NNS VBD TO DT JJS NN IN CD NNS .\nCrude oil for June delivery is down $ 1.17 , to $ 50.9 a barrel in New York Wednesday afternoon .\tJJ NN IN NNP NN VBZ RB $ CD , TO $ CD DT NN IN NNP NNP NNP NN .\nThe U.S. Energy Department says supplies climbed 2.7 million barrels last week - more than twice what analysts were expecting .\tDT NNP NNP NNP VBZ NNS VBD CD CD NNS JJ NN IN JJR IN RB WP NNS VBD VBG .\nIn London , Brent crude oil for June delivery fell 87 cents , to $ 50.56 a barrel on the International Petroleum Exchange .\tIN NNP , NNP JJ NN IN NNP NN VBD CD NNS , TO $ CD DT NN IN DT NNP NNP NNP .\nThe International Energy Agency says oil demand around the world is lower due to an economic slowdown in China , Europe and the United States in the first quarter .\tDT NNP NNP NNP VBZ NN NN IN DT NN VBZ JJR JJ TO DT JJ NN IN NNP , NNP CC DT NNP NNPS IN DT JJ NN .\nLeaders from northern and southern Sudan are holding negotiations on how to run the country after next year 's referendum that will determine if the south becomes an independent state .\tNNS IN JJ CC JJ NNP VBP VBG NNS IN WRB TO VB DT NN IN JJ NN POS NN WDT MD VB IN DT NN VBZ DT JJ NN .\nTuesday 's talks are focusing on a range of unresolved issues between the two sides -- including demarcating the border , citizenship and the sharing of oil revenues and Nile water resources .\tNNP POS NNS VBP VBG IN DT NN IN JJ NNS IN DT CD NNS : VBG VBG DT NN , NN CC DT NN IN NN NNS CC JJ NN NNS .\nThe semi-autonomous south is scheduled to hold a referendum January 9 on whether to become an independent state .\tDT JJ NN VBZ VBN TO VB DT NN NNP CD IN IN TO VB DT JJ NN .\nThe vote was a key part of the 2005 agreement ending Sudan 's north-south civil war .\tDT NN VBD DT JJ NN IN DT CD NN VBG NNP POS JJ JJ NN .\nMuch of Sudan 's oil wealth is believed to lie along the disputed border .\tNN IN NNP POS NN NN VBZ VBN TO VB IN DT JJ NN .\nThe oil-rich Abyei region holds a separate referendum January 9 on whether to be part of the north or the south .\tDT JJ NNP NN VBZ DT JJ NN NNP CD IN IN TO VB NN IN DT NN CC DT NN .\nAs India prepares to hold next month 's state assembly elections in its part of Kashmir , a trade route has been reopened between the two Kashmirs .\tIN NNP VBZ TO VB JJ NN POS NN NN NNS IN PRP$ NN IN NNP , DT NN NN VBZ VBN VBN IN DT CD NNS .\nVOA 's Ravi Khanna reports Washington experts see these moves leading to an eventual end to the long-running conflict over the disputed territory .\tNNP POS NNP NNP VBZ NNP NNS VBP DT NNS VBG TO DT JJ NN TO DT JJ NN IN DT JJ NN .\nThe mayor of New Orleans has ordered a mandatory evacuation for most of the residents of his southern U.S. city , as Hurricane Katrina nears with winds of 250 kilometers per hour .\tDT NN IN NNP NNP VBZ VBN DT JJ NN IN JJS IN DT NNS IN PRP$ JJ NNP NN , IN NNP NNP VBZ IN NNS IN CD NNS IN NN .\nSunday , the U.S. National Weather Service upgraded Katrina to a rare category 5 storm , the most intense on the Saffir-Simpson hurricane scale .\tNNP , DT NNP NNP NNP NNP VBD NNP TO DT JJ NN CD NN , DT RBS JJ IN DT NNP NN NN .\nForecasters expect Katrina to make landfall in the state of Louisiana sometime Monday , bringing heavy rains and a high storm surge along with the winds .\tNNS VBP NNP TO VB NN IN DT NN IN NNP RB NNP , VBG JJ NNS CC DT JJ NN NN IN IN DT NNS .\nOfficials are especially concerned about New Orleans , most of which sits below sea level and is vulnerable to flooding .\tNNS VBP RB JJ IN NNP NNP , JJS IN WDT VBZ IN NN NN CC VBZ JJ TO NN .\nWeather officials have warned a major loss of life is possible unless residents take precautions immediately .\tNNP NNS VBP VBN DT JJ NN IN NN VBZ JJ IN NNS VBP NNS RB .\nAt last report , the hurricane was located about 400 kilometers off the southern Louisiana coast , in the Gulf of Mexico .\tIN JJ NN , DT NN VBD VBN IN CD NNS IN DT JJ NNP NN , IN DT NNP IN NNP .\nPresident Bush has already declared a federal state of emergency for the state of Louisiana .\tNNP NNP VBZ RB VBN DT JJ NN IN NN IN DT NN IN NNP .\nGerman Chancellor Angela Merkel has arrived in Jordan for talks with King Abdullah about regional developments .\tJJ NNP NNP NNP VBZ VBN IN NNP IN NNS IN NNP NNP IN JJ NNS .\nIt is the first stop of her three-day visit to the Middle East .\tPRP VBZ DT JJ NN IN PRP$ JJ NN TO DT NNP NNP .\nMs. Merkel Saturday is expected to discuss with the Jordanian monarch the Arab peace plan for Israel , as well as the situation in Iraq .\tNNP NNP NNP VBZ VBN TO VB IN DT JJ NN DT JJ NN NN IN NNP , RB RB IN DT NN IN NNP .\nThe trip will allow Ms. Merkel to continue the European Union 's diplomatic efforts in the Middle East while her country holds the EU 's rotating presidency .\tDT NN MD VB NNP NNP TO VB DT NNP NNP POS JJ NNS IN DT NNP NNP IN PRP$ NN VBZ DT NNP POS VBG NN .\nThe German chancellor 's trip follows a recent agreement among Arab countries to revise a 2002 peace plan with Israel .\tDT JJ NN POS NN VBZ DT JJ NN IN JJ NNS TO VB DT CD NN NN IN NNP .\nMs. Merkel acknowledged before her trip that the plan shows some progress , but she also warned that it poses some difficult challenges .\tNNP NNP VBD IN PRP$ NN IN DT NN VBZ DT NN , CC PRP RB VBD IN PRP VBZ DT JJ NNS .\nMs. Merkel also is scheduled to travel to Israel , the Palestinian territories and Lebanon .\tNNP NNP RB VBZ VBN TO VB TO NNP , DT JJ NNS CC NNP .\nThe Disney Channel now can claim the most-watched basic cable TV movie in broadcasting history .\tDT NNP NNP RB MD VB DT JJS JJ NN NN NN IN NN NN .\nHigh School Musical 2 drew an audience of 17.2 million for its August 17 premiere , more than doubling the viewership of its predecessor .\tNNP NNP NNP CD VBD DT NN IN CD CD IN PRP$ NNP CD NN , JJR IN VBG DT NN IN PRP$ NN .\nHigh School Musical attracted 7.7 million viewers in 2006 .\tNNP NNP NNP VBD CD CD NNS IN CD .\nThe previous basic cable record-holder was CNN 's 1993 debate on the North American Free Trade Agreement , which drew 16.8 million viewers .\tDT JJ JJ NN NN VBD NNP POS CD NN IN DT NNP NNP NNP NNP NNP , WDT VBD CD CD NNS .\nIf kids were watching TV on August 17 , they were probably watching High School Musical 2 .\tIN NNS VBD VBG NN IN NNP CD , PRP VBD RB VBG NNP NNP NNP CD .\nThe Disney Channel said the movie attracted four out of five female viewers in the six-to-11-year-old age group .\tDT NNP NNP VBD DT NN VBD CD IN IN CD JJ NNS IN DT JJ NN NN .\nThe High School Musicalphenomenon has made stars of cast members Zac Efron and Ashley Tisdale , while also spawning hit records and sold-out concerts .\tDT NNP NNP NNP VBZ VBN NNS IN NN NNS NNP NNP CC NNP NNP , IN RB VBG NN NNS CC JJ NNS .\nPresident Bush is holding a news conference Monday , just hours after defending the war in Iraq in a nationally televised speech late Sunday .\tNNP NNP VBZ VBG DT NN NN NNP , RB NNS IN VBG DT NN IN NNP IN DT RB JJ NN JJ NNP .\nMr. Bush is expected to face questions about his authorization of a secret domestic surveillance program , which has drawn harsh criticism in Congress .\tNNP NNP VBZ VBN TO VB NNS IN PRP$ NN IN DT JJ JJ NN NN , WDT VBZ VBN JJ NN IN NNP .\nHe is also expected to be questioned on Iraq , and about his efforts to renew the Patriot Act , which expanded the government 's search and surveillance powers after the September 11 , 2001 terrorist attacks .\tPRP VBZ RB VBN TO VB VBN IN NNP , CC IN PRP$ NNS TO VB DT NNP NNP , WDT VBD DT NN POS NN CC NN NNS IN DT NNP CD , CD JJ NNS .\nIn Sunday 's speech , Mr. Bush said the United States is winning the war in Iraq and warned against a quick withdrawal .\tIN NNP POS NN , NNP NNP VBD DT NNP NNPS VBZ VBG DT NN IN NNP CC VBD IN DT JJ NN .\nThe president lashed out at opposition Democrats , calling their criticism of his handling of the war ' defeatism ' , and said it is not justified by the facts .\tDT NN VBD RP IN NN NNS , VBG PRP$ NN IN PRP$ NN IN DT NN `` NN `` , CC VBD PRP VBZ RB VBN IN DT NNS .\nNorth Korea says banning nuclear weapons from the Korean peninsula should be the main goal of the six-party talks that resumed Tuesday in Beijing .\tNNP NNP VBZ VBG JJ NNS IN DT JJ NN MD VB DT JJ NN IN DT JJ NNS WDT VBD NNP IN NNP .\nBut during the opening session Japan 's chief negotiator , Kenichiro Sasae , raised the issue of North Korea 's abduction of Japanese citizens during the 1970s and 80s , despite objections from South Korea .\tCC IN DT NN NN NNP POS NN NN , NNP NNP , VBD DT NN IN NNP NNP POS NN IN JJ NNS IN DT NNS CC NNS , IN NNS IN NNP NNP .\nChief U.S. negotiator Christopher Hill said in his opening statement that the United States views North Korea as a sovereign nation and that Washington has ' absolutely no intention ' of attacking the Stalinist state .\tNNP NNP NN NNP NNP VBD IN PRP$ NN NN IN DT NNP NNPS VBZ NNP NNP IN DT JJ NN CC IN NNP VBZ `` RB DT NN `` IN VBG DT JJ NN .\nThis fourth round of talks involving the two Koreas , the United States , China , Japan and Russia is aimed at convincing Pyongyang to abandon its nuclear ambitions .\tDT JJ NN IN NNS VBG DT CD NNP , DT NNP NNPS , NNP , NNP CC NNP VBZ VBN IN VBG NNP TO VB PRP$ JJ NNS .\nNorth Korea had boycotted the negotiations for more than a year , citing a hostile U.S. policy .\tNNP NNP VBD VBN DT NNS IN JJR IN DT NN , VBG DT JJ NNP NN .\nIran says it wants to continue talks about its nuclear program with the European Union , despite a deadlock over Tehran 's desire to produce nuclear fuel .\tNNP VBZ PRP VBZ TO VB NNS IN PRP$ JJ NN IN DT NNP NNP , IN DT NN IN NNP POS NN TO VB JJ NN .\nIran 's Foreign Minister Kamal Kharazzi told reporters Thursday that his country will continue the negotiations , provided they lead to a tangible outcome .\tNNP POS NNP NNP NNP NNP VBD NNS NNP IN PRP$ NN MD VB DT NNS , VBD PRP VBP TO DT JJ NN .\nMr. Kharazzi spoke at the United Nations after meeting with Secretary-General Kofi Annan .\tNNP NNP VBD IN DT NNP NNPS IN VBG IN JJ NNP NNP .\nIn a deal with Britain , France and Germany , Iran agreed late last year to suspend nuclear-fuel activities while the sides tried to negotiate an agreement regarding Iran 's nuclear ambitions .\tIN DT NN IN NNP , NNP CC NNP , NNP VBD RB JJ NN TO VB JJ NNS IN DT NNS VBD TO VB DT NN VBG NNP POS JJ NNS .\nBut Iran recently said it will resume some work relating to enriched uranium , which can be used both as fuel for nuclear power plants and explosive material for atomic bombs .\tCC NNP RB VBD PRP MD VB DT NN VBG TO VBN NN , WDT MD VB VBN DT IN NN IN JJ NN NNS CC JJ NN IN JJ NNS .\nWashington accuses Tehran of running a secret nuclear weapons program , a charge Iran denies .\tNNP VBZ NNP IN VBG DT JJ JJ NNS NN , DT NN NNP VBZ .\nPalestinian officials say militants have agreed to halt mortar and rocket attacks on Jewish settlements in the Gaza Strip that have threatened to derail a three-month cease-fire with Israel .\tJJ NNS VBP NNS VBP VBN TO VB NN CC NN NNS IN JJ NNS IN DT NNP NNP WDT VBP VBN TO VB DT JJ NN IN NNP .\nA Palestinian Interior Ministry spokesman Saturday , said the groups , including Hamas , agreed to stop the attacks after meeting late Thursday with Interior Minister Nasser Youssef .\tDT JJ NNP NNP NN NNP , VBD DT NNS , VBG NNP , VBD TO VB DT NNS IN NN JJ NNP IN NNP NNP NNP NNP .\nHamas unleashed intensive mortar strikes on Jewish settlements earlier in the week after Israeli soldiers killed several militants .\tNNP VBD JJ NN NNS IN JJ NNS RBR IN DT NN IN JJ NNS VBD JJ NNS .\nIsrael has threatened to use all necessary means to halt the attacks .\tNNP VBZ VBN TO VB DT JJ NNS TO VB DT NNS .\nIsrael 's Vice Prime Minister Shimon Peres says Iranian President Mahmoud Ahmadinejad , who said Israel should be wiped off the map , must know that Iran can also be destroyed .\tNNP POS NNP NNP NNP NNP NNP VBZ JJ NNP NNP NNP , WP VBD NNP MD VB VBN RP DT NN , MD VB IN NNP MD RB VB VBN .\nMr. Peres told the Reuters News Agency that Israel would defend itself under any condition .\tNNP NNP VBD DT NNP NNP NNP IN NNP MD VB PRP IN DT NN .\nHe said Iran is not just a threat to Israel , but a danger to the whole world .\tPRP VBD NNP VBZ RB RB DT NN TO NNP , CC DT NN TO DT JJ NN .\nHe warned of a world arms race if Iran builds a nuclear weapon , saying some bombs could fall into the hands of terrorists .\tPRP VBD IN DT NN NNS NN IN NNP VBZ DT JJ NN , VBG DT NNS MD VB IN DT NNS IN NNS .\nMr. Peres also said Iran 's defiance is making a mockery of the world .\tNNP NNP RB VBD NNP POS NN VBZ VBG DT NN IN DT NN .\nHe called on the the United Nations Security Council to act or face endangering an important world body .\tPRP VBD IN DT DT NNP NNP NNP NNP TO VB CC VB VBG DT JJ NN NN .\nEthiopia says it has broken off diplomatic relations with Qatar , accusing the Gulf state of supporting armed opposition groups in the Horn of Africa .\tNNP VBZ PRP VBZ VBN RP JJ NNS IN NNP , VBG DT NNP NN IN VBG JJ NN NNS IN DT NNP IN NNP .\nIn a statement Monday , Ethiopia 's government charged that Qatar is a source of instability in the region .\tIN DT NN NNP , NNP POS NN VBD IN NNP VBZ DT NN IN NN IN DT NN .\nIt alleged that Qatar supports armed opposition groups within Ethiopia as well as Islamic insurgents in Somalia , where Ethiopian troops are supporting the government .\tPRP VBD IN NNP VBZ JJ NN NNS IN NNP RB RB IN JJ NNS IN NNP , WRB JJ NNS VBP VBG DT NN .\nIt also cited Qatar 's strong ties with Ethiopia 's rival Eritrea .\tPRP RB VBD NNP POS JJ NNS IN NNP POS JJ NNP .\nThere was no immediate response from Qatar .\tEX VBD DT JJ NN IN NNP .\nThe Ethiopian government said Qatar has been one of the most important supporters of terrorism and extremism in the region .\tDT JJ NN VBD NNP VBZ VBN CD IN DT RBS JJ NNS IN NN CC NN IN DT NN .\nThe statement said Ethiopia had long observed what it called Qatar 's ' hostile behavior ' and had been patient before taking Monday 's measure .\tDT NN VBD NNP VBD RB VBN WP PRP VBD NNP POS `` JJ NN `` CC VBD VBN JJ IN VBG NNP POS NN .\nTurkish Prime Minister Recep Tayyip Erdogan says his country is ready to build ties with neighboring Armenia , despite disagreements over decades-old allegations of Turkish genocide against Armenians .\tJJ NNP NNP NNP NNP NNP VBZ PRP$ NN VBZ JJ TO VB NNS IN JJ NNP , IN NNS IN JJ NNS IN JJ NN IN NNS .\nIn an interview with the newspaper Milliyet , Mr. Erdogan renewed his call for creation of a joint Turkish-Armenian commission to study the disputed genocide issue .\tIN DT NN IN DT NN NNP , NNP NNP VBD PRP$ NN IN NN IN DT JJ JJ NN TO VB DT JJ NN NN .\nHe said this could coincide with the establishment of political relations between the two neighbors .\tPRP VBD DT MD VB IN DT NN IN JJ NNS IN DT CD NNS .\nThe countries share a border , but have no diplomatic ties .\tDT NNS VBP DT NN , CC VBP DT JJ NNS .\nTuesday , Armenian President Robert Kocharian said his country could take part in a commission , but he first called for improved ties .\tNNP , JJ NNP NNP NNP VBD PRP$ NN MD VB NN IN DT NN , CC PRP RB VBD IN JJ NNS .\nArmenia says 1.5 million of its nationals were slaughtered by the Turks during the final years of the Ottoman Empire 90 years ago , characterizing this as genocide .\tNNP VBZ CD CD IN PRP$ NNS VBD VBN IN DT NNS IN DT JJ NNS IN DT NNP NNP CD NNS RB , VBG DT IN NN .\nTurkey says 3,00,000 Armenians and thousands of Turks were killed during a Russia-backed Armenian uprising against Ottoman rule .\tNNP VBZ CD NNS CC NNS IN NNS VBD VBN IN DT JJ JJ NN IN NNP NN .\nA militant in southern Afghanistan has demanded the release of Taleban prisoners in exchange for four Afghan health workers and their driver who were kidnapped Tuesday in Kandahar province .\tDT NN IN JJ NNP VBZ VBN DT NN IN NNP NNS IN NN IN CD JJ NN NNS CC PRP$ NN WP VBD VBN NNP IN NNP NN .\nA man who claimed to be a local Taleban commander called news agencies Thursday , saying the kidnappers are demanding the release of Taleban prisoners in exchange for the five hostages .\tDT NN WP VBD TO VB DT JJ NNP NN VBD NN NNS NNP , VBG DT NNS VBP VBG DT NN IN NNP NNS IN NN IN DT CD NNS .\nHe said the medics and their driver were safe .\tPRP VBD DT NNS CC PRP$ NN VBD JJ .\nThe demand comes more than a week after the Afghan government released five Taleban prisoners in exchange for an Italian journalist who was abducted and held for two weeks .\tDT NN VBZ JJR IN DT NN IN DT JJ NN VBD CD NNP NNS IN NN IN DT JJ NN WP VBD VBN CC VBN IN CD NNS .\nThe United States strongly criticized the deal , saying that agreeing to the demands of extremists only encourages more kidnappings and violence .\tDT NNP NNPS RB VBD DT NN , VBG IN VBG TO DT NNS IN NNS RB VBZ RBR NNS CC NN .\nDominican authorities have quarantined and sacrificed a number of birds after detecting a strain of bird flu last month .\tJJ NNS VBP VBN CC VBN DT NN IN NNS IN VBG DT NN IN NN NN JJ NN .\nThe World Organization for Animal Health said in a report that 130 birds were slaughtered after authorities discovered a case of the virus near the capital , Santo Domingo , and another some 145 kilometers to the east in the village of Higuey .\tDT NNP NNP IN NNP NNP VBD IN DT NN IN CD NNS VBD VBN IN NNS VBD DT NN IN DT NN IN DT NN , NNP NNP , CC DT DT CD NNS TO DT NN IN DT NN IN NNP .\nOfficials say the virus is the H5N2 strain , which does not affect humans .\tNNS VBP DT NN VBZ DT NNP NN , WDT VBZ RB VB NNS .\nGovernment livestock director Angel Faxas said officials believe the virus reached the Dominican Republic through birds introduced into the country illegally .\tNN NN NN NNP NNP VBD NNS VBP DT NN VBD DT NNP NNP IN NNS VBN IN DT NN RB .\nThe World Health Organization reports that the more virulent H5N1 strain of bird flu has killed 216 people worldwide since 2003 .\tDT NNP NNP NNP VBZ IN DT RBR JJ NNP NN IN NN NN VBZ VBN CD NNS JJ IN CD .\nHealth officials in Vietnam say a 23-year-old woman has tested positive for a deadly strain of bird flu .\tNNP NNS IN NNP VBP DT JJ NN VBZ VBN JJ IN DT JJ NN IN NN NN .\nThis is the second human case of bird flu diagnosed in Vietnam this year .\tDT VBZ DT JJ JJ NN IN NN NN VBN IN NNP DT NN .\nOfficials in northern Quand Ninh province say the woman became sick after eating chicken .\tNNS IN JJ NNP NNP NN VBP DT NN VBD JJ IN VBG NN .\nHospital director Nguyen Quoc Hung says the woman has been under treatment for five days .\tNN NN NNP NNP NNP VBZ DT NN VBZ VBN IN NN IN CD NNS .\nLast month , an eight-year old girl from northern Thanh Hoa province also tested positive for the H5N1 virus .\tJJ NN , DT JJ JJ NN IN JJ NNP NNP NN RB VBD JJ IN DT NNP NN .\nOn Saturday , animal health authorities confirmed bird flu outbreaks in poultry in three provinces in Vietnam .\tIN NNP , JJ NN NNS VBD JJ NN NNS IN NN IN CD NNS IN NNP .\nThe H5N1 strain of avian influenza remains largely a virus in birds , but experts fear it could mutate into a form that is easily transmitted by humans .\tDT NNP NN IN JJ NN VBZ RB DT NN IN NNS , CC NNS VBP PRP MD VB IN DT NN WDT VBZ RB VBN IN NNS .\nThe World Health Organization says bird flu has killed 248 people since it resurfaced in Asia in 2003 .\tDT NNP NNP NNP VBZ NN NN VBZ VBN CD NNS IN PRP VBD IN NNP IN CD .\nMore than 50 of the deaths have been in Vietnam .\tJJR IN CD IN DT NNS VBP VBN IN NNP .\nChechen rebel leader Shamil Basayev has apparently claimed responsibility for last week 's raid on a city in southern Russia .\tJJ NN NN NNP NNP VBZ RB VBN NN IN JJ NN POS NN IN DT NN IN JJ NNP .\nA statement said to be written by Mr. Basayev posted on a rebel website Monday says he directed last Thursday 's coordinated attacks on Nalchik .\tDT NN VBN TO VB VBN IN NNP NNP VBD IN DT JJ NN NNP VBZ PRP VBD JJ NNP POS JJ NNS IN NNP .\nThe message says militants from the group Caucasus Front carried out the operation .\tDT NN VBZ NNS IN DT NN NNP NNP VBD IN DT NN .\nMore than 100 people were killed in the fighting in Nalchik , the provincial capital of Russia 's Kabardino-Balkaria region .\tJJR IN CD NNS VBD VBN IN DT NN IN NNP , DT JJ NN IN NNP POS NNP NN .\nThe province borders the republic of Chechnya where Russian forces have been fighting Muslim separatists for more than a decade .\tDT NN VBZ DT NN IN NNP WRB JJ NNS VBP VBN VBG NNP NNS IN JJR IN DT NN .\nShamil Basayev is the most wanted man in Russia .\tNNP NNP VBZ DT RBS JJ NN IN NNP .\nThe Chechen warlord claimed responsibility for the 2004 Beslan school massacre that claimed 330 lives , most of them children .\tDT JJ NN VBD NN IN DT CD NNP NN NN WDT VBD CD NNS , JJS IN PRP NNS .\nThe United Nations Children 's Fund says new initiatives in East Asia and the Pacific are leading the way in fighting the commercial sexual exploitation of children in the region .\tDT NNP NNP NNP POS NNP VBZ JJ NNS IN NNP NNP CC DT NNP VBP VBG DT NN IN VBG DT JJ JJ NN IN NNS IN DT NN .\nDelegates from more than 20 East Asian and Pacific countries met in Thailand this week to discuss new measures to protect children , help victims , and punish exploiters .\tNNS IN JJR IN CD NNP NNP CC NNP NNS VBD IN NNP DT NN TO VB JJ NNS TO VB NNS , VB NNS , CC VB NNS .\nThey include a memorandum of understanding against trafficking , signed last month by Cambodia , China , Burma , Laos , Thailand , and Vietnam .\tPRP VBP DT NN IN NN IN NN , VBN JJ NN IN NNP , NNP , NNP , NNP , NNP , CC NNP .\nUNICEF says despite progress , a lack of reliable information continues to be a major obstacle to implementing effective strategies to stop the sex trade in children .\tNNP VBZ IN NN , DT NN IN JJ NN VBZ TO VB DT JJ NN TO VBG JJ NNS TO VB DT NN NN IN NNS .\nIt says another concern is the exponential rise in child pornography on the Internet .\tPRP VBZ DT NN VBZ DT JJ NN IN NN NN IN DT NN .\nThe Pakistani Taliban says it is open to holding talks with the country 's newly elected government .\tDT JJ NNP VBZ PRP VBZ JJ TO VBG NNS IN DT NN POS RB VBN NN .\nA spokesman for the militant group Tehrik-e-Taliban Pakistan , Maulvi Omar , says the group is ready to cooperate with the government and bring peace to tribal areas .\tDT NN IN DT JJ NN NNP NNP , NNP NNP , VBZ DT NN VBZ JJ TO VB IN DT NN CC VB NN TO JJ NNS .\nHowever , he urged Pakistani officials to end their cooperation with U.S.-led forces that are fighting an insurgency in neighboring Afghanistan .\tRB , PRP VBD JJ NNS TO VB PRP$ NN IN JJ NNS WDT VBP VBG DT NN IN VBG NNP .\nOn Saturday , Pakistan 's newly-elected Prime Minister Yousuf Raza Gilani said that fighting terrorism will be his government 's top priority , but added that he is willing to talk to militants who are ready to lay down their arms .\tIN NNP , NNP POS JJ NNP NNP NNP NNP NNP VBD IN VBG NN MD VB PRP$ NN POS JJ NN , CC VBD IN PRP VBZ JJ TO VB TO NNS WP VBP JJ TO VB RP PRP$ NNS .\nPakistan has suffered from a series of recent attacks blamed on al-Qaida and Taliban militants operating in the country 's tribal regions .\tNNP VBZ VBN IN DT NN IN JJ NNS VBN IN NNP CC NNP NNS VBG IN DT NN POS JJ NNS .\nThe U.S. military says it has begun a major security operation in Iraq 's western al-Anbar province .\tDT NNP NN VBZ PRP VBZ VBN DT JJ NN NN IN NNP POS JJ NNP NN .\nThe operation includes an overnight curfew in the provincial capital , Ramadi , and increased security measures in several cities along the Euphrates River , including Hit , Baghdadi , and Hadithah .\tDT NN VBZ DT JJ NN IN DT JJ NN , NNP , CC JJ NN NNS IN JJ NNS IN DT NNP NNP , VBG NNP , NNP , CC NNP .\nIraqi security forces are said to be assisting with the operation , dubbed Operation River Blitz .\tJJ NN NNS VBP VBN TO VB VBG IN DT NN , VBD NNP NNP NNP .\nA statement from U.S. Marine Major-General Richard Natonski says the Iraqi government asked for the operation .\tDT NN IN NNP NN NN NNP NNP VBZ DT JJ NN VBD IN DT NN .\nRamadi , located 110 kilometers west of Baghdad , has been a stronghold of insurgents fighting U.S. and Iraqi security forces .\tNNP , VBN CD NNS JJS IN NNP , VBZ VBN DT NN IN NNS VBG NNP CC JJ NN NNS .\nSeparately , the U.S. military says a Marine was killed in al-Anbar during a security operation on Saturday .\tRB , DT NNP NN VBZ DT NN VBD VBN IN NNP IN DT NN NN IN NNP .\nInsurgents killed at least 40 people in attacks in and around Baghdad on Saturday .\tNNS VBD IN JJS CD NNS IN NNS IN CC IN NNP IN NNP .\nThe U.N. Security Council has pushed for full implementation of Ivory Coast peace accords , threatening sanctions against those fail to comply .\tDT NNP NNP NNP VBZ VBN IN JJ NN IN NNP NNP NN NNS , VBG NNS IN DT VBP TO VB .\nIn a statement issued Wednesday by its new president , Greek Ambassador Adamantios Vassilakis , the council said those who thwart the peace process face a year-long travel ban and the freezing of their financial assets .\tIN DT NN VBN NNP IN PRP$ JJ NN , JJ NNP NNP NNP , DT NN VBD DT WP VB DT NN NN VBP DT JJ NN NN CC DT NN IN PRP$ JJ NNS .\nThe council president also said the people of Ivory Coast must begin putting their words into action .\tDT NN NN RB VBD DT NNS IN NNP NNP MD VB VBG PRP$ NNS IN NN .\nAlthough the war is over , Ivory Coast remains divided between the government and rebel-held territory .\tIN DT NN VBZ IN , NNP NNP VBZ VBN IN DT NN CC JJ NN .\nPeace accords to end the conflict have not been fully implemented .\tNN NNS TO VB DT NN VBP RB VBN RB VBN .\nAn April deal to begin disarming was ignored and the warring parties returned to negotiations last month .\tDT NNP NN TO VB VBG VBD VBN CC DT NN NNS VBD TO NNS JJ NN .\nThey recommitted themselves to a new date for disarmament along with other steps that will pave the way for new elections in October .\tPRP VBD PRP TO DT JJ NN IN NN IN IN JJ NNS WDT MD VB DT NN IN JJ NNS IN NNP .\nThe U.S. military in Iraq says seven people have been killed and 20 others wounded in a suicide bombing at a government facility in Baquba .\tDT NNP NN IN NNP VBZ CD NNS VBP VBN VBN CC CD NNS VBN IN DT NN VBG IN DT NN NN IN NNP .\nA U.S. statement says the dead include a U.S. soldier , a U.S. contractor and five Iraqi government workers .\tDT NNP NN VBZ DT NN VBP DT NNP NN , DT NNP NN CC CD JJ NN NNS .\nAt least 20 others , including nine U.S. personnel , were wounded .\tIN JJS CD NNS , VBG CD NNP NNS , VBD VBN .\nMeanwhile , Sunni , Shi'ite and Kurdish negotiators are scrambling Tuesday to reach an accord on a new Iraqi constitution , ahead of a parliament vote on the charter set for Thursday .\tRB , NNP , NNP CC NNP NNS VBP VBG NNP TO VB DT NN IN DT JJ JJ NN , RB IN DT NN NN IN DT NN VBN IN NNP .\nOfficials say issues of federalism and the division of authority between the presidency and parliament remain unresolved .\tNNS VBP NNS IN NN CC DT NN IN NN IN DT NN CC NN VBP JJ .\nMajority Shi'ites and the Kurds are seeking a decentralized government that allows significant regional autonomy in the Kurdish north and Shi'ite southern Iraq .\tNNP NNP CC DT NNPS VBP VBG DT JJ NN WDT VBZ JJ JJ NN IN DT JJ NN CC NNP JJ NNP .\nSunnis want a centralized government seen as protecting their minority interests in central Iraq .\tNNP VBP DT JJ NN VBN IN VBG PRP$ NN NNS IN JJ NNP .\nA published report says that shareholders in the Russian oil company , Yukos , are taking legal action in an effort to be compensated by the government for the sharp drop in the firm 's market value .\tDT JJ NN VBZ IN NNS IN DT JJ NN NN , NNP , VBP VBG JJ NN IN DT NN TO VB VBN IN DT NN IN DT JJ NN IN DT NN POS NN NN .\nThursday 's edition of the London-based Financial Times newspaper says the director of Menatep , the group that controls 60 percent of Yukos , has filed a complaint against the Russian government under the Energy Charter signed by Russia designed to protect investors .\tNNP POS NN IN DT JJ NNP NNP NN VBZ DT NN IN NNP , DT NN WDT VBZ CD NN IN NNP , VBZ VBN DT NN IN DT JJ NN IN DT NNP NNP VBN IN NNP VBN TO VB NNS .\nThe newspaper says Menatep 's legal action is the first aggressive effort made by the oil company 's investors to be compensated for losses incurred as share prices have plummeted since last year .\tDT NN VBZ NNP POS JJ NN VBZ DT JJ JJ NN VBN IN DT NN NN POS NNS TO VB VBN IN NNS VBN IN NN NNS VBP VBN IN JJ NN .\nThis sharp drop in Yukos ' value is attributed to taxes imposed on the company by the Russian government .\tDT JJ NN IN NNP POS NN VBZ VBN TO NNS VBN IN DT NN IN DT JJ NN .\nObservers claim the taxes are politically motivated .\tNNS VBP DT NNS VBP RB JJ .\nThe U.S. military in Afghanistan said 20 militants were killed by an airstrike in the Taliban stronghold of Helmand province .\tDT NNP NN IN NNP VBD CD NNS VBD VBN IN DT NN IN DT NNP NN IN NNP NN .\nA statement said the airstrike was ordered after Afghan and U.S. led coalition troops were ambushed while on foot patrol in Kajaki district on Wednesday .\tDT NN VBD DT NN VBD VBN IN JJ CC NNP VBD NN NNS VBD VBN IN IN NN NN IN NNP NN IN NNP .\nThe U.S. military said troops made sure there were no civilians in the area before calling in air support .\tDT NNP NN VBD NNS VBD JJ EX VBD DT NNS IN DT NN IN VBG IN NN NN .\nSouthern Afghanistan is the center of a growing Taliban-led insurgency , fueled in part by the illicit opium trade from Helmand 's poppy harvests .\tNNP NNP VBZ DT NN IN DT VBG JJ NN , VBN IN NN IN DT JJ NN NN IN NNP POS NN NNS .\nThe Obama administration has announced a revised strategy to fight militants in Afghanistan and stabilize neighboring Pakistan .\tDT NNP NN VBZ VBN DT VBN NN TO VB NNS IN NNP CC VB JJ NNP .\nThe new plan includes the deployment of thousands of additional U.S. troops to Afghanistan and more money to train Afghan police and develop tribal areas .\tDT JJ NN VBZ DT NN IN NNS IN JJ NNP NNS TO NNP CC JJR NN TO VB JJ NNS CC VB JJ NNS .\nThe United States has warned Americans against flying on local airlines in Indonesia because of safety concerns raised by recent accidents .\tDT NNP NNP VBZ VBN NNS IN VBG IN JJ NNS IN NNP IN IN NN NNS VBN IN JJ NNS .\nThe U.S. Embassy in Jakarta issued the warning Tuesday .\tDT NNP NNP IN NNP VBD DT NN NNP .\nThe statement said the U.S. Federal Aviation Administration downgraded the country 's safety rating from one to two due to serious concerns about oversight and operational systems .\tDT NN VBD DT NNP NNP NNP NNP VBD DT NN POS NN NN IN CD TO CD JJ TO JJ NNS IN NN CC JJ NNS .\nAn Indonesian airliner plunged into the sea in January , killing all 102 people on board .\tDT JJ NN VBD IN DT NN IN NNP , VBG DT CD NNS IN NN .\nIn March , another plane overshot a runway and burst into flames , leaving 21 dead .\tIN NNP , DT NN VBD DT NN CC VBD IN NNS , VBG CD JJ .\nIndonesia 's Transportation Minister Hatta Radjasa defended the country 's safety initiatives Tuesday during a lunch with the Jakarta Foreign Correspondents ' Club .\tNNP POS NNP NNP NNP NNP VBD DT NN POS NN NNS NNP IN DT NN IN DT NNP NNP NNP POS NNP .\nHe said enforcement has been stepped up after the recent airplane disasters .\tPRP VBD NN VBZ VBN VBN RP IN DT JJ NN NNS .\nGoogle , the world 's largest computer search company , will promote word processing and office software from Sun Microsystems .\tNNP , DT NN POS JJS NN NN NN , MD VB NN NN CC NN NN IN NNP NNPS .\nSome analysts say the alliance is a step toward challenging Microsoft 's dominance of the software industry .\tDT NNS VBP DT NN VBZ DT NN IN VBG NNP POS NN IN DT NN NN .\nAt a news conference late Tuesday , Sun and Google offered a vision of working together to build the next generation of the Internet , but gave few specific details .\tIN DT NN NN JJ NNP , NNP CC NNP VBD DT NN IN VBG RB TO VB DT JJ NN IN DT NNP , CC VBD JJ JJ NNS .\nGoogle is used by 78 million people each month , which could help Sun draw users from Microsoft products .\tNNP VBZ VBN IN CD CD NNS DT NN , WDT MD VB NNP VB NNS IN NNP NNS .\nCurrently , products made by software giant Microsoft run the vast majority of personal computers around the world .\tRB , NNS VBN IN NN NN NNP VBD DT JJ NN IN JJ NNS IN DT NN .\nThe Israeli Housing Ministry is seeking bids to build an additional 228 housing units in West Bank settlements , despite a requirement for a freeze in settlement activity under the international ' road map ' peace plan .\tDT JJ NNP NNP VBZ VBG NNS TO VB DT JJ CD NN NNS IN NNP NNP NNS , IN DT NN IN DT NN IN NN NN IN DT JJ `` NN NN `` NN NN .\nAccording to a published tender , the construction plan is to build 150 units in the ultra-orthodox settlement of Beitar Illit and another 78 units in Efrat .\tVBG TO DT VBN NN , DT NN NN VBZ TO VB CD NNS IN DT JJ NN IN NNP NNP CC DT CD NNS IN NNP .\nBoth settlements are within a few kilometers of East Jerusalem , where Palestinians hope to establish the capital of a future Palestinian state .\tDT NNS VBP IN DT JJ NNS IN NNP NNP , WRB NNS VBP TO VB DT NN IN DT JJ JJ NN .\nThe ' road map ' peace process calls on Israel to halt all settlement activity in occupied territories .\tDT `` NN NN `` NN NN VBZ IN NNP TO VB DT NN NN IN JJ NNS .\nIt also calls on the Palestinian Authority to crack down on militants attacking Israelis\tPRP RB VBZ IN DT JJ NNP TO VB RP IN NNS VBG NNS\nIncoming Bolivian President Evo Morales is pledging to launch an investigation into allegations that military officials worked with the United States to destroy shoulder-fired missiles owned by the Bolivian army .\tVBG JJ NNP NNP NNP VBZ VBG TO VB DT NN IN NNS IN JJ NNS VBD IN DT NNP NNPS TO VB JJ NNS VBN IN DT JJ NN .\nMr. Morales Wednesday described the move as treason , saying disarming a country and its armed forces is a crime .\tNNP NNP NNP VBD DT NN IN NN , VBG VBG DT NN CC PRP$ JJ NNS VBZ DT NN .\nHe previously filed a legal complaint against outgoing President Eduardo Rodriguez over the order .\tPRP RB VBD DT JJ NN IN JJ NNP NNP NNP IN DT NN .\nPresident Rodriguez says he authorized the missiles ' destruction , but not their transfer to the United States .\tNNP NNP VBZ PRP VBD DT NNS POS NN , CC RB PRP$ NN TO DT NNP NNPS .\nThe president Tuesday fired Army chief General Marcelo Antezana over the matter and Defense Minister Gonzalo Mendez resigned .\tDT NN NNP VBD NNP NN NNP NNP NNP IN DT NN CC NNP NNP NNP NNP VBD .\nWashington has previously denied charges of a secret , U.S.-led operation to remove the missiles from Bolivia .\tNNP VBZ RB VBN NNS IN DT NN , JJ NN TO VB DT NNS IN NNP .\nThe United States said Wednesday it complied in good faith with a Bolivian government request for assistance in disposing of outdated arms .\tDT NNP NNPS VBD NNP PRP VBD IN JJ NN IN DT JJ NN NN IN NN IN VBG IN JJ NNS .\nTime zone by time zone , nearly 4,000 cities and towns in 88 countries marked Earth Hour Saturday , by dimming nonessential lights from 8.30 to 9.30 p.m.\tNNP NN IN NN NN , RB CD NNS CC NNS IN CD NNS VBD NNP NNP NNP , IN VBG JJ NNS IN CD TO CD NN\nFrom an Antarctic research station , to the Great Pyramids of Egypt and several buildings in Washington , including the Smithsonian Castle , famous structures went dark in a campaign to highlight the threat of climate change .\tIN DT JJ NN NN , TO DT JJ NNS IN NNP CC JJ NNS IN NNP , VBG DT NNP NNP , JJ NNS VBD JJ IN DT NN TO VB DT NN IN NN NN .\nChina participated for the fist time , cutting the lights at Beijing 's Bird 's Nest Stadium and the Water Cube .\tNNP VBD IN DT JJ NN , VBG DT NNS IN NNP POS NNP POS NNP NNP CC DT NNP NNP .\nIn the Chilean capital of Santiago lights were turned off at a number of buildings , including the Presidential Palace where President Michelle Bachelet hosted a dinner by candlelight for U.S. Vice President Joseph Biden .\tIN DT JJ NN IN NNP NNS VBD VBN RP IN DT NN IN NNS , VBG DT NNP NNP WRB NNP NNP NNP VBD DT NN IN NN IN NNP NNP NNP NNP NNP .\nEarth Hour organizers say there is no uniform way to measure how much energy was saved worldwide .\tNNP NNP NNS VBP EX VBZ DT JJ NN TO VB WRB JJ NN VBD VBN NN .\nThe event was first organized in Sydney in 2007 .\tDT NN VBD JJ VBN IN NNP IN CD .\nA deadly winter storm that swept across the United States this week has left more than people 50 dead and has destroyed nearly $ 1 billion worth of California 's produce industry .\tDT JJ NN NN WDT VBD IN DT NNP NNPS DT NN VBZ VBN JJR IN NNS CD JJ CC VBZ VBN RB $ CD CD NN IN NNP POS NN NN .\nThe harsh winter mix of snow , sleet and freezing rain has left more than 3,00,000 people without power from the southwestern U.S. state of Texas to the northeastern U.S. state of Maine .\tDT JJ NN NN IN NN , NN CC VBG NN VBZ VBN JJR IN CD NNS IN NN IN DT JJ NNP NN IN NNP TO DT JJ NNP NN IN NNP .\nA separate bout of icy weather threatens to decimate California 's citrus crop .\tDT JJ NN IN NN NN VBZ TO VB NNP POS NN NN .\nOn Tuesday , California Governor Arnold Schwarzenegger declared a state of emergency and asked the federal government for disaster aid .\tIN NNP , NNP NNP NNP NNP VBD DT NN IN NN CC VBD DT JJ NN IN NN NN .\nCalifornia is the nation 's top producer of fresh citrus fruits , and analysts say they expect some citrus prices to at least double at the wholesale level .\tNNP VBZ DT NN POS JJ NN IN JJ NN NNS , CC NNS VBP PRP VBP DT NN NNS TO IN JJS RB IN DT JJ NN .\nForecasters say the cold temperatures will continue through Thursday , followed by a warming trend across most of the country .\tNNS VBP DT JJ NNS MD VB IN NNP , VBN IN DT NN NN IN JJS IN DT NN .\nReports from central Somalia say fierce fighting between a pro-government militia and Islamist rebels has left at least 24 people dead and dozens others wounded .\tNNS IN JJ NNP VBP JJ NN IN DT JJ NN CC NN NNS VBZ VBN IN JJS CD NNS JJ CC NNS NNS VBD .\nWitnesses and officials said Wednesday the fighting a day earlier was the worst seen in months .\tNNS CC NNS VBD NNP DT VBG DT NN RBR VBD DT JJS VBN IN NNS .\nWitnesses say the al-Qaida-linked Al Shabab militia , which has been fighting a civil war with the government , attacked the towns of Dhusamareb and Marergur .\tNNS VBP DT JJ NNP NNP NN , WDT VBZ VBN VBG DT JJ NN IN DT NN , VBD DT NNS IN NNP CC NNP .\nThe area has been under the control of the pro-government militia Ahlu Sunna Waljama .\tDT NN VBZ VBN IN DT NN IN DT JJ NN NNP NNP NNP .\nThe witnesses said residents fled the fighting and bodies were strewn across the villages .\tDT NNS VBD NNS VBD DT NN CC NNS VBD VBN IN DT NNS .\nSomalia 's fragile central government controls only a few small parts of the capital , Mogadishu , with the help of African Union peacekeepers .\tNNP POS JJ JJ NN VBZ RB DT JJ JJ NNS IN DT NN , NNP , IN DT NN IN NNP NNP NNS .\nThe rest of the city is controlled by the al-Shabab and fellow Islamist militant group Hizbul Islam .\tDT NN IN DT NN VBZ VBN IN DT JJ CC JJ NNP JJ NN NNP NNP .\nThe two groups also control much of central and southern Somalia .\tDT CD NNS RB VBP NN IN JJ CC JJ NNP .\nVenezuelan President Hugo Chavez has promoted a diplomat who was thrown out of the United States in retaliation for Venezuela 's expulsion of a U.S. official accused of spying .\tJJ NNP NNP NNP VBZ VBN DT NN WP VBD VBN IN IN DT NNP NNPS IN NN IN NNP POS NN IN DT NNP NN VBN IN VBG .\nPresident Chavez told reporters Friday in Caracas that Jeny Figueredo Frias has been named deputy foreign minister for Europe .\tNNP NNP VBD NNS NNP IN NNP IN NNP NNP NNP VBZ VBN VBN JJ JJ NN IN NNP .\nThe president was quoted by Reuters as saying the move is in recognition of Figueredo 's work and what she means for Venezuela .\tDT NN VBD VBN IN NNP IN VBG DT NN VBZ IN NN IN NNP POS NN CC WP PRP VBZ IN NNP .\nFigueredo served as chief of staff to the Venezuelan ambassador in Washington when she was ordered to leave the United States .\tNNP VBD IN NN IN NN TO DT JJ NN IN NNP WRB PRP VBD VBN TO VB DT NNP NNPS .\nShe was not accused of wrongdoing , but State Department spokesman Sean McCormack said the U.S. had been ' forced to respond . '\tPRP VBD RB VBN IN NN , CC NNP NNP NN NNP NNP VBD DT NNP VBD VBN `` VBN TO VB . ``\nFigueredo was ordered out after Venezuela expelled naval Captain John Correa for spying .\tNNP VBD VBN RP IN NNP VBD JJ NNP NNP NNP IN VBG .\nThe State Department says none of the military attaches at the U.S. Embassy in Caracas has been involved in any inappropriate activity .\tDT NNP NNP VBZ NN IN DT JJ NNS IN DT NNP NNP IN NNP VBZ VBN VBN IN DT JJ NN .\nA South African judge is expected to hand down the verdict Monday in a high-profile rape trial involving former deputy president Jacob Zuma .\tDT JJ JJ NN VBZ VBN TO VB RP DT NN NNP IN DT JJ NN NN VBG JJ NN NN NNP NNP .\nZuma is accused of raping a 31-year-old , HIV-positive woman who is a longtime family friend .\tNNP VBZ VBN IN VBG DT JJ , JJ NN WP VBZ DT JJ NN NN .\nHe claims the sex was consensual .\tPRP VBZ DT NN VBD JJ .\nThe trial has drawn widespread interest across South Africa , focusing attention on the country 's high incidence of rape and HIV infection .\tDT NN VBZ VBN JJ NN IN NNP NNP , VBG NN IN DT NN POS JJ NN IN NN CC NN NN .\nMonday 's verdict is scheduled to be broadcast live on television .\tNNP POS NN VBZ VBN TO VB VBN RB IN NN .\nSunday , the 64-year-old Zuma attended a fundraising concert in the Johannesburg suburb of Soweto , where he thanked thousands of audience members for their support .\tNNP , DT JJ NNP VBD DT VBG NN IN DT NNP NN IN NNP , WRB PRP VBD NNS IN NN NNS IN PRP$ NN .\nThe proceeds from the concert went to his legal fund .\tDT NNS IN DT NN VBD TO PRP$ JJ NN .\nZuma was once considered a strong contender to succeed President Thabo Mbeki , who fired him because of corruption-related accusations last year .\tNNP VBD RB VBN DT JJ NN TO VB NNP NNP NNP , WP VBD PRP IN IN JJ NNS JJ NN .\nZuma is due to stand trial on corruption charges in July .\tNNP VBZ JJ TO VB NN IN NN NNS IN NNP .\nTaleban militants have attacked a convoy in southern Afghanistan , killing up to 13 Afghan guards and wounding others who worked for a private security firm .\tNNP NNS VBP VBN DT NN IN JJ NNP , VBG RP TO CD JJ NNS CC VBG NNS WP VBD IN DT JJ NN NN .\nOfficials said Monday that the convoy was attacked late Sunday on the road from the capital , Kabul , to Kandahar .\tNNS VBD NNP IN DT NN VBD VBN JJ NNP IN DT NN IN DT NN , NNP , TO NNP .\nThat is the same road where a group of 23 South Korean Christian evangelicals was abducted on July 19 and where two Germans were kidnapped in a separate incident .\tDT VBZ DT JJ NN WRB DT NN IN CD JJ JJ JJ NNS VBD VBN IN NNP CD CC WRB CD NNS VBD VBN IN DT JJ NN .\nSunday 's attack led to a long gun battle with insurgents that resulted in the death of five Taleban militants .\tNNP POS NN VBD TO DT JJ NN NN IN NNS WDT VBD IN DT NN IN CD NNP NNS .\nThe International Atomic Energy Agency says Iran has obtained instructions from international smugglers for making nuclear weapons components .\tDT NNP NNP NNP NNP VBZ NNP VBZ VBN NNS IN JJ NNS IN VBG JJ NNS NNS .\nThe IAEA accusation is included in a report for presentation to the 35-nation IAEA board Thursday in Vienna .\tDT NNP NN VBZ VBN IN DT NN IN NN TO DT JJ NNP NN NNP IN NNP .\nThe report , obtained by Western journalists , also confirms that Tehran has begun renovation work at a key nuclear plant , but has not yet begun actual uranium enrichment work .\tDT NN , VBN IN JJ NNS , RB VBZ IN NNP VBZ VBN NN NN IN DT JJ JJ NN , CC VBZ RB RB VBN JJ NN NN NN .\nEuropean and U.S. officials accuse Iran of seeking high-grade enriched uranium to make an atomic bomb , but Tehran insists it is seeking a lower grade to make electricity .\tJJ CC NNP NNS VBP NNP IN VBG JJ VBN NN TO VB DT JJ NN , CC NNP VBZ PRP VBZ VBG DT JJR NN TO VB NN .\nTuesday , Britain , the United States , China , Russia and France said the IAEA should refer Iran to the United Nations Security Council for allegedly violating a key nuclear treaty with its atomic program .\tNNP , NNP , DT NNP NNPS , NNP , NNP CC NNP VBD DT NNP MD VB NNP TO DT NNP NNP NNP NNP IN RB VBG DT JJ JJ NN IN PRP$ JJ NN .\nHowever , Iran 's Foreign Minister said U.N. inspectors will be barred from its nuclear facilities starting Saturday if a referral is made .\tRB , NNP POS NNP NNP VBD NNP NNS MD VB VBN IN PRP$ JJ NNS VBG NNP IN DT NN VBZ VBN .\nGerman Chancellor Gerhard Schroeder is traveling to the United States for a meeting with President Bush on Monday .\tJJ NNP NNP NNP VBZ VBG TO DT NNP NNPS IN DT NN IN NNP NNP IN NNP .\nThe two leaders are expected to discuss Iran 's nuclear program and reform of the United Nations .\tDT CD NNS VBP VBN TO VB NNP POS JJ NN CC NN IN DT NNP NNPS .\nA White House spokesman says they also intend to focus on how the U.S. and Europe can work together to resolve a broad agenda of global issues .\tDT NNP NNP NN VBZ PRP RB VBP TO VB IN WRB DT NNP CC NNP MD VB RB TO VB DT JJ NN IN JJ NNS .\nAfter his visit with the president , Mr. Schroeder is scheduled to speak to the U.S. Chamber of Commerce and to meet with members of Congress .\tIN PRP$ NN IN DT NN , NNP NNP VBZ VBN TO VB TO DT NNP NNP IN NNP CC TO VB IN NNS IN NNP .\nMr. Schroeder was a strong critic of the U.S.-led war in Iraq , but tensions between the two countries eased somewhat after a meeting between President Bush and the Chancellor in the German city of Mainz in February .\tNNP NNP VBD DT JJ NN IN DT JJ NN IN NNP , CC NNS IN DT CD NNS VBD RB IN DT NN IN NNP NNP CC DT NNP IN DT JJ NN IN NNP IN NNP .\nOshkosh Truck Corp. , Oshkosh , Wis. , estimated earnings for its fourth quarter ended Sept. 30 fell 50 % to 75 % below the year-earlier $ 4.5 million , or 51 cents a share .\tNNP NNP NNP , NNP , NNP , VBN NNS IN PRP$ JJ NN VBN NNP CD VBD CD NN TO CD NN IN DT JJ $ CD CD , CC CD NNS DT NN .\nThe truck maker said the significant drop in net income will result in lower earnings for the fiscal year .\tDT NN NN VBD DT JJ NN IN JJ NN MD VB IN JJR NNS IN DT JJ NN .\nIn fiscal 1988 , the company earned $ 17.3 million , or $ 1.92 a share , on revenue of $ 352.9 million .\tIN JJ CD , DT NN VBD $ CD CD , CC $ CD DT NN , IN NN IN $ CD CD .\nOshkosh Truck attributed the downturn in its earnings to higher start-up costs of its new chassis division , a softer motor-home market and higher administrative costs of compliance with government contractor regulations .\tNNP NNP VBD DT NN IN PRP$ NNS TO JJR JJ NNS IN PRP$ JJ NN NN , DT JJR NN NN CC JJR JJ NNS IN NN IN NN NN NNS .\nThe company said it is in the process of phasing out John Deere , its current source of production for midsized motor home chassis .\tDT NN VBD PRP VBZ IN DT NN IN VBG RP NNP NNP , PRP$ JJ NN IN NN IN JJ NN NN NN .\nIn anticipation of the start-up of its new factory , the company said a larger-than-normal chassis supply has been built to carry it through the transition period .\tIN NN IN DT NN IN PRP$ JJ NN , DT NN VBD DT JJ NN NN VBZ VBN VBN TO VB PRP IN DT NN NN .\nThe inhabitants of the area of Oman have long prospered on Indian Ocean trade .\tDT NNS IN DT NN IN NNP VBP JJ VBN IN NNP NNP NN .\nIn the late 18th century , a newly established sultanate in Muscat signed the first in a series of friendship treaties with Britain .\tIN DT JJ JJ NN , DT RB VBN NN IN NNP VBD DT NN IN DT NN IN NN NNS IN NNP .\nOver time , Oman 's dependence on British political and military advisors increased , but it never became a British colony .\tIN NN , NNP POS NN IN JJ JJ CC JJ NNS VBD , CC PRP RB VBD DT JJ NN .\nIn 1970 , QABOOS bin Said Al-Said overthrew the restrictive rule of his father ; he has ruled as sultan ever since .\tIN CD , NNP NNP NNP NNP VBD DT JJ NN IN PRP$ NN ; PRP VBZ VBN IN NN RB IN .\nHis extensive modernization program has opened the country to the outside world while preserving the longstanding close ties with the UK .\tPRP$ JJ NN NN VBZ VBN DT NN TO DT JJ NN IN VBG DT JJ JJ NNS IN DT NNP .\nOman 's moderate , independent foreign policy has sought to maintain good relations with all Middle Eastern countries .\tNNP POS JJ , JJ JJ NN VBZ VBN TO VB JJ NNS IN DT NNP NNP NNS .\nInspired by the popular uprisings that swept the Middle East and North Africa in 2010 - 11 , Omanis began staging marches and demonstrations - a small number of which turned violent in clashes with government security forces - to demand economic benefits , an end to corruption , and greater political rights .\tVBN IN DT JJ NNS WDT VBD DT NNP NNP CC NNP NNP IN CD IN CD , NNP VBD VBG NNS CC NNS LRB DT JJ NN IN WDT VBD JJ IN NNS IN NN NN NNS RRB TO VB JJ NNS , DT NN TO NN , CC JJR JJ NNS .\nIn February and March 2011 , in response to protester demands , QABOOS reshuffled his cabinet , pledged to create more government jobs , and promised to implement economic and political reforms , such as granting legislative and regulatory powers to the Council of Oman .\tIN NNP CC NNP CD , IN NN TO VB NNS , NNP VBD PRP$ NN , VBD TO VB JJR NN NNS , CC VBD TO VB JJ CC JJ NNS , JJ IN VBG JJ CC JJ NNS TO DT NNP IN NNP .\nFollowing World War I , France acquired a mandate over the northern portion of the former Ottoman Empire province of Syria .\tVBG NNP NNP NNP , NNP VBD DT NN IN DT JJ NN IN DT JJ NNP NNP NN IN NNP .\nThe French administered the area as Syria until granting it independence in 1946 .\tDT NNS VBD DT NN IN NNP IN VBG PRP NN IN CD .\nThe new country lacked political stability , however , and experienced a series of military coups during its first decades .\tDT JJ NN VBD JJ NN , RB , CC VBD DT NN IN JJ NNS IN PRP$ JJ NNS .\nSyria united with Egypt in February 1958 to form the United Arab Republic .\tNNP VBD IN NNP IN NNP CD TO VB DT NNP NNP NNP .\nIn September 1961 , the two entities separated , and the Syrian Arab Republic was reestablished .\tIN NNP CD , DT CD NNS VBD , CC DT JJ NNP NNP VBD VBN .\nIn November 1970 , Hafiz al-ASAD , a member of the Socialist Ba'th Party and the minority Alawite sect , seized power in a bloodless coup and brought political stability to the country .\tIN NNP CD , NNP NNP , DT NN IN DT NNP NNP NNP CC DT NN NNP NN , VBD NN IN DT JJ NN CC VBD JJ NN TO DT NN .\nIn the 1967 Arab-Israeli War , Syria lost the Golan Heights to Israel .\tIN DT CD NNP NNP , NNP VBD DT NNP NNPS TO NNP .\nDuring the 1990s , Syria and Israel held occasional peace talks over its return .\tIN DT NNS , NNP CC NNP VBD JJ NN NNS IN PRP$ NN .\nFollowing the death of President al-ASAD , his son , Bashar al-ASAD , was approved as president by popular referendum in July 2000 .\tVBG DT NN IN NNP NNP , PRP$ NN , NNP NNP , VBD VBN IN NN IN JJ NN IN NNP CD .\nSyrian troops - stationed in Lebanon since 1976 in an ostensible peacekeeping role - were withdrawn in April 2005 .\tJJ NNS IN VBN IN NNP IN CD IN DT JJ NN NN : VBD VBN IN NNP CD .\nDuring the July-August 2006 conflict between Israel and Hizballah , Syria placed its military forces on alert but did not intervene directly on behalf of its ally Hizballah .\tIN DT NNP CD NN IN NNP CC NNP , NNP VBD PRP$ JJ NNS IN NN CC VBD RB VB RB IN NN IN PRP$ NN NNP .\nIn May 2007 Bashar al-ASAD was elected to his second term as president .\tIN NNP CD NNP NNP VBD VBN TO PRP$ JJ NN IN NN .\nInfluenced by major uprisings that began elsewhere in the region , antigovernment protests broke out in the southern province of Da'ra in March 2011 and spread to other Syrian cities .\tVBN IN JJ NNS WDT VBD RB IN DT NN , NN NNS VBD RP IN DT JJ NN IN NNP IN NNP CD CC VBN TO JJ JJ NNS .\nProtesters called for the repeal of the restrictive Emergency Law allowing arrests without charge , the legalization of political parties , and the removal of corrupt local officials .\tNNS VBD IN DT NN IN DT JJ NNP NNP VBG NNS IN NN , DT NN IN JJ NNS , CC DT NN IN JJ JJ NNS .\nThe government responded with a mix of force and concessions , including the repeal of the Emergency Law , but as of mid-April 2011 had not succeeded in quelling protests .\tDT NN VBD IN DT NN IN NN CC NNS , VBG DT NN IN DT NNP NNP , CC IN IN NNP CD VBD RB VBN IN VBG NNS .\nSingapore has a highly developed and successful free-market economy .\tNNP VBZ DT RB VBN CC JJ JJ NN .\nIt enjoys a remarkably open and corruption-free environment , stable prices , and a per capita GDP higher than that of most developed countries .\tPRP VBZ DT RB JJ CC JJ NN , JJ NNS , CC DT IN NN NN JJR IN DT IN RBS JJ NNS .\nThe economy depends heavily on exports , particularly in consumer electronics , information technology products , pharmaceuticals , and on a growing financial services sector .\tDT NN VBZ RB IN NNS , RB IN NN NNS , NN NN NNS , NNS , CC IN DT VBG JJ NNS NN .\nReal GDP growth averaged 7.1 % between 2004 and 2007 .\tJJ NN NN VBD CD NN IN CD CC CD .\nThe economy contracted 1.3 % in 2009 as a result of the global financial crisis , but rebounded nearly 14.7 % in 2010 , on the strength of renewed exports .\tDT NN VBD CD NN IN CD IN DT NN IN DT JJ JJ NN , CC VBD RB CD NN IN CD , IN DT NN IN VBN NNS .\nOver the longer term , the government hopes to establish a new growth path that focuses on raising productivity , which has sunk to 1 % growth per year in the last decade .\tIN DT JJR NN , DT NN VBZ TO VB DT JJ NN NN WDT VBZ IN VBG NN , WDT VBZ VBN TO CD NN NN IN NN IN DT JJ NN .\nSingapore has attracted major investments in pharmaceuticals and medical technology production and will continue efforts to establish Singapore as Southeast Asia 's financial and high-tech hub .\tNNP VBZ VBN JJ NNS IN NNS CC JJ NN NN CC MD VB NNS TO VB NNP IN NNP NNP POS JJ CC JJ NN .\nThe Atlantic Ocean provides some of the world 's most heavily trafficked sea routes , between and within the Eastern and Western Hemispheres .\tDT NNP NNP VBZ DT IN DT NN POS RBS RB VBN NN NNS , IN CC IN DT NNP CC NNP NNP .\nOther economic activity includes the exploitation of natural resources , e.g. , fishing , dredging of aragonite sands ( The Bahamas ) , and production of crude oil and natural gas ( Caribbean Sea , Gulf of Mexico , and North Sea ) .\tJJ JJ NN VBZ DT NN IN JJ NNS , IN , NN , VBG IN JJ NNS LRB DT NNPS RRB , CC NN IN JJ NN CC JJ NN LRB NNP NNP , NNP IN NNP , CC NNP NNP RRB .\nTHE Warden of a Penitentiary was one day putting locks on the doors of all the cells when a mechanic said to him :\tDT NN IN DT NN VBD CD NN VBG NNS IN DT NNS IN PDT DT NNS WRB DT NN VBD TO PRP :\n' Those locks can all be opened from the inside - you are very imprudent . '\t`` DT NNS MD RB VB VBN IN DT NN IN PRP VBP RB JJ . ``\nThe Warden did not look up from his work , but said :\tDT NN VBD RB VB RB IN PRP$ NN , CC VBD :\n' If that is called imprudence , I wonder what would be called a thoughtful provision against the vicissitudes of fortune . '\t`` IN DT VBZ VBN NN , PRP VBP WP MD VB VBN DT JJ NN IN DT NNS IN NN . ``\nA Dog looking out for its afternoon nap jumped into the Manger of an Ox and lay there cosily upon the straw .\tDT NNP VBG RP IN PRP$ NN NN VBD IN DT NNP IN DT NNP CC VBD EX RB IN DT NN .\nBut soon the Ox , returning from its afternoon work , came up to the Manger and wanted to eat some of the straw .\tCC RB DT NNP , VBG IN PRP$ NN NN , VBD RP TO DT NNP CC VBD TO VB DT IN DT NN .\nThe Dog in a rage , being awakened from its slumber , stood up and barked at the Ox , and whenever it came near attempted to bite it .\tDT NNP IN DT NN , VBG VBN IN PRP$ NN , VBD RP CC VBN IN DT NNP , CC WRB PRP VBD RB VBN TO VB PRP .\nAt last the Ox had to give up the hope of getting at the straw , and went away muttering :\tIN JJ DT NNP VBD TO VB RP DT NN IN VBG IN DT NN , CC VBD RB VBG :\n' Ah , people often grudge others what they can not enjoy themselves . '\t`` UH , NNS RB VBP NNS WP PRP MD RB VB PRP . ``\nThe New York Times , among other papers , recently published a new Hubble photograph of distant galaxies colliding .\tDT NNP NNP NNP , IN JJ NNS , RB VBD DT JJ JJ NN IN JJ NNS VBG .\nOf course , astronomers have had pictures of colliding galaxies for quite some time now , but with the vastly improved resolution provided by the Hubble Space Telescope , you can actually see the lawyers rushing to the scene .\tIN NN , NNS VBP VBN NNS IN VBG NNS IN RB DT NN RB , CC IN DT RB VBN NN VBN IN DT NNP NNP NNP , PRP MD RB VB DT NNS VBG TO DT NN .\nMost elementary school children will be able to tell you that the first American flag was made by Betsy Ross .\tJJS JJ NN NNS MD VB JJ TO VB PRP IN DT JJ JJ NN VBD VBN IN NNP NNP .\nWhat they are not taught was that she was also a social scientist who developed the techniques now used by Gallop and others .\tWP PRP VBP RB VBN VBD IN PRP VBD RB DT JJ NN WP VBD DT NNS RB VBN IN NNP CC NNS .\nIt started when she asked a group of colonists what they thought of the flag she had made .\tPRP VBD WRB PRP VBD DT NN IN NNS WP PRP VBD IN DT NN PRP VBD VBN .\nThis was the origin of ... the flag poll .\tDT VBD DT NN IN : DT NN NN .\nMembers of Aung San Suu Kyi 's opposition democracy party in Burma have sent a letter to the country 's military leaders asking for permission to meet with the detained Nobel laureate .\tNNS IN NNP NNP NNP NNP POS NN NN NN IN NNP VBP VBN DT NN TO DT NN POS JJ NNS VBG IN NN TO VB IN DT VBN NNP NN .\nNational League for Democracy party chairman Aung Shwe told reporters Saturday that it has been three years since Aung San Suu Kyi 's party members met with her .\tNNP NNP IN NNP NN NN NNP NNP VBD NNS NNP IN PRP VBZ VBN CD NNS IN NNP NNP NNP NNP POS NN NNS VBD IN PRP .\nAung Shwe said party members want to meet her to discuss appealing her detention , which was extended for another year late last month .\tNNP NNP VBD NN NNS VBP TO VB PRP TO VB VBG PRP$ NN , WDT VBD VBN IN DT NN RB JJ NN .\nAung San Suu Kyi has spent most of the past 18 years under detention or house arrest .\tNNP NNP NNP NNP VBZ VBN JJS IN DT JJ CD NNS IN NN CC NN NN .\nHer National League for Democracy won free elections in 1990 , but the military-led government has never recognized the results of the election .\tPRP$ NNP NNP IN NNP VBD JJ NNS IN CD , CC DT JJ NN VBZ RB VBN DT NNS IN DT NN .\nAfrican Union foreign ministers have developed a plan that would give the continent two permanent seats on the United Nations Security Council .\tNNP NNP JJ NNS VBP VBN DT NN WDT MD VB DT NN CD JJ NNS IN DT NNP NNP NNP NNP .\nThe ministers decided on the plan Saturday during a meeting in the Libyan resort city of Sirte .\tDT NNS VBD IN DT NN NNP IN DT NN IN DT JJ NN NN IN NNP .\nIn addition to the permanent seats , Africa wants three non-permanent members on the council .\tIN NN TO DT JJ NNS , NNP VBZ CD JJ NNS IN DT NN .\nThe proposal approved by the AU ministers goes farther than a plan circulated by the so-called Group of Four nations of Brazil , Germany , India and Japan .\tDT NN VBN IN DT NNP NNS VBZ RB IN DT NN VBN IN DT JJ NNP IN CD NNS IN NNP , NNP , NNP CC NNP .\nThat plan would give Africa just two non-permanent seats on the council .\tDT NN MD VB NNP RB CD JJ NNS IN DT NN .\nThe 15-member U.N. body currently has five permanent members - a status that includes veto power for the United States , Britain , France , Russia and China .\tDT JJ NNP NN RB VBZ CD JJ NNS IN DT NN WDT VBZ NN NN IN DT NNP NNPS , NNP , NNP , NNP CC NNP .\nThe AU ministers ' meeting was held in advance of the African Union summit Monday and Tuesday in Sirte .\tDT NNP NNS POS NN VBD VBN IN NN IN DT NNP NNP NN NNP CC NNP IN NNP .\nJapanese Prime Minister Junichiro Koizumi says he will push ahead with plans to privatize Japan 's postal service , despite growing resistance from some members of his ruling party .\tJJ NNP NNP NNP NNP VBZ PRP MD VB RB IN NNS TO VB NNP POS JJ NN , IN VBG NN IN DT NNS IN PRP$ VBG NN .\nWith more than $ 3 trillion in deposits and insurance assets , Japan Post is the world 's biggest bank , and its privatization is the main pillar of the prime minister 's controversial economic reform program .\tIN JJR IN $ CD CD IN NNS CC NN NNS , NNP NNP VBZ DT NN POS JJS NN , CC PRP$ NN VBZ DT JJ NN IN DT JJ NN POS JJ JJ NN NN .\nAs a new session of Parliament opened Friday , Mr. Koizumi told the lawmakers he intends to split the postal service 's mail delivery , insurance and savings systems into four separate businesses .\tIN DT JJ NN IN NNP VBD NNP , NNP NNP VBD DT NNS PRP VBZ TO VB DT JJ NN POS NN NN , NN CC NNS NNS IN CD JJ NNS .\nMany conservative lawmakers in the ruling Liberal Democratic Party oppose privatization , in part because this could lead to closure of small post offices in rural areas , a traditional stronghold of the party .\tJJ JJ NNS IN DT NN NNP NNP NNP VBP NN , IN NN IN DT MD VB TO NN IN JJ NN NNS IN JJ NNS , DT JJ NN IN DT NN .\nA Turkish court trying an Islamist militant accused of treason has adjourned until April .\tDT JJ NN VBG DT NN NN VBN IN NN VBZ VBN IN NNP .\nMetin Kaplan , also known as the ' Caliph of Cologne , ' faces charges of trying to overthrow Turkey 's constitutional order .\tNNP NNP , RB VBN IN DT `` NNP IN NNP , `` VBZ NNS IN VBG TO VB NNP POS JJ NN .\nHe is accused of activities that include allegedly plotting to crash an airplane into the mausoleum of the founder of secular Turkey , Kemal Ataturk .\tPRP VBZ VBN IN NNS WDT VBP RB VBG TO VB DT NN IN DT NN IN DT NN IN JJ NNP , NNP NNP .\nDuring Monday 's start of his trial , the accused said he opposes terrorism and was not involved in any terrorist activity .\tIN NNP POS NN IN PRP$ NN , DT VBN VBD PRP VBZ NN CC VBD RB VBN IN DT JJ NN .\nMetin Kaplan was extradited from Germany in October , where he had served a prison sentence for inciting his followers to murder a rival .\tNNP NNP VBD VBN IN NNP IN NNP , WRB PRP VBD VBN DT NN NN IN VBG PRP$ NNS TO NN DT NN .\nHis group ' Caliphate State ' lobbies for the creation of an Islamic government and is banned in Germany .\tPRP$ NN `` NNP NNP `` NNS IN DT NN IN DT JJ NN CC VBZ VBN IN NNP .\nIran has confirmed that authorities recently arrested two Iranian journalists on charges of spreading propaganda against the government .\tNNP VBZ VBN IN NNS RB VBN CD JJ NNS IN NNS IN VBG NN IN DT NN .\nAn Iranian justice spokesman , Alireza Jamshidi said Wednesday that journalists Soheil Asefi and Farshad Ghorbanpour are under investigation for publishing what he calls ' lies ' and giving information to foreign news Web sites .\tDT JJ NN NN , NNP NNP VBD NNP IN NNS NNP NNP CC NNP NNP VBP IN NN IN VBG WP PRP VBZ `` NNS `` CC VBG NN TO JJ NN NNP NNS .\nThe media rights group Reporters Without Borders has called for the release of the two journalists .\tDT NNS NNS NN NNP NNP NNP VBZ VBN IN DT NN IN DT CD NNS .\nIt said authorities arrested Ghorbanpour on July 31 and Asefi on August 4 .\tPRP VBD NNS VBN NNP IN NNP CD CC NNP IN NNP CD .\nThe Iranian spokesman says authorities are considering granting Ghorbanpour a lower bail after it was initially set at $ 1,60,000 .\tDT JJ NN VBZ NNS VBP VBG VBG NNP DT JJR NN IN PRP VBD RB VBN IN $ CD .\nThe Iranian official provided no information about a third journalist , Masood Bastani , who Reporters Without Borders said also was detained last month .\tDT JJ NN VBD DT NN IN DT JJ NN , NNP NNP , WP VBZ IN NNS VBD RB VBD VBN JJ NN .\nReporters Without Borders says 11 journalists and cyber-dissidents are being held in Iran , which it describes as the region 's biggest media prison .\tNNP NNP NNP VBZ CD NNS CC NNS VBP VBG VBN IN NNP , WDT PRP VBZ IN DT NN POS JJS NNS NN .\nA Philippine court has sentenced to death seven members of the Abu Sayyaf terrorist group for an attack four years ago that killed 10 farm workers .\tDT JJ NN VBZ VBN TO NN CD NNS IN DT NNP NNP JJ NN IN DT NN CD NNS IN IN VBD CD NN NNS .\nDozens of soldiers and police guarded the courthouse on the southern island of Basilan , as the verdict was read to six of the convicted men Wednesday .\tNNS IN NNS CC NNS VBD DT NN IN DT JJ NN IN NNP , IN DT NN VBD VBN TO CD IN DT VBN NNS NNP .\nA seventh man is still at large .\tDT JJ NN VBZ RB IN JJ .\nOfficials say the attackers were disguised as soldiers when they abducted the farm workers in August of 2001 .\tNNS VBP DT NNS VBD VBN IN NNS WRB PRP VBD DT NN NNS IN NNP IN CD .\nThey beheaded nine of them and shot another before some of the hostages escaped .\tPRP VBD CD IN PRP CC VBD DT IN DT IN DT NNS VBD .\nAbu Sayyaf militants have fought for decades to establish an Islamic state in the southern Philippines .\tNNP NNP NNS VBP VBN IN NNS TO VB DT JJ NN IN DT JJ NNP .\nThe United States has formally declared it a terrorist group .\tDT NNP NNPS VBZ RB VBN PRP DT JJ NN .\nMauritanian officials say unknown gunmen have killed at least three government soldiers in an attack on a military post .\tJJ NNS VBP JJ NNS VBP VBN IN JJS CD NN NNS IN DT NN IN DT JJ NN .\nNews media have quoted officials who asked not to be named as saying the attack took place Thursday in the northeastern region , near the town of Ghalawiya , close to the Mauritanian-Algerian border .\tNNP NNS VBP VBN NNS WP VBD RB TO VB VBN IN VBG DT NN VBD NN NNP IN DT JJ NN , IN DT NN IN NNP , RB TO DT JJ NN .\nThe attack follows the assassination of four French tourists on Monday in eastern Mauritania .\tDT NN VBZ DT NN IN CD JJ NNS IN NNP IN JJ NNP .\nThe government has blamed an al-Qaida sleeper cell for the killings .\tDT NN VBZ VBN DT NNP NN NN IN DT NNS .\nA newspaper editor Isselmou Ould Moustapha in Mauritania 's capital , Nouakchott , told VOA it is believed that the same group attacked the military post Thursday .\tDT NN NN NNP NNP NNP IN NNP POS NN , NNP , VBD NNP PRP VBZ VBN IN DT JJ NN VBD DT JJ NN NNP .\nIn 2005 , Islamic militants killed at least 15 government troops in a June attack on a military post near the border with Mali .\tIN CD , NNP NNS VBD IN JJS CD NN NNS IN DT NNP NN IN DT JJ NN IN DT NN IN NNP .\nPalestinian security forces in the Gaza Strip have destroyed three illegally-built homes of senior Palestinian officers - as part of what the Palestinian Authority says is a new anti-corruption campaign .\tJJ NN NNS IN DT NNP NNP VBP VBN CD JJ NNS IN JJ JJ NNS IN IN NN IN WP DT JJ NNP VBZ VBZ DT JJ JJ NN .\nA spokesman for the Palestinian Interior Ministry says bulldozers destroyed the homes built on illegally seized public land .\tDT NN IN DT JJ NNP NNP VBZ NNS VBD DT NNS VBN IN RB VBN JJ NN .\nHe said the violators were informed ahead of Monday 's action , and that the buildings were not occupied .\tPRP VBD DT NNS VBD VBN RB IN NNP POS NN , CC IN DT NNS VBD RB JJ .\nPalestinian leader Mahmoud Abbas , who succeeded the late Yasser Arafat in January , has been under pressure to end growing chaos in the Gaza Strip and West Bank , and to root out corruption among senior Palestinian officials and commanders of security forces .\tJJ NN NNP NNP , WP VBD DT JJ NNP NNP IN NNP , VBZ VBN IN NN TO VB VBG NN IN DT NNP NNP CC NNP NNP , CC TO VB RP NN IN JJ JJ NNS CC NNS IN NN NNS .\nBrazilian President Luiz Inacio Lula da Silva says he plans to work for democracy in Cuba and against the U.S. economic embargo on the communist-run island .\tJJ NNP NNP NNP NNP NNP NNP VBZ PRP VBZ TO VB IN NN IN NNP CC IN DT NNP JJ NN IN DT JJ NN .\nPresident da Silva made the comment following a meeting in Rome with Cuban National Assembly speaker Ricardo Alarcon .\tNNP NNP NNP VBD DT NN VBG DT NN IN NNP IN JJ NNP NNP NN NNP NNP .\nThe two officials met at Brazil 's embassy in Rome Friday after attending the funeral of Pope John Paul II .\tDT CD NNS VBD IN NNP POS NN IN NNP NNP IN VBG DT NN IN NNP NNP NNP NNP .\nMr. da Silva said his country must help in the fight against the U.S. economic embargo , saying that Brazil has a chance to help restore normal relations for Cuba .\tNNP NNP NNP VBD PRP$ NN MD VB IN DT NN IN DT NNP JJ NN , VBG IN NNP VBZ DT NN TO VB VB JJ NNS IN NNP .\nWashington has consistently defended the four-decade-long embargo against Cuba , saying it is a necessary part of the strategy to liberate the island from Fidel Castro .\tNNP VBZ RB VBN DT JJ NN IN NNP , VBG PRP VBZ DT JJ NN IN DT NN TO VB DT NN IN NNP NNP .\nA snow storm that has swept across the central U.S. and upper midwest is blamed for at least 11 deaths .\tDT NN NN WDT VBZ VBN IN DT JJ NNP CC JJ NN VBZ VBN IN IN JJS CD NNS .\nHeavy snow , ice and fog Saturday and Sunday caused deadly road accidents and power outages .\tNNP NN , NN CC NN NNP CC NNP VBD JJ NN NNS CC NN NNS .\nThe storm also grounded flights for Christmas holiday travelers .\tDT NN RB VBD NNS IN NNP NN NNS .\nThe winter weather forced about 300 cancellations at Chicago 's busy O'Hare International Airport .\tDT NN NN VBD IN CD NNS IN NNP POS JJ NNP NNP NNP .\nThe National Weather Service on Sunday issued winter storm warnings for parts of the Great Lakes region bordering Canada , with snow and powerful winds in the states of Minnesota , Wisconsin and Michigan .\tDT NNP NNP NNP IN NNP VBD NN NN NNS IN NNS IN DT NNP NNP NN VBG NNP , IN NN CC JJ NNS IN DT NNS IN NNP , NNP CC NNP .\nWhile precipitation was the most visible effect of the severe weather , bitter cold in some areas including the northern Plains where homes are still without power was more dangerous , with temperatures plunging below minus 17 degrees Celsius .\tIN NN VBD DT RBS JJ NN IN DT JJ NN , JJ NN IN DT NNS VBG DT JJ NNS WRB NNS VBP RB IN NN VBD RBR JJ , IN NNS VBG IN NN CD NNS NNP .\nWeather forecasters say the bulk of the storms have moved to the east coast , where precipitation is falling mostly as rain .\tNNP NNS VBP DT NN IN DT NNS VBP VBN TO DT JJ NN , WRB NN VBZ VBG RB IN NN .\nAfghan officials say ballot counting in last month 's legislative elections has been completed and authorities now are auditing the results and investigating reports of vote fraud .\tJJ NNS VBP NN NN IN JJ NN POS JJ NNS VBZ VBN VBN CC NNS RB VBP VBG DT NNS CC VBG NNS IN NN NN .\nSpokesman for the joint U.N.-Afghan election commission , Aleem Siddique says the physical count is complete with the exception of those materials that are subject to audit .\tNNP IN DT JJ JJ NN NN , NNP NNP VBZ DT JJ NN VBZ JJ IN DT NN IN DT NNS WDT VBP JJ TO NN .\nOfficials say the unofficial results show that warlords and opponents of President Hamid Karzai have fared relatively well , and women lawmakers could hold the balance of power in the new national assembly .\tNNS VBP DT JJ NNS VBP IN NNS CC NNS IN NNP NNP NNP VBP VBN RB RB , CC NNS NNS MD VB DT NN IN NN IN DT JJ JJ NN .\nFinal results from the September 18 vote , which also chose provincial councils , are due by October 22 , after complaints are resolved .\tJJ NNS IN DT NNP CD NN , WDT RB VBD JJ NNS , VBP JJ IN NNP CD , IN NNS VBP VBN .\nSuspected Taleban insurgents , who failed to stop more than six million people from voting , resumed their attacks this week .\tVBN NNP NNS , WP VBD TO VB JJR IN CD CD NNS IN NN , VBD PRP$ NNS DT NN .\nA bomb blast near the Pakistani border Tuesday killed three people .\tDT NN NN IN DT JJ NN NNP VBD CD NNS .\nThe Russian foreign ministry says it will not renew the credentials of the American television network ABC after it aired an interview with a wanted Chechen rebel leader .\tDT JJ JJ NN VBZ PRP MD RB VB DT NNS IN DT JJ NN NN NNP IN PRP VBD DT NN IN DT JJ NN NN NN .\nThe ministry Tuesday said Russian state agencies will now consider the network unwelcome after last week 's broadcast featuring Shamil Basayev , who has taken responsibility for numerous terrorist attacks in Russia .\tDT NN NNP VBD JJ NN NNS MD RB VB DT NN JJ IN JJ NN POS NN VBG NNP NNP , WP VBZ VBN NN IN JJ JJ NNS IN NNP .\nThe ministry said the broadcast supported the propaganda of terrorism and made direct threats against Russian citizens .\tDT NN VBD DT NN VBD DT NN IN NN CC VBD JJ NNS IN JJ NNS .\nMoscow protested the interview to U.S. officials .\tNNP VBD DT NN TO NNP NNS .\nA U.S. State Department official said Washington considers Mr. Basayev a terrorist - but ABC had the constitutional right to broadcast the piece .\tDT NNP NNP NNP NN VBD NNP VBZ NNP NNP DT JJ : CC NNP VBD DT JJ NN TO VB DT NN .\nMr. Basayev has taken responsibility for last year 's school seizure in the town of Beslan which killed more than 330 people .\tNNP NNP VBZ VBN NN IN JJ NN POS NN NN IN DT NN IN NNP WDT VBD JJR IN CD NNS .\nIn the interview , he said he was planning more attacks .\tIN DT NN , PRP VBD PRP VBD VBG JJR NNS .\nRussian forces and separatists in Chechnya have been at war for most of the past decade .\tJJ NNS CC NNS IN NNP VBP VBN IN NN IN JJS IN DT JJ NN .\nEcuadorean officials say troops have been sent to reinforce security at oil wells in a move to crush protests that have paralyzed oil exports .\tJJ NNS VBP NNS VBP VBN VBN TO VB NN IN NN NNS IN DT NN TO VB NNS WDT VBP VBN NN NNS .\nA report from Quito by Reuters says the forces have also taken control of government buildings in two Amazon provinces to stop the protests .\tDT NN IN NNP IN NNP VBZ DT NNS VBP RB VBN NN IN NN NNS IN CD NNP NNS TO VB DT NNS .\nEarlier , security forces fired tear gas to disperse protesters in the province of Sucumbios , forcing the state-owned oil company , Petroecuador to suspend production and exports .\tRB , NN NNS VBD JJ NN TO VB NNS IN DT NN IN NNS , VBG DT JJ NN NN , NNP TO VB NN CC NNS .\nEcuador 's daily oil exports of nearly 1,50,000 barrels each day have been completely stopped .\tNNP POS JJ NN NNS IN RB CD NNS DT NN VBP VBN RB VBN .\nMost of the exports go to the United States .\tJJS IN DT NNS VBP TO DT NNP NNPS .\nDemonstrators seized 200 oil facilities and airports in the Lago Agrio and El\tNNS VBD CD NN NNS CC NNS IN DT NNP NNP CC NNP\nCoca provinces and are demanding new contract negotiations with foreign oil firms , along with increased spending on infrastructure and social programs .\tNNP NNS CC VBP VBG JJ NN NNS IN JJ NN NNS , IN IN JJ NN IN NN CC JJ NNS .\nTuesday is scheduled to be a lucky day for two turkeys designated as the official U.S. national Thanksgiving turkey and its alternate .\tNNP VBZ VBN TO VB DT JJ NN IN CD NNS VBN IN DT JJ NNP JJ NNP NN CC PRP$ NN .\nPresident Bush is scheduled to give the turkeys the traditional Thanksgiving pardon during a ceremony at the White House .\tNNP NNP VBZ VBN TO VB DT NNS DT JJ NNP NN IN DT NN IN DT NNP NNP .\nThe two turkeys will later be flown to Disneyland in California to be part of the holiday display and will also serve as honorary grand marshals for Disneyland 's Thanksgiving Day parade on Thursday .\tDT CD NNS MD RB VB VBN TO VB IN NNP TO VB NN IN DT NN NN CC MD RB VB IN JJ JJ NNS IN NNP POS NNP NNP NN IN NNP .\nThey will spend the rest of their lives at a Disneyland ranch .\tPRP MD VB DT NN IN PRP$ NNS IN DT NNP NN .\nFor the past 15 years , the national Thanksgiving turkey and its alternate have been retired to a farm just outside Washington , D.C. , in Virginia .\tIN DT JJ CD NNS , DT JJ NNP NN CC PRP$ NN VBP VBN VBN TO DT NN RB IN NNP , NNP , IN NNP .\nMillions of Americans traditionally enjoy a roasted turkey meal on this Thursday 's Thanksgiving Day holiday .\tNNS IN NNS RB VBP DT JJ NN NN IN DT NNP POS NNP NNP NN .\nU.N. Secretary-General Kofi Annan says the situation in Sudan 's Darfur region is deteriorating , and he is calling for a stronger international action to fix the matter .\tNNP NNP NNP NNP VBZ DT NN IN NNP POS NNP NN VBZ VBG , CC PRP VBZ VBG IN DT JJR JJ NN TO VB DT NN .\nWriting in Wednesday 's Washington Post newspaper , Mr. Annan says recent events in Darfur have changed his view of the region from hopeful to pessimistic .\tVBG IN NNP POS NNP NNP NN , NNP NNP VBZ JJ NNS IN NNP VBP VBN PRP$ NN IN DT NN IN JJ TO JJ .\nHe says rebels and Sudanese government forces routinely break a cease-fire , and that many areas are now too dangerous for relief workers to reach .\tPRP VBZ NNS CC JJ NN NNS RB VBP DT NN , CC IN JJ NNS VBP RB RB JJ IN NN NNS TO VB .\nHe says two million people have been displaced from their homes .\tPRP VBZ CD CD NNS VBP VBN VBN IN PRP$ NNS .\nMr. Annan says African Union troops make a valiant effort to provide security but that there are too few of them to cover the vast region .\tNNP NNP VBZ NNP NNP NNS VBP DT JJ NN TO VB NN CC IN EX VBP RB JJ IN PRP TO VB DT JJ NN .\nHe calls on U.N. members to increase the size of the peacekeeping force and pressure the combatants to put down their weapons and work towards peace .\tPRP VBZ IN NNP NNS TO VB DT NN IN DT NN NN CC NN DT NNS TO VB RP PRP$ NNS CC NN IN NN .\nRussian lawmakers have passed a new anti-terrorism bill allowing the military to shoot down hijacked passenger planes .\tJJ NNS VBP VBN DT JJ JJ NN VBG DT JJ TO VB RP JJ NN NNS .\nThe lower house of parliament , the Duma overwhelmingly passed the bill Sunday 423 to 1 .\tDT JJR NN IN NN , DT NNP RB VBD DT NN NNP CD TO CD .\nIt now goes to the upper house , where it is likely to pass , and then to President Vladimir Putin who is expected to sign it .\tPRP RB VBZ TO DT JJ NN , WRB PRP VBZ JJ TO VB , CC RB TO NNP NNP NNP WP VBZ VBN TO VB PRP .\nThe new law would let the the military shoot down a hijacked jet if terrorists threaten to fly into a building or populated target .\tDT JJ NN MD VB DT DT NN NN IN DT JJ NN IN NNS VBP TO VB IN DT NN CC JJ NN .\nIt also gives the Russian president the authorization to order a counter-terrorist operation outside Russian territory and allows authorities to monitor telephone calls and other electronic communications .\tPRP RB VBZ DT JJ NN DT NN TO VB DT NN NN IN JJ NN CC VBZ NNS TO VB NN NNS CC JJ JJ NNS .\nThe bill also defines terrorism and what constitutes a terrorist act .\tDT NN RB VBZ NN CC WP VBZ DT JJ NN .\nThe Venezuelan Congress has recommended that the state assume majority control over four key oil projects in the oil-rich Orinoco River basin .\tDT JJ NNP VBZ VBN IN DT NN VB NN NN IN CD JJ NN NNS IN DT JJ NNP NNP NN .\nThe recommendation was made Thursday , days after President Hugo Chavez said he plans to raise taxes on foreign oil companies in Venezuela .\tDT NN VBD VBN NNP , NNS IN NNP NNP NNP VBD PRP VBZ TO VB NNS IN JJ NN NNS IN NNP .\nHe described the move as an extraction tax , saying it would create $ 1 billion in new state revenue .\tPRP VBD DT NN IN DT NN NN , VBG PRP MD VB $ CD CD IN JJ NN NN .\nThe new tax will be 33 percent , up from 16.7 percent .\tDT JJ NN MD VB CD NN , RB IN CD NN .\nThe Chavez government has been taking measures to strengthen state control of the energy sector in the world 's fifth-largest oil exporter .\tDT NNP NN VBZ VBN VBG NNS TO VB NN NN IN DT NN NN IN DT NN POS JJ NN NN .\nHe has accused foreign oil companies of exploiting his country 's vast petroleum reserves without paying sufficient taxes .\tPRP VBZ VBN JJ NN NNS IN VBG PRP$ NN POS JJ NN NNS IN VBG JJ NNS .\nThirty two oil fields previously operated under contract by private companies are now run by ' mixed companies ' in which the state holds majority shares .\tCD CD NN NNS RB VBN IN NN IN JJ NNS VBP RB VBN IN `` JJ NNS `` IN WDT DT NN VBZ NN NNS .\nA new poll finds the front-runner in the race for the Mexican presidency has seen his lead narrow in recent weeks .\tDT JJ NN VBZ DT NN IN DT NN IN DT JJ NN VBZ VBN PRP$ JJ JJ IN JJ NNS .\nThe survey by the Mitofsky polling agency says Andres Manuel Lopez Obrador 's popularity among voters dropped from 39 percent in February to 38 percent in March .\tDT NN IN DT NNP NN NN VBZ NNP NNP NNP NNP POS NN IN NNS VBD IN CD NN IN NNP TO CD NN IN NNP .\nLopez Obrador represents the Democratic Revolution Party , or PRD .\tNNP NNP VBZ DT JJ NNP NNP , CC NNP .\nReleased Tuesday , the poll also shows that Felipe Calderon of the ruling National Action Party , or PAN , had 31 percent of voter support , up one percentage point .\tVBN NNP , DT NN RB VBZ IN NNP NNP IN DT NN NNP NNP NNP , CC NNP , VBD CD NN IN NN NN , IN CD NN NN .\nRoberto Madrazo of the Institutional Revolutionary Party , PRI , also gained - rising to 29 percent from 28 percent .\tNNP NNP IN DT NNP NNP NNP , NNP , RB VBD : VBG TO CD NN IN CD NN .\nThe polling company questioned 1,000 registered voters and says the survey has a margin of error of plus or minus 3.1 percent .\tDT VBG NN VBD CD JJ NNS CC VBZ DT NN VBZ DT NN IN NN IN JJ CC JJ CD NN .\nThe winner of the July 2 election will replace President Vicente Fox , who by law can not seek a second six-year term .\tDT NN IN DT NNP CD NN MD VB NNP NNP NNP , WP IN NN MD RB VB DT JJ JJ NN .\nNigerian Vice President Goodluck Jonathan says the country 's ailing president will return to Nigeria soon .\tJJ NNP NNP NNP NNP VBZ DT NN POS JJ NN MD VB TO NNP RB .\nThe vice president , speaking in Abuja , did not indicate when President Umaru Yar'Adua is expected back .\tDT NN NN , NN IN NNP , VBD RB VB WRB NNP NNP NNP VBZ VBN RB .\nMr. Yar'Adua left Nigeria in late November , when he traveled to a Saudi hospital to be treated for a heart condition .\tNNP NNP VBD NNP IN JJ NNP , WRB PRP VBD TO DT JJ NN TO VB VBN IN DT NN NN .\nHe also suffers from a chronic kidney ailment .\tPRP RB VBZ IN DT JJ NN NN .\nOn Wednesday , Nigeria 's cabinet and Senate made conflicting statements on whether Mr. Yar'Adua is fit to remain in office .\tIN NNP , NNP POS NN CC NNP VBD JJ NNS IN IN NNP NNP VBZ JJ TO VB IN NN .\nThe cabinet , appointed by the president , ruled that Mr. Yar'Adua is capable of performing his duties .\tDT NN , VBN IN DT NN , VBD IN NNP NNP VBZ JJ IN VBG PRP$ NNS .\nThe Senate said Mr. Yar'Adua should formally notify the National Assembly of what it called his ' medical vacation . '\tDT NNP VBD NNP NNP MD RB VB DT NNP NNP IN WP PRP VBD PRP$ `` JJ NN . ``\nThe constitution says if such notification is given , the vice president must take over temporarily .\tDT NN VBZ IN JJ NN VBZ VBN , DT NN NN MD VB RP RB .\nWitnesses in Somalia 's capital say a grenade attack on a gathering of Yemeni nationals has killed one person and wounded four others .\tNNS IN NNP POS NN VBP DT NN NN IN DT NN IN JJ NNS VBZ VBN CD NN CC VBD CD NNS .\nThe witnesses say the Yemeni community was electing a local leader in southern Mogadishu Thursday when a grenade was thrown into the meeting hall .\tDT NNS VBP DT JJ NN VBD VBG DT JJ NN IN JJ NNP NNP WRB DT NN VBD VBN IN DT NN NN .\nAn officer from the Yemeni embassy in Mogadishu was among those present at the gathering .\tDT NN IN DT JJ NN IN NNP VBD IN DT JJ IN DT NN .\nIt is not clear who was behind the attack .\tPRP VBZ RB JJ WP VBD IN DT NN .\nMogadishu has endured more than a year of chronic violence stemming from the conflict between Islamist militants and Ethiopian-backed government forces .\tNNP VBZ VBN JJR IN DT NN IN JJ NN VBG IN DT NN IN NNP NNS CC JJ NN NNS .\nThe country as a whole has been plagued by unrest since since warlords overthrew dictator Mohamed Siad Barre in 1991 .\tDT NN IN DT NN VBZ VBN VBN IN NN IN IN NNS JJ NN NNP NNP NNP IN CD .\nGermany 's Christian Democrats and Christian Social Union have re-elected Angela Merkel as leader of their parliamentary group .\tNNP POS NNP NNPS CC NNP NNP NNP VBP VBN NNP NNP IN NN IN PRP$ JJ NN .\nParty officials say she received more than 98 percent support .\tNNP NNS VBP PRP VBD JJR IN CD NN NN .\nThe vote , seen largely as a demonstration of confidence , comes after Ms. Merkel 's Christian Democrats edged out incumbent Chancellor Gerhard Schroeder 's Social Democrats by three seats in the 598-seat lower house of parliament .\tDT NN , VBN RB IN DT NN IN NN , VBZ IN NNP NNP POS NNP NNPS VBD RP JJ NNP NNP NNP POS NNP NNPS IN CD NNS IN DT JJ JJR NN IN NN .\nGerman political leaders say Mr. Schroeder and Ms. Merkel 's parties plan to meet for coalition talks on Thursday , even though both leaders have claimed the right to be chancellor .\tJJ JJ NNS VBP NNP NNP CC NNP NNP POS NNS VBP TO VB IN NN NNS IN NNP , RB IN DT NNS VBP VBN DT NN TO VB NN .\nMeanwhile , Foreign Minister Joschka Fischer says he will give up his role as leader of the Green Party , if the group gores into the opposition following Sunday 's vote .\tRB , NNP NNP NNP NNP VBZ PRP MD VB RP PRP$ NN IN NN IN DT NNP NNP , IN DT NN VBZ IN DT NN VBG NNP POS NN .\nAn investigation is under way into the crash of a British military plane north of Baghdad Sunday , believed to have killed 10 military personnel .\tDT NN VBZ IN NN IN DT NN IN DT JJ JJ NN NN IN NNP NNP , VBN TO VB VBN CD JJ NNS .\nOfficials in London say they are aware of reports that the C-130 aircraft may have been shot down , but say they can not draw any conclusions until the investigation is complete .\tNNS IN NNP VBP PRP VBP JJ IN NNS IN DT NN NN MD VB VBN VBN RB , CC VBP PRP MD RB VB DT NNS IN DT NN VBZ JJ .\nThe aircraft went down on a flight between Baghdad airport and Balad airbase .\tDT NN VBD RB IN DT NN IN NNP NN CC NN NN .\nTwo militant groups have separately claimed responsibility for downing the plane .\tCD JJ NNS VBP RB VBN NN IN VBG DT NN .\nSunday 's crash is the deadliest single incident suffered by British troops since the war in Iraq began nearly two years ago .\tNNP POS NN VBZ DT JJS JJ NN VBN IN JJ NNS IN DT NN IN NNP VBD RB CD NNS RB .\nU.S. Deputy Secretary of State John Negroponte will travel to Central and South America next week to meet with regional officials on a range of issues , including security and trade .\tNNP NNP NNP IN NNP NNP NNP MD VB TO NNP CC NNP NNP JJ NN TO VB IN JJ NNS IN DT NN IN NNS , VBG NN CC NN .\nOn Monday , Negroponte will begin a two-day visit to Medellin , Colombia , where he is leading the U.S. delegation to a meeting of the Organization of American States General Assembly .\tIN NNP , NNP MD VB DT JJ NN TO NNP , NNP , WRB PRP VBZ VBG DT NNP NN TO DT NN IN DT NNP IN NNP NNP NNP NNP .\nHe will travel to El Salvador , Honduras and Guatemala from June 3 through June 6 .\tPRP MD VB TO NNP NNP , NNP CC NNP IN NNP CD IN NNP CD .\nWhile in those countries , Negroponte is scheduled to meet with government and business leaders on issues including the Merida Initiative , in which nations partner to fight criminal organizations .\tIN IN DT NNS , NNP VBZ VBN TO VB IN NN CC NN NNS IN NNS VBG DT NNP NNP , IN WDT NNS VBZ TO VB JJ NNS .\nDiscussions are also expected to cover commercial relations , trade , development and security concerns .\tNNS VBP RB VBN TO VB JJ NNS , NN , NN CC NN NNS .\nOfficials in Burundi say they have freed another 780 political prisoners as part of an accord to end the country 's civil war .\tNNS IN NNP VBP PRP VBP VBN DT CD JJ NNS IN NN IN DT NN TO VB DT NN POS JJ NN .\nThe move follows the release of 673 political prisoners last month .\tDT NN VBZ DT NN IN CD JJ NNS JJ NN .\nAmnesty International has criticized the releases , saying they could allow war criminals to go unpunished .\tNNP NNP VBZ VBN DT NNS , VBG PRP MD VB NN NNS TO VB JJ .\nThe human rights group says Burundi 's government has yet to create a truth and reconciliation commission it says the prisoners would have to appear before .\tDT JJ NNS NN VBZ NNP POS NN VBZ RB TO VB DT NN CC NN NN PRP VBZ DT NNS MD VB TO VB RB .\nIn an interview with VOA , Burundi 's information minister also acknowledged criticism over the release of military personnel convicted of assassinating Burundi 's first democratically-elected president , Melchior Ndadaye .\tIN DT NN IN NNP , NNP POS NN NN RB VBD NN IN DT NN IN JJ NNS VBN IN VBG NNP POS JJ JJ NN , NNP NNP .\nKalenga Ramadhani says it did not make sense to jail the people who executed the crime while the masterminds remain at large .\tNNP NNP VBZ PRP VBD RB VB NN TO NN DT NNS WP VBD DT NN IN DT NNS VBP IN JJ .\nBurundi 's 12-year-civil war ended in 2004 .\tNNP POS JJ NN VBN IN CD .\nSome 3,00,000 people were killed .\tDT CD NNS VBD VBN .\nThe U.S. military says coalition forces have discovered a suspected insurgent chemical production facility and storage site in northern Iraq .\tDT NNP NN VBZ NN NNS VBP VBN DT JJ JJ NN NN NN CC NN NN IN JJ NNP .\nA senior military official says the chemicals collected at the site in Mosul are being analyzed to determine the type and quantity produced .\tDT JJ JJ NN VBZ DT NNS VBN IN DT NN IN NNP VBP VBG VBN TO VB DT NN CC NN VBN .\nBut another official close to the investigation told VOA 's Baghdad correspondent that the materials are ' precursor chemicals commonly associated with the production of narcotics . '\tCC DT NN RB TO DT NN VBD NNP POS NNP NN IN DT NNS VBP `` JJ NNS RB VBN IN DT NN IN NNS . ``\nIn a statement earlier Saturday , the military said the raid , conducted Tuesday , was based on intelligence obtained during interrogation of detainees .\tIN DT NN RBR NNP , DT NN VBD DT NN , VBN NNP , VBD VBN IN NN VBN IN NN IN NNS .\nAn investigation is continuing to determine which terrorist or insurgent group built and operated the covert facility .\tDT NN VBZ VBG TO VB WDT JJ CC JJ NN VBD CC VBD DT JJ NN .\nAuthorities in Los Angeles have not filed charges against a 26-year-old punk rock musician , following a deadly stabbing .\tNNS IN NNP NNP VBP RB VBN NNS IN DT JJ NN NN NN , VBG DT JJ NN .\nAnthony Lovato , who sang in the defunct quartet Mest , was arrested March 25 , after telephoning police to report the altercation .\tNNP NNP , WP VBD IN DT JJ NN NNP , VBD VBN NNP CD , IN VBG NNS TO VB DT NN .\nPolice say Lovato fought 25-year-old Wayne Hughes early Sunday morning in a Los Angeles parking structure .\tNNS VBP NNP VBD JJ NNP NNP JJ NNP NN IN DT NNP NNP NN NN .\nHughes later died in a hospital .\tNNP RB VBD IN DT NN .\nThe two had apparently been involved with the same woman at different times .\tDT CD VBD RB VBN VBN IN DT JJ NN IN JJ NNS .\nAuthorities declined to file charges against Lovato , citing insufficient evidence .\tNNS VBD TO VB NNS IN NNP , VBG JJ NN .\nHe was released from jail March 27 .\tPRP VBD VBN IN NN NNP CD .\nAnthony Lovato and his brother Matt formed Mest in 1995 .\tNNP NNP CC PRP$ NN NNP VBD NNP IN CD .\nThey recorded several albums for Madonna 's Maverick label before disbanding in 2006 .\tPRP VBD JJ NNS IN NNP POS NNP NN IN VBG IN CD .\nThe northeastern U.S. state of Connecticut has given its social services agencies permission to supply thousands of needy families with discounted heating oil from a Venezuelan-owned oil company .\tDT JJ NNP NN IN NNP VBZ VBN PRP$ JJ NNS NNS NN TO VB NNS IN JJ NNS IN JJ NN NN IN DT JJ NN NN .\nThe state 's Attorney General Richard Blumenthal cautioned that the deal is politically sensitive , given Venezuela 's tense relationship with the United States , but he ruled that the program is legal .\tDT NN POS NNP NNP NNP NNP VBD IN DT NN VBZ RB JJ , VBN NNP POS NN NN IN DT NNP NNPS , CC PRP VBD IN DT NN VBZ JJ .\nBlumenthal also criticized the U.S. Congress for this year 's controversial cuts to federal heating assistance to the poor , saying that is what made outside help necessary .\tNNP RB VBD DT NNP NNP IN DT NN POS JJ NNS TO JJ NN NN TO DT NN , VBG DT VBZ WP VBD JJ NN JJ .\nVenezuela has already delivered oil through Citgo , its U.S. subsidiary , to communities in seven other U.S. states .\tNNP VBZ RB VBN NN IN NNP , PRP$ NNP NN , TO NNS IN CD JJ NNP NNS .\nThe oil is sold at a 40 percent discount to low income families .\tDT NN VBZ VBN IN DT CD NN NN TO JJ NN NNS .\nCritics of the program say Venezuelan President Hugo Chavez is trying to embarrass President Bush and build support for himself .\tNNS IN DT NN VBP JJ NNP NNP NNP VBZ VBG TO VB NNP NNP CC VB NN IN PRP .\nIraqi police say insurgents have killed four truck drivers and set their convoy on fire in an ambush north of Baghdad .\tJJ NNS VBP NNS VBP VBN CD NN NNS CC VBD PRP$ NN IN NN IN DT JJ NN IN NNP .\nPolice say the drivers were carrying construction material Sunday to a U.S. military base when they were attacked in the al-Nabaie area .\tNNS VBP DT NNS VBD VBG NN NN NNP TO DT NNP JJ NN WRB PRP VBD VBN IN DT NNP NN .\nSeparately , authorities say a police general and two of his bodyguards were killed in a roadside bombing near Kirkuk .\tRB , NNS VBP DT NN NN CC CD IN PRP$ NNS VBD VBN IN DT NN NN IN NNP .\nElsewhere , officials say a shepherd led search teams to the wreckage of a small plane that crashed three days ago in a remote northern area .\tRB , NNS VBP DT NN VBD NN NNS TO DT NN IN DT JJ NN WDT VBD CD NNS RB IN DT JJ JJ NN .\nAuthorities say all six people on board - including three German businessmen - were apparently killed in the crash .\tNNS VBP DT CD NNS IN NN : VBG CD JJ NNS : VBD RB VBN IN DT NN .\nThe plane - headed to Sulaymaniya from Azerbaijan - went missing in a storm late Thursday .\tDT NN : VBN TO NNP IN NNP : VBD VBG IN DT NN JJ NNP .\nAuthorities said there was no evidence that hostile action played any part in the crash .\tNNS VBD EX VBD DT NN IN JJ NN VBD DT NN IN DT NN .\nWorld oil prices rose to new record highs in New York and London as conflict spread in the Middle East and tensions continued in Iran and Nigeria .\tNNP NN NNS VBD TO JJ NN NNS IN NNP NNP CC NNP IN NN NN IN DT NNP NNP CC NNS VBD IN NNP CC NNP .\nThe price of oil for future delivery hit $ 76.4 a barrel in New York trading Thursday .\tDT NN IN NN IN JJ NN VBD $ CD DT NN IN NNP NNP NN NNP .\nThe price increases follow Israel 's attacks inside Lebanon in a campaign against the Hezbollah militant group .\tDT NN NNS VBP NNP POS NNS IN NNP IN DT NN IN DT NNP JJ NN .\nDealers say the increases also are related to Iran 's standoff with Western nations over its suspected nuclear weapons program and explosions that hit two oil pipelines in Nigeria 's troubled Niger Delta region .\tNNS VBP DT NNS RB VBP VBN TO NNP POS NN IN JJ NNS IN PRP$ JJ JJ NNS NN CC NNS WDT VBD CD NN NNS IN NNP POS JJ NNP NNP NN .\nStrong demand for oil leaves little unused oil production capacity anywhere in the world .\tJJ NN IN NN NNS RB JJ NN NN NN RB IN DT NN .\nThe tight balance between supply and demand means any disruption in oil supplies could cause prices to soar .\tDT JJ NN IN NN CC NN VBZ DT NN IN NN NNS MD VB NNS TO VB .\nUzbek President Islam Karimov , right , inspects the Guard of honor alongside Chinese President Hu Jintao outside of Beijing 's Great Hall of the People China has welcomed embattled Uzbek President Islam Karimov .\tJJ NNP NNP NNP , RB , VBZ DT NN IN NN IN JJ NNP NNP NNP IN IN NNP POS NNP NNP IN DT NNS NNP VBZ VBN VBN JJ NNP NNP NNP .\nMr. Karimov arrived in Beijing Wednesday , a day after China voiced support for his regime 's bloody crackdown on anti-government protesters .\tNNP NNP VBD IN NNP NNP , DT NN IN NNP VBD NN IN PRP$ NN POS JJ NN IN JJ NNS .\nThe Chinese and Uzbek governments say Mr. Karimov 's visit was planned long before the May 13 uprising in Uzbekistan 's eastern city of Andijan .\tDT JJ CC JJ NNS VBP NNP NNP POS NN VBD VBN RB IN DT NNP CD NN IN NNP POS JJ NN IN NNP .\nPresident Karimov is facing harsh international criticism over the incident , which he blames on Muslim extremists .\tNNP NNP VBZ VBG JJ JJ NN IN DT NN , WDT PRP VBZ IN NNP NNS .\nBut he has found support in China , which fears Islamic militancy in the region could spread to its own territory .\tCC PRP VBZ VBN NN IN NNP , WDT VBZ JJ NN IN DT NN MD VB TO PRP$ JJ NN .\nThe number of people who died in Andijan is in dispute .\tDT NN IN NNS WP VBD IN NNP VBZ IN NN .\nThe Uzbek government says 169 were killed but rights groups say many more people died .\tDT JJ NN VBZ CD VBD VBN CC NNS NNS VBP JJ JJR NNS VBD .\nThe United Nations food agency estimates that between 30,000 and 50,000 Somalis are in need of immediate relief assistance following the Indian Ocean tsunami .\tDT NNP NNP NN NN VBZ IN IN CD CC CD NNS VBP IN NN IN JJ NN NN VBG DT NNP NNP NN .\nA World Food Program statement Wednesday said efforts to rush aid to one of the worst-hit Somali towns , Hafun , are being held up because waves have washed away the access road .\tDT NNP NNP NNP NN NNP VBD NNS TO VB NN TO CD IN DT JJ JJ NNS , NNP , VBP VBG VBN RP IN NNS VBP VBN RP DT NN NN .\nThe agency said the town is in a state of total desolation , with most homes destroyed .\tDT NN VBD DT NN VBZ IN DT NN IN JJ NN , IN JJS NNS VBN .\nThe United Nations says at least 114 Somalis died in the massive waves that were generated by an underwater earthquake thousands of kilometers away near Indonesia .\tDT NNP NNP VBZ IN JJS CD NNS VBD IN DT JJ NNS WDT VBD VBN IN DT JJ NN NNS IN NNS RB IN NNP .\nIn Tanzania , officials have said at least 10 swimmers died when they were dragged out to sea by powerful water currents .\tIN NNP , NNS VBP VBN IN JJS CD NNS VBD WRB PRP VBD VBN RP TO NN IN JJ NN NNS .\nThe tsunami is also blamed for killing two people in Seychelles and one tourist in Kenya .\tDT NN VBZ RB VBN IN VBG CD NNS IN NNP CC CD NN IN NNP .\nUkraine 's prime minister is rejecting a planned price hike by Russia 's state-run natural gas company , Gazprom , as an unacceptable move aimed at putting direct economic pressure on Ukraine .\tNNP POS JJ NN VBZ VBG DT VBN NN NN IN NNP POS JJ JJ NN NN , NNP , IN DT JJ NN VBN IN VBG JJ JJ NN IN NNP .\nYuriy Yekhanurov told officials in Kiev his country will take all necessary legal steps if the dispute is not resolved .\tNNP NNP VBD NNS IN NNP PRP$ NN MD VB DT JJ JJ NNS IN DT NN VBZ RB VBN .\nHis comments came as Ukraine 's energy minister , Ivan Plachkov , left for Moscow for talks on a settlement .\tPRP$ NNS VBD IN NNP POS NN NN , NNP NNP , VBD IN NNP IN NNS IN DT NN .\nGazprom intends to more than quadruple the price it charges Ukraine to bring its prices in line with the world market .\tNNP VBZ TO JJR IN VB DT NN PRP VBZ NNP TO VB PRP$ NNS IN NN IN DT NN NN .\nKiev supports an increase but wants a gradual one to avoid damaging its economy .\tNNP VBZ DT NN CC VBZ DT JJ CD TO VB VBG PRP$ NN .\nGazprom is threatening to cut supplies on January first if no deal is reached .\tNNP VBZ VBG TO VB NNS IN NNP JJ IN DT NN VBZ VBN .\nUkraine says it has sent its proposals and will seek international arbitration if there is no agreement .\tNNP VBZ PRP VBZ VBN PRP$ NNS CC MD VB JJ NN IN EX VBZ DT NN .\nOrganizers have unveiled the route for this year 's Dakar Rally .\tNNS VBP VBN DT NN IN DT NN POS NNP NNP .\nIt 's a shorter , but more intense course that starts in Barcelona , Spain December 31 .\tPRP VBZ DT JJR , CC RBR JJ NN WDT VBZ IN NNP , NNP NNP CD .\nThe race covers 8,956 kilometers in 16 stages , 2,000 kilometers shorter than last year 's race .\tDT NN VBZ CD NNS IN CD NNS , CD NNS JJR IN JJ NN POS NN .\nHowever , the rally has several sand dune crossings in succession , including six stages in Mauritania .\tRB , DT NN VBZ JJ NN NN NNS IN NN , VBG CD NNS IN NNP .\nThe race starts with a four-kilometer special stage around Barcelona and then heads to Granada before passing into Morocco , Mauritania , Mali , and ending in Senegal January 16 .\tDT NN VBZ IN DT JJ JJ NN IN NNP CC RB VBZ TO NNP IN VBG IN NNP , NNP , NNP , CC VBG IN NNP NNP CD .\nIn the motorcycle section , no rider will wear the number-one jersey out of respect for the late Richard Sainct , a three-time Dakar Rally champion who was killed in September during the Rally of the Pharaohs in Egypt .\tIN DT NN NN , DT NN MD VB DT JJ NN IN IN NN IN DT JJ NNP NNP , DT JJ NNP NNP NN WP VBD VBN IN NNP IN DT NN IN DT NNP IN NNP .\nThe World Health Organization has confirmed two more human deaths from bird flu in Indonesia , bringing the country 's death toll from the virus to 18 .\tDT NNP NNP NNP VBZ VBN CD JJR JJ NNS IN NN NN IN NNP , VBG DT NN POS NN NN IN DT NN TO CD .\nThe confirmation from a Hong Kong laboratory came Sunday after local tests showed that two women who died last week had contracted the deadly H5N1 strain of the virus .\tDT NN IN DT NNP NNP NN VBD NNP IN JJ NNS VBD IN CD NNS WP VBD JJ NN VBD VBN DT JJ NNP NN IN DT NN .\nRecent tests have also confirmed the H5N1 bird flu was found in wild swans in Italy , Greece and Bulgaria .\tJJ NNS VBP RB VBN DT NNP NN NN VBD VBN IN JJ NNS IN NNP , NNP CC NNP .\nOfficials in Romania have also reported new cases of suspected bird flu in the Danube Delta .\tNNS IN NNP VBP RB VBN JJ NNS IN JJ NN NN IN DT NNP NNP .\nItalian veterinary officials are holding an emergency meeting Sunday , and in Greece , experts are checking poultry farms and homes ( around the northern city of Thessaloniki ) where the infected birds were found .\tJJ JJ NNS VBP VBG DT NN NN NNP , CC IN NNP , NNS VBP VBG JJ NNS CC NNS LRB IN DT JJ NN IN NNP RRB WRB DT JJ NNS VBD VBN .\nBird flu has killed about 90 people worldwide since 2003 .\tNN NN VBZ VBN IN CD NNS JJ IN CD .\nExperts say migratory birds are spreading the virus .\tNNS VBP JJ NNS VBP VBG DT NN .\nWorld health officials are working to prevent a global pandemic .\tNNP NNP NNS VBP VBG TO VB DT JJ NN .\nA Labor Department Tuesday says U.S. wholesale prices jumped five-tenths of a percent in March , pushed upward by rising gasoline costs .\tDT NNP NNP NNP VBZ NNP JJ NNS VBD NNS IN DT NN IN NNP , VBN RB IN VBG NN NNS .\nEconomists set aside volatile energy and food prices to gauge inflation in the rest of the economy .\tNNS VBD RB JJ NN CC NN NNS TO VB NN IN DT NN IN DT NN .\nBy that measure , the so-called ' core ' inflation rate was up a modest one-tenth of a percent .\tIN DT NN , DT JJ `` NN `` NN NN VBD IN DT JJ NN IN DT NN .\nAnalysts say strong price competition among businesses makes companies reluctant to pass rising costs along to customers .\tNNS VBP JJ NN NN IN NNS VBZ NNS JJ TO VB VBG NNS IN TO NNS .\nWednesday , we will get a look at inflation at the consumer level when the government publishes the consumer price index .\tNNP , PRP MD VB DT NN IN NN IN DT NN NN WRB DT NN VBZ DT NN NN NN .\nSome analysts predict it will be up about four-tenths of a percent for the month .\tDT NNS VBP PRP MD VB RB IN NNS IN DT NN IN DT NN .\nA separate government report Tuesday showed further evidence that the U.S. housing market is cooling off as interest rates rise .\tDT JJ NN NN NNP VBD JJ NN IN DT NNP NN NN VBZ VBG RP IN NN NNS VBP .\nThe number of new homes started in March fell nearly eight percent .\tDT NN IN JJ NNS VBN IN NNP VBD RB CD NN .\nKuwait has reported two cases of bird flu , the first incidence of the virus in the Persian Gulf region .\tNNP VBZ VBN CD NNS IN NN NN , DT JJ NN IN DT NN IN DT NNP NNP NN .\nKuwaiti agriculture officials said Thursday that the virus was discovered in two birds , one a migrating flamingo .\tJJ NN NNS VBD NNP IN DT NN VBD VBN IN CD NNS , CD DT NN NN .\nIt is not clear if the birds were carrying the deadly H5N1 strain of the virus .\tPRP VBZ RB JJ IN DT NNS VBD VBG DT JJ NNP NN IN DT NN .\nItalian health officials say a wild duck in northern Italy tested positive for the virus , but posed no threat to humans .\tJJ NN NNS VBP DT JJ NN IN JJ NNP VBD JJ IN DT NN , CC VBD DT NN TO NNS .\nMeanwhile , China has reported two new outbreaks of bird flu among poultry in the northeastern province of Liaoning , bringing the total number of reported outbreaks in the country over the past month to six .\tRB , NNP VBZ VBN CD JJ NNS IN NN NN IN NN IN DT JJ NN IN NNP , VBG DT JJ NN IN VBN NNS IN DT NN IN DT JJ NN TO CD .\nEU Health Commissioner Markos Kyprianou told officials in Thailand Thursday that the European Union will provide financial assistance in fighting the spread of bird flu .\tNNP NNP NNP NNP NNP VBD NNS IN NNP NNP IN DT NNP NNP MD VB JJ NN IN VBG DT NN IN NN NN .\nThailand 's government says it will provide free cable television in the country 's restive south in its latest effort to stem violence in the Muslim-dominated region .\tNNP POS NN VBZ PRP MD VB JJ NN NN IN DT NN POS JJ NN IN PRP$ JJS NN TO VB NN IN DT JJ NN .\nUnder the plan announced Tuesday by Interior Minister Kongsak Wanthana , the government will install at least 500 television sets in local stores .\tIN DT NN VBN NNP IN NNP NNP NNP NNP , DT NN MD VB IN JJS CD NN NNS IN JJ NNS .\nProgramming will be limited mainly to sports , including English Premier League soccer matches .\tNNP MD VB VBN RB TO NNS , VBG NNP NNP NNP NN NNS .\nMr. Kongsak says the move could encourage the youth to become more interested in sports , and less interested in violence .\tNNP NNP VBZ DT NN MD VB DT NN TO VB RBR JJ IN NNS , CC RBR JJ IN NN .\nMore than 800 people have been killed since violence broke out in the Muslim-dominated provinces of Pattani , Narathiwat and Yala in January 2004 .\tJJR IN CD NNS VBP VBN VBN IN NN VBD RP IN DT JJ NNS IN NNP , NNP CC NNP IN NNP CD .\nThe Thai government has tried a range of measures to quell the violence , including martial law and air-dropping millions of paper birds as a goodwill gesture .\tDT JJ NN VBZ VBN DT NN IN NNS TO VB DT NN , VBG JJ NN CC NN NNS IN NN NNS IN DT NN NN .\nSouth Korean Unification Minister Chung Dong-Young will visit China this week to discuss stalled six-nation talks on North Korea 's nuclear program .\tNNP JJ NNP NNP NNP NNP MD VB NNP DT NN TO VB VBN JJ NNS IN NNP NNP POS JJ NN .\nMr. Chung , who is also chairman of South Korea 's National Security Council , will arrive in Beijing on Tuesday .\tNNP NNP , WP VBZ RB NN IN NNP NNP POS NNP NNP NNP , MD VB IN NNP IN NNP .\nDuring four days in China , President Roh Moo-Hyun 's special envoy is expected to meet parliamentary chief Wu Bangguo , Foreign Minister Li Zhaoxing and other top Chinese officials , with the focus largely on North Korea .\tIN CD NNS IN NNP , NNP NNP NNP POS JJ NN VBZ VBN TO VB JJ NN NNP NNP , NNP NNP NNP NNP CC JJ JJ JJ NNS , IN DT NN RB IN NNP NNP .\nChina has hosted three rounds of six-nation talks , bringing together representatives of the two Koreas , the United States , Japan and Russia in an effort to curb Pyongyang 's nuclear weapons program .\tNNP VBZ VBN CD NNS IN JJ NNS , VBG RB NNS IN DT CD NNP , DT NNP NNPS , NNP CC NNP IN DT NN TO VB NNP POS JJ NNS NN .\nNorth Korea boycotted a fourth round of talks scheduled for last September , refusing to take part due to what Pyongyang called Washington 's co-called ' hostile policy ' toward the communist state .\tNNP NNP VBD DT JJ NN IN NNS VBN IN JJ NNP , VBG TO VB NN JJ TO WP NNP VBD NNP POS JJ `` JJ NN `` IN DT JJ NN .\nVenezuelan Vice President Jose Rangel has dismissed U.S. concerns over his country 's plan to buy 1,00,000 Russian-made rifles .\tJJ NNP NNP NNP NNP VBZ VBN NNP NNS IN PRP$ NN POS NN TO VB CD JJ NNS .\nMr. Rangel said Tuesday Venezuela is buying the rifles to strengthen its national defense , and that the purchase should not concern Washington .\tNNP NNP VBD NNP NNP VBZ VBG DT NNS TO VB PRP$ JJ NN , CC IN DT NN MD RB VB NNP .\nHis remarks were in response to recent comments by Roger Noriega , Assistant Secretary of State for Western Hemisphere Affairs , expressing concern that the weapons could wind up in the hands of criminal groups .\tPRP$ NNS VBD IN NN TO JJ NNS IN NNP NNP , NNP NNP IN NNP IN NNP NNP NNP , VBG NN IN DT NNS MD VB RP IN DT NNS IN JJ NNS .\nRelations between the United States and Venezuela have been strained in recent years .\tNNP IN DT NNP NNPS CC NNP VBP VBN VBN IN JJ NNS .\nWashington has criticized Venezuelan President Hugo Chavez ' populist policies and his country 's close relationship with Cuba .\tNNP VBZ VBN JJ NNP NNP NNP POS JJ NNS CC PRP$ NN POS JJ NN IN NNP .\nPresident Chavez has accused the United States of backing attempts to oust him , including a 2002 coup which briefly removed him from power .\tNNP NNP VBZ VBN DT NNP NNPS IN VBG NNS TO VB PRP , VBG DT CD NN WDT RB VBD PRP IN NN .\nSouth African President Thabo Mbeki is meeting with Ivory Coast 's rebel leaders to discuss the latest peace initiatives .\tJJ JJ NNP NNP NNP VBZ VBG IN NNP NNP POS NN NNS TO VB DT JJS NN NNS .\nTens of thousands of people with banners demanding that President Laurent Gbagbo quit welcomed Mr. Mebki as he arrived in the northern rebel-held stronghold of Bouake Sunday .\tNNS IN NNS IN NNS IN NNS VBG IN NNP NNP NNP VBD VBN NNP NNP IN PRP VBD IN DT JJ JJ NN IN NNP NNP .\nMr. Mebki will try to persuade the rebels to accept a plan to hold a referendum on a constitutional revision .\tNNP NNP MD VB TO VB DT NNS TO VB DT NN TO VB DT NN IN DT JJ NN .\nThe change would end a ban on Ivorians of foreign parents from running as presidential candidates .\tDT NN MD VB DT NN IN NNS IN JJ NNS IN VBG IN JJ NNS .\nSuch a revision would allow former Prime Minister and rebel-backed leader Alassane Ouattara to run for president .\tJJ DT NN MD VB JJ NNP NNP CC JJ NN NNP NNP TO VB IN NN .\nThe crisis in Ivory Coast escalated last month when government forces bombed rebel positions , breaking a 18-month cease-fire .\tDT NN IN NNP NNP VBD JJ NN WRB NN NNS VBD JJ NNS , VBG DT JJ NN .\nBecause of the turmoil , the U.S State Department has warned Americans not to travel to Ivory Coast .\tIN IN DT NN , DT NNP NNP NNP VBZ VBN NNS RB TO VB TO NNP NNP .\nAmerican Idol Thursday , March 8 narrowed the field of contestants to 12 .\tJJ NNP NNP , NNP CD VBD DT NN IN NNS TO CD .\nViewers submitted 37 million phone calls and text messages , eliminating Antonella Barba , Jared Cotter , Jason ' Sundance ' Head , and Sabrina Sloan .\tNNS VBD CD CD NN NNS CC NN NNS , VBG NNP NNP , NNP NNP , NNP `` NNP `` NNP , CC NNP NNP .\nSix men and six women now vie for a record contract .\tCD NNS CC CD NNS RB VBP IN DT NN NN .\nNow in its sixth season , American Idol continues to dominate U.S. television ratings , attracting between 27 and 37 million viewers a week .\tRB IN PRP$ JJ NN , NNP NNP VBZ TO VB NNP NN NNS , VBG IN CD CC CD CD NNS DT NN .\nThe winner will be announced May 23 .\tDT NN MD VB VBN NNP CD .\nNorwegian ski jumper Roar Ljoekelsoey has successfully defended his title at the Ski Flying World Championships in Bad Mitterndorf , Austria .\tJJ NN NN NNP NNP VBZ RB VBN PRP$ NN IN DT NNP NNP NNP NNP IN NNP NNP , NNP .\nLjoekelsoey finished with two faultless jumps of 190 and 207.5 meters for a total of 788 points .\tNNP VBD IN CD JJ NNS IN CD CC CD NNS IN DT NN IN CD NNS .\nAustrian Andreas Widhoelzl was second ( 762.4 points ) with compatriot Thomas Morgenstern third ( 752.2 points ) .\tJJ NNP NNP VBD JJ LRB CD NNS RRB IN NN NNP NNP JJ LRB CD NNS RRB .\nThe Norwegian also won the gold medal at the last World Championships in Planica , Slovenia , two years ago .\tDT NN RB VBD DT NN NN IN DT JJ NNP NNP IN NNP , NNP , CD NNS RB .\nFor Widhoelzl , Saturday 's result was his second world silver medal - he also finished second in 2000 .\tIN NNP , NNP POS NN VBD PRP$ JJ NN NN NN : PRP RB VBD JJ IN CD .\nThe team event is scheduled for Sunday .\tDT NN NN VBZ VBN IN NNP .\nA new audit of U.S. funds in Iraq has revealed overpayments and mismanagement of millions of dollars .\tDT JJ NN IN NNP NNS IN NNP VBZ VBN NNS CC NN IN NNS IN NNS .\nThe report from the Office of the U.S. Special Inspector General for Iraq Reconstruction says American civilian and military personnel and contractors in south-central Iraq kept woefully inadequate records and lost track of millions of dollars .\tDT NN IN DT NNP IN DT NNP NNP NNP NNP IN NNP NNP VBZ JJ JJ CC JJ NNS CC NNS IN JJ NNP VBD RB JJ NNS CC VBD NN IN NNS IN NNS .\nThe audit says contractors were paid in full for jobs that were never completed .\tDT NN VBZ NNS VBD VBN IN JJ IN NNS WDT VBD RB VBN .\nIt says three people were killed when a hospital elevator , which was supposed to be replaced , crashed .\tPRP VBZ CD NNS VBD VBN WRB DT NN NN , WDT VBD VBN TO VB VBN , VBD .\nThe report says one contracting officer kept about $ 2 million in cash in a personal safe ; while a paying agent kept some $ 6,78,000 in cash in an unlocked footlocker .\tDT NN VBZ CD NN NN VBD IN $ CD CD IN NN IN DT JJ NN ; IN DT VBG NN VBD DT $ CD IN NN IN DT JJ NN .\nIt also says a U.S. soldier gambled away between $ 20,000 and $ 60,000 during a trip to the Philippines with the Iraqi Olympic boxing team .\tPRP RB VBZ DT NNP NN VBD RB IN $ CD CC $ CD IN DT NN TO DT NNPS IN DT JJ NNP VBG NN .\nU.S.-led coalition forces in Afghanistan say a roadside bomb hit a security patrol in the country 's south , killing one soldier and wounding two others .\tJJ NN NNS IN NNP VBP DT NN NN VBD DT NN NN IN DT NN POS NN , VBG CD NN CC VBG CD NNS .\nA coalition statement said the troops were on patrol with Afghan forces Tuesday when a mine exploded and hit their vehicle along the Helmand River .\tDT NN NN VBD DT NNS VBD IN NN IN JJ NNS NNP WRB DT NN VBD CC VBD PRP$ NN IN DT NNP NNP .\nThere were no further details of the nationalities of the victims .\tEX VBD DT JJ NNS IN DT NNS IN DT NNS .\nThe statement also said other soldiers in the patrol discovered and neutralized two additional improvised explosive devices in the area .\tDT NN RB VBD JJ NNS IN DT NN VBD CC VBD CD JJ JJ JJ NNS IN DT NN .\nAfghan authorities said five Afghan civilians were killed and another one wounded late Monday when a roadside blast struck a vehicle in Helmand province .\tJJ NNS VBD CD JJ NNS VBD VBN CC DT CD VBN RB NNP WRB DT NN NN VBD DT NN IN NNP NN .\nIn neighboring Kandahar province , a roadside bomb hit a police patrol , killing two Afghan policemen and wounding three others .\tIN JJ NNP NN , DT NN NN VBD DT NN NN , VBG CD JJ NNS CC VBG CD NNS .\nPolice have blamed that attack on the Taliban .\tNNS VBP VBN DT NN IN DT NNP .\nSuspected militants in Pakistan have blown up 36 oil tankers that supply fuel to U.S.-led forces in neighboring Afghanistan .\tVBN NNS IN NNP VBP VBN RP CD NN NNS WDT VBP NN TO JJ NNS IN VBG NNP .\nPakistani officials Monday said the attackers set off two bombs near the trucks , triggering fires and explosions Sunday night in the Khyber tribal district .\tJJ NNS NNP VBD DT NNS VBD RP CD NNS IN DT NNS , VBG NNS CC NNS NNP NN IN DT NNP NN NN .\nAt least 70 people were wounded .\tIN JJS CD NNS VBD VBN .\nMore than 80 oil tankers bound for Afghanistan were parked in the area when the explosion happened .\tJJR IN CD NN NNS VBN IN NNP VBD VBN IN DT NN WRB DT NN VBD .\nNo one has claimed responsibility .\tDT NN VBZ VBN NN .\nA senior U.S. commander says Washington could reduce its 18,000-strong combat force in Afghanistan next year if Taleban militants accept an amnesty to be drawn up jointly by Kabul and Islamabad .\tDT JJ NNP NN VBZ NNP MD VB PRP$ JJ NN NN IN NNP IN NN IN NNP NNS VBP DT NN TO VB VBN RP RB IN NNP CC NNP .\nIn an interview with the Associated Press , Lt. Gen. David Barno said he will have a much better sense by next summer , after the April parliamentary polls , if the security threat has diminished or not .\tIN DT NN IN DT NNP NNP , NNP NNP NNP NNP VBD PRP MD VB DT JJ JJR NN IN JJ NN , IN DT NNP JJ NNS , IN DT NN NN VBZ VBN CC RB .\nSince Hamid Karzai 's landslide victory in the recent presidential election in Afghanistan , the government has unveiled a detailed plan to reconcile with the Taleban remnants .\tIN NNP NNP POS NN NN IN DT JJ JJ NN IN NNP , DT NN VBZ VBN DT JJ NN TO VB IN DT NNP NNS .\nGeneral Barno said Mr. Karzai , who is to be sworn in as Afghanistan 's first popularly elected leader on Tuesday , will produce a list of Taleban leaders to be excluded from the amnesty and pass it to Islamabad .\tNNP NNP VBD NNP NNP , WP VBZ TO VB VBN IN IN NNP POS JJ JJ JJ NN IN NNP , MD VB DT NN IN NNP NNS TO VB VBN IN DT NN CC VB PRP TO NNP .\nRwandan President Paul Kagame says his country may pull its troops from the African Union peacekeeping force in Sudan 's war-torn Darfur region .\tJJ NNP NNP NNP VBZ PRP$ NN MD VB PRP$ NNS IN DT NNP NNP VBG NN IN NNP POS JJ NNP NN .\nIn remarks to reporters this week , Mr. Kagame said the troops are not getting the funding , equipment or support they need and are having little impact .\tIN NNS TO NNS DT NN , NNP NNP VBD DT NNS VBP RB VBG DT NN , NN CC NN PRP VBP CC VBP VBG JJ NN .\nThe president says Rwandan officials are evaluating the situation and a decision will be made regarding the troops very soon .\tDT NN VBZ JJ NNS VBP VBG DT NN CC DT NN MD VB VBN VBG DT NNS RB RB .\nRwanda has supplied about 2,000 of the 7,000 African Union troops in Darfur .\tNNP VBZ VBN IN CD IN DT CD NNP NNP NNS IN NNP .\nThe force has not been able to stop violence in the region that has killed at least 2,00,000 people and displaced two million more .\tDT NN VBZ RB VBN JJ TO VB NN IN DT NN WDT VBZ VBN IN JJS CD NNS CC VBN CD CD JJR .\nThe U.N. Security Council has authorized a larger peacekeeping force for Darfur .\tDT NNP NNP NNP VBZ VBN DT JJR NN NN IN NNP .\nBut Sudanese President Omar al-Bashir has refused to allow U.N. forces to enter the country .\tCC JJ NNP NNP NNP VBZ VBN TO VB NNP NNS TO VB DT NN .\nA Nigerian militant group says at least 10 of its fighters have been killed in a clash with Nigerian soldiers .\tDT JJ JJ NN VBZ IN JJS CD IN PRP$ NNS VBP VBN VBN IN DT NN IN JJ NNS .\nThe Movement for the Emancipation of the Niger Delta says Nigerian government troops in gunboats ambushed a group of its fighters late Sunday .\tDT NN IN DT NN IN DT NNP NNP VBZ JJ NN NNS IN NNS VBD DT NN IN PRP$ NNS JJ NNP .\nThe ambush was in Baylesa state , in the oil-rich delta region .\tDT NN VBD IN NNP NN , IN DT JJ NN NN .\nNigerian President Olusegun Obasanjo announced a clampdown on Niger Delta militants last week , after a series of kidnappings of foreign oil workers .\tJJ NNP NNP NNP VBD DT NN IN NNP NNP NNS JJ NN , IN DT NN IN NNS IN JJ NN NNS .\nThe kidnappings and attacks on oil facilities have caused a 20 percent drop in Nigeria 's oil production since February .\tDT NNS CC NNS IN NN NNS VBP VBN DT CD NN NN IN NNP POS NN NN IN NNP .\nNigeria 's army said Saturday that more than 100 militants had been detained in a military sweep .\tNNP POS NN VBD NNP IN JJR IN CD NNS VBD VBN VBN IN DT JJ NN .\nIraqi medical officials said Saturday the death toll from a suicide bombing at a cafe northeast of Baghdad had risen to at least 26 .\tJJ JJ NNS VBD NNP DT NN NN IN DT NN VBG IN DT NN NN IN NNP VBD VBN TO IN JJS CD .\nThe blast took place late Friday in the town of Balad Ruz , in Diyala province .\tDT NN VBD NN JJ NNP IN DT NN IN NNP NNP , IN NNP NN .\nThe town is located in a predominately Kurdish Shi'ite region , about halfway between the city of Baquba and the Iranian border .\tDT NN VBZ VBN IN DT RB JJ NNP NN , IN NN IN DT NN IN NNP CC DT JJ NN .\nAn Iraqi police official says the bomber detonated an explosives-filled belt inside a popular cafe .\tDT JJ NN NN VBZ DT NN VBD DT JJ NN IN DT JJ NN .\nAt least 45 people were wounded .\tIN JJS CD NNS VBD VBN .\nThe world economy 's downturn is having contrary effects on two leading U.S. food retailers .\tDT NN NN POS NN VBZ VBG JJ NNS IN CD VBG NNP NN NNS .\nShares in Starbucks , a chain of pricey coffee shops , fell more than three percent Tuesday , one day after it reported a 97 percent drop in profits in the 4th quarter of this year .\tNNS IN NNP , DT NN IN JJ NN NNS , VBD RBR IN CD NN NNP , CD NN IN PRP VBD DT CD NN NN IN NNS IN DT JJ NN IN DT NN .\nThe value of Starbucks ' shares has been falling sharply in recent months .\tDT NN IN NNP POS NNS VBZ VBN VBG RB IN JJ NNS .\nEarlier this year , the Seattle , Washington-based company cut 1,000 jobs , shut 600 stores in the United States , and closed another 61 stores in Australia .\tRBR DT NN , DT NNP , JJ NN VBD CD NNS , VBD CD NNS IN DT NNP NNPS , CC VBD DT CD NNS IN NNP .\nWhile coffee-drinkers are avoiding Starbucks ' expensive products , budget hamburgers are selling briskly .\tIN NNS VBP VBG NNS POS JJ NNS , NN NNS VBP VBG RB .\nMcDonald 's announced Monday that its global sales jumped 8.2 percent in October .\tNNP POS VBD NNP IN PRP$ JJ NNS VBD CD NN IN NNP .\nMcDonald 's sales rose more than five percent in the United States , nearly 10 percent in Europe and more than 11 percent in the Asia-Pacific , Middle East and Africa .\tNNP POS NNS VBD JJR IN CD NN IN DT NNP NNPS , RB CD NN IN NNP CC JJR IN CD NN IN DT NNP , NNP NNP CC NNP .\nMadonna has released a new digital song aiming to raise awareness about environmental issues .\tNNP VBZ VBN DT JJ JJ NN VBG TO VB NN IN JJ NNS .\nTitled ' Hey You , ' the ballad does n't specifically refer to saving the earth , instead choosing to speak of loving and saving each other .\tVBN `` NNP PRP , `` DT NN VBZ RB RB VB TO VBG DT NN , RB VBG TO VB IN VBG CC VBG DT NN .\nProduced by Madonna and Pharrell Williams , ' Hey You ' hit the market May 16 .\tVBN IN NNP CC NNP NNP , `` NNP PRP `` VBD DT NN NNP CD .\nThe first one million downloads are free , and Microsoft will donate 25 cents per download to the Alliance For Climate Protection .\tDT JJ CD CD NNS VBP JJ , CC NNP MD VB CD NNS IN NN TO DT NNP IN NNP NNP .\nMadonna will perform the song July 7 at the London edition of Live Earth , a global environment-themed pop event .\tNNP MD VB DT NN NNP CD IN DT NNP NN IN NNP NNP , DT JJ JJ NN NN .\nOther shows will take place in New Jersey ; Tokyo ; Shanghai , China ; Rio De Janeiro , Brazil ; Sydney , Australia ; Johannesburg , South Africa ; Hamburg , Germany ; and Istanbul , Turkey .\tJJ NNS MD VB NN IN NNP NNP ; NNP ; NNP , NNP ; NNP NNP NNP , NNP ; NNP , NNP ; NNP , NNP NNP ; NNP , NNP ; CC NNP , NNP .\nIraqi police say gunmen have killed seven members of a family belonging to Iraq 's minority Yazidi sect .\tJJ NNS VBP NNS VBP VBN CD NNS IN DT NN VBG TO NNP POS NN NNP NN .\nPolice Monday said the family was assassinated in their home in the town of Sinjar , west of Mosul .\tNNP NNP VBD DT NN VBD VBN IN PRP$ NN IN DT NN IN NNP , NN IN NNP .\nThe mayor of Sinjar , Dakhil Qasim , said the killings may have been part of what he called a ' social dispute ' - a reference that can be related to honor killings .\tDT NN IN NNP , NNP NNP , VBD DT NNS MD VB VBN NN IN WP PRP VBD DT `` JJ NN `` : DT NN WDT MD VB VBN TO VB NNS .\nYazidis are part of a Kurdish-speaking , pre-Islamic religious sect , and have suffered in the violence of post-invasion Iraq .\tNNP VBP NN IN DT NN , JJ JJ NN , CC VBP VBN IN DT NN IN JJ NNP .\nLast year , suicide truck bombers killed at least 400 people in two Yazidi villages .\tJJ NN , NN NN NNS VBD IN JJS CD NNS IN CD NNP NNS .\nThe explosions were one of the deadliest coordinated militant attacks in Iraq since the U.S.-led war began in 2003 .\tDT NNS VBD CD IN DT JJS VBN JJ NNS IN NNP IN DT JJ NN VBD IN CD .\nIn a separate attack Monday , Iraqi police say a suicide bomber killed at least eight policemen at a checkpoint west of Baghdad .\tIN DT JJ NN NNP , JJ NNS VBP DT NN NN VBD IN JJS CD NNS IN DT NN NN IN NNP .\nA top Iranian nuclear official says Iran will resume nuclear research activities in the coming days , ending a suspension declared more than two years ago .\tDT JJ JJ JJ NN VBZ NNP MD VB JJ NN NNS IN DT JJ NNS , VBG DT NN VBD JJR IN CD NNS RB .\nMohammad Saeedi , the deputy chief of Iran 's Atomic Energy Organization , says Tehran has informed the International Atomic Energy Agency by letter of its intention to restart research into nuclear fuel technology .\tNNP NNP , DT NN NN IN NNP POS NNP NNP NNP , VBZ NNP VBZ VBN DT NNP NNP NNP NNP IN NN IN PRP$ NN TO VB NN IN JJ NN NN .\nSpeaking Tuesday in Tehran , Mr. Saeedi did not identify the new research .\tVBG NNP IN NNP , NNP NNP VBD RB VB DT JJ NN .\nBut he stressed that no decision has been made to resume the actual production of nuclear fuel .\tCC PRP VBD IN DT NN VBZ VBN VBN TO VB DT JJ NN IN JJ NN .\nIran suspended uranium enrichment activities in October of 2003 , under intense international pressure .\tNNP VBD NN NN NNS IN NNP IN CD , IN JJ JJ NN .\nBoth the United States and the European Union have voiced grave concerns that Tehran is seeking highly enriched uranium to make an atomic bomb .\tDT DT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS IN NNP VBZ VBG RB VBN NN TO VB DT JJ NN .\nTehran says it wants a lower grade of the enriched ore to fuel a nuclear power plant .\tNNP VBZ PRP VBZ DT JJR NN IN DT VBN NN TO VB DT JJ NN NN .\nTamil Tiger rebels have rejected an offer from the Sri Lankan government to hold another round of peace talks because of a dispute over the venue for the session .\tNNP NNP NNS VBP VBN DT NN IN DT NNP NNP NN TO VB DT NN IN NN NNS IN IN DT NN IN DT NN IN DT NN .\nThe government has suggested talks to take place in any Asian country .\tDT NN VBZ VBN NNS TO VB NN IN DT JJ NN .\nThe rebels have turned down the offer , insisting that the talks be held in Norway .\tDT NNS VBP VBN RP DT NN , VBG IN DT NNS VB VBN IN NNP .\nThe rejection comes just days after Japan offered to host the peace talks .\tDT NN VBZ RB NNS IN NNP VBD TO VB DT NN NNS .\nThe rebels have been fighting for a separate homeland for the ethnic Tamil minority for more than two decades .\tDT NNS VBP VBN VBG IN DT JJ NN IN DT JJ NNP NN IN JJR IN CD NNS .\nThe conflict claimed more 64,000 lives before Norway brokered a cease-fire between the rebels and the government that took effect in 2002 .\tDT NN VBD RBR CD NNS IN NNP VBD DT NN IN DT NNS CC DT NN WDT VBD NN IN CD .\nThe deadlocked talks are threatening to further disrupt the already shaky truce .\tDT JJ NNS VBP VBG TO RB VB DT RB JJ NN .\nA couple of long-standing trade disputes saw new actions on Monday .\tDT NN IN JJ NN NNS VBD JJ NNS IN NNP .\nThe World Trade Organization ruled that a new European Union tariff on imported bananas violates international agreements .\tDT NNP NNP NNP VBD IN DT JJ NNP NNP NN IN VBN NNS VBZ JJ NNS .\nNine Latin American nations said the $ 279-a-ton levy would seriously harm their ability to export the fruit .\tCD NNP NNP NNS VBD DT $ JJ NN MD RB VB PRP$ NN TO VB DT NN .\nIn a separate WTO case , Japan said it will slap 15 percent levies on U.S.-made steel imports at the beginning of September .\tIN DT JJ NNP NN , NNP VBD PRP MD VB CD NN NNS IN JJ NN NNS IN DT NN IN NNP .\nThe move could cost American industry up to $ 50 million , and is retaliation for U.S. measures that the WTO has said unlawfully protected the U.S. steel industry .\tDT NN MD VB JJ NN IN TO $ CD CD , CC VBZ NN IN NNP NNS IN DT NNP VBZ VBN RB VBN DT NNP NN NN .\nWashington placed tariffs on certain steel products from Japan , Brazil and other nations several years ago , amid allegations that those nations sold their products at unfairly low prices .\tNNP VBD NNS IN JJ NN NNS IN NNP , NNP CC JJ NNS JJ NNS RB , IN NNS IN DT NNS VBD PRP$ NNS IN RB JJ NNS .\nThe United Nations reports heavy fighting between Ugandan rebels and a joint U.N.-Congolese force in the eastern Democratic Republic of Congo .\tDT NNP NNPS VBZ JJ NN IN JJ NNS CC DT JJ JJ NN IN DT JJ JJ NNP IN NNP .\nThe U.N. mission in Congo says 35 Ugandan rebels have been killed , along with three Congolese government troops and an Indian U.N. peacekeeping soldier .\tDT NNP NN IN NNP VBZ CD JJ NNS VBP VBN VBN , IN IN CD JJ NN NNS CC DT JJ NNP NN NN .\nThe U.N.-Congolese force attacked the rebels Saturday south of Beni in North Kivu province .\tDT JJ NN VBD DT NNS NNP NN IN NNP IN NNP NNP NN .\nU.N. officials say the offensive was launched after the rebels , known as the Allied Democratic Forces , rejected repeated attempts to negotiate their return to Uganda .\tNNP NNS VBP DT NN VBD VBN IN DT NNS , VBN IN DT NNP JJ NNS , VBD VBN NNS TO VB PRP$ NN TO NNP .\nThis is the second U.N.-Congolese offensive against militias in the region since last week 's constitutional referendum .\tDT VBZ DT JJ JJ NN IN NNS IN DT NN IN JJ NN POS JJ NN .\nThe troops hope to assert government control in areas dominated by foreign-backed rebels or local militias .\tDT NNS VBP TO VB NN NN IN NNS VBN IN JJ NNS CC JJ NNS .\nU.N. and Congolese troops captured the town of Nioka from ethnic Lendu rebels on Saturday .\tNNP CC JJ NNS VBD DT NN IN NNP IN JJ NNP NNS IN NNP .\nA car bomb has exploded outside a Shi'ite mosque in the Iraqi town of Hillah , killing at least 25 people as Iraqi Shi'ites observed the first day of the holy month of Ramadan .\tDT NN NN VBZ VBN IN DT NNP NN IN DT JJ NN IN NNP , VBG IN JJS CD NNS IN JJ NNP VBD DT JJ NN IN DT JJ NN IN NNP .\nPolice say nearly 90 others were wounded Wednesday evening as the faithful gathered at the mosque to pray before breaking their fast .\tNNS VBP RB CD NNS VBD VBN NNP NN IN DT NN VBD IN DT NN TO VB IN VBG PRP$ JJ .\nThe attack comes 10 days before Iraqis are scheduled to vote in a referendum on a new constitution , and concerns are high about a possible upsurge in violence .\tDT NN VBZ CD NNS IN NNS VBP VBN TO VB IN DT NN IN DT JJ NN , CC NNS VBP JJ IN DT JJ NN IN NN .\nEarlier , parliament , under international pressure , voted to reverse controversial new election rules that Shi'ite and Kurdish legislators were accused of passing to ensure the document 's success .\tRB , NN , IN JJ NN , VBD TO VB JJ JJ NN NNS IN NNP CC NNP NNS VBD VBN IN VBG TO VB DT NN POS NN .\nAlso Wednesday , a video dated September 12 was posted on the Internet and attributed to the Ansar al-Sunna militant group .\tRB NNP , DT NN VBN NNP CD VBD VBN IN DT NN CC VBN TO DT NNP NNP NN NN .\nIt showed the apparent beheading of what the group claimed were two Iraqis who spied for the U.S. military .\tPRP VBD DT JJ NN IN WP DT NN VBD VBD CD NNS WP VBD IN DT NNP NN .\nBurundi has confirmed it sent an additional 850 soldiers to Somalia last week to bolster the African Union peacekeeping force .\tNNP VBZ VBN PRP VBD DT JJ CD NNS TO NNP JJ NN TO VB DT NNP NNP VBG NN .\nThe deployment brings the AU force in the capital , Mogadishu , up to its full authorized strength of 8,000 .\tDT NN VBZ DT NNP NN IN DT NN , NNP , RB TO PRP$ JJ JJ NN IN CD .\nOfficials with the Burundian army and the African Union mission , known as AMISOM , confirmed the deployment .\tNNS IN DT JJ NN CC DT NNP NNP NN , VBN IN NNP , VBD DT NN .\nThe peacekeeping force helps the U.N.-backed Somali government hold off a fierce Islamist insurgency .\tDT NN NN VBZ DT JJ JJ NN VB RP DT JJ NN NN .\nUganda , which provides the bulk of the AU troops , has offered to increase the force 's size to 20,000 , if other parties will provide funding , logistics , and equipment .\tNNP , WDT VBZ DT NN IN DT NNP NNS , VBZ VBN TO VB DT NN POS NN TO CD , IN JJ NNS MD VB NN , NNS , CC NN .\nSomalia has dealt with nearly two decades of violence and lawlessness since the fall of the last stable central government .\tNNP VBZ VBN IN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ JJ NN .\nTwo journalists in Kenya have pleaded innocent to charges of inciting the public with an opinion article on the political struggle around the nation 's upcoming constitutional referendum .\tCD NNS IN NNP VBP VBN JJ TO NNS IN VBG DT NN IN DT NN NN IN DT JJ NN IN DT NN POS JJ JJ NN .\nThe managing editor of the Kenya Times , Onyango Omollo , and reporter David Ochami were released on bail after appearing in court Thursday .\tDT NN NN IN DT NNP NNP , NNP NNP , CC NN NNP NNP VBD VBN IN NN IN VBG IN NN NNP .\nTheir case will be heard November 8 .\tPRP$ NN MD VB VBN NNP CD .\nThe charges against them stem from an opinion article on Sunday entitled , ' Coups in Africa Do Not Occur Out of Nothing . '\tDT NNS IN PRP VBP IN DT NN NN IN NNP VBD , `` NNS IN NNP VBP RB NNP NNP IN DT . ``\nIt focused on comments by ministers who have accused opponents of the draft constitution of wanting to overthrow President Mwai Kibaki .\tPRP VBD IN NNS IN NNS WP VBP VBN NNS IN DT NN NN IN VBG TO VB NNP NNP NNP .\nOn November 21 , Kenyans are scheduled to vote on the document - in which the president retains his wide-ranging powers .\tIN NNP CD , NNS VBP VBN TO VB IN DT NN : IN WDT DT NN VBZ PRP$ JJ NNS .\nRallies for and against the constitution recently have turned violent .\tNNS IN CC IN DT NN RB VBP VBN JJ .\nA top Iranian lawmaker says Supreme Leader Ayatollah Ali Khamenei played a role in parliament 's approval Thursday of nominees for President Mahmoud Ahmadinejad 's Cabinet .\tDT JJ JJ NN VBZ NNP NNP NNP NNP NNP VBD DT NN IN NN POS NN NNP IN NNS IN NNP NNP NNP POS NNP .\nDeputy speaker Mohammad Reza Bahonar said Friday the supreme leader had privately urged lawmakers to approve the nominees .\tNNP NN NNP NNP NNP VBD NNP DT JJ NN VBD RB VBN NNS TO VB DT NNS .\nBahonar says at least eight of the nominees may have been rejected if Mr. Khamenei had not intervened .\tNNP VBZ IN JJS CD IN DT NNS MD VB VBN VBN IN NNP NNP VBD RB VBN .\nParliament approved 18 nominees put forward by President Ahmadinejad for his 21-member Cabinet , including Ahmad Vahidi , a defense minister , accused of involvement in a 1994 bombing in Argentina .\tNNP VBD CD NNS VBN RB IN NNP NNP IN PRP$ JJ NNP , VBG NNP NNP , DT NN NN , VBN IN NN IN DT CD NN IN NNP .\nLawmakers also approved Iran 's first female Cabinet member Marzieh Vahid Dastjerdi since the 1979 Islamic Revolution .\tNNS RB VBD NNP POS JJ JJ NNP NN NNP NNP NNP IN DT CD NNP NNP .\nMr. Ahmadinejad was re-elected in a controversial vote in June .\tNNP NNP VBD VBN IN DT JJ NN IN NNP .\nGovernment opponents say the election was fraudulent , and it set off days of street demonstrations .\tNN NNS VBP DT NN VBD JJ , CC PRP VBD RP NNS IN NN NNS .\nThousands of Iranians were arrested for protesting the outcome of the election .\tNNS IN NNS VBD VBN IN VBG DT NN IN DT NN .\nProminent former judges and lawmakers in Pakistan are urging President Pervez Musharraf to quit his army post and let the Supreme Court hold elections through a neutral caretaker administration .\tNNP JJ NNS CC NNS IN NNP VBP VBG NNP NNP NNP TO VB PRP$ NN NN CC VB DT NNP NNP NN NNS IN DT JJ NN NN .\nIn a letter to General Musharraf , they say the president has failed to respect the oath he took as army chief that he would not indulge in politics .\tIN DT NN TO NNP NNP , PRP VBP DT NN VBZ VBN TO VB DT NN PRP VBD IN NN NN IN PRP MD RB VB IN NNS .\nTwo former chief justices of Pakistan , Sajjad Ali Shah and Seeduzzaman Siddiqui , and two former National Assembly speakers , Elahi Bakhsh Soomro and Syed Fakhar Imam , are among the eight prominent personalities who signed the letter .\tCD JJ JJ NNS IN NNP , NNP NNP NNP CC NNP NNP , CC CD JJ NNP NNP NNS , NNP NNP NNP CC NNP NNP NNP , VBP IN DT CD JJ NNS WP VBD DT NN .\nLast month , a similar letter was sent to President Musharraf by 18 prominent politicians , including several former aides to the military leader .\tJJ NN , DT JJ NN VBD VBN TO NNP NNP IN CD JJ NNS , VBG JJ JJ NNS TO DT JJ NN .\nThe letters come amid criticism of the government in parliament for alleged corruption , a charge denied by the government .\tDT NNS VBP IN NN IN DT NN IN NN IN JJ NN , DT NN VBN IN DT NN .\nThe opposition in parliament has said it plans to present a no-confidence motion on August 23 .\tDT NN IN NN VBZ VBN PRP VBZ TO VB DT JJ NN IN NNP CD .\nThe U.S. military says American and Iraqi forces fighting insurgents near the Syrian border have cleared most of the western city of Ubaydi of insurgents , but pockets of resistance remain .\tDT NNP NN VBZ NNP CC JJ NNS VBG NNS IN DT JJ NN VBP VBN JJS IN DT JJ NN IN NNP IN NNS , CC NNS IN NN VBP .\nThe military says coalition forces have encountered some of the heaviest fighting in Ubaydi since Operation Steel Curtain began 10 days ago .\tDT JJ VBZ NN NNS VBP VBN DT IN DT JJS NN IN NNP IN NNP NNP NNP VBD CD NNS RB .\nOfficials say three Marines and 80 insurgents have been killed since coalition forces entered the city on Monday .\tNNS VBP CD NNS CC CD NNS VBP VBN VBN IN NN NNS VBD DT NN IN NNP .\nThey have found houses and cars rigged with explosives , other explosive devices and mines , and weapons caches .\tPRP VBP VBN NNS CC NNS VBD IN NNS , JJ JJ NNS CC NNS , CC NNS NNS .\nThe operation is intended to restore security along the Euphrates River Valley ahead of next month 's Iraqi parliamentary elections .\tDT NN VBZ VBN TO VB NN IN DT NNP NNP NNP RB IN JJ NN POS JJ JJ NNS .\nMeanwhile , insurgent attacks in Baghdad and Kirkuk killed eight policemen Tuesday .\tRB , JJ NNS IN NNP CC NNP VBD CD NNS NNP .\nAnd coalition forces say they captured a high-level Baath Party leader Hamid Sharki Shadid in Diyala province .\tCC NN NNS VBP PRP VBD DT JJ NNP NNP NN NNP NNP NNP IN NNP NN .\nThe eldest son of North Korean leader Kim Jong il said Saturday he has no interest in leading the country and only his father can choose a successor .\tDT JJS NN IN JJ JJ NN NNP NNP NNP VBD NNP PRP VBZ DT NN IN VBG DT NN CC RB PRP$ NN MD VB DT NN .\nKim Jong Nam 's comments came in Beijing while on a personal visit to China .\tNNP NNP NNP POS NNS VBD IN NNP IN IN DT JJ NN TO NNP .\nSouth Korea 's Yonhap news agency cited unnamed intelligence sources earlier this month in reporting Mr. Kim had selected his youngest son , Kim Jong Un , as his eventual successor .\tNNP NNP POS NNP NN NN VBD JJ NN NNS RBR DT NN IN VBG NNP NNP VBD VBN PRP$ JJS NN , NNP NNP NNP , IN PRP$ JJ NN .\nChinese state media on Friday reported Mr. Kim met a visiting Chinese envoy in Pyongyang .\tJJ NN NNS IN NNP VBD NNP NNP VBD DT VBG JJ NN IN NNP .\nIt was Mr. Kim 's first reported encounter with a foreign dignitary since August , when U.S. and South Korean officials say he suffered a stroke .\tPRP VBD NNP NNP POS JJ VBN NN IN DT JJ NN IN NNP , WRB NNP CC JJ JJ NNS VBP PRP VBD DT NN .\nNorth Korea has denied the claim and released a series of undated photos to show Mr. Kim is in good health .\tNNP NNP VBZ VBN DT NN CC VBD DT NN IN JJ NNS TO VB NNP NNP VBZ IN JJ NN .\nU.S.-based Intel Corporation , the world 's largest computer-chip manufacturer , has announced plans to invest one billion dollars in a new plant in Vietnam .\tJJ NNP NNP , DT NN POS JJS NN NN , VBZ VBN NNS TO VB CD CD NNS IN DT JJ NN IN NNP .\nIntel Vice President Brian Krzanich said Friday that , when completed in 2009 , the plant will be anywhere from 14,000 to 46,000 square meters and will employ up to 4,000 people .\tNNP NNP NNP NNP NNP VBD NNP IN , WRB VBN IN CD , DT NN MD VB RB IN CD TO CD JJ NNS CC MD VB RP TO CD NNS .\nIt will be located in an industrial park outside Ho Chi Minh City .\tPRP MD VB VBN IN DT JJ NN IN NNP NNP NNP NNP .\nThe company originally announced plans for the plant in February .\tDT NN RB VBD NNS IN DT NN IN NNP .\nAt that time it had been planned to be a 300-million-dollar project .\tIN DT NN PRP VBD VBN VBN TO VB DT JJ NN .\nIntel 's announcement comes the same week the World Trade Organization ( WTO ) voted to accept Vietnam as a member , and one week before Hanoi is scheduled to host the Asia Pacific Economic Cooperation Summit .\tNNP POS NN VBZ DT JJ NN DT NNP NNP NNP LRB NNP RRB VBD TO VB NNP IN DT NN , CC CD NN IN NNP VBZ VBN TO VB DT NNP NNP NNP NNP NNP .\nIntel makes computer chips for use in personal computers and other electronic devices .\tNNP VBZ NN NNS IN NN IN JJ NNS CC JJ JJ NNS .\nPakistan has closed the main supply route in the Khyber Pass for NATO forces operating in Afghanistan , as Pakistan launched an offensive against militants in the region .\tNNP VBZ VBN DT JJ NN NN IN DT NNP NNP IN NNP NNS VBG IN NNP , IN NNP VBD DT NN IN NNS IN DT NN .\nTariq Hayat , Pakistan 's top administrator for the tribal Khyber region , told reporters Tuesday that helicopter gunships , tanks and artillery units have deployed in the area near the Afghan border .\tNNP NNP , NNP POS JJ NN IN DT JJ NNP NN , VBD NNS NNP IN NN NNS , NNS CC NN NNS VBP VBN IN DT NN IN DT JJ NN .\nHayat says supplies to NATO forces through the pass will be ' suspended ' until the operation is complete .\tNNP VBZ NNS TO NNP NNS IN DT NN MD VB `` VBN `` IN DT NN VBZ JJ .\nMilitants have carried out a series of attacks on NATO and U.S. military convoys along the vital supply route in recent weeks .\tNNS VBP VBN RP DT NN IN NNS IN NNP CC NNP JJ NNS IN DT JJ NN NN IN JJ NNS .\nThe supplies are delivered through the Khyber Pass after arriving in the Pakistani port city of Karachi .\tDT NNS VBP VBN IN DT NNP NNP IN VBG IN DT JJ JJ NN IN NNP .\nMilitants have also destroyed several supply depots in northwestern Pakistan .\tNNS VBP RB VBN JJ NN NNS IN JJ NNP .\nFor the first time , Americans can go on the Internet to find out more about the quality of care at their local hospitals .\tIN DT JJ NN , NNS MD VB IN DT NN TO VB RP RBR IN DT NN IN NN IN PRP$ JJ NNS .\nThe data also includes hospital death rates for the most common fatal illnesses , such as heart attacks , heart failure and pneumonia .\tDT NNS RB VBZ NN NN NNS IN DT RBS JJ JJ NNS , JJ IN NN NNS , NN NN CC NN .\nIn the case of children , the survey also evaluates the medical treatment for asthma .\tIN DT NN IN NNS , DT NN RB VBZ DT JJ NN IN NN .\nVOA 's Melinda Smith says this information measures whether a hospital is performing up to national standards .\tNNP POS NNP NNP VBZ DT NN VBZ IN DT NN VBZ VBG RP TO JJ NNS .\nThe Spanish government says police have seized three tons of cocaine from a cargo ship off the Canary Islands and arrested 16 people .\tDT JJ NN VBZ NNS VBP VBN CD NNS IN NN IN DT NN NN IN DT NNP NNP CC VBN CD NNS .\nPolice boarded the Panamanian-flagged cargo ship Thursday .\tNNP VBD DT JJ NN NN NNP .\nThe raid was the culmination of an investigation that lasted over a year .\tDT NN VBD DT NN IN DT NN WDT VBD IN DT NN .\nThe vessel 's entire ten-man crew was taken into custody , as were six other people in the Canary Islands and Madrid .\tDT NN POS JJ JJ NN VBD VBN IN NN , IN VBD CD JJ NNS IN DT NNP NNP CC NNP .\nCuban President Fidel Castro says he is not well enough to attend celebrations in Havana to belatedly mark his 80th birthday .\tJJ NNP NNP NNP VBZ PRP VBZ RB RB JJ TO VB NNS IN NNP TO RB VB PRP$ JJ NN .\nMr. Castro made the comments late Tuesday in a statement read by a presenter to hundreds of people attending a gala in the Cuban capital .\tNNP NNP VBD DT NNS JJ NNP IN DT NN VBN IN DT NN TO NNS IN NNS VBG DT NN IN DT JJ NN .\nThe Cuban leader turned 80 on August 13 .\tDT JJ NN VBD CD IN NNP CD .\nCelebrations to mark the occasion were postponed after he underwent intestinal surgery that forced him to hand over power temporarily to his younger brother , Raul , in late July .\tNNS TO VB DT NN VBD VBN IN PRP VBD JJ NN WDT VBD PRP TO VB RP NN RB TO PRP$ JJR NN , NNP , IN JJ NNP .\nCuban officials say more than 1,300 people from around the world are expected to attend the five-day celebration .\tJJ NNS VBP JJR IN CD NNS IN IN DT NN VBP VBN TO VB DT JJ NN .\nThey include Bolivian President Evo Morales , Haitian President Rene Preval and Nicaraguan President-elect Daniel Ortega .\tPRP VBP JJ NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP .\nVenezuelan President Hugo Chavez is not expected to attend because he faces a national election on Sunday .\tJJ NNP NNP NNP VBZ RB VBN TO VB IN PRP VBZ DT JJ NN IN NNP .\nThe festivities in Cuba culminate on Saturday with a military parade in Havana .\tDT NNS IN NNP NN IN NNP IN DT JJ NN IN NNP .\nIraqi President Jalal Talabani says leaders of the country 's political parties have agreed to form a national unity government - but that the details are yet to be worked out .\tJJ NNP NNP NNP VBZ NNS IN DT NN POS JJ NNS VBP VBN TO VB DT JJ NN NN : CC IN DT NNS VBP RB TO VB VBN RP .\nHe made the comments after meeting Saturday in Baghdad with British Foreign Secretary Jack Straw - who also urged Shi'ite , Kurdish and Sunni leaders to form a broad-based unity government .\tPRP VBD DT NNS IN VBG NNP IN NNP IN NNP NNP NNP NNP NNP : WP RB VBD NNP , NNP CC NNP NNS TO VB DT JJ NN NN .\nIn another development , police say a suicide car bomber attacked a passing police patrol in southeast Baghdad , wounding at least nine people .\tIN DT NN , NNS VBP DT NN NN NN VBD DT NN NN NN IN NN NNP , VBG IN JJS CD NNS .\nMeanwhile , police say an American journalist has been kidnapped and her translator killed in Baghdad .\tRB , NNS VBP DT JJ NN VBZ VBN VBN CC PRP$ NN VBN IN NNP .\nAuthorities say the journalist - who was not identified - was en route to a meeting with a Sunni Arab leader Saturday , when gunmen stopped her car in west Baghdad .\tNNS VBP DT NN : WP VBD RB VBN : VBD IN NN TO DT NN IN DT NNP NNP NN NNP , WRB NNS VBD PRP$ NN IN NN NNP .\nEven though demand has fallen nearly two percent since last year , gasoline prices continued to break records across the United States this week .\tRB IN NN VBZ VBN RB CD NN IN JJ NN , NN NNS VBD TO VB NNS IN DT NNP NNPS DT NN .\nAnd the U.S. Oil Price Information Service warns that prices will go higher as the peak driving season approaches .\tCC DT NNP NNP NNP NNP NNP VBZ IN NNS MD VB RBR IN DT NN VBG NN NNS .\nU.S. lawmakers are busy looking for solutions , but some fear it may be too little , too late to help some Americans .\tNNP NNS VBP JJ VBG IN NNS , CC DT VBP PRP MD VB RB JJ , RB JJ TO VB DT NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nBurma 's military junta has freed well-known journalist and key opposition figure U Win Tin and other prominent political figures in a mass release of prisoners .\tNNP POS JJ NN VBZ VBN JJ NN CC JJ NN NN NNP NNP NNP CC JJ JJ JJ NNS IN DT NN NN IN NNS .\nThe ailing 74-year-old prize-winning writer , a member of the National League for Democracy headed by Aung San Suu Kyi , has spent the last 15 years in prison .\tDT JJ JJ JJ NN , DT NN IN DT NNP NNP IN NN VBN IN NNP NNP NNP NNP , VBZ VBN DT JJ CD NNS IN NN .\nAlso freed were three NLD Members of Parliament Major Kyaw San , Ohn Maung , and Toe Bo and two other NLD members , Aung Zin and Khun Sai .\tRB VBN VBD CD NNP NNS IN NNP NNP NNP NNP , NNP NNP , CC NNP NNP CC CD JJ NNP NNS , NNP NNP CC NNP NNP .\nThe junta announced Thursday evening that it would release 3,937 people who may have been wrongfully jailed by the recently disbanded National Intelligence Bureau .\tDT NN VBD NNP NN IN PRP MD VB CD NNS WP MD VB VBN RB VBN IN DT RB VBN NNP NNP NNP .\nGeneral Khin Nyunt , the prime minister purged in mid-October , headed the feared NIB .\tNNP NNP NNP , DT JJ NN VBN IN NNP , VBD DT VBN NNP .\nHe has been charged with corruption .\tPRP VBZ VBN VBN IN NN .\nMexican President Vicente Fox has pledged to send buses to rescue thousands of tourists stranded in resort areas along the Yucatan peninsula that were hit hard by Hurricane Wilma .\tJJ NNP NNP NNP VBZ VBN TO VB NNS TO VB NNS IN NNS VBN IN NN NNS IN DT NNP NN WDT VBD VBN RB IN NNP NNP .\nPresident Fox toured the resort city of Cancun , where luxury hotels have been destroyed by the storm and shopping centers emptied by looters in its wake .\tNNP NNP VBD DT NN NN IN NNP , WRB NN NNS VBP VBN VBN IN DT NN CC NN NNS VBN IN NNS IN PRP$ NN .\nMr. Fox said Cancun 's airport would not open until Tuesday and that tourists would be bused to the city of Merida and flown out from there .\tNNP NNP VBD NNP POS NN MD RB VB IN NNP CC IN NNS MD VB VBN TO DT NN IN NNP CC VBN RP IN RB .\nAs many as 30,000 tourists faced a fourth night in crowded shelters Monday in Cancun and other resorts .\tRB JJ IN CD NNS VBD DT JJ NN IN JJ NNS NNP IN NNP CC JJ NNS .\nThe storm is blamed for at least seven deaths in Mexico .\tDT NN VBZ VBN IN IN JJS CD NNS IN NNP .\nMeanwhile , rescue teams in rafts and boats pulled people from flooded homes in the Cuban capital , Havana , Monday after seas swollen by Wilma submerged parts of the city under water .\tRB , NN NNS IN NNS CC NNS VBD NNS IN VBN NNS IN DT JJ NN , NNP , NNP IN NNS VBN IN NNP VBD NNS IN DT NN IN NN .\nThe African Union 's Peace and Security Council has affirmed its continuing support for the deployment of United Nations peacekeepers in Sudan 's violence-plagued Darfur region .\tDT NNP NNP POS NNP CC NNP NNP VBZ VBN PRP$ VBG NN IN DT NN IN NNP NNP NNS IN NNP POS JJ NNP NN .\nIn a communique issued in Banjul , The Gambia , ahead of Saturday 's AU summit , the council said it is targeting September 30 for the U.N. to take over the African Union 's peacekeeping mission in Darfur .\tIN DT NN VBN IN NNP , DT NNP , RB IN NNP POS NNP NN , DT NN VBD PRP VBZ VBG NNP CD IN DT NNP TO VB RP DT NNP NNP POS VBG NN IN NNP .\nThe Council also announced it would impose travel bans and freeze the assets of people undermining or obstructing the Darfur Peace Agreement of May 5 , or violating its ceasefire .\tDT NNP RB VBD PRP MD VB NN NNS CC VB DT NNS IN NNS VBG CC VBG DT NNP NNP NNP IN NNP CD , CC VBG PRP$ NN .\nSudan 's President Omar al-Bashir has repeatedly refused to allow U.N. peacekeepers into the country .\tNNP POS NNP NNP NNP VBZ RB VBN TO VB NNP NNS IN DT NN .\nMr. Bashir and U.N. Secretary-General Kofi Annan are expected to discuss the situation at the African Union summit taking place in The Gambia Saturday and Sunday .\tNNP NNP CC NNP NNP NNP NNP VBP VBN TO VB DT NN IN DT NNP NNP NN VBG NN IN DT NNP NNP CC NNP .\nPresident Bush has used his weekly radio address to repeat a pledge that he will focus during his second term on the challenges facing the American economy .\tNNP NNP VBZ VBN PRP$ JJ NN NN TO VB DT NN IN PRP MD VB IN PRP$ JJ NN IN DT NNS VBG DT JJ NN .\nMr. Bush used a two-day economic conference this week to promote his economic plan , which includes a proposal for privatizing the federal retirement system known as Social Security .\tNNP NNP VBD DT JJ JJ NN DT NN TO VB PRP$ JJ NN , WDT VBZ DT NN IN VBG DT JJ NN NN VBN IN NNP NNP .\nIn his radio address Saturday , the president repeated earlier calls for Congress to pass legislation that would make his tax cuts permanent and would simplify the tax code .\tIN PRP$ NN NN NNP , DT NN VBN JJR NNS IN NNP TO VB NN WDT MD VB PRP$ NN NNS JJ CC MD VB DT NN NN .\nHe promised not to ignore the challenges that face the U.S. economy , like record high budget deficits and a net loss of jobs since he took office .\tPRP VBD RB TO VB DT NNS WDT VBP DT NNP NN , IN NN JJ NN NNS CC DT JJ NN IN NNS IN PRP VBD NN .\nThe president pledged to work with both Republicans and Democrats in Congress to , in his words , keep the economy innovative and competitive .\tDT NN VBD TO VB IN DT NNPS CC NNPS IN NNP TO , IN PRP$ NNS , VB DT NN JJ CC JJ .\nHospital officials in Afghanistan say an autopsy has confirmed that two bodies found in the southern part of the country are those of missing Japanese tourists .\tNN NNS IN NNP VBP DT NN VBZ VBN IN CD NNS VBN IN DT JJ NN IN DT NN VBP DT IN VBG JJ NNS .\nHassan Halemi , head of the pathology department at Kabul University where the autopsies were carried out , said hours of testing Saturday confirmed the identities of teachers Jun Fukusho and Shinobu Hasegawa .\tNNP NNP , NN IN DT NN NN IN NNP NNP WRB DT NNS VBD VBN RP , VBD NNS IN NN NNP VBD DT NNS IN NNS NNP NNP CC NNP NNP .\nThe pair had been shot and their bodies dumped near the Spin Boldak highway , which links the former Taleban stronghold of Kandahar with the Pakistani border town of Chaman .\tDT NN VBD VBN VBN CC PRP$ NNS VBN IN DT NNP NNP NN , WDT VBZ DT JJ NNP NN IN NNP IN DT JJ NN NN IN NNP .\nOfficials say the two missing Japanese crossed into Afghanistan from Pakistan August 8 , and were believed to be sight-seeing .\tNNS VBP DT CD JJ NNS VBD IN NNP IN NNP NNP CD , CC VBD VBN TO VB JJ .\nThe pair had not been seen or heard from since .\tDT NN VBD RB VBN VBN CC VBN IN IN .\nPresident Bush says he expects that Iran 's new president , Mahmoud Ahmadinejad , will receive a U.S. visa to attend an annual United Nations meet in New York City next month .\tNNP NNP VBZ PRP VBZ IN NNP POS JJ NN , NNP NNP , MD VB DT NNP NN TO VB DT JJ NNP NNPS VBP IN NNP NNP NNP JJ NN .\nMr. Bush made the remark Thursday after meeting at his Crawford , Texas ranch with his top defense and foreign policy advisors , including Secretary of State Condoleezza Rice and Defense Secretary Donald Rumsfeld .\tNNP NNP VBD DT NN NNP IN VBG IN PRP$ NNP , NNP NN IN PRP$ JJ NN CC JJ NN NNS , VBG NNP IN NNP NNP NNP CC NNP NNP NNP NNP .\nThe president also praised the International Atomic Energy Agency for demanding Iran suspend its recently resumed nuclear activity .\tDT NN RB VBD DT NNP NNP NNP NNP IN VBG NNP VB PRP$ RB VBN JJ NN .\nOn Iraq , the president said he expects the country 's new constitution will be completed by August 15 .\tIN NNP , DT NN VBD PRP VBZ DT NN POS JJ NN MD VB VBN IN NNP CD .\nHe also said that no decision has been made on U.S. troop reductions in Iraq .\tPRP RB VBD IN DT NN VBZ VBN VBN IN NNP NN NNS IN NNP .\nMr. Bush added that he understands the frustration of anti-war activists and Americans who want a timetable for troop withdrawals from Iraq .\tNNP NNP VBD IN PRP VBZ DT NN IN JJ NNS CC NNS WP VBP DT NN IN NN NNS IN NNP .\nRecent opinion polls indicate that Americans are becoming increasingly disillusioned by the rate of progress in Iraq .\tJJ NN NNS VBP IN NNS VBP VBG RB VBN IN DT NN IN NN IN NNP .\nThe Olympic torch will make two trips to the world 's highest peak as part of the build-up to the 2008 Summer Games in Beijing , China .\tDT NNP NN MD VB CD NNS TO DT NN POS JJS NN IN NN IN DT NN TO DT CD NNPS NNPS IN NNP , NNP .\nThe Olympic flame will go to the top of Mount Everest twice , once as part of a run-through in 2007 and the second time during the actual torch relay in 2008 .\tDT NNP NN MD VB TO DT NN IN NNP NNP RB , RB IN NN IN DT JJ IN CD CC DT JJ NN IN DT JJ NN NN IN CD .\nChinese Olympic officials say the torch , which is being specially designed to burn at such a high altitude , is in the final stage of design .\tJJ NNP NNS VBP DT NN , WDT VBZ VBG RB VBN TO VB IN PDT DT JJ NN , VBZ IN DT JJ NN IN NN .\nThe full schedule of the torch relay , which still has to be approved by the International Olympic Committee , has not been released .\tDT JJ NN IN DT NN NN , WDT RB VBZ TO VB VBN IN DT NNP NNP NNP , VBZ RB VBN VBN .\nU.S. prosecutors have begun closing arguments in the trial of Michael Jackson , accused of giving alcohol to a boy and then molesting him .\tNNP NNS VBP VBN VBG NNS IN DT NN IN NNP NNP , VBN IN VBG NN TO DT NN CC RB VBG PRP .\nProsecutor Ron Zonen told jurors Thursday , the case is about the exploitation and abuse of a 13-year-old cancer survivor at Mr. Jackson 's Neverland Ranch .\tNNP NNP NNP VBD NNS NNP , DT NN VBZ IN DT NN CC NN IN DT JJ NN NN IN NNP NNP POS NNP NNP .\nThe judge Rodney Melville has said he will hand the case to the jury Friday , after the pop star 's defense team makes its closing arguments .\tDT NN NNP NNP VBZ VBN PRP MD VB DT NN TO DT NN NNP , IN DT NN NN POS NN NN VBZ PRP$ NN NNS .\nMr. Jackson 's lawyers have questioned the credibility of the boy 's mother , saying she filed FALSE income tax returns and tried to extort money from other celebrities .\tNNP NNP POS NNS VBP VBN DT NN IN DT NN POS NN , VBG PRP VBD JJ NN NN NNS CC VBD TO VB NN IN JJ NNS .\nLast week , prosecutors showed a 2003 police video in which the boy said the pop star repeatedly molested him after nights of heavy drinking .\tJJ NN , NNS VBD DT CD NN NN IN WDT DT NN VBD DT NN NN RB VBD PRP IN NNS IN JJ NN .\nHundreds of Somalis have marched in the capital , Mogadishu , to criticize the possible deployment of peacekeepers from Ethiopia and Djibouti .\tNNS IN NNS VBP VBN IN DT NN , NNP , TO VB DT JJ NN IN NNS IN NNP CC NNP .\nThe city 's self-declared governor Abdullahi Ganey Firimbi helped organize Sunday 's demonstration , the latest in a series of protest marches .\tDT NN POS JJ NN NNP NNP NNP VBD VB NNP POS NN , DT JJS IN DT NN IN NN NNS .\nSome members of Somalia 's new government have rejected plans for an African peacekeeping force that includes troops from nations bordering Somalia .\tDT NNS IN NNP POS JJ NN VBP VBN NNS IN DT JJ NN NN WDT VBZ NNS IN NNS VBG NNP .\nSome clan leaders say no foreign troops at all should be allowed in the country .\tDT NN NNS VBP DT JJ NNS IN DT MD VB VBN IN DT NN .\nSomalia 's President Abdullahi Yusuf Ahmed has said international troops are needed to protect the new government when it moves home from its current base in Kenya this year .\tNNP POS NNP NNP NNP NNP VBZ VBN JJ NNS VBP VBN TO VB DT JJ NN WRB PRP VBZ NN IN PRP$ JJ NN IN NNP DT NN .\nThursday , the U.S. State Department said a regional force should not include Somalia 's immediate neighbors , due to perceptions of bias .\tNNP , DT NNP NNP NNP VBD DT JJ NN MD RB VB NNP POS JJ NNS , JJ TO NNS IN NN .\nA U.S. Defense Department plan to cut military bases across the United States has suffered two setbacks .\tDT NNP NNP NNP NN TO VB JJ NNS IN DT NNP NNPS VBZ VBN CD NNS .\nA federal base-closing panel voted Friday to keep open South Dakota 's Ellsworth Air Base .\tDT JJ NN NN VBD NNP TO VB JJ NNP NNP POS NNP NNP NNP .\nIt was a major political victory for the state 's new Republican senator , John Thune , who defeated last year the Senate 's top Democrat , former Minority Leader Tom Daschle .\tPRP VBD DT JJ JJ NN IN DT NN POS JJ JJ NN , NNP NNP , WP VBD JJ NN DT NNP POS JJ NNP , JJ NNP NNP NNP NNP .\nDuring campaigning , Mr. Thune argued he would be in a better position to save Ellsworth - South Dakota 's second-largest employer and home to a fleet of B-1 bombers .\tIN NN , NNP NNP VBD PRP MD VB IN DT JJR NN TO VB NNP IN NNP NNP POS JJ NN CC NN TO DT NN IN JJ NNS .\nIn another decision , a federal judge threw out plans to close down a Pennsylvania Air National Guard division .\tIN DT NN , DT JJ NN VBD RP NNS TO VB RP DT NNP NNP NNP NNP NN .\nThe judge said the Pentagon does not have the power to dissolve the 111th Fighter Wing without the approval of Governor Ed Rendell .\tDT NN VBD DT NNP VBZ RB VB DT NN TO VB DT JJ NNP NNP IN DT NN IN NNP NNP NNP .\nRescuers in southern China have recovered the body of one of the 123 miners trapped in a flooded coal mine , and are holding out little chance any others will survive .\tNNS IN JJ NNP VBP VBN DT NN IN CD IN DT CD NNS VBN IN DT VBN NN NN , CC VBP VBG RP JJ NN DT NNS MD VB .\nThe miners have been trapped in the Daxing mine at Xingning in Guangdong province since Sunday .\tDT NNS VBP VBN VBN IN DT NNP NN IN NNP IN NNP NN IN NNP .\nState media say that so far rescuers have been unable to find the source of the flooding .\tNNP NNS VBP IN RB RB NNS VBP VBN JJ TO VB DT NN IN DT NN .\nChinese police have arrested 11 people for their roles in the disaster , including the mine 's owner , manager , board chairman and chief technician .\tJJ NNS VBP VBN CD NNS IN PRP$ NNS IN DT NN , VBG DT NN POS NN , NN , NN NN CC NN NN .\nThe government also has suspended the mayors of the cities of Xingning and Meizhou for failing to supervise coal mine production .\tDT NN RB VBZ VBN DT NNS IN DT NNS IN VBG CC NNP IN VBG TO VB NN NN NN .\nChina has the most dangerous mines in the world .\tNNP VBZ DT RBS JJ NNS IN DT NN .\nMore than 2,700 miners have been killed in the first half of this year alone .\tJJR IN CD NNS VBP VBN VBN IN DT JJ NN IN DT NN RB .\nHundreds of supporters of a coalition of radical Islamic groups have demonstrated in Pakistan 's central city of Lahore to press the country 's military president to resign .\tNNS IN NNS IN DT NN IN JJ JJ NNS VBP VBN IN NNP POS JJ NN IN NNP TO VB DT NN POS JJ NN TO VB .\nThe Associated Press reports some 10,000 people participated in the rally .\tDT NNP NNP VBZ DT CD NNS VBD IN DT NN .\nThe coalition known as the Mutahida Majlis-e-Amal has been holding rallies in Pakistan since December , when President Pervez Musharraf reneged on a promise to quit his second job as army chief .\tDT NN VBN IN DT NNP NNP VBZ VBN VBG NNS IN NNP IN NNP , WRB NNP NNP NNP VBD IN DT NN TO VB PRP$ JJ NN IN NN NN .\nLast year , he promised to quit his military post before the end of 2004 , if the religion-based coalition agreed to accept him as president until 2007 .\tJJ NN , PRP VBD TO VB PRP$ JJ NN IN DT NN IN CD , IN DT JJ NN VBD TO VB PRP IN NN IN CD .\nAt the rally , coalition chief Qazi Hussain Ahmed said General Musharraf will soon be forced to resign , accusing him of serving the interests of the United States instead of working for the betterment of the masses .\tIN DT NN , NN NN NNP NNP NNP VBD NNP NNP MD RB VB VBN TO VB , VBG PRP IN VBG DT NNS IN DT NNP NNPS RB IN VBG IN DT NN IN DT NNS .\nIran is warning that it could quit the Nuclear Non-Proliferation Treaty and resume enriching uranium if it is referred to the United Nations Security Council over its suspect nuclear program .\tNNP VBZ VBG IN PRP MD VB DT NNP NNP NNP CC VB VBG NN IN PRP VBZ VBN TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NN .\nTop Iranian negotiator Ali Larijani spoke Tuesday in Vienna , on the sidelines of an emergency session of the International Atomic Energy Agency .\tJJ JJ NN NNP NNP VBD NNP IN NNP , IN DT NNS IN DT NN NN IN DT NNP NNP NNP NNP .\nThe IAEA is considering a European draft resolution alleging that Iran has breached the treaty by withholding information on its nuclear fuel cycle program .\tDT NNP VBZ VBG DT JJ NN NN VBG IN NNP VBZ VBN DT NN IN VBG NN IN PRP$ JJ NN NN NN .\nThat draft , which the United States supports , cites what it calls Iran 's many failures and breaches of its obligations under the NPT treaty .\tDT NN , WDT DT NNP NNPS VBZ , VBZ WP PRP VBZ NNP POS JJ NNS CC NNS IN PRP$ NNS IN DT NNP NN .\nTehran has repeatedly insisted its nuclear intentions are peaceful .\tNNP VBZ RB VBN PRP$ JJ NNS VBP JJ .\nDiplomats say Russia , China and many non-aligned member states oppose the referral , arguing that nuclear talks between Iran and European negotiators should be given more time .\tNNS VBP NNP , NNP CC JJ JJ NN NNS VBP DT NN , VBG IN JJ NNS IN NNP CC JJ NNS MD VB VBN JJR NN .\nVenezuelan President Hugo Chavez has reshuffled his cabinet .\tJJ NNP NNP NNP VBZ VBN PRP$ NN .\nMr. Chavez announced late Saturday that Ali Rodriguez , who heads the state-run oil company , Petroleos de Venezuela , would replace Jesus Perez as foreign minister .\tNNP NNP VBD JJ NNP IN NNP NNP , WP VBZ DT JJ NN NN , NNP NNP NNP , MD VB NNP NNP IN JJ NN .\nOil minister Rafael Ramirez will take over the state-run oil company , while also retaining his government oil portfolio .\tNN NN NNP NNP MD VB RP DT JJ NN NN , IN RB VBG PRP$ NN NN NN .\nThe high-profile changes had been widely expected and come after Mr. Chavez consolidated his political power with a victory in an August 15 referendum on his government .\tDT JJ NNS VBD VBN RB VBN CC VBN IN NNP NNP VBD PRP$ JJ NN IN DT NN IN DT NNP CD NN IN PRP$ NN .\nIran 's supreme leader Ayatollah Ali Khamenei said the nation 's nuclear program is necessary because its vast oil and gas reserves can not last forever .\tNNP POS JJ NN NNP NNP NNP VBD DT NN POS JJ NN VBZ JJ IN PRP$ JJ NN CC NN NNS MD RB VB RB .\nIran 's state-run television Saturday quoted Khamenei as saying nations must have alternate energy sources to avoid being at the mercy of domineering countries .\tNNP POS JJ NN NNP VBD NNP IN VBG NNS MD VB JJ NN NNS TO VB VBG IN DT NN IN VBG NNS .\nKhamenei lashed out at critics of Iran 's nuclear program , calling them narrow-minded .\tNNP VBD RP IN NNS IN NNP POS JJ NN , VBG PRP JJ .\nThe U.S. accuses Iran of using its civilian nuclear program as a cover up to build nuclear weapons .\tDT NNP VBZ NNP IN VBG PRP$ JJ JJ NN IN DT NN IN TO VB JJ NNS .\nIran has always rejected those charges , insisting its atomic program is peaceful in nature .\tNNP VBZ RB VBN DT NNS , VBG PRP$ JJ NN VBZ JJ IN NN .\nIranian officials have said it has every right to pursue its goals .\tJJ NNS VBP VBN PRP VBZ DT NN TO VB PRP$ NNS .\nPolice in London arrested and questioned Hugh Grant , after a photographer claimed the actor attacked him with a tub of baked beans .\tNNS IN NNP VBN CC VBN NNP NNP , IN DT NN VBD DT NN VBD PRP IN DT NN IN JJ NNS .\nSpeaking to the Daily Star newspaper , photographer Ian Whittaker said the 46-year-old Grant abused and kicked him on April 24 , prior to lobbing the beans .\tVBG TO DT NNP NNP NN , NN NNP NNP VBD DT JJ NNP VBD CC VBD PRP IN NNP CD , RB TO VBG DT NNS .\nThe paper printed photos of Grant with a plastic tub of food raised over his head .\tDT NN VBD NNS IN NNP IN DT JJ NN IN NN VBN IN PRP$ NN .\nA police spokeswoman said a 46-year-old man had been arrested April 25 and questioned over an assault in west London .\tDT NN NN VBD DT JJ NN VBD VBN VBN NNP CD CC VBD IN DT NN IN JJ NNP .\nHe was freed on bail and ordered to return in May .\tPRP VBD VBN IN NN CC VBN TO VB IN NNP .\nHis lawyers were not immediately available for comment .\tPRP$ NNS VBD RB RB JJ IN NN .\nHugh Grant 's screen credits include Four Weddings And A Funeral , Notting Hill , and Love Actually .\tNNP NNP POS NN NNS VBP NNP NNS NNP NNP NNP , NNP NNP , CC NNP NNPS .\nTravelers Corp. 's third-quarter net income rose 11 % , even though claims stemming from Hurricane Hugo reduced results $ 40 million .\tNNP NNP POS JJ JJ NN VBD CD NN , RB IN NNS VBG IN NNP NNP VBD NNS $ CD CD .\nNet advanced to $ 94.2 million , or 89 cents a share , from $ 85 million , or 83 cents a share , including net realized investment gains of $ 31 million , up from $ 10 million a year ago .\tNN VBD TO $ CD CD , CC CD NNS DT NN , IN $ CD CD , CC CD NNS DT NN , VBG NN VBD NN NNS IN $ CD CD , RB IN $ CD CD DT NN RB .\nBut revenue declined to $ 3 billion from $ 3.2 billion .\tCC NN VBD TO $ CD CD IN $ CD CD .\nTravelers estimated that the California earthquake last month will result in a fourth-quarter pre-tax charge of less than $ 10 million .\tNNP VBD IN DT NNP NN JJ NN MD VB IN DT JJ JJ NN IN JJR IN $ CD CD .\nThe insurer 's earnings from commercial property / casualty lines fell 59 % in the latest quarter , while it lost $ 7.2 million in its personal property / casualty business , compared with earnings of $ 6.1 million a year ago .\tDT NN POS NNS IN JJ NN NN NN NNS VBD CD NN IN DT JJS NN , IN PRP VBD $ CD CD IN PRP$ JJ NN NN NN NN , VBN IN NNS IN $ CD CD DT NN RB .\nTravelers 's employee benefits group , which includes its group health insurance operations , posted earnings of $ 24 million , compared with a loss of $ 3 million last year .\tNNP POS NN NNS NN , WDT VBZ PRP$ NN NN NN NNS , VBD NNS IN $ CD CD , VBN IN DT NN IN $ CD CD JJ NN .\nIn the first nine months , net was $ 306 million , compared with a loss of $ 195 million in the 1988 period .\tIN DT JJ CD NNS , NN VBD $ CD CD , VBN IN DT NN IN $ CD CD IN DT CD NN .\nThe year-ago results included a $ 415 million charge in the 1988 second quarter for underperforming real estate and mortgage loans .\tDT JJ NNS VBD DT $ CD CD NN IN DT CD JJ NN IN VBG JJ NN CC NN NNS .\nSmall , landlocked , and mountainous , Lesotho relies on remittances from Basotho employed in South Africa , customs duties from the Southern Africa Customs Union ( SACU ) , and export revenue for the majority of government revenue .\tJJ , JJ , CC JJ , NNP VBZ IN NNS IN NNP VBN IN NNP NNP , NNS NNS IN DT NNP NNP NNP NNP LRB NNP RRB , CC NN NN IN DT NN IN NN NN .\nHowever , the government has recently strengthened its tax system to reduce dependency on customs duties .\tRB , DT NN VBZ RB VBN PRP$ NN NN TO VB NN IN NNS NNS .\nCompletion of a major hydropower facility in January 1998 permitted the sale of water to South Africa and generated royalties for Lesotho .\tNN IN DT JJ NN NN IN NNP CD VBD DT NN IN NN TO NNP NNP CC VBD NNS IN NNP .\nLesotho produces about 90 % of its own electrical power needs .\tNNP VBZ IN CD NN IN PRP$ JJ JJ NN NNS .\nAs the number of mineworkers has declined steadily over the past several years , a small manufacturing base has developed based on farm products that support the milling , canning , leather , and jute industries , as well as an apparel-assembly sector .\tIN DT NN IN NNS VBZ VBN RB IN DT JJ JJ NNS , DT JJ NN NN VBZ VBN VBN IN NN NNS WDT VBP DT NN , NN , NN , CC JJ NNS , RB RB IN DT JJ NN .\nDespite Lesotho 's market-based economy being heavily tied to its neighbor South Africa , the US is an important trade partner because of the export sector 's heavy dependence on apparel exports .\tIN NNP POS JJ NN VBG RB VBN TO PRP$ NN NNP NNP , DT NNP VBZ DT JJ NN NN IN IN DT NN NN POS JJ NN IN NN NNS .\nExports have grown significantly because of the trade benefits contained in the Africa Growth and Opportunity Act .\tNNS VBP VBN RB IN IN DT NN NNS VBN IN DT NNP NNP CC NNP NNP .\nMost of the labor force is engaged in subsistence agriculture , especially livestock herding , although drought has decreased agricultural activity .\tJJS IN DT NN NN VBZ VBN IN NN NN , RB JJ NN , IN NN VBZ VBN JJ NN .\nThe extreme inequality in the distribution of income remains a major drawback .\tDT JJ NN IN DT NN IN NN VBZ DT JJ NN .\nLesotho has signed an Interim Poverty Reduction and Growth Facility with the IMF .\tNNP VBZ VBN DT NNP NNP NNP CC NNP NN IN DT NNP .\nIn July 2007 , Lesotho signed a Millennium Challenge Account Compact with the US worth $ 362.5 million .\tIN NNP CD , NNP VBD DT NNP NNP NNP NNP IN DT NNP JJ $ CD CD .\nEconomic growth dropped in 2009 , due mainly to the effects of the global economic crisis as demand for the country 's exports declined and SACU revenue fell precipitously when South Africa - the primary contributor to the SACU revenue pool - went into recession , but growth returned to 3.5 % in 2010 .\tJJ NN VBD IN CD , JJ RB TO DT NNS IN DT JJ JJ NN IN NN IN DT NN POS NNS VBD CC NNP NN VBD RB WRB NNP NNP IN DT JJ NN TO DT NNP NN NN : VBD IN NN , CC NN VBD TO CD NN IN CD .\nIn 1865 , Britain and Bhutan signed the Treaty of Sinchulu , under which Bhutan would receive an annual subsidy in exchange for ceding some border land to British India .\tIN CD , NNP CC NNP VBD DT NNP IN NNP , IN WDT NNP MD VB DT JJ NN IN NN IN VBG DT NN NN TO JJ NNP .\nUnder British influence , a monarchy was set up in 1907 ; three years later , a treaty was signed whereby the British agreed not to interfere in Bhutanese internal affairs and Bhutan allowed Britain to direct its foreign affairs .\tIN JJ NN , DT NN VBD VBN RP IN CD ; CD NNS RB , DT NN VBD VBN WRB DT NNS VBD RB TO VB IN JJ JJ NNS CC NNP VBD NNP TO VB PRP$ JJ NNS .\nThis role was assumed by independent India after 1947 .\tDT NN VBD VBN IN JJ NNP IN CD .\nTwo years later , a formal Indo-Bhutanese accord returned the areas of Bhutan annexed by the British , formalized the annual subsidies the country received , and defined India 's responsibilities in defense and foreign relations .\tCD NNS RB , DT JJ JJ NN VBD DT NNS IN NNP VBN IN DT NNS , VBD DT JJ NNS DT NN VBD , CC VBD NNP POS NNS IN NN CC JJ NNS .\nA refugee issue of over 1,00,000 Bhutanese in Nepal remains unresolved ; 90 % of the refugees are housed in seven United Nations Office of the High Commissioner for Refugees ( UNHCR ) camps .\tDT NN NN IN IN CD NNS IN NNP VBZ JJ ; CD NN IN DT NNS VBP VBN IN CD NNP NNP NNP IN DT NNP NNP IN NNP LRB NNP RRB NNS .\nIn March 2005 , King Jigme Singye WANGCHUCK unveiled the government 's draft constitution - which would introduce major democratic reforms - and pledged to hold a national referendum for its approval .\tIN NNP CD , NNP NNP NNP NNP VBD DT NN POS NN NN : WDT MD VB JJ JJ NNS : CC VBD TO VB DT JJ NN IN PRP$ NN .\nIn December 2006 , the King abdicated the throne to his son , Jigme Khesar Namgyel WANGCHUCK , in order to give him experience as head of state before the democratic transition .\tIN NNP CD , DT NNP VBD DT NN TO PRP$ NN , NNP NNP NNP NNP , IN NN TO VB PRP NN IN NN IN NN IN DT JJ NN .\nIn early 2007 , India and Bhutan renegotiated their treaty to allow Bhutan greater autonomy in conducting its foreign policy , although Thimphu continues to coordinate policy decisions in this area with New Delhi .\tIN JJ CD , NNP CC NNP VBD PRP$ NN TO VB NNP JJR NN IN VBG PRP$ JJ NN , IN NNP VBZ TO VB NN NNS IN DT NN IN NNP NNP .\nIn July 2007 , seven ministers of Bhutan 's 10-member cabinet resigned to join the political process , and the cabinet acted as a caretaker regime until democratic elections for seats to the country 's first parliament were completed in March 2008 .\tIN NNP CD , CD NNS IN NNP POS JJ NN VBD TO VB DT JJ NN , CC DT NN VBD IN DT NN NN IN JJ NNS IN NNS TO DT NN POS JJ NN VBD VBN IN NNP CD .\nThe king ratified the country 's first constitution in July 2008 .\tDT NN VBD DT NN POS JJ NN IN NNP CD .\nThe islands have no indigenous economic activity , but the Australian Government allows limited fishing in the surrounding waters .\tDT NNS VBP DT JJ JJ NN , CC DT JJ NN VBZ JJ NN IN DT VBG NNS .\nThe government continues to balance the need for economic loosening against a desire for firm political control .\tDT NN VBZ TO VB DT NN IN JJ NN IN DT NN IN JJ JJ NN .\nThe government announced it would eliminate 5,00,000 state jobs by March 2011 and has expanded opportunities for self-employment .\tDT NN VBD PRP MD VB CD NN NNS IN NNP CD CC VBZ VBN NNS IN NN .\nPresident Raul CASTRO said such changes were needed to update the economic model to ensure the survival of socialism .\tNNP NNP NNP VBD JJ NNS VBD VBN TO VB DT JJ NN TO VB DT NN IN NN .\nThe government has introduced limited reforms , some initially implemented in the 1990s , to increase enterprise efficiency and alleviate serious shortages of food , consumer goods , and services .\tDT NN VBZ VBN JJ NNS , DT RB VBN IN DT NNS , TO VB NN NN CC VB JJ NNS IN NN , NN NNS , CC NNS .\nThe average Cuban 's standard of living remains at a lower level than before the downturn of the 1990s , which was caused by the loss of Soviet aid and domestic inefficiencies .\tDT JJ JJ POS NN IN NN VBZ IN DT JJR NN IN IN DT NN IN DT NNS , WDT VBD VBN IN DT NN IN JJ NN CC JJ NNS .\nSince late 2000 , Venezuela has been providing oil on preferential terms , and it currently supplies about 1,00,000 barrels per day of petroleum products .\tIN JJ CD , NNP VBZ VBN VBG NN IN JJ NNS , CC PRP RB VBZ IN CD NNS IN NN IN NN NNS .\nCuba has been paying for the oil , in part , with the services of Cuban personnel in Venezuela including some 30,000 medical professionals .\tNNP VBZ VBN VBG IN DT NN , IN NN , IN DT NNS IN JJ NNS IN NNP VBG DT CD JJ NNS .\nThe economy is limited to traditional subsistence agriculture , with about 80 % of labor force earnings from agriculture ( coconuts and vegetables ) , livestock ( mostly pigs ) , and fishing .\tDT NN VBZ VBN TO JJ NN NN , IN IN CD NN IN NN NN NNS IN NN LRB NNS CC NNS RRB , NN LRB RB NNS RRB , CC NN .\nAbout 4 % of the population is employed in government .\tRB CD NN IN DT NN VBZ VBN IN NN .\nRevenues come from French Government subsidies , licensing of fishing rights to Japan and South Korea , import taxes , and remittances from expatriate workers in New Caledonia .\tNNS VBP IN JJ NN NNS , NN IN NN NNS TO NNP CC NNP NNP , NN NNS , CC NNS IN JJ NNS IN NNP NNP .\nA Jay venturing into a yard where Peacocks used to walk , found there a number of feathers which had fallen from the Peacocks when they were moulting .\tDT NN VBG IN DT NN WRB NNS VBD TO VB , VBD EX DT NN IN NNS WDT VBD VBN IN DT NNS WRB PRP VBD VBG .\nHe tied them all to his tail and strutted down towards the Peacocks .\tPRP VBD PRP DT TO PRP$ NN CC VBD RP IN DT NNS .\nWhen he came near them they soon discovered the cheat , and striding up to him pecked at him and plucked away his borrowed plumes .\tWRB PRP VBD IN PRP PRP RB VBD DT NN , CC VBG RP TO PRP VBN IN PRP CC VBN RP PRP$ VBN NNS .\nSo the Jay could do no better than go back to the other Jays , who had watched his behaviour from a distance ; but they were equally annoyed with him , and told him :\tIN DT NN MD VB DT JJR IN VB RB TO DT JJ NNS , WP VBD VBN PRP$ NN IN DT NN ; CC PRP VBD RB JJ IN PRP , CC VBD PRP :\n' It is not only fine feathers that make fine birds . '\t`` PRP VBZ RB RB JJ NNS WDT VBP JJ NNS . ``\nA SEAGULL having bolted down too large a fish , burst its deep gullet-bag and lay down on the shore to die .\tDT NN VBG VBN RP RB JJ DT NN , VBP PRP$ JJ NN CC VBD RP IN DT NN TO VB .\nA Kite saw him and exclaimed : ' You richly deserve your fate ; for a bird of the air has no business to seek its food from the sea . '\tDT NN VBD PRP CC VBD : `` PRP RB VB PRP$ NN ; IN DT NN IN DT NN VBZ DT NN TO VB PRP$ NN IN DT NN . ``\nEvery man should be content to mind his own business .\tDT NN MD VB JJ TO VB PRP$ JJ NN .\nA SPENDTHRIFT , seeing a single swallow , pawned his cloak , thinking that Summer was at hand .\tDT NN , VBG DT JJ NN , VBD PRP$ NN , VBG IN NN VBD IN NN .\nIt was .\tPRP VBD .\nA FOX , seeing some sour grapes hanging within an inch of his nose , and being unwilling to admit that there was anything he would not eat , solemnly declared that they were out of his reach .\tDT NN , VBG DT JJ NNS VBG IN DT NN IN PRP$ NN , CC VBG JJ TO VB IN EX VBD DT PRP MD RB VB , RB VBD IN PRP VBD IN IN PRP$ NN .\nSOME DOGS , finding the skin of a lion , began to tear it in pieces with their teeth .\tDT NNS , VBG DT NN IN DT NN , VBD TO VB PRP IN NNS IN PRP$ NNS .\nA Fox , seeing them , said , ' If this lion were alive , you would soon find out that his claws were stronger than your teeth . '\tDT NN , VBG PRP , VBD , `` IN DT NN VBD JJ , PRP MD RB VB RP IN PRP$ NNS VBD JJR IN PRP$ NNS . ``\nIt is easy to kick a man that is down .\tPRP VBZ JJ TO VB DT NN WDT VBZ RB .\nOil cleanup efforts in the Gulf of Mexico soon could get a boost , if tests of a new skimming vessel go well .\tNN NN NNS IN DT NNP IN NNP RB MD VB DT NN , IN NNS IN DT JJ NN NN VBP RB .\nCrews began testing the massive Taiwanese tanker , dubbed A Whale , on Friday and continued those operations on Saturday .\tNNP VBD VBG DT JJ JJ NN , VBD DT NN , IN NNP CC VBD DT NNS IN NNP .\nThe ship , about 275 meters long , takes in oil-laden sea water through vents , separating the oil and then pumping the cleaned water back into the Gulf .\tDT NN , IN CD NNS RB , VBZ IN JJ NN NN IN NNS , VBG DT NN CC RB VBG DT JJ NN RB IN DT NNP .\nIts makers say it can process up to 80 million liters of oily water a day .\tPRP$ NNS VBP PRP MD VB RB TO CD CD NNS IN JJ NN DT NN .\nA smaller group of oil skimmers also was hard at work Saturday , after halting operations for several days because of rough conditions created by then-Hurricane Alex .\tDT JJR NN IN NN NNS RB VBD JJ IN NN NNP , IN VBG NNS IN JJ NNS IN IN JJ NNS VBN IN JJ NNP .\nAlex also delayed the hookup of a third containment vessel that is set to double the amount of oil being collected to up to 53,000 barrels a day .\tNNP RB VBD DT NN IN DT JJ NN NN WDT VBZ VBN TO VB DT NN IN NN VBG VBN TO RB TO CD NNS DT NN .\nThe vessel is now expected to be in place next week .\tDT NN VBZ RB VBN TO VB IN NN JJ NN .\nSeparately , U.S. Environmental Protection Agency administrator Lisa Jackson visited Pensacola , Florida Saturday to inspect the ongoing response to the oil spill .\tRB , NNP NNP NNP NNP NN NNP NNP VBD NNP , NNP NNP TO VB DT JJ NN TO DT NN NN .\nJackson was there to oversee beach cleanup operations .\tNNP VBD RB TO VB NN NN NNS .\nThe oil crisis followed an explosion on a rig leased by oil company BP .\tDT NN NN VBD DT NN IN DT NN VBN IN NN NN NNP .\nThe April 20 blast killed 11 workers .\tDT NNP CD NN VBD CD NNS .\nGovernment estimates say the broken well is gushing up to 60,000 barrels of oil into the Gulf each day .\tNN NNS VBP DT JJ NN VBZ VBG RP TO CD NNS IN NN IN DT NNP DT NN .\nAfghan election officials say they plan to increase the number of voting stations for next week 's presidential runoff election , despite concerns that could lead to more fraud than in the first vote .\tJJ NN NNS VBP PRP VBP TO VB DT NN IN NN NNS IN JJ NN POS JJ NN NN , IN NNS WDT MD VB TO JJR NN IN IN DT JJ NN .\nAfghanistan 's independent election commission says it will slightly increase the number of polling centers to 6,322 and have enough staff to ensure a credible process .\tNNP POS JJ NN NN VBZ PRP MD RB VB DT NN IN NN NNS TO CD CC VBP JJ NN TO VB DT JJ NN .\nForeign election observers had recommended reducing the more than 6,000 polling centers used in the first round after auditors found more than one million fraudulent votes .\tJJ NN NNS VBD VBN VBG DT JJR IN CD NN NNS VBN IN DT JJ NN IN NNS VBD JJR IN CD CD JJ NNS .\nMany fake ballots are believed to have come from remote polling stations that never opened or did not have observers monitoring the vote .\tJJ JJ NNS VBP VBN TO VB VBN IN JJ NN NNS WDT RB VBD CC VBD RB VB NNS VBG DT NN .\nMeanwhile , the Taliban in Afghanistan has vowed to intensify its attacks leading up to the November 7 election .\tRB , DT NNP IN NNP VBZ VBN TO VB PRP$ NNS VBG RP TO DT NNP CD NN .\nA Taliban spokesman told the French news agency the militant group has new plans and tactics to disrupt the election .\tDT NNP NN VBD DT JJ NN NN DT JJ NN VBZ JJ NNS CC NNS TO VB DT NN .\nThe United Nations has not responded to the Afghan announcement of an increase in polling centers .\tDT NNP NNPS VBZ RB VBN TO DT JJ NN IN DT NN IN NN NNS .\nOn Wednesday , U.N. officials said workers will continue to help the country prepare for the vote , despite a deadly Taliban attack on a Kabul guesthouse that killed five U.N. staff members .\tIN NNP , NNP NNS VBD NNS MD VB TO VB DT NN VB IN DT NN , IN DT JJ NNP NN IN DT NNP NN WDT VBD CD NNP NN NNS .\nThe Taliban said the attack Wednesday was the first step of a plan aimed at disrupting the vote , in which incumbent President Hamid Karzai is facing off against former Foreign Minister Abdullah Abdullah .\tDT NNP VBD DT NN NNP VBD DT JJ NN IN DT NN VBN IN VBG DT NN , IN WDT JJ NNP NNP NNP VBZ VBG RP IN JJ JJ NN NNP NNP .\nThe United Nations says that some 100 villagers in the South Pacific island nation of Vanuatu have been forced to relocate because of rising seas , becoming one of the world 's first examples of ' climate change refugees . '\tDT NNP NNP VBZ IN DT CD NNS IN DT NNP NNP NN NN IN NNP VBP VBN VBN TO VB IN IN VBG NNS , VBG CD IN DT NN POS JJ NNS IN `` NN NN NNS . ``\nOfficials with the United Nations Environmental Program said Tuesday that locals on Tegua island in the northern part of the archipelago completed their move inland in August .\tNNS IN DT NNP NNP NNP NNP VBD NNP IN NNS IN NNP NN IN DT JJ NN IN DT NN VBD PRP$ NN RB IN NNP .\nOfficials said more frequent flooding and accelerating erosion in recent years has routinely damaged houses and boosted waterborne diseases in the population .\tNNS VBD RBR JJ NN CC VBG NN IN JJ NNS VBZ RB VBN NNS CC VBN JJ NNS IN DT NN .\nThe executive director of the U.N. agency said the rising sea levels and storm surges in Vanuatu are the first manifestation of global changes that eventually will touch everyone .\tDT NN NN IN DT NNP NN VBD DT VBG NN NNS CC NN NNS IN NNP VBP DT JJ NN IN JJ NNS IN RB MD VB DT .\nAn international human rights group is urging Iran to stop executing people under the age of 18 .\tDT JJ JJ NNS NN VBZ VBG NNP TO VB VBG NNS IN DT NN IN CD .\nHuman Rights Watch says Iran executes more minors than any other country in the world .\tNNP NNP NNP VBZ NNP VBZ RBR NNS IN DT JJ NN IN DT NN .\nIt says Iran has carried out 17 such executions since 2004 .\tPRP VBZ NNP VBZ VBN IN CD JJ NNS IN CD .\nIt says some juveniles were given death sentences for crimes they committed when they were 15 .\tPRP VBZ DT NNS VBD VBN NN NNS IN NNS PRP VBD WRB PRP VBD CD .\nAn official with the rights group says Iran needs to stop sending children to the gallows and live up to its international obligations by banning the juvenile death penalty .\tDT NN IN DT NNS NN VBZ NNP VBZ TO VB VBG NNS TO DT NNS CC VB RP TO PRP$ JJ NNS IN VBG DT NN NN NN .\nHuman Rights Watch says the only other countries known to have executed juveniles since 2004 are Sudan , which executed two juveniles and China and Pakistan , which each executed one .\tNNP NNP NNP VBZ DT JJ JJ NNS VBN TO VB VBN NNS IN CD VBP NNP , WDT VBD CD NNS CC NNP CC NNP , WDT DT VBD CD .\nArabic language al-Jazeera television has broadcast what it says is a new videotape of kidnapped U.S. journalist Jill Carroll pleading for freedom for female Iraqi prisoners .\tJJ NN NNP NN VBZ VBN WP PRP VBZ VBZ DT JJ NN IN VBN NNP NN NNP NNP VBG IN NN IN JJ JJ NNS .\nThe tape is time-stamped January 28 , showing Carroll dressed in traditional Islamic headscarf and crying .\tDT NN VBZ JJ NNP CD , VBG NNP VBN IN JJ JJ NN CC NN .\nAl Jazeera did not broadcast any sound with the tape Monday .\tNNP NNP VBD RB VB DT NN IN DT NN NNP .\nBut a newscaster said Carroll appealed to the U.S. military in Iraq to free all women prisoners .\tCC DT NN VBD NNP VBD TO DT NNP NN IN NNP TO VB DT NNS NNS .\nThis was the main demand of her captors who threatened to kill her if it was not met .\tDT VBD DT JJ NN IN PRP$ NNS WP VBD TO VB PRP IN PRP VBD RB VBN .\nCarroll is a journalist for the U.S. based Christian Science Monitor newspaper .\tNNP VBZ DT NN IN DT NNP VBN NNP NNP NNP NN .\nShe was kidnapped January 7 .\tPRP VBD VBN NNP CD .\nThe U.S. military freed five female prisoners in Iraq last week , but said their release was not connected to the Carroll case .\tDT NNP NN VBD CD JJ NNS IN NNP JJ NN , CC VBD PRP$ NN VBD RB VBN TO DT NNP NN .\nA U.S. soldier has been killed and four others wounded in a bomb attack in southeastern Afghanistan .\tDT NNP NN VBZ VBN VBN CC CD NNS VBN IN DT NN NN IN JJ NNP .\nThe U.S. military says the troops were conducting security operations when the blast occurred Friday in Paktika province , near the border with Pakistan .\tDT NNP NN VBZ DT NNS VBD VBG NN NNS WRB DT NN VBD NNP IN NNP NN , IN DT NN IN NNP .\nAmerican casualties have been mounting amid a major upsurge in violence across Afghanistan ahead of legislative elections scheduled on September 18 .\tJJ NNS VBP VBN VBG IN DT JJ NN IN NN IN NNP RB IN JJ NNS VBN IN NNP CD .\nWith vote counting nearly completed , Liberia appears headed for a presidential run-off election between football ( soccer ) star George Weah and former World Bank economist Ellen Johnson-Sirleaf .\tIN NN VBG RB VBN , NNP VBZ VBN IN DT JJ NN NN IN NN LRB NN RRB NN NNP NNP CC JJ NNP NNP NN NNP NNP .\nNeither candidate captured the outright majority in last Tuesday 's vote to avoid the run-off , which is expected to be held November 8 .\tDT NN VBD DT JJ NN IN JJ NNP POS NN TO VB DT NN , WDT VBZ VBN TO VB VBN NNP CD .\nThe latest tally shows Mr. Weah leading the field of 22 candidates with 28.9 percent of the vote .\tDT JJS RB VBZ NNP NNP VBG DT NN IN CD NNS IN CD NN IN DT NN .\nMs. Johnson-Sirleaf is second with 19.7 percent .\tNNP NNP VBZ JJ IN CD NN .\nMore than 90 percent of polling stations had reported results as of early Monday .\tJJR IN CD NN IN VBG NNS VBD VBN NNS IN IN JJ NNP .\nLast week 's presidential and parliamentary elections were the first in Liberia since a peace deal in 2003 ended 14 years of warfare and sent former President Charles Taylor into exile .\tJJ NN POS JJ CC JJ NNS VBD DT JJ IN NNP IN DT NN NN IN CD VBD CD NNS IN NN CC VBD JJ NNP NNP NNP IN NN .\nChinese officials are urging the European Union to go ahead with the lifting of a ban on arms sales to Beijing .\tJJ NNS VBP VBG DT NNP NNP TO VB RB IN DT NN IN DT NN IN NNS NNS TO NNP .\nThe EU had been moving towards a June date for ending the ban on arms deals , despite U.S. opposition .\tDT NNP VBD VBN VBG IN DT NNP NN IN VBG DT NN IN NNS NNS , IN NNP NN .\nDiplomats , however , say the Chinese parliament 's recent approval of a bill authorizing the use of force against Taiwan if it tries to declare independence has effectively stalled the action .\tNNS , RB , VBP DT JJ NN POS JJ NN IN DT NN VBG DT NN IN NN IN NNP IN PRP VBZ TO VB NN VBZ RB VBN DT NN .\nA Chinese foreign ministry official says linking the two issues is unreasonable and amounts to political discrimination not in keeping with the times .\tDT JJ JJ NN NN VBZ VBG DT CD NNS VBZ JJ CC VBZ TO JJ NN RB IN VBG IN DT NNS .\nThe embargo was put into place after the Chinese crackdown on pro-democracy demonstrators in Tiananmen Square in 1989 .\tDT NN VBD VBN IN NN IN DT JJ NN IN JJ NNS IN NNP NNP IN CD .\nDiplomats have told various news organizations that the effort to lift the embargo , originally spearheaded by France , will probably not move forward until sometime next year .\tNNS VBP VBN JJ NN NNS IN DT NN TO VB DT NN , RB VBN IN NNP , MD RB RB VB RB IN RB JJ NN .\nAn Iraqi woman suspected of being infected with the deadly H5N1 bird flu virus has died .\tDT JJ NN VBN IN VBG VBN IN DT JJ NNP NN NN NN VBZ VBN .\nIraqi officials said Thursday further tests are being conducted in Baghdad and Cairo .\tJJ NNS VBD NNP JJ NNS VBP VBG VBN IN NNP CC NNP .\nIf confirmed , the death would be the second caused by the virus in Iraq this year .\tIN VBN , DT NN MD VB DT JJ VBN IN DT NN IN NNP DT NN .\nMeanwhile , German officials are warning pet owners to keep cats inside and dogs on a leash after lab tests confirmed a cat died from the H5N1 virus , the same strain found in a dead swan in the region .\tRB , JJ NNS VBP VBG JJ NNS TO VB NNS IN CC NNS IN DT NN IN NN NNS VBD DT NN VBD IN DT NNP NN , DT JJ NN VBN IN DT JJ NN IN DT NN .\nThe discoveries come a day after World Bank officials warned that an outbreak of bird flu in Nigeria is far from over .\tDT NNS VBP DT NN IN NNP NNP NNS VBD IN DT NN IN NN NN IN NNP VBZ RB IN RB .\nThe World Bank said Wednesday Nigeria has failed to contain the spread of the H5N1 virus among chickens , and offered to fund a bird vaccination program there .\tDT NNP NNP VBD NNP NNP VBZ VBN TO VB DT NN IN DT NNP NN IN NNS , CC VBD TO VB DT JJ NN NN RB .\nHealth officials say since 2003 , bird flu has killed more than 90 people worldwide , mostly Asians .\tNNP NNS VBP IN CD , NN NN VBZ VBN JJR IN CD NNS JJ , RB NNS .\nTwo U.S. astronauts from the space shuttle Discovery have completed a third spacewalk to make external repairs on the International Space Station .\tCD NNP NNS IN DT NN NN NNP VBP VBN DT JJ NN TO VB JJ NNS IN DT NNP NNP NNP .\nMichael Fossum and Ronald Garan spent more than six hours Sunday outside the orbiting laboratory , where they replaced a nitrogen tank used to cool the station .\tNNP NNP CC NNP NNP VBD JJR IN CD NNS NNP IN DT NN NN , WRB PRP VBD DT NN NN VBN TO VB DT NN .\nThey also inspected a problematic joint attached to the station 's solar power panels .\tPRP RB VBD DT JJ NN VBN TO DT NN POS JJ NN NNS .\nThe astronauts collected samples of debris from the joint for analysis on Earth .\tDT NNS VBD NNS IN NN IN DT NN IN NN IN NNP .\nThis was the astronauts ' final spacewalk of the 14-day shuttle mission .\tDT VBD DT NNS POS JJ NN IN DT JJ NN NN .\nThe Discovery arrived at the station last week to install a new Japanese laboratory named Kibo .\tDT NN VBD IN DT NN JJ NN TO VB DT JJ JJ NN VBN NNP .\nOn Saturday , Japanese Prime Minister Yasuo Fukuda spoke to Japanese astronaut Akihiko Hoshide through a video link to congratulate the team on its work .\tIN NNP , JJ NNP NNP NNP NNP VBD TO JJ NN NNP NNP IN DT NN NN TO VB DT NN IN PRP$ NN .\nHoshide and the other astronauts tested the Kibo 's robotic arm for the first time on Saturday .\tNNP CC DT JJ NNS VBD DT NNP POS JJ NN IN DT JJ NN IN NNP .\nKibo is Japanese for ' hope . '\tNNP VBZ JJ IN `` NN . ``\nA Danish court has dismissed a legal case filed by citizens who accused Prime Minister Anders Fogh Rasmussen of violating the country 's constitution by sending troops to Iraq .\tDT JJ NN VBZ VBN DT JJ NN VBN IN NNS WP VBD NNP NNP NNP NNP NNP IN VBG DT NN POS NN IN VBG NNS TO NNP .\nThe group , including the family of a Danish soldier killed in Iraq , had brought suit against the prime minister .\tDT NN , VBG DT NN IN DT JJ NN VBN IN NNP , VBD VBN NN IN DT JJ NN .\nThe suit accused him of violating the constitution because he dispatched the troops in the absence of a United Nations resolution authorizing the Iraqi operation .\tDT NN VBD PRP IN VBG DT NN IN PRP VBD DT NNS IN DT NN IN DT NNP NNP NN VBG DT JJ NN .\nThe plaintiffs have indicated readiness to appeal to Denmark 's Supreme Court .\tDT NNS VBP VBN NN TO VB TO NNP POS NNP NNP .\nDenmark has fewer than 500 troops serving in southern Iraq .\tNNP VBZ JJR IN CD NNS VBG IN JJ NNP .\nMr. Rasmussen has announced plans to withdraw them later this year and replace them with four helicopters and an air force unit of about 50 .\tNNP NNP VBZ VBN NNS TO VB PRP RBR DT NN CC VB PRP IN CD NNS CC DT NN NN NN IN IN CD .\nIsraeli and Palestinian security officials met Sunday for the first time since Israel froze contacts after a suicide bombing nearly two weeks ago .\tJJ CC JJ NN NNS VBD NNP IN DT JJ NN IN NNP NN NNS IN DT NN VBG RB CD NNS RB .\nGenerals from both sides met to map out plans for the withdrawal of Israeli forces from five West Bank cities and towns that Israel re-occupied during the recently-halted Palestinian uprising .\tNNS IN DT NNS VBD TO VB RP NNS IN DT NN IN JJ NNS IN CD NNP NNP NNS CC NNS IN NNP VBD IN DT JJ JJ NN .\nThe withdrawal is part of a package of pledges made by Israel during an Israeli-Palestinian summit early last month .\tDT NN VBZ NN IN DT NN IN NNS VBN IN NNP IN DT JJ NN RB JJ NN .\nAs the generals met , Israeli security sources revealed that Defense Minister Shaul Mofaz will meet with Palestinian leader Mahmoud Abbas in the coming days to further the often-stalled Mideast peace process .\tIN DT NNS VBD , JJ NN NNS VBD IN NNP NNP NNP NNP MD VB IN JJ NN NNP NNP IN DT VBG NNS TO VB DT JJ JJ NN NN .\nIsrael suspended its diplomacy after a Palestinian suicide bombing killed five Israelis February 25 in a Tel Aviv nightclub .\tNNP VBD PRP$ NN IN DT JJ NN NN VBD CD NNS NNP CD IN DT NNP NNP NN .\nSudan 's Vice President , Salva Kiir Mayardit , has discussed the investigation into the death of his predecessor , John Garang , with the Ugandan president .\tNNP POS NNP NNP , NNP NNP NNP , VBZ VBN DT NN IN DT NN IN PRP$ NN , NNP NNP , IN DT JJ NN .\nA spokesman for Ugandan President Yoweri Museveni told the French News Agency that Mr. Salva Kiir expressed satisfaction with the progress of the investigation .\tDT NN IN JJ NNP NNP NNP VBD DT NNP NNP NNP IN NNP NNP NNP VBD NN IN DT NN IN DT NN .\nThe two officials also discussed the possibility of Sudanese soldiers joining forces with the Ugandan army to fight the rebel Lord 's Resistance Army in northern Uganda .\tDT CD NNS RB VBD DT NN IN JJ NNS VBG NNS IN DT JJ NN TO VB DT NN NNP POS NN NN IN JJ NNP .\nVice President Garang died on July 30 when the Ugandan military helicopter he was traveling in crashed .\tNNP NNP NNP VBD IN NNP CD WRB DT JJ JJ NN PRP VBD VBG IN VBN .\nMr. Garang had been in Uganda to visit with President Museveni , a long-time ally .\tNNP NNP VBD VBN IN NNP TO VB IN NNP NNP , DT JJ NN .\nThe investigation into Mr. Garang 's death is a multinational effort involving officials from Uganda , Sudan , Kenya the United States and the United Nations .\tDT NN IN NNP NNP POS NN VBZ DT JJ NN VBG NNS IN NNP , NNP , NNP DT NNP NNPS CC DT NNP NNPS .\nWorld leaders attending a conference on Islam 's global roles are calling on Muslim clerics and scholars to do more to denounce terrorism and its masterminds .\tNNP NNS VBG DT NN IN NNP POS JJ NNS VBP VBG IN NNP NNS CC NNS TO VB JJR TO VB NN CC PRP$ NNS .\nThe gathering in Vienna of religious and political leaders is examining ways to improve contacts between the West and Muslim nations .\tDT NN IN NNP IN JJ CC JJ NNS VBZ VBG NNS TO VB NNS IN DT NNP CC NNP NNS .\nIraqi President Jalal Talabani told the gathering that if terrorism is not denounced it might allow Islamic radicalism to spread .\tJJ NNP NNP NNP VBD DT NN IN IN NN VBZ RB VBN PRP MD VB NNP NN TO VB .\nHe said Islamic leaders must declare that terrorist groups are only trying to deceive their followers and do nothing but create destruction .\tPRP VBD JJ NNS MD VB IN JJ NNS VBP RB VBG TO VB PRP$ NNS CC VB DT CC VB NN .\nAfghan President Hamid Karzai warned that failure to defeat Taleban-led terrorism in his country could have wider consequences , and predicted more attacks to come .\tJJ NNP NNP NNP VBD IN NN TO VB JJ NN IN PRP$ NN MD VB JJR NNS , CC VBD JJR NNS TO VB .\nBut he vowed they will not stop him from democratizing the country and further strengthening the democratic institutions .\tCC PRP VBD PRP MD RB VB PRP IN VBG DT NN CC JJ VBG DT JJ NNS .\nSomali elders in the north of the country say pirates have released two German hostages who were kidnapped more than six weeks ago .\tJJ NNS IN DT NN IN DT NN VBP NNS VBP VBN CD JJ NNS WP VBD VBN RBR IN CD NNS RB .\nThe Germans were freed Friday .\tDT NNS VBD VBN NNP .\nElders say a ransom was paid for the two .\tNN VBP DT NN VBD VBN IN DT CD .\nThey are now in the Somalia 's main port city Bossaso and are expected to be flown out of the country soon .\tPRP VBP RB IN DT NNP POS JJ NN NN NNP CC VBP VBN TO VB VBN IN IN DT NN RB .\nThey were abducted from their yacht off the coast of Yemen when they were traveling to Thailand .\tPRP VBD VBN IN PRP$ NN IN DT NN IN NNP WRB PRP VBD VBG TO VB .\nPiracy is rife along Somalia 's coast and has increased over the last year .\tNN VBZ JJ IN NNP POS NN CC VBZ VBN IN DT JJ NN .\nAn Indonesian health official says a chicken seller suspected of being infected with bird flu has died at Jakarta 's infectious diseases hospital .\tDT JJ NN NN VBZ DT NN NN VBN IN VBG VBN IN NN NN VBZ VBN IN NNP POS JJ NNS NN .\nA hospital spokesman said the 22-year-old dead man had a history of contact with poultry .\tDT NN NN VBD DT JJ JJ NN VBD DT NN IN NN IN NN .\nIndonesian authorities say their tests indicate the man was infected with the deadly H5N1 strain of the avian flu virus .\tJJ NNS VBP PRP$ NNS VBP DT NN VBD VBN IN DT JJ NNP NN IN DT JJ NN NN .\nIf the World Health Organization laboratory in Hong Kong confirms the case , the man will be Indonesia 's 15th fatality from avian influenza .\tIN DT NNP NNP NNP NN IN NNP NNP VBZ DT NN , DT NN MD VB NNP POS JJ NN IN JJ NN .\nThe Philippine government says it will resume peace talks with Muslim separatist rebels next month in neighboring Malaysia .\tDT JJ NN VBZ PRP MD VB NN NNS IN NNP JJ NNS JJ NN IN VBG NNP .\nManila 's top negotiator Silvestre Afable said Friday that talks with the Moro Islamic Liberation Front ( MILF ) will begin in Kuala Lumpur on April 16 .\tNNP POS JJ NN NNP NNP VBD NNP IN NNS IN DT NNP NNP NNP NNP LRB NNP RRB MD VB IN NNP NNP IN NNP CD .\nBoth sides have been observing a cease-fire for the past 20 months , monitored by a 60-member Malaysian-led international contingent .\tDT NNS VBP VBN VBG DT NN IN DT JJ CD NNS , VBN IN DT JJ JJ JJ JJ .\nThe MILF , which has been fighting a three-decade-old insurgency in the southern Philippines , has renounced terrorism and pledged to help hunt down foreign extremists .\tDT NNP , WDT VBZ VBN VBG DT JJ NN IN DT JJ NNP , VBZ VBN NN CC VBD TO VB VB RP JJ NNS .\nBut the group has been accused of sheltering operatives of the regional terror network Jemaah Islamiyah , accusations the MILF has repeatedly denied .\tCC DT NN VBZ VBN VBN IN VBG NNS IN DT JJ NN NN NNP NNP , NNS DT NNP VBZ RB VBN .\nThe Olympic games now underway are not just about sports , they also are an opportunity for China to introduce its culture to the world .\tDT NNP NNS RB VBP VBP RB RB IN NNS , PRP RB VBP DT NN IN NNP TO VB PRP$ NN TO DT NN .\nBut as China modernizes , some warn that one of its most traditional arts is in danger of disappearing .\tCC IN NNP VBZ , DT VBP IN CD IN PRP$ RBS JJ NNS VBZ IN NN IN VBG .\nDaniel Schearf reports from Beijing .\tNNP NNP VBZ IN NNP .\nThe head of the U.N. nuclear agency says Iran will eventually need security assurances from the United States in exchange for guarantees not to develop nuclear weapons .\tDT NN IN DT NNP JJ NN VBZ NNP MD RB VB NN NNS IN DT NNP NNPS IN NN IN NNS RB TO VB JJ NNS .\nMohamed ElBaradei , the chief of the International Atomic Energy Agency , spoke to reporters in Paris Monday on the sidelines of a conference on the future of nuclear energy .\tNNP NNP , DT NN IN DT NNP NNP NNP NNP , VBD TO NNS IN NNP NNP IN DT NNS IN DT NN IN DT NN IN JJ NN .\nHe said Washington will have to get involved when the European Union and Iran discuss security issues .\tPRP VBD NNP MD VB TO VB VBN WRB DT NNP NNP CC NNP VB NN NNS .\nMr. ElBaradei says ' regional security is not only a European affair . '\tNNP NNP VBZ `` JJ NN VBZ RB RB DT JJ NN . ``\nBritain , France and Germany have offered Iran political and economic incentives if it abandons uranium enrichment activities capable of producing weapons grade material .\tNNP , NNP CC NNP VBP VBN NNP JJ CC JJ NNS IN PRP VBZ NN NN NNS JJ IN VBG NNS NN NN .\nThe United States , which accuses Iran of secretly trying to develop nuclear weapons , is now supporting the European effort by offering added incentives .\tDT NNP NNPS , WDT VBZ NNP IN RB VBG TO VB JJ NNS , VBZ RB VBG DT JJ NN IN VBG JJ NNS .\nIran insists its nuclear program is only for generating electricity .\tNNP VBZ PRP$ JJ NN VBZ RB IN VBG NN .\nAmid rising gasoline prices and slumping U.S. sales , international auto giant General Motors announced a plan Tuesday [ July 15th ] to cut expenses and shift production to more fuel-efficient cars .\tIN VBG NN NNS CC VBG NNP NNS , JJ NN NN NNP NNP VBD DT NN NNP LRB NNP CD RRB TO VB NNS CC NN NN TO JJR JJ NNS .\nCompany officials say they will lay off workers , cut truck production and suspend its stock dividend .\tNN NNS VBP PRP MD VB RP NNS , VB NN NN CC VB PRP$ NN NN .\nVOA 's Jeff Swicord Reports .\tNNP POS NNP NNP VBZ .\nA group of veteran Chinese Communist Party members and academics has issued a joint statement criticizing the government for excessive media censorship .\tDT NN IN NN JJ NNP NNP NNS CC NNS VBZ VBN DT JJ NN VBG DT NN IN JJ NNS NN .\nThe statement released to reporters Wednesday warned Beijing of unrest if some measures of free expression were not permitted .\tDT NN VBN IN NNS NNP VBD NNP IN NN IN DT NNS IN JJ NN VBD RB VBN .\nThe statement in particular referred to last month 's closure of a popular supplement to the China Youth Daily .\tDT NN IN NN VBD TO JJ NN POS NN IN DT JJ NN TO DT NNP NNP NNP .\nFreezing Point was a more than 10-year old publication that gained popularity for its bold articles .\tVBG NN VBD DT JJR IN JJ JJ NN WDT VBD NN IN PRP$ JJ NNS .\nThe joint statement was signed by 13 people , many of whom formerly were high-ranking officials .\tDT JJ NN VBD VBN IN CD NNS , NN IN WP RB VBD JJ NNS .\nAmong the signatories were Chairman Mao 's former secretary Li Rui ; the former head of the Communist Party 's Propaganda Department , Zhu Houze ; and Li Pu , the retired deputy director of the official Xinhua news agency .\tIN DT NNS VBD NNP NNP POS JJ NN NNP NNP ; DT JJ NN IN DT NNP NNP POS NNP NNP , NNP NNP ; CC NNP NNP , DT JJ NN NN IN DT JJ NNP NN NN .\nDuring his two-day stay , Hu Jintao 's talks with British Prime Minister Tony Blair are expected to touch on a range of issues , including economic relations and global warming .\tIN PRP$ JJ NN , NNP NNP POS NNS IN JJ NNP NNP NNP NNP VBP VBN TO VB IN DT NN IN NNS , VBG JJ NNS CC JJ NN .\nMr. Hu also is expected to discuss Beijing 's push for an end to a 16-year European Union arms embargo against China .\tNNP NNP RB VBZ VBN TO VB NNP POS NN IN DT NN TO DT JJ NNP NNP NNS NN IN NNP .\nThe ban was imposed after China 's brutal crackdown on the 1989 Tiananmen Square pro-democracy protests .\tDT NN VBD VBN IN NNP POS JJ NN IN DT CD NNP NNP JJ NNS .\nThe Chinese president also will attend a banquet with Queen Elizabeth II .\tDT JJ NN RB MD VB DT NN IN NNP NNP NNP .\nFollowing his visit to Britain , Mr. Hu is to travel to Germany and Spain before heading to South Korea for the Asia-Pacific Economic Cooperation forum that begins November 18 .\tVBG PRP$ NN TO NNP , NNP NNP VBZ TO VB TO NNP CC NNP IN VBG TO NNP NNP IN DT NNP NNP NNP NN WDT VBZ NNP CD .\nThe Norwegian Nobel Institute has announced a near-record number of nominations for the Nobel Peace Prize in 2006 .\tDT JJ NNP NNP VBZ VBN DT JJ NN IN NNS IN DT NNP NNP NNP IN CD .\nThe five-member awards committee says there are 191 nominations .\tDT JJ NNS NN VBZ EX VBP CD NNS .\nLast year 's award to the International Atomic Energy Agency ( IAEA ) and its leader Mohamed ElBaradei followed a record 199 nominees .\tJJ NN POS NN TO DT NNP NNP NNP NNP LRB NNP RRB CC PRP$ NN NNP NNP VBD DT NN CD NNS .\nThe committee keeps the nomination list secret .\tDT NN VBZ DT NN NN NN .\nThe institute 's director Geir Lundestad would only say 168 individuals and 23 organizations were suggested from all parts of the world .\tDT NN POS NN NNP NNP MD RB VB CD NNS CC CD NNS VBD VBN IN DT NNS IN DT NN .\nHowever , those who submit nominations can announce their selections .\tRB , DT WP VBP NNS MD VB PRP$ NNS .\nNominees include a former Finnish President and Indonesian President for negotiating peace in Indonesia 's Aceh province .\tNNS VBP DT JJ JJ NNP CC JJ NNP IN VBG NN IN NNP POS NNP NN .\nAlso on the list are U2 singer Bono and Live 8 organizer Bob Geldof for their work on poverty eradication .\tRB IN DT NN VBP NNP NN NNP CC NNP CD NN NNP NNP IN PRP$ NN IN NN NN .\nThe Peace Prize is awarded on December 10 in Oslo .\tDT NNP NNP VBZ VBN IN NNP CD IN NNP .\nVietnamese veterinary officials say bird flu has infected chickens on two farms in the capital , Hanoi .\tJJ JJ NNS VBP NN NN VBZ VBN NNS IN CD NNS IN DT NN , NNP .\nOfficials say authorities have slaughtered the surviving chickens after a number of birds died on the farms in Hanoi 's Dong Anh district .\tNNS VBP NNS VBP VBN DT VBG NNS IN DT NN IN NNS VBD IN DT NNS IN NNP POS NNP NNP NN .\nAuthorities say some of the dead chickens tested positive for the often-fatal H5N1 strain of the bird flu virus .\tNNS VBP DT IN DT JJ NNS VBD JJ IN DT JJ NNP NN IN DT NN NN NN .\nWednesday 's announcement follows one from Ha Tay province , where a bird flu outbreak was reported Tuesday .\tNNP POS NN VBZ CD IN NNP NNP NN , WRB DT NN NN NN VBD VBN NNP .\nLast month , the virus was identified on farms in the provinces of Hai Duong and Vinh Long .\tJJ NN , DT NN VBD VBN IN NNS IN DT NNS IN NNP NNP CC NNP NNP .\nBird flu emerged in Vietnam in 2003 and has killed 42 people in the country since then .\tNN NN VBD IN NNP IN CD CC VBZ VBN CD NNS IN DT NN IN RB .\nIt has not reported any human cases of bird flu since late 2005 .\tPRP VBZ RB VBN DT JJ NNS IN NN NN IN JJ CD .\nThe disease has killed 167 people worldwide .\tDT NN VBZ VBN CD NNS JJ .\nThe president of India , Abdul Kalam , has donated the money meant to be used for the New Year 's celebrations at his presidential palace for the tsunami disaster relief fund .\tDT NN IN NNP , NNP NNP , VBZ VBN DT NN VBN TO VB VBN IN DT NNP NNP POS NNS IN PRP$ JJ NN IN DT NN NN NN NN .\nA spokesman says the president has canceled the New Year festivities in view of the grim situation in the Andaman & Nicobar Islands , Tamil Nadu , Pondicherry , Kerala and Andhra Pradesh .\tDT NN VBZ DT NN VBZ VBN DT NNP NNP NNS IN NN IN DT JJ NN IN DT NNP CC NNP NNP , NNP NNP , NNP , NNP CC NNP NNP .\nHe also has urged well-to-do families of India to adopt at least one victim of the disaster .\tPRP RB VBZ VBN JJ NNS IN NNP TO VB IN JJS CD NN IN DT NN .\nMeanwhile , Prime Minister Manmohan Singh 's office says he will be traveling to the Andaman and Nicobar islands soon to assess the situation .\tRB , NNP NNP NNP NNP POS NN VBZ PRP MD VB VBG TO DT NNP CC NNP NNS RB TO VB DT NN .\nThe announcement was made as he returned to New Delhi from a similar three-day trip to India 's tsunami-affected southern states of Tamil Nadu , Kerala and Andhra Pradesh .\tDT NN VBD VBN IN PRP VBD TO NNP NNP IN DT JJ JJ NN TO NNP POS JJ JJ NNS IN NNP NNP , NNP CC NNP NNP .\nIran has warned that it will make what it calls ' unilateral decisions ' regarding its nuclear program if Europe refers the Islamic Republic to the United Nations Security Council for sanctions .\tNNP VBZ VBN IN PRP MD VB WP PRP VBZ `` JJ NNS `` VBG PRP$ JJ NN IN NNP VBZ DT NNP NNP TO DT NNP NNP NNP NNP IN NNS .\nThe warning Sunday by an Iranian Foreign Ministry spokesman Hamid Reza Asefi comes just days before the resumption of high-level talks with France , Germany and Britain .\tDT NN NNP IN DT JJ NNP NNP NN NNP NNP NNP VBZ RB NNS IN DT NN IN JJ NNS IN NNP , NNP CC NNP .\nHe told journalists that negotiations this week in Geneva will prove whether Tehran can reach an agreement with Europe .\tPRP VBD NNS IN NNS DT NN IN NNP MD VB IN NNP MD VB DT NN IN NNP .\nIran has raised the stakes in the negotiations by threatening to resume processing uranium , a step in its nuclear program that could allow it to manufacture nuclear reactor fuel or weapons-grade nuclear material .\tNNP VBZ VBN DT NNS IN DT NNS IN VBG TO VB VBG NN , DT NN IN PRP$ JJ NN WDT MD VB PRP TO VB JJ NN NN CC JJ JJ NN .\nTehran says its nuclear program is intended for peaceful purposes .\tNNP VBZ PRP$ JJ NN VBZ VBN IN JJ NNS .\nThe United States says it is meant to hide a secret weapons program .\tDT NNP NNPS VBZ PRP VBZ VBN TO VB DT JJ NNS NN .\nAt least 40 people were killed and more than 120 injured when a train packed with holiday travelers derailed in the early morning hours on Wednesday in southern Pakistan .\tIN JJS CD NNS VBD VBN CC JJR IN CD NN WRB DT NN VBN IN NN NNS VBN IN DT JJ NN NNS IN NNP IN JJ NNP .\nThe train was heading from the port city of Karachi to Lahore when the majority of its cars slipped off the rails near the town of Mehrabpur in Sindh province .\tDT NN VBD VBG IN DT JJ NN IN NNP TO VB WRB DT NN IN PRP$ NNS VBD RP DT NNS IN DT NN IN NNP IN NNP NN .\nThe manager of Pakistan 's railway system has ruled out sabotage as a cause .\tDT NN IN NNP POS NN NN VBZ VBN RP NN IN DT NN .\nHe said initial reports indicate a welded joint in the track broke , due to contraction in the extreme cold .\tPRP VBD JJ NNS VBP DT JJ NN IN DT NN VBD , JJ TO NN IN DT JJ NN .\nLocal villagers helped rescue those trapped in the wreckage in total darkness , before emergency crews arrived on the scene .\tJJ NNS VBD VB DT VBN IN DT NN IN JJ NN , IN NN NNS VBD IN DT NN .\nMany of the passengers were heading home to celebrate the Muslim festival of Eid al-Adha , the festival of sacrifice .\tNN IN DT NNS VBD VBG NN TO VB DT NNP NN IN NNP NNP , DT NN IN NN .\nPakistan suffered its worst train accident in 2005 when more than 130 people were killed after three trains collided also in Sindh province .\tNNP VBD PRP$ JJS NN NN IN CD WRB JJR IN CD NNS VBD VBN IN CD NNS VBD RB IN NNP NN .\nMeterologists say a new tropical storm has formed off the east coast of Florida but do not expect the storm to become a hurricane .\tNNS VBP DT JJ JJ NN VBZ VBN RP DT JJ NN IN NNP CC VBP RB VB DT NN TO VB DT NN .\nThe U.S. National Hurricane Center says Tropical Storm Tammy is centered about 32 kilometers east of Cape Canaveral , home of the United States ' space shuttle fleet .\tDT NNP NNP NNP NNP VBZ NNP NNP NNP VBZ VBN IN CD NNS NN IN NNP NNP , NN IN DT NNP NNPS POS NN NN NN .\nThe storm is expected to move up the East Coast and dump heavy rain on the states of Florida , Georgia , and South Carolina .\tDT NN VBZ VBN TO VB RP DT NNP NNP CC VB JJ NN IN DT NNS IN NNP , NNP , CC NNP NNP .\nBut forecasters say Tammy will likely spend only a short time over water , preventing it from gaining hurricane strength .\tCC NNS VBP NNP MD RB VB RB DT JJ NN IN NN , VBG PRP IN VBG NN NN .\nTammy is the 19th named storm of this year 's unusually active Atlantic hurricane season .\tNNP VBZ DT JJ VBN NN IN DT NN POS RB JJ NNP NN NN .\nThe 18th storm of the season , Tropical Storm Stan , is dissipating after passing over the mountains of southeastern Mexico .\tDT JJ NN IN DT NN , NNP NNP NNP , VBZ VBG IN VBG IN DT NNS IN JJ NNP .\nThe Hollywood movie studio that produced well-known films like the James Bond series and ' The Wizard of Oz ' has filed for bankruptcy .\tDT NNP NN NN WDT VBD JJ NNS IN DT NNP NNP NN CC `` DT NNP IN NNP `` VBZ VBN IN NN .\nFor decades , MGM has been making films that begin with the distinctive picture and sound of a lion roaring .\tIN NNS , NNP VBZ VBN VBG NNS WDT VBP IN DT JJ NN CC NN IN DT NN NN .\nThe studio is to be restructured and given new leadership , but it will continue making movies .\tDT NN VBZ TO VB VBN CC VBN JJ NN , CC PRP MD VB VBG NNS .\nExecutives from a rival film company , Spyglass Entertainment , will now run MGM .\tNNS IN DT JJ NN NN , NNP NNP , MD RB VB NNP .\nThe creditors included billionaire Carl Icahn , who was pressing for a different company to take over the failing studio .\tDT NNS VBD NN NNP NNP , WP VBD VBG IN DT JJ NN TO VB RP DT VBG NN .\nAfter lengthy negotiations , the creditors agreed to exchange about $ 4 billion in debt for shares in the new company .\tIN JJ NNS , DT NNS VBD TO VB IN $ CD CD IN NN IN NNS IN DT JJ NN .\nThe studio was hurt by some expensive films that sold too few tickets to make a profit , slumping sales of DVDs , and a heavy debt burden .\tDT NN VBD VBN IN DT JJ NNS WDT VBD RB JJ NNS TO VB DT NN , VBG NNS IN NNP , CC DT JJ NN NN .\nU.S. soldiers in Iraq have discovered a large cache of weapons and ammunition during a random house-to-house search in Baghdad .\tNNP NNS IN NNP VBP VBN DT JJ NN IN NNS CC NN IN DT JJ NN NN IN NNP .\nU.S. military officials say the soldiers also detained five suspected terrorists in Monday 's operation in the Al Rashid district of the capital .\tNNP JJ NNS VBP DT NNS RB VBD CD JJ NNS IN NNP POS NN IN DT NNP NNP NN IN DT NN .\nRocket launchers , mortars , AK-47 rifles , explosives and 300 rounds of ammunition , along with several Iraqi police uniforms were among the items seized from the house .\tNNP NNS , NNS , NNP NNS , NNS CC CD NNS IN NN , IN IN JJ JJ NNS NNS VBD IN DT NNS VBN IN DT NN .\nMeanwhile , Iraqi and Egyptian official say there has been no contact from the assailants who abducted Egypt 's top envoy to Iraq .\tRB , JJ CC JJ NN VBP EX VBZ VBN DT NN IN DT NNS WP VBD NNP POS JJ NN TO NNP .\nOfficials say the envoy , Ihab al-Sherif , was kidnapped Saturday near his home in Baghdad as he stopped to buy a newspaper .\tNNS VBP DT NN , NNP NNP , VBD VBN NNP IN PRP$ NN IN NNP IN PRP VBD TO VB DT NN .\nHis abduction follows Cairo 's announcement that Egypt would become the first Arab nation to establish full diplomatic ties with Iraq 's new government .\tPRP$ NN VBZ NNP POS NN IN NNP MD VB DT JJ JJ NN TO VB JJ JJ NNS IN NNP POS JJ NN .\nDonor nations have pledged a record $ 25 billion to help fight poverty in the world 's poorest nations , which are home to two and a half billion people .\tNNP NNS VBP VBN DT NN $ CD CD TO VB VB NN IN DT NN POS JJS NNS , WDT VBP NN TO CD CC DT NN CD NNS .\nThe new donations boost the bank 's International Development Association 's budget to more than $ 41 billion over the next three years .\tDT JJ NNS VBP DT NN POS NNP NNP NNP POS NN TO JJR IN $ CD CD IN DT JJ CD NNS .\nA total of 45 nations pledged donations , including six new countries -- China , Cyprus , Egypt , Estonia , Latvia and Lithuania .\tDT NN IN CD NNS VBD NNS , VBG CD JJ NNS IN NNP , NNP , NNP , NNP , NNP CC NNP .\nEgypt and China were once recipients of World Bank aid .\tNNP CC NNP VBD RB NNS IN NNP NNP NN .\nThe International Development Association is one of the largest sources of assistance for the world 's poorest countries .\tDT NNP NNP NNP VBZ CD IN DT JJS NNS IN NN IN DT NN POS JJS NNS .\nThe money addresses education , health , water , sanitation , environmental issues , business development and other issues .\tDT NN VBZ NN , NN , NN , NN , JJ NNS , NN NN CC JJ NNS .\nFormer world number one women 's tennis player Martina Hingis has lost in the semifinals of the Australian women 's hard court tournament in Gold Coast , falling to fourth seeded Italian Plavia Pennetta 01-Jun , 07-Jun , 06-Feb .\tJJ NN NN CD NNS POS NN NN NNP NNP VBZ VBN IN DT NNS IN DT JJ NNS POS JJ NN NN IN NNP NNP , VBG TO JJ JJ JJ NNP NNP CD , CD , CD .\nThe loss Friday ended Hingis ' three match winning streak in her first tournament since injuries forced the Swiss tennis player into retirement three years ago .\tDT NN NNP VBD NNP POS CD NN VBG NN IN PRP$ JJ NN IN NNS VBD DT JJ NN NN IN NN CD NNS RB .\nShe also announced after the match that she would not play in a scheduled semifinal doubles match later Friday because of a hip injury .\tPRP RB VBD IN DT NN IN PRP MD RB VB IN DT VBN JJ NNS VBP RB NNP IN IN DT NN NN .\nHingis still intends to play in the Sydney International Tournament next week and the Australian open which begins January 16 .\tNNP RB VBZ TO VB IN DT NNP NNP NNP JJ NN CC DT JJ JJ WDT VBZ NNP CD .\nIn the other semifinal match Friday , the Czech Republic 's Lucie Safarova defeated third-seeded Dinara Safina of Russia , 06-Apr , 06-Feb .\tIN DT JJ JJ NN NNP , DT JJ NNP POS NNP NNP VBD JJ NNP NNP IN NNP , CD , CD .\nA member of an Islamic terrorist group in the U.S. has been sentenced to 12.5 years in prison for plotting attacks against targets in Los Angeles , California .\tDT NN IN DT JJ JJ NN IN DT NNP VBZ VBN VBN TO CD NNS IN NN IN VBG NNS IN NNS IN NNP NNP , NNP .\nGregory Patterson pleaded guilty to conspiracy to wage war against the United States and possession of a firearm .\tNNP NNP VBD JJ TO NN TO VB NN IN DT NNP NNPS CC NN IN DT NN .\nThe 24-year-old was sentenced Monday by a U.S. District Court .\tDT JJ VBD VBN NNP IN DT NNP NNP NNP .\nPatterson was among four men charged in connection with the plot .\tNNP VBD IN CD NNS VBN IN NN IN DT NN .\nTargets included the Los Angeles International Airport , U.S. military recruiting centers , and the Israeli Consulate .\tNNS VBD DT NNP NNP NNP NNP , NNP JJ NN NNS , CC DT JJ NN .\nLast month , co-conspirator Levar Washington was sentenced to 22 years imprisonment for conspiracy and weapons charges .\tJJ NN , NN NNP NNP VBD VBN TO CD NNS NN IN NN CC NNS NNS .\nThe men belonged to Jam'iyyat Ul-Islam Is-Saheeh , a local terrorist cell founded by Kevin James in 1997 while he was in prison .\tDT NNS VBD TO NNP NNP NNP , DT JJ JJ NN VBN IN NNP NNP IN CD IN PRP VBD IN NN .\nJames is expected to be sentenced early next year .\tNNP VBZ VBN TO VB VBN RB JJ NN .\nA fourth co-conspirator , Hammad Samana , was declared unfit to stand trial and is in a psychiatric facility .\tDT JJ NN , NNP NNP , VBD VBN JJ TO VB NN CC VBZ IN DT JJ NN .\nA Latina member of the U.S. Congress has accused Republicans of scapegoating illegal immigrants .\tDT NNP NN IN DT NNP NNP VBZ VBN NNS IN VBG JJ NNS .\nIn the Democratic party 's weekly radio address Saturday , Hilda Solis of California said Republicans have steadily built up an assault on immigrants over the past few years to divide voters and win elections .\tIN DT JJ NN POS JJ NN NN NNP , NNP NNP IN NNP VBD NNS VBP RB VBN RP DT NN IN NNS IN DT JJ JJ NNS TO NN NNS CC VB NNS .\nThe lawmaker , the child of Mexican and Nicaraguan immigrants , said a House bill that criminalizes being or helping illegal immigrants is alienating all Americans .\tDT NN , DT NN IN JJ CC JJ NNS , VBD DT NNP NN WDT VBZ VBG CC VBG JJ NNS VBZ VBG DT NNS .\nSolis called for renewed debate on immigration reform as soon as Congress returns from its two-week recess .\tNNP VBD IN JJ NN IN NN NN RB RB IN NNP NNS IN PRP$ JJ NN .\nShe said reform should be tough , smart , and comprehensive , yet compassionate .\tPRP VBD NN MD VB JJ , JJ , CC JJ , RB JJ .\nForeigners are flocking to the Chinese capital for the Olympic Games and Beijing has gone on the charm offensive .\tNNS VBP VBG TO DT JJ NN IN DT NNP NNPS CC NNP VBZ VBN IN DT NN NN .\nWith an army of volunteers ready to help tourists , thousands of police on patrol , and floral displays providing a facelift , Beijing hopes to win over the world with its makeover .\tIN DT NN IN NNS JJ TO VB NNS , NNS IN NNS IN NN , CC JJ NNS VBG DT NN , NNP VBZ TO VB IN DT NN IN PRP$ NN .\nMandy Clark reports from the Chinese capital for VOA .\tNNP NNP VBZ IN DT JJ NN IN NNP .\nAfghan officials say at least 10 civilians were killed Friday when a barrage of rockets targeting a U.S. military base in eastern Afghanistan hit a nearby village .\tJJ NNS VBP IN JJS CD NNS VBD VBN NNP WRB DT NN IN NNS VBG DT NNP JJ NN IN JJ NNP VBD DT JJ NN .\nSeveral others were wounded in the attack in Kunar province believed to be the work of Taleban militants .\tJJ NNS VBD VBN IN DT NN IN NNP NN VBN TO VB DT NN IN NNP NNS .\nHours earlier , a suicide bomber blew up a car packed with explosives near an entrance to the Kabul International Airport , killing two Afghan soldiers and wounding about 10 others .\tNNS RB , DT NN NN VBD RP DT NN VBN IN NNS IN DT NN TO DT NNP NNP NNP , VBG CD JJ NNS CC VBG IN CD NNS .\nThe bomber rammed the car into a NATO vehicle but the explosives did not go off immediately .\tDT NN VBD DT NN IN DT NNP NN CC DT NNS VBD RB VB RB RB .\nThe car sped off and then exploded , hitting a group of Afghan soldiers waiting to fly to Italy for military training .\tDT NN VBD RB CC RB VBD , VBG DT NN IN JJ NNS VBG TO VB TO NNP IN JJ NN .\nThe Taleban claimed responsibility for the attack .\tDT NNP VBD NN IN DT NN .\nThe past 19 months in Afghanistan have been marked by a steady rise in militant attacks , marking the bloodiest period since the Taleban was ousted from power by U.S. troops in 2001 .\tDT JJ CD NNS IN NNP VBP VBN VBN IN DT JJ NN IN JJ NNS , VBG DT JJS NN IN DT NNP VBD VBN IN NN IN NNP NNS IN CD .\nThe political leader of Hamas says the Palestinian militant group is ready to merge all armed factions to form an army that will defend the Palestinian people .\tDT JJ NN IN NNP VBZ DT JJ JJ NN VBZ JJ TO VB DT JJ NNS TO VB DT NN WDT MD VB DT JJ NNS .\nSpeaking Saturday from his base in Damascus , Syria , Khaled Mashaal rejected U.S. , European and Israeli demands for Hamas to disarm .\tVBG NNP IN PRP$ NN IN NNP , NNP , NNP NNP VBD NNP , JJ CC JJ NNS IN NNP TO VB .\nBut he said the group will honor existing agreements between the Palestinian Authority and Israel , provided they serve the Palestinians ' interests .\tCC PRP VBD DT NN MD VB VBG NNS IN DT JJ NNP CC NNP , VBD PRP VBP DT NNS POS NNS .\nHamas has claimed many suicide attacks against Israel and has vowed to destroy the Jewish state .\tNNP VBZ VBN JJ NN NNS IN NNP CC VBZ VBN TO VB DT JJ NN .\nMeanwhile , armed activists of the Palestinian Fatah party have held protests in the West Bank and Gaza , following Hamas ' stunning election victory this week over Fatah .\tRB , JJ NNS IN DT JJ NNP NN VBP VBN NNS IN DT NNP NNP CC NNP , VBG NNP POS JJ NN NN DT NN IN NNP .\nFatah gunmen fired shots in the air today from the roof of the Palestinian parliament building in the West Bank town of Ramallah , demanding the resignation of Fatah leaders .\tNNP NNS VBD NNS IN DT NN NN IN DT NN IN DT JJ NN NN IN DT NNP NNP NN IN NNP , VBG DT NN IN NNP NNS .\nThere were no reports of casualties .\tEX VBD DT NNS IN NNS .\nThe U.S. Embassy in Riyadh , Saudi Arabia , and the consulates in Jeddah and Dhahran will be closed on Monday and Tuesday due to terror threats against U.S. government buildings in the kingdom .\tDT NNP NNP IN NNP , NNP NNP , CC DT NNS IN NNP CC NNP MD VB VBN IN NNP CC NNP JJ TO JJ NNS IN NNP NN NNS IN DT NN .\nAn embassy statement urges U.S. citizens in Saudi Arabia to maintain a high level of vigilance .\tDT JJ NN VBZ NNP NNS IN NNP NNP TO VB DT JJ NN IN NN .\nIt says there is no specific information about the timing or targets in any possible attacks .\tPRP VBZ EX VBZ DT JJ NN IN DT NN CC NNS IN DT JJ NNS .\nBut it notes that terrorist groups in the past have targeted housing compounds and other facilities frequented by Westerners .\tCC PRP VBZ IN JJ NNS IN DT NN VBP VBN NN NNS CC JJ NNS VBN IN NNS .\nSomali President Abdullahi Yusuf Amhed says he will hold a national reconciliation conference in the coming weeks to help the country return to peace .\tJJ NNP NNP NNP NNP VBZ PRP MD VB DT JJ NN NN IN DT VBG NNS TO VB DT NN NN TO NN .\nSpeaking during a Thursday visit to London , Mr. Yusuf said the conference will be open to moderate Islamists .\tVBG IN DT NNP NN TO NNP , NNP NNP VBD DT NN MD VB JJ TO JJ NNS .\nHe said the only conditions for taking part in the talks are to lay down weapons , renounce violence and be committed to a peaceful Somalia .\tPRP VBD DT JJ NNS IN VBG NN IN DT NNS VBP TO VB RP NNS , NN NN CC VB VBN TO DT JJ NNP .\nEthiopian and Somali government troops drove Islamist forces from the capital , Mogadishu , late last year .\tJJ CC JJ NN NNS VBD JJ NNS IN DT NN , NNP , RB JJ NN .\nSince then , insurgents have mounted frequent attacks , which have killed many people , mainly civilians .\tIN RB , NNS VBP VBN JJ NNS , WDT VBP VBN JJ NNS , RB NNS .\nAt least two mortar rounds landed near Mogadishu 's international airport Thursday , but no injuries were reported .\tIN JJS CD JJ NNS VBD IN NNP POS JJ NN NNP , CC DT NNS VBD VBN .\nAnd officials say unknown gunmen shot to death two local government officials in the capital late Wednesday .\tCC NNS VBP JJ NNS VBD TO NN CD JJ NN NNS IN DT NN JJ NNP .\nA sports agent based in the U.S. state of California has been found guilty of smuggling Cuban baseball players into the United States .\tDT NNS NN VBN IN DT NNP NN IN NNP VBZ VBN VBN JJ IN VBG JJ NN NNS IN DT NNP NNPS .\nA court in Key West , Florida , found Gustavo Dominguez guilty Thursday on 21 federal charges , including conspiracy , smuggling , transporting , and harboring illegal immigrants .\tDT NN IN NNP NNP , NNP , VBD NNP NNP JJ NNP IN CD JJ NNS , VBG NN , VBG , VBG , CC VBG JJ NNS .\nMost of the charges carry a maximum prison sentence of 10 years .\tJJS IN DT NNS VBP DT JJ NN NN IN CD NNS .\nDominguez is free until his sentencing July 9 .\tNNP VBZ JJ IN PRP$ NN NNP CD .\nHis lawyer says they will appeal .\tPRP$ NN VBZ PRP MD VB .\nDominguez was on trial for smuggling five baseball players from Cuba to Florida in 2004 .\tNNP VBD IN NN IN VBG CD NN NNS IN NNP TO NNP IN CD .\nOnly two are still playing baseball .\tRB CD VBP RB VBG NN .\nOsbek Castillo is a pitcher for the Arizona Diamondbacks ' feeder team in Alabama , while Francisely Bueno pitches for the Atlanta Braves ' feeder team in Mississippi .\tNNP NNP VBZ DT NN IN DT NNP NNPS POS NN NN IN NNP , IN NNP NNP VBZ IN DT NNP NNPS POS NN NN IN NNP .\nAn international journalists ' rights group has called on the European Union to maintain its support for Cuban dissidents .\tDT JJ NNS POS NNS NN VBZ VBN IN DT NNP NNP TO VB PRP$ NN IN JJ NNS .\nIn a statement released Friday , the Paris-based Reporters without Borders called Cuba the world 's biggest prison for the press after China .\tIN DT NN VBN NNP , DT JJ NNS IN NNP VBD NNP DT NN POS JJS NN IN DT NN IN NNP .\nThe group criticized the EU Committee on Latin America 's recommendation to reestablish cooperation with Cuban authorities .\tDT NN VBD DT NNP NNP IN NNP NNP POS NN TO VB NN IN JJ NNS .\nIt said resumption of dialogue with the communist nation would not result in significant progress in human rights .\tPRP VBD NN IN NN IN DT JJ NN MD RB VB IN JJ NN IN JJ NNS .\nThe group said the EU should maintain the measures adopted after the ' Black Spring ' arrests in March 2003 , and recommended more active support for dissidents now being repressed in Cuba .\tDT NN VBD DT NNP MD VB DT NNS VBN IN DT `` NNP VBG `` NNS IN NNP CD , CC VBD JJR JJ NN IN NNS RB VBG VBN IN NNP .\nIn a separate statement , the group also strongly condemned the January 22 kidnapping of photographer Hernan Arboleda in Colombia .\tIN DT JJ NN , DT NN RB RB VBD DT NNP CD NN IN NN NNP NNP IN NNP .\nIt called on the Revolutionary Armed Forces of Colombia , known as FARC , to immediately release Mr. Arboleda .\tPRP VBD IN DT JJ JJ NNS IN NNP , VBN IN NNP , TO RB VB NNP NNP .\nEnergy officials in Georgia say strong winds and heavy snow have downed power lines in the western part of the country , cutting power to millions of citizens .\tNNP NNS IN NNP VBP JJ NNS CC JJ NN VBP VBN NN NNS IN DT JJ NN IN DT NN , VBG NN TO NNS IN NNS .\nDeputy Energy Minister Alexander Khetaguri told the Associated Press Thursday fierce weather ruptured power lines leading from the Inguri hydroelectric station to eastern regions , leaving about three million people in the dark .\tNNP NNP NNP NNP NNP VBD DT NNP NNP NNP JJ NN VBD NN NNS VBG IN DT NNP JJ NN TO JJ NNS , VBG IN CD CD NNS IN DT NN .\nHe said most of the capital , Tbilisi , was also without electricity today after a unit at a power station malfunctioned .\tPRP VBD JJS IN DT NN , NNP , VBD RB IN NN NN IN DT NN IN DT NN NN VBN .\nThe small former Soviet country is already battling freezing winter temperatures with limited supplies of natural gas after two explosions Sunday hit a pipeline in Russia carrying supplies to Georgia .\tDT JJ JJ JJ NN VBZ RB VBG VBG NN NNS IN JJ NNS IN JJ NN IN CD NNS NNP VBD DT NN IN NNP VBG NNS TO NNP .\nTop-seeded Anabel Medina Garrigues of Spain is the winner of the Canberra International tennis tournament in Australia .\tJJ NNP NNP NNP IN NNP VBZ DT NN IN DT NNP NNP NN NN IN NNP .\nShe overcame South Korea 's Cho Yoon-jeong in three sets on Friday , 06-Apr , 0-6 , 06-Apr .\tPRP VBP NNP NNP POS NNP NNP IN CD NNS IN NNP , CD , CD , CD .\nMedina Garrigues raced to a 05-Jan lead in the first set before Cho won the next three games .\tNNP NNPS VBD TO DT JJ NN IN DT JJ NN IN NNP VBD DT JJ CD NNS .\nThe 23-year-old Spaniard served out the set to take it 06-Apr .\tDT JJ NN VBD RP DT NN TO VB PRP CD .\nCho won the next eight games and led 2-0 in the deciding third set before Medina Garrigues rallied and claimed six of the next eight games to win her fifth WTA title .\tNNP VBD DT JJ CD NNS CC VBD CD IN DT JJ JJ NN IN NNP NNPS VBD CC VBD CD IN DT JJ CD NNS TO VB PRP$ JJ NNP NN .\nThis was Cho 's third appearance in a WTA tour final , but her first since 2003 when she had jaw surgery .\tDT VBD NNP POS JJ NN IN DT NNP NN JJ , CC PRP$ JJ IN CD WRB PRP VBD VBN NN .\nShe has a difficult opponent in her opening round match at next week 's Australian Open in Melbourne , as she has to face world number two Kim Clijsters of Belgium .\tPRP VBZ DT JJ NN IN PRP$ NN NN NN IN JJ NN POS JJ NN IN NNP , IN PRP VBZ TO VB NN NN CD NNP NNP IN NNP .\nA new government report says orders for certain U.S. goods rose in February , increasing for a third consecutive month .\tDT JJ NN NN VBZ NNS IN JJ NNP NNS VBD IN NNP , VBG IN DT JJ JJ NN .\nThe Commerce Department said Wednesday that orders for so-called durable goods were up 0.5 percent in February , led by a jump in orders for airplanes and machinery .\tDT NNP NNP VBD NNP IN NNS IN JJ JJ NNS VBD RB CD NN IN NNP , VBN IN DT NN IN NNS IN NNS CC NN .\nDurable goods are items meant to last several years or more , and orders for such items are seen as a good measure of the country 's economic health .\tJJ NNS VBP NNS VBN TO JJ JJ NNS CC JJR , CC NNS IN JJ NNS VBP VBN IN DT JJ NN IN DT NN POS JJ NN .\nThe Commerce Department also said that orders for durable goods were stronger in January than previously thought , rising 3.9 percent , more than the 2.6 percent increase initially reported .\tDT NNP NNP RB VBD IN NNS IN JJ NNS VBD JJR IN NNP IN RB VBN , VBG CD NN , JJR IN DT CD NN NN RB VBN .\nOfficials also said that inventories of durable goods rose three-tenths of a percent , the biggest gain since December 2008 .\tNNS RB VBD IN NNS IN JJ NNS VBD NNS IN DT NN , DT JJS NN IN NNP CD .\nChina and Cuba have signed 16 agreements as Chinese President Hu Jintao continues his visit to Havana .\tNNP CC NNP VBP VBN CD NNS IN JJ NNP NNP NNP VBZ PRP$ NN TO NNP .\nMr. Hu and his Cuban counterpart , Fidel Castro , witnessed the signings late Monday in the Cuban capital , Havana .\tNNP NNP CC PRP$ JJ NN , NNP NNP , VBD DT NNS JJ NNP IN DT JJ NN , NNP .\nThe accords include deals to build a nickel production plant in Cuba and setting up a joint venture to explore untapped Cuban nickel deposits .\tDT NNS VBP NNS TO VB DT NN NN NN IN NNP CC VBG RP DT JJ NN TO VB JJ JJ NN NNS .\nIn addition , China agreed to a 10-year extension for repayment of loans given to Cuba in the 1990s .\tIN NN , NNP VBD TO DT JJ NN IN NN IN NNS VBN TO NNP IN DT NNS .\nCuban state-run media say Mr. Hu 's visit is a sign of the high priority both countries give to the development of their bilateral relations .\tJJ JJ NNS VBP NNP NNP POS NN VBZ DT NN IN DT JJ NN DT NNS VBP TO DT NN IN PRP$ JJ NNS .\nCuba has suffered economically since the collapse of its former backer , the Soviet Union , more than a decade ago .\tNNP VBZ VBN RB IN DT NN IN PRP$ JJ NN , DT NNP NNP , JJR IN DT NN RB .\nUkraine 's parliament has voted to dismiss Prime Minister Yuri Yekhanurov 's government over a gas deal with Russia .\tNNP POS NN VBZ VBN TO VB NNP NNP NNP NNP POS NN IN DT NN NN IN NNP .\nUkrainian President Viktor Yushchenko told reporters in Astana , Kazakhstan that the vote was unconstitutional .\tJJ NNP NNP NNP VBD NNS IN NNP , NNP IN DT NN VBD JJ .\nHe said he will elaborate on the matter after consulting with his lawyers .\tPRP VBD PRP MD VB IN DT NN IN VBG IN PRP$ NNS .\nEven if he is dismissed , Mr. Yekhanurov will remain acting prime minister until a new cabinet is named .\tRB IN PRP VBZ VBN , NNP NNP MD VB JJ JJ NN IN DT JJ NN VBZ VBN .\nUkraine 's Justice Minister , Serhiy Holovaty says a new cabinet can only be formed after parliamentary elections in March .\tNNP POS NNP NNP , NNP NNP VBZ DT JJ NN MD RB VB VBN IN JJ NNS IN NNP .\nThe vote followed criticism of a deal reached last Wednesday under which Ukraine would pay $ 95 for 1,000 cubic meters of Russian gas .\tDT NN VBD NN IN DT NN VBN JJ NNP IN WDT NNP MD VB $ CD IN CD JJ NNS IN JJ NN .\nThe price is double what Ukraine had been paying .\tDT NN VBZ JJ WP NNP VBD VBN VBG .\nUkraine 's former Prime Minister Yulia Tymoshenko last week announced plans for court action to challenge the agreement .\tNNP POS JJ NNP NNP NNP NNP JJ NN VBD NNS IN NN NN TO VB DT NN .\nShe said she would seek charges of betrayal of national interests and exceeding authority .\tPRP VBD PRP MD VB NNS IN NN IN JJ NNS CC VBG NN .\nThe head of the International Atomic Energy Agency says Iran appears to have suspended its uranium-enrichment activities , as it had promised .\tDT NN IN DT NNP NNP NNP NNP VBZ NNP VBZ TO VB VBN PRP$ JJ NNS , IN PRP VBD VBN .\nMohamed ElBaradei told reporters\tNNP NNP VBD NNS\nMonday , at IAEA headquarters in Vienna , he thinks ' pretty much everything has come to a halt ' at Iran 's nuclear laboratories , but that the U.N. agency will need a few days to verify Tehran 's compliance .\tNNP , IN NNP NN IN NNP , PRP VBZ `` RB RB DT VBZ VBN TO DT NN `` IN NNP POS JJ NNS , CC IN DT NNP NN MD VB DT JJ NNS TO VB NNP POS NN .\nMr. ElBaradei says the IAEA should have a definite answer about Iran 's uranium-enrichment work by Thursday .\tNNP NNP VBZ DT NNP MD VB DT JJ NN IN NNP POS NN NN IN NNP .\nThe enrichment process can be used to produce either nuclear fuel for peaceful purposes ( such as reactors to generate electricity ) or weapons-grade uranium suitable for warheads .\tDT NN NN MD VB VBN TO VB DT JJ NN IN JJ NNS LRB JJ IN NNS TO VB NN RRB CC JJ NN JJ IN NNS .\nThe United States contends Iran is engaged in a secret plan to build nuclear weapons .\tDT NNP NNPS VBZ NNP VBZ VBN IN DT JJ NN TO VB JJ NNS .\nLast week , President Bush said he has seen evidence that Iran was trying to accelerate its military program ahead of today 's deadline .\tJJ NN , NNP NNP VBD PRP VBZ VBN NN IN NNP VBD VBG TO VB PRP$ JJ NN RB IN NN POS NN .\nPakistani officials say U.S. drone aircraft have fired missiles into a suspected militant compound in the country 's northwest tribal belt , killing at least 10 militants .\tJJ NNS VBP NNP NN NN VBP VBN NNS IN DT JJ JJ NN IN DT NN POS JJS JJ NN , VBG IN JJS CD NNS .\nThe strike took place in Datta Khel , about 45 kilometers west of Miranshah , in the North Waziristan district .\tDT NN VBD NN IN NNP NNP , IN CD NNS JJS IN NNP , IN DT NNP NNP NN .\nElsewhere Sunday , Pakistani army helicopter gunships pounded suspected insurgent hideouts in the Shana Garhi area of neighboring Orakzai tribal region , and officials say at least eight militants were killed .\tRB NNP , JJ NN NN NNS VBD JJ JJ NNS IN DT NNP NNP NN IN VBG NNP JJ NN , CC NNS VBP IN JJS CD NNS VBD VBN .\nPakistan 's northwestern tribal areas are considered strongholds of al-Qaida and the Taliban .\tNNP POS JJ JJ NNS VBP VBN NNS IN NNP CC DT NNP .\nEuropean Union foreign policy chief Javier Solana is visiting Afghanistan Tuesday for talks with the country 's political leaders on the upcoming presidential election .\tNNP NNP JJ NN NN NNP NNP VBZ VBG NNP NNP IN NNS IN DT NN POS JJ NNS IN DT JJ JJ NN .\nSolana met with Afghan Foreign Minister Rangin Dadfar Spanta to discuss the latest developments in the region .\tNNP VBD IN JJ NNP NNP NNP NNP NNP TO VB DT JJS NNS IN DT NN .\nHe is also scheduled to meet with Afghan President Hamid Karzai , several of the country 's election candidates , as well as , the head of the EU election observation mission in Afghanistan .\tPRP VBZ RB VBN TO VB IN JJ NNP NNP NNP , NN IN DT NN POS NN NNS , RB RB IN , DT NN IN DT NNP NN NN NN IN NNP .\nThe European Union is deploying about 100 observers to help monitor Afghanistan 's presidential and provincial elections on August 20 .\tDT NNP NNP VBZ VBG IN CD NNS TO VB VB NNP POS JJ CC JJ NNS IN NNP CD .\nSeventeen EU experts are already in the country to monitor pre-election preparations .\tCD NNP NNS VBP RB IN DT NN TO VB JJ NNS .\nSolana 's visit follows talks in neighboring Pakistan where he pledged EU support for the nearly two million people displaced by an anti-Taliban operation in the country 's northwest .\tNNP POS NN VBZ NNS IN VBG NNP WRB PRP VBD NNP NN IN DT RB CD CD NNS VBN IN DT JJ NN IN DT NN POS NN .\nMuzaffarabad , a city of 6,00,000 people that was shaken to pieces by the Kashmir earthquake , is a scene of chaos Monday , with survivors ransacking shops in a desperate hunt for food and fuel .\tNNP , DT NN IN CD NNS WDT VBD VBN TO NNS IN DT NNP NN , VBZ DT NN IN NN NNP , IN NNS VBG NNS IN DT JJ NN IN NN CC NN .\nReports from Pakistani Kashmir say angry crowds attacked military trucks that entered the city today , carrying the first shipments of tents , blankets and medicine for Muzaffarabad .\tNNS IN JJ NNP VBP JJ NNS VBD JJ NNS WDT VBD DT NN NN , VBG DT JJ NNS IN NNS , NNS CC NN IN NNP .\nMilitary officials say Saturday 's earthquake killed at least 11,000 people in Muzaffarabad and left more than 1,20,000 others in urgent need of shelter .\tJJ NNS VBP NNP POS NN VBD IN JJS CD NNS IN NNP CC VBD JJR IN CD NNS IN JJ NN IN NN .\nAid agencies say conditions are even worse in many smaller towns and villages .\tJJ NNS VBP NNS VBP RB JJR IN JJ JJR NNS CC NNS .\nA VOA correspondent who traveled with a military convoy from Pakistan 's North-West Frontier Province into the disaster zone today says helicopters are airlifting the most seriously injured survivors out of Muzaffarabad .\tDT NNP NN WP VBD IN DT JJ NN IN NNP POS NNP NNP NNP IN DT NN NN NN VBZ NNS VBP VBG DT RBS RB JJ NNS IN IN NNP .\nCrowds have gathered at a stadium in the center of the city .\tNNS VBP VBN IN DT NN IN DT NN IN DT NN .\nBodies of scores of dead are piled on the stadium steps .\tNNS IN NNS IN NN VBP VBN IN DT NN NNS .\nSecurity officials say at least 27 people have died in intense clashes between pro-government forces in Somalia and al-Shabab militants .\tNN NNS VBP IN JJS CD NNS VBP VBN IN JJ NNS IN JJ NNS IN NNP CC NNP NNS .\nThe fighting erupted late Thursday and continued into Friday in Bula Hawo , an area bordering Ethiopia and Kenya .\tDT NN VBD JJ NNP CC VBD IN NNP IN NNP NNP , DT NN VBG NNP CC NNP .\nOfficials say hundreds of residents have fled into Kenya .\tNNS VBP NNS IN NNS VBP VBN IN NNP .\nGovernment and African Union troops captured the long-time rebel stronghold earlier this week .\tNNP CC NNP NNP NNS VBD DT JJ NN NN RBR DT NN .\nThe militants were trying to take it back , but government commanders said Friday they had been driven off .\tDT NNS VBD VBG TO VB PRP RB , CC NN NNS VBD NNP PRP VBD VBN VBN RP .\nSomalia has experienced nearly two decades of violence and lawlessness since the fall of the last stable central government .\tNNP VBZ VBN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ JJ NN .\nThe current government has been wracked by infighting and has stayed in power only with the strong support of AU peacekeepers .\tDT JJ NN VBZ VBN VBN IN NN CC VBZ VBN IN NN RB IN DT JJ NN IN NNP NNS .\nThe British and Irish prime ministers say much has been achieved in the Northern Ireland peace process but an accord on restoring the province 's power-sharing government is not yet complete .\tDT JJ CC JJ JJ NNS VBP NN VBZ VBN VBN IN DT NNP NNP NN NN CC DT NN IN VBG DT NN POS JJ NN VBZ RB RB JJ .\nBritain 's Tony Blair and his Irish counterpart , Bertie Ahern , spoke in Belfast Wednesday , their latest deadline for agreement .\tNNP POS NNP NNP CC PRP$ JJ NN , NNP NNP , VBD IN NNP NNP , PRP$ JJS NN IN NN .\nThe two men insisted a deal on the issue is very close and reaffirmed their commitment to continue efforts for an accord .\tDT CD NNS VBD DT NN IN DT NN VBZ RB JJ CC VBD PRP$ NN TO VB NNS IN DT NN .\nThe Irish Republican Army said Tuesday it turned down a demand by hard-line Protestants that it provide photographic evidence of its disarmament .\tDT JJ NNP NNP VBD NNP PRP VBD RP DT NN IN JJ NNS IN PRP VBP JJ NN IN PRP$ NN .\nThe head of the IRA 's political wing says that to do so would mean public humiliation .\tDT NN IN DT NNP POS JJ NN VBZ IN TO VB RB MD VB JJ NN .\nNegotiators are trying to revive a power-sharing administration established under the 1998 Good Friday peace accord .\tNNS VBP VBG TO VB DT JJ NN VBN IN DT CD JJ NNP NN NN .\nBritain suspended the Northern Ireland government two years ago , amid charges of IRA spying on provincial officials .\tNNP VBD DT NNP NNP NN CD NNS RB , IN NNS IN NNP VBG IN JJ NNS .\nFormer Maoist rebels attacked vehicles , forced shops to close and blocked highways Sunday in Nepal to enforce a general strike called to protest the president .\tJJ JJ NNS VBD NNS , VBD NNS TO VB CC VBD NNS NNP IN NNP TO VB DT JJ NN VBN TO VB DT NN .\nMaoists in Nepal began a three-day strike Sunday , forcing the closure of shops and businesses , and blocking roads and highways .\tNNS IN NNP VBD DT JJ NN NNP , VBG DT NN IN NNS CC NNS , CC VBG NNS CC NNS .\nThe former rebels are protesting what they call the unconstitutional actions of Nepal 's president in overturning their decision to fire the head of the army .\tDT JJ NNS VBP VBG WP PRP VBP DT JJ NNS IN NNP POS NN IN VBG PRP$ NN TO VB DT NN IN DT NN .\nThe protest has been largely peaceful , although police say some vehicles have been vandalized , and some protesters have been arrested .\tDT NN VBZ VBN RB JJ , IN NNS VBP DT NNS VBP VBN VBN , CC DT NNS VBP VBN VBN .\nTensions have been high in Nepal since a Maoist-led government resigned in May amid a dispute with President Ram Baran Yadav concerning the army chief .\tNNS VBP VBN JJ IN NNP IN DT JJ NN VBD IN NNP IN DT NN IN NNP NNP NNP NNP VBG DT NN NN .\nThe former rebels have since led a series of protests .\tDT JJ NNS VBP IN VBN DT NN IN NNS .\nMaoists ended a decade-long civil war in 2006 to join a peace process .\tNNS VBD DT JJ JJ NN IN CD TO VB DT NN NN .\nThey won a majority of seats in parliament in elections last year .\tPRP VBD DT NN IN NNS IN NN IN NNS JJ NN .\nLeaders from the Palestinian militant group Hamas say Palestinian Authority President Mahmoud Abbas will formally ask their prime minister-designate to form a government on Tuesday .\tNNS IN DT JJ JJ NN NNP VBP JJ NNP NNP NNP NNP MD RB VB PRP$ JJ NN TO VB DT NN IN NNP .\nFollowing talks with Mr. Abbas , Hamas leaders said the president would present Ismail Haniyeh with a formal letter of appointment and officially begin the process of filling Cabinet posts .\tVBG NNS IN NNP NNP , NNP NNS VBD DT NN MD VB NNP NNP IN DT JJ NN IN NN CC RB VB DT NN IN VBG NNP NNS .\nHamas dominated recent parliamentary elections , and the naming of Ismail Haniyeh as prime minister is a formality .\tNNP VBD JJ JJ NNS , CC DT NN IN NNP NNP IN JJ NN VBZ DT NN .\nMr. Abbas said Sunday that the new government faces a financial crisis after Israel stopped the monthly transfer of millions of dollars in customs revenue it collects for the Palestinian Authority .\tNNP NNP VBD NNP IN DT JJ NN VBZ DT JJ NN IN NNP VBD DT JJ NN IN NNS IN NNS IN NNS NN PRP VBZ IN DT JJ NNP .\nWestern nations have also threatened to cut funds unless Hamas renounces violence and accepts Israel 's right to exist .\tJJ NNS VBP RB VBN TO VB NNS IN NNP VBZ NN CC VBZ NNP POS NN TO VB .\nAlso Monday , other Hamas leaders met with Iran 's supreme leader Ayatollah Ali Khamenei in Tehran .\tRB NNP , JJ NNP NNS VBD IN NNP POS JJ NN NNP NNP NNP IN NNP .\nThe ayatollah urged Muslim nations to provide financial support to the Palestinian government .\tDT NN VBD NNP NNS TO VB JJ NN TO DT JJ NN .\nIn a solemn ceremony , the United Nations has marked the third anniversary of the deadly attacks on the world body 's offices in Baghdad .\tIN DT NN NN , DT NNP NNP VBZ VBN DT JJ NN IN DT JJ NNS IN DT NN NN POS NNS IN NNP .\nIn a statement Friday , U.N. Secretary-General Kofi Annan said the bombing dealt a fatal blow to the illusion that wearing a U.N. blue helmet or hoisting a U.N. flag placed peacekeepers out of reach of violence .\tIN DT NN NNP , NNP NNP NNP NNP VBD DT NN VBD DT JJ NN TO DT NN IN VBG DT NNP JJ NN CC VBG DT NNP NN VBD NNS IN IN NN IN NN .\nHe said U.N. staff now confront direct and deadly threats to their safety .\tPRP VBD NNP NN RB VBP JJ CC JJ NNS TO PRP$ NN .\nHe said , however , the world body remains committed to work for peace in such places as Lebanon , Darfur , Haiti and Iraq .\tPRP VBD , RB , DT NN NN VBZ JJ TO VB IN NN IN JJ NNS IN NNP , NNP , NNP CC NNP .\nTwenty-two people were killed and hundreds others injured when a bomb struck the U.N. offices in the Iraqi capital three years ago Saturday .\tCD NNS VBD VBN CC NNS NNS VBD WRB DT NN VBD DT NNP NNS IN DT JJ NN CD NNS IN NNP .\nAmong those killed was the U.N. 's top envoy in Iraq and High Commissioner for Human Rights , Sergio Viera de Mello .\tIN DT VBN VBD DT NNP POS JJ NN IN NNP CC NNP NNP IN NNP NNP , NNP NNP IN NNP .\nPakistani security forces say they have arrested a senior Taleban figure in northwestern Pakistan , near the Afghan border .\tJJ NN NNS VBP PRP VBP VBN DT JJ NNP NN IN JJ NNP , IN DT JJ NN .\nPakistani Interior Minister Aftab Khan Sherpao says the head of the ousted Taleban 's Culture and Information Council , Maulvi Muhammad Yasir , was arrested last week and is being interrogated .\tJJ NNP NNP NNP NNP NNP VBZ DT NN IN DT JJ NNP POS NNP CC NNP NNP , NNP NNP NNP , VBD VBN JJ NN CC VBZ VBG VBN .\nHe did not elaborate .\tPRP VBD RB VB .\nIn another development , Muslim cleric Muhammad Adil Khan accused of having terror links and his son , Muhammad Hassan Adil , have arrived in Pakistan after being deported from the United States .\tIN DT NN , NNP NN NNP NNP NNP VBN IN VBG NN NNS CC PRP$ NN , NNP NNP NNP , VBP VBN IN NNP IN VBG VBN IN DT NNP NNPS .\nPakistani officials say the two were detained upon their arrival in the city of Lahore and are being questioned by authorities .\tJJ NNS VBP DT CD VBD VBN IN PRP$ NN IN DT NN IN NNP CC VBP VBG VBN IN NNS .\nThey are part of a group of five men arrested in June as part of an FBI probe into alleged terror activities involving the Islamic community in Lodi , California .\tPRP VBP NN IN DT NN IN CD NNS VBN IN NNP IN NN IN DT NNP NN IN JJ NN NNS VBG DT JJ NN IN NNP , NNP .\nA spokesman for Indonesia 's navy says five of its warships have left a disputed area in the Sulawesi Sea ahead of talks Wednesday with Malaysia .\tDT NN IN NNP POS NN VBZ CD IN PRP$ NNS VBP VBN DT JJ NN IN DT NNP NNP RB IN NNS NNP IN NNP .\nIndonesian Foreign Minister Hasan Wirayuda is to meet with his Malaysian counterpart , Syed Hamid Albar , in Jakarta to discuss competing claims in the oil and gas-rich area .\tJJ NN NN NNP NNP VBZ TO VB IN PRP$ JJ NN , NNP NNP NNP , IN NNP TO VB VBG NNS IN DT NN CC JJ NN .\nBoth countries have vowed to solve the matter diplomatically .\tDT NNS VBP VBN TO VB DT NN RB .\nThe dispute escalated in February when Malaysia awarded exploration contracts to Royal Dutch / Shell .\tDT NN VBD IN NNP WRB NNP VBD NN NNS TO NNP NNP NNP NNP .\nIndonesia responded by deploying seven warships and four\tNNP VBD IN VBG CD NNS CC CD\nF-16 fighter jets in the area .\tNN NN NNS IN DT NN .\nThe issue has further strained relations between the two countries .\tDT NN VBZ RB VBN NNS IN DT CD NNS .\nIndonesians are also angry about Kuala Lumpur 's recent crackdown on several hundred thousand illegal migrant workers from Indonesia .\tNNS VBP RB JJ IN NNP NNP POS JJ NN IN JJ CD CD JJ NN NNS IN NNP .\nFrench President Jacques Chirac says his top priority is ending the two-week-old wave of urban unrest , as he pledged to address the root causes of the violence\tJJ NNP NNP NNP VBZ PRP$ JJ NN VBZ VBG DT JJ NN IN JJ NN , IN PRP VBD TO VB DT NN NNS IN DT NN\nThe French leader told a Paris news conference Thursday the government will have to respond to problems in largely Muslim-inhabited working class suburbs , which have experienced most of the rioting .\tDT JJ NN VBD DT NNP NN NN NNP DT NN MD VB TO VB TO NNS IN RB JJ VBG NN NNS , WDT VBP VBN JJS IN DT NN .\nThe violence has involved youths of immigrant background who have complained of police harassment , racism and job discrimination .\tDT NN VBZ VBN NNS IN JJ NN WP VBP VBN IN NN NN , NN CC NN NN .\nThe violence began October 27 after the accidental deaths of two teenagers of North African descent who thought they were being chased by police .\tDT NN VBD NNP CD IN DT JJ NNS IN CD NNS IN JJ JJ NN WP VBD PRP VBD VBG VBN IN NNS .\nPolice Thursday reported fewer violent incidents in France 's metropolitan centers .\tNNP NNP VBD JJR JJ NNS IN NNP POS JJ NNS .\nAuthorities also said they have suspended eight police officers pending investigation into Monday 's beating of a young man in a northern suburb of Paris during the disturbances .\tNNS RB VBD PRP VBP VBN CD NNS NNS VBG NN IN NNP POS NN IN DT JJ NN IN DT JJ NN IN NNP IN DT NNS .\nAfghan and coalition forces have killed at least 48 suspected militants in two operations in southern Afghanistan .\tJJ CC NN NNS VBP VBN IN JJS CD JJ NNS IN CD NNS IN JJ NNP .\nAn Afghan army general , Sher Mohammad Zazai , said Wednesday that 23 suspected Taliban fighters had been killed after Afghan and coalition forces stormed a Taliban stronghold near the capital of Uruzgan province .\tDT JJ NN NN , NNP NNP NNP , VBD NNP IN CD JJ NNP NNS VBD VBN VBN IN JJ CC NN NNS VBD DT NNP NN IN DT NN IN NNP NN .\nThe general said regional Taliban commander Mullah Ismail was among the militants killed in the assault .\tDT NN VBD JJ NNP NN NNP NNP VBD IN DT NNS VBN IN DT NN .\nIn neighboring Helmand province , Afghan officials said troops killed at least 25 suspected militants .\tIN JJ NNP NN , JJ NNS VBD NNS VBD IN JJS CD JJ NNS .\nThe Taliban-dominated province is where more than 500 British soldiers began carrying out a major air assault on a Taliban stronghold late last week .\tDT JJ NN VBZ WRB JJR IN CD JJ NNS VBD VBG RP DT JJ NN NN IN DT NNP NN RB JJ NN .\nMeanwhile , Afghan officials said at least seven civilians were killed in a roadside bombing in Helmand province .\tRB , JJ NNS VBD IN JJS CD NNS VBD VBN IN DT NN VBG IN NNP NN .\nIn southern Zabul province , local officials said two Afghan intelligence officers and four alleged Taliban fighters were killed Tuesday in separate incidents .\tIN JJ NNP NN , JJ NNS VBD CD JJ NN NNS CC CD JJ NNP NNS VBD VBN NNP IN JJ NNS .\nMarc Anthony has agreed to pay approximately $ 2.5 million in back taxes , after failing to file income tax returns for five years .\tNNP NNP VBZ VBN TO VB RB $ CD CD IN JJ NNS , IN VBG TO VB NN NN NNS IN CD NNS .\nManhattan District Attorney Robert Morgenthau said the Latin music singer , who is married to singer-actress Jennifer Lopez , failed to file returns from 2000 through 2004 on $ 15.5 million in income .\tNNP NNP NNP NNP NNP VBD DT JJ NN NN , WP VBZ VBN TO JJ NNP NNP , VBD TO VB NNS IN CD IN CD IN $ CD CD IN NN .\nMorgenthau said he did file for 2005 .\tNNP VBD PRP VBD VB IN CD .\nMarc Anthony - born Marco Antonio Muniz - signed the payment agreement April 3 .\tNNP NNP : VBN NNP NNP NNP : VBD DT NN NN NNP CD .\nMorgenthau said his office did not prosecute the 38-year-old singer because he was apparently unaware of errors on the part of the professional accountant who prepared his tax returns .\tNNP VBD PRP$ NN VBD RB VB DT JJ NN IN PRP VBD RB JJ IN NNS IN DT NN IN DT JJ NN WP VBD PRP$ NN NNS .\nAt least six people , including a U.S. soldier , have died in roadside bombs and shootings Saturday in Iraq .\tIN JJS CD NNS , VBG DT NNP NN , VBP VBN IN NN NNS CC NNS NNP IN NNP .\nIn a town 80 kilometers south of Baghdad , gunmen abducted a policeman and his brother and shot them .\tIN DT NN CD NNS RB IN NNP , NNS VBD DT NN CC PRP$ NN CC VBD PRP .\nAlso south of Baghdad , insurgents attacked an Iraqi army convoy , killing two soldiers .\tRB RB IN NNP , NNS VBD DT JJ NN NN , VBG CD NNS .\nIn western Baghdad , a roadside bomb killed an Iraqi policeman and wounded two others .\tIN JJ NNP , DT NN NN VBD DT JJ NN CC VBD CD NNS .\nThe U.S. military said an American soldier died when a roadside bomb hit his convoy southwest of Baghdad .\tDT NNP NN VBD DT JJ NN VBD WRB DT NN NN VBD PRP$ JJ NN IN NNP .\nThe bodies of at least six men , apparently killed execution-style , were found in the capital .\tDT NNS IN IN JJS CD NNS , RB VBN JJ , VBD VBN IN DT NN .\nThe violence comes as Iraqi leaders continue their efforts to form a new cabinet .\tDT NN VBZ IN JJ NNS VBP PRP$ NNS TO VB DT JJ NN .\nWashington says a national unity government will help stem the violence .\tNNP VBZ DT JJ NN NN MD VB VB DT NN .\nThis month , about 70 U.S. soldiers have died in Iraq , making it the deadliest month for US troops this year .\tDT NN , IN CD NNP NNS VBP VBN IN NNP , VBG PRP DT JJS NN IN NNP NNS DT NN .\nChina has ruled out holding a meeting with senior leaders from Japan and South Korea during an upcoming Asian economic meeting in Malaysia .\tNNP VBZ VBN RP VBG DT NN IN JJ NNS IN NNP CC NNP NNP IN DT JJ JJ JJ NN IN NNP .\nThe three nations have met on the sidelines of the Association of Southeast Asian Nations summit for the past six years .\tDT CD NNS VBP VBN IN DT NNS IN DT NNP IN NNP NNP NNP NN IN DT JJ CD NNS .\nChina 's foreign ministry spokesman said the three-way meeting would not take place due to reasons he described as ' known to all . '\tNNP POS JJ NN NN VBD DT JJ NN MD RB VB NN JJ TO NNS PRP VBD IN `` VBN TO DT . ``\nThat was an apparent reference to China 's objections to Japanese Prime Minister Junichiro Koizumi 's repeated visits to a controversial war shrine .\tDT VBD DT JJ NN TO NNP POS NNS TO JJ NNP NNP NNP NNP POS JJ NNS TO DT JJ NN NN .\nThe Yasukuni shrine in Tokyo honors Japan 's war dead , including those guilty of criminal acts during World War II .\tDT NNP NN IN NNP NNS NNP POS NN NN , VBG DT JJ IN JJ NNS IN NNP NNP NNP .\nCritics say the shrine glorifies Japan 's wartime past , but Mr. Koizumi says he visits the shrine to pray for peace .\tNNS VBP DT NN VBZ NNP POS NN NN , CC NNP NNP VBZ PRP VBZ DT NN TO VB IN NN .\nJapan 's Prime Minister Taro Aso has unveiled a nearly $ 300 billion economic stimulus package to bolster the world 's second largest economy and help it survive the global financial crisis .\tNNP POS NNP NNP NNP NNP VBZ VBN DT RB $ CD CD JJ NN NN TO VB DT NN POS JJ JJS NN CC VB PRP VB DT JJ JJ NN .\nMr. Aso announced the plan Thursday .\tNNP NNP VBD DT NN NNP .\nIt includes tax cuts , benefits to households , a reduction in highway tolls , and loans to help small businesses .\tPRP VBZ NN NNS , NNS TO NNS , DT NN IN NN NNS , CC NNS TO VB JJ NNS .\nThe stimulus package is the first drafted under Mr. Aso , who took over a month ago , replacing former Prime Minister Yasuo Fukuda .\tDT NN NN VBZ DT RB VBN IN NNP NNP , WP VBD RP DT NN RB , VBG JJ NNP NNP NNP NNP .\nMr. Fukuda stepped down over political deadlock in parliament and perceived mishandling of the economy .\tNNP NNP VBD RB IN JJ NN IN NN CC VBN NN IN DT NN .\nThe media and politicians have widely expected Mr. Aso to hold snap elections after taking office .\tDT NNS CC NNS VBP RB VBN NNP NNP TO VB JJ NNS IN VBG NN .\nBut , he says he wants to first focus on the economy .\tCC , PRP VBZ PRP VBZ TO JJ NN IN DT NN .\nElections in Japan must take place by September 2009 .\tNNS IN NNP MD VB NN IN NNP CD .\nTokyo is calling for dialogue with Beijing after violent anti-Japanese protests in China during the weekend .\tNNP VBZ VBG IN NN IN NNP IN JJ JJ NNS IN NNP IN DT NN .\nJapan 's chief cabinet secretary , Hiroyuki Hosada , told reporters Monday that hard work must be done to prevent misunderstandings from growing .\tNNP POS JJ NN NN , NNP NNP , VBD NNS NNP IN JJ NN MD VB VBN TO VB NNS IN VBG .\nHis remarks came a day after thousands of protesters mobbed Japan 's consulate in Guangzhou and a Japanese supermarket in Shenzhen Sunday .\tPRP$ NNS VBD DT NN IN NNS IN NNS VBD NNP POS NN IN NNP CC DT JJ NN IN NNP NNP .\nTwo Japanese students were attacked in a Shanghai restaurant Sunday , and on Saturday , protesters in Beijing broke windows at the Japanese Embassy .\tCD JJ NNS VBD VBN IN DT NNP NN NNP , CC IN NNP , NNS IN NNP VBD NNS IN DT JJ NNP .\nThe unrest was triggered by Tokyo 's decision to approve history textbooks that allegedly minimize Japan 's brutal occupation of China before and during the Second World War .\tDT NN VBD VBN IN NNP POS NN TO VB NN NNS WDT RB VB NNP POS JJ NN IN NNP IN CC IN DT JJ NNP NNP .\nChina 's Foreign Ministry says Japan must find a way to address the feelings of the Chinese people .\tNNP POS NNP NNP VBZ NNP MD VB DT NN TO VB DT NNS IN DT JJ NNS .\nAfghan soldiers remove the wreckage of damaged tankers from the explosion site in Kandahar Suspected Taleban rebels set off a bomb that destroyed five oil tankers carrying fuel for a U.S. military base in southern Afghanistan .\tJJ NNS VBP DT NN IN JJ NNS IN DT NN NN IN NNP NNP NNP NNS VBD RP DT NN WDT VBD CD NN NNS VBG NN IN DT NNP JJ NN IN JJ NNP .\nLocal officials say the pre-dawn attack Sunday blew up one of the trucks parked outside Kandahar airbase , and set off a chain of explosions that destroyed four other tankers .\tJJ NNS VBP DT JJ NN NNP VBD RP CD IN DT NNS VBN IN NNP NN , CC VBD RP DT NN IN NNS WDT VBD CD JJ NNS .\nThree truck drivers were critically injured in the incident .\tCD NN NNS VBD RB VBN IN DT NN .\nThe attack comes a day after the top U.S. commander in the country , Lieutenant General David Barno , predicted the Taleban militia would collapse within the next 12 months .\tDT NN VBZ DT NN IN DT JJ NNP NN IN DT NN , NNP NNP NNP NNP , VBD DT NNP NN MD VB IN DT JJ CD NNS .\nHe warned , however , that remaining militants financed and trained by al-Qaida allies may try to compensate by staging a ' high profile attack ' before the country 's first post-Taleban parliamentary elections .\tPRP VBD , RB , IN VBG NNS VBN CC VBN IN NNP NNS MD VB TO VB IN VBG DT `` JJ NN NN `` IN DT NN POS JJ JJ JJ NNS .\nPakistani police have used batons to break up a protest march by survivors of the October 8 earthquake protesting their eviction from a makeshift camp in Pakistani Kashmir .\tJJ NNS VBP VBN NNS TO VB RP DT NN NN IN NNS IN DT NNP CD NN VBG PRP$ NN IN DT NN NN IN JJ NNP .\nOfficials say the violence erupted Friday as some 200 people marched through the streets of Muzaffarabad .\tNNS VBP DT NN VBD NNP IN DT CD NNS VBD IN DT NNS IN NNP .\nPolice blocked their way , then began dispersing the crowd with batons , rifle butts and canes .\tNNP VBD PRP$ NN , RB VBD VBG DT NN IN NNS , JJ NNS CC NNS .\nSeveral people were reported injured .\tJJ NNS VBD VBN JJ .\nPolice made a number of arrests .\tNNS VBD DT NN IN NNS .\nOfficials say quake survivors had been asked to leave the informal camps set up throughout the city because the facilities lacked adequate sanitation and posed a public health risk .\tNNS VBP NN NNS VBD VBN VBN TO VB DT JJ NNS VBN RP IN DT NN IN DT NNS VBD JJ NN CC VBD DT JJ NN NN .\nInternational organizations say the 7.6 magnitude earthquake killed at least 86,000 Pakistanis and made some three million homeless .\tJJ NNS VBP DT CD NN NN VBD IN JJS CD NNS CC VBD DT CD CD NN .\nMore than 1,300 people were killed in Indian Kashmir .\tJJR IN CD NNS VBD VBN IN JJ NNP .\nUruguay 's President-elect Tabare Vazquez has announced his administration will re-establish diplomatic relations with Cuba .\tNNP POS NN NNP NNP VBZ VBN PRP$ NN MD VB JJ NNS IN NNP .\nMr. Vazquez announced his plans Wednesday in the Uruguayan capital , Montevideo , at a meeting of the leaders of his Broad Front coalition .\tNNP NNP VBD PRP$ NNS NNP IN DT JJ NN , NNP , IN DT NN IN DT NNS IN PRP$ JJ NNP NN .\nThe socialist leader said Uruguay will resume diplomatic ties with Havana on March first , when he takes office .\tDT JJ NN VBD NNP MD VB JJ NNS IN NNP IN NNP RB , WRB PRP VBZ NN .\nOutgoing Uruguayan President Jorge Battle severed diplomatic ties with Cuba in April , 2002 .\tVBG JJ NN NNP NNP VBD JJ NNS IN NNP IN NNP , CD .\nMr. Vazquez , an oncologist and former mayor of Montevideo , was elected president two weeks ago on the Broad Front ticket , with just slightly more than 50 percent of the vote .\tNNP NNP , DT NN CC JJ NN IN NNP , VBD VBN NN CD NNS RB IN DT JJ NNP NN , IN RB RB JJR IN CD NN IN DT NN .\nHis election ended 170 years of conservative party dominance .\tPRP$ NN VBD CD NNS IN JJ NN NN .\nVenezuela has rejected accusations from U.S. Secretary of State-nominee Condoleezza Rice that it meddles in the affairs of other Latin American countries .\tNNP VBZ VBN NNS IN NNP NNP IN NNP NNP NNP IN PRP VBZ IN DT NNS IN JJ JJ JJ NNS .\nAt a news conference in Caracas Wednesday , Venezuelan Foreign Minister Ali Rodriguez called the comments from Ms. Rice ' unacceptable . '\tIN DT NN NN IN NNP NNP , JJ NNP NNP NNP NNP VBD DT NNS IN NNP NNP `` JJ . ``\nHe denied that the government of President Hugo Chavez interferes in other countries ' affairs , and accused the United States of trying to meddle in Venezuela 's affairs .\tPRP VBD IN DT NN IN NNP NNP NNP VBZ IN JJ NNS POS NNS , CC VBD DT NNP NNPS IN VBG TO VB IN NNP POS NNS .\nMs. Rice made her comments Tuesday at her U.S. Senate confirmation hearing .\tNNP NNP VBD PRP$ NNS NNP IN PRP$ NNP NNP NN NN .\nShe called the Chavez government a ' negative force ' that affects other countries and suppresses opposing voices .\tPRP VBD DT NNP NN DT `` JJ NN `` WDT VBZ JJ NNS CC VBZ VBG NNS .\nShe also said the relationship between the leftist Mr. Chavez and Cuban leader Fidel Castro has been ' deeply troubling . '\tPRP RB VBD DT NN IN DT JJ NNP NNP CC JJ NN NNP NNP VBZ VBN `` RB JJ . ``\nU.S.-Venezuelan relations have been tense since Mr. Chavez took power in 1999 .\tJJ NNS VBP VBN JJ IN NNP NNP VBD NN IN CD .\nNorway has expelled an Iranian diplomat in a dispute that comes a week after Iran ordered a Norwegian diplomat to leave Tehran .\tNNP VBZ VBN DT JJ NN IN DT NN WDT VBZ DT NN IN NNP VBD DT JJ NN TO VB NNP .\nIn a statement Wednesday , the Norwegian Foreign Ministry did not identify the diplomat , but characterized the expulsion as a strong reaction to a similar move by Tehran several weeks ago .\tIN DT NN NNP , DT JJ NNP NNP VBD RB VB DT NN , CC VBD DT NN IN DT JJ NN TO DT JJ NN IN NNP JJ NNS RB .\nThe dispute erupted last month , when Oslo granted asylum to Iran 's former counsel-general , Mohammed Reza Heydari .\tDT NN VBD JJ NN , WRB NNP VBD NN TO NNP POS JJ NN , NNP NNP NNP .\nThe Iranian quit his post in January to protest Iran 's deadly crackdown on opposition demonstrators in the Islamic republic a month earlier .\tDT NN VBD PRP$ NN IN NNP TO VB NNP POS JJ NN IN NN NNS IN DT JJ NN DT NN RBR .\nHeydari went into hiding immediately after his resignation , saying he feared for his life .\tNNP VBD IN VBG RB IN PRP$ NN , VBG PRP VBD IN PRP$ NN .\nThe U.S. Energy Department says oil supplies fell by 8,00,000 barrels last week , as prices continue to climb toward $ 100 a barrel .\tDT NNP NNP NNP VBZ NN NNS VBD IN CD NNS JJ NN , IN NNS VBP TO VB IN $ CD DT NN .\nCrude oil prices rose above $ 98 a barrel during trading in New York Wednesday as the dollar weakened and investors anticipated the drop in U.S. stockpiles .\tJJ NN NNS VBD IN $ CD DT NN IN NN IN NNP NNP NNP IN DT NN VBD CC NNS VBD DT NN IN NNP NNS .\nIndustry experts say it is inevitable that oil will reach the $ 100 mark .\tNN NNS VBP PRP VBZ JJ IN NN MD VB DT $ CD NN .\nInvestors have been buying oil to counter the risks of inflation posed by the weak dollar .\tNNS VBP VBN VBG NN TO VB DT NNS IN NN VBN IN DT JJ NN .\nAs the dollar declines in value , oil becomes cheaper for foreign investors .\tIN DT NN VBZ IN NN , NN VBZ JJR IN JJ NNS .\nA report from the International Energy Agency , IAEA , Wednesday says oil costs will continue to rise through the year 2030 , as demand rises , particularly in China and India .\tDT NN IN DT NNP NNP NNP , NNP , NNP VBZ NN NNS MD VB TO VB IN DT NN CD , IN NN NNS , RB IN NNP CC NNP .\nA major battle is shaping up in the U.S. Senate , with Democratic majority leader Harry Reid accusing congressional Republicans of abusing power for their own political good .\tDT JJ NN VBZ VBG RP IN DT NNP NNP , IN JJ NN NN NNP NNP VBG JJ NNS IN VBG NN IN PRP$ JJ JJ NN .\nSpeaking in his party 's weekly radio address Saturday , Senator Reid of Nevada said plans by Republican leaders to ban the use of filibusters threatens the checks-and-balances system devised by the nation 's founding fathers .\tVBG IN PRP$ NN POS JJ NN NN NNP , NNP NNP IN NNP VBD NNS IN JJ NNS TO VB DT NN IN NNS VBZ DT NNS NN VBN IN DT NN POS NN NNS .\nHe said stripping away the power of senators to use extended debate to stall or reject presidential judicial nominees would simply make the U.S. Senate a rubber stamp for the White House .\tPRP VBD VBG RB DT NN IN NNS TO VB JJ NN TO VB CC VB JJ JJ NNS MD RB VB DT NNP NNP DT NN NN IN DT NNP NNP .\nMr. Reid has previously threatened to retaliate by bringing Senate business to a virtual halt if the Republican plan , called the nuclear option , is enacted .\tNNP NNP VBZ RB VBN TO VB IN VBG NNP NN TO DT JJ NN IN DT NNP NN , VBD DT JJ NN , VBZ VBN .\nTwo surveys of Americans this week suggest support for President Bush is near or at an all-time low .\tCD NNS IN NNS DT NN VBP NN IN NNP NNP VBZ JJ CC IN DT JJ NN .\nA poll by CNN , USA Today and the Gallup released Friday indicates 38 percent of Americans approve of the way the president is handling his job , a point higher than the record low the group found last November .\tDT NN IN NNP , NNP NNP CC DT NNP VBN NNP VBZ CD NN IN NNS VBP IN DT NN DT NN VBZ VBG PRP$ NN , DT NN JJR IN DT NN NN DT NN VBN JJ NNP .\nThose surveyed noted concerns over the war in Iraq , the influence business has on the administration , and the state of health care .\tDT VBN VBD NNS IN DT NN IN NNP , DT NN NN VBZ IN DT NN , CC DT NN IN NN NN .\nThe recent controversy over a Dubai company taking over management at some U.S. ports did not appear to have influenced respondents ' opinions .\tDT JJ NN IN DT NNP NN VBG RP NN IN DT NNP NNS VBD RB VB TO VB VBN NNS POS NNS .\nA poll earlier in the week by CBS News found Mr. Bush 's popularity at an all-time low , 34 percent , with those questioned voicing discontent with the port deal , the government response to Hurricane Katrina , and the Iraq war .\tDT NN RBR IN DT NN IN NNP NNP VBD NNP NNP POS NN IN DT JJ NN , CD NN , IN DT VBN VBG NN IN DT JJ NN , DT NN NN TO NNP NNP , CC DT NNP NN .\nThe New York Times newspaper reports the Pentagon used military analysts working for U.S. television networks to generate favorable coverage of the war in Iraq and other issues .\tDT NNP NNP NNP NN VBZ DT NNP VBD JJ NNS VBG IN NNP NN NNS TO VB JJ NN IN DT NN IN NNP CC JJ NNS .\nThe newspaper Sunday said the analysts were invited to private briefings with senior military leaders , taken on tours of Iraq and given access to classified intelligence .\tDT NN NNP VBD DT NNS VBD VBN TO JJ NNS IN JJ JJ NNS , VBN IN NNS IN NNP CC VBN NN TO JJ NN .\nThe Times also said viewers were not made aware that most of the analysts have ties to military contractors .\tDT NNP RB VBD NNS VBD RB VBN JJ IN JJS IN DT NNS VBP NNS TO JJ NNS .\nMany of the analysts are retired high-ranking military officials .\tNN IN DT NNS VBP JJ JJ JJ NNS .\nThe report says the companies included large defense businesses and smaller companies that had a vested interest in the war policies the analysts discussed .\tDT NN VBZ DT NNS VBD JJ NN NNS CC JJR NNS WDT VBD DT JJ NN IN DT NN NNS DT NNS VBD .\nThe Times quotes a Pentagon spokesman , Bryan Whitman , as saying the analysts had been given only factual information about the war .\tDT NNP VBZ DT NNP NN , NNP NNP , IN VBG DT NNS VBD VBN VBN RB JJ NN IN DT NN .\nThe newspaper says it based its report on 8,000 email messages , transcripts and records it secured after winning a lawsuit against the Pentagon .\tDT NN VBZ PRP VBD PRP$ NN IN CD NN NNS , NNS CC NNS PRP VBD IN VBG DT NN IN DT NNP .\nAfter September 11 , Russia , India , and China joined the United States ' anti-terrorism coalition .\tIN NNP CD , NNP , NNP , CC NNP VBD DT NNP NNPS POS JJ NN .\nSome political analysts suggest that a major motive was to gain international acceptance for these countries ' own policies toward minorities such as the Chechens , Kashmiris , Tibetans , and Uighurs .\tDT JJ NNS VBP IN DT JJ NN VBD TO VB JJ NN IN DT NNS POS JJ NNS IN NNS JJ IN DT NNS , NNS , NNS , CC NNS .\nOf these groups , the least well known are the Uighurs , a Turkic-speaking Muslim people of northwestern China .\tIN DT NNS , DT JJS RB VBN VBP DT NNS , DT JJ NN NNS IN JJ NNP .\nSince the People 's Republic of China was founded , the Uighurs have resisted Beijing 's attempts to control their religious and political activities .\tIN DT NNP POS NNP IN NNP VBD VBN , DT NNS VBP VBN NNP POS NNS TO VB PRP$ JJ CC JJ NNS .\nIn the past few years , Uighur separatist groups have been blamed for attacks in northwest China as well as the capital .\tIN DT JJ JJ NNS , NNP NN NNS VBP VBN VBN IN NNS IN JJ NNP RB RB IN DT NN .\nChinese officials have warned that Beijing will not tolerate separatism or social disturbances under the guise of religion .\tJJ NNS VBP VBN IN NNP MD RB VB NN CC JJ NNS IN DT NN IN NN .\nJudith Latham explores the condition of the ' Uighurs of China ' in this edition of Dateline .\tNNP NNP VBZ DT NN IN DT `` NNS IN NNP `` IN DT NN IN NNP .\nAn Indian unmanned mission to the moon will carry two scientific instruments designed by the U.S. space agency , NASA , to find minerals and ice on the lunar surface .\tDT JJ JJ NN TO DT NN MD VB CD JJ NNS VBN IN DT NNP NN NN , NNP , TO VB NNS CC NN IN DT NN NN .\nThe deal was signed Tuesday , by NASA administrator Michael Griffin and Indian space agency ISRO 's Chairman G. Madhavan Nair in the southern Indian city of Bangalore .\tDT NN VBD VBN NNP , IN NNP NN NNP NNP CC JJ NN NN NNP POS NNP NNP NNP NNP IN DT JJ JJ NN IN NNP .\nThe mission has been named Chandrayaan-1 , and is set to launch in 2007 or 2008 .\tDT NN VBZ VBN VBN NNP , CC VBZ VBN TO VB IN CD CC CD .\nIt will map the lunar surface using an array of sensors .\tPRP MD VB DT NN NN VBG DT NN IN NNS .\nThis deal is being seen as another sign of the increasingly close ties between New Delhi and Washington after decades of distance during the Cold War era .\tDT NN VBZ VBG VBN IN DT NN IN DT RB JJ NNS IN NNP NNP CC NNP IN NNS IN NN IN DT NNP NNP NN .\nChandrayaan-1 also will carry scientific instruments from European research centers .\tNNP RB MD VB JJ NNS IN JJ NN NNS .\nBurma 's pro-democracy leader , Aung San Suu Kyi , is resting at her home in Rangoon after being treated at a hospital for a stomach illness .\tNNP POS JJ NN , NNP NNP NNP NNP , VBZ VBG IN PRP$ NN IN NNP IN VBG VBN IN DT NN IN DT NN NN .\nA spokesman for her party , the National League for Democracy , tells reporters she was taken to the hospital Friday , but is now back at home .\tDT NN IN PRP$ NN , DT NNP NNP IN NNP , VBZ NNS PRP VBD VBN TO DT NN NNP , CC VBZ RB RB IN NN .\nHe said she was suffering from acute diarrhea .\tPRP VBD PRP VBD VBG IN JJ NN .\nThe Burmese military confirmed that the pro-democracy leader has been sick .\tDT JJ NN VBD IN DT JJ NN VBZ VBN JJ .\nIt has confined her to her home for much of the past two decades .\tPRP VBZ VBN PRP$ TO PRP$ NN IN NN IN DT JJ CD NNS .\nOn Friday , the military leadership confirmed that Aung San Suu Kyi 's house arrest was extended in May for another year .\tIN NNP , DT JJ NN VBD IN NNP NNP NNP NNP POS NN NN VBD VBN IN NNP IN DT NN .\nThe government said she remains a threat to the state .\tDT NN VBD PRP VBZ DT NN TO DT NN .\nThe United States , Britain and several of Burma 's neighbors in Southeast Asia have urged the military to release Aung San Suu Kyi and take steps toward political reconciliation in Burma .\tDT NNP NNPS , NNP CC JJ IN NNP POS NNS IN NNP NNP VBP VBN DT JJ TO VB NNP NNP NNP NNP CC VB NNS IN JJ NN IN NNP .\nHundreds of Iraqis gathered Friday in a Christian church in Baghdad to mark 40 days since al-Qaida militants carried out a deadly October siege there .\tNNS IN NNS VBD NNP IN DT JJ NN IN NNP TO VB CD NNS IN NNP NNS VBD RP DT JJ NNP NN RB .\nChristians at the badly damaged Our Lady of Salvation ( Sayidat al-Nejat ) church remembered the 46 worshippers who died in the October 31 attack .\tNNS IN DT RB VBN PRP$ NN IN NNP LRB NNP NNP RRB NN VBD DT CD NNS WP VBD IN DT NNP CD NN .\nWitnesses say militants entered the church firing guns and immediately killed one of the priests at point-blank range .\tNNS VBP NNS VBD DT NN NN NNS CC RB VBD CD IN DT NNS IN JJ NN .\nThe militants then held more than 100 worshippers as hostages until Iraqi forces stormed the church and ended the siege .\tDT NNS RB VBD RBR IN CD NNS IN NNS IN JJ NNS VBD DT NN CC VBD DT NN .\nThe families of victims and survivors were among those who attended Friday 's mass .\tDT NNS IN NNS CC NNS VBD IN DT WP VBD NNP POS NN .\nAs many as 1.2 million Christians lived in Iraq before the 2003 invasion to oust leader Saddam Hussein .\tRB JJ IN CD CD NNS VBD IN NNP IN DT CD NN TO VB NN NNP NNP .\nHowever , many have since fled abroad in the wake of stepped-up violence by al-Qaida-linked Muslim insurgents .\tRB , NN VBP IN VBN RB IN DT NN IN JJ NN IN JJ NNP NNS .\nJamaica 's prime minister has announced plans for a huge economic stimulus package to stave off some of the side effects of the global financial slowdown .\tNNP POS JJ NN VBZ VBN NNS IN DT JJ JJ NN NN TO VB RP DT IN DT JJ NNS IN DT JJ JJ NN .\nIn a televised broadcast Sunday night , Bruce Golding said the measures would mostly be aimed at small businesses , manufacturing and the ailing tourism industry .\tIN DT JJ NN NNP NN , NNP NNP VBD DT NNS MD RB VB VBN IN JJ NNS , NN CC DT JJ NN NN .\nThe plan includes tax cuts and at least $ 6.4 million in loans for the tourism sector to help with cash flow .\tDT NN VBZ NN NNS CC IN JJS $ CD CD IN NNS IN DT NN NN TO VB IN NN NN .\nAnother $ 4.5 million will go toward small businesses .\tDT $ CD CD MD VB IN JJ NNS .\nMr. Golding also pledged to help workers who have lost their jobs and borrowers who are having difficulty making their mortgage payments .\tNNP NNP RB VBD TO VB NNS WP VBP VBN PRP$ NNS CC NNS WP VBP VBG NN VBG PRP$ NN NNS .\nMr. Golding said the moves would help weather the crisis , but that further re-structuring would be needed to make Jamaica more business and investment friendly .\tNNP NNP VBD DT NNS MD VB VB DT NN , CC IN JJ NN MD VB VBN TO VB NNP RBR NN CC NN JJ .\nColombian leftist rebels have attacked a local military post with homemade rockets , killing 14 marines and wounding 25 others .\tJJ JJ NNS VBP VBN DT JJ JJ NN IN JJ NNS , VBG CD NNS CC VBG CD NNS .\nNavy officials say members of the Revolutionary Armed Forces of Colombia , or FARC , carried out the attack in the southwestern county of Iscuande .\tNN NNS VBP NNS IN DT NNP NNP NNS IN NNP , CC NNP , VBD IN DT NN IN DT JJ NN IN NNP .\nThe Associated Press reports some of the troops were natives of the area and were receiving military training .\tDT NNP NNP VBZ DT IN DT NNS VBD NNS IN DT NN CC VBD VBG JJ NN .\nColombia is mired in a long-running conflict involving leftist rebels , rightist paramilitaries and the government .\tNNP VBZ VBN IN DT JJ NN VBG JJ NNS , JJ NNS CC DT NN .\nThe violence leaves thousands dead each year .\tDT NN VBZ NNS JJ DT NN .\nSince 2000 , the United States has provided Colombia with about three million dollars in mostly military aid to combat the rebels and drug production .\tIN CD , DT NNP NNPS VBZ VBN NNP IN IN CD CD NNS IN RB JJ NN TO VB DT NNS CC NN NN .\nThe United Nations says Somali gunmen who hijacked a U.N.-chartered vessel carrying food aid for tsunami victims have released the ship after holding it for more than two months .\tDT NNP NNP VBZ JJ NNS WP VBD DT JJ NN VBG NN NN IN NN NNS VBP VBN DT NN IN VBG PRP IN JJR IN CD NNS .\nA spokeswoman for the U.N. World Food Program , Rene McGuffin , says the vessel is en route to the Somali port of El-Maan and is expected to arrive in a few days .\tDT NN IN DT NNP NNP NNP NNP , NNP NNP , VBZ DT NN VBZ IN NN TO DT JJ NN IN NNP CC VBZ VBN TO VB IN DT JJ NNS .\nShe says the U.N. agency has negotiated with El-Maan port authorities to ensure a free passage of the food aid to Somalia 's transitional government for distribution .\tPRP VBZ DT NNP NN VBZ VBN IN JJ NN NNS TO VB DT JJ NN IN DT NN NN TO NNP POS JJ NN IN NN .\nThe World Food Program hired the Kenyan vessel to carry 850 metric tons of rice donated by Japan and Germany .\tDT NNP NNP NNP VBD DT JJ NN TO VB CD JJ NNS IN NN VBN IN NNP CC NNP .\nThe ship and its 10-person crew was hijacked by pirates as it sailed from Kenya to Somalia in June .\tDT NN CC PRP$ JJ NN VBD VBN IN NNS IN PRP VBD IN NNP TO NNP IN NNP .\nThe International Criminal Court 's chief prosecutor , Luis Moreno-Ocampo , has asked judges to report Sudan to the U.N. Security Council for failing to comply with court warrants .\tDT NNP NNP NNP POS NN NN , NNP NNP , VBZ VBN NNS TO VB NNP TO DT NNP NNP NNP IN VBG TO VB IN NN NNS .\nEarlier this week , Moreno-Ocampo formally requested the judges issue a finding of ' non-cooperation ' against Sudan 's government for failing to hand over former Humanitarian Affairs Minister Ahmed Harun and militia leader Ali Kushayb .\tRBR DT NN , NNP RB VBD DT NNS VBP DT NN IN `` JJ `` IN NNP POS NN IN VBG TO VB RP JJ NNP NNP NNP NNP NNP CC NNP NN NNP NNP .\nThe two men were charged in 2007 with committing crimes against humanity and war crimes in Sudan 's war-torn Darfur region .\tDT CD NNS VBD VBN IN CD IN VBG NNS IN NN CC NN NNS IN NNP POS JJ NNP NN .\nSudanese President Omar al-Bashir is also wanted by the court for alleged war crimes in Darfur .\tJJ NNP NNP NNP VBZ RB VBN IN DT NN IN JJ NN NNS IN NNP .\nHe has refused to comply with a warrant for his arrest .\tPRP VBZ VBN TO VB IN DT NN IN PRP$ NN .\nDarfur rebel groups have been fighting the Sudanese government since 2003 .\tNNP NN NNS VBP VBN VBG DT JJ NN IN CD .\nThe United Nations says the fighting and related violence has killed up to 3,00,000 people and displaced some 2.7 million others .\tDT NNP NNP VBZ DT NN CC JJ NN VBZ VBN RP TO CD NNS CC VBD DT CD CD NNS .\nSudan puts the death toll at 10,000 .\tNNP VBZ DT NN NN IN CD .\nA Pakistani immigrant has been sentenced to 30 years in prison for helping an al-Qaida operative gain entrance to the United States .\tDT JJ NN VBZ VBN VBN TO CD NNS IN NN IN VBG DT NNP JJ NN NN TO DT NNP NNPS .\nUzair Paracha had been convicted last November of posing as former U.S. resident Majid Khan , in order to obtain documents so the al-Qaida operative could slip back into the United States .\tNNP NNP VBD VBN VBN JJ NNP IN VBG IN JJ NNP NN NNP NNP , IN NN TO VB NNS IN DT NNP NN MD VB RB IN DT NNP NNPS .\nProsecutors said Khan plotted to bomb underground gasoline storage tanks in the eastern U.S. state of Maryland in 2003 .\tNNS VBD NNP VBD TO VB JJ NN NN NNS IN DT JJ NNP NN IN NNP IN CD .\nKhan never arrived in the country and the plot was never carried out .\tNNP RB VBD IN DT NN CC DT NN VBD RB VBN RP .\nParacha 's lawyers told the court that he had been duped into participating in the plot , and that his statements to investigators had occurred under pressure .\tNNP POS NNS VBD DT NN IN PRP VBD VBN VBN IN VBG IN DT NN , CC IN PRP$ NNS TO NNS VBD VBN IN NN .\nThe judge in the case said Paracha was fully aware that he was dealing with al-Qaida when he agreed to help Khan .\tDT NN IN DT NN VBD NNP VBD RB JJ IN PRP VBD VBG IN NNP WRB PRP VBD TO VB NNP .\nThe U.S. military is denying reports that Pakistani soldiers fired at two U.S. helicopters for allegedly violating Pakistani airspace .\tDT NNP NN VBZ VBG NNS IN JJ NNS VBD IN CD NNP NNS IN RB VBG JJ NN .\nLieutenant Nathan Perry Monday told VOA that U.S. helicopters did not enter\tNNP NNP NNP NNP VBD NNP IN NNP NNS VBD RB VB\nPakistan and that there was no operation going on in the border area that would cross into Pakistan .\tNNP CC IN EX VBD DT NN VBG IN IN DT NN NN WDT MD VB IN NNP .\nLocal officials in Pakistan 's northern tribal region said the incident happened late Sunday when the helicopters crossed into Pakistan 's North Waziristan district .\tJJ NNS IN NNP POS JJ JJ NN VBD DT NN VBD JJ NNP WRB DT NNS VBD IN NNP POS NNP NNP NN .\nThe Pakistani army has so far not commented on the alleged incident .\tDT JJ NN VBZ RB RB RB VBN IN DT JJ NN .\nLast week , Pakistani President Asif Ali Zardari said his government will not tolerate violations of Pakistan 's sovereignty by any power in the name of combating terrorism .\tJJ NN , JJ NNP NNP NNP NNP VBD PRP$ NN MD RB VB NNS IN NNP POS NN IN DT NN IN DT NN IN VBG NN .\nHis comments were made after a series of suspected U.S. missile strikes and a ground attack against militant targets in Pakistan .\tPRP$ NNS VBD VBN IN DT NN IN JJ NNP NN NNS CC DT NN NN IN JJ NNS IN NNP .\nIndia 's prime minister has met with top nuclear scientists to discuss their objections to changes proposed by US lawmakers in the civilian nuclear agreement reached last year between New Delhi and Washington .\tNNP POS JJ NN VBZ VBN IN JJ JJ NNS TO VB PRP$ NNS TO NNS VBN IN NNP NNS IN DT JJ JJ NN VBN JJ NN IN NNP NNP CC NNP .\nPrime Minister Manmohan Singh met with the group of eight scientists Wednesday after they had urged India 's parliament to reject the changes .\tJJ NN NNP NNP VBD IN DT NN IN CD NNS NNP IN PRP VBD VBN NNP POS NN TO VB DT NNS .\nThey said in an open letter earlier this week that the proposed modifications would place restraints on India 's nuclear options .\tPRP VBD IN DT JJ NN RBR DT NN IN DT VBN NNS MD VB NNS IN NNP POS JJ NNS .\nMr. Singh is scheduled to speak to the upper house of parliament Thursday and is expected to reassure it that the government will not accept any changes to last year 's deal .\tNNP NNP VBZ VBN TO VB TO DT JJ NN IN NN NNP CC VBZ VBN TO VB PRP IN DT NN MD RB VB DT NNS TO JJ NN POS NN .\nThe U.S. House of Representatives approved the changes in India-US civilian nuclear agreement in July .\tDT NNP NNP IN NNP VBD DT NNS IN JJ JJ JJ NN IN NNP .\nThe U.S. Senate is expected to vote on it next month .\tDT NNP NNP VBZ VBN TO VB IN PRP JJ NN .\nIraq 's parliament is due to hold a special session Sunday to try to resolve political disputes delaying the passage of a provincial elections law .\tNNP POS NN VBZ JJ TO VB DT JJ NN NNP TO VB TO VB JJ NNS VBG DT NN IN DT JJ NNS NN .\nParliamentary speaker Mahmoud al-Mashhadani says a special session is needed to debate the measure because the assembly went into summer recess Wednesday .\tJJ NN NNP NNP VBZ DT JJ NN VBZ VBN TO VB DT NN IN DT NN VBD IN NN NN NNP .\nIraq 's government had hoped to hold provincial elections in October , but disagreements between Iraqi factions about electoral guidelines mean the vote may be delayed until next year .\tNNP POS NN VBD VBN TO VB JJ NNS IN NNP , CC NNS IN JJ NNS IN JJ NNS VBP DT NN MD VB VBN IN JJ NN .\nIraqi Kurdish lawmakers have rejected proposals to share provincial council seats in Kirkuk equally among the region 's ethnic groups .\tJJ NNP NNS VBP VBN NNS TO VB JJ NN NNS IN NNP RB IN DT NN POS JJ NNS .\nIraqi Kurds and their allies currently hold the majority in Kirkuk 's assembly .\tJJ NNPS CC PRP$ NNS RB VBP DT NN IN NNP POS NN .\nHundreds of Iraqi Kurds protested in the northern city of Sulaimaniya Wednesday against the proposal for power-sharing in Kirkuk .\tNNS IN JJ NNPS VBD IN DT JJ NN IN NNP NNP IN DT NN IN NN IN NNP .\nA similar protest in the city of Irbil on Tuesday drew thousands of people .\tDT JJ NN IN DT NN IN NNP IN NNP VBD NNS IN NNS .\nEthiopia says it has accepted ' in principle ' an independent commission 's ruling on its border with former foe Eritrea .\tNNP VBZ PRP VBZ VBN `` IN NN `` DT JJ NN POS NN IN PRP$ NN IN JJ NN NN .\nEthiopian Prime Minister Meles Zenawi told parliament members Thursday the government has accepted the ruling in the best interests of the country .\tJJ NNP NNP NNP NNP VBD NN NNS NNP DT NN VBZ VBN DT NN IN DT JJS NNS IN DT NN .\nEthiopia and Eritrea fought a 2.5-year border war between May 1998 and December 2000 in which tens of thousands of people were killed .\tNNP CC NNP VBD DT JJ NN NN IN NNP CD CC NNP CD IN WDT NNS IN NNS IN NNS VBD VBN .\nAs part of a deal to end the war , the two nations agreed to form an independent boundary commission and that its decision would be final and binding .\tIN NN IN DT NN TO VB DT NN , DT CD NNS VBD TO VB DT JJ JJ NN CC IN PRP$ NN MD VB JJ CC JJ .\nEritrea accepted the April 2000 decision but Ethiopia said it disagreed with some aspects of its findings .\tNNP VBD DT NNP CD NN CC NNP VBD PRP VBD IN DT NNS IN PRP$ NNS .\nIrish officials have agreed to meet with representatives of about 40 Afghan asylum seekers on a hunger strike in Dublin 's Saint Patrick 's Cathedral after being denied permission to remain in Ireland .\tJJ NNS VBP VBN TO VB IN NNS IN IN CD JJ NN NNS IN DT NN NN IN NNP POS NNP NNP POS NNP IN VBG VBN NN TO VB IN NNP .\nChurch and local authorities Tuesday said Justice Ministry officials will meet protest representatives to discuss their asylum requests .\tNNP CC JJ NNS NNP VBD NNP NNP NNS MD VB NN NNS TO VB PRP$ NN NNS .\nAt least five protesters suffering from dehydration have been hospitalized since the hunger strike began Sunday .\tIN JJS CD NNS VBG IN NN VBP VBN VBN IN DT NN NN VBD NNP .\nMany in the group began taking water after the Irish officials agreed to meet with them .\tNN IN DT NN VBD VBG NN IN DT JJ NNS VBD TO VB IN PRP .\nOfficials say the group is frustrated over the rejection of their applications to remain in Ireland .\tNNS VBP DT NN VBZ VBN IN DT NN IN PRP$ NNS TO VB IN NNP .\nThey say their lives will be in danger if they are forced to return to Afghanistan .\tPRP VBP PRP$ NNS MD VB IN NN IN PRP VBP VBN TO VB TO NNP .\nJustice ministry officials have said all the asylum applications were handled in a comprehensive and fair manner .\tNN NN NNS VBP VBN PDT DT NN NNS VBD VBN IN DT JJ CC JJ NN .\nA purported spokesman for the Taleban says members of the group have killed four kidnapped foreigners but released their four Afghan colleagues .\tDT JJ NN IN DT NNP VBZ NNS IN DT NN VBP VBN CD VBN NNS CC VBD PRP$ CD JJ NNS .\nHe said the foreigners were killed without demands because demands were never met in the past .\tPRP VBD DT NNS VBD VBN IN NNS IN NNS VBD RB VBN IN DT NN .\nBut there is no independent confirmation about the fate of the eight men .\tCC EX VBZ DT JJ NN IN DT NN IN DT CD NNS .\nThe four ethnic Albanians and four Afghans were abducted in an area between the restive southern provinces of Kandahar and Helmand .\tDT CD JJ NNS CC CD NNS VBD VBN IN DT NN IN DT JJ JJ NNS IN NNP CC NNP .\nThey all worked for Ecolog , a German cleaning company contracted to U.S.-led forces .\tPRP DT VBD IN NNP , DT JJ NN NN VBD TO JJ NNS .\nIn a separate development , U.S. military officials say coalition forces have detained 11 militants suspected of involvement in a bombing that killed four American troops in eastern Kunar province Sunday .\tIN DT JJ NN , NNP JJ NNS VBP NN NNS VBP VBN CD NNS VBN IN NN IN DT NN WDT VBD CD JJ NNS IN JJ NNP NN NNP .\nMeanwhile , the U.S. military says another American serviceman was killed Monday when his vehicle overturned during a combat operation in eastern Nangarhar province .\tRB , DT NNP NN VBZ DT JJ NN VBD VBN NNP WRB PRP$ NN VBD IN DT NN NN IN JJ NNP NN .\nFormer Haitian President Jean-Bertrand Aristide says he hopes to return to Haiti as soon as possible , after nearly two years in exile in South Africa .\tJJ JJ NNP NNP NNP VBZ PRP VBZ TO VB TO NNP RB RB IN JJ , IN RB CD NNS IN NN IN NNP NNP .\nMr. Aristide told South African television Tuesday , he is in talks with Haitian officials about his return , now that Haiti has elected a new president .\tNNP NNP VBD NNP NNP NN NNP , PRP VBZ IN NNS IN JJ NNS IN PRP$ NN , RB IN NNP VBZ VBN DT JJ NN .\nAristide left the country after a popular revolt in 2004 that brought down his presidency .\tNNP VBD DT NN IN DT JJ NN IN CD WDT VBD RP PRP$ NN .\nHaiti 's new leader is former Aristide ally Rene Preval , who was declared the winner of this month 's election after a controversial change in the way blank ballots were counted .\tNNP POS JJ NN VBZ JJ NNP NN NNP NNP , WP VBD VBN DT NN IN DT NN POS NN IN DT JJ NN IN DT NN JJ NNS VBD VBN .\nEarlier Tuesday , Haiti 's chief elections official , Jacques Bernard , fled to the United States after receiving threats and finding his home ransacked .\tRBR NNP , NNP POS JJ NNS NN , NNP NNP , VBD TO DT NNP NNPS IN VBG NNS CC VBG PRP$ NN VBD .\nThe United Nations says it will summon more Syrian officials for questioning in its probe of the assassination of former Lebanese Prime Minister Rafik al-Hariri .\tDT NNP NNP VBZ PRP MD VB RBR JJ NNS IN VBG IN PRP$ NN IN DT NN IN JJ JJ NNP NNP NNP NNP .\nIn an interview with Lebanon 's al-Mustaqbal newspaper , which is owned by the Hariri family , U.N. chief investigator Detlev Mehlis says he will ask permission from Syria in the next few days to question more officials about the assassination .\tIN DT NN IN NNP POS JJ NN , WDT VBZ VBN IN DT NNP NN , NNP NN NN NNP NNP VBZ PRP MD VB NN IN NNP IN DT JJ JJ NNS TO VB RBR NNS IN DT NN .\nHe did not specify which officials he wants to question .\tPRP VBD RB VB WDT NNS PRP VBZ TO VB .\nInternational investigators interrogated five Syrian officials in the Austrian capital , Vienna , this week in connection with the February 14 truck bomb that killed Mr. Hariri and 22 others .\tJJ NNS VBD CD JJ NNS IN DT JJ NN , NNP , DT NN IN NN IN DT NNP CD NN NN WDT VBD NNP NNP CC CD NNS .\nMr. Mehlis said the Vienna interviews were more fruitful than a series of earlier interrogation sessions in Damascus .\tNNP NNP VBD DT NNP NNS VBD RBR JJ IN DT NN IN JJR NN NNS IN NNP .\nIn an interim report in October , the U.N. investigator implicated senior Syrian security officials and their Lebanese allies in the murder .\tIN DT JJ NN IN NNP , DT NNP NN VBD JJ JJ NN NNS CC PRP$ JJ NNS IN DT NN .\nThe U.S. military says American Marines accused of killing 19 Afghan civilians while responding to an ambush last year acted in accordance with military rules .\tDT NNP NN VBZ NNP NNP VBN IN VBG CD JJ NNS IN VBG TO DT NN JJ NN VBD IN NN IN JJ NNS .\nMilitary officials said Friday the commander of Marine Corps forces ( Central Command ) decided not to bring criminal charges against officers involved in the March 2007 operation .\tNN NNS VBD NNP DT NN IN NNP NNP NNS LRB NNP NNP RRB VBD RB TO VB JJ NNS IN NNS VBN IN DT NNP CD NN .\nOfficials said Lieutenant General Samuel Helland determined the officers acted ' appropriately ' after coming under attack in Afghanistan 's eastern Nangarhar province .\tNNS VBD NNP NNP NNP NNP VBD DT NNS VBD `` RB `` IN VBG IN NN IN NNP POS JJ NNP NN .\nThe military has called the incident a ' complex attack , ' in which a suicide car bomber rammed a U.S. convoy before other militants opened fire , sparking a gun battle .\tDT NN VBZ VBN DT NN DT `` JJ NN , `` IN WDT DT NN NN NN VBD DT NNP NN IN JJ NNS VBD NN , VBG DT NN NN .\nAfghan witnesses and police have said U.S. troops fired on civilians , killing up to 19 people and wounding several others .\tJJ NNS CC NNS VBP VBN NNP NNS VBD IN NNS , VBG RP TO CD NNS CC VBG JJ NNS .\nU.S. officials have said it is not clear whether the civilians were killed by American troops or the militants .\tNNP NNS VBP VBN PRP VBZ RB JJ IN DT NNS VBD VBN IN JJ NNS CC DT NNS .\nArgentine tennis player Juan Ignacio Chela and Spanish veteran Carlos Moya have reached the quarterfinals at the U.S. Open in Flushing Meadows , New York .\tJJ NN NN NNP NNP NNP CC JJ NN NNP NNP VBP VBN DT NNS IN DT NNP NNP IN NNP NNP , NNP NNP .\nChela needed three hours and 41 minutes and five sets to defeat Stanilas Warwrinka of Switzerland , 04-Jun , 06-Feb , 07-Jun , 01-Jun , 06-Apr .\tNNP VBD CD NNS CC CD NNS CC CD NNS TO VB NNP NNP IN NNP , CD , CD , CD , CD , CD .\nThe Argentine will next face the winner of all-Spanish encounter between second seed Rafael Nadal and 15th seed David Ferrer .\tDT NN MD RB VB DT NN IN JJ NN IN JJ NN NNP NNP CC JJ NN NNP NNP .\nMoya , the 17th seed , reached the quarterfinals for the first time since 1998 with a four-sets victory over 19-year-old Latvian Ernest Gulbis , 07-May , 06-Feb , 06-Jul , 06-Apr .\tNNP , DT JJ NN , VBD DT NNS IN DT JJ NN IN CD IN DT JJ NN IN JJ JJ NNP NNP , CD , CD , CD , CD .\nThe 31-year-old Moya moves on to play third seed Novak Djokovic of Serbia , who ousted Argentine Juan Monaco , 07-May , 07-Jun , 06-Jul , 06-Jan .\tDT JJ NNP NNS IN TO VB JJ NN NNP NNP IN NNP , WP VBD JJ NNP NNP , CD , CD , CD , CD .\nThe featured Tuesday night match on the women 's side will be top seed Justine Henin of Belgium against eighth seed Serena Williams of the United States .\tDT JJ NNP NN NN IN DT NNS POS NN MD VB JJ NN NNP NNP IN NNP IN JJ NN NNP NNP IN DT NNP NNPS .\nThe Washington Post newspaper reports Wednesday that the U.S. government database of alleged international terrorism suspects and their associates now contains 3,25,000 names .\tDT NNP NNP NN VBZ NNP IN DT NNP NN NN IN JJ JJ NN NNS CC PRP$ NNS RB VBZ CD NNS .\nThe paper says the list has quadrupled in size since it was created in 2003 .\tDT NN VBZ DT NN VBZ VBN IN NN IN PRP VBD VBN IN CD .\nThe list is maintained by the National Counterterrorism Center .\tDT NN VBZ VBN IN DT NNP NNP NNP .\nCivil liberties advocates say they are concerned that innocent people may be on the list .\tJJ NNS NNS VBP PRP VBP VBN IN JJ NNS MD VB IN DT NN .\nCounterterrorism center officials say the actual number of people on the list is approximately 2,00,000 , because the same person may appear under different spellings or aliases .\tNN NN NNS VBP DT JJ NN IN NNS IN DT NN VBZ RB CD , IN DT JJ NN MD VB IN JJ NNS CC NNS .\nAn administration official told the Post that U.S. citizens make up only a small fraction of the names .\tDT NN NN VBD DT NNP IN NNP NNS VBP RP RB DT JJ NN IN DT NNS .\nThe newspaper report says the database is a compilation of reports supplied by the CIA , FBI , and other agencies .\tDT NN NN VBZ DT NN VBZ DT NN IN NNS VBN IN DT NNP , NNP , CC JJ NNS .\nSeven South American countries are launching a new development bank aimed at expanding regional trade and growth .\tCD NNP JJ NNS VBP VBG DT JJ NN NN VBN IN VBG JJ NN CC NN .\nThe Banco del Sur , or Bank of the South , is to be officially established on November third in Caracas , Venezuela .\tDT NNP NNP NNP , CC NNP IN DT NNP , VBZ TO VB RB VBN IN NNP NN IN NNP , NNP .\nThe date was agreed on by regional finance ministers meeting in Brazil Monday .\tDT NN VBD VBN IN IN JJ NN NNS VBG IN NNP NNP .\nThe bank , championed by Venezuelan President Hugo Chavez , is also supported by Argentina , Brazil , Bolivia , Paraguay , Uruguay and Ecuador .\tDT NN , VBN IN JJ NNP NNP NNP , VBZ RB VBN IN NNP , NNP , NNP , NNP , NNP CC NNP .\nThe presidents of each country must sign off on the deal before the bank can get underway .\tDT NNS IN DT NN MD VB RP IN DT NN IN DT NN MD VB NN .\nMr. Chavez proposed the regional bank as part of a drive to counter the conditional lending practices of international institutions such as the World Bank and International Monetary Fund .\tNNP NNP VBD DT JJ NN IN NN IN DT NN TO VB DT JJ NN NNS IN JJ NNS JJ IN DT NNP NNP CC NNP NNP NNP .\nOfficials say the bank will be open to all South American countries .\tNNS VBP DT NN MD VB JJ TO DT JJ JJ NNS .\nA senior Pakistani security official says security forces have arrested a suspected Al-Qaida militant believed to have been involved with the London terrorist attacks of July 2005 .\tDT JJ JJ NN NN VBZ NN NNS VBP VBN DT JJ NNP NN VBN TO VB VBN VBN IN DT NNP JJ NNS IN NNP CD .\nThe official , who asked not to be named , told Western news agencies that Zabi ul-Taifi was arrested along with six fellow militants in a pre-dawn raid outside the northwestern city of Peshawar .\tDT NN , WP VBD RB TO VB VBN , VBD JJ NN NNS WDT NNP NNP VBD VBN IN IN CD JJ NNS IN DT JJ NN IN DT JJ NN IN NNP .\nHe said Taifi is an Arab national wanted in connection to the July 7 , 2005 , terrorist attacks on London 's mass transit system .\tPRP VBD NNP VBZ DT JJ NN VBN IN NN TO DT NNP CD , CD , NN NNS IN NNP POS NN NN NN .\nThe four coordinated bombings killed 52 commuters .\tDT CD VBD NNS VBN CD NNS .\nBritish police say three of the four bombers were British citizens of Pakistani origin who are believed to have trained in Al-Qaida camps in Pakistan or Afghanistan .\tJJ NNS VBP CD IN DT CD NNS VBD JJ NNS IN JJ NN WP VBP VBN TO VB VBN IN NNP NNS IN NNP CC NNP .\nAutomobile sales in the United States fell in June as high gasoline prices kept consumers away from trucks and sports utility vehicles that require a lot of fuel .\tNNP NNS IN DT NNP NNPS VBD IN NNP IN JJ NN NNS VBD NNS RB IN NNS CC NNS NN NNS WDT VBP DT NN IN NN .\nU.S.-based General Motors , the world 's largest carmaker , Tuesday announced sales fell more than 18 percent in June from the same month last year .\tJJ NNP NNPS , DT NN POS JJS NN , NNP VBD NNS VBD RBR IN CD NN IN NNP IN DT JJ NN JJ NN .\nGM's Japanese rival Toyota reports its sales fell more than 21 percent .\tNNP JJ JJ NNP VBZ PRP$ NNS VBD JJR IN CD NN .\nIn a statement , GM said its truck market has been affected by the sudden rise in fuel prices .\tIN DT NN , NNP VBD PRP$ NN NN VBZ VBN VBN IN DT JJ NN IN NN NNS .\nBut , it says demand is continuing to grow for hybrid cars , which use less fuel than conventional vehicles because they combine a gasoline engine with high-tech batteries and electric motors .\tCC , PRP VBZ NN VBZ VBG TO VB IN JJ NNS , WDT VBP JJR NN IN JJ NNS IN PRP VBP DT NN NN IN JJ NNS CC JJ NNS .\nOn Friday , a major U.S. credit-rating service announced renewed concerns about the top three American automakers , GM , Ford and Chrysler , due to the industry-wide sales slump .\tIN NNP , DT JJ NNP NN NN VBD VBN NNS IN DT JJ CD JJ NNS , NNP , NNP CC NNP , JJ TO DT JJ NNS NN .\nThe death toll in the crash of a passenger plane in northern China now stands at 54 , with the discovery of one victim on the ground .\tDT NN NN IN DT NN IN DT NN NN IN JJ NNP RB VBZ IN CD , IN DT NN IN CD NN IN DT NN .\nThe official Xinhua news agency had earlier reported two people had been killed on the ground , but later changed the figure to one .\tDT JJ NNP NN NN VBD RB VBN CD NNS VBD VBN VBN IN DT NN , CC RB VBD DT NN TO CD .\nThe China Eastern Airlines jet , carrying 53 passengers and crew , plunged into a lake in Nanhai Park just seconds after taking off from Baotou city in Inner Mongolia at about 8.20 a.m. , local time [ 20 UTC ] .\tDT NNP NNP NNPS NN , VBG CD NNS CC NN , VBD IN DT NN IN NNP NNP RB NNS IN VBG RP IN NNP NN IN NNP NNP IN IN CD NN , JJ NN LRB CD NN RRB .\nWitnesses said they heard a blast while the plane was still in the air .\tNNS VBD PRP VBD DT NN IN DT NN VBD RB IN DT NN .\nThe aircraft broke into flaming fragments as it came down , damaging a house near the lake and scorching several yachts .\tDT NN VBD IN NN NNS IN PRP VBD RB , VBG DT NN IN DT NN CC VBG JJ NNS .\nThe aircraft was a Canadian-made Bombardier CRJ-200 , a commuter jet designed to carry 50 passengers .\tDT NN VBD DT JJ NNP NNP , DT NN NN VBN TO VB CD NNS .\nAustralian police say they have foiled a large-scale terrorist attack , with at least 16 arrests in Melbourne and Sydney .\tJJ NNS VBP PRP VBP VBN DT JJ JJ NN , IN IN JJS CD NNS IN NNP CC NNP .\nPolice say a suspect in the case was shot and wounded by police near Sydney , and that a bomb squad robot was being used to examine a backpack he was wearing .\tNNS VBP DT NN IN DT NN VBD VBN CC VBN IN NN IN NNP , CC IN DT NN NN NN VBD VBG VBN TO VB DT NN PRP VBD VBG .\nA lawyer for a Muslim cleric in Melbourne named Abu Bakr said his client was among those arrested early Tuesday .\tDT NN IN DT NNP NN IN NNP VBD NNP NNP VBD PRP$ NN VBD IN DT VBN JJ NNP .\nIn August , Abu Bakr praised Osama Bin Laden during an interview aired by the Australian Broadcasting Corporation .\tIN NNP , NNP NNP VBD NNP NNP NNP IN DT NN VBN IN DT JJ NNP NNP .\nPolice said the arrests disrupted a ' large scale ' terrorist attack in Australia .\tNNS VBD DT NNS VBD DT `` JJ NN `` JJ NN IN NNP .\nThey said bomb-making materials were found during the raids .\tPRP VBD JJ NNS VBD VBN IN DT NNS .\nThe arrests come just days after the federal government rushed an amendment through parliament that would give police the power to arrest people involved in the early stages of planning attacks .\tDT NNS VBP RB NNS IN DT JJ NN VBD DT NN IN NN WDT MD VB NNS DT NN TO VB NNS VBN IN DT JJ NNS IN NN NNS .\nColombian President Alvaro Uribe says the country 's domestic intelligence agency will no longer be in charge of intercepting communications , after it came under investigation for an illegal wiretapping scandal .\tJJ NNP NNP NNP VBZ DT NN POS JJ NN NN MD RB RB VB IN NN IN VBG NNS , IN PRP VBD IN NN IN DT JJ NN NN .\nMr. Uribe announced Thursday that all wiretaps will now be conducted by the national police , and will require judicial authorization .\tNNP NNP VBD NNP IN DT NNS MD RB VB VBN IN DT JJ NN , CC MD VB JJ NN .\nThe domestic intelligence agency , known as DAS ( the Department of Administrative Security ) is under federal investigation over charges that its agents illegally wiretapped politicians , journalists and judges .\tDT JJ NN NN , VBN IN NNP LRB DT NNP IN NNP NNP RRB VBZ IN JJ NN IN NNS IN PRP$ NNS RB VBD NNS , NNS CC NNS .\nThe agency is accused of passing intercepted information to drug traffickers and other illegal armed groups .\tDT NN VBZ VBN IN VBG JJ NN TO NN NNS CC JJ JJ JJ NNS .\nThe accusations were first made by the Colombian news magazine ' Semana . '\tDT NNS VBD RB VBN IN DT JJ NN NN `` NNP . ``\nDAS has been accused of wrongful spying in the past .\tNNP VBZ VBN VBN IN JJ NN IN DT NN .\nLast year , the head of the agency , Maria del Pilar Hurtado , resigned after it was revealed that agents were ordered to spy on opposition leaders .\tJJ NN , DT NN IN DT NN , NNP NNP NNP NNP , VBD IN PRP VBD VBN IN NNS VBD VBN TO VB IN NN NNS .\nA published report says the Bush administration is considering plans for permanently imprisoning some suspected terrorists held by the U.S. military and Central Intelligence Agency .\tDT JJ NN VBZ DT NNP NN VBZ VBG NNS IN RB VBG DT JJ NNS VBN IN DT NNP NN CC NNP NNP NNP .\nThe Washington Post Sunday quotes unidentified U.S. officials as saying the White House is considering a plan to indefinitely hold certain detainees the administration does not want released or turned over to courts in the United States or other countries .\tDT NNP NNP NNP VBZ JJ NNP NNS IN VBG DT NNP NNP VBZ VBG DT NN TO RB VB JJ NNS DT NN VBZ RB VB VBN CC VBN RP TO NNS IN DT NNP NNPS CC JJ NNS .\nIn some cases , the reason is said to be a lack of evidence .\tIN DT NNS , DT NN VBZ VBN TO VB DT NN IN NN .\nThe newspaper says Washington is considering transferring large numbers of prisoners from Afghanistan , Yemen and Saudi Arabia held at the U.S. military prison at Guantanamo Bay , Cuba to U.S.-built prisons in their homelands .\tDT NN VBZ NNP VBZ VBG VBG JJ NNS IN NNS IN NNP , NNP CC NNP NNP VBD IN DT NNP JJ NN IN NNP NNP , NNP TO JJ NNS IN PRP$ NNS .\nInternational human rights groups have criticized the Bush administration for indefinitely detaining people without charges or allowing them access to legal counsel .\tJJ JJ NNS NNS VBP VBN DT NNP NN IN RB VBG NNS IN NNS CC VBG PRP NN TO JJ NN .\nIsraeli Defense Minister Shaul Mofaz says Arab residents of East Jerusalem will be allowed to vote in this month 's Palestinian parliamentary elections .\tJJ NN NN NNP NNP VBZ JJ NNS IN NNP NNP MD VB VBN TO VB IN DT NN POS JJ JJ NNS .\nMofaz said Tuesday that Arabs will be able to cast ballots at post offices , as they have in past Palestinian elections , under interim peace deals in the 1990s .\tNNP VBD NNP IN NNS MD VB JJ TO VB NNS IN NN NNS , IN PRP VBP IN JJ JJ NNS , IN JJ NN NNS IN DT NNS .\nBut other Israeli officials say that decision has not yet been finalized .\tCC JJ JJ NNS VBP IN NN VBZ RB RB VBN VBN .\nPalestinian negotiator Saeb Erekat says he has not heard anything on the matter from Israeli officials .\tJJ NN NNP NNP VBZ PRP VBZ RB VBN DT IN DT NN IN JJ NNS .\nPalestinian President Mahmoud Abbas said Monday that U.S. officials assured him voting would take place in East Jerusalem as scheduled .\tJJ NNP NNP NNP VBD NNP IN NNP NNS VBD PRP VBG MD VB NN IN NNP NNP IN VBN .\nHe had threatened to cancel the election if Israel barred voting in East Jerusalem , to protest the inclusion of candidates from the Hamas militant group .\tPRP VBD VBN TO VB DT NN IN NNP VBD NN IN NNP NNP , TO VB DT NN IN NNS IN DT NNP JJ NN .\nTwo senior U.S. envoys are due in the region this week for talks with both sides ahead of the January 25 vote .\tCD JJ NNP NNS VBP JJ IN DT NN DT NN IN NNS IN DT NNS RB IN DT NNP CD NN .\nHuman Rights Watch says the international community is not doing enough to stop the violence in Sudan 's western Darfur region .\tNNP NNP NNP VBZ DT JJ NN VBZ RB VBG RB TO VB DT NN IN NNP POS JJ NNP NN .\nExecutive Director Kenneth Roth , in a statement , said the world has responded to the crisis by expressing concern and feigning action , but nothing more .\tNNP NNP NNP NNP , IN DT NN , VBD DT NN VBZ VBN TO DT NN IN VBG NN CC VBG NN , CC DT JJR .\nHe said it is not enough to condemn atrocities in Darfur and to send a handful of African Union troops to , ' merely observe the slaughter ' of civilians .\tPRP VBD PRP VBZ RB JJ TO VB NNS IN NNP CC TO VB DT NN IN NNP NNP NNS TO , `` RB VBP DT NN `` IN NNS .\nA.U. troops in Darfur are not mandated to protect civilians .\tNNP NNS IN NNP VBP RB VBN TO VB NNS .\nMr. Roth also said the international community has put no serious pressure on the Sudanese government to stop what he called its ' murderous campaign . '\tNNP NNP RB VBD DT JJ NN VBZ VBN DT JJ NN IN DT JJ NN TO VB WP PRP VBD PRP$ `` JJ NN . ``\nThe United Nations and western countries , including the United States , have accused Sudan of backing Arab militia who have waged a campaign of murder and rape .\tDT NNP NNPS CC JJ NNS , VBG DT NNP NNPS , VBP VBN NNP IN VBG JJ NN WP VBP VBN DT NN IN NN CC NN .\nSudan denies the charge .\tNNP VBZ DT NN .\nOfficials for the 2012 London Olympics have announced the costs and confirmed the builders for the Olympic Stadium and aquatic center .\tNNS IN DT CD NNP NNPS VBP VBN DT NNS CC VBD DT NNS IN DT NNP NNP CC JJ NN .\nThe Olympic Delivery Authority ( ODA ) said Tuesday the 80,000 - seat Olympic Stadium will cost about $ 976 million and will be built by a consortium including HOK Sport , Buro Happold and Robert Alpine .\tDT NNP NNP NNP LRB NNP RRB VBD NNP DT CD : NN NNP NNP MD VB IN $ CD CD CC MD VB VBN IN DT NN VBG NNP NNP , NNP NNP CC NNP NNP .\nThe price includes the cost of converting the stadium to a 25,000 seat multiple-use venue after the Olympics .\tDT NN VBZ DT NN IN VBG DT NN TO DT CD NN JJ NN IN DT NNS .\nMeanwhile , the Aquatics Center and land bridge that will be a main gateway into the Olympic Park will cost some $ 476 million .\tRB , DT NNP NNP CC NN NN WDT MD VB DT JJ NN IN DT NNP NNP MD VB DT $ CD CD .\nThe venue , which will be built by Balfour Beatty , will seat 2,500 people when it is reconfigured after the Games .\tDT NN , WDT MD VB VBN IN NNP NNP , MD VB CD NNS WRB PRP VBZ VBN IN DT NNPS .\nPolice say at least 20 people have been killed in an explosion set off by Maoist rebels in central India 's Chattisgarh state .\tNNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN VBN RP IN JJ NNS IN JJ NNP POS NNP NN .\nPolice say the rebels blew up a vehicle filled with anti-Maoist activists Tuesday .\tNNS VBP DT NNS VBD RP DT NN VBN IN JJ NNS NNP .\nThe killings come on the eve of President Bush 's visit to India .\tDT NNS VBP IN DT NN IN NNP NNP POS NN TO NNP .\nMaoist rebels say they are fighting for the rights of poor peasants and landless workers .\tJJ NNS VBP PRP VBP VBG IN DT NNS IN JJ NNS CC JJ NNS .\nThey have battled authorities for decades .\tPRP VBP VBN NNS IN NNS .\nPope John Paul is hailing the European Union 's newly-signed constitution , while urging Europe to remember its Christian roots .\tNNP NNP NNP VBZ VBG DT NNP NNP POS JJ NN , IN VBG NNP TO VB PRP$ JJ NNS .\nIn his weekly appearance at St. Peter 's Square in Rome , the pope described Friday 's signing of the EU constitution as a significant moment in the creation of a new Europe .\tIN PRP$ JJ NN IN NNP NNP POS NNP IN NNP , DT NN VBD NNP POS NN IN DT NNP NN IN DT JJ NN IN DT NN IN DT JJ NNP .\nBut the pope added that Europe 's Christian heritage remains a fundamental part of the Union 's future .\tCC DT NN VBD IN NNP POS JJ NN VBZ DT JJ NN IN DT NNP POS NN .\nThe Vatican had pushed unsuccessfully for a reference to Europe 's Christian tradition in the constitution .\tDT NNP VBD VBN RB IN DT NN TO NNP POS JJ NN IN DT NN .\nOn Saturday , Italy 's candidate for the European Union 's top executive body , Rocco Buttiglione - a conservative Catholic - stepped down from consideration following controversial remarks that included his description of homosexuality as a sin .\tIN NNP , NNP POS NN IN DT NNP NNP POS JJ NN NN , NNP NNP IN DT JJ JJ : VBD RB IN NN VBG JJ NNS WDT VBD PRP$ NN IN NN IN DT NN .\nMilitants in Iraq detonated several roadside bombs Friday , killing at least two people and injuring eight others .\tNNS IN NNP VBD JJ NN NNS NNP , VBG IN JJS CD NNS CC VBG CD NNS .\nPolice in Iraq say insurgents set off a bomb near a U.S. Army convoy in Baghdad 's exclusive Mansour district .\tNNS IN NNP VBP NNS VBD RP DT NN IN DT NNP NNP NN IN NNP POS JJ NNP NN .\nThe explosion killed one person and wounded at least five others -- some seriously .\tDT NN VBD CD NN CC VBD IN JJS CD NNS : DT RB .\nAcross town , a bomb targeting Iraqi National Guard troops killed one person and wounded at least three others .\tIN NN , DT NN VBG JJ NNP NNP NNS VBD CD NN CC VBD IN JJS CD NNS .\nThe attacks followed twin suicide car-bomb blasts Thursday that killed at least 15 people and wounded more than 30 others .\tDT NNS VBD JJ NN NN NNS NNP WDT VBD IN JJS CD NNS CC VBD JJR IN CD NNS .\nA.L. Williams Corp. was merged into Primerica Corp. , New York , after a special meeting of Williams shareholders cleared the transaction , the companies said .\tNN NNP NNP VBD VBN IN NNP NNP , NNP NNP , IN DT JJ NN IN NNP NNS VBD DT NN , DT NNS VBD .\nPrimerica , which had owned nearly 70 % of Williams , will pay about 16.7 million shares , currently valued at almost $ 472 million , for the rest of Williams .\tNNP , WDT VBD VBN RB CD NN IN NNP , MD VB IN CD CD NNS , RB VBN IN RB $ CD CD , IN DT NN IN NNP .\nThe financial-services company will pay 0.82 share for each Williams share .\tDT NNS NN MD VB CD NN IN DT NNP NN .\nWilliams shares , which were to be delisted from the New York Stock Exchange after the close of composite trading yesterday , closed at $ 23.25 , off 12.5 cents .\tNNP NNS , WDT VBD TO VB VBN IN DT NNP NNP NNP NNP IN DT NN IN JJ NN NN , VBD IN $ CD , IN CD NNS .\nPrimerica closed at $ 28.25 , down 50 cents .\tNNP VBD IN $ CD , RB CD NNS .\nWilliams , Duluth , Ga. , is an insurance and financial-services holding company .\tNNP , NNP , NNP , VBZ DT NN CC NNS VBG NN .\nIts subsidiaries ' services are marketed by closely held A.L. Williams & Associates .\tPRP$ NNS POS NNS VBP VBN IN RB VBN NN NNP CC NNP .\nPrimerica , as expected , also acquired certain assets of the agency and assumed certain of its liabilities .\tNNP , IN VBN , RB VBD JJ NNS IN DT NN CC VBD JJ IN PRP$ NNS .\nTerms were n't disclosed .\tNNS VBD RB VBN .\nFiji , endowed with forest , mineral , and fish resources , is one of the most developed of the Pacific island economies though still with a large subsistence sector .\tNNP , VBN IN NN , NN , CC NN NNS , VBZ CD IN DT RBS VBN IN DT NNP NN NNS IN RB IN DT JJ NN NN .\nSugar exports , remittances from Fijians working abroad , and a growing tourist industry - with 4,00,000 to 5,00,000 tourists annually - are the major sources of foreign exchange .\tNNP NNS , NNS IN NNS VBG RB , CC DT VBG NN NN : IN CD TO CD NNS RB : VBP DT JJ NNS IN JJ NN .\nFiji 's sugar has special access to European Union markets but will be harmed by the EU 's decision to cut sugar subsidies .\tNNP POS NN VBZ JJ NN TO NNP NNP NNS CC MD VB VBN IN DT NNP POS NN TO VB NN NNS .\nSugar processing makes up one-third of industrial activity but is not efficient .\tNNP NN VBZ RP NN IN JJ NN CC VBZ RB JJ .\nFiji 's tourism industry was damaged by the December 2006 coup and is facing an uncertain recovery time .\tNNP POS NN NN VBD VBN IN DT NNP CD NN CC VBZ VBG DT JJ NN NN .\nIn 2007 tourist arrivals were down almost 6 % , with substantial job losses in the service sector , and GDP dipped .\tIN CD NN NNS VBD IN RB CD NN , IN JJ NN NNS IN DT NN NN , CC NN VBD .\nThe coup has created a difficult business climate .\tDT NN VBZ VBN DT JJ NN NN .\nThe EU has suspended all aid until the interim government takes steps toward new elections .\tDT NNP VBZ VBN DT NN IN DT JJ NN VBZ NNS IN JJ NNS .\nLong-term problems include low investment , uncertain land ownership rights , and the government 's inability to manage its budget .\tJJ NNS VBP JJ NN , JJ NN NN NNS , CC DT NN POS NN TO VB PRP$ NN .\nOverseas remittances from Fijians working in Kuwait and Iraq have decreased significantly .\tJJ NNS IN NNS VBG IN NNP CC NNP VBP VBN RB .\nFiji 's current account deficit reached 23 % of GDP in 2006 .\tNNP POS JJ NN NN VBD CD NN IN NN IN CD .\nGhana is well endowed with natural resources and agriculture accounts for roughly one-third of GDP and employs more than half of the workforce , mainly small landholders .\tNNP VBZ RB VBN IN JJ NNS CC NN NNS IN RB NN IN NN CC VBZ JJR IN NN IN DT NN , RB JJ NNS .\nThe services sector accounts for 40 % of GDP .\tDT NNS NN NNS IN CD NN IN NN .\nGold and cocoa production and individual remittances are major sources of foreign exchange .\tNN CC NN NN CC JJ NNS VBP JJ NNS IN JJ NN .\nOil production at Ghana 's offshore Jubilee field began in mid-December and is expected to boost economic growth .\tNN NN IN NNP POS JJ NN NN VBD IN NNP CC VBZ VBN TO VB JJ NN .\nGhana signed a Millennium Challenge Corporation ( MCC ) Compact in 2006 , which aims to assist in transforming Ghana 's agricultural sector .\tNNP VBD DT NNP NNP NNP LRB NNP RRB NN IN CD , WDT VBZ TO VB IN VBG NNP POS JJ NN .\nGhana opted for debt relief under the Heavily Indebted Poor Country ( HIPC ) program in 2002 , and is also benefiting from the Multilateral Debt Relief Initiative that took effect in 2006 .\tNNP VBD IN NN NN IN DT NNP NNP NNP NNP LRB NNP RRB NN IN CD , CC VBZ RB VBG IN DT NNP NNP NNP NNP WDT VBD NN IN CD .\nIn 2009 Ghana signed a three-year Poverty Reduction and Growth Facility with the IMF to improve macroeconomic stability , private sector competitiveness , human resource development , and good governance and civic responsibility .\tIN CD NNP VBD DT JJ NN NN CC NN NN IN DT NNP TO VB JJ NN , JJ NN NN , JJ NN NN , CC JJ NN CC JJ NN .\nSound macro-economic management along with high prices for gold and cocoa helped sustain GDP growth in 2008 - 10 .\tJJ JJ NN IN IN JJ NNS IN NN CC NN VBD VB NN NN IN CD IN CD .\nIn early 2010 President John Atta MILLS targeted recovery from high inflation and current account and budget deficits as his priorities .\tIN JJ CD NNP NNP NNP NNP VBD NN IN JJ NN CC JJ NN CC NN NNS IN PRP$ NNS .\nHigh population density , limited land and sea access , continuing isolation , and strict internal and external security controls have degraded economic conditions in the Gaza Strip - the smaller of the two areas in the Palestinian Territories .\tJJ NN NN , JJ NN CC NN NN , VBG NN , CC JJ JJ CC JJ NN NNS VBP VBN JJ NNS IN DT NNP NNP IN DT JJR IN DT CD NNS IN DT JJ NNS .\nIsraeli-imposed crossings closures , which became more restrictive after HAMAS violently took over the territory in June 2007 , and fighting between HAMAS and Israel during December 2008 - January 2009 , resulted in the near collapse of most of the private sector , extremely high unemployment , and high poverty rates .\tVBN NNS NNS , WDT VBD RBR JJ IN NNP RB VBD RP DT NN IN NNP CD , CC VBG IN NNP CC NNP IN NNP CD IN NNP CD , VBD IN DT JJ NN IN JJS IN DT JJ NN , RB JJ NN , CC JJ NN NNS .\nShortages of goods are met through large-scale humanitarian assistance - led by UNRWA - and the HAMAS-regulated black market tunnel trade that flourishes under the Gaza Strip 's border with Egypt .\tNNS IN NNS VBP VBN IN JJ JJ NN : VBN IN NNP : CC DT JJ JJ NN NN NN WDT VBZ IN DT NNP NNP POS NN IN NNP .\nHowever , changes to the blockade in 2010 included moving from a white list - in which only approved items were allowed into Gaza through the crossings - to a black list , where all but non-approved items were allowed into Gaza through the crossings .\tRB , NNS TO DT NN IN CD VBD VBG IN DT JJ NN : IN WDT RB VBN NNS VBD VBN IN NNP IN DT NNS IN TO DT JJ NN , WRB DT CC JJ NNS VBD VBN IN NNP IN DT NNS .\nIsraeli authorities have recently signaled that exports from the territory might be possible in the future , but currently regular exports from Gaza are not permitted .\tJJ NNS VBP RB VBN IN NNS IN DT NN MD VB JJ IN DT NN , CC RB JJ NNS IN NNP VBP RB VBN .\nChad 's primarily agricultural economy will continue to be boosted by major foreign direct investment projects in the oil sector that began in 2000 .\tNNP POS RB JJ NN MD VB TO VB VBN IN JJ JJ JJ NN NNS IN DT NN NN WDT VBD IN CD .\nAt least 80 % of Chad 's population relies on subsistence farming and livestock raising for its livelihood .\tIN JJS CD NN IN NNP POS NN VBZ IN NN NN CC NN NN IN PRP$ NN .\nChad 's economy has long been handicapped by its landlocked position , high energy costs , and a history of instability .\tNNP POS NN VBZ RB VBN VBN IN PRP$ JJ NN , JJ NN NNS , CC DT NN IN NN .\nChad relies on foreign assistance and foreign capital for most public and private sector investment projects .\tNNP VBZ IN JJ NN CC JJ NN IN JJS JJ CC JJ NN NN NNS .\nA consortium led by two US companies has been investing $ 3.7 billion to develop oil reserves - estimated at 1 billion barrels - in southern Chad .\tDT NN VBN IN CD NNP NNS VBZ VBN VBG $ CD CD TO VB NN NNS : VBN IN CD CD NNS : IN JJ NNP .\nChinese companies are also expanding exploration efforts and are currently building a 300-km pipeline and the country 's first refinery .\tJJ NNS VBP RB VBG NN NNS CC VBP RB VBG DT JJ NN CC DT NN POS JJ NN .\nThe nation 's total oil reserves are estimated at 1.5 billion barrels .\tDT NN POS JJ NN NNS VBP VBN IN CD CD NNS .\nOil production came on stream in late 2003 .\tNN NN VBD IN NN IN JJ CD .\nChad began to export oil in 2004 .\tNNP VBD TO VB NN IN CD .\nCotton , cattle , and gum arabic provide the bulk of Chad 's non-oil export earnings .\tNN , NNS , CC NN NN VB DT NN IN NNP POS JJ NN NNS .\nA DOG , crossing a bridge over a stream with a piece of flesh in his mouth , saw his own shadow in the water and took it for that of another Dog , with a piece of meat double his own in size .\tDT NNP , VBG DT NN IN DT NN IN DT NN IN NN IN PRP$ NN , VBD PRP$ JJ NN IN DT NN CC VBD PRP IN DT IN DT NNP , IN DT NN IN NN JJ PRP$ NN IN NN .\nHe immediately let go of his own , and fiercely attacked the other Dog to get his larger piece from him .\tPRP RB VB NN IN PRP$ NN , CC RB VBD DT JJ NNP TO VB PRP$ JJR NN IN PRP .\nHe thus lost both : that which he grasped at in the water , because it was a shadow ; and his own , because the stream swept it away .\tPRP RB VBD DT : IN WDT PRP VBD IN IN DT NN , IN PRP VBD DT NN ; CC PRP$ NN , IN DT NN VBD PRP RB .\nMERCURY ONCE DETERMINED to learn in what esteem he was held among mortals .\tNNP RB VBD TO VB IN WP NN PRP VBD VBN IN NNS .\nFor this purpose he assumed the character of a man and visited in this disguise a Sculptor 's studio\tIN DT NN PRP VBD DT NN IN DT NN CC VBD IN DT NN DT NNP POS NN\nhaving looked at various statues , he demanded the price of two figures of Jupiter and Juno .\tVBG VBN IN JJ NNS , PRP VBD DT NN IN CD NNS IN NNP CC NNP .\nWhen the sum at which they were valued was named , he pointed to a figure of himself , saying to the Sculptor , ' You will certainly want much more for this , as it is the statue of the Messenger of the Gods , and author of all your gain . '\tWRB DT NN IN WDT PRP VBD VBN VBD VBN , PRP VBD TO DT NN IN PRP , VBG TO DT NN , `` PRP MD RB VB RB JJR IN DT , IN PRP VBZ DT NN IN DT NN IN DT NNS , CC NN IN DT PRP$ NN . ``\nThe Sculptor replied , ' Well , if you will buy these , I 'll fling you that into the bargain . '\tDT NN VBD , `` UH , IN PRP MD VB DT , PRP MD VB PRP WDT IN DT NN . ``\nSOME TRAVELERS , journeying along the seashore , climbed to the summit of a tall cliff , and looking over the sea , saw in the distance what they thought was a large ship .\tDT NNS , VBG IN DT NN , VBD TO DT NN IN DT JJ NN , CC VBG IN DT NN , VBD IN DT NN WP PRP VBD VBD DT JJ NN .\nThey waited in the hope of seeing it enter the harbor , but as the object on which they looked was driven nearer to shore by the wind , they found that it could at the most be a small boat , and not a ship .\tPRP VBD IN DT NN IN VBG PRP VB DT NN , CC IN DT NN IN WDT PRP VBD VBD VBN NN TO VB IN DT NN , PRP VBD IN PRP MD IN DT RBS VB DT JJ NN , CC RB DT NN .\nWhen however it reached the beach , they discovered that it was only a large faggot of sticks , and one of them said to his companions , ' We have waited for no purpose , for after all there is nothing to see but a load of wood . '\tWRB RB PRP VBD DT NN , PRP VBD IN PRP VBD RB DT JJ NN IN NNS , CC CD IN PRP VBD TO PRP$ NNS , `` PRP VBP VBN IN DT NN , IN IN DT EX VBZ DT TO VB CC DT NN IN NN . ``\nOur mere anticipations of life outrun its realities .\tPRP$ JJ NNS IN NN VBP PRP$ NNS .\nSEEING a ship sailing by upon the sea of politics , an Ambitious Person started in hot pursuit along the strand ; but the people 's eyes being fixed upon the Presidency no one observed the pursuer .\tVBG DT NN NN IN IN DT NN IN NNS , DT JJ NN VBD IN JJ NN IN DT NN ; CC DT NNS POS NNS VBG VBN IN DT NN DT NN VBD DT NN .\nThis greatly annoyed him , and recollecting that he was not aquatic , he stopped and shouted across the waves ' tumultous roar :\tDT RB VBD PRP , CC VBG IN PRP VBD RB JJ , PRP VBD CC VBD IN DT NNS POS JJ NN :\n' Take my name off the passenger list . '\t`` VB PRP$ NN IN DT NN NN . ``\nBack to him over the waters , hollow and heartless , like laughter in a tomb , rang the voice of the Skipper : ' 'T ai n't on ! '\tRB TO PRP IN DT NNS , JJ CC JJ , IN NN IN DT NN , VBG DT NN IN DT NN IN `` PRP VBP RB IN . ``\nAnd there , in the focus of a million pairs of convergent eyes , the Ambitious Person sat him down between the sun and moon and murmured sadly to his own soul :\tCC RB , IN DT NN IN DT CD NNS IN JJ NNS , DT JJ NN VBD PRP RP IN DT NN CC NN CC VBD RB TO PRP$ JJ NN :\n' Marooned , by thunder ! '\t`` VBN , IN NN . ``\nA PUBLIC Treasury , feeling Two Arms lifting out its contents , exclaimed :\tDT NNP NNP , VBG CD NNS VBG RP PRP$ NNS , VBD :\n' Mr. Shareman , I move for a division . '\t`` NNP NNP , PRP VBP IN DT NN . ``\n' You seem to know something about parliamentary forms of speech , ' said the Two Arms .\t`` PRP VBP TO VB DT IN JJ NNS IN NN , `` VBD DT CD NNS .\n' Yes , ' replied the Public Treasury , ' I am familiar with the hauls of legislation . '\t`` UH , `` VBD DT NNP NNP , `` PRP VBP JJ IN DT NNS IN NN . ``\nChina 's government says passengers at Shanghai 's Pudong International Airport will be screened for bird flu .\tNNP POS NN VBZ NNS IN NNP POS NNP NNP NNP MD VB VBN IN NN NN .\nStarting Monday passengers entering or leaving China will be asked to fill out a health declaration form and have their temperature checked .\tVBG NNP NNS VBG CC VBG NNP MD VB VBN TO VB RP DT NN NN NN CC VBP PRP$ NN VBD .\nAny passenger whose body temperature is greater than 38 degrees ( Celsius ) will be further examined , and if the person has been in an area affected by bird flu , he or she will be required to undergo treatment at a hospital .\tDT NN WP$ NN NN VBZ JJR IN CD NNS LRB NNP RRB MD VB RBR VBN , CC IN DT NN VBZ VBN IN DT NN VBN IN NN NN , PRP CC PRP MD VB VBN TO VB NN IN DT NN .\nMeanwhile , China 's official Xinhua news agency quotes a health ministry official as saying the bird flu virus isolated from human patients in China is slightly different from that found in humans in Vietnam .\tRB , NNP POS JJ NNP NN NN VBZ DT NN NN NN IN VBG DT NN NN NN VBD IN JJ NNS IN NNP VBZ RB JJ IN DT VBN IN NNS IN NNP .\nHowever , the ministry says the changes do not make the virus any easier to spread .\tRB , DT NN VBZ DT NNS VBP RB VB DT NN DT JJR TO VB .\nBritish officials say they have reached preliminary agreement with Jordan , allowing Britain to deport Jordanian nationals with guarantees they will not be mistreated .\tJJ NNS VBP PRP VBP VBN JJ NN IN NNP , VBG NNP TO VB JJ NNS IN NNS PRP MD RB VB VBN .\nA spokesman for British Prime Minister Tony Blair Wednesday said the move could lead to similar agreements with several North African nations .\tDT NN IN JJ NNP NNP NNP NNP NNP VBD DT NN MD VB TO JJ NNS IN JJ JJ JJ NNS .\nUnder international law , Britain must seek guarantees that deportees will not face torture or the death penalty before expelling them .\tIN JJ NN , NNP MD VB NNS IN NNS MD RB VB NN CC DT NN NN IN VBG PRP .\nThe spokesman said once the formal agreement is signed several Jordanian nationals may face deportation proceedings .\tDT NN VBD RB DT JJ NN VBZ VBN JJ JJ NNS MD VB NN NNS .\nOne cleric who could face deportation is Abu Qatada , who fled to Britain claiming persecution in Jordan .\tCD NN WP MD VB NN VBZ NNP NNP , WP VBD TO NNP VBG NN IN NNP .\nHe has been convicted in absentia of terrorism in Jordan .\tPRP VBZ VBN VBN IN NN IN NN IN NNP .\nThe Islamic militant group Hamas says one of its militants has been killed in an Israeli airstrike in the Gaza Strip .\tDT NNP JJ NN NNP VBZ CD IN PRP$ NNS VBZ VBN VBN IN DT JJ NN IN DT NNP NNP .\nIsrael says it fired early Wednesday on a group of armed men in the border area .\tNNP VBZ PRP VBD JJ NNP IN DT NN IN JJ NNS IN DT NN NN .\nThe attack came hours after Israeli troops killed two children in northern Gaza during fighting Tuesday with Palestinian militants .\tDT NN VBD NNS IN JJ NNS VBD CD NNS IN JJ NNP IN VBG NNP IN JJ NNS .\nIsrael 's military says troops fired at two Palestinians seen next to a rocket launcher in an area where militants had fired rockets at Israel .\tNNP POS JJ VBZ NNS VBD IN CD NNS VBN IN TO DT NN NN IN DT NN WRB NNS VBD VBN NNS IN NNP .\nThe Israeli military accused the militants of sending children to retrieve rocket launchers after the projectiles are fired .\tDT JJ NN VBD DT NNS IN VBG NNS TO VB NN NNS IN DT NNS VBP VBN .\nEarlier Tuesday , Israeli forces killed three Islamic Jihad militants in southern Gaza .\tRBR NNP , JJ NNS VBD CD NNP NNP NNS IN JJ NNP .\nIsraeli forces have carried out frequent airstrikes and incursions into Gaza since Hamas seized the territory in June in fighting with the rival Fatah faction .\tJJ NNS VBP VBN RP JJ NNS CC NNS IN NNP IN NNP VBD DT NN IN NNP IN VBG IN DT JJ NNP NN .\nThere has been some positive news coming out of the International Conference on Alzheimer 's , held July 26-31 in Chicago , Illinois .\tEX VBZ VBN DT JJ NN VBG IN IN DT NNP NNP IN NNP POS , VBN NNP CD IN NNP , NNP .\nTwo preliminary studies show progress with use of an antihistamine and a nasal spray .\tCD JJ NNS VBP NN IN NN IN DT NN CC DT JJ NN .\nBut researchers say lifestyle factors and heredity also play a crucial role in determining whether you develop Alzheimer 's .\tCC NNS VBP JJ NNS CC NN RB VB DT JJ NN IN VBG IN PRP VBP NNP POS .\nVOA 's Melinda Smith has more .\tNNP POS NNP NNP VBZ RBR .\nTropical Storm Katrina has strengthened over the central Bahamas and is moving toward Florida , where it is expected to hit later this week .\tJJ NN NNP VBZ VBN IN DT JJ NNPS CC VBZ VBG IN NNP , WRB PRP VBZ VBN TO VB RB DT NN .\nThe U.S. National Hurricane Center reports a tropical storm warning remains in effect for the central and northern Bahamas .\tDT NNP NNP NNP NNP VBZ DT JJ NN NN VBZ IN NN IN DT JJ CC JJ NNPS .\nIt says Katrina is expected to bring heavy rains and batter the shore with large and dangerous waves .\tPRP VBZ NNP VBZ VBN TO VB JJ NNS CC VB DT NN IN JJ CC JJ NNS .\nThe weather service also issued a tropical storm warning and a hurricane watch for the southeast Florida coast from Vero Beach southward to Florida City .\tDT NN NN RB VBD DT JJ NN NN CC DT NN NN IN DT NN NNP NN IN NNP NNP VBD TO NNP NNP .\nOn Tuesday , tropical storm Jose dumped heavy rains on the Gulf of Mexico .\tIN NNP , JJ NN NNP VBD JJ NNS IN DT NNP IN NNP .\nOlympic officials in China have announced that more than half the available domestic tickets for the 2008 Beijing Games have been sold in the month since they went on sale in April .\tNNP NNS IN NNP VBP VBN IN JJR IN PDT DT JJ JJ NNS IN DT CD NNP NNPS VBP VBN VBN IN DT NN IN PRP VBD IN NN IN NNP .\nChina made 2.2 million tickets available a month ago and 2,30,000 fans have bought almost 1.1 million of them .\tNNP VBD CD CD NNS JJ DT NN RB CC CD NNS VBP VBN RB CD CD IN PRP .\nOlympic Ticketing Center head Rong Jun said Tuesday that tickets to the opening ceremony , basketball and diving competitions have been the best sellers .\tNNP NNP NNP NN NNP NNP VBD NNP IN NNS TO DT NN NN , NN CC VBG NNS VBP VBN DT JJS NNS .\nFans can purchase tickets to the opening and closing ceremonies as well as all 28 sports during the first phase , which ends June 30 .\tNNS MD VB NNS TO DT NN CC NN NNS RB RB IN DT CD NNS IN DT JJ NN , WDT VBZ NNP CD .\nTickets will be assigned between July and August , with a random selection process utilized for oversold events .\tNNS MD VB VBN IN NNP CC NNP , IN DT JJ NN NN VBN IN JJ NNS .\nThe second leg of domestic sales will run from October through December .\tDT JJ NN IN JJ NNS MD VB IN NNP IN NNP .\nOlympic committees of individual countries and territories are conducting overseas sales .\tNNP NNS IN JJ NNS CC NNS VBP VBG JJ NNS .\nIndonesia 's Health Ministry says a woman from Bali has died of bird flu - the second confirmed death from the virus on the Indonesian resort island .\tNNP POS NNP NNP VBZ DT NN IN NNP VBZ VBN IN NN NN IN DT NN VBD NN IN DT NN IN DT JJ NN NN .\nAuthorities say the woman died Tuesday and had been in contact with poultry before becoming ill .\tNNS VBP DT NN VBD NNP CC VBD VBN IN NN IN NN IN VBG JJ .\nIf confirmed by the World Health Organization it would bring to 84 the number of people in Indonesia who have died from the disease .\tIN VBN IN DT NNP NNP NNP PRP MD VB TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NN .\nNearly 200 people worldwide , mostly in Asia , have died from bird flu since 2003 .\tRB CD NNS JJ , RB IN NNP , VBP VBN IN NN NN IN CD .\nThe dangerous H5N1 strain of the virus is mainly transmitted by contact with infected animals , but experts fear it could mutate into a form that is easily passed between people .\tDT JJ NNP NN IN DT NN VBZ RB VBN IN NN IN JJ NNS , CC NNS VBP PRP MD VB IN DT NN WDT VBZ RB VBN IN NNS .\nThe death toll from a bus accident Thursday afternoon in Indian Kashmir has risen to at least 42 , with an equal number of people injured .\tDT NN NN IN DT NN NN NNP NN IN NNP NNP VBZ VBN TO IN JJS CD , IN DT JJ NN IN NNS VBN .\nLocal officials say the bus was carrying pilgrims to a holy site when it skidded off a mountain road some 165 kilometers north of Jammu and plunged into a deep ravine .\tJJ NNS VBP DT NN VBD VBG NNS TO DT JJ NN WRB PRP VBD RP DT NN NN DT CD NNS RB IN NNP CC VBD IN DT JJ NN .\nMeanwhile , violence in the disputed region continues .\tRB , NN IN DT JJ NN VBZ .\nThe Indian army says government troops raided a militant hide-out near the Line of Control that divides Kashmir between India and Pakistan , killing four suspected Muslim separatists .\tDT JJ NN VBZ NN NNS VBD DT JJ NN IN DT NN IN NNP WDT VBZ NNP IN NNP CC NNP , VBG CD JJ NNP NNS .\nHours later , suspected rebels lobbed a grenade in Srinagar , wounding at least 15 people including children .\tNNS RB , JJ NNS VBD DT NN IN NNP , VBG IN JJS CD NNS VBG NNS .\nMuslim separatists in Indian Kashmir are fighting for an independent Kashmir or its merger with neighboring Pakistan .\tNNP NNS IN JJ NNP VBP VBG IN DT JJ NNP CC PRP$ NN IN JJ NNP .\nThe U.S. military says a helicopter has crashed in northern Iraq , killing all 12 Americans believed to be on board .\tDT NNP NN VBZ DT NN VBZ VBN IN JJ NNP , VBG DT CD NNS VBN TO VB IN NN .\nMilitary officials say they are investigating the crash of the Blackhawk in a sparsely populated area near the border with Syria on Sunday .\tJJ NNS VBP PRP VBP VBG DT NN IN DT NNP IN DT RB JJ NN IN DT NN IN NNP IN NNP .\nThey said military personnel discovered the crash site 12 hours after losing communication with the helicopter .\tPRP VBD JJ NNS VBD DT NN NN CD NNS IN VBG NN IN DT NN .\nElsewhere , U.S. officials said gunmen killed three Marines in separate incidents in Fallujah .\tRB , NNP NNS VBD NNS VBD CD NNS IN JJ NNS IN NNP .\nMembers of the Sunni Association of Muslim Scholars criticized U.S. forces over a raid on a mosque in the Iraqi capital .\tNNS IN DT NNP NNP IN NNP NNP VBD NNP NNS IN DT NN IN DT NN IN DT JJ NN .\nU.S. officials said six people were detained in what they called an anti-terrorist operation .\tNNP NNS VBD CD NNS VBD VBN IN WP PRP VBD DT JJ NN .\nAnd a French engineer , Bernard Planche , has been freed nearly a month after being seized by insurgents .\tCC DT JJ NN , NNP NNP , VBZ VBN VBN RB DT NN IN VBG VBN IN NNS .\nOn the political front , Iraqi President Jalal Talabani says leaders of the country 's political parties have agreed in principle to form a national unity government .\tIN DT JJ NN , JJ NNP NNP NNP VBZ NNS IN DT NN POS JJ NNS VBP VBN IN NN TO VB DT JJ NN NN .\nThousands of opposition supporters marched in the Democratic Republic of Congo Wednesday to demand that voter registration be reopened .\tNNS IN NN NNS VBD IN DT JJ NNP IN NNP NNP TO VB DT NN NN VB VBN .\nOpposition party leader Etienne Tshisekedi asked supporters to join the rally and press for electoral concessions .\tNNP NN NN NNP NNP VBD NNS TO VB DT NN CC NN IN JJ NNS .\nThe march to U.N. peacekeeping headquarters in Kinshasa coincided with a visit to the DRC by United Nations Secretary-General Kofi Annan .\tDT NN TO NNP VBG NN IN NNP VBD IN DT NN TO DT NNP IN NNP NNP NNP NNP NNP .\nSpeaking Tuesday in Kinshasa , Mr. Annan said the June elections must be run by the rules , but also must be inclusive .\tVBG NNP IN NNP , NNP NNP VBD DT NNP NNS MD VB VBN IN DT NNS , CC RB MD VB JJ .\nThe vote in June will be Congo 's first democratic elections in more than 40 years .\tDT NN IN NNP MD VB NNP POS JJ JJ NNS IN JJR IN CD NNS .\nEarlier this month , riot police used batons and tear gas to disperse opposition members during a similar political rally .\tRBR DT NN , NN NNS VBD NNS CC JJ NN TO VB NN NNS IN DT JJ JJ NN .\nAuthorities in Iraq say a suicide attacker blew himself up among a group Iraqi army recruits in Baghdad Wednesday , killing at least 10 people and wounding several others .\tNNS IN NNP VBP DT NN NN VBD PRP RP IN DT NN JJ NN NNS IN NNP NNP , VBG IN JJS CD NNS CC VBG JJ NNS .\nPolice say the bomber mingled with a crowd of men standing outside a recruiting center before detonating his explosives belt .\tNNS VBP DT NN VBN IN DT NN IN NNS VBG IN DT NN NN IN VBG PRP$ NNS NN .\nInsurgents have targeted the same recruiting center several times in the past .\tNNS VBP VBN DT JJ NN NN JJ NNS IN DT NN .\nIn another development , a number of Sunni Muslims on the committee drafting Iraq 's new constitution suspended their membership - a day after two of their colleagues were assassinated in Baghdad .\tIN DT NN , DT NN IN NNP NNPS IN DT NN VBG NNP POS JJ NN VBD PRP$ NN IN DT NN IN CD IN PRP$ NNS VBD VBN IN NNP .\nHours before Tuesday 's assassinations , Iraqi President Jalal Talabani said he hoped the draft constitution could be ready ahead of the August 15 deadline , if Sunni concerns could be quickly addressed .\tNNS IN NNP POS NNS , JJ NNP NNP NNP VBD PRP VBD DT NN NN MD VB JJ RB IN DT NNP CD NN , IN NNP NNS MD VB RB VBN .\nMexico 's state-run Pemex oil monopoly says six explosions believed to be sabotage have damaged oil and natural gas pipelines in Veracruz state .\tNNP POS JJ NNP NN NN VBZ CD NNS VBN TO VB NN VBP VBN NN CC JJ NN NNS IN NNP NN .\nOfficials say at least 21,000 people living near the explosions were evacuated , but there have been no confirmed casualties from the incident .\tNNS VBP IN JJS CD NNS VBG IN DT NNS VBD VBN , CC EX VBP VBN DT VBD NNS IN DT NN .\nThe Associated Press reports that a secretive leftist rebel group named the People 's Revolutionary Army has claimed responsibility for the blasts .\tDT NNP NNP VBZ IN DT JJ JJ NN NN VBD DT NNS POS NNP NNP VBZ VBN NN IN DT NNS .\nThe group took credit for similar Pemex pipeline attacks a few months ago .\tDT NN VBD NN IN JJ NNP NN VBZ DT JJ NNS RB .\nAlso Monday , a truck loaded with chemical fertilizer exploded following a vehicle accident , creating a massive fireball that killed at least 29 people and wounded 150 others .\tRB NNP , DT NN VBN IN NN NN VBD VBG DT NN NN , VBG DT JJ NN WDT VBD IN JJS CD NNS CC VBD CD NNS .\nNews reports say the truck collided with another vehicle in the mining state of Coahuila .\tNNP NNS VBP DT NN VBD IN DT NN IN DT NN NN IN NNP .\nAs onlookers gathered around the crash , the vehicle exploded , killing rescue workers and bystanders .\tIN NNS VBD IN DT NN , DT NN VBD , VBG NN NNS CC NNS .\nPakistan 's military says one soldier and seven militants were killed during a gun battle in the northwestern Swat Valley .\tNNP POS NN VBZ CD NN CC CD NNS VBD VBN IN DT NN NN IN DT JJ NNP NNP .\nAn army statement Wednesday said forces were conducting a search operation in Charai when the clash broke out .\tDT NN NN NNP VBD NNS VBD VBG DT NN NN IN NNP WRB DT NN VBD RP .\nTwo soldiers also were wounded .\tCD NNS RB VBD VBN .\nThe army says it has captured at least 23 suspected militants in the area .\tDT NN VBZ PRP VBZ VBN IN JJS CD JJ NNS IN DT NN .\nPakistan 's government launched an offensive in late April aimed at clearing militants from the greater Swat valley region .\tNNP POS NN VBD DT NN IN JJ NNP VBN IN VBG NNS IN DT JJR NN NN NN .\nThe military says it has driven most of the Taliban from the valley , but sporadic fighting persists .\tDT NN VBZ PRP VBZ VBN JJS IN DT NNP IN DT NN , CC JJ NN NNS .\nPresident Bush is again calling on the U.S. Senate to give him authority to remove certain items from bills before signing them into law .\tNNP NNP VBZ RB VBG IN DT NNP NNP TO VB PRP NN TO VB JJ NNS IN NNS IN VBG PRP IN NN .\nMr. Bush raised the issue Tuesday in a speech in Washington .\tNNP NNP VBD DT NN NNP IN DT NN IN NNP .\nIt is called the line-item veto .\tPRP VBZ VBN DT JJ NN .\nHe also talked about it Saturday in his weekly radio address .\tPRP RB VBD IN PRP NNP IN PRP$ JJ NN NN .\nThe President said the move would help him get rid of wasteful spending measures tacked onto important legislation .\tDT NNP VBD DT NN MD VB PRP VB JJ IN JJ NN NNS VBN IN JJ NN .\nHe said those last-minute additions , known as earmarks , have grown more common in recent years .\tPRP VBD DT JJ NNS , VBN IN NNS , VBP VBN RBR JJ IN JJ NNS .\nPresident Clinton briefly had line-item veto authority before the Supreme Court struck it down as unconstitutional in 1998 .\tNNP NNP RB VBD JJ NN NN IN DT NNP NNP VBD PRP RP IN JJ IN CD .\nThe Court said it gave the president too much power .\tDT NNP VBD PRP VBD DT NN RB JJ NN .\nHouse lawmakers on Thursday voted to grant President Bush a modified line-item veto that would allow Congress to approve or reject his changes before they become law .\tNNP NNS IN NNP VBD TO VB NNP NNP DT VBN JJ NN WDT MD VB NNP TO VB CC VB PRP$ NNS IN PRP VBP NN .\nTaiwan President Chen Shui-bian has assured the United States that he will not push for independence from mainland China during the rest of his term .\tNNP NNP NNP NNP VBZ VBN DT NNP NNPS IN PRP MD RB VB IN NN IN JJ NNP IN DT NN IN PRP$ NN .\nMr. Chen met with the new U.S. envoy to Taiwan , Stephen Young , Tuesday .\tNNP NNP VBD IN DT JJ NNP NN TO NNP , NNP NNP , NNP .\nHe said there will be ' no more surprises . '\tPRP VBD EX MD VB `` DT JJR NNS . ``\nMr. Chen was referring to his decision last month to scrap a government body dedicated to unification with mainland China .\tNNP NNP VBD VBG TO PRP$ NN JJ NN TO VB DT NN NN VBN TO NN IN JJ NNP .\nThe U.S. requested clarification on the issue .\tDT NNP VBD NN IN DT NN .\nChina , meanwhile , reacted angrily to Taiwan , warning that the decision could bring disaster to the island .\tNNP , RB , VBD RB TO NNP , VBG IN DT NN MD VB NN TO DT NN .\nMr. Chen says he will maintain the status quo with China , and that Taiwan 's government will continue to serve as a responsible contributor to maintaining peace across the Taiwan Strait .\tNNP NNP VBZ PRP MD VB DT NN NN IN NNP , CC IN NNP POS NN MD VB TO VB IN DT JJ NN TO VBG NN IN DT NNP NNP .\nChina and Taiwan split in 1949 after a civil war , but Beijing considers Taiwan a renegade province .\tNNP CC NNP NN IN CD IN DT JJ NN , CC NNP VBZ NNP DT NN NN .\nIran says it is ready , under certain circumstances , to help the United States withdraw its troops from Iraq .\tNNP VBZ PRP VBZ JJ , IN JJ NNS , TO VB DT NNP NNPS VB PRP$ NNS IN NNP .\nIran Foreign Minister Manouchehr Mottaki made the comment Saturday in Manama , Bahrain at a conference of the International Institute of Strategic Studies .\tNNP NNP NNP NNP NNP VBD DT NN NNP IN NNP , NNP IN DT NN IN DT NNP NNP IN NNP NNP .\nMottaki said Tehran would be willing to help with any troop withdrawal if Washington decides on such action , and changes its attitude .\tNNP VBD NNP MD VB JJ TO VB IN DT NN NN IN NNP VBZ IN JJ NN , CC VBZ PRP$ NN .\nHe did not say what help Iran would offer .\tPRP VBD RB VB WP NN NNP MD VB .\nOpening a dialog with Iran and its regional ally Syria was one of the key recommendations of a bipartisan panel of former Washington policy makers reviewing U.S. policy in Iraq .\tVBG DT NN IN NNP CC PRP$ JJ NN NNP VBD CD IN DT JJ NNS IN DT JJ NN IN JJ NNP NN NNS VBG NNP NN IN NNP .\nPresident Bush said Thursday Iran and Syria must stop helping extremists and commit to help Iraq 's fledgling government before any talks .\tNNP NNP VBD NNP NNP CC NNP MD VB VBG NNS CC VB TO VB NNP POS JJ NN IN DT NNS .\nNamibian authorities have ordered two Americans deported for recruiting Namibians for security jobs in Iraq and Afghanistan .\tJJ NNS VBP VBN CD NNS VBD IN NN NNS IN NN NNS IN NNP CC NNP .\nThe Namibian Security Council ordered the immediate closure of their company , called Special Operations Consulting-Security Management Group .\tDT JJ NNP NNP VBD DT JJ NN IN PRP$ NN , VBD NNP NNP NNP NNP NNP .\nNamibian officials declared the company 's representatives , Paul Grimes and Frederic Piry , as ' prohibited immigrants . '\tJJ NNS VBD DT NN POS NNS , NNP NNP CC NNP NNP , IN `` VBN NNS . ``\nGrimes told local media earlier this week that the U.S.-based company had Namibian government approval to recruit within the country .\tNNP VBD JJ NNS RBR DT NN IN DT JJ NN VBD JJ NN NN TO VB IN DT NN .\nHe said they were trying to recruit at least three thousand Namibians for security jobs abroad .\tPRP VBD PRP VBD VBG TO VB IN JJS CD CD NNS IN NN NNS RB .\nNamibian law prohibits its citizens from taking part in military or security operations in other countries , without written approval from the Namibian government .\tJJ NN VBZ PRP$ NNS IN VBG NN IN JJ CC NN NNS IN JJ NNS , IN VBN NN IN DT JJ NN .\nThe Vatican says Pope Benedict XVI is deeply saddened about the situation in the U.S. Gulf Coast and is praying for the victims of Hurricane Katrina .\tDT NNP VBZ NNP NNP NNP VBZ RB VBN IN DT NN IN DT NNP NNP NNP CC VBZ VBG IN DT NNS IN NNP NNP .\nIn a telegram , Vatican Secretary of State Cardinal Angelo Sodano said the pontiff is praying for all those affected by the tragedy .\tIN DT NN , NNP NNP IN NNP NNP NNP NNP VBD DT NN VBZ VBG IN PDT DT VBN IN DT NN .\nThe telegram says Pope Benedict is also praying for the rescue workers and those helping the victims , and encouraging them to continue their efforts to bring relief and support .\tDT NN VBZ NNP NNP VBZ RB VBG IN DT NN NNS CC DT VBG DT NNS , CC VBG PRP TO VB PRP$ NNS TO VB NN CC NN .\nJapan has called for the United States to fully investigate why a recent shipment of American beef contained prohibited spinal material that could cause ' mad-cow ' disease .\tNNP VBZ VBN IN DT NNP NNPS TO RB VB WRB DT JJ NN IN JJ NN VBD VBN JJ NN WDT MD VB `` NN `` NN .\nJapanese Cabinet Secretary Shinzo Abe says no American beef will be allowed into Japan until the U.S. takes action to prevent a repeat of the incident .\tJJ NNP NNP NNP NNP VBZ DT JJ NN MD VB VBN IN NNP IN DT NNP VBZ NN TO VB DT NN IN DT NN .\nAbe says Tokyo will ask meat sellers to inspect all U.S. beef shipments already in Japan to see if they contain potentially dangerous cattle parts .\tNNP VBZ NNP MD VB NN NNS TO VB DT NNP NN NNS RB IN NNP TO VB IN PRP VBP RB JJ NNS NNS .\nU.S. Deputy Secretary of State Robert Zoellick apologized for the incident in talks with Japanese officials in Tokyo Monday .\tNNP NNP NNP IN NNP NNP NNP VBD IN DT NN IN NNS IN JJ NNS IN NNP NNP .\nHe said the company that shipped the suspicious meat will be barred from further exports .\tPRP VBD DT NN WDT VBD DT JJ NN MD VB VBN IN JJ NNS .\nJapan resumed U.S. beef imports last month following a two-year halt , but reimposed the ban Friday after inspectors found spinal material in a shipment of veal .\tNNP VBD NNP NN NNS JJ NN VBG DT JJ NN , CC VBD DT NN NNP IN NNS VBD JJ NN IN DT NN IN NN .\nChina and Russia will hold their first joint military exercises later this month .\tNNP CC NNP MD VB PRP$ JJ JJ JJ NNS RB DT NN .\nThe Chinese Defense Ministry says the exercises , which have been dubbed ' Peace Mission 2005 , ' will take place August 18 through the August 25 in the Russian city of Vladivostok and on China 's coastal province of Shandong .\tDT JJ NNP NNP VBZ DT NNS , WDT VBP VBN VBN `` NNP NNP CD , `` MD VB NN NNP CD IN DT NNP CD IN DT JJ NN IN NNP CC IN NNP POS JJ NN IN NNP .\nMore than 10,000 troops from both nations armies , navies , marines and air forces will be involved .\tJJR IN CD NNS IN DT NNS NNS , NNS , NNS CC NN NNS MD VB VBN .\nThe ministry says the goal of the exercises is to ' deepen Sino-Russian trust ' and improve their capability to fight international terrorism .\tDT NN VBZ DT NN IN DT NNS VBZ TO `` VB JJ NN `` CC VB PRP$ NN TO VB JJ NN .\nThe exercises are a symbol of the improving ties between the once-bitter Cold War rivals , who are dealing with Muslim separatists in their respective countries .\tDT NNS VBP DT NN IN DT VBG NNS IN DT JJ NNP NNP NNS , WP VBP VBG IN NNP NNS IN PRP$ JJ NNS .\nA suicide bomber driving a tractor near Iraq 's Abu Ghraib prison has blown himself up in the second attack on the facility in the past two days .\tDT NN NN VBG DT NN IN NNP POS NNP NNP NN VBZ VBN PRP RP IN DT JJ NN IN DT NN IN DT JJ CD NNS .\nPolice say at least four civilians were hurt in Monday 's blast .\tNNS VBP IN JJS CD NNS VBD VBN IN NNP POS NN .\nThe U.S. military says Saturday 's assault on the prison involved multiple , simultaneous attacks .\tDT NNP NN VBZ NNP POS NN IN DT NN VBN JJ , JJ NNS .\nIt estimates the assailants suffered 50 casualties , and says 23 U.S. troops and 13 detainees were wounded .\tPRP VBZ DT NNS VBD CD NNS , CC VBZ CD NNP NNS CC CD NNS VBD VBN .\nMeanwhile , Iraqi Shi'ite and Kurdish negotiators seeking agreement on the makeup of a new government are meeting today , before parliament 's next session Wednesday .\tRB , JJ NNP CC NNP NNS VBG NN IN DT NN IN DT JJ NN VBP VBG NN , IN NN POS JJ NN NNP .\nLawmakers say they hope to select a new president , two vice presidents and a prime minister when the session convenes .\tNNS VBP PRP VBP TO VB DT JJ NN , CD NN NNS CC DT JJ NN WRB DT NN VBZ .\nSunday , lawmakers elected a Sunni Arab cabinet minister , Hajim al-Hassani , to head the new assembly .\tNNP , NNS VBD DT NNP JJ NN NN , NNP NNP , TO VB DT JJ NN .\nThe U.S. Defense Department says it will comply with a federal judge 's order to release the identities of hundreds of terror suspects being held at the U.S. naval base in Guantanamo Bay , Cuba .\tDT NNP NNP NNP VBZ PRP MD VB IN DT JJ NN POS NN TO VB DT NNS IN NNS IN NN NNS VBG VBN IN DT NNP JJ NN IN NNP NNP , NNP .\nA Pentagon spokesman says the military is working with the U.S. Justice Department to release uncensored transcripts of military tribunal hearings at Guantanamo by a court-ordered deadline of March 3 .\tDT NNP NN VBZ DT NN VBZ VBG IN DT NNP NNP NNP TO VB JJ NNS IN JJ JJ NNS IN NNP IN DT JJ NN IN NNP CD .\nThe judge 's order last month was part of a ruling issued in favor of the Associated Press , which filed a lawsuit to obtain the transcripts to determine whether detainees had been properly classified as enemy combatants .\tDT NN POS NN JJ NN VBD NN IN DT NN VBN IN NN IN DT NNP NNP , WDT VBD DT NN TO VB DT NNS TO VB IN NNS VBD VBN RB VBN IN NN NNS .\nThe military released hundreds of transcripts last year , but blacked out the names and nationalities of detainees .\tDT JJ VBN NNS IN NNS JJ NN , CC VBD RP DT NNS CC NNS IN NNS .\nThe Pentagon is strongly opposed to releasing the identities , but has ultimately decided not to appeal the order .\tDT NNP VBZ RB VBN TO VBG DT NNS , CC VBZ RB VBN RB TO VB DT NN .\nThe United States has warned of possible terrorist attacks against its interests in the Middle East and North Africa , and has cautioned American citizens to be vigilant about their security in those areas .\tDT NNP NNP VBZ VBN IN JJ JJ NNS IN PRP$ NNS IN DT NNP NNP CC NNP NNP , CC VBZ VBN JJ NNS TO VB JJ IN PRP$ NN IN DT NNS .\nIn a statement posted Saturday on the U.S. Embassy in Kuwait 's website , the State Department says potential attacks could include bombings , hijackings , hostage taking , kidnappings and assassinations .\tIN DT NN VBD NNP IN DT NNP NNP IN NNP POS NN , DT NNP NNP VBZ JJ NNS MD VB NNS , NNS , NN NN , NNS CC NNS .\nIt also warned that chemical and biological agents must be considered a possible threat .\tPRP RB VBD IN NN CC JJ NNS MD VB VBN DT JJ NN .\nThe State Department singled out Westerners , oil workers and U.S. contractors working with the military as potential targets .\tDT NNP NNP VBD RP NNS , NN NNS CC NNP NNS VBG IN DT JJ IN JJ NNS .\nThe statement pointed to last month 's bombings of three Jordanian hotels as underscoring the desire of terrorists to target places perceived to cater to Westerners .\tDT NN VBD TO JJ NN POS NNS IN CD JJ NNS IN VBG DT NN IN NNS TO VB NNS VBN TO VB TO NNS .\nA Palestinian official says Israeli settlers stoned cars and set fire to Palestinian-owned olive trees in the West Bank Monday .\tDT JJ NN VBZ JJ NNS VBD NNS CC VBD NN TO JJ JJ NNS IN DT NNP NNP NNP .\nOfficial Ghassan Daglas said two Palestinians were lightly injured as the rampaging settlers torched fields and hurled rocks in the northern city of Nablus .\tNNP NNP NNP VBD CD NNS VBD RB VBN IN DT VBG NNS VBD NNS CC VBD NNS IN DT JJ NN IN NNP .\nHe said some of the settlers were on horseback , leaving fires blazing in their wake .\tPRP VBD DT IN DT NNS VBD IN NN , VBG NNS VBG IN PRP$ NN .\nReports of the crowd size vary , with between 10 and 30 settlers taking part in the unrest .\tNNS IN DT NN NN VBP , IN IN CD CC CD NNS VBG NN IN DT NN .\nAn Israeli border guard spokesman said one settler was arrested .\tDT JJ NN NN NN VBD CD NN VBD VBN .\nThe settlers were apparently retaliating because the army removed a settler 's caravan from an unauthorized settlement outpost in the area earlier in the day .\tDT NNS VBD RB VBG IN DT NN VBD DT NN POS NN IN DT JJ NN NN IN DT NN RBR IN DT NN .\nAl-Qaida loyalists in Iraq say they kidnapped Algeria 's top diplomat in Baghdad .\tNNP NNS IN NNP VBP PRP VBD NNP POS JJ NN IN NNP .\nIn a statement posted Saturday on an Islamist Internet site , the group al-Qaida in Iraq said it targeted the chief of the Algerian mission in Baghdad as part of a campaign to drive out diplomats from other Muslim nations .\tIN DT NN VBD NNP IN DT NN NN NN , DT NN NNP IN NNP VBD PRP VBD DT NN IN DT JJ NN IN NNP IN NN IN DT NN TO VB RP NNS IN JJ NNP NNS .\nAl-Qaida in Iraq , which is headed by the country 's notorious fugitive Abu Musab al-Zarqawi , compared the Algerian envoy 's abduction this week to the kidnapping and murder earlier this month of Egypt 's ambassador to Iraq .\tNNP IN NNP , WDT VBZ VBN IN DT NN POS JJ JJ NNP NNP NNP , VBN DT JJ NN POS NN DT NN TO DT NN CC NN RBR DT NN IN NNP POS NN TO NNP .\nThe Algerian mission chief , Ali Belaroussi , and another member of Algeria 's diplomatic staff in Iraq were snatched by gunmen on Thursday .\tDT JJ NN NN , NNP NNP , CC DT NN IN NNP POS JJ NN IN NNP VBD VBN IN NNS IN NNP .\nSaturday 's statement did not mention the second man .\tNNP POS NN VBD RB VB DT JJ NN .\nAttacks by insurgents in Iraq have driven many diplomats from Baghdad , undermining the U.S.-backed government 's efforts to gain support among Arab countries .\tNNS IN NNS IN NNP VBP VBN JJ NNS IN NNP , VBG DT JJ NN POS NNS TO VB NN IN JJ NNS .\nThe foreign minister of the ousted Taleban regime in Afghanistan has decided to run for a seat in September 's parliamentary elections .\tDT JJ NN IN DT VBN NNP NN IN NNP VBZ VBN TO VB IN DT NN IN NNP POS JJ NNS .\nThe election commission says Wakil Ahmed Muttawakil has nominated himself to run for a seat from the former Taleban stronghold of Kandahar in southern Afghanistan .\tDT NN NN VBZ NNP NNP NNP VBZ VBN PRP TO VB IN DT NN IN DT JJ NNP NN IN NNP IN JJ NNP .\nMr. Muttawakil was considered by many as a moderate element in the ousted regime .\tNNP NNP VBD VBN IN JJ IN DT JJ NN IN DT VBN NN .\nHe surrendered to U.S. troops after the fall of the Taleban in late 2001 .\tPRP VBD TO NNP NNS IN DT NN IN DT NNP IN JJ CD .\nAfter 18 months in custody , he was released by the U.S. military in October , 2003 .\tIN CD NNS IN NN , PRP VBD VBN IN DT NNP NN IN NNP , CD .\nLast year , Afghan President Hamid Karzai offered an olive branch to rank-and-file Taleban fighters , inviting them to join the political process .\tJJ NN , JJ NNP NNP NNP VBD DT JJ NN TO JJ NNP NNS , VBG PRP TO VB DT JJ NN .\nBut he said his offer is not for those hardcore militants who are wanted for human rights violations .\tCC PRP VBD PRP$ NN VBZ RB IN DT JJ NNS WP VBP VBN IN JJ NNS NNS .\nPope Benedict XVI has expressed understanding for a former Warsaw archbishop who resigned last month after admitting that he agreed to cooperate with Poland 's communist-era security police .\tNNP NNP NNP VBZ VBN NN IN DT JJ NNP NN WP VBD JJ NN IN VBG IN PRP VBD TO VB IN NNP POS JJ NN NN .\nIn a letter to Stanislaw Wielgus published Tuesday , the pontiff said he is fully conscious of the exceptional circumstances under which Polish priests performed their duties while under Soviet domination .\tIN DT NN TO NNP NNP VBN NNP , DT NN VBD PRP VBZ RB JJ IN DT JJ NNS IN WDT JJ NNS VBD PRP$ NNS IN IN JJ NN .\nThe letter contained what Benedict called a ' special apostolic blessing ' to the cleric .\tDT NN VBD WP NNP VBD DT `` JJ JJ NN `` TO DT NN .\nIt also encouraged him to resume his religious duties .\tPRP RB VBD PRP TO VB PRP$ JJ NNS .\nWielgus resigned his post on January 7 , after a church commission said it found numerous documents confirming the cleric had collaborated with communist security organizations for years .\tNNP VBD PRP$ NN IN NNP CD , IN DT NN NN VBD PRP VBD JJ NNS VBG DT NN VBD VBN IN JJ NN NNS IN NNS .\nLast week , lawyers for the former archbishop said they were moving to clear their client 's name of spy charges , claiming that he never actually collaborated .\tJJ NN , NNS IN DT JJ NN VBD PRP VBD VBG TO VB PRP$ NN POS NN IN NN NNS , VBG IN PRP RB RB VBN .\nVatican authorities said in January there is no clear proof that Wielgus ' actions harmed anyone .\tNNP NNS VBD IN NNP EX VBZ DT JJ NN IN NNP POS NNS VBD DT .\nAt least two cars driven by suicide bombers exploded Monday at the entrance to a U.S. military camp in western Iraq .\tIN JJS CD NNS VBN IN NN NNS VBD NNP IN DT NN TO DT NNP JJ NN IN JJ NNP .\nEarly reports from the camp near Qaim say at least two U.S. personnel were wounded in the attack .\tRB NNS IN DT NN IN NNP VBP IN JJS CD NNP NNS VBD VBN IN DT NN .\nA military spokesman in Baghdad said officials were still gathering details early this afternoon .\tDT JJ NN IN NNP VBD NNS VBD RB VBG NNS RB DT NN .\nMeanwhile , Iraqi security forces backed by U.S. troops rounded up dozens of suspected insurgents during raids today in central Baghdad .\tRB , JJ NN NNS VBN IN NNP NNS VBD RP NNS IN JJ NNS IN NNS NN IN JJ NNP .\nA U.S. military statement says more than 500 Iraqi soldiers and police took part in the operation .\tDT NNP JJ NN VBZ JJR IN CD JJ NNS CC NNS VBD NN IN DT NN .\nIn other developments , Pakistan says kidnappers are seeking ransom for the release of an embassy employee abducted Saturday in Baghdad .\tIN JJ NNS , NNP VBZ NNS VBP VBG NN IN DT NN IN DT JJ NN VBN NNP IN NNP .\nA Pakistani Foreign Ministry spokesman declined to disclose details , but he said the victim , Malik Mohammed Javed , is unharmed and in contact with embassy officials .\tDT JJ NNP NNP NN VBD TO VB NNS , CC PRP VBD DT NN , NNP NNP NNP , VBZ JJ CC IN NN IN JJ NNS .\nVenezuela 's Information Minister Andres Izarra has resigned to run a new satellite television channel backed by President Hugo Chavez .\tNNP POS NNP NNP NNP NNP VBZ VBN TO VB DT JJ NN NN NN VBN IN NNP NNP NNP .\nMr. Izarra said Wednesday he was stepping down to ensure the ' independence ' of the Telesur channel , which began limited broadcasts this week .\tNNP NNP VBD NNP PRP VBD VBG RP TO VB DT `` NN `` IN DT NNP NN , WDT VBD JJ NNS DT NN .\nPresident Chavez and the governments of Argentina , Cuba and Uruguay have supported the new channel , saying it is needed to focus on news and issues in Latin America .\tNNP NNP CC DT NNS IN NNP , NNP CC NNP VBP VBN DT JJ NN , VBG PRP VBZ VBN TO VB IN NN CC NNS IN NNP NNP .\nCritics have expressed concern that Telesur may be a mouthpiece for propaganda by Mr. Chavez and Cuban President Fidel Castro .\tNNS VBP VBN NN IN NNP MD VB DT NN IN NN IN NNP NNP CC JJ NNP NNP NNP .\nLast week , the U.S. House of Representatives passed a measure calling for television and radio broadcasts to Venezuela to counter alleged ' anti-American ' rhetoric on the channel .\tJJ NN , DT NNP NNP IN NNPS VBD DT NN VBG IN NN CC NN NNS TO NNP TO VB VBN `` JJ `` NN IN DT NN .\nThe Senate has yet to approve the bill .\tDT NNP VBZ RB TO VB DT NN .\nPolice were also among the more than 11 people wounded in Wednesday 's blast , which happened in Quetta , the provincial capital .\tNNS VBD RB IN DT JJR IN CD NNS VBN IN NNP POS NN , WDT VBD IN NNP , DT JJ NN .\nBaluchistan has long been the site of a low-level insurgency seeking more autonomy for the province and a greater share of money from its natural resources .\tNNP VBZ RB VBN DT NN IN DT JJ NN VBG JJR NN IN DT NN CC DT JJR NN IN NN IN PRP$ JJ NNS .\nIn recent weeks , the region has also seen several attacks on trucks carrying supplies to NATO troops in Afghanistan .\tIN JJ NNS , DT NN VBZ RB VBN JJ NNS IN NNS VBG NNS TO NNP NNS IN NNP .\nThe U.S. military says four car bombings in the Iraqi capital Wednesday , killed at least 26 people and wounded more than 20 others .\tDT NNP NN VBZ CD NN NNS IN DT JJ NN NNP , VBD IN JJS CD NNS CC VBD JJR IN CD NNS .\nA statement said the bombings occurred within a span of 90 minutes and that security forces prevented the suicide bombers from reaching their intended targets .\tDT NN VBD DT NNS VBD IN DT NN IN CD NNS CC IN NN NNS VBD DT NN NNS IN VBG PRP$ JJ NNS .\nTwo Iraqis were killed and two Australian solders wounded in the first blast near the Australian embassy .\tCD NNS VBD VBN CC CD JJ NNS VBN IN DT JJ NN IN DT JJ NN .\nShortly afterwards , a car bomb exploded near a central Baghdad hospital , killing at least 18 people , including five Iraqi policemen .\tRB RB , DT NN NN VBD IN DT JJ NNP NN , VBG IN JJS CD NNS , VBG CD JJ NNS .\nTwo other car bombings killed Iraqi soldiers , security guards and civilians .\tCD JJ NN NNS VBD JJ NNS , NN NNS CC NNS .\nIraq said Tuesday it will close its borders and ban non-governmental vehicles from the roads to boost security for the country 's January 30 election .\tNNP VBD NNP PRP MD VB PRP$ NNS CC NN JJ NNS IN DT NNS TO VB NN IN DT NN POS NNP CD NN .\nThe movie The Da Vinci Code will be released in Indian theaters on Friday after its distributors agreed to attach a disclaimer saying the film is a work of fiction .\tDT NN DT NNP NNP NNP MD VB VBN IN JJ NNS IN NNP IN PRP$ NNS VBD TO VB DT NN VBG DT NN VBZ DT NN IN NN .\nThe film is opening in India a week later than originally planned because the distributors and India 's censorship board could not agree on the wording and placement of the disclaimer .\tDT NN VBZ VBG IN NNP DT NN RB IN RB VBN IN DT NNS CC NNP POS NN NN MD RB VB IN DT NN CC NN IN DT NN .\nIndian Christians had protested the film .\tJJ NNPS VBD VBN DT NN .\nThe film board ruled that only adults could watch the film and that it must have a 15-second disclaimer at both the beginning and end of the movie .\tDT NN NN VBD IN JJ NNS MD VB DT NN CC IN PRP MD VB DT JJ NN IN DT DT NN CC NN IN DT NN .\nBoth the book and the movie version of The Da Vinci Code have been controversial because of their assertion that Jesus married and had children and the Vatican tried to suppress that information .\tDT DT NN CC DT NN NN IN DT NNP NNP NNP VBP VBN JJ IN IN PRP$ NN WDT VBZ JJ CC VBD NNS CC DT NNP VBD TO VB DT NN .\nChristians view that as blasphemous .\tNNS VBP DT IN JJ .\nSpanish Prime Minister Jose Luis Rodriguez Zapatero has wrapped up a visit to Venezuela by signing a series of defense and energy deals with the Andean nation .\tJJ NNP NNP NNP NNP NNP NNP VBZ VBN RP DT NN TO NNP IN VBG DT NN IN NN CC NN NNS IN DT JJ NN .\nPrime Minister Zapatero and Venezuelan President Hugo Chavez Wednesday signed the agreements , which include sales of Spanish military transport planes and coastal patrol vessels to Venezuela .\tNNP NNP NNP CC JJ NNP NNP NNP NNP VBD DT NNS , WDT VBP NNS IN JJ JJ NN NNS CC JJ NN NNS TO NNP .\nBoth President Chavez and Prime Minister Zapatero said the defense equipment will be used for peaceful purposes .\tDT NNP NNP CC NNP NNP NNP VBD DT NN NN MD VB VBN IN JJ NNS .\nMr. Chavez said Venezuela would use the aircraft and vessels to patrol land and sea borders to prevent drug trafficking .\tNNP NNP VBD NNP MD VB DT NN CC NNS TO VB NN CC NN NNS TO VB NN NN .\nThe two leaders also signed an accord that calls for Spain 's Repsol oil company to invest in Venezuela .\tDT CD NNS RB VBD DT NN WDT VBZ IN NNP POS NNP NN NN TO VB IN NNP .\nAnother deal calls for Spain to build three ships , including an oil tanker , for Venezuela .\tDT NN VBZ IN NNP TO VB CD NNS , VBG DT NN NN , IN NNP .\nThe Los Angeles Police Department earlier this year investigated possible threats against Britney Spears ' ex-husband Kevin Federline .\tDT NNP NNP NNP NNP RBR DT NN VBD JJ NNS IN NNP NNPS POS NN NNP NNP .\nOn Monday , LAPD spokeswoman Norma Eisenman said the department probed allegations in June , but later determined there was not enough information to keep the investigation active .\tIN NNP , NNP NN NNP NNP VBD DT NN VBD NNS IN NNP , CC RB VBD EX VBD RB JJ NN TO VB DT NN JJ .\nThe FBI 's Los Angeles field office received ' nonspecific , uncorroborated allegations regarding a threat against Mr. Federline , ' according to FBI spokeswoman Laura Eimiller .\tDT NNP POS NNP NNP NN NN VBD `` JJ , JJ NNS VBG DT NN IN NNP NNP , `` VBG TO NNP NN NNP NNP .\nShe said the bureau passed the information to the LAPD because it was not a federal matter .\tPRP VBD DT NN VBD DT NN TO DT NNP IN PRP VBD RB DT JJ NN .\nEimiller declined to say whether the FBI received the information and would not describe the threat .\tNNP VBD TO VB IN DT NNP VBD DT NN CC MD RB VB DT NN .\nKevin Federline was married to Britney Spears from 2004 to 2006 .\tNNP NNP VBD VBN TO NNP NNPS IN CD TO CD .\nHe is currently seeking primary custody of their sons , two-year-old Sean Preston and one-year-old Jayden James .\tPRP VBZ RB VBG JJ NN IN PRP$ NNS , JJ NNP NNP CC JJ NNP NNP .\nThe men 's downhill highlights action at the 2006 Olympics Sunday with American Bode Miller hoping to add a gold medal to his trophy case .\tDT NNS POS NN VBZ NN IN DT CD NNPS NNP IN NNP NNP NNP VBG TO VB DT NN NN TO PRP$ NN NN .\nMiller will have to beat countryman Daron Rahlves and the strong Austrian Alpine team , including double Olympic champion Hermann Maier , World Cup downhill leader Michael Walchhofer , and reigning gold medalist Fritz Strobl .\tNNP MD VB TO VB NN NNP NNP CC DT JJ JJ NNP NN , VBG JJ JJ NN NNP NNP , NNP NNP NN NN NNP NNP , CC VBG JJ NN NNP NNP .\nApollo Anton Ohno of the United States makes his first appearance in Turin when he skates in the men 's 1,500-meters short track speed skating race .\tNNP NNP NNP IN DT NNP NNP VBZ PRP$ JJ NN IN NNP WRB PRP VBZ IN DT NNS POS NNS JJ NN NN VBG NN .\nGermans Claudia Pechstein and Anni Friesinger go for gold in the women 's 3,000-meters long track speed skating event .\tNNS NNP NNP CC NNP NNP VB IN NN IN DT NNS POS NNS JJ NN NN VBG NN .\nMen 's luge will award a gold medal , with World Cup and Olympic champion Armin Zoeggeler of Italy hoping to take home the prize .\tNNS POS NN MD VB DT NN NN , IN NNP NNP CC NNP NN NNP NNP IN NNP VBG TO VB NN DT NN .\nGold is also up for grabs in men 's half pipe snowboarding and in men 's and women 's cross-country skiing pursuit races .\tNN VBZ RB RB IN NNS IN NNS POS NN NN NN CC IN NNS POS CC NNS POS JJ NN NN NNS .\nIraqi officials say a car bomb exploded outside a police crime lab in the northern city of Mosul Tuesday , killing two officers .\tJJ NNS VBP DT NN NN VBD IN DT NN NN NN IN DT JJ NN IN NNP NNP , VBG CD NNS .\nAt least seven other people were wounded in the morning attack .\tIN JJS CD JJ NNS VBD VBN IN DT NN NN .\nIn a similar incident last month , a suicide bomber struck a police forensics lab in Baghdad , killing 22 people .\tIN DT JJ NN JJ NN , DT NN NN VBD DT NN VBZ NN IN NNP , VBG CD NNS .\nA group affiliated with al-Qaida , the Islamic State of Iraq , claimed responsibility for that attack .\tDT NN VBN IN NNP , DT NNP NNP IN NNP , VBD NN IN DT NN .\nAlso in Mosul Tuesday , a police official says gunmen opened fire on two Christian university students , killing one and wounding another .\tRB IN NNP NNP , DT NN NN VBZ NNS VBD NN IN CD JJ NN NNS , VBG CD CC VBG DT .\nOn Monday , three bombings in western Iraq left one person dead , and wounded at least four others .\tIN NNP , CD NNS IN JJ NNP VBD CD NN JJ , CC VBD IN JJS CD NNS .\nAfghan authorities say a suicide bomber has killed eight people at a governor 's residence in southern Afghanistan .\tJJ NNS VBP DT NN NN VBZ VBN CD NNS IN DT NN POS NN IN JJ NNP .\nThey say the attack in Helmand province killed guards , but did not harm the governor , Mohammed Daud .\tPRP VBP DT NN IN NNP NN VBD NNS , CC VBD RB VB DT NN , NNP NNP .\nIn the same province , a British Marine was killed while on patrol .\tIN DT JJ NN , DT JJ NN VBD VBN IN IN NN .\nAnd in Khost , U.S.-led forces killed four people , including a teenage girl , during a raid .\tCC IN NNP , JJ NNS VBD CD NNS , VBG DT NN NN , IN DT NN .\nMeanwhile , Afghan President Hamid Karzai says resolving difficulties with neighboring Pakistan will put an end to the Taleban .\tRB , JJ NNP NNP NNP VBZ VBG NNS IN VBG NNP MD VB DT NN TO DT NNP .\nHe says Pakistan is responsible for violence in Afghanistan .\tPRP VBZ NNP VBZ JJ IN NN IN NNP .\nIn other developments , Human Rights Watch is calling on Mr. Karzai to quickly establish a truth and reconciliation court to deal with war crimes and human rights abuses committed in the country over the past 30 years .\tIN JJ NNS , NNP NNP NNP VBZ VBG IN NNP NNP TO RB VB DT NN CC NN NN TO VB IN NN NNS CC JJ NNS NNS VBN IN DT NN IN DT JJ CD NNS .\nPrince William County , in the Virginia suburbs outside of Washington , is drawing attention across the United States by enforcing local laws that lead to the deportation of hundreds of illegal immigrants .\tNNP NNP NNP , IN DT NNP NNS IN IN NNP , VBZ VBG NN IN DT NNP NNPS IN VBG JJ NNS WDT VBP TO DT NN IN NNS IN JJ NNS .\nCommunity activists say it has created a hostile environment toward all immigrants .\tNN NNS VBP PRP VBZ VBN DT JJ NN IN DT NNS .\nProducer Zulima Palacio prepared the story .\tNN NNP NNP VBD DT NN .\nAfrican Union officials say the Republic of Congo will be named head of the African Union this year and Sudan will take the A.U. chair in 2007 under a compromise reached early Tuesday .\tNNP NNP NNS VBP DT NNP IN NNP MD VB VBN NN IN DT NNP NNP DT NN CC NNP MD VB DT NNP NN IN CD IN DT NN VBN JJ NNP .\nThe officials say the decision resolves an impasse among summit delegates in Khartoum over host-country Sudan 's bid for the chairmanship .\tDT NNS VBP DT NN VBZ DT NN IN NN NNS IN NNP IN JJ NNP POS NN IN DT NN .\nThe A.U. summit host country usually chairs the organization .\tDT NNP NN NN NN RB VBZ DT NN .\nBut human rights groups objected to Sudan 's bid because of violence and abuses in the Darfur region .\tCC JJ NNS NNS VBD TO NNP POS NN IN IN NN CC NNS IN DT NNP NN .\nFive African leaders made a formal request for President Omar al-Bashir to forgo the post .\tCD JJ NNS VBD DT JJ NN IN NNP NNP NNP TO VB DT NN .\nLate Monday , officials appointed five African nations to pick a new chair candidate to propose to the 53-nation body on Tuesday .\tRB NNP , NNS VBD CD JJ NNS TO VB DT JJ NN NN TO VB TO DT JJ NN IN NNP .\nTens of thousands of people in Darfur have been killed in fighting between government-backed Arab militias ( known as Janjaweed ) and rebel forces .\tNNS IN NNS IN NNS IN NNP VBP VBN VBN IN VBG IN JJ JJ NNS LRB VBN IN NNP RRB CC NN NNS .\nSyrian President Bashar al-Assad has banned smoking in a wide range of public places .\tJJ NNP NNP NNP VBZ VBN NN IN DT JJ NN IN JJ NNS .\nMr. Assad announced the ban Sunday , forbidding smoking in restaurants , cafes , movie theaters , educational institutions and hospitals .\tNNP NNP VBD DT NN NNP , VBG NN IN NNS , NNS , NN NNS , JJ NNS CC NNS .\nSmoking will also be banned on public transportation .\tVBG MD RB VB VBN IN JJ NN .\nThe measure includes the use of water pipes favored by locals and tourists alike .\tDT NN VBZ DT NN IN NN NNS VBN IN NNS CC NNS RB .\nViolators of the ban face a fine of about $ 45 .\tNNS IN DT NN VBP DT NN IN IN $ CD .\nEarlier this year , Syria issued a law forbidding the sale of tobacco to those under 18 years of age .\tRBR DT NN , NNP VBD DT NN VBG DT NN IN NN TO DT IN CD NNS IN NN .\nAfghan and foreign troops are getting ready to take back a southern Afghan town that is being controlled by Taliban militants .\tJJ CC JJ NNS VBP VBG JJ TO VB RP DT JJ JJ NN WDT VBZ VBG VBN IN NNP NNS .\nAfghan defense ministry spokesman General Mohammad Zahir Azimi says security forces are beginning an operation near Musa Qala , a town in southern Helmand province .\tJJ NN NN NN NNP NNP NNP NNP VBZ NN NNS VBP VBG DT NN IN NNP NNP , DT NN IN JJ NNP NN .\nTaliban militants overran Musa Qala in February , after British troops withdrew and handed over security responsibilities to local elders .\tNNP NNS VBD NNP NNP IN NNP , IN JJ NNS VBD CC VBD RP NN NNS TO JJ NNS .\nBritish military officials say the goal is to take back the town .\tJJ JJ NNS VBP DT NN VBZ TO VB RP DT NN .\nThe Taliban says it has more than 2,000 armed fighters ready to defend Musa Qala .\tDT NNP VBZ PRP VBZ JJR IN CD JJ NNS JJ TO VB NNP NNP .\nSeparately , NATO foreign ministers are discussing appointing an international ' super ' envoy to Afghanistan .\tRB , NNP JJ NNS VBP VBG VBG DT JJ `` JJ `` NN TO NNP .\nThe envoy would help better coordinate U.N. and NATO civilian and military efforts within the country .\tDT NN MD VB JJR VB NNP CC NNP JJ CC JJ NNS IN DT NN .\nThe leader of Iraq 's largest Shi'ite Muslim political party has endorsed the country 's draft constitution , urging Shi'ites to approve it in next month 's national referendum .\tDT NN IN NNP POS JJS JJ NN JJ NN VBZ VBN DT NN POS NN NN , VBG NNS TO VB PRP IN JJ NN POS JJ NN .\nAbdel Aziz al-Hakim of the Supreme Council of the Islamic Revolution in Iraq ( SCIRI ) told thousands of supporters at a rally in Baghdad Saturday that it is their religious duty to vote ' yes . '\tNNP NNP NNP IN DT NNP NNP IN DT NNP NNP IN NNP LRB NNP RRB VBD NNS IN NNS IN DT NN IN NNP NNP IN PRP VBZ PRP$ JJ NN TO VB `` UH . ``\nHis endorsement echoes a similar call Thursday from the top Shi'ite religious authority in Iraq , Grand Ayatollah Ali al-Sistani .\tPRP$ NN VBZ DT JJ NN NNP IN DT JJ NNP JJ NN IN NNP , NNP NNP NNP NNP .\nIn a separate development , a judge in the southern city of Basra ordered the arrest of two British soldiers who were freed Monday in a controversial British raid on a local prison .\tIN DT JJ NN , DT NN IN DT JJ NN IN NNP VBD DT NN IN CD JJ NNS WP VBD VBN NNP IN DT JJ JJ NN IN DT JJ NN .\nThe charges against them include killing an Iraqi policeman .\tDT NNS IN PRP VBP VBG DT JJ NN .\nBritish officials say their troops are not under Iraqi jurisdiction .\tJJ NNS VBP PRP$ NNS VBP RB IN JJ NN .\nIn Baghdad , a suicide car bomb exploded near an Iraqi military checkpoint Saturday , killing two soldiers .\tIN NNP , DT NN NN NN VBD IN DT JJ JJ NN NNP , VBG CD NNS .\nChina has reacted angrily to the United States ' decision to place sanctions on six Chinese companies accused of supplying Iran with sensitive military equipment .\tNNP VBZ VBN RB TO DT NNP NNPS POS NN TO VB NNS IN CD JJ NNS VBN IN VBG NNP IN JJ JJ NN .\nChina 's Foreign Ministry Wednesday demanded that the U.S. lift the sanctions immediately .\tNNP POS NNP NNP NNP VBD IN DT NNP NN DT NNS RB .\nThe ministry said the U.S. actions will not benefit the two countries ' cooperation in anti-proliferation efforts .\tDT NN VBD DT NNP NNS MD RB VB DT CD NNS POS NN IN JJ NNS .\nThe year-long sanctions announced Tuesday block the firms from doing business with the U.S. government or obtaining American high-tech products .\tDT JJ NNS VBD NNP NN DT NNS IN VBG NN IN DT NNP NN CC VBG JJ JJ NNS .\nThe State Department says the restrictions are an effective tool in blocking Iran from developing missiles and weapons of mass destruction .\tDT NNP NNP VBZ DT NNS VBP DT JJ NN IN VBG NNP IN VBG NNS CC NNS IN NN NN .\nThe six Chinese companies are a missile exporter known as Norinco , the chemical equipment group Zibo Chemet Co. , China Aero-Technology Import-Export Corp. , Hongdu Aviation Industry Group , Ounion International Economic and Technical Cooperative Ltd. , and Limmt Metallurgy and Minerals Co.\tDT CD JJ NNS VBP DT NN NN VBN IN NNP , DT NN NN NN NNP NNP NNP , NNP NNP NNP NNP , NNP NNP NNP NNP , NNP NNP NNP CC NNP NNP NNP , CC NNP NNP CC NNP NNP\nSanctions were also imposed on two Indian companies and an Austrian firm .\tNNS VBD RB VBN IN CD JJ NNS CC DT JJ NN .\nThe Walt Disney Company has agreed to sell Miramax Films to an investor group for more than $ 660 million .\tDT NNP NNP NNP VBZ VBN TO VB NNP NNP TO DT NN NN IN JJR IN $ CD CD .\nDisney agreed to the deal late Thursday after Filmyard Holdings paid a nonrefundable $ 40-million deposit .\tNNP VBD TO DT NN RB NNP IN NNP NNP VBD DT JJ $ CD NN .\nFilmyard is an investment group headed by Los Angeles construction magnate Ron Tutor .\tNNP VBZ DT NN NN VBN IN NNP NNP NN NN NNP NNP .\nThe financing for the transaction is expected to be finalized by the end of the year .\tDT NN IN DT NN VBZ VBN TO VB VBN IN DT NN IN DT NN .\nThe Miramax library of 700 movies includes Pulp Fiction , Shakespeare in Love , Chicago and No Country for Old Men .\tDT NNP NN IN CD NNS VBZ NNP NNP , NNP IN NNP , NNP CC NNP NNP IN NNP NNP .\nDisney Chief Executive Robert Iger said in a statement , Disney 's current focus is on the development of - in his words - ' great motion pictures ' under the Disney , Pixar and Marvel brands .\tNNP NNP NNP NNP NNP VBD IN DT NN , NNP POS JJ NN VBZ IN DT NN IN : IN PRP$ NNS : `` JJ NN NNS `` IN DT NNP , NNP CC NNP NNS .\nThe Filmyard deal marks the culmination of a drawn-out sale that had attracted various Los Angeles-based rival bidders , including Bob and Harvey Weinstein , the brothers who founded the studio .\tDT NNP NN VBZ DT NN IN DT JJ NN WDT VBD VBN JJ NNP JJ JJ NNS , VBG NNP CC NNP NNP , DT NNS WP VBD DT NN .\nNorth Korea has called Vice President Dick Cheney a ' bloodthirsty beast ' and said his comments describing ruler Kim Jong-il as ' irresponsible ' could keep Pyongyang away from future nuclear negotiations .\tNNP NNP VBZ VBN NNP NNP NNP NNP DT `` JJ NN `` CC VBD PRP$ NNS VBG NN NNP NNP IN `` JJ `` MD VB VBG RB IN JJ JJ NNS .\nNorth Korea 's official KCNA news agency quoted a Foreign Ministry spokesman Thursday as saying the U.S. vice president is a hated , cruel monster who drenched various parts of the world in blood .\tNNP NNP POS JJ NNP NN NN VBD DT NNP NNP NN NNP IN VBG DT NNP NN NN VBZ DT JJ , JJ NN WP VBD JJ NNS IN DT NN IN NN .\nWhite House spokesman Scott McCellan says such provocative statements only further isolate the country from the international community .\tNNP NNP NN NNP NNP VBZ JJ JJ NNS RB RB VB DT NN IN DT JJ NN .\nIn an interview Sunday on the U.S. Cable News Network , Mr. Cheney called President Kim one of the world 's most irresponsible leaders , who runs a police state and has one of the most heavily militarized societies in the world .\tIN DT NN NNP IN DT NNP NNP NNP NNP , NNP NNP VBD NNP NNP CD IN DT NN POS RBS JJ NNS , WP VBZ DT NN NN CC VBZ CD IN DT RBS RB VBN NNS IN DT NN .\nThe United States has been seeking diplomatic pressure to get the North to return to six party talks .\tDT NNP NNPS VBZ VBN VBG JJ NN TO VB DT NNP TO VB TO CD NN NNS .\nPalestinian sources say an Israeli helicopter gunship fired a missile at militants during a clash in northern Gaza , killing three of them .\tJJ NNS VBP DT JJ NN NN VBD DT NN IN NNS IN DT NN IN JJ NNP , VBG CD IN PRP .\nThe Israeli army confirmed the air attack .\tDT JJ NN VBD DT NN NN .\nIt said soldiers spotted militants trying to launch rockets at Israel and that a gunbattle followed involving Israeli aircraft .\tPRP VBD NNS VBD NNS VBG TO VB NNS IN NNP CC IN DT NN VBD VBG JJ NN .\nAt least five people were wounded in the clash .\tIN JJS CD NNS VBD VBN IN DT NN .\nThe militants involved were members of Islamic Jihad .\tDT NNS VBN VBD NNS IN NNP NNP .\nIn other news , Israel 's interior minister says four Hamas lawmakers must quit the organization if they want to continue living in east Jerusalem .\tIN JJ NN , NNP POS JJ NN VBZ CD NNP NNS MD VB DT NN IN PRP VBP TO VB VBG IN JJ NNP .\nRonnie Bar-On issued the ultimatum while speaking Monday on an Israeli TV station .\tNNP NNP VBD DT NN IN VBG NNP IN DT JJ NN NN .\nHe said letters were sent to the Hamas lawmakers giving them 30 days to resign or risk being expelled .\tPRP VBD NNS VBD VBN TO DT NNP NNS VBG PRP CD NNS TO VB CC VB VBG VBN .\nHamas ' charter calls for the destruction of Israel .\tNNP POS NN VBZ IN DT NN IN NNP .\nMadagascar 's Andry Rajoelina , who took power in a coup that toppled president Marc Ravalomanana in March , now says he is the only man who can provide leadership to the Indian Ocean island nation .\tNNP POS NNP NNP , WP VBD NN IN DT NN WDT VBD NN NNP NNP IN NNP , RB VBZ PRP VBZ DT JJ NN WP MD VB NN TO DT NNP NNP NN NN .\nRajoelina , along with the ousted president Ravalomanana and two other former presidents last week negotiated an agreement to share power in a new consensus government to stay in place until next year 's elections .\tNNP , IN IN DT JJ NN NNP CC CD JJ JJ NNS JJ NN VBD DT NN TO VB NN IN DT JJ NN NN TO VB IN NN IN JJ NN POS NNS .\nIn an interview on state-run radio and television stations , Rajoelina said it is unimaginable that anyone else should lead the transition .\tIN DT NN IN JJ NN CC NN NNS , NNP VBD PRP VBZ JJ IN DT RB MD VB DT NN .\nThe agreement reached on August 9 calls for a 31-member unity transition government led by a prime minister and three deputy prime ministers .\tDT NN VBD IN NNP CD NNS IN DT JJ NN NN NN VBN IN DT JJ NN CC CD JJ JJ NNS .\nFurther negotiations on power sharing issues are set for this week with elections to be held in 15 months .\tJJ NNS IN NN NN NNS VBP VBN IN DT NN IN NNS TO VB VBN IN CD NNS .\nEgypt says 12 small Palestinian factions have agreed to Egyptian proposals for a truce with Israel in the Gaza Strip .\tNNP VBZ CD JJ JJ NNS VBP VBN TO JJ NNS IN DT NN IN NNP IN DT NNP NNP .\nEgypt 's state news agency ( MENA ) quotes officials as saying the Palestinian groups approved the cease-fire offer at a meeting Wednesday in Cairo .\tNNP POS NN NN NN LRB NNP RRB VBZ NNS IN VBG DT JJ NNS VBD DT NN NN IN DT NN NNP IN NNP .\nIt says the truce would begin in Gaza and be extended later to the West Bank .\tPRP VBZ DT NN MD VB IN NNP CC VB VBN RB TO DT NNP NNP .\nNo timeframe was given .\tDT NN VBD VBN .\nThe larger Hamas militant group that controls Gaza told Egypt last week it would support a six-month cease-fire with Israel in Gaza , to be followed by a similar truce in the West Bank .\tDT JJR NNP JJ NN WDT VBZ NNP VBD NNP JJ NN PRP MD VB DT JJ NN IN NNP IN NNP , TO VB VBN IN DT JJ NN IN DT NNP NNP .\nEgypt has been trying for months to mediate an Israeli-Palestinian deal that would include a truce , an exchange of prisoners and an opening of Gaza 's border crossings .\tNNP VBZ VBN VBG IN NNS TO VB DT JJ NN WDT MD VB DT NN , DT NN IN NNS CC DT NN IN NNP POS NN NNS .\nIsrael has expressed doubts about the latest Palestinian truce offers , arguing they would give militants time to re-arm .\tNNP VBZ VBN NNS IN DT JJS JJ NN NNS , VBG PRP MD VB NNS NN TO VB .\nA report out of Kenya says Somali pirates have hijacked a German ship with 24 crew members on board .\tDT NN IN IN NNP VBZ JJ NNS VBP VBN DT JJ NN IN CD NN NNS IN NN .\nAndrew Mwangura , of the Mombasa-based East African Seafarers ' Assistance Program , says pirates seized the 20,000 ton container vessel Saturday in the Indian Ocean .\tNNP NNP , IN DT JJ JJ JJ NNS POS NN NN , VBZ NNS VBD DT CD NN NN NN NNP IN DT NNP NNP .\nHe says the hijacking occurred about 740 kilometers off the coast of Kismayo , between Kenya and the Seychelles .\tPRP VBZ DT NN VBD IN CD NNS IN DT NN IN NNP , IN NNP CC DT NNS .\nSomali pirates have seized dozens of ships over the past 18 months , receving millions of dollars in ransom payments .\tJJ NNS VBP VBN NNS IN NNS IN DT JJ CD NNS , VBG NNS IN NNS IN NN NNS .\nThe number of successful hijackings dropped off during January and February after the United States , China and other world powers deployed warships to the area .\tDT NN IN JJ NNS VBD RP IN NNP CC NNP IN DT NNP NNPS , NNP CC JJ NN NNS VBD NNS TO DT NN .\nBut the pirates have seized at least six ships since mid-March , including four European commercial vessels and two yachts from Seychelles .\tCC DT NNS VBP VBN IN JJS CD NNS IN NN , VBG CD JJ JJ NNS CC CD NNS IN NNS .\nBritish Foreign Secretary Jack Straw says it is ' inconceivable ' that any military action will be taken against Iran over its nuclear program .\tJJ NNP NNP NNP NNP VBZ PRP VBZ `` JJ `` WDT DT JJ NN MD VB VBN IN NNP IN PRP$ JJ NN .\nThe United States has accused Tehran of using its nuclear program to develop atomic weapons , and President Bush has previously said all options are on the table to resolve the issue .\tDT NNP NNPS VBZ VBN NNP IN VBG PRP$ JJ NN TO VB JJ NNS , CC NNP NNP VBZ RB VBN DT NNS VBP IN DT NN TO VB DT NN .\nBut Mr. Straw told British radio Wednesday , that the use of military force is ' not on the agenda . '\tCC NNP NNP VBD JJ NN NNP , IN DT NN IN JJ NN VBZ `` RB IN DT NN . ``\nHe also says Mr. Bush is taking a position advocated by ' all United States presidents . '\tPRP RB VBZ NNP NNP VBZ VBG DT NN VBN IN `` DT NNP NNPS NNS . ``\nThe International Atomic Energy Agency passed a resolution last Saturday accusing Iran of failing to comply with international nuclear safeguard agreements .\tDT NNP NNP NNP NNP VBD DT NN JJ NNP VBG NNP IN VBG TO VB IN JJ JJ NN NNS .\nThe resolution puts Iran on notice that it could be referred to the U.N. Security Council for possible sanctions if it fails to cooperate fully with IAEA inspectors .\tDT NN VBZ NNP IN NN IN PRP MD VB VBN TO DT NNP NNP NNP IN JJ NNS IN PRP VBZ TO VB RB IN NNP NNS .\nEcuadoreans protest against Government of President Lucio Gutierrez shouting ' Out Lucio ' in Quito , Ecuador , Friday Ecuador 's President Lucio Gutierrez has dismissed the Supreme Court and declared a state of emergency in the capital , Quito , in an effort to ease a mounting political crisis .\tNNPS VB IN NN IN NNP NNP NNP VBG `` IN NNP `` IN NNP , NNP , NNP NNP POS NNP NNP NNP VBZ VBN DT NNP NNP CC VBD DT NN IN NN IN DT NN , NNP , IN DT NN TO VB DT VBG JJ NN .\nMr. Gutierrez made the announcement late Friday in a nationally televised address .\tNNP NNP VBD DT NN RB NNP IN DT RB VBN NN .\nThousands of pro-opposition activists have been staging mostly peaceful street rallies for the last few days to protest the government 's restructuring of the Supreme Court late last year .\tNNS IN JJ NNS VBP VBN VBG RB JJ NN NNS IN DT JJ JJ NNS TO VB DT NN POS NN IN DT NNP NNP RB JJ NN .\nIn December , Congress fired 27 of 31 justices and designated new ones after President Gutierrez accused the judges of bias against him .\tIN NNP , NNP VBD CD IN CD NNS CC VBN JJ NNS IN NNP NNP VBD DT NNS IN NN IN PRP .\nThe move outraged the opposition , which complained the restructuring by the ruling party dominated congress was an attempt by the Gutierrez government to establish control over the high court .\tDT NN VBD DT NN , WDT VBD DT NN IN DT NN NN VBD NN VBD DT NN IN DT NNP NN TO VB NN IN DT JJ NN .\nThe president fired the new judges Friday .\tDT NN VBD DT JJ NNS NNP .\nRussian President Vladimir Putin has dissolved the government .\tJJ NNP NNP NNP VBZ VBN DT NN .\nRussian officials and news reports say Mr. Putin dismissed the government Wednesday after Prime Minister Mikhail Fradkov offered his resignation .\tJJ NNS CC NN NNS VBP NNP NNP VBD DT NN NNP IN NNP NNP NNP NNP VBD PRP$ NN .\nThe reports say Mr. Fradkov decided to urge Mr. Putin to dissolve the government because of upcoming major political events , and a desire to give the president the full freedom to make decisions about staff .\tDT NNS VBP NNP NNP VBD TO VB NNP NNP TO VB DT NN IN IN VBG JJ JJ NNS , CC DT NN TO VB DT NN DT JJ NN TO VB NNS IN NN .\nRussia is set to hold parliamentary elections in December .\tNNP VBZ VBN TO VB JJ NNS IN NNP .\nPresidential elections are to be held three months after that .\tJJ NNS VBP TO VB VBN CD NNS IN DT .\nBurmese state media reported Wednesday that border police seized a large quantity of heroin and other illegal drugs near the border with Thailand this week .\tJJ NN NNS VBD NNP IN NN NNS VBD DT JJ NN IN NN CC JJ JJ NNS IN DT NN IN NNP DT NN .\nThe reports say an anti-drug squad found more than 700 kilograms of heroin and nearly 3 million methamphetamine pills in the town of Tachilek Monday .\tDT NNS VBP DT JJ NN VBD JJR IN CD NNS IN NN CC RB CD CD NN NNS IN DT NN IN NNP NNP .\nOfficers arrested four people and confiscated two guns and ammunition from the raid on two houses .\tNNS VBN CD NNS CC VBD CD NNS CC NN IN DT NN IN CD NNS .\nLast month , Burmese police seized about 760 kilograms of heroin and large quantities of other drugs in the same town .\tJJ NN , JJ NNS VBD IN CD NNS IN NN CC JJ NNS IN JJ NNS IN DT JJ NN .\nBurma is one of the world 's largest producers of heroin .\tNNP VBZ CD IN DT NN POS JJS NNS IN NN .\nIt is also a major source of methamphetamine .\tPRP VBZ RB DT JJ NN IN NN .\nThe illegal drugs are often smuggled into Thailand .\tDT JJ NNS VBP RB VBN IN NNP .\nThe European Union is proposing to slap sanctions on U.S. exports in a dispute over a controversial U.S. anti-dumping law .\tDT NNP NNP VBZ VBG TO VB NNS IN NNP NNS IN DT NN IN DT JJ NNP JJ NN .\nThe EU is considering additional duties of up to 15 percent as of May 1 , affecting such products as paper , textiles , machinery and farm produce .\tDT NNP VBZ VBG JJ NNS IN RB TO CD NN IN IN NNP CD , VBG JJ NNS IN NN , NNS , NN CC NN NN .\nThe proposal is aimed at punishing Washington for not repealing an anti-dumping law ruled illegal by the World Trade Organization .\tDT NN VBZ VBN IN VBG NNP IN RB VBG DT JJ NN VBN JJ IN DT NNP NNP NNP .\nThe law is known as the Byrd Amendment .\tDT NN VBZ VBN IN DT NNP NNP .\nIt allows American companies to collect money from special duties on foreign goods that are found to be either illegally subsidized or dumped on the U.S. market .\tPRP VBZ JJ NNS TO VB NN IN JJ NNS IN JJ NNS WDT VBP VBN TO VB RB RB VBN CC VBN IN DT NNP NN .\nA maritime official says German forces have rescued an Egyptian ship from a pirate attack in the Gulf of Aden .\tDT NN NN VBZ JJ NNS VBP VBN DT JJ NN IN DT NN NN IN DT NNP IN NNP .\nNoel Choong of the International Maritime Bureau , IMB , says pirates tried to hijack a bulk carrier with 31 crew off the coast of Somalia Thursday .\tNNP NNP IN DT NNP NNP NNP , NNP , VBZ NNS VBD TO VB DT NN NN IN CD NN IN DT NN IN NNP NNP .\nHe says a passing ship alerted the bureau , which asked a multinational coalition force in the area to help .\tPRP VBZ DT NN NN VBD DT NN , WDT VBD DT JJ NN NN IN DT NN TO VB .\nChoong says a German warship sent a helicopter that scared off the attackers , but not before the pirates shot and injured a crew member .\tNNP VBZ DT JJ NN VBD DT NN WDT VBD RP DT NNS , CC RB IN DT NNS VBD CC VBD DT NN NN .\nHe says the injured man was airlifted to the German ship for treatment .\tPRP VBZ DT JJ NN VBD VBN TO DT JJ NN IN NN .\nGermany is one of several nations with ships patrolling the pirate-infested waters off Somalia .\tNNP VBZ CD IN JJ NNS IN NNS VBG DT JJ NNS IN NNP .\nThe International Maritime Bureau says pirates have attacked 110 ships this year and hijacked 42 , most of which were released after hefty ransom payments .\tDT NNP NNP NNP VBZ NNS VBP VBN CD NNS DT NN CC VBN CD , JJS IN WDT VBD VBN IN JJ NN NNS .\nThe pirates are currently holding 14 ships and their crews .\tDT NNS VBP RB VBG CD NNS CC PRP$ NNS .\nColombian and Organization of American States officials have supervised the destruction of thousands of weapons surrendered by demobilized right-wing paramilitary fighters .\tJJ CC NNP IN NNP NNPS NNS VBP VBN DT NN IN NNS IN NNS VBN IN JJ JJ JJ NNS .\nMore than 18,000 weapons were melted down Friday .\tJJR IN CD NNS VBD VBN IN NNP .\nThey were handed over as part of a 2003 peace pact between the Colombian government and the United Self-Defense Force of Colombia , or AUC .\tPRP VBD VBN IN IN NN IN DT CD NN NN IN DT JJ NN CC DT NNP NNP NNP IN NNP , CC NNP .\nFormer fighters and their victims , as well as foreign dignitaries , attended the event .\tJJ NNS CC PRP$ NNS , RB RB IN JJ NNS , VBD DT NN .\nThe melted weapons will be used to make plagues honoring the 9,000 civilian victims of the AUC fighters .\tDT JJ NNS MD VB VBN TO VB NNS VBG DT CD JJ NNS IN DT NNP NNS .\nThe 2003 peace accord resulted in the demobilization of over 30,000 men .\tDT CD NN NN VBD IN DT NN IN IN CD NNS .\nHowever , officials say there is evidence that some fighters are re-arming .\tRB , NNS VBP EX VBZ NN IN DT NNS VBP JJ .\nIraqi police say insurgents have shot dead the governor of Baghdad province .\tJJ NNS VBP NNS VBP VBN JJ DT NN IN NNP NN .\nPolice say Ali al-Haidari and his bodyguard were killed Tuesday while driving through the Baghdad city neighborhood of Hurriyah .\tNNS VBP NNP NNP CC PRP$ NN VBD VBN NNP IN VBG IN DT NNP NN NN IN NNP .\nIn an separate attack , a suicide bomber rammed his explosives laden truck into a police post in central Baghdad , killing at least 10 people and wounding more than 50 others .\tIN DT JJ NN , DT NN NN VBD PRP$ NNS VBN NN IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS CC VBG JJR IN CD NNS .\nInsurgents have been increasingly targeting senior Iraqi government officials , police and other security personnel as they press on with a violent campaign to disrupt elections set for January 30 .\tNNS VBP VBN RB VBG JJ JJ NN NNS , NNS CC JJ NN NNS IN PRP VBP IN IN DT JJ NN TO VB NNS VBN IN NNP CD .\nMonday , at least 18 people - mostly Iraqi police and guardsmen - were killed in a series of ambushes , car bombings , and suicide attacks in Baghdad and several cities and towns to the north .\tNNP , IN JJS CD NNS : RB JJ NNS CC NNS : VBD VBN IN DT NN IN NNS , NN NNS , CC NN NNS IN NNP CC JJ NNS CC NNS TO DT NN .\nPalestinian radio says Israeli artillery fire killed an eight-year-old girl when the shell hit her home in the northern Gaza Strip .\tJJ NN VBZ JJ NN NN VBD DT JJ NN WRB DT NN VBD PRP$ NN IN DT JJ NNP NNP .\nThirteen other children in the house were reported to be wounded .\tCD JJ NNS IN DT NN VBD VBN TO VB VBN .\nWitnesses said an artillery round set the house in Beit Lahiya on fire .\tNNS VBD DT NN NN VBD DT NN IN NNP NNP IN NN .\nA relative said all the casualties were members of the same family .\tDT NN VBD PDT DT NNS VBD NNS IN DT JJ NN .\nThe Israeli military has not commented on the death , but confirmed that Israel has been shelling sites that it suspects Palestinian militants are using to fire rockets into southern Israel .\tDT JJ NN VBZ RB VBN IN DT NN , CC VBD IN NNP VBZ VBN VBG NNS IN PRP VBZ JJ NNS VBP VBG TO VB NNS IN JJ NNP .\nAt least 16 Palestinians have been killed since last Friday , when Israel began stepping up air and artillery strikes in Gaza , in a push to curb the rocket fire .\tIN JJS CD NNS VBP VBN VBN IN JJ NNP , WRB NNP VBD VBG RP NN CC NN NNS IN NNP , IN DT NN TO VB DT NN NN .\nU.S. Secretary of State Condoleezza Rice says no U.S. aid will go to the Hamas-led Palestinian government , but the United States will still contribute to humanitarian programs like immunizing children in the Palestinian territories .\tNNP NNP IN NNP NNP NNP VBZ DT NNP NN MD VB TO DT JJ JJ NN , CC DT NNP NNPS MD RB VB TO JJ NNS IN VBG NNS IN DT JJ NNS .\nIn testimony to a Senate committee Wednesday , Rice repeated the U.S. position that Hamas must meet international demands to renounce violence and recognize Israel 's right to exist .\tIN NN TO DT NNP NN NNP , NNP VBD DT NNP NN IN NNP MD VB JJ NNS TO VB NN CC VB NNP POS NN TO VB .\nHamas is preparing to take control of the Palestinian parliament when it convenes Saturday .\tNNP VBZ VBG TO VB NN IN DT JJ NN WRB PRP VBZ NNP .\nOn Wednesday , the group nominated Abdel Aziz Duaik as parliament speaker and Mahmoud Zahar as faction leader .\tIN NNP , DT NN VBD NNP NNP NNP IN NN NN CC NNP NNP IN JJ NN .\nIn Israel , top policy makers began a three-day review of how to deal with a Hamas-dominated Palestinian government .\tIN NNP , JJ NN NNS VBD DT JJ NN IN WRB TO VB IN DT JJ JJ NN .\nActing Prime Minister Ehud Olmert has said Israel will have no contacts with the Palestinians as long as Hamas is involved in terrorism and refuses to recognize Israel .\tVBG NNP NNP NNP NNP VBZ VBN NNP MD VB DT NNS IN DT NNS RB RB IN NNP VBZ VBN IN NN CC VBZ TO VB NNP .\nColombian President Alvaro Uribe and two of his South American counterparts have opened a gas pipeline between Colombia and Venezuela .\tJJ NNP NNP NNP CC CD IN PRP$ JJ JJ NNS VBP VBN DT NN NN IN NNP CC NNP .\nVenezuela 's Hugo Chavez and Rafael Correa of Ecuador participated in a ceremony Friday by turning on the pipeline valves in Colombia 's Guajira region .\tNNP POS NNP NNP CC NNP NNP IN NNP VBD IN DT NN NNP IN VBG IN DT NN NNS IN NNP POS NNP NN .\nIt connects Guajira with Venezuela 's Lake Maracaibo area .\tPRP VBZ NNP IN NNP POS NNP NNP NN .\nVenezuela 's state-owned oil company , PDVSA , invested millions of dollars in the 225-kilometer-long pipeline .\tNNP POS JJ NN NN , NNP , VBD NNS IN NNS IN DT JJ NN .\nAll but 89 kilometers of the line are in Venezuelan territory .\tDT CC CD NNS IN DT NN VBP IN JJ NN .\nOfficials say the pipeline will have the capacity to pump 14 million cubic meters of natural gas daily from Colombia to Venezuela .\tNNS VBP DT NN MD VB DT NN TO VB CD CD JJ NNS IN JJ NN NN IN NNP TO NNP .\nThey also say that the pipeline is to carry gas to Venezuela until 2011 , then reverse course to take the gas in the other direction .\tPRP RB VBP IN DT NN VBZ TO VB NN TO NNP IN CD , RB VB NN TO VB DT NN IN DT JJ NN .\nVenezuela 's president has been promoting Latin American energy integration .\tNNP POS NN VBZ VBN VBG JJ JJ NN NN .\nHe also wants to extend a vast gas pipeline across South America .\tPRP RB VBZ TO VB DT JJ NN NN IN NNP NNP .\nAn Israeli newspaper reports Israel has agreed to pay some $ 2 million to the family of a British journalist killed by Israeli soldiers in 2003 .\tDT JJ NN NNS NNP VBZ VBN TO VB DT $ CD CD TO DT NN IN DT JJ NN VBN IN JJ NNS IN CD .\nThe Israeli newspaper Haaretz reported the settlement on Sunday , saying it followed lengthy legal discussions .\tDT JJ NN NNP VBD DT NN IN NNP , VBG PRP VBD JJ JJ NNS .\nThe attorney for the victim confirmed that a settlement had been reached with the Israeli government , although he would only say the amount was more than $ 1.4 million .\tDT NN IN DT NN VBD IN DT NN VBD VBN VBN IN DT JJ NN , IN PRP MD RB VB DT NN VBD JJR IN $ CD CD .\nCameraman James Miller was shooting a documentary on Palestinian children in the Gazan border town of Rafah in 2003 when he was killed by Israeli gunfire despite carrying a white flag .\tNN NNP NNP VBD VBG DT NN IN JJ NNS IN DT NNP NN NN IN NNP IN CD WRB PRP VBD VBN IN JJ NN IN VBG DT JJ NN .\nThe soldier who fired the shot was cleared in a court-martial , but a British inquest concluded the event constituted murder .\tDT NN WP VBD DT NN VBD VBN IN DT JJ , CC DT JJ NN VBD DT NN VBD NN .\nThe Miller family lawyer said Sunday that the family believes the settlement is the closest thing to an admission of guilt that they can get .\tDT NNP NN NN VBD NNP IN DT NN VBZ DT NN VBZ DT JJS NN TO DT NN IN NN IN PRP MD VB .\nMicrosoft says it will sell a stripped-down version of its Windows operating system in Europe after bickering with regulators over the name of the product .\tNNP VBZ PRP MD VB DT JJ NN IN PRP$ NNP NN NN IN NNP IN VBG IN NNS IN DT NN IN DT NN .\nThe action is part of the software giant 's lengthy legal battle with European Union regulators who say the company abused its near-monoply in the operating system market to unfairly crush its competitors .\tDT NN VBZ NN IN DT NN NN POS JJ JJ NN IN NNP NNP NNS WP VBP DT NN VBD PRP$ NN IN DT NN NN NN TO RB VB PRP$ NNS .\nEU regulators last year fined Microsoft $ 650 million and demanded it change some business practices .\tNNP NNS JJ NN VBD NNP $ CD CD CC VBD PRP VB DT NN NNS .\nThe EU ordered Microsoft to offer a version of its operating system that did not contain the Microsoft program that plays films and music on computers in the hope of allowing competitors to enter this growing market .\tDT NNP VBD NNP TO VB DT NN IN PRP$ NN NN WDT VBD RB VB DT NNP NN WDT VBZ NNS CC NN IN NNS IN DT NN IN VBG NNS TO VB DT VBG NN .\nMicrosoft calls its reduced software package Windows XP Home Edition N .\tNNP VBZ PRP$ JJ NN NN NNP NNP NNP NNP NNP .\nSecurity sources say Palestinian forces loyal to President Mahmoud Abbas have shut down four charities and two printing shops in the West Bank for their alleged ties to rival political faction Hamas .\tNN NNS VBP JJ NNS JJ TO NNP NNP NNP VBP VBN RP CD NNS CC CD NN NNS IN DT NNP NNP IN PRP$ JJ NNS TO JJ JJ NN NNP .\nThe stores and charities , located in an around the southern town of Hebron , were closed Friday .\tDT NNS CC NNS , VBN IN DT IN DT JJ NN IN NNP , VBD VBN NNP .\nSources say the printing shops were publishing material that could incite violence against the government .\tNNS VBP DT NN NNS VBD VBG NN WDT MD VB NN IN DT NN .\nMr. Abbas has recently intensified a crackdown on Hamas in the West Bank .\tNNP NNP VBZ RB VBN DT NN IN NNP IN DT NNP NNP .\nLast year , Hamas seized control of the Gaza Strip after routing Fatah forces loyal to the Palestinian president .\tJJ NN , NNP VBD NN IN DT NNP NNP IN VBG NNP NNS JJ TO DT JJ NN .\nReports from Georgia say President Mikheil Saakashvili has fired reformist Prime Minister Lado Gurgenidze .\tNNS IN NNP VBP NNP NNP NNP VBZ VBN JJ NNP NNP NNP NNP .\nNews agency reports quote senior Georgian officials as saying Georgia 's ambassador to Turkey , Grigol Mgalobishvili , will replace the prime minister .\tNNP NN NNS VBP JJ JJ NNS IN VBG NNP POS NN TO NNP , NNP NNP , MD VB DT JJ NN .\nAn official statement is expected later Monday .\tDT JJ NN VBZ VBN RB NNP .\nMr. Gurgenidze , a 37-year-old technocrat and former banker , became prime minister late last year , with the primary task of attracting foreign investment and maintaining a high rate of economic growth .\tNNP NNP , DT JJ NN CC JJ NN , VBD JJ NN RB JJ NN , IN DT JJ NN IN VBG JJ NN CC VBG DT JJ NN IN JJ NN .\nA five-day military conflict with Russia in August has since eroded investor confidence and slowed what otherwise was widely seen as a healthy economy .\tDT JJ JJ NN IN NNP IN NNP VBZ IN VBN NN NN CC VBD WP RB VBD RB VBN IN DT JJ NN .\nMr. Gurgenidze visited Washington earlier this month , holding talks with U.S. National Security Advisor Stephen Hadley .\tNNP NNP VBD NNP RBR DT NN , VBG NNS IN NNP NNP NNP NNP NNP NNP .\nAuthorities in Afghanistan say up to 22 insurgents were killed Thursday night during an operation led by coalition troops .\tNNS IN NNP VBP RP TO CD NNS VBD VBN NNP NN IN DT NN VBN IN NN NNS .\nThe U.S. military says coalition and Afghan forces raided a compound in central Ghazni province , and that a number of militants were killed .\tDT NNP NN VBZ NN CC JJ NNS VBD DT NN IN JJ NNP NN , CC IN DT NN IN NNS VBD VBN .\nAfghan police put that number at 22 .\tJJ NN VBD DT NN IN CD .\nOfficials also say troops found a cache of weapons , including grenades and ammunition .\tNNS RB VBP NNS VBD DT NN IN NNS , VBG NNS CC NN .\nIn other clashes , two Afghan policemen and two British soldiers have died in separate incidents .\tIN JJ NNS , CD JJ NNS CC CD JJ NNS VBP VBN IN JJ NNS .\nAfghanistan 's Interior Ministry says a roadside bomb killed the two police officers near the southern border with Pakistan on Thursday .\tNNP POS NNP NNP VBZ DT NN NN VBD DT CD NNS NNS IN DT JJ NN IN NNP IN NNP .\nThe latest British deaths were in southern Helmand province .\tDT JJS JJ NNS VBD IN JJ NNP NN .\nBritish and U.S. forces are conducting an offensive in southern Afghanistan to try to clear out Taliban militants .\tJJ CC NNP NNS VBP VBG DT NN IN JJ NNP TO VB TO VB RP NNP NNS .\nNine British troops have been killed in as many days .\tCD JJ NNS VBP VBN VBN IN IN JJ NNS .\nThe former Pakistan prime minister , Benazir Bhutto , has been served with an order placing her under house arrest in Islamabad .\tDT JJ NNP JJ NN , NNP NNP , VBZ VBN VBN IN DT NN VBG PRP$ IN NN NN IN NNP .\nBut VOA 's Barry Newhouse spoke to a member of her political party , who said he is in a car with her outside her house , and they are trying to force their way through the hundreds of police surrounding the area .\tCC NNP POS NNP NNP VBD TO DT NN IN PRP$ JJ NN , WP VBD PRP VBZ IN DT NN IN PRP IN PRP$ NN , CC PRP VBP VBG TO VB PRP$ NN IN DT NNS IN NN VBG DT NN .\nHere is his report .\tRB VBZ PRP$ NN .\n' I 'm standing at a police barricade about 200 meters from Benazir Bhutto 's private residence in Islamabad .\t`` PRP VBP VBG IN DT NN NN IN CD NNS IN NNP NNP POS JJ NN IN NNP .\nWe have reports that she 's been served with an arrest warrant .\tPRP VBP NNS IN PRP VBZ VBN VBN IN DT NN NN .\nI just spoke with a senior party official in a car with her .\tPRP RB VBD IN DT JJ NN NN IN DT NN IN PRP .\nHe says they and about 300 party supporters are trying to force their way through police barricades ... but so far have been unsuccessful at doing so . '\tPRP VBZ PRP CC IN CD NN NNS VBP VBG TO VB PRP$ NN IN NN NNS : CC RB RB VBP VBN JJ IN VBG RB . ``\nMalaysian Foreign Minister Syed Hamid Albar says he hope to visit Burma soon to see evidence of democratic reform .\tJJ NNP NNP NNP NNP NNP VBZ PRP VBZ TO VB NNP RB TO VB NN IN JJ NN .\nThe state Bernama news agency quoted Mr. Syed Hamid Saturday as saying discussions are being held with Burma 's Minister of Foreign Affairs to set a date for the trip .\tDT NN NNP NN NN VBD NNP NNP NNP NNP IN VBG NNS VBP VBG VBN IN NNP POS NNP IN NNP NNPS TO VB DT NN IN DT NN .\nThe Malaysian diplomat said he hopes to visit the military-ruled country this month .\tDT JJ NN VBD PRP VBZ TO VB DT JJ NN DT NN .\nAt the three-day Association of Southeast Nations ( ASEAN ) summit in Kuala Lumpur in December , Mr. Syed Hamid was chosen to lead an ASEAN delegation to visit Burma to observe democratic reforms .\tIN DT JJ NNP IN NNP NNP LRB NNP RRB NN IN NNP NNP IN NNP , NNP NNP NNP VBD VBN TO VB DT NNP NN TO VB NNP TO VB JJ NNS .\nBurma welcomed the visit , but did not set a specific date .\tNNP VBD DT NN , CC VBD RB VB DT JJ NN .\nMr. Syed Hamid said results from the visit are vital in keeping up the integrity and credibility of ASEAN .\tNNP NNP NNP VBD NNS IN DT NN VBP JJ IN VBG RP DT NN CC NN IN NNP .\nIsrael is continuing its month-long military offensive against Palestinian militants in the Gaza Strip in an attempt to stop rocket attacks on Israel and free a captured soldier .\tNNP VBZ VBG PRP$ JJ JJ NN IN JJ NNS IN DT NNP NNP IN DT NN TO VB NN NNS IN NNP CC VB DT VBN NN .\nPalestinian medics say Israeli fire killed 3 Palestinian civilians Thursday , including a 75-year-old woman .\tJJ NNS VBP JJ NN VBD CD JJ NNS NNP , VBG DT JJ NN .\nA tank shell hit her home near the Jabaliya refugee camp in northern Gaza .\tDT NN NN VBD PRP$ NN IN DT NNP NN NN IN JJ NNP .\nOn Wednesday , Israeli forces and Palestinian gunmen fought fierce battles across the Gaza Strip resulting in the deaths of 23 Palestinians , including three children .\tIN NNP , JJ NNS CC JJ NNS VBD JJ NNS IN DT NNP NNP VBG IN DT NNS IN CD NNS , VBG CD NNS .\nPalestinians identified at least 12 of the dead as gunmen .\tNNS VBD IN JJS CD IN DT JJ IN NNS .\nMilitants also kept up attacks with homemade rockets , despite the Israeli offensive .\tNNS RB VBD RP NNS IN JJ NNS , IN DT JJ NN .\nMore than 140 Palestinians have been killed in Gaza since Israeli forces moved into the Palestinian territory after militants captured an Israeli soldier on June 25 .\tJJR IN CD NNS VBP VBN VBN IN NNP IN JJ NNS VBD IN DT JJ NN IN NNS VBD DT JJ NN IN NNP CD .\nThe United Nations mission in Rwanda says government troops are gearing up to attack Rwandan Hutu rebels based in eastern Democratic Republic of Congo .\tDT NNP NNP NN IN NNP VBZ NN NNS VBP VBG RP TO VB JJ NNP NNS VBN IN JJ JJ NNP IN NNP .\nA spokeswoman , Patricia Tome , says the head of the mission , William Swing , received a telephone call from a Rwandan official , advising him of the action .\tDT NN , NNP NNP , VBZ DT NN IN DT NN , NNP NNP , VBD DT NN NN IN DT JJ NN , VBG PRP IN DT NN .\nShe declined to identify the official .\tPRP VBD TO VB DT NN .\nReuters news agency quotes an adviser to Rwanda 's President Paul Kagame , Richard Sezibera , who confirmed the possibility of clashes .\tNNP NN NN VBZ DT NN TO NNP POS NNP NNP NNP , NNP NNP , WP VBD DT NN IN NNS .\nHe said Hutu rebels in Congo are massing near the border with Rwanda , adding that the government will take any means necessary to defend Rwandan territory .\tPRP VBD NNP NNS IN NNP VBP VBG IN DT NN IN NNP , VBG IN DT NN MD VB DT NNS JJ TO VB JJ NN .\nIn recent years , Rwandan troops have entered Congo on two occasions to attack Hutu extremists who fled across the border after participating in the massacre of hundreds of thousands of minority ethnic Tutsis during Rwanda 's 1994 genocide .\tIN JJ NNS , JJ NNS VBP VBN NNP IN CD NNS TO VB NNP NNS WP VBD IN DT NN IN VBG IN DT NN IN NNS IN NNS IN NN JJ NN IN NNP POS CD NN .\nHuman rights group Amnesty International says Mexican authorities have failed to prosecute police accused of sexually abusing women from the town of San Salvador Atenco .\tJJ NNS NN NNP NNP VBZ JJ NNS VBP VBN TO VB NNS VBN IN RB VBG NNS IN DT NN IN NNP NNP NNP .\nAmnesty says more than 20 women have complained of being abused or raped by police who were sent to the town in May to stop a protest by local residents .\tNNP VBZ JJR IN CD NNS VBP VBN IN VBG VBN CC VBN IN NNS WP VBD VBN TO DT NN IN NNP TO VB DT NN IN JJ NNS .\nThe women were among more 200 people arrested and beaten by police during the riots .\tDT NNS VBD IN JJR CD NNS VBN CC VBN IN NNS IN DT NNS .\nAmnesty says Mexico 's federal government should investigate accusations of police brutality against women during the riots .\tNNP VBZ NNP POS JJ NN MD VB NNS IN NN NN IN NNS IN DT NNS .\nThe group says local authorities are ignoring or covering up the alleged abuses , which it says amount to acts of torture .\tDT NN VBZ JJ NNS VBP VBG CC VBG RP DT JJ NNS , WDT PRP VBZ NN TO NNS IN NN .\nThe unrest in San Salvador Atenco began when Mexican police tried to stop protests by a small farmers ' organization .\tDT NN IN NNP NNP NNP VBD WRB JJ NNS VBD TO VB NNS IN DT JJ NNS POS NN .\nHundreds of protesters fought with police , and several officers were kidnapped .\tNNS IN NNS VBN IN NN , CC JJ NNS VBD VBN .\nThe U.S. Embassy in Saudi Arabia is warning that extremists may be planning to attack Westerners in the central province of al-Qassim .\tDT NNP NNP IN NNP NNP VBZ VBG IN NNS MD VB VBG TO VB NNS IN DT JJ NN IN NNP .\nA message posted on the embassy 's website , and dated August 4 , said officials there have received credible information about a possible attack .\tDT NN VBN IN DT NN POS NN , CC JJ NNP CD , VBD NNS RB VBP VBN JJ NN IN DT JJ NN .\nIt said the timing and method of the potential attacks are unknown and advises U.S. citizens to take necessary precautions .\tPRP VBD DT NN CC NN IN DT JJ NNS VBP JJ CC VBZ NNP NNS TO VB JJ NNS .\nThe embassy says this is the first time this year it has warned of a possible attack by extremists .\tDT NN VBZ DT VBZ DT JJ NN DT NN PRP VBZ VBN IN DT JJ NN IN NNS .\nAfghan officials say NATO warplanes mistakenly killed 14 Afghan construction workers while hunting for Taliban militants in the rugged mountains of eastern Afghanistan .\tJJ NNS VBP NNP NNS RB VBD CD JJ NN NNS IN NN IN NNP NNS IN DT JJ NNS IN JJ NNP .\nThe governor of Nuristan province , Tamin Nuristani , says the road workers were sleeping in tents when the aircraft attacked late Monday .\tDT NN IN NNP NN , NNP NNP , VBZ DT NN NNS VBD VBG IN NNS WRB DT NN VBN JJ NNP .\nHe says NATO was acting on reports that militants were in the area .\tPRP VBZ NNP VBD VBG IN NNS IN NNS VBD IN DT NN .\nNATO Brigadier General Carlos Branco said the alliance fired air strikes against entrenched Taliban positions in the area , adding that an investigation is under way .\tNNP NNP NNP NNP NNP VBD DT NN VBD NN NNS IN JJ NNP NNS IN DT NN , VBG IN DT NN VBZ IN NN .\nNATO and other foreign troops in Afghanistan have come under scathing criticism this year for air strikes targeting militants that have seen hundreds of Afghan civilians killed .\tNNP CC JJ JJ NNS IN NNP VBP VBN IN JJ NN DT NN IN NN NNS VBG NNS WDT VBP VBN NNS IN JJ NNS VBN .\nAfghan President Hamid Karzai has denounced U.S. and NATO troops for the deaths , urging a change in military operating procedure .\tJJ NNP NNP NNP VBZ VBN NNP CC NNP NNS IN DT NNS , VBG DT NN IN JJ NN NN .\nA renewed Taliban insurgency has turned this year into the deadliest yet since the 2001 U.S.-led invasion ousted the Taliban government .\tDT JJ NNP NN VBZ VBN DT NN IN DT JJS RB IN DT CD JJ NN VBD DT NNP NN .\nA suicide bomber drove a car full of explosives into a police checkpoint in northwestern Pakistan , killing at least 16 people .\tDT NN NN VBD DT NN JJ IN NNS IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS .\nLocal police officials say Wednesday 's attack in Charsadda , near the city of Peshawar , killed at least nine policemen and several civilians .\tJJ NN NNS VBP NNP POS NN IN NNP , IN DT NN IN NNP , VBD IN JJS CD NNS CC JJ NNS .\nPeshawar is the capital of Pakistan 's North West Frontier Province and the gateway to the tribal areas bordering Afghanistan .\tNNP VBZ DT NN IN NNP POS NNP NNP NNP NNP CC DT NN TO DT JJ NNS VBG NNP .\nPakistani President Asif Ali Zardari and Prime Minister Yousuf Raza Giliani condemned the attack .\tJJ NNP NNP NNP NNP CC NNP NNP NNP NNP NNP VBD DT NN .\nIn a statement , President Zardari said the perpetrators of ' such a heinous crime ' would be brought to justice .\tIN DT NN , NNP NNP VBD DT NNS IN `` PDT DT JJ NN `` MD VB VBN TO NN .\nThe region has experienced a surge of militant attacks by Pakistani Taliban fighters and other Islamic groups .\tDT NN VBZ VBN DT NN IN JJ NNS IN JJ NNP NNS CC JJ JJ NNS .\nAttacks also have been carried out in other parts of Pakistan , including the capital , Islamabad , and the commerical center , Karachi .\tNNS RB VBP VBN VBN RP IN JJ NNS IN NNP , VBG DT NN , NNP , CC DT JJ NN , NNP .\nThe head of the United Nations children 's agency , or UNICEF , says at least 17,000 children died in schools destroyed by the October 8 earthquake in Pakistan .\tDT NN IN DT NNP NNP NNS POS NN , CC NNP , VBZ IN JJS CD NNS VBD IN NNS VBN IN DT NNP CD NN IN NNP .\nAnn Veneman said those children who survived have been traumatized by injuries and loss of friends and teachers who died in the quake .\tNNP NNP VBD DT NNS WP VBD VBP VBN VBN IN NNS CC NN IN NNS CC NNS WP VBD IN DT NN .\nShe repeated warnings about a ' second wave ' of deaths if tens of thousands of people who are still homeless are not provided with shelter , food , drinking water and proper health care .\tPRP VBD NNS IN DT `` JJ NN `` IN NNS IN NNS IN NNS IN NNS WP VBP RB JJ VBP RB VBN IN NN , NN , NN NN CC JJ NN NN .\nWith a bitter Himalayan winter approaching , aid workers fear hunger , disease and untreated injuries could kill thousands more .\tIN DT JJ JJ NN VBG , NN NNS VBP NN , NN CC JJ NNS MD VB NNS RBR .\nMeanwhile , U.N. Secretary-General Kofi Annan is expected to attend a donors meeting in Islamabad on November 19 to raise funds for rebuilding earthquake-hit areas .\tRB , NNP NNP NNP NNP VBZ VBN TO VB DT NNS NN IN NNP IN NNP CD TO VB NNS IN VBG JJ NNS .\nThe October 8 quake killed about 55,000 people , most of them in Pakistani Kashmir .\tDT NNP CD NN VBD IN CD NNS , JJS IN PRP IN JJ NNP .\nPalestinian militants have attacked a police station in the West Bank town of Nablus , sparking a gunfight with Palestinian police .\tJJ NNS VBP VBN DT NN NN IN DT NNP NNP NN IN NNP , VBG DT NN IN JJ NNS .\nWitnesses say several militants took up positions outside the police station Friday and began shooting , prompting police to return fire .\tNNS VBP JJ NNS VBD RP NNS IN DT NN NN NNP CC VBD VBG , VBG NNS TO VB NN .\nAt least two people were reported wounded .\tIN JJS CD NNS VBD VBN VBN .\nThe gunmen were from a small militant group al-Adwa , affiliated with Palestinian Authority President Mahmoud Abbas ' Fatah faction .\tDT NNS VBD IN DT JJ JJ NN NN , VBN IN JJ NNP NNP NNP NNP POS NNP NN .\nThere are conflicting reports as to what the gunmen were upset about .\tEX VBP VBG NNS IN TO WP DT NNS VBD VBN RB .\nOne report says a militant was refused permission to visit his jailed brother , while another quotes police as saying the group was upset that one of its members had been beaten while in police custody .\tCD NN VBZ DT NN VBD VBN NN TO VB PRP$ JJ NN , IN DT VBZ NN IN VBG DT NN VBD VBN IN CD IN PRP$ NNS VBD VBN VBN IN IN NN NN .\nFriday 's incident underscores the challenges facing Mr. Abbas as he tries to rein in militants and restore law and order .\tNNP POS NN VBZ DT NNS VBG NNP NNP IN PRP VBZ TO VB IN NNS CC VB NN CC NN .\nWlodzimierz Cimoszewicz Poland 's parliamentary speaker W?odzimierz Cimoszewicz says he will run for president in October 's election , with recent opinion polls suggesting he could win .\tNNP NNP NNP POS JJ NN NNP NNP VBZ PRP MD VB IN NN IN NNP POS NN , IN JJ NN NNS VBG PRP MD VB .\nMr. Cimoszewicz , of the ruling Democratic Left Alliance , has remained untouched by a string of scandals that have tarnished his party .\tNNP NNP , IN DT NN JJ NNP NNP , VBZ VBN JJ IN DT NN IN NNS WDT VBP VBN PRP$ NN .\nPolls have put him ahead of other hopefuls , including leading conservative Lech Kaczynski .\tNNS VBP VBN PRP RB IN JJ NNS , VBG VBG JJ NNP NNP .\nPoland 's President Alexander Kwasniewski can not run for re-election because he has already served two terms .\tNNP POS NNP NNP NNP MD RB VB IN NN IN PRP VBZ RB VBN CD NNS .\nOpinion polls indicate Polish leftists will be defeated in parliamentary elections , scheduled for September 25 .\tNN NNS VBP JJ NNS MD VB VBN IN JJ NNS , VBN IN NNP CD .\nRussian Foreign Minister Sergei Lavrov has signed an agreement allowing visa-free travel between Argentina and his country .\tJJ NNP NNP NNP NNP VBZ VBN DT NN VBG JJ NN IN NNP CC PRP$ NN .\nArgentine ambassador to Russia Leopoldo Bravo attended the signing ceremony Wednesday in Moscow .\tJJ NN TO NNP NNP NNP VBD DT NN NN NNP IN NNP .\nArgentine Foreign Minister Jorge Taiana signed the document last week in Buenos Aires .\tJJ NNP NNP NNP NNP VBD DT NN JJ NN IN NNP NNP .\nThe agreement will take effect after ratification by parliaments of both countries .\tDT NN MD VB NN IN NN IN NNS IN DT NNS .\nRussia 's Itar-Tass news agency says under the agreement , citizens of Russia and Argentina will be able to enter and leave the territories of each others ' countries without visas .\tNNP POS JJ NN NN VBZ IN DT NN , NNS IN NNP CC NNP MD VB JJ TO VB CC VB DT NNS IN DT NNS POS NNS IN NNS .\nThey will also be able to travel through or stay there for 90 to 180 days .\tPRP MD RB VB JJ TO VB IN CC VB RB IN CD CC CD NNS .\nTravelers seeking longer visits or those who wish to engage in business will still need visas .\tNNS VBG JJR NNS CC DT WP VBP TO VB IN NN MD RB VB NNS .\nEgyptian officials have announced the site for the country 's first nuclear power plant , settling the controversy over its location .\tJJ NNS VBP VBN DT NN IN DT NN POS JJ JJ NN NN , VBG DT NN IN PRP$ NN .\nA presidential spokesman said Wednesday the new plant will be located in el-Dabaa , an area northwest of Cairo on the Mediterranean coast .\tDT JJ NN VBD NNP DT JJ NN MD VB VBN IN NNP , DT NN NN IN NNP IN DT NNP NN .\nLocal business officials had criticized the government for considering el-Dabaa , saying a power plant could have a negative impact on the region 's tourism .\tJJ NN NNS VBD VBN DT NN IN VBG NNP , VBG DT NN NN MD VB DT JJ NN IN DT NN POS NN .\nHowever , the presidential spokesman says President Hosni Mubarak reached a decision on the site during a meeting with the country 's nuclear energy council .\tRB , DT JJ NN VBZ NNP NNP NNP VBD DT NN IN DT NN IN DT NN IN DT NN POS JJ NN NN .\nEgyptian officials say the plant should be in operation by 2019 .\tJJ NNS VBP DT NN MD VB IN NN IN CD .\nThe government also plans to have three other nuclear facilities up and running by 2025 .\tDT NN RB VBZ TO VB CD JJ JJ NNS IN CC VBG IN CD .\nPower outages across the country in addition to depleting oil and gas resources have forced officials to consider alternative energy solutions .\tNNP NNS IN DT NN IN NN TO VBG NN CC NN NNS VBP VBN NNS TO VB JJ NN NNS .\nThe government has also begun using solar and wind energy .\tDT NN VBZ RB VBN VBG JJ CC NN NN .\nU.S. officials are about to announce indictments against three men charged with plotting to attack major U.S. financial buildings .\tNNP NNS VBP IN TO VB NNS IN CD NNS VBN IN VBG TO VB JJ NNP JJ NNS .\nMedia reports identify the suspects as Dhiren Barot , Qaisar Shaffi , and Nadeem Tarmohammed .\tNN NNS VBP DT NNS IN NNP NNP , NNP NNP , CC NNP NNP .\nU.S. officials say Mr. Barot is a high-level al-Qaida figure also known as Esa al-Hindi .\tNNP NNS VBP NNP NNP VBZ DT JJ NNP NN RB VBN IN NNP NNP .\nThe men are being held in Britain , where they were arrested along with five other terrorist suspects last year .\tDT NNS VBP VBG VBN IN NNP , WRB PRP VBD VBN IN IN CD JJ JJ NNS JJ NN .\nThe suspects allegedly conducted surveillance of the financial buildings in 2000 and 2001 .\tDT NNS RB VBD NN IN DT JJ NNS IN CD CC CD .\nThe buildings included the New York Stock Exchange , New York 's Citicorp Building , the Prudential Building in Newark , New Jersey , and the International Monetary Fund in Washington .\tDT NNS VBD DT NNP NNP NNP NNP , NNP NNP POS NNP NNP , DT NNP NNP IN NNP , NNP NNP , CC DT NNP NNP NNP IN NNP .\nDiscovery of the surveillance led U.S. officials to raise the terrorism alert level around the buildings last August .\tNN IN DT NN VBD NNP NNS TO VB DT NN NN NN IN DT NNS JJ NNP .\nThe House Highways and Transit Subcommittee is examining the impact of rising diesel prices on the trucking industry .\tDT NNP NNPS CC NNP NNP VBZ VBG DT NN IN VBG NN NNS IN DT NN NN .\nThe Triple A automotive association says the price of diesel fuel , which is used by most transport trucks , has risen much faster than regular gasoline .\tDT NNP NNP JJ NN VBZ DT NN IN NN NN , WDT VBZ VBN IN JJS NN NNS , VBZ VBN RB RBR IN JJ NN .\nThe trucking industry says record high fuel prices are cutting into profits and in some cases , destroying livelihoods .\tDT NN NN VBZ NN JJ NN NNS VBP VBG IN NNS CC IN DT NNS , VBG NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nAfghan officials say two separate accidental explosions killed four children and three police officers in the capital , Kabul , Monday .\tJJ NNS VBP CD JJ JJ NNS VBD CD NNS CC CD NNS NNS IN DT NN , NNP , NNP .\nIn the first incident , authorities said a group of children was playing with an old artillery shell when it exploded .\tIN DT JJ NN , NNS VBD DT NN IN NNS VBD VBG IN DT JJ NN NN WRB PRP VBD .\nThe blast killed four of the children .\tDT NN VBD CD IN DT NNS .\nAfghanistan remains littered with unexploded munitions and landmines after decades of war .\tNNP VBZ VBN IN JJ NNS CC NNS IN NNS IN NN .\nThe second blast happened as a group of police officers was preparing for a mission .\tDT JJ NN VBD IN DT NN IN NN NNS VBD VBG IN DT NN .\nA spokesman for the Interior Ministry said one of the officers accidentally dropped a rocket-propelled grenade .\tDT NN IN DT NNP NNP VBD CD IN DT NNS RB VBD DT JJ NN .\nThe explosion killed three officers .\tDT NN VBD CD NNS .\nUkrainian opposition leader Viktor Yushchenko has warned foreign nations against taking sides in the country 's new presidential runoff election .\tJJ NN NN NNP NNP VBZ VBN JJ NNS IN VBG NNS IN DT NN POS JJ JJ NN NN .\nMr. Yushchenko said outsiders should only work to ensure the vote is fair .\tNNP NNP VBD NNS MD RB VB TO VB DT NN VBZ JJ .\nHis comments followed pledges from the Organization for Security and Cooperation in Europe to support Ukraine 's new court-ordered presidential run-off election .\tPRP$ NNS VBD NNS IN DT NNP IN NNP CC NNP IN NNP TO VB NNP POS JJ JJ JJ NN NN .\nThousands of Mr. Yushchenko 's supporters have continued their vigil in the capital Kiev , where Ukraine 's parliament remained deadlocked on proposals to amend the country 's election laws .\tNNS IN NNP NNP POS NNS VBP VBN PRP$ NN IN DT NN NNP , WRB NNP POS NN VBD VBN IN NNS TO VB DT NN POS NN NNS .\nOpposition lawmakers support legal changes aimed at preventing voter fraud .\tNN NNS VBP JJ NNS VBN IN VBG NN NN .\nPro-government politicians are pushing for constitutional changes that would reduce the powers of the president .\tJJ NNS VBP VBG IN JJ NNS WDT MD VB DT NNS IN DT NN .\nOn Saturday , Ukraine 's Supreme Court threw out results from the last presidential election and scheduled a new run-off for December 26 .\tIN NNP , NNP POS NNP NNP VBD RP NNS IN DT JJ JJ NN CC VBN DT JJ NN IN NNP CD .\nThe top U.S. immigration enforcement official says federal agents expect to deport more than 2,00,000 immigrants this year who are in prisons across the country .\tDT JJ NNP NN NN NN VBZ JJ NNS VBP TO VB JJR IN CD NNS DT NN WP VBP IN NNS IN DT NN .\nThe head of the Immigration and Customs Enforcement agency , Assistant Secretary of Homeland Security Julie Myers , made the remark in an interview published Tuesday in The New York Times newspaper .\tDT NN IN DT NNP CC NNP NNP NN , NNP NNP IN NNP NNP NNP NNPS , VBD DT NN IN DT NN VBN NNP IN DT NNP NNP NNP NN .\nShe says the agency filed formal immigration charges in 2007 against 1,64,000 immigrants convicted of crimes in the United States , compared to 64,000 cases in 2006 .\tPRP VBZ DT NN VBD JJ NN NNS IN CD IN CD NNS VBN IN NNS IN DT NNP NNPS , VBN TO CD NNS IN CD .\nMyers says the move to speed the deportation of foreign-born criminals is aimed at helping U.S. prisons reduce the costs of housing immigrants .\tNNP VBZ DT NN TO VB DT NN IN JJ NNS VBZ VBN IN VBG NNP NNS VBP DT NNS IN NN NNS .\nShe says imprisoned foreigners include immigrants who were legal residents but lost their legal status after their convictions .\tPRP VBZ JJ NNS VBP NNS WP VBD JJ NNS CC VBD PRP$ JJ NN IN PRP$ NNS .\nMexican police have reopened a central square in the city of Oaxaca after clearing out protesters demanding that the state governor resign .\tJJ NNS VBP VBN DT JJ NN IN DT NN IN NNP IN VBG RP NNS VBG IN DT NN NN VB .\nWitnesses said federal police cleaned up trash and painted over graffiti left by activists who launched the protests five months ago .\tNNS VBD JJ NNS VBD RP NN CC VBN IN NNS VBN IN NNS WP VBD DT NNS CD NNS RB .\nSome foreign tourists also returned to the popular vacation spot on Tuesday .\tDT JJ NNS RB VBD TO DT JJ NN NN IN NNP .\nProtesters , however , remain in control of many other parts of the city .\tNNS , RB , VBP IN NN IN JJ JJ NNS IN DT NN .\nAnd organizers say they will not quit the protests until Governor Ulises Ruiz resigns over corruption allegations .\tCC NNS VBP PRP MD RB VB DT NNS IN NNP NNP NNP VBZ IN NN NNS .\nAt least nine people , including a U.S. journalist , have been killed in the crisis in recent weeks .\tIN JJS CD NNS , VBG DT NNP NN , VBP VBN VBN IN DT NN IN JJ NNS .\nA United Nations human rights expert says he has received reports of abuse by paramilitary groups in the crackdown .\tDT NNP NNPS JJ NNS NN VBZ PRP VBZ VBN NNS IN NN IN JJ NNS IN DT NN .\nHe urged Mexico 's government to investigate the claims of murder and arbitrary detention .\tPRP VBD NNP POS NN TO VB DT NNS IN NN CC JJ NN .\nIn Africa , elephant conservation has always been threatened by the illegal ivory trade .\tIN NNP , NN NN VBZ RB VBN VBN IN DT JJ NN NN .\nThis spring there was another new threat to the elephants when South Africa lifted its 13-year ban against culling .\tDT NN EX VBD DT JJ NN TO DT NNS WRB NNP NNP VBD PRP$ JJ NN IN NN .\nOfficials announced plans to thin the herds by 5,000 .\tNNP VBD NNS TO JJ DT NNS IN CD .\nYet , animal advocates argue that elephants are an endangered species .\tRB , NN NNS VBP IN NNS VBP DT JJ NNS .\nVOA 's Carolyn Turner reports on the background of the ivory politics .\tNNP POS NNP NNP VBZ IN DT NN IN DT NN NNS .\nU.S. military officials say 75 prisoners at the American naval base at Guantanamo Bay are on a hunger strike .\tNNP JJ NNS VBP CD NNS IN DT JJ JJ NN IN NNP NNP VBP IN DT NN NN .\nA military spokesman for the base Navy Commander Robert Durand says the hunger strike is an attempt to gain media attention .\tDT JJ NN IN DT NN NN NNP NNP NNP VBZ DT NN NN VBZ DT NN TO VB NNS NN .\nHe said it may be related to May 18 clashes between detainees and military guards .\tPRP VBD PRP MD VB VBN TO NNP CD NNS IN NNS CC JJ NNS .\nSome of the detainees have been on the hunger strike since August .\tDT IN DT NNS VBP VBN IN DT NN NN IN NNP .\nIn past months , the military has force-fed hunger strikers by placing a tube through their noses into their stomachs .\tIN JJ NNS , DT NN VBZ VBN NN NNS IN VBG DT NN IN PRP$ NNS IN PRP$ NNS .\nEarlier this month , lawyers for a detainee filed a complaint saying the force-feeding method amounts to torture .\tRBR DT NN , NNS IN DT NN VBD DT NN VBG DT JJ NN NNS TO VB .\nMore than 400 prisoners are being held at Guantanamo on suspicion of links to al-Qaida or the Taleban .\tJJR IN CD NNS VBP VBG VBN IN NNP IN NN IN NNS TO NNP CC DT NNP .\nPakistan security officials say a U.S. missile strike has killed four suspected militants in the country 's northwestern region , along the Afghan border .\tNNP NN NNS VBP DT NNP NN NN VBZ VBN CD JJ NNS IN DT NN POS JJ NN , IN DT JJ NN .\nOfficials say three missiles hit a vehicle carrying the militants in the Datta Khel village in the North Waziristan tribal district .\tNNS VBP CD NNS VBD DT NN VBG DT NNS IN DT NNP NNP NN IN DT NNP NNP JJ NN .\nThe U.S. has launched nearly 20 missile strikes against Taliban and al-Qaida-linked militant strongholds in Pakistan 's northwestern tribal region this month .\tDT NNP VBZ VBN RB CD NN NNS IN NNP CC JJ JJ NNS IN NNP POS JJ JJ NN DT NN .\nPakistani officials publicly condemn the drone strikes , saying they violate the country 's territorial sovereignty .\tJJ NNS RB VB DT NN NNS , VBG PRP VBP DT NN POS JJ NN .\nU.S. officials do not publicly comment on the strikes , which Pakistan generally says are carried out by drones .\tNNP NNS VBP RB RB VB IN DT NNS , WDT NNP RB VBZ VBP VBN RP IN NNS .\nPope Benedict XVI has received top officials of the World Jewish Congress , who pressed concern about threats from Iran and urged the pontiff to pursue dialogue with moderate Muslims .\tNNP NNP NNP VBZ VBN JJ NNS IN DT NNP NNP NNP , WP VBD NN IN NNS IN NNP CC VBD DT NN TO VB NN IN JJ NNPS .\nThe Jewish organization 's President Ronald Lauder and its Secretary General Michael Schneider presented their concerns to the pope at a private audience at the Vatican .\tDT JJ NN POS NNP NNP NNP CC PRP$ NNP NNP NNP NNP VBD PRP$ NNS TO DT NN IN DT JJ NN IN DT NNP .\nThe Jewish leaders noted anxiety over what they said is the continued appearance of instances of anti-Semitism in Europe and Iran .\tDT JJ NNS VBD NN IN WP PRP VBD VBZ DT JJ NN IN NNS IN NN IN NNP CC NNP .\nThey specifically raised the issue of a Polish priest , accused of broadcasting anti-Semitic views on his influential radio station .\tPRP RB VBD DT NN IN DT JJ NN , VBN IN VBG JJ NNS IN PRP$ JJ NN NN .\nThe delegation thanked the pontiff for his efforts in building interfaith relations and called building dialogue with moderate Muslim countries important in efforts to secure a peaceful future .\tDT NN VBD DT NN IN PRP$ NNS IN VBG JJ NNS CC VBD NN NN IN JJ NN NNS JJ IN NNS TO VB DT JJ NN .\nDelegation members also invited the pontiff to meet with senior Jewish leaders during his trip to New York next year .\tNNP NNS RB VBD DT NN TO VB IN JJ JJ NNS IN PRP$ NN TO NNP NNP JJ NN .\nGermany 's Foreign Minister Frank-Walter Steinmeier says there is still time for Iran to agree to talks on its nuclear program and avoid international sanctions .\tNNP POS NNP NNP NNP NNP VBZ EX VBZ RB NN IN NNP TO VB TO NNS IN PRP$ JJ NN CC VB JJ NNS .\nSteinmeier told a European radio broadcaster ( Inforadio ) that European Union leaders are set to meet Tuesday to discuss backing sanctions by the U.N. Security Council .\tNNP VBD DT JJ NN NN LRB NNP RRB IN NNP NNP NNS VBP VBN TO VB NNP TO VB NN NNS IN DT NNP NNP NNP .\nHe called on Iran to agree to suspend enrichment activities , saying that currently there is no possibility for successful talks with Iran .\tPRP VBD IN NNP TO VB TO VB NN NNS , VBG IN RB EX VBZ DT NN IN JJ NNS IN NNP .\nWestern nations say Iran must suspend enrichment before a new round of negotiations on its nuclear program .\tJJ NNS VBP NNP MD VB NN IN DT JJ NN IN NNS IN PRP$ JJ NN .\nIran has rejected the suspension as a condition for talks .\tNNP VBZ VBN DT NN IN DT NN IN NNS .\nU.S. officials say the five permanent members of the Security Council - United States , Britain , Russia , France and China - plus Germany have reached broad agreement on sanctions against Iran .\tNNP NNS VBP DT CD JJ NNS IN DT NNP NNP : NNP NNP , NNP , NNP , NNP CC NNP : CC NNP VBP VBN JJ NN IN NNS IN NNP .\nWestern nations accuse Iran of seeking nuclear weapons , which Iran denies .\tJJ NNS VBP NNP IN VBG JJ NNS , WDT NNP VBZ .\nThe Israeli defense minister has approved a proposal to delay a withdrawal from the Gaza Strip by three weeks , clearing the way for top officials to make a final decision on the plan .\tDT JJ NN NN VBZ VBN DT NN TO VB DT NN IN DT NNP NNP IN CD NNS , VBG DT NN IN JJ NNS TO VB DT JJ NN IN DT NN .\nDefense Minister Shaul Mofaz previously had sent mixed signals about delaying the pullout from July 20 until after August 14 , when an annual Jewish mourning period ends .\tNNP NNP NNP NNP RB VBD VBN JJ NNS IN VBG DT NN IN NNP CD IN IN NNP CD , WRB DT JJ JJ NN NN VBZ .\nBut he accepted the delay at a meeting with top officials Thursday .\tCC PRP VBD DT NN IN DT NN IN JJ NNS NNP .\nPrime Minister Ariel Sharon told reporters the Gaza pullout will go forward , but he also vowed to build more housing in the West Bank .\tNNP NNP NNP NNP VBD NNS DT NNP NN MD VB RB , CC PRP RB VBD TO VB JJR NN IN DT NNP NNP .\nThe United States has repeatedly said that such construction violates the internationally-backed peace plan known as the ' road map ' .\tDT NNP NNP VBZ RB VBN IN JJ NN VBZ DT JJ NN NN VBN IN DT `` NN NN `` .\nMeanwhile , the Israeli army said Palestinian militants detonated a roadside bomb in Gaza Thursday , wounding one soldier .\tRB , DT JJ NN VBD JJ NNS VBD DT NN NN IN NNP NNP , VBG CD NN .\nIranian officials say an explosion Wednesday near the southwestern port city of Daylam was caused by construction work , and was not a hostile attack .\tJJ NNS VBP DT NN NNP IN DT JJ JJ NN IN NNP VBD VBN IN NN NN , CC VBD RB DT JJ NN .\nNews of the blast raised concerns , because it was in the same province where Iran and Russia are building a nuclear reactor .\tNN IN DT NN VBD NNS , IN PRP VBD IN DT JJ NN WRB NNP CC NNP VBP VBG DT JJ NN .\nHowever , the blasting site was about 150 kilometers north of the Bushehr nuclear facility .\tRB , DT VBG NN VBD IN CD NNS RB IN DT NNP JJ NN .\nEarlier state television reported that residents had seen an aircraft overhead at the time of the blast .\tRBR NN NN VBD IN NNS VBD VBN DT NN NN IN DT NN IN DT NN .\nThe television channel reported that the explosion may have been caused by a fuel tank dropping from an Iranian airplane .\tDT NN NN VBD IN DT NN MD VB VBN VBN IN DT NN NN VBG IN DT JJ NN .\nA top Colombian official says his government will investigate Ecuador 's claim that Colombian military aircraft violated Ecuadorean territory .\tDT JJ JJ NN VBZ PRP$ NN MD VB NNP POS NN IN JJ JJ NN VBD JJ NN .\nDeputy Foreign Minister Camilo Reyes said Tuesday his government has received a protest note from Ecuador .\tNNP NNP NNP NNP NNP VBD NNP PRP$ NN VBZ VBN DT NN NN IN NNP .\nBut he told reporters that the incursion , if it happened , was not premeditated .\tCC PRP VBD NNS IN DT NN , IN PRP VBD , VBD RB VBN .\nReyes noted Colombian military forces have been pursuing leftist rebels in southern Colombia , near the border with Ecuador .\tNNP VBD JJ JJ NNS VBP VBN VBG JJ NNS IN JJ NNP , IN DT NN IN NNP .\nEcuador says Colombian military aircraft and helicopters strayed into Ecuadorean air space Saturday and fired machine guns at targets in Ecuadorean territory .\tNNP VBZ JJ JJ NN CC NNS VBD IN JJ NN NN NNP CC VBD NN NNS IN NNS IN JJ NN .\nThe Associated Press quotes Ecuador 's Defense Minister , Oswaldo Jarrin as demanding an apology from Colombia .\tDT NNP NNP VBZ NNP POS NNP NNP , NNP NNP IN VBG DT NN IN NNP .\nEcuador has long expressed concern that violence from Colombia 's four-decade war against leftist rebels could spill across the lengthy border separating the two nations .\tNNP VBZ RB VBN NN IN NN IN NNP POS JJ NN IN JJ NNS MD VB IN DT JJ NN VBG DT CD NNS .\nNATO said two U.S. soldiers have been killed in a bomb blast in southern Afghanistan .\tNNP VBD CD NNP NNS VBP VBN VBN IN DT NN NN IN JJ NNP .\nThe NATO-led force released no other details of the incident .\tDT JJ NN VBN DT JJ NNS IN DT NN .\nThe U.S. military confirmed the soldiers were American .\tDT NNP NN VBD DT NNS VBD JJ .\nJuly has been the deadliest month for international forces in Afghanistan since the Taliban-led government was ousted in 2001 .\tNNP VBZ VBN DT JJS NN IN JJ NNS IN NNP IN DT JJ NN VBD VBN IN CD .\nIn recent weeks , 4,000 U.S. Marines , along with British and Afghan troops , have launched a major offensive in southern Afghanistan , targeting Taliban insurgents in their traditional strongholds .\tIN JJ NNS , CD NNP NNPS , IN IN JJ CC JJ NNS , VBP VBN DT JJ NN IN JJ NNP , VBG NNP NNS IN PRP$ JJ NNS .\nThe operation is aimed at ensuring security ahead of Afghanistan 's presidential election next month .\tDT NN VBZ VBN IN VBG NN RB IN NNP POS JJ NN JJ NN .\nThe United Nations special envoy to Burma says that country 's foreign minister has refused to meet with him on the sidelines of this week 's Association of Southeast Asian Nations ministerial meeting in Laos .\tDT NNP NNPS JJ NN TO NNP VBZ IN NN POS JJ NN VBZ VBN TO VB IN PRP IN DT NNS IN DT NN POS NNP IN NNP NNP NNP JJ NN IN NNP .\nRazali Ismail says Foreign Minister Nyan Win told him in a message that he would be ' too busy ' during this week 's conference .\tNNP NNP VBZ NNP NNP NNP NNP VBD PRP IN DT NN IN PRP MD VB `` RB JJ `` IN DT NN POS NN .\nMr. Razali met separately Monday with the foreign ministers of Thailand and the Philippines .\tNNP NNP VBD RB NNP IN DT JJ NNS IN NNP CC DT NNPS .\nHe is hoping the ASEAN nations can convince Rangoon to let him return to Burma , which he last visited in 2004 .\tPRP VBZ VBG DT NNP NNS MD VB NN TO VB PRP VB TO NNP , WDT PRP RB VBD IN CD .\nThe UN envoy is pushing for reconciliation between Burma 's military rulers and pro-democracy forces let by Aung San Suu Kyi .\tDT NNP NN VBZ VBG IN NN IN NNP POS JJ NNS CC JJ NNS VBN IN NNP NNP NNP NNP .\nIntelogic Trace Inc. , San Antonio , Texas , said it bought 2.7 million shares , or about 18 % , of its common stock from an unaffiliated shareholder for $ 3.625 a share , or $ 9.9 million .\tNNP NNP NNP , NNP NNP , NNP , VBD PRP VBD CD CD NNS , CC IN CD NN , IN PRP$ JJ NN IN DT JJ NN IN $ CD DT NN , CC $ CD CD .\nThe move boosts Intelogic Chairman Asher Edelman 's stake to 20 % from 16.2 % and may help prevent Martin Ackerman from making a run at the computer-services concern .\tDT NN VBZ NNP NNP NNP NNP POS NN TO CD NN IN CD NN CC MD VB VB NNP NNP IN VBG DT NN IN DT NNS NN .\nMr. Ackerman already is seeking to oust Mr. Edelman as chairman of Datapoint Corp. , an Intelogic affiliate .\tNNP NNP RB VBZ VBG TO VB NNP NNP IN NN IN NNP NNP , DT NNP NN .\nThe action followed by one day an Intelogic announcement that it will retain an investment banker to explore alternatives ' to maximize shareholder value , ' including the possible sale of the company .\tDT NN VBN IN CD NN DT NNP NN IN PRP MD VB DT NN NN TO VB NNS `` TO VB NN NN , `` VBG DT JJ NN IN DT NN .\nIn New York Stock Exchange composite trading yesterday , Intelogic shares rose 37.5 cents to close at $ 2.75 .\tIN NNP NNP NNP NNP JJ NN NN , NNP NNS VBD CD NNS TO VB IN $ CD .\nMr. Edelman declined to specify what prompted the recent moves , saying they are meant only to benefit shareholders when ' the company is on a roll . '\tNNP NNP VBD TO VB WP VBD DT JJ NNS , VBG PRP VBP VBN RB TO VB NNS WRB `` DT NN VBZ IN DT NN . ``\nHe added , ' This has nothing to do with Marty Ackerman and it is not designed , particularly , to take the company private . '\tPRP VBD , `` DT VBZ NN TO VB IN NNP NNP CC PRP VBZ RB VBN , RB , TO VB DT NN JJ . ``\nBut Mr. Ackerman said the buy-back , and the above-market price paid , prove that Mr. Edelman is running scared .\tCC NNP NNP VBD DT NN , CC DT JJ NN VBD , VB IN NNP NNP VBZ VBG VBN .\nSome fishing takes place in adjacent waters .\tDT NN VBZ NN IN JJ NNS .\nThere is a potential source of income from harvesting finfish and krill .\tEX VBZ DT JJ NN IN NN IN VBG NN CC NN .\nThe islands receive income from postage stamps produced in the UK , sale of fishing licenses , and harbor and landing fees from tourist vessels .\tDT NNS VBP NN IN JJ NNS VBN IN DT NNP , NN IN NN NNS , CC NN CC NN NNS IN NN NNS .\nTourism from specialized cruise ships is increasing rapidly .\tNNP IN JJ NN NNS VBZ VBG RB .\nAlthough ultimately a victor in World Wars I and II , France suffered extensive losses in its empire , wealth , manpower , and rank as a dominant nation-state .\tIN RB DT NN IN NNP NNP NNP CC NNP , NNP VBD JJ NNS IN PRP$ NN , NN , NN , CC NN IN DT JJ NN .\nNevertheless , France today is one of the most modern countries in the world and is a leader among European nations .\tRB , NNP NN VBZ CD IN DT RBS JJ NNS IN DT NN CC VBZ DT NN IN JJ NNS .\nSince 1958 , it has constructed a hybrid presidential-parliamentary governing system resistant to the instabilities experienced in earlier more purely parliamentary administrations .\tIN CD , PRP VBZ VBN DT JJ JJ NN NN JJ TO DT NNS VBN IN JJR RBR RB JJ NNS .\nIn recent decades , its reconciliation and cooperation with Germany have proved central to the economic integration of Europe , including the introduction of a common exchange currency , the euro , in January 1999 .\tIN JJ NNS , PRP$ NN CC NN IN NNP VBP VBN JJ TO DT JJ NN IN NNP , VBG DT NN IN DT JJ NN NN , DT NN , IN NNP CD .\nIn the early 21st century , five French overseas entities - French Guiana , Guadeloupe , Martinique , Mayotte , and Reunion - became French regions and were made part of France proper .\tIN DT JJ CD NN , CD JJ JJ NNS IN JJ NNP , NNP , NNP , NNP , CC NNP : VBD JJ NNS CC VBD VBN NN IN NNP JJ .\nThe economy has grown 05-Jun % per year since 1996 despite political instability , poor infrastructure , corruption , insufficient power supplies , and slow implementation of economic reforms .\tDT NN VBZ VBN CD NN IN NN IN CD IN JJ NN , JJ NN , NN , JJ NN NNS , CC JJ NN IN JJ NNS .\nBangladesh remains a poor , overpopulated , and inefficiently-governed nation .\tNNP VBZ DT NN , VBN , CC JJ NN .\nAlthough more than half of GDP is generated through the service sector , 45 % of Bangladeshis are employed in the agriculture sector , with rice as the single-most-important product .\tIN JJR IN NN IN NN VBZ VBN IN DT NN NN , CD NN IN NNS VBP VBN IN DT NN NN , IN NN IN DT JJ NN .\nBangladesh 's growth was resilient during the 2008 - 9 global financial crisis and recession .\tNNP POS NN VBD JJ IN DT CD : CD JJ JJ NN CC NN .\nGarment exports , totaling $ 12.3 billion in FY09 and remittances from overseas Bangladeshis , totaling $ 11 billion in FY10 , accounted for almost 25 % of GDP .\tNNP NNS , VBG $ CD CD IN CD CC NNS IN JJ NNS , VBG $ CD CD IN CD , VBD IN RB CD NN IN NN .\nNepal is among the poorest and least developed countries in the world , with almost one-quarter of its population living below the poverty line .\tNNP VBZ IN DT JJS CC JJS JJ NNS IN DT NN , IN RB NN IN PRP$ NN NN IN DT NN NN .\nAgriculture is the mainstay of the economy , providing a livelihood for three-fourths of the population and accounting for about one-third of GDP .\tNNP VBZ DT NN IN DT NN , VBG DT NN IN NNS IN DT NN CC NN IN IN NN IN NN .\nIndustrial activity mainly involves the processing of agricultural products , including pulses , jute , sugarcane , tobacco , and grain .\tJJ NN RB VBZ DT NN IN JJ NNS , VBG NNS , NN , NN , NN , CC NN .\nNepal has considerable scope for exploiting its potential in hydropower , with an estimated 42,000 MW of feasible capacity , but political instability hampers foreign investment .\tNNP VBZ JJ NN IN VBG PRP$ NN IN NN , IN DT VBN CD NNP IN JJ NN , CC JJ NN NNS JJ NN .\nAdditional challenges to Nepal 's growth include its landlocked geographic location , civil strife and labor unrest , and its susceptibility to natural disaster .\tJJ NNS TO NNP POS NN VBP PRP$ JJ JJ NN , JJ NN CC NN NN , CC PRP$ NN TO JJ NN .\nIt happened that a Dog had got a piece of meat and was carrying it home in his mouth to eat it in peace .\tPRP VBD IN DT NNP VBD VBN DT NN IN NN CC VBD VBG PRP NN IN PRP$ NN TO VB PRP IN NN .\nNow on his way home he had to cross a plank lying across a running brook .\tRB IN PRP$ NN NN PRP VBD TO VB DT NN VBG IN DT VBG NN .\nAs he crossed , he looked down and saw his own shadow reflected in the water beneath .\tIN PRP VBD , PRP VBD RB CC VBD PRP$ JJ NN VBN IN DT NN IN .\nThinking it was another dog with another piece of meat , he made up his mind to have that also .\tVBG PRP VBD DT NN IN DT NN IN NN , PRP VBD RP PRP$ NN TO VB DT RB .\nSo he made a snap at the shadow in the water , but as he opened his mouth the piece of meat fell out , dropped into the water and was never seen more .\tRB PRP VBD DT NN IN DT NN IN DT NN , CC IN PRP VBD PRP$ NN DT NN IN NN VBD RP , VBD IN DT NN CC VBD RB VBN RBR .\nBeware lest you lose the substance by grasping at the shadow .\tVB JJS PRP VBP DT NN IN VBG IN DT NN .\nAmerica and Israel struck a deal to bolster each others Armies .\tNNP CC NNP VBD DT NN TO VB DT NNS NNS .\nThe Israelis said they would like to exchange three generals for three generals .\tDT NNS VBD PRP MD VB TO VB CD NNS IN CD NNS .\nThe Americans agreed , stating they wanted an IDF General to teach tactics , an armor General to teach desert warfare , and a Mossad General to teach espionage .\tDT NNS VBD , VBG PRP VBD DT NNP NNP TO VB NNS , DT NN NNP TO VB NN NN , CC DT NNP NNP TO VB NN .\nThe Israelis replied and said they wanted General Electric , General Motors , and General Dynamics .\tDT NNS VBD CC VBD PRP VBD NNP NNP , NNP NNPS , CC NNP NNPS .\nRussian Defense Minister Sergei Ivanov says Moscow will go ahead with a controversial weapons sale to Syria .\tJJ NNP NNP NNP NNP VBZ NNP MD VB RB IN DT JJ NNS NN TO NNP .\nRussian news agencies quote Mr. Ivanov as saying Russia will supply Strelets air defense systems to Syria .\tJJ NN NNS VBP NNP NNP IN VBG NNP MD VB NNS NN NN NNS TO NNP .\nHe said Moscow believes the sale will not disrupt the balance of forces in the region .\tPRP VBD NNP VBZ DT NN MD RB VB DT NN IN NNS IN DT NN .\nMr. Ivanov spoke after meeting with Ukraine 's defense minister , Anatoliy Hrytsenko , in Moscow .\tNNP NNP VBD IN VBG IN NNP POS NN NN , NNP NNP , IN NNP .\nTuesday 's comments come one day before Russian President Vladimir Putin is to travel to Israel .\tNNP POS NNS VBP CD NN IN JJ NNP NNP NNP VBZ TO VB TO NNP .\nThe Israeli government has expressed concern that the weapons could fall into the hands of terrorists .\tDT JJ NN VBZ VBN NN IN DT NNS MD VB IN DT NNS IN NNS .\nMr. Ivanov also said Moscow theoretically could begin withdrawing from the two remaining Soviet-era bases in Georgia this year if there is an agreement on a date for completing the pullout .\tNNP NNP RB VBD NNP RB MD VB VBG IN DT CD VBG JJ NNS IN NNP DT NN IN EX VBZ DT NN IN DT NN IN VBG DT NN .\nRussia 's foreign minister made similar comments Monday .\tNNP POS JJ NN VBD JJ NNS NNP .\nGeorgia has demanded a quick pullout , while Moscow says it could take years .\tNNP VBZ VBN DT JJ NN , IN NNP VBZ PRP MD VB NNS .\nNATO officials say a cargo helicopter chartered by a military contractor is missing in Afghanistan , and that NATO troops are assisting in the search .\tNNP NNS VBP DT NN NN VBN IN DT JJ NN VBZ VBG IN NNP , CC IN NNP NNS VBP VBG IN DT NN .\nNATO spokesmen Thursday declined to say where the search is taking place , citing security reasons .\tNNP NNS NNP VBD TO VB WRB DT NN VBZ VBG NN , VBG NN NNS .\nThe firm Supreme Global Services , which handles catering and logistics , chartered the helicopter .\tDT NN NNP NNP NNPS , WDT VBZ NN CC NNS , VBD DT NN .\nIt disappeared this week , but there are conflicting reports about which day it went missing .\tPRP VBD DT NN , CC EX VBP JJ NNS IN WDT NN PRP VBD VBG .\nOfficials in central Afghanistan 's Logar province say there were reports Wednesday night of a helicopter making an emergency landing .\tNNS IN JJ NNP POS NNP NN VBP EX VBD NNS NNP NN IN DT NN VBG DT NN NN .\nIt was not immediately clear if that was the cargo helicopter reported missing .\tPRP VBD RB RB JJ IN DT VBD DT NN NN VBD VBG .\nVenezuela lawmakers have given preliminary approval for a referendum to scrap presidential term limits .\tNNP NNS VBP VBN JJ NN IN DT NN TO VB JJ NN NNS .\nThe National Assembly debated the constitutional amendment Thursday .\tDT NNP NNP VBD DT JJ NN NNP .\nIt would allow President Hugo Chavez to run for re-election in 2012 and beyond .\tPRP MD VB NNP NNP NNP TO VB IN NN IN CD CC IN .\nElection officials said the referendum on the amendment could be held in March if the lawmakers give their approval on the second reading of the draft amendment in January .\tNNP NNS VBD DT NN IN DT NN MD VB VBN IN NNP IN DT NNS VBP PRP$ NN IN DT JJ NN IN DT NN NN IN NNP .\nGovernment officials said Chavez supporters collected nearly five million signatures to symbolically support the amendment sought by the socialist leader .\tNN NNS VBD NNP NNS VBD RB CD CD NNS TO RB VB DT NN VBN IN DT JJ NN .\nLast year , Venezuelans narrowly rejected a broad package of constitutional amendments that lifted term limits for the presidency .\tJJ NN , NNS RB VBD DT JJ NN IN JJ NNS WDT VBD NN NNS IN DT NN .\nMr. Chavez has asked voters to change Venezuela 's constitution to move the country toward what he called 21st century socialism .\tNNP NNP VBZ VBN NNS TO VB NNP POS NN TO VB DT NN IN WP PRP VBD JJ NN NN .\nTens of thousands of people in insurgency-plagued Indian Kashmir voted Saturday in the territory 's first local elections in a quarter-century .\tNNS IN NNS IN NNS IN JJ JJ NNP VBD NNP IN DT NN POS JJ JJ NNS IN DT NN .\nWitnesses say large numbers of voters turned out despite freezing weather and the threat of rebel attacks .\tNNS VBP JJ NNS IN NNS VBD RP IN VBG NN CC DT NN IN NN NNS .\nGunmen killed one candidate and wounded two others Friday , but no violence was reported once voting began .\tNNS VBD CD NN CC VBD CD NNS NNP , CC DT NN VBD VBN RB NN VBD .\nMore than 96,000 people were eligible to cast ballots today in two districts bordering the portion of Kashmir administered by Pakistan .\tJJR IN CD NNS VBD JJ TO VB NNS NN IN CD NNS VBG DT NN IN NNP VBN IN NNP .\nVoting for mayors and town council members in other districts will take place during the next two weeks .\tNN IN NNS CC NN NN NNS IN JJ NNS MD VB NN IN DT JJ CD NNS .\nMilitants who want to drive India out of Kashmir called for a boycott of the election , which they contend is an attempt by New Delhi to show that Kashmir is a legitimate part of India .\tNNS WP VBP TO VB NNP IN IN NNP VBD IN DT NN IN DT NN , WDT PRP VBP VBZ DT NN IN NNP NNP TO VB DT NNP VBZ DT JJ NN IN NNP .\nA U.S. helicopter has crashed late Friday in eastern Afghanistan , killing all 10 American soldiers on board .\tDT NNP NN VBZ VBN JJ NNP IN JJ NNP , VBG DT CD JJ NNS IN NN .\nU.S. military officials say the crash late Friday occurred during combat operations in Kunar province .\tNNP JJ NNS VBP DT NN RB NNP VBD IN NN NNS IN NNP NN .\nThe CH-47 Chinook went down about 240 kilometers east of the capital , Kabul , not far from the Pakistan border .\tDT NNP NNP VBD RB RB CD NNS RB IN DT NN , NNP , RB RB IN DT NNP NN .\nMilitary spokeswoman Lieutenant Tamara Lawrence says an investigation is under way to determine the cause of the crash .\tNNP NN NNP NNP NNP VBZ DT NN VBZ IN NN TO VB DT NN IN DT NN .\n' But it is important to note that the crash was not due to any hostile action or enemy fire , ' she said .\t`` CC PRP VBZ JJ TO VB IN DT NN VBD RB JJ TO DT JJ NN CC NN NN , `` PRP VBD .\nShe says the bodies of all 10 soldiers have been recovered .\tPRP VBZ DT NNS IN DT CD NNS VBP VBN VBN .\nMore than 2,000 U.S. and Afghan soldiers have been targeting al-Qaida and Taleban insurgents in Kunar province since last month .\tJJR IN CD NNP CC JJ NNS VBP VBN VBG NNP CC NNP NNS IN NNP NN IN JJ NN .\nIt is one of the largest offensives since the U.S.-led coalition ousted the Taleban from power in 2001 .\tPRP VBZ CD IN DT JJS NNS IN DT JJ NN VBD DT NNP IN NN IN CD .\nSyria has rejected Israel 's call to hold unconditional peace talks with Damascus .\tNNP VBZ VBN NNP POS NN TO VB JJ NN NNS IN NNP .\nThe official Tishrin newspaper said in an editorial Wednesday that Israel 's reported air strike in Syria earlier this month shows that Israel is not interested in peace .\tDT JJ NNP NN VBD IN DT NN NNP IN NNP POS VBN NN NN IN NNP RBR DT NN VBZ IN NNP VBZ RB JJ IN NN .\nThe editorial also cites Israel 's fighting in Lebanon last year .\tDT NN RB VBZ NNP POS NN IN NNP JJ NN .\nSyria has accused Israel of violating its air space and dropping munitions on its territory on September 6 .\tNNP VBZ VBN NNP IN VBG PRP$ NN NN CC VBG NNS IN PRP$ NN IN NNP CD .\nThe Israeli government has refused to comment on the alleged incident .\tDT JJ NN VBZ VBN TO VB IN DT JJ NN .\nOn Monday , Israeli Prime Minister Ehud Olmert said Israel is ready to negotiate with Syria without preconditions .\tIN NNP , JJ NNP NNP NNP NNP VBD NNP VBZ JJ TO VB IN NNP IN NNS .\nThe Syrian newspaper is calling on Israeli officials to show sincerity by resuming negotiations at the point where they broke down in 2000 .\tDT JJ NN VBZ VBG IN JJ NNS TO VB NN IN VBG NNS IN DT NN WRB PRP VBD RP IN CD .\nIsrael-Syria peace talks collapsed over the Golan Heights .\tNNP NN NNS VBD IN DT NNP NNP .\nIsrael seized the territory from Syria during the 1967 war .\tNNP VBD DT NN IN NNP IN DT CD NN .\nSyria has repeated its willingness to cooperate with the U.N. investigation into the murder of former Lebanese Prime Minister Rafik Hariri .\tNNP VBZ VBN PRP$ NN TO VB IN DT NNP NN IN DT NN IN JJ JJ NNP NNP NNP NNP .\nIn a statement released Friday , Syrian President Bashar al-Assad said Damascus would ' continue ' to cooperate with the international probe into Mr. Hariri 's assassination .\tIN DT NN VBN NNP , JJ NNP NNP NNP VBD NNP MD `` VB `` TO VB IN DT JJ NN IN NNP NNP POS NN .\nThe announcement comes hours after Mr. al-Assad held talks with Egyptian President Hosni Mubarak in the Syrian capital .\tDT NN VBZ NNS IN NNP NNP VBD NNS IN JJ NNP NNP NNP IN DT JJ NN .\nThe U.N. Security Council is expected to resume talks next week on a draft resolution , co-sponsored by the United States , Britain and France , that threatens Syria with sanctions if it does not fully cooperate with the U.N. investigation .\tDT NNP NNP NNP VBZ VBN TO VB NNS JJ NN IN DT NN NN , VBN IN DT NNP NNPS , NNP CC NNP , WDT VBZ NNP IN NNS IN PRP VBZ RB RB VB IN DT NNP NN .\nLast week , a U.N. report on the investigation implicated Syrian officials in the assassination of Mr. Hariri .\tJJ NN , DT NNP NN IN DT NN VBD JJ NNS IN DT NN IN NNP NNP .\nIn Beirut , Hezbollah leader Sheik Hassan Nasrallah said the Shi'ite group would stand by Damascus in the wake of the U.N. report .\tIN NNP , NNP NN NNP NNP NNP VBD DT NNP NN MD VB IN NNP IN DT NN IN DT NNP NN .\nCrude oil prices have closed at a record high level in New York in part because of the market 's uncertainty about Iranian policies following that country 's presidential election .\tJJ NN NNS VBP VBN IN DT NN JJ NN IN NNP NNP IN NN IN IN DT NN POS NN IN JJ NNS VBG IN NN POS JJ NN .\nCrude oil closed at $ 60.45 a barrel Monday on the New York Mercantile Exchange after hitting a high of $ 60.95 earlier in the day .\tNNP NN VBD IN $ CD DT NN NNP IN DT NNP NNP NNP NNP IN VBG DT NN IN $ CD RB IN DT NN .\nNew York prices hit a record of 59.85 dollars last Thursday .\tNNP NNP NNS VBD DT NN IN CD NNS JJ NNP .\nMarket analysts cited investor concerns about a possible worsening of U.S.-Iranian tensions following the election of conservative Mahmoud Ahmadinejad as president last Friday .\tNN NNS VBD NN NNS IN DT JJ VBG IN JJ NNS VBG DT NN IN JJ NNP NNP IN NN JJ NNP .\nMarket watchers also speculate that oil prices keep climbing because of worries that refineries will struggle to meet a likely increase in demand .\tNN NNS RB VBP IN NN NNS VBP VBG IN IN NNS IN NNS MD VB TO VB DT JJ NN IN NN .\nLebanon has asked foreign experts to help in the investigation of the killing of former Prime Minister Rafik Hariri .\tNNP VBZ VBN JJ NNS TO VB IN DT NN IN DT NN IN JJ NNP NNP NNP NNP .\nJudiciary officials say Swiss DNA and explosives experts will be helping with the probe into Monday 's car bombing in Beirut that killed Mr. Hariri and at least 14 others .\tJJ NNS VBP JJ NN CC NNS NNS MD VB VBG IN DT NN IN NNP POS NN NN IN NNP WDT VBD NNP NNP CC IN JJS CD NNS .\nMr. Hariri was laid to rest at a Beirut mosque Wednesday after an emotional and politically charged funeral .\tNNP NNP VBD VBN TO VB IN DT NNP NN NNP IN DT JJ CC RB VBN NN .\nHundreds of thousands of mourners jammed the city for the funeral .\tNNS IN NNS IN NNS VBD DT NN IN DT NN .\nMany mourners chanted anti-Syrian slogans .\tJJ NNS VBD JJ NNS .\nLebanese opposition politicians blamed the killing on Syria , the main power broker in Lebanon .\tJJ NN NNS VBD DT NN IN NNP , DT JJ NN NN IN NNP .\nDamascus insists it had no role in the murder .\tNNP VBZ PRP VBD DT NN IN DT NN .\nU.S. Assistant Secretary of State William Burns has called for the withdrawal of Syria 's 14,000 troops from Lebanon .\tNNP NNP NNP IN NNP NNP NNP VBZ VBN IN DT NN IN NNP POS CD NNS IN NNP .\nWashington recalled its ambassador to Syria earlier this week .\tNNP VBD PRP$ NN TO NNP RBR DT NN .\nA new poll indicates a majority of both Republicans and Democrats think President Bush should disclose contacts between his staff and disgraced lobbyist Jack Abramoff .\tDT JJ NN VBZ DT NN IN DT NNPS CC NNPS VBP NNP NNP MD VB NNS IN PRP$ NN CC JJ NN NNP NNP .\nA Washington Post / ABC poll released Saturday says 76 percent of the 1,000 people surveyed say President Bush should release lists of all meetings between Abramoff and his staff .\tDT NNP NNP NNP NNP NN VBN NNP VBZ CD NN IN DT CD NNS VBN VBP NNP NNP MD VB NNS IN DT NNS IN NNP CC PRP$ NN .\nBroken down by party lines , two-thirds of Republicans favored disclosure , as well as eighty percent of Democrats and independents .\tVBN RB IN NN NNS , NNS IN NNPS VBD NN , RB RB IN CD NN IN NNPS CC NNS .\nAt a news conference Thursday , President Bush said federal prosecutors are welcome to look into those meetings , but he denied knowing Abramoff .\tIN DT NN NN NNP , NNP NNP VBD JJ NNS VBP JJ TO VB IN DT NNS , CC PRP VBD VBG NNP .\nJack Abramoff pleaded guilty to fraud charges earlier this month and agreed to cooperate with a federal corruption probe .\tNNP NNP VBD JJ TO NN NNS RBR DT NN CC VBD TO VB IN DT JJ NN NN .\nThe poll also found that 56 percent of respondents disapprove of the way President Bush is handling ethics in government .\tDT NN RB VBD IN CD NN IN NNS NN IN DT NN NNP NNP VBZ VBG NNS IN NN .\nU.S. military officials say three U.S. service members have been killed by a roadside bomb in southern Afghanistan .\tNNP JJ NNS VBP CD NNP NN NNS VBP VBN VBN IN DT NN NN IN JJ NNP .\nOfficials made the announcement Wednesday but have not provided any more information .\tNNS VBD DT NN NNP CC VBP RB VBN DT JJR NN .\nThe bombing comes amid a wave of attacks by Afghan insurgents against U.S. and NATO forces .\tDT NN VBZ IN DT NN IN NNS IN JJ NNS IN NNP CC NNP NNS .\nLast month was the deadliest for U.S. forces in Afghanistan since the Taliban-led government was ousted in 2001 .\tJJ NN VBD DT JJS IN NNP NNS IN NNP IN DT JJ NN VBD VBN IN CD .\nViolence has risen steadily in Afghanistan in recent years as the Taliban has fought to extend control across wide swaths of the countryside .\tNN VBZ VBN RB IN NNP IN JJ NNS IN DT NNP VBZ VBN TO VB NN IN JJ NNS IN DT NN .\nThe U.S. military and NATO have deployed a record number of troops to try to help Afghan forces crush the insurgency .\tDT NNP NN CC NNP VBP VBN DT NN NN IN NNS TO VB TO VB JJ NNS VB DT NN .\nOfficials in Afghanistan say a suicide car bomb attack in the southern city of Kandahar has killed at least eight civilians and wounded at least 25 other people .\tNNS IN NNP VBP DT NN NN NN NN IN DT JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD JJ NNS .\nPolice say the car bomber targeted a NATO convoy passing through Kandahar .\tNNS VBP DT NN NN VBD DT NNP NN VBG IN NNP .\nThree coalition soldiers and two Afghan policemen were among the wounded in Thursday 's blast .\tCD NN NNS CC CD JJ NNS VBD IN DT VBN IN NNP POS NN .\nA NATO spokesman declined to give the nationalities of the soldiers .\tDT NNP NN VBD TO VB DT NNS IN DT NNS .\nAfghan , NATO and U.S. troops are fighting a resurgent Taliban and other rebels who have strongholds in the southern and eastern parts of the country .\tJJ , NNP CC NNP NNS VBP VBG DT JJ NNP CC JJ NNS WP VBP NNS IN DT JJ CC JJ NNS IN DT NN .\nBritish newspapers say Britain 's terrorist attack threat level has been secretly lowered for the first time since the July 7 bombings in London .\tJJ NNS VBP NNP POS JJ NN NN NN VBZ VBN RB VBN IN DT JJ NN IN DT NNP CD NNS IN NNP .\nThe Sunday Telegraph and Sunday Times say the decision to lower the security threat level was made Thursday because intelligence agencies had no specific information on possible attacks .\tDT NNP NNP CC NNP NNP VBP DT NN TO VB DT NN NN NN VBD VBN NNP IN NN NNS VBD DT JJ NN IN JJ NNS .\nMeanwhile , London police chief Ian Blair says he did not know his officers had killed an innocent Brazilian man at a subway station last month until a full day after the shooting incident .\tRB , NNP NN NN NNP NNP VBZ PRP VBD RB VB PRP$ NNS VBD VBN DT JJ JJ NN IN DT NN NN JJ NN IN DT JJ NN IN DT NN NN .\nBritish authorities have come under increasing criticism for the July 22 killing as conflicting reports emerge about circumstances leading up to the shooting of 27-year-old Jean-Charles de Menezes .\tJJ NNS VBP VBN IN VBG NN IN DT NNP CD NN IN JJ NNS VBP IN NNS VBG RP TO DT NN IN JJ NNP NNP NNP .\nPolice wrongly suspected the man was a suicide bomber .\tNNP RB VBD DT NN VBD DT NN NN .\nBritain 's Home Secretary Charles Clarke has expressed confidence in the way police are handling the investigation .\tNNP POS NNP NNP NNP NNP VBZ VBN NN IN DT NN NNS VBP VBG DT NN .\nCanadian Prime Minister Stephen Harper says the country will not pull its troops out of Afghanistan , despite opposition calls for debate on the issue .\tJJ NNP NNP NNP NNP VBZ DT NN MD RB VB PRP$ NNS IN IN NNP , IN NN NNS IN NN IN DT NN .\nMr. Harper said Tuesday , that debating the deployment could weaken the troops and put them in danger .\tNNP NNP VBD NNP , IN VBG DT NN MD VB DT NNS CC VBD PRP IN NN .\nCanada has 2,300 troops in Kandahar as part of a NATO mission and was originally scheduled to pull them out after a short time .\tNNP VBZ CD NNS IN NNP IN NN IN DT NNP NN CC VBD RB VBN TO VB PRP RP IN DT JJ NN .\nBut military officials say the troops ' return likely will be delayed .\tCC JJ NNS VBP DT NNS POS NN RB MD VB VBN .\nOver the past week , two Canadian soldiers have died in traffic accidents and another was attacked with an axe .\tIN DT JJ NN , CD JJ NNS VBP VBN IN NN NNS CC DT VBD VBN IN DT NN .\nTen Canadian troops and one diplomat have died in Afghanistan since 2001 .\tCD JJ NNS CC CD NN VBP VBN IN NNP IN CD .\nThousands of Afghan students have held another protest against the reprinting of a Danish cartoon showing the Prophet Muhammad wearing a bomb-shaped turban .\tNNS IN JJ NNS VBP VBN DT NN IN DT NN IN DT JJ NN VBG DT NNP NNP VBG DT JJ NN .\nThe latest demonstration came Sunday in the eastern city of Jalalabad .\tDT JJS NN VBD NNP IN DT JJ NN IN NNP .\nThe protesters shouted slogans against Denmark and the Netherlands and denounced an upcoming Dutch film that reportedly criticizes the Koran .\tDT NNS VBD NNS IN NNP CC DT NNP CC VBD DT JJ JJ NN WDT RB VBZ DT NNP .\nThey also called for Danish and Dutch troops to be expelled from the NATO-led force in Afghanistan .\tPRP RB VBD IN JJ CC JJ NNS TO VB VBN IN DT JJ NN IN NNP .\nOn Saturday , thousands of people marched through the western city of Herat .\tIN NNP , NNS IN NNS VBD IN DT JJ NN IN NNP .\nMuslims consider any depiction of the Prophet Muhammad as blasphemous .\tNNPS VBP DT NN IN DT NNP NNP IN JJ .\nThe cartoon published in Denmark was one of 12 that led to deadly riots across the Muslim world when they were first published in 2006 .\tDT NN VBN IN NNP VBD CD IN CD WDT VBD TO JJ NNS IN DT NNP NN WRB PRP VBD JJ VBN IN CD .\nSeveral Danish newspapers reprinted the cartoon last month in a show of support for the cartoonist , after police said they had uncovered a plot to kill him .\tJJ JJ NNS VBD DT NN JJ NN IN DT NN IN NN IN DT NN , IN NNS VBD PRP VBD VBN DT NN TO VB PRP .\nThe leader of the former Soviet republic of Uzbekistan , Islam Karimov , is warning the West not to try to foment revolution in his country .\tDT NN IN DT JJ JJ NN IN NNP , NNP NNP , VBZ VBG DT NNP RB TO VB TO VB NN IN PRP$ NN .\nIn an address to parliament in Tashkent on Friday , Mr. Karimov said he has enough power to crush any groups who violate Uzbek law .\tIN DT NN TO NN IN NNP IN NNP , NNP NNP VBD PRP VBZ JJ NN TO VB DT NNS WP VBP JJ NN .\nMr. Karimov specifically warned against using the political upheavals in Georgia and Ukraine as a model for Uzbekistan and neighboring Kyrgyzstan .\tNNP NNP RB VBD IN VBG DT JJ NNS IN NNP CC NNP IN DT NN IN NNP CC JJ NNP .\nThe revolutions in Georgia and Ukraine brought pro-Western leaders to power .\tDT NNS IN NNP CC NNP VBD JJ NNS TO NN .\nUzbekistan has long drawn international criticism for its lack of democratic reforms and a poor human rights record .\tNNP VBZ RB VBN JJ NN IN PRP$ NN IN JJ NNS CC DT JJ JJ NNS NN .\nEuropean markets opened mixed Wednesday , following gains in Tokyo and Hong Kong .\tJJ NNS VBD JJ NNP , VBG NNS IN NNP CC NNP NNP .\nMarkets in London and Paris are up 5 and 6 percent , while Frankfurt is down nearly 2 percent .\tNNS IN NNP CC NNP VBP IN CD CC CD NN , IN NNP VBZ RB RB CD NN .\nTokyo 's Nikkei index rallied late in the day to close up nearly 7.75 percent , following speculation that Japan 's central bank might cut interest rates .\tNNP POS NNP NN VBD RB IN DT NN TO VB RP RB CD NN , VBG NN IN NNP POS JJ NN MD VB NN NNS .\nThe Hang Seng in Hong Kong finished about one percent higher .\tDT NNP NNP IN NNP NNP VBD IN CD NN JJR .\nAn announcement by the U.S. central bank on interest rates is expected later Wednesday .\tDT NN IN DT NNP JJ NN IN NN NNS VBZ VBN RB NNP .\nRate cuts reduce the cost of borrowing and can boost economic activity .\tNN NNS VBP DT NN IN NN CC MD VB JJ NN .\nOn Tuesday in New York , the benchmark Dow Jones Industrial Average jumped nearly 11 percent and other U.S. indexes also gained .\tIN NNP IN NNP NNP , DT JJ NNP NNP NNP NNP VBD RB CD NN CC JJ NNP NNS RB VBD .\nThe gains recovered some of the losses of previous trading sessions , and follow a series of government efforts to bolster the battered global economy .\tDT NNS VBD DT IN DT NNS IN JJ NN NNS , CC VB DT NN IN NN NNS TO VB DT JJ JJ NN .\nA spokesman for the International Security Assistance Force says NATO and Afghan forces have killed about 50 Taleban insurgents in an operation in southern Afghanistan .\tDT NN IN DT NNP NNP NNP NNP VBZ NNP CC JJ NNS VBP VBN IN CD NNP NNS IN DT NN IN JJ NNP .\nThe NATO spokesman said there were no casualties among NATO and Afghan troops .\tDT NNP NN VBD EX VBD DT NNS IN NNP CC JJ NNS .\nThe operation began last week in two districts ( Panjwayi and Zhari ) of Kandahar province .\tDT NN VBD JJ NN IN CD NNS LRB NNP CC NNP RRB IN NNP NN .\nThe spokesman said so far , alliance forces have cleared three villages of Taleban insurgents .\tDT NN VBD RB RB , NN NNS VBP VBN CD NNS IN NNP NNS .\nIn mid-September , NATO forces carried out another operation in the same area , during which a large number of Taleban were reported killed .\tIN NNP , NNP NNS VBD RP DT NN IN DT JJ NN , IN WDT DT JJ NN IN NNP VBD VBN VBN .\nThe Taleban are mostly active in southern and eastern parts of Afghanistan , close to the border with Pakistan .\tDT NNP VBP RB JJ IN JJ CC JJ NNS IN NNP , RB TO DT NN IN NNP .\nViolence tied to the insurgency has killed at least 4,000 people in 2006 .\tNN VBN TO DT NN VBZ VBN IN JJS CD NNS IN CD .\nAfghan President Hamid Karzai says Afghanistan is not a hideout for terrorism , but a victim of it .\tJJ NNP NNP NNP VBZ NNP VBZ RB DT NN IN NN , CC DT NN IN PRP .\nDuring an address Wednesday marking the Muslim festival of Eid al-Adha , Mr. Karzai urged the U.S. and its allies to target terrorists outside of Afghanistan .\tIN DT NN NNP VBG DT NNP NN IN NNP NNP , NNP NNP VBD DT NNP CC PRP$ NNS TO VB NNS IN IN NNP .\nThe Afghan leader says militants are being trained in sanctuaries and centers outside the country .\tDT JJ NN VBZ NNS VBP VBG VBN IN NNS CC NNS IN DT NN .\nHe did not name any location , but such comments from Afghan officials usually refer to Pakistan .\tPRP VBD RB VB DT NN , CC JJ NNS IN JJ NNS RB VBP TO NNP .\nMr. Karzai 's comments come as the United States launches a review of its mission and goals in Afghanistan .\tNNP NNP POS NNS VBP IN DT NNP NNPS VBZ DT NN IN PRP$ NN CC NNS IN NNP .\nMore than 6,000 people have died so far this year , in violence related to a growing Taliban insurgency .\tJJR IN CD NNS VBP VBN RB RB DT NN , IN NN VBN TO DT VBG NNP NN .\nMr. Karzai has reached out to Taliban leaders , asking those not involved with al-Qaida to lay down their weapons and join the government .\tNNP NNP VBZ VBN RP TO NNP NNS , VBG DT RB VBN IN NNP TO VB RP PRP$ NNS CC VB DT NN .\nA basketball game between China and visiting Puerto Rico deteriorated into a brawl Friday night in an incident state media termed a bad example by the future Olympic hosts .\tDT NN NN IN NNP CC VBG NNP NNP VBD IN DT NN NNP NN IN DT NN NN NNS VBD DT JJ NN IN DT JJ NNP NNS .\nThe fighting erupted at Beijing Capital Gymnasium when two Chinese players charged off the bench after seeing teammate Yi Jianlian fouled hard by Puerto Rican center Manuel Narvaez .\tDT NN VBD IN NNP NNP NNP WRB CD JJ NNS VBD RP DT NN IN VBG NN NNP NNP VBD JJ IN NNP JJ NN NNP NNP .\nThe bad feelings spilled into the stands , where 3,000 home fans hurled insults and missiles .\tDT JJ NNS VBD IN DT NN , WRB CD NN NNS VBD NNS CC NNS .\nOfficials ended the game as the visitors fled to the locker room , one shielding his head with a plastic chair .\tNNS VBD DT NN IN DT NNS VBD TO DT NN NN , CD VBG PRP$ NN IN DT NN NN .\nChina 's basketball association deplored the violence as setting a poor example three years before Beijing hosts the summer Olympics .\tNNP POS NN NN VBD DT NN IN VBG DT JJ NN CD NNS IN NNP VBZ DT NN NNS .\nThe association says it will adopt measures to prevent such violence in the future .\tDT NN VBZ PRP MD VB NNS TO VB JJ NN IN DT NN .\nHundreds of thousands of Cubans have attended a May Day rally in Havana , where a local labor leader encouraged Cubans to stay on the path set out by former President Fidel Castro .\tNNS IN NNS IN NNS VBP VBN DT NNP NNP NN IN NNP , WRB DT JJ NN NN VBD NNS TO VB IN DT NN VBN RP IN JJ NNP NNP NNP .\nMany of the marchers wore red T-shirts and waved Cuban flags Thursday as they marched through Revolution Square .\tNN IN DT NNS VBD JJ NNS CC VBD JJ NNS NNP IN PRP VBD IN NNP NNP .\nDuring the rally , President Raul Castro made his first May Day appearance as Cuban leader , but did not speak .\tIN DT NN , NNP NNP NNP VBD PRP$ JJ NNP NNP NN IN JJ NN , CC VBD RB VB .\nSince succeeding his older brother in February , Raul Castro has lifted several restrictions on Cubans , including the purchase of cell phones , DVD's and computers .\tIN VBG PRP$ JJR NN IN NNP , NNP NNP VBZ VBN JJ NNS IN NNS , VBG DT NN IN NN NNS , NNS CC NNS .\nCubans are also now able to stay in hotels if they can afford it .\tNNS VBP RB RB JJ TO VB IN NNS IN PRP MD VB PRP .\nThe average salary is about $ 17 per month .\tDT JJ NN VBZ RB $ CD IN NN .\nMay Day celebrations are being held around the world .\tNNP NNP NNS VBP VBG VBN IN DT NN .\nThe annual event marks International Workers Day .\tDT JJ NN NNS NNP NNP NNP .\nCondoleezza Rice U.S. Secretary of State Condoleezza Rice has arrived in Chile , the third stop of her five-day Latin American tour .\tNNP NNP NNP NNP IN NNP NNP NNP VBZ VBN IN NNP , DT JJ NN IN PRP$ JJ JJ JJ NN .\nSecretary Rice is due to hold separate meetings Thursday with Chilean President Ricardo Lagos and Foreign Minister Ignacio Walker .\tNNP NNP VBZ JJ TO VB JJ NNS NNP IN JJ NNP NNP NNP CC NNP NNP NNP NNP .\nShe will later join officials from some 140 countries for a two-day meeting in Santiago of the informal Community of Democracies .\tPRP MD RB VB NNS IN DT CD NNS IN DT JJ NN IN NNP IN DT JJ NN IN NNS .\nIn Colombia on Wednesday , Secretary Rice pledged continued U.S. support for the country 's war against armed insurgents and drug traffickers .\tIN NNP IN NNP , NNP NNP VBD JJ NNP NN IN DT NN POS NN IN JJ NNS CC NN NNS .\nShe said the Bush administration is asking Congress for more than $ 600 million in security aid for Colombia .\tPRP VBD DT NNP NN VBZ VBG NNP IN JJR IN $ CD CD IN NN NN IN NNP .\nMs. Rice will stop in El Salvador on the final leg of her trip , before flying back to Washington .\tNNP NNP MD VB IN NNP NNP IN DT JJ NN IN PRP$ NN , IN VBG RB TO NNP .\nU.S. weather forecasters say Hurricane Stan has slammed into Mexico 's Gulf Coast , hitting the eastern state of Veracruz with high winds and heavy rain .\tNNP NN NNS VBP NNP NNP VBZ VBN IN NNP POS NNP NNP , VBG DT JJ NN IN NNP IN JJ NNS CC JJ NN .\nThe U.S. National Hurricane Center said Tuesday the storm is now moving southwest with maximum sustained winds of 130 kilometers an hour .\tDT NNP NNP NNP NNP VBD NNP DT NN VBZ RB VBG JJS IN JJ JJ NNS IN CD NNS DT NN .\nForecasters said the storm is centered about 140 minutes southeast of the port city of Veracruz .\tNNS VBD DT NN VBZ VBN IN CD NNS NN IN DT JJ NN IN NNP .\nThe Mexican government had earlier issued a hurricane warning from Palma Sola in the south to Chilitepic in the east .\tDT JJ NN VBD RB VBN DT NN NN IN NNP NNP IN DT NN TO NNP IN DT NN .\nMexico 's state oil monopoly Pemex - a major oil supplier to the United States - says it has evacuated 270 workers from five oil platforms in the Gulf of Mexico .\tNNP POS NN NN NN NNP IN DT JJ NN NN TO DT NNP NNPS : VBZ PRP VBZ VBN CD NNS IN CD NN NNS IN DT NNP IN NNP .\nStan dumped heavy rains over Central America last week , causing flooding and mudslides that killed at least 31 people in El Salvador and four others in neighboring Guatemala .\tNNP VBD JJ NNS IN NNP NNP JJ NN , VBG NN CC NNS WDT VBD IN JJS CD NNS IN NNP NNP CC CD NNS IN JJ NNP .\nIndonesian health officials say seven people from a village in northern Sumatra are being treated for what doctors suspect may be bird flu .\tJJ NN NNS VBP CD NNS IN DT NN IN JJ NNP VBP VBG VBN IN WP NNS VBP MD VB JJ NN .\nThe villagers come from the same district where bird flu killed seven members of an extended family in May .\tDT NNS VBP IN DT JJ NN WRB NN NN VBD CD NNS IN DT JJ NN IN NNP .\nOfficials say the suspected new cases include two young siblings and a neighbor 's baby .\tNNS VBP DT JJ JJ NNS VBP CD JJ NNS CC DT NN POS NN .\nThey have been admitted to a hospital in the city of Medan .\tPRP VBP VBN VBN TO DT NN IN DT NN IN NNP .\nLocal authorities are carrying out tests on the seven villagers to determine whether they have the dangerous H5N1 strain of the virus .\tJJ NNS VBP VBG RP NNS IN DT CD NNS TO VB IN PRP VBP DT JJ NNP NN IN DT NN .\nThe previous cluster of bird flu deaths in northern Sumatra was the largest of its kind since the global outbreak began , and raised concerns about human-to-human transmission of the virus .\tDT JJ NN IN NN NN NNS IN JJ NNP VBD DT JJS IN PRP$ NN IN DT JJ NN VBD , CC VBD NNS IN JJ NN IN DT NN .\nIndonesia has confirmed 42 deaths from bird flu , tying Vietnam for the world 's highest number of fatalities .\tNNP VBZ VBN CD NNS IN NN NN , VBG NNP IN DT NN POS JJS NN IN NNS .\nOil prices rose above $ 50 a barrel Friday , rebounding from a 3.5 year low as dealers sought to stock up on cheaper oil .\tNN NNS VBD IN $ CD DT NN NNP , VBG IN DT CD NN JJ IN NNS VBD TO VB RP IN JJR NN .\nOil prices on the New York Mercantile Exchange rose to $ 50.65 , up from about $ 49 on Thursday .\tNN NNS IN DT NNP NNP NNP NNP VBD TO $ CD , RB IN IN $ CD IN NNP .\nBrent Crude , which trades in London and prices two-thirds of the world 's crude , rose to $ 49.7 .\tNNP NNP , WDT VBZ IN NNP CC NNS NNS IN DT NN POS NN , VBD TO $ CD .\nKey benchmarks for crude oil are down almost two-thirds since a July high of more than $ 147 .\tNNP NNS IN JJ NN VBP RB RB NNS IN DT NNP NN IN JJR IN $ CD .\nBloomberg financial news service says sales also increased on speculation that oil-producing OPEC countries will cut production levels when they meet later this month in Cairo .\tNNP JJ NN NN VBZ NNS RB VBD IN NN IN JJ NNP NNS MD VB NN NNS WRB PRP VBP RB DT NN IN NNP .\nLast month , the Organization of Petroleum Exporting Countries slashed its official oil output quota by about 1.5 million barrels a day .\tJJ NN , DT NNP IN NNP NNP NNPS VBD PRP$ JJ NN NN NN IN RB CD CD NNS DT NN .\nSome analysts say prices will continue to decline in 2009 as the economic slowdown continues .\tDT NNS VBP NNS MD VB TO VB IN CD IN DT JJ NN VBZ .\nInterim Iraqi Prime Minister Iyad Allawi says he will more than double the size of Iraq 's army to 1,50,000 troops , in the face of a deadly insurgency that has killed more than 100 Iraqis over the past week alone .\tNNP JJ NNP NNP NNP NNP VBZ PRP MD RBR IN VB DT NN IN NNP POS NN TO CD NNS , IN DT NN IN DT JJ NN WDT VBZ VBN JJR IN CD NNS IN DT JJ NN RB .\nIn Baghdad , Mr. Allawi said Tuesday he has allocated $ 2.2 billion in this year 's budget to expand the army and upgrade its weaponry .\tIN NNP , NNP NNP VBD NNP PRP VBZ VBN $ CD CD IN DT NN POS NN TO VB DT NN CC VB PRP$ NN .\nMeanwhile , violence across Iraq continues .\tRB , NN IN NNP VBZ .\nAbu Musab al-Zarqawi 's terrorist network claimed responsibility for a car bomb attack in Tikrit that killed six policemen and wounded several others .\tNNP NNP NNP POS JJ NN VBD NN IN DT NN NN NN IN NNP WDT VBD CD NNS CC VBD JJ NNS .\nIn an area known as the ' triangle of death ' south of Baghdad , a roadside bomb exploded , killing at least seven people in a passing minibus .\tIN DT NN VBN IN DT `` NN IN NN `` NN IN NNP , DT NN NN VBD , VBG IN JJS CD NNS IN DT NN NN .\nAnd following an explosion , firefighters battled a pipeline fire north of the capital .\tCC VBG DT NN , NNS VBD DT NN NN NN IN DT NN .\nU.S. military officials say the United States will dispatch up to 1,500 Marines and a ship carrying 20 helicopters to Sri Lanka to help relief efforts in areas devastated by last Sunday 's tsunami .\tNNP JJ NNS VBP DT NNP NNPS MD VB RP TO CD NNS CC DT NN VBG CD NNS TO NNP NNP TO VB NN NNS IN NNS VBN IN JJ NNP POS NN .\nA U.S. spokesman in Colombo said the first contingent of 200 Marines will arrive in Sri Lanka shortly from a base in Okinawa , Japan .\tDT NNP NN IN NNP VBD DT JJ NN IN CD NNS MD VB IN NNP NNP RB IN DT NN IN NNP , NNP .\nHe said the Marines will operate from an offshore platform south of the port city of Galle .\tPRP VBD DT NNPS MD VB IN DT JJ NN NN IN DT JJ NN IN NNP .\nMeanwhile , flash floods in eastern Sri Lanka are hampering relief efforts .\tRB , NN NNS IN JJ NNP NNP VBP VBG NN NNS .\nLocal officials say heavy rains forced the evacuation of thousands of people already affected by the tsunami .\tJJ NNS VBP JJ NNS VBD DT NN IN NNS IN NNS RB VBN IN DT NN .\nAid convoys continue to have difficulty reaching some of the hardest-hit areas .\tNNP NNS VBP TO VB NN VBG DT IN DT JJ NNS .\nNearly one million Sri Lankans have been displaced and are living in temporary camps .\tRB CD CD NNP NNPS VBP VBN VBN CC VBP VBG IN JJ NNS .\nThe nationwide death toll is approaching 29,000 .\tDT JJ NN NN VBZ VBG CD .\nThe husband of Iraqi aid worker Margaret Hassan has asked Islamic militants to return his wife 's body to him so that she can , in his words , rest in peace .\tDT NN IN JJ NN NN NNP NNP VBZ VBN NNP NNS TO VB PRP$ NN POS NN TO PRP RB IN PRP MD , IN PRP$ NNS , NN IN NN .\nTahseen Hassan spoke Wednesday after the al-Jazeera television network obtained a video that appears to show the murder of Mrs. Hassan .\tNNP NNP VBD NNP IN DT JJ NN NN VBD DT NN WDT VBZ TO VB DT NN IN NNP NNP .\nBritain 's Prime Minister Tony Blair called the apparent killing of the British-born humanitarian an abhorrent act .\tNNP POS NNP NNP NNP NNP VBD DT JJ NN IN DT JJ NN DT JJ NN .\nPoul Nielsen , A top European Union Development official , said her abduction and killing make it almost impossible for relief agencies to continue working in Iraq .\tNNP NNP , DT JJ NNP NNP NNP NN , VBD PRP$ NN CC VBG VB PRP RB JJ IN NN NNS TO VB VBG IN NNP .\nMrs. Hassan spent 30 years caring for Iraq 's poorest citizens , particularly children .\tNNP NNP VBD CD NNS VBG IN NNP POS JJS NNS , RB NNS .\nShe was the head of the CARE International humanitarian group in Iraq , and a vocal opponent of the U.S.-led invasion .\tPRP VBD DT NN IN DT NNP NNP JJ NN IN NNP , CC DT JJ NN IN DT JJ NN .\nHer abduction last month was widely condemned by Iraqi civilians and Islamic groups .\tPRP$ NN JJ NN VBD RB VBN IN JJ NNS CC JJ NNS .\nIraqi President Jalal Talabani says Baghdad has ordered light military equipment from China because the United States is unable to provide them and is too slow to deliver arms shipments .\tJJ NNP NNP NNP VBZ NNP VBZ VBN JJ JJ NN IN NNP IN DT NNP NNPS VBZ JJ TO VB PRP CC VBZ RB JJ TO VB NNS NNS .\nMr. Talabani told the Washington Post Wednesday that the weapons , worth $ 100 million , are intended for Iraq 's police force .\tNNP NNP VBD DT NNP NNP NNP IN DT NNS , JJ $ CD CD , VBP VBN IN NNP POS NN NN .\nHe said U.S. factories do not have the capacity to meet Baghdad 's requirements .\tPRP VBD NNP NNS VBP RB VB DT NN TO VB NNP POS NNS .\nMr. Talabani , who was in Washington for talks with President Bush , also called for faster deliveries of U.S. weapons to strengthen the Iraqi army .\tNNP NNP , WP VBD IN NNP IN NNS IN NNP NNP , RB VBD IN JJR NNS IN NNP NNS TO VB DT JJ NN .\nU.S. officials have acknowledged that Washington faced problems delivering everything Iraq needed .\tNNP NNS VBP VBN IN NNP VBD NNS VBG DT NNP VBD .\nBut they also point out that Iraqi security forces have been unable to account for nearly 2,00,000 U.S. supplied weapons .\tCC PRP RB VBP RP IN JJ NN NNS VBP VBN JJ TO VB IN RB CD NNP VBN NNS .\nIt is feared that many of those weapons might have gone to various insurgent and militia groups seeking to destabilize Iraq and target U.S. troops .\tPRP VBZ VBN IN NN IN DT NNS MD VB VBN TO JJ NN CC NN NNS VBG TO VB NNP CC VB NNP NNS .\nA new poll in Kenya indicates more than 60 percent of Kenyans will vote in favor of a new constitution next month .\tDT JJ NN IN NNP VBZ JJR IN CD NN IN NNS MD VB IN NN IN DT JJ NN JJ NN .\nThe poll shows 62 percent of voters want a new constitution , with 20 percent opposed .\tDT NN VBZ CD NN IN NNS VBP DT JJ NN , IN CD NN VBN .\nOf those in favor of the new constitution , most said it needs some amendments .\tIN DT IN NN IN DT JJ NN , RBS VBD PRP VBZ DT NNS .\nThe random survey of 3,000 Kenyans ( by Strategic Research ) also found 18 percent of voters are still undecided .\tDT JJ NN IN CD NNS LRB IN NNP NNP RRB RB VBD CD NN IN NNS VBP RB JJ .\nThe proposed constitution grew out of the 2008 power-sharing deal between President Mwai Kibaki and Prime Minister Raila Odinga after a disputed election triggered riots and ethnic violence across Kenya .\tDT VBN NN VBD IN IN DT CD JJ NN IN NNP NNP NNP CC NNP NNP NNP NNP IN DT JJ NN VBD NNS CC JJ NN IN NNP .\nSome 1,300 people were killed before the violence was brought under control .\tDT CD NNS VBD VBN IN DT NN VBD VBN IN NN .\nThe city of Fort Wayne in the midwestern state of Indiana is home to one of the largest Burmese immigrant and refugee communities in the United States .\tDT NN IN NNP NNP IN DT JJ NN IN NNP VBZ NN TO CD IN DT JJS JJ NN CC NN NNS IN DT NNP NNPS .\nNow , the community is struggling to deal with the aftermath of a devastating cyclone that has affected most of their families in Burma .\tRB , DT NN VBZ VBG TO VB IN DT NN IN DT JJ NN WDT VBZ VBN JJS IN PRP$ NNS IN NNP .\nVOA 's Kane Farabaugh traveled to Fort Wayne .\tNNP POS NNP NNP VBD TO NNP NNP .\nHe reports that the biggest challenge for many Burmese in the United States is learning the fate of their loved ones .\tPRP VBZ IN DT JJS NN IN JJ NNS IN DT NNP NNPS VBZ VBG DT NN IN PRP$ VBN NNS .\nPresident Bush met at the White House Monday with Burmese human rights activist Charm Tong .\tNNP NNP VBD IN DT NNP NNP NNP IN JJ JJ NNS NN NNP NNP .\nIn an interview with Voice of America 's Burmese service , Charm Tong said she expressed her concerns to President Bush about what she called the desperate human rights situation in Burma -- including forced labor and extra judicial killings .\tIN DT NN IN NNP IN NNP POS JJ NN , NNP NNP VBD PRP VBD PRP$ NNS TO NNP NNP IN WP PRP VBD DT JJ JJ NNS NN IN NNP : VBG VBN NN CC JJ JJ NNS .\nCharm Tong said the president was very concerned and asked what the United States could do to help .\tNNP NNP VBD DT NN VBD RB JJ CC VBD WP DT NNP NNPS MD VB TO VB .\nCharm Tong , a 23-year-old ethnic Shan , fled to Thailand as a small child to escape ethnic persecution in Burma .\tNNP NNP , DT JJ JJ NNP , VBD TO VB IN DT JJ NN TO VB JJ NN IN NNP .\nShe has co-founded a network of human rights monitors on the Thai-Burmese border and established a school for other Shan refugees .\tPRP VBZ VBN DT NN IN JJ NNS NNS IN DT JJ NN CC VBN DT NN IN JJ NNP NNS .\nCharm Tong was among four Burmese women nominated this year for the Nobel Peace Prize and was awarded the Reebok Human Rights Award given to young people who risk personal safety to fight injustice .\tNNP NNP VBD IN CD JJ NNS VBN DT NN IN DT NNP NNP NNP CC VBD VBN DT NNP NNP NNP NNP VBN TO JJ NNS WP VBP JJ NN TO VB NN .\nThe U.S. military says two American pilots were killed in a military helicopter crash in northern Iraq , which was likely caused by hostile fire .\tDT NNP NN VBZ CD JJ NNS VBD VBN IN DT JJ NN NN IN JJ NNP , WDT VBD JJ VBN IN JJ NN .\nA U.S. commander in Iraq , Lieutenant General John Vines , said the aircraft was lost near Mosul , and indicators point to hostile fire as the cause of the crash .\tDT NNP NN IN NNP , NNP NNP NNP NNP , VBD DT NN VBD VBN IN NNP , CC NNS NN TO JJ NN IN DT NN IN DT NN .\nThursday , the U.S. military predicted an increase in insurgent attacks as the newly elected Iraqi government forms , and final results from last month 's general elections are released .\tNNP , DT NNP NN VBD DT NN IN JJ NNS IN DT RB VBN JJ NN NNS , CC JJ NNS IN JJ NN POS JJ NNS VBP VBN .\nBrigadier-General Don Alston said insurgents may use Iraq 's transition to a new government as an opportunity to try to derail the democratic process .\tJJ NNP NNP VBD NNS MD VB NNP POS NN TO DT JJ NN IN DT NN TO VB TO VB DT JJ NN .\nIvorian opposition leader Alassane Ouattara says he will return to Ivory Coast from exile in France to run for president of the west African nation .\tJJ NN NN NNP NNP VBZ PRP MD VB TO NNP NNP IN NN IN NNP TO VB IN NN IN DT JJ JJ NN .\nIn an interview published Sunday by a French newspaper , Nord Eclair , the former prime minister said he would stand for office as head of the ' Rally for Republicans ' party .\tIN DT NN VBN NNP IN DT JJ NN , NNP NNP , DT JJ JJ NN VBD PRP MD VB IN NN IN NN IN DT `` NNP IN NNPS `` NN .\nOuattara was prevented from running for president in 2000 because of questions about his citizenship .\tNNP VBD VBN IN VBG IN NN IN CD IN IN NNS IN PRP$ NN .\nHe left Ivory Coast in 2002 for self-imposed exile in France .\tPRP VBD NNP NNP IN CD IN JJ NN IN NNP .\nThe government of Ivory Coast accuses Ouattara of backing rebels who control the northern half of the country .\tDT NN IN NNP NNP VBZ NNP IN VBG NNS WP VBP DT JJ NN IN DT NN .\nNo date has been set for the presidential election , but it is expected to be held before the end of October .\tDT NN VBZ VBN VBN IN DT JJ NN , CC PRP VBZ VBN TO VB VBN IN DT NN IN NNP .\nThe body of a young Brazilian man has arrived in Brazil six days after he was gunned down by London police who mistook him for a terror suspect .\tDT NN IN DT JJ JJ NN VBZ VBN IN NNP CD NNS IN PRP VBD VBN RP IN NNP NNS WP VBD PRP IN DT NN NN .\nThe remains of Jean Charles de Menezes arrived Thursday at an airport in his home state of Minas Gerais .\tDT NNS IN NNP NNP NNP NNP VBD NNP IN DT NN IN PRP$ NN NN IN NNP NNP .\nThe Brazilian Air Force then flew his casket to Gobernador Valadares , where mourners gathered to pay their respects .\tDT JJ NNP NNP RB VBD PRP$ NN TO NNP NNP , WRB NNS VBD TO VB PRP$ NNS .\nThe 27-year-old electrician 's funeral is to be held on Friday .\tDT JJ NN POS NN VBZ TO VB VBN IN NNP .\nEarlier this week , a group of people mostly linked to leftist parties and movements gathered outside the British embassy in Brazil to protest the killing .\tRBR DT NN , DT NN IN NNS RB VBN TO JJ NNS CC NNS VBD IN DT JJ NN IN NNP TO VB DT NN .\nBritish Prime Minister Tony Blair has publicly apologized and pledged to investigate the shooting incident .\tJJ JJ NN NNP NNP VBZ RB VBN CC VBN TO VB DT NN NN .\nThe top human rights court in Latin America has upheld the conviction of Lori Berenson , a U.S. woman who has been imprisoned in Peru for terrorist collaboration .\tDT JJ JJ NNS NN IN NNP NNP VBZ VBN DT NN IN NNP NNP , DT NNP NN WP VBZ VBN VBN IN NNP IN JJ NN .\nPresident Alejandro Toledo Thursday welcomed the decision of the Inter-American Court of Human Rights .\tNNP NNP NNP NNP VBD DT NN IN DT JJ NNP IN NNP NNP .\nBerenson had appealed to the court after the Peruvian Supreme Court upheld her conviction .\tNNP VBD VBN TO DT NN IN DT JJ NNP NNP VBD PRP$ NN .\nHer family and lawyers argued that she had not been given a fair trial .\tPRP$ NN CC NNS VBD IN PRP VBD RB VBN VBN DT JJ NN .\nBerenson was arrested in 1995 and accused of involvement in a failed attempt by the rebel Tupac Amaru Revolutionary Movement to seize Peru 's Congress .\tNNP VBD VBN IN CD CC VBN IN NN IN DT VBN NN IN DT NN NNP NNP NNP NNP TO VB NNP POS NNP .\nShe has maintained her innocence .\tPRP VBZ VBN PRP$ NN .\nThe U.S. Air Force says it will send 300 airmen home from Iraq and Afghanistan to help their families cope with emergencies from devastating Hurricane Katrina .\tDT NNP NNP NNP VBZ PRP MD VB CD NNS NN IN NNP CC NNP TO VB PRP$ NNS VB IN NNS IN JJ NNP NNP .\nA military spokesman said Saturday the airmen - all based at Keesler Air Base in Biloxi , Mississippi - would begin flying home over the next two weeks .\tDT JJ NN VBD NNP DT NNS IN DT VBN IN NNP NNP NNP IN NNP , NNP : MD VB VBG NN IN DT JJ CD NNS .\nThe group includes personnel who were scheduled to rotate home in September and others whose deployments would be cut short .\tDT NN VBZ NNS WP VBD VBN TO VB NN IN NNP CC NNS WP$ NNS MD VB VBN JJ .\nHurricane Katrina did serious damage to Keesler Air Base , wiping out much of its housing and infrastructure .\tNNP NNP VBD JJ NN TO NNP NNP NNP , VBG RP RB IN PRP$ NN CC NN .\nAn open microphone at Monday 's lunch of Group of Eight leaders recorded President Bush speaking bluntly about the situation in the Middle East .\tDT JJ NN IN NNP POS NN IN NNP IN CD NNS VBD NNP NNP VBG RB IN DT NN IN DT NNP NNP .\nWhile he thought he was talking privately with British Prime Minister Tony Blair , the microphone picked up Mr. Bush using an expletive to describe Hezbollah 's attacks on Israel .\tIN PRP VBD PRP VBD VBG RB IN JJ NNP NNP NNP NNP , DT NN VBD RP NNP NNP VBG DT NN TO VB NNP POS NNS IN NNP .\nMr. Blair realized the microphone was on and quickly turned it off .\tNNP NNP VBD DT NN VBD IN CC RB VBD PRP RP .\nWhite House spokesman Tony Snow says Mr. Bush rolled his eyes and laughed when he was told his private comments were recorded .\tNNP NNP NN NNP NNP VBZ NNP NNP VBD PRP$ NNS CC VBD WRB PRP VBD VBN PRP$ JJ NNS VBD VBN .\nA court in central Russia has convicted a scientist on charges of illegally selling technology abroad that authorities say could be used in weapons .\tDT NN IN JJ NNP VBZ VBN DT NN IN NNS IN RB VBG NN RB IN NNS VBP MD VB VBN IN NNS .\nThe Bashkortostan Supreme Court sentenced academic Oskar Kaibyshev Tuesday to a six-year suspended prison term .\tDT NNP NNP NNP VBD JJ NNP NNP NNP TO DT JJ JJ NN NN .\nIt also fined him $ 1,30,000 and barred him from heading research teams for the next three years .\tPRP RB VBD PRP $ CD CC VBD PRP IN VBG NN NNS IN DT JJ CD NNS .\nThe 67-year-old Kaibyshev has steadfastly maintained his innocence .\tDT JJ NNP VBZ RB VBN PRP$ NN .\nHe claimed the technology developed at a research institute that he headed had already been patented in the United States and other countries .\tPRP VBD DT NN VBN IN DT NN NN IN PRP VBD VBD RB VBN VBN IN DT NNP NNPS CC JJ NNS .\nDefense lawyers say they will appeal .\tNN NNS VBP PRP MD VB .\nRussia 's Interfax news agency quotes veteran human rights activist Lyudmila Alekseyeva as saying she is grateful for Kaibyshev 's suspended sentence .\tNNP POS NNP NN NN VBZ JJ JJ NNS NN NNP NNP IN VBG PRP VBZ JJ IN NNP POS JJ NN .\nHowever , she called the verdict ' outrageous . '\tRB , PRP VBD DT NN `` JJ . ``\nShe said she believes that Russian security officials framed the scientist .\tPRP VBD PRP VBZ IN JJ NN NNS VBD DT NN .\nPolice in northwestern Pakistan say a suicide bomber detonated his explosives-laden vehicle near a checkpoint Wednesday , wounding four soldiers .\tNNS IN JJ NNP VBP DT NN NN VBD PRP$ JJ NN IN DT NN NNP , VBG CD NNS .\nOnly the attacker was killed in this blast in the town of Bannu , in volatile North West Frontier province .\tRB DT NN VBD VBN IN DT NN IN DT NN IN NNP , IN JJ NNP NNP NNP NN .\nThe assembly rewriting Ecuador 's constitution is meeting Thursday to debate the new charter that would grant President Rafael Correa broad powers .\tDT NN VBG NNP POS NN VBZ VBG NNP TO VB DT JJ NN WDT MD VB NNP NNP NNP JJ NNS .\nThe assembly has been working on the changes since November .\tDT NN VBZ VBN VBG IN DT NNS IN NNP .\nIf the new constitution is approved , voters will decide in September whether to adopt it .\tIN DT JJ NN VBZ VBN , NNS MD VB IN NNP IN TO VB PRP .\nPresident Correa has said the constitution should be changed to limit the power of Ecuador 's major political parties .\tNNP NNP VBZ VBN DT NN MD VB VBN TO VB DT NN IN NNP POS JJ JJ NNS .\nThe proposed constitution also would allow Mr. Correa to seek re-election to a new four-year term .\tDT VBN NN RB MD VB NNP NNP TO VB NN TO DT JJ JJ NN .\nSeparately , it would transfer to the president functions currently performed by the Central Bank .\tRB , PRP MD VB TO DT NN NNS RB VBN IN DT NNP NNP .\nEarlier this week , the Constitutional Assembly announced that the Central Bank president , Robert Andrade , resigned but gave no reason for his decision .\tRBR DT NN , DT NNP NNP VBD IN DT NNP NNP NN , NNP NNP , VBD CC VBD DT NN IN PRP$ NN .\nUnited Nations monitors say the Sudanese military is indiscriminately bombing villages in the north Darfur region , killing and injuring scores of civilians .\tNNP NNP NNS VBP DT JJ NN VBZ RB VBG NNS IN DT JJ NNP NN , VBG CC VBG NNS IN NNS .\nA spokesman , Jose Diaz , for the U.N. High Commissioner on Human Rights says Friday government bombing raids have forced hundreds of civilians in north Darfur to flee their homes .\tDT NN , NNP NNP , IN DT NNP NNP NNP IN NNP NNP VBZ NNP NN VBG NNS VBP VBN NNS IN NNS IN JJ NNP TO VB PRP$ NNS .\nHe says a new report shows the government is waging a campaign against rebel groups who have not signed a peace agreement .\tPRP VBZ DT JJ NN VBZ DT NN VBZ VBG DT NN IN JJ NNS WP VBP RB VBN DT NN NN .\nU.N. monitors also report ongoing sexual violence and rape of women who venture outside their villages to seek food or firewood in south Darfur , particularly near the village of Gereida .\tNNP NNS RB VBP JJ JJ NN CC NN IN NNS WP VBP IN PRP$ NNS TO VB NN CC NN IN JJ NNP , RB IN DT NN IN NNP .\nThe U.N. report says the alleged incidents took place earlier this month in the troubled region .\tDT NNP NN VBZ DT JJ NNS VBD NN RBR DT NN IN DT JJ NN .\nSome 2,00,000 people have been killed in Darfur since the start of fighting three years ago .\tDT CD NNS VBP VBN VBN IN NNP IN DT NN IN VBG CD NNS RB .\nU.S. Secretary of State Colin Powell and United Nations Secretary-General Kofi Annan met in Washington Thursday , for talks that focused mainly on Iraq .\tNNP NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP VBD IN NNP NNP , IN NNS WDT VBD RB IN NNP .\nSpeaking to reporters after the meeting , Mr. Annan said U.N. efforts to help Iraq prepare for upcoming elections are ' on track . '\tVBG TO NNS IN DT NN , NNP NNP VBD NNP NNS TO VB NNP VB IN JJ NNS VBP `` IN NN . ``\nMr. Annan has said he will boost the number of U.N. staffers in Iraq , most of whom he withdrew last year after the bombing of the U.N. headquarters in Baghdad .\tNNP NNP VBZ VBN PRP MD VB DT NN IN NNP NNS IN NNP , JJS IN WP PRP VBD JJ NN IN DT NN IN DT NNP NN IN NNP .\nMr. Powell said the United States ' has confidence ' in the secretary-general , who has come under fire for scandals that plagued the U.N. oil-for-food program for Iraq .\tNNP NNP VBD DT NNP NNPS `` VBZ NN `` IN DT JJ , WP VBZ VBN IN NN IN NNS WDT VBD DT NNP NN NN IN NNP .\nThe two men said their talks also covered Afghanistan , Sudan and Haiti .\tDT CD NNS VBD PRP$ NNS RB VBD NNP , NNP CC NNP .\nMr. Annan meets next with Condoleezza Rice , who President Bush has nominated to be Mr. Powell 's successor .\tNNP NNP VBZ JJ IN NNP NNP , WP NNP NNP VBZ VBN TO VB NNP NNP POS NN .\nLater , he speaks to an independent group , the Council on Foreign Relations .\tRB , PRP VBZ TO DT JJ NN , DT NNP IN NNP NNP .\nTropical Storm Katrina has been upgraded to a hurricane as it bears down on the southeastern U.S. state of Florida , on a path toward cities along the Atlantic coast .\tJJ NN NNP VBZ VBN VBN TO DT NN IN PRP VBZ RP IN DT JJ NNP NN IN NNP , IN DT NN IN NNS IN DT NNP NN .\nAt last report , the 11th named storm of this year 's Atlantic hurricane season was 40 kilometers east-northeast of Fort Lauderdale , a popular destination for tourists .\tIN JJ NN , DT JJ VBN NN IN DT NN POS NNP NN NN VBD CD NNS NN IN NNP NNP , DT JJ NN IN NNS .\nKatrina had winds of 120 kilometers per hour .\tNNP VBD NNS IN CD NNS IN NN .\nMany Florida residents are stocking up on gasoline , water and other supplies in preparation for the storm , which formed Wednesday over the Bahamas .\tJJ NNP NNS VBP VBG RP IN NN , NN CC JJ NNS IN NN IN DT NN , WDT VBD NNP IN DT NNPS .\nKatrina is expected to make landfall late Thursday or early Friday .\tNNP VBZ VBN TO VB NN JJ NNP CC JJ NNP .\nForecasters warn the storm could dump several centimeters of rain in spots as it moves over the state toward the Gulf of Mexico .\tNNS VBP DT NN MD VB JJ NNS IN NN IN NNS IN PRP VBZ IN DT NN IN DT NNP IN NNP .\nEgypt is holding talks in Cairo with Palestinian militant leaders , as part of a push to strengthen Palestinian support for a de~facto ceasefire with Israel .\tNNP VBZ VBG NNS IN NNP IN JJ JJ NNS , IN NN IN DT NN TO VB JJ NN IN DT JJ NN IN NNP .\nThe talks are taking place as Egypt prepares to host an Israeli-Palestinian summit aimed at formalizing the truce and re-starting talks on the internationally brokered road map peace plan .\tDT NNS VBP VBG NN IN NNP VBZ TO VB DT JJ NN VBN IN VBG DT NN CC JJ NNS IN DT RB VBN NN NN NN NN .\nMilitant sources say Hamas leader Khaled Meshaal and Islamic Jihad leader Ramadan Shallah were both meeting Wednesday with Egyptian negotiators .\tJJ NNS VBP NNP NN NNP NNP CC NNP NNP NN NNP NNP VBD DT NN NNP IN JJ NNS .\nEgypt has not commented on the talks .\tNNP VBZ RB VBN IN DT NNS .\nVenezuela 's President Hugo Chavez has defended his plan to pass legislation by decree , calling U.S. reservations about his actions unacceptable meddling in Venezuela 's affairs .\tNNP POS NNP NNP NNP VBZ VBN PRP$ NN TO VB NN IN NN , VBG NNP NNS IN PRP$ NNS JJ NN IN NNP POS NNS .\nMr. Chavez cursed at U.S. officials in a Sunday broadcast saying Venezuela is exercising the legal authority of a free nation .\tNNP NNP VBD IN NNP NNS IN DT NNP NN VBG NNP VBZ VBG DT JJ NN IN DT JJ NN .\nOn Friday , U.S. State Department spokesman Tom Casey said Mr. Chavez 's plan to rule by decree is an odd proposal in a democratic system .\tIN NNP , NNP NNP NNP NN NNP NNP VBD NNP NNP POS NN TO VB IN NN VBZ DT JJ NN IN DT JJ NN .\nVenezuela 's legislature is expected this week to give Mr. Chavez the power to rule by decree for 18 months .\tNNP POS NN VBZ VBN DT NN TO VB NNP NNP DT NN TO VB IN NN IN CD NNS .\nDuring his inauguration address earlier this month , Mr. Chavez said he will seek to amend the constitution to allow unlimited consecutive presidential terms .\tIN PRP$ NN NN RBR DT NN , NNP NNP VBD PRP MD VB TO VB DT NN TO VB JJ JJ JJ NNS .\nOpposition lawmakers accuse the president of moving Venezuela toward a totalitarian form of government that resembles Cuba .\tNNP NNS VBP DT NN IN VBG NNP IN DT JJ NN IN NN WDT VBZ NNP .\nChinese officials say the world 's oldest panda in captivity has died at the age of 36 .\tJJ NNS VBP DT NN POS JJS NN IN NN VBZ VBN IN DT NN IN CD .\nMei Mei passed away Tuesday at the zoo in the southwestern city of Guilin , where she had lived for the last 20 years .\tNNP NNP VBD RP NNP IN DT NN IN DT JJ NN IN NNP , WRB PRP VBD VBN IN DT JJ CD NNS .\nExperts say Mei Mei 's age made her the equivalent of more than 100 in human years .\tNNS VBP NNP NNP POS NN VBD PRP$ DT NN IN JJR IN CD IN JJ NNS .\nMei Mei 's death came on the same day that Chinese media reported the birth of a second set of rare twin panda cubs at the Wolong panda reserve in the southwest province of Sichuan .\tNNP NNP POS NN VBD IN DT JJ NN IN JJ NNS VBD DT NN IN DT JJ NN IN JJ JJ NN NNS IN DT NNP NN NN IN DT JJS NN IN NNP .\nRussia says a third round of talks with the United States on reducing their nuclear arsenals will take place in Geneva on June 23 and 24 .\tNNP VBZ DT JJ NN IN NNS IN DT NNP NNPS IN VBG PRP$ JJ NNS MD VB NN IN NNP IN NNP CD CC CD .\nRussian Foreign Ministry spokesman Andrei Nesterenko said Thursday that President Dmitri Medvedev and his U.S. counterpart Barack Obama are hoping to announce the talks ' progress when Mr. Obama visits Moscow in early July .\tJJ NNP NNP NN NNP NNP VBD NNP IN NNP NNP NNP CC PRP$ NNP NN NNP NNP VBP VBG TO VB DT NNS POS NN WRB NNP NNP VBZ NNP IN JJ NNP .\nThe goal of the talks is to replace the 1991 Strategic Arms Reduction Treaty ( START I ) before it expires on December 5 .\tDT NN IN DT NNS VBZ TO VB DT CD NNP NNP NNP NNP LRB NNP NNP RRB IN PRP VBZ IN NNP CD .\nNestrenko told reporters the negotiations were proceeding in a ' constructive ' manner .\tNNP VBD NNS DT NNS VBD VBG IN DT `` JJ `` NN .\nSTART I led to major reductions in the U.S. and Russian nuclear arsenal at the end of the Cold War .\tNNP NNP VBD TO JJ NNS IN DT NNP CC JJ JJ NN IN DT NN IN DT NNP NNP .\nTalks of finding a new agreement had made little progress under the administration of former U.S. President George W. Bush .\tNNS IN VBG DT JJ NN VBD VBN JJ NN IN DT NN IN JJ NNP NNP NNP NNP NNP .\nIranian state media say Iran has arrested seven people linked to U.S.-funded Radio Farda and has accused some of working for U.S. spy agencies .\tJJ NN NNS VBP NNP VBZ VBN CD NNS VBN TO JJ NN NNP CC VBZ VBN DT IN VBG IN NNP NN NNS .\nThe official new agency IRNA says the seven are suspected of provoking protesters during the violent anti-government demonstration last December .\tDT JJ JJ NN NNP VBZ DT CD VBP VBN IN VBG NNS IN DT JJ NN NN JJ NNP .\nAt least eight people died on Ashura , the day of ritual Shi'ite Muslim mourning , after clashes broke out between security forces and opposition supporters .\tIN JJS CD NNS VBD IN NNP , DT NN IN JJ NNP NNP NN , IN NNS VBD RP IN NN NNS CC NN NNS .\nIRNA did not identify those arrested .\tNNP VBD RB VB DT VBN .\nRadio Farda is a Farsi-language broadcast service based in Prague , Czech Republic , and funded by the U.S. government .\tNNP NNP VBZ DT JJ NN NN VBN IN NNP , JJ NNP , CC VBN IN DT NNP NN .\nThe arrests come as Iran is beginning to mark the 31st anniversary of the 1979 Islamic revolution that toppled the U.S.-backed shah .\tDT NNS VBP IN NNP VBZ VBG TO VB DT JJ NN IN DT CD JJ NN WDT VBD DT JJ NN .\nOpposition leaders Mir Hossein Mousavi and Mehdi Karroubi have urged their supporters to make their voices heard when Iranians march on February 11 .\tNN NNS NNP NNP NNP CC NNP NNP VBP VBN PRP$ NNS TO VB PRP$ NNS VBN WRB NNS VBP IN NNP CD .\nIran 's government has threatened severe reprisals if the protests take place .\tNNP POS NN VBZ VBN JJ NNS IN DT NNS VBP NN .\nMexican authorities say they have found the second flight data recorder from the airplane crash that killed Interior Minister Juan Camilo Mourino .\tJJ NNS VBP PRP VBP VBN DT JJ NN NNS NN IN DT NN NN WDT VBD NNP NNP NNP NNP NNP .\nTransportation Minister Luis Tellez says Thursday that investigators found the ' black box ' containing voice recordings of the crew .\tNNP NNP NNP NNP VBZ NNP IN NNS VBD DT `` JJ NN `` VBG NN NNS IN DT NN .\nThe data recorder with navigation information was recovered on Wednesday .\tDT NNS NN IN NN NN VBD VBN IN NNP .\nTellez says both boxes will be examined in the United States .\tNNP VBZ DT NNS MD VB VBN IN DT NNP NNPS .\nThe small government plane crashed Tuesday during evening rush hour near Mexico 's City 's main avenue , Paseo de la Reforma .\tDT JJ NN NN VBD NNP IN NN NN NN IN NNP POS NNP POS JJ NN , NNP NNP NNP NNP .\nAmong those killed was the former prosecutor for drug crimes , Jose Luis Santiago Vasconcelos , and at least a dozen other people in the aircraft and on the ground .\tIN DT VBN VBD DT JJ NN IN NN NNS , NNP NNP NNP NNP , CC IN JJS DT NN JJ NNS IN DT NN CC IN DT NN .\nInterior Minister Mourino had led a government campaign against mounting violence by drug cartels .\tNNP NNP NNP VBD VBN DT NN NN IN VBG NN IN NN NNS .\nThe violence has killed about 4,000 people this year , including several top officials .\tDT NN VBZ VBN IN CD NNS DT NN , VBG JJ JJ NNS .\nA man says he was paid to throw a grenade at a mosque during Friday prayers in Indian Kashmir , an attack that killed five people , including two young girls .\tDT NN VBZ PRP VBD VBN TO VB DT NN IN DT NN IN NNP NNS IN NNP NNP , DT NN WDT VBD CD NNS , VBG CD JJ NNS .\nLocal residents captured Ghulam Nadi Mir immediately after the attack in the village of Tahab and turned him over to police .\tJJ NNS VBD NNP NNP NNP RB IN DT NN IN DT NN IN NNP CC VBD PRP RP TO NNS .\nHe told reporters Saturday he was paid $ 20 to throw the grenade .\tPRP VBD NNS NNP PRP VBD VBN $ CD TO VB DT NN .\nPolice suspect the incident involved the militant group Hizb-ul-Mujahedeen , but the group denied any involvement .\tNNS VBP DT NN VBD DT JJ NN NNP , CC DT NN VBD DT NN .\nThe region has been rocked by a series of grenade attacks by separatist militants in recent months .\tDT NN VBZ VBN VBN IN DT NN IN NN NNS IN JJ NNS IN JJ NNS .\nProtesters in Venezuela have clashed with police as thousands demonstrated against constitutional reforms that some critics say will turn the country into an authoritarian state .\tNNS IN NNP VBP VBN IN NNS IN NNS VBD IN JJ NNS IN DT NNS VBP MD VB DT NN IN DT JJ NN .\nVenezuelan police fired tear gas Tuesday at the student-led demonstrators after clashes broke out in Caracas .\tJJ NN VBD JJ NN NNP IN DT JJ NNS IN NNS VBD RP IN NNP .\nThe proposed amendments include eliminating presidential term limits , detaining citizens without charge during national emergencies , and restricting the public 's access to information during an emergency .\tDT VBN NNS VBP VBG JJ NN NNS , VBG NNS IN NN IN JJ NNS , CC VBG DT NN POS NN TO NN IN DT NN .\nLeaders of Venezuela 's Roman Catholic Church are opposed to the changes , saying they amount to the concentration of power in the president 's hands .\tNNS IN NNP POS NNP NNP NNP VBP VBN TO DT NNS , VBG PRP VBP TO DT NN IN NN IN DT NN POS NNS .\nHuman rights groups , including Human Rights Watch and Reporters Without Borders , have also condemned the proposed constitutional amendments .\tJJ NNS NNS , VBG NNP NNPS NNP CC NNPS IN NNS , VBP RB VBN DT VBN JJ NNS .\nVenezuela 's legislature plans to finalize the language for the 58 amendments by the end of this month , and a national vote on the changes is expected in December .\tNNP POS NN VBZ TO VB DT NN IN DT CD NNS IN DT NN IN DT NN , CC DT JJ NN IN DT NNS VBZ VBN IN NNP .\nChina says Beijing 's already snarled traffic situation is likely to get worse in the run up to the 2008 Olympics .\tNNP VBZ NNP POS RB VBN NN NN VBZ JJ TO VB JJR IN DT NN RB TO DT CD NNS .\nThe official Xinhua news agency said Monday that Beijing registered more than 22,000 new vehicles in the first 18 days of this year .\tDT JJ NNP NN NN VBD NNP IN NNP VBD JJR IN CD JJ NNS IN DT JJ CD NNS IN DT NN .\nXinhua said the capital city already has more than 20,00,000 registered vehicles and more than 40,00,000 people have a drivers license .\tNNP VBD DT NN NN RB VBZ JJR IN CD JJ NNS CC JJR IN CD NNS VBP DT NNS NN .\nThe paper said officials predict the number of cars is expected to reach over 30,00,000 by the 2008 Olympic Games .\tDT NN VBD NNS VBP DT NN IN NNS VBZ VBN TO VB IN CD IN DT CD NNP NNPS .\nCars contribute to choking air pollution in major Chinese cities .\tNNS VBP TO VBG NN NN IN JJ JJ NNS .\nThe government has urged people to use public transportation , but officials say it probably will not do much to help chronic traffic congestion .\tDT NN VBZ VBN NNS TO VB JJ NN , CC NNS VBP PRP RB MD RB VB RB TO VB JJ NN NN .\nThe Pentagon says it has a well planned schedule to improve the armor of military vehicles in Iraq .\tDT NNP VBZ PRP VBZ DT RB VBN NN TO VB DT NN IN JJ NNS IN NNP .\nIn a briefing Thursday , Lieutenant General Steven Whitcomb said the military had enough resources and was installing additional armor on military vehicles already in Iraq and Kuwait .\tIN DT NN NNP , NNP NNP NNP NNP VBD DT NN VBD JJ NNS CC VBD VBG JJ NN IN JJ NNS RB IN NNP CC NNP .\nHe acknowledged , however , the increased armor would not protect troops from improvised explosive devices detonated from underneath the vehicles .\tPRP VBD , RB , DT VBN NN MD RB VB NNS IN JJ JJ NNS VBN IN NN DT NNS .\nGeneral Whitcomb stressed that increasing the armor on vehicles is just one part of the Army 's strategy to protect troops .\tNNP NNP VBD IN VBG DT NN IN NNS VBZ RB CD NN IN DT NNP POS NN TO VB NNS .\nHe said a high priority is finding and stopping the insurgents from building the explosive devices .\tPRP VBD DT JJ NN VBZ VBG CC VBG DT NNS IN VBG DT JJ NNS .\nThe briefing comes one day after Defense Secretary Donald Rumsfeld , visiting troops in Kuwait , was asked by servicemembers why their vehicles were not adequately protected .\tDT NN VBZ CD NN IN NNP NNP NNP NNP , VBG NNS IN NNP , VBD VBN IN NNS WRB PRP$ NNS VBD RB RB VBN .\nChina 's Agriculture Ministry has reported two new outbreaks of bird flu among poultry in the northwestern Xinjiang region and the central province of Hunan .\tNNP POS NNP NNP VBZ VBN CD JJ NNS IN NN NN IN NN IN DT JJ NNP NN CC DT JJ NN IN NNP .\nThe ministry said Tuesday , that tens of thousands of birds were culled in both infected areas .\tDT NN VBD NNP , IN NNS IN NNS IN NNS VBD VBN IN DT JJ NNS .\nChina has confirmed three cases of bird flu in humans .\tNNP VBZ VBN CD NNS IN NN NN IN NNS .\nElsewhere , the Asian Development Bank has announced a $ 30 million grant for Vietnam , Cambodia and Laos to help contain the spread of bird flu and other diseases .\tRB , DT NNP NNP NNP VBZ VBN DT $ CD CD NN IN NNP , NNP CC NNP TO VB VB DT NN IN NN NN CC JJ NNS .\nThe Manila-based bank says the grant will be funded in conjunction with the World Health Organization .\tDT JJ NN VBZ DT NN MD VB VBN IN NN IN DT NNP NNP NNP .\nAnd in several Australian cities Tuesday , emergency workers began an exercise to test the government 's response to a simulated outbreak of bird flu .\tCC IN JJ JJ NNS NNP , NN NNS VBD DT NN TO VB DT NN POS NN TO DT JJ NN IN NN NN .\nAbout 1,000 people are expected to participate in the three-day drill .\tRB CD NNS VBP VBN TO VB IN DT JJ NN .\nAfghan officials say a suicide blast has killed at least 10 people in a city in central Uruzgan province during a visit by the U.S. ambassador .\tJJ NNS VBP DT NN NN VBZ VBN IN JJS CD NNS IN DT NN IN JJ NNP NN IN DT NN IN DT NNP NN .\nPolice say the attacker detonated explosives strapped to his body near the governor 's headquarters in the city of Tarin Kot .\tNNS VBP DT NN VBD NNS VBN TO PRP$ NN IN DT NN POS NN IN DT NN IN NNP NNP .\nSome 50 people were wounded in the attack , but the ambassador , Ronald Neumann and other U.S. officials were unhurt .\tDT CD NNS VBD VBN IN DT NN , CC DT NN , NNP NNP CC JJ NNP NNS VBD JJ .\nShortly after the blast , local news agencies said a Taleban spokesman phoned claiming responsibility for the attack .\tRB IN DT NN , JJ NN NNS VBD DT NNP NN VBD VBG NN IN DT NN .\nEarlier this week , a suicide car bomber wounded an American soldier and two other people in southern Afghanistan .\tRBR DT NN , DT NN NN NN VBD DT JJ NN CC CD JJ NNS IN JJ NNP .\nThis week 's attacks are the latest in an upsurge in attacks by suspected Taleban supporters in southern and central Afghanistan , where more than 1,500 people were killed in insurgent-related violence last year .\tDT NN POS NNS VBP DT JJS IN DT NN IN NNS IN JJ NNP NNS IN JJ CC JJ NNP , WRB JJR IN CD NNS VBD VBN IN JJ NN JJ NN .\nThe Israeli military is imposing a three-day closure on the West Bank , banning Palestinians from entering Israel during a Jewish festival .\tDT JJ NN VBZ VBG DT JJ NN IN DT NNP NNP , VBG NNS IN VBG NNP IN DT JJ NN .\nThe military says it began the closure early Monday and will maintain it throughout the holiday of Purim , which ends at midnight Wednesday .\tDT JJ VBZ PRP VBD DT NN RB NNP CC MD VB PRP IN DT NN IN NNP , WDT VBZ IN NN NNP .\nIsrael considers Jewish festivals likely times for Palestinian attacks .\tNNP VBZ JJ NNS JJ NNS IN JJ NNS .\nThe military regularly imposes closures during such holidays .\tDT NN RB VBZ NNS IN JJ NNS .\nMeanwhile , a British relief convoy carrying aid for Palestinians in the Gaza Strip arrived Sunday at the Rafah border crossing in Egypt .\tRB , DT JJ NN NN VBG NN IN NNS IN DT NNP NNP VBD NNP IN DT NNP NN VBG IN NNP .\nThe convoy led by British Parliamentarian George Galloway has traveled more than 14,000 kilometers from London over the past three weeks to reach the Palestinian territory .\tDT NN VBN IN JJ NN NNP NNP VBZ VBN JJR IN CD NNS IN NNP IN DT JJ CD NNS TO VB DT JJ NN .\nIt is unclear whether Egyptian authorities will allow the food and medical aid to pass into the Hamas-controlled Gaza Strip , which was crippled by Israel 's recent military offensive .\tPRP VBZ JJ IN JJ NNS MD VB DT NN CC JJ NN TO VB IN DT JJ NNP NNP , WDT VBD VBN IN NNP POS JJ JJ NN .\nAs Americans remember Martin Luther King , Junior Monday , his family remains divided over the future of his memorial center in Atlanta .\tIN NNS VBP NNP NNP NNP , NNP NNP , PRP$ NN VBZ VBN IN DT NN IN PRP$ JJ NN IN NNP .\nTwo of Reverend King 's four children favor selling the King Center to the U.S. National Park Service .\tCD IN NNP NNP POS CD NNS VBP VBG DT NNP NNP TO DT NNP NNP NNP NNP .\nBut another son and daughter want the center to remain in control of the King family .\tCC DT NN CC NN VBP DT NN TO VB IN NN IN DT NNP NN .\nKing 's widow , Coretta Scott King , who is recovering from a stroke , relinquished control of the center years ago .\tNNP POS NN , NNP NNP NNP , WP VBZ VBG IN DT NN , VBD NN IN DT NN NNS RB .\nSon Martin Luther King said selling the center would sell his father 's legacy and barter his mother 's vision .\tNNP NNP NNP NNP VBD VBG DT NN MD VB PRP$ NN POS NN CC VB PRP$ NN POS NN .\nThe center features programs and services on Reverend King 's legacy and racial equality , but has fallen into debt and disrepair over the years .\tDT NN VBZ NNS CC NNS IN NNP NNP POS NN CC JJ NN , CC VBZ VBN IN NN CC NN IN DT NNS .\nThe work of Cuban artists is finding an outlet in Miami , despite objections from some Cuban Americans who believe some of the artwork portrays the communist nation in a positive light .\tDT NN IN JJ NNS VBZ VBG DT NN IN NNP , IN NNS IN DT JJ NNS WP VBP DT IN DT NN VBZ DT JJ NN IN DT JJ NN .\nA small number of fledgling galleries showcasing art from the island have appeared in the city 's Little Havana district - a hotbed of anti-Castro sentiment .\tDT JJ NN IN NN NNS VBG NN IN DT NN VBP VBN IN DT NN POS JJ NNP NN IN DT NN IN JJ NN .\nThe owner of one of the galleries says she has faced criticism but continues traveling to the island to buy paintings , photographs and sculptures to showcase in her gallery .\tDT NN IN CD IN DT NNS VBZ PRP VBZ VBN NN CC VBZ VBG TO DT NN TO VB NNS , NNS CC NNS TO VB IN PRP$ NN .\nSteve Mort reports from Miami .\tNNP NNP VBZ IN NNP .\nSeveral members of Iran 's parliament have told President Mahmoud Ahmadinejad to pick experienced members for his Cabinet .\tJJ NNS IN NNP POS NN VBP VBN NNP NNP NNP TO VB JJ NNS IN PRP$ NNP .\nMr. Ahmadinejad will submit his new cabinet line-up next week , and he has vowed to appoint more young people .\tNNP NNP MD VB PRP$ JJ NN NN JJ NN , CC PRP VBZ VBN TO VB RBR JJ NNS .\nIranian state media report that lawmakers are urging Mr. Ahmadinejad to make wise selections of experienced ministers if he is to win a vote of confidence in parliament .\tJJ NN NNS NN IN NNS VBP VBG NNP NNP TO VB JJ NNS IN JJ NNS IN PRP VBZ TO VB DT NN IN NN IN NN .\nThe president 's reelection on June 12 set off a political crisis in Iran .\tDT NN POS NN IN NNP CD VBD RP DT JJ NN IN NNP .\nIranian authorities have arrested thousands of demonstrators who say the presidential vote was rigged .\tJJ NNS VBP VBN NNS IN NNS WP VBP DT JJ NN VBD VBN .\nInfluential cleric and former president Akbar Hashemi Rafsanjani this week canceled his turn to lead Friday prayers in an effort to avoid further unrest .\tJJ NN CC JJ NN NNP NNP NNP DT NN VBD PRP$ NN TO VB NNP NNS IN DT NN TO VB JJ NN .\nOpposition supporters staged demonstrations during Rafsanjani 's most recent sermon .\tNN NNS VBD NNS IN NNP POS RBS JJ NN .\nRafsanjani 's office released a statement saying the cleric wanted to avoid any possible clashes resulting from the post-election fall out .\tNNP POS NN VBD DT NN VBG DT NN VBD TO VB DT JJ NNS VBG IN DT JJ NN RB .\nAn Indonesian court has sentenced two Australian men to death by firing squad for leading a drug smuggling ring on the Indonesian island of Bali .\tDT JJ NN VBZ VBN CD JJ NNS TO NN IN VBG NN IN VBG DT NN VBG NN IN DT JJ NN IN NNP .\nThe district court in Bali 's provincial capital , Denpasar , said Tuesday that Andrew Chan and Myuran Sukumaran were the masterminds of the so-called Bali Nine .\tDT NN NN IN NNP POS JJ NN , NNP , VBD NNP IN NNP NNP CC NNP NNP VBD DT NNS IN DT JJ NNP NNP .\nThe same court also sentenced Michael Czugaj and Martin Stephens to life in prison Tuesday for their part in the drug smuggling operation .\tDT JJ NN RB VBD NNP NNP CC NNP NNP TO NN IN NN NNP IN PRP$ NN IN DT NN NN NN .\nTwo others , Renae Lawrence and Scott Rush , were handed the same sentence on Monday .\tCD NNS , NNP NNP CC NNP NNP , VBD VBN DT JJ NN IN NNP .\nThe nine Australians were arrested in April of last year for allegedly trying to smuggle more than eight kilograms of heroin from Bali to Australia .\tDT CD NNS VBD VBN IN NNP IN JJ NN IN RB VBG TO VB JJR IN CD NNS IN NN IN NNP TO NNP .\nThe cases are among a series of arrests in Indonesia involving Australians accused of smuggling illegal drugs .\tDT NNS VBP IN DT NN IN NNS IN NNP VBG NNS VBN IN VBG JJ NNS .\nThe Vatican says Pope John Paul 's body will lie in state at St. Peter 's Basilica beginning Monday afternoon at the earliest .\tDT NNP VBZ NNP NNP NNP POS NN MD VB IN NN IN NNP NNP POS NNP NN NNP NN IN DT JJS .\nNine days of official mourning began Sunday at the Vatican .\tCD NNS IN JJ NN VBD NNP IN DT NNP .\nThe pope 's body is to be transferred from the papal apartment , where he died , to prepare it to lie in state .\tDT NN POS NN VBZ TO VB VBN IN DT JJ NN , WRB PRP VBD , TO VB PRP TO VB IN NN .\nA number of world leaders are expected to attend the pope 's funeral later this week .\tDT NN IN NN NNS VBP VBN TO VB DT NN POS NN RB DT NN .\nRoman Catholic tradition says the funeral and burial must be held between the fourth and sixth day after death .\tNNP NNP NN VBZ DT NN CC NN MD VB VBN IN DT JJ CC JJ NN IN NN .\nTraditionally a pope 's body is buried in a crypt beneath St. Peter 's Basilica .\tRB DT NN POS NN VBZ VBN IN DT NN IN NNP NNP POS NNP .\nHowever , news media reports have mentioned that John Paul might have chosen to be buried in his native Poland .\tRB , NN NNS NNS VBP VBN IN NNP NNP MD VB VBN TO VB VBN IN PRP$ JJ NNP .\nThe Kenyan government is lambasting U.S. Senator Barack Obama , one day after the lawmaker concluded a visit to his late father 's homeland .\tDT JJ NN VBZ VBG NNP NNP NNP NNP , CD NN IN DT NN VBD DT NN TO PRP$ JJ NN POS NN .\nA government spokesman in Nairobi Thursday said Obama 's criticisms of Kenyan politics show the lawmaker is ' very poorly informed . '\tDT NN NN IN NNP NNP VBD NNP POS NNS IN JJ NNS VBP DT NN VBZ `` RB RB VBN . ``\nIn speeches to adoring crowds , Obama harshly criticized Kenyan officials for engaging in graft and political divisiveness based on ethnicity .\tIN NNS TO VBG NNS , NNP RB VBD JJ NNS IN VBG IN NN CC JJ NN VBN IN NN .\nHe said transparent government is needed to encourage Kenya 's economic growth .\tPRP VBD JJ NN VBZ VBN TO VB NNP POS JJ NN .\nKenyan President Mwai Kibaki pledged to end rampant corruption when he came to power in 2002 , but allegations of graft continue to plague the government .\tJJ NNP NNP NNP VBD TO VB JJ NN WRB PRP VBD TO NN IN CD , CC NNS IN NN VBP TO VB DT NN .\nObama is a Democratic Party lawmaker representing the midwestern U.S. state of Illinois .\tNNP VBZ DT JJ NNP NN VBG DT JJ NNP NN IN NNP .\nHe visited the east African nation during a two-week tour of Africa , and was embraced by many Kenyans as a native son .\tPRP VBD DT JJ JJ NN IN DT JJ NN IN NNP , CC VBD VBN IN JJ NNS IN DT JJ NN .\nObama 's father was born and worked as an economist in Kenya .\tNNP POS NN VBD VBN CC VBN IN DT NN IN NNP .\nThe United States has asked Israel to investigate an incident in which a U.S. student lost an eye during a pro-Palestinian protest in Jerusalem .\tDT NNP NNP VBZ VBN NNP TO VB DT NN IN WDT DT NNP NN VBD DT NN IN DT JJ NN IN NNP .\nA U.S. embassy spokesman in Tel Aviv Monday said officials there have passed the investigation request to the Israeli Foreign Ministry .\tDT NNP NN NN IN NNP NNP NNP VBD NNS RB VBP VBN DT NN NN TO DT JJ NNP NNP .\nTwenty-one-year-old Emily Henochowicz lost her eye after being struck by an Israeli tear-gas canister during a protest at a Jerusalem checkpoint last week .\tJJ NNP NNP VBD PRP$ NN IN VBG VBN IN DT JJ JJ NN IN DT NN IN DT NNP NN JJ NN .\nHenochowicz was demonstrating with a pro-Palestinian group against Israel 's raid on a Gaza-bound flotilla that killed nine Turkish activists .\tNNP VBD VBG IN DT JJ NN IN NNP POS NN IN DT JJ NN WDT VBD CD JJ NNS .\nWitnesses say Israeli border guards deliberately fired tear-gas canisters at the protesters .\tNNS VBP JJ NN NNS RB VBD NNS NNS IN DT NNS .\nThe military says the injured American was not targeted .\tDT NN VBZ DT JJ NNP VBD RB VBN .\nA growing number of Americans are finding the best way to stretch a dollar is to use it sparingly .\tDT VBG NN IN NNS VBP VBG DT JJS NN TO VB DT NN VBZ TO VB PRP RB .\nMany are turning to the practice of bartering - or trading goods and services without exchanging money .\tNN VBP VBG TO DT NN IN VBG : CC VBG NNS CC NNS IN VBG NN .\nIt 's a practice that 's quickly catching on during these tough economic times .\tPRP VBZ DT NN WDT VBZ RB VBG RP IN DT JJ JJ NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nPolice in Belgium raided homes and made at least one arrest early Wednesday in connection with a suicide bombing in Iraq several weeks ago .\tNNS IN NNP VBD NNS CC VBD IN JJS CD NN JJ NNP IN NN IN DT NN VBG IN NNP JJ NNS RB .\nBelgian news reports say a Belgian woman blew herself up on November 9 in an attack on an American patrol in Baghdad .\tJJ NN NNS VBP DT JJ NN VBD PRP RP IN NNP CD IN DT NN IN DT JJ NN IN NNP .\nNo one besides the bomber was killed in the attack .\tDT NN IN DT NN VBD VBN IN DT NN .\nA police spokeswoman confirmed that Wednesday 's raids were carried out to find the woman 's co-conspirators .\tDT NN NN VBD IN NNP POS NNS VBD VBN IN TO VB DT NN POS NNS .\nThirteen people of Belgian and Moroccan origin accused of belonging to an Islamic militant group are currently on trial in Brussels .\tCD NNS IN JJ CC JJ NN VBN IN VBG TO DT JJ JJ NN VBP RB IN NN IN NNP .\nTheir group is suspected of bomb attacks in Spain and Morocco that killed a total of 236 people .\tPRP$ NN VBZ VBN IN NN NNS IN NNP CC NNP WDT VBD DT NN IN CD NNS .\nThat trial is the first under a new anti-terror law in Belgium that makes it a crime to associate with terrorists .\tDT NN VBZ DT JJ IN DT JJ JJ NN IN NNP WDT VBZ PRP DT NN TO NN IN NNS .\nA powerful bomb has ripped through a section of the Philippine House of Representatives in Manila , killing at least two people and injuring at least nine others .\tDT JJ NN VBZ VBN IN DT NN IN DT JJ NNP IN NNPS IN NNP , VBG IN JJS CD NNS CC VBG IN JJS CD NNS .\nThe blast occurred in the south wing of the building Tuesday evening local time , as the House was ending its session .\tDT NN VBD IN DT JJ NN IN DT NN NNP NN JJ NN , IN DT NNP VBD VBG PRP$ NN .\nEmergency crews rushed to the scene , and police have sealed off streets around the building , in the Quezon City area .\tNN NNS VBD TO DT NN , CC NNS VBP VBN RP NNS IN DT NN , IN DT NNP NNP NN .\nOne of those killed was a Philippine lawmaker .\tCD IN DT VBN VBD DT JJ NN .\nThere was no immediate claim of responsibility for the bombing .\tEX VBD DT JJ NN IN NN IN DT NN .\nMembers of the U.S. Senate are demanding that oil companies take steps to bring down high gasoline and heating oil prices being paid by U.S. consumers .\tNNS IN DT NNP NNP VBP VBG IN NN NNS VBP NNS TO VB RP JJ NN CC NN NN NNS VBG VBN IN NNP NNS .\nThe demands came Wednesday as a Senate committee questioned top executives from five major oil companies .\tDT NNS VBD NNP IN DT NNP NN VBD JJ NNS IN CD JJ NN NNS .\nThe companies recently reported record profits as the price of crude oil hit $ 70 a barrel and gasoline prices soared after supply disruptions caused by Hurricanes Katrina and Rita .\tDT NNS RB VBD NN NNS IN DT NN IN JJ NN VBD $ CD DT NN CC NN NNS VBD IN NN NNS VBN IN NNP NNP CC NNP .\nRepublican Senator Pete Domenici said many Americans believe the companies are exploiting current conditions to reap excess profits .\tNNP NNP NNP NNP VBD JJ NNS VBP DT NNS VBP VBG JJ NNS TO VB JJ NNS .\nThe executives defended their profits , saying most of the money is re-invested into energy exploration projects .\tDT NNS VBD PRP$ NNS , VBG JJS IN DT NN VBZ VBN IN NN NN NNS .\nThey cautioned senators against imposing government measures to lower prices , saying market forces will lead to reasonable prices .\tPRP VBD NNS IN VBG NN NNS TO JJR NNS , VBG NN NNS MD VB TO JJ NNS .\nThe Indian government 's key communist allies have rejected a landmark U.S.-India nuclear deal , criticizing it for promoting U.S. influence .\tDT JJ NN POS JJ NN NNS VBP VBN DT NN NNP JJ NN , VBG PRP IN VBG NNP NN .\nIn a statement Tuesday , India 's four-party communist alliance said it can not accept the civilian nuclear agreement between India and the United States and called on Prime Minister Manmohan Singh not to pursue it .\tIN DT NN NNP , NNP POS JJ NN NN VBD PRP MD RB VB DT JJ JJ NN IN NNP CC DT NNP NNPS CC VBN IN NNP NNP NNP NNP RB TO VB PRP .\nHindu nationalists have also rejected the terms of the accord .\tNNP NNS VBP RB VBN DT NNS IN DT NN .\nReversing 30 years of U.S. non-proliferation nuclear policy with India , the controversial agreement would give India access to U.S. nuclear fuel and equipment in exchange for inspections of its civilian nuclear reactors .\tVBG CD NNS IN NNP JJ JJ NN IN NNP , DT JJ NN MD VB NNP NN TO NNP JJ NN CC NN IN NN IN NNS IN PRP$ JJ JJ NNS .\nThe U.S. Congress must approve the deal before it can take effect , but it does not require approval by the Indian parliament .\tDT NNP NNP MD VB DT NN IN PRP MD VB NN , CC PRP VBZ RB VB NN IN DT JJ NN .\nIndia 's prime minister and Cabinet are empowered to sign treaties without parliamentary backing .\tNNP POS JJ NN CC NNP VBP VBN TO VB NNS IN JJ NN .\nBut some Indian lawmakers are trying to make international agreements subject to parliamentary approval .\tCC DT JJ NNS VBP VBG TO VB JJ NNS JJ TO JJ NN .\nIndian police say 11 people , including nine soldiers , have been killed in a landmine explosion in India-controlled Kashmir .\tJJ NNS VBP CD NNS , VBG CD NNS , VBP VBN VBN IN DT NN NN IN JJ NNP .\nAuthorities said Sunday a jeep carrying the soldiers was blown apart when it ran over the landmine late Saturday in Pulwama , south of Kashmir 's summer capital , Srinagar .\tNNS VBD NNP DT NN VBG DT NNS VBD VBN RB WRB PRP VBD IN DT NN JJ NNP IN NNP , NN IN NNP POS NN NN , NNP .\nKashmir 's pro-Pakistan rebel group Hizbul Mujahedin claimed responsibility for the attack .\tNNP POS JJ NN NN NNP NNP VBD NN IN DT NN .\nIn a separate incident early Sunday in the disputed Himalayan region , an army spokesman says Indian troops shot dead three militants who had taken shelter in a mosque .\tIN DT JJ NN JJ NNP IN DT JJ JJ NN , DT NN NN VBZ JJ NNS VBD JJ CD NNS WP VBD VBN NN IN DT NN .\nGuerrilla violence has increased in Kashmir in recent weeks .\tNN NN VBZ VBN IN NNP IN JJ NNS .\nViolence in the region has claimed at least 30,000 lives since the start of a revolt against India in 1989 .\tNN IN DT NN VBZ VBN IN JJS CD NNS IN DT NN IN DT NN IN NNP IN CD .\nIndia blames neighboring Pakistan for supporting the militants - a claim Islamabad denies .\tNNP VBZ VBG NNP IN VBG DT NNS IN DT NN NNP VBZ .\nLebanon 's parliament has postponed the vote for a new president for the eighth time .\tNNP POS NN VBZ VBN DT NN IN DT JJ NN IN DT JJ NN .\nParliament Speaker Nabih Berri issued a statement Monday , saying the election scheduled for Tuesday has been postponed until December 17 .\tNN NN NNP NNP VBD DT NN NNP , VBG DT NN VBN IN NNP VBZ VBN VBN IN NNP CD .\nThe delay gives rival political leaders more time to reach a consensus .\tDT NN VBZ JJ JJ NNS RBR NN TO VB DT NN .\nThe ruling coalition and opposition lawmakers are divided on several issues , including how to amend the constitution to enable army chief General Michel Suleiman to be elected .\tDT VBG NN CC NN NNS VBP VBN IN JJ NNS , VBG WRB TO VB DT NN TO VB NN NN NNP NNP NNP TO VB VBN .\nLebanon has been without a president since November 23 , when pro-Syrian Emile Lahoud 's term ended .\tNNP VBZ VBN IN DT NN IN NNP CD , WRB JJ NNP NNP POS NN VBD .\nGeneral Suleiman is seen as a neutral figure who could resolve the conflict between the Western-backed majority and the pro-Syrian opposition .\tNNP NNP VBZ VBN IN DT JJ NN WP MD VB DT NN IN DT JJ NN CC DT JJ NN .\nIsraeli President Moshe Katsav has shaken hands with Syrian President Bashar al-Assad as both attended the funeral of Pope John Paul II in Rome .\tJJ NNP NNP NNP VBZ VBN NNS IN JJ NNP NNP NNP IN DT VBD DT NN IN NNP NNP NNP NNP IN NNP .\nIsrael Radio reports Iranian-born President Katsav also spoke in his native Farsi with Iranian President Mohammad Khatami .\tNNP NNP VBZ JJ NNP NNP RB VBD IN PRP$ JJ NNP IN JJ NNP NNP NNP .\nThe radio says the two spoke about the Iranian town where they were both born .\tDT NN VBZ DT CD VBD IN DT JJ NN WRB PRP VBD DT VBN .\nSyria is officially at war with Israel and Iran does not recognize the Jewish state .\tNNP VBZ RB IN NN IN NNP CC NNP VBZ RB VB DT JJ NN .\nIsrael Radio says after the funeral , the Syrian leader approached the Israeli president for a second time and again shook his hand .\tNNP NNP VBZ IN DT NN , DT JJ NN VBD DT JJ NN IN DT JJ NN CC RB VBD PRP$ NN .\nSyria has recently made peace overtures to Israel , but Israeli officials have demanded that Syria first pull out of Lebanon and stop its support of radical Palestinian groups .\tNNP VBZ RB VBN NN NNS TO NNP , CC JJ NNS VBP VBN IN NNP RB VB IN IN NNP CC VB PRP$ NN IN JJ JJ NNS .\nThe Turkish parliament has overwhelmingly approved a constitutional amendment to allow the direct election of the president instead of election by parliament .\tDT JJ NN VBZ RB VBN DT JJ NN TO VB DT JJ NN IN DT NN RB IN NN IN NN .\nThursday 's vote is the second time lawmakers approved the article , which is part of a package of reforms .\tNNP POS NN VBZ DT JJ NN NNS VBD DT NN , WDT VBZ NN IN DT NN IN NNS .\nIf lawmakers approve the entire package , Turkish President Ahmet Necdet Sezer , who has vetoed it once already , must either approve the reforms or call for a referendum .\tIN NNS VBP DT JJ NN , JJ NNP NNP NNP NNP , WP VBZ VBN PRP RB RB , MD RB VB DT NNS CC NN IN DT NN .\nTurkey 's ruling Islamist-rooted AK Party proposed the reform package after parliament failed to elect its candidate for president , Foreign Minister Abdullah Gul .\tNNP POS NN NNP NNP NNP VBD DT NN NN IN NN VBD TO VB PRP$ NN IN NN , NNP NNP NNP NNP .\nSecularists opposed Gul 's candidacy for president , and they have accused the AK Party of attempting to undermine Turkey 's secular order .\tNNS VBD NNP POS NN IN NN , CC PRP VBP VBN DT NNP NNP IN VBG TO VB NNP POS JJ NN .\nTurkish Prime Minister Recep Tayyip Erdogan has said he is committed to Turkey 's secular system .\tJJ NNP NNP NNP NNP NNP VBZ VBN PRP VBZ VBN TO NNP POS JJ NN .\nMr. Erdogan also called for early parliamentary elections over the political deadlock .\tNNP NNP RB VBD IN JJ JJ NNS IN DT JJ NN .\nDow Jones & Co. said it extended its $ 18-a-share offer for Telerate Inc. common stock until 5 p.m. EST Nov. 9 .\tNNP NNP CC NNP VBD PRP VBD PRP$ $ JJ NN IN NNP NNP JJ NN IN CD NN NNP NNP CD .\nThe offer , valued at about $ 576 million for the 33 % of Telerate that Dow Jones does n't already own , had been set to expire Nov. 6 .\tDT NN , VBN IN IN $ CD CD IN DT CD NN IN NNP IN NNP NNP VBZ RB RB VB , VBD VBN VBN TO VB NNP CD .\nDow Jones , which owns about 64 million of Telerate 's 95 million common shares outstanding , said that about 24,000 shares have been tendered under its offer .\tNNP NNP , WDT VBZ RB CD CD IN NNP POS CD CD JJ NNS JJ , VBD IN IN CD NNS VBP VBN VBN IN PRP$ NN .\nTelerate 's two independent directors have rejected the offer as inadequate .\tNNP POS CD JJ NNS VBP VBN DT NN IN JJ .\nIn composite trading on the New York Stock Exchange , Telerate shares closed at $ 19.5 , up 12.5 cents .\tIN JJ NN IN DT NNP NNP NNP NNP , NNP NNS VBD IN $ CD , RB CD NNS .\nTelerate provides an electronic financial information network .\tNNP VBZ DT JJ JJ NN NN .\nDow Jones publishes The Wall Street Journal , Barron 's magazine , and community newspapers and operates financial news services and computer data bases .\tNNP NNP VBZ DT NNP NNP NNP , NNP POS NN , CC NN NNS CC VBZ JJ NN NNS CC NN NNS NNS .\nThe economy is heavily dependent on the extraction and processing of minerals for export .\tDT NN VBZ RB JJ IN DT NN CC NN IN NNS IN NN .\nMining accounts for 8 % of GDP , but provides more than 50 % of foreign exchange earnings .\tNN NNS IN CD NN IN NN , CC VBZ JJR IN CD NN IN JJ NN NNS .\nRich alluvial diamond deposits make Namibia a primary source for gem-quality diamonds .\tNNP JJ NN NNS VBP NNP DT JJ NN IN NN NNS .\nNamibia is the world 's fourth-largest producer of uranium .\tNNP VBZ DT NN POS JJ NN IN NN .\nIt also produces large quantities of zinc and is a small producer of gold and other minerals .\tPRP RB VBZ JJ NNS IN NN CC VBZ DT JJ NN IN NN CC JJ NNS .\nThe mining sector employs only about 3 % of the population while about 35-40 % of the population depends on subsistence agriculture for its livelihood .\tDT NN NN VBZ RB IN CD NN IN DT NN IN IN CD NN IN DT NN VBZ IN NN NN IN PRP$ NN .\nNamibia normally imports about 50 % of its cereal requirements ; in drought years food shortages are a major problem in rural areas .\tNNP RB VBZ IN CD NN IN PRP$ NN NNS ; IN NN NNS NN NNS VBP DT JJ NN IN JJ NNS .\nA high per capita GDP , relative to the region , hides one of the world 's most unequal income distributions , as shown by Namibia 's 70.7 GINI coefficient .\tDT JJ IN NN NN , JJ TO DT NN , VBZ CD IN DT NN POS RBS JJ NN NNS , IN VBN IN NNP POS CD NNP NN .\nThe Namibian economy is closely linked to South Africa with the Namibian dollar pegged one-to-one to the South African rand .\tDT JJ NN VBZ RB VBN TO NNP NNP IN DT JJ NN VBD JJ TO DT JJ JJ NN .\nUntil 2010 , Namibia drew 40 % of its budget revenues from the Southern African Customs Union ( SACU ) .\tIN CD , NNP VBD CD NN IN PRP$ NN NNS IN DT NNP NNP NNP NNP LRB NNP RRB .\nIncreased payments from SACU put Namibia 's budget into surplus in 2007 for the first time since independence .\tJJ NNS IN NNP VBD NNP POS NN IN NN IN CD IN DT JJ NN IN NN .\nSACU allotments to Namibia increased in 2009 , but will drop for 2010 and 2011 because South Africa went into recession during the global economic crisis , reducing overall SACU income .\tNNP VBZ TO NNP VBD IN CD , CC MD VB IN CD CC CD IN NNP NNP VBD IN NN IN DT JJ JJ NN , VBG JJ NNP NN .\nIncreased fish production and mining of zinc , copper , and uranium spurred growth in 2003 - 8 , but growth in recent years was undercut by poor fish catches , a dramatic decline in demand for diamonds , higher costs of producing metals , and the global recession .\tJJ NN NN CC NN IN NN , NN , CC NN VBN NN IN CD : CD , CC NN IN JJ NNS VBD VBN IN JJ NN NNS , DT JJ NN IN NN IN NNS , JJR NNS IN VBG NNS , CC DT JJ NN .\nA rebound in diamond and uranium prices in 2010 provided a significant boost to Namibia 's mining sector .\tDT NN IN NN CC NN NNS IN CD VBD DT JJ NN TO NNP POS NN NN .\nCopper mines , which closed in 2008 , are slated to reopen in 2011 .\tNN NNS , WDT VBD IN CD , VBP VBN TO VB IN CD .\nThe Principality of Liechtenstein was established within the Holy Roman Empire in 1719 .\tDT NN IN NNP VBD VBN IN DT NNP NNP NNP IN CD .\nOccupied by both French and Russian troops during the Napoleonic wars , it became a sovereign state in 1806 and joined the Germanic Confederation in 1815 .\tVBN IN DT JJ CC JJ NNS IN DT NNP NNS , PRP VBD DT JJ NN IN CD CC VBD DT NNP NNP IN CD .\nLiechtenstein became fully independent in 1866 when the Confederation dissolved .\tNNP VBD RB JJ IN CD WRB DT NNP VBD .\nUntil the end of World War I , it was closely tied to Austria , but the economic devastation caused by that conflict forced Liechtenstein to enter into a customs and monetary union with Switzerland .\tIN DT NN IN NNP NNP NNP , PRP VBD RB VBN TO NNP , CC DT JJ NN VBN IN DT NN VBD NNP TO VB IN DT NNS CC JJ NN IN NNP .\nSince World War II ( in which Liechtenstein remained neutral ) , the country 's low taxes have spurred outstanding economic growth .\tIN NNP NNP NNP LRB IN WDT NNP VBD JJ RRB , DT NN POS JJ NNS VBP VBN JJ JJ NN .\nIn 2000 , shortcomings in banking regulatory oversight resulted in concerns about the use of financial institutions for money laundering .\tIN CD , NNS IN NN JJ NN VBD IN NNS IN DT NN IN JJ NNS IN NN NN .\nHowever , Liechtenstein implemented anti-money-laundering legislation and a Mutual Legal Assistance Treaty with the US that went into effect in 2003 .\tRB , NNP VBD JJ NN CC DT JJ NNP NNP NNP IN DT NNP WDT VBD IN NN IN CD .\nColonized by the Portuguese in the 16th century , Macau was the first European settlement in the Far East .\tVBN IN DT NNS IN DT JJ NN , NNP VBD DT JJ JJ NN IN DT NNP NNP .\nPursuant to an agreement signed by China and Portugal on 13 April 1987 , Macau became the Macau Special Administrative Region ( SAR ) of the People 's Republic of China on 20 December 1999 .\tJJ TO DT NN VBN IN NNP CC NNP IN CD NNP CD , NNP VBD DT NNP NNP NNP NNP LRB NNP RRB IN DT NNP POS NNP IN NNP IN CD NNP CD .\nIn this agreement , China promised that , under its ' one country , two systems ' formula , China 's socialist economic system would not be practiced in Macau , and that Macau would enjoy a high degree of autonomy in all matters except foreign and defense affairs for the next 50 years .\tIN DT NN , NNP VBD IN , IN PRP$ `` CD NN , CD NNS `` NN , NNP POS JJ JJ NN MD RB VB VBN IN NNP , CC IN NNP MD VB DT JJ NN IN NN IN DT NNS IN JJ CC NN NNS IN DT JJ CD NNS .\nThe evolution of what is today the European Union ( EU ) from a regional economic agreement among six neighboring states in 1951 to today 's hybrid intergovernmental and supranational organization of 27 countries across the European continent stands as an unprecedented phenomenon in the annals of history .\tDT NN IN WP VBZ NN DT NNP NNP LRB NNP RRB IN DT JJ JJ NN IN CD JJ NNS IN CD TO NN POS JJ JJ CC JJ NN IN CD NNS IN DT JJ NN VBZ IN DT JJ NN IN DT NNS IN NN .\nDynastic unions for territorial consolidation were long the norm in Europe ; on a few occasions even country-level unions were arranged - the Polish-Lithuanian Commonwealth and the Austro-Hungarian Empire were examples .\tNNP NNS IN JJ NN VBD RB DT NN IN NNP ; IN DT JJ NNS RB JJ NNS VBD VBN IN DT JJ NN CC DT JJ NN VBD NNS .\nBut for such a large number of nation-states to cede some of their sovereignty to an overarching entity is unique .\tCC IN PDT DT JJ NN IN NNS TO VB DT IN PRP$ NN TO DT JJ NN VBZ JJ .\nNorth Yemen became independent of the Ottoman Empire in 1918 .\tNNP NNP VBD JJ IN DT NNP NNP IN CD .\nThe British , who had set up a protectorate area around the southern port of Aden in the 19th century , withdrew in 1967 from what became South Yemen .\tDT NNS , WP VBD VBN RP DT JJ NN IN DT JJ NN IN NNP IN DT JJ NN , VBD IN CD IN WP VBD NNP NNP .\nThree years later , the southern government adopted a Marxist orientation .\tCD NNS RB , DT JJ NN VBD DT JJ NN .\nThe massive exodus of hundreds of thousands of Yemenis from the south to the north contributed to two decades of hostility between the states .\tDT JJ NN IN NNS IN NNS IN NNS IN DT NN TO DT NN VBD TO CD NNS IN NN IN DT NNS .\nThe two countries were formally unified as the Republic of Yemen in 1990 .\tDT CD NNS VBD RB VBN IN DT NNP IN NNP IN CD .\nA southern secessionist movement in 1994 was quickly subdued .\tDT JJ NN NN IN CD VBD RB VBN .\nIn 2000 , Saudi Arabia and Yemen agreed to a delimitation of their border .\tIN CD , NNP NNP CC NNP VBD TO DT NN IN PRP$ NN .\nFighting in the northwest between the government and Huthi rebels , a group seeking a return to traditional Zaydi Islam , began in 2004 and has since resulted in seven rounds of fighting - the last ended in early 2010 with a tentative ceasefire .\tVBG IN DT JJS IN DT NN CC NNP NNS , DT NN VBG DT NN TO JJ NNP NNP , VBD IN CD CC VBZ IN VBN IN CD NNS IN VBG IN DT JJ VBN IN JJ CD IN DT JJ NN .\nThe southern secessionist movement was revitalized in 2008 when a popular socioeconomic protest movement initiated the prior year took on political goals including secession .\tDT JJ NN NN VBD VBN IN CD WRB DT JJ JJ NN NN VBD DT JJ NN VBD IN JJ NNS VBG NN .\nPublic rallies in Sana'a against President SALIH - inspired by similar demonstrations in Tunisia and Egypt - slowly built momentum starting in late January 2011 fueled by complaints over high unemployment , poor economic conditions , and corruption .\tJJ NNS IN NNP IN NNP NNP : VBN IN JJ NNS IN NNP CC NNP : RB VBN NN VBG IN JJ NNP CD VBN IN NNS IN JJ NN , JJ JJ NNS , CC NN .\nBy the following month , some protests had resulted in violence , and the demonstrations had spread to other major cities .\tIN DT VBG NN , DT NNS VBD VBN IN NN , CC DT NNS VBD VBN TO JJ JJ NNS .\nBy March the opposition had hardened its demands and was unifying behind calls for SALIH 's immediate ouster .\tIN NNP DT NN VBD VBN PRP$ NNS CC VBD VBG IN NNS IN NNP POS JJ NN .\nMedia reports indicated that as many as 100 protesters had been killed and many more injured amid the protests .\tNNS NNS VBD IN RB JJ IN CD NNS VBD VBN VBN CC JJ JJR NN IN DT NNS .\nDomestic and international efforts to mediate a resolution to the political crisis had not yielded a deal as of mid April .\tJJ CC JJ NNS TO VB DT NN TO DT JJ NN VBD RB VBN DT NN IN IN JJ NNP .\nA SERPENT and an Eagle were struggling with each other in deadly conflict .\tDT NN CC DT NNP VBD VBG IN DT NN IN JJ NN .\nThe Serpent had the advantage , and was about to strangle the bird .\tDT NNP VBD DT NN , CC VBD IN TO VB DT NN .\nA countryman saw them , and running up , loosed the coil of the Serpent and let the Eagle go free .\tDT NN VBD PRP , CC VBG RP , VBD DT NN IN DT NNP CC VB DT NNP VB JJ .\nThe Serpent , irritated at the escape of his prey , injected his poison into the drinking horn of the countryman .\tDT NNP , VBD IN DT NN IN PRP$ NN , VBD PRP$ NN IN DT NN NN IN DT NN .\nThe rustic , ignorant of his danger , was about to drink , when the Eagle struck his hand with his wing , and , seizing the drinking horn in his talons , carried it aloft .\tDT JJ , NN IN PRP$ NN , VBD IN TO VB , WRB DT NNP VBD PRP$ NN IN PRP$ NN , CC , VBG DT NN NN IN PRP$ NNS , VBD PRP RB .\nA CERTAIN rich man reared a Goose and a Swan , the one for his table , the other because she was reputed a good singer .\tDT JJ JJ NN VBD DT NN CC DT NN , DT CD IN PRP$ NN , DT JJ IN PRP VBD VBN DT JJ NN .\nOne night when the Cook went to kill the Goose he got hold of the Swan instead .\tCD NN WRB DT NN VBD TO VB DT NN PRP VBD NN IN DT NN RB .\nThereupon the Swan , to induce him to spare her life , began to sing ; but she saved him nothing but the trouble of killing her , for she died of the song .\tRB DT NN , TO VB PRP TO VB PRP$ NN , VBD TO VB ; CC PRP VBD PRP DT CC DT NN IN VBG PRP , IN PRP VBD IN DT NN .\nAt one Army base , the annual trip to the rifle range had been canceled for the second year in a row , but the semi-annual physical fitness test was still on as planned .\tIN CD NNP NN , DT JJ NN TO DT JJ NN VBD VBN VBN IN DT JJ NN IN DT NN , CC DT JJ JJ NN NN VBD RB IN IN VBN .\nOne soldier mused , ' Does it bother anyone else that the Army does n't seem to care how well we can shoot , but they are extremely interested in how fast we can run ? '\tCD NN VBD , `` VBZ PRP VB DT RB IN DT NNP VBZ RB VB TO VB WRB RB PRP MD VB , CC PRP VBP RB JJ IN WRB JJ PRP MD VB . ``\nI accidentally knocked my television over the other day .\tPRP RB VBD PRP$ NN RP DT JJ NN .\nWhen I turned it on I noticed the screen was cracked , but I put it back together with video tape and now it works fine .\tWRB PRP VBD PRP IN PRP VBD DT NN VBD VBN , CC PRP VBD PRP RB RB IN NN NN CC RB PRP VBZ RB .\nA top South Korean official says he hopes there will be a break this year in the impasse over North Korea 's nuclear weapons program .\tDT JJ JJ JJ NN VBZ PRP VBZ EX MD VB DT NN DT NN IN DT NN IN NNP NNP POS JJ NNS NN .\nUnification Minister Chung Dong-Young told the World Economic Forum in Davos , Switzerland , Sunday that South Korea is ready to provide large-scale economic aid if the North gives up its nuclear weapons program .\tNNP NNP NNP NNP VBD DT NNP NNP NNP IN NNP , NNP , NNP IN NNP NNP VBZ JJ TO VB JJ JJ NN IN DT NNP VBZ RP PRP$ JJ NNS NN .\nMr. Chung said he hopes for a breakthrough by November , when South Korea hosts an Asia-Pacific Economic Cooperation summit .\tNNP NNP VBD PRP VBZ IN DT NN IN NNP , WRB NNP NNP VBZ DT JJ NNP NNP NN .\nMr. Chung said if there is a resolution of the dispute , North Korea could attend the summit .\tNNP NNP VBD IN EX VBZ DT NN IN DT NN , NNP NNP MD VB DT NN .\nSunday was the final day of the World Economic Forum - an annual gathering of international political and business leaders in the Swiss resort town of Davos .\tNNP VBD DT JJ NN IN DT NNP NNP NNP IN DT JJ NN IN JJ JJ CC NN NNS IN DT JJ NN NN IN NNP .\nVenezuela has signed a deal with Russia for the purchase of 98 Ilyushin aircraft , which can be used for passengers and cargo .\tNNP VBZ VBN DT NN IN NNP IN DT NN IN CD NNP NN , WDT MD VB VBN IN NNS CC NN .\nRussian newspapers reported Friday that the state arms exporter , Rosoboronexport , signed the agreement during an air show near Moscow .\tJJ NNS VBD NNP IN DT NN NNS NN , NNP , VBD DT NN IN DT NN NN IN NNP .\nThe value of the contract has not been disclosed .\tDT NN IN DT NN VBZ RB VBN VBN .\nThe Izvestia newspaper quoted experts as saying the deal could be worth several billion dollars .\tDT NNP NN VBD NNS IN VBG DT NN MD VB JJ JJ CD NNS .\nRussia has already sold 24 Sukhoi jets and 53 helicopters to Venezuela .\tNNP VBZ RB VBN CD NNP NNS CC CD NNS TO NNP .\nLast year during a visit to Moscow , Venezuelan President Hugo Chavez signed a long-term deal with Russia to purchase $ 3 billion worth of helicopters , fighter jets and arms .\tJJ NN IN DT NN TO NNP , JJ NNP NNP NNP VBD DT JJ NN IN NNP TO VB $ CD CD NN IN NNS , NN NNS CC NNS .\nThe United States bans sales of arms to Venezuela .\tDT NNP NNPS VBZ NNS IN NNS TO NNP .\nNATO officials say British troops are pulling out of a troubled district in southern Afghanistan after reaching an agreement with local elders and Afghan officials .\tNNP NNS VBP JJ NNS VBP VBG IN IN DT JJ NN IN JJ NNP IN VBG DT NN IN JJ NNS CC JJ NNS .\nNATO said Tuesday , that the withdrawal from the Musa Qala district of Helmand province was made at the demand of tribal leaders , and that the Taleban had no part in the agreement .\tNNP VBD NNP , IN DT NN IN DT NNP NNP NN IN NNP NN VBD VBN IN DT NN IN JJ NNS , CC IN DT NNP VBD DT NN IN DT NN .\nThe move was made on the same day that NATO officials said coalition warplanes killed a mid-level Taleban commander and up to 15 other militants in an airstrike in southern Afghanistan .\tDT NN VBD VBN IN DT JJ NN IN NNP NNS VBD NN NNS VBD DT JJ NNP NN CC RB TO CD JJ NNS IN DT NN IN JJ NNP .\nA NATO statement said aircraft bombed an insurgent compound in the southern province of Uruzgan .\tDT NNP NN VBD NN VBD DT JJ NN IN DT JJ NN IN NNP .\nNATO did not identify the Taleban commander .\tNNP VBD RB VB DT NNP NN .\nVenezuelan President Hugo Chavez says he has evidence of a U.S. plan to invade his country .\tJJ NNP NNP NNP VBZ PRP VBZ NN IN DT NNP NN TO VB PRP$ NN .\nIn a Nightline , ABC News television interview Friday in New York , Mr. Chavez said he has documentation of a U.S. military plan called ' Balboa ' detailing a U.S. invasion , which he said involves planes and aircraft carriers .\tIN DT NNP , NNP NNP NN NN NNP IN NNP NNP , NNP NNP VBD PRP VBZ NN IN DT NNP JJ NN VBD `` NNP `` VBG DT NNP NN , WDT PRP VBD VBZ NNS CC NN NNS .\nHe was quoted as saying that if the United States attempts to invade his country , ' it would be embarking on a 100-year war . '\tPRP VBD VBN IN VBG IN IN DT NNP NNPS NNS TO VB PRP$ NN , `` PRP MD VB VBG IN DT JJ NN . ``\nMr. Chavez has repeatedly accused Washington of trying to topple his government , an accusation the United States denies .\tNNP NNP VBZ RB VBN NNP IN VBG TO VB PRP$ NN , DT NN DT NNP NNPS VBZ .\nMr. Chavez has been attending the United Nations General Assembly summit in New York .\tNNP NNP VBZ VBN VBG DT NNP NNP NNP NNP NN IN NNP NNP .\nOn Thursday , he lashed out at the United States , characterizing the country as a ' terrorist state . '\tIN NNP , PRP VBD RP IN DT NNP NNPS , VBG DT NN IN DT `` JJ NN . ``\nU.S. President George Bush used his weekly radio address Saturday to mark the nation 's Independence Day by celebrating new U.S. citizens and honoring the armed forces .\tNNP NNP NNP NNP VBD PRP$ JJ NN NN NNP TO VB DT NN POS NN NN IN VBG JJ NNP NNS CC VBG DT JJ NNS .\nOn Friday , the 232nd anniversary of the birth of the U.S. as an independent nation , Mr. Bush watched more than 70 people take an oath of citizenship .\tIN NNP , DT JJ NN IN DT NN IN DT NNP IN DT JJ NN , NNP NNP VBD JJR IN CD NNS VBP DT NN IN NN .\nIn his address Saturday , the president said these new citizens reminded everyone at the ceremony that ' the promise of America is open to all . '\tIN PRP$ NN NNP , DT NN VBD DT JJ NNS VBD DT IN DT NN IN `` DT NN IN NNP VBZ JJ TO DT . ``\nMr. Bush noted that the new citizens came from many countries , including Iraq and Afghanistan .\tNNP NNP VBD IN DT JJ NNS VBD IN JJ NNS , VBG NNP CC NNP .\nHe also praised the men and women of the U.S. armed forces who are risking their lives fighting in those countries .\tPRP RB VBD DT NNS CC NNS IN DT NNP JJ NNS WP VBP VBG PRP$ NNS VBG IN DT NNS .\nThe president said Americans should be proud to live in a nation that he says has done ' more than any other to spread the light of liberty throughout the world . '\tDT NN VBD NNS MD VB JJ TO VB IN DT NN IN PRP VBZ VBZ VBN `` RBR IN DT JJ TO VB DT NN IN NN IN DT NN . ``\nAfghan officials say at least eight police have been killed following an ambush by suspected Taleban rebels in southeastern Afghanistan .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN VBG DT NN IN JJ NNP NNS IN JJ NNP .\nSecurity officials say four Taleban insurgents were also killed in the attack Friday in Helmand province .\tNN NNS VBP CD NNP NNS VBD RB VBN IN DT NN NNP IN NNP NN .\nNo other details were immediately available .\tDT JJ NNS VBD RB JJ .\nAn interior ministry spokesman said captured Taleban insurgents led police there to look for a large Taleban hideout .\tDT JJ NN NN VBD VBN NNP NNS VBD NNS RB TO VB IN DT JJ NNP NN .\nA group of journalists marched through Port-au-Prince Thursday , demanding tougher action against rising violence as mourners attended the funeral of slain Haitian journalist Jacques Roche .\tDT NN IN NNS VBD IN NNP NNP , VBG JJR NN IN VBG NN IN NNS VBD DT NN IN NN JJ NN NNP NNP .\nDuring the religious ceremony , a priest close to ex-president Jean Bertrand Aristide , Gerard Jean Juste was attacked by an angry crowd .\tIN DT JJ NN , DT NN NN TO JJ NNP NNP NNP , NNP NNP NNP VBD VBN IN DT JJ NN .\nHe was taken away to a police station for protection .\tPRP VBD VBN RB TO DT NN NN IN NN .\nMr. Aristide 's supporters have been accused by some government officials of Mr. Roche 's murder .\tNNP NNP POS NNS VBP VBN VBN IN DT NN NNS IN NNP NNP POS NN .\nHaitian authorities found the body of Mr. Roche last week , days after gunmen abducted him .\tJJ NNS VBD DT NN IN NNP NNP JJ NN , NNS IN NNS VBD PRP .\nThey said he was burned and tortured before being shot several times .\tPRP VBD PRP VBD VBN CC VBN IN VBG VBN JJ NNS .\nHaiti has seen a mounting wave of violence as it prepares for elections later this year .\tNNP VBZ VBN DT JJ NN IN NN IN PRP VBZ IN NNS RBR DT NN .\nThe next U.S. president is likely to have an impact that extends far beyond a four-year term .\tDT JJ NNP NN VBZ JJ TO VB DT NN WDT VBZ RB IN DT JJ NN .\nAs president , Republican John McCain or Democrat Barack Obama would have the chance to appoint at least one new justice to the U.S. Supreme Court .\tIN NN , NNP NNP NNP CC NNP NNP NNP MD VB DT NN TO VB IN JJS CD JJ NN TO DT NNP NNP NNP .\nAlex Moradi has this report , narrated by Leta Hong Fincher .\tNNP NNP VBZ DT NN , VBN IN NNP NNP NNP .\nA prosecutor at the war crimes trial of former Yugoslav President Slobodan Milosevic in The Hague has accused the defendant of trying to prolong the proceedings for self-promotion .\tDT NN IN DT NN NNS NN IN JJ JJ NNP NNP NNP IN DT NNP VBZ VBN DT NN IN VBG TO VB DT NNS IN NN .\nProsecutor Geoffrey Nice made the comment Thursday , as Mr. Milosevic sought additional time beyond the 150 days the court has allotted for his defense .\tNNP NNP NNP VBD DT NN NNP , IN NNP NNP VBD JJ NN IN DT CD NNS DT NN VBZ VBN IN PRP$ NN .\nThe former Yugoslav president wants to call hundreds of witnesses , including British Prime Minister Tony Blair and former U.S. President Bill Clinton .\tDT JJ JJ NN VBZ TO VB NNS IN NNS , VBG JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP .\nMr. Milosevic 's trial began in 2002 and has been repeatedly delayed because of concerns over his health .\tNNP NNP POS NN VBD IN CD CC VBZ VBN RB VBN IN IN NNS IN PRP$ NN .\nMr. Milosevic is charged with war crimes and genocide from conflicts in the former Yugoslavia in the 1990s .\tNNP NNP VBZ VBN IN NN NNS CC NN IN NNS IN DT JJ NNP IN DT NNS .\nHe has refused to recognize the tribunal and is conducting his own defense .\tPRP VBZ VBN TO VB DT NN CC VBZ VBG PRP$ JJ NN .\nJapan says it will withdraw its air defense forces from Iraq by the end of the year .\tNNP VBZ PRP MD VB PRP$ NN NN NNS IN NNP IN DT NN IN DT NN .\nDefense Minister Yoshimasa Hayashi announced the plan Thursday in Tokyo .\tNNP NNP NNP NNP VBD DT NN NNP IN NNP .\nJapan 's Air Self-Defense Force has been airlifting materials and troops between Kuwait and locations in Iraq since 2006 .\tNNP POS NNP NNP NNP VBZ VBN VBG NNS CC NNS IN NNP CC NNS IN NNP IN CD .\nWhite House spokesman Gordon Johndroe issued a statement praising Japan 's contributions in Iraq .\tNNP NNP NN NNP NNP VBD DT NN VBG NNP POS NNS IN NNP .\nHe said Japan will continue to be a ' significant partner in the war on terrorism . '\tPRP VBD NNP MD VB TO VB DT `` JJ NN IN DT NN IN NN . ``\nJapan initially deployed ground forces to Iraq in 2003 , in support of the U.S. led-invasion .\tNNP RB VBD NN NNS TO NNP IN CD , IN NN IN DT NNP NN .\nThe troops conducted a humanitarian mission in the south , building schools and roads , and providing clean water .\tDT NNS VBD DT JJ NN IN DT NN , VBG NNS CC NNS , CC VBG JJ NN .\nIt was the first overseas deployment of Japanese troops since World War II .\tPRP VBD DT JJ JJ NN IN JJ NNS IN NNP NNP NNP .\nMany Japanese opposed the mission because they were against the war or believed it violated Japan 's pacifist constitution .\tJJ NNS VBD DT NN IN PRP VBD IN DT NN CC VBD PRP VBD NNP POS NN NN .\nUS President Barack Obama returned to Washington Saturday , following a surprise visit to Afghanistan , where he visited troops and spoke with Afghan leaders .\tNNP NNP NNP NNP VBD TO NNP NNP , VBG DT NN NN TO NNP , WRB PRP VBD NNS CC VBD IN JJ NNS .\nMr. Obama told U.S troops Friday at Bagram air base outside Kabul that the United States will not let Afghanistan be a safe haven for terrorists to attack America .\tNNP NNP VBD NNP NNS NNP IN NNP NN NN IN NNP IN DT NNP NNPS MD RB VB NNP VB DT JJ NN IN NNS TO VB NNP .\nHe said the troops are making progress against the Taliban and will succeed in their mission .\tPRP VBD DT NNS VBP VBG NN IN DT NNP CC MD VB IN PRP$ NN .\nThe president landed unannounced in Afghanistan Friday for an almost four hour visit , days before the White House is set to release a much anticipated review of the increasingly unpopular war .\tDT NN VBD JJ IN NNP NNP IN DT RB CD NN NN , NNS IN DT NNP NNP VBZ VBN TO VB DT JJ JJ NN IN DT RB JJ NN .\nBad weather forced the White House to cancel plans for the president to meet face-to-face with Afghan President Hamid Karzai in Kabul .\tJJ NN VBD DT NNP NNP TO VB NNS IN DT NN TO VB JJ IN JJ NNP NNP NNP IN NNP .\nHe instead held a phone conversation with Mr. Karzai from the air base .\tPRP RB VBD DT NN NN IN NNP NNP IN DT NN NN .\nU.S. Treasury Secretary Henry Paulson has arrived in China for a four-day visit expected to include an appeal for China to speed up reforms to its economy .\tNNP NNP NNP NNP NNP VBZ VBN IN NNP IN DT JJ NN VBN TO VB DT NN IN NNP TO VB RP NNS TO PRP$ NN .\nOfficials say Paulson arrived late Tuesday in the eastern city of Hangzhou in Zhejiang province .\tNNS VBP NNP VBD JJ NNP IN DT JJ NN IN NNP IN NNP NN .\nThere he met with provincial Communist Party leader Xi Jinping .\tEX PRP VBD IN JJ NNP NNP NN NNP NNP .\nThe two met previously when Paulson was chief of the investment bank Goldman Sachs .\tDT CD VBD RB WRB NNP VBD NN IN DT NN NN NNP NNP .\nThe U.S. treasury secretary flew into Hangzhou from meetings in Singapore .\tDT NNP NN NN VBD IN NNP IN NNS IN NNP .\nBefore leaving for China , Paulson warned U.S. critics of Chinese economic policies not to expect a ' quick fix ' to the issues that divide the two nations .\tIN VBG IN NNP , NNP VBD NNP NNS IN JJ JJ NNS RB TO VB DT `` JJ NN `` TO DT NNS WDT VBP DT CD NNS .\nU.S. lawmakers are considering measures to punish Beijing for its growing trade gap with the United States .\tNNP NNS VBP VBG NNS TO VB NNP IN PRP$ VBG NN NN IN DT NNP NNPS .\nU.S. and European officials say China 's currency , the yuan , is undervalued , giving Chinese-made products an unfair advantage over foreign competitors .\tNNP CC JJ NNS VBP NNP POS NN , DT NN , VBZ VBN , VBG JJ NNS DT JJ NN IN JJ NNS .\nA coalition of Iraq 's majority Shi'ite Muslims has won nearly half the votes in last month 's landmark elections for a transitional national assembly .\tDT NN IN NNP POS NN NNP NNP VBZ VBN RB PDT DT NNS IN JJ NN POS NN NNS IN DT JJ JJ NN .\nA slate of Kurdish parties finished second with about 25 percent of the nearly 8.5 million votes cast January 30 .\tDT NN IN JJ NNS VBD JJ IN RB CD NN IN DT RB CD CD NNS VBN NNP CD .\nA slate led by interim Prime Minister Iyad Allawi finished third with 14 percent .\tDT NN VBN IN JJ NNP NNP NNP NNP VBD JJ IN CD NN .\nSpeaking Sunday in Baghdad , an elections commission spokesman hailed the poll results as ' a new birth for Iraq . '\tVBG NNP IN NNP , DT NNS NN NN VBD DT NN NNS IN `` DT JJ NN IN NNP . ``\nThe 275-seat assembly will pick a new government to succeed the interim administration now in power .\tDT JJ NN MD VB DT JJ NN TO VB DT JJ NN RB IN NN .\nThe assembly is to be dissolved and a new parliament elected by the end of this year .\tDT NN VBZ TO VB VBN CC DT JJ NN VBN IN DT NN IN DT NN .\nThe tally shows only two percent of eligible voters in Sunni-dominated al-Anbar province went to the polls , while 17 percent voted in Ninevah province .\tDT NN VBZ RB CD NN IN JJ NNS IN JJ NNP NN VBD TO DT NNS , IN CD NN VBD IN NNP NN .\nParties have three days to file protests against to the vote tally , before results become official .\tNNS VBP CD NNS TO VB NNS IN TO DT NN RB , IN NNS VBP JJ .\nFor more a year , the U.S. military in Iraq , with its reinforcements , has been on the offensive in an effort to wipe out insurgents from their strongholds .\tIN RBR DT NN , DT NNP NN IN NNP , IN PRP$ NNS , VBZ VBN IN DT NN IN DT NN TO VB RP NNS IN PRP$ NNS .\nThe Bush administration claims ' the surge , ' as the reinforcement was called , has helped reduce violence around the country .\tDT NNP NN VBZ `` DT NN , `` IN DT NN VBD VBN , VBZ VBN VB NN IN DT NN .\nOne key area of focus , just south of Baghdad , was once known as the ' Triangle of Death . '\tCD JJ NN IN NN , RB RB IN NNP , VBD RB VBN IN DT `` NNP IN NNP . ``\nVOA 's Deborah Block went to a village there with the U.S. Army 's 2nd Battalion , 502nd Infantry , 101st Airborne , on a mission to find suspected al-Qaida militants .\tNNP POS NNP NNP VBD TO DT NN RB IN DT NNP NNP POS JJ NN , JJ NNP , CD NNP , IN DT NN TO VB JJ NNP NNS .\nBelarusian opposition leader Alexander Milinkevich says the democratic movement in Belarus will eventually achieve success despite the repressive policies of President Alexander Lukashenko .\tJJ NN NN NNP NNP VBZ DT JJ NN IN NNP MD RB VB NN IN DT JJ NNS IN NNP NNP NNP .\nMr. Milinkevich told reporters in Warsaw the persistent protests of opposition activists against what they saw as Mr. Lukashenko 's fraudulent victory in elections earlier this month had surprised and shocked the Belarusian leader .\tNNP NNP VBD NNS IN NNP DT JJ NNS IN NN NNS IN WP PRP VBD IN NNP NNP POS JJ NN IN NNS RBR DT NN VBD VBN CC VBN DT JJ NN .\nSecurity police last week broke up five days of protests by pro-democracy activists in Minsk , arresting hundreds .\tNNP NNS JJ NN VBD RP CD NNS IN NNS IN JJ NNS IN NNP , VBG NNS .\nIn comments after meeting with Polish President Lech Kaczynski , Mr. Milinkevich thanked Poland and other European Union countries for their support for democracy in Belarus .\tIN NNS IN VBG IN JJ NNP NNP NNP , NNP NNP VBD NNP CC JJ NNP NNP NNS IN PRP$ NN IN NN IN NNP .\nThe meeting came ahead of the signing of a document under which Poland agreed to provide scholarships for at least 300 Belarusian youths dismissed from universities in Belarus for supporting the opposition .\tDT NN VBD RB IN DT NN IN DT NN IN WDT NNP VBD TO VB NNS IN IN JJS CD JJ NNS VBN IN NNS IN NNP IN VBG DT NN .\nGunmen from the Palestinian Fatah movement have announced formation of a two thousand member militia , in an apparent move to counter a new security force unveiled by the rival group Hamas .\tNNS IN DT JJ NNP NN VBP VBN NN IN DT CD CD NN NN , IN DT JJ NN TO VB DT JJ NN NN VBN IN DT JJ NN NNP .\nLast week , Hamas , which swept to power in parliamentary elections in January , said it was forming a four thousand-strong paramilitary force to maintain order in the Palestinian territories .\tJJ NN , NNP , WDT VBD TO NN IN JJ NNS IN NNP , VBD PRP VBD VBG DT CD JJ JJ NN TO VB NN IN DT JJ NNS .\nThe specter of competing Palestinian security forces has raised concern for potential violence between the factions .\tDT NN IN VBG JJ NN NNS VBZ VBN NN IN JJ NN IN DT NNS .\nFatah sources Wednesday told a VOA reporter their new force is not designed to compete with Hamas .\tNNP NNS NNP VBD DT NNP NN PRP$ JJ NN VBZ RB VBN TO VB IN NNP .\nThose comments contradicted those of a Fatah spokesman who told Reuters news agency the force is being organized in a challenge to the Hamas militia .\tDT NNS VBD DT IN DT NNP NN WP VBD NNP NN NN DT NN VBZ VBG VBN IN DT NN TO DT NNP NN .\nSeveral dozen people were wounded last month in factional clashes after Palestinian President Mahmoud Abbas rejected Hamas ' appointment of a leading Gaza militant to head the Hamas-dominated security unit .\tJJ NN NNS VBD VBN JJ NN IN JJ NNS IN JJ NNP NNP NNP VBD NNP POS NN IN DT VBG NNP NN TO VB DT JJ NN NN .\nLebanon 's pro-Syrian President Emile Lahoud has rejected a proposal for a United Nations-backed court probe into the murder of former Prime Minister Rafik Hariri .\tNNP POS JJ NNP NNP NNP VBZ VBN DT NN IN DT NNP NNP NN NN IN DT NN IN JJ NNP NNP NNP NNP .\nLahoud said Saturday he is returning the draft for review by the Cabinet , which approved the planned court last month .\tNNP VBD NNP PRP VBZ VBG DT NN IN NN IN DT NNP , WDT VBD DT VBN NN JJ NN .\nHe said the Cabinet 's decision was not valid because it came after six ministers from the pro-Syrian opposition resigned .\tPRP VBD DT NNP POS NN VBD RB JJ IN PRP VBD IN CD NNS IN DT JJ NN VBD .\nHezbollah leaders have called mass demonstrations on Sunday to press for more participation by opposition parties in the government .\tNNP NNS VBP VBN JJ NNS IN NNP TO VB IN JJR NN IN NN NNS IN DT NN .\nPrime Minister Fuad Siniora has accused the militant group of threatening a coup against his U.S.-backed government .\tNNP NNP NNP NNP VBZ VBN DT JJ NN IN VBG DT NN IN PRP$ JJ NN .\nOn Friday , U.S. Secretary of State Condoleezza Rice expressed concern that extremist forces and Syria and Iran are trying to destabilize Lebanon .\tIN NNP , NNP NNP IN NNP NNP NNP VBD NN IN NN NNS CC NNP CC NNP VBP VBG TO VB NNP .\nShe said such pressure on Mr. Siniora 's government can not be tolerated .\tPRP VBD JJ NN IN NNP NNP POS NN MD RB VB VBN .\nAuthorities in Malawi say two youths were shot and wounded when a guard fired on a crowd fighting to get government-subsidized maize .\tNNS IN NNP VBP CD NNS VBD VBN CC VBN WRB DT NN VBN IN DT NN VBG TO VB JJ NN .\nThe incident occurred earlier this week in Malawi 's drought-stricken southern district of Nsanje .\tDT NN VBD RBR DT NN IN NNP POS JJ JJ NN IN NNP .\nPolice say the guard fired while trying to control a crush of people attempting to force their way into a government depot .\tNNS VBP DT NN VBD IN VBG TO VB DT NN IN NNS VBG TO VB PRP$ NN IN DT NN NN .\nMalawi is facing a general food crisis brought on by poor rainfall , inadequate planting supplies , and the impact of the AIDS pandemic .\tNNP VBZ VBG DT JJ NN NN VBN RP IN JJ NN , JJ NN NNS , CC DT NN IN DT NNP NN .\nIn October , the government declared a national disaster and appealed for help .\tIN NNP , DT NN VBD DT JJ NN CC VBD IN NN .\nAid agencies say five million of Malawi 's 12 million people are in need of food aid .\tJJ NNS VBP CD CD IN NNP POS CD CD NNS VBP IN NN IN NN NN .\nThe kidnappers of an Italian photojournalist in Afghanistan say he is in good health after the deadline for their demands expired Sunday night .\tDT NNS IN DT JJ NN IN NNP VBP PRP VBZ IN JJ NN IN DT NN IN PRP$ NNS VBN NNP NN .\nThe Italian aid group Emergency said Monday the kidnappers contacted its staff in an Italian-run hospital in southern Helmand province .\tDT JJ NN NN NNP VBD NNP DT NNS VBD PRP$ NN IN DT JJ NN IN JJ NNP NN .\nItalian photographer Gabriele Torsello and his interpreter disappeared between October 12 and 14 .\tJJ NN NNP NNP CC PRP$ NN VBD IN NNP CD CC CD .\nThey were traveling from the Helmand provincial capital , Lashkar Gah , to neighboring Kandahar .\tPRP VBD VBG IN DT NNP JJ NN , NNP NNP , TO JJ NNP .\nThe abductors demanded a withdrawal of Italian forces from Afghanistan by the end of the Muslim holy month of Ramadan , which ended Sunday evening in that country .\tDT NNS VBD DT NN IN JJ NNS IN NNP IN DT NN IN DT NNP JJ NN IN NNP , WDT VBD NNP NN IN DT NN .\nTorsello 's abductors have been in contact with the Emergency group since the abduction .\tNNP POS NNS VBP VBN IN NN IN DT NN NN IN DT NN .\nThey said earlier they would kill him if their demands were not met .\tPRP VBD RBR PRP MD VB PRP IN PRP$ NNS VBD RB VBN .\nA U.S. immigration official says several nations have refused to accept a 78-year-old Cuban militant awaiting deportation from the United States .\tDT NNP NN NN VBZ JJ NNS VBP VBN TO VB DT JJ JJ NN VBG NN IN DT NNP NNPS .\nThe official , Donald George , testified at a U.S. hearing on Monday for Luis Posada Carriles who was detained on immigration charges more than a year ago .\tDT NN , NNP NNP , VBD IN DT NNP NN IN NNP IN NNP NNP NNPS WP VBD VBN IN NN NNS RBR IN DT NN RB .\nLawyers for Posada Carriles say the nations that have refused to take him are Canada , Mexico , Costa Rica , Honduras , Guatemala and El Salvador .\tNNS IN NNP NNP VBP DT NNS WDT VBP VBN TO VB PRP VBP NNP , NNP , NNP NNP , NNP , NNP CC NNP NNP .\nThe militant has asked to be released from custody to live with relatives in Florida while U.S. officials process the deportation order .\tDT NN VBZ VBN TO VB VBN IN NN TO VB IN NNS IN NNP IN NNP NNS VBP DT NN NN .\nBut U.S. officials say he is a threat and should remain in jail .\tCC NNP NNS VBP PRP VBZ DT NN CC MD VB IN NN .\nVenezuela 's government has accused Posada Carriles in the 1976 bombing of a Cuban airliner that killed 73 people .\tNNP POS NN VBZ VBN NNP NNP IN DT CD NN IN DT JJ NN WDT VBD CD NNS .\nU.S. officials have refused to send him to Venezuela or to Cuba , saying he could be tortured or killed .\tNNP NNS VBP VBN TO VB PRP TO NNP CC TO NNP , VBG PRP MD VB VBN CC VBN .\nThe White House says President Bush will welcome Rwandan President Paul Kagame next Wednesday for talks on a range of issues , including development , AIDS and the conflict in Sudan .\tDT NNP NNP VBZ NNP NNP MD VB JJ NNP NNP NNP JJ NNP IN NNS IN DT NN IN NNS , VBG NN , NNP CC DT NN IN NNP .\nA White House spokesman says President Bush looks forward to discussing Rwanda 's successful participation in the president 's emergency plan for AIDS relief ( PEPFAR ) , as well as U.S. development assistance for the continent ( the African Growth and Opportunity Act ) .\tDT NNP NNP NN VBZ NNP NNP VBZ RB TO VBG NNP POS JJ NN IN DT NN POS NN NN IN NNP NN LRB NN RRB , RB RB IN NNP NN NN IN DT NN LRB DT JJ NN CC NNP NNP RRB .\nHe said the two will also talk about Rwanda 's strides toward democracy and reconciliation and the important role of women in advancing these issues .\tPRP VBD DT CD MD RB VB IN NNP POS NNS IN NN CC NN CC DT JJ NN IN NNS IN VBG DT NNS .\nThe spokesman said President Bush will recognize Rwanda 's contributions to stability in the Great Lakes region and its peacekeeping contributions to Sudan .\tDT NN VBD NNP NNP MD VB NNP POS NNS TO NN IN DT NNP NNP NN CC PRP$ NN NNS TO NNP .\nIndonesian health officials say local tests show an eight-year-old boy in Jakarta has died of bird flu .\tJJ NN NNS VBP JJ NNS VBP DT JJ NN IN NNP VBZ VBN IN NN NN .\nThe child died last week .\tDT NN VBD JJ NN .\nA World Health Organization ( WHO ) laboratory in Hong Kong is testing samples from the boy as well as from a 39-year-old man who was earlier reported to have contracted the disease .\tDT NNP NNP NNP LRB NNP RRB NN IN NNP NNP VBZ VBG NNS IN DT NN RB RB IN IN DT JJ NN WP VBD RB VBN TO VB VBN DT NN .\nIndonesian health officials announced Friday that local tests showed the man had died earlier in the week of bird flu .\tJJ NN NNS VBD NNP IN JJ NNS VBD DT NN VBD VBN RBR IN DT NN IN NN NN .\nResults from the WHO testing are expected in several days .\tNNS IN DT NNP NN VBP VBN IN JJ NNS .\nIf the deaths are confirmed to be caused by the bird flu virus , they will bring Indonesia 's human toll from the disease to eleven .\tIN DT NNS VBP VBN TO VB VBN IN DT NN NN NN , PRP MD VB NNP POS JJ NN IN DT NN IN CD .\nSo far , avian flu is known to have killed nine people in Indonesia , and more than 70 in Asia since 2003 .\tRB RB , JJ NN VBZ VBN TO VB VBN CD NNS IN NNP , CC JJR IN CD IN NNP IN CD .\nCameroon has become the fourth African country to report a case of the deadly bird flu virus .\tNNP VBZ VBN DT JJ JJ NN TO VB DT NN IN DT JJ NN NN NN .\nA government statement released Sunday said the H5N1 strain was detected at a duck farm in the northern town of Maroua .\tDT NN NN VBN NNP VBD DT NNP NN VBD VBN IN DT NN NN IN DT JJ NN IN NNP .\nCameroon had already implemented a ban on importing birds after the H5N1 virus was reported in neighboring Nigeria .\tNNP VBD RB VBN DT NN IN VBG NNS IN DT NNP NN VBD VBN IN JJ NNP .\nHealth officials are concerned that Africa is not prepared to combat the avian flu because of a lack of money and other resources .\tNNP NNS VBP VBN IN NNP VBZ RB JJ TO VB DT JJ NN IN IN DT NN IN NN CC JJ NNS .\nAvian flu has also been found in Asia , Europe and the Middle East .\tJJ NN VBZ RB VBN VBN IN NNP , NNP CC DT NNP NNP .\nThe World Health Organization reports the virus has killed 97 people since 2003 , mostly in Asia .\tDT NNP NNP NNP VBZ DT NN VBZ VBN CD NNS IN CD , RB IN NNP .\nPalestinian witnesses say an Israeli aircraft has fired missiles at suspected Hamas militants preparing to fire rockets at Israeli targets in the Gaza Strip .\tJJ NNS VBP DT JJ NN VBZ VBN NNS IN JJ NNP NNS VBG TO VB NNS IN JJ NNS IN DT NNP NNP .\nThere were no immediate reports of casualties near the Khan Younis refugee camp , where the suspected militants were located .\tEX VBD DT JJ NNS IN NNS IN DT NNP NNP NN NN , WRB DT JJ NNS VBD VBN .\nWitnesses said that several men apparently targeted by the aircraft escaped unharmed .\tNNS VBD IN JJ NNS RB VBN IN DT NN VBD JJ .\nOn Tuesday , four Palestinians and a Chinese laborer were killed in the Palestinian territories , in the deadliest day of violence since Israel and the Palestinians began observing a ceasefire four months ago .\tIN NNP , CD NNS CC DT JJ NN VBD VBN IN DT JJ NNS , IN DT JJS NN IN NN IN NNP CC DT NNS VBD VBG DT JJ CD NNS RB .\nThree of the dead were killed by Hamas rocket fire in Gaza .\tCD IN DT NN VBD VBN IN NNP NN NN IN NNP .\nIn related developments , Israeli media say some top security officials are lobbying the government to deliver a ' crushing blow ' to Hamas , ahead of Israel 's planned evacuation of the Gaza Strip in August .\tIN JJ NNS , JJ NNS VBP DT JJ NN NNS VBP VBG DT NN TO VB DT `` VBG NN `` TO NNP , RB IN NNP POS JJ NN IN DT NNP NNP IN NNP .\nEcuador 's constituent assembly has approved a new draft constitution that will be put to a referendum in September .\tNNP POS JJ NN VBZ VBN DT JJ NN NN WDT MD VB VBN TO DT NN IN NNP .\nThe new charter approved late Thursday would grant President Rafael Correa broad powers , including functions currently held by the Central Bank .\tDT JJ NN VBN JJ NNP MD VB NNP NNP NNP JJ NNS , VBG NNS RB VBN IN DT NNP NNP .\nIt would also modify term limits , allowing him to seek re-election .\tPRP MD RB VB NN NNS , VBG PRP TO VB NN .\nPresident Correa has said the constitution should be changed to limit the power of Ecuador 's major political parties .\tNNP NNP VBZ VBN DT NN MD VB VBN TO VB DT NN IN NNP POS JJ JJ NNS .\nHowever opposition members say the real reason for the change of constitution is to keep the leftist president in power and increase his control of the country .\tRB NN NNS VBP DT JJ NN IN DT NN IN NN VBZ TO VB DT JJ NN IN NN CC VB PRP$ NN IN DT NN .\nPakistan says it will postpone the purchase of F-16 fighter jets from the United States in order to provide more relief to victims of the devastating October eighth earthquake .\tNNP VBZ PRP MD VB DT NN IN NN NN NNS IN DT NNP NNPS IN NN TO VB JJR NN TO NNS IN DT JJ NNP JJ NN .\nPresident Pervez Musharraf made the announcement during a tour of quake-hit areas Friday .\tNNP NNP NNP VBD DT NN IN DT NN IN JJ NNS NNP .\nHe said the government wants to provide maximum relief and reconstruction efforts .\tPRP VBD DT NN VBZ TO VB JJ NN CC NN NNS .\nGeneral Musharraf had earlier said his country did not plan to cut into its defense budget to increase funds for relief efforts .\tNNP NNP VBD JJR VBD PRP$ NN VBD RB VB TO VB IN PRP$ NN NN TO VB NNS IN NN NNS .\nOn Thursday , Jordan 's Queen Rania , speaking on behalf of the United Nations children 's fund , called for help to immunize Pakistani children against disease .\tIN NNP , NNP POS NNP NNP , VBG IN NN IN DT NNP NNP NNS POS NN , VBD IN NN TO VB JJ NNS IN NN .\nQuake survivors marked a normally joyous Muslim festival of Eid-al-Fitr today with somber prayers amid ruins and debris , and visits to the graves of their relatives who died in the catastrophe .\tNN NNS VBD DT RB JJ NNP NN IN NNP NN IN JJ NNS IN NNS CC NN , CC NNS TO DT NNS IN PRP$ NNS WP VBD IN DT NN .\nPakistan this week raised its death toll from the quake to more than 73,000 .\tNNP DT NN VBD PRP$ NN NN IN DT NN TO JJR IN CD .\nA shootout between gunmen and security forces has killed nine people at the offices of an Italian oil company in southern Nigeria .\tDT NN IN NNS CC NN NNS VBZ VBN CD NNS IN DT NNS IN DT JJ NN NN IN JJ NNP .\nThe company , Eni , says it has temporarily evacuated staff and contractors from its base in the city of Port Harcourt .\tDT NN , NNP , VBZ PRP VBZ RB VBN NN CC NNS IN PRP$ NN IN DT NN IN NNP NNP .\nWitnesses say the dead include eight policemen and one civilian .\tNNS VBP DT NN VBP CD NNS CC CD JJ .\nThe company says a number of people were also wounded in Tuesday 's attack .\tDT NN VBZ DT NN IN NNS VBD RB VBN IN NNP POS NN .\nAccording to several accounts , the gunmen raided the offices , exchanged fire with police , and robbed a bank on the premises before making their escape .\tVBG TO JJ NNS , DT NNS VBD DT NNS , VBD NN IN NN , CC VBN DT NN IN DT NNS IN VBG PRP$ NN .\nIt was unclear if the gunmen are linked to militants who have staged a recent series of attacks on Nigerian oil facilities .\tPRP VBD JJ IN DT NNS VBP VBN TO NNS WP VBP VBN DT JJ NN IN NNS IN JJ NN NNS .\nThe attacks have led to an estimated 10-percent drop in Nigerian oil production , putting pressure on world prices .\tDT NNS VBP VBN TO DT JJ JJ NN IN JJ NN NN , VBG NN IN NN NNS .\nA major winter storm has hit both the U.S. midwest and northeastern part of the country , as well as eastern Canada .\tDT JJ NN NN VBZ VBN DT DT NNP NN CC JJ NN IN DT NN , RB RB IN JJ NNP .\nSunday 's wintry blast caused hazardous driving conditions and resulted in hundreds of flight cancellations at local airports .\tNNP POS NN NN VBD JJ NN NNS CC VBD IN NNS IN NN NNS IN JJ NNS .\nOfficials say both Chicago and Boston have received up more than 25 centimeters of snow .\tNNS VBP DT NNP CC NNP VBP VBN RP RBR IN CD NNS IN NN .\nIn addition , authorities say at least 40 centimeters is expected in Canada .\tIN NN , NNS VBP IN JJS CD NNS VBZ VBN IN NNP .\nThe storm follows last week 's ice storm in the U.S. Midwest which contributed to the death of at least 13 people and left thousands of homes and businesses without power .\tDT NN VBZ JJ NN POS NN NN IN DT NNP NNP WDT VBD TO DT NN IN IN JJS CD NNS CC VBD NNS IN NNS CC NNS IN NN .\nCanadian meteorologists call the storm a dangerous one .\tJJ NNS VBP DT NN DT JJ CD .\nPakistani authorities confirm that a deadly strain of the bird flu virus has been detected near the southern city of Karachi .\tJJ NNS VBP IN DT JJ NN IN DT NN NN NN VBZ VBN VBN IN DT JJ NN IN NNP .\nAuthorities say the H5N1 virus has been found at a poultry farm on the outskirts of Pakistan 's largest city .\tNNS VBP DT NNP NN VBZ VBN VBN IN DT NN NN IN DT NNS IN NNP POS JJS NN .\nThe farm has been quarantined to prevent further spread of the virus .\tDT NN VBZ VBN VBN TO VB JJ NN IN DT NN .\nHealth officials say they are monitoring farm workers , but so far there is no sign of human infection .\tNNP NNS VBP PRP VBP VBG NN NNS , CC RB RB EX VBZ DT NN IN JJ NN .\nPakistan recorded its first human death from bird flu in December .\tNNP VBD PRP$ JJ JJ NN IN NN NN IN NNP .\nA man who worked on a poultry farm in North West Frontier Province died .\tDT NN WP VBD IN DT NN NN IN NNP NNP NNP NNP VBD .\nHis brother had recently died as well , but was not tested for the virus .\tPRP$ NN VBD RB VBN RB RB , CC VBD RB VBN IN DT NN .\nKyrgyzstan 's provisional leader Roza Otunbayeva was sworn in as president Saturday , making her the first female president in the history of ex-Soviet Central Asia .\tNNP POS JJ NN NNP NNP VBD VBN IN IN NN NNP , VBG PRP DT JJ NN NN IN DT NN IN NNP NNP NNP .\nHer inauguration in a concert hall in Bishkek comes just days after the country overwhelmingly approved a new constitution .\tPRP$ NN IN DT NN NN IN NNP VBZ RB NNS IN DT NN RB VBD DT JJ NN .\nOver the course of her tenure as caretaker president , which lasts to the end of 2011 , Ms. Otunbayeva will oversee the implementation of the new constitution and the establishment of the region 's first parliamentary democracy .\tIN DT NN IN PRP$ NN IN NN NN , WDT VBZ TO DT NN IN CD , NNP NNP MD VB DT NN IN DT JJ NN CC DT NN IN DT NN POS JJ JJ NN .\nParliamentary elections are set for October 10 .\tJJ NNS VBP VBN IN NNP CD .\nKyrgyzstan 's interim government has struggled to impose order since it took power following the April 7 deadly uprising that ousted President Kurmanbek Bakiyev .\tNNP POS JJ NN VBZ VBN TO VB NN IN PRP VBD NN VBG DT NNP CD JJ NN WDT VBD NNP NNP NNP .\nAn estimated 2,000 people were killed during ethnic clashes between Kyrgyz and Uzbeks that began June 10 in the southern cities of Osh and Jalalabad .\tDT VBN CD NNS VBD VBN IN JJ NNS IN NNS CC NNS WDT VBD NNP CD IN DT JJ NNS IN NNP CC NNP .\nRussian news reports say the military has deployed another batch of intercontinental ballistic missiles .\tJJ NN NNS VBP DT NN VBZ VBN DT NN IN JJ JJ NNS .\nThe announcement Sunday says three new Topol-M truck-mounted missile units have been positioned about 250 kilometers northeast of Moscow , in the Ivanovo region near Teikovo .\tDT NN NNP VBZ CD JJ NNP JJ NN NNS VBP VBN VBN IN CD NNS RB IN NNP , IN DT NNP NN IN NNP .\nA first batch of the mobile missiles were deployed in the area last year .\tDT JJ NN IN DT JJ NNS VBD VBN IN DT NN JJ NN .\nAnalysts say the missile has an effective range of 10,000 kilometers and can carry a more than one-ton payload .\tNNS VBP DT NN VBZ DT JJ NN IN CD NNS CC MD VB DT JJR IN JJ NN .\nRussian military chiefs have been quoted as saying the mobile Topol missiles are aimed at countering U.S. missile shield plans in central Europe .\tJJ JJ NNS VBP VBN VBN IN VBG DT JJ NNP NNS VBP VBN IN VBG NNP NN NN NNS IN JJ NNP .\nRussia opposes U.S. plans for 10 missile interceptors in Poland and guidance radar in the Czech Republic .\tNNP VBZ NNP NNS IN CD NN NNS IN NNP CC NN NN IN DT JJ NNP .\nWashington says the missile shield will protect the United States and its European allies from potential missile attacks from Iran .\tNNP VBZ DT NN NN MD VB DT NNP NNPS CC PRP$ JJ NNS IN JJ NN NNS IN NNP .\nBut Moscow insists the U.S. deployment will destabilize central and eastern Europe and lead to a new arms race .\tCC NNP VBZ DT NNP NN MD VB JJ CC JJ NNP CC NN TO DT JJ NNS NN .\nRepresentatives from hundreds of oil companies around the world are bidding for new oil exploration contracts in Nigeria .\tNNS IN NNS IN NN NNS IN DT NN VBP VBG IN JJ NN NN NNS IN NNP .\nNigeria is offering the rights to over 70 parcels of land Friday in the largest open bidding in the country 's history .\tNNP VBZ VBG DT NNS TO IN CD NNS IN NN NNP IN DT JJS JJ NN IN DT NN POS NN .\nThe land stretches from Lake Chad in the northeast to the Gulf of Guinea in the south , where huge oil discoveries have already been made .\tDT NN VBZ IN NNP NNP IN DT NN TO DT NNP IN NNP IN DT NN , WRB JJ NN NNS VBP RB VBN VBN .\nAlso Friday , the Nigerian government raised domestic oil prices by about 40 percent .\tRB NNP , DT JJ NN VBD JJ NN NNS IN IN CD NN .\nAlthough Nigeria is the continent 's top crude oil exporter , it has to import refined oil and has been affected by record high oil prices .\tIN NNP VBZ DT NN POS JJ NN NN NN , PRP VBZ TO VB JJ NN CC VBZ VBN VBN IN NN JJ NN NNS .\nNigerian labor unions say they will fight the price hike .\tJJ NN NNS VBP PRP MD VB DT NN NN .\nBelarus has set December 19 as the date for the next presidential election .\tNNP VBZ VBN NNP CD IN DT NN IN DT JJ JJ NN .\nIncumbent Alexander Lukashenko , who has been in power since 1994 , is likely to run for another term .\tNNP NNP NNP , WP VBZ VBN IN NN IN CD , VBZ JJ TO VB IN DT NN .\nThe political opposition in Belarus is fragmented and Mr. Lukashenko 's government maintains tight control over the media .\tDT JJ NN IN NNP VBZ VBN CC NNP NNP POS NN VBZ JJ NN IN DT NNS .\nThe autocratic Mr. Lukashenko has done away with presidential term limits and international observers have declared past elections as undemocratic .\tDT JJ NNP NNP VBZ VBN RP IN JJ NN NNS CC JJ NNS VBP VBN JJ NNS IN JJ .\nFormer U.S. President George W. Bush dubbed Mr. Lukashenko as ' Europe 's last dictator . '\tJJ NNP NNP NNP NNP NNP VBD NNP NNP IN `` NNP POS JJ NN . ``\nEgypt says it plans to deport some 650 Sudanese asylum-seekers dispersed by police from a make-shift camp in downtown Cairo last week .\tNNP VBZ PRP VBZ TO VB DT CD JJ NNS VBN IN NNS IN DT JJ NN IN NN NNP JJ NN .\nA foreign ministry spokeswoman , Fatma el-Zahraa Etman , said that those set for deportation on Thursday were found to be illegal immigrants or had broken Egyptian law .\tDT JJ NN NN , NNP NNP NNP , VBD IN DT VBN IN NN IN NNP VBD VBN TO VB JJ NNS CC VBD VBN JJ NN .\nThe Sudanese migrants were among a group of about 1,000 who clashed with police last week .\tDT JJ NNS VBD IN DT NN IN IN CD WP VBD IN NN JJ NN .\nTwenty-seven people were killed in the violence .\tCD NNS VBD VBN IN DT NN .\nEgyptian officials said the deaths were caused by a stampede , but witnesses said police beat the Sudanese .\tJJ NNS VBD DT NNS VBD VBN IN DT NN , CC NNS VBD NNS VBD DT JJ .\nThe migrants had been camped out for three months near the offices of the U.N. refugee agency , demanding to be resettled in a third country .\tDT NNS VBD VBN VBN RP IN CD NNS IN DT NNS IN DT NNP NN NN , VBG TO VB VBN IN DT JJ NN .\nOfficials for the U.N. agency expressed shock at the last week 's clashes , saying they had been trying to negotiate a peaceful resolution .\tNNS IN DT NNP NN VBD NN IN DT JJ NN POS NNS , VBG PRP VBD VBN VBG TO VB DT JJ NN .\nIran has warned the European Union that Tehran will never surrender its right to nuclear fuel .\tNNP VBZ VBN DT NNP NNP IN NNP MD RB VB PRP$ NN TO JJ NN .\nA spokesman for Iran 's Supreme National Security Council said Saturday EU negotiators can offer no incentive that would compel the Islamic republic to abandon its nuclear program .\tDT NN IN NNP POS NNP NNP NNP NNP VBD NNP NNP NNS MD VB DT NN WDT MD VB DT JJ NN TO VB PRP$ JJ NN .\nBritain , France and Germany have asked Tehran to surrender its fuel-making program in return for economic incentives .\tNNP , NNP CC NNP VBP VBN NNP TO VB PRP$ JJ NN IN NN IN JJ NNS .\nTehran insists it has every right to enrich uranium for reactors to make electricity .\tNNP VBZ PRP VBZ DT NN TO VB NN IN NNS TO VB NN .\nThe United States accuses Iran of secretly developing nuclear weapons .\tDT NNP NNPS VBZ NNP IN RB VBG JJ NNS .\nTehran says its nuclear program is only for peaceful purposes .\tNNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS .\nAward-winning choreographer Michael Kidd has died at his home in Los Angeles .\tJJ NN NNP NNP VBZ VBN IN PRP$ NN IN NNP NNP .\nA family member says Kidd was 92-years-old , and died of cancer Sunday night .\tDT NN NN VBZ NNP VBD JJ , CC VBD IN NN NNP NN .\nThe choreographer was best known for producing exuberant dance numbers for Broadway shows such as Guys and Dolls and Can-Can .\tDT NN VBD RB VBN IN VBG JJ NN NNS IN NNP NNS JJ IN NNP CC NNP CC NNP .\nHe also worked on movies , including the 1954 film , Seven Brides for Seven Brothers .\tPRP RB VBD IN NNS , VBG DT CD NN , NNP NNP IN NNP NNPS .\nDuring his long career , Kidd won five Tony Awards for his theater work .\tIN PRP$ JJ NN , NNP VBD CD NNP NNS IN PRP$ NN NN .\nHe also earned a special Academy Award in 1997 in recognition of his choreography for movies .\tPRP RB VBD DT JJ NNP NNP IN CD IN NN IN PRP$ NN IN NNS .\nAuthorities in Laos say they have detected the country 's first outbreak of the H5N1 bird flu virus in almost seven months .\tNNS IN NNP VBP PRP VBP VBN DT NN POS JJ NN IN DT NNP NN NN NN IN RB CD NNS .\nGovernment spokesman Yong Chanthalangsy said Tuesday at least 17 birds have died of the virus in Non-Sawang , a village just outside the capital , Vientiane .\tNNP NN NNP NNP VBD NNP IN JJS CD NNS VBP VBN IN DT NN IN NNP , DT NN RB IN DT NN , NNP .\nHe said at least 1,000 birds have been killed in an effort to stop the virus from spreading .\tPRP VBD IN JJS CD NNS VBP VBN VBN IN DT NN TO VB DT NN IN VBG .\nThe H5N1 virus usually affects poultry , but it has spread to humans in some cases .\tDT NNP NN RB VBZ NN , CC PRP VBZ VBN TO NNS IN DT NNS .\n167 people have died from the virus worldwide since 2003 .\tCD NNS VBP VBN IN DT NN NN IN CD .\nSyria 's official news agency says President Bashar al-Assad has pardoned and released 112 political prisoners .\tNNP POS JJ NN NN VBZ NNP NNP NNP VBZ VBN CC VBN CD JJ NNS .\nSANA reports that the mass release is part of what it calls the president 's open and tolerant approach in dealing with the issue of political detainees .\tNNP VBZ IN DT NN NN VBZ NN IN WP PRP VBZ DT NN POS JJ CC JJ NN IN VBG IN DT NN IN JJ NNS .\nLast month , Damascus freed 20 political prisoners , but Tuesday 's was said to be the largest release in three years .\tJJ NN , NNP VBD CD JJ NNS , CC NNP POS VBD VBN TO VB DT JJS NN IN CD NNS .\nPresident Assad succeeded his late father , Hafez al-Assad , in July 2000 , committing to political reform .\tNNP NNP VBD PRP$ JJ NN , NNP NNP , IN NNP CD , VBG TO JJ NN .\nHowever , rights groups have been critical of his administration , accusing him of cracking down on pro-democracy groups .\tRB , NNS NNS VBP VBN JJ IN PRP$ NN , VBG PRP IN VBG RP IN JJ NNS .\nUkraine 's Prime Minister Yuriy Yekhanurov says the signing of a controversial natural gas deal with Russia has been postponed again .\tNNP POS NNP NNP NNP NNP VBZ DT NN IN DT JJ JJ NN NN IN NNP VBZ VBN VBN RB .\nThe signing had already been delayed from Saturday to Wednesday .\tDT NN VBD RB VBN VBN IN NNP TO NNP .\nBut Yekhanurov says experts continue to work on documents .\tCC NNP VBZ NNS VBP TO VB IN NNS .\nA draft agreement , reached January 4 , calls for Ukraine to pay Russia $ 95 per 1,000 cubic meters of natural gas , nearly twice as much as the previous rate .\tDT NN NN , VBD NNP CD , VBZ IN NNP TO VB NNP $ CD IN CD JJ NNS IN JJ NN , RB RB RB JJ IN DT JJ NN .\nThe agreement triggered a political crisis in Ukraine , and parliament voted to dismiss the government .\tDT NN VBD DT JJ NN IN NNP , CC NN VBD TO VB DT NN .\nMeanwhile , the prime minister urged Ukrainian industry to sharply cut the use of natural gas , warning that otherwise authorities will have to cut off supplies .\tRB , DT JJ NN VBD JJ NN TO RB VB DT NN IN JJ NN , VBG IN RB NNS MD VB TO VB RP NNS .\nEarlier , Russian officials again accused Ukraine of siphoning off supplies Russia is sending through Ukrainian pipelines to other European countries .\tRB , JJ NNS RB VBD NNP IN VBG RP NNS NNP VBZ VBG IN JJ NNS TO JJ JJ NNS .\nSome had complained of reduced flows as they sought to deal with frigid temperatures .\tDT VBD VBN IN JJ NNS IN PRP VBD TO VB IN JJ NNS .\nA bomb exploded in an industrial zone of a predominantly Christian neighborhood of Beirut Saturday night , injuring at least eight .\tDT NN VBD IN DT JJ NN IN DT RB JJ NN IN NNP NNP NN , VBG IN JJS CD .\nPolice say the bomb was placed at the site in the Dikweneh neighborhood - in an area of factories , warehouses and car repair shops .\tNNS VBP DT NN VBD VBN IN DT NN IN DT NNP NN : IN DT NN IN NNS , NNS CC NN NN NNS .\nThe blast shattered windows and set several building ablaze .\tDT NN VBD NNS CC VBD JJ NN NN .\nPolice and soldiers were at the scene to cordon off the area and ambulances and fire trucks were rushed in .\tNNS CC NNS VBD IN DT NN TO VB RP DT NN CC NNS CC NN NNS VBD VBN IN .\nThe blast is making residents increasingly nervous .\tDT NN VBZ VBG NNS RB JJ .\nThis is the third bombing in a week - all have occurred in predominantly Christian areas of the city .\tDT VBZ DT JJ NN IN DT NN IN DT VBP VBN IN RB JJ NNS IN DT NN .\nLebanese opposition leaders have blamed Syria and pro-Syrian Lebanese authorities of being behind the attacks in an effort to instill fear in the community .\tJJ NN NNS VBP VBN NNP CC JJ JJ NNS IN VBG IN DT NNS IN DT NN TO VB NN IN DT NN .\nLebanon has been in political turmoil since former Prime Minister Rafik Hariri was killed in a massive bomb blast in Beirut last month .\tNNP VBZ VBN IN JJ NN IN JJ NNP NNP NNP NNP VBD VBN IN DT JJ NN NN IN NNP JJ NN .\nFrench Foreign Minister Michel Barnier says negotiations that could lead to European Union membership for Turkey will likely not begin before late 2005 or early 2006 .\tJJ NNP NNP NNP NNP VBZ NNS WDT MD VB TO NNP NNP NN IN NNP MD RB RB VB IN JJ CD CC RB CD .\nMr. Barnier made the comments in an interview published Wednesday by the Parisian newspaper Le Figaro .\tNNP NNP VBD DT NNS IN DT NN VBN NNP IN DT JJ NN NNP NNP .\nEU leaders are expected to agree to membership negotiations with Turkey at a summit next month .\tNNP NNS VBP VBN TO VB TO NN NNS IN NNP IN DT NN JJ NN .\nOpinion surveys show that public opinion in many EU countries is sharply divided on the question of Turkish membership .\tNN NNS VBP IN JJ NN IN JJ NNP NNS VBZ RB VBN IN DT NN IN JJ NN .\nFrench President Jacques Chirac says he supports Turkish membership , but has promised to put the question to a referendum in his country .\tJJ NNP NNP NNP VBZ PRP VBZ JJ NN , CC VBZ VBN TO VB DT NN TO DT NN IN PRP$ NN .\nBritish police have detained three people at Heathrow Airport under the nation 's anti-terrorism act , but officials did not connect the arrests to the London bombings .\tJJ NNS VBP VBN CD NNS IN NNP NNP IN DT NN POS JJ NN , CC NNS VBD RB VB DT NNS TO DT NNP NNS .\nAt a news conference Sunday , a senior police official , Commander Brian Paddick , called the arrests routine and said it would be inappropriate to draw any direct link with last week 's terror attacks .\tIN DT NN NN NNP , DT JJ NN NN , NNP NNP NNP , VBD DT NNS JJ CC VBD PRP MD VB JJ TO VB DT JJ NN IN JJ NN POS NN NNS .\nThe official said police have so far received 1,700 calls to a special anti-terrorist tip line .\tDT NN VBD NNS VBP RB RB VBN CD NNS TO DT JJ JJ NN NN .\nAuthorities have asked people to send in cell-phone camera images or other information that might help identify the bombers .\tNNS VBP VBN NNS TO VB IN JJ NN NNS CC JJ NN WDT MD VB VB DT NNS .\nMeanwhile , crime scene and recovery crews continued working in a narrow , dark subway tunnel near Russell Square Sunday .\tRB , NN NN CC NN NNS VBD VBG IN DT JJ , JJ NN NN IN NNP NNP NNP .\nThe official count of fatalities remained at 49 but is expected to rise as workers search through the debris .\tDT JJ NN IN NNS VBD IN CD CC VBZ VBN TO VB IN NNS NN IN DT NN .\nFormer New York City Police Commissioner Bernard Kerik has abruptly withdrawn his name from consideration to be U.S. Homeland Security Secretary , prompting the search for a new candidate .\tJJ NNP NNP NNP NNP NNP NNP NNP VBZ RB VBN PRP$ NN IN NN TO VB NNP NNP NNP NNP , VBG DT NN IN DT JJ NN .\nIn a letter to the White House , Mr. Kerik says he has uncovered information which has caused him to question the immigration status of a nanny he had employed .\tIN DT NN TO DT NNP NNP , NNP NNP VBZ PRP VBZ VBN NN WDT VBZ VBN PRP TO VB DT NN NN IN DT NN PRP VBD VBN .\nHe said that it had also come to his attention that he had not paid the required taxes for her employment with his family .\tPRP VBD IN PRP VBD RB VBN TO PRP$ NN IN PRP VBD RB VBN DT JJ NNS IN PRP$ NN IN PRP$ NN .\nMr. Kerik informed the president of his decision late Friday .\tNNP NNP VBD DT NN IN PRP$ NN RB NNP .\nThe White House said President Bush accepted Mr. Kerik 's decision .\tDT NNP NNP VBD NNP NNP VBD NNP NNP POS NN .\nMr. Bush nominated Mr. Kerik last week to succeed Tom Ridge as head of the 1,80,000 employee department .\tNNP NNP VBD NNP NNP JJ NN TO VB NNP NNP IN NN IN DT CD NN NN .\nBritish Prime Minister Gordon Brown has made an unannounced visit to Afghanistan .\tNNP NNP NNP NNP NNP VBZ VBN DT JJ NN TO NNP .\nMr. Brown arrived Saturday and spoke to British troops at camps in the southern Helmand province .\tNNP NNP VBD NNP CC VBD TO JJ NNS IN NNS IN DT JJ NNP NN .\nHe thanked them for their role in a February assault in Marjah , a former Taliban stronghold in the province .\tPRP VBD PRP IN PRP$ NN IN DT NNP NN IN NNP , DT JJ NNP NN IN DT NN .\nAnd he promised additional equipment and resources .\tCC PRP VBD JJ NN CC NNS .\nOn Friday in London , Mr. Brown defended Britain 's decision to help invade Iraq .\tIN NNP IN NNP , NNP NNP VBD NNP POS NN TO VB VB NNP .\nHe served as treasury chief when his country entered the war in 2003 , and he made decisions about defense spending .\tPRP VBD IN NN NN WRB PRP$ NN VBD DT NN IN CD , CC PRP VBD NNS IN NN NN .\nIn Afghanistan , the prime minister rejected criticism from conservatives who said he made the trip to divert attention away from the Iraq inquiry .\tIN NNP , DT JJ NN VBD NN IN NNS WP VBD PRP VBD DT NN TO VB NN RB IN DT NNP NN .\nMr. Brown said he had planned the trip to Afghanistan for some time .\tNNP NNP VBD PRP VBD VBN DT NN TO NNP IN DT NN .\nBritish troops were withdrawn from Iraq , but about 10,000 are now serving in Afghanistan alongside U.S. and NATO forces .\tJJ NNS VBD VBN IN NNP , CC IN CD VBP RB VBG IN NNP IN NNP CC NNP NNS .\nIraqi officials say at least $ 1 billion disappeared from Iraq 's defense ministry during the interim government of Iyad Allawi .\tJJ NNS VBP IN JJS $ CD CD VBN IN NNP POS NN NN IN DT JJ NN IN NNP NNP .\nThe officials call the situation one of the largest thefts in history .\tDT NNS VBP DT NN CD IN DT JJS NNS IN NN .\nThey say it left the Defense Ministry with almost no money to buy arms , further complicating its fight against insurgents .\tPRP VBP PRP VBD DT NNP NNP IN RB DT NN TO VB NNS , RB VBG PRP$ NN IN NNS .\nThe money was supposed to be spent on weapons , but current Iraqi officials say contracts for the arms were awarded without bidding , signed with intermediaries instead of directly with the suppliers , and prices were inflated .\tDT NN VBD VBN TO VB VBN IN NNS , CC JJ JJ NNS VBP NNS IN DT NNS VBD VBN IN NN , VBN IN NNS IN IN RB IN DT NNS , CC NNS VBD VBN .\nAmong the items purchased during the period in question were 28-year-old Polish helicopters .\tIN DT NNS VBN IN DT NN IN NN VBD JJ JJ NNS .\nMr. Allawi 's defense minister , Hazem Shaalan , denied allegations of irregularities , saying government committees oversaw all the deals .\tNNP NNP POS NN NN , NNP NNP , VBD NNS IN NNS , VBG NN NNS VB PDT DT NNS .\nA Kuwaiti activist says the first of 12 Kuwaitis captured by U.S. forces in Afghanistan and held at a U.S. military prison at Guantanamo Bay , Cuba , has returned home after three years in captivity .\tDT JJ NN VBZ DT NN IN CD NNS VBN IN NNP NNS IN NNP CC VBN IN DT NNP JJ NN IN NNP NNP , NNP , VBZ VBN NN IN CD NNS IN NN .\nThe head of a committee seeking the release of the detainees said the man , Nasser al-Mutairi , arrived in Kuwait City early Sunday aboard a plane sent by the Kuwaiti government .\tDT NN IN DT NN VBG DT NN IN DT NNS VBD DT NN , NNP NNP , VBD IN NNP NNP JJ NNP IN DT NN VBN IN DT JJ NN .\nThe United States designated more than 600 people captured in Afghanistan as enemy combatants .\tDT NNP NNPS VBN JJR IN CD NNS VBN IN NNP IN NN NNS .\nMost have been held without charges , legal representation or trials .\tJJS VBP VBN VBN IN NNS , JJ NN CC NNS .\nAbout 200 have been released .\tRB CD VBP VBN VBN .\nFamilies of the Kuwaiti detainees said the men were doing charity work in Afghanistan when they were captured in the U.S.-led war against the Taleban and al-Qaida after the 2001 terror attacks in the United States .\tNNS IN DT JJ NNS VBD DT NNS VBD VBG NN NN IN NNP WRB PRP VBD VBN IN DT JJ NN IN DT NNP CC NNP IN DT CD NN NNS IN DT NNP NNPS .\nPakistani President Pervez Musharraf says the search for Osama bin Laden has gone completely cold , and his nation 's intelligence and security forces have no recent information about the whereabouts of the leader of the al-Qaida terrorist network .\tJJ NNP NNP NNP VBZ DT NN IN NNP NNP NNP VBZ VBN RB JJ , CC PRP$ NN POS NN CC NN NNS VBP DT JJ NN IN DT NNS IN DT NN IN DT NNP JJ NN .\nGeneral Musharraf , who has been meeting with President Bush and other U.S. officials in Washington , says in an interview published Sunday that Pakistani forces are aggressively pursuing Osama bin Laden , but have only been able to determine that he is still alive .\tNNP NNP , WP VBZ VBN VBG IN NNP NNP CC JJ NNP NNS IN NNP , VBZ IN DT NN VBN NNP IN JJ NNS VBP RB VBG NNP NNP NNP , CC VBP RB VBN JJ TO VB IN PRP VBZ RB JJ .\nMr. Musharraf says the United States must share responsibility for the failure to track down the al-Qaida leader , because the U.S.-led coalition does not have enough troops in neighboring Afghanistan .\tNNP NNP VBZ DT NNP NNPS MD VB NN IN DT NN TO VB RP DT NNP NN , IN DT JJ NN VBZ RB VB JJ NNS IN JJ NNP .\nAfter their meetings at the White House Saturday , Mr. Bush said ' there is nobody more dedicated ' to tracking down Osama bin Laden than Mr. Musharraf , who has twice survived assassination attempts that reportedly were traced to al-Qaida extremists .\tIN PRP$ NNS IN DT NNP NNP NNP , NNP NNP VBD `` EX VBZ DT RBR JJ `` TO VBG RP NNP NNP NNP IN NNP NNP , WP VBZ RB VBN NN NNS WDT RB VBD VBN TO NNP NNS .\nA South African court has ordered four white South African men to pay fines for making a video degrading black university workers three years ago .\tDT JJ JJ NN VBZ VBN CD JJ JJ JJ NNS TO VB NNS IN VBG DT NN VBG JJ NN NNS CD NNS RB .\nThe Bloemfontein court Friday instructed each of the former University of Free State students to pay $ 2,720 in lieu of a one year jail sentence , provided they stay out of trouble .\tDT NNP NN NNP VBD DT IN DT JJ NNP IN NNP NNP NNS TO VB $ CD IN NN IN DT CD NN NN NN , VBD PRP VBP IN IN NN .\nThe men pleaded guilty Wednesday to deliberately harming the integrity of the workers .\tDT NNS VBD JJ NNP TO RB VBG DT NN IN DT NNS .\nThe 2007 video includes scenes in which the black employees are fed soup apparently drenched in urine .\tDT CD NN VBZ NNS IN WDT DT JJ NNS VBP VBN NN RB VBN IN NN .\nThe men , who no longer attend the university , have not identified what liquid was put in the soup and only described the liquid as harmless .\tDT NNS , WP RB RB VB DT NN , VBP RB VBN WP NN VBD VBN IN DT NN CC RB VBD DT NN IN JJ .\nThey say the video was made as a protest to racial integration .\tPRP VBP DT NN VBD VBN IN DT NN TO JJ NN .\nThe case conjured up bitter feelings of when South Africa 's apartheid dominance prevailed .\tDT NN VBD RP JJ NNS IN WRB NNP NNP POS NN NN VBD .\nRussian President Vladimir Putin says he will press for expanding trade and economic ties with Slovakia during his visit to the former communist region .\tJJ NNP NNP NNP VBZ PRP MD VB IN VBG NN CC JJ NNS IN NNP IN PRP$ NN TO DT JJ NN NN .\nFollowing Thursday 's meeting with President Bush in Bratislava , Mr. Putin will hold talks with Slovak President Ivan Gasparovic and other officials during his two-day visit .\tVBG NNP POS NN IN NNP NNP IN NNP , NNP NNP MD VB NNS IN JJ NNP NNP NNP CC JJ NNS IN PRP$ JJ NN .\nMr. Putin told Slovak media Tuesday relations between the two countries were improving and in keeping with Moscow 's strategy of increasing ties with countries throughout Central Europe .\tNNP NNP VBD JJ NNS NNP NNS IN DT CD NNS VBD VBG CC IN VBG IN NNP POS NN IN VBG NNS IN NNS IN NNP NNP .\nHe said Moscow valued cooperation in the gas and oil sectors , adding that Russian companies were interested in helping Slovakia further develop its nuclear power industry .\tPRP VBD NNP VBD NN IN DT NN CC NN NNS , VBG IN JJ NNS VBD JJ IN VBG NNP RB VB PRP$ JJ NN NN .\nMr. Putin 's visit is the first by a Russian president to the country since Slovakia and the Czech Republic were formed in 1993 with the peaceful split of Czechoslovakia .\tNNP NNP POS NN VBZ DT JJ IN DT JJ NN TO DT NN IN NNP CC DT JJ NNP VBD VBN IN CD IN DT JJ NN IN NNP .\nCompanies in the United States slashed their stockpiles of goods and supplies in December , a sign the U.S. economy may be forced to shed more jobs .\tNNS IN DT NNP NNPS VBD PRP$ NNS IN NNS CC NNS IN NNP , DT NN DT NNP NN MD VB VBN TO VB JJR NNS .\nWholesale inventories have now fallen for four consecutive months as companies try to reduce their inventories to match the drop in consumer spending .\tJJ NNS VBP RB VBN IN CD JJ NNS IN NNS VBP TO VB PRP$ NNS TO VB DT NN IN NN NN .\nBut the data suggests they are not slashing stockpiles fast enough .\tCC DT NN VBZ PRP VBP RB VBG NNS RB RB .\nThe Commerce Department report says wholesale inventories fell 1.4 percent last month , while sales at the wholesale level fell at a faster 3.6 percent pace .\tDT NNP NNP NN VBZ JJ NNS VBD CD NN JJ NN , IN NNS IN DT JJ NN VBD IN DT RBR CD NN NN .\nThe data mean that wholesalers are ordering fewer goods , which could force factories to lower production and eliminate jobs .\tDT NNS VBP IN NNS VBP VBG JJR NNS , WDT MD VB NNS TO JJR NN CC VB NNS .\nHundreds of Iraqi Shi'ites have gathered on the streets of Baghdad 's Sadr City district to celebrate the death sentence handed down to deposed Iraqi leader Saddam Hussein .\tNNS IN JJ NNPS VBP VBN IN DT NNS IN NNP POS NNP NNP NN TO VB DT NN NN VBN RP TO JJ JJ NN NNP NNP .\nResidents of the Shi'ite suburb danced , waved flags and set fire to pictures of Saddam .\tNNS IN DT NNP NN VBD , VBD NNS CC VBN NN TO NNS IN NNP .\nThe district is controlled by the Shi'ite Mahdi militia , which largely ignored a strict curfew imposed on the rest of the Iraqi capital .\tDT NN VBZ VBN IN DT NNP NNP NN , WDT RB VBD DT JJ NN VBN IN DT NN IN DT JJ NN .\nOther parts of the Iraqi capital were largely quiet as the curfew remains in place .\tJJ NNS IN DT JJ NN VBD RB JJ IN DT NN VBZ IN NN .\nIt is aimed at preventing outbreaks of sectarian fighting over the Saddam verdict .\tPRP VBZ VBN IN VBG NNS IN JJ NN IN DT NNP NN .\nHowever , officials say gunmen fought with police in northern Baghdad 's Azamiyah district , which is dominated by Sunni Muslims .\tRB , NNS VBP NNS VBN IN NNS IN JJ NNP POS NNP NN , WDT VBZ VBN IN NNP NNPS .\nSeveral Iraqi Sunni politicians have criticized the death sentence on Saddam - a Sunni - and warned it could spark greater bloodshed between Sunnis and Shi'ites .\tJJ JJ NNP NNS VBP VBN DT NN NN IN NNP IN DT NNP : CC VBD PRP MD VB JJR NN IN NNP CC NNP .\nA list of victims of accused swindler Bernard Madoff has been made public .\tDT NN IN NNS IN VBN NN NNP NNP VBZ VBN VBN JJ .\nThe 162-page document names several thousand clients who invested with Madoff , including charitable foundations , celebrities , Madoff 's relatives and even his attorney .\tDT JJ NN VBZ JJ CD NNS WP VBD IN NNP , VBG JJ NNS , NNS , NNP POS NNS CC RB PRP$ NN .\nThe document was filed late Wednesday with the U.S. Bankruptcy Court in Manhattan .\tDT NN VBD VBN JJ NNP IN DT NNP NNP NNP IN NNP .\nAmong the names are legendary baseball pitcher Sandy Koufax , New York Mets owner Fred Wilpon , Columbia University , and finance institutions Bank of America Corporation and Citigroup .\tIN DT NNS VBP JJ NN NN NNP NNP , NNP NNP NNPS NN NNP NNP , NNP NNP , CC NN NNS NNP IN NNP NNP CC NNP .\nProsecutors accuse the 70-year-old Madoff of operating a years-long massive pyramid scheme that illegally used money from new investors to pay previous ones .\tNNS VBP DT JJ NN IN VBG DT JJ JJ JJ NN WDT RB VBD NN IN JJ NNS TO VB JJ NNS .\nOfficials say the fraud may have cost investors $ 50 billion .\tNNS VBP DT NN MD VB VBN NNS $ CD CD .\nMadoff has not been indicted and is currently under house arrest at his multi-million dollar apartment in New York .\tNNP VBZ RB VBN VBN CC VBZ RB IN NN NN IN PRP$ JJ NN NN IN NNP NNP .\nDozens of Egyptians protested in front of the country 's high court Tuesday calling for the release of an opposition leader who was jailed four weeks ago on what his supporters say are FALSE charges .\tNNS IN NNS VBD IN NN IN DT NN POS JJ NN NNP NN IN DT NN IN DT NN NN WP VBD VBN CD NNS RB IN WP PRP$ NNS VBP VBP JJ NNS .\nRiot police stood nearby , as supporters of al-Ghad party leader Ayman Nour peacefully protested , chanting slogans and waving photos of the imprisoned legislator .\tNN NN VBD RB , IN NNS IN JJ NN NN NNP NNP RB VBD , VBG NNS CC VBG NNS IN DT JJ NN .\nMr. Nour has been held on charges of forging signatures to secure a license to establish his al-Ghad party last year .\tNNP NNP VBZ VBN VBN IN NNS IN VBG NNS TO VB DT NN TO VB PRP$ JJ NN JJ NN .\nHe denies the accusations .\tPRP VBZ DT NNS .\nHis supporters say his arrest was politically motivated , because he has been a vocal advocate of constitutional reform .\tPRP$ NNS VBP PRP$ NN VBD RB JJ , IN PRP VBZ VBN DT JJ NN IN JJ NN .\nThe United States voiced its concern over Mr. Nour 's detention during a meeting in Washington two weeks ago between Secretary of State Condoleezza Rice and Egyptian Foreign Minister Ahmed Aboul Gheit .\tDT NNP NNPS VBD PRP$ NN IN NNP NNP POS NN IN DT NN IN NNP CD NNS IN IN NNP IN NNP NNP NNP CC JJ NNP NNP NNP NNP NNP .\nIraqi police say gunmen have killed two police officers , one soldier , a grandmother and her grandchild , in a series of attacks in the restive northern city of Mosul .\tJJ NNS VBP NNS VBP VBN CD NNS NNS , CD NN , DT NN CC PRP$ NN , IN DT NN IN NNS IN DT JJ JJ NN IN NNP .\nPolice say the three security officers died as assailants carried out drive-by shootings on multiple checkpoints in the city .\tNNS VBP DT CD NN NNS VBD IN NNS VBD RP JJ NNS IN JJ NNS IN DT NN .\nIn a separate incident , unknown gunmen stormed a house in western Mosul , killing a woman and her young grandchild , who was about 2 or 3 years old .\tIN DT JJ NN , JJ NNS VBD DT NN IN JJ NNP , VBG DT NN CC PRP$ JJ NN , WP VBD IN CD CC CD NNS JJ .\nPolice did not provide further details about that attack .\tNNS VBD RB VB JJ NNS IN DT NN .\nElsewhere in Iraq , authorities say at least six people were wounded in a car bombing in the capital Sunday .\tRB IN NNP , NNS VBP IN JJS CD NNS VBD VBN IN DT NN NN IN DT NN NNP .\nThey say the bomb blast occurred in eastern Baghdad 's Shi'ite Baladiyat district .\tPRP VBP DT NN NN VBD IN JJ NNP POS NNP NNP NN .\nIsraeli doctors say Prime Minister Ariel Sharon has moved his right arm and leg in response to pain tests as they gradually bring him out of a medically-induced coma .\tJJ NNS VBP NNP NNP NNP NNP VBZ VBN PRP$ JJ NN CC NN IN NN TO NN NNS IN PRP RB VBP PRP IN IN DT JJ NN .\nDr. Shlomo Mor-Yosef told reporters at Jerusalem 's Hadassah Hospital that Mr. Sharon 's movements became increasingly significant as doctors reduced his anesthesia dosage Monday .\tNNP NNP NNP VBD NNS IN NNP POS NNP NNP IN NNP NNP POS NNS VBD RB JJ IN NNS VBD PRP$ NN NN NNP .\nBut he added that Mr. Sharon remains sedated and in serious condition .\tCC PRP VBD IN NNP NNP VBZ JJ CC IN JJ NN .\nDoctors had kept Mr. Sharon , 77 , in a deep state of unconsciousness since he suffered a brain hemorrhage last Wednesday .\tNNS VBD VBN NNP NNP , CD , IN DT JJ NN IN NN IN PRP VBD DT NN NN JJ NNP .\nDoctors say they are monitoring Mr. Sharon 's condition and that it is too early to discuss his brain function .\tNNS VBP PRP VBP VBG NNP NNP POS NN CC IN PRP VBZ RB JJ TO VB PRP$ NN NN .\nThe doctors have said the Israeli leader 's chances of survival are good , but that he will probably not be able to continue as prime minister .\tDT NNS VBP VBN DT JJ NN POS NNS IN NN VBP JJ , CC IN PRP MD RB RB VB JJ TO VB IN JJ NN .\nThe United States has announced a $ 481- million aid package aimed at reducing poverty in Burkina Faso .\tDT NNP NNPS VBZ VBN DT $ CD CD NN NN VBN IN VBG NN IN NNP NNP .\nA statement from the U.S. government 's Millennium Challenge Corporation says the five-year agreement will help the west African nation improve roads , agricultural productivity , and primary education for girls .\tDT NN IN DT NNP NN POS NNP NNP NNP VBZ DT JJ NN MD VB DT JJ JJ NN VB NNS , JJ NN , CC JJ NN IN NNS .\nThe grant was announced Monday in Washington after a signing ceremony attended by Burkina Faso 's President Blaise Compaore and U.S. Secretary of State Condoleezza Rice .\tDT NN VBD VBN NNP IN NNP IN DT NN NN VBN IN NNP NNP POS NNP NNP NNP CC NNP NNP IN NNP NNP NNP .\nThe Millennium Challenge Corporation gives grants to countries that show a commitment to good governance , economic freedom and the elimination of extreme poverty .\tDT NNP NNP NNP VBZ NNS TO NNS WDT VBP DT NN TO JJ NN , JJ NN CC DT NN IN JJ NN .\nThe Bush administration launched the fund in 2004 .\tDT NNP NN VBD DT NN IN CD .\nEgypt 's culture minister says police have recovered the Vincent van Gogh painting that was stolen from a Cairo museum earlier Saturday .\tNNP POS NN NN VBZ NNS VBP VBN DT NNP NNP NNP NN WDT VBD VBN IN DT NNP NN JJR NNP .\nFarouk Hosni said security officials at the Cairo airport have arrested two Italian nationals who were trying to leave the country with the painting .\tNNP NNP VBD NN NNS IN DT NNP NN VBP VBN CD JJ NNS WP VBD VBG TO VB DT NN IN DT NN .\nThe painting by the Dutch artist is valued at about $ 50 million .\tDT NN IN DT JJ NN VBZ VBN IN IN $ CD CD .\nIt goes by two titles , Poppy Flowers and Vase with Flowers .\tPRP VBZ IN CD NNS , NNP NNPS CC NNP IN NNPS .\nCrude oil prices are climbing with news of a potential hurricane along the southern gulf coast of the United States and Iran 's ongoing nuclear dispute with western nations .\tJJ NN NNS VBP VBG IN NN IN DT JJ NN IN DT JJ NN NN IN DT NNP NNPS CC NNP POS JJ JJ NN IN JJ NNS .\nOil prices rose more than $ 1 Friday to $ 73 a barrel .\tNN NNS VBD JJR IN $ CD NNP TO $ CD DT NN .\nFinancial analysts say they are closely watching a tropical depression that weather forecasters are tracking as it makes its way to the U.S. gulf coast .\tJJ NNS VBP PRP VBP RB VBG DT JJ NN IN NN NNS VBP VBG IN PRP VBZ PRP$ NN TO DT NNP NN NN .\nLast year 's storms , particularly Hurricane Katrina , damaged off shore oil refineries , disrupting U.S. oil supplies and driving oil prices to record highs .\tJJ NN POS NNS , RB NNP NNP , VBN RP NN NN NNS , VBG NNP NN NNS CC VBG NN NNS TO VB NNS .\nAn August 31 U.N. Security Council deadline for Iran to halt its nuclear activities is also weighing heavily on oil prices .\tDT NNP CD NNP NNP NNP NN IN NNP TO VB PRP$ JJ NNS VBZ RB VBG RB IN NN NNS .\nTraders are concerned that Iran may block oil exports if the security council imposes sanctions against it .\tNNS VBP VBN IN NNP MD VB NN NNS IN DT NN NN VBZ NNS IN PRP .\nIran is the world 's fourth largest oil producer .\tNNP VBZ DT NN POS JJ JJS NN NN .\nThe Asian Development Bank has issued a $ 2.7-million grant to Afghanistan to improve the country 's road system in rural areas .\tDT NNP NNP NNP VBZ VBN DT $ CD NN TO NNP TO VB DT NN POS NN NN IN JJ NNS .\nThe grant will go to training highway engineers at Kabul Polytechnic University as well as to the Ministry of Public Works .\tDT NN MD VB TO NN NN NNS IN NNP NNP NNP RB RB IN TO DT NNP IN NNP NNP .\nThe ADB said on Tuesday that the purpose of the grants is to help people in Afghanistan 's backcountry gain better access to the center of the country .\tDT NNP VBD IN NNP IN DT NN IN DT NNS VBZ TO VB NNS IN NNP POS JJ NN JJR NN TO DT NN IN DT NN .\nThe grants will be applied to a road master plan that was earlier developed with ADB assistance .\tDT NNS MD VB VBN TO DT NN NN NN WDT VBD RB VBN IN NNP NN .\nIndia has boosted security in the northern town of Ayodhya , one day before the 12th anniversary of a mosque demolition that sparked bloody riots between Hindus and Muslims .\tNNP VBZ VBN NN IN DT JJ NN IN NNP , CD NN IN DT JJ NN IN DT NN NN WDT VBD JJ NNS IN NNP CC NNPS .\nHundreds of soldiers are standing guard at the disputed site where Hindu extremists destroyed the 16th century Babri mosque , saying it was built by destroying a temple at the birthplace of their god-king Rama .\tNNS IN NNS VBP VBG NN IN DT JJ NN WRB NNP NNS VBD DT JJ NN NNP NN , VBG PRP VBD VBN IN VBG DT NN IN DT NN IN PRP$ JJ NNP .\nThey say want to rebuild the temple .\tPRP VBP VBP TO VB DT NN .\nThe demolition triggered nationwide riots that left about 2,000 people dead , the bloodiest in India since the 1947 partition with Pakistan .\tDT NN VBD JJ NNS WDT VBD IN CD NNS JJ , DT JJS IN NNP IN DT CD NN IN NNP .\nTwo Hindu extremist groups , the World Hindu Council and Shiv Sena , have called for a rally near the temple town on Monday to mark the anniversary .\tCD NNP NN NNS , DT NNP NNP NNP CC NNP NNP , VBP VBN IN DT NN IN DT NN NN IN NNP TO VB DT NN .\nThe dispute is now before the Indian courts .\tDT NN VBZ RB IN DT JJ NNS .\nDelegates from most African countries are attending a U.N.-sponsored conference in Zimbabwe on improving food safety on the continent .\tNNS IN JJS JJ NNS VBP VBG DT JJ NN IN NNP IN VBG NN NN IN DT NN .\nDuring Monday 's session , the Food and Agriculture Organization and the World Health Organization warned that food-borne diseases are a serious threat in Africa .\tIN NNP POS NN , DT NNP CC NNP NNP CC DT NNP NNP NNP VBD IN JJ NNS VBP DT JJ NN IN NNP .\nBoth U.N. agencies said improved food safety would help reduce an estimated 2,000 deaths per day in Africa from food and waterborne diseases .\tDT NNP NNS VBD VBN NN NN MD VB VB DT JJ CD NNS IN NN IN NNP IN NN CC NN NNS .\nExperts at the four-day conference will try to strengthen existing systems to ensure safer food to improve health and agricultural trade opportunities .\tNNS IN DT JJ NN MD VB TO VB VBG NNS TO VB JJR NN TO VB NN CC JJ NN NNS .\nHost Zimbabwe President Robert Mugabe opened the conference in Harare .\tNNP NNP NNP NNP NNP VBD DT NN IN NNP .\nThe French news agency reports Mr. Mugabe defended his seizure of white-owned farms to be given to landless blacks as a way of bringing food to the people .\tDT JJ NN NN VBZ NNP NNP VBD PRP$ NN IN JJ NNS TO VB VBN TO JJ NNS IN DT NN IN VBG NN TO DT NNS .\nRelief agencies blame the policy for disrupting Zimbabwe 's agricultural output and creating serious food shortages .\tNN NNS VBP DT NN IN VBG NNP POS JJ NN CC VBG JJ NN NNS .\nControversial British historian David Irving is to go on trial in Austria Monday on charges of denying the Nazi Holocaust during World War II .\tJJ JJ NN NNP NNP VBZ TO VB IN NN IN NNP NNP IN NNS IN VBG DT NNP NNP IN NNP NNP NNP .\nIrving has been in custody since November when he was arrested for allegedly denying the Holocaust at meetings in Austria in 1989 .\tNNP VBZ VBN IN NN IN NNP WRB PRP VBD VBN IN RB VBG DT NN IN NNS IN NNP IN CD .\nHe faces up to 10 years in prison for his public denial , which is illegal in Austria .\tPRP VBZ RP TO CD NNS IN NN IN PRP$ JJ NN , WDT VBZ JJ IN NNP .\nThe 67-year-old Irving has written a number of controversial books including Hitler 's War , in which he challenges the extent of the Holocaust .\tDT JJ NNP VBZ VBN DT NN IN JJ NNS VBG NNP POS NNP , IN WDT PRP VBZ DT NN IN DT NNP .\nHe says Hitler knew nothing about the extermination of some six million Jews and actually tried to protect them .\tPRP VBZ NNP VBD DT IN DT NN IN DT CD CD NNPS CC RB VBD TO VB PRP .\nOver the years , Irving has lost several legal battles over his views .\tIN DT NNS , NNP VBZ VBN JJ JJ NNS IN PRP$ NNS .\nThe World Health Organization says that despite a global effort to eradicate polio by the end of 2005 , the number of cases rose by almost 30 percent last year .\tDT NNP NNP NNP VBZ IN IN DT JJ NN TO VB NN IN DT NN IN CD , DT NN IN NNS VBD IN RB CD NN JJ NN .\nOrganization officials say more than 1,170 cases were reported last year compared to 784 in 2003 .\tNNP NNS VBP JJR IN CD NNS VBD VBN JJ NN VBN TO CD IN CD .\nNinety percent of the incidents occurred in Nigeria , India and Pakistan .\tCD NN IN DT NNS VBD IN NNP , NNP CC NNP .\nNigeria , Africa 's most populous country , accounts for 65 percent of the 2004 total .\tNNP , NNP POS JJS JJ NN , NNS IN CD NN IN DT CD NN .\nEradication efforts have been hampered by a months-long vaccine boycott in that country 's northern region .\tNNP NNS VBP VBN VBN IN DT JJ NN NN IN DT NN POS JJ NN .\nOpponents there had said the polio vaccine was contaminated with infertility agents .\tNNS RB VBD VBN DT NN NN VBD VBN IN NN NNS .\nThat boycott led to the spread of the virus to neighboring countries , including Ghana , Benin , Chad and Togo .\tDT NN VBD TO DT NN IN DT NN TO JJ NNS , VBG NNP , NNP , NNP CC NNP .\nConflicts in Ivory Coast and Sudan also have hindered eradication efforts .\tNNS IN NNP NNP CC NNP RB VBP VBN NN NNS .\nPolio is a disease that attacks the nervous system , causing paralysis , muscle atrophy and sometimes death .\tNNP VBZ DT NN WDT VBZ DT JJ NN , VBG NN , NN NN CC RB NN .\nChina 's official news agency says a 31-year-old poultry farmer is the country 's fifth confirmed human case of bird flu , but the woman has since been released from the hospital after her condition improved .\tNNP POS JJ NN NN VBZ DT JJ NN NN VBZ DT NN POS NN VBD JJ NN IN NN NN , CC DT NN VBZ IN VBN VBN IN DT NN IN PRP$ NN VBN .\nThe Xinhua news agency says the woman from Heishan County , Liaoning province in China 's northeast became sick with pneumonia-like symptoms on October 30 and was hospitalized .\tDT NNP NN NN VBZ DT NN IN NNP NNP , VBG NN IN NNP POS NN VBD JJ IN JJ NNS IN NNP CD CC VBD VBN .\nHer condition improved and she was discharged on November 29 .\tPRP$ NN VBD CC PRP VBD VBN IN NNP CD .\nTests later showed the woman had contracted the deadly H5N1 strain of avian flu .\tNNS RB VBD DT NN VBD VBN DT JJ NNP NN IN JJ NN .\nHealth officials are now monitoring people who had contact with her .\tNNP NNS VBP RB VBG NNS WP VBD NN IN PRP .\nWednesday , China announced its fourth human victim of bird flu , a 10-year-old girl in southern Guangxi region .\tNNP , NNP VBD PRP$ JJ JJ NN IN NN NN , DT JJ NN IN JJ NNP NN .\nShe remains hospitalized .\tPRP VBZ VBN .\nSince 2003 , the H5N1 virus has killed nearly 70 people , mostly in southeast Asia .\tIN CD , DT NNP NN VBZ VBN RB CD NNS , RB IN JJ NNP .\nPakistani officials say a man accused of being an al-Qaida computer expert has been released without charge following three years in custody .\tJJ NNS VBP DT NN VBN IN VBG DT NNP NN NN VBZ VBN VBN IN NN VBG CD NNS IN NN .\nMohammed Naeem Noor Khan was arrested in Lahore in July 2004 .\tNNP NNP NNP NNP VBD VBN IN NNP IN NNP CD .\nPakistani officials said investigations of his computer led to information on active al-Qaida networks .\tJJ NNS VBD NNS IN PRP$ NN VBD TO NN IN JJ NNP NNS .\nKhan 's lawyer Babar Awan told reporters Monday that he has returned to his home in the southern port city of Karachi .\tNNP POS NN NNP NNP VBD NNS NNP IN PRP VBZ VBN TO PRP$ NN IN DT JJ JJ NN IN NNP .\nOfficials alleged that Khan acted as a link between top al-Qaida leaders and the organizations ' operational cells .\tNNS VBD IN NNP VBD IN DT NN IN JJ NNP NNS CC DT NNS POS JJ NNS .\nPakistani intelligence officials say information from his computer led them to a Tanzanian wanted for the 1998 U.S. embassy bombings in East Africa , as well as terror plots in both the United States and Britain .\tJJ NN NNS VBP NN IN PRP$ NN VBD PRP TO DT NN VBN IN DT CD NNP NN NNS IN NNP NNP , RB RB IN NN NNS IN DT DT NNP NNPS CC NNP .\nKhan was never charged with a crime or brought before a court .\tNNP VBD RB VBN IN DT NN CC VBN IN DT NN .\nHaiti 's interim leader , Gerard Latortue , has called on donor nations to help rebuild his country .\tNNP POS JJ NN , NNP NNP , VBZ VBN IN NN NNS TO VB VB PRP$ NN .\nDiplomats attending a one-day conference in Cayenne , French Guiana , Friday are discussing ways to jumpstart desperately needed donations to Haiti .\tNNS VBG DT JJ NN IN NNP , NNP NNP , NNP VBP VBG NNS TO VB RB VBN NNS TO NNP .\nThey are trying to set infrastructure and development goals needed for the Caribbean nation to overcome last February 's armed rebellion that ousted former President Jean-Bertrand Aristide .\tPRP VBP VBG TO VB NN CC NN NNS VBN IN DT JJ NN TO VB JJ NNP POS JJ NN WDT VBD JJ NNP NNP NNP .\nIn the months following last year 's political crisis , donor nations and organizations pledged $ 1.3 million for reconstruction efforts in Haiti , the Western Hemisphere 's poorest nation .\tIN DT NNS VBG JJ NN POS JJ NN , NN NNS CC NNS VBD $ CD CD IN NN NNS IN NNP , DT NNP NNP POS JJS NN .\nBut officials say the actual amount provided , so far , is far less than donor nations promised .\tCC NNS VBP DT JJ NN VBN , RB RB , VBZ RB JJR IN NN NNS VBD .\nChinese Premier Wen Jiabao has ordered officials in southern China to brace for Typhoon Damrey .\tJJ NNP NNP NNP VBZ VBN NNS IN JJ NNP TO VB IN NNP NNP .\nHe says authorities must make preparations for the typhoon , which is expected to make landfall late Sunday or early Monday and pound the region with heavy rains and strong winds .\tPRP VBZ NNS MD VB NNS IN DT NN , WDT VBZ VBN TO VB NN JJ NNP CC JJ NNP CC VB DT NN IN JJ NNS CC JJ NNS .\nEarlier this month , Typhoon Khanun killed at least 14 people in coastal provinces of eastern China .\tRBR DT NN , NNP NNP VBD IN JJS CD NNS IN JJ NNS IN JJ NNP .\nAnd Typhoon Talim killed at least 42 people when it hit Zhejiang province .\tCC NNP NNP VBD IN JJS CD NNS WRB PRP VBD NNP NN .\nUkraine 's security service has denied any involvement in the poisoning of opposition presidential candidate Viktor Yushchenko .\tNNP POS NN NN VBZ VBN DT NN IN DT NN IN NN JJ NN NNP NNP .\nIn a statement Thursday , the State Security Service said it had nothing to do with what it called Mr. Yushchenko 's worsening health .\tIN DT NN NNP , DT NNP NNP NNP VBD PRP VBD DT TO VB IN WP PRP VBD NNP NNP POS VBG NN .\nThe pro-Western opposition leader fell ill in September during a heated presidential campaign and his face became disfigured .\tDT JJ NN NN VBD RB IN NNP IN DT JJ JJ NN CC PRP$ NN VBD JJ .\nDoctors say he was poisoned with dioxin .\tNNS VBP PRP VBD VBN IN NN .\nMr. Yushchenko told the Associated Press last week that he was probably poisoned at a September dinner with Ukrainian security agents .\tNNP NNP VBD DT NNP NNP JJ NN IN PRP VBD RB VBN IN DT NNP NN IN JJ NN NNS .\nMr. Yushchenko faces pro-Russian Prime Minister Viktor Yanukovych Sunday in a court-ordered re-vote to replace last month 's fraudulent balloting .\tNNP NNP VBZ JJ NNP NNP NNP NNP NNP IN DT JJ JJ TO VB JJ NN POS JJ NN .\nRussian President Vladimir Putin told reporters today he is willing to work with whoever wins .\tJJ NNP NNP NNP VBD NNS NN PRP VBZ JJ TO VB IN JJ NNS .\nAn Iraqi commander involved in a daring rescue by Iraqi and U.S. troops says accounts of the incident by some Shi'ite officials are not TRUE .\tDT JJ NN VBN IN DT NN NN IN JJ CC NNP NNS VBZ NNS IN DT NN IN DT NNP NNS VBP RB JJ .\nAt least 16 people were killed in the operation Sunday .\tIN JJS CD NNS VBD VBN IN DT NN NNP .\nThe Iraqi special forces commander , whose identity was not disclosed , spoke Wednesday to Western reporters from Time magazine and CBS News .\tDT JJ JJ NNS NN , WP$ NN VBD RB VBN , VBD NNP TO JJ NNS IN NNP NN CC NNP NNP .\nHe disputed accusations from some Shi'ite officials that U.S. forces raided a Baghdad mosque and killed innocent civilians .\tPRP VBD NNS IN DT NNP NNS IN NNP NNS VBD DT NNP NN CC VBD JJ NNS .\nHe insisted his troops had to fight their way into the target building and kill gunmen guarding a hostage .\tPRP VBD PRP$ NNS VBD TO VB PRP$ NN IN DT NN NN CC VB NNS VBG DT NN .\nHe said his men did not find prayer mats or books , which are usually found in a mosque .\tPRP VBD PRP$ NNS VBD RB VB NN NNS CC NNS , WDT VBP RB VBN IN DT NN .\nHe said they found weapons and instruments of torture .\tPRP VBD PRP VBD NNS CC NNS IN NN .\nThe hostage freed in the operation confirms the commander 's version .\tDT NN VBD IN DT NN VBZ DT NN POS NN .\nPalestinians formally opened the campaign to replace their late leader Yasser Arafat Saturday , as the registration period began for potential candidates for the January 9 ballot .\tNNS RB VBD DT NN TO VB PRP$ JJ NN NNP NNP NNP , IN DT NN NN VBD IN JJ NNS IN DT NNP CD NN .\nFormer Prime Minister Mahmoud Abbas , Mr. Arafat 's successor as head of the powerful Palestine Liberation Organization , is expected to be the leading contender if his Fatah faction chooses him as its candidate .\tJJ NNP NNP NNP NNP , NNP NNP POS NN IN NN IN DT JJ NNP NNP NNP , VBZ VBN TO VB DT VBG NN IN PRP$ NNP NN VBZ PRP IN PRP$ NN .\nCandidates not put forward by a party must submit 5,000 signatures of support and $ 3,000 .\tNNS RB VBN RB IN DT NN MD VB CD NNS IN NN CC $ CD .\nAmong those planning to make bids are former Hamas leader Sheikh Talal Sidr and university professor Abdel Sattar Qassem .\tIN DT VBG TO VB NNS VBP JJ NNP NN NNP NNP NNP CC NN NN NNP NNP NNP .\nOn Friday , French officials released Mr. Arafat 's medical records to his wife Suha .\tIN NNP , JJ NNS VBD NNP NNP POS JJ NNS TO PRP$ NN NNP .\nThey said they will also give them to Mr. Arafat 's nephew , Palestinian envoy Nasser al-Kidwa , if he asks for them .\tPRP VBD PRP MD RB VB PRP TO NNP NNP POS NN , JJ NN NNP NNP , IN PRP VBZ IN PRP .\nPalestinian officials say they want to get the records to know Mr. Arafat 's cause of death .\tJJ NNS VBP PRP VBP TO VB DT NNS TO VB NNP NNP POS NN IN NN .\nEuropean government ministers have pledged nearly $ 13 billion to fund an ambitious plan for space exploration , including a mission to place a robotic exploration vehicle on Mars .\tJJ NN NNS VBP VBN RB $ CD CD TO VB DT JJ NN IN NN NN , VBG DT NN TO VB DT JJ NN NN IN NNP .\nEuropean Space Agency director Jean-Jacques Dordain said the projects agreed on Wednesday by the agency 's 18 member states include satellites to monitor climate change and a long list of experiments for the International Space Station .\tNNP NNP NNP NN NNP NNP VBD DT NNS VBD IN NNP IN DT NN POS CD NN NNS VBP NNS TO VB NN NN CC DT JJ NN IN NNS IN DT NNP NNP NNP .\nThe money will also fund updates to the Ariane rocket , which carries European payloads into space .\tDT NN MD RB VB NNS TO DT NNP NN , WDT VBZ JJ NNS IN NN .\nThe so-called ExoMars project is set to blast off in 2016 , carrying a landing rover to Mars which will drill two meters into the planet 's surface to take soil samples .\tDT JJ NNP NN VBZ VBN TO VB RP IN CD , VBG DT NN NN TO NNP WDT MD VB CD NNS IN DT NN POS NN TO VB NN NNS .\nMinisters capped ExoMars at nearly $ 1.3 billion , a sum that falls short of its target .\tNNS VBD NNS IN RB $ CD CD , DT NN WDT VBZ RB IN PRP$ NN .\nThe remaining $ 260 million is expected to be raised with funding from the United States or Russia .\tDT VBG $ CD CD VBZ VBN TO VB VBN IN NN IN DT NNP NNPS CC NNP .\nA huge slick of toxic chemicals has entered Russian territory from China after flowing downstream from a chemical-plant explosion last month .\tDT JJ NN IN JJ NNS VBZ VBN JJ NN IN NNP IN VBG NN IN DT JJ NN JJ NN .\nRussia 's Emergency Situations Minister , Sergei Shoigu , says the slick crossed the border Friday , but initial tests show pollution levels in the Amur River lower than feared .\tNNP POS NNP NNP NNP , NNP NNP , VBZ DT NN VBD DT NN NNP , CC JJ NNS VBP NN NNS IN DT NNP NNP JJR IN VBN .\nThe blast on November 13 poured 100 tons of benzene and other poisons into the Songhua River , which flowed past the Chinese city of Harbin into Russia .\tDT NN IN NNP CD VBD CD NNS IN NN CC JJ NNS IN DT NNP NNP , WDT VBD IN DT JJ NN IN NNP IN NNP .\nHarbin residents were without running water as the toxic slick passed .\tNNP NNS VBD IN VBG NN IN DT JJ NN VBN .\nRussia 's Far East Meteorological Service says foul water will begin flowing past Khabarovsk , a city of more than 5,00,000 people , within a week .\tNNP POS NNP NNP NNP NNP VBZ JJ NN MD VB VBG JJ NNP , DT NN IN JJR IN CD NNS , IN DT NN .\nEnvironmental officials say the benzene in the river should be so diluted that no interruption of municipal water service in Khabarovsk will be necessary .\tJJ NNS VBP DT NN IN DT NN MD VB RB VBN IN DT NN IN JJ NN NN IN NNP MD VB JJ .\nThe husband of outed CIA operative Valerie Plame , Ambassador Joseph Wilson , says the indictment of vice presidential aide , Lewis Libby , is a sad day for America .\tDT NN IN JJ NNP NN NNP NNP , NNP NNP NNP , VBZ DT NN IN NN JJ NN , NNP NNP , VBZ DT JJ NN IN NNP .\nIn a statement read Friday by Mr. Wilson 's attorney , the diplomat said the leaked revelation of his wife 's identity in 2003 was harmful to the nation .\tIN DT NN VBN NNP IN NNP NNP POS NN , DT NN VBD DT JJ NN IN PRP$ NN POS NN IN CD VBD JJ TO DT NN .\nMr. Wilson said he feels his family was attacked because he , in his words , spoke the truth about the events that led the United States to war .\tNNP NNP VBD PRP VBZ PRP$ NN VBD VBN IN PRP , IN PRP$ NNS , VBD DT NN IN DT NNS WDT VBD DT NNP NNPS TO NN .\nMr. Wilson underscored that the day is not a day to celebrate , because when indictments are delivered to the front door of the White House , the Office of the President is defiled .\tNNP NNP VBD IN DT NN VBZ RB DT NN TO VB , IN WRB NNS VBP VBN TO DT JJ NN IN DT NNP NNP , DT NNP IN DT NNP VBZ VBN .\nThe former ambassador said he is confident justice will be served .\tDT JJ NN VBD PRP VBZ JJ NN MD VB VBN .\nHe commended Special Counsel Patrick Fitzgerald for his professionalism , diligence and courage .\tPRP VBD JJ NNP NNP NNP IN PRP$ NN , NN CC NN .\nChina 's government-run media say the country 's top advisory body ended its annual session Monday after adopting a resolution to strongly oppose Taiwan independence efforts .\tNNP POS JJ NNS VBP DT NN POS JJ JJ NN VBD PRP$ JJ NN NNP IN VBG DT NN TO RB VB NNP NN NNS .\nThe Xinhua news agency reports the resolution noted that Taiwan 's leaders have accelerated what it termed ' dangerous ' steps toward independence .\tDT NNP NN NN VBZ DT NN VBD IN NNP POS NNS VBP VBN WP PRP VBD `` JJ `` NNS IN NN .\nThe agency urged all Chinese to resolutely oppose and check independence forces and activities .\tDT NN VBD DT NNS TO RB VB CC VB NN NNS CC NNS .\nThe resolution wrapped up the National Committee of the Chinese People 's Political Consultative Conference that opened March 3 in Beijing .\tDT NN VBD RP DT NNP NNP IN DT JJ NNS POS JJ JJ NN WDT VBD NNP CD IN NNP .\nXinhua says the purpose of the body is to conduct political consultation and debate issues of state .\tNNP VBZ DT NN IN DT NN VBZ TO VB JJ NN CC VB NNS IN NN .\nThis year 's session was attended by more than two thousand advisors from across the country .\tDT NN POS NN VBD VBN IN JJR IN CD CD NNS IN IN DT NN .\nTaiwan President Chen Shui-bian recently raised cross-strait tensions by scrapping guidelines and a group dedicated to Taiwan 's eventual unification with mainland China .\tNNP NNP NNP NNP RB VBD JJ NNS IN VBG NNS CC DT NN VBN TO NNP POS JJ NN IN JJ NNP .\nColombian rebels have released all 29 police officers taken hostage during a recent attack on the remote western village of San Marino .\tJJ NNS VBP VBN DT CD NN NNS VBN NN IN DT JJ NN IN DT JJ JJ NN IN NNP NNP .\nOfficials in Bogota say army troops found the officers walking in the jungle in Choco state Tuesday .\tNNS IN NNP VBP NN NNS VBD DT NNS VBG IN DT NN IN NNP NN NNP .\nThey were taken hostage last Saturday in a raid by rebels that left eight other police officers dead .\tPRP VBD VBN NN JJ NNP IN DT NN IN NNS WDT VBD CD JJ NNS NNS JJ .\nOne of the released officers said his captors included rebels from Colombia 's two main guerrilla groups - the Revolutionary Armed Forces of Colombia , known as FARC , and the smaller National Liberation Army , or ELN .\tCD IN DT VBN NNS VBD PRP$ NNS VBD NNS IN NNP POS CD JJ NN NNS IN DT JJ JJ NNS IN NNP , VBN IN NNP , CC DT JJR NNP NNP NNP , CC NNP .\nMeanwhile , in Havana , exploratory peace talks between Colombian President Alvaro Uribe 's government and the ELN rebels are nearing completion .\tRB , IN NNP , JJ NN NNS IN JJ NNP NNP NNP POS NN CC DT NNP NNS VBP VBG NN .\nOfficials say details on an agenda for formal talks should be available Wednesday .\tNNS VBP NNS IN DT NN IN JJ NNS MD VB JJ NNP .\nThe ELN and the FARC have been battling to topple the government in 41 years of civil war .\tDT NNP CC DT NNP VBP VBN VBG TO VB DT NN IN CD NNS IN JJ NN .\nThe conflict leaves thousands dead each year .\tDT NN VBZ NNS JJ DT NN .\nThe Ford Motor Company announced multi-billion dollar losses for the second quarter of 2008 , as well as major changes in its American auto plants .\tDT NNP NNP NNP VBD JJ NN NNS IN DT JJ NN IN CD , RB RB IN JJ NNS IN PRP$ JJ NN NNS .\nHigh oil prices continue to take a toll on the U.S. automobile industry .\tJJ NN NNS VBP TO VB DT NN IN DT NNP NN NN .\nVOA 's Carolyn Presutti drives our story .\tNNP POS NNP NNP VBZ PRP$ NN .\nThe U.S. dollar dropped to another record low compared to the euro on Tuesday .\tDT NNP NN VBD TO DT NN NN VBN TO DT NN IN NNP .\nAt one point , it took more than $ 1.31 to buy each euro .\tIN CD NN , PRP VBD JJR IN $ CD TO VB DT NN .\nThe latest record-low for the dollar follows speculation that Russia may increase the number of euros it holds in foreign currency reserves .\tDT JJS NN IN DT NN VBZ NN IN NNP MD VB DT NN IN NNS PRP VBZ IN JJ NN NNS .\nAnalysts say the American currency is declining largely because of concern over the huge U.S. trade deficit .\tNNS VBP DT JJ NN VBZ VBG RB IN IN NN IN DT JJ NNP NN NN .\nThe weak dollar makes U.S.-made exports more competitive on world markets .\tDT JJ NN VBZ JJ NNS RBR JJ IN NN NNS .\nIt also makes French wines , German cars and other goods imported to the U.S. market more expensive for U.S. consumers .\tPRP RB VBZ JJ NNS , JJ NNS CC JJ NNS VBN TO DT NNP NN RBR JJ IN NNP NNS .\nEconomists say the dollar 's decline will help close the gap between what U.S. companies sell abroad and what U.S. consumers buy from foreign companies .\tNNS VBP DT NN POS NN MD VB VB DT NN IN WP NNP NNS VBP RB CC WP NNP NNS VBP IN JJ NNS .\nIsraeli forces hunting for militants in northern Gaza shot and killed a 16-year-old Palestinian Sunday .\tJJ NNS VBG IN NNS IN JJ NNP VBD CC VBD DT JJ NN NNP .\nWitnesses in the town of Beit Lahiya say it appeared Israeli fire was aimed at the teenager because he had been standing near a rocket launcher used by militants a short time earlier .\tNNS IN DT NN IN NNP NNP VBP PRP VBD JJ NN VBD VBN IN DT NN IN PRP VBD VBN VBG IN DT NN NN VBN IN NNS DT JJ NN RB .\nPalestinian security officials ( who asked not to be identified ) say the teenager may have been in the area by accident , and that he had no connection with the rocket fired into Israel .\tJJ NN NNS LRB WP VBD RB TO VB VBN RRB VBP DT NN MD VB VBN IN DT NN IN NN , CC IN PRP VBD DT NN IN DT NN VBN IN NNP .\nIsraeli military officials gave a roughly similar account of the incident , but said they believed they were firing at a member of a militant group .\tJJ JJ NNS VBD DT RB JJ NN IN DT NN , CC VBD PRP VBD PRP VBD VBG IN DT NN IN DT JJ NN .\nIsrael 's military has been trying to suppress Palestinian rocket fire from Gaza for months .\tNNP POS NN VBZ VBN VBG TO VB JJ NN NN IN NNP IN NNS .\nFighting intensified recently when Israeli troops staged major incursions into northern Gaza .\tVBG VBD RB WRB JJ NNS VBD JJ NNS IN JJ NNP .\nIndian and U.S. officials are holding more talks in New Delhi Friday to try to reach an agreement on nuclear energy cooperation before President Bush visits India next week .\tJJ CC NNP NNS VBP VBG JJR NNS IN NNP NNP NNP TO VB TO VB DT NN IN JJ NN NN IN NNP NNP VBZ NNP JJ NN .\nIndian Foreign Secretary Shyam Saran and U.S. Undersecretary of State Nicholas Burns are leading the negotiations .\tJJ NNP NNP NNP NNP CC NNP NNP IN NNP NNP NNP VBP VBG DT NNS .\nWashington has offered to provide India with civilian nuclear technology , but wants to ensure New Delhi does not use the equipment for military purposes .\tNNP VBZ VBN TO VB NNP IN JJ JJ NN , CC VBZ TO VB NNP NNP VBZ RB VB DT NN IN JJ NNS .\nBurns said Thursday that differences remain between the two sides , and he is not sure an agreement will be ready by next week .\tNNP VBD NNP IN NNS VBP IN DT CD NNS , CC PRP VBZ RB JJ DT NN MD VB JJ IN JJ NN .\nPresident Bush said Wednesday he wants to come home from India with a deal on the nuclear issue so he can start promoting it to Congress , which must give its approval .\tNNP NNP VBD NNP PRP VBZ TO VB NN IN NNP IN DT NN IN DT JJ NN IN PRP MD VB VBG PRP TO NNP , WDT MD VB PRP$ NN .\nSome U.S. lawmakers oppose transferring nuclear technology to India , arguing that would undermine the Nuclear Non-Proliferation treaty , which India has not signed .\tDT NNP NNS VBP VBG JJ NN TO NNP , VBG DT MD VB DT NNP NNP NN , WDT NNP VBZ RB VBN .\nJapan Airlines says it will purchase 30 Boeing 7.00E+07 Dreamliner aircraft , with an option to buy 20 more .\tNNP NNP VBZ PRP MD VB CD NNP NNP NNP NN , IN DT NN TO VB CD JJR .\nThe price of the deal was not disclosed , but could be around $ 4 billion .\tDT NN IN DT NN VBD RB VBN , CC MD VB IN $ CD CD .\nJapan Airlines is expected to receive its first Boeing Dreamliner in 2008 .\tNNP NNP VBZ VBN TO VB PRP$ JJ NNP NNP IN CD .\nBoeing and European rival Airbus were competing for the Japan Airlines deal .\tNNP CC JJ NN NNP VBD VBG IN DT NNP NNPS NN .\nBoeing and Airbus have been battling in recent months to win contracts with Asian airliners .\tNNP CC NNP VBP VBN VBG IN JJ NNS TO VB NNS IN JJ NNS .\nBoeing recently reached a deal with Japan 's All Nippon Airways , while Airbus inked a contract with Malaysia 's AirAsia .\tNNP RB VBD DT NN IN NNP POS NNP NNP NNP , IN NNP VBD DT NN IN NNP POS NNP .\nWitnesses say three British citizens have been kidnapped by gunmen in the southern Gaza Strip , after crossing into the territory from Egypt .\tNNS VBP CD JJ NNS VBP VBN VBN IN NNS IN DT JJ NNP NNP , IN VBG IN DT NN IN NNP .\nSecurity officials in Gaza say one of the victims is a human rights worker .\tNN NNS IN NNP VBP CD IN DT NNS VBZ DT JJ NNS NN .\nThere was no claim of responsibility , and Palestinian authorities say they have begun a search .\tEX VBD DT NN IN NN , CC JJ NNS VBP PRP VBP VBN DT NN .\nRecent kidnappings in Gaza have ended peacefully with the hostages released unharmed .\tJJ NNS IN NNP VBP VBN RB IN DT NNS VBN JJ .\nIn several cases , the kidnappers were either seeking jobs with the Palestinian Authority , or the release of imprisoned relatives .\tIN JJ NNS , DT NNS VBD RB VBG NNS IN DT JJ NNP , CC DT NN IN JJ NNS .\nThe U.S. military has filed charges against six Marines accused of assaulting Iraqi civilians in the Iraqi town Hamdania .\tDT NNP NN VBZ VBN NNS IN CD NNS VBN IN VBG JJ NNS IN DT JJ NN NNP .\nThe men , charged Thursday , are being held in a military jail at Camp Pendleton , a Marine base in southern California .\tDT NNS , VBN NNP , VBP VBG VBN IN DT JJ NN IN NNP NNP , DT NN NN IN JJ NNP .\nThe alleged assaults occurred April 10 .\tDT JJ NNS VBD NNP CD .\nThree of the Marines charged are also accused of involvement in a separate case , the killing of an Iraqi civilian April 26 , also in Hamdania .\tCD IN DT NNPS VBD VBP RB VBN IN NN IN DT JJ NN , DT NN IN DT JJ JJ NNP CD , RB IN NNP .\nFive other Marines are also charged with that crime .\tCD JJ NNS VBP RB VBN IN DT NN .\nThursday 's assault case is the latest in charges of violence by U.S. servicemen against Iraqi civilians .\tNNP POS NN NN VBZ DT JJS IN NNS IN NN IN NNP NNS IN JJ NNS .\nThe military is investigating allegations that U.S. Marines killed 24 Iraqis in the town of Haditha , while four U.S. Army soldiers have been charged in the rape and murder of an Iraqi girl .\tDT NN VBZ VBG NNS IN NNP NNPS VBD CD NNS IN DT NN IN NNP , IN CD NNP NNP NNS VBP VBN VBN IN DT NN CC NN IN DT JJ NN .\nThose soldiers are also charged with killing three members of her family .\tDT NNS VBP RB VBN IN VBG CD NNS IN PRP$ NN .\nEgypt 's President Hosni Mubarak says he advised the United States not to launch military action against Iran , saying it could trigger violence across the Middle East .\tNNP POS NNP NNP NNP VBZ PRP VBD DT NNP NNPS RB TO VB JJ NN IN NNP , VBG PRP MD VB NN IN DT NNP NNP .\nA state-run newspaper , al-Gomhouria , Wednesday quoted Mr. Mubarak as saying he discussed the issue with Vice President Dick Cheney , who visited Egypt in January .\tDT JJ NN , NNP , NNP VBD NNP NNP IN VBG PRP VBD DT NN IN NNP NNP NNP NNP , WP VBD NNP IN NNP .\nPresident Bush has said he is open to all possible options for dealing with Iran , including military intervention .\tNNP NNP VBZ VBN PRP VBZ JJ TO DT JJ NNS IN VBG IN NNP , VBG JJ NN .\nBut he said that would be the last option .\tCC PRP VBD DT MD VB DT JJ NN .\nWashington accuses Iran of sponsoring terrorists and secretly trying to develop nuclear weapons .\tNNP VBZ NNP IN VBG NNS CC RB VBG TO VB JJ NNS .\nIn Wednesday 's published comments , Mr. Mubarak said he warned that a possible attack on Iran would anger Shi'ites in Iraq and other Middle Eastern nations .\tIN NNP POS VBN NNS , NNP NNP VBD PRP VBD IN DT JJ NN IN NNP MD VB NNS IN NNP CC JJ NNP NNP NNS .\nHe said military action would spark revenge attacks from Hezbollah militants in Lebanon and insurgents in Iraq .\tPRP VBD JJ NN MD VB NN NNS IN NNP NNS IN NNP CC NNS IN NNP .\nKenya 's President Mwai Kibaki has denied ever making a pledge to stay in office for just one term .\tNNP POS NNP NNP NNP VBZ VBN RB VBG DT NN TO VB IN NN IN RB CD NN .\nA former ally of the president , Ralia Odinga , has said that Mr. Kibaki made the pledge in 2002 , during negotiations to form the alliance that won that year 's Kenyan elections .\tDT JJ NN IN DT NN , NNP NNP , VBZ VBN IN NNP NNP VBD DT NN IN CD , IN NNS TO VB DT NN WDT VBD DT NN POS JJ NNS .\nBut Thursday , Mr. Kibaki said he had no intention of giving up the chance to run for a second term .\tCC NNP , NNP NNP VBD PRP VBD DT NN IN VBG RP DT NN TO VB IN DT JJ NN .\nHe said he has never indicated to anyone that he had any other intention .\tPRP VBD PRP VBZ RB VBN TO DT IN PRP VBD DT JJ NN .\nPresident Kibaki has yet to formally announce that he will run for re-election in polls expected later this year .\tNNP NNP VBZ RB TO RB VB IN PRP MD VB IN NN IN NNS VBN RB DT NN .\nThe Kenyan economy has thrived under Mr. Kibaki but the administration has lost support at home and abroad because of a series of corruption scandals .\tDT JJ NN VBZ VBN IN NNP NNP CC DT NN VBZ VBN NN IN NN CC RB IN IN DT NN IN NN NNS .\nThe U.S. military is delivering 50,000 hand-held radios to Haiti for survivors of the recent earthquakes .\tDT NNP NN VBZ VBG CD JJ NNS TO NNP IN NNS IN DT JJ NNS .\nThe U.S. Department of Defense said Wednesday it expects the radios to arrive later this week .\tDT NNP NNP IN NNP VBD NNP PRP VBZ DT NNS TO VB RB DT NN .\nIt said the joint task force will then distribute the radios to the public .\tPRP VBD DT JJ NN NN MD RB VB DT NNS TO DT NN .\nThe military said survivors can use the radios to receive news and important information concerning international relief efforts .\tDT NN VBD NNS MD VB DT NNS TO VB NN CC JJ NN VBG JJ NN NNS .\nIt also says its forces are working closely with the Haitian government to broadcast public safety messages for survivors on FM frequencies of 92.4 mhz and 104.1 mhz and the AM radio frequency of 1030 khz .\tPRP RB VBZ PRP$ NNS VBP VBG RB IN DT JJ NN TO VB JJ NN NNS IN NNS IN NNP NNS IN CD NN CC CD NN CC DT NNP NN NN IN CD NN .\nThe radios are powered by solar energy and hand cranks instead of batteries , a potentially helpful asset in a nation short on basic supplies .\tDT NNS VBP VBN IN JJ NN CC NN NNS RB IN NNS , DT RB JJ NN IN DT NN JJ IN JJ NNS .\nIraqi security forces say they have captured the alleged leader of a Sunni Arab militant group suspected of several bombings and assassinations .\tJJ NN NNS VBP PRP VBP VBN DT JJ NN IN DT NNP NNP JJ NN VBN IN JJ NNS CC NNS .\nA military spokesman Sunday said officials have linked Thayer Kadhim Abid al-Suraiwi to some Iraqi politicians and neighboring countries , but he did not elaborate .\tDT JJ NN NNP VBD NNS VBP VBN NNP NNP NNP NNP TO DT JJ NNS CC JJ NNS , CC PRP VBD RB VB .\nAuthorities arrested Suraiwi last month in Baghdad .\tNNS VBN NNP JJ NN IN NNP .\nThey accuse him of being the commander of Ansar al-Sunna .\tPRP VBP PRP IN VBG DT NN IN NNP NNP .\nThey say the group was responsible for a June car bombing that killed dozens of people in Baghdad 's Shi'ite neighborhood of Hurriyah .\tPRP VBP DT NN VBD JJ IN DT NNP NN NN WDT VBD NNS IN NNS IN NNP POS NNP NN IN NNP .\nMeanwhile , Iraqi police say unknown gunmen killed three policemen today in Mosul .\tRB , JJ NNS VBP JJ NNS VBD CD NNS NN IN NNP .\nThere are fresh allegations that prisoners under U.S. custody in Iraq and Guantanamo Bay , Cuba , suffered serious physical abuse from their interrogators .\tEX VBP JJ NNS IN NNS IN NNP NN IN NNP CC NNP NNP , NNP , VBD JJ JJ NN IN PRP$ NNS .\nAgents from the U.S. Federal Bureau of Investigation describe the abuse in newly-released e-mails obtained by the American Civil Liberties Union .\tNNS IN DT NNP NNP NNP IN NNP VBP DT NN IN JJ NNS VBN IN DT NNP NNP NNP NNP .\nIn one e-mail , an FBI agent says he saw Guantanamo prisoners chained to the floor for up to 24 hours and left to defacate on themselves .\tIN CD NN , DT NNP NN VBZ PRP VBD NNP NNS VBD TO DT NN IN RB TO CD NNS CC VBD TO VB IN PRP .\nIn another , the FBI reports that an unnamed individual saw Iraqi civilian detainees being beaten and strangled .\tIN DT , DT NNP VBZ IN DT JJ NN VBD JJ JJ NNS VBG VBN CC VBN .\nThe e-mails also allege that Guantanamo military interrogators posed as FBI agents to avoid accountability for their deeds .\tDT NNS RB VBP IN NNP JJ NNS VBD IN NNP NNS TO VB NN IN PRP$ NNS .\nThe White House has denied one allegation in the e-mail that President Bush signed an executive order approving certain interrogation techniques .\tDT NNP NNP VBZ VBN CD NN IN DT NN IN NNP NNP VBD DT JJ NN VBG JJ NN NNS .\nA U.S.-launched spacecraft orbiting the planet Mars has begun sending back some of the most finely detailed pictures ever of the surface of the so-called red planet .\tDT JJ NN VBG DT NN NNP VBZ VBN VBG RP DT IN DT RBS RB JJ NNS RB IN DT NN IN DT JJ JJ NN .\nThe U.S. space agency , NASA , announced Friday that images from the Mars Reconnaissance Orbiter have begun arriving .\tDT NNP NN NN , NNP , VBD NNP IN NNS IN DT NNP NNP NNP VBP VBN VBG .\nThey show rocks and features as small as armchairs on the planet 's surface .\tPRP VBP NNS CC NNS RB JJ IN NNS IN DT NN POS NN .\nThe craft is particularly close to the planet 's surface during this point in its orbit , giving scientists extra help in their hunt for surface details that may indicate the presence of water sometime in the past .\tDT NN VBZ RB JJ TO DT NN POS NN IN DT NN IN PRP$ NN , VBG NNS JJ NN IN PRP$ NN IN NN NNS WDT MD VB DT NN IN NN RB IN DT NN .\nScientists theorize that water may have made it possible for Mars to sustain life .\tNNS VBP IN NN MD VB VBN PRP JJ IN NNP TO VB NN .\nThis spacecraft began orbiting Mars in March .\tDT NN VBD VBG NNP IN NNP .\nScientists say it will return more data about the planet than all past Mars missions combined .\tNNS VBP PRP MD VB JJR NNS IN DT NN IN DT JJ NNP NNS VBN .\nOpposition parties in Ethiopia say they will boycott parliamentary elections scheduled for Sunday in a remote eastern part of the country .\tNN NNS IN NNP VBP PRP MD VB JJ NNS VBN IN NNP IN DT JJ JJ NN IN DT NN .\nThe main opposition parties in the Somali region accused the ruling party Tuesday of harassing their supporters and illegally distributing ballots .\tDT JJ NN NNS IN DT JJ NN VBD DT VBG NN NNP IN VBG PRP$ NNS CC RB VBG NNS .\nVoters in Somali are electing members of parliament more than three months after the rest of the country went to the polls because of heavy rains in the region .\tNNS IN JJ VBP VBG NNS IN NN RBR IN CD NNS IN DT NN IN DT NN VBD TO DT NNS IN IN JJ NNS IN DT NN .\nEthiopia 's election board has already announced the ruling Ethiopian People 's Revolutionary Democratic Front party has won a majority of seats in parliament .\tNNP POS NN NN VBZ RB VBN DT NN NNP NNP POS NNP NNP NNP NN VBZ VBN DT NN IN NNS IN NN .\nThe opposition has rejected those results and said it may challenge the ruling in court .\tDT NN VBZ VBN DT NNS CC VBD PRP MD VB DT NN IN NN .\nBoth the opposition and ruling parties have accused the other of fraud in the May 15 poll .\tDT DT NN CC NN NNS VBP VBN DT NN IN NN IN DT NNP CD NN .\nShortly after the vote , security forces fired on anti-government protesters , killing 36 people .\tRB IN DT NN , NN NNS VBN IN JJ NNS , VBG CD NNS .\nPresident Viktor Yushchenko says he will dismiss Ukraine 's chief veterinary official , Petro Verbytsky , for his handling of the bird flu crisis .\tNNP NNP NNP VBZ PRP MD VB NNP POS NN JJ NN , NNP NNP , IN PRP$ NN IN DT NN NN NN .\nPresident Yushchenko made the announcement Monday as he was visiting an area of the Crimea suddenly hit by the deadly virus .\tNNP NNP VBD DT NN NNP IN PRP VBD VBG DT NN IN DT NNP RB VBN IN DT JJ NN .\nHe said the veterinary service had not been prepared for the health crisis .\tPRP VBD DT JJ NN VBD RB VBN VBN IN DT NN NN .\nThe president also urged local authorities to consider firing Crimean veterinary service leaders .\tDT NN RB VBD JJ NNS TO VB VBG JJ JJ NN NNS .\nExperts are investigating the recent deaths of hundreds of birds .\tNNS VBP VBG DT JJ NNS IN NNS IN NNS .\nIt is not yet known whether they succumbed to the H5N1 strain of the flu , which can be spread to humans .\tPRP VBZ RB RB VBN IN PRP VBD TO DT NNP NN IN DT NN , WDT MD VB VBN TO NNS .\nAlso Monday , Russia banned poultry imports from Ukraine .\tRB NNP , NNP VBD JJ NNS IN NNP .\nThe swollen waters of the Mississippi River in the central U.S. have broken through another embankment , threatening to flood more houses and farmland .\tDT JJ NNS IN DT NNP NNP IN DT JJ NNP VBP VBN IN DT NN , VBG TO VB JJR NNS CC NN .\nThe sandbag-reinforced levee broke early this Friday morning near the city of Winfield , in the state of Missouri , about 70 kilometers northeast of St. Louis .\tDT JJ NN VBD RB DT NNP NN IN DT NN IN NNP , IN DT NN IN NNP , IN CD NNS NN IN NNP NNP .\nOfficials say it will ' ultimately inundate ' the town .\tNNS VBP PRP MD `` RB VB `` DT NN .\nIt is the latest of dozens of embankments to fail to contain the rain-flooded Mississippi over the past 10 days , ruining buildings and huge areas of farmland .\tPRP VBZ DT JJS IN NNS IN NNS TO VB TO VB DT JJ NNP IN DT JJ CD NNS , VBG NNS CC JJ NNS IN NN .\nAuthorities say the worst of the flooding is over .\tNNS VBP DT JJS IN DT NN VBZ IN .\nBut the effects are likely to continue .\tCC DT NNS VBP JJ TO VB .\nThe farms are major producers of corn , wheat and soybeans , prompting fears that crop losses will result in higher worldwide food prices .\tDT NNS VBP JJ NNS IN NN , NN CC NNS , VBG NNS IN NN NNS MD VB IN JJR JJ NN NNS .\nCitizens of Nepal 's capital , Kathmandu , have begun to suffer shortages of food and fuel as pro-democracy protests and strikes entered their 11th day .\tNNP IN NNP POS NN , NNP , VBP VBN TO VB NNS IN NN CC NN IN JJ NNS CC NNS VBD PRP$ JJ NN .\nOn Sunday , police used teargas and rubber bullets against demonstrators , while an alliance of seven political parties urged people to stop paying taxes to put pressure on King Gyanendra to restore democracy .\tIN NNP , NN VBD NNS CC NN NNS IN NNS , IN DT NN IN CD JJ NNS VBD NNS TO VB VBG NNS TO VB NN IN NNP NNP TO VB NN .\nThe political parties also called on international donors to halt aid to the royalist government .\tDT JJ NNS RB VBD IN JJ NNS TO VB NN TO DT NN NN .\nGasoline has become hard to find , and the price of vegetables has skyrocketed since strikes interrupted deliveries of food and gasoline to the capital .\tNNP VBZ VBN JJ TO VB , CC DT NN IN NNS VBZ VBN IN NNS VBN NNS IN NN CC NN TO DT NN .\nThe street campaign has intensified since the king dismissed the elected government and seized absolute power 14 months ago .\tDT NN NN VBZ VBN IN DT NN VBD DT JJ NN CC VBD JJ NN CD NNS RB .\nThe king said he took the action because the politicians failed to control a Maoist rebellion .\tDT NN VBD PRP VBD DT NN IN DT NNS VBD TO VB DT NNP NN .\nAnti-royalists have called for a mass protest on Thursday .\tNNS VBP VBN IN DT JJ NN IN NNP .\nIraq has welcomed Iran 's foreign minister to Baghdad , as the two former warring nations continue to improve relations .\tNNP VBZ VBN NNP POS JJ NN TO NNP , IN DT CD JJ VBG NNS VBP TO VB NNS .\nKamal Kharrazi is the highest-ranking Iranian official to visit Iraq since the fall of Saddam Hussein more than two years ago .\tNNP NNP VBZ DT JJ JJ NN TO VB NNP IN DT NN IN NNP NNP JJR IN CD NNS RB .\nMr. Kharrazi is due to hold talks with Iraq 's Shi'ite prime minister , Ibrahim al-Jaafari .\tNNP NNP VBZ JJ TO VB NNS IN NNP POS JJ JJ NN , NNP NNP .\nHe also will meet with his Iraqi counterpart , Hoshyar Zebari .\tPRP RB MD VB IN PRP$ JJ NN , NNP NNP .\nIraq 's new prime minister and several members of his Shi'ite-dominated government have close ties with the Islamic regime in mainly Shi'ite Iran .\tNNP POS JJ JJ NN CC JJ NNS IN PRP$ JJ NN VBP JJ NNS IN DT JJ NN IN RB NNP NNP .\nUnder Saddam Hussein , Iraq fought a devastating eight-year war with Iran , and more than a million people were killed .\tIN NNP NNP , NNP VBD DT JJ JJ NN IN NNP , CC JJR IN DT CD NNS VBD VBN .\nAfghan authorities say two suicide bombers have killed three people and wounded eight in the southern city of Kandahar .\tJJ NNS VBP CD NN NNS VBP VBN CD NNS CC VBD CD IN DT JJ NN IN NNP .\nOne of the attackers killed a former factional commander , Agha Shah , and two bystanders outside Agha Shah 's house .\tCD IN DT NNS VBD DT JJ JJ NN , NNP NNP , CC CD NNS IN NNP NNP POS NN .\nLater , a second bomber blew himself up , but caused no other casualties , when police ordered him to stop near the main U.S. military base in Kandahar .\tRB , DT JJ NN VBD PRP RP , CC VBD DT JJ NNS , WRB NNS VBD PRP TO VB IN DT JJ NNP JJ NN IN NNP .\nThere have been two other suicide bombings in the Afghan city in less than a week , one against British officials and the other targeting Canadian troops .\tEX VBP VBN CD JJ NN NNS IN DT JJ NN IN JJR IN DT NN , CD IN JJ NNS CC DT JJ VBG JJ NNS .\nMeanwhile , the U.S. military says an American soldier was killed and another wounded Sunday during fighting with insurgents in Zabul province .\tRB , DT NNP NN VBZ DT JJ NN VBD VBN CC DT VBN NNP IN VBG IN NNS IN NNP NN .\nSeparately , a U.S. military helicopter made a hard landing and caught fire during an anti-militant operation in eastern Afghanistan .\tRB , DT NNP JJ NN VBD DT JJ NN CC VBD NN IN DT JJ NN IN JJ NNP .\nThe helicopter was destroyed , but all onboard escaped unhurt .\tDT NN VBD VBN , CC DT RB VBN NN .\nThe U.S. government is expressing doubts about a threat posted on the Internet which warns officials in seven U.S. cities about a dirty bomb attack on professional football stadiums in the coming days .\tDT NNP NN VBZ VBG NNS IN DT NN VBN IN DT NN WDT VBZ NNS IN CD NNP NNS IN DT JJ NN NN IN JJ NN NNS IN DT JJ NNS .\nThe U.S. Department of Homeland Security said Wednesday the threat was being viewed ' with strong skepticism , ' but that an alert was being issued ' out of an abundance of caution . '\tDT NNP NNP IN NNP NNP VBD NNP DT NN VBD VBG VBN `` IN JJ NN , `` CC IN DT NN VBD VBG VBN `` IN IN DT NN IN NN . ``\nAuthorities say the threat was posted on an Internet web site and mentions National Football League , or NFL , stadiums in New York , Miami , Atlanta , Seattle , Houston , Oakland and Cleveland .\tNNS VBP DT NN VBD VBN IN DT NNP NN NN CC NNS NNP NNP NNP , CC NNP , NNS IN NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nOfficials , however , say people are strongly encouraged to continue to go about their plans , including attending events that involve large public gatherings such as football games .\tNNS , RB , VBP NNS VBP RB VBN TO VB TO VB IN PRP$ NNS , VBG VBG NNS WDT VBP JJ JJ NNS JJ IN NN NNS .\nTony Lama Co. said that Equus Investment II Limited Partnership has proposed changing the offer for the company to $ 13.65 in cash and stock from an all-cash transaction .\tNNP NNP NNP VBD IN NNP NNP NNP NNP NNP VBZ VBN VBG DT NN IN DT NN TO $ CD IN NN CC NN IN DT JJ NN .\nUnder terms of the new proposal , Equus , managed by Equus Capital Corp. , Houston , would pay $ 12 cash and one new preferred share with a liquidation preference of $ 1.65 a share for each of Tony Lama 's 2.1 million shares outstanding .\tIN NNS IN DT JJ NN , NNP , VBN IN NNP NNP NNP , NNP , MD VB $ CD NN CC CD JJ VBN NN IN DT NN NN IN $ CD DT NN IN DT IN NNP NNP POS CD CD NNS JJ .\nPreviously , it offered $ 13.65 a share in cash , or $ 29 million .\tRB , PRP VBD $ CD DT NN IN NN , CC $ CD CD .\nThe El~Paso , Texas , maker of Western boots and leather accessories said the preferred stock would accrue dividends at a 12 % rate , but would n't be paid for the first two years .\tDT NNP , NNP , NN IN NNP NNS CC NN NNS VBD DT JJ NN MD VB NNS IN DT CD NN NN , CC MD RB VB VBN IN DT JJ CD NNS .\nThe stock would be redeemed in five years , subject to terms of the surviving company 's debt .\tDT NN MD VB VBN IN CD NNS , JJ TO NNS IN DT VBG NN POS NN .\nNeither Equus nor Tony Lama gave a reason for the changed offer and Tony Lama could n't be reached for comment .\tDT NNP CC NNP NNP VBD DT NN IN DT VBN NN CC NNP NNP MD RB VB VBN IN NN .\nHowever , Tony Lama said it would promptly submit the offer to a special committee of the company 's board .\tRB , NNP NNP VBD PRP MD RB VB DT NN IN DT JJ NN IN DT NN POS NN .\nDutch traders landed at the southern tip of modern day South Africa in 1652 and established a stopover point on the spice route between the Netherlands and the Far East , founding the city of Cape Town .\tJJ NNS VBD IN DT JJ NN IN JJ NN NNP NNP IN CD CC VBD DT NN NN IN DT NN NN IN DT NNP CC DT NNP NNP , VBG DT NN IN NNP NNP .\nAfter the British seized the Cape of Good Hope area in 1806 , many of the Dutch settlers ( the Boers ) trekked north to found their own republics .\tIN DT NNS VBD DT NNP IN NNP NNP NN IN CD , NN IN DT JJ NNS LRB DT NNS RRB VBD NN TO VBD PRP$ JJ NNS .\nThe discovery of diamonds ( 1867 ) and gold ( 1886 ) spurred wealth and immigration and intensified the subjugation of the native inhabitants .\tDT NN IN NNS LRB CD RRB CC NN LRB CD RRB VBN NN CC NN CC VBD DT NN IN DT JJ NNS .\nThe Boers resisted British encroachments but were defeated in the Boer War ( 1899 - 1902 ) ; however , the British and the Afrikaners , as the Boers became known , ruled together beginning in 1910 under the Union of South Africa , which became a republic in 1961 after a whites-only referendum .\tDT NNS VBD JJ NNS CC VBD VBN IN DT NNP NNP LRB CD : CD RRB ; RB , DT JJ CC DT NNPS , IN DT NNS VBD VBN , VBD RB VBG IN CD IN DT NNP IN NNP NNP , WDT VBD DT NN IN CD IN DT JJ NN .\nIn 1948 , the National Party was voted into power and instituted a policy of apartheid - the separate development of the races - which favored the white minority at the expense of the black majority .\tIN CD , DT NNP NNP VBD VBN IN NN CC VBD DT NN IN NN IN DT JJ NN IN DT NNS : WDT VBD DT JJ NN IN DT NN IN DT JJ NN .\nThe African National Congress ( ANC ) led the opposition to apartheid and many top ANC leaders , such as Nelson MANDELA , spent decades in South Africa 's prisons .\tDT NNP NNP NNP LRB NNP RRB VBD DT NN TO NN CC JJ JJ NNP NNS , JJ IN NNP NNP , VBD NNS IN NNP NNP POS NNS .\nInternal protests and insurgency , as well as boycotts by some Western nations and institutions , led to the regime 's eventual willingness to negotiate a peaceful transition to majority rule .\tNNP NNS CC NN , RB RB IN NNS IN DT JJ NNS CC NNS , VBD TO DT NN POS JJ NN TO VB DT JJ NN TO NN NN .\nThe first multi-racial elections in 1994 brought an end to apartheid and ushered in majority rule under an ANC-led government .\tDT JJ JJ NNS IN CD VBD DT NN TO NN CC VBD IN NN NN IN DT JJ NN .\nSouth Africa since then has struggled to address apartheid-era imbalances in decent housing , education , and health care .\tNNP NNP IN RB VBZ VBN TO VB JJ NNS IN JJ NN , NN , CC NN NN .\nANC infighting , which has grown in recent years , came to a head in September 2008 when President Thabo MBEKI resigned , and Kgalema MOTLANTHE , the party 's General-Secretary , succeeded him as interim president .\tNNP NN , WDT VBZ VBN IN JJ NNS , VBD TO DT NN IN NNP CD WRB NNP NNP NNP VBD , CC NNP NNP , DT NN POS JJ , VBD PRP IN JJ NN .\nJacob ZUMA became president after the ANC won general elections in April 2009 .\tNNP NNP VBD NN IN DT NNP VBD JJ NNS IN NNP CD .\nIn January 2011 , South Africa assumed a nonpermanent seat on the UN Security Council for the 2011 - 12 term .\tIN NNP CD , NNP NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD : CD NN .\nThe SANTOS administration has highlighted five ' locomotives ' to stimulate economic growth : extractive industries ; agriculture ; infrastructure ; housing ; and innovation .\tDT NNP NN VBZ VBN CD `` NNS `` TO VB JJ NN IN JJ NNS ; NN ; NN ; NN ; CC NN .\nColombia is third largest exporter of oil to the United States .\tNNP VBZ JJ JJS NN IN NN TO DT NNP NNPS .\nPresident SANTOS , inaugurated in August 2010 , introduced unprecedented legislation to better distribute extractive industry royalties and compensate Colombians who lost their land due to decades of violence .\tNNP NNP , VBD IN NNP CD , VBN JJ NN TO RB VB JJ NN NNS CC VB NNPS WP VBD PRP$ NN JJ TO NNS IN NN .\nHe also seeks to build on improvements in domestic security and on President URIBE 's promarket economic policies .\tPRP RB VBZ TO VB IN NNS IN JJ NN CC IN NNP NNP POS NN JJ NNS .\nForeign direct investment reached a record $ 10 billion in 2008 , but dropped to $ 7.2 billion in 2009 , before beginning to recover in 2010 , notably in the oil sector .\tJJ JJ NN VBD DT NN $ CD CD IN CD , CC VBD TO $ CD CD IN CD , IN VBG TO VB IN CD , RB IN DT NN NN .\nPro-business reforms in the oil and gas sectors and export-led growth , fueled mainly by the Andean Trade Promotion and Drug Eradication Act , have enhanced Colombia 's investment climate .\tNN NNS IN DT NN CC NN NNS CC JJ NN , VBN RB IN DT NNP NNP NNP CC NNP NNP NNP , VBP VBN NNP POS NN NN .\nInequality , underemployment , and narcotrafficking remain significant challenges , and Colombia 's infrastructure requires major improvements to sustain economic expansion .\tNNP , NN , CC VBG VBP JJ NNS , CC NNP POS NN VBZ JJ NNS TO VB JJ NN .\nBecause of the global financial crisis and weakening demand for Colombia 's exports , Colombia 's economy grew only 2.7 % in 2008 , and 0.8 % in 2009 but rebounded to around 4.4 % in 2010 .\tIN IN DT JJ JJ NN CC VBG NN IN NNP POS NNS , NNP POS NN VBD RB CD NN IN CD , CC CD NN IN CD CC VBD TO IN CD NN IN CD .\nIn late 2010 , Colombia experienced its most severe flooding in decades , with damages estimated to exceed $ 6 billion .\tIN JJ CD , NNP VBD PRP$ RBS JJ NN IN NNS , IN NNS VBN TO VB $ CD CD .\nThe government has encouraged exporters to diversify their customer base beyond the United States and Venezuela , traditionally Colombia 's largest trading partners ; the SANTOS administration continues to pursue free trade agreements with Asian and South American partners and a trade accord with Canada is expected to go into effect in 2011 , while a negotiated trade agreement with the EU has yet to be approved by the EU parliament .\tDT NN VBZ VBN NNS TO VB PRP$ NN NN IN DT NNP NNPS CC NNP , RB NNP POS JJS NN NNS ; DT NNP NN VBZ TO VB JJ NN NNS IN JJ CC JJ JJ NNS CC DT NN NN IN NNP VBZ VBN TO VB IN NN IN CD , IN DT JJ NN NN IN DT NNP VBZ RB TO VB VBN IN DT NNP NN .\nImproved relations with Venezuela have eased worries about restrictions on bilateral trade , but the business sector remains concerned about the pending US Congressional approval of the US-Colombia Trade Promotion Agreement .\tJJ NNS IN NNP VBP VBN NNS IN NNS IN JJ NN , CC DT NN NN VBZ JJ IN DT VBG NNP NNP NN IN DT NNP NNP NNP NNP .\nThe Arctic Ocean is the smallest of the world 's five oceans ( after the Pacific Ocean , Atlantic Ocean , Indian Ocean , and the recently delimited Southern Ocean ) .\tDT NNP NNP VBZ DT JJS IN DT NN POS CD NNS LRB IN DT NNP NNP , NNP NNP , NNP NNP , CC DT RB VBN NNP NNP RRB .\nThe Northwest Passage ( US and Canada ) and Northern Sea Route ( Norway and Russia ) are two important seasonal waterways .\tDT NNP NN LRB NNP CC NNP RRB CC NNP NNP NNP LRB NNP CC NNP RRB VBP CD JJ JJ NNS .\nIn recent years the polar ice pack has thinned allowing for increased navigation and raising the possibility of future sovereignty and shipping disputes among countries bordering the Arctic Ocean .\tIN JJ NNS DT JJ NN NN VBZ VBN VBG IN VBN NN CC VBG DT NN IN JJ NN CC NN NNS IN NNS VBG DT NNP NNP .\nJersey and the other Channel Islands represent the last remnants of the medieval Dukedom of Normandy that held sway in both France and England .\tNNP CC DT JJ NNP NNP VBP DT JJ NNS IN DT JJ NN IN NNP WDT VBD NN IN DT NNP CC NNP .\nThese islands were the only British soil occupied by German troops in World War II . Jersey is a British crown dependency but is not part of the UK or of the European Union .\tDT NNS VBD DT JJ JJ NN VBN IN JJ NNS IN NNP NNP NNP . NNP VBZ DT JJ NN NN CC VBZ RB NN IN DT NNP CC IN DT NNP NNP .\nHowever , the UK Government is constitutionally responsible for its defense and international representation .\tRB , DT NNP NNP VBZ RB JJ IN PRP$ NN CC JJ NN .\nIn 1603 , after decades of civil warfare , the Tokugawa shogunate ( a military-led , dynastic government ) ushered in a long period of relative political stability and isolation from foreign influence .\tIN CD , IN NNS IN JJ NN , DT NNP NN LRB DT JJ , JJ NN RRB VBD IN DT JJ NN IN JJ JJ NN CC NN IN JJ NN .\nFor more than two centuries this policy enabled Japan to enjoy a flowering of its indigenous culture .\tIN JJR IN CD NNS DT NN VBD NNP TO VB DT NN IN PRP$ JJ NN .\nJapan opened its ports after signing the Treaty of Kanagawa with the US in 1854 and began to intensively modernize and industrialize .\tNNP VBD PRP$ NNS IN VBG DT NNP IN NNP IN DT NNP IN CD CC VBD TO RB VB CC VB .\nDuring the late 19th and early 20th centuries , Japan became a regional power that was able to defeat the forces of both China and Russia .\tIN DT JJ JJ CC JJ JJ NNS , NNP VBD DT JJ NN WDT VBD JJ TO VB DT NNS IN DT NNP CC NNP .\nIt occupied Korea , Formosa ( Taiwan ) , and southern Sakhalin Island .\tPRP VBD NNP , NNP LRB NNP RRB , CC JJ NNP NNP .\nIn 1931 - 32 Japan occupied Manchuria , and in 1937 it launched a full-scale invasion of China .\tIN CD IN CD NNP JJ NNP , CC IN CD PRP VBD DT JJ NN IN NNP .\nJapan attacked US forces in 1941 - triggering America 's entry into World War II - and soon occupied much of East and Southeast Asia .\tNNP VBD NNP NNS IN CD : VBG NNP POS NN IN NNP NNP NNP : CC RB JJ NN IN NNP CC NNP NNP .\nAfter its defeat in World War II , Japan recovered to become an economic power and an ally of the US .\tIN PRP$ NN IN NNP NNP NNP , NNP VBD TO VB DT JJ NN CC DT NN IN DT NNP .\nWhile the emperor retains his throne as a symbol of national unity , elected politicians hold actual decision-making power .\tIN DT NN VBZ PRP$ NN IN DT NN IN JJ NN , VBN NNS VBP JJ JJ NN .\nFollowing three decades of unprecedented growth , Japan 's economy experienced a major slowdown starting in the 1990s , but the country remains a major economic power .\tVBG CD NNS IN JJ NN , NNP POS NN VBD DT JJ NN VBG IN DT NNS , CC DT NN VBZ DT JJ JJ NN .\nIn March 2011 , Japan 's strongest-ever earthquake , and an accompanying tsunami , devastated the northeast part of Honshu island , killing thousands and damaging several nuclear power plants .\tIN NNP CD , NNP POS JJ NN , CC DT JJ NN , VBD DT NN NN IN NNP NN , VBG NNS CC VBG JJ JJ NN NNS .\nThe catastrophe hobbled the country 's economy and its energy infrastructure , and severely strained its capacity to deal with the humanitarian disaster .\tDT NN VBD DT NN POS NN CC PRP$ NN NN , CC RB VBD PRP$ NN TO VB IN DT JJ NN .\nNiger became independent from France in 1960 and experienced single-party and military rule until 1991 , when Gen. Ali SAIBOU was forced by public pressure to allow multiparty elections , which resulted in a democratic government in 1993 .\tNNP VBD JJ IN NNP IN CD CC VBD JJ CC JJ NN IN CD , WRB NNP NNP NNP VBD VBN IN JJ NN TO VB JJ NNS , WDT VBD IN DT JJ NN IN CD .\nPolitical infighting brought the government to a standstill and in 1996 led to a coup by Col. Ibrahim BARE .\tJJ NN VBD DT NN TO DT NN CC IN CD VBD TO DT NN IN NNP NNP NNP .\nIn 1999 , BARE was killed in a counter coup by military officers who restored democratic rule and held elections that brought Mamadou TANDJA to power in December of that year .\tIN CD , NNP VBD VBN IN DT NN NN IN JJ NNS WP VBD JJ NN CC VBD NNS WDT VBD NNP NNP TO NN IN NNP IN DT NN .\nTANDJA was reelected in 2004 and in 2009 spearheaded a constitutional amendment that would allow him to extend his term as president .\tNNP VBD VBN IN CD CC IN CD VBD DT JJ NN WDT MD VB PRP TO VB PRP$ NN IN NN .\nIn February 2010 , a military coup deposed TANDJA , immediately suspended the constitution and dissolved the Cabinet , and promised that elections would be held following a transitional period of unspecified duration .\tIN NNP CD , DT JJ NN VBN NNP , RB VBD DT NN CC VBD DT NNP , CC VBD IN NNS MD VB VBN VBG DT JJ NN IN JJ NN .\nNiger is one of the poorest countries in the world with minimal government services and insufficient funds to develop its resource base .\tNNP VBZ CD IN DT JJS NNS IN DT NN IN JJ NN NNS CC JJ NNS TO VB PRP$ NN NN .\nThe largely agrarian and subsistence-based economy is frequently disrupted by extended droughts common to the Sahel region of Africa .\tDT RB JJ CC JJ NN VBZ RB VBN IN JJ NNS JJ TO DT NNP NN IN NNP .\nA predominately Tuareg ethnic group emerged in February 2007 , the Nigerien Movement for Justice , and attacked several military targets in Niger 's northern region throughout 2007 and 2008 .\tDT RB JJ JJ NN VBD IN NNP CD , DT NNP NNP IN NNP , CC VBD JJ JJ NNS IN NNP POS JJ NN IN CD CC CD .\nSuccessful government offensives in 2009 limited the rebels ' operational capabilities .\tJJ NN NNS IN CD VBD DT NNS POS JJ NNS .\nA DOG lay in a manger , and by his growling and snapping prevented the oxen from eating the hay which had been placed for them .\tDT NN VBD IN DT NN , CC IN PRP$ NN CC VBG VBD DT NNS IN VBG DT NN WDT VBD VBN VBN IN PRP .\n' What a selfish Dog ! ' said one of them to his companions ; ' he can not eat the hay himself , and yet refuses to allow those to eat who can . '\t`` WP DT JJ NN . `` VBD CD IN PRP TO PRP$ NNS ; `` PRP MD RB VB DT NN PRP , CC RB VBZ TO VB DT TO VB WP MD . ``\nTHE BEASTS of the field and forest had a Lion as their king .\tDT NNS IN DT NN CC NN VBD DT NN IN PRP$ NN .\nHe was neither wrathful , cruel , nor tyrannical , but just and gentle as a king could be .\tPRP VBD RB JJ , JJ , CC JJ , CC RB CC VB IN DT NN MD VB .\nDuring his reign he made a royal proclamation for a general assembly of all the birds and beasts , and drew up conditions for a universal league , in which the Wolf and the Lamb , the Panther and the Kid , the Tiger and the Stag , the Dog and the Hare , should live together in perfect peace and amity .\tIN PRP$ NN PRP VBD DT JJ NN IN DT JJ NN IN PDT DT NNS CC NNS , CC VBD RP NNS IN DT JJ NN , IN WDT DT NN CC DT NN , DT NN CC DT NN , DT NN CC DT NN , DT NN CC DT NN , MD VB RB IN JJ NN CC NN .\nThe Hare said , ' Oh , how I have longed to see this day , in which the weak shall take their place with impunity by the side of the strong . '\tDT NN VBD , `` UH , WRB PRP VBP VBN TO VB DT NN , IN WDT DT JJ MD VB PRP$ NN IN NN IN DT NN IN DT JJ . ``\nAnd after the Hare said this , he ran for his life .\tCC IN DT NN VBD DT , PRP VBD IN PRP$ NN .\nAn Eagle swooped down upon a Serpent and seized it in his talons with the intention of carrying it off and devouring it .\tDT NN VBD RP IN DT NN CC VBD PRP IN PRP$ NNS IN DT NN IN VBG PRP RP CC VBG PRP .\nBut the Serpent was too quick for him and had its coils round him in a moment ; and then there ensued a life-and-death struggle between the two .\tCC DT NN VBD RB JJ IN PRP CC VBD PRP$ NNS VBP PRP IN DT NN ; CC RB EX VBD DT JJ NN IN DT CD .\nA countryman , who was a witness of the encounter , came to the assistance of the eagle , and succeeded in freeing him from the Serpent and enabling him to escape .\tDT NN , WP VBD DT NN IN DT NN , VBD TO DT NN IN DT NN , CC VBD IN VBG PRP IN DT NN CC VBG PRP TO VB .\nIn revenge , the Serpent spat some of his poison into the man 's drinking-horn .\tIN NN , DT NN VBD DT IN PRP$ NN IN DT NN POS NN .\nHeated with his exertions , the man was about to slake his thirst with a draught from the horn , when the Eagle knocked it out of his hand , and spilled its contents upon the ground .\tVBN IN PRP$ NNS , DT NN VBD RB TO VB PRP$ NN IN DT NN IN DT NN , WRB DT NN VBD PRP IN IN PRP$ NN , CC VBD PRP$ NNS IN DT NN .\n' One good turn deserves another . '\t`` CD JJ NN VBZ DT . ``\nHAVING been summoned to serve as a juror , a Prominent Citizen sent a physician 's certificate stating that he was afflicted with softening of the brain .\tVBG VBN VBN TO VB IN DT NN , DT JJ NN VBD DT NN POS NN VBG IN PRP VBD VBN IN NN IN DT NN .\n' The gentleman is excused , ' said the Judge , handing back the certificate to the person who had brought it , ' he has a brain . '\t`` DT NN VBZ VBN , `` VBD DT NN , VBG RB DT NN TO DT NN WP VBD VBN PRP , `` PRP VBZ DT NN . ``\nMy housecat went down to the local military recruiting depot to sign up for the service .\tPRP$ NN VBD RB TO DT JJ JJ NN NN TO VB RP IN DT NN .\nHe came back about two hours later and sadly explained that he could n't enlist because he would have to be ' de-furred ' .\tPRP VBD RB IN CD NNS RB CC RB VBD IN PRP MD RB VB IN PRP MD VB TO VB `` JJ `` .\nU.S. Secretary of State Condoleezza Rice has met with Egyptian President Hosni Mubarak for talks on democracy in Egypt and regional issues .\tNNP NNP IN NNP NNP NNP VBZ VBN IN JJ NNP NNP NNP IN NNS IN NN IN NNP CC JJ NNS .\nThe two met in the southern Egyptian city of Aswan Sunday .\tDT CD VBD IN DT JJ JJ NN IN NNP NNP .\nFollowing their talks , Rice voiced concern about Monday 's referendum to include tough anti-terrorism laws in Egypt 's constitution .\tVBG PRP$ NNS , NNP VBD NN IN NNP POS NN TO VB JJ NN NNS IN NNP POS NN .\nOpposition groups say the amendments would be a setback for basic freedoms in Egypt and strengthen the ruling party 's grip on power .\tNN NNS VBP DT NNS MD VB DT NN IN JJ NNS IN NNP CC VB DT VBG NN POS NN IN NN .\nEgyptian Foreign Minister Ahmed Abul Gheit , who also met with Rice , defended the proposed laws , saying Egypt 's security is its own responsibility .\tJJ NNP NNP NNP NNP NNP , WP RB VBD IN NNP , VBD DT VBN NNS , VBG NNP POS NN VBZ PRP$ JJ NN .\nRice also discussed regional issues with the Egyptian officials and said she appreciates Egypt 's support in the Israeli-Palestinian peace process .\tNNP RB VBD JJ NNS IN DT JJ NNS CC VBD PRP VBZ NNP POS NN IN DT JJ NN NN .\nNorth Korea 's defense minister is promising retaliation against tough new U.N. sanctions put in place following its missile and nuclear tests .\tNNP NNP POS NN NN VBZ VBG NN IN JJ JJ NNP NNS VBN IN NN VBG PRP$ NN CC JJ NNS .\nNorth Korean state media reported Sunday that Kim Yong-Chun said Pyongyang would deal ' unimaginably deadly blows ' at the United States and South Korea if they attack the communist nation .\tJJ JJ NN NNS VBD NNP IN NNP NNP VBD NNP MD VB `` RB JJ NNS `` IN DT NNP NNPS CC NNP NNP IN PRP VBP DT JJ NN .\nKim was speaking at a public meeting held on the eve of the anniversary of the armistice that ended the Korean War on July 27 , 1953 .\tNNP VBD VBG IN DT JJ NN VBN IN DT NN IN DT NN IN DT NN WDT VBD DT JJ NNP IN NNP CD , CD .\nIn a separate announcement , North Korea repeated its routine denunciations of an upcoming U.S. and South Korean military exercise , saying the maneuvers ' lay bare the black-hearted aim ' lurking behind the ' talk of dialogue . '\tIN DT JJ NN , NNP NNP VBD PRP$ NN NNS IN DT JJ NNP CC NNP JJ JJ NN , VBG DT NNS `` VBP NN DT JJ NN `` VBG IN DT `` NN IN NN . ``\nWashington and Seoul say they are not planning to invade North Korea .\tNNP CC NNP VBP PRP VBP RB VBG TO VB NNP NNP .\nNorth Korea regularly issues aggressive statements and rhetoric against its neighbors and the U.S.\tNNP NNP RB VBZ JJ NNS CC NN IN PRP$ NNS CC DT NNP\nIsraeli police are investigating the desecration of the graves of slain Prime Minister Yitzhak Rabin and his wife , Leah .\tJJ NNS VBP VBG DT NN IN DT NNS IN NN NNP NNP NNP NNP CC PRP$ NN , NNP .\nPolice said Monday the words ' murderous dog ' were written with black paint on the tomb of Mr. Rabin , who was assassinated in 1995 by a Jewish extremist for his land-for-peace deals with the Palestinians .\tNNP VBD NNP DT NNS `` JJ NN `` VBD VBN IN JJ NN IN DT NN IN NNP NNP , WP VBD VBN IN CD IN DT JJ NN IN PRP$ NN NNS IN DT NNS .\nLast week , the grave of Theodore Herzl , the founder of the Zionist movement , was defaced with the words ' Neo Nazi Hail Beilin . '\tJJ NN , DT NN IN NNP NNP , DT NN IN DT NNP NN , VBD VBN IN DT NNS `` NNP NNP NNP NNP . ``\nIsrael 's founding father David Ben Gurion 's grave was also desecrated .\tNNP POS NN NN NNP NNP NNP POS NN VBD RB VBN .\nPolice say they suspect right-wing extremists opposed to Israel 's planned withdrawal from the Gaza Strip and four West Bank settlements were responsible for the graveyard vandalism .\tNNS VBP PRP VBP JJ NNS VBN TO NNP POS VBN NN IN DT NNP NNP CC CD NNP NNP NNS VBD JJ IN DT NN NN .\nThe U.S. military has launched a new operation in western Iraq aimed at rooting-out foreign fighters and insurgents in a bid to boost security ahead of the October 15 referendum on the country 's new constitution .\tDT NNP NN VBZ VBN DT JJ NN IN JJ NNP VBN IN NN JJ NNS CC NNS IN DT NN TO VB NN RB IN DT NNP CD NN IN DT NN POS JJ NN .\nThe U.S. military says about 1,000 marines , soldiers and sailors launched the offensive early Saturday in the town of Sadah , near Qaim , about 12 kilometers from the Syrian border .\tDT NNP NN VBZ IN CD NNS , NNS CC NNS VBD DT JJ JJ NNP IN DT NN IN NNP , IN NNP , IN CD NNS IN DT JJ NN .\nMeanwhile , in the northern city of Kirkuk , police say a roadside bomb exploded near one of their patrols , killing at least three officers .\tRB , IN DT JJ NN IN NNP , NNS VBP DT NN NN VBD IN CD IN PRP$ NNS , VBG IN JJS CD NNS .\nAlso Saturday , the U.S. military reports that two American soldiers were killed in separate incidents in Baghdad and Bayji .\tRB NNP , DT NNP NN VBZ IN CD JJ NNS VBD VBN IN JJ NNS IN NNP CC NNP .\nAlso a Danish soldier was killed and two were wounded in the southern city of Basra , where about 500 Danish soldiers are based .\tRB DT JJ NN VBD VBN CC CD VBD VBN IN DT JJ NN IN NNP , WRB IN CD JJ NNS VBP VBN .\nThe West Indies ' cricket team has scored 240-8 on the first day of its second test match against South Africa at Newlands in Cape Town , South Africa .\tDT NNP NNPS POS NN NN VBZ VBN CD IN DT JJ NN IN PRP$ JJ NN NN IN NNP NNP IN NNPS IN NNP NNP , NNP NNP .\nShivnarine Chanderpaul of the West Indies led the visitors with 64 runs while Marlon Samuels added another 51 for the Caribbean squad .\tNNP NNP IN DT NNP NNPS VBD DT NNS IN CD NNS IN NNP NNP VBD DT CD IN DT NNP NN .\nChanderpaul was at the crease for 297 minutes and faced 214 deliveries .\tNNP VBD IN DT NN IN CD NNS CC VBD CD NNS .\nSouth African bowlers Makhaya Ntini and Dale Steyn led the home team with Steyn taking four wickets while allowing 60 runs while Ntini finished at Feb-63 .\tJJ JJ NNS NNP NNP CC NNP NNP VBD DT NN NN IN NNP VBG CD NNS IN VBG CD NNS IN NNP VBD IN CD .\nThe West Indies won the first test of the three-match series by 128 runs in Port Elizabeth .\tDT NNP NNPS VBD DT JJ NN IN DT JJ NNS IN CD NNS IN NNP NNP .\nThe third test starts January 10th in Durban .\tDT JJ NN VBZ NNP CD IN NNP .\nThe two sides will also play five one-day international matches .\tDT CD NNS MD RB VB CD JJ JJ NNS .\nNorth Korea has marked the 60th anniversary of the founding of its ruling party with a mass gathering in the capital .\tNNP NNP VBZ VBN DT JJ NN IN DT NN IN PRP$ VBG NN IN DT NN NN IN DT NN .\nSupreme leader Kim Jong-il presided over the festivities Sunday night at Pyongyang 's May Day Stadium .\tNNP NN NNP NNP VBD IN DT NNS NNP NN IN NNP POS NNP NNP NNP .\nThe ruling Workers ' Party was founded in 1945 by Kim Jong-il 's father the late President Kim il-Sung , shortly after the Korean Peninsula was divided at the end of World War II .\tDT NN NNS POS NN VBD VBN IN CD IN NNP NNP POS NN DT JJ NNP NNP NNP , RB IN DT JJ NNP VBD VBN IN DT NN IN NNP NNP NNP .\nThere was no mention of the country 's nuclear ambitions in speeches during Monday 's celebrations .\tEX VBD DT NN IN DT NN POS JJ NNS IN NNS IN NNP POS NNS .\nNorth Korea agreed last month during six-nation talks in Beijing to abandon its nuclear weapons program in return for economic aid , energy assistance and security assurances .\tNNP NNP VBD JJ NN IN JJ NNS IN NNP TO VB PRP$ JJ NNS NN IN NN IN JJ NN , NN NN CC NN NNS .\nThe fifth round of six-nation talks is scheduled for early next month in Beijing .\tDT JJ NN IN JJ NNS VBZ VBN IN JJ JJ NN IN NNP .\nU.S. military authorities have released 260 people from two detention facilities in Iraq after a security review board determined the detainees no longer pose a threat .\tNNP JJ NNS VBP VBN CD NNS IN CD NN NNS IN NNP IN DT NN NN NN VBD DT NNS RB RB VB DT NN .\nA military spokesman Saturday said the release brings to 9,000 the number of detainees in Iraq who were freed in 2004 .\tDT JJ NN NNP VBD DT NN VBZ TO CD DT NN IN NNS IN NNP WP VBD VBN IN CD .\nHe said about 7,000 prisoners are still being held at Baghdad 's Abu Ghraib prison and Camp Bucca in southern Iraq .\tPRP VBD IN CD NNS VBP RB VBG VBN IN NNP POS NNP NNP NN CC NNP NNP IN JJ NNP .\nMeanwhile , the U.S. military says a Marine was killed in Iraq 's western province of al-Anbar .\tRB , DT NNP NN VBZ DT NN VBD VBN IN NNP POS JJ NN IN NNP .\nThe latest death marked an end to the U.S. military 's deadliest six-month period since the April 2003 invasion - with more than 500 U.S. soldiers killed in the last six months of 2004 .\tDT JJS NN VBD DT NN TO DT NNP NN POS JJS JJ NN IN DT NNP CD NN IN IN JJR IN CD NNP NNS VBN IN DT JJ CD NNS IN CD .\nAlso Saturday , a Lebanese man was killed and another wounded by sniper fire in the U.S. controlled Green Zone .\tRB NNP , DT JJ NN VBD VBN CC DT VBN IN NN NN IN DT NNP JJ NN NNP .\nWorld oil prices have fallen about eight percent from last week 's $ 70 high .\tNNP NN NNS VBP VBN IN CD NN IN JJ NN POS $ CD JJ .\nThe markets are reacting to Friday 's announcement that industrialized nations were releasing emergency reserves to make up for interruptions caused by Hurricane Katrina .\tDT NNS VBP VBG TO NNP POS NN IN JJ NNS VBD VBG NN NNS TO VB RP IN NNS VBN IN NNP NNP .\nIn London Monday , the price of a barrel of crude oil for October delivery dropped to $ 64.7 , falling nearly $ 1.5 from Friday 's close .\tIN NNP NNP , DT NN IN DT NN IN JJ NN IN NNP NN VBD TO $ CD , VBG RB $ CD IN NNP POS NN .\nNew York markets are closed for the Labor Day holiday .\tNNP NNP NNS VBP VBN IN DT NNP NNP NN .\nAnalysts say the release of two million barrels of oil per day from International Energy Agency strategic stockpiles will ease the oil crisis in the United States caused by Katrina .\tNNS VBP DT NN IN CD CD NNS IN NN IN NN IN NNP NNP NNP JJ NNS MD VB DT NN NN IN DT NNP NNPS VBN IN NNP .\nThe devastating hurricane shut down refineries , offshore production , oil imports and shipping throughout the entire U.S. Gulf Coast region .\tDT JJ NN VBD RP NNS , JJ NN , NN NNS CC NN IN DT JJ NNP NNP NNP NN .\nWorld oil prices rebounded in Wednesday 's trading .\tNN NN NNS VBD IN NNP POS NN .\nThe price of a barrel of crude oil for future delivery gained nearly $ 4 to go as high as $ 95 a barrel in New York .\tDT NN IN DT NN IN JJ NN IN JJ NN VBD RB $ CD TO VB RB JJ IN $ CD DT NN IN NNP NNP .\nOil prices had fallen earlier in the week as investors worried that problems in the U.S. financial sector could hurt the economy and slow demand for energy .\tNN NNS VBD VBN RBR IN DT NN IN NNS VBD IN NNS IN DT NNP JJ NN MD VB DT NN CC VB NN IN NN .\nOil buyers were apparently reassured when Washington helped insurance giant AIG and took other actions to calm the markets .\tNN NNS VBD RB VBN WRB NNP VBD NN NN NNP CC VBD JJ NNS TO VB DT NNS .\nOil prices have fallen more than one-third since hitting an all-time high price above $ 147 a barrel in July .\tNN NNS VBP VBN JJR IN NN IN VBG DT JJ JJ NN IN $ CD DT NN IN NNP .\nUnited Nations officials in Somalia say a cargo ship held for nearly 100 days at sea by pirates has finally arrived in port .\tNNP NNP NNS IN NNP VBP DT NN NN VBD IN RB CD NNS IN NN IN NNS VBZ RB VBN IN NN .\nThe MV Semlow and its 10-man crew arrived Monday in the Somali port of El-Maan , one day after the pirates left .\tDT NNP NNP CC PRP$ JJ NN VBD NNP IN DT JJ NN IN NNP , CD NN IN DT NNS VBD .\nIt was towed into port by another cargo ship that had been hijacked several days earlier .\tPRP VBD VBN IN NN IN DT NN NN WDT VBD VBN VBN JJ NNS RBR .\nPirates seized the U.N.-chartered ship on June 27 .\tNNP VBD DT JJ NN IN NNP CD .\nIt carried 850 metric tons of rice donated by Japan and Germany for Somali victims of last year 's tsunami .\tPRP VBD CD JJ NNS IN NN VBN IN NNP CC NNP IN JJ NNS IN JJ NN POS NN .\nThe pirates frequently changed their demands and reneged on agreements with the World Food Program to free the ship .\tDT NNS RB VBD PRP$ NNS CC VBN IN NNS IN DT NNP NNP NNP TO VB DT NN .\nThe vessel will spend the next few days at El-Maan being offloaded before heading back to its home port in Mombasa , Kenya .\tDT NN MD VB DT JJ JJ NNS IN JJ VBG VBN IN VBG RB TO PRP$ NN NN IN NNP , NNP .\nThe International Monetary Fund has sharply lowered its economic forecast and now says the world economy will shrink for the first time in 60 years during 2009 .\tDT NNP NNP NNP VBZ RB VBN PRP$ JJ NN CC RB VBZ DT NN NN MD VB IN DT JJ NN IN CD NNS IN CD .\nAs the report was published Thursday , IMF officials urged governments to do more to fight the downturn .\tIN DT NN VBD VBN NNP , NNP NNS VBD NNS TO VB JJR TO VB DT NN .\nThe global lender said the world economy could shrink as much as one percent .\tDT JJ NN VBD DT NN NN MD VB RB JJ IN CD NN .\nThe IMF study says advanced economies will suffer a ' deep recession , ' with the United States economy declining at a 2.6 percent rate , and Japan falling at a sharp 5.8 percent .\tDT NNP NN VBZ JJ NNS MD VB DT `` JJ NN , `` IN DT NNP NNPS NN VBG IN DT CD NN NN , CC NNP VBG IN DT JJ CD NN .\nThe IMF cut growth projections for emerging and developing countries in half , saying they will expand 2.5 percent or less this year .\tDT NNP NN NN NNS IN VBG CC VBG NNS IN NN , VBG PRP MD VB CD NN CC RBR DT NN .\nThe report predicts a modest economic recovery in 2010 for most nations .\tDT NN VBZ DT JJ JJ NN IN CD IN JJS NNS .\nThis global economic forecast is sharply lower than the IMF 's projections issued in January , which predicted slow growth .\tDT JJ JJ NN VBZ RB JJR IN DT NNP POS NNS VBN IN NNP , WDT VBD JJ NN .\nAustralia 's foreign minister says Japan has agreed to free two anti-whaling activists being held aboard a Japanese whaling vessel in Antarctic waters .\tNNP POS JJ NN VBZ NNP VBZ VBN TO VB CD JJ NNS VBG VBN IN DT JJ NN NN IN NNP NNS .\nForeign Minister Stephen Smith told Australia 's national radio early Wednesday that Japan has not yet handed the men back to their own ship .\tNNP NNP NNP NNP VBD NNP POS JJ NN RB NNP IN NNP VBZ RB RB VBN DT NNS RB TO PRP$ JJ NN .\nSmith added that Australian police are investigating whether there had been any unlawful activity .\tNNP VBD IN JJ NNS VBP VBG IN EX VBD VBN DT JJ NN .\nJapanese crewmembers seized the men - an Australian and a Briton - Tuesday when they boarded a vessel belonging to Japan 's Institute for Cetacean Research .\tJJ NNS VBD DT NNS IN DT NN CC DT NN IN NNP WRB PRP VBD DT NN VBG TO NNP POS NNP IN NNP NNP .\nThe Japanese research institute says the men attacked their vessel with bottles of acid after illegally boarding it .\tDT JJ NN NN VBZ DT NNS VBD PRP$ NN IN NNS IN NN IN RB VBG PRP .\nAn Australian court issued a ruling earlier Tuesday that bans Japanese whaling in an area near Antarctica that Australia has designated a whale sanctuary .\tDT JJ NN VBD DT NN RBR NNP WDT VBZ JJ NN IN DT NN IN NNP IN NNP VBZ VBN DT NN NN .\nJapan does not recognize the sanctuary and has said it will ignore any such injunction .\tNNP VBZ RB VB DT NN CC VBZ VBN PRP MD VB DT JJ NN .\nThe United States and China have reportedly reached a tentative agreement on imported Chinese textiles .\tDT NNP NNPS CC NNP VBP RB VBN DT JJ NN IN VBN JJ NNS .\nNews reports in the Washington Post and by Bloomberg Business News cite unnamed sources who say negotiators have agreed to allow U.S. imports of Chinese textile and apparel products to increase up to 10 percent in 2006 and 16 percent in 2007 .\tNNP NNS IN DT NNP NNP CC IN NNP NNP NNP VBP JJ NNS WP VBP NNS VBP VBN TO VB NNP NNS IN JJ NN CC NN NNS TO VB RP TO CD NN IN CD CC CD NN IN CD .\nWhile the accord is not yet complete , the sources say the agreement could be signed as soon as next week .\tIN DT NN VBZ RB RB JJ , DT NNS VBP DT NN MD VB VBN RB RB IN JJ NN .\nWashington and Beijing have been trying for a comprehensive agreement on Chinese exports that compete with U.S. made clothing and textiles .\tNNP CC NNP VBP VBN VBG IN DT JJ NN IN JJ NNS WDT VBP IN NNP VBD NN CC NNS .\nThe issue flared because of a surge in Chinese exports to the United States after textile quotas were lifted at the start of the year .\tDT NN VBD IN IN DT NN IN JJ NNS TO DT NNP NNPS IN JJ NNS VBD VBN IN DT NN IN DT NN .\nThe United States and Mexico have announced a plan to coordinate law enforcement efforts to stop drug trafficking and related violence along the border between the two countries .\tDT NNP NNPS CC NNP VBP VBN DT NN TO VB NN NN NNS TO VB NN NN CC JJ NN IN DT NN IN DT CD NNS .\nU.S. Attorney General Alberto Gonzales and his Mexican counterpart Daniel Cabeza de Vaca spoke to reporters about the new plan Thursday in San Antonio , Texas .\tNNP NNP NNP NNP NNP CC PRP$ JJ NN NNP NNP NNP NNP VBD TO NNS IN DT JJ NN NNP IN NNP NNP , NNP .\nThey said the plan includes improved communication , including regular meetings , between law enforcement officials in Mexico and the United States .\tPRP VBD DT NN VBZ VBN NN , VBG JJ NNS , IN NN NN NNS IN NNP CC DT NNP NNPS .\nIt also calls for the United States to provide training and technical assistance to Mexico .\tPRP RB VBZ IN DT NNP NNPS TO VB NN CC JJ NN TO NNP .\nThe two men also pledged to work together to provide prompt responses to threats from violent criminal organizations against officials , victims and witnesses .\tDT CD NNS RB VBD TO VB RB TO VB JJ NNS TO NNS IN JJ JJ NNS IN NNS , NNS CC NNS .\nThe US-Mexican border region has seen escalating drug-related violence in recent years .\tDT JJ NN NN VBZ VBN VBG JJ NN IN JJ NNS .\nAn international media rights group says Burma 's military government has been harassing journalists since anti-government demonstrations in September .\tDT JJ NNS NNS NN VBZ NNP POS JJ NN VBZ VBN VBG NNS IN JJ NNS IN NNP .\nReporters Without Borders said Wednesday police continue to search for journalists and activists who photographed and filmed the crackdown on the demonstrations led by Buddhist monks .\tNNS IN NNS VBD NNP NNS VBP TO VB IN NNS CC NNS WP VBD CC VBD DT NN IN DT NNS VBN IN NNP NNS .\nIt says at least nine journalists have fled to Thailand , and at least three others have been arrested and are still being held .\tPRP VBZ IN JJS CD NNS VBP VBN TO VB , CC IN JJS CD NNS VBP VBN VBN CC VBP RB VBG VBN .\nThe group said that while privately-owned media in Burma has resumed publishing , the country 's Censorship Board has stepped up its controls .\tDT NN VBD IN IN JJ NNS IN NNP VBZ VBN NN , DT NN POS NN NNP VBZ VBN RP PRP$ NNS .\nIt also says the government is strictly controlling the sales of foreign publications and that surveillance at Internet cafes has increased .\tPRP RB VBZ DT NN VBZ RB VBG DT NNS IN JJ NNS CC DT NN IN NNP NNS VBZ VBN .\nThe Burmese government detained thousands of protesters during the September pro-democracy demonstrations .\tDT JJ NN VBD NNS IN NNS IN DT NNP JJ NNS .\nBurma says 15 people died in the protests but the United Nations puts the figure at 31 .\tNNP VBZ CD NNS VBD IN DT NNS CC DT NNP NNPS VBZ DT NN IN CD .\nZambian officials have discovered more than 40 dead wild birds in the southern city of Livingstone , and have asked residents who ate any meat from the birds to report for medical examinations .\tJJ NNS VBP VBN RBR IN CD JJ JJ NNS IN DT JJ NN IN NNP , CC VBP VBN NNS WP VBP DT NN IN DT NNS TO VB IN JJ NNS .\nThe chief veterinary officer in the southern tourist town , Jack Shoko , said he sent samples of the dead birds to the capital of Lusaka to be tested for bird flu .\tDT NN JJ NN IN DT JJ NN NN , NNP NNP , VBD PRP VBD NNS IN DT JJ NNS TO DT NN IN NNP TO VB VBN IN NN NN .\nZambia has not yet reported any cases of bird flu in animals or humans .\tNNP VBZ RB RB VBN DT NNS IN NN NN IN NNS CC NNS .\nIn March , the government banned poultry imports .\tIN NNP , DT NN VBD JJ NNS .\nThe World Health Organization says the bird flu virus can not be contracted by eating cooked poultry .\tDT NNP NNP NNP VBZ DT NN NN NN MD RB VB VBN IN VBG VBN NN .\nBut it warns people should not eat improperly cooked meat in areas where there are outbreaks of the virus .\tCC PRP VBZ NNS MD RB VB RB VBN NN IN NNS WRB EX VBP NNS IN DT NN .\nTwo African countries , Egypt and Djibouti , have confirmed cases of bird flu in humans this year .\tCD JJ NNS , NNP CC NNP , VBP VBN NNS IN NN NN IN NNS DT NN .\nIran says Israel should return the disputed Golan Heights to Syria unconditionally .\tNNP VBZ NNP MD VB DT JJ NNP NNPS TO NNP RB .\nIranian Foreign Minister Manouchehr Mottaki says Israel is in no position to set conditions on the return of the Golan Heights .\tJJ NNP NNP NNP NNP VBZ NNP VBZ IN DT NN TO VB NNS IN DT NN IN DT NNP NNP .\nIsrael captured the strategic plateau from Syria during the 1967 Six-Day war .\tNNP VBD DT JJ NN IN NNP IN DT CD JJ NN .\nMottaki also called for Israel to pull out of the Palestinian territories .\tNNP RB VBD IN NNP TO VB IN IN DT JJ NNS .\nIsrael and Syria recently confirmed they are holding indirect peace talks mediated by Turkey , eight years after U.S.-mediated peace negotiations between Syria and Israel collapsed over the fate of the Golan Heights .\tNNP CC NNP RB VBD PRP VBP VBG JJ NN NNS VBN IN NNP , CD NNS IN JJ NN NNS IN NNP CC NNP VBD IN DT NN IN DT NNP NNP .\nIsraeli Prime Minister Ehud Olmert has said his government is prepared to make substantial concessions for peace with Syria .\tJJ NNP NNP NNP NNP VBZ VBN PRP$ NN VBZ VBN TO VB JJ NNS IN NN IN NNP .\nHe has not specified the nature of those concessions .\tPRP VBZ RB VBN DT NN IN DT NNS .\nSyrian Foreign Minister Walid Muallem said Wednesday that Israel has expressed a willingness to return the Golan Heights .\tJJ NNP NNP NNP NNP VBD NNP IN NNP VBZ VBN DT NN TO VB DT NNP NNP .\nThe United States has expressed concern over an escalation in violence in Sudan 's troubled Darfur region , after rebels captured a southern village .\tDT NNP NNPS VBZ VBN NN IN DT NN IN NN IN NNP POS JJ NNP NN , IN NNS VBD DT JJ NN .\nA State Department spokesman said Wednesday both rebels and the government-backed militia have contributed to the increase in violence in Darfur .\tDT NNP NNP NN VBD NNP DT NNS CC DT JJ NN VBP VBN TO DT NN IN NN IN NNP .\nHe said African Union cease-fire monitors are critical to bringing the situation under control .\tPRP VBD NNP NNP NN NNS VBP JJ TO VBG DT NN IN NN .\nMonday , the rebel Sudan Liberation Movement violated a cease-fire and launched a surprise attack on the town of Sheiria .\tNNP , DT NN NNP NNP NNP VBD DT NN CC VBD DT NN NN IN DT NN IN NNP .\nThe Sudanese government has threatened to retake the town .\tDT JJ NN VBZ VBN TO VB DT NN .\nRebels have also recently accused the government-backed militia of incursions into rebel-held territory .\tNNS VBP RB RB VBN DT JJ NN IN NNS IN JJ NN .\nThe violence comes during a sixth round of African Union-sponsored peace talks between Darfur rebel groups and the Sudanese government .\tDT NN VBZ IN DT JJ NN IN JJ JJ NN NNS IN NNP NN NNS CC DT JJ NN .\nAU officials said the renewed fighting could mar the talks and urged both sides to exercise restraint .\tNNP NNS VBD DT VBN NN MD VB DT NNS CC VBD DT NNS TO VB NN .\nIraqi police say eight people were killed and 10 others wounded Thursday in a bomb attack on a Sunni political party 's office in Baquba , north of Baghdad .\tJJ NNS VBP CD NNS VBD VBN CC CD NNS VBN NNP IN DT NN NN IN DT NNP JJ NN POS NN IN NNP , NN IN NNP .\nPolice say the bomb exploded inside the headquarters of the Reform and Development Party in Diyala province around the time that some party members were holding a meeting .\tNNS VBP DT NN VBD IN DT NN IN DT NN CC NNP NNP IN NNP NN IN DT NN IN DT NN NNS VBD VBG DT NN .\nIn western Iraq , police say a suicide bomber blew up his vehicle , killing at least five people and wounding 15 others .\tIN JJ NNP , NNS VBP DT NN NN VBD RP PRP$ NN , VBG IN JJS CD NNS CC VBG CD NNS .\nAuthorities say the attack happened close to a police station in al-Qaim near the Iraq-Syria border .\tNNS VBP DT NN VBD RB TO DT NN NN IN JJ IN DT NNP NN .\nA police official said multiple houses collapsed after the bomb exploded , and several civilians are trapped under the rubble .\tDT NN NN VBD JJ NNS VBD IN DT NN VBD , CC JJ NNS VBP VBN IN DT NN .\nViolence in Iraq has dropped sharply during the past year , but attacks increased in the weeks leading up to and following the June 30 withdrawal of U.S. combat troops from Iraqi cities .\tNN IN NNP VBZ VBN RB IN DT JJ NN , CC NNS VBD IN DT NNS VBG RP TO CC VBG DT NNP CD NN IN NNP NN NNS IN JJ NNS .\nHundreds of supporters of former Pakistani Prime Minister Nawaz Sharif are protesting a court ruling that bans him from running for parliament in this week 's by-election .\tNNS IN NNS IN JJ JJ NNP NNP NNP NNP VBP VBG DT NN NN WDT VBZ PRP IN VBG IN NN IN DT NN POS NN .\nThe protesters , who burned effigies , gathered outside parliament in Islamabad Tuesday .\tDT NNS , WP VBD NNS , VBD JJ NN IN NNP NNP .\nThey blame President Pervez Musharraf for the court 's decision .\tPRP VBP NNP NNP NNP IN DT NN POS NN .\nPrime Minister Yousuf Raza Gilani says the government will challenge the court 's decision .\tNNP NNP NNP NNP NNP VBZ DT NN MD VB DT NN POS NN .\nThe Lahore High Court ruled Monday that Mr. Sharif is not qualified to run in Thursday 's election because of convictions related to his overthrow in a 1999 military coup .\tDT NNP NNP NNP VBD NNP IN NNP NNP VBZ RB VBN TO VB IN NNP POS NN IN IN NNS VBN TO PRP$ NN IN DT CD JJ NN .\nThe decision prevents him from running for prime minister .\tDT NN VBZ PRP IN VBG IN JJ NN .\nIn 1999 , Mr. Sharif allegedly ordered the hijacking of a commercial plane carrying Mr. Musharraf , who was then the army chief .\tIN CD , NNP NNP RB VBD DT NN IN DT JJ NN VBG NNP NNP , WP VBD RB DT NN NN .\nThe former prime minister faced charges related to the incident .\tDT JJ JJ NN VBD NNS VBN TO DT NN .\nHe has denied the allegations .\tPRP VBZ VBN DT NNS .\nHaitian President-elect Rene Preval is in Cuba Thursday , for a visit that will include talks with Cuban President Fidel Castro .\tJJ NNP NNP NNP VBZ IN NNP NNP , IN DT NN WDT MD VB NNS IN JJ NNP NNP NNP .\nThe president-elect is traveling with a delegation that includes several members of his future government .\tDT NN VBZ VBG IN DT NN WDT VBZ JJ NNS IN PRP$ JJ NN .\nMr. Preval was elected in February and is due to take office next month .\tNNP NNP VBD VBN IN NNP CC VBZ JJ TO VB NN JJ NN .\nThe Associated Press quotes a Haitian government spokesman as saying that the two leaders are expected to discuss Cuban aid for Haiti .\tDT NNP NNP VBZ DT JJ NN NN IN VBG IN DT CD NNS VBP VBN TO VB JJ NN IN NNP .\nMr. Preval was president of Haiti from 1996 to 2001 .\tNNP NNP VBD NN IN NNP IN CD TO CD .\nDuring that time , ties between Cuba and Haiti were warmer .\tIN DT NN , NNS IN NNP CC NNP VBD JJR .\nBut relations have suffered since a U.S.-backed interim government was appointed to replace former Haitian president Jean-Bertrand Aristide , who was ousted by a revolt in 2004 .\tCC NNS VBP VBN IN DT JJ JJ NN VBD VBN TO VB JJ JJ NN NNP NNP , WP VBD VBN IN DT NN IN CD .\nAt least five people have died in grass fires tearing across the southern U.S. states of Oklahoma and Texas .\tIN JJS CD NNS VBP VBN IN NN NNS VBG IN DT JJ NNP NNS IN NNP CC NNP .\nDrought , high winds , and low humidity have helped spread the flames .\tNNP , JJ NNS , CC JJ NN VBP VBN VB DT NNS .\nOfficials in Texas say the fires have destroyed more than 100 buildings in their state , some three-quarters of them private homes .\tNNS IN NNP VBP DT NNS VBP VBN RBR IN CD NNS IN PRP$ NN , DT NNS IN PRP JJ NNS .\nAt least two of the deaths were women who could not escape as flames overcame their houses .\tIN JJS CD IN DT NNS VBD NNS WP MD RB VB IN NNS VBP PRP$ NNS .\nAuthorities said Wednesday that decreased winds and slightly cooler temperatures helped firefighters check the spread of the flames .\tNNS VBD NNP WDT JJ NNS CC RB JJR NNS VBD NNS VB DT NN IN DT NNS .\nBut weather forecasts for the next few days show more low humidity and little chance of rain .\tCC NN NNS IN DT JJ JJ NNS VBP JJR JJ NN CC JJ NN IN NN .\nTexas governor Rick Perry has declared the fires a disaster and dispatched National Guard troops to help battle the blazes .\tNNP NN NNP NNP VBZ VBN DT NNS DT NN CC VBD NNP NNP NNS TO VB VB DT NNS .\nVenezuela 's Supreme Court has ruled that an opposition-aligned television station can keep operating through cable systems for now .\tNNP POS NNP NNP VBZ VBN IN DT JJ NN NN MD VB VBG IN NN NNS IN RB .\nThe court Wednesday suspended an order by the telecommunications commission that would have forced RCTV International to stop transmitting its programs if it did not register with the government , and follow regulations that would require it to interrupt regular programming for speeches by President Hugo Chavez .\tDT NN NNP VBD DT NN IN DT NNS NN WDT MD VB VBN NNP NNP TO VB VBG PRP$ NNS IN PRP VBD RB VB IN DT NN , CC VB NNS WDT MD VB PRP TO VB JJ NN IN NNS IN NNP NNP NNP .\nRCTV began showing its programs via cable and satellite last month .\tNNP VBD VBG PRP$ NNS IN NN CC NN JJ NN .\nIt was forced to stop regular over-the - air broadcasting by President Chavez in May .\tPRP VBD VBN TO VB JJ JJ : NN NN IN NNP NNP IN NNP .\nMr. Chavez refused to renew RCTV 's license to broadcast on a public frequency for allegedly backing a failed coup against him in 2002 .\tNNP NNP VBD TO VB NNP POS NN TO VB IN DT JJ NN IN RB VBG DT VBN NN IN PRP IN CD .\nRCTV denies the accusations .\tNNP VBZ DT NNS .\nOther national private networks also opposed Mr. Chavez , but their criticism of the government is now softer and they have kept their licenses .\tJJ JJ JJ NNS RB VBD NNP NNP , CC PRP$ NN IN DT NN VBZ RB JJR CC PRP VBP VBN PRP$ NNS .\nThe United States has condemned the jailing of a former member of Syria 's parliament and has demanded his immediate release .\tDT NNP NNPS VBZ VBN DT NN IN DT JJ NN IN NNP POS NN CC VBZ VBN PRP$ JJ NN .\nTom Casey , a U.S. State Department spokesman , expressed concern Tuesday about Riad Seif , who was arrested Monday as part of a crackdown against opposition activists .\tNNP NNP , DT NNP NNP NNP NN , VBD NN NNP IN NNP NNP , WP VBD VBN NNP IN NN IN DT NN IN NN NNS .\nIn August , the State Department urged Syria to allow Seif to travel outside the country to receive urgent medical treatment .\tIN NNP , DT NNP NNP VBD NNP TO VB NNP TO VB IN DT NN TO VB JJ JJ NN .\nA spokesman said Syria denies freedom of movement to hundreds of its citizens who peacefully question the political system under which they live .\tDT NN VBD NNP VBZ NN IN NN TO NNS IN PRP$ NNS WP RB VBP DT JJ NN IN WDT PRP VBP .\nPresident Bush issued a statement in December calling on Syria to release hundreds of opposition activists jailed for their political beliefs .\tNNP NNP VBD DT NN IN NNP VBG IN NNP TO VB NNS IN NN NNS VBN IN PRP$ JJ NNS .\nSince December , at least 10 opposition activists have been detained by Syrian authorities .\tIN NNP , IN JJS CD NN NNS VBP VBN VBN IN JJ NNS .\nPresident Bush has again defended Defense Secretary Donald Rumsfeld from critics who are calling for his resignation .\tNNP NNP VBZ RB VBN NNP NNP NNP NNP IN NNS WP VBP VBG IN PRP$ NN .\nMr. Bush said at the White House Tuesday , that Rumsfeld is doing a ' fine ' job .\tNNP NNP VBD IN DT NNP NNP NNP , IN NNP VBZ VBG DT `` JJ `` NN .\nSeveral retired generals have recently called for Rumsfeld 's resignation , faulting his leadership and accusing him of making a series of major errors in the Iraq war .\tJJ JJ NNS VBP RB VBN IN NNP POS NN , VBG PRP$ NN CC VBG PRP IN VBG DT NN IN JJ NNS IN DT NNP NN .\nOn Friday , President Bush said in a statement that Rumsfeld 's energetic and steady leadership is what the country needs at this critical period .\tIN NNP , NNP NNP VBD IN DT NN IN NNP POS JJ CC JJ NN VBZ WP DT NN VBZ IN DT JJ NN .\nIn a radio interview Monday , Rumsfeld dismissed the generals ' criticism .\tIN DT NN NN NNP , NNP VBD DT NNS POS NN .\nHe also said he was pleased that two retired generals have come to his defense - former Army General Tommy Franks , who executed the 2003 Iraq invasion , and former Chairman of the Joint Chiefs of Staff Richard Myers .\tPRP RB VBD PRP VBD VBN IN CD JJ NNS VBP VBN TO PRP$ NN IN JJ NNP NNP NNP NNP , WP VBD DT CD NNP NN , CC JJ NNP IN DT NNP NNP IN NNP NNP NNP .\nFormer Argentine President Carlos Menem has been charged with fraud in connection with a contract awarded to a local subsidiary of a French defense company .\tJJ JJ NNP NNP NNP VBZ VBN VBN IN NN IN NN IN DT NN VBN TO DT JJ NN IN DT JJ NN NN .\nMr. Menem 's government awarded a concession to electronics firm Thales Spectrum in the 1990s to oversee the South American country 's broadcast frequencies .\tNNP NNP POS NN VBD DT NN TO NNS JJ NNPS NNP IN DT NNS TO VB DT NNP NNP NN POS NN NNS .\nBut the contract was canceled by Mr. Menem 's successor , Nestor Kirchner , after allegations of irregularities surfaced .\tCC DT NN VBD VBN IN NNP NNP POS NN , NNP NNP , IN NNS IN NNS VBD .\nA document released Monday by a federal judge accuses Mr. Menem of actions that undermined the interests of the state .\tDT NN VBN NNP IN DT JJ NN VBZ NNP NNP IN NNS WDT VBD DT NNS IN DT NN .\nProsecutors also are investigating whether officials in Mr. Menem 's government received bribes from Thales Spectrum .\tNNS RB VBP VBG IN NNS IN NNP NNP POS NN VBD NNS IN NNP NNP .\nMenem 's lawyer denounced the charges as politically motivated .\tNNP POS NN VBD DT NNS IN RB VBN .\nThe 78-year-old former president , now a senator , is already on trial for allegedly being involved in the illegal sale of weapons to Ecuador and Croatia between 1991 and 1995 .\tDT JJ JJ NN , RB DT NN , VBZ RB IN NN IN RB VBG VBN IN DT JJ NN IN NNS TO NNP CC NNP IN CD CC CD .\nHe faces up to 12 years in prison if convicted .\tPRP VBZ RP TO CD NNS IN NN IN VBN .\nOfficials in Benin say tests have confirmed the presence of the deadly H5N1 bird flu virus on two poultry farms .\tNNS IN NNP VBP NNS VBP VBN DT NN IN DT JJ NNP NN NN NN IN CD JJ NNS .\nAgriculture Minister Roger Dovonou says tests from a laboratory in Italy confirmed the virus has struck one farm in the city of Cotonou and another in the town of Adjarra , outside the capital Porto Novo .\tNNP NNP NNP NNP VBZ NNS IN DT NN IN NNP VBD DT NN VBZ VBN CD NN IN DT NN IN NNP CC DT IN DT NN IN NNP , IN DT NN NNP NNP .\nBenin reported its first suspected cases of bird flu on December 7th .\tNNP VBD PRP$ JJ JJ NNS IN NN NN IN NNP CD .\nWorkers slaughtered several hundred chickens at the two farms as a precautionary measure , and also disinfected the sites .\tNNS VBD JJ CD NNS IN DT CD NNS IN DT JJ NN , CC RB VBD DT NNS .\nH5N1 mainly affects birds but is capable of infecting humans .\tNNP RB VBZ NNS CC VBZ JJ IN VBG NNS .\nThe virus has killed more than 200 people around the world , mostly in Asia , since 2003 .\tDT NN VBZ VBN JJR IN CD NNS IN DT NN , RB IN NNP , IN CD .\nSeveral west African countries have reported cases of the virus .\tJJ JJ JJ NNS VBP VBN NNS IN DT NN .\nBenin 's neighbor Nigeria reported the area 's first human fatality from H5N1 early this year .\tNNP POS NN NNP VBD DT NN POS JJ JJ NN IN NNP RB DT NN .\nHundreds of mourners have gathered in Vienna to say good-bye to Nazi hunter Simon Wiesenthal , who died Tuesday at the age of 96 .\tNNS IN NNS VBP VBN IN NNP TO VB NN TO NNP NNP NNP NNP , WP VBD NNP IN DT NN IN CD .\nDiplomats and political leaders , including Austrian Chancellor Wolfgang Scheussel , packed into a hall at the city 's Central Cemetery for the ceremony .\tNNS CC JJ NNS , VBG JJ NNP NNP NNP , VBD IN DT NN IN DT NN POS NNP NNP IN DT NN .\nMr. Wiesenthal will be buried Friday in Israel .\tNNP NNP MD VB VBN NNP IN NNP .\nTributes to the Holocaust survivor have poured in from leaders around the world .\tNNS TO DT NNP NN VBP VBN IN IN NNS IN DT NN .\nPresident Bush called him a tireless advocate for justice .\tNNP NNP VBD PRP DT JJ NN IN NN .\nUnited Nations Secretary-General Kofi Annan said Mr. Wiesenthal proved there can be no immunity from prosecution for genocide .\tNNP NNP NNP NNP NNP VBD NNP NNP VBD EX MD VB DT NN IN NN IN NN .\nMr. Wiesenthal was born in present-day Ukraine and was an architect before he was sent to a Nazi concentration camp .\tNNP NNP VBD VBN IN JJ NNP CC VBD DT NN IN PRP VBD VBN TO DT JJ NN NN .\nAfter U.S. forces freed him in 1945 , he spent the rest of his life pursuing escaped Nazi war criminals , including the mastermind of the Holocaust , Adolf Eichmann .\tIN NNP NNS VBD PRP IN CD , PRP VBD DT NN IN PRP$ NN NN VBD NNP NN NNS , VBG DT NN IN DT NNP , NNP NNP .\nProtests have erupted around the world against Israel 's bombardment of Lebanon and military action in the Gaza Strip .\tNNS VBP VBN IN DT NN IN NNP POS NN IN NNP CC JJ NN IN DT NNP NNP .\nThousands of Egyptians gathered at Cairo 's al-Azhar Mosque , waving Lebanese and Palestinian flags and chanting support to Hezbollah - the militant group that is the focus of Israel 's attacks .\tNNS IN NNS VBD IN NNP POS JJ NN , VBG JJ CC JJ NNS CC VBG NN TO NNP IN DT JJ NN WDT VBZ DT NN IN NNP POS NNS .\nTwo thousand protesters also marched through the Jordanian capital of Amman and called on Hezbollah to destroy the Israeli city of Haifa .\tCD CD NNS RB VBD IN DT JJ NN IN NNP CC VBN IN NNP TO VB DT JJ NN IN NNP .\nThousands of people also took to the streets of Yemen to support the Lebanese and Palestinian people .\tNNS IN NNS RB VBD TO DT NNS IN NNP TO VB DT JJ CC JJ NNS .\nSeveral other protests were held across South Asia , in India Kashmir , cities across Pakistan and the Bangladeshi capital of Dhaka .\tJJ JJ NNS VBD VBN IN NNP NNP , IN NNP NNP , NNS IN NNP CC DT JJ NN IN NNP .\nDemonstrators also have taken to the streets in Venezuela and El Salvador .\tNNS RB VBP VBN TO DT NNS IN NNP CC NNP NNP .\nAnd in Moscow , Russians gathered outside the Israeli embassy to protest the escalating violence .\tCC IN NNP , NNS VBD IN DT JJ NN TO VB DT VBG NN .\nA new report says U.S. home prices continued to fall in August , declining five percent over the past year .\tDT JJ NN VBZ NNP NN NNS VBD TO VB IN NNP , VBG CD NN IN DT JJ NN .\nTuesday 's report from Standard & Poors and Case-Shiller tracks home prices in cities across the United States .\tNNP POS NN IN NNP CC NNP CC NNP VBZ NN NNS IN NNS IN DT NNP NNPS .\nThe housing sector 's problems have been made worse by defaults among subprime borrowers .\tDT NN NN POS NNS VBP VBN VBN JJR IN NNS IN JJ NNS .\nThat has prompted investors to avoid lending even to well-qualified borrowers .\tDT VBZ VBN NNS TO VB NN RB TO JJ NNS .\nEconomists tell journalists that they are worried falling home prices will make homeowners curb spending .\tNNS VBP NNS IN PRP VBP JJ VBG NN NNS MD VB NNS VB NN .\nConsumer demand drives about two-thirds of U.S. economic activity , so declining consumer spending raises the risk of recession .\tNN NN VBZ IN NNS IN NNP JJ NN , RB VBG NN NN VBZ DT NN IN NN .\nThe risk of a shrinking economy is one of many things that top officials from the U.S. central bank , known as the Federal Reserve , are considering as they decide whether to cut interest rates to boost the economy .\tDT NN IN DT VBG NN VBZ CD IN JJ NNS WDT VBP NNS IN DT NNP JJ NN , VBN IN DT NNP NNP , VBP VBG IN PRP VBP IN TO VB NN NNS TO VB DT NN .\nThey are scheduled to announce a decision on Wednesday .\tPRP VBP VBN TO VB DT NN IN NNP .\nNobel laureate and former U.S. Vice President Al Gore has endorsed fellow Democrat , Senator Barack Obama , for president .\tNNP NN CC JJ NNP NNP NNP NNP NNP VBZ VBN JJ NNP , NNP NNP NNP , IN NN .\nGore told supporters Monday at a rally in Detroit , Michigan , that Obama is the candidate to lead the country toward a better future .\tNNP VBD NNS NNP IN DT NN IN NNP , NNP , IN NNP VBZ DT NN TO VB DT NN IN DT JJR NN .\nGore said that over the next four years , the United States will face many challenges such as bringing American troops home from Iraq , fixing the economy and solving the climate crisis .\tNNP VBD IN IN DT JJ CD NNS , DT NNP NNPS MD VB JJ NNS JJ IN VBG JJ NNS NN IN NNP , VBG DT NN CC VBG DT NN NN .\nHe said Obama is the candidate best able to solve these problems and bring change to America .\tPRP VBD NNP VBZ DT NN RB JJ TO VB DT NNS CC VB NN TO NNP .\nGore won the Nobel Peace prize last year for his campaign against global warming .\tNNP VBD DT NNP NNP NN JJ NN IN PRP$ NN IN JJ NN .\nPeople across southern Asia have paused to remember the powerful Indian Ocean earthquake and tsunami that occurred one month ago Wednesday .\tNNS IN JJ NNP VBP VBN TO VB DT JJ NNP NNP NN CC NN WDT VBD CD NN IN NNP .\nThousands of Sri Lankans observed a minute of silence , and the Tamil Tiger rebels declared a day of mourning .\tNNS IN NNP NNS VBD DT NN IN NN , CC DT NNP NNP NNS VBD DT NN IN NN .\nIn Indonesia 's hard-hit Banda Aceh province , teachers and students opened their first day of classes since the tragedy with prayers for missing friends .\tIN NNP POS JJ NNP NNP NN , NNS CC NNS VBD PRP$ JJ NN IN NNS IN DT NN IN NNS IN VBG NNS .\nA senior USAID official tells VOA that aid workers continue to focus on survivors ' emergency needs , but says there are signs that relief efforts have begun moving into a rehabilitation phase .\tDT JJ NNP NN VBZ NNP IN NN NNS VBP TO VB IN NNS POS NN NNS , CC VBZ EX VBP NNS IN NN NNS VBP VBN VBG IN DT NN NN .\nThe Oxfam international charity says the response to the disaster has been so overwhelming that some aid groups are conducting relief work without the necessary experience or skills .\tDT NNP JJ NN VBZ DT NN TO DT NN VBZ VBN RB JJ IN DT NN NNS VBP VBG NN NN IN DT JJ NN CC NNS .\nIsrael has suspended its offensive into the Gaza Strip following a lull in rocket attacks by Palestinian militants .\tNNP VBZ VBN PRP$ NN IN DT NNP NNP VBG DT NN IN NN NNS IN JJ NNS .\nIsraeli security officials said Sunday the operation , which included a series of airstrikes on weapons factories , storage facilities and launching areas , achieved its goal of weakening militants ' ability to attack Israel from Gaza .\tJJ NN NNS VBD NNP DT NN , WDT VBD DT NN IN NNS IN NNS NNS , NN NNS CC NN NNS , VBD PRP$ NN IN VBG NNS POS NN TO VB NNP IN NNP .\nBut the officials say the military is ready to restart the operation if the rocket fire resumes .\tCC DT NNS VBP DT NN VBZ JJ TO VB DT NN IN DT NN NN VBZ .\nThe fighting erupted after an explosion at a Gaza rally by the Islamic group Hamas killed 21 people on September 23rd .\tDT NN VBD IN DT NN IN DT NNP NN IN DT NNP NN NNP VBD CD NNS IN NNP CD .\nHamas blames Israel for the blast , even though Palestinian officials say the explosion was caused by the mishandling of explosives .\tNNP VBZ NNP IN DT NN , RB IN JJ NNS VBP DT NN VBD VBN IN DT NN IN NNS .\nHamas fired dozens of rockets into southern Israeli towns after the blast .\tNNP VBD NNS IN NNS IN JJ JJ NNS IN DT NN .\nFrench officials say rioters burned cars and shot at police while protesting the police shooting of a man accused of robbing a casino .\tJJ NNS VBP NNS VBD NNS CC VBD IN NN IN VBG DT NN NN IN DT NN VBN IN VBG DT NN .\nThe riot erupted late Friday night in the southeastern city of Grenoble .\tDT NN VBD JJ NNP NN IN DT JJ NN IN NNP .\nOfficials said the rioters also torched shops and attacked a streetcar ( tramway ) line .\tNNS VBD DT NNS RB VBD NNS CC VBD DT NN LRB NN RRB NN .\nPolice said some rioters also shot at officers and that they returned fire .\tNNS VBD DT NNS RB VBD IN NNS CC IN PRP VBD NN .\nThe French newspaper Le Monde says the youths started their rampage after hearing a Muslim imam give a ceremony for an alleged robber , who died Thursday night after being chased by police and exchanging gunfire .\tDT JJ NN NNP NNP VBZ DT NNS VBD PRP$ NN IN VBG DT NN NN VBP DT NN IN DT JJ NN , WP VBD NNP NN IN VBG VBN IN NNS CC VBG NN .\nTyphoon Longwang is swirling toward mainland China after pounding Taiwan Sunday , leaving one person dead , one missing , and 46 injured while disrupting flights and downing power lines .\tNNP NNP VBZ VBG IN JJ NNP IN VBG NNP NNP , VBG CD NN JJ , CD JJ , CC CD NN IN VBG NNS CC VBG NN NNS .\nOfficials say a 60-year-old man died after he was hit by flying debris .\tNNS VBP DT JJ NN VBD IN PRP VBD VBN IN VBG NN .\nA woman is missing and feared dead after being washed away by flash floods in the central town of Hoping .\tDT NN VBZ VBG CC VBD JJ IN VBG VBN RB IN NN NNS IN DT JJ NN IN NNP .\nAuthorities say most of the injuries were caused by flying debris .\tNNS VBP JJS IN DT NNS VBD VBN IN VBG NN .\nTaiwan 's Central Weather Bureau said the typhoon made landfall early Sunday and left in the afternoon .\tNNP POS NNP NNP NNP VBD DT NN VBD NN JJ NNP CC VBD IN DT NN .\nThe foreign ministry says the storm interrupted Taiwan President Chen Shui-bian 's flight home from a two-week trip abroad .\tDT JJ NN VBZ DT NN JJ NNP NNP NNP NNP POS NN NN IN DT JJ NN RB .\nOfficials said he landed on the Indonesian island of Bali Sunday rather than fly to Taiwan .\tNNS VBD PRP VBD IN DT JJ NN IN NNP NNP RB IN VB TO NNP .\nThe ministry says the president will stay in Bali until the weather clears in Taiwan .\tDT NN VBZ DT NN MD VB IN NNP IN DT NN VBZ IN NNP .\nA top U.S. State Department official is traveling to Ecuador , Colombia and Peru to discuss security cooperation , governance and human rights .\tDT JJ NNP NNP NNP NN VBZ VBG TO NNP , NNP CC NNP TO VB NN NN , NN CC JJ NNS .\nThe State Department says Arturo Valenzuela , the U.S. assistant secretary of state for Western Hemisphere affairs , departs Sunday on the week-long trip .\tDT NNP NNP VBZ NNP NNP , DT NNP NN NN IN NN IN NNP NNP NNS , VBZ NNP IN DT JJ NN .\nIt says Valenzuela will meet with students at a university in Ecuador , the University Tecnica Particular de Loja , and deliver a speech on U.S. foreign policy at the Latin American Faculty for Social Sciences .\tPRP VBZ NNP MD VB IN NNS IN DT NN IN NNP , DT NNP NNP NNP NNP NNP , CC VB DT NN IN NNP JJ NN IN DT JJ JJ NN IN NNP NNPS .\nWhile in Colombia , he is to give a speech in Bogota at the Universidad de los Andes , and participate in the World Economic Forum in Cartagena .\tIN IN NNP , PRP VBZ TO VB DT NN IN NNP IN DT NNP NNP NNP NNP , CC VB IN DT NNP NNP NNP IN NNP .\nIn Peru , the last stop of the trip , he is to meet with government officials and political and economic analysts , and visit alternative development projects .\tIN NNP , DT JJ NN IN DT NN , PRP VBZ TO VB IN NN NNS CC JJ CC JJ NNS , CC VB JJ NN NNS .\nTriple Olympic champion Janica Kostelic of Croatia has won her first ever World Cup downhill title in Bad Kleinkirchheim , Austria .\tNNP NNP NN NNP NNP IN NNP VBZ VBN PRP$ JJ RB NNP NNP NN NN IN NNP NNP , NNP .\nKostelic finished the 2,633-meter Franz Klammer course in 0.068472222 minutes , 0.17 seconds ahead of Sweden 's Nike Bent .\tNNP VBD DT JJ NNP NNP NN IN CD NNS , CD NNS RB IN NNP POS NNP NNP .\nMichaela Dorfmeister of Austria was third ( 1.38.53 ) .\tNNP NNP IN NNP VBD JJ LRB CD RRB .\nBefore Saturday , Kostelic had never done better in World Cup downhills than two second-place finishes last year .\tIN NNP , NNP VBD RB VBN RBR IN NNP NNP VBZ IN CD JJ NNS JJ NN .\nThe victory strengthened the 24-year-old Croatian 's hold on the World Cup overall lead .\tDT NN VBD DT JJ JJ POS NN IN DT NNP NNP JJ NN .\nKostelic has 882 points after 17 events , 197 points ahead of Sweden 's Anja Paerson .\tNNP VBZ CD NNS IN CD NNS , CD NNS RB IN NNP POS NNP NNP .\nDorfmeister is third with 650 points .\tNNP VBZ JJ IN CD NNS .\nThe U.S. Senate has approved more than $ 81 billion to sustain combat operations in Iraq and Afghanistan .\tDT NNP NNP VBZ VBN JJR IN $ CD CD TO VB NN NNS IN NNP CC NNP .\nThis would push the total cost of combat and reconstruction beyond $ 300 billion .\tDT MD VB DT JJ NN IN NN CC NN IN $ CD CD .\nThe U.S. House of Representatives passed a similar bill last month .\tDT NNP NNP IN NNPS VBD DT JJ NN JJ NN .\nThe two bills differ mainly on two issues - immigration reforms and plans of construction of a new embassy in Baghdad .\tDT CD NNS VBP RB IN CD NNS IN NN NNS CC NNS IN NN IN DT JJ NN IN NNP .\nThe Senate has included $ 592 million for the embassy , but the House has not .\tDT NNP VBZ VBN $ CD CD IN DT NN , CC DT NNP VBZ RB .\nOnce the differences between the two versions are worked out , it will go to President Bush for his signature .\tRB DT NNS IN DT CD NNS VBP VBN RP , PRP MD VB TO NNP NNP IN PRP$ NN .\nBoth versions of the measure would give President Bush much of the money he requested .\tDT NNS IN DT NN MD VB NNP NNP NN IN DT NN PRP VBD .\nU.S. Democratic Party officials say President-elect Barack Obama has chosen a former congressman and Clinton White House chief of staff to lead the Central Intelligence Agency .\tNNP NNP NNP NNS VBP JJ NNP NNP VBZ VBN DT JJ NN CC NNP NNP NNP NN IN NN TO VB DT NNP NNP NNP .\nOfficials say Leon Panetta will be nominated as director of the CIA in the new Obama administration .\tNNS VBP NNP NNP MD VB VBN IN NN IN DT NNP IN DT JJ NNP NN .\nMr. Obama takes office in two weeks , but the nomination must be confirmed by the U.S. Senate .\tNNP NNP VBZ NN IN CD NNS , CC DT NN MD VB VBN IN DT NNP NNP .\nPanetta served as White House chief of staff for former President Bill Clinton .\tNNP VBD IN NNP NNP NN IN NN IN JJ NNP NNP NNP .\nThe former congressman from California was also a member of the Iraq Study Group , a bipartisan commission charged with assessing the situation in Iraq and advising how the United States should proceed there .\tDT JJ NN IN NNP VBD RB DT NN IN DT NNP NNP NNP , DT JJ NN VBN IN VBG DT NN IN NNP CC VBG WRB DT NNP NNPS MD VB RB .\nDemocratic Party officials say Mr. Obama is also expected to name retired U.S. Admiral Dennis Blair as his choice for director of national intelligence .\tNNP NNP NNS VBP NNP NNP VBZ RB VBN TO VB JJ NNP NNP NNP NNP IN PRP$ NN IN NN IN JJ NN .\nAdmiral Blair is the former commander of U.S. forces in the Pacific .\tNNP NNP VBZ DT JJ NN IN NNP NNS IN DT NNP .\nIraqi officials say suicide bombing in the north killed 2 people , including a district council chief .\tJJ NNS VBP NN NN IN DT NN VBD CD NNS , VBG DT NN NN NN .\nPolice say the attacker targeted the local politician 's car Monday in the city of Tal Afar .\tNNS VBP DT NN VBD DT JJ NN POS NN NNP IN DT NN IN NNP NNP .\nOne of the politician 's bodyguards also was killed .\tCD IN DT NN POS NNS RB VBD VBN .\nIn another development , Iraqi authorities say a court has sentenced a deputy minister of transport to eight years in prison for corruption .\tIN DT NN , JJ NNS VBP DT NN VBZ VBN DT NN NN IN NN TO CD NNS IN NN IN NN .\nAdnan al-Obeidi was arrested in September on suspicion of trying to extort half a million dollars from a foreign security company in return for granting it a contract .\tNNP NNP VBD VBN IN NNP IN NN IN VBG TO VB PDT DT CD NNS IN DT JJ NN NN IN NN IN VBG PRP DT NN .\nIraqi officials say the company informed anti-corruption officials about the extortion attempt and worked with authorities to catch al-Obeidi in the act of taking a bribe .\tJJ NNS VBP DT NN VBD JJ NNS IN DT NN NN CC VBD IN NNS TO VB NNP IN DT NN IN VBG DT NN .\nPolice later filmed him demanding $ 1,00,000 as a first installment of the bribe .\tNNS RB VBD PRP VBG $ CD IN DT JJ NN IN DT NN .\nGovernments across the world are evacuating more of their citizens trapped by Israel 's bombardment of Lebanon .\tNNS IN DT NN VBP VBG JJR IN PRP$ NNS VBN IN NNP POS NN IN NNP .\nMany of the evacuees are passing through Cyprus , which has appealed for help in dealing with the thousands of people arriving on the island daily .\tNN IN DT NNS VBP VBG IN NNP , WDT VBZ VBN IN NN IN VBG IN DT NNS IN NNS VBG IN DT NN RB .\nOfficials say more than 25,000 people have so far come to Cyprus .\tNNS VBP JJR IN CD NNS VBP RB RB VBN TO NNP .\nThe United States , France , Britain , Canada , Germany , Australia and India are among the countries organizing evacuations .\tDT NNP NNPS , NNP , NNP , NNP , NNP , NNP CC NNP VBP IN DT NNS VBG NNS .\nMeanwhile , the Geneva-based International Organization for Migration says tens of thousands of migrants from developing countries are stranded in Lebanon .\tRB , DT JJ NNP NNP IN NNP VBZ NNS IN NNS IN NNS IN VBG NNS VBP VBN IN NNP .\nIt says Sri Lanka , the Philippines and Ethiopia are asking for help to get their nationals to Syria and Jordan .\tPRP VBZ NNP NNP , DT NNPS CC NNP VBP VBG IN NN TO VB PRP$ NNS TO NNP CC NNP .\nAnd thousands more Lebanese are heading north from southern Lebanon as Israel presses on with its military action .\tCC NNS JJR NNS VBP VBG RB IN JJ NNP IN NNP VBZ IN IN PRP$ JJ NN .\nIsraeli medical officials say a Lebanese woman wounded in Saturday 's fighting is receiving treatment in a northern Israeli hospital .\tJJ JJ NNS VBP DT JJ NN VBN IN NNP POS NN VBZ VBG NN IN DT JJ JJ NN .\nThousands of women marched in the Democratic Republic of Congo Sunday to demand an end to mass rapes and sexual violence .\tNNS IN NNS VBD IN DT JJ NNP IN NNP NNP TO VB DT NN TO JJ NNS CC JJ NN .\nCongo 's first lady Lembe Kabila led the march through the eastern town of Bukavu .\tNNP POS JJ NN NNP NNP VBD DT NN IN DT JJ NN IN NNP .\nThe United Nations has paid increased attention to the problem of sexual violence in Congo since rebels raped at least 300 people , including some men , during an attack on an eastern village in August .\tDT NNP NNP VBZ VBN VBN NN TO DT NN IN JJ NN IN NNP IN NNS VBD IN JJS CD NNS , VBG DT NNS , IN DT NN IN DT JJ NN IN NNP .\nA later U.N. report acknowledged that U.N. peacekeepers in the area did nothing to stop the rapes .\tDT JJ NNP NN VBD IN NNP NNS IN DT NN VBD DT TO VB DT NNS .\nThe U.N. says about 15,000 rapes are reported in Congo each year .\tDT NNP VBZ IN CD NNS VBP VBN IN NNP DT NN .\nBoth rebel groups and government forces are accused of committing the rapes , as well as killings and other crimes .\tDT NN NNS CC NN NNS VBP VBN IN VBG DT NNS , RB RB IN NNS CC JJ NNS .\nIraqi political leaders are meeting Tuesday for a second round of talks aimed at resolving differences over key points in the Iraqi constitution .\tJJ JJ NNS VBP VBG NNP IN DT JJ NN IN NNS VBN IN VBG NNS IN JJ NNS IN DT JJ NN .\nA draft of the constitution is due Monday , but issues such as federalism , women 's rights , the role of Islam and the country 's official language still need to be agreed upon , raising concerns that the deadline might not be met .\tDT NN IN DT NN VBZ JJ NNP , CC NNS JJ IN NN , NNS POS NNS , DT NN IN NNP CC DT NN POS JJ NN RB VBP TO VB VBN IN , VBG NNS IN DT NN MD RB VB VBN .\nSpeaking at the Pentagon , U.S. Defense Secretary Donald Rumsfeld urged the Iraqis to meet that deadline , saying the constitution could turn out to be a powerful weapon against insurgents .\tVBG IN DT NNP , NNP NNP NNP NNP NNP VBD DT NNS TO VB DT NN , VBG DT NN MD VB RP TO VB DT JJ NN IN NNS .\nMeanwhile , a wave of shooting attacks across Baghdad killed 10 police officers , and a suicide car bomber killed at least three civilians and an American soldier .\tRB , DT NN IN NN NNS IN NNP VBD CD NNS NNS , CC DT NN NN NN VBD IN JJS CD NNS CC DT JJ NN .\nAlso , the U.S. military announced Tuesday that a Marine was shot and killed Monday in Ramadi .\tRB , DT NNP NN VBD NNP IN DT NN VBD VBN CC VBN NNP IN NNP .\nAn American company helping to repatriate the bodies of foreign tsunami victims in Thailand says efforts are being hampered by a lack of coordination .\tDT JJ NN VBG TO VB DT NNS IN JJ NN NNS IN NNP VBZ NNS VBP VBG VBN IN DT NN IN NN .\nKenyon International Emergency Services of Houston , Texas is calling on the governments involved to set up a single coordinated DNA lab to speed up the identification process .\tNNP NNP NNP NNPS IN NNP , NNP VBZ VBG IN DT NNS VBN TO VB RP DT JJ JJ NN NN TO VB RP DT NN NN .\nKenyon president Robert Jensen said Sunday that more than 20 countries are taking part in the identification process , with each using its own DNA methods to process bodies .\tNNP NN NNP NNP VBD NNP IN JJR IN CD NNS VBP VBG NN IN DT NN NN , IN DT VBG PRP$ JJ NN NNS TO VB NNS .\nHe added that DNA laboratories currently being used in Phuket are unable to deal with the overwhelming number of samples being taken .\tPRP VBD IN NNP NNS RB VBG VBN IN NNP VBP JJ TO VB IN DT JJ NN IN NNS VBG VBN .\nHundreds of bodies have been sent back to their home countries since the December 26 disaster , but thousands more remain unidentified .\tNNS IN NNS VBP VBN VBN RB TO PRP$ NN NNS IN DT NNP CD NN , CC NNS JJR VBP JJ .\nTornadoes ripped through the southern U.S. Saturday , killing at least 10 people , including three children .\tNNP VBD IN DT JJ NNP NNP , VBG IN JJS CD NNS , VBG CD NNS .\nDozens of other people were injured .\tNNS IN JJ NNS VBD VBN .\nA tornado more than a kilometer wide tore through central Mississippi , killing residents , destroying homes , blocking highways and knocking out power .\tDT NN JJR IN DT NN JJ NN IN JJ NNP , VBG NNS , VBG NNS , VBG NNS CC VBG RP NN .\nYazoo City was hit the hardest .\tNNP NNP VBD VBN DT JJS .\nMississippi 's governor , Haley Barbour , declared a state of emergency in the affected counties .\tNNP POS NN , NNP NNP , VBD DT NN IN NN IN DT JJ NNS .\nHe directed National Guard troops to help local officials responding to the storms .\tPRP VBD NNP NNP NNS TO VB JJ NNS VBG TO DT NNS .\nTornadoes also struck other southern states .\tNNP RB VBD JJ JJ NNS .\nBosnian authorities say forensic experts have exhumed more than 120 bodies from a mass grave near the town of Zvornik .\tJJ NNS VBP JJ NNS VBP VBN JJR IN CD NNS IN DT NN NN IN DT NN IN NNP .\nOfficials said Friday that 16 complete and 113 incomplete skeletons were found in a village in eastern Bosnia-Herzegovina .\tNNS VBD NNP IN CD JJ CC CD JJ NNS VBD VBN IN DT NN IN JJ NNP .\nThe remains are believed to be those of people killed in the Srebrenica massacre .\tDT NNS VBP VBN TO VB DT IN NNS VBN IN DT NNP NN .\nSerb forces killed an estimated 8,000 Muslim men and boys after capturing Srebrenica , an enclave the United Nations had declared a Muslim safe area .\tJJ NNS VBD DT VBN CD NNP NNS CC NNS IN VBG NNP , DT NN DT NNP NNPS VBD VBN DT NNP JJ NN .\nThe burial site is one of several so-called secondary graves were Bosnian Serbs reburied victims in order to cover up the mass killing .\tDT JJ NN VBZ CD IN JJ JJ JJ NNS VBD JJ NNS VBN NNS IN NN TO VB RP DT NN NN .\nThe massacre is considered an act of genocide and the worst atrocity in Europe since World War II .\tDT NN VBZ VBN DT NN IN NN CC DT JJS NN IN NNP IN NNP NNP NNP .\nAbout 3,000 remains have been identified and reburied .\tIN CD NNS VBP VBN VBN CC VBN .\nThe partial remains of 5,000 more victims are still waiting to be identified .\tDT JJ NNS IN CD JJR NNS VBP RB VBG TO VB VBN .\nPakistani authorities say an unknown gunman has killed three foreign militants in a semi-autonomous tribal region bordering Afghanistan .\tJJ NNS VBP DT JJ NN VBZ VBN CD JJ NNS IN DT JJ JJ NN VBG NNP .\nSecurity officials say the incident occurred Thursday in North Waziristan .\tNN NNS VBP DT NN VBD NNP IN NNP NNP .\nThey say one of the dead is believed to be an Arab and the other two are Uzbeks .\tPRP VBP CD IN DT NN VBZ VBN TO VB DT JJ CC DT JJ CD VBP NNS .\nThe attacker managed to flee the scene .\tDT NN VBD TO VB DT NN .\nIt was not immediately clear who the gunman was or what was his motive .\tPRP VBD RB RB JJ WP DT NN VBD CC WP VBD PRP$ NN .\nBut local government officials say a dispute among the militants could have triggered the shooting .\tCC JJ NN NNS VBP DT NN IN DT NNS MD VB VBN DT NN .\nPakistan 's military has been trying to flush out foreign militants from the region since last March .\tNNP POS NN VBZ VBN VBG TO VB RP JJ NNS IN DT NN IN JJ NNP .\nThe area is also considered a possible hideout for al-Qaida leader Osama bin Laden .\tDT NN VBZ RB VBN DT JJ NN IN NNP NN NNP NNP NNP .\nA prominent Somali peace activist has been killed by unknown gunmen at his home in the capital , Mogadishu .\tDT JJ JJ NN NN VBZ VBN VBN IN JJ NNS IN PRP$ NN IN DT NN , NNP .\nThe victim , Abdulkadir Yahya Ali , was a co-founder of a think tank , the Center for Research and Dialogue , considered one of the most effective NGOs in Somalia .\tDT NN , NNP NNP NNP , VBD DT NN IN DT NN NN , DT NNP IN NNP CC NNP , VBD CD IN DT RBS JJ NNS IN NNP .\nThe co-director of the center , Jabril Ibrahim Abdulle , told Voice of America reporter William Eagle that the assailants raided Mr. Abdulkadir 's home , tied up the security guards , and cut telephone lines .\tDT NN IN DT NN , NNP NNP NNP , VBD NNP IN NNP NN NNP NNP IN DT NNS VBD NNP NNP POS NN , VBD RP DT NN NNS , CC VBD NN NNS .\nHe says Mr. Abdulkadir was bound and shot in front of his wife .\tPRP VBZ NNP NNP VBD VBN CC VBN IN NN IN PRP$ NN .\nKidnappings and killings are common in Somalia , where a new government is trying to establish security after 14 years without a central administration .\tNNS CC NNS VBP JJ IN NNP , WRB DT JJ NN VBZ VBG TO VB NN IN CD NNS IN DT JJ NN .\nScores of people have died in tidal waves that hit Africa 's eastern coast after Sunday 's massive earthquake in southern Asia .\tNNS IN NNS VBP VBN IN JJ NNS WDT VBD NNP POS JJ NN IN NNP POS JJ NN IN JJ NNP .\nAid workers and one Somali official say around 50 people are reported dead in northeastern Somalia .\tJJ NNS CC CD JJ NN VBP IN CD NNS VBP VBN JJ IN JJ NNP .\nBut some reports put the death toll at more than 100 .\tCC DT NNS VBD DT NN NN IN JJR IN CD .\nA Somali government spokesman says some coastal towns are submerged , and dozens of fishermen are missing .\tDT JJ NN NN VBZ DT JJ NNS VBP VBN , CC NNS IN NNS VBP VBG .\nIn Tanzania , officials say at least 10 swimmers died when they were swept out to sea Sunday near the beach at Dar es Salaam .\tIN NNP , NNS VBP IN JJS CD NNS VBD WRB PRP VBD VBN RP IN NN NNP IN DT NN IN NNP NNP NNP .\nPolice say most of the dead are children .\tNNS VBP JJS IN DT NN VBP NNS .\nAnd further east , at least two people were killed in the island nation of Seychelles .\tCC RBR JJ , IN JJS CD NNS VBD VBN IN DT NN NN IN NNS .\nSeveral others are reported missing .\tJJ NNS VBP VBN VBG .\nOne tourist was killed in the Kenyan coastal town of Malindi .\tCD NN VBD VBN IN DT JJ JJ NN IN NNP .\nSunday 's massive waves also left parts of the Mauritian island of Rodrigues under water .\tNNP POS JJ NNS RB VBD NNS IN DT JJ NN IN NNP IN NN .\nTaiwan authorities say they have found a cancer causing chemical in fresh fish from farms on the island , following recent scares in Hong Kong about tainted fish .\tNNP NNS VBP PRP VBP VBN DT NN VBG NN IN JJ NN IN NNS IN DT NN , VBG JJ NNS IN NNP NNP IN JJ NN .\nHealth officials in Taiwan Thursday said tests at Taipei markets of grouper fish from farms in the south of the island turned up traces of the chemical , called malachite green .\tNNP NNS IN NNP NNP VBD NNS IN NNP NNS IN JJ NN IN NNS IN DT NN IN DT NN VBD RP NNS IN DT NN , VBD JJ NN .\nThe officials did not identify the farms , saying the investigation was continuing .\tDT NNS VBD RB VB DT NNS , VBG DT NN VBD VBG .\nMalachite green is used to treat certain kinds of infections in fish .\tJJ NN VBZ VBN TO VB JJ NNS IN NNS IN NN .\nThe development comes after Hong Kong health officials found the chemical in eels and other fish shipped from the mainland .\tDT NN VBZ IN NNP NNP NN NNS VBD DT NN IN NNS CC JJ NN VBN IN DT NN .\nHong Kong said traces of the chemical had also turned up in some fish from Taiwan .\tNNP NNP VBD NNS IN DT NN VBD RB VBN RP IN DT NN IN NNP .\nThe Dutch military chief says his forces in Afghanistan have killed 18 suspected militants during a special operation in the southern province of Uruzgan .\tDT JJ NN NN VBZ PRP$ NNS IN NNP VBP VBN CD JJ NNS IN DT JJ NN IN DT JJ NN IN NNP .\nHe said there were no Dutch casualties in the fighting which occurred after militants set up positions in the hills overlooking a Dutch camp .\tPRP VBD EX VBD DT JJ NNS IN DT NN WDT VBD IN NNS VBD RP NNS IN DT NNS VBG DT JJ NN .\nSeparately , the U.S. military said a coalition soldier was killed following a rocket and mortar attack late Thursday by militants on a coalition compound in southeastern Afghanistan .\tRB , DT NNP NN VBD DT NN NN VBD VBN VBG DT NN CC NN NN JJ NNP IN NNS IN DT NN NN IN JJ NNP .\nThe soldier , whose nationality was not released , died before he could be medically evacuated from the base in Paktika province .\tDT NN , WP$ NN VBD RB VBN , VBD IN PRP MD VB RB VBN IN DT NN IN NNP NN .\nMeanwhile , NATO chiefs who are visiting Afghanistan toured volatile areas of southern Afghanistan Friday and vowed they are ready to take on resurgent Taleban .\tRB , NNP NNS WP VBP VBG NNP VBD JJ NNS IN JJ NNP NNP CC VBD PRP VBP JJ TO VB RP JJ NNP .\nNATO peacekeeping troops will take over security command from the U.S.-led coalition in the southern provinces at the end of July .\tNNP VBG NNS MD VB RP NN NN IN DT JJ NN IN DT JJ NNS IN DT NN IN NNP .\nVenezuela is offering some poor families in the eastern U.S. city of Philadelphia discounted heating oil , following up on its offer to people in several other communities .\tNNP VBZ VBG DT JJ NNS IN DT JJ NNP NN IN NNP VBD NN NN , VBG RP IN PRP$ NN TO NNS IN JJ JJ NNS .\nU.S. Congresswoman , Chaka Fattah who brokered the deal said Friday it fills a real need among poor families who have used up their state and federal aid .\tNNP NNP , NNP NNP WP VBD DT NN VBD NNP PRP VBZ DT JJ NN IN JJ NNS WP VBP VBN RP PRP$ NN CC JJ NN .\nThe agreement with U.S.-based Citgo , which is owned by Venezuela 's national oil company , allows more than 7,000 Philadelphia families to buy their heating oil at a 40 percent discount .\tDT NN IN JJ NNP , WDT VBZ VBN IN NNP POS JJ NN NN , VBZ JJR IN CD NNP NNS TO VB PRP$ NN NN IN DT CD NN NN .\nVenezuela previously made such deals with communities in the U.S. states of New York , Rhode Island , Vermont , Massachusetts and Maine .\tNNP RB VBD JJ NNS IN NNS IN DT NNP NNS IN NNP NNP , NNP NNP , NNP , NNP CC NNP .\nCritics say it is a political ploy by Venezuelan President Hugo Chavez to make President Bush look bad .\tNNS VBP PRP VBZ DT JJ NN IN JJ NNP NNP NNP TO VB NNP NNP VBP JJ .\nBut supporters say it is purely a humanitarian gesture .\tCC NNS VBP PRP VBZ RB DT JJ NN .\nU.S. heating oil prices have increased substantially this year because of rising oil prices worldwide .\tNNP NN NN NNS VBP VBN RB DT NN IN IN VBG NN NNS VBD .\nNews reports from Brazil say police and suspected armed gang members have clashed again Sunday in Rio de Janeiro , but city officials are boosting security and moving forward with plans for traditionally massive New Year 's eve celebrations .\tNNP NNS IN NNP VBP NNS CC JJ JJ NN NNS VBP VBN RB NNP IN NNP IN NNP , CC NN NNS VBP VBG NN CC VBG RB IN NNS IN RB JJ NNP NNP POS JJ NNS .\nEarly Sunday , gangs fired on police stations , but there were no reports of casualties .\tRB NNP , NNS VBD IN NN NNS , CC EX VBD DT NNS IN NNS .\nSince Thursday , gunfights and arson attacks by gang members have killed at least 18 people .\tIN NNP , NNS CC NN NNS IN NN NNS VBP VBN IN JJS CD NNS .\nThe attacks started Thursday when gang members set fire to several city buses , burning some passengers alive .\tDT NNS VBD NNP WRB NN NNS VBD NN TO JJ NN NNS , VBG DT NNS JJ .\nSome 20,000 police are now patrolling streets and mass transit routes throughout the city .\tDT CD NNS VBP RB VBG NNS CC NN NN NNS IN DT NN .\nSome two million people are expected to gather on Brazil 's famous Copacabana and Ipanema beaches for New Year 's celebrations .\tDT CD CD NNS VBP VBN TO VB IN NNP POS JJ NNP CC NNP NNS IN NNP NNP POS NNS .\nCosta Rica 's constitutional court has blocked a referendum that would have let voters decide if same-sex civil unions should be allowed in the Central American country .\tNNP NNP POS JJ NN VBZ VBN DT NN WDT MD VB VBN NNS VB IN JJ JJ NNS MD VB VBN IN DT JJ JJ NN .\nThe court said Tuesday a referendum would put a minority at a disadvantage in the predominantly Roman Catholic country .\tDT NN VBD NNP DT NN MD VB DT NN IN DT NN IN DT JJ NNP NNP NN .\nThe court said the rights of minorities should be decided by the Costa Rica 's lawmakers , not by a popular vote .\tDT NN VBD DT NNS IN NNS MD VB VBN IN DT NNP NNP POS NNS , RB IN DT JJ NN .\nThe referendum was originally scheduled for December 5 .\tDT NN VBD RB VBN IN NNP CD .\nLast month , Argentina became the first country in Latin America to legalize same-sex marriage .\tJJ NN , NNP VBD DT JJ NN IN NNP NNP TO VB JJ NN .\nMexico 's Supreme Court ruled last week that same-sex weddings are constitutional in the capital , Mexico City .\tNNP POS NNP NNP VBD JJ NN IN JJ NNS VBP JJ IN DT NN , NNP NNP .\nIn Uruguay and Colombia , civil unions are approved nationwide .\tIN NNP CC NNP , JJ NNS VBP VBN JJ .\nThe U.S. Justice Department says a Taiwanese-American man has pleaded guilty to spying for the Chinese government .\tDT NNP NNP NNP VBZ DT JJ NN VBZ VBN JJ TO VBG IN DT JJ NN .\nThe department says Tai Shen Kuo , 58 , admitted in a Virginia court near Washington to a charge of conspiracy to deliver national defense information .\tDT NN VBZ NNP NNP NNP , CD , VBN IN DT NNP NN IN NNP TO DT NN IN NN TO VB JJ NN NN .\nThe New Orleans businessman , who faces up to life in prison , will be sentenced on August 8 .\tDT NNP NNP NN , WP VBZ RP TO NN IN NN , MD VB VBN IN NNP CD .\nAccording to court documents , the alleged offenses took place from March 2007 to February 2008 .\tVBG TO NN NNS , DT JJ NNS VBD NN IN NNP CD TO NNP CD .\nKuo is accused of obtaining secret information from Gregg Bergersen , who was a U.S. Defense Department analyst , and then passing it on to a Chinese official .\tNNP VBZ VBN IN VBG JJ NN IN NNP NNP , WP VBD DT NNP NNP NNP NN , CC RB VBG PRP IN TO DT JJ NN .\nHe allegedly provided Bergersen with gifts , cash and trips .\tPRP RB VBD NNP IN NNS , NN CC NNS .\nThe Justice Department says the Chinese official paid Kuo approximately $ 50,000 .\tDT NNP NNP VBZ DT JJ NN VBD NNP RB $ CD .\nBergersen had previously pleaded guilty in the case and faces up to 10 years in jail .\tNNP VBD RB VBN JJ IN DT NN CC VBZ RP TO CD NNS IN NN .\nChinese officials say they are training more than 40,000 police officers to provide security and prevent terrorism during the 2008 Olympics .\tJJ NNS VBP PRP VBP VBG JJR IN CD NN NNS TO VB NN CC VB NN IN DT CD NNS .\nThe official news agency Xinhua reports that party officials launched the training program Thursday with a hostage rescue demonstration at Beijing 's People 's Police College .\tDT JJ NN NN NNP VBZ IN NN NNS VBD DT NN NN NNP IN DT NN NN NN IN NNP POS NNS POS NNP NNP .\nThe report quotes Beijing Olympic Security chief Qiang Wei as saying the city will need a strong force to handle or prevent any unexpected incidents .\tDT NN VBZ NNP NNP NNP NN NNP NNP IN VBG DT NN MD VB DT JJ NN TO VB CC VB DT JJ NNS .\nA spokesman for the Beijing Public Security Bureau says the officers will receive a three-phased program over the next 18 months or so , including language training and basic skills , including strength training .\tDT NN IN DT NNP NNP NNP NNP VBZ DT NNS MD VB DT JJ NN IN DT JJ CD NNS CC RB , VBG NN NN CC JJ NNS , VBG NN NN .\nGerman Chancellor Gerhard Schroeder and French President Jacques Chirac have met in Berlin to discuss the crisis surrounding the European Union 's constitution .\tJJ NNP NNP NNP CC JJ NNP NNP NNP VBP VBN IN NNP TO VB DT NN VBG DT NNP NNP POS NN .\nBoth leaders have called for the ratification process to continue , despite votes in France and the Netherlands earlier this week rejecting the constitution .\tDT NNS VBP VBN IN DT NN NN TO VB , IN NNS IN NNP CC DT NNP RBR DT NN VBG DT NN .\nThe two met Saturday as EU leaders prepare to meet in Brussels on June 16 and 17 .\tDT CD VBD NNP IN NNP NNS VBP TO VB IN NNP IN NNP CD CC CD .\nMr. Chirac and Mr. Schroeder have been close allies in the European Union , but both have been weakened in recent weeks .\tNNP NNP CC NNP NNP VBP VBN JJ NNS IN DT NNP NNP , CC DT VBP VBN VBN IN JJ NNS .\nSunday 's referendum defeat prompted Mr. Chirac to reshuffle his government .\tNNP POS NN NN VBD NNP NNP TO VB PRP$ NN .\nGermany 's upper house of parliament ratified the EU constitution last week , but Mr. Schroeder 's ruling party suffered a critical state election loss , prompting him to call national elections for this fall , one year early .\tNNP POS JJ NN IN NN VBD DT NNP NN JJ NN , CC NNP NNP POS VBG NN VBD DT JJ NN NN NN , VBG PRP TO VB JJ NNS IN DT NN , CD NN RB .\nNATO ministers are meeting in Brussels Thursday to discuss a wide range of issues - from expanding the alliance 's role in Afghanistan and Iraq to the situation in Ukraine .\tNNP NNS VBP VBG IN NNP NNP TO VB DT JJ NN IN NNS : IN VBG DT NN POS NN IN NNP CC NNP TO DT NN IN NNP .\nU.S. Secretary of State Colin Powell reached out to European nations ahead of the meeting .\tNNP NNP IN NNP NNP NNP VBD RP TO JJ NNS RB IN DT NN .\nHe acknowledged that tensions over the Iraq war had affected relations with Europe , but said the United States is making new efforts to mend ties .\tPRP VBD IN NNS IN DT NNP NN VBD VBN NNS IN NNP , CC VBD DT NNP NNPS VBZ VBG JJ NNS TO VB NNS .\nPresident Bush is expected in Brussels in February .\tNNP NNP VBZ VBN IN NNP IN NNP .\nHigh on Thursday 's NATO agenda will be expansion of the alliance 's peacekeeping operations in Afghanistan and a training mission for Iraqi officers being set in Baghdad .\tJJ IN NNP POS NNP NN MD VB NN IN DT NN POS NN NNS IN NNP CC DT NN NN IN JJ NNS VBG VBN IN NNP .\nThe ministers will also discuss the crisis in Ukraine with their Russian counterpart , Sergei Lavrov .\tDT NNS MD RB VB DT NN IN NNP IN PRP$ JJ NN , NNP NNP .\nThere are growing tensions between the West and Russia over Ukraine .\tEX VBP VBG NNS IN DT NNP CC NNP IN NNP .\nRussia has warned against foreign interference in Ukraine 's political crisis .\tNNP VBZ VBN IN JJ NN IN NNP POS JJ NN .\nZimbabwe 's Information Minister , Tichaona Jokonya , has been found dead in a hotel room in the capital , Harare .\tNNP POS NN NN , NNP NNP , VBZ VBN VBN JJ IN DT NN NN IN DT NN , NNP .\nThere was no information on the cause of death .\tEX VBD DT NN IN DT NN IN NN .\nLocal media reported the 68-year-old Jokonya had been ill earlier this year .\tJJ NNS VBD DT JJ NNP VBD VBN RB RBR DT NN .\nJokonya was appointed to the post last year after President Robert Mugabe fired the previous information minister , Jonathan Moyo .\tNNP VBD VBN TO DT NN JJ NN IN NNP NNP NNP VBD DT JJ NN NN , NNP NNP .\nIn a recent press conference , Jokonya threatened Zimbabwe 's journalists , telling them traitors would die .\tIN DT JJ NN NN , NNP VBD NNP POS NNS , VBG PRP NNS MD VB .\nJokonya was a career diplomat , and served as Zimbabwe 's ambassador to the United Nations for ten years .\tNNP VBD DT NN NN , CC VBD IN NNP POS NN TO DT NNP NNPS IN CD NNS .\nA South African editor says the press , which predicted a low turnout and great violence in Iraq on election day , has been proved wrong .\tDT JJ JJ NN VBZ DT NN , WDT VBD DT JJ NN CC JJ NN IN NNP IN NN NN , VBZ VBN VBN JJ .\nBut the foreign editor of Business Day newspaper in Johannesburg , Jonathan Katzenellenbogen , told English to Africa reporter William Eagle that observers are looking to see how Iraq 's Sunni -- many of whom boycotted the polls -- can be included in the writing of the country 's constitution .\tCC DT JJ NN IN NNP NNP NN IN NNP , NNP NNP , VBD NNP TO NNP NN NNP NNP IN NNS VBP VBG TO VB WRB NNP POS NNP : NN IN WP VBD DT NNS : MD VB VBN IN DT NN IN DT NN POS NN .\nAs for Iraq 's insurgency , Mr. Katzenellenbogen notes that groups who turned to violence during his own country 's first all-race elections in 1994 were left out of the political process , and have for the most part withered away .\tIN IN NNP POS NN , NNP NNP VBZ IN NNS WP VBD TO NN IN PRP$ JJ NN POS JJ JJ NNS IN CD VBD VBN IN IN DT JJ NN , CC VBP IN DT JJS NN VBN RB .\nHe also says South Africans are also looking to see if the Iraqi elections will bring about the announcement of an American exit strategy .\tPRP RB VBZ NNP NNS VBP RB VBG TO VB IN DT JJ NNS MD VB IN DT NN IN DT JJ NN NN .\nChina has acknowledged for the first time that a clash between demonstrators and police in a southern village this week turned deadly .\tNNP VBZ VBN IN DT JJ NN IN DT NN IN NNS CC NNS IN DT JJ NN DT NN VBD JJ .\nThe official Xinhua news agency Saturday said demonstrators at a power plant in the Guangdong provincial village of Dongzhou attacked police and threw explosives , forcing officers to open fire .\tDT JJ NNP NN NN NNP VBD NNS IN DT NN NN IN DT NNP JJ NN IN NNP VBD NN CC VBD NNS , VBG NNS TO JJ NN .\nXinhua said at least three villagers were killed and several others were injured .\tNNP VBD IN JJS CD NNS VBD VBN CC JJ NNS VBD VBN .\nWitnesses to the Tuesday incident put the death toll as high as 20 .\tNNS TO DT NNP NN VBD DT NN NN RB JJ IN CD .\nThey say at least 1,000 people had gathered at the power plant to protest inadequate compensation for land that the government seized for the plant 's construction .\tPRP VBP IN JJS CD NNS VBD VBN IN DT NN NN TO VB JJ NN IN NN IN DT NN VBD IN DT NN POS NN .\nAuthorities have sealed the village off , with police patrolling the streets and blocking roads leading in .\tNNS VBP VBN DT NN RP , IN NN VBG DT NNS CC VBG NNS VBG IN .\nIf the casualty figure of 20 is confirmed , the incident would be the largest known use of force by Chinese security personnel since the killing of hundreds around Tiananmen Square in 1989 .\tIN DT NN NN IN CD VBZ VBN , DT NN MD VB DT JJS VBN NN IN NN IN JJ NN NNS IN DT NN IN NNS IN NNP NNP IN CD .\nU.S. President Barack Obama is hailing progress made on financial reform and unemployment benefits , but he says more needs to be done to boost the country 's economy .\tNNP NNP NNP NNP VBZ VBG NN VBN IN JJ NN CC NN NNS , CC PRP VBZ JJR NNS TO VB VBN TO VB DT NN POS NN .\nMr. Obama spoke Friday after signing into law this week the most sweeping set of financial regulatory reforms since the Great Depression of the 1930s .\tNNP NNP VBD NNP IN VBG IN NN DT NN DT RBS JJ NN IN JJ JJ NNS IN DT NNP NNP IN DT NNS .\nHe said the new law will protect Americans from the reckless behavior that sparked the financial crisis .\tPRP VBD DT JJ NN MD VB NNS IN DT JJ NN WDT VBD DT JJ NN .\nHe also praised Congress for voting this week to restore unemployment insurance to about 2.5 million Americans .\tPRP RB VBD NNP IN NN DT NN TO VB NN NN TO IN CD CD NNS .\nThe president said his ultimate goal is to make sure that all Americans looking for work can get jobs .\tDT NN VBD PRP$ JJ NN VBZ TO VB JJ IN DT NNS VBG IN NN MD VB NNS .\nHe also called on lawmakers to pass legislation designed to helpe small businesses , adding that the success of those businesses is crucial to the health of the U.S. economy .\tPRP RB VBD IN NNS TO VB NN VBN TO VB JJ NNS , VBG IN DT NN IN DT NNS VBZ JJ TO DT NN IN DT NNP NN .\nA bill emerging in the U.S. Senate would create a $ 30 billion government lending fund for small businesses .\tDT NN VBG IN DT NNP NNP MD VB DT $ CD CD NN NN NN IN JJ NNS .\nHaitian soldiers who helped the United States fight for independence from Britain in the Revolutionary War may soon get a monument in their honor in the southeastern U.S. state of Georgia .\tJJ NNS WP VBD DT NNP NNPS VB IN NN IN NNP IN DT NNP NNP MD RB VB DT NN IN PRP$ NN IN DT JJ NNP NN IN NNP .\nOfficials in the city of Savannah are considering a proposal by the non-profit Haitian American Historical Society to erect a bronze monument in the city .\tNNS IN DT NN IN NNP VBP VBG DT NN IN DT JJ JJ NNP NNP NNP TO VB DT NN NN IN DT NN .\nThe Society says the monument will represent the Chasseurs-Volontaires de Saint-Domingue , a regiment of soldiers who were free men of color from Haiti .\tDT NNP VBZ DT NN MD VB DT NNP NNP NNP , DT NN IN NNS WP VBD JJ NNS IN NN IN NNP .\nThe group says the men were part of the American army unit that fought to drive the British from the coastal city in 1779 .\tDT NN VBZ DT NNS VBD NN IN DT JJ NN NN WDT VBD TO VB DT NNS IN DT JJ NN IN CD .\nInterim Haitian Prime Minister Gerard Latortue is scheduled to meet with potential monument donors in Savannah Saturday when he returns from Rome , where he attended Pope John Paul the Second 's funeral .\tJJ JJ NNP NNP NNP NNP VBZ VBN TO VB IN JJ NN NNS IN NNP NNP WRB PRP VBZ IN NNP , WRB PRP VBD NNP NNP NNP DT NNP POS NN .\nSuperstar Will Smith is enjoying his latest success with the new film Hitch .\tNN NNP NNP VBZ VBG PRP$ JJS NN IN DT JJ NN NNP .\nSince the movie opened over four weeks ago it has earned almost $ 200 million ( US ) .\tIN DT NN VBD IN CD NNS IN PRP VBZ VBN RB $ CD CD LRB NNP RRB .\nWill plays a Date Doctor attempting to help a client through the problems and challenges that come along with dating .\tNNP VBZ DT NNP NNP VBG TO VB DT NN IN DT NNS CC NNS WDT VBP IN IN VBG .\nWill has a new album coming out on March 29 called Lost And Found .\tNNP VBZ DT JJ NN VBG RP IN NNP CD VBD NNP NNP NNP .\nWill Smith has enjoyed tremendous success as an actor and singer since his musical debut in 1991 .\tNNP NNP VBZ VBN JJ NN IN DT NN CC NN IN PRP$ JJ NN IN CD .\nUkraine 's opposition has ended a blockade of government buildings , hours after parliament adopted a series of electoral reforms and outgoing President Leonid Kuchma signed them into law .\tNNP POS NN VBZ VBN DT NN IN NN NNS , NNS IN NN VBD DT NN IN JJ NNS CC VBG NNP NNP NNP VBD PRP IN NN .\nThe move allows many government employees to return to work for the first time in weeks .\tDT NN VBZ JJ NN NNS TO VB TO VB IN DT JJ NN IN NNS .\nOpposition leader Viktor Yushchenko Wednesday thanked his supporters for their continuous protests following last month 's fraudulent runoff vote .\tNNP NN NNP NNP NNP VBD PRP$ NNS IN PRP$ JJ NNS VBG JJ NN POS JJ NN NN .\nHe told the cheering crowd their 17 days of peaceful protests helped bring about the new laws .\tPRP VBD DT VBG NN PRP$ CD NNS IN JJ NNS VBD VB IN DT JJ NNS .\nThe measures , proposed by the opposition , are aimed at preventing fraud in the December 26 repeat of the flawed election .\tDT NNS , VBN IN DT NN , VBP VBN IN VBG NN IN DT NNP CD NN IN DT JJ NN .\nAlso included are constitutional changes that transfer some presidential powers to parliament .\tRB VBN VBP JJ NNS IN VBP DT JJ NNS TO NN .\nBut presidential rival , pro-Russian Prime Minister Viktor Yanukovych , called the parliamentary vote illegal .\tCC JJ NN , JJ NNP NNP NNP NNP , VBD DT JJ NN JJ .\nHe said the new laws will do nothing to stop election fraud .\tPRP VBD DT JJ NNS MD VB DT TO VB NN NN .\nU.S. forecasters say Tropical Storm Beta is strengthening as it churns off the coast of Central America and is likely to become a hurricane later Friday .\tNNP NNS VBP JJ NN NN VBZ VBG IN PRP VBZ IN DT NN IN NNP NNP CC VBZ JJ TO VB DT NN RB NNP .\nThe National Weather Service says hurricane warnings are in effect for the Colombian islands of San Andres and Providencia , as the slow-moving storm churns 60 kilometers east of San Andres .\tDT NNP NNP NNP VBZ NN NNS VBP IN NN IN DT JJ NNS IN NNP NNP CC NNP , IN DT JJ NN VBZ CD NNS RB IN NNP NNP .\nBeta is the record 23rd named storm of this year 's Atlantic hurricane season .\tNN VBZ DT NN CD VBN NN IN DT NN POS NNP NN NN .\nIt is moving toward the north at six kilometers per hour .\tPRP VBZ VBG IN DT NN IN CD NNS IN NN .\nForecasters say the center of the storm could reach mainland Nicaragua by Sunday .\tNNS VBP DT NN IN DT NN MD VB JJ NNP IN NNP .\nThe storm 's maximum sustained winds are near 100 kilometers per hour and are expected to strengthen Friday .\tDT NN POS NN VBD NNS VBP IN CD NNS IN NN CC VBP VBN TO VB NNP .\nBeta is expected to dump as much as 38 centimeters of rain across Honduras , Nicaragua , San Andres and Providencia .\tNN VBZ VBN TO VB RB JJ IN CD NNS IN NN IN NNP , NNP , NNP NNP CC NNP .\nEurope 's top security organization is meeting in the Bulgarian capital Sofia Monday to discuss Ukraine 's turb ulent politics and efforts to combat international terrorism .\tNNP POS JJ NN NN VBZ VBG IN DT JJ NN NNP NNP TO VB NNP POS NN JJ NNS CC NNS TO VB JJ NN .\nU.S. Secretary of State Colin Powell is attending the two-day meeting of the Organization for Security and Cooperation in Europe , along with Russian Foreign Minister Sergei Lavrov and senior officials of OSCE 's 55 member states .\tNNP NNP IN NNP NNP NNP VBZ VBG DT JJ NN IN DT NNP IN NNP CC NNP IN NNP , IN IN JJ NNP NNP NNP NNP CC JJ NNS IN NNP POS CD NN NNS .\nSolomon Passy , the foreign minister of Bulgaria , is expected to propose reforms within the organization that would expand its focus from human rights to security and economic issues .\tNNP NNP , DT JJ NN IN NNP , VBZ VBN TO VB NNS IN DT NN WDT MD VB PRP$ NN IN JJ NNS TO NN CC JJ NNS .\nThe meeting is taking place under unprecedented security measures .\tDT NN VBZ VBG NN IN JJ NN NNS .\nA new study says China 's economy will surpass the United States by 2035 , and double by mid-century .\tDT JJ NN VBZ NNP POS NN MD VB DT NNP NNPS IN CD , CC VB IN NN .\nThe study released Tuesday by a Washington-based research institute predicts that China 's economic growth is driven by domestic demand , and not exports .\tDT NN VBN NNP IN DT JJ NN NN VBZ IN NNP POS JJ NN VBZ VBN IN JJ NN , CC RB NNS .\nFor that reason , the report 's author Albert Keidel says strong growth will continue into the 21st century regardless of a downturn in the world market .\tIN DT NN , DT NN POS NN NNP NNP VBZ JJ NN MD VB IN DT JJ NN RB IN DT NN IN DT NN NN .\nChina 's economy has grown at an average annual rate of more than 10 percent over the last decade .\tNNP POS NN VBZ VBN IN DT JJ JJ NN IN JJR IN CD NN IN DT JJ NN .\nThe country 's Gross Domestic Product currently ranks fourth behind the United States , Japan and Germany based on 2007 figures .\tDT NN POS NNP NNP NNP RB VBZ JJ IN DT NNP NNPS , NNP CC NNP VBN IN CD NNS .\nKeidel is an expert on China 's economy at the Carnegie Endowment for International Peace .\tNNP VBZ DT NN IN NNP POS NN IN DT NNP NNP IN NNP NNP .\nHe formerly held positions at the U.S. Treasury Department and the World Bank .\tPRP RB VBD NNS IN DT NNP NNP NNP CC DT NNP NNP .\nLiberian President-elect Ellen Johnson-Sirleaf has arrived in Ivory Coast Tuesday for her first foreign trip since her election earlier this month .\tJJ NNP NNP NNP VBZ VBN IN NNP NNP NNP IN PRP$ JJ JJ NN IN PRP$ NN RBR DT NN .\nFew details of the trip have been released .\tJJ NNS IN DT NN VBP VBN VBN .\nHowever , the Reuters news agency quotes her as saying she will be discussing how Liberia and the Ivory Coast can work together for regional peace and stability .\tRB , DT NNP NN NN VBZ PRP IN VBG PRP MD VB VBG WRB NNP CC DT NNP NNP MD VB RB IN JJ NN CC NN .\nMs. Johnson-Sirleaf was confirmed last week as winner of Liberia 's first post-war election after a fiercely contested run-off vote against former soccer George Weah .\tNNP NNP VBD VBN JJ NN IN NN IN NNP POS JJ JJ NN IN DT RB VBN JJ NN IN JJ NN NNP NNP .\nMr. Weah 's party - the Congress for Democratic Change - has claimed the vote was fraudulent .\tNNP NNP POS NN IN DT NNP IN JJ NN : VBZ VBN DT NN VBD JJ .\nInternational observers say there was no evidence of widespread fraud .\tJJ NNS VBP EX VBD DT NN IN JJ NN .\nIraqi police say a suicide car bomber has killed at least 26 people and wounded about 70 others in the southern town of Hillah .\tJJ NNS VBP DT NN NN NN VBZ VBN IN JJS CD NNS CC VBN IN CD NNS IN DT JJ NN IN NNP .\nAuthorities say the blast Tuesday went off near a hospital in a commercial district .\tNNS VBP DT NN NNP VBD RP IN DT NN IN DT JJ NN .\nMany of the dead are said to be women and children .\tNN IN DT NN VBP VBN TO VB NNS CC NNS .\nHillah is 100 kilometers south of Baghdad .\tNNP VBZ CD NNS RB IN NNP .\nIn other news , the U.S. military said coalition forces detained 20 suspected terrorists Tuesday in raids targeting al-Qaida in Iraq operations north of Baghdad .\tIN JJ NN , DT NNP NN VBD NN NNS VBD CD JJ NNS NNP IN NNS VBG NNP IN NNP NNS NN IN NNP .\nThe military said one of those detained is a foreign terrorist suspected of involvement in a suicide truck bomb attack in May in the town of Samarra .\tDT NN VBD CD IN DT VBN VBZ DT JJ JJ JJ IN NN IN DT NN NN NN NN IN NNP IN DT NN IN NNP .\nThe statement did not say where the suspect is from .\tDT NN VBD RB VB WRB DT NN VBZ IN .\nMoroccan authorities say they have dismantled two terrorist cells with al-Qaida links and detained the groups ' members .\tJJ NNS VBP PRP VBP VBN CD JJ NNS IN NNP NNS CC VBD DT NNS POS NNS .\nThe Interior Ministry says one cell , called Sahrawi Jihad Front , had four members .\tDT NNP NNP VBZ CD NN , VBD NNP NNP NNP , VBD CD NNS .\nIn a Friday statement , the ministry said the cell was being led by a so-called ' extremist ' who formerly lived in Italy .\tIN DT NNP NN , DT NN VBD DT NN VBD VBG VBN IN DT JJ `` NN `` WP RB VBD IN NNP .\nThe ministry says a second , five-member cell had been recruiting volunteers for ' jihad ' in Iraq .\tDT NN VBZ DT JJ , JJ NN VBD VBN VBG NNS IN `` NN `` IN NNP .\nIt says the group had been coordinating efforts with al-Qaida networks .\tPRP VBZ DT NN VBD VBN VBG NNS IN NNP NNS .\nThe government also says one of the detainees is a Yemeni national who is wanted in his country for al-Qaida links .\tDT NN RB VBZ CD IN DT NNS VBZ DT JJ NN WP VBZ VBN IN PRP$ NN IN NNP NNS .\nA ministry statement does not say when the arrests took place .\tDT NN NN VBZ RB VB WRB DT NNS VBD NN .\nMorocco has announced a series of arrests of suspected militants since a 2003 bombing in Casablanca killed 45 people .\tNNP VBZ VBN DT NN IN NNS IN JJ NNS IN DT CD NN IN NNP VBD CD NNS .\nIn April , the country announced the arrests of 24 people with suspected al-Qaida links .\tIN NNP , DT NN VBD DT NNS IN CD NNS IN JJ NNP NNS .\nA Democratic Party lawmaker has called for the Republican-led Congress to repeal tax breaks for big oil companies .\tDT JJ NNP NN VBZ VBN IN DT JJ NNP TO VB NN NNS IN JJ NN NNS .\nIn the Democrats ' weekly radio address , Representative Bart Stupak of Michigan accused Republicans of ignoring alleged price gauging by oil companies .\tIN DT NNPS POS JJ NN NN , JJ NNP NNP IN NNP VBD NNS IN VBG JJ NN VBG IN NN NNS .\nHe noted the rising gasoline prices in the United States come as big oil companies are making huge profits .\tPRP VBD DT VBG NN NNS IN DT NNP NNPS VBP IN JJ NN NNS VBP VBG JJ NNS .\nHe called for the development of alternative types of fuel , and for aggressive policies to prevent price gauging .\tPRP VBD IN DT NN IN JJ NNS IN NN , CC IN JJ NNS TO VB NN NN .\nPresident Bush on Friday expressed concern about rising gas prices , but he said there was no evidence of over-pricing .\tNNP NNP IN NNP VBD NN IN VBG NN NNS , CC PRP VBD EX VBD DT NN IN JJ .\nHe called for investment in renewable sources of energy and the development of alternative sources of energy .\tPRP VBD IN NN IN JJ NNS IN NN CC DT NN IN JJ NNS IN NN .\nThe Mexican music group Camila and Dominican singer Juan Luis Guerra were the big winners at the 11th Latin Grammyawards , picking up three awards each at the event Thursday in Las Vegas .\tDT JJ NN NN NNP CC JJ NN NNP NNP NNP VBD DT JJ NNS IN DT JJ JJ NNS , VBG RP CD NNS DT IN DT NN NNP IN NNP NNP .\nTrio Camila , comprised of Mario Domm , Pablo Hurtado and Samuel ' Samo ' Parra won for recording of the year and song of the year for ' Mientes , ' and also picked up best group pop album for ' Dejarte de Amar . '\tNNP NNP , VBD IN NNP NNP , NNP NNP CC NNP `` NNP `` NNP VBD IN NN IN DT NN CC NN IN DT NN IN `` NNP , `` CC RB VBD RP JJS NN NN NN IN `` NNP NNP NNP . ``\nSinger-songwriter Guerra won Grammys for best album of the year , best contemporary tropical album for A Son de Guerraas well as best tropical song for ' Bachata en Fukuoko . '\tNN NNP VBD NNS IN JJS NN IN DT NN , JJS JJ JJ NN IN NNP NNP NNP NNP RB IN JJS JJ NN IN `` NNP NNP NNP . ``\nHe has now won 15 Latin Grammys in his career .\tPRP VBZ RB VBN CD JJ NNS IN PRP$ NN .\nThe awards were broadcast live in the United States and Latin America on the Univision Spanish-language television network .\tDT NNS VBD VBN RB IN DT NNP NNPS CC NNP NNP IN DT NNP NNP NN NN .\nThe Latin Grammys are awarded each year by the Latin Recording Academy to recognize recordings released in Spanish or Portuguese .\tDT JJ NNS VBP VBN DT NN IN DT NNP NNP NNP TO VB NNS VBN IN NNP CC NNP .\nHilary Duff says she feels pressure to be thin .\tNNP NNP VBZ PRP VBZ NN TO VB JJ .\nSpeaking to People Magazine , the 19-year-old actress-singer says the media can be ' judgmental and mean ' in their incessant attention to her weight .\tVBG TO NNS NNP , DT JJ NN VBZ DT NNS MD VB `` JJ CC JJ `` IN PRP$ JJ NN TO PRP$ NN .\nThe starlet says while she has never had a weight problem , she realizes critics will never be happy with her appearance .\tDT NN VBZ IN PRP VBZ RB VBN DT NN NN , PRP VBZ NNS MD RB VB JJ IN PRP$ NN .\nHilary Duff , who has sold more than 13 albums worldwide , releases her latest effort Dignity on April 3 in the U.S. While several songs deal with her ex-boyfriend Joel Madden of the rock band Good Charlotte , Hilary denies criticizing his present girlfriend Nicole Richie on the song ' Gypsy Woman . '\tNNP NNP , WP VBZ VBN JJR IN CD NNS JJ , VBZ PRP$ JJS NN NN IN NNP CD IN DT NNP IN JJ NNS VBP IN PRP$ JJ NNP NNP IN DT NN NN NNP NNP , NNP VBZ VBG PRP$ JJ NN NNP NNP IN DT NN `` NNP NNP . ``\nA report in The New York Times Sunday says the United States is working on a plan that expands government access to international banking records in an effort to deter terrorist transactions .\tDT NN IN DT NNP NNP NNP NNP VBZ DT NNP NNPS VBZ VBG IN DT NN WDT VBZ NN NN TO JJ NN NNS IN DT NN TO VB JJ NNS .\nThe newspaper reports a U.S. Treasury Department working group is examining ways the government can gain access to logs of international wire transfers into and out of U.S. banks .\tDT NN VBZ DT NNP NNP NNP VBG NN VBZ VBG NNS DT NN MD VB NN TO NNS IN JJ NN NNS IN CC IN IN NNP NNS .\nThe Times quotes unnamed government officials who say they are mindful of concerns about privacy and potential misuse of the system .\tDT NNP VBZ JJ NN NNS WP VBP PRP VBP JJ IN NNS IN NN CC JJ NN IN DT NN .\nIt says the plan is still in its preliminary stages .\tPRP VBZ DT NN VBZ RB IN PRP$ JJ NNS .\nA recent U.S. law authorizes the Treasury Department to develop regulations requiring U.S. banks to turn over suspected ' cross-border ' electronic transactions .\tDT JJ NNP NN VBZ DT NNP NNP TO VB NNS VBG NNP NNS TO VB RP JJ `` JJ `` JJ NNS .\nU.S. stocks surged more than three percent higher in Tuesday 's trading as some investors expressed confidence that the worst of the credit crisis is over .\tNNP NNS VBD JJR IN CD NN JJR IN NNP POS NN IN DT NNS VBD NN IN DT JJS IN DT NN NN VBZ IN .\nShares of Lehman Brothers Holdings and Swiss bank UBS rose after the two raised a combined $ 19 billion in capital by issuing new stocks .\tNNS IN NNP NNP NNPS CC JJ NN NNS VBD IN DT CD VBD DT VBN $ CD CD IN NN IN VBG JJ NNS .\nThe successful effort by the banks eased fears that they might need government help like that given to the investment bank Bear Stearns recently .\tDT JJ NN IN DT NNS VBD NNS IN PRP MD VB NN NN IN DT VBN TO DT NN NN NNP NNP RB .\nInvestors were also encouraged by the news from the manufacturing sector .\tNNS VBD RB VBN IN DT NN IN DT NN NN .\nThe Institute for Supply Management 's March index rose slightly , beating the expectations of some economists .\tDT NNP IN NNP NNP POS NNP NN VBD RB , VBG DT NNS IN DT NNS .\nNew data also showed U.S. construction spending fell less than some economists predicted .\tJJ NNS RB VBD NNP NN NN VBD JJR IN DT NNS VBD .\nU.S. Secretary of State Condoleezza Rice is returning to Washington after talks with British Prime Minister Tony Blair and a visit to the Middle East this week .\tNNP NNP IN NNP NNP NNP VBZ VBG TO NNP IN NNS IN JJ NNP NNP NNP NNP CC DT NN TO DT NNP NNP DT NN .\nSaturday 's meeting at Mr. Blair 's country residence was private .\tNNP POS NN IN NNP NNP POS NN NN VBD JJ .\nA spokesman for the British leader said the talks focused on Middle East issues , including Iran 's nuclear program , and the U.S. secretary of state 's efforts to promote peace in the region .\tDT NN IN DT JJ NN VBD DT NNS VBD IN NNP NNP NNS , VBG NNP POS JJ NN , CC DT NNP NN IN NN POS NNS TO VB NN IN DT NN .\nNeither official issued a statement after the talks .\tDT NN VBD DT NN IN DT NNS .\nRice visited Saudi Arabia , Egypt , Israel , the Palestinian territories and Iraq .\tNNP VBD NNP NNP , NNP , NNP , DT JJ NNS CC NNP .\nDuring her tour , she called on world powers to take a tougher stance toward Iran .\tIN PRP$ NN , PRP VBD IN NN NNS TO VB DT JJR NN IN NNP .\nIran continues to refuse to meet an August 31 Security Council deadline to stop enriching uranium , which can be used to make nuclear weapons .\tNNP VBZ TO VB TO VB DT NNP CD NNP NNP NN TO VB VBG NN , WDT MD VB VBN TO VB JJ NNS .\nTehran says it needs the fuel to produce electricity .\tNNP VBZ PRP VBZ DT NN TO VB NN .\nOne of Africa 's most renowed musicians , Ali Farka Toure , has died in his home country of Mali .\tCD IN NNP POS JJS JJ NNS , NNP NNP NNP , VBZ VBN IN PRP$ NN NN IN NNP .\nMali 's Culture Ministry announced Tuesday that Toure passed away after a long illness .\tNNP POS NNP NNP VBD NNP IN NNP VBD RB IN DT JJ NN .\nHe was about 66 years old .\tPRP VBD IN CD NNS JJ .\nToure was a singer and accomplished guitar player , and helped create a genre known as Mali Blues , which combined traditional African sounds with black American music .\tNNP VBD DT NN CC JJ NN NN , CC VBD VB DT NN VBN IN NNP NNP , WDT VBD JJ JJ NNS IN JJ JJ NN .\nHe cited many Western musicians as a source of inspiration , with special praise for the American blues legend John Lee Hooker .\tPRP VBD JJ JJ NNS IN DT NN IN NN , IN JJ NN IN DT JJ NNS NN NNP NNP NNP .\nToure was best known overseas for his mid-1990s collaboration with American guitarist Ry Cooder .\tNNP VBD RB VBN RB IN PRP$ NNS NN IN JJ NN NNP NNP .\nTheir Talking Timbuktu album netted Toure his first Grammy Award He won a second Grammy this year for his In the Heart of the Moon album .\tPRP$ VBG NNP NN VBD NNP PRP$ JJ NNP NNP PRP VBD DT JJ NN DT NN IN PRP$ IN DT NN IN DT NNP NN .\nToure was beloved in Mali , and radio stations suspended their normal programming Tuesday to play his songs .\tNNP VBD VBN IN NNP , CC NN NNS VBD PRP$ JJ NN NNP TO VB PRP$ NNS .\nOfficials in Somalia say at least 16 people have been killed in factional fighting that began Monday and continued into Tuesday .\tNNS IN NNP VBP IN JJS CD NNS VBP VBN VBN IN JJ NN WDT VBD NNP CC VBD IN NNP .\nWitnesses say the fighting took place in and around the town of Belet Weyn , some 300 kilometers north of the capital .\tNNS VBP DT NN VBD NN IN CC IN DT NN IN NNP NNP , DT CD NNS RB IN DT NN .\nOfficials say the clash was the result of an on-going dispute between rival factions over the use of pasture land .\tNNS VBP DT NN VBD DT NN IN DT JJ NN IN JJ NNS IN DT NN IN NN NN .\nSomalia has been without a central government since 1991 when clan-based warlords over-threw dictator Said Barre .\tNNP VBZ VBN IN DT JJ NN IN CD WRB JJ NNS VBD NN NNP NNP .\nSince then , in-fighting between the clans has plunged the nation into anarchy .\tIN RB , NN IN DT NNS VBZ VBN DT NN IN NN .\nA new government was formed last year in Kenya but it is opposed by Islamic extremists and other factions .\tDT JJ NN VBD VBN JJ NN IN NNP CC PRP VBZ VBN IN NNP NNS CC JJ NNS .\nThe government has not relocated to Mogadishu because of lack of security .\tDT NN VBZ RB VBN TO NNP IN IN NN IN NN .\nAfghan officials say insurgents in western Afghanistan have attacked a police patrol , sparking a clash that left four policemen and four insurgents dead .\tJJ NNS VBP NNS IN JJ NNP VBP VBN DT NN NN , VBG DT NN WDT VBD CD NNS CC CD NNS JJ .\nOfficials say at least four police were wounded in Wednesday 's clash in western Farah province .\tNNS VBP IN JJS CD NNS VBD VBN IN NNP POS NN IN JJ NNP NN .\nThe attack took place close to where gunmen killed a United Nations aid worker in the provincial capital , Farah city .\tDT NN VBD NN RB TO WRB NNS VBD DT NNP NNP NN NN IN DT JJ NN , NNP NN .\nPolice say militants fired on the car of the Afghan employee of U.N. Habitat , the organization 's human settlements program .\tNNS VBP NNS VBN IN DT NN IN DT JJ NN IN NNP NNP , DT NN POS JJ NNS NN .\nIn the southern city of Kandahar , Afghan police say a suspected suicide bomber is the sole victim of an attack on a mosque .\tIN DT JJ NN IN NNP , JJ NNS VBP DT JJ NN NN VBZ DT JJ NN IN DT NN IN DT NN .\nPolice say the bomber detonated explosives inside an empty mud-brick mosque Wednesday .\tNNS VBP DT NN VBD NNS IN DT JJ NN NN NNP .\nThe blast destroyed several rooms and walls in the building , but police say there were no other casualties .\tDT NN VBD JJ NNS CC NNS IN DT NN , CC NNS VBP EX VBD DT JJ NNS .\nAstronauts at the International Space Station have put in place a new Canadian robotic device designed to assist future astronauts with delicate maintenance tasks at the orbiting facility .\tNNS IN DT NNP NNP NNP VBP VBN IN NN DT JJ JJ JJ NN VBN TO VB JJ NNS IN JJ NN NNS IN DT VBG NN .\nThe astronauts attached the robot , called Dextre , to the U.S. laboratory Destiny , at the space station Tuesday .\tDT NNS VBD DT NN , VBD NNP , TO DT NNP NN NN , IN DT NN NN NNP .\nTwo crew members of the U.S. shuttle Endeavour assembled Dextre during a seven-hour spacewalk earlier this week .\tCD NN NNS IN DT NNP NN NNP VBD NNP IN DT JJ NN RBR DT NN .\nThe astronauts are to begin the mission 's fourth spacewalk Thursday to test a new procedure for repairing damaged heat-shielding tiles .\tDT NNS VBP TO VB DT NN POS JJ NN NNP TO VB DT JJ NN IN VBG VBN JJ NNS .\nOn an earlier spacewalk , astronauts attached a storage compartment for a Japanese laboratory scheduled to be delivered by another space shuttle in May .\tIN DT JJR NN , NNS VBD DT NN NN IN DT JJ NN VBN TO VB VBN IN DT NN NN IN NNP .\nAstronauts have set up scientific experiments for various nations , though difficulties with one project saw it returned to the loading bay instead of being installed on the outside of the station .\tNNS VBP VBN RP JJ NNS IN JJ NNS , IN NNS IN CD NN VBD PRP VBD TO DT NN NN IN IN VBG VBN IN DT NN IN DT NN .\nIraqi authorities say insurgents have shot dead at least three policemen , including the chief of a central Baghdad police station .\tJJ NNS VBP NNS VBP VBN JJ IN JJS CD NNS , VBG DT NN IN DT JJ NNP NN NN .\nPolice say the gunmen fired on a vehicle in which police officers were traveling to work Thursday morning .\tNNS VBP DT NNS VBD IN DT NN IN WDT NN NNS VBD VBG TO VB NNP NN .\nThe attack came a day after a suicide truck bombing claimed by Abu Musab al-Zarqawi 's terror group killed three people near the Agriculture Ministry and a Baghdad hotel used by Westerners .\tDT NN VBD DT NN IN DT NN NN VBG VBN IN NNP NNP NNP POS NN NN VBD CD NNS IN DT NNP NNP CC DT NNP NN VBN IN NNS .\nAlso Wednesday , Iraqi officials said they discovered the bodies of 41 people killed execution-style in two separate locations , in Qaim , near the Syrian border , and near Latifiya , south of Baghdad .\tRB NNP , JJ NNS VBD PRP VBD DT NNS IN CD NNS VBN JJ IN CD JJ NNS , IN NNP , IN DT JJ NN , CC IN NNP , NN IN NNP .\nIn other incidents in Baghdad , Iraq 's planning minister Mahdi al-Hafidh escaped an assassination attempt when gunmen fired on his car , killing two of his bodyguards .\tIN JJ NNS IN NNP , NNP POS NN NN NNP NNP VBD DT NN NN WRB NNS VBD IN PRP$ NN , VBG CD IN PRP$ NNS .\nAnd , an American soldier was killed in a roadside bomb blast .\tCC , DT JJ NN VBD VBN IN DT NN NN NN .\nAt least seven people have been killed in separate insurgent bomb attacks across Iraq , Saturday .\tIN JJS CD NNS VBP VBN VBN IN JJ JJ NN NNS IN NNP , NNP .\nIraqi authorities say five people were killed when a roadside bomb exploded near the headquarters of one of Iraq 's main Sunni Arab political parties in al-Khalis , 60 kilometers north of Baghdad .\tJJ NNS VBP CD NNS VBD VBN WRB DT NN NN VBD IN DT NN IN CD IN NNP POS JJ NNP NNP JJ NNS IN NNP , CD NNS RB IN NNP .\nAt least two policemen were killed in a bomb attack in Baghdad .\tIN JJS CD NNS VBD VBN IN DT NN NN IN NNP .\nThe latest violence comes as Sudan announced plans to close its Baghdad embassy in an effort to win the release of five Sudanese hostages , including one of its top diplomats in Iraq .\tDT JJS NN VBZ IN NNP VBD NNS TO VB PRP$ NNP NN IN DT NN TO VB DT NN IN CD JJ NNS , VBG CD IN PRP$ JJ NNS IN NNP .\nAl-Qaida in Iraq said the Sudanese , who were kidnapped in Baghdad last week , will be killed Saturday unless Khartoum closes the diplomatic mission .\tNNP IN NNP VBD DT JJ , WP VBD VBN IN NNP JJ NN , MD VB VBN NNP IN NNP VBZ DT JJ NN .\nSalvadoran lawmakers have approved the extension of their country 's military mission in Iraq .\tJJ NNS VBP VBN DT NN IN PRP$ NN POS JJ NN IN NNP .\nThey voted late Thursday to keep soldiers in the war-torn country for humanitarian and reconstruction work for another year .\tPRP VBD RB NNP TO VB NNS IN DT JJ NN IN JJ CC NN NN IN DT NN .\nEl Salvador is the last Latin American country with military forces in Iraq .\tNNP NNP VBZ DT JJ JJ JJ NN IN JJ NNS IN NNP .\nHonduras , Nicaragua and the Dominican Republic have withdrawn their troops .\tNNP , NNP CC DT NNP NNP VBP VBN PRP$ NNS .\nEl Salvador sent its first group of more than 350 soldiers to Iraq in August 2003 .\tNNP NNP VBD PRP$ JJ NN IN JJR IN CD NNS TO NNP IN NNP CD .\nKyrgyzstan 's old parliament has formally agreed to step down , deferring to newly elected deputies in an effort to reduce political tensions in the central Asian country .\tNNP POS JJ NN VBZ RB VBN TO VB RB , VBG TO RB VBN NNS IN DT NN TO VB JJ NNS IN DT JJ JJ NN .\nThe move to disband came after the new parliament confirmed opposition leader Kurmanbek Bakiyev as prime minister and appointed him acting president .\tDT NN TO NN VBD IN DT JJ NN VBD NN NN NNP NNP IN JJ NN CC VBD PRP VBG NN .\nThe development Monday angered opposition protesters who said the new parliament was chosen in rigged elections .\tDT NN NNP VBD NN NNS WP VBD DT JJ NN VBD VBN IN JJ NNS .\nMass protests over the disputed balloting brought down the previous government and led to the ouster of President Askar Akayev .\tNN NNS IN DT JJ NN VBD RP DT JJ NN CC VBD TO DT NN IN NNP NNP NNP .\nKyrgyz lawmakers have set June 26 for new presidential elections .\tJJ NNS VBP VBN NNP CD IN JJ JJ NNS .\nA maritime official says Somali pirates have hijacked a Yemeni cargo ship in the Gulf of Aden .\tDT NN NN VBZ JJ NNS VBP VBN DT JJ NN NN IN DT NNP IN NNP .\nAndrew Mwangura , of the East African Seafarers Assistance Program , identified the vessel Tuesday as the MV Amani .\tNNP NNP , IN DT NNP NNP NNPS NNP NNP , VBD DT NN NNP IN DT NNP NNP .\nIt was not immediately clear when the ship was hijacked .\tPRP VBD RB RB JJ WRB DT NN VBD VBN .\nSomali pirates have hijacked nearly 40 ships this year .\tJJ NNS VBP VBN RB CD NNS DT NN .\nIn Malaysia Monday , an international association of tanker owners called for a military blockade along the coast of Somalia .\tIN NNP NNP , DT JJ NN IN NN NNS VBD IN DT JJ NN IN DT NN IN NNP .\nNATO Secretary-General Jaap de Hoop Scheffer said the alliance is not considering such a move .\tNNP NNP NNP NNP NNP NNP VBD DT NN VBZ RB VBG PDT DT NN .\nNATO is among the world powers that have sent ships to patrol the waters off Somalia .\tNNP VBZ IN DT NN NNS WDT VBP VBN NNS TO VB DT NNS IN NNP .\nSomali pirates are wreaking havoc in shipping lanes near the country .\tJJ NNS VBP VBG NN IN NN NNS IN DT NN .\nThe Somali government , which is threatened by an Islamist insurgency , lacks the power to stop the attacks .\tDT JJ NN , WDT VBZ VBN IN DT NNP NN , VBZ DT NN TO VB DT NNS .\nLebanon has a free-market economy and a strong laissez-faire commercial tradition .\tNNP VBZ DT JJ NN CC DT JJ JJ JJ NN .\nThe government does not restrict foreign investment ; however , the investment climate suffers from red tape , corruption , arbitrary licensing decisions , high taxes , tariffs , and fees , archaic legislation , and weak intellectual property rights .\tDT NN VBZ RB VB JJ NN ; RB , DT NN NN VBZ IN JJ NN , NN , JJ NN NNS , JJ NNS , NNS , CC NNS , JJ NN , CC JJ JJ NN NNS .\nThe Lebanese economy is service-oriented ; main growth sectors include banking and tourism .\tDT JJ NN VBZ JJ ; JJ NN NNS VBP NN CC NN .\nThe 1975 - 90 civil war seriously damaged Lebanon 's economic infrastructure , cut national output by half , and all but ended Lebanon 's position as a Middle Eastern entrepot and banking hub .\tDT CD IN CD JJ NN RB VBD NNP POS JJ NN , VBD JJ NN IN NN , CC DT CC VBN NNP POS NN IN DT NNP NNP NN CC NN NN .\nIn the years since , Lebanon has rebuilt much of its war-torn physical and financial infrastructure by borrowing heavily - mostly from domestic banks .\tIN DT NNS IN , NNP VBZ VBN NN IN PRP$ JJ JJ CC JJ NN IN VBG RB : RB IN JJ NNS .\nIn an attempt to reduce the ballooning national debt , the Rafiq HARIRI government in 2000 began an austerity program , reining in government expenditures , increasing revenue collection , and passing legislation to privatize state enterprises , but economic and financial reform initiatives stalled and public debt continued to grow despite receipt of more than $ 2 billion in bilateral assistance at the 2002 Paris II Donors Conference .\tIN DT NN TO VB DT NN JJ NN , DT NNP NNP NN IN CD VBD DT NN NN , VBG IN NN NNS , VBG NN NN , CC VBG NN TO VB NN NNS , CC JJ CC JJ NN NNS VBD CC JJ NN VBD TO VB IN NN IN JJR IN $ CD CD IN JJ NN IN DT CD NNP NNP NNP NNP .\nThe Israeli-Hizballah conflict in July-August 2006 caused an estimated $ 3.6 billion in infrastructure damage , and prompted international donors to pledge nearly $ 1 billion in recovery and reconstruction assistance .\tDT JJ NN IN NNP CD VBD DT JJ $ CD CD IN NN NN , CC VBD JJ NNS TO NN RB $ CD CD IN NN CC NN NN .\nDonors met again in January 2007 at the Paris III Donor Conference and pledged more than $ 7.5 billion to Lebanon for development projects and budget support , conditioned on progress on Beirut 's fiscal reform and privatization program .\tNNS VBD RB IN NNP CD IN DT NNP NNP NNP NNP CC VBD JJR IN $ CD CD TO NNP IN NN NNS CC NN NN , VBN IN NN IN NNP POS JJ NN CC NN NN .\nAn 18-month political stalemate and sporadic sectarian and political violence hampered economic activity , particularly tourism , retail sales , and investment , until the new government was formed in July 2008 .\tDT JJ JJ NN CC JJ NN CC JJ NN VBN JJ NN , RB NN , JJ NNS , CC NN , IN DT JJ NN VBD VBN IN NNP CD .\nPolitical stability following the Doha Accord of May 2008 helped boost tourism and , together with a strong banking sector , enabled real GDP growth of 7 % per year in 2009 - 10 despite a slowdown in the region .\tJJ NN VBG DT NNP NNP IN NNP CD VBD VB NN CC , RB IN DT JJ NN NN , VBD JJ NN NN IN CD NN IN NN IN CD : CD IN DT NN IN DT NN .\nJan Mayen is a volcanic island with no exploitable natural resources , although surrounding waters contain substantial fish stocks and potential untapped petroleum resources .\tNNP NNP VBZ DT JJ NN IN DT JJ JJ NNS , IN VBG NNS VBP JJ NN NNS CC JJ VBN NN NNS .\nEconomic activity is limited to providing services for employees of Norway 's radio and meteorological stations on the island .\tJJ NN VBZ VBN TO VBG NNS IN NNS IN NNP POS NN CC JJ NNS IN DT NN .\nAngola 's high growth rate in recent years was driven by high international prices for its oil .\tNNP POS JJ NN NN IN JJ NNS VBD VBN IN JJ JJ NNS IN PRP$ NN .\nAngola became a member of OPEC in late 2006 and in late 2007 was assigned a production quota of 1.9 million barrels a day ( bbl/day ) , somewhat less than the 2-2.5 million bbl/day Angola 's government had wanted .\tNNP VBD DT NN IN NNP IN JJ CD CC IN JJ CD VBD VBN DT NN NN IN CD CD NNS DT NN LRB NN RRB , RB JJR IN DT CD CD JJ NNP POS NN VBD VBN .\nOil production and its supporting activities contribute about 85 % of GDP .\tNN NN CC PRP$ JJ NNS VBP IN CD NN IN NN .\nDiamond exports contribute an additional 5 % .\tNNP NNS VBP DT JJ CD NN .\nSubsistence agriculture provides the main livelihood for most of the people , but half of the country 's food is still imported .\tJJ NN VBZ DT JJ NN IN JJS IN DT NNS , CC NN IN DT NN POS NN VBZ RB VBN .\nIncreased oil production supported growth averaging more than 15 % per year from 2004 to 2008 .\tJJ NN NN VBD NN VBG JJR IN CD NN IN NN IN CD TO CD .\nA postwar reconstruction boom and resettlement of displaced persons has led to high rates of growth in construction and agriculture as well .\tDT JJ NN NN CC NN IN JJ NNS VBZ VBN TO JJ NNS IN NN IN NN CC NN RB RB .\nMuch of the country 's infrastructure is still damaged or undeveloped from the 27-year-long civil war .\tNN IN DT NN POS NN VBZ RB JJ CC JJ IN DT JJ JJ NN .\nLand mines left from the war still mar the countryside , even though peace was established after the death of rebel leader Jonas SAVIMBI in February 2002 .\tNNP NNS VBD IN DT NN RB VBZ DT NN , RB IN NN VBD VBN IN DT NN IN JJ NN NNP NNP IN NNP CD .\nSince 2005 , the government has used billions of dollars in credit lines from China , Brazil , Portugal , Germany , Spain , and the EU to rebuild Angola 's public infrastructure .\tIN CD , DT NN VBZ VBN NNS IN NNS IN NN NNS IN NNP , NNP , NNP , NNP , NNP , CC DT NNP TO VB NNP POS JJ NN .\nThe global recession temporarily stalled economic growth .\tDT JJ NN RB VBN JJ NN .\nLower prices for oil and diamonds during the global recession led to a contraction in GDP in 2009 , and many construction projects stopped because Luanda accrued $ 9 billion in arrears to foreign construction companies when government revenue fell in 2008 and 2009 .\tJJR NNS IN NN CC NNS IN DT JJ NN VBD TO DT NN IN NN IN CD , CC JJ NN NNS VBD IN NNP VBN $ CD CD IN NNS TO JJ NN NNS WRB NN NN VBD IN CD CC CD .\nAngola abandoned its currency peg in 2009 , and in November 2009 signed onto an IMF Stand-By Arrangement loan of $ 1.4 billion to rebuild international reserves .\tNNP VBD PRP$ NN NN IN CD , CC IN NNP CD VBD IN DT NNP NNP NNP NN IN $ CD CD TO VB JJ NNS .\nAlthough consumer inflation declined from 325 % in 2000 to under 14 % in 2010 , Luanda has been unable to reduce inflation below 10 % .\tIN NN NN VBD IN CD NN IN CD TO IN CD NN IN CD , NNP VBZ VBN JJ TO VB NN IN CD NN .\nThe Angolan kwanza depreciated again in mid 2010 , which , along with higher oil prices , should boost economic growth in all sectors .\tDT JJ NN VBD RB IN JJ CD , WDT , IN IN JJR NN NNS , MD VB JJ NN IN DT NNS .\nCorruption , especially in the extractive sectors , also is a major challenge .\tNNP , RB IN DT JJ NNS , RB VBZ DT JJ NN .\nSierra Leone is an extremely poor nation with tremendous inequality in income distribution .\tNNP NNP VBZ DT RB JJ NN IN JJ NN IN NN NN .\nWhile it possesses substantial mineral , agricultural , and fishery resources , its physical and social infrastructure has yet to recover from the civil war , and serious social disorders continue to hamper economic development .\tIN PRP VBZ JJ NN , JJ , CC JJ NNS , PRP$ JJ CC JJ NN VBZ RB TO VB IN DT JJ NN , CC JJ JJ NNS VBP TO VB JJ NN .\nNearly half of the working-age population engages in subsistence agriculture .\tRB NN IN DT NN NN VBZ IN NN NN .\nManufacturing consists mainly of the processing of raw materials and of light manufacturing for the domestic market .\tNNP VBZ RB IN DT NN IN JJ NNS CC IN JJ NN IN DT JJ NN .\nAlluvial diamond mining remains the major source of hard currency earnings , accounting for nearly half of Sierra Leone 's exports .\tJJ NN NN VBZ DT JJ NN IN JJ NN NNS , NN IN RB NN IN NNP NNP POS NNS .\nThe fate of the economy depends upon the maintenance of domestic peace and the continued receipt of substantial aid from abroad , which is essential to offset the severe trade imbalance and supplement government revenues .\tDT NN IN DT NN VBZ IN DT NN IN JJ NN CC DT JJ NN IN JJ NN IN RB , WDT VBZ JJ TO VB DT JJ NN NN CC NN NN NNS .\nThe IMF has completed a Poverty Reduction and Growth Facility program that helped stabilize economic growth and reduce inflation and in 2010 approved a new program worth $ 45 million over three years .\tDT NNP VBZ VBN DT NN NN CC NN NN NN WDT VBD VB JJ NN CC VB NN CC IN CD VBD DT JJ NN JJ $ CD CD IN CD NNS .\nPolitical stability has led to a revival of economic activity such as the rehabilitation of bauxite and rutile mining , which are set to benefit from planned tax incentives .\tJJ NN VBZ VBN TO DT NN IN JJ NN JJ IN DT NN IN NN CC NN NN , WDT VBP VBN TO VB IN JJ NN NNS .\nA number of offshore oil discoveries were announced in 2009 and 2010 .\tDT NN IN JJ NN NNS VBD VBN IN CD CC CD .\nThe development on these reserves , which could be significant , is still several years away .\tDT NN IN DT NNS , WDT MD VB JJ , VBZ RB JJ NNS RB .\nDuring the late 18th and 19th centuries , Great Britain established colonies and protectorates in the area of current Malaysia ; these were occupied by Japan from 1942 to 1945 .\tIN DT JJ JJ CC JJ NNS , NNP NNP VBD NNS CC NNS IN DT NN IN JJ NNP ; DT VBD VBN IN NNP IN CD TO CD .\nIn 1948 , the British-ruled territories on the Malay Peninsula formed the Federation of Malaya , which became independent in 1957 .\tIN CD , DT JJ NNS IN DT NNP NNP VBD DT NNP IN NNP , WDT VBD JJ IN CD .\nMalaysia was formed in 1963 when the former British colonies of Singapore and the East Malaysian states of Sabah and Sarawak on the northern coast of Borneo joined the Federation .\tNNP VBD VBN IN CD WRB DT JJ JJ NNS IN NNP CC DT NNP JJ NNS IN NNP CC NNP IN DT JJ NN IN NNP VBD DT NNP .\nThe first several years of the country 's history were marred by a Communist insurgency , Indonesian confrontation with Malaysia , Philippine claims to Sabah , and Singapore 's secession from the Federation in 1965 .\tDT JJ JJ NNS IN DT NN POS NN VBD VBN IN DT JJ NN , JJ NN IN NNP , JJ NNS TO NNP , CC NNP POS NN IN DT NNP IN CD .\nDuring the 22-year term of Prime Minister MAHATHIR bin Mohamad ( 1981 - 2003 ) , Malaysia was successful in diversifying its economy from dependence on exports of raw materials to expansion in manufacturing , services , and tourism .\tIN DT JJ NN IN NNP NNP NNP NNP NNP LRB CD IN CD RRB , NNP VBD JJ IN VBG PRP$ NN IN NN IN NNS IN JJ NNS TO NN IN NN , NNS , CC NN .\nCurrent Prime Minister Mohamed NAJIB bin Abdul Razak ( in office since April 2009 ) has continued these pro-business policies .\tNNP NNP NNP NNP NNP NNP NNP NNP LRB IN NN IN NNP CD RRB VBZ VBN DT JJ NNS .\nA Serpent in the course of its wanderings came into an armourer 's shop .\tDT NN IN DT NN IN PRP$ NNS VBD IN DT NN POS NN .\nAs he glided over the floor he felt his skin pricked by a file lying there .\tIN PRP VBD IN DT NN PRP VBD PRP$ NN VBN IN DT NN VBG RB .\nIn a rage he turned round upon it and tried to dart his fangs into it ; but he could do no harm to heavy iron and had soon to give over his wrath .\tIN DT NN PRP VBD JJ IN PRP CC VBD TO VB PRP$ NNS IN PRP ; CC PRP MD VB DT NN TO JJ NN CC VBD RB TO VB RP PRP$ NN .\nIt is useless attacking the insensible .\tPRP VBZ JJ VBG DT JJ .\nPoliticians are an honest , moral , ethical and outstanding group of people .\tNNS VBP DT JJ , JJ , JJ CC JJ NN IN NNS .\nI say this because I 've just spent a week dealing with car salesmen .\tPRP VBP DT IN PRP VBP RB VBN DT NN VBG IN NN NNS .\nLindsay Lohan 's father Michael flew to Utah September 5 , and is currently visiting the actress at the Cirque Lodge treatment center .\tNNP NNP POS NN NNP VBD TO NNP NNP CD , CC VBZ RB VBG DT NN IN DT NNP NNP NN NN .\nSources close to the pair confirmed the visit to Access Hollywood .\tNNS RB TO DT NN VBD DT NN TO NNP NNP .\nMichael Lohan , who served nearly two years in a New York prison for driving while intoxicated and other charges , has publicly expressed his desire to reunite with his daughter since his release in March .\tNNP NNP , WP VBD RB CD NNS IN DT NNP NNP NN IN VBG IN JJ CC JJ NNS , VBZ RB VBN PRP$ NN TO VB IN PRP$ NN IN PRP$ NN IN NNP .\nSources told Access that Lindsay Lohan has not seen her father since before he went to prison .\tNNS VBD NNP IN NNP NNP VBZ RB VBN PRP$ NN IN IN PRP VBD TO NN .\nThe 21-year-old actress checked into Cirque Lodge on August 3 .\tDT JJ NN VBD IN NNP NNP IN NNP CD .\nShe has been visited by her mother Dina and siblings Cody and Ali , but this marks the first visit from her father .\tPRP VBZ VBN VBN IN PRP$ NN NNP CC NNS NNP CC NNP , CC DT VBZ DT JJ NN IN PRP$ NN .\nThe U.S. military says American troops in northern Iraq have killed 14 insurgents in two attacks initiated by U.S. forces late Sunday and early Monday .\tDT NNP NN VBZ JJ NNS IN JJ NNP VBP VBN CD NNS IN CD NNS VBN IN NNP NNS JJ NNP CC JJ NNP .\nA U.S. statement says the fighting took place in the northern town of Tal Afar , and says there were no U.S. casualties .\tDT NNP NN VBZ DT NN VBD NN IN DT JJ NN IN NNP NNP , CC VBZ EX VBD DT NNP NNS .\nIn separate fighting near Baquba , insurgents stormed an Iraqi army checkpoint at daybreak , killing nine Iraqi soldiers .\tIN JJ NN IN NNP , NNS VBD DT JJ NN NN IN NN , VBG CD JJ NNS .\nA short while later , a car bomb explosion in the area killed at least two people and wounded several others .\tDT JJ NN RB , DT NN NN NN IN DT NN VBD IN JJS CD NNS CC VBD JJ NNS .\nTwo U.S. Marines were killed in combat on Sunday in the town of Hit near Iraq 's border with Syria .\tCD NNP NNS VBD VBN IN NN IN NNP IN DT NN IN NNP IN NNP POS NN IN NNP .\nA burst of insurgent violence on Sunday killed at least 43 other people - most of them Iraqi army recruits and police .\tDT NN IN NN NN IN NNP VBD IN JJS CD JJ NNS : JJS IN PRP JJ NN NNS CC NNS .\nRussia 's industrial output plunged nearly 20 percent in January from December , as the country experienced its worst economic slump in a decade .\tNNP POS JJ NN VBD RB CD NN IN NNP IN NNP , IN DT NN VBD PRP$ JJS JJ NN IN DT NN .\nFigures released Monday by the federal statistics service indicated a month-to-month drop in industrial output of 19.9 percent .\tNNS VBN NNP IN DT JJ NNS NN VBD DT JJ NN IN JJ NN IN CD NN .\nThe largest slumps were recorded in steel , cement and automobile production as worldwide demand eroded for cars , trucks and construction material .\tDT JJS NNS VBD VBN IN NN , NN CC NN NN IN JJ NN VBD IN NNS , NNS CC NN NN .\nRussia 's economy has also been hit by the fall in the price of oil .\tNNP POS NN VBZ RB VBN VBN IN DT NN IN DT NN IN NN .\nEconomists are also worried by massive capital amounts of investment leaving the country .\tNNS VBP RB VBN IN JJ NN NNS IN NN VBG DT NN .\nThe government has pledged more than $ 200 billion to shore up Russia 's economy since the world financial turmoil spread in September .\tDT NN VBZ VBN JJR IN $ CD CD TO VB RP NNP POS NN IN DT NN JJ NN VBD IN NNP .\nAn apparent suicide car bomb attack has killed at least six people outside the Somali government 's seat of Baidoa .\tDT JJ NN NN NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN POS NN IN NNP .\nWitnesses say between one and three suicide car bombers drove up to a checkpoint and exploded their vehicles Thursday .\tNNS VBP IN CD CC CD NN NN NNS VBD RP TO DT NN CC VBD PRP$ NNS NNP .\nThey say the drivers were killed along with some passengers in the vehicles .\tPRP VBP DT NNS VBD VBN IN IN DT NNS IN DT NNS .\nLocal officials say several civilians were hurt in the blasts , and that authorities have taken at least one survivor into custody .\tJJ NNS VBP JJ NNS VBD VBN IN DT NNS , CC IN NNS VBP VBN IN JJS CD NN IN NN .\nThere was no immediate claim of responsibility .\tEX VBD DT JJ NN IN NN .\nBaidoa is the sole outpost held by Somalia 's weak transitional government , which is being challenged by Islamists who control the capital , Mogadishu , and much of the country 's south .\tNNP VBZ DT JJ NN VBN IN NNP POS JJ JJ NN , WDT VBZ VBG VBN IN NNS WP VBP DT NN , NNP , CC NN IN DT NN POS NN .\nIslamist forces are positioned nearby but have not mounted any attacks on the town .\tJJ NNS VBP VBN JJ CC VBP RB VBN DT NNS IN DT NN .\nAfrican leaders and French President Jacques Chirac have opened a two-day summit focusing on problems faced by African youth and on the continent 's political troubles .\tJJ NNS CC JJ NNP NNP NNP VBP VBN DT JJ NN VBG IN NNS VBN IN JJ NN CC IN DT NN POS JJ NNS .\nHeads of state and government officials from at least 35 African countries attended the opening of the summit Saturday in Mali 's capital , Bamako .\tNNS IN NN CC NN NNS IN IN JJS CD JJ NNS VBD DT NN IN DT NN NNP IN NNP POS NN , NNP .\nParticipants were expected to address the high unemployment rates among Africans under age 30 .\tNNS VBD VBN TO VB DT JJ NN NNS IN NNS IN NN CD .\nThe conflict in Sudan 's western Darfur region and the faltering peace process in Ivory Coast were also likely to top the agenda .\tDT NN IN NNP POS JJ NNP NN CC DT JJ NN NN IN NNP NNP VBD RB JJ TO VB DT NN .\nFrance has 4,000 soldiers in Ivory Coast , alongside a 7,000-member United Nations peacekeeping force .\tNNP VBZ CD NNS IN NNP NNP , IN DT JJ NNP NNPS VBG NN .\nObservers say a number of other issues sensitive to Africans are likely to be discussed on the sidelines of the summit .\tNNS VBP DT NN IN JJ NNS JJ TO NNS VBP JJ TO VB VBN IN DT NNS IN DT NN .\nAmong them are French plans to tighten immigration legislation .\tIN PRP VBP JJ NNS TO VB NN NN .\nA U.S. delegation crossed the heavily-guarded border from South Korea into North Korea Tuesday , for talks on Pyongyang 's overdue declaration of its nuclear activities .\tDT NNP NN VBD DT JJ NN IN NNP NNP IN NNP NNP NNP , IN NNS IN NNP POS JJ NN IN PRP$ JJ NNS .\nThe team , led by Sung Kim - the top U.S. State Department expert on the Koreas - will stay in North Korea for three days to discuss the North 's nuclear declaration and how to verify it .\tDT NN , VBN IN NNP NNP IN DT JJ NNP NNP NNP NN IN DT NNP : MD VB IN NNP NNP IN CD NNS TO VB DT NNP POS JJ NN CC WRB TO VB PRP .\nSix-country talks on ending the North 's nuclear activities have been stalled for months , after Pyongyang missed a December 31 deadline to give a declaration of its nuclear programs in return for diplomatic concessions and energy aid .\tJJ NNS IN VBG DT NNP POS JJ NNS VBP VBN VBN IN NNS , IN NNP VBD DT NNP CD NN TO VB DT NN IN PRP$ JJ NNS IN NN IN JJ NNS CC NN NN .\nThe six-party agreement was hammered out among the two Koreas , the United States , Japan , Russia and China .\tDT JJ NN VBD VBN RP IN DT CD NNP , DT NNP NNPS , NNP , NNP CC NNP .\nDiplomats from the United States , Japan and South Korea will meet in Seoul later this week to discuss restarting six-party talks on ending North Korea 's nuclear program .\tNNS IN DT NNP NNPS , NNP CC NNP NNP MD VB IN NNP RB DT NN TO VB VBG JJ NNS IN VBG NNP NNP POS JJ NN .\nSouth Korean Deputy Foreign Minister Song Min-soon will meet Saturday with Christopher Hill , the U.S. Ambassador to Seoul , and Kenichiro Sasae , the head of the Japanese Foreign Ministry 's Asia-Oceania bureau .\tNNP JJ NNP NNP NNP NNP NNP MD VB NNP IN NNP NNP , DT NNP NN TO NNP , CC NNP NNP , DT NN IN DT JJ NNP NNP POS NNP NN .\nNorth Korea announced on February 10 that it had produced nuclear weapons and was withdrawing from negotiations with the three nations , plus China and Russia , to end its nuclear program .\tNNP NNP VBD IN NNP CD IN PRP VBD VBN JJ NNS CC VBD VBG IN NNS IN DT CD NNS , CC NNP CC NNP , TO VB PRP$ JJ NN .\nBut North Korean leader Kim Jong-il told a visiting Chinese diplomat this week that it will resume talks if conditions are right .\tCC JJ JJ NN NNP NNP VBD DT VBG JJ NN DT NN IN PRP MD VB NNS IN NNS VBP JJ .\nSouth Korea 's foreign minister said Wednesday that Pyongyang should return to the talks without setting any conditions .\tNNP NNP POS JJ NN VBD NNP IN NNP MD VB TO DT NNS IN VBG DT NNS .\nState media in Sudan say a leader of the Darfur rebel group that attacked the capital earlier this month has been arrested .\tNNP NNS IN NNP VBP DT NN IN DT NNP NN NN WDT VBD DT NN RBR DT NN VBZ VBN VBN .\nThe reports Thursday say authorities have captured Abdel Aziz Ashr of the rebel Justice and Equality Movement , JEM .\tDT NNS NNP VBP NNS VBP VBN NNP NNP NNP IN DT NN NN CC NN NN , NNP .\nA state radio report says Ashr is the half-brother of top JEM leader Khalil Ibrahim .\tDT NN NN NN VBZ NNP VBZ DT NN IN JJ NNP NN NNP NNP .\nThere were no immediate details on where or when the arrest took place .\tEX VBD DT JJ NNS IN WRB CC WRB DT NN VBD NN .\nThe rebel group launched an attack on Khartoum and the neighboring city of Omdurman on May 10 after traveling across hundreds of kilometers of desert .\tDT NN NN VBD DT NN IN NNP CC DT JJ NN IN NNP IN NNP CD IN VBG IN NNS IN NNS IN NN .\nSoldiers pushed back the rebels in fighting that killed more than 200 people .\tNNS VBD RB DT NNS IN VBG DT VBD JJR IN CD NNS .\nThe attack marked the first time rebels from Sudan 's western Darfur region reached the capital .\tDT NN VBD DT JJ NN NNS IN NNP POS JJ NNP NN VBD DT NN .\nThe government has offered a reward of $ 2,50,000 for information leading to the capture of JEM leader Ibrahim .\tDT NN VBZ VBN DT NN IN $ CD IN NN VBG TO DT NN IN NNP NN NNP .\nPakistani officials say at least 16 people killed by Afghan forces this week were Pakistani civilians and not Taleban fighters as previously claimed .\tJJ NNS VBP IN JJS CD NNS VBN IN JJ NNS DT NN VBD JJ NNS CC RB NNP NNS IN RB VBN .\nOfficials said some of the victims ' bodies have been returned to the Pakistani border town of Chaman for funerals .\tNNS VBD DT IN DT NNS POS NNS VBP VBN VBN TO DT JJ NN NN IN NNP IN NNS .\nResidents of Chaman said the victims were local villagers on their way to a festival when they were killed .\tNNS IN NNP VBD DT NNS VBD JJ NNS IN PRP$ NN TO DT NN WRB PRP VBD VBN .\nThe governor of Afghanistan 's Kandahar province , where the incident took place late Tuesday , said a team of investigators was sent to the area .\tDT NN IN NNP POS NNP NN , WRB DT NN VBD NN JJ NNP , VBD DT NN IN NNS VBD VBN TO DT NN .\nEarlier , an Afghan commander had said his soldiers killed at least 16 suspected Taleban militants after they crossed the border from neighboring Pakistan , near Spin Boldak .\tRB , DT JJ NN VBD VBN PRP$ NNS VBD IN JJS CD JJ NNP NNS IN PRP VBD DT NN IN VBG NNP , IN NNP NNP .\nHe said that among the dead were two Taleban commanders believed to have organized several attacks .\tPRP VBD IN IN DT NN VBD CD NNP NNS VBN TO VB VBN JJ NNS .\nThe international police organization , Interpol , has issued wanted notices for 16 more suspects in connection with the killing of a Hamas leader in Dubai .\tDT JJ NN NN , NNP , VBZ VBN JJ NNS IN CD JJR NNS IN NN IN DT NN IN DT NNP NN IN NNP .\nMonday 's announcement brought to 27 the total number of suspects named in the January assassination of Mahmoud al-Mabhouh .\tNNP POS NN VBD TO CD DT JJ NN IN NNS VBN IN DT NNP NN IN NNP NNP .\nInterpol says the notices were made at the request of Dubai authorities .\tNNP VBZ DT NNS VBD VBN IN DT NN IN NNP NNS .\nIt says Dubai authorities have identified two teams of individuals linked to the murder .\tPRP VBZ NNP NNS VBP VBN CD NNS IN NNS VBN TO DT NN .\nThe Interpol red notice allows Dubai to circulate its arrest warrant worldwide with the request that the wanted individuals be arrested and extradited for prosecution .\tDT NNP NN NN VBZ NNP TO VB PRP$ NN NN NN IN DT NN IN DT JJ NNS VB VBN CC VBN IN NN .\nThe suspects in the case carried FALSE passports from Britain , Ireland , France , Germany and Australia .\tDT NNS IN DT NN VBD JJ NNS IN NNP , NNP , NNP , NNP CC NNP .\nDubai authorities suspect Israel 's Mossad spy agency was responsible for the killing .\tNNP NNS VBP NNP POS NNP NN NN VBD JJ IN DT NN .\nIsrael has neither confirmed nor denied having a role .\tNNP VBZ RB VBN CC VBN VBG DT NN .\nA well-known journalist in Gambia has been shot and killed in the capital , Banjul .\tDT JJ NN IN NNP VBZ VBN VBN CC VBN IN DT NN , NNP .\nColleagues and family members say newspaper editor and news-agency correspondent Deyda Hydara died at the spot where he was gunned down after leaving work late Thursday .\tNNS CC NN NNS VBP NN NN CC NN NN NNP NNP VBD IN DT NN WRB PRP VBD VBN RP IN VBG NN RB NNP .\nNo attacker was identified .\tDT NN VBD VBN .\nMr. Hydara was an editor for the newspaper The Point and a correspondent for the French news agency , AFP .\tNNP NNP VBD DT NN IN DT NN DT NN CC DT NN IN DT JJ NN NN , NNP .\nRussian President Vladimir Putin indirectly has criticized Britain for its refusal to extradite people who Russia considers terrorist suspects .\tJJ NNP NNP NNP RB VBZ VBN NNP IN PRP$ NN TO VB NNS WP NNP VBZ JJ NNS .\nMr. Putin spoke Wednesday in Moscow at a conference of European prosecutors .\tNNP NNP VBD NNP IN NNP IN DT NN IN JJ NNS .\nHe said that he does not understand why people who are accused of terrorism are not extradited , and instead are granted political asylum .\tPRP VBD IN PRP VBZ RB VB WRB NNS WP VBP VBN IN NN VBP RB VBN , CC RB VBP VBN JJ NN .\nHe did not specifically name Britain .\tPRP VBD RB RB NN NNP .\nHe referred only to what he called certain countries that grant asylum to people accused of terrorism .\tPRP VBD RB TO WP PRP VBD JJ NNS WDT VBP NN TO NNS VBN IN NN .\nMr. Putin also warned European officials against using human rights issues to promote their own political interests .\tNNP NNP RB VBD JJ NNS IN VBG JJ NNS NNS TO VB PRP$ JJ JJ NNS .\nLast month , Russia 's new prosecutor general said he is sending a team of specialists to Britain to deal with cases in which British courts have refused Russian extradition requests .\tJJ NN , NNP POS JJ NN NN VBD PRP VBZ VBG DT NN IN NNS TO NNP TO VB IN NNS IN WDT JJ NNS VBP VBN JJ NN NNS .\nRussia for years has sought the extradition of business tycoon Boris Berezovsky and Chechen separatist envoy Akhmed Zakayev .\tNNP IN NNS VBZ VBN DT NN IN NN NN NNP NNP CC JJ JJ NN VBN NNP .\nBritish authorities have granted both men political asylum .\tJJ NNS VBP VBN DT NNS JJ NN .\nHong Kong health officials say a nine-month old girl has tested positive for a mild strain of the bird flu virus .\tNNP NNP NN NNS VBP DT JJ JJ NN VBZ VBN JJ IN DT JJ NN IN DT NN NN NN .\nOfficials said Tuesday that it was most likely the baby was infected when she was taken to a food market that sold live poultry .\tNNS VBD NNP IN PRP VBD RBS JJ DT NN VBD VBN WRB PRP VBD VBN TO DT NN NN WDT VBD JJ NN .\nDoctors have isolated the baby at a local hospital , but say her condition is not that serious .\tNNS VBP VBN DT NN IN DT JJ NN , CC VBP PRP$ NN VBZ RB IN JJ .\nThe head of Hong Kong 's Center for Health Protection , Thomas Tsang , says the baby 's case is the third time that the H9N2 strain of bird flu has been detected in humans .\tDT NN IN NNP NNP POS NNP IN NNP NNP , NNP NNP , VBZ DT NN POS NN VBZ DT JJ NN IN DT NNP NN IN NN NN VBZ VBN VBN IN NNS .\nBird flu has many subtypes .\tNN NN VBZ JJ NNS .\nThe more dangerous H5N1 strain of the virus has killed more than 160 people since 2003 .\tDT RBR JJ NNP NN IN DT NN VBZ VBN JJR IN CD NNS IN CD .\nBird flu first appeared in Hong Kong in 1997 .\tNN NN RB VBD IN NNP NNP IN CD .\nThe virus killed six people and led to the slaughter of more than a million birds .\tDT NN VBD CD NNS CC VBD TO DT NN IN JJR IN DT CD NNS .\nU.S. federal authorities have charged a young man with making a FALSE threat against professional football stadiums in seven U.S. cities .\tNNP JJ NNS VBP VBN DT JJ NN IN VBG DT JJ NN IN JJ NN NNS IN CD NNP NNS .\nOfficials say the 20-year-old suspect will appear in court later Friday .\tNNS VBP DT JJ NN MD VB IN NN RB NNP .\nHe is alleged to be connected to an Internet hoax threatening ' dirty bomb ' attacks on those stadiums .\tPRP VBZ VBN TO VB VBN TO DT NN NN VBG `` JJ NN `` NNS IN DT NNS .\nA ' dirty bomb ' is an explosive device combined with radioactive material .\tDT `` NN NN `` VBZ DT JJ NN VBN IN JJ NN .\nOn Wednesday , the Department of Homeland Security warned National Football League officials in the seven cities about the threat , but also expressed doubts about its credibility .\tIN NNP , DT NNP IN NNP NNP VBD NNP NNP NNP NNS IN DT CD NNS IN DT NN , CC RB VBD NNS IN PRP$ NN .\nThursday , federal investigators announced the threat turned out to be a hoax .\tNNP , JJ NNS VBD DT NN VBD RP TO VB DT NN .\nA message posted recently on a web site mentioned stadiums in New York , Miami , Atlanta , Seattle , Houston , Oakland and Cleveland .\tDT NN VBD RB IN DT NN NN VBN NNS IN NNP NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nNATO says a heavily armed Taliban commander has been killed in a shootout at a mosque in eastern Afghanistan .\tNNP VBZ DT RB JJ NNP NN VBZ VBN VBN IN DT NN IN DT NN IN JJ NNP .\nNATO officials say international and Afghan forces went Saturday to a compound in Wardak province to look for the commander , who fled to a nearby mosque as troops approached .\tNNP NNS VBP JJ CC JJ NNS VBD NNP TO DT NN IN NNP NN TO VB IN DT NN , WP VBD TO DT JJ NN IN NNS VBD .\nSecurity forces surrounded the mosque and ordered him to surrender .\tNN NNS VBN DT NN CC VBD PRP TO VB .\nBut he refused to do so and opened fire as the shootout started .\tCC PRP VBD TO VB RB CC VBD NN IN DT NN VBD .\nOfficials say the Taliban commander was armed with grenades and rounds of ammunition .\tNNS VBP DT NNP NN VBD VBN IN NNS CC NNS IN NN .\nHe was wanted for buying weapons and components for explosive devices , and for helping plan attacks .\tPRP VBD VBN IN VBG NNS CC NNS IN JJ NNS , CC IN VBG NN NNS .\nNATO also says a U.S. soldier died Friday from a roadside bomb in southern Afghanistan .\tNNP RB VBZ DT NNP NN VBD NNP IN DT NN NN IN JJ NNP .\nIn the Afghan capital , Kabul , a rocket landed Saturday near the Afghan Defense ministry .\tIN DT JJ NN , NNP , DT NN VBD NNP IN DT JJ NNP NN .\nIt was unclear if there were casualties .\tPRP VBD JJ IN EX VBD NNS .\nAfghan officials say at least 12 civilian construction workers have been killed in airstrikes by U.S.-led coalition forces in eastern Afghanistan ..\tJJ NNS VBP IN JJS CD JJ NN NNS VBP VBN VBN IN NNS IN JJ NN NNS IN JJ NNP .\nThe governor of eastern Nuristan province , Tamin Nuristani , says the workers were sleeping in tents when the attack happened earlier this week .\tDT NN IN JJ NNP NN , NNP NNP , VBZ DT NNS VBD VBG IN NNS WRB DT NN VBD RBR DT NN .\nHe says U.S. military officials launched the airstrikes after receiving information that Taliban insurgents were in the the area .\tPRP VBZ NNP JJ NNS VBD DT NNS IN VBG NN IN NNP NNS VBD IN DT DT NN .\nCoalition officials have not confirmed that any airstrikes took place , but say they are looking into the incident .\tNN NNS VBP RB VBN IN DT NNS VBD NN , CC VBP PRP VBP VBG IN DT NN .\nThe construction workers were building a road in the remote region .\tDT NN NNS VBD VBG DT NN IN DT JJ NN .\nAfghan President Hamid Karzai has repeatedly pleaded with NATO and coalition troops to use more caution before conducting airstrikes , which have killed a number of civilians .\tJJ NNP NNP NNP VBZ RB VBN IN NNP CC NN NNS TO VB JJR NN IN VBG NNS , WDT VBP VBN DT NN IN NNS .\nThe U.N. 's International Atomic Energy Agency has approved the formation of a $ 150 million nuclear fuel ' bank ' aimed at reducing the number countries seeking to produce nuclear fuel .\tDT NNP POS NNP NNP NNP NNP VBZ VBN DT NN IN DT $ CD CD JJ NN `` NN `` VBN IN VBG DT NN NNS VBG TO VB JJ NN .\nThe IAEA 's action Friday was motivated by a $ 50 million pledge by U.S. billionaire investor Warren Buffett , who says the bank is an investment in a safer world .\tDT NNP POS NN NNP VBD VBN IN DT $ CD CD NN IN NNP NN NN NNP NNP , WP VBZ DT NN VBZ DT NN IN DT JJR NN .\nThe United States is among countries contributing to the fund .\tDT NNP NNPS VBZ IN NNS VBG TO DT NN .\nThe intent of the fuel bank is to reduce the proliferation of nuclear weapons by providing an alternative to countries producing their own nuclear fuel or buying it from other countries .\tDT NN IN DT NN NN VBZ TO VB DT NN IN JJ NNS IN VBG DT NN TO NNS VBG PRP$ JJ JJ NN CC VBG PRP IN JJ NNS .\nThe nuclear fuel bank system is limited to countries in good standing with the energy watchdog agency .\tDT JJ NN NN NN VBZ VBN TO NNS IN JJ NN IN DT NN NN NN .\nBuffett told The New York Times the spread of nuclear weaponry is the number one problem facing society , and that the fuel bank helps lower the risks .\tNNP VBD DT NNP NNP NNP DT NN IN JJ NN VBZ DT NN CD NN VBG NN , CC IN DT NN NN VBZ JJR DT NNS .\nAuthorities in northwestern Pakistan say a minibus - hit by falling rock - has plunged into a ravine , killing 15 people .\tNNS IN JJ NNP VBP DT NN IN VBN IN VBG NN : VBZ VBN IN DT NN , VBG CD NNS .\nFour others survived with injuries .\tCD NNS VBD IN NNS .\nThe authorities say the driver to lost control of the bus Sunday on the road to Mansehra from Balakot , a town devastated by last year 's earthquake .\tDT NNS VBP DT NN TO JJ NN IN DT NN NNP IN DT NN TO NNP IN NNP , DT NN VBN IN JJ NN POS NN .\nLandslides are common in the mountainous region , where the October 8 quake last year killed more than 73,000 people .\tNNS VBP JJ IN DT JJ NN , WRB DT NNP CD NN JJ NN VBD JJR IN CD NNS .\nDetained Burmese opposition leader Aung San Suu Kyi has requested a meeting with the chief of the country 's ruling military .\tVBN JJ NN NN NNP NNP NNP NNP VBZ VBN DT NN IN DT NN IN DT NN POS NN NN .\nThe Nobel peace laureate wrote a letter to the military government on November 11 asking to meet reclusive Senior General Than Shwe .\tDT NNP NN NN VBD DT NN TO DT JJ NN IN NNP CD VBG TO VB JJ NNP NNP NNP NNP .\nOn Sunday , U.S. President Barack Obama offered Burma the prospect of better ties with Washington if it pursues democratic reform and frees political prisoners , including Aung San Suu Kyi .\tIN NNP , NNP NNP NNP NNP VBD NNP DT NN IN JJR NNS IN NNP IN PRP VBZ JJ NN CC VBZ JJ NNS , VBG NNP NNP NNP NNP .\nLast month the opposition leader met with a minister from the ruling regime , and in September she made a formal offer to the government to help negotiate with Western countries to lift sanctions .\tJJ NN DT NN NN VBD IN DT NN IN DT NN NN , CC IN NNP PRP VBD DT JJ NN TO DT NN TO VB VB IN JJ NNS TO VB NNS .\nAung San Suu Kyi has been under some sort of detention for 14 of the last 20 years .\tNNP NNP NNP NNP VBZ VBN IN DT NN IN NN IN CD IN DT JJ CD NNS .\nThe United States says it looks forward to working with a new Pakistani government and President Pervez Musharraf .\tDT NNP NNPS VBZ PRP VBZ RB TO VBG IN DT JJ JJ NN CC NNP NNP NNP .\nState Department spokesman Richard Boucher said Thursday that the Bush administration will work with whoever emerges as Pakistan 's prime minister , as well as Mr. Musharraf , who now serves as Pakistan 's civilian president .\tNNP NNP NN NNP NNP VBD NNP IN DT NNP NN MD VB IN WP VBZ IN NNP POS JJ NN , RB RB IN NNP NNP , WP RB VBZ IN NNP POS JJ NN .\nThe administration also confirmed Thursday that President Bush phoned Mr. Musharraf on Tuesday , a day after his party 's sweeping defeat in parliamentary elections .\tDT NN RB VBD NNP IN NNP NNP VBD NNP NNP IN NNP , DT NN IN PRP$ NN POS JJ NN IN JJ NNS .\nA spokeswoman for Mr. Bush declined to say what the two leaders discussed .\tDT NN IN NNP NNP VBD TO VB WP DT CD NNS VBD .\nPresident Musharraf is considered a key ally in the U.S.-led global war on terror .\tNNP NNP VBZ VBN DT JJ NN IN DT JJ JJ NN IN NN .\nWith Mr. Musharraf 's political future in question , the U.S. has expressed hope this week that Pakistan 's emerging government will continue to be a partner in the fight against violent extremists .\tIN NNP NNP POS JJ NN IN NN , DT NNP VBZ VBN NN DT NN IN NNP POS VBG NN MD VB TO VB DT NN IN DT NN IN JJ NNS .\nBurma 's military rulers announced plans Thursday to hold a gem auction in October , despite international calls to boycott the sale .\tNNP POS JJ NNS VBD NNS NNP TO VB DT NN NN IN NNP , IN JJ NNS TO VB DT NN .\nOfficials say jade , pearls , and precious gems will be among the lots on sale at the auction .\tNNS VBP NN , NNS , CC JJ NNS MD VB IN DT NNS IN NN IN DT NN .\nBurma 's last gem auction was held in June , just one month after Cyclone Nargis swept across the country 's south , leaving more than 1,30,000 people dead or missing .\tNNP POS JJ NN NN VBD VBN IN NNP , RB CD NN IN NNP NNP VBD IN DT NN POS NN , VBG JJR IN CD NNS JJ CC JJ .\nBurma is one of the main producers of jade and other gems , as well as the source of up to 90 percent of the world 's rubies .\tNNP VBZ CD IN DT JJ NNS IN NN CC JJ NNS , RB RB IN DT NN IN RB TO CD NN IN DT NN POS NNS .\nGem auctions are a major revenue earner for Burma 's military government .\tNNP NNS VBP DT JJ NN NN IN NNP POS JJ NN .\nJewelry companies and human rights groups have urged buyers to boycott Burmese gems to protest rights violations in the country .\tNN NNS CC JJ NNS NNS VBP VBN NNS TO VB JJ NNS TO VB NNS NNS IN DT NN .\nIn July , the United States passed legislation banning the import of gems from Burma through third-party countries .\tIN NNP , DT NNP NNPS VBD NN VBG DT NN IN NNS IN NNP IN JJ NNS .\nBrazilian police say at least 16 people have been killed in a series of attacks on police stations and public buses in Rio de Janeiro .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN IN NNS IN NN NNS CC JJ NNS IN NNP NNP NNP .\nOfficials said gunmen stopped one bus on a highway in the city , robbed the passengers and then torched the vehicle .\tNNS VBD NNS VBD CD NN IN DT NN IN DT NN , VBN DT NNS CC RB VBD DT NN .\nThey said at least six bodies were found on the charred bus .\tPRP VBD IN JJS CD NNS VBD VBN IN DT JJ NN .\nGunmen also opened fire on several police posts and buildings , killing two policemen .\tNNS RB VBD NN IN JJ NNS NNS CC NNS , VBG CD NNS .\nPolice said the motive for the apparently coordinated overnight attacks was not immediately clear .\tNNS VBD DT NN IN DT RB VBN JJ NNS VBD RB RB JJ .\nSome officials said it may be linked to anti-drug efforts in the city .\tDT NNS VBD PRP MD VB VBN TO JJ NNS IN DT NN .\nSome 200 people in Sao Paulo died earlier this year in a series of attacks by criminal gangs .\tDT CD NNS IN NNP NNP VBD RBR DT NN IN DT NN IN NNS IN JJ NNS .\nFormer president Bill Clinton has criticized the U.S.-led war in Iraq as a ' big mistake , ' saying officials failed to plan for what would follow the ouster of Saddam Hussein .\tJJ NN NNP NNP VBZ VBN DT JJ NN IN NNP IN DT `` JJ NN , `` VBG NNS VBD TO VB IN WP MD VB DT NN IN NNP NNP .\nSpeaking to students at the American University in Dubai , Mr. Clinton said it is a good thing that Saddam is gone , but he does n't agree with what was done .\tVBG TO NNS IN DT NNP NNP IN NNP , NNP NNP VBD PRP VBZ DT JJ NN IN NNP VBZ VBN , CC PRP VBZ RB VB IN WP VBD VBN .\nHe said U.S. officials made several errors , such as not sending enough troops and dismantling Iraq 's authority structure .\tPRP VBD NNP NNS VBD JJ NNS , JJ IN RB VBG JJ NNS CC VBG NNP POS NN NN .\nMr. Clinton added that U.S.-led forces failed to secure the country 's borders , allowing foreign terrorists to enter Iraq .\tNNP NNP VBD IN JJ NNS VBD TO VB DT NN POS NNS , VBG JJ NNS TO VB NNP .\nThe Bush administration in recent days has defended the war , noting that many current critics had warned that Saddam was a threat before the war started .\tDT NNP NN IN JJ NNS VBZ VBN DT NN , VBG IN JJ JJ NNS VBD VBN IN NNP VBD DT NN IN DT NN VBD .\nTuesday , Defense Secretary Donald Rumsfeld said , Mr. Clinton , as president , had warned that Saddam was planning to use weapons of mass destruction .\tNNP , NNP NNP NNP NNP VBD , NNP NNP , IN NN , VBD VBN IN NNP VBD VBG TO VB NNS IN NN NN .\nIraqi police say at least 13 people were killed when gunmen attacked a bus carrying workers to a U.S. base in Baquba Tuesday .\tJJ NNS VBP IN JJS CD NNS VBD VBN WRB NNS VBD DT NN VBG NNS TO DT NNP NN IN NNP NNP .\nPolice say the assailants riding in two cars blocked the bus and opened fire , killing the driver and nine workers .\tNNS VBP DT NNS VBG IN CD NNS VBD DT NN CC VBD NN , VBG DT NN CC CD NNS .\nThree other civilians were killed when the bus rammed their car .\tCD JJ NNS VBD VBN WRB DT NN VBD PRP$ NN .\nSome 170 people have been killed in violence across Iraq in the past week , including at least 14 in a string of attacks Monday\tDT CD NNS VBP VBN VBN IN NN IN NNP IN DT JJ NN , VBG IN JJS CD IN DT NN IN NNS NNP\nThe chairman of the U.S. Joint Chiefs of Staff , General Richard Myers , said Monday the recent wave attacks will not derail the drafting of an Iraqi constitution and the election of a new government later this year .\tDT NN IN DT NNP NNP NNP IN NNP , NNP NNP NNP , VBD NNP DT JJ NN NNS MD RB VB DT NN IN DT JJ NN CC DT NN IN DT JJ NN RB DT NN .\nIraqi President Jalal Talabani said today the committee working to draft the constitution is making ' good progress , ' and that the document could be ready ahead of the August 15 deadline .\tJJ NNP NNP NNP VBD NN DT NN VBG TO VB DT NN VBZ VBG `` JJ NN , `` CC IN DT NN MD VB JJ RB IN DT NNP CD NN .\nHundreds of Afghan security troops backed by U.S. forces have killed at least 32 suspected Taleban rebels in a district capital of Kandahar province .\tNNS IN JJ NN NNS VBN IN NNP NNS VBP VBN IN JJS CD JJ NNP NNS IN DT NN NN IN NNP NN .\nRebels overran the Mian Nishin district last week , taking 31 police hostage and later killing eight of them .\tNNS VBP DT JJ NNP NN JJ NN , VBG CD NN NN CC RB VBG CD IN PRP .\nMilitants say they have released the remaining 23 hostages .\tNNS VBP PRP VBP VBN DT VBG CD NNS .\nBefore dawn Tuesday , some 400 Afghan troops entered the area , capturing 15 suspected militants and killing at least 11 others .\tIN NN NNP , DT CD JJ NNS VBD DT NN , VBG CD JJ NNS CC VBG IN JJS CD NNS .\nU.S. airstrikes in the area killed some 21 other suspected militants .\tNNP NNS IN DT NN VBD DT CD JJ JJ NNS .\nElsewhere in Kandahar province , United Nations and Afghan officials say militants killed an Afghan election worker in an ambush .\tRB IN NNP NN , NNP NNPS CC JJ NNS VBP NNS VBD DT JJ NN NN IN DT NN .\nIt was the second killing of an election worker ahead of the September parliamentary election .\tPRP VBD DT JJ NN IN DT NN NN RB IN DT NNP JJ NN .\nTaiwan 's ruling party is hoping to win a huge upset in presidential elections on Saturday just weeks after the opposition candidate seemed poised to easily win .\tNNP POS NN NN VBZ VBG TO VB DT JJ NN IN JJ NNS IN NNP RB NNS IN DT NN NN VBD VBN TO RB VB .\nThe wide lead by opposition candidate Ma Ying-jeou over ruling party challenger Frank Hsieh has narrowed since China 's crackdown on Tibet .\tDT JJ NN IN NN NN NNP NNP IN VBG NN NN NNP NNP VBZ VBN IN NNP POS NN IN NNP .\nMa , who heads the Nationalist Party , has promised to improve relations with China and establish a common market with Taiwan 's communist neighbor .\tNNP , WP VBZ DT NNP NNP , VBZ VBN TO VB NNS IN NNP CC VB DT JJ NN IN NNP POS JJ NN .\nHsieh , of the ruling Democratic Progressive Party , says China views Taiwan as it does Tibet and has warned that the island 's democracy could be in jeopardy if Ma is elected .\tNNP , IN DT NN JJ NNP NNP , VBZ NNP VBZ NNP IN PRP VBZ NNP CC VBZ VBN IN DT NN POS NN MD VB IN NN IN NNP VBZ VBN .\nTaiwan and China split amid a civil war in 1949 , but Beijing still considers the island part of its territory and has threatened military force to reclaim it .\tNNP CC NNP VBD IN DT JJ NN IN CD , CC NNP RB VBZ DT NN NN IN PRP$ NN CC VBZ VBN JJ NN TO VB PRP .\nMa has accused Hsieh of exploiting the Tibet issue for political gain .\tNNP VBZ VBN NNP IN VBG DT NNP NN IN JJ NN .\nMalawi 's constitutional court has stopped impeachment proceedings against President Bingu wa Mutharika , pending a review of the parliamentary guidelines on how to remove him .\tNNP POS JJ NN VBZ VBN NN NNS IN NNP NNP NNP NNP , VBG DT NN IN DT JJ NNS IN WRB TO VB PRP .\nThe court 's ruling Wednesday comes after a private lawyer challenged the legality of the impeachment motion against the president .\tDT NN POS NN NNP VBZ IN DT JJ NN VBD DT NN IN DT NN NN IN DT NN .\nHe said Mr. Mutharika is arguing that the procedures , which were to begin Thursday , are unconstitutional and are not in accordance with the rules of natural justice .\tPRP VBD NNP NNP VBZ VBG IN DT NNS , WDT VBD TO VB NNP , VBP JJ CC VBP RB IN NN IN DT NNS IN JJ NN .\nMalawi 's parliament last week introduced the impeachment motion against Mr. Mutharika , charging him with misuse of public funds in setting up his own party .\tNNP POS NN JJ NN VBD DT NN NN IN NNP NNP , VBG PRP IN NN IN JJ NNS IN VBG RP PRP$ JJ NN .\nMr. Mutharika - a former economist - has won praise from donor nations and aid agencies for his efforts to adopt economic reforms and stamp out corruption .\tNNP NNP IN DT JJ NN : VBZ VBN NN IN NN NNS CC NN NNS IN PRP$ NNS TO VB JJ NNS CC VB RP NN .\nA Hungarian government spokesman says the deadly strain of bird flu virus has been found in southern Hungary .\tDT JJ NN NN VBZ DT JJ NN IN NN NN NN VBZ VBN VBN IN JJ NNP .\nThe spokesman , Andras Batiz , said Tuesday three wild swans found last week have tested positive for the H5N1 virus .\tDT NN , NNP NNP , VBD NNP CD JJ NNS VBN JJ NN VBP VBN JJ IN DT NNP NN .\nA British laboratory confirmed the test results .\tDT JJ NN VBD DT NN NNS .\nGerman veterinary officials Tuesday confirmed 22 new cases of flu in birds on the island of Ruegen .\tJJ JJ NNS NNP VBD CD JJ NNS IN NN IN NNS IN DT NN IN NNP .\nThe German government announced Monday the virus had spread to the mainland .\tDT JJ NN VBD NNP DT NN VBD VBN TO DT NN .\n103 cases have now been found in wild birds in Germany .\tCD NNS VBP RB VBN VBN IN JJ NNS IN NNP .\nTroops have been deployed to control the outbreak .\tNNS VBP VBN VBN TO VB DT NN .\nIn Malaysia Tuesday , officials began culling birds and launched house-to-house inspections for sick people a day after the nation 's first outbreak in more than a year .\tIN NNP NNP , NNS VBD VBG NNS CC VBD NN NNS IN JJ NNS DT NN IN DT NN POS JJ NN IN JJR IN DT NN .\nNo human infections have been reported .\tDT JJ NNS VBP VBN VBN .\nAnd in India , officials wrapped up the culling of thousands of birds to control the latest outbreak in Maharastra state .\tCC IN NNP , NNS VBD RP DT NN IN NNS IN NNS TO VB DT JJS NN IN NNP NN .\nSenegal says its security forces have conducted ' minimal ' acts of torture , but says the country is and always has been committed to investigating and prosecuting such acts .\tNNP VBZ PRP$ NN NNS VBP VBN `` JJ `` NNS IN NN , CC VBZ DT NN VBZ CC RB VBZ VBN VBN TO VBG CC VBG JJ NNS .\nResponding to a report by Amnesty International , government spokesman Moustapha Guirassy said Thursday that Senegal respects the rule of law and works to preserve and defend human rights .\tVBG TO DT NN IN NNP NNP , NN NN NNP NNP VBD NNP IN NNP VBZ DT NN IN NN CC VBZ TO VB CC VB JJ NNS .\nIn its report , the rights group said 12 years of research showed that Senegal 's security forces have electrocuted , burned , beaten , and asphyxiated prisoners .\tIN PRP$ NN , DT NNS NN VBD CD NNS IN NN VBD IN NNP POS NN NNS VBP VBN , VBN , NN , CC VBD NNS .\nResearcher Salvatore Sagues said at least six prisoners have died in Senegalese custody in the last three years .\tNN NNP NNP VBD IN JJS CD NNS VBP VBN IN JJ NN IN DT JJ CD NNS .\nHe said that due to a requirement for government permission , cases against police and soldiers are rarely prosecuted .\tPRP VBD IN JJ TO DT NN IN NN NN , NNS IN NNS CC NNS VBP RB VBN .\nGuirassy Thursday denied there is impunity for officers .\tNNP NNP VBD EX VBZ NN IN NNS .\nHe said prosecutions must proceed slowly while a thorough investigation is made .\tPRP VBD NNS MD VB RB IN DT JJ NN VBZ VBN .\nA strong earthquake that rattled southeastern Turkey Monday has injured at least 37 people while causing minor damage to buildings .\tDT JJ NN WDT VBD JJ NNP NNP VBZ VBN IN JJS CD NNS IN VBG JJ NN TO NNS .\nThe Kandill Observatory in Istanbul says a preliminary estimate of the quake 's magnitude was 5.7 .\tDT NNP NNP IN NNP VBZ DT JJ NN IN DT NN POS NN VBD CD .\nIt was centered near the town of Karliova in Bingol province .\tPRP VBD VBN IN DT NN IN NNP IN NNP NN .\nTurkish officials have sent rescue teams , tents and blankets to the area .\tJJ NNS VBP VBN NN NNS , NNS CC NNS TO DT NN .\nEarthquakes are frequent in Turkey , which sits atop a major tectonic faultline .\tNNS VBP JJ IN NNP , WDT VBZ IN DT JJ JJ NN .\nA powerful quake that hit northwestern Turkey in 1999 killed more than 17,000 people .\tDT JJ NN WDT VBD JJ NNP IN CD VBD JJR IN CD NNS .\nZimbabwe 's High Court has ruled that 64 suspected mercenaries may appeal their jail terms on convictions related to a coup plot in oil-rich Equatorial Guinea .\tNNP POS NNP NNP VBZ VBN IN CD JJ NNS MD VB PRP$ NN NNS IN NNS VBN TO DT NN NN IN JJ NNP NNP .\nA court judge , Chenembiri Bhunu , granted their petition to appeal to Zimbabwe 's Supreme Court .\tDT NN NN , NNP NNP , VBD PRP$ NN TO VB TO NNP POS NNP NNP .\nNo date has been set .\tDT NN VBZ VBN VBN .\nThe 64 men , mostly South Africans , were convicted in September on minor immigration and aviation charges .\tDT CD NNS , RB NNP NNS , VBD VBN IN NNP IN JJ NN CC NN NNS .\nSentences ranged from 12 to 16 months in prison .\tNNS VBD IN CD CC CD NNS IN NN .\nThey were among 70 men arrested last March when their plane landed in Harare .\tPRP VBD IN CD NNS VBN JJ NNP WRB PRP$ NN VBD IN NNP .\nZimbabwe accused the group of involvement in a plot to oust the president of Equatorial Guinea , Teodoro Obiang Nguema .\tNNP VBD DT NN IN NN IN DT NN TO VB DT NN IN NNP NNP , NNP NNP NNP .\nThe defendants denied the charges , insisting they were headed to Congo to guard mining installations .\tDT NNS VBD DT NNS , VBG PRP VBD VBN TO NNP TO VB NN NNS .\nLast month , a court in Equatorial Guinea handed down stiff prison sentences to some 24 suspects convicted of involvement in the foiled plot .\tJJ NN , DT NN IN NNP NNP VBD RP JJ NN NNS TO DT CD NNS VBN IN NN IN DT VBN NN .\nPoland says it will re-route plans for a major highway away from one of Europe 's last unspoiled wetlands .\tNNP VBZ PRP MD VB NNS IN DT JJ NN RB IN CD IN NNP POS JJ JJ NNS .\nEnvironment Minister Maciej Nowicki said Tuesday the new route is cheaper than the original plans and makes the highway just two kilometers longer .\tNNP NNP NNP NNP VBD NNP DT JJ NN VBZ JJR IN DT JJ NNS CC VBZ DT NN RB CD NNS RB .\nHe says he will ask the European Union to stop its lawsuit aimed at forcing Poland to cancel the highway .\tPRP VBZ PRP MD VB DT NNP NNP TO VB PRP$ NN VBN IN VBG NNP TO VB DT NN .\nPoland had originally planned to build its section of the Via Baltica on pillars through the Rospuda Valley - a pristine peat bog home to rare plants and eagles , wolves , and lynx .\tNNP VBD RB VBN TO VB PRP$ NN IN DT NNP NNP IN NNS IN DT NNP NNP IN DT JJ NN NN NN TO JJ NNS CC NNS , NNS , CC NN .\nThe plans outraged environmentalists and brought legal action from the EU .\tDT NNS VBD NNS CC VBD JJ NN IN DT NNP .\nResidents of the northern town of Augustow are demanding a highway , saying heavy truck traffic is destroying their city .\tNNS IN DT JJ NN IN NNP VBP VBG DT NN , VBG JJ NN NN VBZ VBG PRP$ NN .\nThe Via Baltica will link Poland with Finland .\tDT NNP NNP MD VB NNP IN NNP .\nA 37-year-old woman has become the 13th person in Egypt to die of the H5N1 strain of bird flu .\tDT JJ NN VBZ VBN DT JJ NN IN NNP TO VB IN DT NNP NN IN NN NN .\nNadia Mohammed Abdel Hafez died in a hospital in Cairo early Friday .\tNNP NNP NNP NNP VBD IN DT NN IN NNP JJ NNP .\nHealth officials initially reported that her condition was stable and that she was being treated with the drug Tamiflu .\tNNP NNS RB VBD IN PRP$ NN VBD JJ CC IN PRP VBD VBG VBN IN DT NN NNP .\nThe woman raised poultry in her home in the province of Fayoum , south of Cairo , where a teenage girl died of bird flu earlier this month .\tDT NN VBD NN IN PRP$ NN IN DT NN IN NNP , NN IN NNP , WRB DT NN NN VBD IN NN NN RBR DT NN .\nHealth officials announced separately Friday that a five-year-old boy has tested positive for bird flu .\tNNP NNS VBD RB NNP IN DT JJ NN VBZ VBN JJ IN NN NN .\nHe is the 22nd confirmed human case of bird flu in Egypt .\tPRP VBZ DT NN VBD JJ NN IN NN NN IN NNP .\nEgypt has become the largest cluster of human cases of bird flu outside of Asia , where the disease originated .\tNNP VBZ VBN DT JJS NN IN JJ NNS IN NN NN IN IN NNP , WRB DT NN VBN .\nCases have been discovered in 19 of Egypt 's 26 provinces .\tNNS VBP VBN VBN IN CD IN NNP POS CD NNS .\nVietnam and the United States have signed an agreement that will allow U.S. companies to work in Vietnam to develop atomic power for energy .\tNNP CC DT NNP NNPS VBP VBN DT NN WDT MD VB NNP NNS TO VB IN NNP TO VB JJ NN IN NN .\nUS Ambassador Michael Michalak described Tuesday 's agreement as an important moment in bilateral relations between the two nations , adding that it is a key step in advancing non-proliferation goals .\tNNP NNP NNP NNP VBD NNP POS NN IN DT JJ NN IN JJ NNS IN DT CD NNS , VBG IN PRP VBZ DT JJ NN IN VBG JJ NNS .\nIn November , Vietnam approved plans to build the country 's first two nuclear power plants in the south central province of Ninh Thuan .\tIN NNP , NNP VBD NNS TO VB DT NN POS JJ CD JJ NN NNS IN DT JJ JJ NN IN NNP NNP .\nMedia reports say Vietnam signed a deal with a Russian firm to build the first plant .\tNNS NNS VBP NNP VBD DT NN IN DT JJ NN TO VB DT JJ NN .\nThis year marks the 15th anniversary of the re-establishment of diplomatic relations between the United States and Vietnam , following the Vietnam War .\tDT NN VBZ DT JJ NN IN DT NN IN JJ NNS IN DT NNP NNPS CC NNP , VBG DT NNP NNP .\nA U.S. Congressional report says it finds no overall improvement in human rights conditions in China during the past year , and that citizens who challenge state controls continue to face severe repression .\tDT NNP JJ NN VBZ PRP VBZ DT JJ NN IN JJ NNS NNS IN NNP IN DT JJ NN , CC IN NNS WP VBP NN NNS VBP TO VB JJ NN .\nIn its annual report released Tuesday , the Congressional-Executive Commission on China says Beijing continues to pursue certain judicial and criminal justice reforms that have potential to improve human rights .\tIN PRP$ JJ NN VBN NNP , DT JJ NN IN NNP VBZ NNP VBZ TO VB JJ JJ CC JJ NN NNS WDT VBP NN TO VB JJ NNS .\nBut it says these steps are ' clouded by new detentions and government policies designed to protect the Communist Party 's rule . '\tCC PRP VBZ DT NNS VBP `` VBN IN JJ NNS CC NN NNS VBN TO VB DT NNP NNP POS NN . ``\nThe commission says China continues to harass , abuse and detain religious believers who practice their faith outside state-controlled religious venues , in particular the Muslim Uighur minority .\tDT NN VBZ NNP VBZ TO VB , NN CC NN JJ NNS WP VB PRP$ NN IN JJ JJ NNS , IN JJ DT NNP NNP NN .\nThe report calls on President Bush and Congress to urge Chinese officials not to use the global war against terrorism as a pretext to suppress minorities ' rights .\tDT NN VBZ IN NNP NNP CC NNP TO VB JJ NNS RB TO VB DT JJ NN IN NN IN DT NN TO VB NNS POS NNS .\nProsecutors in the Netherlands have filed new charges against a Dutch-born Islamic extremist who was convicted of killing filmmaker Theo van Gogh .\tNNS IN DT NNP VBP VBN JJ NNS IN DT JJ JJ NN WP VBD VBN IN VBG NN NNP NNP NNP .\nMohammed Bouyeri , 27 , and 12 other defendants appeared in a Dutch court Tuesday to face charges of membership in a terrorist movement authorities have called the ' Hofstad Group . '\tNNP NNP , CD , CC CD JJ NNS VBD IN DT JJ NN NNP TO VB NNS IN NN IN DT JJ NN NNS VBP VBN DT `` NNP NNP . ``\nThe 12 defendants were arrested shortly after Van Gogh 's killing .\tDT CD NNS VBD VBN RB IN NNP NNP POS NN .\nLawyers for Bouyeri say the prosecution wants to punish their client further , adding that he has already received the maximum sentence of life in prison .\tNNS IN NNP VBP DT NN VBZ TO VB PRP$ NN RB , VBG IN PRP VBZ RB VBN DT JJ NN IN NN IN NN .\nThe new charges carry a maximum 15-year prison term .\tDT JJ NNS VBP DT JJ JJ NN NN .\nDutch authorities believe Van Gogh 's murder was a response to his criticism of Islam and its treatment of women in his film ' Submission . '\tJJ NNS VBP NNP NNP POS NN VBD DT NN TO PRP$ NN IN NNP CC PRP$ NN IN NNS IN PRP$ NN `` NNP . ``\nFresh fighting broke out early Saturday in northeastern Burma after days of clashes between government troops and ethnic rebels .\tJJ NN VBD RP RB NNP IN JJ NNP IN NNS IN NNS IN NN NNS CC JJ NNS .\nThousands of people have fled to the border town of Nansan in China 's Yunnan province this month to escape clashes in Kokang in Burma 's Shan state , following the deployment of government troops in the area .\tNNS IN NNS VBP VBN TO DT NN NN IN NNP IN NNP POS NNP NN DT NN TO VB NNS IN NNP IN NNP POS NNP NN , VBG DT NN IN NN NNS IN DT NN .\nThe UN High Commissioner for Refugees says up to 30,000 people have fled into China .\tDT NNP NNP NNP IN NNP VBZ RP TO CD NNS VBP VBN IN NNP .\nThe Chinese Red Cross told the Chinese Daily newspaper that one person was killed and several were injured Friday when someone threw a bomb across the Chinese border .\tDT JJ NNP NNP VBD DT JJ JJ NN IN CD NN VBD VBN CC JJ VBD VBN NNP WRB DT VBD DT NN IN DT JJ NN .\nChina has called on Burma to maintain stability in the border region and urged more measures to protect the security and legal rights of Chinese citizens there .\tNNP VBZ VBN IN NNP TO VB NN IN DT NN NN CC VBD JJR NNS TO VB DT NN CC JJ NNS IN JJ NNS RB .\nThe Afghan defense ministry says a top Taleban commander and several of his fighters have been killed in clashes with U.S.-led coalition forces in southern Afghanistan .\tDT JJ NN NN VBZ DT NN NNP NN CC NN IN PRP$ NNS VBP VBN VBN IN NNS IN JJ NN NNS IN JJ NNP .\nThe ministry says the fighting , which also involved air support , took place early Thursday in Helmand province - a known Taleban stronghold .\tDT NN VBZ DT NN , WDT RB VBD NN NN , VBD NN RB NNP IN NNP NN IN DT VBN NNP NN .\nIt identified the dead commander , Mullah Brader , as a relative and close associate of Taleban chief Mullah Omar .\tPRP VBD DT JJ NN , NNP NNP , IN DT JJ CC JJ NN IN NNP NN NNP NNP .\nThe U.S. military in Afghanistan has not commented .\tDT NNP NN IN NNP VBZ RB VBN .\nElsewhere in southern Afghanistan , one NATO soldier and an Afghan interpreter were killed while on patrol in the insurgency-hit southern part of the country\tRB IN JJ NNP , CD NNP NN CC DT JJ NN VBD VBN IN IN NN IN DT JJ JJ NN IN DT NN\nThursday .\tNNP .\nA NATO statement said two other soldiers were wounded .\tDT NNP NN VBD CD JJ NNS VBD VBN .\nIt did not give details of the incident .\tPRP VBD RB VB NNS IN DT NN .\nTwo U.S. senators are calling for an investigation into a suspected terrorist 's claims that he was physically abused while he was held in secret CIA prisons .\tCD NNP NNS VBP VBG IN DT NN IN DT JJ NN POS NNS IN PRP VBD RB VBN IN PRP VBD VBN IN JJ NNP NNS .\nDemocrat Carl Levin and Republican Lindsey Graham observed the March 10 military hearing at Guantanamo Bay , Cuba for Khalid Sheikh Mohammed .\tNNP NNP NNP CC NNP NNP NNP VBD DT NNP CD JJ NN IN NNP NNP , NNP IN NNP NNP NNP .\nThe suspected al-Qaida operative confessed to planning the September 11 , 2001 terrorist attacks on the United States , and several other terrorist plots .\tDT JJ NNP NN VBD TO VBG DT NNP CD , CD JJ NNS IN DT NNP NNPS , CC JJ JJ JJ NNS .\nDuring the hearing , Mohammed issued a written statement alleging he had been mistreated before he was transferred to Guantanamo .\tIN DT NN , NNP VBD DT JJ NN VBG PRP VBD VBN VBN IN PRP VBD VBN TO NNP .\nIn a joint statement issued Friday , Levin and Graham said it ' would reflect poorly ' on the United States if Mohammed 's allegations were not investigated .\tIN DT JJ NN VBN NNP , NNP CC NNP VBD PRP `` MD VB RB `` IN DT NNP NNPS IN NNP POS NNS VBD RB VBN .\nMilitary officials in charge of the hearing say the allegations were being submitted to the appropriate authorities .\tJJ NNS IN NN IN DT NN VBP DT NNS VBD VBG VBN TO DT JJ NNS .\nPakistani President Pervez Musharraf has said in an interview with the Financial Times that he will go ahead with plans to build a natural gas pipeline to Iran , despite U.S. pressure to scrap the project .\tJJ NNP NNP NNP VBZ VBN IN DT NN IN DT NNP NNP IN PRP MD VB RB IN NNS TO VB DT JJ NN NN TO NNP , IN NNP NN TO VB DT NN .\nIn an article published Thursday , Mr. Musharraf tells the newspaper that Pakistan needs the pipeline to provide sufficient energy for industrial growth and foreign investment .\tIN DT NN VBN NNP , NNP NNP VBZ DT NN IN NNP VBZ DT NN TO VB JJ NN IN JJ NN CC JJ NN .\nHe says no country can order Pakistan to abandon the pipeline .\tPRP VBZ DT NN MD VB NNP TO VB DT NN .\nBut Mr. Musharraf also says that anyone who wants the Iran pipeline stopped should pay compensation , leaving open the possibility Washington could compensate Pakistan for giving up the plan .\tCC NNP NNP RB VBZ IN DT WP VBZ DT NNP NN VBN MD VB NN , VBG JJ DT NN NNP MD VB NNP IN VBG RP DT NN .\nEarlier this month , the United Sates said it opposes the building of a natural gas pipeline linking Iran with Pakistan and India .\tRBR DT NN , DT NNP NNP VBD PRP VBZ DT NN IN DT JJ NN NN VBG NNP IN NNP CC NNP .\nTaiwan President Chen Shui-bian says he will make an important policy statement in his National Day address on Oct. 10 , aimed at soothing tensions with China .\tNNP NNP NNP NNP VBZ PRP MD VB DT JJ NN NN IN PRP$ NNP NNP NN IN NNP CD , VBN IN VBG NNS IN NNP .\nMr. Chen told a visiting Japanese delegation Monday that his address would be positive and constructive .\tNNP NNP VBD DT VBG JJ NN NNP IN PRP$ NN MD VB JJ CC JJ .\nHe gave no further details , but said he hoped the message would help narrow the gap between Beijing and Taipei .\tPRP VBD DT JJ NNS , CC VBD PRP VBD DT NN MD VB VB DT NN IN NNP CC NNP .\nMr. Chen has said he wants to revise Taiwan 's constitution , a move China has criticized as a dangerous step towards formal independence .\tNNP NNP VBZ VBN PRP VBZ TO VB NNP POS NN , DT NN NNP VBZ VBN IN DT JJ NN IN JJ NN .\nThe mainland has threatened to use force to crush any moves towards separatism .\tDT NN VBZ VBN TO VB NN TO VB DT NNS IN NN .\nNormalization talks between the two sides have been frozen since 1999 , when Mr. Chen 's predecessor , President Lee Teng-hui , defined bilateral relations as being between two states .\tNN NNS IN DT CD NNS VBP VBN VBN IN CD , WRB NNP NNP POS NN , NNP NNP NNP , VBD JJ NNS IN VBG IN CD NNS .\nThe United Nations mission in Congo says it has spotted fresh camps and well-equipped soldiers it believes are from Rwanda 's armed forces .\tDT NNP NNP NN IN NNP VBZ PRP VBZ VBN JJ NNS CC JJ NNS PRP VBZ VBP IN NNP POS JJ NNS .\nA mission spokesman says the fighters were sighted in new aerial photographs taken in eastern Congo .\tDT NN NN VBZ DT NNS VBD VBN IN JJ JJ NNS VBN IN JJ NNP .\nWednesday , U.N. officials in Congo reported sighting 100 fighters believed to be Rwandan troops .\tNNP , NNP NNS IN NNP VBD VBG CD NNS VBN TO VB JJ NNS .\nRwanda 's government has refused to confirm or deny sending its troops into Democratic Republic of Congo .\tNNP POS NN VBZ VBN TO VB CC VB VBG PRP$ NNS IN JJ NNP IN NNP .\nRwandan President Paul Kagame has said any invasion into Congo would target Rwandan Hutu rebels and not Congolese forces .\tJJ NNP NNP NNP VBZ VBN DT NN IN NNP MD VB JJ NNP NNS CC RB JJ NNS .\nHe has blamed the Congolese government and the United Nations for failing to disarm Hutu militiamen who fled across the border after perpetrating Rwanda 's 1994 genocide .\tPRP VBZ VBN DT JJ NN CC DT NNP NNPS IN VBG TO VB NNP NNS WP VBD IN DT NN IN VBG NNP POS CD NN .\nThe U.N. Security Council is due to hold an emergency session Thursday to discuss the crisis .\tDT NNP NNP NNP VBZ JJ TO VB DT NN NN NNP TO VB DT NN .\nThe United States and the European Union are calling on Congo and Rwanda to resolve the situation diplomatically .\tDT NNP NNPS CC DT NNP NNP VBP VBG IN NNP CC NNP TO VB DT NN RB .\nThe European Union and several of its member states have congratulated Viktor Yushchenko on his victory in the Ukrainian presidential election .\tDT NNP NNP CC JJ IN PRP$ NN NNS VBP VBN NNP NNP IN PRP$ NN IN DT JJ JJ NN .\nIn a letter to Mr. Yushchenko Tuesday , German Chancellor Gerhard Schroeder expressed optimism that Ukraine will continue what he called its transition toward the rule of law and a market economy .\tIN DT NN TO NNP NNP NNP , JJ NNP NNP NNP VBD NN IN NNP MD VB WP PRP VBD PRP$ NN IN DT NN IN NN CC DT NN NN .\nLithuanian President Valdas Adamkus congratulated Mr. Yushchenko in a telephone conversation .\tJJ NNP NNP NNP VBD NNP NNP IN DT NN NN .\nIn Paris , the foreign ministry said France and its European Union partners are determined to support democracy and modernization in Ukraine .\tIN NNP , DT JJ NN VBD NNP CC PRP$ NNP NNP NNS VBP VBN TO VB NN CC NN IN NNP .\nThe EU 's Dutch presidency , meanwhile , urged Ukrainians to work to maintain the country 's internal cohesion .\tDT NNP POS JJ NN , RB , VBD NNS TO VB TO VB DT NN POS JJ NN .\nMeanwhile , Russia has questioned the objectivity of monitors for the Organization for Security and Cooperation in Europe .\tRB , NNP VBZ VBN DT NN IN NNS IN DT NNP IN NNP CC NNP IN NNP .\nThat organization characterized last month 's presidential election re-run as flawed , while saying that Sunday 's poll vastly improved upon the last vote .\tDT NN VBD JJ NN POS JJ NN NN IN JJ , IN VBG IN NNP POS NN RB VBD IN DT JJ NN .\nRussia backed Mr. Yushchenko 's opponent\tNNP VBD NNP NNP POS NN\nAuthorities in India say at least 17 policemen were killed Saturday when Maoist rebels blew up their bus in northern India .\tNNS IN NNP VBP IN JJS CD NNS VBD VBN NNP WRB NNP NNS VBD RP PRP$ NN IN JJ NNP .\nPolice officials say rebels detonated a landmine as the police bus approached a bridge in India 's northern state of Uttar Pradesh .\tNN NNS VBP NNS VBD DT NN IN DT NN NN VBD DT NN IN NNP POS JJ NN IN NNP NNP .\nMaoist rebels , who claim to be fighting for the rights of landless peasants , operate in southern and eastern India .\tNNP NNS , WP VBP TO VB VBG IN DT NNS IN JJ NNS , VBP IN JJ CC JJ NNP .\nThey often attack the police through ambushes and landmines .\tPRP RB VBP DT NN IN NNS CC NNS .\nThey are also active in Nepal , which borders both Uttar Pradesh and neighboring Bihar state .\tPRP VBP RB JJ IN NNP , WDT VBZ DT NNP NNP CC JJ NNP NN .\nEuropean Union foreign ministers are meeting in Brussels to discuss support for an emerging Palestinian unity government that could replace the current Hamas-led one .\tNNP NNP JJ NNS VBP VBG IN NNP TO VB NN IN DT VBG JJ NN NN WDT MD VB DT JJ JJ NN .\nThe ministers Friday are to debate whether to support a Palestinian plan to form a new government with the ruling Hamas movement and President Mahmoud Abbas ' Fatah party .\tDT NNS NNP VBP TO VB IN TO VB DT JJ NN TO VB DT JJ NN IN DT NN NNP NN CC NNP NNP NNP POS NNP NN .\nFinland 's foreign minister , Erkki Tuomioja , says the EU should view the new Palestinian government as an opportunity to renew the Middle East peace process .\tNNP POS JJ NN , NNP NNP , VBZ DT NNP MD VB DT JJ JJ NN IN DT NN TO VB DT NNP NNP NN NN .\nFinland holds the rotating EU presidency .\tNNP VBZ DT VBG NNP NN .\nThe European Union and the United States cut off aid to the Hamas-led government because it refuses to recognize Israel , renounce violence and accept past peace accords .\tDT NNP NNP CC DT NNP NNPS VBD RP NN TO DT JJ NN IN PRP VBZ TO VB NNP , NN NN CC VB JJ NN NNS .\nWashington has cautioned against lifting those restrictions in the absence of details on the policies of the new unity government .\tNNP VBZ VBN IN VBG DT NNS IN DT NN IN NNS IN DT NNS IN DT JJ NN NN .\nKyrgyzstan 's interim government has announced the country will hold parliamentary elections on October 10 .\tNNP POS JJ NN VBZ VBN DT NN MD VB JJ NNS IN NNP CD .\nPresident Roza Otunbayeva signed a decree Tuesday , ordering the interim government to take measures to uphold law and order and provide security ahead of the vote .\tNNP NNP NNP VBD DT NN NNP , VBG DT JJ NN TO VB NNS TO VB NN CC NN CC VB NN RB IN DT NN .\nVoters overwhelmingly endorsed a new constitution in a June referendum , clearing the way for the October elections .\tNNS RB VBD DT JJ NN IN DT NNP NN , VBG DT NN IN DT NNP NNS .\nOfficials said more than 90 percent of voters backed the measure that gives greater power to the parliament .\tNNS VBD JJR IN CD NN IN NNS VBD DT NN WDT VBZ JJR NN TO DT NN .\nThe interim government has struggled to maintain stability since former president Kurmanbek Bakiyev was deposed in a deadly April uprising .\tDT JJ NN VBZ VBN TO VB NN IN JJ NN NNP NNP VBD VBN IN DT JJ NNP NN .\nA wave of ethnic clashes in June killed more than 350 people in the country 's south .\tDT NN IN JJ NNS IN NNP VBD JJR IN CD NNS IN DT NN POS NN .\nInterim leader Roza Otunbayeva is set to serve as president until the end of 2011 .\tNNP NN NNP NNP VBZ VBN TO VB IN NN IN DT NN IN CD .\nA roadside bomb has killed five people in southern Afghanistan , including four children .\tDT NN NN VBZ VBN CD NNS IN JJ NNP , VBG CD NNS .\nThe other victim was a woman .\tDT JJ NN VBD DT NN .\nLocal officials in Kandahar province say the blast occurred in the Spin Boldak district Friday as the five were on their way home from a shrine .\tJJ NNS IN NNP NN VBP DT NN VBD IN DT NNP NNP NN NNP IN DT CD VBD IN PRP$ NN NN IN DT NN .\nAfghan civilians have increasingly been caught in the middle as violence rises amid an influx of U.S. and other foreign forces fighting the Taliban .\tJJ NNS VBP RB VBN VBN IN DT NN IN NN VBZ IN DT NN IN NNP CC JJ JJ NNS VBG DT NNP .\nA United Nations report this week said the number of civilians killed in war-related violence reached its highest level last year since the U.S.-led invasion in 2001 .\tDT NNP NNPS NN DT NN VBD DT NN IN NNS VBN IN JJ NN VBD PRP$ JJS NN JJ NN IN DT JJ NN IN CD .\nIn a separate development , a rocket hit the central part of the capital Kabul Friday , near Western embassies .\tIN DT JJ NN , DT NN VBD DT JJ NN IN DT NN NNP NNP , IN JJ NNS .\nPolice rushed to the scene , but no other information was immediately available .\tNNS VBD TO DT NN , CC DT JJ NN VBD RB JJ .\nThe Organization of American States is trying to elect a new secretary general .\tDT NNP IN NNP NNPS VBZ VBG TO VB DT JJ NN NN .\nSeveral rounds of voting have ended in a tie between candidates from Chile and Mexico .\tJJ NNS IN NN VBP VBN IN DT NN IN NNS IN NNP CC NNP .\nPanama 's foreign minister says Chilean Interior Minister Jose Miguel Insulza and Mexican Foreign Minister Luis Ernesto Derbez received 17 votes each during five rounds of voting .\tNNP POS JJ NN VBZ JJ NNP NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBD CD NNS DT IN CD NNS IN NN .\nEighteen votes are needed for a win .\tCD NNS VBP VBN IN DT NN .\nOAS diplomats recessed for consultations earlier Monday after the first three rounds of voting at the organization 's Washington headquarters .\tNNP NNS VBD IN NNS JJR NNP IN DT JJ CD NNS IN NN IN DT NN POS NNP NN .\nThey are again taking a short break .\tPRP VBP RB VBG DT JJ NN .\nThe two men are running to succeed Miguel Angel Rodriguez , who abruptly resigned in October after only two weeks on the job because of corruption charges in his native Costa Rica .\tDT CD NNS VBP VBG TO VB NNP NNP NNP , WP RB VBD IN NNP IN RB CD NNS IN DT NN IN IN NN NNS IN PRP$ JJ NNP NNP .\nA third candidate with strong U.S. backing , former El Salvador president Francisco Flores , dropped out of the race last Friday .\tDT JJ NN IN JJ NNP NN , JJ NNP NNP NN NNP NNP , VBD IN IN DT NN JJ NNP .\nNew data shows the recession has eased in Europe , where the two largest economies , Germany and France , returned to growth after a period of decline .\tNNP NNS VBZ DT NN VBZ VBN IN NNP , WRB DT CD JJS NNS , NNP CC NNP , VBD TO NN IN DT NN IN NN .\nSome analysts say the new figures may show the worst of the recession has passed .\tDT NNS VBP DT JJ NNS MD VB DT JJS IN DT NN VBZ VBN .\nFor the 16 nations that use the euro , the sum of all the goods and services produced shrank by 0.1 percent in April , May and June .\tIN DT CD NNS WDT VBP DT NN , DT NN IN PDT DT NNS CC NNS VBD JJ IN CD NN IN NNP , NNP CC NNP .\nThose gross domestic product figures are a significant improvement over the previous quarter , and better than most economists had predicted .\tDT JJ JJ NN NNS VBP DT JJ NN IN DT JJ NN , CC JJR IN JJS NNS VBD VBN .\nThe GDP in Germany and France grew 0.3 percent in the second quarter , a sharp improvement over the declines registered in the early months of the year .\tDT NN IN NNP CC NNP VBD CD NN IN DT JJ NN , DT JJ NN IN DT NNS VBN IN DT JJ NNS IN DT NN .\nPakistani officials say an accidental blast has killed five militants near the Afghan border , but residents dispute their account .\tJJ NNS VBP DT JJ NN VBZ VBN CD NNS IN DT JJ NN , CC NNS VBP PRP$ NN .\nOfficials said three foreign militants - possibly from Uzbekistan - and two local Pakistanis were killed when they accidentally detonated explosives stored in a home .\tNNS VBD CD JJ NNS : RB IN NNP : CC CD JJ NNS VBD VBN WRB PRP RB VBD NNS VBN IN DT NN .\nBut local residents in Pakistan 's restive northwest tribal region blamed the military , saying assailants fired missiles into the house , in Haisori village .\tCC JJ NNS IN NNP POS JJ JJ JJ NN VBD DT NN , VBG NNS VBD NNS IN DT NN , IN NNP NN .\nThey also said the two Pakistanis killed were children .\tPRP RB VBD DT CD NNS VBN VBD NNS .\nSeveral hundred people later gathered at the nearby village of Mir Ali to denounce the alleged attack .\tJJ CD NNS RB VBD IN DT JJ NN IN NNP NNP TO VB DT JJ NN .\nTens of thousands of Pakistani forces are deployed in the rugged , semi-autonomous North Waziristan region , searching for foreign militants .\tNNS IN NNS IN JJ NNS VBP VBN IN DT JJ , JJ NNP NNP NN , VBG IN JJ NNS .\nThe Rwandan army says it has arrested the brother of the former army chief of staff on charges of ' destabilization . '\tDT JJ NN VBZ PRP VBZ VBN DT NN IN DT JJ NN NN IN NN IN NNS IN `` NN . ``\nLieutenant Colonel Rugigana Ngabo is the brother of General Faustin Kayumba Nyamwasa , who was chief of staff until 2001 and went into exile in South Africa in February .\tNNP NNP NNP NNP VBZ DT NN IN NNP NNP NNP NNP , WP VBD NN IN NN IN CD CC VBD IN NN IN NNP NNP IN NNP .\nThe army said Ngabo was arrested Friday arrest had nothing to do with his relationship to Nyamwasa .\tDT NN VBD NNP VBD VBN NNP NN VBD DT TO VB IN PRP$ NN TO NNP .\nMilitary officials said they are still investigating Ngabo 's activities .\tNNP NNS VBD PRP VBP RB VBG NNP POS NNS .\nNyamwasa is a leading critic of Rwandan President Paul Kagame .\tNNP VBZ DT VBG NN IN JJ NNP NNP NNP .\nThe country 's chief prosecutor accused Nyamwasa and the other officer of being involved in three grenade attacks in the capital , Kigali , in February .\tDT NN POS JJ NN VBN NNP CC DT JJ NN IN VBG VBN IN CD NN NNS IN DT NN , NNP , IN NNP .\nTwo people were killed and 30 others were wounded .\tCD NNS VBD VBN CC CD NNS VBD VBN .\nHe denies any involvement .\tPRP VBZ DT NN .\nThe Canadian government and U.S. philanthropist Bill Gates have announced a multimillion-dollar initiative to combat the AIDS virus .\tDT JJ NN CC NNP NN NNP NNP VBP VBN DT JJ NN TO VB DT NNP NN .\nCanadian Prime Minister Stephen Harper and Gates announced the Canadian HIV Vaccine Initiative in Ottawa , Canada 's capital , Tuesday .\tJJ NNP NNP NNP NNP CC NNP VBD DT JJ NNP NNP NNP IN NNP , NNP POS NN , NNP .\nMr. Harper says the Canadian government will contribute about $ 95 million and the Bill and Melinda Gates Foundation is expected to contribute about $ 24 million .\tNNP NNP VBZ DT JJ NN MD VB IN $ CD CD CC DT NNP CC NNP NNP NNP VBZ VBN TO VB IN $ CD CD .\nThe money will be used to build a new research facility in Canada that will focus on producing a vaccine to help fight HIV , the virus that causes AIDS .\tDT NN MD VB VBN TO VB DT JJ NN NN IN NNP WDT MD VB IN VBG DT NN TO VB VB NNP , DT NN WDT VBZ NNP .\nThe United Nations estimates close to three million people died from AIDS in 2006 .\tDT NNP NNP NNS RB TO CD CD NNS VBD IN NNP IN CD .\nForbes magazine says Bill Gates , the chairman of Microsoft , is the world 's richest man , with a fortune estimated at $ 53 billion .\tNNP NN VBZ NNP NNP , DT NN IN NNP , VBZ DT NN POS JJS NN , IN DT NN VBN IN $ CD CD .\nBritain has suspended a planned increase in aid to Ethiopia over post-election violence that has left at least 36 people dead .\tNNP VBZ VBN DT JJ NN IN NN TO NNP IN JJ NN WDT VBZ VBN IN JJS CD NNS JJ .\nBritain 's International Development Minister Hilary Benn says $ 35 million in aid has been put on hold while Britain waits to see how the situation in Ethiopia develops .\tNNP POS NNP NNP NNP NNP NNP VBZ $ CD CD IN NN VBZ VBN VBN IN NN IN NNP VBZ TO VB WRB DT NN IN NNP VBZ .\nMr. Benn , who is visiting Ethiopia , says he expressed Britain 's concern about the violence to Prime Minister Meles Zenawi .\tNNP NNP , WP VBZ VBG NNP , VBZ PRP VBD NNP POS NN IN DT NN TO NNP NNP NNP NNP .\nLast week , Ethiopian security forces opened fire on protesters who said the ruling party fixed parliamentary elections last month .\tJJ NN , JJ NN NNS VBD NN IN NNS WP VBD DT VBG NN VBN JJ NNS JJ NN .\nHuman Rights Watch said Wednesday that police have arrested thousands of people across the country in response to the protests .\tNNP NNP NNP VBD NNP IN NNS VBP VBN NNS IN NNS IN DT NN IN NN TO DT NNS .\nPreliminary election results show the ruling party has won a majority of seats , but the opposition also has claimed victory .\tJJ NN NNS VBP DT NN NN VBZ VBN DT NN IN NNS , CC DT NN RB VBZ VBN NN .\nU.S. Secretary of State Condoleezza Rice is in Bahrain to meet with regional officials , after taking an unannounced one-day trip to Iraq Friday .\tNNP NNP IN NNP NNP NNP VBZ IN NNP TO VB IN JJ NNS , IN VBG DT JJ JJ NN TO NNP NNP .\nDuring her visit to Baghdad and Mosul , Ms. Rice urged Iraqi citizens to put sectarian differences aside ahead of the December 15 parliamentary election .\tIN PRP$ NN TO NNP CC NNP , NNP NNP VBD JJ NNS TO VB JJ NNS RB RB IN DT NNP CD JJ NN .\nMs. Rice also held talks with Prime Minister Ibrahim al-Jaafari and Sunni leaders .\tNNP NNP RB VBD NNS IN NNP NNP NNP NNP CC NNP NNS .\nShe called for greater participation in the election , saying the future of Iraq is in many ways key to the future of the Middle East .\tPRP VBD IN JJR NN IN DT NN , VBG DT NN IN NNP VBZ IN JJ NNS JJ TO DT NN IN DT NNP NNP .\nElsewhere in Baghdad , gunmen fired on the compound of the Embassy of Oman , killing two people .\tRB IN NNP , NNS VBD IN DT NN IN DT NNP IN NNP , VBG CD NNS .\nMeanwhile , a statement from ousted dictator Saddam Hussein 's Baath party says top military aide , Izzat Ibrahim al-Douri , is dead .\tRB , DT NN IN JJ NN NNP NNP POS NNP NN VBZ JJ JJ NN , NNP NNP NNP , VBZ JJ .\nThere has been no independent confirmation .\tEX VBZ VBN DT JJ NN .\nBangladesh has raised the minimum wage for its garment industry workers following months of violent protests over low salaries and poor working conditions .\tNNP VBZ VBN DT NN NN IN PRP$ NN NN NNS VBG NNS IN JJ NNS IN JJ NNS CC JJ VBG NNS .\nThe 80-percent pay hike was announced Tuesday following an emergency meeting of the country 's wage board committee .\tDT JJ NN NN VBD VBN NNP VBG DT NN NN IN DT NN POS NN NN NN .\nThe increase raised the minimum monthly wage for garment workers from $ 25 to $ 43 .\tDT NN VBD DT JJ JJ NN IN NN NNS IN $ CD TO $ CD .\nBangladesh has been the scene of massive protests by textile workers calling for higher pay .\tNNP VBZ VBN DT NN IN JJ NNS IN JJ NNS VBG IN JJR NN .\nWorkers were demanding that the minimum salary be increased to $ 72 a month .\tNNS VBD VBG IN DT JJ NN VB VBN TO $ CD DT NN .\nTextile factories accounted for 80 percent of Bangladesh 's annual export earnings last year , with many producing clothes for several global brands .\tJJ NNS VBD IN CD NN IN NNP POS JJ NN NNS JJ NN , IN JJ VBG NNS IN JJ JJ NNS .\nPrime Minister Sheikh Hasina had criticized the country 's clothing manufacturers saying the wages were not only insufficient but ' inhuman . '\tNNP NNP NNP NNP VBD VBN DT NN POS NN NNS VBG DT NNS VBD RB RB JJ CC `` NN . ``\nA Russian spaceship is set to dock at the International Space Station Saturday to deliver badly needed food to the two-man crew .\tDT JJ NN VBZ VBN TO NN IN DT NNP NNP NNP NNP TO VB RB VBN NN TO DT JJ NN .\nThe crew members have been forced to ration their food , after U.S. and Russian space officials discovered their supplies were quickly running out .\tDT NN NNS VBP VBN VBN TO VB PRP$ NN , IN NNP CC JJ NN NNS VBD PRP$ NNS VBD RB VBG RP .\nThe Russian cargo vessel is carrying more than two tons of food , water and equipment .\tDT JJ NN NN VBZ VBG JJR IN CD NNS IN NN , NN CC NN .\nIt is scheduled to arrive at the space station at around 23.30 UTC .\tPRP VBZ VBN TO VB IN DT NN NN IN IN CD NNP .\nNASA officials say Russian cosmonaut Salizhan Sharipov and U.S. astronaut Leroy Chiao will be forced to return to Earth if the cargo vessel does not successfully dock at the station .\tNNP NNS VBP JJ NN NNP NNP CC NNP NN NNP NNP MD VB VBN TO VB TO NNP IN DT NN NN VBZ RB RB VB IN DT NN .\nIn addition to food , the vessel will be bringing the men Christmas presents from their family and friends .\tIN NN TO NN , DT NN MD VB VBG DT NNS NNP NNS IN PRP$ NN CC NNS .\nPolice in Nepal have detained more than 20 demonstrators who were demanding the restoration of democracy in the Himalayan nation .\tNNS IN NNP VBP VBN JJR IN CD NNS WP VBD VBG DT NN IN NN IN DT JJ NN .\nSome 200 human rights activists , lawyers , journalists and professors rallied in the capital , Kathmandu , Monday chanting slogans against King Gyanendra , who seized absolute power on February 1 .\tDT CD JJ NNS NNS , NNS , NNS CC NNS VBD IN DT NN , NNP , NNP VBG NNS IN NNP NNP , WP VBD JJ NN IN NNP CD .\nWitnesses say a line of police officers blocked the protesters from entering a restricted zone , and when they tried to force their way through , police arrested about two dozen of them .\tNNS VBP DT NN IN NN NNS VBD DT NNS IN VBG DT JJ NN , CC WRB PRP VBD TO VB PRP$ NN IN , NNS VBN IN CD NN IN PRP .\nStudent groups and political parties are among a number of organizations that have held protests against the king 's move .\tNN NNS CC JJ NNS VBP IN DT NN IN NNS WDT VBP VBN NNS IN DT NN POS NN .\nThe king says he needed to seize full political power to curb corruption and quell a communist insurgency that has claimed more than 11,500 lives .\tDT NN VBZ PRP VBD TO VB JJ JJ NN TO VB NN CC VB DT NN NN WDT VBZ VBN JJR IN CD NNS .\nProsecutors at the war crimes trial of former Yugoslav President Slobodan Milosevic have shown a videotape of the 1995 execution of six Bosnian Muslims allegedly by Serbian forces .\tNNS IN DT NN NNS NN IN JJ JJ NNP NNP NNP VBP VBN DT NN IN DT CD NN IN CD JJ NNPS RB IN JJ NNS .\nProsecutor Geoffrey Nice said Wednesday a paramilitary unit of the Serbian Interior Minister called the ' Scorpions ' unit carried out the shootings .\tNNP NNP NNP VBD NNP DT JJ NN IN DT JJ NNP NNP VBD DT `` NNPS `` NN VBD IN DT NNS .\nThe tape was shot during the massacre of more than 7,000 Muslim males at Srebrenica .\tDT NN VBD VBN IN DT NN IN JJR IN CD NN NNS IN NNP .\nMr. Milosevic is on trial at the Hague War Crimes Tribunal in connection with the war in Bosnia-Herzegovina in the 1990s .\tNNP NNP VBZ IN NN IN DT NNP NNP NNP NNP IN NN IN DT NN IN NNP IN DT NNS .\nAlso Wednesday , a former mayor of the Bosnian town of Zvornik turned himself in to a war crimes court in Serbia .\tRB NNP , DT JJ NN IN DT JJ NN IN NNP VBD PRP IN TO DT NN NNS NN IN NNP .\nBranko Grujic has been charged with helping deport more than 1,800 Muslims to Hungary and the killings of 15 Muslims in 1992 .\tNNP NNP VBZ VBN VBN IN VBG NN JJR IN CD NNPS TO NNP CC DT NNS IN CD NNS IN CD .\nIranian President Mahmoud Ahmadinejad has criticized Paul the octopus , who gained fame by correctly predicting the outcome of eight World Cup matches .\tJJ NNP NNP NNP VBZ VBN NNP DT NN , WP VBD NN IN RB VBG DT NN IN CD NNP NNP NNS .\nThe Iranian leader called Paul a symbol of decadence and decay in the Western world .\tDT JJ NN VBD NNP DT NN IN NN CC NN IN DT JJ NN .\nMr. Ahmadinejad also said those who believe in a psychic octopus can not be leaders of nations like Iran ' that aspire to human perfection . '\tNNP NNP RB VBD DT WP VBP IN DT JJ NN MD RB VB NNS IN NNS IN NNP `` WDT VBP TO JJ NN . ``\nIran 's state-run media said the president discussed the octopus during a speech to a youth festival in Tehran on Friday .\tNNP POS JJ NNS VBD DT NN VBD DT NN IN DT NN TO DT NN NN IN NNP IN NNP .\nPaul lives at the Oberhausen Sea Life Center in Germany .\tNNP VBZ IN DT NNP NNP NNP NNP IN NNP .\nThe eight-legged sea creature picked the outcome of this year 's World Cup matches in South Africa by choosing to eat from a box of mussels labeled with the flag of the winning team .\tDT JJ NN NN VBD DT NN IN DT NN POS NNP NNP NNS IN NNP NNP IN VBG TO VB IN DT NN IN NNS VBN IN DT NN IN DT VBG NN .\nPaul correctly predicted the winner of all seven of Germany 's matches .\tNNP RB VBD DT NN IN DT CD IN NNP POS NNS .\nHe also picked Spain to defeat the Netherlands in the final .\tPRP RB VBD NNP TO VB DT NNP IN DT JJ .\nForeigners have again become the targets of kidnappers in Iraq .\tNNS VBP RB VBN DT NNS IN NNS IN NNP .\nIraqi officials in Balad , north of Baghdad , say six Iranian pilgrims were abducted Monday .\tJJ NNS IN NNP , NN IN NNP , VBP CD JJ NNS VBD VBN NNP .\nThey say two women were released Tuesday , but the fate of the remaining four pilgrims is still not clear .\tPRP VBP CD NNS VBD VBN NNP , CC DT NN IN DT VBG CD NNS VBZ RB RB JJ .\nThey were the second group of Shi'ite pilgrims targeted Monday .\tPRP VBD DT JJ NN IN NNP NNS VBD NNP .\nThree British pilgrims were killed during a bus ambush south of the capital .\tCD JJ NNS VBD VBN IN DT NN JJ NN IN DT NN .\nMeanwhile , Germany has called for the immediate release of one of its missing nationals .\tRB , NNP VBZ VBN IN DT JJ NN IN CD IN PRP$ JJ NNS .\nArchaeologist Susanne Osthoff and her driver disappeared Friday .\tNN NNP NNP CC PRP$ NN VBD NNP .\nThe aid group , Christian Peacemaker Teams , confirms that four of its employees - said to be an American , a Briton and two Canadians - were kidnapped in Baghdad Saturday .\tDT NN NN , NNP NNP NNP , VBZ IN CD IN PRP$ NNS : VBN TO VB DT NN , DT NN CC CD NNS : VBD VBN IN NNP NNP .\nElsewhere , the U.S. military reports that a roadside bomb blast killed two American soldiers north of Baghdad today .\tRB , DT NNP JJ NNS IN DT NN NN NN VBD CD JJ NNS NN IN NNP NN .\nA wave of insurgent attacks across Iraq killed at least 12 people , mostly Iraqi policemen Monday .\tDT NN IN JJ NNS IN NNP VBD IN JJS CD NNS , RB JJ NNS NNP .\nIn Baghdad , five bombs killed six Iraqis , including three policemen .\tIN NNP , CD NNS VBN CD NNS , VBG CD NNS .\nNorth of the city , in Diyala province , gunmen killed five policemen at a checkpoint near Baquba .\tNNP IN DT NN , IN NNP NN , NNS VBD CD NNS IN DT NN IN NNP .\nSix of the attackers were killed .\tCD IN DT NNS VBD VBN .\nSeparately , the province 's governor survived a bomb attack that killed his bodyguard .\tRB , DT NN POS NN VBD DT NN NN WDT VBD PRP$ NN .\nMeanwhile , Ukrainian President Viktor Yushchenko traveled to Iraq Monday to visit Ukrainian troops before they withdraw from the country .\tRB , JJ NNP NNP NNP VBD TO NNP NNP TO VB JJ NNS IN PRP VB IN DT NN .\nOfficials say he plans to attend a ceremony where Ukrainian troops will hand over equipment to Iraqi forces .\tNNS VBP PRP VBZ TO VB DT NN WRB JJ NNS MD VB IN NN TO JJ NNS .\nAnd The New York Times reports that a Shi'ite alliance has refused to give 10 of its parliament seats to Sunni Arabs .\tCC DT NNP NNP NNP VBZ IN DT NNP NN VBZ VBN TO VB CD IN PRP$ NN NNS TO NNP NNS .\nSunni Arabs complained of fraud in the December 15 election and asked for the seats to defuse tensions .\tNNP NNS VBD IN NN IN DT NNP CD NN CC VBD IN DT NNS TO VB NNS .\nNew Orleans Mayor Ray Nagin has unveiled a plan to rebuild following last year 's devastation by Hurricane Katrina , saying residents will be allowed to reconstruct their homes in all parts of the city .\tNNP NNP NNP NNP NNP VBZ VBN DT NN TO VB VBG JJ NN POS NN IN NNP NNP , VBG NNS MD VB VBN TO VB PRP$ NNS IN DT NNS IN DT NN .\nNagin 's announcement followed public consultations on rebuilding proposals made by an advisory commission in January .\tNNP POS NN VBD JJ NNS IN NN NNS VBN IN DT JJ NN IN NNP .\nThe commission had suggested converting parts of ruined neighborhoods into parks and imposing a ban on building permits in some areas .\tDT NN VBD VBN VBG NNS IN JJ NNS IN NNS CC VBG DT NN IN NN NNS IN DT NNS .\nNagin says he rejected such ideas , which were criticized by many residents .\tNNP VBZ PRP VBD JJ NNS , WDT VBD VBN IN JJ NNS .\nThe mayor says residents can now make their own decisions about reconstructing their homes .\tDT NN VBZ NNS MD RB VB PRP$ JJ NNS IN VBG PRP$ NNS .\nBut Nagin warned that some New Orleans neighborhoods will remain prone to flooding , and people who rebuild there will do so at their own risk .\tCC NNP VBD IN DT NNP NNP NNS MD VB JJ TO NN , CC NNS WP VB EX MD VB RB IN PRP$ JJ NN .\nNagin 's revival plan also calls for restructuring New Orleans ' government for greater efficiency and improving public transportation .\tNNP POS NN NN RB VBZ IN VBG NNP NNP POS NN IN JJR NN CC VBG JJ NN .\nHe is using the plans as part of his campaign for re-election .\tPRP VBZ VBG DT NNS IN NN IN PRP$ NN IN NN .\nChinese officials say at least 27 workers are confirmed dead after a gas explosion tore through a coal mine in China 's northwest Shaanxi province .\tJJ NNS VBP IN JJS CD NNS VBP VBN JJ IN DT NN NN VBD IN DT NN NN IN NNP POS JJS NNP NN .\nChina 's official Xinhua news agency says 39 miners were working at the Wayaobao mine in Zichang county when the blast happened Saturday .\tNNP POS JJ NNP NN NN VBZ CD NNS VBD VBG IN DT NNP NN IN NNP NN WRB DT NN VBD NNP .\nFive workers remain missing .\tCD NNS VBP JJ .\nSeven miners escaped with minor injuries .\tCD NNS VBD IN JJ NNS .\nChina 's mines are the world 's deadliest .\tNNP POS NNS VBP DT NN POS JJS .\nThousands of workers are killed each year in fires , explosions , floods and cave-ins , despite government efforts to improve safety .\tNNS IN NNS VBP VBN DT NN IN NNS , NNS , NNS CC NNS , IN NN NNS TO VB NN .\nAmericans are celebrating Columbus Day Monday .\tNNS VBP VBG NNP NNP NNP .\nColumbus Day is a federal holiday observed on the second Monday in October , marking the anniversary of arrival of Christopher Columbus to the Americas .\tNNP NNP VBZ DT JJ NN VBD IN DT JJ NNP IN NNP , VBG DT NN IN NN IN NNP NNP TO DT NNPS .\nColumbus , an Italian explorer sailing under the Spanish flag , led four expeditions to the New World , but never accomplished his original goal -- to find a western ocean route to Asia .\tNNP , DT JJ NN NN IN DT JJ NN , VBD CD NNS TO DT NNP NNP , CC RB VBN PRP$ JJ NN : TO VB DT JJ NN NN TO NNP .\nInstead , Columbus ushered in a new era in world history by opening up the Americas to exploration .\tRB , NNP VBD IN DT JJ NN IN NN NN IN VBG RP DT NNPS TO NN .\nColumbus Day became a U.S. holiday in 1971 .\tNNP NNP VBD DT NNP NN IN CD .\nIt is generally observed by banks , the bond market , the Postal Service and other federal agencies , along with most state government offices and some school districts .\tPRP VBZ RB VBN IN NNS , DT NN NN , DT NNP NNP CC JJ JJ NNS , IN IN JJS NN NN NNS CC DT NN NNS .\nHowever , many businesses and stock exchanges remain open .\tRB , JJ NNS CC NN NNS VBP JJ .\nThere is a trend among some states away from observing the holiday .\tEX VBZ DT NN IN DT NNS RB IN VBG DT NN .\nAfghanistan 's interior ministry says suspected Taleban insurgents have ambushed a police convoy in southern Helmand province , killing 19 policemen .\tNNP POS JJ NN VBZ VBN NNP NNS VBP VBN DT NN NN IN JJ NNP NN , VBG CD NNS .\nA ministry spokesman said a senior provincial police official , Amanullah Khan , was among the dead .\tDT NN NN VBD DT JJ JJ NN NN , NNP NNP , VBD IN DT NN .\nHe said four officers were wounded in the attack late Monday and at least five others are missing .\tPRP VBD CD NNS VBD VBN IN DT NN JJ NNP CC IN JJS CD NNS VBP VBG .\nThe convoy was traveling along a remote mountain road when dozens of militants ambushed it , triggering a gunbattle that lasted for several hours .\tDT NN VBD VBG IN DT JJ NN NN WRB NNS IN NNS VBD PRP , VBG DT NN WDT VBD IN JJ NNS .\nThe spokesman blamed the attack on ' enemies of peace , ' a term frequently used by Afghan officials to refer to Taleban rebels .\tDT NN VBD DT NN IN `` NNS IN NN , `` DT NN RB VBN IN JJ NNS TO VB TO NNP NNS .\nEarlier Monday , insurgents carried out two suicide bombings in the nearby southern city of Kandahar .\tRBR NNP , NNS VBD RP CD NN NNS IN DT JJ JJ NN IN NNP .\nThree people , including a former factional commander , Agha Shah , were killed in one of the attacks .\tCD NNS , VBG DT JJ JJ NN , NNP NNP , VBD VBN IN CD IN DT NNS .\nThe number of Chinese using the Internet has risen sharply to include almost a third of the population .\tDT NN IN NNS VBG DT NNP VBZ VBN RB TO VB RB DT NN IN DT NN .\nA government-backed agency , the China Internet Network Information Center , reported Thursday that the number of Internet users has grown by 36 million since it last reported the official tally in late 2009 .\tDT JJ NN , DT NNP NNP NNP NNP NNP , VBD NNP IN DT NN IN NN NNS VBZ VBN IN CD CD IN PRP JJ VBD DT JJ NN IN JJ CD .\nIt said about 277 million people go online using mobile devices such as cell phones .\tPRP VBD IN CD CD NNS VBP JJ VBG JJ NNS JJ IN NN NNS .\nChina 's government , which keeps tight control on traditional media , has tried to control online information as well , through censorship and Web monitoring .\tNNP POS NN , WDT VBZ JJ NN IN JJ NNS , VBZ VBN TO VB JJ NN IN RB , IN NN CC NNP NN .\nBeijing 's attempt to control what people read and say on the Internet was highlighted by its recent dispute with the Google company , which provides a popular search engine .\tNNP POS NN TO VB WP NNS VBP CC VBP IN DT NN VBD VBN IN PRP$ JJ NN IN DT NNP NN , WDT VBZ DT JJ NN NN .\nThe American company was told its license to operate in China would not be renewed unless it stopped its practice of automatically transferring Chinese users to an uncensored website in Hong Kong .\tDT JJ NN VBD VBN PRP$ NN TO VB IN NNP MD RB VB VBN IN PRP VBD PRP$ NN IN RB VBG JJ NNS TO DT JJ NN IN NNP NNP .\nBurma says it is not interested in discussing possible democratic reforms at this week 's meeting of Asian and African leaders in Indonesia .\tNNP VBZ PRP VBZ RB JJ IN VBG JJ JJ NNS IN DT NN POS NN IN NNP CC JJ NNS IN NNP .\nSpeaking in Jakarta Thursday , after meetings with Indonesian officials , Burmese Foreign Minister Nyan Win said his delegation came to discuss the summit , not Burma 's internal affairs .\tVBG IN NNP NNP , IN NNS IN JJ NNS , JJ NNP NNP NNP NNP VBD PRP$ NN VBD TO VB DT NN , RB NNP POS JJ NNS .\nHe said Rangoon would also not be pressured into giving up its turn at leading the southeast Asian regional bloc , ASEAN .\tPRP VBD NNP MD RB RB VB VBN IN VBG RP PRP$ NN IN VBG DT NN JJ JJ NN , NNP .\nRangoon has faced growing international demands to step aside from ASEAN 's rotating leadership because of Burma 's human rights record .\tNNP VBZ VBN VBG JJ NNS TO VB RB IN NNP POS VBG NN IN IN NNP POS JJ NNS NN .\nThailand 's foreign minister Kantathi Supamongkhon told reporters Thursday , Burmese officials have assured him they are aware of the world 's concerns and that Burma will not be an obstacle to ASEAN unity .\tNNP POS JJ NN NNP NNP VBD NNS NNP , JJ NNS VBP VBN PRP PRP VBP JJ IN DT NN POS NNS CC IN NNP MD RB VB DT NN TO VB NN .\nThe Thai official says he is convinced the chairmanship situation will be resolved in a very good way .\tDT JJ NN VBZ PRP VBZ VBN DT NN NN MD VB VBN IN DT RB JJ NN .\nSouth Koreans are now counting the days to their country 's historic first astronaut in space , set to launch aboard a Russian Soyuz rocket on 8 April .\tNNP NNS VBP RB VBG DT NNS TO PRP$ NN POS JJ JJ NN IN NN , VBN TO VB IN DT JJ NN NN IN CD NNP .\nThe mission is full of landmarks : it will be the first time a South Korean woman has headed into orbit , and it will also be the first time that ' kimchi ' - that spicy , garlicky cabbage dish that epitomizes South Korea - will be served at the zero-gravity dinner table .\tDT NN VBZ JJ IN NNS IN PRP MD VB DT JJ NN DT JJ JJ NN VBZ VBN IN NN , CC PRP MD RB VB DT JJ NN IN `` NN `` : IN NN , JJ NN NN WDT VBZ NNP NNP : MD VB VBN IN DT NN NN NN .\nVOA Seoul Correspondent Kurt Achin headed to the high-tech kitchen where kimchi was getting a pre-launch makeover .\tNNP NNP NN NNP NNP VBD IN DT JJ NN WRB NNS VBD VBG DT JJ NN .\nThe head of the United Nations nuclear watchdog agency says he hopes to be able to go to North Korea to discuss resuming inspections of its nuclear facilities .\tDT NN IN DT NNP NNP JJ NN NN VBZ PRP VBZ TO VB JJ TO VB TO NNP NNP TO VB VBG NNS IN PRP$ JJ NNS .\nMohamed ElBaradei made the comment after giving a speech Saturday in Germany .\tNNP NNP VBD DT NN IN VBG DT NN NNP IN NNP .\nHe said North Korea has not invited him to visit , but that he still hopes to go .\tPRP VBD NNP NNP VBZ RB VBN PRP TO VB , CC IN PRP RB VBZ TO VB .\nLast year , Pyongyang indicated it might be willing to invite officials from the International Atomic Energy Agency , possibly including ElBaradei , under certain conditions .\tJJ NN , NNP VBD PRP MD VB JJ TO VB NNS IN DT NNP NNP NNP NNP , RB VBG NNP , IN JJ NNS .\nSix-party talks to discuss North Korea 's nuclear intentions have been deadlocked for months .\tJJ NNS TO VB NNP NNP POS JJ NNS VBP VBN VBN IN NNS .\nNorth Korea blames the United States for the impasse .\tNNP NNP VBZ DT NNP NNPS IN DT NN .\nEarlier Saturday , Pyongyang said again it would be willing to return to the talks if the United States drops its economic sanctions against the North .\tRBR NNP , NNP VBD RB PRP MD VB JJ TO VB TO DT NNS IN DT NNP NNPS VBZ PRP$ JJ NNS IN DT NNP .\nWashington has called on North Korea to return to the talks without preconditions .\tNNP VBZ VBN IN NNP NNP TO VB TO DT NNS IN NNS .\nAsian and Pacific nations have begun a disaster exercise to test preparations for a possible bird-flu pandemic .\tJJ CC JJ NNS VBP VBN DT NN NN TO VB NNS IN DT JJ NN NN .\nAustralia is coordinating Wednesday 's exercise with 21 members of the Asia Pacific Economic Cooperation group , testing how authorities would respond to a hypothetical outbreak in which a new form of bird-flu virus becomes a major threat to human life .\tNNP VBZ VBG NNP POS NN IN CD NNS IN DT NNP NNP NNP NNP NN , VBG WRB NNS MD VB TO DT JJ NN IN WDT DT JJ NN IN JJ NN VBZ DT JJ NN TO JJ NN .\nDuring the 24-hour exercise , governments are practicing how to coordinate information about managing a virus outbreak .\tIN DT JJ NN , NNS VBP VBG WRB TO VB NN IN VBG DT NN NN .\nIndonesia and Vietnam already have suffered significant human losses from bird flu .\tNNP CC NNP RB VBP VBN JJ JJ NNS IN NN NN .\nThe World Health Organization is investigating the bird-flu deaths of seven members of one family in Indonesia , a ' cluster ' of infections that sounded an alarm about possible human-to-human transmission of the virus .\tDT NNP NNP NNP VBZ VBG DT JJ NNS IN CD NNS IN CD NN IN NNP , DT `` NN `` IN NNS WDT VBD DT NN IN JJ JJ NN IN DT NN .\nMore than 120 people , most of them in Asia , have died of bird flu since late 2003 .\tJJR IN CD NNS , JJS IN PRP IN NNP , VBP VBN IN NN NN IN JJ CD .\nHealth experts say tests have confirmed a new outbreak of deadly Ebola virus in the Republic of Congo , killing nine people .\tNNP NNS VBP NNS VBP VBN DT JJ NN IN JJ NNP NN IN DT NNP IN NNP , VBG CD NNS .\nWorld Health Organization representative Doctor Alzouma Yada Adamou said Wednesday two others have been diagnosed with Ebola in the northwestern Cuvette region of Congo , near the border with Gabon .\tNNP NNP NNP NN NNP NNP NNP NNP VBD NNP CD NNS VBP VBN VBN IN NNP IN DT JJ NNP NN IN NNP , IN DT NN IN NNP .\nHe said a total of 11 cases have been reported this month .\tPRP VBD DT NN IN CD NNS VBP VBN VBN DT NN .\nIn 2003 , more than 120 people died of the highly contagious disease in the same area .\tIN CD , JJR IN CD NNS VBD IN DT RB JJ NN IN DT JJ NN .\nEbola , a hemorrhagic fever , causes rapid death through internal and external bleeding .\tNNP , DT JJ NN , VBZ JJ NN IN JJ CC JJ NN .\nThe World Heath Organization says the disease kills between 50 and 90 percent of victims , depending on the strain .\tDT NNP NNP NNP VBZ DT NN VBZ IN CD CC CD NN IN NNS , VBG IN DT NN .\nScientists believe outbreaks are caused by people eating infected bush meat .\tNNS VBP NNS VBP VBN IN NNS VBG VBN NN NN .\nSri Lanka 's President Chandrika Kumaratunga has appointed her brother as the country 's new foreign minister , to replace Lakshman Kadirgamar , who was assassinated earlier this month by suspected Tamil Tiger rebels .\tNNP NNP POS NNP NNP NNP VBZ VBN PRP$ NN IN DT NN POS JJ JJ NN , TO VB NNP NNP , WP VBD VBN RBR DT NN IN JJ NNP NNP NNS .\nA presidential statement says Anura Bandaranaike will retain his current post as tourist minister , but that Finance Minister Sarath Amunugama will take over his Industry and Investment portfolios .\tDT JJ NN VBZ NNP NNP MD VB PRP$ JJ NN IN NN NN , CC IN NNP NNP NNP NNP MD VB RP PRP$ NN CC NN NNS .\nAlso Monday , Sri Lanka 's chief justice said the country 's Supreme Court will rule Friday when the next presidential election should be held .\tRB NNP , NNP NNP POS NN NN VBD DT NN POS NNP NNP MD VB NNP WRB DT JJ JJ NN MD VB VBN .\nThe opposition says Mrs. Kumaratunga 's second and final six-year term ends in December .\tDT NN VBZ NNP NNP POS JJ CC JJ JJ NN VBZ IN NNP .\nBut the ruling Freedom Party insists she is entitled to be in office until the end of next year , because she ended her first term one year ahead of schedule by calling snap polls .\tCC DT NN NNP NNP VBZ PRP VBZ VBN TO VB IN NN IN DT NN IN JJ NN , IN PRP VBD PRP$ JJ NN CD NN RB IN NN IN VBG JJ NNS .\nA newspaper quotes a U.S. Army official as saying the military has made a ' mediocre ' effort in Iraq , and remains in peril of losing the war .\tDT NN VBZ DT NNP NNP NN IN VBG DT NN VBZ VBN DT `` JJ `` NN IN NNP , CC VBZ IN NN IN VBG DT NN .\nThe Washington Post Saturday printed excerpts from an essay by Major Isaiah Wilson , who served as an Army historian of the campaign and war planner in Iraq .\tDT NNP NNP NNP VBD NNS IN DT NN IN NNP NNP NNP , WP VBD IN DT NNP NN IN DT NN CC NN NN IN NNP .\nIt quotes Major Wilson as saying the U.S. military did not have a formal plan for stabilizing the country after toppling Saddam Hussein .\tPRP VBZ NNP NNP IN VBG DT NNP NN VBD RB VB DT JJ NN IN VBG DT NN IN VBG NNP NNP .\nThe major says U.S. forces lost their dominance in Iraq a few months after Saddam 's overthrow , and that the Army still does not recognize that it is fighting what he calls a ' war of rebellion . '\tDT JJ VBZ NNP NNS VBD PRP$ NN IN NNP DT JJ NNS IN NNP POS NN , CC IN DT NNP RB VBZ RB VB IN PRP VBZ VBG WP PRP VBZ DT `` NN IN NN . ``\nThe Wilson essay has been delivered at several academic conferences but remains unpublished .\tDT NNP NN VBZ VBN VBN IN JJ JJ NNS CC VBZ JJ .\nIn his recent memoir , Retired Army General Tommy Franks said a post-war plan for Iraq did exist , and expressed confidence in the plan .\tIN PRP$ JJ NN , JJ NN NNP NNP NNP VBD DT JJ NN IN NNP VBD VB , CC VBD NN IN DT NN .\nThe United Nations nuclear watchdog agency is preparing to decide on a resolution Saturday calling for Iran to be reported to the United Nations Security Council over its suspect nuclear program .\tDT NNP NNP JJ NN NN VBZ VBG TO VB IN DT NN NNP NN IN NNP TO VB VBN TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NN .\nA vote in Vienna by the 35-nation board of the International Atomic Energy Agency was postponed from Friday .\tDT NN IN NNP IN DT JJ NN IN DT NNP NNP NNP NNP VBD VBN IN NNP .\nThe delay came after the United States opposed a last-minute move by Egypt to declare the entire Middle East a nuclear-free zone .\tDT NN VBD IN DT NNP NNPS VBD DT JJ NN IN NNP TO VB DT JJ NNP NNP DT JJ NN .\nThe move appeared aimed at pressuring Israel to give up its suspected nuclear arsenal .\tDT NN VBD VBN IN VBG NNP TO VB RP PRP$ JJ JJ NN .\nEnvoys familiar with the situation say France , Britain and Germany , the three nations that authored the resolution on Iran , were working overnight to resolve the dispute between Cairo and Washington .\tNNS JJ IN DT NN VBP NNP , NNP CC NNP , DT CD NNS WDT VBD DT NN IN NNP , VBD VBG JJ TO VB DT NN IN NNP CC NNP .\nDiplomats say a majority on the IAEA board appear ready to back the measure .\tNNS VBP DT NN IN DT NNP NN VBP JJ TO VB DT NN .\nWestern governments accuse Iran of seeking nuclear weapons .\tJJ NNS VBP NNP IN VBG JJ NNS .\nIran says its nuclear program is for peaceful purposes only .\tNNP VBZ PRP$ JJ NN VBZ IN JJ NNS RB .\nThe euro has hit an all-time high against the U.S. dollar , climbing to 1.294 in late trading Friday .\tDT NN VBZ VBN DT JJ NN IN DT NNP NN , VBG TO CD IN JJ NN NNP .\nThe rise of the 12-nation currency surpasses the previous record of 1.2927 in February of this year .\tDT NN IN DT JJ NN VBZ DT JJ NN IN CD IN NNP IN DT NN .\nTraders say they were struck by the dollar 's inability to sustain a rally earlier Friday following the release of a strong U.S. employment report .\tNNS VBP PRP VBD VBN IN DT NN POS NN TO VB DT NN RBR NNP VBG DT NN IN DT JJ NNP NN NN .\nAnalysts say the euro 's increase was due to concerns over the U.S. trade and federal budget deficits , as well the high price of oil .\tNNS VBP DT NN POS NN VBD JJ TO NNS IN DT NNP NN CC JJ NN NNS , RB RB DT JJ NN IN NN .\nFrench President Jacques Chirac said he was concerned with the downward trend of the dollar and called for action by the European Central Bank .\tJJ NNP NNP NNP VBD PRP VBD VBN IN DT JJ NN IN DT NN CC VBD IN NN IN DT NNP NNP NNP .\nA stronger euro makes European exports more expensive .\tDT JJR NN VBZ JJ NNS RBR JJ .\nSunni Arab groups in Iraq are blaming Shi'ite-led security forces for the killing of 14 Sunni Arab men whose bodies were found Friday in Baghdad .\tNNP NNP NNS IN NNP VBP VBG JJ NN NNS IN DT NN IN CD NNP NNP NNS WP$ NNS VBD VBN NNP IN NNP .\nThe Sunni Arab groups say Interior Ministry forces picked up the 14 men at a Baghdad mosque last month .\tDT NNP JJ NNS VBP NNP NNP NNS VBD RP DT CD NNS IN DT NNP NN JJ NN .\nMajor-General Hussein Ali Kamal of the Interior Ministry told the Associated Press that officials are investigating reports that the men were detained by government forces .\tNN NNP NNP NNP IN DT NNP NNP VBD DT NNP NNP IN NNS VBP VBG NNS IN DT NNS VBD VBN IN NN NNS .\nThe discovery of the bodies threatens to further polarize Iraq 's Sunni Arab , Kurdish and majority Shi'ite communities .\tDT NN IN DT NNS VBZ TO JJ NN NNP POS NNP NNP , NNP CC NN NNP NNS .\nPoliticians from the three groups are holding talks on forming a national unity government following the elections in December .\tNNS IN DT CD NNS VBP VBG NNS IN VBG DT JJ NN NN VBG DT NNS IN NNP .\nThe United States is hoping the formation of a unity government will help curb the insurgency in Iraq .\tDT NNP NNPS VBZ VBG DT NN IN DT NN NN MD VB VB DT NN IN NNP .\nThe Organization of Petroleum Exporting Countries says it will make another two million barrels of crude oil available to refiners each day .\tDT NNP IN NNP NNP NNPS VBZ PRP MD VB DT CD CD NNS IN JJ NN JJ TO NNS DT NN .\nThe decision was expected , and was formally announced Tuesday in Vienna , where top OPEC officials have been discussing oil production and prices .\tDT NN VBD VBN , CC VBD RB VBN NNP IN NNP , WRB JJ NNP NNS VBP VBN VBG NN NN CC NNS .\nSome analysts say the gesture is largely symbolic because most OPEC member nations have been producing all the oil they can as demand and prices have hit new highs .\tDT NNS VBP DT NN VBZ RB JJ IN JJS NNP NN NNS VBP VBN VBG PDT DT NN PRP MD IN NN CC NNS VBP VBN JJ NNS .\nOnly Saudi Arabia is thought to have significant unused capacity .\tRB NNP NNP VBZ VBN TO VB JJ JJ NN .\nSome experts say high gasoline prices that have sparked protests in some European countries grow out of a shortage of refining capacity , rather than a lack of crude oil .\tDT NNS VBP JJ NN NNS WDT VBP VBN NNS IN DT JJ NNS VBP IN IN DT NN IN NN NN , RB IN DT NN IN JJ NN .\nChampion points leader Fernando Alonso has driven his Renault for the third fastest time in Friday 's first practice session for the Brazilian Grand Prix in Sao Paulo .\tNNP VBZ NN NNP NNP VBZ VBN PRP$ NNP IN DT JJ JJS NN IN NNP POS JJ NN NN IN DT JJ NNP NNP IN NNP NNP .\nThe Spaniard drove the Interlagos circuit at a time of 0.060092593 .\tDT NN VBD DT NNP NN IN DT NN IN CD .\nThe fastest time of the session was clocked by McLaren-Mercedes test driver Alexander Wurz of Austria .\tDT JJS NN IN DT NN VBD VBN IN NNP NN NN NNP NNP IN NNP .\nWurz completed the circuit with a time of 0.050474537 .\tNNP VBD DT NN IN DT NN IN CD .\nMcLaren-Mercedes driver Kimi Raikkonen of Finland posted the fifth best time of the session , 0.193 seconds slower than Alonso .\tNNP NN NNP NNP IN NNP VBD DT NN JJS NN IN DT NN , CD NNS JJR IN NNP .\nRaikkonen is second in the championship point standings .\tNNP VBZ JJ IN DT NN NN NNS .\nHe trails Alonso 85 to 111 .\tPRP VBZ NNP CD IN CD .\nRealistically , the series championship is out of his reach .\tRB , DT NN NN VBZ IN IN PRP$ NN .\nWith only two races remaining in the season after Sunday , Alonso needs just one third-place finish to become the first champion other than Ferrari 's Michael Schumacher of Germany since 1999 .\tIN RB CD NNS VBG IN DT NN IN NNP , NNP VBZ RB CD JJ NN TO VB DT JJ NN JJ IN NNP POS NNP NNP IN NNP IN CD .\nAt 21 years old , Alonso would become the youngest series champion ever .\tIN CD NNS JJ , NNP MD VB DT JJS NN NN RB .\nIndonesian health officials say local tests confirm that a one-year-old girl who died recently was infected with the H5N1 strain of bird flu .\tJJ NN NNS VBP JJ NNS VBP IN DT JJ NN WP VBD RB VBD VBN IN DT NNP NN IN NN NN .\nIf confirmed by the World Health Organization , her death would bring to 23 the number of people in Indonesia who have died from the virus .\tIN VBN IN DT NNP NNP NNP , PRP$ NN MD VB TO CD DT NN IN NNS IN NNP WP VBP VBN IN DT NN .\nMeanwhile , in Hong Kong , authorities say a dead falcon has tested positive for the H5N1 strain .\tRB , IN NNP NNP , NNS VBP DT JJ NN VBZ VBN JJ IN DT NNP NN .\nOfficials there have confirmed several cases of H5N1 in birds this year .\tNNS RB VBP VBN JJ NNS IN NNP IN NNS DT NN .\nIn Burma , state-run media say authorities have slaughtered more than 76,000 chickens and quails since the country 's first outbreak was reported this month .\tIN NNP , JJ NNS VBP NNS VBP VBN JJR IN CD NNS CC NNS IN DT NN POS JJ NN VBD VBN DT NN .\nElsewhere , China confirmed that a 29-year-old woman in Shanghai died of bird flu .\tRB , NNP VBD IN DT JJ NN IN NNP VBD IN NN NN .\nThe deadly form of bird flu has killed more than 100 people since 2003 , mostly in East Asia .\tDT JJ NN IN NN NN VBZ VBN JJR IN CD NNS IN CD , RB IN NNP NNP .\nColombia has apologized to Ecuador for its warplanes ' violating Ecuador 's airspace Saturday .\tNNP VBZ VBN TO NNP IN PRP$ NNS POS VBG NNP POS NN NNP .\nPresident Alvaro Uribe sent a letter to officials in Ecuador Thursday , saying the intrusion had been an accident .\tNNP NNP NNP VBD DT NN TO NNS IN NNP NNP , VBG DT NN VBD VBN DT NN .\nAn Ecuadorian government spokesman said the incident prompted Quito to put its own war planes on a alert .\tDT JJ NN NN VBD DT NN VBD NNP TO VB PRP$ JJ NN NNS IN DT NN .\nThe government had also threatened to withdraw its ambassador to Colombia .\tDT NN VBD RB VBN TO VB PRP$ NN TO NNP .\nEcuador said the Colombian war planes also fired on targets in Ecuadorian territory .\tNNP VBD DT JJ NN NNS RB VBD IN NNS IN JJ NN .\nEcuador has long expressed concern that violence from Colombia 's four-decade war against leftist rebels could spill across their lengthy border .\tNNP VBZ RB VBN NN IN NN IN NNP POS JJ NN IN JJ NNS MD VB IN PRP$ JJ NN .\nThe government has said its policy is to avoid involvement in Colombia 's civil conflict .\tDT NN VBZ VBN PRP$ NN VBZ TO VB NN IN NNP POS JJ NN .\nTropical Storm Alpha , following on the heels of brutal Hurricane Wilma , has caused at least 12 deaths in Haiti .\tJJ NN NNP , VBG IN DT NNS IN JJ NNP NNP , VBZ VBN IN JJS CD NNS IN NNP .\nOfficials announced the deaths Tuesday , as Alpha weakened into a tropical depression and drifted out to sea .\tNNS VBD DT NNS NNP , IN NNP VBD IN DT JJ NN CC VBD RP TO NN .\nAlpha 's rains caused floods and mudslides in Haiti that cut off roads and swept houses and people away .\tNNP POS NNS VBD NNS CC NNS IN NNP WDT VBD RP NNS CC VBD NNS CC NNS RB .\nIn addition to the 12 deaths , officials say an uncertain number of people are missing .\tIN NN TO DT CD NNS , NNS VBP DT JJ NN IN NNS VBP VBG .\nThey also predict the death toll could rise as emergency workers search remote areas .\tPRP RB VBP DT NN NN MD VB IN NN NNS NN JJ NNS .\nAlpha became the 22nd named storm of 2005 , which is now the most prolific hurricane season on record .\tNNP VBD DT CD VBN NN IN CD , WDT VBZ RB DT RBS JJ NN NN IN NN .\nEarlier this month , the island of Hispaniola bore the assault from Hurricane Wilma .\tRBR DT NN , DT NN IN NNP VBD DT NN IN NNP NNP .\nThe leaders of Japan and South Korea have agreed to meet soon to try to repair the two countries ' frayed relations .\tDT NNS IN NNP CC NNP NNP VBP VBN TO VB RB TO VB TO VB DT CD NNS POS JJ NNS .\nJapan 's new prime minister , Shinzo Abe , and South Korean President Roh Moo-hyun agreed to the meeting during a telephone conversation Thursday .\tNNP POS JJ JJ NN , NNP NNP , CC JJ JJ NNP NNP NNP VBD TO DT NN IN DT NN NN NNP .\nNo specific date was set for their talks .\tDT JJ NN VBD VBN IN PRP$ NNS .\nSouth Korea and China have shunned summits with Japan since last year , due to Beijing and Seoul 's anger over former Japanese Prime Minister Junichiro Koizumi 's repeated visits to a controversial wartime shrine in Tokyo .\tNNP NNP CC NNP VBP VBN NNS IN NNP IN JJ NN , JJ TO NNP CC NNP POS NN IN JJ JJ NNP NNP NNP NNP POS JJ NNS TO DT JJ NN NN IN NNP .\nThe Yasukuni shrine honors all of Japan 's war dead , including convicted World War Two criminals .\tDT NNP NN NNS DT IN NNP POS NN NN , VBG VBN NNP NNP CD NNS .\nMr. Abe 's foreign minister , Taro Aso , has said the new prime minister may visit China for a summit as early as October .\tNNP NNP POS JJ NN , NNP NNP , VBZ VBN DT JJ JJ NN MD VB NNP IN DT NN RB RB IN NNP .\nJapan 's parliament elected Mr. Abe prime minister on Tuesday .\tNNP POS NN VBD NNP NNP JJ NN IN NNP .\nA spokesman for Iraq 's interim government has rejected calls , mainly by Sunni and Kurdish groups , to postpone the country 's first national elections .\tDT NN IN NNP POS JJ NN VBZ VBN NNS , RB IN NNP CC NNP NNS , TO VB DT NN POS JJ JJ NNS .\nThe political groups have demanded that the government delay the scheduled January 30 poll by at least six months because of ongoing violence .\tDT JJ NNS VBP VBN IN DT NN VB DT VBN NNP CD NN IN IN JJS CD NNS IN IN JJ NN .\nIraq 's majority Shi'ites have consistently rejected those demands .\tNNP POS NN NNS VBP RB VBN DT NNS .\nSeveral political factions have called for a boycott of the elections , and various groups have expressed concern that fear of violence would discourage Iraqis from voting .\tJJ JJ NNS VBP VBN IN DT NN IN DT NNS , CC JJ NNS VBP VBN NN IN NN IN NN MD VB NNS IN NN .\nBut a spokesman for Prime Minister Iyad Allawi says the Iraqi leader is not convinced that delaying the elections would increase participation .\tCC DT NN IN NNP NNP NNP NNP VBZ DT JJ NN VBZ RB VBN IN VBG DT NNS MD VB NN .\nMeanwhile , insurgent attacks continue in Iraq .\tRB , JJ NNS VBP IN NNP .\nU.S. military officials say two soldiers were wounded Sunday when a car bomb blew up next to their convoy on a road leading to the Baghdad airport .\tNNP JJ NNS VBP CD NNS VBD VBN NNP WRB DT NN NN VBD RP JJ TO PRP$ NN IN DT NN VBG TO DT NNP NN .\nPresident Bush says U.S. and Iraqi forces have delivered justice to the most wanted terrorist in Iraq - Abu Musab al-Zarqawi .\tNNP NNP VBZ NNP CC JJ NNS VBP VBN NN TO DT RBS JJ JJ IN NNP : NNP NNP NNP .\nMr. Bush said at the White House that Zarqawi will never murder again , and that his death is a severe blow to al-Qaida .\tNNP NNP VBD IN DT NNP NNP IN NNP MD RB VB RB , CC IN PRP$ NN VBZ DT JJ NN TO NNP .\nThe president said Zarqawi personally led a campaign of beheadings , killings , and suicide attacks .\tDT NN VBD NNP RB VBD DT NN IN NNS , NNS , CC NN NNS .\nHowever , Mr. Bush warned that the terrorists will try to continue without Zarqawi , and vowed that the U.S. mission in Iraq will continue .\tRB , NNP NNP VBD IN DT NNS MD VB TO VB IN NNP , CC VBD IN DT NNP NN IN NNP MD VB .\nThe African Union is set to hold a meeting Thursday in Addis Ababa , Ethiopia , to consider sanctions against Togo .\tDT NNP NNP VBZ VBN TO VB DT NN NNP IN NNP NNP , NNP , TO VB NNS IN NNP .\nInternational criticism against Togolese authorities has increased since the military installed Faure Gnassingbe as president to succeed his father , who died earlier this month .\tJJ NN IN NNP NNS VBZ VBN IN DT JJ JJ NN NNP IN NN TO VB PRP$ NN , WP VBD RBR DT NN .\nLast week , the West African Economic Community imposed sanctions on Togo demanding the country restore constitutional rule .\tJJ NN , DT NNP NNP NNP NNP VBD NNS IN NNP VBG DT NN VB JJ NN .\nTogo 's constitution had called for the speaker of parliament to succeed the late president and call a new election in two months .\tNNP POS NN VBD VBN IN DT NN IN NN TO VB DT JJ NN CC VB DT JJ NN IN CD NNS .\nOn Monday , the Togolese parliament restored the original provision calling for elections within 60 days when a president dies - but decided to keep Mr. Gnassingbe as interim president .\tIN NNP , DT NNP NN VBD DT JJ NN VBG IN NNS IN CD NNS WRB DT NN VBZ : CC VBD TO VB NNP NNP IN JJ NN .\nHowever , the African Union , the European Union and the United States have called on Mr. Gnassingbe to step down immediately .\tRB , DT NNP NNP , DT NNP NNP CC DT NNP NNPS VBP VBN IN NNP NNP TO VB RB RB .\nThe President of Bosnia and Herzegovina says the Bosnian people are committed to taking back ownership of the country from the United Nations .\tDT NNP IN NNP CC NNP VBZ DT JJ NNS VBP VBN TO VBG RP NN IN DT NN IN DT NNP NNPS .\nAddressing the U.N. General Assembly Thursday , Ivo Jovic described Bosnia as a non-functional structure left to the Bosnian people by the 1995 Dayton Peace Accords .\tVBG DT NNP NNP NNP NNP , NNP NNP VBD NNP IN DT JJ NN VBD TO DT JJ NNS IN DT CD NNP NNP NNP .\nHe said Bosnian Serbs , Muslims , and Croats are committed to the highest standards of human and civil rights .\tPRP VBD JJ NNS , NNP , CC NNS VBP VBN TO DT JJS NNS IN JJ CC JJ NNS .\nPresident Jovic said Bosnia belongs to the European family of nations and can be a factor of stability in the Balkans .\tNNP NNP VBD NNP VBZ TO DT JJ NN IN NNS CC MD VB DT NN IN NN IN DT NNPS .\nThe 1995 peace accords , which ended the war in the former Yugoslavia , split Bosnia into a Serb Republic and a Muslim-Croat Federation .\tDT CD NN NNS , WDT VBD DT NN IN DT JJ NNP , VBD NNP IN DT JJ NNP CC DT NNP NNP .\nIt is administered by a U.N. representative appointed by the Security Council .\tPRP VBZ VBN IN DT NNP NN VBN IN DT NNP NNP .\nBillboard magazine lists the band Chicago as the leading singles chart group of the 1970s .\tNNP NN VBZ DT NN NNP IN DT VBG NNS VBP NN IN DT NNS .\nWith more than 21 million-selling albums , Chicago has secured a place in music history .\tIN JJR IN CD JJ NNS , NNP VBZ VBN DT NN IN NN NN .\nWith its legendary horn section and distinctive vocals , Chicago remains one of the longest-running and most-successful pop / rock groups .\tIN PRP$ JJ NN NN CC JJ NNS , NNP VBZ CD IN DT JJ CC JJ NN JJ NN NNS .\nVOA 's Larry London had the opportunity to talk with founder and lead singer Robert Lamm , and trumpet player Lee Loughnane at Wolf Trap National Park for the Performing Arts in Vienna , Virginia .\tNNP POS NNP NNP VBD DT NN TO VB IN NN CC NN NN NNP NNP , CC NN NN NNP NNP IN NNP NNP NNP NNP IN DT VBG NNS IN NNP , NNP .\nSri Lanka 's top defense officials say the military is ready for renewed conflict with Tamil Tiger rebels , but will not break a three-year cease-fire .\tNNP NNP POS JJ NN NNS VBP DT NN VBZ JJ IN JJ NN IN NNP NNP NNS , CC MD RB VB DT JJ NN .\nSri Lankan Defense chief Admiral Daya Sandagiri told reporters Friday the military was ready to meet any rebel challenge .\tNNP NNP NNP NN NNP NNP NNP VBD NNS NNP DT NN VBD JJ TO VB DT NN NN .\nHe added however that the military did not expect the country to slip back to full-scale war .\tPRP VBD RB IN DT JJ VBD RB VB DT NN TO VB RB TO JJ NN .\nAt least 14 soldiers were killed earlier this week in two separate attacks in the minority Tamil-dominated north , the biggest breaches , so far , of a 2002 cease-fire .\tIN JJS CD NNS VBD VBN RBR DT NN IN CD JJ NNS IN DT NN JJ NN , DT JJS NNS , RB RB , IN DT CD NN .\nThe rebels have denied any involvement in the attacks .\tDT NNS VBP VBN DT NN IN DT NNS .\nThe 2002 cease-fire halted two decades of civil war in the island nation , but it has come under increasing strain in recent days .\tDT CD NN VBD CD NNS IN JJ NN IN DT NN NN , CC PRP VBZ VBN IN VBG NN IN JJ NNS .\nIndonesia 's health ministry says a three-year-old boy with symptoms of bird flu has died , days after the virus killed his sister .\tNNP POS NN NN VBZ DT JJ NN IN NNS IN NN NN VBZ VBN , NNS IN DT NN VBD PRP$ NN .\nA health ministry official says the boy died Tuesday at a hospital in the West Java city of Bandung .\tDT NN NN NN VBZ DT NN VBD NNP IN DT NN IN DT NNP NNP NN IN NNP .\nMedical tests are being carried out to see if the boy was infected with the H5N1 strain of bird flu .\tJJ NNS VBP VBG VBN RP TO VB IN DT NN VBD VBN IN DT NNP NN IN NN NN .\nSamples from the two dead siblings have been sent to a World Health Organization laboratory in Hong Kong for more testing .\tNNS IN DT CD JJ NNS VBP VBN VBN TO DT NNP NNP NNP NN IN NNP NNP IN JJR NN .\nThe toddler 's 13-year-old sister died Saturday , and a 15-year-old sister is being tested for the virus .\tDT NN POS JJ NN VBD NNP , CC DT JJ NN VBZ VBG VBN IN DT NN .\nThe official says the three siblings may have contracted avian flu through contact with dead chickens .\tDT NN VBZ DT CD NNS MD VB VBN JJ NN IN NN IN JJ NNS .\nIf they are confirmed to have died of bird flu , Indonesia 's death toll from the disease will rise to 14 .\tIN PRP VBP VBN TO VB VBN IN NN NN , NNP POS NN NN IN DT NN MD VB TO CD .\nChina says the death toll from an earthquake that hit a Tibetan region in the country 's west last month has risen to 2,698 .\tNNP VBZ DT NN NN IN DT NN WDT VBD DT JJ NN IN DT NN POS JJS JJ NN VBZ VBN TO CD .\nChina 's official Xinhua news agency says another 270 people remain missing after the April 14 quake in Qinghai province .\tNNP POS JJ NNP NN NN VBZ DT CD NNS VBP VBG IN DT NNP CD NN IN NNP NN .\nThe new death toll is a significant increase from the previous figure of around 2,200 fatalities reported by Chinese authorities in late April .\tDT JJ NN NN VBZ DT JJ NN IN DT JJ NN IN IN CD NNS VBN IN JJ NNS IN JJ NNP .\nThe 6.9 magnitude quake flattened thousands of homes in Qinghai 's ethnically-Tibetan Yushu county .\tDT CD NN NN VBD NNS IN NNS IN NNP POS JJ NNP NN .\nThe remote location posed logistical difficulties for rescuers .\tDT JJ NN VBD JJ NNS IN NNS .\nXinhua quotes Qinghai Vice Governor Zhang Guangrong as saying the dead include 199 students .\tNNP VBZ NNP NNP NNP NNP NNP IN VBG DT NN VBP CD NNS .\nThe U.S. State Department and the United Nations say they are seriously concerned about reports that Burma 's military junta has ordered the removal of a security detail at the home of detained democracy leader Aung San Suu Kyi .\tDT NNP NNP NNP CC DT NNP NNPS VBP PRP VBP RB JJ IN NNS IN NNP POS JJ NN VBZ VBN DT NN IN DT NN NN IN DT NN IN JJ NN NN NNP NNP NNP NNP .\nAmerican officials say they are worried about the welfare of the Nobel laureate , who is under house arrest at her home in Rangoon .\tJJ NNS VBP PRP VBP VBN IN DT NN IN DT NNP NN , WP VBZ IN NN NN IN PRP$ NN IN NNP .\nU.N. Secretary-General Kofi Annan expressed similar thoughts and called on Burmese authorities to remember their responsibility to ensure Aung San Suu Kyi 's well being .\tNNP NNP NNP NNP VBD JJ NNS CC VBN IN JJ NNS TO VB PRP$ NN TO VB NNP NNP NNP NNP POS RB VBG .\nMembers of Aung San Suu Kyi 's National League for Democracy reported Thursday that the government has ordered the removal of NLD members who had been providing security and other assistance to the pro-democracy leader .\tNNS IN NNP NNP NNP NNP POS NNP NNP IN NNP VBD NNP IN DT NN VBZ VBN DT NN IN NNP NNS WP VBD VBN VBG NN CC JJ NN TO DT JJ NN .\nThe junta also reportedly has said she will have reduced access to her personal physician .\tDT NN RB RB VBZ VBN PRP MD VB VBN NN TO PRP$ JJ NN .\nKenyan President Mwai Kibaki has ordered an inquiry into a major security breach at his country 's main airport .\tJJ NNP NNP NNP VBZ VBN DT NN IN DT JJ NN NN IN PRP$ NN POS JJ NN .\nMr. Kibaki ordered the investigation Tuesday , one day after suspending the country 's chief police investigator , Joseph Kamau , and 10 other officials .\tNNP NNP VBD DT NN NNP , CD NN IN VBG DT NN POS JJ NN NN , NNP NNP , CC CD JJ NNS .\nThe breach involved two Armenian men who drew pistols on customs officials when asked to open their luggage at the airport last Thursday .\tDT NN VBD CD JJ NNS WP VBD NNS IN NNS NNS WRB VBN TO VB PRP$ NN IN DT NN JJ NNP .\nThe men , known as the Artur brothers , were deported without being charged , prompting accusations that they had government protection .\tDT NNS , VBN IN DT NNP NNS , VBD VBN IN VBG VBN , VBG NNS IN PRP VBD NN NN .\nOpposition lawmakers say the Armenians led a controversial police raid on Kenya 's Standard Media Group in March .\tNN NNS VBP DT NNS VBD DT JJ NN NN IN NNP POS NNP NNP NNP IN NNP .\nThe British government has issued a protest note demanding an explanation for the airport incident .\tDT JJ NN VBZ VBN DT NN NN VBG DT NN IN DT NN NN .\nBritain says it has concerns about the airport 's security .\tNNP VBZ PRP VBZ NNS IN DT NN POS NN .\nThe United States government has frozen the assets of four people and two companies that allegedly have ties to a suspected Colombian drug kingpin .\tDT NNP NNPS NN VBZ VBN DT NNS IN CD NNS CC CD NNS WDT RB VBP NNS TO DT JJ JJ NN NN .\nThe U.S. Treasury announced Tuesday it has taken financial sanctions against the parents of accused drug trafficker Juan Carlos Ramirez , two of his business associates and two companies he founded .\tDT NNP NNP VBD NNP PRP VBZ VBN JJ NNS IN DT NNS IN VBN NN NN NNP NNP NNP , CD IN PRP$ NN NNS CC CD NNS PRP VBD .\nA Treasury news release says Ramirez 's parents , along with Jorge Rodrigo Salinas and Edgar Marina Otalora , operated a Colombian pharmaceutical distribution company Ramirez built with his alleged narcotics proceeds .\tDT NNP NN NN VBZ NNP POS NNS , IN IN NNP NNP NNP CC NNP NNP NNP , VBD DT JJ JJ NN NN NNP VBD IN PRP$ JJ NNS NNS .\nThe Treasury also accused Ramirez of using a Colombian holding company for keeping real estate and other assets while the U.S. investigated his finances .\tDT NNP RB VBD NNP IN VBG DT JJ NN NN IN VBG JJ NN CC JJ NNS IN DT NNP VBD PRP$ NNS .\nRamirez faces federal indictments on drug trafficking charges in the United States .\tNNP VBZ JJ NNS IN NN NN NNS IN DT NNP NNPS .\nHe is allegedly one of the leaders of Colombia 's Norte del Valle drug cartel .\tPRP VBZ RB CD IN DT NNS IN NNP POS NNP NNP NNP NN NN .\nAuthorities say the cartel has exported about 500 metric tons of cocaine to the U.S. since 1990 .\tNNS VBP DT NN VBZ VBN IN CD JJ NNS IN NN TO DT NNP IN CD .\nVenezuelan President Hugo Chavez says his nation wants to continue doing business with the United States , and would like to see more positive relations between the two countries .\tJJ NNP NNP NNP VBZ PRP$ NN VBZ TO VB VBG NN IN DT NNP NNPS , CC MD VB TO VB JJR JJ NNS IN DT CD NNS .\nSpeaking to reporters in Caracas Thursday , Mr. Chavez said Venezuela wants to continue its oil sales to the United States - 1.5 million barrels per day - at the present level .\tVBG TO NNS IN NNP NNP , NNP NNP VBD NNP VBZ TO VB PRP$ NN NNS TO DT NNP NNPS IN CD CD NNS IN NN : IN DT JJ NN .\nThe Venezuelan president 's latest comments contrasted sharply with his recent accusations that the United States is backing a plot to assassinate him .\tDT JJ NN POS JJS NNS VBD RB IN PRP$ JJ NNS IN DT NNP NNPS VBZ VBG DT NN TO VB PRP .\nSecretary of State Condoleeza Rice has dismissed Mr. Chavez 's allegations are ' ludicrous . '\tNNP IN NNP NNP NNP VBZ VBN NNP NNP POS NNS VBP `` JJ . ``\nShe says the United States does not want bad relations with Venezuela , but does want assurances that Mr. Chavez is committed to democracy .\tPRP VBZ DT NNP NNPS VBZ RB VB JJ NNS IN NNP , CC VBZ VB NNS IN NNP NNP VBZ VBN TO NN .\nPresident Bush 's administration is concerned about the treatment of opposition groups and independent news media in Venezuela .\tNNP NNP POS NN VBZ JJ IN DT NN IN NN NNS CC JJ NN NNS IN NNP .\nHeavy rains in Brazil have caused deadly mudslides that have killed at least seven people , mostly children .\tJJ NNS IN NNP VBP VBN JJ NNS WDT VBP VBN IN JJS CD NNS , RB NNS .\nAuthorities say the victims lived in a shantytown in the industrial suburb of Sao Bernardo do Campo , near the city of Sao Paulo .\tNNS VBP DT NNS VBD IN DT NN IN DT JJ NN IN NNP NNP VBP NNP , IN DT NN IN NNP NNP .\nTorrential rains have lashed the Sao Paulo region since Tuesday .\tNNP NNS VBP VBN DT NNP NNP NN IN NNP .\nThe U.S. military in Afghanistan says 15 militants along with an Afghan woman and two children were killed during a battle with insurgents in the south .\tDT NNP NN IN NNP VBZ CD NNS IN IN DT JJ NN CC CD NNS VBD VBN IN DT NN IN NNS IN DT NN .\nIn a statement , the U.S.-led coalition said U.S.-led troops were raiding compounds suspected of housing bomb makers in Helmand province on Sunday when militants attacked them with heavy fire .\tIN DT NN , DT JJ NN VBD JJ NNS VBD VBG NNS VBN IN NN NN NNS IN NNP NN IN NNP WRB NNS VBD PRP IN JJ NN .\nThe statement said several militant fighters barricaded themselves inside a house on the compound and fired at coalition forces .\tDT NN VBD JJ JJ NNS VBD PRP IN DT NN IN DT NN CC VBD IN NN NNS .\nCoalition forces threw a grenade at the house , which collapsed .\tNN NNS VBD DT NN IN DT NN , WDT VBD .\nTroops later recovered the bodies of an Afghan woman and two children , along with several militants and their weapons .\tNNS RB VBD DT NNS IN DT JJ NN CC CD NNS , IN IN JJ NNS CC PRP$ NNS .\nIn eastern Afghanistan , NATO said two of its troops were killed and another wounded Monday , after a roadside bomb exploded .\tIN JJ NNP , NNP VBD CD IN PRP$ NNS VBD VBN CC DT VBN NNP , IN DT NN NN VBD .\nNo other details were available .\tDT JJ NNS VBD JJ .\nPolice say suspected Taliban militants have killed a pro-government tribal leader in Pakistan 's northwest .\tNNS VBP VBN NNP NNS VBP VBN DT JJ JJ NN IN NNP POS NN .\nThe tribal leader was shot and killed Wednesday in Shangla district near Swat Valley .\tDT JJ NN VBD VBN CC VBN NNP IN NNP NN IN NNP NNP .\nThe Pakistani military launched an offensive in the region against the Taliban about three months ago , after the collapse of a peace deal to impose strict Islamic law ( Sharia ) in Swat Valley .\tDT JJ NN VBD DT NN IN DT NN IN DT NNP IN CD NNS RB , IN DT NN IN DT NN NN TO VB JJ JJ NN LRB NNP RRB IN NNP NNP .\nMilitants have retaliated by stepping up attacks , including a suicide bombing last month in Lahore that killed a prominent Islamic cleric , Sarfraz Naeemi , who supported the military crackdown on the Taliban .\tNNS VBP VBN IN VBG RP NNS , VBG DT NN VBG JJ NN IN NNP WDT VBD DT JJ NNP NN , NNP NNP , WP VBD DT JJ NN IN DT NNP .\nElsewhere in the northwest , police say a Shi'ite Muslim lawyer was wounded and his guard killed when a bomb ripped through the parking area of a court in the city of Dera Ismail Khan , in North West Frontier Province , Wednesday .\tRB IN DT JJS , NNS VBP DT NNP NNP NN VBD VBN CC PRP$ NN VBN WRB DT NN VBD IN DT NN NN IN DT NN IN DT NN IN NNP NNP NNP , IN NNP NNP NNP NNP , NNP .\nDD Acquisition Corp. , a partnership of Unicorp Canada Corp. 's Kingsbridge Capital Group and Cara Operations Ltd. , extended to Nov. 20 its $ 45-a-share offer for all Dunkin' Donuts Inc. shares outstanding .\tNNP NNP NNP , DT NN IN NNP NNP NNP POS NNP NNP NNP CC NNP NNP NNP , VBN TO NNP CD PRP$ $ JJ NN IN DT NNP NNP NNP NNS JJ .\nThe offer , which was due to expire yesterday , is conditional on 50.1 % of Dunkin' common shares , on a fully diluted basis , being tendered and on the withdrawal of the company 's poison pill rights plan .\tDT NN , WDT VBD JJ TO VB NN , VBZ JJ IN CD NN IN NNP JJ NNS , IN DT RB VBN NN , VBG VBN CC IN DT NN IN DT NN POS NN NN NNS NN .\nDD Acquisition has launched a suit in a Delaware court seeking the withdrawal of Dunkin 's poison pill rights and employee stock ownership plans , which it claims were put in place to deter bidders .\tNNP NNP VBZ VBN DT NN IN DT NNP NN VBG DT NN IN NNP POS NN NN NNS CC NN NN NN NNS , WDT PRP VBZ VBD VBN IN NN TO VB NNS .\nDD Acquisition said 2.2 million shares , or about 38.5 % of the shares outstanding , have been tendered under its offer .\tNNP NNP VBD CD CD NNS , CC IN CD NN IN DT NNS JJ , VBP VBN VBN IN PRP$ NN .\nThe partners said they already hold 15 % of all shares outstanding .\tDT NNS VBD PRP RB VBP CD NN IN DT NNS JJ .\nDunkin' has set Nov. 10 as the deadline for the receipt of any competing bids .\tNNP VBZ VBN NNP CD IN DT NN IN DT NN IN DT VBG NNS .\nDD Acquisition said the extension is to allow this process to be completed .\tNNP NNP VBD DT NN VBZ TO VB DT NN TO VB VBN .\nDunkin' is based in Randolph , Mass.\tNNP VBZ VBN IN NNP , NNP\nCara , a food services chain operator and Unicorp , a holding company , are based in Toronto .\tNNP , DT NN NNS VBP NN CC NNP , DT VBG NN , VBP VBN IN NNP .\nMacau 's economy slowed dramatically in 2009 as a result of the global economic slowdown , but strong growth resumed in 2010 , largely on the back of strong tourism and gaming sectors .\tNNP POS NN VBD RB IN CD IN DT NN IN DT JJ JJ NN , CC JJ NN VBD IN CD , RB IN DT NN IN JJ NN CC NN NNS .\nAfter opening up its locally-controlled casino industry to foreign competition in 2001 , the territory attracted tens of billions of dollars in foreign investment , transforming Macau into one of the world 's largest gaming center .\tIN VBG RP PRP$ JJ NN NN TO JJ NN IN CD , DT NN VBD NNS IN NNS IN NNS IN JJ NN , VBG NNP IN CD IN DT NN POS JJS NN NN .\nMacau 's gaming and tourism businesses were fueled by China 's decision to relax travel restrictions on Chinese citizens wishing to visit Macau .\tNNP POS NN CC NN NNS VBD VBN IN NNP POS NN TO VB NN NNS IN JJ NNS VBG TO VB NNP .\nBy 2006 , Macau 's gaming revenue surpassed that of the Las Vegas strip , and gaming-related taxes accounted for more than 70 % of total government revenue .\tIN CD , NNP POS NN NN VBD IN IN DT NNP NNP NN , CC JJ NNS VBD IN JJR IN CD NN IN JJ NN NN .\nIn 2008 , Macau introduced measures to cool the rapidly developing sector .\tIN CD , NNP VBD NNS TO VB DT RB VBG NN .\nThis city of nearly 5,52,300 hosted nearly 25 million visitors in 2010 .\tDT NN IN RB CD VBD RB CD CD NNS IN CD .\nAlmost 53 % came from mainland China .\tRB CD NN VBD IN JJ NNP .\nMacau 's traditional manufacturing industry has virtually disappeared since the termination of the Multi-Fiber Agreement in 2005 .\tNNP POS JJ NN NN VBZ RB VBN IN DT NN IN DT NNP NNP IN CD .\nIn 2010 , total exports were less than US $ 900 million , while gaming receipts were almost US $ 24 billion , a 58 % increase over 2009 .\tIN CD , JJ NNS VBD JJR IN NNP $ CD CD , IN VBG NNS VBD RB NNP $ CD CD , DT CD NN NN IN CD .\nThe Macau government plans to tighten control over the opening of new casinos and strengthen supervision of local casino operations in 2011 and has introduced measures to diversify the economy .\tDT NNP NN VBZ TO VB NN IN DT NN IN JJ NNS CC VB NN IN JJ NN NNS IN CD CC VBZ VBN NNS TO VB DT NN .\nThe Closer Economic Partnership Agreement ( CEPA ) between Macau and mainland China that came into effect on 1 January 2004 offers Macau-made products tariff-free access to the mainland ; nevertheless , China is Macau 's second largest goods export market , behind Hong Kong , and followed by the United States .\tDT NNP NNP NNP NNP LRB NNP RRB IN NNP CC NNP NNP WDT VBD IN NN IN CD NNP CD VBZ JJ NNS JJ NN TO DT NN ; RB , NNP VBZ NNP POS JJ JJS NNS NN NN , IN NNP NNP , CC VBN IN DT NNP NNPS .\nMacau 's currency , the pataca , is closely tied to the Hong Kong dollar , which is also freely accepted in the territory .\tNNP POS NN , DT NN , VBZ RB VBN TO DT NNP NNP NN , WDT VBZ RB RB VBN IN DT NN .\nMalaysia , a middle-income country , has transformed itself since the 1970s from a producer of raw materials into an emerging multi-sector economy .\tNNP , DT JJ NN , VBZ VBN PRP IN DT NNS IN DT NN IN JJ NNS IN DT VBG JJ NN .\nUnder current Prime Minister NAJIB , Malaysia is attempting to achieve high-income status by 2020 and to move farther up the value-added production chain by attracting investments in Islamic finance , high technology industries , biotechnology , and services .\tIN JJ NNP NNP NNP , NNP VBZ VBG TO VB JJ NN IN CD CC TO VB RB IN DT JJ NN NN IN VBG NNS IN JJ NN , JJ NN NNS , NN , CC NNS .\nThe NAJIB administration also is continuing efforts to boost domestic demand and reduce the economy 's dependence on exports .\tDT NNP NN RB VBZ VBG NNS TO VB JJ NN CC VB DT NN POS NN IN NNS .\nNevertheless , exports - particularly of electronics , oil and gas , palm oil and rubber - remain a significant driver of the economy .\tRB , NNS : RB IN NNS , NN CC NN , NN NN CC NN : VBP DT JJ NN IN DT NN .\nAs an oil and gas exporter , Malaysia has profited from higher world energy prices , although the rising cost of domestic gasoline and diesel fuel , combined with strained government finances , has forced Kuala Lumpur begin to reduce government subsidies .\tIN DT NN CC NN NN , NNP VBZ VBN IN JJR NN NN NNS , IN DT VBG NN IN JJ NN CC NN NN , VBN IN JJ NN NNS , VBZ VBN NNP NNP VBP TO VB NN NNS .\nThe government is also trying to lessen its dependence on state oil producer Petronas , which supplies more than 40 % of government revenue .\tDT NN VBZ RB VBG TO VB PRP$ NN IN NN NN NN NNP , WDT VBZ JJR IN CD NN IN NN NN .\nThe central bank maintains healthy foreign exchange reserves and its well-developed regulatory regime has limited Malaysia 's exposure to riskier financial instruments and the global financial crisis .\tDT JJ NN VBZ JJ JJ NN NNS CC PRP$ JJ JJ NN VBZ VBN NNP POS NN TO NN JJ NNS CC DT JJ JJ NN .\nNevertheless , decreasing worldwide demand for consumer goods hurt Malaysia 's exports and economic growth in 2009 , although both showed signs of recovery in 2010 .\tRB , VBG JJ NN IN NN NNS VBP NNP POS NNS CC JJ NN IN CD , IN DT VBD NNS IN NN IN CD .\nIn order to attract increased investment , NAJIB has raised possible revisions to the special economic and social preferences accorded to ethnic Malays under the New Economic Policy of 1970 , but he has encountered significant opposition , especially from Malay nationalists and other vested interests .\tIN NN TO VB VBN NN , NNP VBZ VBN JJ NNS TO DT JJ JJ CC JJ NNS VBN TO JJ NNS IN DT NNP NNP NNP IN CD , CC PRP VBZ VBN JJ NN , RB IN NNP NNS CC JJ JJ NNS .\nOriginally settled by Polynesian emigrants from surrounding island groups , the Tokelau Islands were made a British protectorate in 1889 .\tRB VBN IN JJ NNS IN VBG NN NNS , DT NNP NNP VBD VBN DT JJ NN IN CD .\nThey were transferred to New Zealand administration in 1925 .\tPRP VBD VBN TO NNP NNP NN IN CD .\nReferenda held in 2006 and 2007 to change the status of the islands from that of a New Zealand territory to one of free association with New Zealand did not meet the needed threshold for approval .\tNNS VBN IN CD CC CD TO VB DT NN IN DT NNS IN DT IN DT NNP NNP NN TO CD IN JJ NN IN NNP NNP VBD RB VB DT VBN NN IN NN .\nFisheries in 2006 - 7 landed 1,26,976 metric tons , of which 82 % ( 1,04,586 tons ) was krill ( Euphausia superba ) and 9.5 % ( 12,027 tons ) Patagonian toothfish ( Dissostichus eleginoides - also known as Chilean sea bass ) , compared to 1,27,910 tons in 2005 - 6 of which 83 % ( 1,06,591 tons ) was krill and 9.7 % ( 12,396 tons ) Patagonian toothfish ( estimated fishing from the area covered by the Convention of the Conservation of Antarctic Marine Living Resources ( CCAMLR ) , which extends slightly beyond the Southern Ocean area ) .\tNNS IN CD : CD VBD CD JJ NNS , IN WDT CD NN LRB CD NNS RRB VBD NN LRB NNP NNP RRB CC CD NN LRB CD NNS RRB JJ NN LRB NNP NNP : RB VBN IN JJ NN NN RRB , VBN TO CD NNS IN CD : CD IN WDT CD NN LRB CD NNS RRB VBD NN CC CD NN LRB CD NNS RRB JJ NN LRB JJ NN IN DT NN VBN IN DT NN IN DT NN IN NNP NNP NNP NNP LRB NNP RRB , WDT VBZ RB IN DT NNP NNP NN RRB .\nInternational agreements were adopted in late 1999 to reduce illegal , unreported , and unregulated fishing , which in the 2000 - 1 season landed , by one estimate , 8,376 metric tons of Patagonian and Antarctic toothfish .\tJJ NNS VBD VBN IN JJ CD TO VB JJ , JJ , CC JJ NN , WDT IN DT CD : CD NN VBD , IN CD NN , CD JJ NNS IN JJ CC JJ NN .\nIn the 2007 - 8 Antarctic summer , 45,213 tourists visited the Southern Ocean , compared to 35,552 in 2006 - 7 , and 29,799 in 2005 - 6 ( estimates provided to the Antarctic Treaty by the International Association of Antarctica Tour Operators ( IAATO ) , and does not include passengers on overflights and those flying directly in and out of Antarctica ) .\tIN DT CD : CD JJ NN , CD NNS VBD DT NNP NNP , VBN TO CD IN CD : CD , CC CD IN CD : CD LRB NNS VBD TO DT NNP NNP IN DT NNP NNP IN NNP NNP NNP LRB NNP RRB , CC VBZ RB VB NNS IN NNS CC DT VBG RB IN CC IN IN NNP RRB .\nDemocracy is slowly being reestablished after the civil war from 1991 to 2002 that resulted in tens of thousands of deaths and the displacement of more than 2 million people ( about a third of the population ) .\tNN VBZ RB VBG VBN IN DT JJ NN IN CD TO CD WDT VBD IN NNS IN NNS IN NNS CC DT NN IN JJR IN CD CD NNS LRB IN DT NN IN DT NN RRB .\nThe military , which took over full responsibility for security following the departure of UN peacekeepers at the end of 2005 , is increasingly developing as a guarantor of the country 's stability .\tDT NN , WDT VBD RP JJ NN IN NN VBG DT NN IN NNP NNS IN DT NN IN CD , VBZ RB VBG IN DT NN IN DT NN POS NN .\nThe armed forces remained on the sideline during the 2007 presidential election , but still look to the UN Integrated Office in Sierra Leone ( UNIOSIL ) - a civilian UN mission - to support efforts to consolidate peace .\tDT JJ NNS VBD IN DT NN IN DT CD JJ NN , CC RB VB TO DT NNP NNP NNP IN NNP NNP LRB NNP RRB IN DT JJ NNP NN : TO VB NNS TO VB NN .\nThe new government 's priorities include furthering development , creating jobs , and stamping out endemic corruption .\tDT JJ NN POS NNS VBP VBG NN , VBG NNS , CC VBG RP JJ NN .\nSpain 's powerful world empire of the 16th and 17th centuries ultimately yielded command of the seas to England .\tNNP POS JJ NN NN IN DT JJ CC JJ NNS RB VBD NN IN DT NNS TO NNP .\nSubsequent failure to embrace the mercantile and industrial revolutions caused the country to fall behind Britain , France , and Germany in economic and political power .\tJJ NN TO VB DT NN CC JJ NNS VBD DT NN TO VB IN NNP , NNP , CC NNP IN JJ CC JJ NN .\nSpain remained neutral in World Wars I and II but suffered through a devastating civil war ( 1936 - 39 ) .\tNNP VBD JJ IN NNP NNP NNP CC NNP CC VBD IN DT JJ JJ NN LRB CD IN CD RRB .\nA peaceful transition to democracy following the death of dictator Francisco FRANCO in 1975 , and rapid economic modernization ( Spain joined the EU in 1986 ) gave Spain a dynamic and rapidly growing economy and made it a global champion of freedom and human rights .\tDT JJ NN TO NN VBG DT NN IN NN NNP NNP IN CD , CC JJ JJ NN LRB NNP VBD DT NNP IN CD RRB VBD NNP DT JJ CC RB VBG NN CC VBD PRP DT JJ NN IN NN CC JJ NNS .\nThe government continues to battle the Basque Fatherland and Liberty ( ETA ) terrorist organization , but its major focus for the immediate future will be on measures to reverse the severe economic recession that started in mid-2008 .\tDT NN VBZ TO VB DT NNP NNP CC NNP LRB NNP RRB JJ NN , CC PRP$ JJ NN IN DT JJ NN MD VB IN NNS TO VB DT JJ JJ NN WDT VBD IN CD .\nIN THE WINTERTIME , a Dog curled up in as small a space as possible on account of the cold , determined to make himself a house .\tIN DT NN , DT NN VBD RB IN IN JJ DT NN IN JJ IN NN IN DT NN , VBN TO VB PRP DT NN .\nHowever when the summer returned again , he lay asleep stretched at his full length and appeared to himself to be of a great size .\tRB WRB DT NN VBD RB , PRP VBD JJ VBN IN PRP$ JJ NN CC VBD TO PRP TO VB IN DT JJ NN .\nNow he considered that it would be neither an easy nor a necessary work to make himself such a house as would accommodate him .\tRB PRP VBD IN PRP MD VB RB DT JJ CC DT JJ NN TO VB PRP PDT DT NN IN MD VB PRP .\nTEE KITES of olden times , as well as the Swans , had the privilege of song .\tNN NNS IN JJ NNS , RB RB IN DT NNS , VBD DT NN IN NN .\nBut having heard the neigh of the horse , they were so enchanted with the sound , that they tried to imitate it ; and , in trying to neigh , they forgot how to sing .\tCC VBG VBN DT NN IN DT NN , PRP VBD RB VBN IN DT NN , IN PRP VBD TO VB PRP ; CC , IN VBG TO VB , PRP VBP WRB TO VB .\nThe desire for imaginary benefits often involves the loss of present blessings .\tDT NN IN JJ NNS RB VBZ DT NN IN JJ NNS .\nOF two Writers one was brilliant but indolent ; the other though dull , industrious .\tIN CD NNS CD VBD JJ CC JJ ; DT JJ IN JJ , JJ .\nThey set out for the goal of fame with equal opportunities .\tPRP VBD RP IN DT NN IN NN IN JJ NNS .\nBefore they died the brilliant one was detected in seventy languages as the author of but two or three books of fiction and poetry , while the other was honoured in the Bureau of Statistics of his native land as the compiler of sixteen volumes of tabulated information relating to the domestic hog .\tIN PRP VBD DT JJ CD VBD VBN IN CD NNS IN DT NN IN CC CD CC CD NNS IN NN CC NN , IN DT NN VBD VBN IN DT NNP IN NNP IN PRP$ JJ NN IN DT NN IN CD NNS IN JJ NN VBG TO DT JJ NN .\nTWO Game Cocks , having fought a battle , the defeated one skulked away and hid , but the victor mounted a wall and crowed lustily .\tCD NN NN , VBG VBN DT NN , DT VBN CD VBN RB CC JJ , CC DT NN VBD DT NN CC VBD RB .\nThis attracted the attention of a hawk , who said :\tDT VBD DT NN IN DT NN , WP VBD :\n' Behold ! how pride goeth before a fall . '\t`` VB . WRB NN NN IN DT NN . ``\nSo he swooped down upon the boasting bird and was about to destroy him , when the vanquished Cock came out of his hiding-place , and between the two the Hawk was calamitously defeated .\tRB PRP VBD RP IN DT VBG NN CC VBD IN TO VB PRP , WRB DT JJ NN VBD IN IN PRP$ NN , CC IN DT CD DT NN VBD RB VBN .\nA Lion used to prowl about a field in which Four Oxen used to dwell .\tDT NN VBD TO VB IN DT NN IN WDT CD NNS VBD TO VB .\nMany a time he tried to attack them ; but whenever he came near they turned their tails to one another , so that whichever way he approached them he was met by the horns of one of them .\tJJ DT NN PRP VBD TO VB PRP ; CC WRB PRP VBD IN PRP VBD PRP$ NNS TO CD DT , RB IN WDT NN PRP VBD PRP PRP VBD VBN IN DT NNS IN CD IN PRP .\nAt last , however , they fell a-quarrelling among themselves , and each went off to pasture alone in a separate corner of the field .\tIN JJ , RB , PRP VBD JJ IN PRP , CC DT VBD RB TO VB RB IN DT JJ NN IN DT NN .\nThen the Lion attacked them one by one and soon made an end of all four .\tRB DT NN VBD PRP CD IN CD CC RB VBD DT NN IN DT CD .\nUnited we stand , divided we fall .\tVBN PRP VBP , VBN PRP VBP .\nThe sales manager was wrapping up her pep talk to new staff members .\tDT NNS NN VBD VBG RP PRP$ NN NN TO JJ NN NNS .\n' Just remember this , ' she said .\t`` RB VB DT , `` PRP VBD .\n' Always be sincere , whether you mean it or not . '\t`` RB VB JJ , IN PRP VBP PRP CC RB . ``\nIsraeli officials say despite heavy fighting in southern Lebanon they have not committed the bulk of their force to the battle - to give time for diplomatic efforts to bring about a cease-fire .\tJJ NNS VBP IN JJ NN IN JJ NNP PRP VBP RB VBN DT NN IN PRP$ NN TO DT NN : TO VB NN IN JJ NNS TO VB IN DT NN .\nSome of the heaviest fighting of the month-long conflict is now underway .\tDT IN DT JJS NN IN DT JJ NN VBZ RB JJ .\nIsraeli ground troops on Thursday say they have largely gained control of the town of Marjayoun , a strategic hilltop location near the Litani river .\tJJ NN NNS IN NNP VBP PRP VBP RB VBN NN IN DT NN IN NNP , DT JJ NN NN IN DT NNP NN .\nLarge numbers of Israeli troops are battling Hezbollah militants in southern Lebanon .\tJJ NNS IN JJ NNS VBP VBG NNP NNS IN JJ NNP .\nHezbollah says it has destroyed a number of Israeli tanks so far .\tNNP VBZ PRP VBZ VBN DT NN IN JJ NNS RB RB .\nOn Wednesday , Israel 's Cabinet authorized the army to push north to the Litani , about 20 kilometers from the border .\tIN NNP , NNP POS NNP VBD DT NN TO VB RB TO DT NNP , IN CD NNS IN DT NN .\nHowever Israeli officials like Foreign Minister Tzipi Livni say the bulk of their invasion force has not yet entered Lebanon , saying Israel will give U.N. diplomats a little more time to reach a cease-fire .\tRB JJ NNS IN NNP NNP NNP NNP VBP DT NN IN PRP$ NN NN VBZ RB RB VBN NNP , VBG NNP MD VB NNP NNS DT RB JJR NN TO VB DT NN .\nLivni says it is important to allow diplomatic efforts to continue as part of the effort to get Hezbollah militants out of southern Lebanon .\tNNP VBZ PRP VBZ JJ TO VB JJ NNS TO VB IN NN IN DT NN TO VB NNP NNS IN IN JJ NNP .\nAfghanistan 's president wants international donors to redirect their financial contributions away from non-governmental organizations in his country , saying a lack of funding for the government is undermining reconstruction efforts .\tNNP POS NN VBZ JJ NNS TO VB PRP$ JJ NNS RB IN JJ NNS IN PRP$ NN , VBG DT NN IN NN IN DT NN VBZ VBG NN NNS .\nPresident Hamid Karzai told Britain 's Financial Times Saturday that he will ask for another $ 4 billion to boost reconstruction efforts , when he addresses representatives at a donor conference in London Tuesday .\tNNP NNP NNP VBD NNP POS NNP NNP NNP IN PRP MD VB IN DT $ CD CD TO VB NN NNS , WRB PRP VBZ NNS IN DT NN NN IN NNP NNP .\nHe said the Afghan people want a stronger government and civil service , and that goal can be met if donors give directly to the government .\tPRP VBD DT JJ NNS VBP DT JJR NN CC JJ NN , CC DT NN MD VB VBN IN NNS VBP RB TO DT NN .\nThe Afghan president acknowledged in the interview that the country is still struggling with problems including narcotics trafficking and corruption .\tDT JJ NN VBD IN DT NN IN DT NN VBZ RB VBG IN NNS VBG NNS NN CC NN .\nMr. Karzai also addressed the insurgent violence plaguing his country , saying the acts are a sign of desperation .\tNNP NNP RB VBD DT JJ NN VBG PRP$ NN , VBG DT NNS VBP DT NN IN NN .\nEgyptian President Hosni Mubarak 's son , Gamal , says he will not run for president in elections set for September .\tJJ NNP NNP NNP POS NN , NNP , VBZ PRP MD RB VB IN NN IN NNS VBN IN NNP .\nSpeaking Wednesday in Cairo , 41-year-old Gamal Mubarak said recent moves to amend Egypt 's constitution to allow for a multi-candidate election has not changed his mind .\tVBG NNP IN NNP , JJ NNP NNP VBD JJ NNS TO VB NNP POS NN TO VB IN DT JJ NN VBZ RB VBN PRP$ NN .\nHe also denied his father ordered the amendments so that his son could run .\tPRP RB VBD PRP$ NN VBD DT NNS RB IN PRP$ NN MD VB .\nPresident Mubarak , age 76 and in power since 1981 , has not said whether he will seek a fifth six-year term , although he is widely expected to do so .\tNNP NNP , NN CD CC IN NN IN CD , VBZ RB VBN IN PRP MD VB DT JJ JJ NN , IN PRP VBZ RB VBN TO VB RB .\nGamal Mubarak 's rapid rise in Egyptian politics has fueled speculation he was being groomed to succeed his father .\tNNP NNP POS JJ NN IN JJ NNS VBZ VBN NN PRP VBD VBG VBN TO VB PRP$ NN .\nHe currently serves as policy secretary for the ruling National Democratic Party\tPRP RB VBZ IN NN NN IN DT NN NNP NNP NNP\nNew mobile phone buyers in China must register their personal data under a new rule that many see as an invasion of privacy .\tNNP JJ NN NNS IN NNP MD VB PRP$ JJ NNS IN DT JJ NN IN NN VBP IN DT NN IN NN .\nAs of Wednesday , customers buying numbers for mobile phones must show their identity cards and foreigners must produce passports .\tIN IN NNP , NNS VBG NNS IN JJ NNS MD VB PRP$ NN NNS CC NNS MD VB NNS .\nThe Ministry of Industry and Information Technology says the measure is aimed at curbing spam and telecommunication fraud .\tDT NNP IN NNP CC NNP NNP VBZ DT NN VBZ VBN IN VBG NN CC NN NN .\nBut critics say they think the government is trying to increase its control over new communications technologies .\tCC NNS VBP PRP VBP DT NN VBZ VBG TO VB PRP$ NN IN JJ NNS NNS .\nThe official Xinhua news agency says services will not be affected for those who already have pre-paid SIM cards in their mobile phones .\tDT JJ NNP NN NN VBZ NNS MD RB VB VBN IN DT WP RB VBP JJ NNP NNS IN PRP$ JJ NNS .\nXinhua says China has more than 800 million mobile phone users compared to 300 million fixed-line users .\tNNP VBZ NNP VBZ JJR IN CD CD JJ NN NNS VBN TO CD CD JJ NNS .\nLeading operators China Mobile , China Unicom and China Telecom all say they will implement the new rules .\tVBG NNS NNP NNP , NNP NNP CC NNP NNP DT VBP PRP MD VB DT JJ NNS .\nThe U.S. Gulf Coast states of Mississippi and Louisiana have declared states of emergency , in preparation for Hurricane Katrina , which is forecast to make landfall somewhere along the coast on Monday .\tDT NNP NNP NNP NNS IN NNP CC NNP VBP VBN NNS IN NN , IN NN IN NNP NNP , WDT VBZ VBN TO VB NN RB IN DT NN IN NNP .\nMississippi Governor Haley Barbour and Louisiana 's Kathleen Blanco issued the declarations as the dangerous hurricane strengthened over the warm Gulf waters Saturday and evacuations of low-lying areas began .\tNNP NNP NNP NNP CC NNP POS NNP NNP VBD DT NNS IN DT JJ NN VBD IN DT JJ NNP NNS NNP CC NNS IN JJ NNS VBD .\nAt last report , the 11th named storm of this year 's Atlantic hurricane season was 628 kilometers southeast of the mouth of the Mississippi River .\tIN JJ NN , DT JJ VBN NN IN DT NN POS NNP NN NN VBD CD NNS NN IN DT NN IN DT NNP NNP .\nThe slow-moving system had 185 kilometer-per-hour winds as it moved in a westerly direction .\tDT JJ NN VBD CD JJ NNS IN PRP VBD IN DT JJ NN .\nHurricane Katrina slammed into southeast Florida Thursday , leaving at least seven people dead .\tNNP NNP VBD IN NN NNP NNP , VBG IN JJS CD NNS JJ .\nThe storm caused widespread flooding , toppled trees and left about a million people without electricity .\tDT NN VBD JJ NN , VBD NNS CC VBD IN DT CD NNS IN NN .\nInsured losses from Katrina 's first strike are now estimated at $ 1 billion .\tJJ NNS IN NNP POS JJ NN VBP RB VBN IN $ CD CD .\nAustralian striker Harry Kewell has been cleared to play in his team 's crucial World Cup match against Croatia , following an animated argument with the referee after the Aussies ' 2-0 loss to Brazil in Munich on Sunday .\tJJ NN NNP NNP VBZ VBN VBN TO VB IN PRP$ NN POS JJ NNP NNP NN IN NNP , VBG DT JJ NN IN DT NN IN DT NNS POS JJ NN TO NNP IN NNP IN NNP .\nFIFA head of communications Markus Siegler said Tuesday , the disciplinary committee for football 's world governing body cleared the Liverpool striker because of inconsistent reports from the referee .\tNNP NN IN NNS NNP NNP VBD NNP , DT JJ NN IN NN POS NN VBG NN VBD DT NNP NN IN IN JJ NNS IN DT NN .\nMatch referee Markus Merk of Germany had complained that Kewell insulted him during a confrontation that lasted several minutes .\tNNP NN NNP NNP IN NNP VBD VBN IN NNP VBD PRP IN DT NN WDT VBD JJ NNS .\nMerk called 25 fouls against Australia but just nine on defending champion Brazil .\tNNP VBD CD NNS IN NNP CC RB CD IN VBG JJ NNP .\nKewell characterized his exchange with Merk as ' heat of the moment stuff . '\tNNP VBD PRP$ NN IN NNP IN `` NN IN DT NN NN . ``\nAustralia is making its first World Cup appearance in 32 years and needs at least a draw against Croatia Thursday in Stuttgart to advance to the second round .\tNNP VBZ VBG PRP$ JJ NNP NNP NN IN CD NNS CC VBZ IN JJS DT NN IN NNP NNP IN NNP TO VB TO DT JJ NN .\nSri Lanka 's president has acknowledged she had asked United Nations Secretary-General Kofi Annan not to visit a tsunami-hit area controlled by Tamil rebels .\tNNP NNP POS NN VBZ VBN PRP VBD VBN NNP NNP NNP NNP NNP RB TO VB DT JJ NN VBN IN NNP NNS .\nPresident Chandrika Kumaratunga said in Colombo Monday she advised Mr. Annan not go to the northern town of Jaffna held by Tamil Tiger rebels because of concerns over security .\tNNP NNP NNP VBD IN NNP NNP PRP VBD NNP NNP RB VB TO DT JJ NN IN NNP VBN IN NNP NNP NNS IN IN NNS IN NN .\nRebel officials expressed anger , and hundreds of Tamils demonstrated Sunday outside the U.N. offices in Jaffna to protest the cancellation of Mr. Annan 's planned visit .\tNN NNS VBD NN , CC NNS IN NNS VBN NNP IN DT NNP NNS IN NNP TO VB DT NN IN NNP NNP POS JJ NN .\nMr. Annan said although he was the guest of the Sri Lankan government , he was concerned about everyone who needs humanitarian aid .\tNNP NNP VBD IN PRP VBD DT NN IN DT NNP NNP NN , PRP VBD VBN IN DT WP VBZ JJ NN .\nHe also urged the government and the Tamil rebels to put aside their differences as the region struggles to rebuild .\tPRP RB VBD DT NN CC DT NNP NNS TO VB RP PRP$ NNS IN DT NN VBZ TO VB .\nIran is denying an opposition group 's claim that it is building a clandestine underground nuclear enrichment facility west of Tehran .\tNNP VBZ VBG DT NN NN POS NN IN PRP VBZ VBG DT JJ JJ JJ NN NN NN IN NNP .\nOn Thursday , the People 's Mujahedeen Organization of Iran claimed that it had discovered evidence of the site 120 kilometers west of the capital .\tIN NNP , DT NNS POS NNP NNP IN NNP VBD IN PRP VBD VBN NN IN DT NN CD NNS JJS IN DT NN .\nA group spokesman said the project was about 85 percent complete .\tDT NN NN VBD DT NN VBD IN CD NN JJ .\nBut Iranian nuclear chief Ali Akbar Salehi said Friday Tehran does not have such a facility .\tCC JJ JJ NN NNP NNP NNP VBD NNP NNP VBZ RB VB JJ DT NN .\nSalehi said if the opposition group had any details of a secret nuclear facility it should inform Iran ' so that we can thank them . '\tNNP VBD IN DT NN NN VBD DT NNS IN DT JJ JJ NN PRP MD VB NNP `` RB IN PRP MD VB PRP . ``\nA U.S. government official also disputed the claim , telling the Associated Press that the U.S. has known about the facility for years and that it does not appear to have a nuclear role .\tDT NNP NN NN RB VBD DT NN , VBG DT NNP NNP IN DT NNP VBZ VBN IN DT NN IN NNS CC IN PRP VBZ RB VB TO VB DT JJ NN .\nAuthorities in southern India say a shootout between security forces and suspected Maoist rebels has killed eight rebels , including four women .\tNNS IN JJ NNP VBP DT NN IN NN NNS CC JJ NN NNS VBZ VBN CD NNS , VBG CD NNS .\nOfficials in Andhra Pradesh say police commandos led a raid against a group of rebels meeting in a densely forested area Sunday .\tNNS IN NNP NNP VBP NNS NNS VBD DT NN IN DT NN IN NNS VBG IN DT RB VBN NN NNP .\nThe officials say a senior Maoist leader was among those killed in the clash , some 400 kilometers south of the state capital , Hyderabad .\tDT NNS VBP DT JJ NNP NN VBD IN DT VBN IN DT NN , DT CD NNS RB IN DT NN NN , NNP .\nAndhra Pradesh is one of several Indian states where the Maoists are active .\tNNP NNP VBZ CD IN JJ JJ NNS WRB DT NNS VBP JJ .\nThousands of people have been killed in the violence over the past two decades .\tNNS IN NNS VBP VBN VBN IN DT NN IN DT JJ CD NNS .\nThe rebels claim to be inspired by the teachings of Chinese revolutionary Mao Zedong .\tDT NNS VBP TO VB VBN IN DT NNS IN JJ JJ NNP NNP .\nThey say they are fighting for the rights of India 's poor and landless farmers .\tPRP VBP PRP VBP VBG IN DT NNS IN NNP POS JJ CC JJ NNS .\nJapan 's Emperor Akihito , together with Empress Michiko , lays a wreath for U.S. soldiers killed in World War II\tNNP POS NNP NNP , RB IN NNP NNP , VBZ DT NN IN NNP NNS VBN IN NNP NNP NNP\nChina says the Japanese emperor 's surprise visit to a memorial honoring Koreans who died on the island of Saipan during World War II is a positive sign .\tNNP VBZ DT JJ NN POS NN NN TO DT NN VBG NNS WP VBD IN DT NN IN NNP IN NNP NNP NNP VBZ DT JJ NN .\nEmperor Akihito and Empress Michiko traveled to the U.S. territory Monday to pay tribute to the tens of thousands of people killed in fighting between U.S. and Japanese forces on the island in June of 1944 .\tNNP NNP CC NNP NNP VBD TO DT NNP NN NNP TO VB NN TO DT NNS IN NNS IN NNS VBN IN VBG IN NNP CC JJ NNS IN DT NN IN NNP IN CD .\nJapan occupied much of Asia , including China and the Korean peninsula , in the years before and during the war and sent some 1,000 Korean forced laborers to Saipan .\tNNP VBD NN IN NNP , VBG NNP CC DT JJ NN , IN DT NNS IN CC IN DT NN CC VBD DT CD JJ JJ NNS TO NNP .\nThe official Xinhua news agency quotes a spokesman for the Chinese foreign ministry says the royal couple 's visit to the Korean war memorial shows that Japan correctly understands its history of wartime aggression .\tDT JJ NNP NN NN VBZ DT NN IN DT JJ JJ NN VBZ DT NN NN POS NN TO DT JJ NN NN VBZ IN NNP RB VBZ PRP$ NN IN NN NN .\nChinese state media say the number of people who died in a mudslide at an illegal mine in northern China has risen to 128 .\tJJ NN NNS VBP DT NN IN NNS WP VBD IN DT NN IN DT JJ NN IN JJ NNP VBZ VBN TO CD .\nChina Central Television says rescue workers continue their search for possible survivors , but hope was fading two days after the slide occurred .\tNNP NNP NNP VBZ NN NNS VBP PRP$ NN IN JJ NNS , CC NN VBD VBG CD NNS IN DT NN VBD .\nOn Monday , heavy rains triggered the collapse of a reservoir of iron-ore waste at the mine in Shanxi province .\tIN NNP , JJ NNS VBD DT NN IN DT NN IN JJ NN IN DT NN IN NNP NN .\nThe torrent of mud and mining waste plowed into buildings .\tDT NN IN NN CC NN NN VBD IN NNS .\nState media say 35 people were injured by the massive torrent of mud and debris .\tNNP NNS VBP CD NNS VBD VBN IN DT JJ NN IN NN CC NN .\nAn unknown number of others are still believed to be trapped beneath the rubble .\tDT JJ NN IN NNS VBP RB VBN TO VB VBN IN DT NN .\nChinese work safety officials are blaming the illegal mine for the disaster .\tJJ NN NN NNS VBP VBG DT JJ NN IN DT NN .\nPolice have already detained nine of its employees , including the boss of the mine .\tNNS VBP RB VBN CD IN PRP$ NNS , VBG DT NN IN DT NN .\nCuban bassist Orlando ' Cachaito ' Lopez , a member of the island nation 's legendary Buena Vista Social Club , has died at the age of 76 .\tJJ NN NNP `` NNP `` NNP , DT NN IN DT NN NN POS JJ NNP NNP NNP NNP , VBZ VBN IN DT NN IN CD .\nLopez 's fellow musicians say the bassist died of complications associated with prostate surgery .\tNNP POS NN NNS VBP DT NN VBD IN NNS VBN IN NN NN .\nLopez was one of several veteran Cuban musicians brought together in 1996 by U.S. guitarist and music producer Ry Cooder as part of a film documentary and music album .\tNNP VBD CD IN JJ JJ JJ NNS VBN RB IN CD IN NNP NN CC NN NN NNP NNP IN NN IN DT NN NN CC NN NN .\nThe musicians had all been a part of the glory days of the Cuban nightclub scene before the rise of former Cuban leader Fidel Castro in 1959 .\tDT NNS VBD DT VBN DT NN IN DT NN NNS IN DT JJ NN NN IN DT NN IN JJ JJ NN NNP NNP IN CD .\nThe band , which has gained international acclaim since the release of the film and album , has lost many of its key members in recent years , including singers Compay Segundo and Ibrahim Ferrer , and pianist Ruben Gonzalez .\tDT NN , WDT VBZ VBN JJ NN IN DT NN IN DT NN CC NN , VBZ VBN NN IN PRP$ JJ NNS IN JJ NNS , VBG NNS NNP NNP CC NNP NNP , CC NN NNP NNP .\nA new report from a private research group says the U.S. economy was declining even before the most recent financial market turmoil .\tDT JJ NN IN DT JJ NN NN VBZ DT NNP NN VBD VBG RB IN DT RBS JJ JJ NN NN .\nThe Conference Board 's index of leading indicators for August shows the index falling five-tenths of one percentage point to a reading of 100.8 .\tDT NNP NNP POS NN IN VBG NNS IN NNP VBZ DT NN VBG NNS IN CD NN NN TO DT NN IN CD .\nThe index was published Thursday and is intended to forecast trends three to six months in advance .\tDT NN VBD VBN NNP CC VBZ VBN TO VB NNS CD CC CD NNS IN NN .\nA separate government report pointed to one bright spot in the economy , as exports are boosting the manufacturing sector .\tDT JJ NN NN VBD TO CD JJ NN IN DT NN , IN NNS VBP VBG DT NN NN .\nA report on Philadelphia area factories shows their activity increasing this month .\tDT NN IN NNP NN NNS VBZ PRP$ NN VBG DT NN .\nEconomists watch this area report for clues about the health of the factory sector nationwide .\tNNS VBP DT NN NN IN NNS IN DT NN IN DT NN NN NN .\nSuspected Taleban insurgents have killed an Afghan intelligence officer in southeastern Zabul province and wounded a Muslim cleric in southern Helmand province .\tVBN NNP NNS VBP VBN DT JJ NN NN IN JJ NNP NN CC VBN DT NN NN IN JJ NNP NN .\nAfghan officials say the intelligence officer was shot dead early Thursday in Zabul 's Dai Chopan district .\tJJ NNS VBP DT NN NN VBD VBN RB RB NNP IN NNP POS NNP NNP NN .\nThey say the attackers managed to flee the scene and that despite a massive manhunt no suspects have been arrested .\tPRP VBP DT NNS VBD TO VB DT NN CC IN IN DT JJ NN DT NNS VBP VBN VBN .\nMeanwhile , in Helmand 's Nurja district , a Muslim cleric was wounded by unidentified gunmen riding a motorcycle .\tRB , IN NNP POS NNP NN , DT NNP NN VBD VBN IN JJ NNS VBG DT NN .\nHe was taken to a local hospital for treatment .\tPRP VBD VBN TO DT JJ NN IN NN .\nA purported Taleban spokesman claimed responsibility for both incidents .\tDT JJ NNP NN VBD NN IN DT NNS .\nTaleban militants and their supporters have stepped up their violent campaign aimed at disrupting Afghanistan 's parliamentary elections scheduled for September 18 .\tNNP NNS CC PRP$ NNS VBP VBN RP PRP$ JJ NN VBN IN VBG NNP POS JJ NNS VBN IN NNP CD .\nA series of five stamps issued by Mexican government depicting an exaggerated black cartoon character known as Memin Pinguin A newly issued Mexican postage stamp of a once-popular black comic book character has sparked controversy .\tDT NN IN CD NNS VBN IN JJ NN VBG DT JJ JJ NN NN VBN IN NNP NNP NNP RB VBD JJ NN NN IN DT JJ JJ JJ NN NN VBZ VBN NN .\nLocal and U.S. activists have called for the withdrawal of the stamp , which depicts a 1940 's comic character called Memin Pinguin who has exaggerated thick lips and wide-opened eyes .\tJJ CC NNP NNS VBP VBN IN DT NN IN DT NN , WDT VBZ DT CD POS JJ NN VBD NNP NNP WP VBZ VBN JJ NNS CC JJ NNS .\nAmerican civil rights activist Jesse Jackson has called the stamp racist .\tJJ JJ NNS NN NNP NNP VBZ VBN DT NN NN .\nBut a presidential spokesman says the stamp is a celebration of Mexico 's pop culture .\tCC DT JJ NN VBZ DT NN VBZ DT NN IN NNP POS NN NN .\nThe release of the stamp comes just weeks after Mexican President Vicente Fox angered many African-Americans by saying illegal Mexican immigrants are willing to do jobs in the United States not even blacks want to do .\tDT NN IN DT NN VBZ RB NNS IN JJ NNP NNP NNP VBD JJ NNPS IN VBG JJ JJ NNS VBP JJ TO VB NNS IN DT NNP NNPS RB RB NNS VBP TO VB .\nMr. Fox apologized for any misunderstanding , saying he was only trying to highlight the important contribution of Mexican workers in the United States .\tNNP NNP VBD IN DT NN , VBG PRP VBD RB VBG TO VB DT JJ NN IN JJ NNS IN DT NNP NNPS .\nVenezuela 's state-run oil company has cut the time for foreign companies to pay for oil purchases from 30 days to eight days .\tNNP POS JJ NN NN VBZ VBN DT NN IN JJ NNS TO VB IN NN NNS IN CD NNS TO CD NNS .\nPetroleos de Venezuela SA ( PDVSA ) said in a statement Tuesday that the decision was made , in part , because of the falling value of the U.S. dollar .\tNNP NNP NNP NNP LRB NNP RRB VBD IN DT NN NNP IN DT NN VBD VBN , IN NN , IN IN DT VBG NN IN DT NNP NN .\nPDVSA also said having the payments sooner will allow it to re-invest its income quickly and remain competitive in the world oil market .\tNNP RB VBD VBG DT NNS RB MD VB PRP TO VB PRP$ NN RB CC VBP JJ IN DT NN NN NN .\nLast year , the Venezuelan government took majority control of large oil projects from foreign companies .\tJJ NN , DT JJ NN VBD NN NN IN JJ NN NNS IN JJ NNS .\nOil companies like ExxonMobil and ConocoPhillips refused to accept new terms as junior partners .\tNN NNS IN NNP CC NNP VBD TO VB JJ NNS IN JJ NNS .\nThe U.S. State Department has said Venezuela has the right to nationalize its assets but should provide fair compensation .\tDT NNP NNP NNP VBZ VBN NNP VBZ DT NN TO VB PRP$ NNS CC MD VB JJ NN .\nVenezuela said it would not pay cash for the oil assets it takes over .\tNNP VBD PRP MD RB VB NN IN DT NN NNS PRP VBZ RP .\nEvery year millions of unwanted dogs and cats in the U.S. are brought to animal shelters , where the hope is that they will be adopted .\tDT NN NNS IN JJ NNS CC NNS IN DT NNP VBP VBN TO NN NNS , WRB DT NN VBZ IN PRP MD VB VBN .\nThe reality is that about half of them will be euthanized , because there are simply not enough homes for them .\tDT NN VBZ IN IN NN IN PRP MD VB VBN , IN EX VBP RB RB JJ NNS IN PRP .\nDealing with abandoned , abused and unwanted pets is a public health and safety issue that concerns most local governments in the U.S.\tVBG IN JJ , JJ CC JJ NNS VBZ DT JJ NN CC NN NN WDT VBZ RBS JJ NNS IN DT NNP\nBut the task would be immensely more difficult if it were not for the support and expertise of privately funded animal rescue clinics .\tCC DT NN MD VB RB RBR JJ IN PRP VBD RB IN DT NN CC NN IN RB VBN NN NN NNS .\nVOA 's George Dwyer reports on how one American animal shelter is working to help control the local pet population .\tNNP POS NNP NNP VBZ IN WRB CD JJ NN NN VBZ VBG TO VB VB DT JJ NN NN .\nRuth Reader narrates .\tNNP NNP VBZ .\nU.S. President George Bush has approved an extension of a trade agreement with four South American nations .\tNNP NNP NNP NNP VBZ VBN DT NN IN DT NN NN IN CD JJ JJ NNS .\nMr. Bush Thursday said the Andean Trade Preference Act shows the U.S. commitment to economic growth in the region .\tNNP NNP NNP VBD DT NNP NNP NNP NNP VBZ DT NNP NN TO JJ NN IN DT NN .\nThe measure , first enacted in 1991 , lifts trade barriers with Bolivia , Colombia , Ecuador and Peru .\tDT NN , RB VBN IN CD , VBZ NN NNS IN NNP , NNP , NNP CC NNP .\nBut , the president said he has proposed suspending Bolivia 's trade preferences because the country has failed to cooperate with the United Sates on efforts to fight drug trafficking .\tCC , DT NN VBD PRP VBZ VBN VBG NNP POS NN NNS IN DT NN VBZ VBN TO VB IN DT NNP NNP IN NNS TO VB NN NN .\nMr. Bush also reiterated his call for Congress to approve free trade agreements with Colombia , Panama and South Korea .\tNNP NNP RB VBD PRP$ NN IN NNP TO VB JJ NN NNS IN NNP , NNP CC NNP NNP .\nCiting the current financial crisis , Mr. Bush said keeping markets open to trade and investment is one of the best ways to restore global economic confidence .\tVBG DT JJ JJ NN , NNP NNP VBD VBG NNS JJ TO VB CC NN VBZ CD IN DT JJS NNS TO VB JJ JJ NN .\nTurkish Prime Minister Recep Tayyip Erdogan has met with a leading pro-Kurdish politician after the government expressed interest in granting more rights to minority Kurds .\tJJ NNP NNP NNP NNP NNP VBZ VBN IN DT VBG JJ NN IN DT NN VBD NN IN VBG JJR NNS TO NN NNS .\nMr. Erdogan held talks Wednesday with Ahmet Turk , the head of the pro-Kurdish Democratic Society Party .\tNNP NNP VBD NNS NNP IN NNP NNP , DT NN IN DT JJ JJ NNP NNP .\nThe meeting is linked to an effort to end the 25-year insurgency by Kurdish rebels .\tDT NN VBZ VBN TO DT NN TO VB DT JJ NN IN NNP NNS .\nOfficials did not give details about topics under discussion .\tNNS VBD RB VB NNS IN NNS IN NN .\nMr. Erdogan has criticized the pro-Kurdish party for not denouncing members of the outlawed Kurdistan Workers ' Party as terrorists .\tNNP NNP VBZ VBN DT JJ NN IN RB VBG NNS IN DT JJ NNP NNP POS NN IN NNS .\nThe PKK is listed as a terrorist group by Ankara and much of the international community .\tDT NNP VBZ VBN IN DT JJ NN IN NNP CC NN IN DT JJ NN .\nSeparatist rebels have been fighting for Kurdish rule in southeastern Turkey for a quarter-century .\tNNP NNS VBP VBN VBG IN JJ NN IN JJ NNP IN DT NN .\nTens of thousands of people have died in the conflict .\tNNS IN NNS IN NNS VBP VBN IN DT NN .\nA brother of Afghan President Hamid Karzai says he survived an attack Monday on his motorcade that killed one of his bodyguards .\tDT NN IN JJ NNP NNP NNP VBZ PRP VBD DT NN NNP IN PRP$ NN WDT VBD CD IN PRP$ NNS .\nAhmad Wali Karzai said he was traveling from eastern Afghanistan to the capital of Kabul at the time of the attack .\tNNP NNP NNP VBD PRP VBD VBG IN JJ NNP TO DT NN IN NNP IN DT NN IN DT NN .\nIt was not immediately clear who was behind the attack , but the country is in the middle of a growing Taliban insurgency .\tPRP VBD RB RB JJ WP VBD IN DT NN , CC DT NN VBZ IN DT NN IN DT VBG NNP NN .\nAfghan authorities said militants attacked a police post and killed six officers Sunday in southern Helmand province .\tJJ NNS VBD NNS VBD DT NN NN CC VBD CD NNS NNP IN JJ NNP NN .\nThe Afghan Defense Ministry also said a roadside bomb in neighboring Zabul province killed an Afghan army soldier and wounded three others Sunday .\tDT JJ NNP NNP RB VBD DT NN NN IN JJ NNP NN VBD DT JJ NN NN CC VBD CD NNS NNP .\nAfghan and international forces have been fighting Taliban militants since 2001 .\tJJ CC JJ NNS VBP VBN VBG NNP NNS IN CD .\nU.S. President Barack Obama is sending an extra 21,000 troops to Afghanistan to try to crush the insurgency .\tNNP NNP NNP NNP VBZ VBG DT JJ CD NNS TO NNP TO VB TO VB DT NN .\nPresident Bush has again defended his defense secretary , Donald Rumsfeld , saying the secretary cares deeply about U.S. troops and the grief war causes .\tNNP NNP VBZ RB VBN PRP$ NN NN , NNP NNP , VBG DT NN VBZ RB IN NNP NNS CC DT NN NN NNS .\nAsked at a news conference if he was offended that Mr. Rumsfeld has not been personally signing condolence letters to families of troops killed in Iraq , Mr. Bush said he ' knows Mr. Rumsfeld 's heart . '\tVBN IN DT NN NN IN PRP VBD VBN IN NNP NNP VBZ RB VBN RB VBG NN NNS TO NNS IN NNS VBN IN NNP , NNP NNP VBD PRP `` VBZ NNP NNP POS NN . ``\nHe said the secretary 's demeanor may be rough , but underneath he is a good , decent man .\tPRP VBD DT NN POS NN MD VB JJ , CC IN PRP VBZ DT JJ , JJ NN .\nThe defense secretary is under criticism from a number of Republican and Democratic senators over his handling of operations in Iraq .\tDT NN NN VBZ IN NN IN DT NN IN JJ CC JJ NNS IN PRP$ NN IN NNS IN NNP .\nMr. Rumsfeld said in a statement Sunday that from now on , he will sign condolence letters in his own hand , instead of using a machine .\tNNP NNP VBD IN DT NN NNP IN IN RB IN , PRP MD VB NN NNS IN PRP$ JJ NN , RB IN VBG DT NN .\nTwo leading Republican senators said Sunday it would be disruptive to have Mr. Rumsfeld leave office now .\tCD VBG JJ NNS VBD NNP PRP MD VB JJ TO VB NNP NNP VB NN RB .\nElectoral officials in Iraq say they do not have the authority to postpone the nation 's January elections , as demanded by leading Iraqi political groups .\tJJ NNS IN NNP VBP PRP VBP RB VB DT NN TO VB DT NN POS NNP NNS , IN VBN IN VBG JJ JJ NNS .\nAt least 15 mostly Sunni and Kurdish political groups asked the electoral commission Friday to delay the January 30 poll by up to six months because of ongoing violence in the country .\tIN JJS CD RB NNP CC NNP JJ NNS VBD DT JJ NN NNP TO VB DT NNP CD NN IN RB IN CD NNS IN IN JJ NN IN DT NN .\nBut the commission 's chairman , Abdel Hussein al-Hindawi , said Saturday , that any delay would have to be discussed among various groups , including the Iraqi interim government , parliament and the United Nations .\tCC DT NN POS NN , NNP NNP NNP , VBD NNP , IN DT NN MD VB TO VB VBN IN JJ NNS , VBG DT JJ JJ NN , NN CC DT NNP NNPS .\nMeanwhile , a U.S. soldier was killed Saturday , by a roadside bomb near the town of Duluiya , 90 kilometers north of Baghdad .\tRB , DT NNP NN VBD VBN NNP , IN DT NN NN IN DT NN IN NNP , CD NNS RB IN NNP .\nThe U.S. military also says several Iraqi insurgents were killed while attacking a police station and other targets in the town of Khalis , north of Baghdad .\tDT NNP NN RB VBZ JJ JJ NNS VBD VBN IN VBG DT NN NN CC JJ NNS IN DT NN IN NNP , NN IN NNP .\nHaitian president-elect Rene Preval says Haiti 's constitution permits former president Jean-Bertrand Aristide to return from exile in South Africa .\tJJ JJ NNP NNP VBZ NNP POS NN VBZ JJ NN NNP NNP TO VB IN NN IN NNP NNP .\nIn a news conference Wednesday , Mr. Preval said his position on Mr. Aristide is simple : the constitution says no Haitian citizen needs a visa to enter or leave the country .\tIN DT NN NN NNP , NNP NNP VBD PRP$ NN IN NNP NNP VBZ JJ IN DT NN VBZ DT JJ NN VBZ DT NN TO VB CC VB DT NN .\nEarlier Wednesday , Mr. Aristide told reporters in Pretoria , South Africa , that the date of his return to Haiti depends upon negotiations between Mr. Preval , the United Nations and other interested parties .\tRBR NNP , NNP NNP VBD NNS IN NNP , NNP NNP , IN DT NN IN PRP$ NN TO NNP VBZ IN NNS IN NNP NNP , DT NNP NNPS CC JJ JJ NNS .\nHe said when he returns he will not be involved in politics , but instead would like to teach .\tPRP VBD WRB PRP VBZ PRP MD RB VB VBN IN NNS , CC RB MD VB TO VB .\nMr. Aristide has been living in exile since he was forced out of office in February 2004 after an armed uprising .\tNNP NNP VBZ VBN VBG IN NN IN PRP VBD VBN IN IN NN IN NNP CD IN DT JJ NN .\nMr. Preval was once a close political ally to Mr. Aristide , but has distanced himself in recent years .\tNNP NNP VBD RB DT JJ JJ NN TO NNP NNP , CC VBZ VBN PRP IN JJ NNS .\nNATO Secretary-General Jaap de Hoop Scheffer has called on Pakistan and NATO countries to step up their fight against Islamist militants along the Pakistani-Afghan border .\tNNP NNP NNP IN NNP NNP VBZ VBN IN NNP CC NNP NNS TO VB RP PRP$ NN IN NNP NNS IN DT JJ NN .\nHe said that a planned troop increase in Afghanistan will help foreign forces control some areas of the country , but that the international community must help with development and reconstruction to bring peace and stability to the nation .\tPRP VBD IN DT JJ NN NN IN NNP MD VB JJ NNS VBP DT NNS IN DT NN , CC IN DT JJ NN MD VB IN NN CC NN TO VB NN CC NN TO DT NN .\nThe NATO chief spoke in Islamabad Thursday after talks with Pakistani Foreign Minister Shah Mehmood Qureshi , President Asif Ali Zardari and Prime Minister Yousuf Raza Gilani .\tDT NNP NN VBD IN NNP NNP IN NNS IN JJ NNP NNP NNP NNP NNP , NNP NNP NNP NNP CC NNP NNP NNP NNP NNP .\nTheir talks centered on security in the border region and Pakistan 's growing relationship with the alliance .\tPRP$ NNS VBD IN NN IN DT NN NN CC NNP POS VBG NN IN DT NN .\nAlso Thursday , Pakistani security officials said government forces backed by helicopter gunships killed 11 militants in the country 's restive Swat Valley .\tRB NNP , JJ NN NNS VBD NN NNS VBN IN NN NNS VBD CD NNS IN DT NN POS JJ NNP NNP .\nU.S. and NATO officials say Pakistan 's northwest tribal regions have become a safe haven for militants linked to the Taliban and al-Qaida .\tNNP CC NNP NNS VBP NNP POS JJS JJ NNS VBP VBN DT JJ NN IN NNS VBN TO DT NNP CC NNP .\nThe Economic Commission for Latin America and the Caribbean says the percentage of people living in poverty in the region has declined for the second straight year .\tDT NNP NNP IN NNP NNP CC DT NNP VBZ DT NN IN NNS VBG IN NN IN DT NN VBZ VBN IN DT JJ JJ NN .\nIn a report released Friday , the U.N. panel said 13 million people have climbed out of poverty since 2003 .\tIN DT NN VBN NNP , DT NNP NN VBD CD CD NNS VBP VBN IN IN NN IN CD .\nIt says better economic conditions and remittances sent home by emigrants working abroad have contributed to the decline .\tPRP VBZ JJR JJ NNS CC NNS VBD NN IN NNS VBG RB VBP VBN TO DT NN .\nThe organization 's executive director , Jose Luis Machinea , said projected figures for this year show the lowest poverty rates since the early 1980s , but he cautioned that two years of growth will not solve the region 's problems .\tDT NN POS NN NN , NNP NNP NNP , VBD VBN NNS IN DT NN VBP DT JJS NN NNS IN DT JJ NNS , CC PRP VBD IN CD NNS IN NN MD RB VB DT NN POS NNS .\nThe U.N. report says 213 million people , or nearly 41 percent of Latin Americans , live in poverty .\tDT NNP NN VBZ CD CD NNS , CC RB CD NN IN NNP NNS , VBP IN NN .\nEuropean Union foreign policy chief Javier Solana says he has no information to confirm that the Central Intelligence Agency operated secret flights carrying terrorism suspects over Europe .\tNNP NNP JJ NN NN NNP NNP VBZ PRP VBZ DT NN TO VB IN DT NNP NNP NNP VBD JJ NNS VBG NN NNS IN NNP .\nMr. Solana made the comment Tuesday in testimony to a European Parliament committee investigating the claims .\tNNP NNP VBD DT NN NNP IN NN TO DT JJ NNP NN VBG DT NNS .\nHe also told the panel that he had no authority to demand that EU member states hand over information about probes into the reported flights .\tPRP RB VBD DT NN IN PRP VBD DT NN TO VB DT NNP NN NNS VBP RP NN IN NNS IN DT JJ NNS .\nLast week , aviation data was presented to the committee showing the CIA conducted more than one thousand secret flights in Europe over the past five years .\tJJ NN , NN NNS VBD VBN TO DT NN VBG DT NNP VBD JJR IN CD CD JJ NNS IN NNP IN DT JJ CD NNS .\nThe panel is also studying claims that the CIA used secret prisons in some eastern European countries .\tDT NN VBZ RB VBG NNS IN DT NNP VBD JJ NNS IN DT JJ JJ NNS .\nThe probe was sparked by news reports that said CIA agents had interrogated al-Qaida suspects at the prisons .\tDT NN VBD VBN IN NN NNS WDT VBD NNP NNS VBD VBN NNP NNS IN DT NNS .\nAid workers and government officials in southern Ethiopia say continued clan violence has displaced nearly 90,000 people .\tJJ NNS CC NN NNS IN JJ NNP VBP VBN JJ NN VBZ VBN RB CD NNS .\nUnited Nations officials say fighting between the Guji and Borena clans has forced residents to flee homes in and around the towns of Shakiso , Arero and Yabello - all south of Addis Ababa .\tNNP NNP NNS VBP VBG IN DT NNP CC NNP NNS VBZ VBN NNS TO VB NNS IN CC IN DT NNS IN NNP , NNP CC NNP : DT NN IN NNP NNP .\nA regional administrator , Jaatanni Taadhii , says up to 29,000 have fled their homes in Arero , while an aid worker in Yabello says the number of displaced there may be as high as 39,000 .\tDT JJ NN , NNP NNP , VBZ RP TO CD VBP VBN PRP$ NNS IN NNP , IN DT NN NN IN NNP VBZ DT NN IN JJ EX MD VB RB JJ IN CD .\nThe aid group Oxfam says more than 20,000 people have fled Shakiso since mid-June .\tDT NN NN NNP VBZ JJR IN CD NNS VBP VBN NNP IN NNP .\nThis fighting began early last month after the government sided with the Guji community in a land dispute against its Borena neighbors .\tDT NN VBD RB JJ NN IN DT NN VBD IN DT NNP NN IN DT NN NN IN PRP$ NNP NNS .\nAid groups say more than 100 people have died in the violence .\tJJ NNS VBP JJR IN CD NNS VBP VBN IN DT NN .\nPresident Bush has surprised his close ally Japanese Prime Minister Junichiro Koizumi by giving him an electric scooter called a Segway .\tNNP NNP VBZ VBN PRP$ JJ NN JJ NNP NNP NNP NNP IN VBG PRP DT JJ NN VBD DT NN .\nMr. Bush rode the upright two-wheeled vehicle around the State Guest House compound in Kyoto , Japan , before handing it over to Mr. Koizumi and urging him to try it out .\tNNP NNP VBD DT NN JJ NN IN DT NNP NNP NNP NN IN NNP , NNP , IN VBG PRP IN TO NNP NNP CC VBG PRP TO VB PRP RP .\nThe Japanese prime minister took a one-meter-long journey before saying , ' Oh , very good , ' and stepping off .\tDT JJ JJ NN VBD DT JJ NN IN VBG , `` UH , RB JJ , `` CC VBG RP .\nThe $ 4,000 scooter uses gyroscopes , computers and motors to travel up to 19 kilometers an hour .\tDT $ CD NN VBZ NNS , NNS CC NNS TO VB RP TO CD NNS DT NN .\nIt can be tricky to ride - Mr. Bush was photographed falling off of a Segway in 2003 .\tPRP MD VB JJ TO VB IN NNP NNP VBD VBN VBG IN IN DT NN IN CD .\nUnfortunately for Mr. Koizumi , Japan has banned the scooters on public streets .\tRB IN NNP NNP , NNP VBZ VBN DT NNS IN JJ NNS .\nU.S. Vice President Dick Cheney has defended eavesdropping on Americans without court approval , saying the practice is critical to national security .\tNNP NNP NNP NNP NNP VBZ VBN VBG IN NNS IN NN NN , VBG DT NN VBZ JJ TO JJ NN .\nSpeaking to a conservative policy institute , the Manhattan Institute , in New York , Cheney said the practice is a wartime measure , limited in scope and fully consistent with both the president 's legal powers and Americans ' civil liberties .\tVBG TO DT JJ NN NN , DT NNP NNP , IN NNP NNP , NNP VBD DT NN VBZ DT NN NN , VBN IN NN CC RB JJ IN DT DT NN POS JJ NNS CC NNS POS JJ NNS .\nWarrantless wiretaps on e-mails and telephone calls that cross U.S. boundaries was revealed by the New York Times last month .\tJJ NNS IN NNS CC NN NNS WDT VBP NNP NNS VBD VBN IN DT NNP NNP NNP JJ NN .\nAdministration critics describe the policy as an unprecedented expansion of presidential powers and violation of civil liberties .\tNNP NNS VBP DT NN IN DT JJ NN IN JJ NNS CC NN IN JJ NNS .\nSenators have promised to hold hearings on the legality of the program .\tNNS VBP VBN TO VB NNS IN DT NN IN DT NN .\nCheney said Thursday that the policy was approved by Congress , although the leader of the Senate at the time denies this .\tNNP VBD NNP IN DT NN VBD VBN IN NNP , IN DT NN IN DT NNP IN DT NN VBZ DT .\nIran will call for a cut in OPEC 's , the Organization of Petroleum Exporting Countries , oil output during the cartel 's meeting next week in Algeria .\tNNP MD VB IN DT NN IN NNP POS , DT NNP IN NNP NNP NNPS , NN NN IN DT NN POS NN JJ NN IN NNP .\nIran 's oil minster said Sunday that Tehran will push for a production cut of 1.5 million to two million barrels of oil per day , in an attempt to raise prices .\tNNP POS NN NN VBD NNP IN NNP MD VB IN DT NN NN IN CD CD TO CD CD NNS IN NN IN NN , IN DT NN TO VB NNS .\nAfter reaching a record high in July , oil prices have been falling fast as the faltering global economy lowers demand for energy .\tIN VBG DT NN NN IN NNP , NN NNS VBP VBN VBG RB IN DT VBG JJ NN NNS NN IN NN .\nBut last month members of OPEC decided to delay possible supply cuts despite the steep drop in crude oil prices .\tCC JJ NN NNS IN NNP VBD TO VB JJ NN NNS IN DT JJ NN IN JJ NN NNS .\nOPEC nations produce 40 percent of the world 's oil .\tNNP NNS VBP CD NN IN DT NN POS NN .\nRussia , a major non-OPEC oil producer , has said it may coordinate a production cut to bolster prices .\tNNP , DT JJ JJ NN NN , VBZ VBN PRP MD VB DT NN NN TO VB NNS .\nU.N. officials say peacekeepers in the Democratic Republic of Congo have killed more than 50 militiamen in a gun battle in the troubled northeastern Ituri province .\tNNP NNS VBP NNS IN DT JJ NNP IN NNP VBP VBN JJR IN CD NNS IN DT NN NN IN DT JJ JJ NNP NN .\nA U.N. spokesman said Wednesday that the clash occurred Tuesday , some 30 kilometers from the town of Bunia .\tDT NNP NN VBD NNP IN DT NN VBD NNP , DT CD NNS IN DT NN IN NNP .\nThe spokesman said the U.N. forces responded using an attack helicopter .\tDT NN VBD DT NNP NNS VBD VBG DT NN NN .\nThe clash comes one week after nine peacekeepers from Bangladesh were killed by militiamen in the same area .\tDT NN VBZ CD NN IN CD NNS IN NNP VBD VBN IN NNS IN DT JJ NN .\nCongolese security forces announced Tuesday that they arrested militia leader Floribert Ndjabu in the capital , Kinshasa and are questioning two other suspects in connection with the killings Mr. Ndjabu is the leader of the ethnic Lendu militia known as the Nationalist and Integrationist Front .\tJJ NN NNS VBD NNP IN PRP VBN NN NN NNP NNP IN DT NN , NNP CC VBP VBG CD JJ NNS IN NN IN DT NNS NNP NNP VBZ DT NN IN DT JJ NNP NN VBN IN DT NNP CC NNP NNP .\nIt is one of several militias operating in eastern Congo .\tPRP VBZ CD IN JJ NNS VBG IN JJ NNP .\nSpain 's Constitutional Court has ruled that the nation 's courts may investigate allegations of human rights abuses even if no Spanish citizens are involved .\tNNP POS NNP NNP VBZ VBN IN DT NN POS NNS MD VB NNS IN JJ NNS NNS RB IN DT JJ NNS VBP VBN .\nThe court said in its decision Wednesday that the principle of universal jurisdiction takes precedence over the existence , or not , of national interests .\tDT NN VBD IN PRP$ NN NNP IN DT NN IN JJ NN VBZ NN IN DT NN , CC RB , IN JJ NNS .\nThe decision came from a case brought by Guatemalan Nobel peace laureate Rigoberta Menchu .\tDT NN VBD IN DT NN VBN IN JJ NNP NN NN NNP NNP .\nShe sought a probe of alleged genocide , murder , torture , and illegal detention of ethnic Indians in Guatemala between 1978 and 1986 , while the country was under military rule .\tPRP VBD DT NN IN JJ NN , NN , NN , CC JJ NN IN JJ NNS IN NNP IN CD CC CD , IN DT NN VBD IN JJ NN .\nEvents covered in the lawsuit include a 1980 attack on the Spanish Embassy in Guatemala City , in which more than 35 people died .\tNNS VBN IN DT NN VBP DT CD NN IN DT JJ NNP IN NNP NNP , IN WDT JJR IN CD NNS VBD .\nWednesday 's decision reversed earlier rulings that Spain could only investigate cases in which the victims were Spanish .\tNNP POS NN VBD JJR NNS IN NNP MD RB VB NNS IN WDT DT NNS VBD JJ .\nBosnian Croat war crimes suspect Miroslav Bralo has pleaded not guilty to 21 counts of war crimes and crimes against humanity during the 1993 Muslim-Croat fighting in Bosnia-Herzegovina .\tJJ JJ NN NNS VBP NNP NNP VBZ VBN RB JJ TO CD NNS IN NN NNS CC NNS IN NN IN DT CD JJ NN IN NNP .\nMr. Bralo appeared before United Nations war crimes tribunal in The Hague to answer such charges as murder , rape , torture , and illegal detention of civilians .\tNNP NNP VBD IN NNP NNPS NN NNS JJ IN DT NNP TO VB JJ NNS IN NN , NN , NN , CC JJ NN IN NNS .\nThe indictment says Mr. Bralo committed the crimes as a member of a Bosnian Croat special unit called ' The Jokers ' that operated against Muslim forcers in central Bosnia .\tDT NN VBZ NNP NNP VBD DT NNS IN DT NN IN DT JJ JJ JJ NN VBD `` DT NNPS `` WDT VBD IN NNP NNS IN JJ NNP .\nHe voluntarily surrendered to authorities last month .\tPRP RB VBD TO NNS JJ NN .\nRomanian voters go to the polls Sunday in presidential and parliamentary elections .\tJJ NNS VBP TO DT NNS NNP IN JJ CC JJ NNS .\nOpinion polls indicate Socialist Democrat Prime Minister Adrian Nastase and Bucharest mayor Traian Basescu - the nominee of the Justice and Truth alliance-head the list of 12 presidential candidates .\tNN NNS VBP JJ NN NNP NNP NNP NNP CC NNP NNP NNP NNP IN DT NN IN DT NNP CC NNP VBD DT NN IN CD JJ NNS .\nIf no candidate wins a majority a runoff is scheduled for December 12 .\tIN DT NN VBZ DT NN DT NN VBZ VBN IN NNP CD .\nCandidates of the Socialist Democrats and Justice and Truth alliance are also in tight races for seats in the country 's parliament .\tNNS IN DT NNP NNPS CC NNP CC NNP NN VBP RB IN JJ NNS IN NNS IN DT NN POS NN .\nSunday 's balloting comes as the Socialist Democrats fight new charges of corruption against the governing party .\tNNP POS NN VBZ IN DT NNP NNPS VBP JJ NNS IN NN IN DT VBG NN .\nDocuments said to be transcripts of top-level meetings are reported to highlight abuses of power .\tNNS VBN TO VB NNS IN JJ NNS VBP VBN TO VB NNS IN NN .\nPrime Minister Nastase calls the documents fake .\tJJ NN NNP VBZ DT NNS NN .\nCorruption is a major problem in Romania .\tNN VBZ DT JJ NN IN NNP .\nThe government has been seeking to implement reforms in hopes of moving the country towards European Union membership in 2007 .\tDT NN VBZ VBN VBG TO VB NNS IN NNS IN VBG DT NN IN NNP NNP NN IN CD .\nThe judge hearing British 100-meter sprint champion Dwain Chambers ' appeal of a lifetime Olympic ban has delayed his decision until Thursday .\tDT NN VBG JJ JJ NN NN NNP NNP POS NN IN DT NN JJ NN VBZ VBN PRP$ NN IN NNP .\nChambers served a two-year doping ban between 2003 and 2005 and appealed to London 's High Court for an injunction against the British Olympic Association 's ban for drug cheats .\tNNP VBD DT JJ NN NN IN CD CC CD CC VBD TO NNP POS NNP NNP IN DT NN IN DT JJ NNP NNP POS NN IN NN NNS .\nThe 30-year-old Chambers earned an Olympic qualifying time Saturday when he won the 100 meters in 10 seconds flat at the British Olympic trials .\tDT JJ NNP VBD DT JJ NN NN NNP WRB PRP VBD DT CD NNS IN CD NNS JJ IN DT JJ NNP NNS .\nThe one-day delay leaves selection of Britain 's team up in the air and leaves even less time for either Chambers or the British Olympic Association to appeal the judge 's verdict .\tDT JJ NN VBZ NN IN NNP POS NN RB IN DT NN CC VBZ RB JJR NN IN DT NNS CC DT JJ NNP NNP TO VB DT NN POS NN .\nSunday is the deadline to submit the squad to the International Olympic Committee .\tNNP VBZ DT NN TO VB DT NN TO DT NNP NNP NNP .\nThree of Russia 's smaller political parties are set to merge .\tCD IN NNP POS JJR JJ NNS VBP VBN TO VB .\nThe leader of the Party of Life , Sergei Mironov , said Tuesday that the move will unite his party with the Rodina Party and the Party of Pensioners .\tDT NN IN DT NNP IN NNP , NNP NNP , VBD NNP IN DT NN MD VB PRP$ NN IN DT NNP NNP CC DT NN IN NNS .\nMironov chairs Russia 's upper chamber of parliament .\tNNP VBZ NNP POS JJ NN IN NN .\nThe Itar-Tass news agency says he suggested ' Rodina , Pensioners and Life - Union of Trust ' as the working title for the new group .\tDT JJ NN NN VBZ PRP VBD `` NNP , NNP CC NNP : NNP IN NNP `` IN DT VBG NN IN DT JJ NN .\nSome politicians called the merger an attempt to isolate opponents of Russian President Vladimir Putin , whose supporters hold a majority in the lower house of parliament , the State Duma .\tDT NNS VBD DT NN DT NN TO VB NNS IN JJ NNP NNP NNP , WP$ NNS VBP DT NN IN DT JJR NN IN NN , DT NNP NNP .\nBut Mironov , who is said to have close ties to Mr. Putin , dismissed claims that the maneuver is being orchestrated by the Kremlin .\tCC NNP , WP VBZ VBN TO VB JJ NNS TO NNP NNP , VBD NNS IN DT NN VBZ VBG VBN IN DT NNP .\nRussia will hold parliamentary elections next year and presidential elections in 2008 .\tNNP MD VB JJ NNS IN NN CC JJ NNS IN CD .\nAssimilating the visually impaired has always been difficult , with the United States often cited as an example of what can be done with the help of modern technology .\tVBG DT RB VBN VBZ RB VBN JJ , IN DT NNP NNPS RB VBN IN DT NN IN WP MD VB VBN IN DT NN IN JJ NN .\nNow call centers in India are trying to do the same by using technology to employ the blind .\tRB NN NNS IN NNP VBP VBG TO VB DT NN IN VBG NN TO VB DT NN .\nVOA 's Ravi Khanna has the story .\tNNP POS NNP NNP VBZ DT NN .\nIn a key warm-up for the Wimbledon Championships , Croatian tennis player Mario Ancic has defeated Czech player Jan Hernych , 06-Apr , 06-Apr to reach the finals of the Ordina Open in Den Bosch , the Netherlands .\tIN DT JJ NN IN DT NNP NNP , JJ NN NN NNP NNP VBZ VBN JJ NN NNP NNP , CD , CD TO VB DT NNS IN DT NNP NNP IN NNP NNP , DT NNP .\nThe Croatian next takes on Frenchman Michael Llodra , who scored a three-set win over Australian Mark Philippoussis ( 07-Jun , 06-Jul , 06-Mar ) .\tDT NN RB VBZ IN NN NNP NNP , WP VBD DT JJ NN IN JJ NNP NNP LRB CD , CD , CD RRB .\nLlodra and Ancic have met once before , in Bratislava in 2002 with the Croatian winning in straight sets ( 06-Apr , 07-Jun ) .\tNNP CC NNP VBP VBN RB RB , IN NNP IN CD IN DT NN VBG IN JJ NNS LRB CD , CD RRB .\nIn women 's play , Czech player Klara Koukalova overcame a first-set loss to beat countrywoman Lucie Safarova in three sets , 03-Jun , 06-Feb , 06-Feb .\tIN NNS POS NN , JJ NN NNP NNP VBD DT JJ NN TO VB NN NNP NNP IN CD NNS , CD , CD , CD .\nThe victory was Koukalova 's first WTA tournament title .\tDT NN VBD NNP POS JJ NNP NN NN .\nThe tournament is one of several grass-court events players are using to prepare for Wimbledon , which starts Monday in London .\tDT NN VBZ CD IN JJ JJ NNS NNS VBP VBG TO VB IN NNP , WDT VBZ NNP IN NNP .\nMacedonian government officials say the U.N. war crimes tribunal has indicted former Interior Minister Ljube Boskovski on war crime charges .\tJJ NN NNS VBP DT NNP NN NNS JJ VBZ VBN JJ NNP NNP NNP NNP IN NN NN NNS .\nDetails of the indictment are not yet clear , but media reports say Mr. Boskovski was arrested for his role in the killings of 10 ethnic Albanians during a 2001 clash with Macedonian security forces in the village of Ljubotno , near the capital of Skopje .\tNNS IN DT NN VBP RB RB JJ , CC NNS NNS VBP NNP NNP VBD VBN IN PRP$ NN IN DT NNS IN CD JJ NNS IN DT CD NN IN JJ NN NNS IN DT NN IN NNP , IN DT NN IN NNP .\nOfficials say Mr. Boskovski was indicted with another Macedonian officer , Johan Tarulovski .\tNNS VBP NNP NNP VBD VBN IN DT JJ NN , NNP NNP .\nIt is not clear whether Mr. Tarulovski has been connected to the same incident .\tPRP VBZ RB JJ IN NNP NNP VBZ VBN VBN TO DT JJ NN .\nThe charges mark Macedonia 's first indictments by the tribunal .\tDT NNS VBP NNP POS JJ NNS IN DT NN .\nMr. Boskovski is currently in jail in Croatia , where he was charged last month with trying to disguise the killing of seven economic immigrants three years ago as an anti-terrorist raid .\tNNP NNP VBZ RB IN NN IN NNP , WRB PRP VBD VBN JJ NN IN VBG TO VB DT NN IN CD JJ NNS CD NNS RB IN DT JJ NN .\nHe has denied all allegations .\tPRP VBZ VBN DT NNS .\nA United Nations report issued last month said global food prices will ease from recent record highs because of good grain harvests .\tDT NNP NNPS NN VBN JJ NN VBD JJ NN NNS MD VB IN JJ NN NNS IN IN JJ NN NNS .\nBut it predicted prices are unlikely to go back to pre-2007 levels , which is grim news for those who can not afford to eat and others who seek to feed the hungry .\tCC PRP VBD NNS VBP JJ TO VB RB TO JJ NNS , WDT VBZ JJ NN IN DT WP MD RB VB TO VB CC NNS WP VBP TO VB DT NN .\nWhile the world food crisis is most acute in the world 's least developed nations , the elevated costs of staple foodstuffs and fuel are also hitting America 's poor .\tIN DT NN NN NN VBZ RBS JJ IN DT NN POS JJS JJ NNS , DT JJ NNS IN NN NNS CC NN VBP RB VBG NNP POS NN .\nThe evidence can be seen on the shelves of a large warehouse , used to feed those who need assistance in the eastern U.S. state of Maryland .\tDT NN MD VB VBN IN DT NNS IN DT JJ NN , VBN TO VB DT WP VBP NN IN DT JJ NNP NN IN NNP .\nThat is where VOA 's Malcolm Brown reports .\tDT VBZ WRB NNP POS NNP NNP VBZ .\nJordan 's government says it has arrested an Iraqi woman who planned to blow herself up during Wednesday 's suicide bombings at hotels in Amman .\tNNP POS NN VBZ PRP VBZ VBN DT JJ NN WP VBD TO VB PRP RP IN NNP POS NN NNS IN NNS IN NNP .\nOfficials say the woman is the wife of one of the three Iraqi suicide bombers who killed 57 people at three hotels .\tNNS VBP DT NN VBZ DT NN IN CD IN DT CD JJ NN NNS WP VBD CD NNS IN CD NNS .\nThey say her bomb failed to go off at a wedding reception at the Radisson Hotel and that her husband made her leave before blowing himself up .\tPRP VBP PRP$ NN VBD TO VB RP IN DT NN NN IN DT NNP NNP CC IN PRP$ NN VBD PRP$ NN IN VBG PRP RP .\nJordanian authorities say the woman also had a brother who was a key aide to al-Qaida in Iraq leader Abu Musab al-Zarqawi and who was killed in the Iraqi city of Fallujah .\tJJ NNS VBP DT NN RB VBD DT NN WP VBD DT JJ NN TO NNP IN NNP NN NNP NNP NNP CC WP VBD VBN IN DT JJ NN IN NNP .\nThe group claimed responsibility for the hotel bombings .\tDT NN VBD NN IN DT NN NNS .\nThey say the woman will appear on Jordanian television later Sunday to identify herself and make a confession .\tPRP VBP DT NN MD VB IN JJ NN RB NNP TO VB PRP CC VB DT NN .\nHong Kong Chief Executive Tung Chee-hwa met Saturday with Chinese President Hu Jintao , amid expectations the territory 's unpopular leader will resign .\tNNP NNP NNP NNP NNP NNP VBD NNP IN JJ NNP NNP NNP , IN NNS DT NN POS JJ NN MD VB .\nMr. Tung is in Beijing to attend a meeting of China 's nominal lower house , the Chinese People 's Political Consultative Conference ( CPPCC ) .\tNNP NNP VBZ IN NNP TO VB DT NN IN NNP POS JJ JJR NN , DT JJ NNP POS NNP NNP NNP LRB NNP RRB .\nPresident Hu congratulated the Hong Kong leader on becoming a CPPCC member .\tNNP NNP VBD DT NNP NNP NN IN VBG DT NNP NN .\nHe told Mr. Tung that his experience in ruling Hong Kong would be useful for his work in the body .\tPRP VBD NNP NNP IN PRP$ NN IN VBG NNP NNP MD VB JJ IN PRP$ NN IN DT NN .\nExpectations that Mr. Tung would retire as Hong Kong 's leader more than two years from the end of his term have intensified since it was announced last week he was joining the CPPCC .\tNNS IN NNP NNP MD VB IN NNP NNP POS NN JJR IN CD NNS IN DT NN IN PRP$ NN VBP VBN IN PRP VBD VBN JJ NN PRP VBD VBG DT NNP .\nHowever , Mr. Tung has yet to indicate he will quit .\tRB , NNP NNP VBZ RB TO VB PRP MD VB .\nIran 's Supreme Leader Ayatollah Ali Khamenei has repeated that his country has no interest in building nuclear bombs , but that possessing nuclear technology is its legal right .\tNNP POS NNP NNP NNP NNP NNP VBZ VBN IN PRP$ NN VBZ DT NN IN VBG JJ NNS , CC IN VBG JJ NN VBZ PRP$ JJ NN .\nAyatollah Khamenei told thousands of worshippers at Friday prayers in Tehran that Western nations are trying to mislead public opinion with accusations that Tehran is seeking to build nuclear weapons .\tNNP NNP VBD NNS IN NNS IN NNP NNS IN NNP IN NNP NNS VBP VBG TO VB JJ NN IN NNS IN NNP VBZ VBG TO VB JJ NNS .\nHe said Iran only seeks to generate nuclear power for electricity .\tPRP VBD NNP RB VBZ TO VB JJ NN IN NN .\nThe Europeans have offered to sell Iran nuclear fuel , but Ayatollah Khamenei rejected that , saying it would mean Iranian dependence on foreign powers .\tDT NNS VBP VBN TO VB NNP JJ NN , CC NNP NNP VBD IN , VBG PRP MD VB JJ NN IN JJ NNS .\nThe Europeans have been conducting negotiations with Iran in hopes of persuading Tehran to permanently halt their uranium enrichment activities in exchange for a package of political and economic incentives .\tDT NNS VBP VBN VBG NNS IN NNP IN NNS IN VBG NNP TO RB VB PRP$ NN NN NNS IN NN IN DT NN IN JJ CC JJ NNS .\nNorth Korea announced Saturday it will close two aviation routes through its air space from April 4 through April 8 during a planned rocket launch .\tNNP NNP VBD NNP PRP MD VB CD NN NNS IN PRP$ NN NN IN NNP CD IN NNP CD IN DT JJ NN NN .\nThe North says it will launch a communication satellite .\tDT NNP VBZ PRP MD VB DT NN NN .\nThe United States , Japan and South Korea say Pyongyang intends to test a long-range ballistic missile .\tDT NNP NNPS , NNP CC NNP NNP VBP NNP VBZ TO VB DT JJ JJ NN .\nThey say the launch would violate a U.N. Security Council resolution imposed in 2006 after North Korea tested long range missiles and a nuclear weapon .\tPRP VBP DT NN MD VB DT NNP NNP NNP NN VBN IN CD IN NNP NNP VBD JJ NN NNS CC DT JJ NN .\nJapan and South Korea have warned North Korea it will face a strong international response if it goes ahead with the launch .\tNNP CC NNP NNP VBP VBN NNP NNP PRP MD VB DT JJ JJ NN IN PRP VBZ RB IN DT NN .\nJapan has said it will attempt to shoot down missiles headed toward its territory .\tNNP VBZ VBN PRP MD VB TO VB RP NNS VBN IN PRP$ NN .\nTop U.S. military commanders told members of Congress this week the American military is probably capable of shooting down a long-range North Korean missile if it threatens U.S. territory .\tJJ NNP NN NNS VBD NNS IN NNP DT NN DT JJ NN VBZ RB JJ IN VBG RP DT JJ JJ JJ NN IN PRP VBZ NNP NN .\nArab broadcaster Al Jazeera has telecast a videotape that shows an Afghan warlord wanted by the United States as saying that he and his followers want to support Osama bin Laden .\tJJ NN NNP NNP VBZ VBN DT NN WDT VBZ DT JJ NN VBN IN DT NNP NNPS IN VBG IN PRP CC PRP$ NNS VBP TO VB NNP NNP NNP .\nOn the tape , Gulbuddin Hekmatyar says he hopes to participate and support bin Laden 's battle .\tIN DT NN , NNP NNP VBZ PRP VBZ TO VB CC VB NNP NNP POS NN .\nHekmatyar 's Hizb-e-Islami faction helped end the Soviet occupation of Afghanistan .\tNNP POS NNP NN VBD VB DT JJ NN IN NNP .\nAfter that , he was Afghanistan 's prime minister from June 1993 to June 1994 .\tIN DT , PRP VBD NNP POS JJ NN IN NNP CD TO NNP CD .\nThe Taleban chased him out of Kabul in 1996 .\tDT NNP VBD PRP IN IN NNP IN CD .\nHis group has been blamed for several recent attacks against U.S.-led coalition forces in Afghanistan .\tPRP$ NN VBZ VBN VBN IN JJ JJ NNS IN JJ NN NNS IN NNP .\nHekmatyar 's videotape comes less than two weeks after bin Laden and his number two Ayman al-Zawahiri issued messages on the so-called war on Islam and the political and security situations in Iraq .\tNNP POS NN VBZ JJR IN CD NNS IN NNP NNP CC PRP$ NN CD NNP NNP VBD NNS IN DT JJ NN IN NNP CC DT JJ CC NN NNS IN NNP .\nAl Jazeera did not say how it received the tape and it was not clear when it was made .\tNNP NNP VBD RB VB WRB PRP VBD DT NN CC PRP VBD RB JJ WRB PRP VBD VBN .\nEgypt 's former foreign minister Ahmed Maher has died at the age of 75 .\tNNP POS JJ JJ NN NNP NNP VBZ VBN IN DT NN IN CD .\nEgypt 's MENA news agency says Maher died in a hospital Monday due to unspecified health problems .\tNNP POS NNP NN NN VBZ NNP VBD IN DT NN NNP JJ TO JJ NN NNS .\nMaher served as Egypt 's top diplomat from 2001 until 2004 .\tNNP VBD IN NNP POS JJ NN IN CD IN CD .\nA career diplomat , he participated in the Camp David peace talks between Israel and Egypt in 1978 .\tDT NN NN , PRP VBD IN DT NNP NNP NN NNS IN NNP CC NNP IN CD .\nMaher was attacked by Palestinian activists in 2003 while visiting al-Aqsa mosque in Jerusalem .\tNNP VBD VBN IN JJ NNS IN CD IN VBG JJ NN IN NNP .\nThe activists threw shoes at him , a deep insult in the Arab world .\tDT NNS VBD NNS IN PRP , DT JJ NN IN DT JJ NN .\nThe incident did not seriously injure Maher , but it underscored tensions surrounding efforts at the time to restart peace talks between Israelis and Palestinians .\tDT NN VBD RB RB JJ NNP , CC PRP VBD NNS VBG NNS IN DT NN TO VB NN NNS IN NNS CC NNS .\nSuspected Islamic militants fired a barrage of rockets into a town in northwest Pakistan Wednesday , killing at least nine civilians .\tVBN JJ NNS VBD DT NN IN NNS IN DT NN IN JJ NNP NNP , VBG IN JJS CD NNS .\nHomes were destroyed and around 40 people were wounded during the attack in Bannu , a town in Pakistan 's troubled Northwest Frontier Province .\tNNP VBD VBN CC IN CD NNS VBD VBN IN DT NN IN NNP , DT NN IN NNP POS JJ NNP NNP NNP .\nThat area is where the United States says Osama bin Laden 's al-Qaida network has set up safe havens .\tDT NN VBZ WRB DT NNP NNP VBZ NNP NNP NNP POS NNP NN VBZ VBN RP JJ NNS .\nPakistan has seen a wave of militant attacks and suicide bombings since security forces raided a radical mosque in Islamabad .\tNNP VBZ VBN DT NN IN JJ NNS CC NN NNS IN NN NNS VBD DT JJ NN IN NNP .\nMore than 100 people were killed in the operation , including a top cleric .\tJJR IN CD NNS VBD VBN IN DT NN , VBG DT JJ NN .\nOn Tuesday , a top Taleban militant blew himself up to avoid arrest by Pakistani forces who had surrounded his hideout in the southwestern Baluchistan province .\tIN NNP , DT JJ NNP NN VBD PRP RP TO VB NN IN JJ NNS WP VBD VBN PRP$ NN IN DT JJ NNP NN .\nPakistani officials called Abdullah Mehsud 's death a major achievement for the government as it faces U.S. pressure to crack down on extremists .\tJJ NNS VBD NNP NNP POS NN DT JJ NN IN DT NN IN PRP VBZ NNP NN TO VB RP IN NNS .\nNATO Secretary-General Jaap de Hoop Scheffer says the door is open for the former Soviet republic of Georgia to join the alliance .\tNNP NNP NNP IN NNP NNP VBZ DT NN VBZ JJ IN DT JJ JJ NN IN NNP TO VB DT NN .\nDe Hoop Scheffer said Thursday he is encouraged by Georgia 's improvements in recent years .\tNNP NNP NNP VBD NNP PRP VBZ VBN IN NNP POS NNS IN JJ NNS .\nBut he added Tbilisi still needs to implement judicial and other democratic reforms before Georgia can gain NATO entry .\tCC PRP VBD NNP RB VBZ TO VB JJ CC JJ JJ NNS IN NNP MD VB NNP NN .\nThe NATO chief made his comments at a news conference after conferring with Georgia 's president , Mikhail Saakashvili , in the town of Singnaghi .\tDT NNP NN VBD PRP$ NNS IN DT NN NN IN VBG IN NNP POS NN , NNP NNP , IN DT NN IN NNP .\nEarlier in the day , de Hoop Scheffer also met with other senior Georgian officials\tRBR IN DT NN , IN NNP NNP RB VBD IN JJ JJ JJ NNS\nGeorgia has been striving to build closer ties with the United States and other Western countries as it actively seeks NATO entry .\tNNP VBZ VBN VBG TO VB JJR NNS IN DT NNP NNPS CC JJ JJ NNS IN PRP RB VBZ NNP NN .\nNeighboring Russia opposes Georgia 's NATO membership aspirations .\tNNP NNP VBZ NNP POS NNP NN NNS .\nIsrael allowed three Turkish ships from the fatal Gaza-bound flotilla to leave on Thursday and head back to Turkey .\tNNP VBD CD JJ NNS IN DT JJ JJ NN TO VB IN NNP CC NN RB TO NNP .\nTurkish tugboats at the port of Haifa Thursday morning towed the Mavi Marmaraout to sea .\tJJ NNS IN DT NN IN NNP NNP NN VBD DT NNP NNP TO NN .\nThe passenger ship was at the center of a high seas Israeli raid on May 31 that left nine people dead .\tDT NN NN VBD IN DT NN IN DT JJ NNS JJ NN IN NNP CD WDT VBD CD NNS JJ .\nIsrael says it was acting in self-defense but the action raised international outrage .\tNNP VBZ PRP VBD VBG IN JJ CC DT NN VBD JJ NN .\nTwo other boats also commandeered by Israel were due to be towed out of the southern port of Ashdod .\tCD JJ NNS RB VBN IN NNP VBD JJ TO VB VBN IN IN DT JJ NN IN NNP .\nIsrael says it complied with Turkey 's demands to return the ships .\tNNP VBZ PRP VBD IN NNP POS NNS TO VB DT NNS .\nEarlier this week , Israeli Prime Minister Benjamin Netanyahu announced that Israel will be cooperating with a probe into the flotilla incident ordered by United Nations Chief Ban Ki-moon .\tRBR DT NN , JJ NNP NNP NNP NNP VBD IN NNP MD VB VBG IN DT NN IN DT NN NN VBN IN NNP NNP NNP NNP NNP .\nLeading opposition candidate Emmanuel Akitani-Bob Togo 's opposition says its main candidate who lost disputed presidential elections has suffered a stroke and was flown to France .\tVBG NN NN NNP NNP NNP POS NN VBZ PRP$ JJ NN WP VBD JJ JJ NNS VBZ VBN DT NN CC VBD VBN IN NNP .\nOpposition officials say Emmanuel Akitani-Bob , 74 , is being treated at the American Hospital in Neuilly , outside Paris .\tNN NNS VBP NNP NNP , CD , VBZ VBG VBN IN DT NNP NNP IN NNP , IN NNP .\nMedical staff say Mr. Akitani-Bob has suffered partial paralysis to the left side of his body .\tJJ NN VBP NNP NNP VBZ VBN JJ NN TO DT JJ NN IN PRP$ NN .\nHe lost presidential elections in April to Faure Gnassingbe , the son of Togo 's late ruler Gnassingbe Eyadema .\tPRP VBD JJ NNS IN NNP TO NNP NNP , DT NN IN NNP POS JJ NN NNP NNP .\nBut the opposition says the poll was rigged , and Mr. Akitani-Bob proclaimed himself president .\tCC DT NN VBZ DT NN VBD VBN , CC NNP NNP VBD PRP NN .\nHe is widely seen as a stand-in candidate for Gilchrist Olympio , an opposition leader who was barred from running in the poll because he has lived outside Togo since the 1990s .\tPRP VBZ RB VBN IN DT JJ NN IN NNP NNP , DT NN NN WP VBD VBN IN VBG IN DT NN IN PRP VBZ VBN IN NNP IN DT NNS .\nAfghan police say a suicide bomber has killed two soldiers and a child in southern Afghanistan .\tJJ NNS VBP DT NN NN VBZ VBN CD NNS CC DT NN IN JJ NNP .\nProvincial police chief Mohammad Hussein Andiwal says the bomber was on foot when he blew himself up near an Afghan military convoy Saturday in Marja district of Helmand province .\tNNP NN NN NNP NNP NNP VBZ DT NN VBD IN NN WRB PRP VBD PRP RP IN DT JJ JJ NN NNP IN NNP NN IN NNP NN .\nAt least four other people were wounded in the blast .\tIN JJS CD JJ NNS VBD VBN IN DT NN .\nElsewhere in southern Afghanistan , provincial police chief Jalani Khan says four Afghan police officers were killed Saturday when a roadside bomb exploded in Zabul province .\tRB IN JJ NNP , JJ NN NN NNP NNP VBZ CD JJ NNS NNS VBD VBN NNP WRB DT NN NN VBD IN NNP NN .\nThere was no immediate claim of responsibility for either of the blasts .\tEX VBD DT JJ NN IN NN IN DT IN DT NNS .\nTaliban militants have stepped up attacks on Afghan and foreign troops in recent months .\tNNP NNS VBP VBN RP NNS IN JJ CC JJ NNS IN JJ NNS .\nVenezuelan President Hugo Chavez says he is prepared to meet with Colombian President Alvaro Uribe to defuse tensions over the seizure of a top Colombian rebel leader in Venezuela last month .\tJJ NNP NNP NNP VBZ PRP VBZ VBN TO VB IN JJ NNP NNP NNP TO VB NNS IN DT NN IN DT JJ JJ NN NN IN NNP JJ NN .\nMr. Chavez spoke Sunday , a day after Mr. Uribe offered to discuss the issue with him .\tNNP NNP VBD NNP , DT NN IN NNP NNP VBD TO VB DT NN IN PRP .\nThere has been no announcement from either side about whether such a meeting will take place .\tEX VBZ VBN DT NN IN DT NN IN IN JJ DT NN MD VB NN .\nMr. Chavez accuses neighboring Colombia of paying bounty hunters to catch Rodrigo Granda , a member of the Revolutionary Armed Forces of Colombia ( FARC ) .\tNNP NNP VBZ VBG NNP IN VBG NN NNS TO VB NNP NNP , DT NN IN DT NNP NNP NNS IN NNP LRB NNP RRB .\nVenezuela froze trade relations with Colombia Friday , and Mr. Chavez said they would remain suspended until Colombia apologizes .\tNNP VBD NN NNS IN NNP NNP , CC NNP NNP VBD PRP MD VB JJ IN NNP VBZ .\nMr. Chavez also said Sunday the United States is trying to divide South America by supporting Colombia in the dispute .\tNNP NNP RB VBD NNP DT NNP NNPS VBZ VBG TO NN NNP NNP IN VBG NNP IN DT NN .\nThe family of a former U.S. federal agent missing in Iran since March says Iranian authorities have blocked a U.S. request for Swiss diplomats to visit his last known location .\tDT NN IN DT JJ NNP JJ NN VBG IN NNP IN NNP VBZ JJ NNS VBP VBN DT NNP NN IN JJ NNS TO VB PRP$ JJ VBN NN .\nFormer Federal Bureau of Investigation agent Bob Levinson was last seen in the Iranian resort of Kish Island while on a business trip .\tJJ NNP NNP IN NNP NN NNP NNP VBD JJ VBN IN DT JJ NN IN NNP NNP IN IN DT NN NN .\nHis wife , Christine Levinson , told the Washington Post that she is particularly interested in locating her husband 's missing duffle bag .\tPRP$ NN , NNP NNP , VBD DT NNP NNP IN PRP VBZ RB JJ IN VBG PRP$ NN POS JJ NN NN .\nShe did not provide further details .\tPRP VBD RB VB JJ NNS .\nThe Iranian government has denied any knowledge of the missing man , but the U.S. State Department says it finds that claim hard to believe .\tDT JJ NN VBZ VBN DT NN IN DT VBG NN , CC DT NNP NNP NNP VBZ PRP VBZ DT NN JJ TO VB .\nSouth Africa 's cricket team has scored 218-5 in its first innings in response to the West Indies ' total of 243 on the second day of their second test match at Newlands in Cape Town .\tNNP NNP POS NN NN VBZ VBN CD IN PRP$ JJ NN IN NN TO DT NNP NNPS POS NN IN CD IN DT JJ NN IN PRP$ JJ NN NN IN NNP IN NNP NNP .\nAshwell Prince and Mark Boucher had an 87-run partnership for South Africa after the home side fell to 131-5 .\tNNP NNP CC NNP NNP VBD DT JJ NN IN NNP NNP IN DT NN NN VBD TO CD .\nPrince and Boucher scored 52 runs in the last 10 overs .\tNNP CC NNP VBD CD NNS IN DT JJ CD NNS .\nWest Indian bowler Dwayne Bravo was Mar-46 and Jerome Taylor was Feb-45 .\tNNP JJ NN NNP NNP VBD CD CC NNP NNP VBD CD .\nThe West Indies leads the three-match series , 1-0 , after taking the first test by 128 runs .\tDT NNP NNPS VBZ DT JJ NN , CD , IN VBG DT JJ NN IN CD NNS .\nThe win was the Caribbean squad 's first in South Africa and its first significant road win since 2000 .\tDT NN VBD DT NNP NN POS JJ IN NNP NNP CC PRP$ JJ JJ NN NN IN CD .\nThe third test begins January 10th in Durban .\tDT JJ NN VBZ NNP CD IN NNP .\nThe two sides also will play five one-day international matches beginning January 20th in Centurion .\tDT CD NNS RB MD VB CD JJ JJ NNS VBG NNP JJ IN NNP .\nThe U.S. military has released some high-level detainees from Saddam Hussein 's former regime , including two scientists known as ' Dr. Germ ' and ' Mrs. Anthrax . '\tDT NNP NN VBZ VBN DT JJ NNS IN NNP NNP POS JJ NN , VBG CD NNS VBN IN `` NNP NNP `` CC `` NNP NNP . ``\nAn Iraqi lawyer said Monday Rihab Taha and Huda Saleh Mahdi Amash were among 24 people freed .\tDT JJ NN VBD NNP NNP NNP CC NNP NNP NNP NNP VBD IN CD NNS VBN .\nThe U.S. military put the number of high-value detainees released at eight .\tDT NNP NN VBD DT NN IN JJ NNS VBN IN CD .\nOfficials say the detainees were freed after a board found they were no longer a security threat .\tNNS VBP DT NNS VBD VBN IN DT NN VBD PRP VBD RB RB DT NN NN .\nMeanwhile , at least five people were killed in two insurgent attacks aimed at senior police and government officials in Baghdad Monday .\tRB , IN JJS CD NNS VBD VBN IN CD JJ NNS VBN IN JJ NNS CC NN NNS IN NNP NNP .\nAnd the US military says a Marine was killed in action in Ramadi Sunday .\tCC DT NNP NN VBZ DT NN VBD VBN IN NN IN NNP NNP .\nAnd an Iraqi militant group posted a video on the Internet it says shows the killing of American hostage Ronald Allen Schultz , who was abducted this month .\tCC DT JJ NN NN VBD DT NN IN DT NN PRP VBZ VBZ DT NN IN NNP NN NNP NNP NNP , WP VBD VBN DT NN .\nBut the video does not show the victim 's face .\tCC DT NN VBZ RB VB DT NN POS NN .\nA group of 50 foreign policy experts and former government officials from Europe and the United States have drafted a partnership agreement - a move aimed at restoring transatlantic ties ahead of President Bush 's trip to Europe next week .\tDT NN IN CD JJ NN NNS CC JJ NN NNS IN NNP CC DT NNP NNPS VBP VBN DT NN NN IN DT NN VBN IN VBG JJ NNS RB IN NNP NNP POS NN TO NNP JJ NN .\nThe group released the pact Thursday , saying it demonstrates that a common strategy between the United States and Europe can be forged to deal with international challenges .\tDT NN VBD DT NN NNP , VBG PRP VBZ IN DT JJ NN IN DT NNP NNPS CC NNP MD VB VBN TO VB IN JJ NNS .\nThe agreement covers a host of key foreign policy concerns , including Iraq , Afghanistan , the Geneva Conventions , climate change , peace in the Middle East , China and Iran 's nuclear activities .\tDT NN VBZ DT NN IN JJ JJ NN NNS , VBG NNP , NNP , DT NNP NNPS , NN NN , NN IN DT NNP NNP , NNP CC NNP POS JJ NNS .\nOn Iraq , the pact calls on the United States to start a ' strategic dialogue ' with European allies .\tIN NNP , DT NN VBZ IN DT NNP NNPS TO VB DT `` JJ NN `` IN JJ NNS .\nThe European Union would commit to training 5,000 civil servants and 25,000 Iraqi security and police forces per year .\tDT NNP NNP MD VB TO NN CD JJ NNS CC CD JJ NN CC NN NNS IN NN .\nThe agreement was hammered out during meetings at a Washington think tank , the Brookings Institution .\tDT NN VBD VBN RP IN NNS IN DT NNP NN NN , DT NNP NNP .\nNumerous health studies have found exercise directly impacts people 's well being .\tJJ NN NNS VBP VBN NN RB VBZ NNS POS RB VBG .\nAn organization in Washington is taking this a step further : promoting good health while also building camaraderie among women .\tDT NN IN NNP VBZ VBG DT DT NN RB IN VBG JJ NN IN RB VBG NN IN NNS .\nWashington Women Outdoors is an organization that is helping women develop their leadership skills through outdoor sports and activities .\tNNP NNP NNP VBZ DT NN WDT VBZ VBG NNS VB PRP$ NN NNS IN JJ NNS CC NNS .\nVOA 's Monaliza Noormohammadi has more .\tNNP POS NNP NNP VBZ RBR .\nSunni Arab leaders in western Iraq have condemned a joint U.S.-Iraqi offensive in the region , saying it endangers civilians .\tNNP JJ NNS IN JJ NNP VBP VBN DT JJ JJ NN IN DT NN , VBG PRP VBZ NNS .\nThe U.S. military launched Operation Steel Curtain early Saturday to restore security along the porous Iraqi-Syrian border and destroy the al-Qaida in Iraq network operating in the area .\tDT NNP NN VBD NNP NNP NNP JJ NNP TO VB NN IN DT JJ JJ NN CC VB DT NNP IN NNP NN VBG IN DT NN .\nSome Sunni Arab politicians and tribal leaders complained that the operation endangers civilians and could lead to greater instability in Sunni sections of the country .\tDT NNP NNP NNS CC JJ NNS VBD IN DT NN VBZ NNS CC MD VB TO JJR NN IN NNP NNS IN DT NN .\nResidents of the town of Husaybah , 320 kilometers northwest of Baghdad , say thunderous explosions shook the town as some 2,500 U.S. troops and 1,000 Iraqi soldiers fought their way through the town .\tNNS IN DT NN IN NNP , CD NNS JJS IN NNP , VBP JJ NNS VBD DT NN IN DT CD NNP NNS CC CD JJ NNS VBD PRP$ NN IN DT NN .\nElsewhere , at least 11 people were killed when gunmen ambushed a minibus in Balad Ruz , 60 kilometers northeast of Baghdad .\tRB , IN JJS CD NNS VBD VBN WRB NNS VBD DT NN IN NNP NNP , CD NNS NN IN NNP .\nAlso , the U.S. military said at least three more soldiers have been killed in separate incidents across Iraq .\tRB , DT NNP NN VBD IN JJS CD JJR NNS VBP VBN VBN IN JJ NNS IN NNP .\nThe United Nations says funding problems may force it to ground the helicopters that are delivering relief to Pakistani earthquake survivors in remote mountainous regions .\tDT NNP NNP VBZ NN NNS MD VB PRP TO VB DT NNS WDT VBP VBG NN TO JJ NN NNS IN JJ JJ NNS .\nU.N. agencies say they have only received one quarter of the money countries pledged for earthquake aid .\tNNP NNS VBP PRP VBP RB VBN CD NN IN DT NN NNS VBD IN NN NN .\nThey say the funding shortfall is delaying their work to help survivors before the Himalayan winter .\tPRP VBP DT NN NN VBZ VBG PRP$ NN TO VB NNS IN DT NNP NN .\nBut U.S. military officials promised Tuesday they will continue flying their helicopter missions to help survivors .\tCC NNP JJ NNS VBD NNP PRP MD VB VBG PRP$ NN NNS TO VB NNS .\nHours later , the U.S. military says a rocket-propelled grenade was fired at a helicopter delivering aid .\tNNS RB , DT NNP NN VBZ DT JJ NN VBD VBN IN DT NN VBG NN .\nIt says the helicopter was not hit and no one was injured .\tPRP VBZ DT NN VBD RB VBN CC DT NN VBD VBN .\nPakistani officials say there was no attack and that the helicopter crew heard dynamite being used to clear mudslides triggered by the quake .\tJJ NNS VBP EX VBD DT NN CC IN DT NN NN VBD NN VBG VBN TO VB NNS VBN IN DT NN .\nThe October 8 earthquake killed more than 58,000 people , most of them in Pakistani-controlled Kashmir .\tDT NNP CD NN VBD JJR IN CD NNS , JJS IN PRP IN JJ NNP .\nThe Israeli military says Israeli warplanes have destroyed offices of an armed wing of the Fatah Movement of Palestinian President Mahmoud Abbas .\tDT JJ NN VBZ JJ NNS VBP VBN NNS IN DT JJ NN IN DT NNP NN IN JJ NNP NNP NNP .\nMilitary officials say helicopters fired missiles at two offices Friday of the Al-Aqsa Martyrs Brigades in Gaza City .\tJJ NNS VBP NNS VBD NNS IN CD NNS NNP IN DT NNP NNP NNP IN NNP NNP .\nPalestinian sources say there were no casualties .\tJJ NNS VBP EX VBD DT NNS .\nIsrael blamed Al-Aqsa for firing rockets at its towns and cities on Thursday .\tNNP VBD NNP IN VBG NNS IN PRP$ NNS CC NNS IN NNP .\nThe Israeli army says one of the rockets fired from Gaza struck an Israeli factory near the town of Ashkelon and set it ablaze , injuring one Israeli .\tDT JJ NN VBZ CD IN DT NNS VBN IN NNP VBD DT JJ NN IN DT NN IN NNP CC VBD PRP VB , VBG CD NN .\nThe army says another rocket hit in the town of Sderot but caused no injuries or damage .\tDT NN VBZ DT NN VBD IN DT NN IN NNP CC VBD DT NNS CC NN .\nYemeni authorities said Sunday that an unidentified gunman has killed a senior security official in the southern part of the country , where separatist tensions are mounting .\tJJ NNS VBD NNP IN DT JJ NN VBZ VBN DT JJ NN NN IN DT JJ NN IN DT NN , WRB JJ NNS VBP VBG .\nA provincial official said Jalal al-Uthmani , a high-ranking intelligence officer , was killed late Saturday in a hail of gunfire outside his home in restive Abyan Province .\tDT JJ NN VBD NNP NNP , DT JJ NN NN , VBD VBN JJ NNP IN DT NN IN NN IN PRP$ NN IN JJ NNP NNP .\nAlso Saturday , tribesmen in eastern Maarib Province blew up an oil pipeline in retaliation for raids targeting al-Qaida sympathizers .\tRB NNP , NNS IN JJ NNP NNP VBD RP DT NN NN IN NN IN NNS VBG NNP NNS .\nNorth and South Yemen formally united in 1990 but many in the south say the northern-based government has used unification to funnel resources out of their territories , while denying southerners political rights .\tNNP CC NNP NNP RB VBD IN CD CC NN IN DT NN VBP DT JJ NN VBZ VBN NN TO VB NNS IN IN PRP$ NNS , IN VBG NNS JJ NNS .\nMost of Yemen 's oil facilities are located in the south , which lost a brief 1994 civil war that ended with the region overrun by northern troops .\tJJS IN NNP POS NN NNS VBP VBN IN DT NN , WDT VBD DT JJ CD JJ NN WDT VBD IN DT NN VBN IN JJ NNS .\nItalian opera star Luciano Pavarotti has been hospitalized for medical tests in his hometown in northern Italy .\tJJ NN NN NNP NNP VBZ VBN VBN IN JJ NNS IN PRP$ NN IN JJ NNP .\nA spokesman for the Modena Polyclinic says Pavarotti was admitted earlier this week .\tDT NN IN DT NNP NNP VBZ NNP VBD VBN RBR DT NN .\nThe hospital is to issue a statement later Thursday .\tDT NN VBZ TO VB DT NN RB NNP .\nThe 71-year-old underwent surgery for pancreatic cancer last year .\tDT JJ VBD NN IN NN NN JJ NN .\nThe illness forced him to cancel his 2006 farewell opera tour .\tDT NN VBD PRP TO VB PRP$ CD JJ NN NN .\nThe beloved classical singer has impressed opera aficionados with his tenor voice , performing challenging works in nearly every major opera and concert hall around the world .\tDT JJ NN NN VBZ VBN NN NNS IN PRP$ NN NN , VBG JJ NNS IN RB DT JJ NN CC NN NN IN DT NN .\nHe has also won fans with his warm personality off the stage .\tPRP VBZ RB VBN NNS IN PRP$ JJ NN IN DT NN .\nThroughout his career , Pavarotti has used his celebrity to raise millions of dollars for the U.N. refugee agency and other charitable causes .\tIN PRP$ NN , NNP VBZ VBN PRP$ NN TO VB NNS IN NNS IN DT NNP NN NN CC JJ JJ NNS .\nThe Chinese city of Harbin has restored running water for nearly four-million people , after a five-day cutoff forced by toxic pollution in the river that supplies the city .\tDT JJ NN IN NNP VBZ VBN VBG NN IN RB JJ NNS , IN DT JJ NN VBN IN JJ NN IN DT NN WDT VBZ DT NN .\nState television showed the local governor drinking a glass of boiled water and reassuring locals it was safe to drink .\tNN NN VBD DT JJ NN VBG DT NN IN JJ NN CC VBG NNS PRP VBD JJ TO VB .\nBut the Associated Press quotes the deputy general of the Harbin water department saying residents should not immediately drink the water - even if it is boiled .\tCC DT NNP NNP VBZ DT NN NN IN DT NNP NN NN VBG NNS MD RB RB VB DT NN IN RB IN PRP VBZ VBN .\nWang Minghe said the water is still dangerous because it has been sitting in pipes and may be contaminated from the benzene spill .\tNNP NNP VBD DT NN VBZ RB JJ IN PRP VBZ VBN VBG IN NNS CC MD VB VBN IN DT NN NN .\nOfficials say the 80-kilometer-long chemical slick in the Songhua River has passed Harbin .\tNNS VBP DT JJ NN NN IN DT NNP NNP VBZ VBN NNP .\nIt is expected to reach Russia within days .\tPRP VBZ VBN TO VB NNP IN NNS .\nA November 13 factory explosion caused 100 tons of potentially cancer-causing benzene to spill into the river upstream from the city .\tDT NNP CD NN NN VBD CD NNS IN RB JJ NN TO VB IN DT NN NN IN DT NN .\nFour more ministers in Somalia 's transitional government have resigned , citing criticism of Prime Minister Mohammed Ali Gedi .\tCD JJR NNS IN NNP POS JJ NN VBP VBN , VBG NN IN NNP NNP NNP NNP NNP .\nWater and Mineral Resources minister , Mohamud Salad Nur , and three deputy ministers announced their decision Tuesday , accusing Mr. Ali Gedi of failing to restore stability in Somalia .\tNNP CC NNP NNP NN , NNP NNP NNP , CC CD NN NNS VBD PRP$ NN NNP , VBG NNP NNP NNP IN VBG TO VB NN IN NNP .\nLast week , 18 ministers quit the government and another minister was killed by gunmen .\tJJ NN , CD NNS VBD DT NN CC DT NN VBD VBN IN NNS .\nThe interim government based in Baidoa has been struggling to launch peace talks with Islamists who oppose the prime minister 's decision to allow Ethiopian troops into the country .\tDT JJ NN VBN IN NNP VBZ VBN VBG TO VB NN NNS IN NNS WP VBP DT JJ NN POS NN TO VB JJ NNS IN DT NN .\nMeanwhile , regional officials met Tuesday in neighboring Kenya to discuss the situation in Somalia and plans to deploy an international peacekeeping mission .\tRB , JJ NNS VBD NNP IN VBG NNP TO VB DT NN IN NNP CC VBZ TO VB DT JJ NN NN .\nAnd one Islamic group - the Supreme Islamic Council of Somalia - based in the capital , Mogadishu , said it was opening a sharia court in the central town of Adaado .\tCC CD JJ NN IN DT NNP NNP NNP IN NNP : VBN IN DT NN , NNP , VBD PRP VBD VBG DT NN NN IN DT JJ NN IN NNP .\nThe U.S. military in Iraq says coalition forces have rounded up 32 suspected militants and uncovered a stockpile of more than 500 artillery rounds in a region south of Baghdad .\tDT NNP NN IN NNP VBZ NN NNS VBP VBN RP CD JJ NNS CC VBD DT NN IN JJR IN CD NN NNS IN DT NN NN IN NNP .\nThe military issued the statement Monday .\tDT JJ VBD DT NN NNP .\nThousands of American , British and Iraqi troops are continuing operations to root out insurgents across Iraq ahead of the January elections in the country .\tNNS IN NNP , NNP CC JJ NNS VBP VBG NNS TO VB RP NNS IN NNP RB IN DT NNP NNS IN DT NN .\nSunday , Abu Musab al-Zarqawi 's terror group claimed responsibility for killing at least 17 Iraqi troops in the northern city of Mosul .\tNNP , NNP NNP NNP POS NN NN VBD NN IN VBG IN JJS CD JJ NNS IN DT JJ NN IN NNP .\nAl-Qaida in Iraq made the claim in an Internet posting that could not be independently verified .\tNNP IN NNP VBD DT NN IN DT NN VBG DT MD RB VB RB VBN .\nIn recent days , U.S. forces in Mosul have found the bodies of more than 50 people -- most of them Iraqi security personnel , who were killed execution-style .\tIN JJ NNS , NNP NNS IN NNP VBP VBN DT NNS IN JJR IN CD NNS : JJS IN PRP JJ NN NNS , WP VBD VBN JJ .\nIndia has suspended railway service to and from Pakistan in the wake of the assassination of former Pakistani Prime Minister Benazir Bhutto .\tNNP VBZ VBN NN NN TO CC IN NNP IN DT NN IN DT NN IN JJ JJ NNP NNP NNP NNP .\nOfficials in New Delhi did not say when the service would be restored .\tNNS IN NNP NNP VBD RB VB WRB DT NN MD VB VBN .\nAuthorities are concerned that violence by angry Bhutto supporters in Pakistan will spill across the border into India .\tNNS VBP VBN IN NN IN JJ NNP NNS IN NNP MD VB IN DT NN IN NNP .\nMilitants have targeted trains in the past , including the fatal firebombing of a Pakistan-bound train in India earlier this year .\tNNS VBP VBN NNS IN DT NN , VBG DT JJ NN IN DT JJ NN IN NNP RBR DT NN .\nSixty-eight people were killed in that February attack .\tCD NNS VBD VBN IN DT NNP NN .\nTony Bennett thinks American Idol is too cruel - and said so to celebrity judge Simon Cowell .\tNNP NNP VBZ NNP NNP VBZ RB JJ : CC VBD RB TO NN NN NNP NNP .\nSpeaking to the British edition of Time Out Magazine , the 80-year-old crooner says his recent appearance on the popular TV talent contest left him dismayed at its treatment of contestants .\tVBG TO DT JJ NN IN NNP NNP NNP , DT JJ NN VBZ PRP$ JJ NN IN DT JJ NN NN NN VBD PRP VBD IN PRP$ NN IN NNS .\n' I had it out with Simon [ Cowell ] when I met him and suggested that he should open up tiny clubs across the countries so the kids could break in and learn properly , ' he said .\t`` PRP VBD PRP RP IN NNP LRB NNP RRB WRB PRP VBD PRP CC VBD IN PRP MD VB RP JJ NNS IN DT NNS IN DT NNS MD VB IN CC VB RB , `` PRP VBD .\nBennett says Cowell shrugged off his suggestion , saying he was too busy making money .\tNNP VBZ NNP VBD RP PRP$ NN , VBG PRP VBD RB JJ VBG NN .\nChina 's state media report a sixth person in the country has been diagnosed with bird flu , while a new outbreak of the disease has been spotted in a flock of ducks .\tNNP POS NN NNS VBP DT JJ NN IN DT NN VBZ VBN VBN IN NN NN , IN DT JJ NN IN DT NN VBZ VBN VBN IN DT NN IN NNS .\nThe Xinhua news agency says the Health Ministry has identified the latest human victim as a 35-year-old man in Suichuan County in the eastern province of Jiangxi .\tDT NNP NN NN VBZ DT NNP NNP VBZ VBN DT JJS JJ NN IN DT JJ NN IN NNP NNP IN DT JJ NN IN NNP .\nThere were no further details .\tEX VBD DT JJ NNS .\nEarlier , the Agriculture Ministry reported an outbreak in a flock of ducks , also in Jiangxi province .\tRB , DT NNP NNP VBD DT NN IN DT NN IN NNS , RB IN NNP NN .\nIt is not clear if the two incidents are linked .\tPRP VBZ RB JJ IN DT CD NNS VBP VBN .\nThe H5N1 strain of bird flu has killed more than 70 people in East Asia since 2003 .\tDT NNP NN IN NN NN VBZ VBN JJR IN CD NNS IN NNP NNP IN CD .\nScientists fear it could mutate and be passed from human to human .\tNNS VBP PRP MD VB CC VB VBN IN JJ TO JJ .\nCrude oil prices fell below $ 70 a barrel Thursday after coalition forces in Iraq killed a key terrorist leader .\tJJ NN NNS VBD IN $ CD DT NN NNP IN NN NNS IN NNP VBD DT JJ JJ NN .\nThe price of oil for future delivery fell more than one dollar in electronic trading in New York to $ 69.54 a barrel .\tDT NN IN NN IN JJ NN VBD JJR IN CD NN IN JJ NN IN NNP NNP TO $ CD DT NN .\nOil prices also declined for London 's benchmark Brent crude oil .\tNN NNS RB VBD IN NNP POS JJ JJ NN NN .\nSome investors speculate that the death of Abu Musab al-Zarqawi will ease the attacks and sabotage that have slowed Iraqi oil exports for the past three years .\tDT NNS VBP IN DT NN IN NNP NNP NNP MD VB DT NNS CC NN WDT VBP VBN JJ NN NNS IN DT JJ CD NNS .\nIraq has the world 's third largest oil reserves , but it exports less oil now than it did before the U.S.-led invasion .\tNNP VBZ DT NN POS JJ JJS NN NNS , CC PRP VBZ JJR NN RB IN PRP VBD IN DT JJ NN .\nBut analysts point out that prices were declining even before Zarqawi death , as investors reacted to rising oil inventories in the United States and easing tensions over Iran 's nuclear program .\tCC NNS VBP RP IN NNS VBD VBG RB IN NNP NN , IN NNS VBD TO VBG NN NNS IN DT NNP NNPS CC VBG NNS IN NNP POS JJ NN .\nTurkish authorities say two earthquakes have shaken the country 's third largest city , Izmir .\tJJ NNS VBP CD NNS VBP VBN DT NN POS JJ JJS NN , NNP .\nThey say the earthquakes , measuring 5.7 and 5.9 on the Richter scale , were centered beneath the Aegean Sea near the Turkish coast .\tPRP VBP DT NNS , VBG CD CC CD IN DT NNP NN , VBD VBN IN DT NNP NNP IN DT JJ NN .\nSeveral other Turkish cities and Greek islands were rattled by the quakes .\tJJ JJ JJ NNS CC JJ NNS VBD VBN IN DT NNS .\nAt least 30 people were injured .\tIN JJS CD NNS VBD VBN .\nNo severe building damage was reported , but several house chimneys collapsed , and cracks opened in building walls .\tDT JJ NN NN VBD VBN , CC JJ NN NNS VBD , CC NNS VBD IN VBG NNS .\nTurkey lies on several geological fault lines and is often hit by earthquakes .\tNNP VBZ IN JJ JJ NN NNS CC VBZ RB VBN IN NNS .\nA major quake in 1999 killed more than 17,000 people in the northwestern part of the country .\tDT JJ NN IN CD VBD JJR IN CD NNS IN DT JJ NN IN DT NN .\nStill embarrased by the last Super Bowl halftime show , the National Football League has announced Paul McCartney will be the featured performer at the championship game on February 6 in Jacksonville , Florida .\tRB VBN IN DT JJ NNP NNP NN NN , DT NNP NNP NNP VBZ VBN NNP NNP MD VB DT JJ NN IN DT NN NN IN NNP CD IN NNP , NNP .\nJanet Jackson 's breast was bared last February during a duet with pop star Justin Timberlake , which spurred hundreds of thousands of complaints to federal broadcast regulators .\tNNP NNP POS NN VBD VBN JJ NNP IN DT NN IN NN NN NNP NNP , WDT VBD NNS IN NNS IN NNS TO JJ NN NNS .\nNFL spokesman Brian McCarthy says all facets of the upcoming 12-minute show have been reviewed , including talent selection , song selection and costume selection .\tNNP NN NNP NNP VBZ DT NNS IN DT JJ JJ NN VBP VBN VBN , VBG NN NN , NN NN CC NN NN .\nWatched by more than 144 million viewers in the United States last year , the Super Bowl is the nation 's highest-rated TV program and the most-watched single-day sporting event .\tVBN IN JJR IN CD CD NNS IN DT NNP NNPS JJ NN , DT NNP NNP VBZ DT NN POS JJ NN NN CC DT JJ JJ NN NN .\nThe game will be broadcast in more than 200 countries worldwide .\tDT NN MD VB VBN IN JJR IN CD NNS NN .\nIraq 's electoral commission says partial results from Sunday 's elections show the main Shi'ite coalition is leading in six mainly Shi'ite provinces where most of the votes have been counted .\tNNP POS JJ NN VBZ JJ NNS IN NNP POS NNS VBP DT JJ NNP NN VBZ VBG IN CD RB JJ NNS WRB JJS IN DT NNS VBP VBN VBN .\nThe United Iraqi Alliance , which has the support of influential Shi'ite cleric Grand Ayatollah Ali al-Sistani , is ahead with about 75 percent of the 1.6 million ballots counted .\tDT NNP JJ NNP , WDT VBZ DT NN IN JJ NNP NN NNP NNP NNP NNP , VBZ RB IN IN CD NN IN DT CD CD NNS VBN .\nThe candidate list led by interim Prime Minister Iyad Allawi , who is also a Shi'ite , has about 20 percent of the vote in those provinces .\tDT NN NN VBN IN JJ NNP NNP NNP NNP , WP VBZ RB DT NNP , VBZ RB CD NN IN DT NN IN DT NNS .\nFinal results from all 18 provinces are not expected for another week .\tJJ NNS IN DT CD NNS VBP RB VBN IN DT NN .\nIn another development , the head of the Patriotic Union of Kurdistan , Jalal Talabani , said he would seek the post of either prime minister or president in the new government .\tIN DT NN , DT NN IN DT NNP NNP IN NNP , NNP NNP , VBD PRP MD VB DT NN IN DT JJ NN CC NN IN DT JJ NN .\nMeanwhile , at least 10 Iraqis have been killed in attacks Thursday .\tRB , IN JJS CD NNS VBP VBN VBN IN NNS NNP .\nIraqi police say a suicide car bombing in the northern city of Arbil has killed at least 11 people and wounded dozens more - mostly new police recruits .\tJJ NNS VBP DT NN NN NN IN DT JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN NNS RBR : RB JJ NN NNS .\nOfficials say the death toll could rise as many of the wounded were in serious condition .\tNNS VBP DT NN NN MD VB IN NN IN DT VBN VBD IN JJ NN .\nWitness say security forces fired on the car in an effort to stop the suicide bomber , but he raced his vehicle into a field where some 200 new recruits had gathered for training early Monday .\tNNS VBP NN NNS VBN IN DT NN IN DT NN TO VB DT NN NN , CC PRP VBD PRP$ NN IN DT NN WRB DT CD JJ NNS VBD VBN IN NN JJ NNP .\nHours earlier , at least five Iraqi policemen were killed and nearly 20 others wounded in a car bomb explosion near a police station in Baghdad .\tNNS RB , IN JJS CD JJ NNS VBD VBN CC RB CD NNS VBN IN DT NN NN NN IN DT NN NN IN NNP .\nThe U.S. military said the explosion occurred as police responded to an insurgent attack on the Baya police station .\tDT NNP NN VBD DT NN VBD IN NN VBD TO DT JJ NN IN DT NNP NN NN .\nIraqi and U.S. officials say an Iraqi military helicopter has crashed in northern Iraq , killing all eight people aboard , including a U.S. soldier .\tJJ CC NNP NNS VBP DT JJ JJ NN VBZ VBN IN JJ NNP , VBG DT CD NNS RB , VBG DT NNP NN .\nOfficials say the Russian-made helicopter was found Tuesday near the town of Beiji .\tNNS VBP DT JJ NN VBD VBN NNP IN DT NN IN NNP .\nThe aircraft had disappeared in bad weather south of the main northern city of Mosul .\tDT NN VBD VBN IN JJ NN NN IN DT JJ JJ NN IN NNP .\nSeparately , Iraqi Prime Minister Nouri al-Maliki Tuesday ordered Iraqi security forces to work hard to find a kidnapped Chaldean Catholic archbishop .\tRB , JJ NNP NNP NNP NNP NNP VBD JJ NN NNS TO VB JJ TO VB DT VBN NNP NNP NN .\nPaulos Faraj Rahho was kidnapped last Friday in Mosul after three of his companions were killed in a shootout .\tNNP NNP NNP VBD VBN JJ NNP IN NNP IN CD IN PRP$ NNS VBD VBN IN DT NN .\nThe prime minister 's office said Mr. Maliki has ordered the interior minister and security officials in Nineveh province to closely follow the case and make every effort to free the archbishop .\tDT JJ NN POS NN VBD NNP NNP VBZ VBN DT JJ NN CC NN NNS IN NNP NN TO RB VB DT NN CC VB DT NN TO VB DT NN .\nThe U.S. military in Iraq says two American soldiers were killed in separate incidents in the country 's north .\tDT NNP NN IN NNP VBZ CD JJ NNS VBD VBN IN JJ NNS IN DT NN POS NN .\nA statement issued Saturday said one soldier died Friday near Mosul , about 370 kilometers north of Baghdad .\tDT NN VBN NNP VBD CD NN VBD NNP IN NNP , IN CD NNS RB IN NNP .\nThe statement gave no other details about how the soldier died .\tDT NN VBD DT JJ NNS IN WRB DT NN VBD .\nA second statement said a U.S. soldier died Thursday of injuries sustained in a non-combat related incident .\tDT JJ NN VBD DT NNP NN VBD NNP IN NNS VBN IN DT JJ JJ NN .\nThe military says it is investigating both deaths .\tDT NN VBZ PRP VBZ VBG DT NNS .\nMeanwhile , a spokesman for the Kurdistan Workers ' Party , also known as the PKK , said Turkish air strikes on Kurdish rebel targets in northern Iraq killed four rebels earlier this week .\tRB , DT NN IN DT NNP NNP POS NNP , RB VBN IN DT NNP , VBD JJ NN NNS IN JJ NN NNS IN JJ NNP VBD CD NNS RBR DT NN .\nThe spokesman Saturday said the air strikes also wounded five others .\tDT NN NNP VBD DT NN NNS RB VBD CD NNS .\nGerman Chancellor Angela Merkel has vowed that her government will not be ' blackmailed ' by insurgents who have kidnapped a German archaeologist in Iraq .\tJJ NN NNP NNP VBZ VBN IN PRP$ NN MD RB VB `` VBN `` IN NNS WP VBP VBN DT JJ NN IN NNP .\nIn her first major speech to parliament , Ms. Merkel said Germany is doing everything in its power to return the archeologist , Susanne Osthoff and her driver to safety .\tIN PRP$ JJ JJ NN TO NN , NNP NNP VBD NNP VBZ VBG DT IN PRP$ NN TO VB DT NN , NNP NNP CC PRP$ NN TO NN .\nOn the domestic front , Ms. Merkel vowed to re-energize Germany 's sluggish economy .\tIN DT JJ NN , NNP NNP VBD TO VB NNP POS JJ NN .\nShe said that her coalition wants to create the conditions that will make Germany again one of the three fastest growing economies in Europe in 10 years ' time .\tPRP VBD IN PRP$ NN VBZ TO VB DT NNS WDT MD VB NNP RB CD IN DT CD JJS VBG NNS IN NNP IN CD NNS POS NN .\nMs. Merkel was sworn in as Germany 's first ever woman Chancellor on November 22 .\tNNP NNP VBD VBN IN IN NNP POS JJ RB NN NNP IN NNP CD .\nShe heads a government made up of her conservative Christian Democratic Union party and her predecessor Gerhard Schroeder 's more liberal Social Democrats .\tPRP VBZ DT NN VBN IN IN PRP$ JJ NNP NNP NNP NN CC PRP$ NN NNP NNP POS JJR JJ NNP NNPS .\nAmnesty International is calling on the U.N. Security Council to impose an immediate arms embargo on Burma for its violent crackdown on peaceful pro-democracy demonstrators .\tNNP NNP VBZ VBG IN DT NNP NNP NNP TO VB DT JJ NNS NN IN NNP IN PRP$ JJ NN IN JJ JJ NNS .\nThe London-based human rights group says a comprehensive and mandatory embargo should remain in place until Burma 's military rulers verifiably improve human rights , including the release of all political prisoners .\tDT JJ JJ NNS NN VBZ DT JJ CC JJ NN MD VB IN NN IN NNP POS JJ NNS RB VBP JJ NNS , VBG DT NN IN DT JJ NNS .\nAmnesty International 's deputy program director for the Asia / Pacific region , Catherine Baber , spoke to VOA 's Mandy Clark about the treatment of protesters in Burma .\tNNP NNP POS NN NN NN IN DT NNP NNP NNP NN , NNP NNP , VBD TO NNP POS NNP NNP IN DT NN IN NNS IN NNP .\nLouisiana state officials say the flooding of New Orleans has created environmental problems that may take years to correct .\tNNP NN NNS VBP DT NN IN NNP NNP VBZ VBN JJ NNS WDT MD VB NNS TO VB .\nThe state 's top environmental official , Mike McDaniel , told reporters on Tuesday that Hurricane Katrina has left the city with ' almost unimaginable ' problems .\tDT NN POS JJ JJ NN , NNP NNP , VBD NNS IN NNP IN NNP NNP VBZ VBN DT NN IN `` RB JJ `` NNS .\nConcern is centered on the floodwaters contaminated from raw sewage , debris , and other hazardous substances .\tNN VBZ VBN IN DT NNS VBN IN JJ NN , NN , CC JJ JJ NNS .\nThe water has been further tainted by two oil spills from local storage facilities .\tDT NN VBZ VBN RB VBN IN CD NN NNS IN JJ NN NNS .\nThe U.S. Environmental Protection Agency has warned people to limit contact with the water due to the risk of illness .\tDT NNP NNP NNP NNP VBZ VBN NNS TO VB NN IN DT NN JJ TO DT NN IN NN .\nSome experts have expressed concern that the water may kill fish and destroy ecosystems as engineers pump it back into Lake Pontchartrain and the Mississippi River .\tDT NNS VBP VBN NN IN DT NN MD VB NN CC VB NNS IN NNS VBP PRP RB IN NNP NNP CC DT NNP NNP .\nBut Mr. McDaniel remains hopeful for the long-term , saying nature is resilient and is likely to recover .\tCC NNP NNP VBZ JJ IN DT JJ , VBG NN VBZ JJ CC VBZ JJ TO VB .\nNorth Korea has asked Japan to return remains Pyongyang claims belong to a Japanese woman kidnapped decades ago .\tNNP NNP VBZ VBN NNP TO VB NNS JJ NNS VBP TO DT JJ NN VBN NNS RB .\nThe demand , published by North Korean state-run media , comes after Japanese forensic experts said the remains were not those of Megumi Yokota , who was kidnapped in 1977 .\tDT NN , VBN IN JJ JJ JJ NNS , VBZ IN JJ JJ NNS VBD DT NNS VBD RB DT IN NNP NNP , WP VBD VBN IN CD .\nNorth Korea says Ms. Yokota committed suicide in 1994 , and accused certain forces in Japan of faking the test results to promote anti-Pyongyang sentiment .\tNNP NNP VBZ NNP NNP VBD NN IN CD , CC VBD JJ NNS IN NNP IN VBG DT NN NNS TO VB JJ NN .\nJapanese media reported Wednesday that Tokyo will ask North Korea conduct another investigation into the fate of eight kidnap victims from the 1970s and 1980s that Pyongyang says have died , as well as two more whose status is unclear .\tJJ NNS VBD NNP IN NNP MD VB NNP NNP NN DT NN IN DT NN IN CD NN NNS IN DT NNS CC NNS WDT NNP VBZ VBP VBN , RB RB IN CD JJR WP$ NN VBZ JJ .\nU.S. intelligence officials have concluded with what they call ' high confidence ' that an audiotape posted on an Islamist website contains the voice of terrorist mastermind Osama bin Laden .\tNNP NN NNS VBP VBN IN WP PRP VBP `` JJ NN `` IN DT NN VBN IN DT NN NN VBZ DT NN IN NN NN NNP NNP NNP .\nOfficials say the tape , which surfaced Thursday , is consistent in tone and message with previous ones .\tNNS VBP DT NN , WDT VBD NNP , VBZ JJ IN NN CC NN IN JJ NNS .\nThe message , which runs more than one hour in length , criticizes the Saudi monarchy for unrest in the country , and mocks its attempts at reform , saying change will only come when the monarchy is removed .\tDT NN , WDT VBZ JJR IN CD NN IN NN , VBZ DT JJ NN IN NN IN DT NN , CC VBZ PRP$ NNS IN NN , VBG NN MD RB VB WRB DT NN VBZ VBN .\nThe speaker on the tape also encourages attacks against oil installations in Iraq and the Persian Gulf , and praises the militants who attacked the U.S. consulate in the Saudi city of Jeddah earlier this month , killing five non-American staff members .\tDT NN IN DT NN RB VBZ NNS IN NN NNS IN NNP CC DT NNP NNP , CC VBZ DT NNS WP VBD DT NNP NN IN DT JJ NN IN NNP RBR DT NN , VBG CD JJ NN NNS .\nThis was the latest in a wave of attacks against Saudi and Western interests in the kingdom , which has been battling suspected al-Qaida-linked militants since May 2003 .\tDT VBD DT JJS IN DT NN IN NNS IN JJ CC JJ NNS IN DT NN , WDT VBZ VBN VBG JJ JJ NNS IN NNP CD .\nSudan 's government and two rebel groups have pledged to continue seeking an end to more than two years of fighting in the western Darfur region .\tNNP POS NN CC CD JJ NNS VBP VBN TO VB VBG DT NN TO JJR IN CD NNS IN VBG IN DT JJ NNP NN .\nRepresentatives meeting in Nigeria Tuesday signed a ' declaration of principles ' intended to guide future peace talks sponsored by the African Union .\tNNP NN IN NNP NNP VBD DT `` NN IN NNS `` VBN TO VB JJ NN NNS VBN IN DT NNP NNP .\nAU officials say the next round of talks will begin August 24 .\tNNP NNS VBP DT JJ NN IN NNS MD VB NNP CD .\nThe latest deal calls for a solution to refugee and security problems , but does not include detailed proposals .\tDT JJS NN VBZ IN DT NN TO VB CC NN NNS , CC VBZ RB VB JJ NNS .\nMeantime , a top U.S. official has expressed concern at humanitarian conditions in Darfur , despite an apparent decline in violence there .\tRB , DT JJ NNP NN VBZ VBN NN IN JJ NNS IN NNP , IN DT JJ NN IN NN RB .\nDeputy Secretary of State Robert Zoellick says health conditions remain serious in Darfur , where fighting has displaced more than 2 million people .\tNNP NNP IN NNP NNP NNP VBZ NN NNS VBP JJ IN NNP , WRB NN VBZ VBN JJR IN CD CD NNS .\nHe is to travel to Darfur and Khartoum later this week .\tPRP VBZ TO VB TO NNP CC NNP RB DT NN .\nMexican security forces have seized 105 tons of marijuana in the border city of Tijuana , the largest drug bust in the Latin American nation in recent years .\tJJ NN NNS VBP VBN CD NNS IN NN IN DT NN NN IN NNP , DT JJS NN NN IN DT JJ JJ NN IN JJ NNS .\nAuthorities say the drugs were seized Monday during a series of raids conducted by soldiers and police in three neighborhoods that led to the arrest of 11 people .\tNNS VBP DT NNS VBD VBN NNP IN DT NN IN NNS VBN IN NNS CC NNS IN CD NNS WDT VBD TO DT NN IN CD NNS .\nArmy General Alfonso Duarte said the marijuana carried a street value of more than $ 340 million .\tNNP NNP NNP NNP VBD DT NN VBD DT NN NN IN JJR IN $ CD CD .\nDuarte said the marijuana was wrapped in 10,000 separate packages , and labeled with various signs and logos .\tNNP VBD DT NN VBD VBN IN CD JJ NNS , CC VBN IN JJ NNS CC NNS .\nHe said the drugs were being prepared for shipment and distribution to the United States .\tPRP VBD DT NNS VBD VBG VBN IN NN CC NN TO DT NNP NNPS .\nMexican military forces have been engaged in a brutal struggle against the country 's violent drug cartels .\tJJ JJ NNS VBP VBN VBN IN DT JJ NN IN DT NN POS JJ NN NNS .\nNearly 30,000 people have been killed in Mexico 's drug war since President Felipe Calderon took office in late 2006 and began cracking down on the cartels .\tRB CD NNS VBP VBN VBN IN NNP POS NN NN IN NNP NNP NNP VBD NN IN JJ CD CC VBD VBG RP IN DT NNS .\nAt least 223 people in Latin America have been killed in several days of severe weather triggered by Hurricane Stan .\tIN JJS CD NNS IN NNP NNP VBP VBN VBN IN JJ NNS IN JJ NN VBN IN NNP NNP .\nThe region has been pounded with heavy rains , mudslides and flooding from the storm , which came ashore Tuesday on Mexico 's eastern Gulf Coast .\tDT NN VBZ VBN VBN IN JJ NNS , NNS CC NN IN DT NN , WDT VBD RB NNP IN NNP POS JJ NNP NNP .\nRescuers in Guatemala Thursday pulled 40 bodies from a mudslide about 100 kilometers west of Guatemala City .\tNNS IN NNP NNP VBD CD NNS IN DT NN IN CD NNS JJS IN NNP NNP .\nDozens of other people were killed elsewhere in Central America and Mexico after the storm ripped through the region , triggering the floods and mudslides and knocking down power lines and ripping apart houses .\tNNS IN JJ NNS VBD VBN RB IN NNP NNP CC NNP IN DT NN VBD IN DT NN , VBG DT NNS CC NNS CC VBG RP NN NNS CC VBG RB NNS .\nTens of thousands of people fled their homes , and many remain homeless .\tNNS IN NNS IN NNS VBD PRP$ NNS , CC JJ VBP JJ .\nThe United Nations says it is rushing assistance to El Salvador and Costa Rica , and remains ready to mobilize international support for emergency relief and recovery efforts .\tDT NNP NNP VBZ PRP VBZ VBG NN TO NNP NNP CC NNP NNP , CC VBZ JJ TO VB JJ NN IN NN NN CC NN NNS .\nFormer Sudanese rebels say government forces entered rebel territory in eastern Sudan and threatened to evict them .\tJJ JJ NNS VBP NN NNS VBD JJ NN IN JJ NNP CC VBD TO VB PRP .\nThe former southern rebels from the Sudan People 's Liberation Movement say about three-thousand soldiers entered the eastern town of Hamesh Koreb Wednesday and ordered them to leave .\tDT JJ JJ NNS IN DT NNP NNP POS NNP NNP VBP IN JJ NNS VBD DT JJ NN IN NNP NNP NNP CC VBD PRP TO VB .\nA spokesman for the former rebels called the move a violation of the peace deal signed one year ago between the southern rebels and the government .\tDT NN IN DT JJ NNS VBD DT NN DT NN IN DT NN NN VBD CD NN IN IN DT JJ NNS CC DT NN .\nThe former rebels had agreed to leave the town by January 9 .\tDT JJ NNS VBD VBN TO VB DT NN IN NNP CD .\nBut the rebel spokesman said that deadline could not be met due to logistical problems - and that the rebels had informed Khartoum of the delay .\tCC DT NN NN VBD IN NN MD RB VB VBN JJ TO JJ NNS : CC IN DT NNS VBD VBN NNP IN DT NN .\nEarlier Wednesday , eastern rebels said they had been attacked in the area by Sudanese armed forces .\tRBR NNP , JJ NNS VBD PRP VBD VBN VBN IN DT NN IN JJ JJ NNS .\nDuring the southern civil war , southern rebels fought alongside eastern rebels .\tIN DT JJ JJ NN , JJ NNS VBD RB JJ NNS .\nThe southern rebels have joined in a power-sharing government , while the eastern rebels have not .\tDT JJ NNS VBP VBN IN DT JJ NN , IN DT JJ NNS VBP RB .\nBurma is reporting new cases of bird flu among poultry at a farm north of Rangoon , the fifth such outbreak in the country in recent weeks .\tNNP VBZ VBG JJ NNS IN NN NN IN NN IN DT NN NN IN NNP , DT NN JJ NN IN DT NN IN JJ NNS .\nBurmese state media say 1,600 chickens died from the H5N1 strain of the virus on a farm in Hmawbi township ( 40 kilometers north of Rangoon ) over the past week .\tJJ NN NNS VBP CD NNS VBD IN DT NNP NN IN DT NN IN DT NN IN NNP NN LRB CD NNS RB IN NNP RRB IN DT JJ NN .\nThe farm 's remaining 20,000 poultry were culled as a precautionary measure .\tDT NN POS VBG CD NN VBD VBN IN DT JJ NN .\nThe state-controlled New Light of Myanmar newspaper says the new outbreak may have been caused by the movement of people and birds in the area .\tDT JJ NNP NNP IN NNP NN VBZ DT JJ NN MD VB VBN VBN IN DT NN IN NNS CC NNS IN DT NN .\nIt says authorities have banned the sale and transport of poultry within six-kilometers of the farm .\tPRP VBZ NNS VBP VBN DT NN CC NN IN NN IN NNS IN DT NN .\nThe latest series of bird flu outbreaks in and around Rangoon began last month .\tDT JJS NN IN NN NN NNS IN CC IN NNP VBD JJ NN .\nThey are the first reported in Burma since March 2006 .\tPRP VBP DT JJ VBN IN NNP IN NNP CD .\nA group of leading Muslim scholars has sent holiday greetings to Christians worldwide .\tDT NN IN VBG NNP NNS VBZ VBN NN NNS TO NNPS NN .\nIn wishing a joyful and peaceful Christmas , the group also gave thanks for what it calls the ' beautiful and gracious ' response to its call for more openness between the faiths .\tIN VBG DT JJ CC JJ NNP , DT NN RB VBD NNS IN WP PRP VBZ DT `` JJ CC JJ `` NN TO PRP$ NN IN JJR NN IN DT NNS .\nThe group said it hopes the coming year will be one of forgiveness and where the dignity of human life is upheld .\tDT NN VBD PRP VBZ DT JJ NN MD VB CD IN NN CC WRB DT NN IN JJ NN VBZ VBN .\nPope Benedict last month accepted an invitation by the 138 Muslim scholars to meet and talk about more cooperation between Muslims and Christians .\tNNP NNP JJ NN VBD DT NN IN DT CD NNP NNS TO VB CC VB IN JJR NN IN NNPS CC NNPS .\nAuthorities in Indian Kashmir say two suspected Islamic militants have been killed and 15 people wounded in two separate incidents .\tNNS IN JJ NNP VBP CD JJ JJ NNS VBP VBN VBN CC CD NNS VBN IN CD JJ NNS .\nIndian army officials say the militants were shot and killed after they crossed into Indian Kashmir from the Pakistani side of the disputed region .\tJJ NN NNS VBP DT NNS VBD VBN CC VBN IN PRP VBD IN JJ NNP IN DT JJ NN IN DT JJ NN .\nThey say one Indian security officer was wounded in the fighting .\tPRP VBP CD JJ NN NN VBD VBN IN DT NN .\nIn the town of Bijbehera , south of Srinagar , suspected militants hurled a grenade at a police patrol , wounding 15 people .\tIN DT NN IN NNP , NN IN NNP , JJ NNS VBD DT NN IN DT NN NN , VBG CD NNS .\nMilitant separatist groups in Indian Kashmir continue their attacks against government targets , saying they oppose the ongoing peace process between India and Pakistan .\tJJ NN NNS IN NNP NNP VBP PRP$ NNS IN NN NNS , VBG PRP VBP DT JJ NN NN IN NNP CC NNP .\nKashmiri militants have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan .\tJJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP .\nThe insurgency has claimed tens of thousand of lives .\tDT NN VBZ VBN NNS IN CD IN NNS .\nThree contractors working for the U.N. World Food Program have been kidnapped in Sudan 's Darfur region .\tCD NNS VBG IN DT NNP NNP NNP NNP VBP VBN VBN IN NNP POS NNP NN .\nA WFP spokeswoman Amor Almagro said the three are members of a helicopter crew managed by the agency .\tDT NNP NN NNP NNP VBD DT CD VBP NNS IN DT NN NN VBN IN DT NN .\nShe said they were abducted Thursday at an airstrip southeast of Geneina , the capital of West Darfur state .\tPRP VBD PRP VBD VBN NNP IN DT NN NN IN NNP , DT NN IN NNP NNP NN .\nBulgaria 's foreign ministry says all three men are Bulgarian nationals .\tNNP POS JJ NN VBZ DT CD NNS VBP JJ NNS .\nBandits and armed groups frequently kidnap U.N. and international aid workers in Darfur .\tNNS CC JJ NNS RB VBP NNP CC JJ NN NNS IN NNP .\nThe kidnappings have increased since March 2009 , when the International Criminal Court indicted Sudanese President Omar al-Bashir for alleged war crimes in the region .\tDT NNS VBP VBN IN NNP CD , WRB DT NNP NNP NNP VBD JJ NNP NNP NNP IN JJ NN NNS IN DT NN .\nMost of the hostages have been released unharmed .\tJJS IN DT NNS VBP VBN VBN JJ .\nDarfur has experienced more than seven years of conflict since rebels took up arms against Mr. Bashir 's government in 2003 .\tNNP VBZ VBN JJR IN CD NNS IN NN IN NNS VBD RP NNS IN NNP NNP POS NN IN CD .\nThe United Nations says some 3,00,000 people have died in the conflict , with another 2.7 million displaced from their homes .\tDT NNP NNP VBZ DT CD NNS VBP VBN IN DT NN , IN DT CD CD VBN IN PRP$ NNS .\nThe Indonesian government has sued Newmont Mining Corporation for $ 133 million over alleged pollution near one of its gold mines .\tDT JJ NN VBZ VBN NNP NNP NNP IN $ CD CD IN JJ NN IN CD IN PRP$ NN NNS .\nThe Indonesian subsidiary of the American mining giant faces charges that it released waste and heavy metals into the air and water at Buyat Bay in northern Sulawesi province .\tDT JJ NN IN DT JJ NN NN VBZ NNS IN PRP VBD NN CC JJ NNS IN DT NN CC NN IN NNP NNP IN JJ NNP NN .\nNewmont 's American president also faces charges in the suit .\tNNP POS JJ NN RB VBZ NNS IN DT NN .\nA lawyer for the mining company says Jakarta 's case is baseless .\tDT NN IN DT NN NN VBZ NNP POS NN VBZ JJ .\nTests on the bay 's water have produced conflicting results .\tNNS IN DT NN POS NN VBP VBN JJ NNS .\nTwo studies indicated no pollution in the bay .\tCD NNS VBD DT NN IN DT NN .\nHowever a subsequent government probe reported elevated arsenic levels .\tRB DT JJ NN NN VBD VBN JJ NNS .\nNewmont has admitted releasing mercury into the environment at the gold mine , but denies that it sickened local people .\tNNP VBZ VBN VBG NN IN DT NN IN DT NN NN , CC VBZ IN PRP VBD JJ NNS .\nLebanon has again rejected calls from the United Nations to disarm Shi'ite Hezbollah militants , saying it regards the group as a legitimate organization opposing the Israeli occupation of Arab lands .\tNNP VBZ RB VBN NNS IN DT NNP NNPS TO VB NNP NNP NNS , VBG PRP VBZ DT NN IN DT JJ NN VBG DT JJ NN IN JJ NNS .\nIn Beirut Thursday , Information Minister Ghazi Aridi said any differences between the government and Hezbollah would be settled through internal dialogue .\tIN NNP NNP , NNP NNP NNP NNP VBD DT NNS IN DT NN CC NNP MD VB VBN IN JJ NN .\nHe spoke one day after the U.N. Security Council received a report saying Lebanon has not done enough to disarm militias in the country .\tPRP VBD CD NN IN DT NNP NNP NNP VBD DT NN VBG NNP VBZ RB VBN RB TO VB NNS IN DT NN .\nThe report singled out the Iranian- and Syrian-backed Hezbollah , which the United States has labeled a terrorist organization .\tDT NN VBD RP DT NNP CC JJ NNP , WDT DT NNP NNPS VBZ VBN DT JJ NN .\nIt cited Hezbollah for a series of attacks on Israeli forces occupying a disputed area near the borders of Syria , Israel and Lebanon .\tPRP VBD NNP IN DT NN IN NNS IN JJ NNS VBG DT JJ NN IN DT NNS IN NNP , NNP CC NNP .\nMeanwhile , Lebanese troops near the Syrian border remained deployed Thursday near Syrian-backed Palestinian militant bases , where gunmen shot and killed a civilian contractor on Tuesday .\tRB , JJ NNS IN DT JJ NN VBD VBN NNP IN JJ JJ JJ NNS , WRB NNS VBD CC VBD DT JJ NN IN NNP .\nA bomb blast at a police station in central Bosnia-Herzegovina has killed one police officer and injured six others .\tDT NN NN IN DT NN NN IN JJ NNP VBZ VBN CD NN NN CC VBD CD NNS .\nIt is unclear whether someone threw the bomb in the town of Bugojno or it was planted in the building .\tPRP VBZ JJ IN DT VBD DT NN IN DT NN IN NNP CC PRP VBD VBN IN DT NN .\nWitnesses say the blast seriously damaged nearby buildings and destroyed parked cars .\tNNS VBP DT NN RB VBN JJ NNS CC VBN JJ NNS .\nPolice have arrested at least three suspects , but no one has yet claimed responsibility for the attack .\tNNS VBP VBN IN JJS CD NNS , CC DT NN VBZ RB VBN NN IN DT NN .\nGermany has freed a Lebanese man who was sentenced to life in prison for hijacking an American airliner and killing a U.S. Navy diver 20 years ago .\tNNP VBZ VBN DT JJ NN WP VBD VBN TO NN IN NN IN VBG DT JJ NN CC VBG DT NNP NNP NN CD NNS RB .\nGerman justice officials confirmed Tuesday that Mohammed Ali Hamadi was released on parole after a routine review of his case , and they say he already has left Germany .\tJJ NN NNS VBD NNP IN NNP NNP NNP VBD VBN IN NN IN DT JJ NN IN PRP$ NN , CC PRP VBP PRP RB VBZ VBN NNP .\nSources in Lebanon say Hamadi , a member of the Hezbollah militant group , has returned to Beirut , the focal point of the 1985 hijacking .\tNNS IN NNP VBP NNP , DT NN IN DT NNP JJ NN , VBZ VBN TO NNP , DT JJ NN IN DT CD NN .\nHamadi was convicted in the hijacking of a TWA airliner that took off from Athens in 1985 .\tNNP VBD VBN IN DT NN IN DT NNP NN WDT VBD RP IN NNP IN CD .\nU.S. Navy diver Robert Stethem , a passenger on the plane , was killed while the commandeered jet was on the ground in Beirut .\tNNP NNP NN NNP NNP , DT NN IN DT NN , VBD VBN IN DT JJ NN VBD IN DT NN IN NNP .\nThe German Foreign Ministry has denied any link between Hamadi 's parole and the recent release of a German hostage in Iraq .\tDT JJ NNP NNP VBZ VBN DT NN IN NNP POS NN CC DT JJ NN IN DT JJ NN IN NNP .\nChocolate lovers around the world are invited to Armenia to take a bite of the world 's largest chocolate bar .\tNNP NNS IN DT NN VBP VBN TO NNP TO VB DT NN IN DT NN POS JJS NN NN .\nThe 4,410-kilogram dark chocolate treat will be offered up to the public on October 16 .\tDT JJ JJ NN NN MD VB VBN RP TO DT NN IN NNP CD .\nThe Guinness Book of World Records certified the giant bar as the world 's largest in a ceremony in Yerevan over the weekend .\tDT NNP NNP IN NNP NNP VBD DT JJ NN IN DT NN POS JJS IN DT NN IN NNP IN DT NN .\nMade by the Grand Candy factory , the massive chocolate is 70 percent cocoa mass and was made from all natural ingredients using cocoa beans from Ghana .\tVBN IN DT NNP NNP NN , DT JJ NN VBZ CD NN NN NN CC VBD VBN IN RB JJ NNS VBG NN NNS IN NNP .\nIt is more than 5.5 meters long , 2.7 meters wide and 25 centimeters thick .\tPRP VBZ JJR IN CD NNS RB , CD NNS JJ CC CD NNS JJ .\nThe previous record was for a 3,587-kilogram chocolate bar made by Elah Dufour-Novi in Alessandria , Piemonte , Italy , in October 2007 .\tDT JJ NN VBD IN DT JJ NN NN VBN IN NNP NNP IN NNP , NNP , NNP , IN NNP CD .\nThe mayor of Mexico City has resigned in order to pursue the presidency in next year 's national elections .\tDT NN IN NNP NNP VBZ VBN IN NN TO VB DT NN IN JJ NN POS JJ NNS .\nAndres Manuel Lopez Obrador , who is seen as a champion of the poor , announced Friday to thousands of cheering supporters in the Mexican capital that he would fight to transform Mexico .\tNNP NNP NNP NNP , WP VBZ VBN IN DT NN IN DT NN , VBD NNP TO NNS IN VBG NNS IN DT JJ NN IN PRP MD VB TO VB NNP .\nHe listed his numerous achievements as mayor , although some residents say he has not done enough to tackle crime in a city where kidnapping is rampant .\tPRP VBD PRP$ JJ NNS IN NN , IN DT NNS VBP PRP VBZ RB VBN RB TO VB NN IN DT NN WRB NN VBZ JJ .\nMr. Lopez Obrador is known for social policies that include construction projects and government funding for single mothers , the elderly and the disabled .\tNNP NNP NNP VBZ VBN IN JJ NNS WDT VBP NN NNS CC NN NN IN JJ NNS , DT NN CC DT NN .\nThe popular 51-year-old mayor leads public opinion polls ahead of the 2006 presidential race .\tDT JJ JJ NN VBZ JJ NN NNS RB IN DT CD JJ NN .\nThe election of Mr. Lopez Obrador would mark a clear change in direction from the free-market reforms supported by incumbent President Vicente Fox , who is limited to one term in office .\tDT NN IN NNP NNP NNP MD VB DT JJ NN IN NN IN DT JJ NNS VBN IN JJ NNP NNP NNP , WP VBZ VBN TO CD NN IN NN .\nSavin Corp. reported a third-quarter net loss of $ 35.2 million , or 31 cents a share , compared with year-earlier profit of $ 3.8 million , or one cent a share .\tNNP NNP VBD DT JJ JJ NN IN $ CD CD , CC CD NNS DT NN , VBN IN JJ NN IN $ CD CD , CC CD NN DT NN .\nA spokesman for the Stamford , Conn. based company said operations had a loss of $ 5.5 million for the quarter ; in addition , the loss was magnified by nonrecurring charges totaling $ 23.5 million and $ 8.2 million in asset-valuation adjustments that he described as ' unusual . '\tDT NN IN DT NNP , NN VBN NN VBD NNS VBD DT NN IN $ CD CD IN DT NN : IN NN , DT NN VBD VBN IN VBG NNS VBG $ CD CD CC $ CD CD IN JJ NNS IN PRP VBD IN `` JJ . ``\nThe charges were partly offset by a $ 2 million gain on the sale of investments of two joint ventures , he said .\tDT NNS VBD RB VBN IN DT $ CD CD NN IN DT NN IN NNS IN CD JJ NNS , PRP VBD .\nRevenue declined 8 % to $ 85.7 million , from $ 93.3 million a year earlier .\tNN VBD CD NN TO $ CD CD , IN $ CD CD DT NN RBR .\nSavin cited ' a general softening in the demand for office products in the market segments in which Savin competes . '\tNNP VBD `` DT JJ NN IN DT NN IN NN NNS IN DT NN NNS IN WDT NNP VBZ . ``\nFinland has a highly industrialized , largely free-market economy with per capita output roughly that of Austria , Belgium , the Netherlands , and Sweden .\tNNP VBZ DT RB VBN , RB JJ NN IN IN NN NN RB IN IN NNP , NNP , DT NNP , CC NNP .\nTrade is important with exports accounting for over one third of GDP in recent years .\tNNP VBZ JJ IN NNS VBG IN IN CD NN IN NN IN JJ NNS .\nFinland is strongly competitive in manufacturing - principally the wood , metals , engineering , telecommunications , and electronics industries .\tNNP VBZ RB JJ IN VBG : RB DT NN , NNS , NN , NN , CC NNS NNS .\nFinland excels in high-tech exports such as mobile phones .\tNNP NNS IN JJ NNS JJ IN JJ NNS .\nExcept for timber and several minerals , Finland depends on imports of raw materials , energy , and some components for manufactured goods .\tIN IN NN CC JJ NNS , NNP VBZ IN NNS IN JJ NNS , NN , CC DT NNS IN JJ NNS .\nBecause of the climate , agricultural development is limited to maintaining self-sufficiency in basic products .\tIN IN DT NN , JJ NN VBZ VBN TO VBG NN IN JJ NNS .\nForestry , an important export earner , provides a secondary occupation for the rural population .\tNN , DT JJ NN NN , VBZ DT JJ NN IN DT JJ NN .\nFinland had been one of the best performing economies within the EU in recent years and its banks and financial markets avoided the worst of global financial crisis .\tNNP VBD VBN CD IN DT JJS VBG NNS IN DT NNP IN JJ NNS CC PRP$ NNS CC JJ NNS VBD DT JJS IN JJ JJ NN .\nHowever , the world slowdown hit exports and domestic demand hard in 2009 , with Finland experiencing one of the deepest contractions in the euro zone .\tRB , DT NN NN VBD NNS CC JJ NN RB IN CD , IN NNP VBG CD IN DT JJS NNS IN DT NN NN .\nA recovery of exports , domestic trade , and household consumption stimulated economic growth in 2010 .\tDT NN IN NNS , JJ NN , CC NN NN VBD JJ NN IN CD .\nThe recession left a deep mark on general government finances and the debt ratio , turning previously strong budget surpluses into deficits .\tDT NN VBD DT JJ NN IN JJ NN NNS CC DT NN NN , VBG RB JJ NN NNS IN NNS .\nDespite good growth prospects , general government finances will remain in deficit during the next few years .\tIN JJ NN NNS , JJ NN NNS MD VB IN NN IN DT JJ JJ NNS .\nThe great challenge of economic policy will be to implement a post-recession exit strategy in which measures supporting growth will be combined with general government adjustment measures .\tDT JJ NN IN JJ NN MD VB TO VB DT JJ NN NN IN WDT NNS VBG NN MD VB VBN IN JJ NN NN NNS .\nLonger-term , Finland must address a rapidly aging population and decreasing productivity that threaten competitiveness , fiscal sustainability , and economic growth .\tRB , NNP MD VB DT RB VBG NN CC VBG NN WDT VBP NN , JJ NN , CC JJ NN .\nMost Cambodians consider themselves to be Khmers , descendants of the Angkor Empire that extended over much of Southeast Asia and reached its zenith between the 10th and 13th centuries .\tJJS NNS VBP PRP TO VB NNS , NNS IN DT NNP NN WDT VBD IN NN IN NNP NNP CC VBD PRP$ NN IN DT JJ CC JJ NNS .\nAttacks by the Thai and Cham ( from present-day Vietnam ) weakened the empire , ushering in a long period of decline .\tNNS IN DT JJ CC NNP LRB IN JJ NNP RRB VBD DT NN , VBG IN DT JJ NN IN NN .\nThe king placed the country under French protection in 1863 and it became part of French Indochina in 1887 .\tDT NN VBD DT NN IN JJ NN IN CD CC PRP VBD NN IN JJ NNP IN CD .\nFollowing Japanese occupation in World War II , Cambodia gained full independence from France in 1953 .\tVBG JJ NN IN NNP NNP NNP , NNP VBD JJ NN IN NNP IN CD .\nIn April 1975 , after a five-year struggle , Communist Khmer Rouge forces captured Phnom Penh and evacuated all cities and towns .\tIN NNP CD , IN DT JJ NN , NNP NNP NNP NNS VBD NNP NNP CC VBD DT NNS CC NNS .\nAt least 1.5 million Cambodians died from execution , forced hardships , or starvation during the Khmer Rouge regime under POL POT .\tIN JJS CD CD NNS VBD IN NN , JJ NNS , CC NN IN DT NNP NNP NN IN NNP NNP .\nA December 1978 Vietnamese invasion drove the Khmer Rouge into the countryside , began a 10-year Vietnamese occupation , and touched off almost 13 years of civil war .\tDT NNP CD JJ NN VBD DT NNP NNP IN DT NN , VBD DT JJ JJ NN , CC VBD RP RB CD NNS IN JJ NN .\nThe 1991 Paris Peace Accords mandated democratic elections and a ceasefire , which was not fully respected by the Khmer Rouge .\tDT CD NNP NNP NNP VBD JJ NNS CC DT NN , WDT VBD RB RB VBN IN DT NNP NNP .\nUN-sponsored elections in 1993 helped restore some semblance of normalcy under a coalition government .\tJJ NNS IN CD VBD VB DT NN IN NN IN DT NN NN .\nFactional fighting in 1997 ended the first coalition government , but a second round of national elections in 1998 led to the formation of another coalition government and renewed political stability .\tJJ NN IN CD VBD DT JJ NN NN , CC DT JJ NN IN JJ NNS IN CD VBD TO DT NN IN DT NN NN CC VBN JJ NN .\nThe remaining elements of the Khmer Rouge surrendered in early 1999 .\tDT VBG NNS IN DT NNP NNP VBD IN JJ CD .\nSome of the surviving Khmer Rouge leaders have been tried or are awaiting trial for crimes against humanity by a hybrid UN-Cambodian tribunal supported by international assistance .\tDT IN DT VBG NNP NNP NNS VBP VBN VBN CC VBP VBG NN IN NNS IN NN IN DT JJ JJ NN VBN IN JJ NN .\nElections in July 2003 were relatively peaceful , but it took one year of negotiations between contending political parties before a coalition government was formed .\tNNS IN NNP CD VBD RB JJ , CC PRP VBD CD NN IN NNS IN VBG JJ NNS IN DT NN NN VBD VBN .\nIn October 2004 , King Norodom SIHANOUK abdicated the throne and his son , Prince Norodom SIHAMONI , was selected to succeed him .\tIN NNP CD , NNP NNP NNP VBD DT NN CC PRP$ NN , NNP NNP NNP , VBD VBN TO VB PRP .\nLocal elections were held in Cambodia in April 2007 , with little of the pre-election violence that preceded prior elections .\tJJ NNS VBD VBN IN NNP IN NNP CD , IN NN IN DT JJ NN IN VBD JJ NNS .\nNational elections in July 2008 were relatively peaceful .\tJJ NNS IN NNP CD VBD RB JJ .\nAboriginal settlers arrived on the continent from Southeast Asia about 40,000 years before the first Europeans began exploration in the 17th century .\tNNP NNS VBD IN DT NN IN NNP NNP IN CD NNS IN DT JJ NNS VBD NN IN DT JJ NN .\nNo formal territorial claims were made until 1770 , when Capt. James COOK took possession of the east coast in the name of Great Britain ( all of Australia was claimed as British territory in 1829 with the creation of the colony of Western Australia ) .\tDT JJ JJ NNS VBD VBN IN CD , WRB NNP NNP NNP VBD NN IN DT JJ NN IN DT NN IN NNP NNP LRB DT IN NNP VBD VBN IN JJ NN IN CD IN DT NN IN DT NN IN NNP NNP RRB .\nSix colonies were created in the late 18th and 19th centuries ; they federated and became the Commonwealth of Australia in 1901 .\tCD NNS VBD VBN IN DT JJ JJ CC JJ NNS ; PRP VBD CC VBD DT NN IN NNP IN CD .\nThe new country took advantage of its natural resources to rapidly develop agricultural and manufacturing industries and to make a major contribution to the British effort in World Wars I and II .\tDT JJ NN VBD NN IN PRP$ JJ NNS TO RB VB JJ CC NN NNS CC TO VB DT JJ NN TO DT JJ NN IN NNP NNP NNP CC NNP .\nIn recent decades , Australia has transformed itself into an internationally competitive , advanced market economy .\tIN JJ NNS , NNP VBZ VBN PRP IN DT RB JJ , JJ NN NN .\nIt boasted one of the OECD 's fastest growing economies during the 1990s , a performance due in large part to economic reforms adopted in the 1980s .\tPRP VBD CD IN DT NNP POS JJS VBG NNS IN DT NNS , DT NN JJ IN JJ NN TO JJ NNS VBN IN DT NNS .\nLong-term concerns include ageing of the population , pressure on infrastructure , and environmental issues such as frequent droughts .\tJJ NNS VBP VBG IN DT NN , NN IN NN , CC JJ NNS JJ IN JJ NNS .\nThe economy depends largely on financial assistance from the UK , which amounted to about $ 27 million in FY06/07 or more than twice the level of annual budgetary revenues .\tDT NN VBZ RB IN JJ NN IN DT NNP , WDT VBD TO IN $ CD CD IN CD CC JJR IN RB DT NN IN JJ JJ NNS .\nThe local population earns income from fishing , raising livestock , and sales of handicrafts .\tDT JJ NN VBZ NN IN NN , VBG NN , CC NNS IN NNS .\nBecause there are few jobs , 25 % of the work force has left to seek employment on Ascension Island , on the Falklands , and in the UK .\tIN EX VBP JJ NNS , CD NN IN DT NN NN VBZ VBN TO VB NN IN NNP NNP , IN DT NNS , CC IN DT NNP .\nEconomic activity is limited to providing services to the military and their families located in Dhekelia .\tJJ NN VBZ VBN IN VBG NNS TO DT NN CC PRP$ NNS VBN IN NNP .\nAll food and manufactured goods must be imported .\tDT NN CC JJ NNS MD VB VBN .\nA SHEPHERD penning his sheep in the fold for the night was about to shut up a wolf with them , when his Dog perceiving the wolf said , ' Master , how can you expect the sheep to be safe if you admit a wolf into the fold ? '\tDT NN VBG PRP$ NNS IN DT NN IN DT NN VBD RB TO VB RP DT NN IN PRP , WRB PRP$ NN VBG DT NN VBD , `` NNP , WRB MD PRP VB DT NNS TO VB JJ IN PRP VBP DT NN IN DT NN . ``\nA HARE having ridiculed the slow movements of a Tortoise , was challenged by the latter to run a race , a Fox to go to the goal and be the judge .\tDT NN VBG VBN DT JJ NNS IN DT NN , VBD VBN IN DT NN TO VB DT NN , DT NN TO VB TO DT NN CC VB DT NN .\nThey got off well together , the hare at the top of her speed , the Tortoise , who had no other intention than making his antagonist exert herself , going very leisurely .\tPRP VBD RB RB RB , DT NN IN DT NN IN PRP$ NN , DT NN , WP VBD DT JJ NN IN VBG PRP$ JJ VB PRP , VBG RB RB .\nAfter sauntering along for some time he discovered the Hare by the wayside , apparently asleep , and seeing a chance to win pushed on as fast as he could , arriving at the goal hours afterward , suffering from extreme fatigue and claiming the victory .\tIN VBG RP IN DT NN PRP VBD DT NN IN DT NN , RB JJ , CC VBG DT NN TO VB VBD IN RB RB IN PRP MD , VBG IN DT NN NNS RB , VBG IN JJ NN CC VBG DT NN .\n' Not so , ' said the Fox ; ' the Hare was here long ago , and went back to cheer you on your way . '\t`` RB RB , `` VBD DT NNP ; `` DT NN VBD RB JJ RB , CC VBD RB TO VB PRP IN PRP$ NN . ``\nA FOX caught in a trap escaped , but in so doing lost his tail .\tDT NN VBN IN DT NN VBN , CC IN RB VBG VBN PRP$ NN .\nThereafter , feeling his life a burden from the shame and ridicule to which he was exposed , he schemed to convince all the other Foxes that being tailless was much more attractive , thus making up for his own deprivation .\tRB , VBG PRP$ NN DT NN IN DT NN CC NN TO WDT PRP VBD VBN , PRP VBD TO VB PDT DT JJ NNS IN VBG JJ VBD RB RBR JJ , RB VBG RP IN PRP$ JJ NN .\nHe assembled a good many Foxes and publicly advised them to cut off their tails , saying that they would not only look much better without them , but that they would get rid of the weight of the brush , which was a very great inconvenience .\tPRP VBD DT JJ JJ NNS CC RB VBD PRP TO VB RP PRP$ NNS , VBG IN PRP MD RB RB VB RB JJR IN PRP , CC IN PRP MD VB JJ IN DT NN IN DT NN , WDT VBD DT RB JJ NN .\nOne of them interrupting him said , ' If you had not yourself lost your tail , my friend , you would not thus counsel us . '\tCD IN PRP VBG PRP VBD , `` IN PRP VBD RB PRP VBD PRP$ NN , PRP$ NN , PRP MD RB RB VB PRP . ``\nSpider-Man 3 spun a solid gold web in Asia , setting box-office records in Japan , South Korea , and Hong Kong .\tJJ CD VBD DT JJ NN NN IN NNP , VBG NN NNS IN NNP , NNP NNP , CC NNP NNP .\nThe special effects-laden thriller took in an estimated $ 3.5 million in its first day of Japanese release , while grossing $ 3.4 million in South Korea .\tDT JJ JJ NN VBD IN DT VBN $ CD CD IN PRP$ JJ NN IN JJ NN , IN VBG $ CD CD IN NNP NNP .\nBoth figures top opening day tallies for the first two entries in the series .\tDT NNS JJ VBG NN NNS IN DT JJ CD NNS IN DT NN .\nIt also enjoyed the largest opening-day performance for any film in Hong Kong and South Korean history .\tPRP RB VBD DT JJS JJ NN IN DT NN IN NNP NNP CC JJ JJ NN .\nThe U.S. envoy to the International Atomic Energy Agency says he is ' fairly confident ' the IAEA board will report Iran to the United Nations Security Council next month .\tDT NNP NN TO DT NNP NNP NNP NNP VBZ PRP VBZ `` RB JJ `` DT NNP NN MD VB NNP TO DT NNP NNP NNP NNP JJ NN .\nAmbassador Greg Schulte told VOA 's Persian service Tuesday that in recent talks about the Iranian nuclear standoff , U.S. , European , Russian and Chinese envoys have discussed gradually increasing diplomatic pressure on Tehran if it fails to suspend its uranium enrichment activities .\tNNP NNP NNP VBD NNP POS JJ NN NNP IN IN JJ NNS IN DT JJ JJ NN , NNP , NNP , JJ CC JJ NNS VBP VBN RB VBG JJ NN IN NNP IN PRP VBZ TO VB PRP$ NN NN NNS .\nRussia and China oppose U.N. sanctions on Iran , and they have urged Europe and the United States to first use diplomacy .\tNNP CC NNP VBP NNP NNS IN NNP , CC PRP VBP VBN NNP CC DT NNP NNPS TO JJ NN NN .\nBut Mr. Schulte said Moscow and Beijing also are growing increasingly frustrated with Iran 's recent actions .\tCC NNP NNP VBD NNP CC NNP RB VBP VBG RB JJ IN NNP POS JJ NNS .\nIran broke the seals on its uranium enrichment facilities earlier this month , effectively ending a two-year moratorium on its nuclear fuel research .\tNNP VBD DT NNS IN PRP$ NN NN NNS RBR DT NN , RB VBG DT JJ NN IN PRP$ JJ NN NN .\nTehran insists its nuclear program is peaceful .\tNNP VBZ PRP$ JJ NN VBZ JJ .\nA Vatican spokesman says Pope Benedict is willing to meet with victims of pedophile priests .\tDT NNP NN VBZ NNP NNP VBZ JJ TO VB IN NNS IN JJ NNS .\nReverend Federico Lombardi made the statement to Vatican Radio on Friday .\tNNP NNP NNP VBD DT NN TO NNP NNP IN NNP .\nLombardi said the church must also cooperate with police and judicial authorities because it is the only way to regain trust .\tNNP VBD DT NN MD RB VB IN NNS CC JJ NNS IN PRP VBZ DT JJ NN TO VB NN .\nThe pope and the Vatican have been heavily criticized in Europe following newly revealed cases of sex abuse by priests .\tDT NN CC DT NNP VBP VBN RB VBN IN NNP VBG RB VBN NNS IN NN NN IN NNS .\nChurch officials in Belgium , Germany and Ireland also have openly criticized the Vatican for failing to come to terms with the crisis and for failing to help its victims .\tNNP NNS IN NNP , NNP CC NNP RB VBP RB VBN DT NNP IN VBG TO VB TO NNS IN DT NN CC IN VBG TO VB PRP$ NNS .\nDespite the criticism , a top cleric defended Pope Benedict 's handling of the scandal during Easter Sunday services .\tIN DT NN , DT JJ NN VBD NNP NNP POS NN IN DT NN IN NNP NNP NNS .\nCardinal Angelo Sodano said the church should not be influenced by what he called ' petty gossip . '\tNNP NNP NNP VBD DT NN MD RB VB VBN IN WP PRP VBD `` JJ NN . ``\nThe president of Venezuela , Hugo Chavez , is visiting Honduras and Nicaragua to discuss regional cooperation and energy deals .\tDT NN IN NNP , NNP NNP , VBZ VBG NNP CC NNP TO VB JJ NN CC NN NNS .\nMr. Chavez was meeting Tuesday , with his Honduran counterpart , Manuel Zelaya , at the presidential residence in the capital , Tegucigalpa .\tNNP NNP VBD VBG NNP , IN PRP$ JJ NN , NNP NNP , IN DT JJ NN IN DT NN , NNP .\nMr. Chavez was previously in Guatemala , where he attended the presidential inauguration Monday of Alvaro Colom .\tNNP NNP VBD RB IN NNP , WRB PRP VBD DT JJ NN NNP IN NNP NNP .\nNews reports say Mr. Chavez and his Honduran counterpart were to discuss a possible contract between Honduras and Petrocaribe , a Venezuelan initiative that allows the purchase of Venezuelan oil at preferential rates .\tNNP NNS VBP NNP NNP CC PRP$ JJ NN VBD TO VB DT JJ NN IN NNP CC NNP , DT JJ NN WDT VBZ DT NN IN JJ NN IN JJ NNS .\nMr. Chavez travels on to Nicaragua , where he is to meet with President Daniel Ortega .\tNNP NNP VBZ IN TO NNP , WRB PRP VBZ TO VB IN NNP NNP NNP .\nReports say the two will lay plans for the activities of the regional trade area called the Bolivarian Alternative for the Americas , which includes Nicaragua , Bolivia , Venezuela and Cuba .\tNNS VBP DT CD MD VB NNS IN DT NNS IN DT JJ NN NN VBD DT NNP NNP IN DT NNPS , WDT VBZ NNP , NNP , NNP CC NNP .\nVenezuelan President Hugo Chavez is introducing a series of measures aimed at fighting inflation and boosting the nation 's economy .\tJJ NNP NNP NNP VBZ VBG DT NN IN NNS VBN IN VBG NN CC VBG DT NN POS NN .\nIn announcing an economic stimulus package , President Chavez said Wednesday that he will create a $ 1 billion fund to encourage joint public-private projects in sectors such as food and manufacturing .\tIN VBG DT JJ NN NN , NNP NNP VBD NNP IN PRP MD VB DT $ CD CD NN TO VB JJ JJ NNS IN NNS JJ IN NN CC NN .\nThe president also said a 1.5 percent tax on financial transactions for businesses would be eliminated on the grounds it was causing inflation .\tDT NN RB VBD DT CD NN NN IN JJ NNS IN NNS MD VB VBN IN DT NNS PRP VBD VBG NN .\nInflation has been accelerating while economic growth dropped to 4.8 percent in the first quarter of this year .\tNN VBZ VBN VBG IN JJ NN VBD TO CD NN IN DT JJ NN IN DT NN .\nThe South American oil-exporting country 's inflation rate is the highest in the region , climbing to 31.4 percent last month .\tDT NNP NNP NN NN POS NN NN VBZ DT JJS IN DT NN , VBG TO CD NN JJ NN .\nIn April , Venezuela said it planned to sell $ 3 billion worth of government bonds on local markets , in a bid to slow inflation and strengthen the currency , known as the strong bolivar .\tIN NNP , NNP VBD PRP VBD TO VB $ CD CD NN IN NN NNS IN JJ NNS , IN DT NN TO VB NN CC VB DT NN , VBN IN DT JJ NN .\nColombia has extradited 13 alleged drug traffickers to stand trial in U.S. courts in the states of Florida and New York .\tNNP VBZ VBN CD VBN NN NNS TO VB NN IN NNP NNS IN DT NNS IN NNP CC NNP NNP .\nOfficials say the Colombian suspects were flown Wednesday to the United States , where they have been charged with cocaine trafficking and money laundering .\tNNS VBP DT JJ NNS VBD VBN NNP TO DT NNP NNPS , WRB PRP VBP VBN VBN IN NN NN CC NN NN .\nColombian authorities say they have extradited at least 63 drug suspects to the United States this year .\tJJ NNS VBP PRP VBP VBN IN JJS CD NN NNS TO DT NNP NNPS DT NN .\nIn 1997 , Colombia restored a law to extradite nationals charged with drug offenses , which had been suspended amid a campaign of violence by Colombian drug cartels .\tIN CD , NNP VBD DT NN TO VB NNS VBN IN NN NNS , WDT VBD VBN VBN IN DT NN IN NN IN JJ NN NNS .\nLeaders of the Iraq Study Group have called on President Bush to implement all their recommendations about changing U.S. policy in Iraq .\tNNS IN DT NNP NNP NNP VBP VBN IN NNP NNP TO VB DT PRP$ NNS IN VBG NNP NN IN NNP .\nThe group 's co-chairman , former Congressman Lee Hamilton , told U.S. lawmakers Thursday that the proposals must be taken as a whole in order to be effective .\tDT NN POS NN , JJ NNP NNP NNP , VBD NNP NNS NNP IN DT NNS MD VB VBN IN DT NN IN NN TO VB JJ .\nThe bipartisan panel issued the report Wednesday , saying the situation in Iraq is grave and deteriorating .\tDT JJ NN VBD DT NN NNP , VBG DT NN IN NNP VBZ JJ CC JJ .\nIt called for enhanced diplomacy and the withdrawal of most U.S. combat troops in Iraq by early 2008 .\tPRP VBD IN JJ NN CC DT NN IN JJS NNP NN NNS IN NNP IN RB CD .\nPresident Bush has said he will consider the report , as well as separate studies by other government agencies before making a decision .\tNNP NNP VBZ VBN PRP MD VB DT NN , RB RB IN JJ NNS IN JJ NN NNS IN VBG DT NN .\nSpeaking to lawmakers Thursday , the group 's other co-chairman , former Secretary of State James Baker , called on both political parties and the American people to come together to support the proposals .\tVBG TO NNS NNP , DT NN POS JJ NN , JJ NNP IN NNP NNP NNP , VBD IN DT JJ NNS CC DT JJ NNS TO VB RB TO VB DT NNS .\nSalma Hayek gave birth to a baby girl , Valentina Paloma Pinault , on September 21 .\tNNP NNP VBD NN TO DT NN NN , NNP NNP NNP , IN NNP CD .\n' Mother and child are doing well , ' said publicist Carl Ross in a statement .\t`` NNP CC NN VBP VBG RB , `` VBD NN NNP NNP IN DT NN .\nNo further details are released .\tDT JJ NNS VBP VBN .\nIt is the first child for the 41-year-old actress , who is engaged to French businessman Francois-Henri Pinault .\tPRP VBZ DT JJ NN IN DT JJ NN , WP VBZ VBN TO JJ NN NNP NNP .\nHayek , who has appeared in more than thirty films , is currently enjoying success as an executive producer of the hit U.S. TV series Ugly Betty .\tNNP , WP VBZ VBN IN JJR IN CD NNS , VBZ RB VBG NN IN DT NN NN IN DT VBN NNP NN NN RB NNP .\nShe is also chief executive of Ventanazul , a production company she formed with Metro-Goldwyn-Mayer , Inc.\tPRP VBZ RB JJ NN IN NNP , DT NN NN PRP VBD IN NNP , NNP\nPinault , 45 , is the chief executive officer for luxury goods company PPR SA , which owns such high end labels as Gucci , Yves Saint Laurent , Balenciaga , and Puma .\tNNP , CD , VBZ DT JJ NN NN IN NN NNS NN NNP NNP , WDT VBZ JJ JJ NN NNS IN NNP , NNP NNP NNP , NNP , CC NNP .\nHe has two children from a previous marriage which ended in divorce in 2004 .\tPRP VBZ CD NNS IN DT JJ NN WDT VBD IN NN IN CD .\nIsraeli Prime Minister Ariel Sharon says he will try to form a governing coalition with the opposition Labor Party .\tJJ NNP NNP NNP NNP VBZ PRP MD VB TO VB DT NN NN IN DT NN NNP NNP .\nMr. Sharon was speaking a day after dismissing his main coalition partner , the Shinui Party , over its opposition to the 2005 state budget .\tNNP NNP VBD VBG DT NN IN VBG PRP$ JJ NN NN , DT NNP NNP , IN PRP$ NN TO DT CD NN NN .\nThe move left Mr. Sharon in control of only 40 of the 120 seats in parliament .\tDT NN VBD NNP NNP IN NN IN RB CD IN DT CD NNS IN NN .\nMr. Sharon said he intends to press ahead with plans to withdraw from the Gaza Strip next year , a plan that could run into trouble if he is forced to call early national elections .\tNNP NNP VBD PRP VBZ TO VB RB IN NNS TO VB IN DT NNP NNP JJ NN , DT NN WDT MD VB IN NN IN PRP VBZ VBN TO VB JJ JJ NNS .\nHe also said Palestinian militant Marwan Barghouti will remain in jail despite his plans to run in the Palestinian Authority presidential election on January 9 .\tPRP RB VBD JJ NN NNP NNP MD VB IN NN IN PRP$ NNS TO VB IN DT JJ NNP JJ NN IN NNP CD .\nLiberia 's government has announced that electricity will be restored to parts of the capital , Monrovia , by the end of July .\tNNP POS NN VBZ VBN IN NN MD VB VBN TO NNS IN DT NN , NNP , IN DT NN IN NNP .\nThe director of the Liberia Electricity Corporation , Harry Yuan , told VOA that his company will turn on the lights July 26 .\tDT NN IN DT NNP NNP NNP , NNP NNP , VBD NNP IN PRP$ NN MD VB IN DT NNS NNP CD .\nThe day marks Liberia 's 159th anniversary of independence .\tDT NN VBZ NNP POS JJ NN IN NN .\nThe public utility has not operated since the civil war broke out in the west African country 14 years ago .\tDT JJ NN VBZ RB VBN IN DT JJ NN VBD RP IN DT JJ JJ NN CD NNS RB .\nYuan says Britain has supplied two generators to help power the system , and Ghana provided electric poles .\tNNP VBZ NNP VBZ VBN CD NNS TO VB NN DT NN , CC NNP VBD JJ NNS .\nHe said two sections of the capital , either the Paynesville or Congotown neighborhoods and areas near the John F. Kennedy Hospital , will be the first to receive electricity .\tPRP VBD CD NNS IN DT NN , CC DT NNP CC NNP NNS CC NNS IN DT NNP NNP NNP NNP , MD VB DT JJ TO VB NN .\nLiberia 's new electrical system will be compatible with 220 volt European systems .\tNNP POS JJ JJ NN MD VB JJ IN CD NN JJ NNS .\nThe country 's previous system was compatible with the 110 volt U.S. system .\tDT NN POS JJ NN VBD JJ IN DT CD JJ NNP NN .\nA reformist candidate in Iran 's upcoming presidential race is vowing to reverse current President Mahmoud Ahmadinejad 's policies if elected .\tDT JJ NN IN NNP POS JJ JJ NN VBZ VBG TO VB JJ NNP NNP NNP POS NNS IN VBN .\nModerate cleric Mahdi Karroubi said Tuesday that Mr. Ahmadinejad has pushed Iran into international isolation .\tJJ NN NNP NNP VBD NNP IN NNP NNP VBZ VBN NNP IN JJ NN .\nHe said he would favor more diplomatic policies that would engage with world powers .\tPRP VBD PRP MD VB JJR JJ NNS WDT MD VB IN NN NNS .\nThe former parliament speaker said Mr. Ahmadinejad needlessly antagonizes the West by claiming the Holocaust is a myth , calling the president 's comments ' uncalculated ' and ' harmful ' to Iran 's interests .\tDT JJ NN NN VBD NNP NNP RB VBZ DT NN IN VBG DT NNP VBZ DT NN , VBG DT NN POS NNS `` JJ `` CC `` JJ `` TO NNP POS NNS .\nKarroubi is one of four candidates running in Iran 's presidential elections on June 12 .\tNNP VBZ CD IN CD NNS VBG IN NNP POS JJ NNS IN NNP CD .\nReformist candidate Mir Hossein Mousavi is considered to be the leading challenger to Mr. Ahmadinejad .\tJJ NN NNP NNP NNP VBZ VBN TO VB DT VBG NN TO NNP NNP .\nTurkish authorities say a large explosion in Ankara has killed four people .\tJJ NNS VBP DT JJ NN IN NNP VBZ VBN CD NNS .\nAnkara 's mayor , Melih Gokcek , says the blast wounded more than 50 others in a busy shopping area of the capital city .\tNNP POS NN , NNP NNP , VBZ DT NN VBD JJR IN CD NNS IN DT JJ NN NN IN DT NN NN .\nPolice say they believe a bomb caused the explosion .\tNNS VBP PRP VBP DT NN VBD DT NN .\nIn 1993 , 14 imprisoned Buddhist nuns secretly recorded protest songs and smuggled the tape out of Drapchi Prison in Tibet .\tIN CD , CD VBD NNP NNS RB VBN NN NNS CC VBD DT NN IN IN NNP NNP IN NNP .\nWhen word of the recording got out , the nuns say Chinese authorities added five to nine years to their sentences .\tWRB NN IN DT NN VBD RP , DT NNS VBP JJ NNS VBD CD TO CD NNS TO PRP$ NNS .\nSeven nuns eventually were released , but remain in Tibet .\tCD NNS RB VBD VBN , CC VBP IN NNP .\nOne died in custody and six others now live in exile .\tCD VBD IN NN CC CD NNS RB VBP IN NN .\nFour are currently visiting London to help raise awareness of the Tibetan struggle for independence and religious freedom .\tCD VBP RB VBG NNP TO VB VB NN IN DT JJ NN IN NN CC JJ NN .\nCatherine Drew has more .\tNNP NNP VBZ RBR .\nU.S. Embassy officials in Ankara say two U.S. warplanes accidentally violated Turkish airspace last week near the Iraq border .\tNNP NNP NNS IN NNP VBP CD NNP NNS RB VBD JJ NN JJ NN IN DT NNP NN .\nU.S. and Turkish officials said they are investigating the incident .\tNNP CC JJ NNS VBD PRP VBP VBG DT NN .\nThe Turkish military said on its Web site that two F-16s briefly crossed into Turkish airspace on May 24 .\tDT JJ NN VBD IN PRP$ NNP NN IN CD NNS RB VBD IN JJ NN IN NNP CD .\nOfficials said the incursion lasted about four minutes .\tNNS VBD DT NN VBD IN CD NNS .\nThe incursion happened in an area of southeast Turkey near where thousands of Turkish troops are reported to be gathering .\tDT NN VBD IN DT NN IN NN NNP IN WRB NNS IN JJ NNS VBP VBN TO VB VBG .\nThe airspace violation comes as speculation grows over whether Turkish troops will launch a cross-border operation against Kurdish militants in Iraq .\tDT NN NN VBZ IN NN VBZ IN IN JJ NNS MD VB DT JJ NN IN NNP NNS IN NNP .\nLast week , Turkish Foreign Minister Abdullah Gul said no plans were underway for such a raid .\tJJ NN , JJ JJ NN NNP NNP VBD DT NNS VBD JJ IN PDT DT NN .\nMexico City 's former mayor has officially registered as a candidate in next year 's presidential election .\tNNP NNP POS JJ NN VBZ RB VBN IN DT NN IN JJ NN POS JJ NN .\nAndres Manuel Lopez Obrador signed up as a candidate for the Democratic Revolution Party 's nomination Saturday , making him the first person to register with the party .\tNNP NNP NNP NNP VBD RP IN DT NN IN DT JJ NNP NNP POS NN NNP , VBG PRP DT JJ NN TO VB IN DT NN .\nMr. Lopez Obrador addressed hundreds of supporters outside party offices , just one day after he stepped down as the capital city 's mayor .\tNNP NNP NNP VBD NNS IN NNS IN NN NNS , RB CD NN IN PRP VBD RP IN DT NN NN POS NN .\nThe popular 51-year-old leads public opinion polls ahead of the 2006 presidential race .\tDT JJ JJ NNS JJ NN NNS RB IN DT CD JJ NN .\nPresident Vicente Fox is not eligible to run for re-election because Mexican law allows just one six-year term .\tNNP NNP NNP VBZ RB JJ TO VB IN NN IN JJ NN VBZ RB CD JJ NN .\nCosta Rican elections officials have formally declared Nobel Peace laureate Oscar Arias the country 's president-elect .\tJJ JJ NNS NNS VBP RB VBN NNP NNP NN NNP NNP DT NN POS NN .\nTuesday 's announcement came more than a month after the election .\tNNP POS NN VBD JJR IN DT NN IN DT NN .\nArias won the original vote by a very narrow margin , and a dispute over the results forced a manual recount .\tNNP VBD DT JJ NN IN DT RB JJ NN , CC DT NN IN DT NNS VBD DT JJ NN .\nAfter weeks of feuding , Arias ' main rival - Otton Solis of the Citizens ' Action Party - conceded defeat on Friday .\tIN NNS IN NN , NNP POS JJ JJ : NNP NNP IN DT NNPS POS NNP NNP : VBD NN IN NNP .\nMr. Arias supports free trade with the United States .\tNNP NNP VBZ JJ NN IN DT NNP NNPS .\nCosta Rica , however , is the only country within the Central American Free Trade Agreement , or CAFTA , that has not yet ratified the agreement .\tNNP NNP , RB , VBZ DT JJ NN IN DT NNP NNP NNP NNP NNP , CC NNP , WDT VBZ RB RB VBN DT NN .\nCAFTA also comprises El Salvador , Guatemala , Honduras , Nicaragua and the Dominican Republic .\tNNP RB VBZ NNP NNP , NNP , NNP , NNP CC DT NNP NNP .\nThe International Court of Justice has dismissed a case filed by Serbia and Montenegro that accused eight NATO countries of genocide for the 1999 airstrike campaign against Yugoslavia .\tDT NNP NNP IN NNP VBZ VBN DT NN VBN IN NNP CC NNP WDT VBD CD NNP NNS IN NN IN DT CD NN NN IN NNP .\nThe court in the Hague , which is the top legal body of the United Nations , ruled Wednesday it has no jurisdiction in the case .\tDT NN IN DT NNP , WDT VBZ DT JJ JJ NN IN DT NNP NNPS , VBD NNP PRP VBZ DT NN IN DT NN .\nIt said that at the time of the airstrikes , the jurisdiction of Serbia and Montenegro was not a U.N. member and thus not a party to the court 's statute .\tPRP VBD IN IN DT NN IN DT NNS , DT NN IN NNP CC NNP VBD RB DT NNP NN CC RB RB DT NN TO DT NN POS NN .\nThe unanimous court decision involved Belgrade 's complaint against Belgium , Britain , Canada , France , Germany , Italy , the Netherlands and Portugal .\tDT JJ NN NN VBN NNP POS NN IN NNP , NNP , NNP , NNP , NNP , NNP , DT NNP CC NNP .\nNATO initiated the airstrike campaign in response to the Kosovo crisis , forcing Serbian and Yugoslav troops out of the Serbian province .\tNNP VBD DT NN NN IN NN TO DT NNP NN , VBG JJ CC JJ NNS IN IN DT JJ NN .\nThe U.S. military said Thursday that four more American military personnel have been killed in Iraq .\tDT NNP NN VBD NNP IN CD JJR JJ NN NNS VBP VBN VBN IN NNP .\nThree American soldiers were killed Wednesday night in a roadside bomb blast in Baghdad .\tCD JJ NNS VBD VBN NNP NN IN DT NN NN NN IN NNP .\nA U.S. Marine was also killed Wednesday during combat operations in the volatile western city of Ramadi .\tDT NNP NN VBD RB VBN NNP IN NN NNS IN DT JJ JJ NN IN NNP .\nThe latest casualties came on the same day as the deaths of 14 U.S. Marines and their civilian translator in a bomb blast near the town of Haditha , northwest of Baghdad .\tDT JJS NNS VBD IN DT JJ NN IN DT NNS IN CD NNP NNPS CC PRP$ JJ NN IN DT NN NN IN DT NN IN NNP , NN IN NNP .\nIn total , 25 American troops have been killed since Monday .\tIN NN , CD JJ NNS VBP VBN VBN IN NNP .\nViolence Thursday also claimed at least eight Iraqis in reported attacks across the country .\tNN NNP RB VBD IN JJS CD NNS IN JJ NNS IN DT NN .\nAgainst this bloody backdrop , Iraq 's constitutional committee continued working to meet the August 15 deadline for drafting the country 's permanent constitution .\tIN DT JJ NN , NNP POS JJ NN VBD VBG TO VB DT NNP CD NN IN VBG DT NN POS JJ NN .\nHundreds of Afghans have staged a protest in central Afghanistan denouncing a spate of suicide bombings that many demonstrators are blaming on Pakistan .\tNNS IN NNS VBP VBN DT NN IN JJ NNP VBG DT NN IN NN NNS WDT JJ NNS VBP VBG IN NNP .\nProtesters gathered in the city of Ghazni Saturday , 120 kilometers southwest of the capital , Kabul .\tNNS VBD IN DT NN IN NNP NNP , CD NNS JJS IN DT NN , NNP .\nAt least 13 suicide bombings have struck Afghanistan in the last several months , including last Monday when more than 20 people were killed in a town near the border with Pakistan .\tIN JJS CD NN NNS VBP VBN NNP IN DT JJ JJ NNS , VBG JJ NNP WRB JJR IN CD NNS VBD VBN IN DT NN IN DT NN IN NNP .\nAfghan protesters accuse officials in neighboring Pakistan of aiding suspected terrorists behind such bombings .\tJJ NNS VBP NNS IN VBG NNP IN VBG JJ NNS IN JJ NNS .\nAfghan President Hamid Karzai has expressed concern over the increase of suicide bombings , saying Afghanistan and the international community are in a joint struggle against terrorism .\tJJ NNP NNP NNP VBZ VBN NN IN DT NN IN NN NNS , VBG NNP CC DT JJ NN VBP IN DT JJ NN IN NN .\nHe says if Western countries do not fight terrorism in Afghanistan , they will have to deal with it in their own capitals .\tPRP VBZ IN JJ NNS VBP RB VB NN IN NNP , PRP MD VB TO VB IN PRP IN PRP$ JJ NNS .\nA European Union adviser says the Palestinian Authority will ask international donors for $ 187 million in aid to support security in the Palestinian territories .\tDT NNP NNP NN VBZ DT JJ NNP MD VB JJ NNS IN $ CD CD IN NN TO VB NN IN DT JJ NNS .\nThe head of the EU police training mission in Palestinian territories , Colin Smith , says the aid will go towards police training as well as the construction of police stations , prisons , courts and a forensics laboratory .\tDT NN IN DT NNP NN NN NN IN JJ NNS , NNP NNP , VBZ DT NN MD VB IN NN NN RB RB IN DT NN IN NN NNS , NNS , NNS CC DT NNS NN .\nSmith says the bulk of the money will come from the more than $ 7 billion already pledged to the Palestinian Authority .\tNNP VBZ DT NN IN DT NN MD VB IN DT JJR IN $ CD CD RB VBN TO DT JJ NNP .\nThe request will be presented next week at an international security conference in Berlin , Germany .\tDT NN MD VB VBN JJ NN IN DT JJ NN NN IN NNP , NNP .\nCambodia has criticized a report from a top U.N. official that the Southeast Asian country could become a breeding ground for terrorists .\tNNP VBZ VBN DT NN IN DT JJ NNP NN IN DT JJ JJ NN MD VB DT NN NN IN NNS .\nThe chairman of the U.N. Security Council committee on al-Qaida , Heraldo Munoz , said Cambodia needed to tighten up its defense measures to protect itself from terrorist networks .\tDT NN IN DT NNP NNP NNP NN IN NNP , NNP NNP , VBD NNP VBD TO VB RP PRP$ NN NNS TO VB PRP IN JJ NNS .\nHe said Phnom Penh lacks the resources to do so .\tPRP VBD NNP NNP VBZ DT NNS TO VB RB .\nBut Cambodian government officials dismissed the report , saying Phnom Penh is doing what it can to prevent terrorists from using the country as a base .\tCC JJ NN NNS VBD DT NN , VBG NNP NNP VBZ VBG WP PRP MD TO VB NNS IN VBG DT NN IN DT NN .\nCambodia is currently holding an Egyptian and two Thai nationals on suspicion of having links to terror groups .\tNNP VBZ RB VBG DT JJ CC CD JJ NNS IN NN IN VBG NNS TO NN NNS .\nA bomb blast late Tuesday in India 's northeastern state of Manipur killed at least 17 people and wounded more than 30 others .\tDT NN NN JJ NNP IN NNP POS JJ NN IN NNP VBD IN JJS CD NNS CC VBD JJR IN CD NNS .\nLocal police say the bomb was concealed in a motorcycle outside a police training center in the city of Imphal , the state capital .\tJJ NNS VBP DT NN VBD VBN IN DT NN IN DT NN NN NN IN DT NN IN NNP , DT NN NN .\nAuthorities say several people are in critical condition and the death toll is likely to rise .\tNNS VBP JJ NNS VBP IN JJ NN CC DT NN NN VBZ JJ TO VB .\nNo one has claimed responsibility for the attack , but there are more than a dozen rebel groups operating in the region .\tDT NN VBZ VBN NN IN DT NN , CC EX VBP JJR IN DT NN NN NNS VBG IN DT NN .\nOn Sunday , a grenade exploded outside the fortified home of Manipur 's chief minister , Okram Ibobi Singh .\tIN NNP , DT NN VBD IN DT JJ NN IN NNP POS JJ NN , NNP NNP NNP .\nNo one was hurt .\tDT NN VBD VBN .\nSeparatist violence in northeastern India has killed some 20,000 people since 1979 .\tNNP NN IN JJ NNP VBZ VBN DT CD NNS IN CD .\nIran 's official media are reporting that a high-ranking Iranian naval commander attended a meeting on regional piracy where U.S. Navy commanders were present .\tNNP POS JJ NNS VBP VBG IN DT JJ JJ JJ NN VBD DT NN IN JJ NN WRB NNP NNP NNS VBD JJ .\nThe dispatch Thursday in Iran is the first public word that navy officers of both countries were present in Sri Lanka earlier this month in discussions on fighting piracy in the Gulf of Aden .\tDT NN NNP IN NNP VBZ DT JJ JJ NN IN NN NNS IN DT NNS VBD JJ IN NNP NNP RBR DT NN IN NNS IN VBG NN IN DT NNP IN NNP .\nThe report says representatives of 22 countries , including the U.S. , Britain , France and Russia , attended the meeting .\tDT NN VBZ NNS IN CD NNS , VBG DT NNP , NNP , NNP CC NNP , VBD DT NN .\nIran says the discussions were part of a multi-national celebration of the 60th anniversary of Sri Lanka 's navy .\tNNP VBZ DT NNS VBD NN IN DT JJ NN IN DT JJ NN IN NNP NNP POS NN .\nIran opposes the presence of the U.S. Navy fleet in the Persian Gulf , and the two countries have had no diplomatic ties since 1979 .\tNNP VBZ DT NN IN DT NNP NNP NN IN DT NNP NNP , CC DT CD NNS VBP VBN DT JJ NNS IN CD .\nAustralia 's cricket team has scored 282-4 - a lead of 213 runs - on a rain-interrupted fourth day of the second test against India in Sydney .\tNNP POS NN NN VBZ VBN CD IN DT NN IN CD NNS : IN DT JJ JJ NN IN DT JJ NN IN NNP IN NNP .\nMike Hussey was on 87 and Andrew Symonds was on 14 at stumps after officials rejected Anil Kumble 's appeal for Symonds to be out lbw .\tNNP NNP VBD IN CD CC NNP NNPS VBD IN CD IN NNS IN NNS VBD NNP NNP POS NN IN NNP TO VB IN NN .\nEarlier , Kumble dismissed Matthew Hayden and Michael Clarke on consecutive balls .\tRB , NNP VBD NNP NNP CC NNP NNP IN JJ NNS .\nHayden scored 123 runs in Australia 's second innings before he was caught out .\tNNP VBD CD NNS IN NNP POS JJ NN IN PRP VBD VBN RP .\nClarke was out for no runs .\tNNP VBD RP IN DT NNS .\nAustralia is hoping to win a record-tying 16th test match in a row after taking the first test of this tour by 337 runs in Melbourne .\tNNP VBZ VBG TO VB DT JJ JJ NN NN IN DT NN IN VBG DT JJ NN IN DT NN IN CD NNS IN NNP .\nA suspected suicide bomb attack in Southern Afghanistan has killed at least 17 people and injured more than 40 others .\tDT JJ NN NN NN IN NNP NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD NNS .\nOfficials say the bomb went off Monday in the middle of a crowded market area in Lashkar Gah , capital of Helmand province .\tNNS VBP DT NN VBD RP NNP IN DT NN IN DT JJ NN NN IN NNP NNP , NN IN NNP NN .\nInterior Ministry spokesman Yousef Stanizai blamed the attack on ' enemies of the state , ' a phrase typically used to refer to Taleban insurgents .\tNNP NNP NN NNP NNP VBD DT NN IN `` NNS IN DT NN , `` DT NN RB VBN TO VB TO NNP NNS .\n' This is a terrorist act which has killed defenseless civilians and children , ' he said .\t`` DT VBZ DT JJ NN WDT VBZ VBN JJ NNS CC NNS , `` PRP VBD .\nAfghanistan 's insurgents are increasingly borrowing tactics from their counterparts in Iraq .\tNNP POS NNS VBP RB VBG NNS IN PRP$ NNS IN NNP .\nThis was one of the bloodiest suicide attacks in Afghanistan to date , in what has already been the country 's deadliest year since U.S. forces ousted the Taleban regime in 2001 .\tDT VBD CD IN DT JJS NN NNS IN NNP TO NN , IN WP VBZ RB VBN DT NN POS JJS NN IN NNP NNS VBD DT NNP NN IN CD .\nMore than two thousand people , mostly militants , have killed since January .\tJJR IN CD CD NNS , RB NNS , VBP VBN IN NNP .\nWrestler Luo Meng has become the second Chinese Olympic hopeful to be banned for life after testing positive for a banned substance .\tNN NNP NNP VBZ VBN DT JJ JJ JJ NN TO VB VBN IN NN IN VBG JJ IN DT VBN NN .\nThe state-run Xinhua news agency made the announcement Wednesday .\tDT JJ NNP NN NN VBD DT NN NNP .\nLuo tested positive for a banned diuretic that can be used to purge by-products of performance-enhancing drugs .\tNNP VBD JJ IN DT VBN NN WDT MD VB VBN TO VB NNS IN JJ NNS .\nThe wrestler 's coach , Zhang Hua , also received a permanent ban .\tDT NN POS NN , NNP NNP , RB VBD DT JJ NN .\nFirst-time offenders usually receive a two-year ban .\tJJ NNS RB VBP DT JJ NN .\nBut Chinese officials have cracked down on doping ahead of the Beijing Games next month .\tCC JJ NNS VBP VBN RP IN VBG RB IN DT NNP NNPS JJ NN .\nIn March , China 's sports ministry said any national athlete who tested positive would be banned for life with their coach .\tIN NNP , NNP POS NNS NN VBD DT JJ NN WP VBD JJ MD VB VBN IN NN IN PRP$ NN .\nLuo followed top swimmer Ouyang Kunpeng , whose positive test for a banned steroid was confirmed last week with a lifetime ban .\tNNP VBD JJ NN NNP NNP , WP$ JJ NN IN DT VBN NN VBD VBN JJ NN IN DT NN NN .\nThe West Indies cricket team has scored 281-4 by the close of play on the first day of its first test match against South Africa at St. George 's Park in Port Elizabeth .\tDT NNP NNP NN NN VBZ VBN CD IN DT NN IN NN IN DT JJ NN IN PRP$ JJ NN NN IN NNP NNP IN NNP NNP POS NNP IN NNP NNP .\nMarlon Samuels led the visitors with 94 runs while captain Chris Gayle scored 66 runs on the easy-paced pitch .\tNNP NNP VBD DT NNS IN CD NNS IN JJ NNP NNP VBD CD NNS IN DT JJ NN .\nGayle , the opening batsman , had 13 fours and scored his runs off 49 balls in his first innings since injuring a right leg muscle against Zimbabwe nearly a month ago .\tNNP , DT NN NN , VBD CD NNS CC VBD PRP$ NNS IN CD NNS IN PRP$ JJ NN IN VBG DT JJ NN NN IN NNP RB DT NN RB .\nSamuels scored his runs in 267 minutes , facing 195 balls with 12 fours .\tNNP VBD PRP$ NNS IN CD NNS , VBG CD NNS IN CD NNS .\nBad light forced play to close six overs early .\tJJ NN VBD NN TO VB CD NNS RB .\nThe two sides will play three tests and five one-day internationals during the Caribbean squad 's tour .\tDT CD NNS MD VB CD NNS CC CD JJ NNS IN DT NNP NN POS NN .\nThe second test starts in Cape Town January second .\tDT JJ NN VBZ IN NNP NNP NNP NN .\nThe third test begins January 10th in Durban .\tDT JJ NN VBZ NNP CD IN NNP .\nIraqi authorites say at least 10 people were killed in a suicide car bomb attack on a police academy south of Baghdad .\tJJ NNS VBP IN JJS CD NNS VBD VBN IN DT NN NN NN NN IN DT NN NN NN IN NNP .\nThe attack in the town of Hilla Wednesday occured as Iraq 's interim Prime Minister Iyad Allawi insisted that the country 's January 30 elections would take place as scheduled .\tDT NN IN DT NN IN NNP NNP VBD IN NNP POS JJ NNP NNP NNP NNP VBD IN DT NN POS NNP CD NNS MD VB NN IN VBN .\nMr. Allawi told reporters in Baghdad that ' violence , terrorists and the outlaws will not be allowed to stop the political process and destroy the country . '\tNNP NNP VBD NNS IN NNP WDT `` NN , NNS CC DT NNS MD RB VB VBN TO VB DT JJ NN CC VB DT NN . ``\nHours earlier , a car bomb explosion in Baghdad 's Amiriyah neighborhood killed two civilians and wounded four others .\tNNS RB , DT NN NN NN IN NNP POS NNP NN VBD CD NNS CC VBD CD NNS .\nTuesday , insurgents shot dead Ali al-Haidari , the Baghdad provincial governor , and also carried out a suicide truck bombing at a security checkpoint that killed 10 people .\tNNP , NNS VBD JJ NNP NNP , DT NNP JJ NN , CC RB VBD RP DT NN NN VBG IN DT NN NN WDT VBD CD NNS .\nTwo major U.S. airlines have won approval to merge .\tCD JJ NNP NNS VBP VBN NN TO VB .\nUnited Airlines is to purchase Continental Airlines to create the world 's largest air carrier .\tNNP NNPS VBZ TO VB NNP NNPS TO VB DT NN POS JJS NN NN .\nIn order for the merger to overcome anti-trust concerns , rival Southwest Airlines had to be given take-off and landing rights at the international airport in Newark , New Jersey - just outside New York City .\tIN NN IN DT NN TO VB JJ NNS , JJ NNP NNPS VBD TO VB VBN NN CC NN NNS IN DT JJ NN IN NNP , NNP NNP : RB IN NNP NNP NNP .\nThe airport is a key Continental Airlines hub .\tDT NN VBZ DT JJ NNP NNPS NN .\nShareholders are scheduled to meet September 17 to approve the deal .\tNNS VBP VBN TO VB NNP CD TO VB DT NN .\nThis is the first major airline merger in the United States since 2008 when Delta Airlines acquired Northwest .\tDT VBZ DT JJ JJ NN NN IN DT NNP NNPS IN CD WRB NNP NNP VBD NNP .\nGovernment approval followed an antitrust review by the U.S. Justice Department .\tNN NN VBD DT JJ NN IN DT NNP NNP NNP .\nThe merger is expected to be completed by October 1 .\tDT NN VBZ VBN TO VB VBN IN NNP CD .\nWorld Health Organization officials are meeting in Geneva to consider the possibility of a global human bird flu pandemic as the deadly H5N1 strain continues to spread rapidly in birds .\tNNP NNP NNP NNS VBP VBG IN NNP TO VB DT NN IN DT JJ JJ NN NN NN IN DT JJ NNP NN VBZ TO VB RB IN NNS .\nTop influenza official Margaret Chan said the outbreak in poultry is historically unprecedented .\tNN NN NN NNP NNP VBD DT NN IN NN VBZ RB JJ .\nShe said the deadly virus presents a greater challenge to the world than any other emerging infectious disease .\tPRP VBD DT JJ NN VBZ DT JJR NN TO DT NN IN DT JJ VBG JJ NN .\nThe meeting was called to plan a response in case the bird flu virus mutates into a widespread human flu virus .\tDT NN VBD VBN TO VB DT NN IN NN DT NN NN NN VBZ IN DT JJ JJ NN NN .\nSo far , the virus has killed 94 people , mostly in Asia .\tRB RB , DT NN VBZ VBN CD NNS , RB IN NNP .\nIt has infected birds in 30 countries , and it has appeared in cats in Austria and Germany .\tPRP VBZ VBN NNS IN CD NNS , CC PRP VBZ VBN IN NNS IN NNP CC NNP .\nFrench officials confirmed a new case in a dead swan .\tJJ NNS VBD DT JJ NN IN DT JJ NN .\nRussian news agencies reported Monday mass deaths of birds in the south in Stavropol Territory , and Serbia confirmed it in dead swans in several areas .\tJJ NN NNS VBD NNP NN NNS IN NNS IN DT NN IN NNP NNP , CC NNP VBD PRP IN JJ NNS IN JJ NNS .\nPalestinian militant Marwan Barghouti , imprisoned in Israel , has reversed himself and decided to seek the presidency of the Palestinian Authority .\tJJ NN NNP NNP , VBN IN NNP , VBZ VBN PRP CC VBD TO VB DT NN IN DT JJ NNP .\nLate last week , Barghouti , who is serving five life sentences for planning suicide attacks on Israeli civilians , said he would not run .\tRB JJ NN , NNP , WP VBZ VBG CD NN NNS IN VBG NN NNS IN JJ NNS , VBD PRP MD RB VB .\nBut Wednesday his wife filed registration papers for the January 9 poll on behalf of her husband , a Fatah movement leader .\tCC NNP PRP$ NN VBD NN NNS IN DT NNP CD NN IN NN IN PRP$ NN , DT NNP NN NN .\nAnalysts have warned that Barghouti 's candidacy could split the Fatah organization and undermine its chosen candidate , interim leader Mahmoud Abbas .\tNNS VBP VBN IN NNP POS NN MD VB DT NNP NN CC VB PRP$ JJ NN , JJ NN NNP NNP .\nMr. Abbas began his campaign for the presidency today , hours before the Barghouti announcement .\tNNP NNP VBD PRP$ NN IN DT NN NN , NNS IN DT NNP NN .\nEarlier Wednesday , the radical Palestinian group Hamas said it will boycott the polls .\tRBR NNP , DT JJ JJ NN NNP VBD PRP MD VB DT NNS .\nThe group said it will not nominate a presidential candidate because it rejects the 1993 treaty with Israel that created the Palestinian Authority .\tDT NN VBD PRP MD RB VB DT JJ NN IN PRP VBZ DT CD NN IN NNP WDT VBD DT JJ NNP .\nInternational Olympic Committee president Jacques Rogge has rejected accusations that British Prime Minister Tony Blair broke the rules in his attempts to help London win the bid to host the 2012 Summer Games .\tNNP NNP NNP NN NNP NNP VBZ VBN NNS IN NNP NNP NNP NNP NNP VBD DT NNS IN PRP$ NNS TO VB NNP VB DT NN TO VB DT CD NNPS NNPS .\nParis mayor Bertrand Delanoe said Blair and London bid chief Sebastian Coe ' crossed over the line ' by criticizing other bid candidates .\tNNP NN NNP NNP VBD NNP CC NNP NN NN NNP NNP `` VBN IN DT NN `` IN VBG JJ NN NNS .\nParis officials were also reportedly upset that the British prime minister met privately with IOC members in his hotel suite in Singapore in an effort to persuade them to vote for London .\tNNP NNS VBD RB RB VBN IN DT JJ JJ NN VBD RB IN NNP NNS IN PRP$ NN NN IN NNP IN DT NN TO VB PRP TO VB IN NNP .\nIOC president Jacques Rogge has already said none of the cities broke rules designed to stamp out corruption in the bidding process .\tNNP NN NNP NNP VBZ RB VBN NN IN DT NNS VBD NNS VBN TO VB RP NN IN DT NN NN .\nIn his words , ' There is nothing wrong with having a conversation with a major politician from a bid city . '\tIN PRP$ NNS , `` EX VBZ DT JJ IN VBG DT NN IN DT JJ NN IN DT NN NN . ``\nRogge also made it clear that he sees no reason to move the Games from London in the wake of terrorist bombings there .\tNNP RB VBD PRP JJ IN PRP VBZ DT NN TO VB DT NNPS IN NNP IN DT NN IN JJ NNS RB .\nExact details for the lavish opening ceremonies at the Beijing Olympics this August are still secret , but some information on what audiences can expect to see has been released .\tJJ NNS IN DT JJ NN NNS IN DT NNP NNPS DT NNP VBP RB JJ , CC DT NN IN WP NNS MD VB TO VB VBZ VBN VBN .\nChinese state media reported Wednesday that the ceremony , designed by famous film director Zhang Yimou , will include a huge fireworks display , colorful ethnic dancing , dragons , pandas and a cast of thousands highlighting 5,000 years of Chinese history .\tJJ NN NNS VBD NNP IN DT NN , VBN IN JJ NN NN NNP NNP , MD VB DT JJ NNS NN , JJ JJ NN , NNS , NNS CC DT NN IN NNS VBG CD NNS IN JJ NN .\nThe extravagant three-and-one-half hour opening ceremony will represent China 's culture from ancient to modern times under the theme of ' Civilization and Harmony . '\tDT JJ JJ NN VBG NN MD VB NNP POS NN IN JJ TO JJ NNS IN DT NN IN `` NNP CC NNP . ``\nOrganizers say the process for lighting the Olympic flame has been set .\tNNS VBP DT NN IN VBG DT NNP NN VBZ VBN VBN .\nBut the name of the torchbearer who will light the Olympic cauldron at the end of the ceremony has not yet been announced .\tCC DT NN IN DT NN WP MD VB DT NNP NN IN DT NN IN DT NN VBZ RB RB VBN VBN .\nA deadly explosion has hit a convoy escorting Somalia 's prime minister in the capital of Mogadishu , but he escaped unhurt and later appeared in public .\tDT JJ NN VBZ VBN DT NN VBG NNP POS JJ NN IN DT NN IN NNP , CC PRP VBD JJ CC RB VBD IN NN .\nAt least five people were killed Sunday when the explosion ripped through a vehicle carrying bodyguards , just moments after the prime minister had passed by .\tIN JJS CD NNS VBD VBN NNP WRB DT NN VBD IN DT NN VBG NNS , RB NNS IN DT JJ NN VBD VBN IN .\nNews reports said the blast might have been from a land mine , remote-controlled bomb or rocket-launched grenade .\tNNP NNS VBD DT NN MD VB VBN IN DT NN NN , JJ NN CC JJ NN .\nPrime Minister Ali Mohamed Gedi was visiting the capital , an opposition stronghold , from his base in the town of Jowhar .\tNNP NNP NNP NNP NNP VBD VBG DT NN , DT NN NN , IN PRP$ NN IN DT NN IN NNP .\nHe later took part in a planned meeting .\tPRP RB VBD NN IN DT JJ NN .\nMr. Gedi escaped unharmed from another deadly blast in Mogadishu when he visited in May .\tNNP NNP VBD JJ IN DT JJ NN IN NNP WRB PRP VBD IN NNP .\nSomalia has had no effective central government since 1991 and has been ruled by warring factions .\tNNP VBZ VBN DT JJ JJ NN IN CD CC VBZ VBN VBN IN VBG NNS .\nThe Organization of American States has agreed to oversee Venezuela 's upcoming Congressional elections on December 4 .\tDT NNP IN NNP NNP VBZ VBN TO VB NNP POS JJ JJ NNS IN NNP CD .\nRuben Perina , the OAS mission chief in Venezuela , said election authorities have agreed to give his organization free access to all necessary information and to the technology that will be used for voting .\tNNP NNP , DT NNP NN NN IN NNP , VBD NN NNS VBP VBN TO VB PRP$ NN JJ NN TO DT JJ NN CC TO DT NN WDT MD VB VBN IN NN .\nSeveral opposition groups had called for outside observers , arguing that the Venezuelan electoral commission is biased in favor of President Hugo Chavez 's ruling party .\tJJ NN NNS VBD VBN IN JJ NNS , VBG IN DT JJ JJ NN VBZ VBN IN NN IN NNP NNP NNP POS VBG NN .\nSeveral other opposition parties have called for a boycott of the vote .\tJJ JJ NN NNS VBP VBN IN DT NN IN DT NN .\nMr. Chavez 's party hopes to expand its slim majority in the Congress to two-thirds of the seats .\tNNP NNP POS NN VBZ TO VB PRP$ JJ NN IN DT NNP TO NNS IN DT NNS .\nSuch an increase would make it easier to pass constitutional reforms .\tJJ DT NN MD VB PRP JJR TO VB JJ NNS .\nEuropean Union peacekeepers in Bosnia-Herzegovina have raided the homes of relatives of most wanted Balkan war crimes suspect Radovan Karadzic .\tNNP NNP NNS IN NNP VBP VBN DT NNS IN NNS IN JJS JJ JJ NN NNS VBP NNP NNP .\nSoldiers and police simultaneously searched the homes of Karadzic 's wife , son and daughter in the former Bosnian Serb stronghold of Pale , 16 kilometers southeast of Sarajevo .\tNNS CC NNS RB VBD DT NNS IN NNP POS NN , NN CC NN IN DT JJ JJ JJ NN IN NNP , CD NNS NN IN NNP .\nEU troops conducted similar raids in Pale on Monday .\tNNP NNS VBD JJ NNS IN NNP IN NNP .\nOfficials say the U.N. war crimes tribunal in The Hague ordered the searches to find clues about Karadzic 's whereabouts .\tNNS VBP DT NNP NN NNS JJ IN DT NNP VBD DT NNS TO VB NNS IN NNP POS NNS .\nThe former Bosnian Serb political leader has been in hiding for more than 12 years since the Hague-based court indicted him .\tDT JJ JJ JJ JJ NN VBZ VBN IN VBG IN JJR IN CD NNS IN DT JJ NN VBD PRP .\nKaradzic is charged with war crimes , genocide , crimes against humanity and severe breaches of the Geneva Conventions during the 1990s ethnic conflict in Bosnia-Herzegovina .\tNNP VBZ VBN IN NN NNS , NN , NNS IN NN CC JJ NNS IN DT NNP NNS IN DT NNS JJ NN IN NNP .\nKaradzic 's military commander , General Ratko Mladic - the second most wanted Bosnian war crimes suspect - also remains in hiding .\tNNP POS JJ NN , NNP NNP NNP IN DT JJ RBS JJ JJ NN NNS VBP : RB VBZ IN NN .\nU.S. and Iraqi troops have carried out airstrikes in the Euphrates River Valley , killing 37 insurgents .\tNNP CC JJ NNS VBP VBN RP NNS IN DT NNP NNP NNP , VBG CD NNS .\nThe U.S. military says coalition air strikes hit five targets in a small western town near the Syrian border .\tDT NNP NN VBZ NN NN NNS VBD CD NNS IN DT JJ JJ NN IN DT JJ NN .\nOfficials say 25 insurgents were captured .\tNNS VBP CD NNS VBD VBN .\nMonday 's airstrikes were part of Operation Steel Curtain , which began last week to stem the flow of insurgents and supplies from across the border , ahead of next month 's parliamentary elections .\tNNP POS NNS VBD NN IN NNP NNP NNP , WDT VBD JJ NN TO VB DT NN IN NNS CC NNS IN IN DT NN , RB IN JJ NN POS JJ NNS .\nIn central Baghdad , authorities say two South African security guards were killed in a car bomb explosion near the heavily fortified Green Zone , where the headquarters of the Iraqi government , U.S. forces and most foreign missions are located .\tIN JJ NNP , NNS VBP CD JJ JJ NN NNS VBD VBN IN DT NN NN NN IN DT RB VBN NNP NNP , WRB DT NN IN DT JJ NN , NNP NNS CC JJS JJ NNS VBP VBN .\nThree others were wounded .\tCD NNS VBD VBN .\nSeparately in the western town of Ramadi , police say a roadside bomb exploded shortly after a US convoy passed , killing five people and wounding at least 20 others .\tRB IN DT JJ NN IN NNP , NNS VBP DT NN NN VBD RB IN DT NNP NN VBD , VBG CD NNS CC VBG IN JJS CD NNS .\nIraqi officials say a double suicide bombing south of Baghdad has killed at least 27 people and wounded more than 100 others .\tJJ NNS VBP DT JJ NN VBG NN IN NNP VBZ VBN IN JJS CD NNS CC VBD JJR IN CD NNS .\nAl-Qaida in Iraq has claimed responsibility for the attack , which occurred Monday in the town of Hillah .\tNNP IN NNP VBZ VBN NN IN DT NN , WDT VBD NNP IN DT NN IN NNP .\nOfficials say two suicide bombers blew themselves up in a crowd of former police commandos who were protesting a decision to disband their unit .\tNNS VBP CD NN NNS VBD PRP RP IN DT NN IN JJ NNS NNS WP VBD VBG DT NN TO VB PRP$ NN .\nEarlier , the terrorist group said it has launched an offensive to counter a joint U.S.-Iraqi operation aimed at rooting out insurgents from Baghdad .\tRB , DT JJ NN VBD PRP VBZ VBN DT NN TO VB DT JJ JJ NN VBN IN VBG RP NNS IN NNP .\nIraqi officials have said 40,000 Iraqi troops will take part in the operation , dubbed Operation Lightning .\tJJ NNS VBP VBN CD JJ NNS MD VB NN IN DT NN , VBD NNP NNP .\nThe troops began setting up checkpoints and searching houses around Baghdad on Sunday .\tDT NNS VBD VBG RP NNS CC VBG NNS IN NNP IN NNP .\nMeanwhile , U.S. forces have released the head of Iraq 's top Sunni political party after a brief detention today .\tRB , NNP NNS VBP VBN DT NN IN NNP POS JJ NNP JJ NN IN DT JJ NN NN .\nThe U.S.-led coalition says Mohsen Abdul-Hamid was detained by mistake .\tDT JJ NN VBZ NNP NNP VBD VBN IN NN .\nSyrian President Bashar al-Assad says he expects to withdraw his troops from Lebanon in a matter of months .\tJJ NNP NNP NNP VBZ PRP VBZ TO VB PRP$ NNS IN NNP IN DT NN IN NNS .\nIn a Time magazine interview published Tuesday , Mr. Assad did not give a timetable for pulling out the 14,000 Syrian troops , but said it should be ' very soon . '\tIN DT NNP NN NN VBN NNP , NNP NNP VBD RB VB DT NN IN VBG RP DT CD JJ NNS , CC VBD PRP MD VB `` RB RB . ``\nMeanwhile , in Beirut , thousands of protesters vowed to keep up demonstrations until Syria gets its troops out of Lebanon .\tRB , IN NNP , NNS IN NNS VBD TO VB RP NNS IN NNP VBZ PRP$ NNS IN IN NNP .\nEarlier this week , Lebanon 's pro-Syrian government resigned as the protesters packed Beirut streets over the assassination of former Prime Minister Rafik Hariri .\tRBR DT NN , NNP POS JJ NN VBD IN DT NNS VBD NNP NNS IN DT NN IN JJ NNP NNP NNP NNP .\nThe killing has increased pressure on Syria to end its long involvement in its neighbor 's affairs .\tDT NN VBZ VBN NN IN NNP TO VB PRP$ JJ NN IN PRP$ NN POS NNS .\nU.S. Secretary of State Condoleezza Rice , in London for a Palestinian conference , issued a joint statement with French Foreign Minister Michel Barnier Tuesday , calling for an immediate Syrian withdrawal from Lebanon .\tNNP NNP IN NNP NNP NNP , IN NNP IN DT JJ NN , VBD DT JJ NN IN NNP NNP NNP NNP NNP NNP , VBG IN DT JJ JJ NN IN NNP .\nSpain - which first brought tobacco back from America more than 500 years ago - has started off 2006 with new restrictions on smoking in public places .\tNNP : WDT RB VBD NN RB IN NNP JJR IN CD NNS RB : VBZ VBN RP CD IN JJ NNS IN NN IN JJ NNS .\nStarting New Year 's Day , smoking is banned in Spain in offices , bus and subway stations , and other public places such as stores .\tVBG NNP NNP POS NN , NN VBZ VBN IN NNP IN NNS , NN CC NN NNS , CC JJ JJ NNS JJ IN NNS .\nBars and restaurants with more than 1,100 square meters must have separate non-smoking areas .\tNNS CC NNS IN JJR IN CD JJ NNS MD VB JJ JJ NNS .\nSpain has Europe 's second highest rate of smoking after Greece .\tNNP VBZ NNP POS JJ JJS NN IN NN IN NNP .\nGovernment health officials say cigarettes kill 50,000 Spaniards a year , Despite complaints from some smokers and business owners , one poll says more than 70 percent of Spaniards approve of the new restrictions .\tNNP NN NNS VBP NNS VBP CD NNS DT NN , IN NNS IN DT NNS CC NN NNS , CD NN VBZ JJR IN CD NN IN NNS VBP IN DT JJ NNS .\nNew anti-smoking laws also took effect New Year 's Day in Belgium .\tNNP JJ NNS RB VBD NN NNP NNP POS NN IN NNP .\nOfficials in Haiti say several days of heavy rains have killed at least 11 people , with nearly half the deaths occurring in the northern Artibonite area .\tNNS IN NNP VBP JJ NNS IN JJ NNS VBP VBN IN JJS CD NNS , IN RB PDT DT NNS VBG IN DT JJ NNP NN .\nAuthorities said Thursday that hundreds of homes have been flooded or destroyed by the torrential rains pounding Haiti ahead of the Atlantic hurricane season , which starts June 1 .\tNNS VBD NNP IN NNS IN NNS VBP VBN VBN CC VBN IN DT JJ NNS VBG NNP RB IN DT NNP NN NN , WDT VBZ NNP CD .\nLast year , four storms devastated Haiti , killing hundreds of people and wiping out 15 percent of the country 's economic output .\tJJ NN , CD NNS VBN NNP , VBG NNS IN NNS CC VBG RP CD NN IN DT NN POS JJ NN .\nHaiti is the Western Hemisphere 's poorest country .\tNNP VBZ DT NNP NNP POS JJS NN .\nIt is vulnerable to floods in part because of massive deforestation and poorly constructed houses .\tPRP VBZ JJ TO NNS IN NN IN IN JJ NN CC RB VBN NNS .\nIn April , Haiti received $ 324 million in new aid commitments from international donors .\tIN NNP , NNP VBD $ CD CD IN JJ NN NNS IN JJ NNS .\nEarlier this week , United Nations Secretary-General Ban Ki-moon named former U.S. President Bill Clinton as his special envoy to Haiti .\tRBR DT NN , NNP NNP NNP NNP NNP VBD JJ NNP NNP NNP NNP IN PRP$ JJ NN TO NNP .\nBoth men visited Haiti in March to refocus international attention on restoring economic security to the Caribbean country .\tDT NNS VBD NNP IN NNP TO VB JJ NN IN VBG JJ NN TO DT NNP NN .\nKyrgyzstan 's interim government says it has formally asked Belarus to extradite ousted President Kurmanbek Bakiyev .\tNNP POS JJ NN VBZ PRP VBZ RB VBN NNP TO VB JJ NNP NNP NNP .\nThe deputy leader of the interim government , Azimbek Beknazarov , said Friday that the request has been sent to Belarus , where Mr. Bakiyev took refuge last month .\tDT JJ NN IN DT JJ NN , NNP NNP , VBD NNP IN DT NN VBZ VBN VBN TO NNP , WRB NNP NNP VBD NN JJ NN .\nMr. Bakiyev fled Kyrgyzstan after he was toppled on April 7 during massive protests that killed 85 people .\tNNP NNP VBD NNP IN PRP VBD VBN IN NNP CD IN JJ NNS WDT VBD CD NNS .\nThe opposition took power after the president was ousted amid allegations of corruption and nepotism .\tDT NN VBD NN IN DT NN VBD VBN IN NNS IN NN CC NN .\nThe interim government has charged Mr. Bakiyev with mass killing , accusing him of ordering security forces to open fire on anti-government protesters during the uprising .\tDT JJ NN VBZ VBN NNP NNP IN JJ NN , VBG PRP IN VBG NN NNS TO VB NN IN JJ NNS IN DT NN .\nOn Thursday , the international police agency Interpol said it has issued an arrest warrant for one of Mr. Bakiyev 's sons , Maksim , on fraud charges .\tIN NNP , DT JJ NN NN NNP VBD PRP VBZ VBN DT NN NN IN CD IN NNP NNP POS NNS , NNP , IN NN NNS .\nThe Kyrgyz interim government this week offered cash rewards for information leading to fugitive relatives and colleagues of the deposed leader , including Maksim Bakiyev .\tDT JJ JJ NN DT NN VBD NN NNS IN NN VBG TO JJ NNS CC NNS IN DT JJ NN , VBG NNP NNP .\nA Tony Award-winning musical ' Spring Awakening ' explores the stage in adolescence when the discovery of sexuality brings sudden changes .\tDT NNP JJ NN `` VBG VBG `` VBZ DT NN IN NN WRB DT NN IN NN VBZ JJ NNS .\nBased on a 19th century German play , the musical is set to a rock and roll score and examines the tortured inner lives of a group of adolescents .\tVBN IN DT JJ NN JJ NN , DT NN VBZ VBN TO DT NN CC NN NN CC VBZ DT JJ JJ NNS IN DT NN IN NNS .\nVOA 's Zhang Zheng and Joseph Mok have this report from Broadway , narrated by Elaine Lu .\tNNP POS NNP NNP CC NNP NNP VBP DT NN IN NNP , VBN IN NNP NNP .\nVenezuela has placed advertisements in U.S. newspapers highlighting its offer of low-cost fuel to America 's poor .\tNNP VBZ VBN NNS IN NNP NNS VBG PRP$ NN IN JJ NN TO NNP POS NN .\nFull-page ads in the New York Times and the Washington Post say that Venezuela 's state-owned oil company is giving the discounted fuel because the United States always helps others in times of disaster .\tJJ NNS IN DT NNP NNP NNP CC DT NNP NNP VBP IN NNP POS JJ NN NN VBZ VBG DT JJ NN IN DT NNP NNPS RB VBZ NNS IN NNS IN NN .\nNoting the high cost of fuel , Venezuela says it wants to reciprocate with a humanitarian gesture .\tVBG DT JJ NN IN NN , NNP VBZ PRP VBZ TO VB IN DT JJ NN .\nThe ad copy says the program ' is n't about politics . '\tDT NN NN VBZ DT NN `` VBZ RB IN NNS . ``\nThe low-cost oil comes as Venezuelan President Hugo Chavez is at odds with the White House over Iraq , Cuba and regional trade policies .\tDT JJ NN VBZ IN JJ NNP NNP NNP VBZ IN NNS IN DT NNP NNP IN NNP , NNP CC JJ NN NNS .\nThe low-cost fuel program , aimed at low-income families , hospitals and schools in Massachusetts , is expected to expand to New York state and other cold-weather areas .\tDT JJ NN NN , VBN IN JJ NNS , NNS CC NNS IN NNP , VBZ VBN TO VB TO NNP NNP NN CC JJ JJ NNS .\nThe International Monetary Fund says the U.S. economy is poised for a gradual , if sluggish , recovery .\tDT NNP NNP NNP VBZ DT NNP NN VBZ VBN IN DT JJ , IN JJ , NN .\nThe IMF issued its revised forecast Friday , predicting flat economic growth for the U.S. this year , and two percent growth in 2009 .\tDT NNP VBD PRP$ VBN NN NNP , VBG JJ JJ NN IN DT NNP DT NN , CC CD NN NN IN CD .\nIn April , the Fund 's economists had predicted the U.S. economy would contract slightly and warned the U.S. credit crisis was threatening to cause a global recession .\tIN NNP , DT NNP POS NNS VBD VBN DT NNP NN MD VB RB CC VBD DT NNP NN NN VBD VBG TO VB DT JJ NN .\nBut Friday 's report said the U.S. slowdown had been ' less than feared . '\tCC NNP POS NN VBD DT NNP NN VBD VBN `` JJR IN VBN . ``\nThe IMF praised the Federal Reserve 's handling of the financial crisis and urged the U.S. central bank to keep interest rates low .\tDT NNP VBD DT NNP NNP POS NN IN DT JJ NN CC VBD DT NNP JJ NN TO VB NN NNS JJ .\nHowever , the IMF also said the Federal Reserve may need to act quickly and raise interest rates to counter the threat of inflation .\tRB , DT NNP RB VBD DT NNP NNP MD VB TO VB RB CC VB NN NNS TO VB DT NN IN NN .\nAn IMF official , First Deputy Managing Director John Lipsky , also said the U.S. may face further fallout from rising fuel and commodity prices .\tDT NNP NN , NNP NNP NNP NNP NNP NNP , RB VBD DT NNP MD VB JJ NN IN VBG NN CC NN NNS .\nHaiti 's top appeals court has ruled that a businessman with dual U.S. and Haitian citizenship should be allowed to run for president .\tNNP POS JJ NNS NN VBZ VBN IN DT NN IN JJ NNP CC JJ NN MD VB VBN TO VB IN NN .\nIn a ruling published Thursday , the court rejected a petition from Haiti 's Provisional Election Board , which argued against allowing businessman Dumarsais Simeus to run for president because he held U.S. citizenship .\tIN DT NN VBN NNP , DT NN VBD DT NN IN NNP POS NNP NNP NNP , WDT VBD IN VBG NN NNP NNP TO VB IN NN IN PRP VBD NNP NN .\nThe board was appealing a court decision in October to allow Mr. Simeus to run .\tDT NN VBD VBG DT NN NN IN NNP TO VB NNP NNP TO VB .\nLast week , Prime Minister Gerard Latortue told VOA that after the elections , he would support a constitutional amendment allowing Haitians with dual citizenship to vote and run for all offices .\tJJ NN , NNP NNP NNP NNP VBD NNP IN IN DT NNS , PRP MD VB DT JJ NN VBG NNS IN JJ NN TO VB CC VB IN DT NNS .\nThe first presidential and legislative elections in Haiti since former President Jean-Bertrand Aristide was ousted in a revolt early last year are scheduled for January 8 with possible runoffs one week later .\tDT JJ JJ CC JJ NNS IN NNP IN JJ NNP NNP NNP VBD VBN IN DT NN RB JJ NN VBP VBN IN NNP CD IN JJ NNS CD NN RB .\nAfghan officials say suspected Taleban militants have killed five Afghan security men in separate attacks in the south of the country .\tJJ NNS VBP VBN NNP NNS VBP VBN CD JJ NN NNS IN JJ NNS IN DT NN IN DT NN .\nIn one incident , a roadside bomb killed three Afghan troops Thursday in Ghazni province .\tIN CD NN , DT NN NN VBD CD JJ NNS NNP IN NNP NN .\nIn the other attack , officials say Taleban rebels shot dead two Afghan policemen in Kandahar province late Wednesday .\tIN DT JJ NN , NNS VBP NNP NNS VBD JJ CD JJ NNS IN NNP NN JJ NNP .\nAnother roadside bomb blast wounded four coalition troops Wednesday in the southern province of Zabul .\tDT NN NN NN VBD CD NN NNS NNP IN DT JJ NN IN NNP .\nA coalition official says the four soldiers were not seriously wounded and were likely to be released from a hospital .\tDT NN NN VBZ DT CD NNS VBD RB RB VBN CC VBD JJ TO VB VBN IN DT NN .\nBut , Afghan officials say they prevented a bomb attack Thursday in southern province of Zabul , where police caught a donkey laden with explosives .\tCC , JJ NNS VBP PRP VBD DT NN NN NNP IN JJ NN IN NNP , WRB NNS VBD DT NN VBN IN NNS .\nThey say a man was detained after he walked the donkey into the town of Qalat from the surrounding countryside .\tPRP VBP DT NN VBD VBN IN PRP VBD DT NN IN DT NN IN NNP IN DT VBG NN .\nNine workers are still reported missing in a flooded railroad tunnel in central China .\tCD NNS VBP RB VBN VBG IN DT VBN NN NN IN JJ NNP .\nThe official Xinhua news agency said 52 people were at work building the tunnel early Sunday when water began pouring in .\tDT JJ NNP NN NN VBD CD NNS VBD IN NN VBG DT NN JJ NNP WRB NN VBD VBG IN .\n43 of the workers were rescued .\tCD IN DT NNS VBD VBN .\nOfficials are using pumps and boats to try to locate the missing workers .\tNNS VBP VBG NNS CC NNS TO VB TO VB DT JJ NNS .\nThe 14-kilometer-long tunnel is part of a rail line linking Yichang City in Hubei Province with Wanzhou in southwest China .\tDT JJ NN VBZ NN IN DT NN NN VBG NNP NNP IN NNP NNP IN NNP IN JJ NNP .\nHeavy rains in recent weeks have triggered flooding and mudslides across central China .\tJJ NNS IN JJ NNS VBP VBN NN CC NNS IN JJ NNP .\nXinhua says 78 people died and 18 are missing after three days of downpours set off flash floods last week in Henan province .\tNNP VBZ CD NNS VBD CC CD VBP VBG IN CD NNS IN NNS VBN RP NN NNS JJ NN IN NNP NN .\nFloods in China have killed more than 700 people this year .\tNNS IN NNP VBP VBN RBR IN CD NNS DT NN .\nMillions of people face shortages of drinking water in other parts of the country because of high temperatures and record droughts .\tNNS IN NNS VBP NNS IN NN NN IN JJ NNS IN DT NN IN IN JJ NNS CC NN NNS .\nGeorgian officials say an explosion killed the mayor of a small town and one other person Saturday near the breakaway region of Abkhazia .\tJJ NNS VBP DT NN VBD DT NN IN DT JJ NN CC CD JJ NN NNP IN DT JJ NN IN NNP .\nThe Interior Ministry said it suspects the explosives were detonated by remote control , and blames the attack on Abkhaz separatists .\tDT NNP NNP VBD PRP VBZ DT NNS VBD VBN IN JJ NN , CC VBZ DT NN IN NNP NNS .\nThe blast hit as officials in the town of Mujhava inspected a house that was damaged in an earlier grenade attack .\tDT NN VBD IN NNS IN DT NN IN NNP VBD DT NN WDT VBD VBN IN DT JJR NN NN .\nTensions have been high in Abkhazia and in another breakaway region , South Ossetia .\tNNS VBP VBN JJ IN NNP CC IN DT NN NN , NNP NNP .\nRussian forces swept into Georgia in August after Georgian troops tried to regain control of South Ossetia .\tJJ NNS VBD IN NNP IN NNP IN JJ NNS VBD TO VB NN IN NNP NNP .\nRussian soldiers withdrew from most of Georgia earlier this month , but remain in the breakaway regions .\tJJ NNS VBD IN JJS IN NNP RBR DT NN , CC VBP IN DT NN NNS .\nThe United States ' director of national intelligence , John Negroponte , has created a new position to lead U.S. intelligence efforts regarding Cuba and Venezuela .\tDT NNP NNPS POS NN IN JJ NN , NNP NNP , VBZ VBN DT JJ NN TO VB NNP NN NNS VBG NNP CC NNP .\nNegroponte 's office announced the move on Friday .\tNNP POS NN VBD DT NN IN NNP .\nThe United States also has special missions for intelligence on Iran and North Korea .\tDT NNP NNP RB VBZ JJ NNS IN NN IN NNP CC NNP NNP .\nThe statement said intelligence officer Patrick Maher will serve as Cuba-Venezuela mission manager until a permanent manager is named .\tDT NN VBD NN NN NNP NNP MD VB IN NNP NN NN IN DT JJ NN VBZ VBN .\nThe manager will be responsible for overseeing data collection and analysis , filling intelligence gaps , and putting intelligence strategies into place .\tDT NN MD VB JJ IN VBG NNS NN CC NN , VBG NN NNS , CC VBG NN NNS IN NN .\nU.S. focus on Cuba policy has increased since last month , when leader Fidel Castro announced he was temporarily handing power to his brother and chosen successor while undergoing health care .\tNNP NN IN NNP NN VBZ VBN IN JJ NN , WRB NN NNP NNP VBD PRP VBD RB VBG NN TO PRP$ NN CC VBN NN IN VBG NN NN .\nVenezuela 's president Hugo Chavez is an outspoken critic of U.S. leadership .\tNNP POS NN NNP NNP VBZ DT JJ NN IN NNP NN .\nThe U.S. military says Iraqi authorities have foiled a suicide chemical bomb attack in the western city of Ramadi .\tDT NNP NN VBZ JJ NNS VBP VBN DT NN NN NN NN IN DT JJ NN IN NNP .\nA statement issued Sunday says Iraqi police detained a suicide bomber Friday , before he could detonate two tons of explosives aboard his truck that was also loaded with nearly 20,000 liters of chlorine .\tDT NN VBN NNP VBZ JJ NN VBD DT NN NN NNP , IN PRP MD VB CD NNS IN NNS IN PRP$ NN WDT VBD RB VBN IN RB CD NNS IN NN .\nU.S. officials say the truck was stopped near a police station about 150 meters from a water treatment plant in the predominantly Sunni city .\tNNP NNS VBP DT NN VBD VBN IN DT NN NN IN CD NNS IN DT NN NN NN IN DT RB JJ NN .\nInsurgents have carried out seven chlorine bomb attacks in Iraq this year .\tNNS VBP VBN RP CD NN NN NNS IN NNP DT NN .\nMeanwhile , Iraqi police said Sunday gunmen attacked a Sunni mosque south of Baghdad .\tRB , JJ NNS VBD NNP NNS VBD DT NNP NN NN IN NNP .\nOfficials say at least two people were wounded .\tNNS VBP IN JJS CD NNS VBD VBN .\nMosques are frequent targets of attack in Iraq were sectarian violence between Sunni and Shi'ite muslims has become commonplace .\tNNS VBP JJ NNS IN NN IN NNP VBD JJ NN IN NNP CC NNP NNS VBZ VBN NN .\nOn Saturday , a series of suicide bombings in Iraq killed at least 47 people , many of them Iraqi policemen .\tIN NNP , DT NN IN NN NNS IN NNP VBD IN JJS CD NNS , NN IN PRP JJ NNS .\nIsrael 's opposition Labor Party is due to meet later Saturday to decide whether to join the ruling Likud Party in a coalition government .\tNNP POS NN NNP NNP VBZ JJ TO VB RB NNP TO VB IN TO VB DT NN NNP NNP IN DT NN NN .\nIsraeli Prime Minister Ariel Sharon invited the Labor Party to join his government Friday , after his Likud party approved a move to reshape his ruling coalition .\tJJ NNP NNP NNP NNP VBD DT NNP NNP TO VB PRP$ NN NNP , IN PRP$ NNP NN VBD DT NN TO VB PRP$ NN NN .\nTwo religious parties were also asked to join the government .\tCD JJ NNS VBD RB VBN TO VB DT NN .\nNegotiations among the parties are expected to begin early next week .\tNNS IN DT NNS VBP VBN TO VB RB JJ NN .\nPolitical observers say broadening the government will ease pressure on Mr. Sharon to call new elections , and bolster his plans to evacuate all 21 Jewish settlements in Gaza and four in the West Bank by next year .\tJJ NNS VBP VBG DT NN MD VB NN IN NNP NNP TO VB JJ NNS , CC VB PRP$ NNS TO VB DT CD JJ NNS IN NNP CC CD IN DT NNP NNP IN JJ NN .\nIndian authorities Tuesday seized more than $ 2 million in cash from a Nigerian diplomat on his way out of the country .\tJJ NNS NNP VBD JJR IN $ CD CD IN NN IN DT JJ NN IN PRP$ NN IN IN DT NN .\nInvestigators in New Delhi released the Nigerian diplomat , G.A .\tNNS IN NNP NNP VBD DT JJ NN , NNP .\nOjedokun , Tuesday .\tNNP , NNP .\nHe was detained at an airport in the capital on Monday after security screeners found $ 2.3 million in cash in his baggage .\tPRP VBD VBN IN DT NN IN DT NN IN NNP IN NN NNS VBD $ CD CD IN NN IN PRP$ NN .\nAuthorities who interrogated the diplomat refused to allow him to board his flight to Lagos , Nigeria .\tNNS WP VBD DT NN VBD TO VB PRP TO VB PRP$ NN TO NNP , NNP .\nThey say he failed to adequately explain why he was traveling with so much cash .\tPRP VBP PRP VBD TO RB VB WRB PRP VBD VBG IN RB JJ NN .\nOfficials released the man Tuesday after he demanded diplomatic immunity , but they refused to return the cash .\tNNS VBD DT NN NNP IN PRP VBD JJ NN , CC PRP VBD TO VB DT NN .\nThey add they have informed Nigerian authorities about the incident .\tPRP VBP PRP VBP VBN JJ NNS IN DT NN .\nThe diplomat has been stationed in New Delhi since early this year .\tDT NN VBZ VBN VBN IN NNP NNP IN RB DT NN .\nThere was no immediate comment from the Nigerian government .\tEX VBD DT JJ NN IN DT JJ NN .\nSri Lankan officials say a bomb blast killed six soldiers and wounded several others Saturday in the northern Jaffna peninsula .\tNNP NNP NNS VBP DT NN NN VBD CD NNS CC VBD JJ NNS NNP IN DT JJ NNP NN .\nThe improvised device exploded as soldiers cleaned up the area after a failed attempt by Tamil Tiger rebels to capture the peninsula .\tDT JJ NN VBD IN NNS VBD RP DT NN IN DT VBN NN IN NNP NNP NNS TO VB DT NN .\nIn the capital of Colombo , police say they found a major weapons cache and arrested at least 17 people , including two women .\tIN DT NN IN NNP , NNS VBP PRP VBD DT JJ NNS NN CC VBN IN JJS CD NNS , VBG CD NNS .\nAuthorities say the suspects were planning a major attack .\tNNS VBP DT NNS VBD VBG DT JJ NN .\nPolice say they seized hand grenades and mines in the raid .\tNNS VBP PRP VBD NN NNS CC NNS IN DT NN .\nMeanwhile , Tamil Tigers released a policeman Saturday , who had been held for nearly a year after he strayed into rebel territory while pursuing a pedophile .\tRB , NNP NNP VBD DT NN NNP , WP VBD VBN VBN IN RB DT NN IN PRP VBD IN JJ NN IN VBG DT NN .\nThe release followed a request from Ulf Henricsson , the outgoing head of the team monitoring the 2002 ceasefire between the government and rebels .\tDT NN VBD DT NN IN NNP NNP , DT JJ NN IN DT NN VBG DT CD NN IN DT NN CC NNS .\nEuropean Union lawmakers say they hope to question two U.S. senators and the CIA director about reports of the agency 's use of secret prisons in Europe to house accused terrorists .\tNNP NNP NNS VBP PRP VBP TO VB CD NNP NNS CC DT NNP NN IN NNS IN DT NN POS NN IN JJ NNS IN NNP TO VB VBN NNS .\nThe head of a European Parliament committee , Italian lawmaker Giovanni Claudio Fava said the testimony would be part of a probe into the alleged prisons in eastern Europe .\tDT NN IN DT JJ NNP NN , JJ NN NNP NNP NNP VBD DT NN MD VB NN IN DT NN IN DT JJ NNS IN JJ NNP .\nHe said European lawmakes will ask Senators John Kerry and John McCain , as well as CIA director Porter Goss , and his predecessor , George Tenet , to speak to the panel .\tPRP VBD JJ NNS MD VB NNP NNP NNP CC NNP NNP , RB RB IN NNP NN NNP NNP , CC PRP$ NN , NNP NNP , TO VB TO DT NN .\nOfficials say the interviews would be voluntary , because the panel has no legal authority to subpoena witnesses .\tNNS VBP DT NNS MD VB JJ , IN DT NN VBZ DT JJ NN TO VB NNS .\nTestimony would also be sought from human rights groups that may have information about the reports of prisons used for terrorism suspects .\tNN MD RB VB VBN IN JJ NNS NNS WDT MD VB NN IN DT NNS IN NNS VBN IN NN NNS .\nEuropean lawmakers have raised concerns that the alleged action led to human rights violations .\tJJ NNS VBP VBN NNS IN DT JJ NN VBD TO JJ NNS NNS .\nA committee of the U.S. congress has voted to create a new federal agency to regulate the financial industry .\tDT NN IN DT NNP NN VBZ VBN TO VB DT JJ JJ NN TO VB DT JJ NN .\nThe House Financial Services Committee voted mostly along party lines ( 39-29 ) Thursday to establish the Consumer Financial Protection Agency .\tDT NNP NNP NNPS NNP VBD RB IN NN NNS LRB CD RRB NNP TO VB DT NNP NNP NNP NNP .\nThis is a step in congressional efforts to enact President Barack Obama 's plan to improve regulation in the wake of the economic crisis .\tDT VBZ DT NN IN JJ NNS TO VB NNP NNP NNP POS NN TO VB NN IN DT NN IN DT JJ NN .\nSupporters say the agency would protect consumers from lenders who mislead customers , banks that charge large fees for overdrafts , or raise interest rates in unreasonable ways .\tNNS VBP DT NN MD VB NNS IN NNS WP VBD NNS , NNS WDT VBP JJ NNS IN NNS , CC VB NN NNS IN JJ NNS .\nOpponents say the agency would be unwarranted government intrusion in business .\tNNS VBP DT NN MD VB JJ NN NN IN NN .\nThe next step for the bill would be a vote before the full House .\tDT JJ NN IN DT NN MD VB DT NN IN DT JJ NNP .\nThe president of the International Committee of the Red Cross says his organization is in intense dialogue with U.S. authorities to gain access to all detainees held under the struggle against terrorism .\tDT NN IN DT NNP NNP IN DT NNP NNP VBZ PRP$ NN VBZ IN JJ NN IN NNP NNS TO VB NN TO DT NNS VBN IN DT NN IN NN .\nJakob Kallenberger told reporters in Geneva the Red Cross has visited many detainees at the U.S. naval base at Guantanamo Bay in Cuba , in Afghanistan and in Iraq .\tNNP NNP VBD NNS IN NNP DT NNP NNP VBZ VBN JJ NNS IN DT NNP JJ NN IN NNP NNP IN NNP , IN NNP CC IN NNP .\nHe says his group has been pressing for two years to gain access to detainees in undisclosed locations .\tPRP VBZ PRP$ NN VBZ VBN VBG IN CD NNS TO VB NN TO NNS IN JJ NNS .\nU.S. State Department legal advisor John Bellinger acknowledged to reporters Thursday that the United States has not granted the Red Cross access to all detainees .\tNNP NNP NNP JJ NN NNP NNP VBD TO NNS NNP IN DT NNP NNPS VBZ RB VBN DT NNP NNP NN TO DT NNS .\nHe did not elaborate .\tPRP VBD RB VB .\nU.S news reports last month said the United States has held detainees at secret locations in Europe .\tNNP NN NNS JJ NN VBD DT NNP NNPS VBZ VBN NNS IN JJ NNS IN NNP .\nA spokesman for the group Human Rights Watch told a Warsaw newspaper Poland was the main center for detaining such suspects .\tDT NN IN DT NN NNP NNP NNP VBD DT NNP NN NNP VBD DT JJ NN IN VBG JJ NNS .\nColombian police have deactivated two explosive devices found on a highway in northern Bogota .\tJJ NNS VBP VBN CD JJ NNS VBN IN DT NN IN JJ NNP .\nAuthorities discovered the devices Saturday , following a tip from someone who noticed a suspicious bag and suitcase lying by a street light .\tNNS VBD DT NNS NNP , VBG DT NN IN DT WP VBD DT JJ NN CC NN VBG IN DT NN NN .\nThey say the devices each contained three kilograms of ammonium nitrate and fuel oil , known as anfo .\tPRP VBP DT NNS DT VBN CD NNS IN NN NN CC NN NN , VBN IN NN .\nPolice secured the area in order to deactivate the devices , triggering traffic backups .\tNNS VBD DT NN IN NN TO VB DT NNS , VBG NN NNS .\nAn advisor to chief United Nations war crimes prosecutor Carla del Ponte says she will criticize Serbia 's lack of cooperation with the Hague war crimes tribunal when she reports to the Security Council Thursday .\tDT NN TO JJ NNP NNP NN NNS NN NNP NNP NNP VBZ PRP MD VB NNP POS NN IN NN IN DT NNP NN NNS JJ WRB PRP VBZ TO DT NNP NNP NNP .\nAnton Nikiforov made his comments in The Hague as Ms. del Ponte prepared to deliver her assessment to the council .\tNNP NNP VBD PRP$ NNS IN DT NNP IN NNP NNP NNP VBD TO VB PRP$ NN TO DT NN .\nAnxious to display cooperation , authorities in Serbia and Montenegro last week gave the prosecutors a secret file on top fugitive war crimes suspect General Ratko Mladic , including a number of pages they earlier had withheld .\tJJ TO VB NN , NNS IN NNP CC NNP JJ NN VBD DT NNS DT JJ NN IN JJ JJ NN NNS VBP NNP NNP NNP , VBG DT NN IN NNS PRP RB VBD VBN .\nBut Mr. Nikiforov said the file still lacked such important information as the general 's promotion record during the mid-1990s in the midst of the conflict in Bosnia-Herzegovina .\tCC NNP NNP VBD DT NN RB VBD JJ JJ NN IN DT NN POS NN NN IN DT NNS IN DT NN IN DT NN IN NNP .\nThe Hague tribunal indicted the general in 1995 on charges involving his role in attacks on civilians during the Bosnian conflict .\tDT NNP NN VBD DT JJ IN CD IN NNS VBG PRP$ NN IN NNS IN NNS IN DT JJ NN .\nA joint force of U.N. and Congolese troops has attacked Ugandan rebels in the eastern Democratic Republic of Congo .\tDT JJ NN IN NNP CC JJ NNS VBZ VBN JJ NNS IN DT JJ JJ NNP IN NNP .\nU.N. sources say the attacks in North Kivu province Sunday were against the Allied Democratic Forces , a Ugandan rebel group that maintains bases in the DRC .\tNNP NNS VBP DT NNS IN NNP NNP NN NNP VBD IN DT NNP JJ NNS , DT JJ NN NN WDT VBZ NNS IN DT NNP .\nThis is the second U.N.-Congolese offensive against militias in the region since the DRC 's constitutional referendum a week ago .\tDT VBZ DT JJ JJ NN IN NNS IN DT NN IN DT NNP POS JJ NN DT NN RB .\nThe troops hope to assert government control in areas dominated for years by foreign-backed rebels or local militias .\tDT NNS VBP TO VB NN NN IN NNS VBN IN NNS IN JJ NNS CC JJ NNS .\nThe U.N. peacekeeping mission in Congo says U.N. and Congolese troops captured the town of Nioka from ethnic Lendu rebels on Saturday .\tDT NNP NN NN IN NNP VBZ NNP CC JJ NNS VBD DT NN IN NNP IN JJ NNP NNS IN NNP .\nPartial returns from last week 's vote show DRC voters approving the new constitution 83 to 17 percent .\tJJ NNS IN JJ NN POS NN VBP NNP NNS VBG DT JJ NN CD TO CD NN .\nThe charter is designed to pave the way for national elections and help end decades of chaos and war .\tDT NN VBZ VBN TO VB DT NN IN JJ NNS CC VB VB NNS IN NN CC NN .\nThe South African government has increased its offer to more than one million public service workers who are threatening to strike .\tDT JJ JJ NN VBZ VBN PRP$ NN TO JJR IN CD CD JJ NN NNS WP VBP VBG TO VB .\nFollowing negotiations with union representatives Thursday , the government increased its monthly housing allowance offer to $ 95 from about $ 87 .\tVBG NNS IN NN NNS NNP , DT NN VBD PRP$ JJ NN NN NN TO $ CD IN IN $ CD .\nBut the government did not change its pay raise offer of 7 percent .\tCC DT NN VBD RB VB PRP$ NN NN NN IN CD NN .\nThe unions are demanding a pay raise of 8.6 percent , more than twice the rate of inflation , in addition to a higher housing allowance .\tDT NNS VBP VBG DT NN NN IN CD NN , JJR IN RB DT NN IN NN , IN NN TO DT JJR NN NN .\nOn Tuesday , civil service workers staged a one-day strike and held marches in Cape Town and Pretoria .\tIN NNP , JJ NN NNS VBD DT JJ NN CC VBD NNS IN NNP NNP CC NNP .\nOfficials say the strike affected schools and public offices , although essential services such as police and hospitals ran on reduced staffing .\tNNS VBP DT NN VBD NNS CC JJ NNS , IN JJ NNS JJ IN NNS CC NNS VBD IN JJ NN .\nThree years ago , public workers staged a crippling strike that shut down many schools and forced some hospitals to operate with minimal staff for several weeks .\tCD NNS RB , JJ NNS VBD DT JJ NN WDT VBD RP JJ NNS CC VBD DT NNS TO VB IN JJ NN IN JJ NNS .\nEuropean football 's governing body UEFA has barred Israel from hosting international matches until further notice because of the violence in the region .\tJJ NN POS NN NN NNP VBZ VBN NNP IN VBG JJ NNS IN JJ NN IN IN DT NN IN DT NN .\nIn a letter sent to the Israel Football Association Monday , UEFA said all games scheduled to be played in Israel ' shall be played outside of Israeli territory . '\tIN DT NN VBN TO DT NNP NNP NNP NNP , NNP VBD DT NNS VBN TO VB VBN IN NNP `` MD VB VBN IN IN JJ NN . ``\nThe ban applies to international and club games .\tDT NN VBZ TO JJ CC NN NNS .\nThat means Israel 's Maccabi Haifa will need to find an alternate venue for its August 23 second leg of the Champions League third qualifying-round series against Liverpool of England .\tDT VBZ NNP POS NNP NNP MD VB TO VB DT JJ NN IN PRP$ NNP CD JJ NN IN DT NNP NNP JJ JJ NN IN NNP IN NNP .\nAlso affected is the second-leg UEFA Cup game between Israeli club Betar Jerusalem and Dinamo Bucharest of Romania , which was scheduled to be held in Jerusalem on August 24 .\tRB VBN VBZ DT JJ NNP NNP NN IN JJ NN NNP NNP CC NNP NNP IN NNP , WDT VBD VBN TO VB VBN IN NNP IN NNP CD .\nThe decision could also impact Israel 's home qualifying matches for the Euro 2008 tournament .\tDT NN MD RB VB NNP POS NN VBG NNS IN DT NNP CD NN .\nCanadian Prime Minister Stephen Harper has arrived in Kandahar , Afghanistan , for an unannounced visit to Canadian troops stationed there .\tJJ NNP NNP NNP NNP VBZ VBN IN NNP , NNP , IN DT JJ NN TO JJ NNS VBN RB .\nMr. Harper arrived at Kandahar air base Sunday in a Canadian military aircraft .\tNNP NNP VBD IN NNP NN NN NNP IN DT JJ JJ NN .\nJournalists traveling with him had to agree not to break news of the trip until his visit was underway .\tNNS VBG IN PRP VBD TO VB RB TO VB NN IN DT NN IN PRP$ NN VBD JJ .\nHe said the trip is a way to show the Canadian troops their government and their country is behind them .\tPRP VBD DT NN VBZ DT NN TO VB DT JJ NNS PRP$ NN CC PRP$ NN VBZ IN PRP .\nMr. Harper said Canada 's mission in Afghanistan is its most significant international undertaking in decades .\tNNP NNP VBD NNP POS NN IN NNP VBZ PRP$ RBS JJ JJ NN IN NNS .\nHe is expected to spend Monday visiting troops on the base and eating with them in the dining facilities .\tPRP VBZ VBN TO VB NNP VBG NNS IN DT NN CC NN IN PRP IN DT NN NNS .\nCanada has about 2,300 members of its military in Afghanistan .\tNNP VBZ IN CD NNS IN PRP$ JJ IN NNP .\nTen Canadian soldiers and a diplomat have died there since early 2002 .\tCD JJ NNS CC DT NN VBP VBN RB IN JJ CD .\nFrench Prime Minister Dominique de Villepin has postponed a planned visit to Canada , after rioting that began outside Paris last week spread through the city 's largely Muslim-inhabited suburbs .\tJJ NNP NNP NNP NNP NNP VBZ VBN DT JJ NN TO NNP , IN VBG IN VBD IN NNP JJ NN VBD IN DT NN POS RB JJ NNS .\nMr. de Villepin told lawmakers Wednesday the government is fully mobilized and that he is indefinitely postponing his planned trip .\tNNP NNP NNP VBD NNS NNP DT NN VBZ RB VBN CC IN PRP VBZ RB VBG PRP$ JJ NN .\nInterior Minister Nikolas Sarkozy also canceled scheduled visits to Afghanistan and Pakistan next week .\tNNP NNP NNP NNP RB VBD VBN NNS TO NNP CC NNP JJ NN .\nEarlier , President Jacques Chirac called for calm and measures to bring the riots under control .\tRB , NNP NNP NNP VBD IN NN CC NNS TO VB DT NNS IN NN .\nFrench police today said they detained 34 people in the sixth consecutive night of rioting .\tJJ NN NN VBD PRP VBD CD NNS IN DT JJ JJ NN IN NN .\nRioters torched cars and clashed with police who fired rubber bullets to disperse the crowds .\tNNS VBD NNS CC VBN IN NNS WP VBD NN NNS TO VB DT NNS .\nThe violence began Thursday in the Parisian suburb of Clichy-sous-Bois , after two teenagers said to be of North African descent were electrocuted while hiding from police inside a power station .\tDT NN VBD NNP IN DT JJ NN IN NNP , IN CD NNS VBN TO VB IN JJ JJ NN VBD VBN IN VBG IN NN IN DT NN NN .\nA top member of the Obama administration begins a visit to the Middle East Sunday to discuss global security .\tDT JJ NN IN DT NNP NN VBZ DT NN TO DT NNP NNP NNP TO VB JJ NN .\nU.S. Department of Homeland Security Secretary Janet Napolitano will travel to Saudi Arabia to meet with top security officials about counter-terrorism , counter-radicalization and infrastructure protection .\tNNP NNP IN NNP NNP NNP NNP NNP MD VB TO NNP NNP TO VB IN JJ NN NNS IN NN , NN CC NN NN .\nShe will also talk to businesswomen about the importance of education and public service .\tPRP MD RB VB TO NNS IN DT NN IN NN CC JJ NN .\nNapolitano will travel on Monday to the United Arab Emirates .\tNNP MD VB IN NNP TO DT NNP NNP NNPS .\nThere she will discuss ways to bolster global aviation security with her Middle Eastern counterparts and officials of the International Civil Aviation Organization .\tEX PRP MD VB NNS TO VB JJ NN NN IN PRP$ NN NNP NNS CC NNS IN DT NNP NNP NNP NNP .\nU.S. intelligence analysts say the voice on an audiotape purportedly from al-Qaida leader Osama bin Laden is indeed that of the terrorist leader .\tNNP NN NNS VBP DT NN IN DT NN RB IN NNP NN NNP NNP NNP VBZ RB IN IN DT JJ NN .\nThe tape - first broadcast Thursday by Arab broadcaster Al-Jazeera - says there are plans for a new attack in the United States , but offers a ' long-term ' truce if American forces pull out of Iraq and Afghanistan .\tDT NN IN JJ NN NNP IN NNP NN NNP : VBZ EX VBP NNS IN DT JJ NN IN DT NNP NNPS , CC VBZ DT `` JJ `` NN IN JJ NNS VBP IN IN NNP CC NNP .\nThe White House flatly rejected the offer , with a spokesman saying the United States does not negotiate with terrorists .\tDT NNP NNP RB VBD DT NN , IN DT NN VBG DT NNP NNPS VBZ RB VB IN NNS .\nThe message says heightened security in the United States has not prevented attacks .\tDT NN VBZ JJ NN IN DT NNP NNPS VBZ RB VBN NNS .\nIt says the delay is simply due to preparations for new operations .\tPRP VBZ DT NN VBZ RB JJ TO NNS IN JJ NNS .\nThere has been no specific information on when the tape was recorded , but the voice makes reference to sinking public opinion polls for President Bush .\tEX VBZ VBN DT JJ NN IN WRB DT NN VBD VBN , CC DT NN VBZ NN TO VBG JJ NN NNS IN NNP NNP .\nThis is Osama bin Laden 's first message since December , 2004 .\tDT VBZ NNP NNP NNP POS JJ NN IN NNP , CD .\nTen people believed to be North Koreans seeking asylum have entered a South Korean school in China .\tCD NNS VBN TO VB NNP NNS VBG NN VBP VBN DT JJ JJ NN IN NNP .\nSouth Korean officials say the people entered the school Tuesday in the city of Qingdao , along China 's eastern coast .\tJJ JJ NNS VBP DT NNS VBD DT NN NNP IN DT NN IN NNP , IN NNP POS JJ NN .\nEarlier this month , South Korean diplomats took custody of another group of people believed to be North Koreans who entered the same school asking to be sent to South Korea .\tRBR DT NN , JJ JJ NNS VBD NN IN DT NN IN NNS VBN TO VB JJ NNS WP VBD DT JJ NN VBG TO VB VBN TO NNP NNP .\nNo decision on their status has been announced .\tDT NN IN PRP$ NN VBZ VBN VBN .\nBeijing has an agreement with Pyongyang to return asylum seekers , but has allowed many to travel to South Korea through third countries .\tNNP VBZ DT NN IN NNP TO VB NN NNS , CC VBZ VBN JJ TO VB TO NNP NNP IN JJ NNS .\nHundreds of North Koreans have broken into embassies and foreign schools in China in recent years seeking asylum .\tNNS IN NNP NNS VBP VBN IN NNS CC JJ NNS IN NNP IN JJ NNS VBG NN .\nThe prime minister of Nepal plans to give the U.S. president a Mount Everest rock as a symbol of concern about climate change .\tDT JJ NN IN NNP VBZ TO VB DT NNP NN DT NNP NNP NN IN DT NN IN NN IN NN NN .\nPrime Minister Madhav Kumar Nepal is scheduled to attend a United Nations General Assembly meeting in New York during the coming week .\tNNP NNP NNP NNP NNP VBZ VBN TO VB DT NNP NNP NNP NNP NN IN NNP NNP IN DT JJ NN .\nHe plans to present President Barack Obama with a stone from the summit of Mount Everest .\tPRP VBZ TO VB NNP NNP NNP IN DT NN IN DT NN IN NNP NNP .\nEverest is the world 's tallest mountain , at nearly 8,900 meters .\tNNP VBZ DT NN POS JJS NN , IN RB CD NNS .\nThe World Wildlife Fund says Mr. Nepal will bring the memento to Mr. Obama as a ' symbol of the melting Himalayas . '\tDT NNP NNP NNP VBZ NNP NNP MD VB DT NN TO NNP NNP IN DT `` NN IN DT VBG NNP . ``\nBack in May , a Nepalese Sherpa climbed Everest for a record 19th time .\tRB IN NNP , DT JJ NN VBD NNP IN DT NN JJ NN .\nAt the top , he unfurled a banner that read : ' Stop Climate Change . '\tIN DT NN , PRP VBD DT NN WDT VBD : `` NNP NNP NNP . ``\nThe U.S. Secretary of State says World AIDS Day Thursday , is an opportunity for people to rededicate themselves to action in the fight against the disease .\tDT NNP NNP IN NNP VBZ NNP NNP NNP NNP , VBZ DT NN IN NNS TO VB PRP TO NN IN DT NN IN DT NN .\nIn a videotaped message discussing this year 's theme of ' Keeping the Promise , ' Condoleezza Rice said that America is leading the battle against AIDS in more than 100 countries .\tIN DT VBN NN VBG DT NN POS NN IN `` VBG DT NNP , `` NNP NNP VBD IN NNP VBZ VBG DT NN IN NNP IN JJR IN CD NNS .\nMs. Rice noted that President Bush 's Emergency Plan for AIDS Relief is the largest international initiative ever undertaken by a single nation to combat a disease .\tNNP NNP VBD IN NNP NNP POS NN NN IN NNP NNP VBZ DT JJS JJ NN RB VBN IN DT JJ NN TO VB DT NN .\nThat plan , announced nearly three years ago , is a five-year , $ 15 billion effort focusing on the 15 hardest-hit nations in Africa , Asia and the Caribbean .\tDT NN , VBN RB CD NNS RB , VBZ DT JJ , $ CD CD NN VBG IN DT CD JJ NNS IN NNP , NNP CC DT NNP .\nWorld AIDS Day is being commemorated in cities and towns across America with special musical and literary events , moments of silence and fundraisers .\tNNP NNP NNP VBZ VBG VBN IN NNS CC NNS IN NNP IN JJ JJ CC JJ NNS , NNS IN NN CC NNS .\nPresident Bush spoke Thursday morning in Washington to commemorate World AIDS Day .\tNNP NNP VBD NNP NN IN NNP TO VB NNP NNP NNP .\nCuban state television says Venezuelan President Hugo Chavez has made a surprise visit to Cuba to meet with his friend and ally , Cuban leader Fidel Castro .\tJJ NN NN VBZ JJ NNP NNP NNP VBZ VBN DT NN NN TO NNP TO VB IN PRP$ NN CC NN , JJ NN NNP NNP .\nThe media report Tuesday said Mr. Chavez also is to meet with acting Cuban President Raul Castro , who has been head of the Cuban government since Fidel Castro temporarily transferred power to him last July after undergoing intestinal surgery .\tDT NNS NN NNP VBD NNP NNP RB VBZ TO VB IN VBG JJ NNP NNP NNP , WP VBZ VBN NN IN DT JJ NN IN NNP NNP RB VBD NN TO PRP JJ NNP IN VBG JJ NN .\nLast week , Bolivian President Evo Morales was on the island for meetings with Fidel and Raul Castro .\tJJ NN , JJ NNP NNP NNP VBD IN DT NN IN NNS IN NNP CC NNP NNP .\nHe said Fidel appears to have recovered well from the surgery .\tPRP VBD NNP VBZ TO VB VBN RB IN DT NN .\nCuban television recently broadcast Fidel Castro 's first television interview since the surgery .\tJJ NN RB VBD NNP NNP POS JJ NN NN IN DT NN .\nIn the pre-recorded piece , Fidel spoke slowly and did not say whether he plans to resume the day-to-day duties as president .\tIN DT JJ NN , NNP VBD RB CC VBD RB VB IN PRP VBZ TO VB DT JJ NNS IN NN .\nThe 80-year-old Cuban leader has not appeared in public since the transfer of power last year .\tDT JJ JJ NN VBZ RB VBN IN JJ IN DT NN IN NN JJ NN .\nMembers of the Palestinian 's Fatah party say they have agreed on a cabinet for Prime Minister Ahmed Qureia after days of negotiations and delays .\tNNS IN DT JJ POS NNP NN VBP PRP VBP VBN IN DT NN IN NNP NNP NNP NNP IN NNS IN NNS CC NNS .\nMr. Qureia has been trying all week to get a new cabinet approved in the Palestinian parliament .\tNNP NNP VBZ VBN VBG DT NN TO VB DT JJ NN VBN IN DT JJ NN .\nThe prime minister abandoned his original cabinet list Monday after several legislators charged it had many corrupt officials , and threatened to vote it down .\tDT JJ NN VBD PRP$ JJ NN NN NNP IN JJ NNS VBD PRP VBD JJ JJ NNS , CC VBD TO VB PRP RB .\nPalestinian officials say the vote is now rescheduled for Thursday .\tJJ NNS VBP DT NN VBZ RB VBN IN NNP .\nMr. Qureia must step down if he fails to get his cabinet approved .\tNNP NNP MD VB RB IN PRP VBZ TO VB PRP$ NN VBD .\nFrench oil group Total says it has not made any new acquisitions or investments in Burma since 1998 , after French President Nicolas Sarkozy on Wednesday urged the company to freeze investments in the southeast Asian country .\tJJ NN NN NNP VBZ PRP VBZ RB VBN DT JJ NNS CC NNS IN NNP IN CD , IN JJ NNP NNP NNP IN NNP VBD DT NN TO VB NNS IN DT JJ JJ NN .\nTotal defended its business in Burma , saying companies that would take their place in the country may be less ethical .\tNNP VBD PRP$ NN IN NNP , VBG NNS WDT MD VB PRP$ NN IN DT NN MD VB RBR JJ .\nThe French oil giant directly employs at least 240 people in Burma , and operates the Yadana offshore gas field , selling the majority of its product to Thailand .\tDT JJ NN NN RB VBZ IN JJS CD NNS IN NNP , CC VBZ DT NNP JJ NN NN , VBG DT NN IN PRP$ NN TO VB .\nChevron , a U.S. oil company , also has a stake in the Yadana project .\tNNP , DT NNP NN NN , RB VBZ DT NN IN DT NNP NN .\nCritics say the money brought in by foreign investors like Total keeps the current military regime in power .\tNNS VBP DT NN VBN RP IN JJ NNS IN NNP VBZ DT JJ JJ NN IN NN .\nBurma is thought to have substantial supplies of natural gas and oil that have attracted energy companies from China , India , and Malaysia .\tNNP VBZ VBN TO VB JJ NNS IN JJ NN CC NN WDT VBP VBN NN NNS IN NNP , NNP , CC NNP .\nOfficials in Taiwan say President Chen Shui-bian is expected to travel to Central America and the Caribbean next week .\tNNS IN NNP VBP NNP NNP NNP VBZ VBN TO VB TO NNP NNP CC DT NNP JJ NN .\nSaint Vincent and the Grenadines , Nicaragua and Guatemala are among the nations on his itinerary .\tNNP NNP CC DT NNPS , NNP CC NNP VBP IN DT NNS IN PRP$ NN .\nThe Taipei Times Wednesday quotes a government spokesman as saying the trip is aimed at strengthening friendship between Taiwan and its allies .\tDT NNP NNP NNP VBZ DT NN NN IN VBG DT NN VBZ VBN IN VBG NN IN NNP CC PRP$ NNS .\nTaipei 's participation in diplomatic affairs has been a controversial issue since 1949 , when Taiwan and China split at the end of a civil war .\tNNP POS NN IN JJ NNS VBZ VBN DT JJ NN IN CD , WRB NNP CC NNP VBD IN DT NN IN DT JJ NN .\nChina continues to claim sovereignty over Taiwan .\tNNP VBZ TO VB NN IN NNP .\nOnly 26 countries , mostly small nations in Africa , Central America and the Caribbean , recognize Taiwan 's government .\tRB CD NNS , RB JJ NNS IN NNP , NNP NNP CC DT NNP , VBP NNP POS NN .\nThe United States recognizes the People 's Republic of China as China 's sole legal government , and acknowledges Beijing 's position that there is but one China and Taiwan is part of it .\tDT NNP NNPS VBZ DT NNP POS NNP IN NNP IN NNP POS JJ JJ NN , CC VBZ NNP POS NN IN EX VBZ CC CD NNP CC NNP VBZ NN IN PRP .\nSri Lanka 's Tamil Tiger rebels say their meeting with Norway 's peace envoy has failed to reach a deal on a controversial government proposal to share the distribution of tsunami aid with them .\tNNP NNP POS NNP NNP NNS VBP PRP$ NN IN NNP POS NN NN VBZ VBN TO VB DT NN IN DT JJ NN NN TO VB DT NN IN NN NN IN PRP .\nThe head of the rebels ' political wing , S.P. Thamilselvan , made the remark after talks Wednesday with Norway 's Deputy Foreign Minister Vidar Helgesen in the northern town of Kilinochchi .\tDT NN IN DT NNS POS JJ NN , NNP NNP , VBD DT NN IN NNS NNP IN NNP POS NNP NNP NNP NNP NNP IN DT JJ NN IN NNP .\nMr. Helgesen met with President Chandrika Kumaratunga Tuesday .\tNNP NNP VBD IN NNP NNP NNP NNP .\nThe envoy said he will return to Colombo to clear up remaining obstacles , including a request from Sri Lanka 's Muslim minority to be included in the aid plan .\tDT NN VBD PRP MD VB TO NNP TO VB RP VBG NNS , VBG DT NN IN NNP NNP POS NNP NN TO VB VBN IN DT NN NN .\nLast week , the ruling party 's main coalition partner quit the government over the joint aid plan .\tJJ NN , DT VBG NN POS JJ NN NN VBD DT NN IN DT JJ NN NN .\nThe country 's influential Buddhist monks said such an agreement would help the rebels ' cause for a separate state .\tDT NN POS JJ NN NNS VBD JJ DT NN MD VB DT NNS POS NN IN DT JJ NN .\nCanada 's foreign ministry says seven Canadian citizens have been killed by Israeli air strikes in Lebanon and three other Canadians have been wounded .\tNNP POS JJ NN VBZ CD JJ NNS VBP VBN VBN IN JJ NN NNS IN NNP CC CD JJ NNS VBP VBN VBN .\nOn Sunday , Israeli forces hit the house where the Canadians were staying in southern Lebanon , near the Israeli border .\tIN NNP , JJ NNS VBD DT NN WRB DT NNS VBD VBG IN JJ NNP , IN DT JJ NN .\nEarlier , Canadian foreign minister Peter MacKay said eight Canadians had died in Lebanon , but a spokesperson , citing updated information , late Sunday revised the number to seven .\tRB , JJ JJ NN NNP NNP VBD CD NNS VBD VBN IN NNP , CC DT NN , VBG VBN NN , JJ NNP VBD DT NN TO CD .\nLebanese police said at least five of the Canadians were from the same family .\tJJ NNS VBD IN JJS CD IN DT NNS VBD IN DT JJ NN .\nNews reports said the family was vacationing in Lebanon .\tNNP NNS VBD DT NN VBD VBG IN NNP .\nThe Israeli Army issued a statement saying it had warned civilians to get out of the area because it was used by Hezbollah to fire missiles into Israel .\tDT JJ NNP VBD DT NN VBG PRP VBD VBN NNS TO VB IN IN DT NN IN PRP VBD VBN IN NNP TO VB NNS IN NNP .\nThe statement said responsibility for the deaths rests entirely with Hezbollah .\tDT NN VBD NN IN DT NNS VBZ RB IN NNP .\nIraqi officials say a series of bombings at a sports facility in the predominately Shi'ite Turkmen town of Tal Afar killed at least 10 people Friday .\tJJ NNS VBP DT NN IN NNS IN DT NNS NN IN DT JJ NNP NNP NN IN NNP NNP VBD IN JJS CD NNS NNP .\nInvestigators say the blasts took place at a field where a crowd had gathered to watch a football match .\tNNS VBP DT NNS VBD NN IN DT NN WRB DT NN VBD VBN TO VB DT NN NN .\nPolice say an attacker drove a vehicle near the crowd and detonated explosives .\tNNS VBP DT NN VBD DT NN IN DT NN CC VBN NNS .\nThey say two other suicide bombers then detonated explosives near spectators .\tPRP VBP CD JJ NN NNS RB VBD NNS IN NNS .\nAuthorities say more than 100 people were wounded .\tNNS VBP JJR IN CD NNS VBD VBN .\nTal Afar is located in northern Iraq , near the city of Mosul .\tNNP NNP VBZ VBN IN JJ NNP , IN DT NN IN NNP .\nRussian news reports say two people were killed and several others wounded in a bomb blast in Abkhazia during Wednesday 's visit by Russian Prime Minister Vladimir Putin .\tJJ NN NNS VBP CD NNS VBD VBN CC JJ NNS VBD IN DT NN NN IN NNP IN NNP POS NN IN JJ NNP NNP NNP NNP .\nMr. Putin 's one-day trip to the Georgian breakaway territory was the first by a top Russian official since Moscow last year recognized Abkhazia 's independence after the five-day Russian-Georgian war .\tNNP NNP POS JJ NN TO DT JJ NN NN VBD DT JJ IN DT JJ JJ NN IN NNP JJ NN VBD NNP POS NN IN DT JJ JJ NN .\nThe reports quote authorities as saying the blast in the resort town of Gagra killed a 52-year-old woman and wounded four others .\tDT NNS VBP NNS IN VBG DT NN IN DT NN NN IN NNP VBD DT JJ NN CC VBD CD NNS .\nA second victim died later in a hospital .\tDT JJ NN VBD RB IN DT NN .\nAuthorities say no one was hurt in the second blast , which occurred in the Abkhaz capital , Sukhumi , shortly after Mr. Putin departed the city and returned to the Russian Black Sea resort of Sochi .\tNNS VBP DT NN VBD VBN IN DT JJ NN , WDT VBD IN DT NNP NN , NNP , RB IN NNP NNP VBD DT NN CC VBD TO DT JJ NNP NNP NN IN NNP .\nNATO-led peacekeeping troops in Afghanistan have reached the wreckage of an Afghan airliner that crashed into a mountain during a snowstorm last week , apparently killing everyone on board .\tJJ NN NNS IN NNP VBP VBN DT NN IN DT JJ NN WDT VBD IN DT NN IN DT NN JJ NN , RB VBG DT IN NN .\nCoalition spokesman Major Joseph Bowman told reporters in Kabul that a small team of medics and other experts reached the site Monday as weather cleared .\tNNP NN NNP NNP NNP VBD NNS IN NNP IN DT JJ NN IN NNS CC JJ NNS VBD DT NN NNP IN NN VBD .\nNATO helicopters spotted the wreckage Saturday , but could not take the recovery team to site because of fog , subzero temperatures and up to two meters of snow .\tNNP NNS VBD DT NN NNP , CC MD RB VB DT NN NN TO NN IN IN NN , NN NNS CC RB TO CD NNS IN NN .\nThe Kam Air flight , which originated in the western Afghan city of Herat , had 104 people on board .\tDT NNP NNP NN , WDT VBD IN DT JJ JJ NN IN NNP , VBD CD NNS IN NN .\nThe Boeing 737 jet crashed Thursday while approaching Kabul .\tDT NNP CD NN VBD NNP IN VBG NNP .\nU.S. media reports say a severe snowstorm that has battered the central United States in recent days has contributed to at least four deaths .\tNNP NNS NNS VBP DT JJ NN WDT VBZ VBN DT JJ NNP NNPS IN JJ NNS VBZ VBN IN IN JJS CD NNS .\nThe deaths were blamed on slippery roads in the Plains states of South Dakota , Nebraska and Kansas .\tDT NNS VBD VBN IN JJ NNS IN DT NNS NNS IN NNP NNP , NNP CC NNP .\nBlizzard-like conditions and high winds in the region have forced the closure of schools and government buildings , and have left many people without electricity .\tJJ NNS CC JJ NNS IN DT NN VBP VBN DT NN IN NNS CC NN NNS , CC VBP VBN JJ NNS IN NN .\nHighways have been shut down because of impassable conditions and poor visibility , forcing travelers trying to get home after last week 's Thanksgiving holiday to head to shelters , motels and churches .\tNNS VBP VBN VBN RB IN IN JJ NNS CC JJ NN , VBG NNS VBG TO VB NN IN JJ NN POS NNP NN TO VB TO NNS , NNS CC NNS .\nThis is the season 's first major snowstorm to hit the region .\tDT VBZ DT NN POS JJ JJ NN TO VB DT NN .\nIn another weather-related death , a person was killed when a tornado picked up a car and flipped it in the southern state of Arkansas .\tIN DT JJ NN , DT NN VBD VBN WRB DT NN VBD RP DT NN CC VBD PRP IN DT JJ NN IN NNP .\nGhana 's leading opposition party has protested the government 's plans for disbursing $ 500 million of U.S. funding .\tNNP POS VBG NN NN VBZ VBN DT NN POS NNS IN VBG $ CD CD IN NNP NN .\nThe National Democratic Congress ( NDC ) said it will send a letter to the U.S. Congress contesting the Ghanaian government 's exclusion of two poor regions from its spending plans for Millenium Challenge Account money .\tDT NNP NNP NNP LRB NNP RRB VBD PRP MD VB DT NN TO DT NNP NNP VBG DT JJ NN POS NN IN CD JJ NNS IN PRP$ NN NNS IN NNP NNP NNP NN .\nA spokesman for the NDC , Haruna Idrissu , said the Upper East and Upper West regions of Ghana are among the country 's poorest and should meet the criteria for receiving aid .\tDT NN IN DT NNP , NNP NNP , VBD DT NNP NNP CC NNP NNP NNS IN NNP VBP IN DT NN POS JJS CC MD VB DT NNS IN VBG NN .\nA smaller opposition party , the People 's National Convention , has joined the protest and says it will also send a letter to the U.S. Congress .\tDT JJR NN NN , DT NNS POS NNP NNP , VBZ VBN DT NN CC VBZ PRP MD RB VB DT NN TO DT NNP NNP .\nGhana is one of 13 African countries eligible to receive funds from the Millenium Challenge Account .\tNNP VBZ CD IN CD JJ NNS JJ TO VB NNS IN DT NNP NNP NNP .\nThe United States established the program to help countries fight poverty and encourage good governance .\tDT NNP NNPS VBD DT NN TO VB NNS VB NN CC VB JJ NN .\nThe top United Nations humanitarian official is demanding that Ivory Coast authorities punish those responsible for attacks on U.N. facilities last month .\tDT JJ NNP NNPS JJ NN VBZ VBG IN NNP NNP NNS VB DT JJ IN NNS IN NNP NNS JJ NN .\nOn a visit to Abidjan Wednesday , Jan Egeland said the government has assured him that violence against civilian aid workers will not be repeated .\tIN DT NN TO NNP NNP , NNP NNP VBD DT NN VBZ VBN PRP IN NN IN JJ NN NNS MD RB VB VBN .\nBut Egeland of the U.N. undersecretary for Humanitarian Affairs , said such violence is criminal , and that the perpetrators should be arrested .\tCC NNP IN DT NNP NN IN NNP NNP , VBD JJ NN VBZ JJ , CC IN DT NNS MD VB VBN .\nHe added that the U.N. wants to continue helping the Ivorian people .\tPRP VBD IN DT NNP VBZ TO VB VBG DT JJ NNS .\nThe U.N. has 7,000 peacekeepers in Ivory Coast and thousands more staff providing humanitarian assistance .\tDT NNP VBZ CD NNS IN NNP NNP CC NNS JJR NN VBG JJ NN .\nProtesters attacked U.N. buildings in January after international mediators called for parliament to be dissolved as part of the divided country 's peace process .\tNNP VBD NNP NNS IN NNP IN JJ NNS VBN IN NN TO VB VBN IN NN IN DT VBN NN POS NN NN .\nU.N. Secretary-General Kofi Annan has sent Ivory Coast a bill for $ 3.5 million to pay for damages .\tNNP NNP NNP NNP VBZ VBN NNP NNP DT NN IN $ CD CD TO VB IN NNS .\nChina is criticizing U.S. moves aimed at protecting the domestic textile industry .\tNNP VBZ VBG NNP NNS VBN IN VBG DT JJ NN NN .\nA Chinese foreign ministry spokesman Qin Gang says Washington 's actions are unreasonable and protectionist .\tDT JJ JJ NN NN NNP NNP VBZ NNP POS NNS VBP JJ CC NN .\nMonday the U.S. Commerce Department said it has begun an investigation into whether a recent surge in Chinese textile imports is disrupting the U.S. market .\tNNP DT NNP NNP NNP VBD PRP VBZ VBN DT NN IN IN DT JJ NN IN JJ NN NNS VBZ VBG DT NNP NN .\nThe review is the first step in a process that could lead to the re-imposition of quotas on certain products .\tDT NN VBZ DT JJ NN IN DT NN WDT MD VB TO DT NN IN NNS IN JJ NNS .\nThe investigation will cover imports of trousers , knit shirts , and underwear .\tDT NN MD VB NNS IN NNS , NN NNS , CC NN .\nImports of trousers rose 1,500 percent in the first quarter of this year over the same period last year .\tNNS IN NNS VBD CD NN IN DT JJ NN IN DT NN IN DT JJ NN JJ NN .\nImports of knit shirts were up 1,250 percent .\tNNS IN NN NNS VBD RB CD NN .\nA global quota system on textile imports expired at the end of 2004 .\tDT JJ NN NN IN JJ NNS VBD IN DT NN IN CD .\nThe International Atomic Energy Agency 's 35-nation board is expected to vote Saturday on a motion that could eventually see Iran referred to the United Nations Security Council for its controversial nuclear activities .\tDT NNP NNP NNP NNP POS JJ NN VBZ VBN TO VB NNP IN DT NN WDT MD RB VB NNP VBD TO DT NNP NNP NNP NNP IN PRP$ JJ JJ NNS .\nThe European Union proposed the motion Friday .\tDT NNP NNP VBD DT NN NNP .\nIt puts off immediate referral to the Security Council , but leaves that option open .\tPRP VBZ RP JJ NN TO DT NNP NNP , CC VBZ DT NN JJ .\nIt also condemns Iran for past violations of nuclear safeguards .\tPRP RB VBZ NNP IN JJ NNS IN JJ NNS .\nEU negotiators softened the draft resolution in an apparent effort to gain support from Russia and China , which both oppose referral to the Security Council .\tNNP NNS VBD DT NN NN IN DT JJ NN TO VB NN IN NNP CC NNP , WDT DT VBP NN TO DT NNP NNP .\nDiplomats say Iran is threatening to resume sensitive uranium enrichment and to limit inspections if the IAEA adopts the resolution .\tNNS VBP NNP VBZ VBG TO VB JJ NN NN CC TO VB NNS IN DT NNP VBZ DT NN .\nTehran denies western accusations that it is secretly pursuing nuclear weapons .\tNNP VBZ JJ NNS IN PRP VBZ RB VBG JJ NNS .\nHealth ministers from the Group of Eight nations have met in Moscow to discuss global cooperation in fighting infectious diseases such as bird flu and AIDS .\tNNP NNS IN DT NNP IN CD NNS VBP VBN IN NNP TO VB JJ NN IN VBG JJ NNS JJ IN NN NN CC NNP .\nThe meeting comes ahead of the G-8 summit that Russia will host in July , where health issues are expected to be high on the agenda .\tDT NN VBZ RB IN DT NNP NN IN NNP MD VB IN NNP , WRB NN NNS VBP VBN TO VB JJ IN DT NN .\nThe G-8 consists of the world 's seven leading industrialized nations , plus Russia .\tDT NNP VBZ IN DT NN POS CD JJ JJ NNS , CC NNP .\nU.S. Secretary of State is in India for the start of a six-nation tour of Asia .\tNNP NNP IN NNP VBZ IN NNP IN DT NN IN DT JJ NN IN NNP .\nHer New Delhi talks with Indian Prime Minister Manmohan Singh are expected to focus on India and Pakistan 's relations .\tPRP$ NNP NNP NNS IN JJ NNP NNP NNP NNP VBP VBN TO VB IN NNP CC NNP POS NNS .\nMs. Rice says those nations ' strong ties with the United States have helped them ease tensions with each other .\tNNP NNP VBZ DT NNS POS JJ NNS IN DT NNP NNPS VBP VBN PRP VB NNS IN DT NN .\nAfter her talks in New Delhi , Ms. Rice heads to Pakistan and Afghanistan before traveling to Japan , South Korea and China .\tIN PRP$ NNS IN NNP NNP , NNP NNP VBZ TO NNP CC NNP IN VBG TO NNP , NNP NNP CC NNP .\nShe says that China 's new law authorizing military action against Taiwan could make Europe re-examine its decision to resume weapons sales to China .\tPRP VBZ IN NNP POS JJ NN VBG JJ NN IN NNP MD VB NNP VB PRP$ NN TO VB NNS NNS TO NNP .\nNorth Korea 's nuclear weapons program is expected to be the focus of her meetings in Tokyo , Seoul and Beijing .\tNNP NNP POS JJ NNS NN VBZ VBN TO VB DT NN IN PRP$ NNS IN NNP , NNP CC NNP .\nMs. Rice stressed that the United States believes the six-party framework is the best way to deal with the issue .\tNNP NNP VBD IN DT NNP NNPS VBZ DT JJ NN VBZ DT JJS NN TO VB IN DT NN .\nVenezuela 's National Assembly has voted to approve a request by President Hugo Chavez to allow him to enact laws by decree for one year .\tNNP POS NNP NNP VBZ VBN TO VB DT NN IN NNP NNP NNP TO VB PRP TO VB NNS IN NN IN CD NN .\nLawmakers voted in President Chavez 's favor Tuesday following the first discussion on the proposal .\tNNS VBD IN NNP NNP POS NN NNP VBG DT JJ NN IN DT NN .\nReports say a final vote on the controversial measure is expected later this week .\tNNS VBP DT JJ NN IN DT JJ NN VBZ VBN RB DT NN .\nVice President Elias Jaua made the request earlier in the day on behalf of the president .\tNNP NNP NNP NNP VBD DT NN RBR IN DT NN IN NN IN DT NN .\nThe measure was presented to the outgoing National Assembly , which is dominated by President Chavez 's allies .\tDT NN VBD VBN TO DT VBG NNP NNP , WDT VBZ VBN IN NNP NNP POS NNS .\nEuropean and Asian leaders have pledged to continue working to reduce carbon dioxide emissions , blamed by many scientists for global warming .\tJJ CC JJ NNS VBP VBN TO VB VBG TO VB NN NN NNS , VBN IN JJ NNS IN JJ NN .\nTop officials from 38 Asian and European nations concluded their Asia-Europe Meeting in Helsinki Monday .\tJJ NNS IN CD JJ CC JJ NNS VBD PRP$ JJ NN IN NNP NNP .\nThey released a final statement promising to continue working to reduce greenhouse gas emissions after the Kyoto Protocol on climate change expires in 2012 .\tPRP VBD DT JJ NN VBG TO VB VBG TO VB NN NN NNS IN DT NNP NNP IN NN NN VBZ IN CD .\nBut no firm targets were set .\tCC DT NN NNS VBD VBN .\nIn their final statement , the 38 leaders agreed to share cleaner and climate-friendly technology with developing nations .\tIN PRP$ JJ NN , DT CD NNS VBD TO VB NN CC JJ NN IN VBG NNS .\nEnacted in 2005 , the Kyoto Protocol establishes goals for 35 industrialized nations to reduce carbon dioxide emissions by about five percent below 1990 levels by 2012 .\tVBN IN CD , DT NNP NNP VBZ NNS IN CD JJ NNS TO VB NN NN NNS IN IN CD NN IN CD NNS IN CD .\nThe agreement does not require developing nations like India and China to restrict their emissions .\tDT NN VBZ RB VB VBG NNS IN NNP CC NNP TO VB PRP$ NNS .\nCiting economic reasons , the United States has not signed the protocol .\tVBG JJ NNS , DT NNP NNPS VBZ RB VBN DT NN .\nLandslides and flash floods triggered by Typhoon Muifa have killed at least 33 people in Vietnam 's Central Highlands .\tNNS CC NN NNS VBN IN NNP NNP VBP VBN IN JJS CD NNS IN NNP POS NNP NNPS .\nTorrential rains hit Vietnam 's central region last week , and floods submerged more than 10,000 houses while paralyzing rail traffic .\tNNP NNS VBD NNP POS JJ NN JJ NN , CC NNS VBD JJR IN CD NNS IN VBG NN NN .\nFour provinces , Quang Ngai , Quang Nam , Thua Thien Hue and Quang Tri were hardest-hit .\tCD NNS , NNP NNP , NNP NNP , NNP NNP NNP CC NNP NNP VBD JJ .\nAuthorities in the region are continuing to evacuate people from flooded areas and provide victims with food , medicine and shelter .\tNNS IN DT NN VBP VBG TO VB NNS IN VBN NNS CC VB NNS IN NN , NN CC NN .\nDespite the flooding elsewhere , little rain has been reported over the past few days in the nearby province of Daklak , the country 's largest coffee growing region , and there have been no reports of damaged crops .\tIN DT NN RB , JJ NN VBZ VBN VBN IN DT JJ JJ NNS IN DT JJ NN IN NNP , DT NN POS JJS NN VBG NN , CC EX VBP VBN DT NNS IN JJ NNS .\nForecasters predict only light rain from Muifa , now downgraded to a tropical storm , at it moves into the Gulf of Thailand .\tNNS VBP RB JJ NN IN NNP , RB VBD TO DT JJ NN , IN PRP VBZ IN DT NNP IN NNP .\nOpposition supporters armed with sticks speed past a sign for ruling-party candidate Faure Gnassingbe\tNN NNS VBN IN NNS NN IN DT NN IN JJ NN NNP NNP\nTogo 's interim leader , Abbas Bonfoh , says Sunday 's presidential elections will take place as scheduled , and he fired a powerful minister who called for a delay .\tNNP POS JJ NN , NNP NNP , VBZ NNP POS JJ NNS MD VB NN IN VBN , CC PRP VBD DT JJ NN WP VBD IN DT NN .\nInterior Minister Francois Boko was fired Friday after calling for a transitional government , saying that holding the April 24 poll would be ' suicidal ' amid rising political tensions .\tNNP NNP NNP NNP VBD VBN NNP IN VBG IN DT JJ NN , VBG IN VBG DT NNP CD NN MD VB `` JJ `` IN VBG JJ NNS .\nHours later , the Togolese government announced Mr. Boko had been replaced .\tNNS RB , DT NNP NN VBD NNP NNP VBD VBN VBN .\nOpposition leaders have held protests - during which several people were killed - saying that Togo is not ready to hold a free and fair election .\tNN NNS VBP VBN NNS : IN WDT JJ NNS VBD VBN IN VBG DT NNP VBZ RB JJ TO VB DT JJ CC JJ NN .\nThe country was thrown into chaos after the government installed the son of longtime leader Gnassingbe Eyadema after he died in February .\tDT NN VBD VBN IN NN IN DT NN VBD DT NN IN JJ NN NNP NNP IN PRP VBD IN NNP .\nWest African leaders pressured Togo to hold fresh elections .\tNNP JJ NNS VBD NNP TO VB JJ NNS .\nThe international police organization Interpol has issued a wanted notice for Abu Musab al-Zarqawi , the leader of the al Qaida in Iraq terrorist network .\tDT JJ NN NN NNP VBZ VBN DT JJ NN IN NNP NNP NNP , DT NN IN DT NNP NNP IN NNP NN NN .\nInterpol says Algerian officials requested a so-called Red Notice on the Jordanian-born terrorist in connection with the kidnapping and murder of two Algerian diplomats in Iraq last July .\tNNP VBZ JJ NNS VBD DT JJ JJ NN IN DT JJ NN IN NN IN DT NN CC NN IN CD JJ NNS IN NNP JJ NNP .\nInterpol officials said the notice will be distributed to its 184 member nations and will decrease the likelihood the suspect will be able to escape detection .\tNNP NNS VBD DT NN MD VB VBN TO PRP$ CD NN NNS CC MD VB DT NN DT NN MD VB JJ TO VB NN .\nAbu Musab al-Zarqawi is already the most wanted man in Iraq , with the United States offering a $ 25 million bounty for his capture .\tNNP NNP NNP VBZ RB DT RBS JJ NN IN NNP , IN DT NNP NNPS VBG DT $ CD CD NN IN PRP$ NN .\nAbu Musab al-Zarqawi is also wanted in Jordan .\tNNP NNP NNP VBZ RB VBN IN NNP .\nHe claimed responsibility for organizing suicide attacks that killed 59 people at two luxury hotels in Amman last month .\tPRP VBD NN IN VBG NN NNS WDT VBD CD NNS IN CD NN NNS IN NNP JJ NN .\nThe proposed U.S. budget for fiscal year 2008 includes money for fighting malaria and HIV and to support democratic programs abroad .\tDT VBN NNP NN IN JJ NN CD VBZ NN IN VBG NN CC NNP CC TO VB JJ NNS RB .\nThe White House says the budget provides more than $ 4 billion for treatment and prevention of HIV in the world 's hardest hit countries , and more than $ 1 billion for HIV-AIDS programs worldwide .\tDT NNP NNP VBZ DT NN VBZ JJR IN $ CD CD IN NN CC NN IN NNP IN DT NN POS RBS VBN NNS , CC JJR IN $ CD CD IN JJ NNS NN .\nThree hundred million dollars is for fighting malaria worldwide .\tCD CD CD NNS VBZ IN VBG NN NN .\nThe White House says the budget also includes support for humanitarian and peacekeeping efforts in Sudan , as well as for Lebanon to help it strengthen government capacity , promote economic reform , and support its security forces .\tDT NNP NNP VBZ DT NN RB VBZ NN IN JJ CC JJ NNS IN NNP , RB RB IN IN NNP TO VB PRP VB NN NN , VB JJ NN , CC VB PRP$ NN NNS .\nThe budget calls for $ 3 billion for the Millennium Challenge to promote sustainable economic growth in the poorest countries in the world .\tDT NN VBZ IN $ CD CD IN DT NNP NNP TO VB JJ JJ NN IN DT JJS NNS IN DT NN .\nThe budget also allots $ 80 million to the private , nonprofit National Endowment for Democracy to promote democratic programs and institutions .\tDT NN RB VBZ $ CD CD TO DT JJ , JJ NNP NNP IN NNP TO VB JJ NNS CC NNS .\nLebanese Prime Minister-designate Omar Karami resigned Wednesday after failing to form a government to lead the country to elections in May .\tJJ NNP NNP NNP NNP VBD NNP IN VBG TO VB DT NN TO VB DT NN TO NNS IN NNP .\nMr. Karami says he ' reached a dead end ' in consultations to form a cabinet .\tNNP NNP VBZ PRP `` VBD DT JJ NN `` IN NNS TO VB DT NN .\nThe pro-Syrian politician first stepped down on February 28 following a wave of anti-Syrian demonstrations .\tDT JJ NN RB VBD RP IN NNP CD VBG DT NN IN JJ NNS .\nHe was re-appointed in March , but could not form a government including members of Lebanon 's anti-Syrian opposition .\tPRP VBD VBN IN NNP , CC MD RB VB DT NN VBG NNS IN NNP POS JJ NN .\nU.S. Secretary of State Condoleezza Rice welcomed his latest resignation as an opportunity for Lebanon to move forward and determine its own future , free of outside interference .\tNNP NNP IN NNP NNP NNP VBD PRP$ JJS NN IN DT NN IN NNP TO VB RB CC VB PRP$ JJ NN , JJ IN JJ NN .\nShe says there is no reason for further delays in Lebanon 's political process .\tPRP VBZ EX VBZ DT NN IN JJ NNS IN NNP POS JJ NN .\nWednesday 's events come as Lebanese observed the 1975 outbreak of the country 's 15-year civil war with a day of reconciliation , celebrating Muslim-Christian unity .\tNNP POS NNS VBP IN NNS VBD DT CD NN IN DT NN POS JJ JJ NN IN DT NN IN NN , VBG JJ NN .\nIslamic clerics in Afghanistan are warning the country 's president to stop foreign aid groups from doing missionary work in the country .\tNNP NNS IN NNP VBP VBG DT NN POS NN TO VB JJ NN NNS IN VBG JJ NN IN DT NN .\nMembers of the Afghanistan Islamic Council say they are concerned about the activities of some international non-governmental groups that are trying to convert Afghan Muslims to Christianity .\tNNS IN DT NNP NNP NNP VBP PRP VBP VBN IN DT NNS IN DT JJ JJ NNS WDT VBP VBG TO VB JJ NNS TO NNP .\nThe group made the statement after meeting with Afghan President Hamid Karzai on Friday .\tDT NN VBD DT NN IN VBG IN JJ NNP NNP NNP IN NNP .\nThe clerics warned of what they called ' catastrophe ' if the activities were not prevented .\tDT NNS VBD IN WP PRP VBD `` NN `` IN DT NNS VBD RB VBN .\nTaliban militants took some 23 South Korean Christian missionaries hostage in July 2007 , killing two and releasing the remainder .\tNNP NNS VBD DT CD JJ JJ JJ NNS NN IN NNP CD , VBG CD CC VBG DT NN .\nAfghanistan 's Islamic Council also urged President Karzai to crack down on certain television programming that it says is spreading immorality and non-Islamic culture in the country .\tNNP POS NNP NNP RB VBD NNP NNP TO VB RP IN JJ NN NN IN PRP VBZ VBZ VBG NN CC JJ NN IN DT NN .\nThe European Union plans to re-impose sanctions on as much as $ 4 billion worth of U.S. goods after the World Trade Organization ruled that Washington has not ended illegal tax breaks for U.S. exporters .\tDT NNP NNP VBZ TO VB NNS IN RB JJ IN $ CD CD NN IN NNP NNS IN DT NNP NNP NNP VBD IN NNP VBZ RB VBN JJ NN NNS IN NNP NNS .\nA WTO panel issued the ruling Monday .\tDT NNP NN VBD DT NN NNP .\nIt gives Washington three months to bring its laws into compliance with treaty agreements or face retaliatory tariffs .\tPRP VBZ NNP CD NNS TO VB PRP$ NNS IN NN IN NN NNS CC VB JJ NNS .\nWashington had repealed the offending law , but the WTO says a replacement law is still unfair .\tNNP VBD VBN DT NN NN , CC DT NNP VBZ DT NN NN VBZ RB JJ .\nJapan is calling on the United States to take thorough measures to prevent any further beef shipments containing banned animal matter that could cause ' mad-cow ' disease .\tNNP VBZ VBG IN DT NNP NNPS TO VB JJ NNS TO VB DT JJ NN NNS VBG VBN JJ NN WDT MD VB `` NN `` NN .\nAgriculture Minister Shoichi Nakagawa made the demand Sunday during a meeting with a senior American official who is visiting Japan .\tNNP NNP NNP NNP VBD DT NN NNP IN DT NN IN DT JJ JJ NN WP VBZ VBG NNP .\nRobert Zoellick , the State Department 's second highest-ranking official deputy secretary of state , says an accidental shipment to Japan of veal containing prohibited bone material was an unacceptable mistake , and he expressed sincere regret on behalf of the United States .\tNNP NNP , DT NNP NNP POS JJ JJ JJ NN NN IN NN , VBZ DT JJ NN TO NNP IN NN VBG VBN NN NN VBD DT JJ NN , CC PRP VBD JJ NN IN NN IN DT NNP NNPS .\nJapan reimposed a total ban on U.S. beef imports Friday , after finding spinal material in a shipment of veal from New York .\tNNP VBD DT JJ NN IN NNP NN NNS NNP , IN VBG JJ NN IN DT NN IN NN IN NNP NNP .\nThe ban had been partially lifted just weeks ago .\tDT NN VBD VBN RB VBN RB NNS RB .\nThe American Embassy in Tokyo says a high-level delegation led by Agriculture Undersecretary J. B. Penn will arrive in Japan Monday to discuss the situation .\tDT NNP NNP IN NNP VBZ DT JJ NN VBN IN NNP NNP NNP NNP NNP MD VB IN NNP NNP TO VB DT NN .\nPolice in Iraq have found 14 bodies in northern Baghdad , including some that were blindfolded and shot execution-style .\tNNS IN NNP VBP VBN CD NNS IN JJ NNP , VBG DT WDT VBD VBN CC VBN JJ .\nReports say the victims all appeared to be Iraqis .\tNNS VBP DT NNS DT VBD TO VB NNS .\nSeparately , at least seven Iraqi policemen were killed Friday and several others wounded in a bomb attack in the northern town of Tikrit .\tRB , IN JJS CD JJ NNS VBD VBN NNP CC JJ NNS VBD IN DT NN NN IN DT JJ NN IN NNP .\nAn Iraqi Defense Ministry official said the attack occurred at a checkpoint in the city , about 130 kilometers north of Baghdad .\tDT JJ NNP NNP NN VBD DT NN VBD IN DT NN IN DT NN , IN CD NNS RB IN NNP .\nThe blast , which targeted a minibus carrying police , is the latest attack in a wave of insurgent violence that followed last week 's announcement of a partial cabinet list .\tDT NN , WDT VBD DT NN VBG NN , VBZ DT JJS NN IN DT NN IN JJ NN WDT VBD JJ NN POS NN IN DT JJ NN NN .\nOn Thursday , at least 27 people were killed in a series of attacks against the country 's military and police forces .\tIN NNP , IN JJS CD NNS VBD VBN IN DT NN IN NNS IN DT NN POS NN CC NN NNS .\nA series of internal e-mails reveals the government agency charged with responding to Hurricane Katrina was in a state of chaos before and after the storm devastated the U.S. Gulf Coast .\tDT NN IN JJ NNS VBZ DT NN NN VBN IN VBG TO NNP NNP VBD IN DT NN IN NN IN CC IN DT NN VBD DT NNP NNP NNP .\nThe e-mails among several high-ranking officials of the Federal Emergency Management Agency , including then-director Michael Brown , were released to U.S. Congressional investigators and copies were obtained by news organizations .\tDT NNS IN JJ JJ NNS IN DT NNP NNP NNP NNP , VBG JJ NNP NNP , VBD VBN TO NNP JJ NNS CC NNS VBD VBN IN NN NNS .\nThe messages show FEMA was overwhelmed by a host of issues , including communications failures and bureaucratic fights between the agency and the White House .\tDT NNS VBP NNP VBD VBN IN DT NN IN NNS , VBG NNS NNS CC JJ NNS IN DT NN CC DT NNP NNP .\nMr. Brown resigned as FEMA director after he was roundly criticized for the agency 's slow response to the disaster .\tNNP NNP VBD IN NNP NN IN PRP VBD RB VBN IN DT NN POS JJ NN TO DT NN .\nHomeland Security Secretary Michael Chertoff is expected to be asked about the e-mails when he testifies before a congressional committee on Wednesday .\tNNP NNP NNP NNP NNP VBZ VBN TO VB VBN IN DT NNS WRB PRP VBZ IN DT JJ NN IN NNP .\nThe Homeland Security department oversees FEMA .\tDT NNP NN NN VBZ NNP .\nFriends and family members of imprisoned opposition activists in Belarus have sent an open letter to G-8 leaders , calling on them to press for the release of the activists .\tNNS CC NN NNS IN JJ NN NNS IN NNP VBP VBN DT JJ NN TO NNP NNS , VBG IN PRP TO VB IN DT NN IN DT NNS .\nThey also appealed to G-8 member countries to press Russian President Vladimir Putin to withdraw his support for Belarus President Alexander Lukashenko .\tPRP RB VBD TO NNP NN NNS TO VB JJ NNP NNP NNP TO VB PRP$ NN IN NNP NNP NNP NNP .\nMr. Lukashenko was elected to a third term in March in an election Western governments call fraudulent .\tNNP NNP VBD VBN TO DT JJ NN IN NNP IN DT NN JJ NNS VBP JJ .\nThe open letter comes ahead of a summit in St. Petersburg of the world 's seven leading industrialized democracies plus Russia .\tDT JJ NN VBZ RB IN DT NN IN NNP NNP IN DT NN POS CD VBG VBN NNS IN NNP .\nIt also comes on the heels of the start of a trial of former opposition presidential candidate Alexander Kozulin .\tPRP RB VBZ IN DT NNS IN DT NN IN DT NN IN JJ NN JJ NN NNP NNP .\nKozulin faces up to six years in prison if convicted on charges of hooliganism and incitement to mass disorder .\tNNP VBZ RP TO CD NNS IN NN IN VBN IN NNS IN NN CC NN TO JJ NN .\nThe charges are tied to the protests that followed the election .\tDT NNS VBP VBN TO DT NNS WDT VBD DT NN .\nAuthorities declared the vote an overwhelming victory for President Lukashenko .\tNNS VBD DT NN DT JJ NN IN NNP NNP .\nHadson Corp. said it expects to report a third-quarter net loss of $ 17 million to $ 19 million because of special reserves and continued low natural-gas prices .\tNNP NNP VBD PRP VBZ TO VB DT JJ JJ NN IN $ CD CD TO $ CD CD IN IN JJ NNS CC JJ JJ NN NNS .\nThe Oklahoma City energy and defense concern said it will record a $ 7.5 million reserve for its defense group , including a $ 4.7 million charge related to problems under a fixed-price development contract and $ 2.8 million in overhead costs that wo n't be reimbursed .\tDT NNP NNP NN CC NN NN VBD PRP MD VB DT $ CD CD NN IN PRP$ NN NN , VBG DT $ CD CD NN VBN TO NNS IN DT JJ NN NN CC $ CD CD IN NN NNS WDT MD RB VB VBN .\nIn addition , Hadson said it will write off about $ 3.5 million in costs related to international exploration leases where exploration efforts have been unsuccessful .\tIN NN , NNP VBD PRP MD VB RP IN $ CD CD IN NNS VBN TO JJ NN NNS WRB NN NNS VBP VBN JJ .\nThe company also cited interest costs and amortization of goodwill as factors in the loss .\tDT NN RB VBD NN NNS CC NN IN NN IN NNS IN DT NN .\nA year earlier , net income was $ 2.1 million , or six cents a share , on revenue of $ 169.9 million .\tDT NN RBR , JJ NN VBD $ CD CD , CC CD NNS DT NN , IN NN IN $ CD CD .\nDiscovered and claimed by Portugal in the late 15th century , the islands ' sugar-based economy gave way to coffee and cocoa in the 19th century - all grown with plantation slave labor , a form of which lingered into the 20th century .\tVBN CC VBN IN NNP IN DT JJ JJ NN , DT NNS POS JJ NN VBD NN TO NN CC NN IN DT JJ NN IN DT VBN IN NN NN NN , DT NN IN WDT VBD IN DT JJ NN .\nWhile independence was achieved in 1975 , democratic reforms were not instituted until the late 1980s .\tIN NN VBD VBN IN CD , JJ NNS VBD RB VBN IN DT JJ NNS .\nThe country held its first free elections in 1991 , but frequent internal wrangling between the various political parties precipitated repeated changes in leadership and two failed coup attempts in 1995 and 2003 .\tDT NN VBD PRP$ JJ JJ NNS IN CD , CC JJ JJ NN IN DT JJ JJ NNS VBD VBN NNS IN NN CC CD VBN NN NNS IN CD CC CD .\nThe recent discovery of oil in the Gulf of Guinea promises to attract increased attention to the small island nation .\tDT JJ NN IN NN IN DT NNP IN NNP VBZ TO VB JJ NN TO DT JJ NN NN .\nCarib Indians occupied the islands for hundreds of years before the British began settlement in 1623 .\tNNP NNS VBD DT NNS IN NNS IN NNS IN DT NNS VBD NN IN CD .\nThe islands became an associated state of the UK with full internal autonomy in 1967 .\tDT NNS VBD DT VBN NN IN DT NNP IN JJ JJ NN IN CD .\nThe island of Anguilla rebelled and was allowed to secede in 1971 .\tDT NN IN NNP VBD CC VBD VBN TO VB IN CD .\nSaint Kitts and Nevis achieved independence in 1983 .\tNNP NNP CC NNP VBD NN IN CD .\nIn 1998 , a vote in Nevis on a referendum to separate from Saint Kitts fell short of the two-thirds majority needed .\tIN CD , DT NN IN NNP IN DT NN TO VB IN NNP NNP VBD RB IN DT NNS NN VBN .\nNevis continues in its efforts to separate from Saint Kitts .\tNNP VBZ IN PRP$ NNS TO VB IN NNP NNP .\nGuinea has had a history of authoritarian rule since gaining its independence from France in 1958 .\tNNP VBZ VBN DT NN IN JJ NN IN VBG PRP$ NN IN NNP IN CD .\nLansana CONTE came to power in 1984 when the military seized the government after the death of the first president , Sekou TOURE .\tNNP NNP VBD TO NN IN CD WRB DT NN VBD DT NN IN DT NN IN DT JJ NN , NNP NNP .\nGuinea did not hold democratic elections until 1993 when Gen. CONTE ( head of the military government ) was elected president of the civilian government .\tNNP VBD RB VB JJ NNS IN CD WRB NNP NNP LRB NN IN DT JJ NN RRB VBD VBN NN IN DT JJ NN .\nHe was reelected in 1998 and again in 2003 , though all the polls were marred by irregularities .\tPRP VBD VBN IN CD CC RB IN CD , IN PDT DT NNS VBD VBN IN NNS .\nHistory repeated itself in December 2008 when following President CONTE 's death , Capt. Moussa Dadis CAMARA led a military coup , seizing power and suspending the constitution .\tNN VBD PRP IN NNP CD WRB VBG NNP NNP POS NN , NNP NNP NNP NNP VBD DT JJ NN , VBG NN CC VBG DT NN .\nHis unwillingness to yield to domestic and international pressure to step down led to heightened political tensions that culminated in September 2009 when presidential guards opened fire on an opposition rally killing more than 150 people , and in early December 2009 when CAMARA was wounded in an assassination attempt and evacuated to Morocco and subsequently to Burkina Faso .\tPRP$ NN TO VB IN JJ CC JJ NN TO VB RB VBD IN JJ JJ NNS WDT VBD IN NNP CD WRB JJ NNS VBD NN IN DT NN NN VBG JJR IN CD NNS , CC IN JJ NNP CD WRB NNP VBD VBN IN DT NN NN CC VBN TO NNP CC RB TO NNP NNP .\nA transitional government led by General Sekouba KONATE held democratic elections in 2010 and Alpha CONDE was elected president in the country 's first free and fair elections since independence .\tDT JJ NN VBN IN NNP NNP NNP VBD JJ NNS IN CD CC NNP NNP VBD VBN NN IN DT NN POS JJ JJ CC JJ NNS IN NN .\nAs an affluent , high-tech industrial society in the trillion-dollar class , Canada resembles the US in its market-oriented economic system , pattern of production , and affluent living standards .\tIN DT NN , JJ JJ NN IN DT JJ NN , NNP VBZ DT NNP IN PRP$ JJ JJ NN , NN IN NN , CC JJ NN NNS .\nSince World War II , the impressive growth of the manufacturing , mining , and service sectors has transformed the nation from a largely rural economy into one primarily industrial and urban .\tIN NNP NNP NNP , DT JJ NN IN DT NN , NN , CC NN NNS VBZ VBN DT NN IN DT RB JJ NN IN CD RB JJ CC JJ .\nThe 1989 US-Canada Free Trade Agreement ( FTA ) and the 1994 North American Free Trade Agreement ( NAFTA ) ( which includes Mexico ) touched off a dramatic increase in trade and economic integration with the US , its principal trading partner .\tDT CD NNP NNP NNP NNP LRB NNP RRB CC DT CD NNP NNP NNP NNP NNP LRB NNP RRB LRB WDT VBZ NNP RRB VBD RP DT JJ NN IN NN CC JJ NN IN DT NNP , PRP$ JJ NN NN .\nCanada enjoys a substantial trade surplus with the US , which absorbs about three-fourths of Canadian exports each year .\tNNP VBZ DT JJ NN NN IN DT NNP , WDT VBZ IN NNS IN JJ NNS DT NN .\nCanada is the US 's largest foreign supplier of energy , including oil , gas , uranium , and electric power .\tNNP VBZ DT NNP POS JJS JJ NN IN NN , VBG NN , NN , NN , CC JJ NN .\nGiven its great natural resources , skilled labor force , and modern capital plant , Canada enjoyed solid economic growth from 1993 through 2007 .\tVBN PRP$ JJ JJ NNS , VBD NN NN , CC JJ NN NN , NNP VBD JJ JJ NN IN CD IN CD .\nBuffeted by the global economic crisis , the economy dropped into a sharp recession in the final months of 2008 , and Ottawa posted its first fiscal deficit in 2009 after 12 years of surplus .\tVBN IN DT JJ JJ NN , DT NN VBD IN DT JJ NN IN DT JJ NNS IN CD , CC NNP VBD PRP$ JJ JJ NN IN CD IN CD NNS IN NN .\nCanada 's major banks , however , emerged from the financial crisis of 2008 - 9 among the strongest in the world , owing to the financial sector 's tradition of conservative lending practices and strong capitalization .\tNNP POS JJ NNS , RB , VBD IN DT JJ NN IN CD : CD IN DT JJS IN DT NN , VBG TO DT JJ NN POS NN IN JJ NN NNS CC JJ NN .\nDuring 2010 , Canada 's economy grew only 3 % , due to decreased global demand and a highly valued Canadian dollar .\tIN CD , NNP POS NN VBD RB CD NN , JJ TO VBN JJ NN CC DT RB VBN JJ NN .\nA CONVENTION of female writers , which for two days had been stuffing Woman 's couch with goose-quills and hailing the down of a new era , adjourned with unabated enthusiasm , shouting , ' Place aux dames ! '\tDT NN IN JJ NNS , WDT IN CD NNS VBD VBN VBG NN POS NN IN NNS CC VBG DT RB IN DT JJ NN , VBN IN JJ NN , VBG , `` NNP NN VBZ . ``\nAnd Echo wearily replied , ' Oh , damn . '\tCC NNP RB VBD , `` UH , RB . ``\nTwo lawyers are in a bank , when armed robbers suddenly burst in .\tCD NNS VBP IN DT NN , WRB JJ NNS RB VBP IN .\nWhile several of the robbers take the money from the tellers , others line the customers , including the lawyers , up against a wall , and proceed to take their wallets , watches , etc .\tIN NN IN DT NNS VBP DT NN IN DT NNS , NNS VBP DT NNS , VBG DT NNS , RB IN DT NN , CC VB TO VB PRP$ NNS , NNS , NN .\nWhile this is going on lawyer number one jams something in lawyer number two 's hand .\tIN DT VBZ VBG IN NN NN CD VBZ DT IN NN NN CD POS NN .\nWithout looking down , lawyer number two whispers , ' What is this ? '\tIN VBG RB , NN NN CD NNS , `` WP VBZ DT . ``\nTo which lawyer number one replies , ' It 's that $ 50 I owe you . '\tTO WDT NN NN CD NNS , `` PRP VBZ IN $ CD PRP VBP PRP . ``\nA school teacher injured his back and had to wear a plaster cast around the upper part of his body .\tDT NN NN VBD PRP$ NN CC VBD TO VB DT NN NN IN DT JJ NN IN PRP$ NN .\nIt fit under his shirt and was not noticeable at all .\tPRP VBP IN PRP$ NN CC VBD RB JJ IN DT .\nOn the first day of the term , still with the cast under his shirt , he found himself assigned to the toughest students in school .\tIN DT JJ NN IN DT NN , RB IN DT NN IN PRP$ NN , PRP VBD PRP VBN TO DT JJS NNS IN NN .\nWalking confidently into the rowdy classroom , he opened the window as wide as possible and then busied himself with desk work .\tVBG RB IN DT NN NN , PRP VBD DT NN RB JJ IN JJ CC RB VBD PRP IN NN NN .\nWhen a strong breeze made his tie flap , he took the desk stapler and stapled the tie to his chest .\tWRB DT JJ NN VBD PRP$ NN NN , PRP VBD DT NN NN CC VBD DT NN TO PRP$ NN .\nHe had no trouble with discipline that term .\tPRP VBD DT NN IN NN IN NN .\nU.S. Secretary of State Condoleezza Rice says the West must continue efforts to defeat Taleban insurgents and support democracy in Afghanistan .\tNNP NNP IN NNP NNP NNP VBZ DT NNP MD VB NNS TO VB NNP NNS CC NN NN IN NNP .\nIn comments Tuesday in Canada , Rice recalled how Afghanistan became a haven for terrorists after the United States withdrew support for the country after Soviet forces withdrew in 1989 .\tIN NNS NNP IN NNP , NNP VBD WRB NNP VBD DT NN IN NNS IN DT NNP NNPS VBD NN IN DT NN IN JJ NNS VBD IN CD .\nShe warned against leaving Afghanistan too early again .\tPRP VBD IN VBG NNP RB RB RB .\nRice made the comments during a news conference in Nova Scotia with Canadian Foreign Minister Peter MacKay .\tNNP VBD DT NNS IN DT NN NN IN NNP NNP IN JJ NNP NNP NNP NNP .\nShe thanked Canada for its contributions to the NATO force in Afghanistan .\tPRP VBD NNP IN PRP$ NNS TO DT NNP NN IN NNP .\nCanada has about 2,200 troops in the country .\tNNP VBZ IN CD NNS IN DT NN .\nMore than 20 Canadian troops have died in Afghanistan .\tJJR IN CD JJ NNS VBP VBN IN NNP .\nCanadian lawmakers have faced calls to end the country 's involvement in the war .\tJJ NNS VBP VBN NNS TO VB DT NN POS NN IN DT NN .\nThe U.S. Central Intelligence Agency has concluded that Cuban leader Fidel Castro has Parkinson 's disease , a debilitating condition that affects a person 's physical coordination .\tDT NNP NNP NNP NNP VBZ VBN IN JJ NN NNP NNP VBZ NNP POS NN , DT JJ NN WDT VBZ DT NN POS JJ NN .\nOfficials in Washington have confirmed a report about the CIA assessment published in the Miami Herald newspaper on Wednesday .\tNNS IN NNP VBP VBN DT NN IN DT NNP NN VBN IN DT NNP NNP NN IN NNP .\nThe officials , speaking on condition of anonymity , say the assessment was based on a variety of material , including Mr. Castro 's public appearances .\tDT NNS , VBG IN NN IN NN , VBP DT NN VBD VBN IN DT NN IN NN , VBG NNP NNP POS JJ NNS .\nCuban officials have declined to comment on the reports .\tJJ NNS VBP VBN TO VB IN DT NNS .\nAccording to the Herald , the CIA has warned U.S. policymakers to be ready for trouble in Cuba as the 79-year-old leader 's health declines .\tVBG TO DT NNP , DT NNP VBZ VBN NNP NNS TO VB JJ IN NN IN NNP IN DT JJ NN POS NN NNS .\nBut the Reuters news agency quotes a State Department official as saying Washington does not expect Mr. Castro to lose his grip on Cuba .\tCC DT NNP NN NN VBZ DT NNP NNP NN IN VBG NNP VBZ RB VB NNP NNP TO VB PRP$ NN IN NNP .\nMr. Castro 's communist government has ruled Cuba since 1959 .\tNNP NNP POS JJ NN VBZ VBN NNP IN CD .\nMr. Castro has appointed his 74-year-old brother Raul to be his successor .\tNNP NNP VBZ VBN PRP$ JJ NN NNP TO VB PRP$ NN .\nOil prices continued to break new records this week , trading briefly above $ 126 per barrel on Monday .\tNN NNS VBD TO VB JJ NNS DT NN , VBG RB IN $ CD IN NN IN NNP .\nAmerican consumers fear prices will go even higher as the summer driving season gets underway .\tJJ NNS VBP NNS MD VB RB JJR IN DT NN VBG NN VBZ NN .\nSome say they are desperate and many are calling on U.S. lawmakers to do something - fast .\tDT VBP PRP VBP JJ CC JJ VBP VBG IN NNP NNS TO VB DT IN RB .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nThe U.S. military in Afghanistan says about 20 suspected Taleban insurgents and one Afghan policeman were killed in a fierce firefight in southeastern Zabul province .\tDT NNP NN IN NNP VBZ IN CD JJ NNP NNS CC CD JJ NN VBD VBN IN DT JJ NN IN JJ NNP NN .\nA military statement issued Wednesday said six American soldiers and five Afghan policemen were wounded in Tuesday 's fighting that involved U.S. warplanes , helicopters as well as ground troops .\tDT JJ NN VBN NNP VBD CD JJ NNS CC CD JJ NNS VBD VBN IN NNP POS NN IN JJ NNP NNS , NNS RB RB IN NN NNS .\nIt said six insurgents were detained after the clash , described as one of the deadliest in recent weeks .\tPRP VBD CD NNS VBD VBN IN DT NN , VBN IN CD IN DT JJS IN JJ NNS .\nThe military says the battle erupted after gunmen fired on U.S. troops and Afghan police investigating a reported beating of a villager .\tDT JJ VBZ DT NN VBD IN NNS VBD IN NNP NNS CC JJ NNS VBG DT VBN NN IN DT NN .\nTaleban insurgents have stepped up attacks against Afghan and U.S.-led coalition troops as harsh winter weather conditions have improved .\tNNP NNS VBP VBN RP NNS IN JJ CC JJ NN NNS IN JJ NN NN NNS VBP VBN .\nAn Israeli human rights group says the West Bank is facing a severe water shortage largely as a result of what it calls ' discriminatory ' Israeli policies .\tDT JJ JJ NNS NN VBZ DT NNP NNP VBZ VBG DT JJ NN NN RB IN DT NN IN WP PRP VBZ `` JJ `` JJ NNS .\nThe rights group , B'Tselem accused Israel Tuesday of discrimination in the distribution of joint water resources between Jewish settlers and Palestinians .\tDT NNS NN , NNP VBD NNP NNP IN NN IN DT NN IN JJ NN NNS IN JJ NNS CC NNS .\nIt warned that a water shortage would have serious repercussions on the economy and health of tens of thousands of Palestinians .\tPRP VBD IN DT NN NN MD VB JJ NNS IN DT NN CC NN IN NNS IN NNS IN NNS .\nThe group said Israel also limits the Palestinian Authority 's ability to drill new wells .\tDT NN VBD NNP RB VBZ DT JJ NNP POS NN TO VB JJ NNS .\nIt said the effects of several years of drought will make a water shortage even worse in coming months .\tPRP VBD DT NNS IN JJ NNS IN NN MD VB DT NN NN RB JJR IN VBG NNS .\nThe Israeli water company , Mekorot , denied the allegations .\tDT JJ NN NN , NNP , VBD DT NNS .\nIt said it has provided more water to the West Bank than is required under the 1993 Israel-Palestinian Oslo peace accord .\tPRP VBD PRP VBZ VBN JJR NN TO DT NNP NNP IN VBZ VBN IN DT CD JJ NNP NN NN .\nThree Sunni Arab parties in Iraq have announced they are forming a coalition ahead of December 's parliamentary election for a permanent government .\tCD NNP NNP NNS IN NNP VBP VBN PRP VBP VBG DT NN RB IN NNP POS JJ NN IN DT JJ NN .\nThe announcement Wednesday , from the Iraqi Peoples Gathering , the Iraqi Islamic Party and the Iraqi National Dialogue comes a day after referendum results showed 78 percent of Iraqis approved the new constitution .\tDT NN NNP , IN DT JJ NNPS NNP , DT JJ NNP NNP CC DT JJ NNP NNP VBZ DT NN IN NN NNS VBD CD NN IN NNS VBD DT JJ NN .\nThe document passed despite stiff opposition from Sunni Arabs .\tDT NN VBD IN JJ NN IN NNP NNS .\nIn other developments , an Internet statement attributed to al-Qaida in Iraq claimed it had kidnapped two employees from the Moroccan embassy in Baghdad .\tIN JJ NNS , DT NNP NN VBN TO NNP IN NNP VBD PRP VBD VBN CD NNS IN DT JJ NN IN NNP .\nThe Moroccan news agency reports that Rabat has had no news about the missing employees since Thursday and has sent a team to Jordan to coordinate efforts to win their release .\tDT JJ NN NN NNS IN NNP VBZ VBN DT NN IN DT VBG NNS IN NNP CC VBZ VBN DT NN TO NNP TO VB NNS TO VB PRP$ NN .\nMeanwhile , attacks in Baghdad and Ramadi killed three Iraqis .\tRB , NNS IN NNP CC NNP VBD CD NNS .\nAn American soldier also died in a vehicle accident in southern Iraq .\tDT JJ NN RB VBD IN DT NN NN IN JJ NNP .\nAn Iraqi appeals court has upheld the death sentence for Saddam Hussein 's former vice president , Taha Yassin Ramadan , for his role in the killing of 148 Shi'ite Muslims in 1982 .\tDT JJ NNS NN VBZ VBN DT NN NN IN NNP NNP POS JJ NN NN , NNP NNP NNP , IN PRP$ NN IN DT NN IN CD NNP NNPS IN CD .\nThe court confirmed Thursday that Ramadan will be hanged , which is the method of state execution in Iraq .\tDT NN VBD NNP IN NNP MD VB VBN , WDT VBZ DT NN IN NN NN IN NNP .\nThe government now has to set a date for the execution .\tDT NN RB VBZ TO VB DT NN IN DT NN .\nRamadan was convicted late last year with Saddam Hussein and six others .\tNNP VBD VBN RB JJ NN IN NNP NNP CC CD NNS .\nRamadan initially was sentenced to life in prison .\tNNP RB VBD VBN TO NN IN NN .\nBut an appeals court ruled that sentence was too lenient and asked the lower court to consider the death penalty .\tCC DT NNS NN VBD DT NN VBD RB JJ CC VBD DT JJR NN TO VB DT NN NN .\nThe decision to give Ramadan the maximum sentence ignored appeals from international human rights groups .\tDT NN TO VB NNP DT JJ NN VBD NNS IN JJ JJ NNS NNS .\nSaddam Hussein was hanged in December , and two of his co-defendants were executed in January .\tNNP NNP VBD VBN IN NNP , CC CD IN PRP$ NNS VBD VBN IN NNP .\nA United Nations investigation team says a powerful truck bomb caused the explosion that killed former Lebanese Prime Minister Rafik Hariri .\tDT NNP NNPS NN NN VBZ DT JJ NN NN VBD DT NN WDT VBD JJ JJ NNP NNP NNP NNP .\nA German prosecutor , Detlev Mehlis , leading the U.N. team told a news conference in Beirut , Friday the blast occurred above ground .\tDT JJ NN , NNP NNP , VBG DT NNP NN VBD DT NN NN IN NNP , NNP DT NN VBD IN NN .\nSome people believed the explosives were buried under the street , suggesting officials were involved in the plot to kill the former prime minister .\tDT NNS VBD DT NNS VBD VBN IN DT NN , VBG NNS VBD VBN IN DT NN TO VB DT JJ JJ NN .\nMr. Hariri and 20 others were killed when his motorcade was blown up on February 14 in downtown Beirut .\tNNP NNP CC CD NNS VBD VBN WRB PRP$ NN VBD VBN RP IN NNP CD IN NN NNP .\nHis assassination was the catalyst for mass anti-Syrian protests and intensified international pressure on Damascus to withdraw its army from Lebanon .\tPRP$ NN VBD DT NN IN JJ JJ NNS CC VBD JJ NN IN NNP TO VB PRP$ NN IN NNP .\nTurkish police have detained 23 people suspected of having links with the al-Qaida terrorist network .\tJJ NNS VBP VBN CD NNS VBN IN VBG NNS IN DT NNP NN NN .\nPolice detained the suspects Wednesday in the northwestern province of Bursa .\tNNS VBD DT NNS NNP IN DT JJ NN IN NNP .\nIn May , police detained 11 suspected al-Qaida militants who were believed to be planning terrorist attacks in Istanbul .\tIN NNP , NN VBD CD JJ NNP NNS WP VBD VBN TO VB VBG JJ NNS IN NNP .\nA Turkish al-Qaida cell was blamed in four suicide bombings in 2003 that killed at least 58 people and injured hundreds more .\tDT JJ NNP NN VBD VBN IN CD NN NNS IN CD WDT VBD IN JJS CD NNS CC JJ NNS RBR .\nThose attacks targeted two synagogues , the British consulate and a London-based bank .\tDT NNS VBD CD NNS , DT JJ NN CC DT JJ NN .\nFrench President Jacques Chirac has announced he will hold a nationwide referendum on the European Union 's constitution before the middle of next year .\tJJ NNP NNP NNP VBZ VBN PRP MD VB DT JJ NN IN DT NNP NNP POS NN IN DT NN IN JJ NN .\nIn his televised New Year 's Address Friday the French leader , who supports the EU constitution , told his compatriots they will , in his words , have Europe 's future in their hands .\tIN PRP$ JJ NNP NNP POS NN NNP DT JJ NN , WP VBZ DT NNP NN , VBD PRP$ NNS PRP MD , IN PRP$ NNS , VBP NNP POS NN IN PRP$ NNS .\nMr. Chirac and other European Union leaders signed the constitution at a summit in Rome in late October , but most of the 25 EU member states still have to ratify it .\tNNP NNP CC JJ NNP NNP NNS VBD DT NN IN DT NN IN NNP IN JJ NNP , CC JJS IN DT CD NNP NN NNS RB VBP TO VB PRP .\nThe document creates new top-level EU positions , such as a permanent EU Council Presidency and a Foreign Ministry .\tDT NN VBZ JJ JJ NNP NNS , JJ IN DT JJ NNP NNP NNP CC DT NNP NNP .\nIt also modifies the bloc 's decision-making process .\tPRP RB VBZ DT NN POS JJ NN .\nIn France , right-wing critics worry that it enhances EU powers at the expense of the member states , while left-wing opponents say it enshrines the rights of business to the detriment of workers .\tIN NNP , JJ NNS VBP IN PRP VBZ NNP NNS IN DT NN IN DT NN NNS , IN JJ NNS VBP PRP VBZ DT NNS IN NN TO DT NN IN NNS .\nA published report says donors plan to withhold $ 375 million in aid from Ethiopia in light of the government 's response to recent opposition-led protests .\tDT JJ NN VBZ NNS VBP TO VB $ CD CD IN NN IN NNP IN NN IN DT NN POS NN TO JJ JJ NNS .\nThe Financial Times newspaper quotes the World Bank 's director in Ethiopia Ishac Diwan as saying the World Bank , the European Union , Britain and other donors will consider disbursing funds in other ways to address the country 's massive poverty .\tDT NNP NNP NN VBZ DT NNP NNP POS NN IN NNP NNP NNP IN VBG DT NNP NNP , DT NNP NNP , NNP CC JJ NNS MD VB VBG NNS IN JJ NNS TO VB DT NN POS JJ NN .\nAt least 46 people were killed and thousands detained during clashes between security forces and opposition protesters last month .\tIN JJS CD NNS VBD VBN CC NNS VBN IN NNS IN NN NNS CC NN NNS JJ NN .\nThe violence erupted during anti-government protests against alleged fraud in last May 's parliamentary elections won by Ethiopia 's ruling party .\tDT NN VBD IN JJ NNS IN JJ NN IN JJ NNP POS JJ NNS VBN IN NNP POS VBG NN .\nWednesday , an Ethiopian judge ordered a group of 131 opposition leaders , journalists and others detained during the protests to remain in custody after most boycotted a bail hearing .\tNNP , DT JJ NN VBD DT NN IN CD NN NNS , NNS CC NNS VBD IN DT NNS TO VB IN NN IN JJS VBD DT NN NN .\nThose detainees have been charged with treason and genocide .\tDT NNS VBP VBN VBN IN NN CC NN .\nA Shi'ite member of Iraq 's parliament says followers of radical Shi'ite cleric Moqtada al-Sadr will quit the national unity government if Prime Minister Nouri al-Maliki meets with President Bush in Jordan next week .\tDT JJ NN IN NNP POS NN VBZ NNS IN JJ NNP NN NNP NNP MD VB DT JJ NN NN IN NNP NNP NNP NNP VBZ IN NNP NNP IN NNP JJ NN .\nParliamentarian Qusai Abdul-Wahab issued a statement on behalf of the group Friday .\tNN NNP NNP VBD DT NN IN NN IN DT NN NNP .\nHe said the group would also withdraw if the security situation in Iraq does not improve .\tPRP VBD DT NN MD RB VB IN DT NN NN IN NNP VBZ RB VB .\nAl-Sadr 's followers hold six cabinet seats and have 30 members in the 275-member parliament .\tNNP POS NNS VBP CD NN NNS CC VBP CD NNS IN DT JJ NN .\nMr. Bush and Mr. Maliki are scheduled to meet Wednesday and Thursday in the Jordanian capital , Amman , to discuss the situation in Iraq .\tNNP NNP CC NNP NNP VBP VBN TO VB NNP CC NNP IN DT JJ NN , NNP , TO VB DT NN IN NNP .\nBahrain 's foreign minister is calling for Arab countries to form a regional group that includes rivals Iran and Israel .\tNNP POS JJ NN VBZ VBG IN JJ NNS TO VB DT JJ NN WDT VBZ NNS NNP CC NNP .\nSheikh Khalid bin Ahmed Al Khalifa says the organization could get under way even if not all members recognize each other .\tNNP NNP NNP NNP NNP NNP VBZ DT NN MD VB IN NN RB IN RB DT NNS VBP DT NN .\nOf the Arab states , only Egypt and Jordan recognize Israel .\tIN DT JJ NNS , RB NNP CC NNP VBP NNP .\nNon-Arab Iran is particularly opposed to the Jewish state , with its president vowing to see it end .\tJJ NNP VBZ RB VBN TO DT JJ NN , IN PRP$ NN VBG TO VB PRP NN .\nIn an interview in Wednesday 's al-Hayat pan-Arab newspaper , Sheik Khalid says Turkey should also be included in the Middle East grouping .\tIN DT NN IN NNP POS JJ JJ NN , NNP NNP VBZ NNP MD RB VB VBN IN DT NNP NNP NN .\nHe argues such a forum is the only way to resolve the region 's problems .\tPRP VBZ PDT DT NN VBZ DT JJ NN TO VB DT NN POS NNS .\nThe Bahrainian diplomat notes the countries are all able to sit together in the United Nations .\tDT JJ NN VBZ DT NNS VBP DT JJ TO VB RB IN DT NNP NNPS .\nThe tiny Gulf kingdom , whose Shi'ite majority is ruled by a Sunni minority , has close ties with the United States and hosts the U.S. Navy 's Fifth Fleet .\tDT JJ NNP NN , WP$ JJ NN VBZ VBN IN DT NNP NN , VBZ JJ NNS IN DT NNP NNPS CC VBZ DT NNP NNP POS NNP NNP .\nNine former communist-ruled NATO countries and Canada have urged alliance members to overcome their disagreements and initiate the membership process for Georgia and Ukraine at next month 's summit in Bucharest .\tCD JJ JJ NNP NNS CC NNP VBP VBN NN NNS TO VB PRP$ NNS CC VB DT NN NN IN NNP CC NNP IN JJ NN POS NN IN NNP .\nRepresentatives of Bulgaria , the Czech Republic , Estonia , Latvia , Lithuania , Poland , Slovakia , Slovenia and Romania as well as Canada expressed their views in a letter to NATO Secretary General Jaap de Hoop Scheffer .\tNNS IN NNP , DT JJ NNP , NNP , NNP , NNP , NNP , NNP , NNP CC NNP RB RB IN NNP VBD PRP$ NNS IN DT NN TO NNP NN NNP NNP NNP NNP NNP .\nThe message says extending a NATO Membership Action Plan to Georgia and Ukraine will increase stability and security in Europe .\tDT NN VBZ VBG DT NNP NNP NNP NNP TO NNP CC NNP MD VB NN CC NN IN NNP .\nIt adds failure to do so would create doubts that NATO membership is available to all democratic countries .\tPRP VBZ NN TO VB RB MD VB NNS IN NNP NN VBZ JJ TO DT JJ NNS .\nRussia strongly opposes further NATO expansion .\tNNP RB VBZ JJ NNP NN .\nSome larger NATO members have expressed doubts that Georgia fully satisfies alliance standards for democracy .\tDT JJR NNP NNS VBP VBN NNS IN NNP RB VBZ NN NNS IN NN .\nThey also note that a large proportion of Ukrainian citizens opposes NATO entry .\tPRP RB VBP IN DT JJ NN IN JJ NNS VBZ NNP NN .\nPresident Bush will travel to Europe in February for talks with NATO and European Union officials as he starts his second term in office .\tNNP NNP MD VB TO NNP IN NNP IN NNS IN NNP CC NNP NNP NNS IN PRP VBZ PRP$ JJ NN IN NN .\nA White House spokesman says the visit February 22 will include talks with Alliance heads of state , top European Commission officials and Belgian Prime Minister Guy Verhofstadt .\tDT NNP NNP NN VBZ DT NN NNP CD MD VB NNS IN NNP NNS IN NN , JJ NNP NNP NNS CC JJ NNP NNP NNP NNP .\nThe spokesman called the trip an effort to strengthen cooperation in the struggle against terrorism .\tDT NN VBD DT NN DT NN TO VB NN IN DT NN IN NN .\nIn Brussels Secretary of State Colin Powell said the February trip is an attempt to rebuild ties strained by disagreements over the U.S.-led war in Iraq .\tIN NNP NNP IN NNP NNP NNP VBD DT NNP NN VBZ DT NN TO VB NNS VBN IN NNS IN DT JJ NN IN NNP .\nThe United States has officially ended its peacekeeping presence in Bosnia-Herzegovina , although some American soldiers will remain in the Balkan country to help hunt down war crimes suspects .\tDT NNP NNP VBZ RB VBN PRP$ NN NN IN NNP , IN DT JJ NNS MD VB IN DT NNP NN TO VB VB RP NN NNS NNS .\nU.S. military officials marked the end of the peacekeeping presence Wednesday , with a ceremony at Eagle Base in the Tuzla area .\tNNP JJ NNS VBD DT NN IN DT NN NN NNP , IN DT NN IN NNP NNP IN DT NNP NN .\nSome 700 Americans now serve in the NATO-led Stabilization Force , which has fewer than 10,000 soldiers in Bosnia .\tDT CD NNS RB VBP IN DT JJ NNP NNP , WDT VBZ JJR IN CD NNS IN NNP .\nNATO troops began peacekeeping in Bosnia after the December 1995 Dayton agreement halted the Bosnian conflict .\tNNP NNS VBD VBG IN NNP IN DT NNP CD NNP NN VBD DT JJ NN .\nMost of the American soldiers will leave when NATO hands over peacekeeping duties next week to a European Union Force that will number 7,000 .\tJJS IN DT JJ NNS MD VB WRB NNP VBZ RB VBG NNS JJ NN IN DT NNP NNP NNP WDT MD VB CD .\nAbout 150 American soldiers will remain at Eagle Base to focus on hunting for war crimes suspects like fugitive former Bosnian Serb leader Radovan Karadzic .\tIN CD JJ NNS MD VB IN NNP NNP TO VB IN NN IN NN NNS VBZ IN JJ JJ JJ JJ NN NNP NNP .\nIn the Democratic Republic of Congo , government troops backed by United Nations peacekeepers have begun to drive out Rwandan rebels a month after a deadline for their pullout expired .\tIN DT JJ NNP IN NNP , NN NNS VBN IN NNP NNP NNS VBP VBN TO VB RP JJ NNS DT NN IN DT NN IN PRP$ NN VBD .\nA U.N. military spokesman says the aim of the joint operation is to clear out as many as 5,000 Rwandan Hutu rebels who have set up camp in Virunga National Park in North Kivu province .\tDT NNP NN NN VBZ DT NN IN DT JJ NN VBZ TO VB RP RB JJ IN CD JJ NNP NNS WP VBP VBN RP NN IN NNP NNP NNP IN NNP NNP NN .\nThe rebels promised in March they would disarm and return home by the end of October .\tDT NNS VBN IN NNP PRP MD VB CC VB NN IN DT NN IN NNP .\nBut few have done so , asking the Rwandan government for more guarantees .\tCC JJ VBP VBN RB , VBG DT JJ NN IN JJR NNS .\nAn estimated 10,000 Rwandan rebels are believed to be in eastern Congo .\tDT VBN CD JJ NNS VBP VBN TO VB IN JJ NNP .\nThey fled to Congo after helping orchestrate Rwanda 's 1994 genocide .\tPRP VBD TO NNP IN VBG JJ NNP POS CD NN .\nHamas officials say Egyptian forces have closed the breach in the border between the Gaza Strip and Egypt , nearly two weeks after militants blew up a section of the border wall .\tNNP NNS VBP JJ NNS VBP VBN DT NN IN DT NN IN DT NNP NNP CC NNP , RB CD NNS IN NNS VBD RP DT NN IN DT NN NN .\nOfficials said Sunday that troops are allowing Gazans and Egyptians to cross the border to return to their homes , but are preventing any new cross-border traffic .\tNNS VBD NNP IN NNS VBP VBG NNPS CC NNS TO VB DT NN TO VB TO PRP$ NNS , CC VBP VBG DT JJ JJ NN .\nHundreds of thousands of Palestinians have streamed across the Egyptian border since Hamas militants destroyed a barrier wall on January 23 , shattering an Israeli blockade .\tNNS IN NNS IN NNS VBP VBN IN DT JJ NN IN NNP NNS VBD DT NN NN IN NNP CD , VBG DT JJ NN .\nEgyptian forces placed metal barriers across several breaches in the Rafah border crossing Friday .\tJJ NNS VBN NN NNS IN JJ NNS IN DT NNP NN VBG NNP .\nBut militants used bulldozers to tear down the barriers , and hundreds of people demonstrated to demand the border remain open .\tCC NNS VBD NNS TO VB RP DT NNS , CC NNS IN NNS VBN TO VB DT NN VBP JJ .\nEuropean Union justice and interior ministers have agreed on a counter-terrorism strategy aimed at preventing recruitment by terrorist groups .\tNNP NNP NN CC NN NNS VBP VBN IN DT NN NN VBN IN VBG NN IN NN NNS .\nEU top anti-terror official Gijs de Vries says Europe faces a dual threat - from outsiders coming to Europe and from people who live on the continent .\tNNP JJ NN NN NNP NNP NNP VBZ NNP VBZ DT JJ NN : IN NNS VBG TO NNP CC IN NNS WP VBP IN DT NN .\nThe new strategy 's objectives include protecting potential targets , pursuing and investigating suspects , and improving EU capability to respond to terrorist attacks .\tDT JJ NN POS NNS VBP VBG JJ NNS , VBG CC VBG NNS , CC VBG NNP NN TO VB TO NN NNS .\nThe plan covers everything from Internet sites promoting extremist Islamic ideas to fostering better community relations with Muslim groups .\tDT NN VBZ DT IN NNP NNS VBG NN JJ NNS TO VB JJR NN NNS IN NNP NNS .\nIt also calls for better police cooperation and stepped-up security at ports of entry .\tPRP RB VBZ IN JJR NN NN CC JJ NN IN NNS IN NN .\nThursday 's agreement comes as Belgian investigators charged five people with involvement in a network that sent volunteers to Iraq .\tNNP POS NN VBZ IN JJ NNS VBD CD NNS IN NN IN DT NN WDT VBD NNS TO NNP .\nThe volunteers included a young Belgian woman , Muriel Degauque , who blew herself up in a failed attack on U.S. troops near Baghdad last month .\tDT NNS VBD DT JJ JJ NN , NNP NNP , WP VBD PRP RP IN DT JJ NN IN NNP NNS IN NNP JJ NN .\nPakistan 's Prime Minister Yousaf Raza Gilani vowed to fight terrorism as he embarked Saturday , on a visit to Washington to meet with U.S. President George Bush .\tNNP POS NNP NNP NNP NNP NNP VBD TO VB NN IN PRP VBD NNP , IN DT NN TO NNP TO VB IN NNP NNP NNP NNP .\nPrime Minister Gilani told reporters near Islamabad the fight against extremism is Pakistan 's own cause .\tNNP NNP NNP VBD NNS IN NNP DT NN IN NN VBZ NNP POS JJ NN .\nMr. Gilani 's trip comes as violence continues to rise in the tribal regions of northwest Pakistan .\tNNP NNP POS NN VBZ IN NN VBZ TO VB IN DT JJ NNS IN JJ NNP .\nU.S. and Afghan officials have called on Pakistan to fight militants who launch attacks on Afghan and foreign forces along the Afghan border .\tNNP CC JJ NNS VBP VBN IN NNP TO VB NNS WP VB NNS IN JJ CC JJ NNS IN DT JJ NN .\nThe Pakistani government has repeatedly said it will not allow foreign forces to conduct operations against militants on Pakistani soil .\tDT JJ NN VBZ RB VBN PRP MD RB VB JJ NNS TO VB NNS IN NNS IN JJ NN .\nMr. Gilani 's visit is the first official trip to Washington since taking office in March .\tNNP NNP POS NN VBZ DT JJ JJ NN TO NNP IN VBG NN IN NNP .\nThe Pakistani leader will also meet with U.S. presidential candidates Barack Obama and John McCain .\tDT JJ NN MD RB VB IN NNP JJ NNS VBP NNP CC NNP NNP .\nOfficials in Ivory Coast say at least four people have been killed by a group of armed men attacking a military police post in the country 's main city .\tNNS IN NNP NNP VBP IN JJS CD NNS VBP VBN VBN IN DT NN IN JJ NNS VBG DT JJ NN NN IN DT NN POS JJ NN .\nThe attack occurred Saturday in Anyama , a suburb of Abidjan .\tDT NN VBD NNP IN NNP , DT NN IN NNP .\nReuters news agency quotes an unidentified military policemen saying the four men were all gendarmes .\tNNP NN NN VBZ DT JJ JJ NNS VBG DT CD NNS VBD DT NNS .\nThe small west African nation has been plagued by violence since a 2002 civil war that virtually split the country in two .\tDT JJ JJ JJ NN VBZ VBN VBN IN NN IN DT CD JJ NN WDT RB VBD DT NN IN CD .\nAnother suicide car bomber has struck at an entrance to Baghdad 's heavily guarded Green Zone , a day after nine Iraqis were killed in an attack at the same checkpoint .\tDT NN NN NN VBZ VBN IN DT NN TO NNP POS RB VBN NNP NNP , DT NN IN CD NNS VBD VBN IN DT NN IN DT JJ NN .\nHospital officials say at least two people were killed in Tuesday 's attack , and a dozen others were wounded .\tNN NNS VBP IN JJS CD NNS VBD VBN IN NNP POS NN , CC DT NN NNS VBD VBN .\nMeanwhile , to the north , in Mosul , the U.S. military says six bodies were found Tuesday , all killed execution-style with a bullet to the head .\tRB , TO DT NN , IN NNP , DT NNP NN VBZ CD NNS VBD VBN NNP , DT VBN NN IN DT NN TO DT NN .\nMonday , hospital officials said they had received the bodies of eight other men , all killed in the same way .\tNNP , NN NNS VBD PRP VBD VBN DT NNS IN CD JJ NNS , DT VBN IN DT JJ NN .\nAnd in Fallujah , more clashes have been reported in the city that was the target of last month 's massive U.S.-led offensive against insurgents .\tCC IN NNP , JJR NNS VBP VBN VBN IN DT NN WDT VBD DT NN IN JJ NN POS JJ JJ NN IN NNS .\nIsraeli forces killed three Palestinians and wounded several others Monday in operations against militants in the northern Gaza Strip .\tJJ NNS VBD CD NNS CC VBD JJ NNS NNP IN NNS IN NNS IN DT JJ NNP NNP .\nIn one incident , Israel 's military says troops shot dead two armed Palestinians who were trying to place explosives near the border fence separating Gaza from Israel .\tIN CD NN , NNP POS JJ VBZ NNS VBD JJ CD JJ NNS WP VBD VBG TO VB NNS IN DT NN NN VBG NNP IN NNP .\nEarlier , an Israeli air strike killed a Hamas militant and wounded several other people in the northern town of Beit Hanoun .\tRB , DT JJ NN NN VBD DT NNP NN CC VBD JJ JJ NNS IN DT JJ NN IN NNP NNP .\nThe Israeli military says the aircraft hit a group of militants who had just fired mortars into southern Israel .\tDT JJ NN VBZ DT NN VBD DT NN IN NNS WP VBD RB VBN NNS IN JJ NNP .\nIsrael has stepped up air strikes and ground raids in Gaza since Hamas seized control of the territory in June .\tNNP VBZ VBN RP NN NNS CC NN NNS IN NNP IN NNP VBD NN IN DT NN IN NNP .\nVenezuela and Cuba have asked a United Nations committee to investigate the release on bail of a Cuban militant from a U.S. prison .\tNNP CC NNP VBP VBN DT NNP NNP NN TO VB DT NN IN NN IN DT JJ NN IN DT NNP NN .\nThe governments in Caracas and Havana sent a letter Wednesday to the U.N. 's Counter-Terrorism Committee , urging it to examine the release of Luis Posada Carriles .\tDT NNS IN NNP CC NNP VBD DT NN NNP TO DT NNP POS NNP NNP , VBG PRP TO VB DT NN IN NNP NNP NNP .\nVenezuela and Cuba accuse the U.S. of ' flagrantly violating ' U.N. Security Council resolutions on counter-terrorism by releasing him .\tNNP CC NNP VBP DT NNP IN `` RB VBG `` NNP NNP NNP NNS IN NN IN VBG PRP .\nVenezuela convicted the former U.S. intelligence operative of plotting the 1976 bombing of a Cuban airliner that killed 73 people .\tNNP VBD DT JJ NNP NN NN IN VBG DT CD NN IN DT JJ NN WDT VBD CD NNS .\nPosada Carriles denies the charge .\tNNP NNP VBZ DT NN .\nHe escaped a Venezuelan prison in 1985 .\tPRP VBD DT JJ NN IN CD .\nPosada Carriles has been in U.S. custody since 2005 for alleged immigration offenses .\tNNP NNP VBZ VBN IN NNP NN IN CD IN JJ NN NNS .\nA U.S. court released him on bail last week ahead of his trial on May 11 .\tDT NNP NN VBD PRP IN NN JJ NN RB IN PRP$ NN IN NNP CD .\nPosada Carriles was born in Cuba and is a naturalized Venezuelan citizen .\tNNP NNP VBD VBN IN NNP CC VBZ DT JJ JJ NN .\nThousands of college students are returning to New Orleans this week , as the city 's universities open after a semester shut down for recovery from Hurricane Katrina .\tNNS IN NN NNS VBP VBG TO NNP NNP DT NN , IN DT NN POS NNS JJ IN DT NN VBD RP IN NN IN NNP NNP .\nCity officials say the students ' return will sizably increase the city 's population and bring in new consumer dollars .\tNNP NNS VBP DT NNS POS NN MD RB VB DT NN POS NN CC VB RP JJ NN NNS .\nWhile some students changed schools after the city flooded last year , most are returning , including 88 percent of students at Tulane University .\tIN DT NNS VBD NNS IN DT NN VBD JJ NN , JJS VBP VBG , VBG CD NN IN NNS IN NNP NNP .\nThe universities are using hotels and trailers to house students and classes , as repairs on flood-damaged facilities continue .\tDT NNS VBP VBG NNS CC NNS TO VB NNS CC NNS , IN NNS IN JJ NNS VBP .\nCity and state officials are urging students to help rebuild .\tNNP CC NN NNS VBP VBG NNS TO VB VB .\nMeanwhile , members of the U.S. Senate committee for Homeland Security are assessing hurricane recovery efforts in Mississippi and Louisiana today .\tRB , NNS IN DT NNP NNP NN IN NNP NNP VBP VBG NN NN NNS IN NNP CC NNP NN .\nTwo days after a shooting killed one person at a science seminar in India 's southern city of Bangalore , a letter threatening bomb blasts has prompted security alerts in the area known for its high-tech businesses .\tCD NNS IN DT NN VBN CD NN IN DT NN NN IN NNP POS JJ NN IN NNP , DT NN VBG NN NNS VBZ VBN NN NNS IN DT NN VBN IN PRP$ JJ NNS .\nThe letter was signed by someone calling themselves Moinuddin .\tDT NN VBD VBN IN DT VBG PRP NNP .\nIt was addressed to police , and published by local newspapers Friday .\tPRP VBD VBN TO NNS , CC VBN IN JJ NNS NNP .\nIt warns that there will be bomb blasts on New Year 's Eve at a five-star hotel and at the home of Karnataka state 's chief minister .\tPRP VBZ IN EX MD VB NN NNS IN NNP NNP POS NN IN DT JJ NN CC IN DT NN IN NNP NN POS JJ NN .\nPolice say they do not know if the threat is real , but they have stepped up security and say they are taking no chances .\tNNS VBP PRP VBP RB VB IN DT NN VBZ JJ , CC PRP VBP VBN RP NN CC VB PRP VBP VBG DT NNS .\nOfficials say Wednesday 's attack on the science conference , in which a gunman sprayed bullets indiscriminately at delegates and killed one professor , M.C.\tNNS VBP NNP POS NN IN DT NN NN , IN WDT DT NN VBD NNS RB IN NNS CC VBD CD NN , NNP\nPuri , was likely the work of militants .\tNNP , VBD JJ DT NN IN NNS .\nBolivia 's President Evo Morales says he wants to raise natural gas prices by nearly 60 percent for exports to Brazil and Argentina , which rely heavily on Bolivian gas .\tNNP POS NNP NNP NNP VBZ PRP VBZ TO VB JJ NN NNS IN RB CD NN IN NNS TO NNP CC NNP , WDT VBP RB IN JJ NN .\nMr. Morales says the price increase will bring in an extra $ 600 million to the Bolivian government .\tNNP NNP VBZ DT NN NN MD VB IN DT JJ $ CD CD TO DT JJ NN .\nHis remarks come one week after he ordered soldiers to production facilities to forcibly nationalize Bolivia 's energy sector .\tPRP$ NNS VBP CD NN IN PRP VBD NNS TO NN NNS TO RB VB NNP POS NN NN .\nIn Brazil Monday , President Luiz Inacio Lula da Silva reassured Brazilians that Bolivia 's nationalization will not result in gas shortages in his country .\tIN NNP NNP , NNP NNP NNP NNP NNP NNP VBD NNS IN NNP POS NN MD RB VB IN NN NNS IN PRP$ NN .\nHe also said Brazil will not retaliate against Bolivia , but instead will negotiate with its neighbor to reach an agreement on contracts and prices .\tPRP RB VBD NNP MD RB VB IN NNP , CC RB MD VB IN PRP$ NN TO VB DT NN IN NNS CC NNS .\nAfter a summit last Thursday , Mr. Morales and the leaders of Argentina , Brazil and Venezuela issued a statement affirming Bolivia 's ' sovereign right ' to control its natural resources .\tIN DT NN JJ NNP , NNP NNP CC DT NNS IN NNP , NNP CC NNP VBD DT NN VBG NNP POS `` JJ NN `` TO VB PRP$ JJ NNS .\nA young Egyptian woman died from bird flu Tuesday .\tDT JJ JJ NN VBD IN NN NN NNP .\nEgypt 's MENA news agency quotes the health ministry as saying the 25-year-old woman from Fayyum died in a Giza hospital south of the capital , Cairo .\tNNP POS NNP NN NN VBZ DT NN NN IN VBG DT JJ NN IN NNP VBD IN DT NNP NN NN IN DT NN , NNP .\nOf the 44 bird flu cases confirmed in Egypt , 20 have been fatal .\tIN DT CD NN NN NNS VBN IN NNP , CD VBP VBN JJ .\nMost of the fatalities have been women or girls whose families raise poultry , which brings them into daily contact with chickens or turkeys .\tJJS IN DT NNS VBP VBN NNS CC NNS WP$ NNS VBP NN , WDT VBZ PRP IN JJ NN IN NNS CC NNS .\nClose to five million Egyptian households depend on poultry for food or income .\tJJ TO CD CD JJ NNS VBP IN NN IN NN CC NN .\nThe government says this makes it unlikely the disease can be eradicated , despite a large-scale poultry vaccination program .\tDT NN VBZ DT VBZ PRP JJ DT NN MD VB VBN , IN DT JJ NN NN NN .\nRepresentatives from Iraq 's main Shi'ite and Kurdish political factions are meeting to negotiate a final agreement on a new governing coalition .\tNNS IN NNP POS JJ NNP CC NNP JJ NNS VBP VBG TO VB DT JJ NN IN DT JJ NN NN .\nNews reports say Shi'ites are seeking Kurdish support for a power-sharing deal that also addresses Kurdish claims to oil-rich northern areas .\tNNP NNS VBP NNS VBP VBG JJ NN IN DT JJ NN WDT RB VBZ JJ NNS TO JJ JJ NNS .\nDetails could not be confirmed .\tNNS MD RB VB VBN .\nThe majority Shi'ite Muslim alliance wants Ibrahim al-Jaafari as prime minister .\tDT NN NNP NNP NN VBZ NNP NNP IN JJ NN .\nKurdish officials have lobbied for a top role for their leader , Jalal Talabani .\tNNP NNS VBP VBN IN DT JJ NN IN PRP$ NN , NNP NNP .\nBecause no party holds a two-thirds majority in parliament , lawmakers must form a coalition to approve a new government .\tIN DT NN VBZ DT JJ NN IN NN , NNS MD VB DT NN TO VB DT JJ NN .\nOfficials say even if they do not agree , parliament will convene March 16th - the 17th anniversary of Saddam Hussein 's notorious chemical weapons attack on the Kurdish town of Halabja .\tNNS VBP RB IN PRP VBP RB VB , NN MD VB NNP CD IN DT JJ NN IN NNP NNP POS JJ NN NNS NN IN DT JJ NN IN NNP .\nUnidentified gunmen have fired on a car carrying a Czech diplomat in Afghanistan , injuring his two bodyguards .\tJJ NNS VBP VBN IN DT NN VBG DT JJ NN IN NNP , VBG PRP$ CD NNS .\nFilip Velach , the Czech charge d'affaires , was not hurt in the attack which took place about 100 kilometers outside the capital , Kabul .\tNNP NNP , DT JJ NN NNS , VBD RB VBN IN DT NN WDT VBD NN IN CD NNS IN DT NN , NNP .\nThe three sought safety in a house and were later rescued by NATO 's International Security Assistance Force .\tDT CD VBD NN IN DT NN CC VBD RB VBN IN NNP POS NNP NNP NNP NNP .\nLast month , the Czech Republic opened a diplomatic office in Kabul , headed by Velach .\tJJ NN , DT JJ NNP VBD DT JJ NN IN NNP , VBN IN NNP .\nMore than 150 Czech troops are currently serving in Afghanistan .\tJJR IN CD JJ NNS VBP RB VBG IN NNP .\nRussian officials say the deadly H5N1 strain of the bird flu virus has killed more than 1,00,000 birds on a poultry farm in southern Russia .\tJJ NNS VBP DT JJ NNP NN IN DT NN NN NN VBZ VBN JJR IN CD NNS IN DT NN NN IN JJ NNP .\nThe governor , Alexander Tkachev , of the Krasnodar region said Tuesday that the farm has been quarantined and other measures have been ordered to stop the spread of the virus .\tDT NN , NNP NNP , IN DT NNP NN VBD NNP IN DT NN VBZ VBN VBN CC JJ NNS VBP VBN VBN TO VB DT NN IN DT NN .\nIn Paris , the World Organization for Animal Health warned that the H5N1 virus would likely spread across Europe after being found at a French poultry farm .\tIN NNP , DT NNP NNP IN NNP NNP VBD IN DT NNP NN MD RB VB IN NNP IN VBG VBN IN DT JJ NN NN .\nOfficials were holding a second day of talks in the French capital to discuss mass vaccinations and other efforts to combat the illness .\tNNS VBD VBG DT JJ NN IN NNS IN DT JJ NN TO VB JJ NNS CC JJ NNS TO VB DT NN .\nMeanwhile , Swedish authorities say wild ducks in southern Sweden have been found with the H5 strain of bird flu .\tRB , JJ NNS VBP JJ NNS IN JJ NNP VBP VBN VBN IN DT NNP NN IN NN NN .\nAnd Pakistani authorities today culled at least 15,000 chickens infected with the H5 strain in North West Frontier province .\tCC JJ NNS NN VBN IN JJS CD NNS VBN IN DT NNP NN IN NNP NNP NNP NN .\nPalestinian witnesses say Israeli forces have killed at least four militants during a raid in the southern Gaza Strip .\tJJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS IN DT NN IN DT JJ NNP NNP .\nIsraeli troops and tanks entered the Khan Younis refugee camp early Thursday , in an operation the army says is aimed at stopping Palestinian militants ' mortar and rocket attacks on nearby Jewish settlements .\tJJ NNS CC NNS VBD DT NNP NNP NN NN RB NNP , IN DT NN DT NN VBZ VBZ VBN IN VBG JJ NNS POS NN CC NN NNS IN JJ JJ NNS .\nMeanwhile , Israel 's Deputy Prime Minister Ehud Olmert told the Jerusalem Post that Israel should follow up next year 's planned pullout from the Gaza Strip with a much larger withdrawal from the West Bank .\tRB , NNP POS NNP NNP NNP NNP NNP VBD DT NNP NNP IN NNP MD VB RP JJ NN POS JJ NN IN DT NNP NNP IN DT JJ JJR NN IN DT NNP NNP .\nMr. Olmert said he believes such a move would be in Israel 's interest .\tNNP NNP VBD PRP VBZ PDT DT NN MD VB IN NNP POS NN .\nOn Wednesday , interim Palestinian leader Mahmoud Abbas called on Israel to dismantle its separation barrier along the West Bank .\tIN NNP , JJ JJ NN NNP NNP VBD IN NNP TO VB PRP$ NN NN IN DT NNP NNP .\nMr. Abbas is running in the January 9 presidential election to succeed the late Yasser Arafat .\tNNP NNP VBZ VBG IN DT NNP CD JJ NN TO VB DT JJ NNP NNP .\nUganda 's President Yoweri Museveni says he is open to new peace talks with northern rebels , but only if the meetings take place outside the country .\tNNP POS NNP NNP NNP VBZ PRP VBZ JJ TO JJ NN NNS IN JJ NNS , CC RB IN DT NNS VBP NN IN DT NN .\nSpeaking in Gulu district on Sunday , Mr. Museveni said government troops in the meantime will press ahead with attacks on rebels in northern Uganda and parts of Sudan .\tVBG IN NNP NN IN NNP , NNP NNP VBD NN NNS IN DT NN MD VB RB IN NNS IN NNS IN JJ NNP CC NNS IN NNP .\nUganda 's government has called on rebels of the Lord 's Resistance Army to surrender , saying they will be forgiven .\tNNP POS NN VBZ VBN IN NNS IN DT NNP POS NNP NNP TO VB , VBG PRP MD VB VBN .\nA cease-fire between the government and rebels expired Friday , after the two sides failed to advance a peace process .\tDT NN IN DT NN CC NNS VBD NNP , IN DT CD NNS VBD TO VB DT NN NN .\nOfficials criticized rebel leaders , who said they needed more time for internal discussions on ending the conflict .\tNNS VBD JJ NNS , WP VBD PRP VBD JJR NN IN JJ NNS IN VBG DT NN .\nThe rebels have been fighting to overthrow the Ugandan government since 1987 .\tDT NNS VBP VBN VBG TO VB DT JJ NN IN CD .\nHungary has become the second country to ratify the European Union 's constitution .\tNNP VBZ VBN DT JJ NN TO VB DT NNP NNP POS NN .\nIn Budapest Monday , the Hungarian parliament voted overwhelmingly to approve the pact , which aims to streamline the workings of the 25-member bloc .\tIN NNP NNP , DT JJ NN VBD RB TO VB DT NN , WDT VBZ TO VB DT NNS IN DT JJ NN .\nHungary , which entered the European Union on May 1 , joins Lithuania as the only countries that have ratified the EU constitution .\tNNP , WDT VBD DT NNP NNP IN NNP CD , VBZ NNP IN DT JJ NNS WDT VBP VBN DT NNP NN .\nThe text has been accepted by leaders of all member states , but must still be ratified by each country before it comes into force .\tDT NN VBZ VBN VBN IN NNS IN DT NN NNS , CC MD RB VB VBN IN DT NN IN PRP VBZ IN NN .\nThe constitution will create an EU president and foreign minister .\tDT NN MD VB DT NNP NN CC JJ NN .\nIt is aimed at speeding up decision-making by ending national vetoes in certain policy areas , including the economy , the judiciary and education .\tPRP VBZ VBN IN VBG RP NN IN VBG JJ NNS IN JJ NN NNS , VBG DT NN , DT NN CC NN .\nNorth Korea is denying suggestions it may be helping Syria develop a nuclear weapons facility .\tNNP NNP VBZ VBG NNS PRP MD VB VBG NNP VB DT JJ NNS NN .\nThe North Korean Foreign Ministry Tuesday dismissed U.S. media reports that Pyongyang has secretly offered nuclear cooperation to Syria .\tDT JJ JJ NNP NNP NNP VBD NNP NNS NNS IN NNP VBZ RB VBN JJ NN TO NNP .\nThe Washington Post newspaper reported last week that U.S. intelligence has acquired information , including satellite photos , indicating North Korea may be cooperating with Syria on some sort of nuclear facility .\tDT NNP NNP NN VBD JJ NN IN NNP NN VBZ VBN NN , VBG NN NNS , VBG NNP NNP MD VB VBG IN NNP IN DT NN IN JJ NN .\nThe information is said to have been provided mostly by Israel .\tDT NN VBZ VBN TO VB VBN VBN RB IN NNP .\nNorth Korea tested a nuclear weapon last year , but has since cooperated in six-nation talks aimed at ending its nuclear weapons program .\tNNP NNP VBD DT JJ NN JJ NN , CC VBZ IN VBN IN JJ NNS VBN IN VBG PRP$ JJ NNS NN .\nChina announced this week that six-party talks scheduled for Wednesday have been postponed .\tNNP VBD DT NN IN JJ NNS VBN IN NNP VBP VBN VBN .\nIt did not give a reason for the change .\tPRP VBD RB VB DT NN IN DT NN .\nA North Korean Foreign Ministry delegation arrived in Beijing Tuesday for talks with government officials .\tDT JJ JJ JJ NNP NN VBD IN NNP NNP IN NNS IN NN NNS .\nIt is unclear whether the visit is aimed at sorting out a date for the nuclear negotiations .\tPRP VBZ JJ IN DT NN VBZ VBN IN VBG RP DT NN IN DT JJ NNS .\nIraqi police say gunmen wearing Iraqi special forces uniforms have kidnapped a wealthy businessman and his son , after killing five of their bodyguards .\tJJ NNS VBP NNS VBG JJ JJ NNS NNS VBP VBN DT JJ NN CC PRP$ NN , IN VBG CD IN PRP$ NNS .\nPolice Friday say Ghalib Abdul Hussein Kubba , director-general of the Basra International Bank , was abducted from his home in western Baghdad late Thursday , along with his son .\tNNS NNP VBP NNP NNP NNP NNP , NN IN DT NNP NNP NNP , VBD VBN IN PRP$ NN IN JJ NNP JJ NNP , IN IN PRP$ NN .\nOfficers say no demands have been made so far .\tNNS VBP DT NNS VBP VBN VBN RB RB .\nIn northern Baghdad , police say they discovered the bodies of at least three unidentified men who had been shot dead .\tIN JJ NNP , NNS VBP PRP VBD DT NNS IN IN JJS CD JJ NNS WP VBD VBN VBN JJ .\nElsewhere , insurgents have blown up an oil pipeline , sabotaging oil delivery .\tRB , NNS VBP VBN RP DT NN NN , VBG NN NN .\nIn other developments , a White House spokesman Friday stressed that Iraqi police forces must adhere to the highest human rights standards .\tIN JJ NNS , DT NNP NNP NN NNP VBD IN JJ NN NNS MD VB TO DT JJS JJ NNS NNS .\nThe comments come as Iraq 's interior ministry investigates allegations that death squads are operating within the police force and targeting Sunni Arabs .\tDT NNS VBP IN NNP POS JJ NN VBZ NNS IN NN NNS VBP VBG IN DT NN NN CC VBG NNP NNS .\nTurkey has reaffirmed its commitment to meet standards for European Union membership , after critics said momentum toward that goal had slowed .\tNNP VBZ VBN PRP$ NN TO VB NNS IN NNP NNP NN , IN NNS VBD NN IN DT NN VBD VBN .\nFollowing meetings Monday in Ankara with EU diplomats , Foreign Minister Abdullah Gul denied that Turkish commitment to joining the Union is lagging .\tVBG NNS NNP IN NNP IN NNP NNS , NNP NNP NNP NNP VBD IN JJ NN TO VBG DT NNP VBZ VBG .\nAlso speaking after the talks , Luxembourg Deputy Foreign Minister Nicolas Schmit , whose country currently holds the rotating EU presidency , said that Turkey must continue to implement reforms .\tRB VBG IN DT NNS , NNP NNP NNP NNP NNP NNP , WP$ NN RB VBZ DT VBG NNP NN , VBD IN NNP MD VB TO VB NNS .\nTurkey has yet to sign a customs pact that it agreed to in December .\tNNP VBZ RB TO VB DT NNS NN IN PRP VBD TO IN NNP .\nThe pact includes Cyprus , but does not require Ankara to officially recognize the Greek Cypriot government on the divided island .\tDT NN VBZ NNP , CC VBZ RB VB NNP TO RB VB DT JJ JJ NN IN DT VBN NN .\nThe European Union has indicated that Turkish goodwill gestures involving the divided island , which joined the EU last May , could help Ankara when it begins EU membership talks in October .\tDT NNP NNP VBZ VBN IN JJ NN NNS VBG DT VBN NN , WDT VBD DT NNP JJ NNP , MD VB NNP WRB PRP VBZ NNP NN NNS IN NNP .\nA senior Thai minister says the United States has neither operated a secret jail in Thailand for terror suspects nor used the country as a transfer point for such suspects .\tDT JJ JJ NN VBZ DT NNP NNPS VBZ RB VBN DT JJ NN IN NNP IN NN NNS CC VBD DT NN IN DT NN NN IN JJ NNS .\nU.S.-based ABC News and The Washington Post have reported that secret U.S. Central Intelligence Agency jails have existed since March 2002 when the first was created in Thailand .\tJJ NNP NNP CC DT NNP NNP VBP VBN IN JJ NNP NNP NNP NNP NNS VBP VBN IN NNP CD WRB DT NN VBD VBN IN NNP .\nABC said Tuesday the Thai jail was established following the capture in Pakistan of Abu Zabayda , who was sent to a vacant warehouse on an air base in Thailand .\tNNP VBD NNP DT JJ NN VBD VBN VBG DT NN IN NNP IN NNP NNP , WP VBD VBN TO DT JJ NN IN DT NN NN IN NNP .\nThailand 's Deputy Prime Minister and Justice Minister Chitchai Wannasathit Wednesday denied the reports .\tNNP POS NNP NNP NNP CC NNP NNP NNP NNP NNP VBD DT NNS .\nHe said no prisoner was brought to Thailand from Pakistan in 2002 .\tPRP VBD DT NN VBD VBN IN NNP IN NNP IN CD .\nChina is reporting a new outbreak of bird flu in poultry in the northwest Xinjiang region .\tNNP VBZ VBG DT JJ NN IN NN NN IN NN IN DT JJS NN NN .\nAgriculture ministry officials said Thursday the virus responsible for the 11 dead birds in Turpan city has been confirmed as the highly contagious H5N1 type .\tNNP NN NNS VBD NNP DT NN JJ IN DT CD JJ NNS IN NNP NN VBZ VBN VBN IN DT RB JJ NNP NN .\nMore than 5,000 birds have been culled to contain the new outbreak .\tJJR IN CD NNS VBP VBN VBN TO VB DT JJ NN .\nIn Indonesia , agriculture officials say hundreds of chickens infected with the most deadly strain of avian influenza have died in three districts in Aceh .\tIN NNP , NN NNS VBP NNS IN NNS VBN IN DT RBS JJ NN IN JJ NN VBP VBN IN CD NNS IN NNP .\nIn Vietnam , public health officials say a 15-year-old boy from the northern port city of Haiphong has tested positive for the same H5N1 strain of the flu virus .\tIN NNP , JJ NN NNS VBP DT JJ NN IN DT JJ JJ NN IN NNP VBZ VBN JJ IN DT JJ NNP NN IN DT NN NN .\nThe findings have not yet been confirmed by the World Health Organization .\tDT NNS VBP RB RB VBN VBN IN DT NNP NNP NNP .\nNearly 70 people have died from bird flu in Asia since 2003 .\tRB CD NNS VBP VBN IN NN NN IN NNP IN CD .\nAll known human cases of avian flu are believed to have resulted from close contact with infected birds .\tDT VBN JJ NNS IN JJ NN VBP VBN TO VB VBN IN JJ NN IN JJ NNS .\nThe Basque separatist group ETA says it plans to continue its militant campaign against Spain to further its goals .\tDT NNP NN NN NNP VBZ PRP VBZ TO VB PRP$ JJ NN IN NNP TO VB PRP$ NNS .\nIn a statement issued Sunday , ETA said a peace process begun by Spanish Prime Minister Jose Luis Rodriguez Zapatero offered no political solutions and sought only the defeat of the separatists .\tIN DT NN VBN NNP , NNP VBD DT NN NN VBN IN JJ NNP NNP NNP NNP NNP NNP VBD DT JJ NNS CC VBD RB DT NN IN DT NNS .\nETA also claimed responsibility for a small explosion on July 25th as the Tour de France bicycle race went through the northern town of Navarro , a stronger blast against a civil guard barracks in the northern town of Durango in August and two other explosions that month .\tNNP RB VBD NN IN DT JJ NN IN NNP CD IN DT NNP NNP NNP NN NN VBD IN DT JJ NN IN NNP , DT JJR NN IN DT JJ NN NNS IN DT JJ NN IN NNP IN NNP CC CD JJ NNS IN NN .\nETA declared a cease-fire in March of 2006 but , called it off in June , blaming the government for a breakdown in negotiations .\tNNP VBD DT NN IN NNP IN CD CC , VBD PRP RP IN NNP , VBG DT NN IN DT NN IN NNS .\nColombian police have deactivated a parcel bomb delivered to the home of a lawmaker allied with President Alvaro Uribe .\tJJ NNS VBP VBN DT NN NN VBN TO DT NN IN DT NN VBN IN NNP NNP NNP .\nAuthorities say the package resembled a book and was sent to Armando Benedetti 's home Thursday night .\tNNS VBP DT NN VBD DT NN CC VBD VBN TO NNP NNP POS NN NNP NN .\nBenedetti and his aides called police when they noticed something suspicious about the package , which contained an incendiary substance .\tNNP CC PRP$ NNS VBD NNS WRB PRP VBD DT JJ IN DT NN , WDT VBD DT JJ NN .\nInvestigators announced a $ 25,000 reward for information leading to the arrest of the person or persons who sent the package .\tNNS VBD DT $ CD NN IN NN VBG TO DT NN IN DT NN CC NNS WP VBD DT NN .\nThe incident happened one day after a similar package was sent to a man with the same name as former Defense Minister Rafael Pardo .\tDT NN VBD CD NN IN DT JJ NN VBD VBN TO DT NN IN DT JJ NN IN JJ NNP NNP NNP NNP .\nThe lawyer for a group of Pakistani men who say they were kidnapped and tortured by Greek and British agents after the July bomb attacks in London have filed suit against the alleged intelligence officers .\tDT NN IN DT NN IN JJ NNS WP VBP PRP VBD VBN CC VBN IN JJ CC JJ NNS IN DT NNP NN NNS IN NNP VBP VBN NN IN DT JJ NN NNS .\nThe lawyer , Frangiskos Ragoussis , representing at least 27 men who say they were taken from homes in Greece says the suit is against agents identified in a recent story published by an Athens newspaper .\tDT NN , NNP NNP , VBG IN JJS CD NNS WP VBP PRP VBD VBN IN NNS IN NNP VBZ DT NN VBZ IN NNS VBN IN DT JJ NN VBN IN DT NNP NN .\nThe governments of Greece , Britain and Pakistan have denied the allegations , but Greek lawmakers have called for an investigation .\tDT NNS IN NNP , NNP CC NNP VBP VBN DT NNS , CC JJ NNS VBP VBN IN DT NN .\nThe attacks on the London public transportation system killed at least 52 people .\tDT NNS IN DT NNP JJ NN NN VBN IN JJS CD NNS .\nMary J. Blige , Jamie Foxx , and Jennifer Hudson were among the winners at the 21st annual Soul Train Music Awards , held March 10 in Pasadena , California .\tNNP NNP NNP , NNP NNP , CC NNP NNP VBD IN DT NNS IN DT CD JJ NNP NNP NNP NNP , VBN NNP CD IN NNP , NNP .\nMary J. Blige took the Best Female Album award for The Breakthrough , while Jamie Foxx brought home Best Male Album honors for Unpredictable .\tNNP NNP NNP VBD DT JJS NN NNP NN IN DT NNP , IN NNP NNP VBD NN NNP NNP NNP NNS IN JJ .\nFormer American Idol castoff Jennifer Hudson continued her Cinderella story , winning the Entertainer Of The Year award for her supporting role in the movie Dreamgirls .\tJJ JJ NNP NN NNP NNP VBD PRP$ NNP NN , VBG DT NNP IN DT NN NN IN PRP$ JJ NN IN DT NN NNS .\nShe also received an Academy Award and an NAACP Image Award for her role .\tPRP RB VBD DT NNP NNP CC DT NNP NNP NNP IN PRP$ NN .\nA number of senior diplomats are in Washington Monday to mark the 10th anniversary of the Dayton Peace Accords , which ended the war in Bosnia-Herzegovina .\tDT NN IN JJ NNS VBP IN NNP NNP TO VB DT JJ NN IN DT NNP NNP NNP , WDT VBD DT NN IN NNP .\nThose attending Monday 's conference on the accords include the head of Bosnia 's joint presidency , Ivo Miro Jovic , and U.N. High Representative Paddy Ashdown .\tDT VBG NNP POS NN IN DT NNS VBP DT NN IN NNP POS JJ NN , NNP NNP NNP , CC NNP NNP NNP NNP NNP .\nThe 1995 agreement ended a brutal ethnic war that killed more than 2,00,000 people .\tDT CD NN VBD DT JJ JJ NN WDT VBD JJR IN CD NNS .\nThe accord split the former Yugoslav republic into a Serb Republic and a Muslim-Croat Federation - each with its own government and army .\tDT NN VBD DT JJ JJ NN IN DT JJ NNP CC DT NNP NNP IN DT IN PRP$ JJ NN CC NN .\nBosnian leaders , working with U.S. and European officials , are negotiating a new constitution aimed at simplifying the current arrangement .\tJJ NNS , VBG IN NNP CC JJ NNS , VBP VBG DT JJ NN VBN IN VBG DT JJ NN .\nAgreement on the peace accords was reached at a U.S. Air Force base in Dayton , Ohio on November 21 , 1995 .\tNN IN DT NN NNS VBD VBN IN DT NNP NNP NNP NN IN NNP , NNP IN NNP CD , CD .\nThe accords were signed several weeks later .\tDT NNS VBD VBN JJ NNS RB .\nSenegal 's President Abdoulaye Wade says the leaders of Chad and Sudan will sign peace accords next week at a summit in Dakar .\tNNP POS NNP NNP NNP VBZ DT NNS IN NNP CC NNP MD VB NN NNS JJ NN IN DT NN IN NNP .\nMr. Wade told reporters in Paris Friday that Chadian President Idriss Deby and Sudanese President Omar al-Bashir will agree to stop supporting rebel groups on each other 's territory .\tNNP NNP VBD NNS IN NNP NNP IN JJ NNP NNP NNP CC JJ NNP NNP NNP MD VB TO VB VBG JJ NNS IN DT NN POS NN .\nHe said the signing will take place March 12 , before the start of a summit of Muslim leaders .\tPRP VBD DT NN MD VB NN NNP CD , IN DT NN IN DT NN IN NNP NNS .\nChad has accused Sudan of backing the rebels who attacked Chad 's capital N'Djamena last month .\tNNP VBZ VBN NNP IN VBG DT NNS WP VBD NNP POS NN NNP JJ NN .\nChadian President Deby said earlier Friday that the fighting sparked by that attack killed 700 people .\tJJ NNP NNP VBD JJR NNP IN DT NN VBN IN DT NN VBD CD NNS .\nSudan , for its part , accuses Chad of aiding rebels in Sudan 's war-torn Darfur region .\tNNP , IN PRP$ NN , VBZ NNP IN VBG NNS IN NNP POS JJ NNP NN .\nMr. Deby and Mr. Bashir signed a peace agreement at the urging of Libya in 2006 but the agreement quickly broke down .\tNNP NNP CC NNP NNP VBD DT NN NN IN DT VBG IN NNP IN CD CC DT NN RB VBD RP .\nA rights group said Saturday it has received reports that Burma 's army is set to attack a refugee camp near the border with Thailand .\tDT NNS NN VBD NNP PRP VBZ VBN NNS IN NNP POS NN VBZ VBN TO VB DT NN NN IN DT NN IN NNP .\nChristian Solidarity Worldwide said more than 1,200 villagers at the Ler Per Her camp just inside Burma 's Karen State have fled across the border into Thailand to avoid possible fighting .\tNNP NNP NNP VBD JJR IN CD NNS IN DT NNP NNP PRP$ NN RB IN NNP POS NNP NNP VBP VBN IN DT NN IN NNP TO VB JJ NN .\nThe group said more than 1,000 Burmese government troops and the Democratic Karen Buddhist Army - a pro-government militia - are approaching the area and plan to attack the camp Sunday .\tDT NN VBD JJR IN CD JJ NN NNS CC DT JJ NNP NNP NNP IN DT NN NN : VBP VBG DT NN CC NN TO VB DT NN NNP .\nThe organization did not reveal the source of the reports .\tDT NN VBD RB VB DT NN IN DT NNS .\nCSW said it has visited the camp many times , including once earlier this year .\tNNP VBD PRP VBZ VBN DT NN JJ NNS , VBG RB RBR DT NN .\nCSW says it received evidence from the camp 's residents about the military government 's policies , which the group says include forced labor , rape , torture , destruction of villages and the use of human minesweepers .\tNNP VBZ PRP VBD NN IN DT NN POS NNS IN DT JJ NN POS NNS , WDT DT NN VBZ VBP VBN NN , NN , NN , NN IN NNS CC DT NN IN JJ NNS .\nThe death toll from South Asia 's monsoon floods has risen above 2000 , and torrential rains continue to pound several parts of the region .\tDT NN NN IN NNP NNP POS NN NNS VBZ VBN IN CD , CC JJ NNS VBP TO VB JJ NNS IN DT NN .\nFloods have affected an estimated 30 million people in India , Bangladesh , Nepal and Pakistan since the start of the monsoon season in June .\tNNS VBP VBN DT JJ CD CD NNS IN NNP , NNP , NNP CC NNP IN DT NN IN DT NN NN IN NNP .\nAt least 10 people were killed Monday in northern Pakistan when heavy rains caused landslides to cover their homes .\tIN JJS CD NNS VBD VBN NNP IN JJ NNP WRB JJ NNS VBD NNS TO VB PRP$ NNS .\nIn the Indian state of Bihar Sunday , a man died and at least four others were injured during a riot by several hundred flood victims upset by the lack of aid .\tIN DT JJ NN IN NNP NNP , DT NN VBD CC IN JJS CD NNS VBD VBN IN DT NN IN JJ CD NN NNS VBN IN DT NN IN NN .\nThe violence came as the state government announced it was scaling back flood relief efforts and ending airdrops of supplies .\tDT NN VBD IN DT NN NN VBD PRP VBD VBG RP NN NN NNS CC VBG NNS IN NNS .\nLast week , the United Nations warned of disease outbreaks in the region as rescue workers struggled to deliver food and water to millions of people displaced by floods .\tJJ NN , DT NNP NNPS VBD IN NN NNS IN DT NN IN NN NNS VBD TO VB NN CC NN TO NNS IN NNS VBN IN NNS .\nIraqi officials say four prisoners with links to al-Qaida have escaped from a Baghdad detention center .\tJJ NNS VBP CD NNS IN NNS TO NNP VBP VBN IN DT NNP NN NN .\nOfficials say the four broke out of a U.S.-controlled section of Karkh Prison , formerly called Camp Cropper , Wednesday night .\tNNS VBP DT CD VBD IN IN DT JJ NN IN NNP NNP , RB VBD NNP NNP , NNP NN .\nIt is not clear how they managed to escape .\tPRP VBZ RB JJ WRB PRP VBD TO VB .\nU.S. officials confirmed the escape , saying the military is working with Iraqi forces to investigate the incident and recapture the individuals involved .\tNNP NNS VBD DT NN , VBG DT NN VBZ VBG IN JJ NNS TO VB DT NN CC VB DT NNS VBN .\nIn July , the U.S. military handed over control of the Camp Cropper detention center to Iraqi authorities .\tIN NNP , DT NNP NN VBD IN NN IN DT NNP NNP NN NN TO JJ NNS .\nThe facility houses about 1,500 detainees , but about 200 , including those who escaped , remained in a U.S.-controlled section of the prison .\tDT NN NNS IN CD NNS , CC IN CD , VBG DT WP VBD , VBD IN DT JJ NN IN DT NN .\nThe U.S. military has suffered one of its single-worst troop losses in Iraq in a roadside bomb blast near the western city of Fallujah .\tDT NNP NN VBZ VBN CD IN PRP$ JJ NN NNS IN NNP IN DT NN NN NN IN DT JJ NN IN NNP .\nIn a statement Friday , the military said 10 Marines were killed and 11 wounded Thursday while they patrolled the area on foot .\tIN DT NN NNP , DT NN VBD CD NNS VBD VBN CC CD VBD NNP IN PRP VBD DT NN IN NN .\nThe device that exploded was built from several large artillery shells .\tDT NN WDT VBD VBD VBN IN JJ JJ NN NNS .\nU.S. troops have been conducting anti-insurgent operations to secure the area ahead of this month 's parliamentary election .\tNNP NNS VBP VBN VBG JJ NNS TO VB DT NN RB IN DT NN POS JJ NN .\nAnother Marine was killed in Fallujah earlier this week .\tDT NN VBD VBN IN NNP RBR DT NN .\nThe U.S. military also reported the deaths of four American soldiers .\tDT NNP NN RB VBD DT NNS IN CD JJ NNS .\nThree were killed in a road accident near Balad today , and another died Thursday following a rocket attack in Ramadi .\tCD VBD VBN IN DT NN NN IN NNP NN , CC DT VBD NNP VBG DT NN NN IN NNP .\nU.S. and Iraqi troops are conducting joint operations in Ramadi to disrupt al-Qaida-in-Iraq terrorists operating in the Euphrates River Valley .\tNNP CC JJ NNS VBP VBG JJ NNS IN NNP TO VB JJ NNS VBG IN DT NNP NNP NNP .\nLebanese authorities have arrested a senior employee of a Lebanese telecommunications agency on suspicion he is a spy for Israel .\tJJ NNS VBP VBN DT JJ NN IN DT JJ NN NN IN NN PRP VBZ DT NN IN NNP .\nThe arrest at the state 's largest telecommunications company , Ogero , is the fourth of its kind this year .\tDT NN IN DT NN POS JJS NN NN , NNP , VBZ DT NN IN PRP$ NN DT NN .\nLebanese investigators reportedly intercepted messages between the worker and Israeli contacts .\tJJ NNS RB VBD NNS IN DT NN CC JJ NNS .\nThe man works in the technical department of the international wing of the telecommunications company .\tDT NN VBZ IN DT JJ NN IN DT JJ NN IN DT NNS NN .\nThere was no immediate comment from Israel .\tEX VBD DT JJ NN IN NNP .\nHezbollah and other Lebanese factions have alleged that Israeli spies are entrenched throughout Lebanon 's telecommunications sector .\tNNP CC JJ JJ NNS VBP VBN IN JJ NNS VBP VBN IN NNP POS NN NN .\nHezbollah leader Hassan Nasrallah is expected to address the recent espionage findings in a speech Tuesday .\tNNP NN NNP NNP VBZ VBN TO VB DT JJ NN NNS IN DT NN NNP .\nMore than 50 Lebanese have been arrested since last year in a broad spying investigation linked to Israel .\tJJR IN CD NNS VBP VBN VBN IN JJ NN IN DT JJ JJ NN VBN TO NNP .\nThe U.S. trade deficit has widened to its highest level in more than a year , as exports fell more than imports .\tDT NNP NN NN VBZ VBN TO PRP$ JJS NN IN JJR IN DT NN , IN NNS VBD JJR IN NNS .\nA new report Thursday from the Commerce Department shows the deficit at $ 40.3 billion in April , a slight increase from the previous month .\tDT JJ NN NNP IN DT NNP NNP VBZ DT NN IN $ CD CD IN NNP , DT JJ NN IN DT JJ NN .\nDespite an overall fall in U.S. exports of goods and services , the report shows a slight rise in sales of industrial supplies and automobiles .\tIN DT JJ NN IN NNP NNS IN NNS CC NNS , DT NN VBZ DT JJ NN IN NNS IN JJ NNS CC NNS .\nA separate report shows the number of Americans filing first-time unemployment claims fell slightly last week - a sign of hope for the struggling U.S. jobs market .\tDT JJ NN VBZ DT NN IN NNS VBG JJ NN NNS VBD RB JJ NN IN DT NN IN NN IN DT VBG NNP NNS NN .\nThe Labor Department says the number of laid-off workers filing claims fell by 3,000 to a total of 4,56,000 .\tDT NNP NNP VBZ DT NN IN JJ NNS VBG NNS VBD IN CD TO DT NN IN CD .\nThe report says the number of people continuing to receive jobless benefits after their first week of aid fell by 2,55,000 , the largest decline in over a year .\tDT NN VBZ DT NN IN NNS VBG TO VB JJ NNS IN PRP$ JJ NN IN NN VBD IN CD , DT JJS NN IN IN DT NN .\nJustine Henin-Hardenne says she will not play for Belgium 's Fed Cup tennis team when it takes on Russia in the opening round of the women 's team event next year .\tNNP NNP VBZ PRP MD RB VB IN NNP POS NNP NNP NN NN WRB PRP VBZ IN NNP IN DT NN NN IN DT NNS POS NN NN JJ NN .\nThe world number five Henin-Hardenne said Tuesday that injuries and illness have compromised her 2005 season and she wants to avoid further problems in 2006 .\tDT NN NN CD NNP VBD NNP IN NNS CC NN VBP VBN PRP$ CD NN CC PRP VBZ TO VB JJ NNS IN CD .\nAfter winning the French Open in June , Henin-Hardenne has been troubled by a thigh injury for much of the season .\tIN VBG DT JJ NN IN NNP , NNP VBZ VBN VBN IN DT NN NN IN NN IN DT NN .\nThe Belgian star says she will concentrate on regaining the world number-one ranking .\tDT JJ NN VBZ PRP MD VB IN VBG DT NN JJ NN .\nThe announcement is a big blow to Belgium 's Fed Cup hopes because world number three Kim Clijsters announced that she would also skip the competition if Henin-Hardenne does not play .\tDT NN VBZ DT JJ NN TO NNP POS NNP NNP VBZ IN NN NN CD NNP NNP VBD IN PRP MD RB VB DT NN IN NNP VBZ RB VB .\nA leader of Taiwan 's largest opposition party is traveling to China Monday in a rare visit to the mainland just days after China passed a controversial anti-secession law .\tDT NN IN NNP POS JJS NN NN VBZ VBG TO NNP NNP IN DT JJ NN TO DT NN RB NNS IN NNP VBD DT JJ JJ NN .\nNationalist Party Vice Chairman Chiang Ping-kun will lead the party 's first official delegation in decades to the southern Chinese city of Ghangzhou to pay homage at the graves of party members who died in an uprising nearly a century ago .\tNNP NNP NNP NNP NNP NNP MD VB DT NN POS JJ JJ NN IN NNS TO DT JJ JJ NN IN NNP TO VB NN IN DT NNS IN NN NNS WP VBD IN DT NN RB DT NN RB .\nThe group will also visit the grave of Nationalist party leader Sun Yat Sen in Nangjing .\tDT NN MD RB VB DT NN IN JJ NN NN NNP NNP NNP IN NNP .\nThe Nationalist party is seen as closer to Beijing than Taiwan 's ruling Democratic Progressive party .\tDT NNP NN VBZ VBN IN JJR TO NNP IN NNP POS NN JJ NNP NN .\nReports say the trip is aimed at reducing tension over China 's new anti-secession law , which authorizes China use force on Taiwan if it declares independence .\tNNS VBP DT NN VBZ VBN IN VBG NN IN NNP POS JJ JJ NN , WDT VBZ NNP NN NN IN NNP IN PRP VBZ NN .\nView flash slideshow narrated by Sgt. Roche\tVB NN NN VBN IN NNP NNP\nUS Army Sergeant Joe Roche served in Baghdad for 15 months with the 16th Engineer Battalion of the 1st Armored Division .\tNNP NNP NNP NNP NNP VBD IN NNP IN CD NNS IN DT JJ NNP NNP IN DT CD NNP NNP .\nHis unit worked on helping rebuild Iraq 's infrastructure , including schools and sewage systems , while fighting insurgents and terrorists .\tPRP$ NN VBD IN VBG VB NNP POS NN , VBG NNS CC NN NNS , IN VBG NNS CC NNS .\nHis unit also helped train new Iraqi soldiers .\tPRP$ NN RB VBD VB JJ JJ NNS .\nThe following are pictures he took during his stay in Iraq .\tDT VBG VBP NNS PRP VBD IN PRP$ NN IN NNP .\nEvery two years , the Whitney Museum of American Art in New York City mounts an exhibition of new art made in the U.S.\tDT CD NNS , DT NNP NNP IN NNP NNP IN NNP NNP NNP VBZ DT NN IN JJ NN VBN IN DT NNP\nThe show aims to survey contemporary art 's newest trends and methods .\tDT NN VBZ TO VB JJ NN POS JJS NNS CC NNS .\nNot surprisingly , given its influence on young artists and art markets , the result is often controversial .\tRB RB , VBN PRP$ NN IN JJ NNS CC NN NNS , DT NN VBZ RB JJ .\nSome have taken to calling it the show that people love to hate .\tDT VBP VBN TO VBG PRP DT NN IN NNS VBP TO VB .\nThe Whitney 's 2008 Biennial , its 74th , continues that tradition .\tDT NNP POS CD NNP , PRP$ NN , VBZ IN NN .\nVOA 's Carolyn Weaver reports .\tNNP POS NNP NNP VBZ .\nChinese state media says Beijing has established a company to manufacture passenger jumbo jets .\tJJ NN NNS VBZ NNP VBZ VBN DT NN TO VB NN JJ NNS .\nThe Xinhua news agency says the Commercial Aircraft Corporation of China was established in Shanghai Sunday .\tDT NNP NN NN VBZ DT NNP NNP NNP IN NNP VBD VBN IN NNP NNP .\nXinhua said the company will be responsible for researching , developing , manufacturing and marketing large passenger aircraft .\tNNP VBD DT NN MD VB JJ IN VBG , VBG , VBG CC VBG JJ NN NN .\nThe news agency said the central government and China 's two largest aircraft manufacturing and servicing companies are among the major shareholders .\tDT NN NN VBD DT JJ NN CC NNP POS CD JJS NN NN CC NN NNS VBP IN DT JJ NNS .\nThe company was launched with capital of $ 2.7 billion .\tDT NN VBD VBN IN NN IN $ CD CD .\nUkraine 's parliament has opened an emergency session to debate the country 's disputed presidential runoff election .\tNNP POS NN VBZ VBN DT NN NN TO VB DT NN POS JJ JJ NN NN .\nLawmakers meeting Saturday do not have the power to overturn last Sunday 's vote .\tNNS VBG NNP VBP RB VB DT NN TO VB JJ NNP POS NN .\nBut their evaluation of the situation could influence the Supreme Court when it meets on Monday to consider reports by the opposition and international monitors of widespread election fraud .\tCC PRP$ NN IN DT NN MD VB DT NNP NNP WRB PRP VBZ IN NNP TO VB NNS IN DT NN CC JJ NNS IN JJ NN NN .\nAlso due to meet Saturday , is a multilateral committee tasked with resolving the political stalemate .\tRB JJ TO VB NNP , VBZ DT JJ NN VBN IN VBG DT JJ NN .\nIt comprises representatives of both candidates - opposition challenger Viktor Yushchenko , and Moscow-backed Prime Minister Viktor Yanukovych .\tPRP VBZ NNS IN DT NNS IN NN NN NNP NNP , CC JJ NNP NNP NNP NNP .\nLate Friday , Mr. Yushchenko called for fresh elections on December 12 as he addressed thousands of supporters who have been demonstrating in Kiev since Sunday .\tRB NNP , NNP NNP VBD IN JJ NNS IN NNP CD IN PRP VBD NNS IN NNS WP VBP VBN VBG IN NNP IN NNP .\nDisputed official results indicate the pro-Western politician narrowly lost the runoff .\tJJ JJ NNS VBP DT JJ NN RB VBD DT NN .\nIraqi police in the city of Samarra say an explosion has damaged an ancient Islamic monument .\tJJ NN IN DT NN IN NNP VBP DT NN VBZ VBN DT JJ JJ NN .\nPolice say insurgents caused an explosion Friday in the top section of the six-story Malwiya mosque tower , leaving a jagged hole and debris on the upper part of the structure .\tNNS VBP NNS VBD DT NN NNP IN DT JJ NN IN DT JJ NNP NN NN , VBG DT JJ NN CC NN IN DT JJ NN IN DT NN .\nThe tower is very important in Islamic architecture .\tDT NN VBZ RB JJ IN JJ NN .\nIt is one of only three spiral minarets in the world and was built of brick and clay during the Abbassid dynasty in the 9th century .\tPRP VBZ CD IN RB CD JJ NNS IN DT NN CC VBD VBN IN NN CC NN IN DT NNP NN IN DT JJ NN .\nIn other news , the police chief , Colonel Hatem Rashid Mohammad in Balad Ruz , northeast of Baghdad , was ambushed and killed along with another police officer .\tIN JJ NN , DT NN NN , NNP NNP NNP NNP IN NNP NNP , NN IN NNP , VBD VBN CC VBN IN IN DT NN NN .\nAnd , Sunni Muslim clerics issued a religious edict ( fatwa ) encouraging Iraqis to join the country 's police and army .\tCC , NNP NNP NNS VBD DT JJ NN LRB NN RRB VBG NNS TO VB DT NN POS NN CC NN .\nStronger Iraqi forces could help quell the Sunni-led insurgency .\tNNP JJ NNS MD VB VB DT JJ NN .\nEconomic ministers and senior leaders open a three-day conference in Ghana 's capital of Accra Sunday on the effectiveness of donor aid to developing countries .\tJJ NNS CC JJ NNS VBP DT JJ NN IN NNP POS NN IN NNP NNP IN DT NN IN NN NN TO VBG NNS .\nThe Accra High-Level Forum on Aid Effectiveness will gauge progress since a similar meeting in Paris in 2005 .\tDT NNP NNP NNP IN NNP NNP MD VB NN IN DT JJ NN IN NNP IN CD .\nThe conference was organized by the World Bank , the Organization for Economic Cooperation and Development and the government of Ghana .\tDT NN VBD VBN IN DT NNP NNP , DT NNP IN NNP NNP CC NNP CC DT NN IN NNP .\nIt will look at making aid contributions more transparent and at ways of allowing countries which receive aid to channel the money through their national budgets to better manage it .\tPRP MD VB IN VBG NN NNS RBR JJ CC IN NNS IN VBG NNS WDT VBP NN TO VB DT NN IN PRP$ JJ NNS TO RBR VB PRP .\nRepresentatives will also address the practice of donor nations providing aid based on economic requirements they expect the recipient nations to follow .\tNNS MD RB VB DT NN IN NN NNS VBG NN VBN IN JJ NNS PRP VBP DT JJ NNS TO VB .\nCritics say the conditions often reduce the effectiveness of the aid countries receive .\tNNS VBP DT NNS RB VBP DT NN IN DT NN NNS VBP .\nEmbattled federal emergency management chief Michael Brown has been relieved of his duties managing the massive hurricane relief effort along the U.S. Gulf Coast .\tVBN JJ NN NN NN NNP NNP VBZ VBN VBN IN PRP$ NNS VBG DT JJ NN NN NN IN DT NNP NNP NNP .\nHomeland Security Secretary Michael Chertoff Friday in Baton Rouge said Coast Guard Vice Admiral Thad Allen will take charge of federal operations in the region .\tNNP NNP NNP NNP NNP NNP IN NNP NNP VBD NNP NNP NNP NNP NNP NNP MD VB NN IN JJ NNS IN DT NN .\nAdmiral Allen has been overseeing the rescue and recovery efforts in the devastated city of New Orleans .\tNNP NNP VBZ VBN VBG DT NN CC NN NNS IN DT JJ NN IN NNP NNP .\nMr. Chertoff said Mr. Brown will return to Washington to oversee the Federal Emergency Management Agency 's operations nationwide .\tNNP NNP VBD NNP NNP MD VB TO NNP TO VB DT NNP NNP NNP NNP POS NNS JJ .\nA number of congressional leaders and Louisiana officials have fiercely criticized the federal government 's initial response to the disaster and have called on President Bush to fire Mr. Brown .\tDT NN IN JJ NNS CC NNP NNS VBP RB VBN DT JJ NN POS JJ NN TO DT NN CC VBP VBN IN NNP NNP TO VB NNP NNP .\nSeveral Democratic Senators said recalling Mr. Brown to oversee the emergency management agency in Washington is a bad decision .\tJJ JJ NNS VBD VBG NNP NNP TO VB DT NN NN NN IN NNP VBZ DT JJ NN .\nThey say his continued presence in the critical position endangers the success of recovery efforts .\tPRP VBP PRP$ JJ NN IN DT JJ NN VBZ DT NN IN NN NNS .\nPope Benedict has declared Sunday a special day of prayer for Middle East peace .\tNNP NNP VBZ VBN NNP DT JJ NN IN NN IN NNP NNP NN .\nHe also renewed an appeal for an immediate ceasefire between Israel and the Hezbollah guerrillas in Lebanon .\tPRP RB VBD DT NN IN DT JJ NN IN NNP CC DT NNP NNS IN NNP .\nBenedict issued his plea as he spoke to thousands of pilgrims at his summer retreat in the Italian Alps .\tNNP VBD PRP$ NN IN PRP VBD TO NNS IN NNS IN PRP$ NN NN IN DT NNP NNP .\nThe pontiff reiterated statements supporting Lebanon 's sovereignty and Israel 's right to live in peace .\tDT NN VBD NNS VBG NNP POS NN CC NNP POS NN TO VB IN NN .\nHe expressed a special closeness to what he called the ' defenseless civilian populations unjustly hit in a conflict in which they are only victims . '\tPRP VBD DT JJ NN TO WP PRP VBD DT `` JJ JJ NNS RB VBD IN DT NN IN WDT PRP VBP RB NNS . ``\nHe said those victims include those in northern Israel forced to live in shelters to avoid Hezbollah rocket attacks , and ' the multitudes of Lebanese who once again are seeing their country destroyed . '\tPRP VBD DT NNS VBP DT IN JJ NNP VBN TO VB IN NNS TO VB NNP NN NNS , CC `` DT NNS IN NNS WP RB RB VBP VBG PRP$ NN VBD . ``\nEvery few seconds , someone somewhere needs blood .\tDT JJ NNS , DT RB VBZ NN .\nIt could be someone who has suffered a traumatic injury , in an accident or a war , or someone who needs a transfusion to help survive an illness .\tPRP MD VB DT WP VBZ VBN DT JJ NN , IN DT NN CC DT NN , CC DT WP VBZ DT NN TO VB VB DT NN .\nVOA 's Carol Pearson explains .\tNNP POS NNP NNP VBZ .\nIranians have marked the 22nd anniversary of the U.S. downing of an Iranian passenger jet with a ceremony at the site where the plane crashed .\tNNS VBP VBN DT JJ NN IN DT NNP NN IN DT JJ NN NN IN DT NN IN DT NN WRB DT NN VBD .\nFamily members of the 290 people killed were among those who gathered in Persian Gulf waters Saturday , where they laid flowers in memory of Flight 655 victims .\tNN NNS IN DT CD NNS VBN VBD IN DT WP VBD IN NNP NNP NNS NNP , WRB PRP VBD NNS IN NN IN JJ CD NNS .\nA statement from President Mahmoud Ahmadinejad was read at the ceremony .\tDT NN IN NNP NNP NNP VBD VBN IN DT NN .\nHe called the downing a ' tragic human catastrophe ' that was ' not an understandable incident ' but a ' declaration of war against humanity . '\tPRP VBD DT VBG DT `` JJ JJ NN `` WDT VBD `` RB DT JJ NN `` CC DT `` NN IN NN IN NN . ``\nThe USS Vincennes shot down the passenger plane on July 3 , 1988 , shortly after the aircraft took off from the Iranian city of Bandar Abbas for Dubai in the United Arab Emirates .\tDT NNP NNP VBD IN DT NN NN IN NNP CD , CD , RB IN DT NN VBD RP IN DT JJ NN IN NNP NNP IN NNP IN DT NNP NNP NNPS .\nThe U.S. said it mistook the airliner for a hostile Iranian fighter jet .\tDT NNP VBD PRP VBD DT NN IN DT JJ JJ NN NN .\nThe U.S. paid Iran more than $ 100 million in compensation as part of a 1996 settlement .\tDT NNP VBD NNP JJR IN $ CD CD IN NN IN NN IN DT CD NN .\nThe U.S. military says violence in Iraq has killed three American soldiers near the southern port city of Basra .\tDT NNP NN VBZ NN IN NNP VBZ VBN CD JJ NNS IN DT JJ JJ NN IN NNP .\nA statement released Friday says the troops were killed during an attack on a coalition base .\tDT NN VBN NNP VBZ DT NNS VBD VBN IN DT NN IN DT NN NN .\nThe statement says the troops were killed by ' indirect fire ' late Thursday .\tDT NN VBZ DT NNS VBD VBN IN `` JJ NN `` JJ NNP .\nThe U.S. military often refers to mortar and rocket attacks as ' indirect fire ' .\tDT NNP NN RB VBZ TO NN CC NN NNS IN `` JJ NN `` .\nViolence in the region has dropped sharply since coalition and Iraqi forces moved to take control of Basra from Shi'ite militias last year .\tNN IN DT NN VBZ VBN RB IN NN CC JJ NNS VBD TO VB NN IN NNP IN NNP NNS JJ NN .\nOn Tuesday , the top U.S. military commander in southern Iraq Colonel Butch Kievenaar warned that some of the Shi'ite fighters who fled to Iran have started to return to the area .\tIN NNP , DT JJ NNP JJ NN IN JJ NNP NNP NNP NNP VBD IN DT IN DT NNP NNS WP VBD TO NNP VBP VBN TO VB TO DT NN .\nTeams that have qualified for the upcoming World Cup football finals next month in Germany continue to practice in friendly international games .\tNNS WDT VBP VBN IN DT JJ NNP NNP NN NNS JJ NN IN NNP VBP TO VB IN JJ JJ NNS .\nCroatia and visiting Iran played to a 02-Feb draw Sunday .\tNNP CC VBG NNP VBD TO DT JJ NN NNP .\nHost Ukraine scored a 4-0 win over Costa Rica .\tNNP NNP VBD DT JJ NN IN NNP NNP .\nUkraine is appearing in its first World Cup while Costa Rica will face host Germany in the World Cup opener on June 9 in Munich .\tNNP VBZ VBG IN PRP$ JJ NNP NNP IN NNP NNP MD VB NN NNP IN DT NNP NNP NN IN NNP CD IN NNP .\nPlaying Sunday in Hamburg , Estonia and Turkey played to a 01-Jan draw .\tVBG NNP IN NNP , NNP CC NNP VBD TO DT JJ NN .\nIn Madrid , Macedonia was a 02-Jan winner over Ecuador .\tIN NNP , NNP VBD DT JJ NN IN NNP .\nMali beat Morocco , 1-0 , in a game played in Paris .\tNNP VBD NNP , CD , IN DT NN VBN IN NNP .\nThe United States hosts Latvia in a game later Sunday as part of a three-match friendly warmup before the U.S. team heads to Germany .\tDT NNP NNPS VBZ NNP IN DT NN RB NNP IN NN IN DT JJ JJ NN IN DT NNP NN VBZ TO NNP .\nThe Sudanese government has arrested at least 14 military and security officials for alleged crimes in Darfur - the first such arrests in the conflict there .\tDT JJ NN VBZ VBN IN JJS CD JJ CC NN NNS IN JJ NNS IN NNP IN DT JJ JJ NNS IN DT NN RB .\nSudan 's Justice Minister , Ali Mohamed Osman Yassin , said Monday the detainees are accused of crimes that include rape and murder .\tNNP POS NNP NNP , NNP NNP NNP NNP , VBD NNP DT NNS VBP VBN IN NNS WDT VBP NN CC NN .\nThe announcement comes as the U.N. Security Council is expected to vote this week on a French proposal to send Darfur suspects to the International Criminal Court .\tDT NN VBZ IN DT NNP NNP NNP VBZ VBN TO VB DT NN IN DT JJ NN TO VB NNP VBZ TO DT NNP NNP NNP .\nSudan is opposed to the draft , saying its courts are competent to prosecute those guilty of crimes .\tNNP VBZ VBN TO DT NN , VBG PRP$ NNS VBP JJ TO VB DT JJ IN NNS .\nThe United Nations says the two year conflict in Darfur between black rebels and mostly government-backed Arab militias has killed tens of thousands of people and displaced nearly two million people .\tDT NNP NNP VBZ DT CD NN NN IN NNP IN JJ NNS CC RB JJ JJ NNS VBZ VBN NNS IN NNS IN NNS CC VBN RB CD CD NNS .\nThe United States calls the violence genocide .\tDT NNP NNPS VBZ DT NN NN .\nU.S. Secretary of State Condoleezza Rice says Israeli and Palestinian representatives are discussing peace initiatives behind closed doors .\tNNP NNP IN NNP NNP NNP VBZ JJ CC JJ NNS VBP VBG NN NNS IN JJ NNS .\nRice spoke to reporters aboard Air Force One Sunday as she accompanied President Bush home from a trip to the Middle East .\tNNP VBD TO NNS IN NNP NNP CD NNP IN PRP VBD NNP NNP NN IN DT NN TO DT NNP NNP .\nShe said divulging the contents of the negotiations would endanger their outcome .\tPRP VBD VBG DT NNS IN DT NNS MD VB PRP$ NN .\nThe U.S. secretary of state predicted that the talks will intensify in the coming months .\tDT NNP NN IN NN VBD IN DT NNS MD VB IN DT JJ NNS .\nShe said that during his trip , Mr. Bush had extensive discussions with all of the Israeli and Palestinian leaders .\tPRP VBD IN IN PRP$ NN , NNP NNP VBD JJ NNS IN DT IN DT JJ CC JJ NNS .\nShe reaffirmed Mr. Bush 's support for the vision of a Palestinian state living side-by-side with Israel .\tPRP VBD NNP NNP POS NN IN DT NN IN DT JJ NN VBG JJ IN NNP .\nFormer Peruvian President Alberto Fujimori has been arrested in Chile , just hours after his unexpected arrival there .\tJJ JJ NNP NNP NNP VBZ VBN VBN IN NNP , RB NNS IN PRP$ JJ NN RB .\nOfficials in Lima and Santiago say Mr. Fujimori was arrested at his hotel by Chilean police Monday .\tNNS IN NNP CC NNP VBP NNP NNP VBD VBN IN PRP$ NN IN JJ NN NNP .\nHe is wanted in Peru on charges of corruption and human rights abuses related to the death squad murders of 25 people .\tPRP VBZ VBN IN NNP IN NNS IN NN CC JJ NNS NNS VBN TO DT NN NN NNS IN CD NNS .\nMr. Fujimori , who was born in Peru to Japanese immigrants , fled to Japan in 2000 .\tNNP NNP , WP VBD VBN IN NNP TO JJ NNS , VBD TO NNP IN CD .\nTokyo has refused to extradite him because he holds Japanese nationality .\tNNP VBZ VBN TO VB PRP IN PRP VBZ JJ NN .\nIn a statement issued after his arrival in Chile , Mr. Fujimori said he would reside there temporarily while launching a campaign for the Peruvian presidency in the 2006 elections .\tIN DT NN VBN IN PRP$ NN IN NNP , NNP NNP VBD PRP MD VB RB RB IN VBG DT NN IN DT JJ NN IN DT CD NNS .\nThe government of Peru had requested that Chilean authorities arrest Mr. Fujimori .\tDT NN IN NNP VBD VBN IN JJ NNS VB NNP NNP .\nA suicide bombing near a busy shrine in southern Afghanistan has killed at least one policeman .\tDT NN VBG IN DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NN .\nA local police official said the attacker blew himself up next to police guarding a shrine in Kandahar province filled with people celebrating the traditional new year Friday in Arghandab district .\tDT JJ NN NN VBD DT NN VBD PRP RP JJ TO VB VBG DT NN IN NNP NN VBN IN NNS VBG DT JJ JJ NN NNP IN NNP NN .\nSeveral other people were wounded .\tJJ JJ NNS VBD VBN .\nAnother bombing reported near a shrine in the northern city of Mazar-i-Sharif injured four people .\tDT NN VBN IN DT NN IN DT JJ NN IN NNP VBD CD NNS .\nAnd NATO said a soldier was killed on Thursday in an explosion in the south .\tCC NNP VBD DT NN VBD VBN IN NNP IN DT NN IN DT NN .\nThe alliance did not release the soldier 's nationality or the exact location of the accident .\tDT NN VBD RB VB DT NN POS NN CC DT JJ NN IN DT NN .\nBut U.S. , NATO and Afghan forces are fighting daily battles against Taliban and other insurgents in southern and eastern Afghanistan .\tCC NNP , NNP CC JJ NNS VBP VBG JJ NNS IN NNP CC JJ NNS IN JJ CC JJ NNP .\nAfghan officials say four Taleban guerrillas were killed when the bomb they were planting on a road went off prematurely .\tJJ NNS VBP CD NNP NNS VBD VBN WRB DT NN PRP VBD VBG IN DT NN VBD RB RB .\nThe incident took place on Saturday night in restive Kandahar province in the south .\tDT NN VBD NN IN NNP NN IN JJ NNP NN IN DT NN .\nLocal officials say the insurgents ' bodies were blown to pieces .\tJJ NNS VBP DT NNS POS NNS VBD VBN TO NNS .\nTaleban fighters have used roadside bombs against U.S. and Afghan government troops , especially in the south and east of the country .\tNNP NNS VBP VBN NN NNS IN NNP CC JJ NN NNS , RB IN DT NN CC NN IN DT NN .\nNearly 60 U.S. soldiers and scores of Afghan troops have been killed in the Taleban insurgency this year , the bloodiest period since 2001 when U.S.-led troops ousted Taleban rulers .\tRB CD NNP NNS CC NNS IN JJ NNS VBP VBN VBN IN DT NNP NN DT NN , DT JJS NN IN CD WRB JJ NNS VBD NNP NNS .\nAround 2,000 Serbian nationalists marched through the streets of the ethnically-divided Kosovo town of Mitrovica Saturday , on the sixth day of protests against Kosovo 's independence .\tIN CD JJ NNS VBD IN DT NNS IN DT JJ NNP NN IN NNP NNP , IN DT JJ NN IN NNS IN NNP POS NN .\nThe city has been torn by protests since Kosovo declared independence last week .\tDT NN VBZ VBN VBN IN NNS IN NNP VBD NN JJ NN .\nMost Serbs consider the seceded territory a historic heart of Serbia .\tJJS NNS VBP DT JJ NN DT JJ NN IN NNP .\nMeanwhile , the European Union 's special representative in Kosovo has confirmed the evacuation of his personnel from Mitrovica .\tRB , DT NNP NNP POS JJ NN IN NNP VBZ VBN DT NN IN PRP$ NNS IN NNP .\nPeter Feith , the head of the EU 's peacekeeping mission in Kosovo , said Saturday that the pull-out was temporary .\tNNP NNP , DT NN IN DT NNP POS VBG NN IN NNP , VBD NNP IN DT NN VBD JJ .\nFriday , Serbian President Boris Tadic called for an end to violence after rioters opposed to Kosovo 's declaration of independence Thursday attacked the U.S. and other embassies in Belgrade .\tNNP , JJ NNP NNP NNP VBD IN DT NN TO NN IN NNS VBD TO NNP POS NN IN NN NNP VBD DT NNP CC JJ NNS IN NNP .\nThe demonstrators were angered by U.S. support for Kosovo 's independence declaration .\tDT NNS VBD VBN IN NNP NN IN NNP POS NN NN .\nSecretary of State Condoleezza Rice says the United States is doing everything possible to help countries around the world locate any of their citizens missing in the aftermath of Hurricane Katrina .\tNNP IN NNP NNP NNP VBZ DT NNP NNPS VBZ VBG DT JJ TO VB NNS IN DT NN VB DT IN PRP$ NNS VBG IN DT NN IN NNP NNP .\nIn a statement released Tuesday , Ms. Rice said Ambassador Joe Sullivan has established an operations center in Baton Rouge , Louisiana .\tIN DT NN VBN NNP , NNP NNP VBD NNP NNP NNP VBZ VBN DT NNS NN IN NNP NNP , NNP .\nShe said foreigners impacted by the hurricane should contact their consulates or embassies in Washington , or other facilities located throughout the country .\tPRP VBD NNS VBN IN DT NN MD VB PRP$ NNS CC NNS IN NNP , CC JJ NNS VBN IN DT NN .\nMs. Rice also said both the American and International Red Cross agencies have established websites to help people get reunited as quickly as possible .\tNNP NNP RB VBD DT DT NNP CC NNP NNP NNP NNS VBP VBN NNS TO VB NNS VB VBN RB RB IN JJ .\nThere were about 35 foreign consulates in New Orleans , mostly from Latin America and Europe , before floodwaters from Katrina devastated the entire U.S. city .\tEX VBD IN CD JJ NNS IN NNP NNP , RB IN NNP NNP CC NNP , IN NNS IN NNP VBD DT JJ NNP NN .\nAll of them have suspended operations or moved elsewhere .\tDT IN PRP VBP VBN NNS CC VBD RB .\nThe French consulate has set up a temporary office in the city of Lafayette .\tDT JJ NN VBZ VBN RP DT JJ NN IN DT NN IN NNP .\nPope Benedict has called on wealthy nations to set aside their ' narrow interests ' to work toward a trade deal that would help poorer countries .\tNNP NNP VBZ VBN IN JJ NNS TO VB RP PRP$ `` JJ NNS `` TO VB IN DT NN NN WDT MD VB JJR NNS .\nThe pope Thursday said he is confident that a sense of responsibility and solidarity with disadvantaged nations will prevail at upcoming world trade talks .\tDT NN NNP VBD PRP VBZ JJ IN DT NN IN NN CC NN IN JJ NNS MD VB IN JJ NN NN NNS .\nPope Benedict noted that rural areas and independent farmers suffer greatly because they do not have access to the global marketplace .\tNNP NNP VBD IN JJ NNS CC JJ NNS VBP RB IN PRP VBP RB VB NN TO DT JJ NN .\nThe pope made the comments to a delegation from the United Nations Food and Agriculture Organization .\tDT NN VBD DT NNS TO DT NN IN DT NNP NNPS NNP CC NNP NNP .\nThe World Trade Organization is set to meet in Hong Kong next month to discuss reaching a global trade deal .\tDT NNP NNP NNP VBZ VBN TO VB IN NNP NNP JJ NN TO VB VBG DT JJ NN NN .\nPast efforts have been stymied largely because of disputes over how much developed countries are willing to cut agricultural trade barriers .\tJJ NNS VBP VBN VBN RB IN IN NNS IN WRB JJ JJ NNS VBP JJ TO VB JJ NN NNS .\nChina says the death toll from an explosion in a northeastern coal mine has risen to 19 , with the confirmation of 18 more deaths .\tNNP VBZ DT NN NN IN DT NN IN DT JJ NN NN VBZ VBN TO CD , IN DT NN IN CD JJR NNS .\nThe official Xinhua news agency said Monday that 18 miners missing since Saturday have been found dead .\tDT JJ NNP NN NN VBD NNP IN CD NNS VBG IN NNP VBP VBN VBN JJ .\nXinhua says the explosion occurred Saturday evening .\tNNP VBZ DT NN VBD NNP NN .\nOne miner was found dead Sunday .\tCD NN VBD VBN JJ NNP .\nThe news agency says an initial investigation found that the operators of the mine illegally resumed production after their license had been revoked .\tDT NN NN VBZ DT JJ NN VBD IN DT NNS IN DT NN RB VBD NN IN PRP$ NN VBD VBN VBN .\nChina 's mines are among the most dangerous in the world , with safety standards often ignored as mine operators push production amid soaring demand for coal .\tNNP POS NNS VBP IN DT RBS JJ IN DT NN , IN NN NNS RB VBN IN NN NNS VBP NN IN VBG NN IN NN .\nA senior Central Intelligence Agency officer has resigned so he can speak openly about what he sees as the government 's failure to understand the threat from the al-Qaida terrorist network .\tDT JJ NNP NNP NNP NN VBZ VBN IN PRP MD VB RB IN WP PRP VBZ IN DT NN POS NN TO VB DT NN IN DT NNP JJ NN .\nMichael Scheuer , the former chief of the CIA 's Osama bin Laden unit , said he believes there has not been adequate national debate over the nature of the threat posed by bin Laden and the forces he leads and inspires .\tNNP NNP , DT JJ NN IN DT NNP POS NNP NNP NNP NN , VBD PRP VBZ EX VBZ RB VBN JJ JJ NN IN DT NN IN DT NN VBN IN NNP NNP CC DT NNS PRP VBZ CC VBZ .\nThe CIA allowed Mr. Scheuer to publish his book ' Imperial Hubris ' anonymously and to conduct media interviews under the name ' Mike . '\tDT NNP VBD NNP NNP TO VB PRP$ NN `` NNP NNP `` RB CC TO VB NNS NNS IN DT NN `` NNP . ``\nBut he became a critic of the U.S.-led war in Iraq , saying it has inflamed anti-American sentiment among Muslims , and his name eventually became known .\tCC PRP VBD DT NN IN DT JJ NN IN NNP , VBG PRP VBZ VBN JJ NN IN NNPS , CC PRP$ NN RB VBD VBN .\nHe is also critical of how CIA resources are being used to go after al-Qaida .\tPRP VBZ RB JJ IN WRB NNP NNS VBP VBG VBN TO VB IN NNP .\nThe CIA has declined to comment .\tDT NNP VBZ VBN TO VB .\nIran 's parliament has ordered the resumption of nuclear processing activities .\tNNP POS NN VBZ VBN DT NN IN JJ NN NNS .\nBut Iranian officials say implementation of the order will be delayed to give one last chance to talks with the European Union .\tCC JJ NNS VBP NN IN DT NN MD VB VBN TO VB CD JJ NN TO NNS IN DT NNP NNP .\nEU foreign ministers and Iran are expected to meet within the coming days .\tNNP JJ NNS CC NNP VBP VBN TO VB IN DT JJ NNS .\nIran had previously agreed to suspend its nuclear processing program to avoid sanctions from the United Nations .\tNNP VBD RB VBN TO VB PRP$ JJ NN NN TO VB NNS IN DT NNP NNPS .\nIran says it wants to use the processed nuclear material to produce electricity .\tNNP VBZ PRP VBZ TO VB DT JJ JJ NN TO VB NN .\nBut the EU and the United States worry that Iran could be developing nuclear weapons .\tCC DT NNP CC DT NNP NNPS VBP IN NNP MD VB VBG JJ NNS .\nFrance , Britain , and Germany want Tehran to abandon its enrichment activities in exchange for economic aid and backing for Iran 's efforts to join mainstream international organizations .\tNNP , NNP , CC NNP VBP NNP TO VB PRP$ NN NNS IN NN IN JJ NN CC NN IN NNP POS NNS TO VB JJ JJ NNS .\nPalestinians in Jerusalem marched through the streets of Bethlehem Monday celebrating the Eve of Christmas , the day before the traditional birth of Jesus Christ .\tNNS IN NNP VBD IN DT NNS IN NNP NNP VBG DT NNP IN NNP , DT NN IN DT JJ NN IN NNP NNP .\nRobert Berger is in Bethlehem and filed this on-scene report .\tNNP NNP VBZ IN NNP CC VBD DT JJ NN .\nPalestinian boy and girl scouts are marched through Manger Square in Bethlehem , kicking off Christmas Eve celebrations .\tJJ NN CC NN NNS VBP VBN IN NNP NNP IN NNP , VBG RP NNP NNP NNS .\nThey marched past the Church of the Nativity , the traditional birthplace of Jesus , playing drums and bagpipes .\tPRP VBD IN DT NN IN DT NNP , DT JJ NN IN NNP , VBG NNS CC NNS .\nIt was a festive atmosphere .\tPRP VBD DT JJ NN .\nManger Square is decked out with Christmas Trees that light and colorful balloons .\tNNP NNP VBZ VBN RP IN NNP NNS IN VBP CC JJ NNS .\nOn a cool , sunny day a big crowd is looking on , including some pilgrims , but mostly local Palestinians .\tIN DT JJ , JJ NN DT JJ NN VBZ VBG IN , VBG DT NNS , CC RB JJ NNS .\nChristmas Eve celebrations will culminate with midnight mass at the Church of the Nativity .\tNNP NNP NNS MD VB IN NN NN IN DT NN IN DT NN .\nChina is defending its decision to collect information on foreign journalists covering the 2008 Beijing Olympics , saying the information will be used to help the media , not to hinder reporting .\tNNP VBZ VBG PRP$ NN TO VB NN IN JJ NNS VBG DT CD NNP NNPS , VBG DT NN MD VB VBN TO VB DT NNS , RB TO VB NN .\nA media official for Beijing 's Olympic organizing committee , Li Zhanjun , told reporters Tuesday that the database was not created to monitor or threaten journalists .\tDT NNS NN IN NNP POS NNP NN NN , NNP NNP , VBD NNS NNP IN DT NN VBD RB VBN TO VB CC VB NNS .\nLi also said it was not a blacklist and stressed that coverage at the Games would be open and transparent .\tNNP RB VBD PRP VBD RB DT NN CC VBD IN NN IN DT NNPS MD VB JJ CC JJ .\nMeanwhile , Chinese officials denied state-run media reports Monday that the government had created a database of some 30,000 accredited Olympic Games reporters .\tRB , JJ NNS VBD JJ NNS NNS NNP IN DT NN VBD VBN DT NN IN DT CD VBN NNP NNPS NNS .\nA report on Monday quoted China 's top media official , Liu Binjie the minister of the General Administration of Press and Publication , as saying the list was made to help clamp down on ' fake reporters ' and unlicensed publications .\tDT NN IN NNP VBD NNP POS JJ NNS NN , NNP NNP DT NN IN DT NNP NNP IN NNP CC NNP , IN VBG DT NN VBD VBN TO VB VB RP IN `` JJ NNS `` CC JJ NNS .\nBrazil 's foreign minister has said he has seen indications the United States wants to block a sale of Brazilian-made military aircraft to Venezuela .\tNNP POS JJ NN VBZ VBN PRP VBZ VBN NNS DT NNP NNPS VBZ TO VB DT NN IN JJ JJ NN TO NNP .\nForeign Minister Celso Amorim told reporters Wednesday he intends to discuss the matter with U.S. officials and try to convince them not to prevent the sale .\tNNP NNP NNP NNP VBD NNS NNP PRP VBZ TO VB DT NN IN NNP NNS CC VB TO VB PRP RB TO VB DT NN .\nHe says he believes Venezuela is a threat to no one and that disagreements over internal policies should not restrict transfers of technology .\tPRP VBZ PRP VBZ NNP VBZ DT NN TO DT NN CC IN NNS IN JJ NNS MD RB VB NNS IN NN .\nMr. Amorim 's comments came after Venezuelan President Hugo Chavez Tuesday alleged Washington wanted to veto his deal with Brazilian aircraft-maker Embraer because the planes use U.S. technology .\tNNP NNP POS NNS VBD IN JJ NNP NNP NNP NNP VBD NNP VBD TO VB PRP$ NN IN JJ NN NN IN DT NNS VBP NNP NN .\nReuters news service quotes a U.S. State Department spokesman who declined to comment on the veto allegation , but said the U.S. had let Brazil know it had concerns about Venezuela 's arms acquisitions .\tNNP NN NN VBZ DT NNP NNP NNP NN WP VBD TO VB IN DT NN NN , CC VBD DT NNP VBD VBN NNP VB PRP VBD NNS IN NNP POS NNS NNS .\nThe U.S. airline industry is ramping up cost-cutting efforts to deal with skyrocketing fuel prices .\tDT NNP NN NN VBZ VBG RP JJ NNS TO VB IN VBG NN NNS .\nNearly all the major U.S. carriers have announced major job cuts this year .\tRB PDT DT JJ NNP NNS VBP VBN JJ NN NNS DT NN .\nBut airline representatives say cutting jobs is not enough .\tCC NN NNS VBP VBG NNS VBZ RB RB .\nThey 're asking lawmakers to do more to reduce fuel costs that now threaten the US airline industry .\tPRP VBP VBG NNS TO VB JJR TO VB NN NNS WDT RB VBP DT NNP NN NN .\nVOA 's Mil Arcega has more .\tNNP POS NNP NNP VBZ RBR .\nChinese state-run media say a third of China 's vast land mass has been hurt by acid rain caused by the emissions of factories and power plants .\tJJ JJ NNS VBP DT NN IN NNP POS JJ NN NN VBZ VBN VBN IN NN NN VBN IN DT NNS IN NNS CC NN NNS .\nThe official Xinhua news agency cites a parliamentary pollution report released Saturday , which says emissions of sulphur dioxide , the chemical that causes acid rain , are two times higher than safe levels .\tDT JJ NNP NN NN VBZ DT JJ NN NN VBN NNP , WDT VBZ NNS IN NN NN , DT NN WDT VBZ JJ NN , VBP CD NNS JJR IN JJ NNS .\nSheng Huaren , the vice chairman of the parliamentary standing committee , says China 's factories discharged some 25 million tons of sulphur dioxide last year , up 27 percent from 2000 .\tNNP NNP , DT NN NN IN DT JJ NN NN , VBZ NNP POS NNS VBD DT CD CD NNS IN NN NN JJ NN , IN CD NN IN CD .\nHe says the resulting acid rain is threatening China 's soil and food safety .\tPRP VBZ DT VBG NN NN VBZ VBG NNP POS NN CC NN NN .\nChina is struggling to balance its booming industrial growth with environmental protection .\tNNP VBZ VBG TO VB PRP$ JJ JJ NN IN JJ NN .\nA series of chemical spills has cut off drinking water to millions of people over the past couple years , and air pollution is a constant problem in many cities .\tDT NN IN NN NNS VBZ VBN RP NN NN TO NNS IN NNS IN DT JJ NN NNS , CC NN NN VBZ DT JJ NN IN JJ NNS .\nKidnappers of four Western peace activists in Iraq have threatened to kill them unless all Iraqi prisoners are released from U.S. and Iraqi prisons .\tNNS IN CD JJ NN NNS IN NNP VBP VBN TO VB PRP IN DT JJ NNS VBP VBN IN NNP CC JJ NNS .\nThe kidnappers issued the threat in a videotape broadcast Saturday by the Arab television station al-Jazeera .\tDT NNS VBD DT NN IN DT NN NN NNP IN DT JJ NN NN NNP .\nThe videotape , dated January 21 , apparently shows the two Canadians , one Briton and one American standing against a wall .\tDT NN , VBN NNP CD , RB VBZ DT CD NNS , CD NN CC CD NN VBG IN DT NN .\nThe four disappeared on November 26 .\tDT CD VBD IN NNP CD .\nAl-Jazeera said the kidnappers issued a statement with the tape saying it was the ' last chance ' for U.S. and Iraqi authorities to save the hostages .\tNNP VBD DT NNS VBD DT NN IN DT NN VBG PRP VBD DT `` JJ NN `` IN NNP CC JJ NNS TO VB DT NNS .\nThe latest development comes a day after al-Jazeera broadcast a video of two Germans kidnapped last Tuesday .\tDT JJS NN VBZ DT NN IN NNP VBD DT NN IN CD NNS VBN JJ NNP .\nIn Iraq Saturday , authorities say a policeman was killed and another wounded in a roadside bomb attack in the western city of Fallujah .\tIN NNP NNP , NNS VBP DT NN VBD VBN CC DT VBN IN DT NN NN NN IN DT JJ NN IN NNP .\nA senior NATO official says U.S.-led coalition forces plan to increase their use of the US air base in Kyrgyzstan , now that neighboring Uzbekistan has ordered American forces off a base there .\tDT JJ NNP NN VBZ JJ NN NNS VBP TO VB PRP$ NN IN DT NNP NN NN IN NNP , RB IN VBG NNP VBZ VBN JJ NNS IN DT NN RB .\nNATO 's special representative for the Caucasus and Central Asia , Robert Simmons , made the announcement on Monday during his visit to the Kyrgyz capital , Bishkek .\tNNP POS JJ NN IN DT NNP CC NNP NNP , NNP NNP , VBD DT NN IN NNP IN PRP$ NN TO DT JJ NN , NNP .\nBoth Kyrgyzstan and Uzbekistan allowed the United States to set up air bases in 2001 to help anti-terror operations in nearby Afghanistan .\tDT NNP CC NNP VBD DT NNP NNPS TO VB RP NN NNS IN CD TO VB JJ NNS IN JJ NNP .\nBut two months ago , the Uzbek government asked Washington to leave the Karshi-Khanabad base .\tCC CD NNS RB , DT JJ NN VBD NNP TO VB DT JJ NN .\nThe request came just days after Washington criticized the Uzbek government for a violent military crackdown on an opposition rally in eastern Uzbekistan .\tDT NN VBD RB NNS IN NNP VBD DT JJ NN IN DT JJ JJ NN IN DT NN NN IN JJ NNP .\nKyrgyz authorities , however , have said U.S. forces can use the Manas air base near Bishkek for as long as required .\tJJ NNS , RB , VBP VBN NNP NNS MD VB DT NNP NN NN IN NNP IN RB JJ IN VBN .\nU.S. President George Bush says the nation 's entire economy is at risk , and Congress needs to approve a $ 700 billion financial rescue plan .\tNNP NNP NNP NNP VBZ DT NN POS JJ NN VBZ IN NN , CC NNP VBZ TO VB DT $ CD CD JJ NN NN .\nIn a nationally televised address Wednesday night , Mr. Bush said his administration is taking decisive action and is working with Congress to address the financial crisis .\tIN DT RB VBN NN NNP NN , NNP NNP VBD PRP$ NN VBZ VBG JJ NN CC VBZ VBG IN NNP TO VB DT JJ NN .\nMr. Bush also said action is needed to prevent a long , and painful recession .\tNNP NNP RB VBD NN VBZ VBN TO VB DT JJ , CC JJ NN .\nHe acknowledged that the expensive bailout package is a ' tough vote ' for many members of Congress , but said failure to act would cause more severe problems later .\tPRP VBD IN DT JJ NN NN VBZ DT `` JJ NN `` IN JJ NNS IN NNP , CC VBD NN TO VB MD VB RBR JJ NNS RB .\nMr. Bush also said he has invited Republican presidential nominee John McCain and Democratic nominee Barack Obama to a meeting with Congressional leaders Thursday in Washington to discuss the issue .\tNNP NNP RB VBD PRP VBZ VBN JJ JJ NN NNP NNP CC JJ NN NNP NNP TO DT NN IN JJ NNS NNP IN NNP TO VB DT NN .\nPakistani police have arrested two suspected Islamic militants in connection with last week 's deadly suicide attack on a Shi'ite mosque in Karachi that killed five people , including two attackers .\tJJ NNS VBP VBN CD JJ JJ NNS IN NN IN JJ NN POS JJ NN NN IN DT NNP NN IN NNP WDT VBD CD NNS , VBG CD NNS .\nKarachi 's senior police official Fayyaz Khan says authorities captured the pair during a pre-dawn raid on a hide-out in the city 's eastern district .\tNNP POS JJ NN NN NNP NNP VBZ NNS VBD DT NN IN DT JJ NN IN DT NN IN DT NN POS JJ NN .\nHe says police also recovered explosives , two grenades and a pistol during the raid .\tPRP VBZ NNS RB VBD NNS , CD NNS CC DT NN IN DT NN .\nThe men belong to an outlawed militant group , Lashkar-e-Jhangvi , which has links with Osama bin Laden 's al-Qaida terror network .\tDT NNS VBP TO DT JJ JJ NN , NNP , WDT VBZ NNS IN NNP NNP NNP POS NNP NN NN .\nThe May 30 mosque attack sparked riots in Karachi , where an angry mob torched a crowded U.S. fast-food outlet , killing six employees .\tDT NNP CD NN NN VBD NNS IN NNP , WRB DT JJ NN VBD DT JJ NNP NN NN , VBG CD NNS .\nThe rioters also attacked a hospital and two gas stations , and bombed buses and cars .\tDT NNS RB VBD DT NN CC CD NN NNS , CC VBD NNS CC NNS .\nIndonesia 's attorney general says three Islamic militants have until the end of this month to appeal their death sentences in the 2002 Bali bombings that killed 202 people .\tNNP POS NN NN VBZ CD NNP NNS VBP IN DT NN IN DT NN TO VB PRP$ NN NNS IN DT CD NNP NNS WDT VBD CD NNS .\nAttorney General Abdul Rahman Saleh says it is fair to give the bombers until the end of December .\tNNP NNP NNP NNP NNP VBZ PRP VBZ JJ TO VB DT NNS IN DT NN IN NNP .\nBut , he said if they do not file an appeal , the execution process will move forward .\tCC , PRP VBD IN PRP VBP RB VB DT NN , DT NN NN MD VB RB .\nLawyers for the three men have been saying for months that they will file for a case review , but have yet to do so .\tNNS IN DT CD NNS VBP VBN VBG IN NNS IN PRP MD VB IN DT NN NN , CC VBP RB TO VB RB .\nIf they do file , Indonesian law requires that they produce fresh evidence .\tIN PRP VBP NN , JJ NN VBZ IN PRP VBP JJ NN .\nThe al-Qaida-linked extremist network Jemaah Islamiyah has been blamed for the 2002 Bali bombings and other attacks in Indonesia .\tDT JJ NN NN NNP NNP VBZ VBN VBN IN DT CD NNP NNS CC JJ NNS IN NNP .\nInsurgents have shot down a U.S. helicopter in Iraq , killing the two soldiers on board .\tNNS VBP VBN RP DT NNP NN IN NNP , VBG DT CD NNS IN NN .\nThe U.S. military says the helicopter crashed late Thursday near Baqubah , north of Baghdad .\tDT NNP NN VBZ DT NN VBD JJ NNP IN NNP , NN IN NNP .\nA second helicopter was damaged in the attack , but landed safely at a coalition base .\tDT JJ NN VBD VBN IN DT NN , CC VBD RB IN DT NN NN .\nRecently , the U.S. military said some insurgents have been using increasingly sophisticated tactics .\tRB , DT NNP NN VBD DT NNS VBP VBN VBG RB JJ NNS .\nThis has led to intensified anti-insurgent operations in western Iraq and , beginning next week , in Baghdad .\tDT VBZ VBN TO JJ JJ NNS IN JJ NNP CC , VBG JJ NN , IN NNP .\nA U.S.-led offensive is in its third day in the Euphrates River city of Haditha , on the road to the Syrian border .\tDT JJ NN VBZ IN PRP$ JJ NN IN DT NNP NNP NN IN NNP , IN DT NN TO DT JJ NN .\nNext week , some 40,000 Iraqi forces will cordon off Baghdad , setting up hundreds of checkpoints and conducting raids in a bid to crackdown on insurgents who have killed more than 600 people in the last month .\tJJ NN , DT CD JJ NNS MD VB RP NNP , VBG RP NNS IN NNS CC VBG NNS IN DT NN TO NN IN NNS WP VBP VBN JJR IN CD NNS IN DT JJ NN .\nAustralia 's first woman prime minister was sworn in again Tuesday , less than three months after she deposed her predecessor .\tNNP POS JJ NN JJ NN VBD VBN IN RB NNP , JJR IN CD NNS IN PRP VBD PRP$ NN .\nJulia Gillard took office this time at the head of a minority government after she lost her majority in polls August 21 and cobbled together a shaky coalition last week , with two independent lawmakers .\tNNP NNP VBD NN DT NN IN DT NN IN DT NN NN IN PRP VBD PRP$ NN IN NNS NNP CD CC VBD RB DT JJ NN JJ NN , IN CD JJ NNS .\nHer center-left Labor Party controls 76 seats in the 150-member House or Representatives , meaning a single defection , resignation or death could bring down her government .\tPRP$ JJ NNP NNP VBZ CD NNS IN DT JJ NNP CC NNP , VBG DT JJ NN , NN CC NN MD VB RP PRP$ NN .\nMs. Gillard 's new Cabinet also took the oath of office Tuesday .\tNNP NNP POS JJ NNP RB VBD DT NN IN NN NNP .\nOn Saturday , she named former leader Kevin Rudd as her foreign minister , less than three months after she ousted him in a surprise party coup .\tIN NNP , PRP VBD JJ NN NNP NNP IN PRP$ JJ NN , JJR IN CD NNS IN PRP VBD PRP IN DT NN NN NN .\nThe head of the U.S. central bank says the current housing crisis in the United States demands a ' vigorous response . '\tDT NN IN DT NNP JJ NN VBZ DT JJ NN NN IN DT NNP NNPS VBZ DT `` JJ NN . ``\nIn a speech to a banking group in Florida , Federal Reserve Chairman Ben Bernanke said foreclosures and late payments on mortgages are likely to continue rising ' for a while longer . '\tIN DT NN TO DT NN NN IN NNP , NNP NNP NNP NNP NNP VBD NNS CC JJ NNS IN NNS VBP JJ TO VB VBG `` IN DT NN RB . ``\nHe said the current banking industry-backed plan that has seen some lenders lowering interest rates or working out payment plans is a ' step in the right direction . '\tPRP VBD DT JJ NN JJ NN WDT VBZ VBN DT NNS VBG NN NNS CC VBG RP NN NNS VBZ DT `` NN IN DT JJ NN . ``\nBernanke says it is in lenders ' interest to do more to avoid the huge cost of foreclosures .\tNNP VBZ PRP VBZ IN NNS POS NN TO VB JJR TO VB DT JJ NN IN NNS .\nHe says it is good for communities and the nation 's economy to offer more help to more homeowners .\tPRP VBZ PRP VBZ JJ IN NNS CC DT NN POS NN TO VB JJR NN TO JJR NNS .\nRecent declines in home values have made it difficult for troubled homeowners to solve their problems by refinancing or selling their properties .\tJJ NNS IN NN NNS VBP VBN PRP JJ IN JJ NNS TO VB PRP$ NNS IN VBG CC VBG PRP$ NNS .\nBritish Prime Minister Tony Blair launches a new bid to advance the Middle East peace process later Tuesday , with visits to Israel and the Palestinian territories .\tJJ NNP NNP NNP NNP VBZ DT JJ NN TO VB DT NNP NNP NN NN RB NNP , IN NNS TO NNP CC DT JJ NNS .\nMr. Blair , who has made reviving the Middle East peace process a priority , is expected to meet with his Israeli counterpart , Ariel Sharon , before heading to the West Bank for talks with Palestinian leaders .\tNNP NNP , WP VBZ VBN VBG DT NNP NNP NN NN DT NN , VBZ VBN TO VB IN PRP$ JJ NN , NNP NNP , IN VBG TO DT NNP NNP IN NNS IN JJ NNS .\nInternational diplomacy aimed at bringing Israel and the Palestinians together for peace talks have intensified since the death of Yasser Arafat last month .\tJJ NN VBN IN VBG NNP CC DT NNS RB IN NN NNS VBP VBN IN DT NN IN NNP NNP JJ NN .\nEarlier Tuesday , the British leader paid a surprise visit to Iraq , meeting with interim Prime Minister Iyad Allawi in Baghdad and visiting British troops in the southern city of Basra .\tRBR NNP , DT JJ NN VBD DT NN NN TO NNP , NN IN JJ NNP NNP NNP NNP IN NNP CC VBG JJ NNS IN DT JJ NN IN NNP .\nIt was Mr. Blair 's first visit to Baghdad .\tPRP VBD NNP NNP POS JJ NN TO NNP .\nHe has twice previously visited British troops stationed around Basra .\tPRP VBZ RB RB VBN JJ NNS VBN IN NNP .\nThe head of the Arab League says discussions with Lebanese political rivals on ending the country 's political crisis have not produced an agreement .\tDT NN IN DT NNP NNP VBZ NNS IN JJ JJ NNS IN VBG DT NN POS JJ NN VBP RB VBN DT NN .\nAmr Moussa warned that rival political leaders are not talking to each other and he urged them not to increase tensions .\tNNP NNP VBD IN JJ JJ NNS VBP RB VBG TO DT NN CC PRP VBD PRP RB TO VB NNS .\nMoussa had been meeting in Beirut with Lebanese Prime Minister Fuad Siniora and the pro-Syrian opposition to try to bridge the differences between the two sides .\tNNP VBD VBN VBG IN NNP IN JJ NNP NNP NNP NNP CC DT JJ NN TO VB TO VB DT NNS IN DT CD NNS .\nMoussa said on Saturday that he plans to resume mediation efforts in the new year .\tNNP VBD IN NNP IN PRP VBZ TO VB NN NNS IN DT JJ NN .\nIn November , the Shi'ite militant group Hezbollah and its pro-Syrian allies left Lebanon 's cabinet , demanding more power in the government .\tIN NNP , DT NNP JJ NN NNP CC PRP$ JJ NNS VBD NNP POS NN , VBG JJR NN IN DT NN .\nThe groups have since organized massive demonstrations in Beirut against the government .\tDT NNS VBP IN VBN JJ NNS IN NNP IN DT NN .\nPrime Minister Siniora has the support of Western nations and Saudi Arabia .\tNNP NNP NNP VBZ DT NN IN JJ NNS CC NNP NNP .\nHe so far has rejected demands to step down .\tPRP RB RB VBZ VBN NNS TO VB RB .\nU.N. Secretary General Kofi Annan has praised donor nations for pledging $ 4.5 billion for rebuilding Sudan , but says promises alone are not enough .\tNNP NNP NNP NNP NNP VBZ VBN NN NNS IN VBG $ CD CD IN VBG NNP , CC VBZ NNS RB VBP RB RB .\nIn an opinion piece published Wednesday in The New York Times , Mr. Annan again urged the donors to immediately convert their pledges to cash .\tIN DT NN NN VBN NNP IN DT NNP NNP NNP , NNP NNP RB VBD DT NNS TO RB VB PRP$ NNS TO NN .\nHe also called for more protection forces in Sudan 's war-torn western Darfur region to prevent ' yet more death and suffering . '\tPRP RB VBD IN JJR NN NNS IN NNP POS JJ JJ NNP NN TO VB `` RB JJR NN CC NN . ``\nDonor nations meeting in Oslo this week pledged $ 4.5 billion to help rebuild southern Sudan after 21 years of civil war .\tNNP NNS NN IN NNP DT NN VBD $ CD CD TO VB VB JJ NNP IN CD NNS IN JJ NN .\nU.S. Deputy Secretary of State Robert Zoellick said Tuesday that the U.S. pledge of nearly $ 2 billion is contingent upon Khartoum putting an end to atrocities committed in Darfur .\tNNP NNP NNP IN NNP NNP NNP VBD NNP IN DT NNP NN IN RB $ CD CD VBZ JJ IN NNP VBG DT NN TO NNS VBN IN NNP .\nHeritage Media Corp. , New York , said it offered to buy the shares of POP Radio Corp. it does n't already own in a stock swap .\tNNP NNP NNP , NNP NNP , VBD PRP VBD TO VB DT NNS IN NNP NNP NNP PRP VBZ RB RB VB IN DT NN NN .\nHeritage , which owns 51 % of POP 's 3.6 million shares outstanding , said it will exchange one share of a new preferred stock for each POP common share it does n't already own .\tNNP , WDT VBZ CD NN IN NNP POS CD CD NNS JJ , VBD PRP MD VB CD NN IN DT JJ VBN NN IN DT NNP JJ NN PRP VBZ RB RB VB .\nDepending upon how many warrants and options are exercised prior to completion of the transaction , Heritage would issue between 1.8 million and 2.35 million preferred shares , a Heritage spokesman estimated .\tVBG IN WRB JJ NNS CC NNS VBP VBN RB TO NN IN DT NN , NNP MD VB IN CD CD CC CD CD JJ NNS , DT NNP NN VBN .\nIn national over-the-counter trading yesterday , POP plunged $ 4 to $ 14.75 .\tIN JJ JJ NN NN , NNP VBD $ CD TO $ CD .\nThe preferred stock , which would have a dividend rate of $ 1.76 a year , would be convertible into Heritage common at a rate of four common shares for each preferred .\tDT JJ NN , WDT MD VB DT NN NN IN $ CD DT NN , MD VB JJ IN NNP JJ IN DT NN IN CD JJ NNS IN DT JJ .\nNew York-based POP Radio provides , through a national , in-store network , a customized music , information and advertising service which simulates live radio .\tNNP JJ NNP NNP VBZ , IN DT JJ , JJ NN , DT VBN NN , NN CC NN NN WDT VBZ JJ NN .\nHeritage owns and operates television and radio stations and in-store advertising and promotion programs .\tNNP VBZ CC VBZ NN CC NN NNS CC JJ NN CC NN NNS .\nThe economy of Sint Maarten centers around tourism with nearly four-fifths of the labor force engaged in this sector .\tDT NN IN NNP NNP NNS IN NN IN RB NNS IN DT NN NN VBN IN DT NN .\nOver one million visitors come to the island each year - 1.3 million in 2008 - with most arriving through the Princess Juliana International Airport .\tIN CD CD NNS VBN TO DT NN DT NN IN CD CD IN CD : IN JJS VBG IN DT NNP NNP NNP NNP .\nCruise ships and yachts also call on Sint Maarten 's numerous ports and harbors .\tNNP NNS CC NNS RB VBP IN NNP NNP POS JJ NNS CC NNS .\nNo significant agriculture and limited local fishing means that almost all food must be imported .\tDT JJ NN CC JJ JJ NN VBZ IN RB DT NN MD VB VBN .\nEnergy resources and manufactured goods are also imported .\tNNP NNS CC VBN NNS VBP RB VBN .\nSint Maarten had the highest per capita income among the five islands that formerly comprised the Netherlands Antilles .\tNNP NNP VBD DT JJS IN NN NN IN DT CD NNS WDT RB VBD DT NNP NNPS .\nThe Bahamas is one of the wealthiest Caribbean countries with an economy heavily dependent on tourism and offshore banking .\tDT NNPS VBZ CD IN DT JJS JJ NNS IN DT NN RB JJ IN NN CC JJ NN .\nTourism together with tourism-driven construction and manufacturing accounts for approximately 60 % of GDP and directly or indirectly employs half of the archipelago 's labor force .\tNN RB IN JJ NN CC NN NNS IN RB CD NN IN NN CC RB CC RB VBZ NN IN DT NN POS NN NN .\nPrior to 2006 , a steady growth in tourism receipts and a boom in construction of new hotels , resorts , and residences led to solid GDP growth but since then tourism receipts have begun to drop off .\tRB TO CD , DT JJ NN IN NN NNS CC DT NN IN NN IN JJ NNS , NNS , CC VBZ VBN TO JJ NN NN CC IN RB NN NNS VBP VBN TO VB RP .\nThe global recession in 2009 took a sizeable toll on the Bahamas , resulting in a contraction in GDP and a widening budget deficit .\tDT JJ NN IN CD VBD DT JJ NN IN DT NNPS , VBG IN DT NN IN NN CC DT NN NN NN .\nThe decline continued in 2010 as tourism from the US and sector investment lagged .\tDT NN VBD IN CD IN NN IN DT NNP CC NN NN VBN .\nFinancial services constitute the second-most important sector of the Bahamian economy and , when combined with business services , account for about 36 % of GDP .\tNNP NNS VBP DT JJ JJ NN IN DT JJ NN CC , WRB VBN IN NN NNS , NN IN RB CD NN IN NN .\nHowever , the financial sector currently is smaller than it has been in the past because of the enactment of new and stricter financial regulations in 2000 that caused many international businesses to relocate elsewhere .\tRB , DT JJ NN RB VBZ JJR IN PRP VBZ VBN IN DT NN IN IN DT NN IN JJ CC JJ JJ NNS IN CD WDT VBD JJ JJ NNS TO VB RB .\nManufacturing and agriculture combined contribute approximately a tenth of GDP and show little growth , despite government incentives aimed at those sectors .\tNNP CC NN VBN VBP RB DT NN IN NN CC VB JJ NN , IN NN NNS VBN IN DT NNS .\nOverall growth prospects in the short run rest heavily on the fortunes of the tourism sector .\tJJ NN NNS IN DT JJ NN VBP RB IN DT NNS IN DT NN NN .\nFirst discovered by the Norwegians in the 12th century , the islands served as an international whaling base during the 17th and 18th centuries .\tRB VBN IN DT NNS IN DT JJ NN , DT NNS VBD IN DT JJ NN NN IN DT JJ CC JJ NNS .\nNorway 's sovereignty was recognized in 1920 ; five years later it officially took over the territory .\tNNP POS NN VBD VBN IN CD ; CD NNS RB PRP RB VBD RP DT NN .\nEstablished in 1891 , the British protectorate of Nyasaland became the independent nation of Malawi in 1964 .\tVBN IN CD , DT JJ NN IN NNP VBD DT JJ NN IN NNP IN CD .\nAfter three decades of one-party rule under President Hastings Kamuzu BANDA the country held multiparty elections in 1994 , under a provisional constitution that came into full effect the following year .\tIN CD NNS IN JJ NN IN NNP NNP NNP NNP DT NN VBD JJ NNS IN CD , IN DT JJ NN WDT VBD IN JJ NN DT JJ NN .\nCurrent President Bingu wa MUTHARIKA , elected in May 2004 after a failed attempt by the previous president to amend the constitution to permit another term , struggled to assert his authority against his predecessor and subsequently started his own party , the Democratic Progressive Party ( DPP ) in 2005 .\tNNP NNP NNP NNP NNP , VBN IN NNP CD IN DT VBN NN IN DT JJ NN TO VB DT NN TO VB DT NN , VBD TO VB PRP$ NN IN PRP$ NN CC RB VBD PRP$ JJ NN , DT JJ NNP NNP LRB NNP RRB IN CD .\nAs president , MUTHARIKA has overseen some economic improvement .\tIN NN , NNP VBZ VBN DT JJ NN .\nPopulation growth , increasing pressure on agricultural lands , corruption , and the spread of HIV / AIDS pose major problems for Malawi .\tNNP NN , VBG NN IN JJ NNS , NN , CC DT NN IN NNP CC NNP VBP JJ NNS IN NNP .\nMUTHARIKA was reelected to a second term in May 2009 .\tNNP VBD VBN TO DT JJ NN IN NNP CD .\nNamed after Captain COOK , who sighted them in 1770 , the islands became a British protectorate in 1888 .\tVBN IN NNP NNP , WP VBD PRP IN CD , DT NNS VBD DT JJ NN IN CD .\nBy 1900 , administrative control was transferred to New Zealand ; in 1965 , residents chose self-government in free association with New Zealand .\tIN CD , JJ NN VBD VBN TO NNP NNP ; IN CD , NNS VBD NN IN JJ NN IN NNP NNP .\nThe emigration of skilled workers to New Zealand and government deficits are continuing problems .\tDT NN IN JJ NNS TO NNP NNP CC NN NNS VBP VBG NNS .\nTHE DOLPHINS and Whales waged a fierce war with each other .\tDT NNS CC NNS VBD DT JJ NN IN DT NN .\nWhen the battle was at its height , a Sprat lifted its head out of the waves and said that he would reconcile their differences if they would accept him as an umpire .\tWRB DT NN VBD IN PRP$ NN , DT NN VBD PRP$ NN IN IN DT NNS CC VBD IN PRP MD VB PRP$ NNS IN PRP MD VB PRP IN DT NN .\nOne of the Dolphins replied , ' We would far rather be destroyed in our battle with each other than admit any interference from you in our affairs . '\tCD IN DT NNS VBD , `` PRP MD RB RB VB VBN IN PRP$ NN IN DT NN IN VB DT NN IN PRP IN PRP$ NNS . ``\nOne hot summer 's day a Fox was strolling through an orchard till he came to a bunch of Grapes just ripening on a vine which had been trained over a lofty branch .\tCD JJ NN POS NN DT NN VBD VBG IN DT NN IN PRP VBD TO DT NN IN NNS RB VBG IN DT NN WDT VBD VBN VBN IN DT JJ NN .\n' Just the thing to quench my thirst , ' quoth he .\t`` RB DT NN TO VB PRP$ NN , `` VBD PRP .\nDrawing back a few paces , he took a run and a jump , and just missed the bunch .\tVBG RB DT JJ NNS , PRP VBD DT NN CC DT NN , CC RB VBD DT NN .\nTurning round again with a One , Two , Three , he jumped up , but with no greater success .\tVBG RP RB IN DT CD , CD , CD , PRP VBD RP , CC IN DT JJR NN .\nAgain and again he tried after the tempting morsel , but at last had to give it up , and walked away with his nose in the air , saying : ' I am sure they are sour . '\tRB CC RB PRP VBD IN DT JJ NN , CC IN JJ VBD TO VB PRP RP , CC VBD RP IN PRP$ NN IN DT NN , VBG : `` PRP VBP JJ PRP VBP JJ . ``\nIt is easy to despise what you can not get .\tPRP VBZ JJ TO VB WP PRP MD RB VB .\nThe NBA season is so long the players seldom get time to spend at home with their butlers and chauffeurs .\tDT NNP NN VBZ RB RB DT NNS RB VBP NN TO VB IN NN IN PRP$ NNS CC NNS .\nA man walked into a Circle-K , put a $ 20 bill on the counter and asked for change .\tDT NN VBD IN DT NN , VBD DT $ CD NN IN DT NN CC VBD IN NN .\nWhen the clerk opened the cash drawer , the man pulled out a gun and asked for all the cash in the register , which the clerk promptly provided .\tWRB DT NN VBD DT NN NN , DT NN VBD RP DT NN CC VBD IN PDT DT NN IN DT NN , WDT DT NN RB VBD .\nThe man took the cash from the clerk and fled , leaving the $ 20 bill on the counter .\tDT NN VBD DT NN IN DT NN CC VBD , VBG DT $ CD NN IN DT NN .\nThe total amount of cash he got from the drawer ?\tDT JJ NN IN NN PRP VBD IN DT NN .\nFifteen dollars .\tCD NNS .\nIf someone points a gun at you and gives you money , was a crime committed ?\tIN DT VBZ DT NN IN PRP CC VBZ PRP NN , VBD DT NN VBN .\nJohn decided life would be much easier if he had a clone .\tNNP VBD NN MD VB RB JJR IN PRP VBD DT NN .\nSo he had one made and sent him to work in his place while he stayed home and relaxed .\tIN PRP VBD CD VBN CC VBN PRP TO VB IN PRP$ NN IN PRP VBD NN CC VBD .\nSoon this backfired when the clone came home and said he 'd been fired for making sexual comments to the women in the office .\tRB DT VBN WRB DT NN VBD NN CC VBD PRP VBD VBN VBN IN VBG JJ NNS TO DT NNS IN DT NN .\nJohn decided , he had to get rid of his clone before things got any worse .\tNNP VBD , PRP VBD TO VB JJ IN PRP$ NN IN NNS VBD DT JJR .\nJohn took his clone to the top of a tall building and pushed him off .\tNNP VBD PRP$ NN TO DT NN IN DT JJ NN CC VBD PRP RP .\nUnfortunately , someone saw John and he was arrested and convicted for making an obscene clone fall .\tRB , DT VBD NNP CC PRP VBD VBN CC VBN IN VBG DT JJ NN VB .\nDuring a visit to a military medical clinic , I was sent to the lab to have blood drawn .\tIN DT NN TO DT JJ JJ NN , PRP VBD VBN TO DT NN TO VB NN VBN .\nThe technician there was friendly and mentioned that his mood improved every day because he was due to leave the service in two months .\tDT NN EX VBD JJ CC VBD IN PRP$ NN VBD DT NN IN PRP VBD JJ TO VB DT NN IN CD NNS .\nAs he applied the tourniquet on my arm , he told me that taking the blood would n't hurt much .\tIN PRP VBD DT NN IN PRP$ NN , PRP VBD PRP IN VBG DT NN MD RB VB RB .\nThen , noticing my Air Force T-shirt , he asked me what my husband did .\tRB , VBG PRP$ NNP NNP NNP , PRP VBD PRP WP PRP$ NN VBD .\nWhen I replied that he was a recruiter , the technician smiled slyly and said , ' This might hurt a little more than I thought . '\tWRB PRP VBD IN PRP VBD DT NN , DT NN VBD RB CC VBD , `` DT MD VB DT RB JJR IN PRP VBD . ``\nA Missouri farmer passed away and left 17 mules to his three sons .\tDT NNP NN VBD RB CC VBD CD NNS TO PRP$ CD NNS .\nThe instructions left in the will said that the oldest boy was to get one-half , the second oldest one-third , and the youngest one-ninth .\tDT NNS VBD IN DT NN VBD IN DT JJS NN VBD TO VB NN , DT JJ JJS NN , CC DT JJS NN .\nThe three sons , recognizing the difficulty of dividing 17 mules into these fractions , began to argue .\tDT CD NNS , VBG DT NN IN VBG CD NNS IN DT NNS , VBD TO VB .\nTheir uncle heard about the argument , hitched up his mule and drove out to settle the matter .\tPRP$ NN VBD IN DT NN , VBD RP PRP$ NN CC VBD RP TO VB DT NN .\nHe added his mule to the 17 , making 18 .\tPRP VBD PRP$ NN TO DT CD , VBG CD .\nThe oldest therefore got one-half , or nine , the second oldest got one-third , or six , and the youngest son got one-ninth , or two .\tDT JJS RB VBD NN , CC CD , DT JJ NN VBD NN , CC CD , CC DT JJS NN VBD JJ , CC CD .\nAdding up 9 , 6 and 2 equals 17 .\tVBG IN CD , CD CC CD NNS CD .\nThe uncle , having settled the argument , hitched up his mule and drove home .\tDT NN , VBG VBN DT NN , VBD RP PRP$ NN CC VBD NN .\nThousands of fisherman from Spain , Portugal and Italy have gone on strike to join other European protests against soaring fuel prices .\tNNS IN NN IN NNP , NNP CC NNP VBP VBN IN NN TO VB JJ JJ NNS IN VBG NN NNS .\nSpanish fisherman say almost the entire Spanish fleet , the largest in Europe , remained in port on Friday .\tJJ NN VBP RB DT JJ JJ NN , DT JJS IN NNP , VBD IN NN IN NNP .\nTrawlers and larger commercial boats also remained docked at ports across Portugal .\tNNS CC JJR JJ NNS RB VBD VBN IN NNS IN NNP .\nAnd in Italy , about 12,000 fisherman joined the strike .\tCC IN NNP , IN CD NN VBD DT NN .\nFrench fisherman have already been on strike for two weeks , at times blocking oil terminals and disrupting shipping traffic .\tJJ NN VBP RB VBN IN NN IN CD NNS , IN NNS VBG NN NNS CC VBG NN NN .\nIn Madrid Friday , fishermen gathered outside the Environment , Agriculture and Fishing Ministry , where they handed out more than 20 tons of free fish to try to win public support .\tIN NNP NNP , NNS VBD IN DT NNP , NNP CC NNP NNP , WRB PRP VBD RP JJR IN CD NNS IN JJ NN TO VB TO VB JJ NN .\nThe fisherman say rapidly rising fuel costs are threatening their livelihoods .\tDT NN VBP RB VBG NN NNS VBP VBG PRP$ NNS .\nSpanish Economy Minister Pedro Solbes told reporters Friday the government is looking into ways to help the fishermen but can not cut fuel taxes .\tJJ NNP NNP NNP NNP VBD NNS NNP DT NN VBZ VBG IN NNS TO VB DT NNS CC MD RB VB NN NNS .\nA top U.S. aid official in Iraq has defended the pace of reconstruction there and detailed several projects tapped to receive a share of $ 4.3 billion in reconstruction funds .\tDT JJ NNP NN NN IN NNP VBZ VBN DT NN IN NN EX CC JJ JJ NNS VBN TO VB DT NN IN $ CD CD IN NN NNS .\nU.S. Agency for International Development administrator ( USAID ) Andrew Natsios said those funds have been earmarked for repairing electricity grids , constructing water treatment plants and power stations , and building hundreds of schools , firehouses , clinics and police stations .\tNNP NNP IN NNP NNP NN LRB NNP RRB NNP NNP VBD DT NNS VBP VBN VBN IN VBG NN NNS , VBG NN NN NNS CC NN NNS , CC VBG NNS IN NNS , NNS , NNS CC NN NNS .\nMr. Natsios said $ 86 million has been allocated to Iraq 's electoral commission and several non-government organizations preparing for the January elections .\tNNP NNP VBD $ CD CD VBZ VBN VBN TO NNP POS JJ NN CC JJ JJ NNS VBG IN DT NNP NNS .\nMr. Natsios acknowledged that the ongoing insurgency has slowed rebuilding efforts , but said he is optimistic about Iraq 's future .\tNNP NNP VBD IN DT JJ NN VBZ VBN NN NNS , CC VBD PRP VBZ JJ IN NNP POS NN .\nTurkish troops have killed two more Kurdish rebels in an overnight clash in the Tunceli region of eastern Turkey .\tJJ NNS VBP VBN CD JJR JJ NNS IN DT JJ NN IN DT NNP NN IN JJ NNP .\nThe latest clash occurred Friday in an area where government troops have been conducting military operations against the rebels in the Kurdistan Worker 's Party , or PKK .\tDT JJS NN VBD NNP IN DT NN WRB NN NNS VBP VBN VBG JJ NNS IN DT NNS IN DT NNP NNP POS NNP , CC NNP .\nThe Turkish military said three Kurdish militants were killed in the same area on Thursday .\tDT JJ NN VBD CD NNP NNS VBD VBN IN DT JJ NN IN NNP .\nAlso Thursday , Turkish authorities said suspected militants killed at least four forestry workers and wounded four others .\tRB NNP , JJ NNS VBD JJ NNS VBN IN JJS CD NN NNS CC VBD CD NNS .\nThe attack occurred in Bingol province in southeastern Turkey .\tDT NN VBD IN NNP NN IN JJ NNP .\nTurkey has sent more troops and tanks to the Tunceli region amid speculation about a possible Turkish incursion against Kurdish rebels in northern Iraq .\tNNP VBZ VBN JJR NNS CC NNS TO DT NNP NN IN NN IN DT JJ JJ NN IN JJ NNS IN JJ NNP .\nThe PKK has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 .\tDT NNP VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD .\nThe United States , the European Union and Turkey classify the PKK as a terrorist group .\tDT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN .\nSaudi Arabia has taken a firm stance with Syria , telling its president to begin fully removing his troops from Lebanon in accordance with a United Nations resolution , or Saudi-Syrian relations will suffer .\tNNP NNP VBZ VBN DT JJ NN IN NNP , VBG PRP$ NN TO VB RB VBG PRP$ NNS IN NNP IN NN IN DT NNP NNP NN , CC JJ NNS MD VB .\nA Saudi official said Crown Prince Abdullah delivered the warning Thursday during a meeting in Riyadh with Syrian President Bashar al-Assad .\tDT NNP NN VBD NNP NNP NNP VBD DT NN NNP IN DT NN IN NNP IN JJ NNP NNP NNP .\nAt the United Nations , Secretary-General Kofi Annan said he will be sending his special envoy , Terje Roed-Larsen , to Damascus and Beirut to discuss removing Syria 's 14,000 troops in accordance with U.N. Resolution 1559 .\tIN DT NNP NNP , NNP NNP NNP VBD PRP MD VB VBG PRP$ JJ NN , NNP NNP , TO NNP CC NNP TO VB VBG NNP POS CD NNS IN NN IN NNP NNP CD .\nMr. Annan said he hopes to be able to report progress on the Syrian withdrawal to the Security Council in April .\tNNP NNP VBD PRP VBZ TO VB JJ TO VB NN IN DT JJ NN TO DT NNP NNP IN NNP .\nIn Beirut , pro-Syrian politicians ignored opposition demands for a full Syrian withdrawal as a pre-condition for joining the new government .\tIN NNP , JJ NNS VBN NN NNS IN DT JJ JJ NN IN DT NN IN VBG DT JJ NN .\nInstead they have called for dialogue through the formation of a national unity government .\tIN PRP VBP VBN IN NN IN DT NN IN DT JJ NN NN .\nPakistan 's prime minister says he will push forward the ongoing peace process with India when he meets his Indian counterpart , Manmohan Singh , in New Delhi next month .\tNNP POS JJ NN VBZ PRP MD VB RB DT JJ NN NN IN NNP WRB PRP VBZ PRP$ JJ NN , NNP NNP , IN NNP NNP JJ NN .\nShaukat Aziz travels to India and two other South Asian nations after the Muslim festival of Eid al-Fitr in the third week of November .\tNNP NNP VBZ TO NNP CC CD JJ JJ JJ NNS IN DT NNP NN IN NNP NNP IN DT JJ NN IN NNP .\nIn New Delhi , he is also scheduled to meet with Congress party leader , Sonia Gandhi Mr. Aziz told reporters Sunday that Pakistan desires to resolve all issues peacefully with every country , including India .\tIN NNP NNP , PRP VBZ RB VBN TO VB IN NNP NN NN , NNP NNP NNP NNP VBD NNS NNP IN NNP VBZ TO VB DT NNS RB IN DT NN , VBG NNP .\nPakistan and India , who have fought three wars , have been engaged in formal peace talks since January .\tNNP CC NNP , WP VBP VBN CD NNS , VBP VBN VBN IN JJ NN NNS IN NNP .\nMr. Aziz also said President Pervez Musharraf 's comments on Kashmir last week were meant to stir a debate within Pakistan , not as a proposal for India .\tNNP NNP RB VBD NNP NNP NNP POS NNS IN NNP JJ NN VBD VBN TO VB DT NN IN NNP , RB IN DT NN IN NNP .\nSome of this information provided by AP and Reuters .\tDT IN DT NN VBN IN NNP CC NNP .\nA handgun once owned by Elvis Presley was stolen from a museum in the music titan 's home town of Memphis , Tennessee .\tDT NN RB VBN IN NNP NNP VBD VBN IN DT NN IN DT NN NN POS NN NN IN NNP , NNP .\nAuthorities said the black , 9 mm Smith & Wesson pistol was stolen from a display case in the Elvis After Dark museum , across the street from Presley 's Graceland mansion .\tNNS VBD DT JJ , CD NN NNP NNP NNP NN VBD VBN IN DT NN NN IN DT NNP IN NNP NN , IN DT NN IN NNP POS NNP NN .\nA video camera caught a man removing the pistol from the display case around midnight .\tDT NN NN VBD DT NN VBG DT NN IN DT NN NN IN NN .\nThe theft came to light on August 17 , when a visitor noticed an unfastened glass panel on the case .\tDT NN VBD TO NN IN NNP CD , WRB DT NN VBD DT JJ NN NN IN DT NN .\nOfficials from Graceland , which owns the museum , subsequently viewed the video tape .\tNNS IN NNP , WDT VBZ DT NN , RB VBD DT NN NN .\nPresley died at Graceland on August 16 , 1977 , and is buried in a small garden beside the house .\tNNP VBD IN NNP IN NNP CD , CD , CC VBZ VBN IN DT JJ NN IN DT NN .\nThousands of visitors from around the world have journeyed to Memphis to observe the 30th anniversary of his death .\tNNS IN NNS IN IN DT NN VBP VBN TO NNP TO VB DT JJ NN IN PRP$ NN .\nRussian-born ice dancer Sergey Magerovskiy has become a United States citizen and is now eligible to compete with partner Tiffany Stiegler to represent the United States at the Turin Winter Olympics in February .\tJJ NN NN NNP NNP VBZ VBN DT NNP NNPS NN CC VBZ RB JJ TO VB IN NN NNP NNP TO VB DT NNP NNPS IN DT NNP NNP NNPS IN NNP .\nUSA Figure Skating says Magerovskiy was sworn-in during a ceremony in Detroit on Wednesday .\tNNP NNP NNP VBZ NNP VBD JJ IN DT NN IN NNP IN NNP .\nIn 2002 , he married American Rebecca Palmer , his former partner , and applied for naturalization under U.S. law after three years of marriage .\tIN CD , PRP VBD JJ NNP NNP , PRP$ JJ NN , CC VBD IN NN IN NNP NN IN CD NNS IN NN .\nThe Olympics is the only major global figure skating competition where both partners must be from the same nation .\tDT NNPS VBZ DT RB JJ JJ NN VBG NN WRB DT NNS MD VB IN DT JJ NN .\nThe move comes one week after a special bill was passed by the U.S. Congress regarding U.S. citizenship for aliens of extraordinary ability , including that of U.S. ice dancing champion Tanith Belbin from Canada .\tDT NN VBZ CD NN IN DT JJ NN VBD VBN IN DT NNP NNP VBG NNP NN IN NNS IN JJ NN , VBG IN IN NNP NN NN NN NNP NNP IN NNP .\nAfghanistan 's Taleban regime , which was driven from power by U.S.-led forces , has launched a clandestine radio station that is being heard in that country 's southern provinces .\tNNP POS NNP NN , WDT VBD VBN IN NN IN JJ NNS , VBZ VBN DT JJ NN NN WDT VBZ VBG VBN IN DT NN POS JJ NNS .\nThe pirate radio station , called Shariat Shagh or Voice of Shariat , operates from a mobile transmitter and broadcasts anti-U.S. and anti-government propaganda and Islamic hymns .\tDT NN NN NN , VBD NNP NNP CC NNP IN NNP , VBZ IN DT JJ NN CC NNS JJ CC JJ NN CC JJ NNS .\nIt can be heard in regions of the country which were once the strongholds of the fundamentalist movement .\tPRP MD VB VBN IN NNS IN DT NN WDT VBD RB DT NNS IN DT NN NN .\nThe Voice of Shariat comes as a bloody insurgency still rages in parts of Afghanistan , particularly in the south .\tDT NNP IN NNP VBZ IN DT JJ NN RB VBZ IN NNS IN NNP , RB IN DT NN .\nA Taleban spokesman said the radio station will tell listeners about the Taleban 's thoughts and objectives .\tDT NNP NN VBD DT NN NN MD VB NNS IN DT NNP POS NNS CC NNS .\nU.S.-led forces toppled the Taleban government after it refused to hand over al-Qaida leader Osama bin Laden , architect of the September 11 , 2001 , attacks against the U.S.\tJJ NNS VBD DT NNP NN IN PRP VBD TO VB RP NNP NN NNP NNP NNP , NN IN DT NNP CD , CD , NNS IN DT NNP\nA flurry of economic reports on Monday paint a mixed picture of the U.S. economy .\tDT NN IN JJ NNS IN NNP VBP DT JJ NN IN DT NNP NN .\nThe Commerce Department says sales of newly-built homes dropped 9.2 percent in January .\tDT NNP NNP VBZ NNS IN JJ NNS VBD CD NN IN NNP .\nHome sales have been central to the U.S. economic expansion over the past year , boosted by low mortgage rates that allowed home buyers to take out larger loans .\tNN NNS VBP VBN JJ TO DT NNP JJ NN IN DT JJ NN , VBN IN JJ NN NNS WDT VBD NN NNS TO VB RP JJR NNS .\nA separate report on manufacturing in the Chicago area showed factory work expanding at an accelerated rate in February .\tDT JJ NN IN NN IN DT NNP NN VBD NN NN VBG IN DT JJ NN IN NNP .\nEconomists track the key area for clues about the nation-wide health of the troubled factory sector .\tNNS VBP DT JJ NN IN NNS IN DT JJ NN IN DT JJ NN NN .\nStill another government report showed U.S. consumer spending did not grow in January , while a measure of inflation rose .\tRB DT NN NN VBD NNP NN NN VBD RB VB IN NNP , IN DT NN IN NN VBD .\nConsumer spending offers indications of the overall health of the U.S. economy .\tNN NN VBZ NNS IN DT JJ NN IN DT NNP NN .\nThe United Nations says the Haitian government has initialed an agreement to receive $ 41 million in aid to prepare for elections later this year .\tDT NNP NNP VBZ DT JJ NN VBZ VBN DT NN TO VB $ CD CD IN NN TO VB IN NNS RBR DT NN .\nA U.N. statement issued Tuesday said the funds will come from Canada , the European Union and the United States .\tDT NNP NN VBN NNP VBD DT NNS MD VB IN NNP , DT NNP NNP CC DT NNP NNPS .\nHaiti itself pledged three million dollars .\tNNP PRP VBD CD CD NNS .\nU.N. Special Representative Juan Gabriel Valdes said the aid package showed that there was strong international support for what he called ' the establishment of a stable atmosphere for elections and for the return of constitutional order in Haiti . '\tNNP JJ NNP NNP NNP NNP VBD DT NN NN VBD IN EX VBD JJ JJ NN IN WP PRP VBD `` DT NN IN DT JJ NN IN NNS CC IN DT NN IN JJ NN IN NNP . ``\nOn Monday , the International Monetary Fund approved $ 15.6 million for Haiti , saying the money is intended to help the nation recover from an extended period of political conflict .\tIN NNP , DT NNP NNP NNP VBD $ CD CD IN NNP , VBG DT NN VBZ VBN TO VB DT NN VBP IN DT JJ NN IN JJ NN .\nLast February , then-President Jean-Bertrand Aristide fled the Caribbean nation amid an armed rebellion .\tJJ NNP , JJ NNP NNP VBD DT NNP NN IN DT JJ NN .\nHe now lives in exile in South Africa .\tPRP RB VBZ IN NN IN NNP NNP .\nIvory Coast 's new transitional prime minister , Charles Konan Banny , says he hopes to restore trust in the divided country .\tNNP NNP POS JJ JJ JJ NN , NNP NNP NNP , VBZ PRP VBZ TO VB NN IN DT VBN NN .\nMr. Banny made the comment after meeting with President Laurent Gbagbo in Abidjan late Monday , one day after his appointment by African mediators .\tNNP NNP VBD DT NN IN VBG IN NNP NNP NNP IN NNP JJ NNP , CD NN IN PRP$ NN IN JJ NNS .\nVOA 's West Africa correspondent Nico Colombant says Mr. Banny is expected to meet with outgoing Prime Minister Seydou Diarra Tuesday .\tNNP POS NNP NNP NN NNP NNP VBZ NNP NNP VBZ VBN TO VB IN VBG NNP NNP NNP NNP NNP .\nUnited Nations Secretary-General Kofi Annan has urged Mr. Banny 's government to immediately begin implementing a transition plan designed to lead to new elections by next October .\tNNP NNP NNP NNP NNP VBZ VBN NNP NNP POS NN TO RB VB VBG DT NN NN VBN TO VB TO JJ NNS IN JJ NNP .\nA U.N. resolution gives the new prime minister expanded authority to carry out electoral reforms and push for rebel disarmament .\tDT NNP NN VBZ DT JJ JJ NN VBN NN TO VB RP JJ NNS CC NN IN NN NN .\nMr. Banny is governor of West Africa 's central bank .\tNNP NNP VBZ NN IN NNP NNP POS JJ NN .\nAfrican mediators appointed him prime minister on Sunday , ending a deadlock between Mr. Gbagbo , opposition leaders and rebels .\tJJ NNS VBD PRP JJ NN IN NNP , VBG DT NN IN NNP NNP , NN NNS CC NNS .\nRain has washed out the entire first day of the fifth and final cricket test between South Africa and England in Centurion .\tNN VBZ VBN RP DT JJ JJ NN IN DT NN CC JJ NN NN IN NNP NNP CC NNP IN NNP .\nThe start of Friday 's match was delayed twice , but as rain continued to fall it was clear the players would not be able to take the field at all .\tDT NN IN NNP POS NN VBD VBN RB , CC IN NN VBD TO VB PRP VBD JJ DT NNS MD RB VB JJ TO VB DT NN IN DT .\nOccasional thundershowers are predicted for Saturday .\tJJ NNS VBP VBN IN NNP .\nEngland leads South Africa in the series 02-Jan .\tNNP VBZ NNP NNP IN DT NN CD .\nThe second test ended in a draw .\tDT JJ NN VBN IN DT NN .\nSouth Africa named all rounder Andrew Hall and fast bowler Andre Nel to the starting line-up , replacing batsman Boeta Dippenaar and fast bowler Dale Steyn .\tNNP NNP VBD NN NN NNP NNP CC JJ NN NNP NNP TO DT VBG NN , VBG NN NNP NNP CC JJ NN NNP NNP .\nEngland made just one change to the team that won the fourth test .\tNNP VBD RB CD NN TO DT NN WDT VBD DT JJ NN .\nSimon Jones was recalled for James Anderson , who bowled without much control in the fourth test .\tNNP NNP VBD VBN IN NNP NNP , WP VBD IN NN NN IN DT JJ NN .\nThe Cannes Film Festival has named Hong Kong director Wong Kar Wai as the head of this year 's international jury .\tDT NNP NNP NNP VBZ VBN NNP NNP NN NNP NNP NNP IN DT NN IN DT NN POS JJ NN .\nHis selection marks the first time a Chinese film maker has headed the nearly 60-year-old awards festival .\tPRP$ NN VBZ DT JJ NN DT JJ NN NN VBZ VBN DT RB JJ NNS NN .\nMr. Wong 's 1997 film Happy Together earned him a best director award from the festival .\tNNP NNP POS CD NN NNP NNP VBD PRP DT JJS NN NN IN DT NN .\nHis other films include In The Mood For Love ( 2000 ) and the stylized sci-fi movie 2047 ( 2004 ) .\tPRP$ JJ NNS VBP IN DT NNP IN NNP LRB CD RRB CC DT VBN JJ NN CD LRB CD RRB .\nOn Wednesday , festival organizers issued a statement from Mr. Wong in which he said he is honored to serve as jury president .\tIN NNP , NN NNS VBD DT NN IN NNP NNP IN WDT PRP VBD PRP VBZ VBN TO VB IN NN NN .\nVenezuelan President Hugo Chavez says he would welcome a visit by U.S. State Department official Thomas Shannon , but he says the diplomat should not come to cause problems .\tJJ NNP NNP NNP VBZ PRP MD VB DT NN IN NNP NNP NNP NN NNP NNP , CC PRP VBZ DT NN MD RB VB TO VB NNS .\nMr. Chavez made the comment in his weekly radio address Sunday .\tNNP NNP VBD DT NN IN PRP$ JJ NN NN NNP .\nThe president said Shannon contacted his foreign minister to say he wants to visit Venezuela .\tDT NN VBD NNP VBD PRP$ JJ NN TO VB PRP VBZ TO VB NNP .\nMr. Chavez said if Shannon shows Venezuela respect , it will show him respect in return .\tNNP NNP VBD IN NNP VBZ NNP NN , PRP MD VB PRP VB IN NN .\nShannon is the U.S. assistant secretary of state for Western Hemisphere affairs Earlier this month in Caracas , Chavez supporters pelted the car of U.S. Ambassador William Brownfield with eggs and vegetables as he left a charity event .\tNNP VBZ DT NNP NN NN IN NN IN JJ NNP NNS RBR DT NN IN NNP , NNP NNS VBD DT NN IN NNP NNP NNP NNP IN NNS CC NNS IN PRP VBD DT NN NN .\nMr. Chavez had accused the ambassador of repeatedly engaging in provocative activity .\tNNP NNP VBD VBN DT NN IN RB VBG IN JJ NN .\nThe United States threatened to restrict the movements of Venezuela 's ambassador to Washington , Bernando Alvarez , if there is another such incident .\tDT NNP NNPS VBD TO VB DT NNS IN NNP POS NN TO NNP , NNP NNP , IN EX VBZ DT JJ NN .\nSri Lankan officials say eight government troops have been killed by a land mine explosion in the north of the country .\tNNP NNP NNS VBP CD NN NNS VBP VBN VBN IN DT NN NN NN IN DT NN IN DT NN .\nOfficials say suspected Tamil rebels detonated the land mine Thursday , as a Sri Lankan navy convoy passed through the northern district of Vavuniya .\tNNS VBP VBN NNP NNS VBD DT NN NN NNP , IN DT NNP NNP NN NN VBN IN DT JJ NN IN NNP .\nThe blast destroyed a navy bus , killing at least eight sailors .\tDT NN VBD DT NN NN , VBG IN JJS CD NNS .\nDozens of Sri Lankan troops have died in attacks blamed on Tamil rebels in recent weeks .\tNNS IN NNP NNP NNS VBP VBN IN NNS VBN IN NNP NNS IN JJ NNS .\nThe violence has severely strained a cease-fire agreed by the two sides in 2002 .\tDT NN VBZ RB VBN DT NN VBN IN DT CD NNS IN CD .\nThe rebels have threatened to resume their armed struggle unless the government gives them a separate Tamil homeland in the north and east of the country .\tDT NNS VBP VBN TO VB PRP$ JJ NN IN DT NN VBZ PRP DT JJ NNP NN IN DT NN CC NN IN DT NN .\nFormer Beatle Paul McCartney and his wife Heather have donated nearly $ 2 million to the tsunami relief efforts .\tJJ NNP NNP NNP CC PRP$ NN NNP VBP VBN RB $ CD CD TO DT NN NN NNS .\nThe couple said in a statement they were giving the money to the International Rescue Committee UK , an independent British charity that operates in Indonesia 's Aceh province .\tDT NN VBD IN DT NN PRP VBD VBG DT NN TO DT NNP NNP NNP NNP , DT JJ JJ NN WDT VBZ IN NNP POS NNP NN .\nA spokesman for the charity told the British media they were overwhelmed by the couple 's generous gesture .\tDT NN IN DT NN VBD DT JJ NNS PRP VBD VBN IN DT NN POS JJ NN .\nHe said the group will use the money to deploy mobile emergency teams in Aceh to supply clean drinking water and medicines to the needy .\tPRP VBD DT NN MD VB DT NN TO VB JJ NN NNS IN NNP TO VB JJ NN NN CC NNS TO DT NN .\nA source close to the couple said that , like most people , they were moved by the devastation and wanted to do their part to help in the British effort .\tDT NN RB TO DT NN VBD IN , IN JJS NNS , PRP VBD VBN IN DT NN CC VBD TO VB PRP$ NN TO VB IN DT JJ NN .\nOfficials in the main Palestinian faction , Fatah , say jailed leader Marwan Barghouti has decided to run for Palestinian president .\tNNS IN DT JJ NN NN , NNP , VBP JJ NN NNP NNP VBZ VBN TO VB IN JJ NN .\nBut it remains unclear if the senior Fatah member will run as an independent .\tCC PRP VBZ JJ IN DT JJ NNP NN MD VB IN DT JJ .\nThe outspoken leader is serving five life sentences in an Israeli prison for the murder of five Israelis .\tDT JJ NN VBZ VBG CD NN NNS IN DT JJ NN IN DT NN IN CD NNS .\nNews of his intention to run surfaced Thursday , the same day that Fatah leaders confirmed former Prime Minister Mahmoud Abbas as their candidate in the January 9 election .\tNN IN PRP$ NN TO VB VBN NNP , DT JJ NN IN NNP NNS VBD JJ NNP NNP NNP NNP IN PRP$ NN IN DT NNP CD NN .\nBarghouti had earlier said he would not run if Fatah chose Mr. Abbas as its candidate .\tNNP VBD RBR VBN PRP MD RB VB IN NNP VBD NNP NNP IN PRP$ NN .\nIn other developments , the Israeli army says two senior Hamas members were killed and a third wounded during an arrest operation in the West Bank town of Hebron .\tIN JJ NNS , DT JJ NN VBZ CD JJ NNP NNS VBD VBN CC DT JJ VBN IN DT NN NN IN DT NNP NNP NN IN NNP .\nDonatella Versace 's daughter Allegra is battling anorexia .\tNNP NNP POS NN NNP VBZ VBG NN .\nIn a statement released by her spokesman Robert Zimmerman , the Italian fashion designer and her estanged husband , Paul Beck , said their 20-year-old daughter has had the eating disorder for years , and is currently receiving treatment .\tIN DT NN VBN IN PRP$ NN NNP NNP , DT JJ NN NN CC PRP$ VBN NN , NNP NNP , VBD PRP$ JJ NN VBZ VBN DT JJ NN IN NNS , CC VBZ RB VBG NN .\nDonatella Versace first confirmed the news on the syndicated U.S. television show The Insider , following speculation about her daughter 's gaunt appearance .\tNNP NNP RB VBD DT NN IN DT JJ NNP NN NN DT NNP , VBG NN IN PRP$ NN POS NN NN .\nShe and Paul Beck are legally separated .\tPRP CC NNP NNP VBP RB VBN .\nThe United Nations says the devastation caused in Bangladesh by Cyclone Sidr last month is far worse than previously thought .\tDT NNP NNP VBZ DT NN VBN IN NNP IN NNP NNP JJ NN VBZ RB JJR IN RB VBN .\nThe U.N. Office for the Coordination of Humanitarian Affairs says nearly 2.6 million Bangladeshis across nine districts still need emergency assistance .\tDT NNP NNP IN DT NN IN NNP NNP VBZ RB CD CD NNS IN CD NNS RB VBP NN NN .\nThe total number of people affected by the cyclone was about 8.5 million , 1.5 million more than initially thought .\tDT JJ NN IN NNS VBN IN DT NN VBD IN CD CD , CD CD JJR IN RB VBN .\nThe U.N. says property damage is also more severe than first reported .\tDT NNP VBZ NN NN VBZ RB RBR JJ IN RB VBN .\nNearly 5,64,000 homes were destroyed , up from initial estimates of 2,00,000 .\tRB CD NNS VBD VBN , RB IN JJ NNS IN CD .\nThe confirmed death toll from the cyclone is 3,268 .\tDT VBN NN NN IN DT NN VBZ CD .\nThe U.N. says food , shelter and cash are needed the most in terms of emergency aid .\tDT NNP VBZ NN , NN CC NN VBP VBN DT RBS IN NNS IN NN NN .\nProper sanitation and clean water are also high priorities .\tJJ NN CC JJ NN VBP RB JJ NNS .\nThe November 15 cyclone was the worst in Bangladesh in more than a decade .\tDT NNP CD NN VBD DT JJS IN NNP IN JJR IN DT NN .\nIt struck the coast with fierce winds and a tidal surge that wiped out villages .\tPRP VBD DT NN IN JJ NNS CC DT JJ NN WDT VBD RP NNS .\nA bomb blast in Pakistan 's northwestern city of Peshawar has wounded eight people just hours after the U.S. consulate was temporarily closed after receiving a threat .\tDT NN NN IN NNP POS JJ NN IN NNP VBZ VBN CD NNS RB NNS IN DT NNP NN VBD RB VBN IN VBG DT NN .\nPolice say the blast was caused by explosives planted on a motorcycle parked in a crowded bazaar in the city center .\tNNS VBP DT NN VBD VBN IN NNS VBN IN DT NN VBN IN DT JJ NN IN DT NN NN .\nPolice say it seems the place where the blast occurred was not the target , and that the attacker was transporting the bomb .\tNNS VBP PRP VBZ DT NN WRB DT NN VBD VBD RB DT NN , CC IN DT NN VBD VBG DT NN .\nEarlier on Tuesday , a spokeswoman for the U.S. embassy in Islamabad said its consulate in Peshawar has been temporarily closed after receiving a ' specific and credible ' threat .\tRB IN NNP , DT NN IN DT NNP NN IN NNP VBD PRP$ NN IN NNP VBZ VBN RB VBN IN VBG DT `` JJ CC JJ `` NN .\nPeruvian lawmakers have rejected votes of no confidence against the country 's prime and transport ministers .\tJJ NNS VBP VBN NNS IN DT NN IN DT NN POS JJ CC NN NNS .\nOpposition lawmakers accused Prime Minister Carlos Ferrero of not doing enough to offset the effects of high world oil prices .\tNNP NNS VBD NNP NNP NNP NNP IN RB VBG RB TO VB DT NNS IN JJ NN NN NNS .\nThe opposition also called for the dismissal of Transport Minister Jose Ortiz over problems within the country 's airline sector .\tDT NN RB VBD IN DT NN IN NNP NNP NNP NNP IN NNS IN DT NN POS NN NN .\nPeru 's top airline was suspended from flying last month due to an ownership dispute , while its second-biggest carrier was grounded for safety reasons .\tNNP POS JJ NN VBD VBN IN VBG JJ NN JJ TO DT NN NN , IN PRP$ JJ NN VBD VBN IN NN NNS .\nPeru 's Congress fired the country 's interior minister in May over accusations he mishandled a riot in southern Peru .\tNNP POS NNP VBD DT NN POS JJ NN IN NNP IN NNS PRP VBD DT NN IN JJ NNP .\nHeavy rain and snow in Pakistani Kashmir has grounded relief flights to survivors of last year 's earthquake for a third consecutive day .\tJJ NN CC NN IN JJ NNP VBZ VBN NN NNS TO NNS IN JJ NN POS NN IN DT JJ JJ NN .\nThe bad weather also forced former President George Bush , the father of the current president , to postpone a flight to the regional capital , Muzaffarabad .\tDT JJ NN RB VBD JJ NNP NNP NNP , DT NN IN DT JJ NN , TO VB DT NN TO DT JJ NN , NNP .\nThe elder Mr. Bush is visiting Pakistan in his role as a United Nations special envoy for earthquake relief .\tDT NN NNP NNP VBZ VBG NNP IN PRP$ NN IN DT NNP NNP JJ NN IN NN NN .\nHe greeted earthquake refugees Tuesday at a tent camp on the outskirts of Islamabad .\tPRP VBD NN NNS NNP IN DT JJ NN IN DT NNS IN NNP .\nOn Monday , he discussed aid and reconstruction efforts with Pakistani President Pervez Musharraf .\tIN NNP , PRP VBD NN CC NN NNS IN JJ NNP NNP NNP .\nU.N. officials say the world body is still far short of the $ 500 million it needs to sustain relief operations for the three million people made homeless by last October 's earthquake .\tNNP NNS VBP DT NN NN VBZ RB RB JJ IN DT $ CD CD PRP VBZ TO VB NN NNS IN DT CD CD NNS VBN JJ IN JJ NNP POS NN .\nAfghanistan 's border police say a U.S.-led coalition warplane has mistakenly killed 12 police officers in the eastern part of the country .\tNNP POS NN NNS VBP DT JJ NN NN VBZ RB VBN CD NNS NNS IN DT JJ NN IN DT NN .\nAfghan Commander Abdul Rahman said the aircraft attacked a patrol Thursday in Paktika province .\tJJ NNP NNP NNP VBD DT NN VBD DT NN NNP IN NNP NN .\nA coalition spokesman says the report is being investigated .\tDT NN NN VBZ DT NN VBZ VBG VBN .\nHe had no further details .\tPRP VBD DT JJ NNS .\nU.S.-backed coalition forces began investigating in April two cases in which civilians and Afghan security forces may have been killed by friendly fire .\tJJ NN NNS VBD VBG IN NNP CD NNS IN WDT NNS CC JJ NN NNS MD VB VBN VBN IN JJ NN .\nCoalition forces are hunting down Taleban insurgents in the province .\tNN NNS VBP VBG RP NNP NNS IN DT NN .\nEarlier , Afghan officials said two suicide bomb attacks in the south of the country wounded seven Afghan policemen and one foreign soldier .\tRB , JJ NNS VBD CD NN NN NNS IN DT NN IN DT NN VBD CD JJ NNS CC CD JJ NN .\nRussian forces have begun withdrawing from a Soviet-era base in Georgia .\tJJ NNS VBP VBN VBG IN DT JJ NN IN NNP .\nA train carrying tanks , armored personnel carriers and other support vehicles left the base at Akhalkalaki Monday on its way back to Russia .\tDT NN VBG NNS , VBN NNS NNS CC JJ NN NNS VBD DT NN IN NNP NNP IN PRP$ NN RB TO NNP .\nUnder an agreement with Georgia , the base will close by the end of 2007 , while a Russian airbase at Batumi will close by the end of 2008 .\tIN DT NN IN NNP , DT NN MD VB IN DT NN IN CD , IN DT JJ NN IN NNP MD VB IN DT NN IN CD .\nMeanwhile , negotiators from Georgia and its breakaway region of Abkhazia have met in Tbilisi Monday for talks on security , economic and refugee issues .\tRB , NNS IN NNP CC PRP$ JJ NN IN NNP VBP VBN IN NNP NNP IN NNS IN NN , JJ CC JJ NNS .\nOfficials from both sides called the United Nations-hosted talks productive .\tNNS IN DT NNS VBD DT NNP JJ NNS JJ .\nThe discussions were the first after a five-year break Abkhazia has acted as an independent state since it drove out Georgian troops in the early 1990s .\tDT NNS VBD DT JJ IN DT JJ NN NNP VBZ VBN IN DT JJ NN IN PRP VBD RP JJ NNS IN DT JJ NNS .\nHowever , it is not recognized by other countries , and Georgian President Mikhail Saakashvili has pledged to bring Abkhazia back under central government control .\tRB , PRP VBZ RB VBN IN JJ NNS , CC JJ NNP NNP NNP VBZ VBN TO VB NNP RB IN JJ NN NN .\nBritish Prime Minister Gordon Brown is heading to Washington Monday for talks with U.S. President Barack Obama on forging a global pact aimed at fighting the world economic crisis .\tJJ NNP NNP NNP NNP VBZ VBG TO NNP NNP IN NNS IN NNP NNP NNP NNP IN VBG DT JJ NN VBN IN VBG DT NN JJ NN .\nMr. Brown will meet with Mr. Obama Tuesday at the White House .\tNNP NNP MD VB IN NNP NNP NNP IN DT NNP NNP .\nOn Wednesday , the British leader will address the U.S Senate and House of Representatives .\tIN NNP , DT JJ NN MD VB DT NNP NNP CC NNP IN NNPS .\nMr. Brown wrote in London 's ' Sunday Times ' that he and President Obama will discuss ' a global new deal , whose impact can stretch from the villages of Africa to reforming the financial institutions of London and New York . '\tNNP NNP VBD IN NNP POS `` NNP NNP `` IN PRP CC NNP NNP MD VB `` DT JJ JJ NN , WP$ NN MD VB IN DT NNS IN NNP TO VBG DT JJ NNS IN NNP CC NNP NNP . ``\nMr. Brown said all nations should agree to inject cash into their economies , agree to international banking reforms and an overhaul of financial institutions .\tNNP NNP VBD DT NNS MD VB TO VB NN IN PRP$ NNS , VBP TO JJ NN NNS CC DT NN IN JJ NNS .\nHe will be the first European leader to meet with Mr. Obama since the president took office in January .\tPRP MD VB DT JJ JJ NN TO VB IN NNP NNP IN DT NN VBD NN IN NNP .\nAlberto Gonzales has been formally sworn in as U.S. attorney general , saying he welcomes the opportunity to serve as the country 's top law enforcement official .\tNNP NNP VBZ VBN RB VBN IN IN NNP NN NN , VBG PRP VBZ DT NN TO VB IN DT NN POS JJ NN NN NN .\nPresident Bush introduced Mr. Gonzales , the country 's first Hispanic attorney general , at a ceremony in Washington D.C. Monday .\tNNP NNP VBD NNP NNP , DT NN POS JJ JJ NN NN , IN DT NN IN NNP NNP NNP .\nThe president said Mr. Gonzales will lead efforts to protect the United States against another terrorist attack and will pursue criminals at home while protecting the liberty of all Americans .\tDT NN VBD NNP NNP MD VB NNS TO VB DT NNP NNPS IN DT JJ NN CC MD VB NNS IN NN IN VBG DT NN IN DT NNS .\nThe president called his former White House counsel a good friend .\tDT NN VBD PRP$ JJ NNP NNP NN DT JJ NN .\nMr. Gonzales accepted the post of attorney general earlier this month , after winning Senate confirmation in a 60-to-36 vote .\tNNP NNP VBD DT NN IN NN NN RBR DT NN , IN VBG NNP NN IN DT JJ NN .\nHe replaced John Ashcroft .\tPRP VBD NNP NNP .\nMany Democrats criticized the nomination , saying Mr. Gonzales has helped shape Bush administration policy that contributed to prisoner abuse overseas .\tJJ NNPS VBD DT NN , VBG NNP NNP VBZ VBN VB NNP NN NN WDT VBD TO NN NN RB .\nPakistan officials say they will close four camps holding 2,40,000 refugees from Afghanistan within about six months .\tNNP NNS VBP PRP MD VB CD NNS VBG CD NNS IN NNP IN IN CD NNS .\nThe announcement was made after Pakistani and Afghan ministers met with United Nations High Commission for Refugees officials in Pakistan 's capital , Islamabad , Wednesday .\tDT NN VBD VBN IN JJ CC JJ NNS VBD IN NNP NNP NNP NNP IN NNP NNS IN NNP POS NN , NNP , NNP .\nMore than two million Afghan refugees currently live in camps in Pakistan .\tJJR IN CD CD JJ NNS RB VBP IN NNS IN NNP .\nPakistani Prime Minister Shaukat Aziz told NATO and European Union officials last week that the refugee camps along the border with Afghanistan provide recruiting grounds and safe havens for terrorists .\tJJ NNP NNP NNP NNP VBD NNP CC NNP NNP NNS JJ NN IN DT NN NNS IN DT NN IN NNP VBP VBG NNS CC JJ NNS IN NNS .\nHe said he needs European help in repatriating the people who live in the camps .\tPRP VBD PRP VBZ JJ NN IN VBG DT NNS WP VBP IN DT NNS .\nDiplomats from Iran made their first visit Saturday to five Iranians who have been detained by U.S. forces in northern Iraq .\tNNS IN NNP VBD PRP$ JJ NN NNP TO CD NNS WP VBP VBN VBN IN NNP NNS IN JJ NNP .\nU.S. military officials say the five , who were detained in January , were helping militants in Iraq fight against U.S. and Iraqi forces .\tNNP JJ NNS VBP DT CD , WP VBD VBN IN NNP , VBD VBG NNS IN NNP VB IN NNP CC JJ NNS .\nTehran says the men are diplomats and is demanding their release .\tNNP VBZ DT NNS VBP NNS CC VBZ VBG PRP$ NN .\nAn Iraqi foreign ministry statement today said it hoped that the gesture would help ease tensions and facilitate dialogue between the U.S. and Iran .\tDT JJ JJ NN NN NN VBD PRP VBD IN DT NN MD VB VB NNS CC VB NN IN DT NNP CC NNP .\nIn late May , the United States held its highest level talks with Iran in almost 30 years .\tIN JJ NNP , DT NNP NNPS VBD PRP$ JJS NN NNS IN NNP IN RB CD NNS .\nU.S. Ambassador Ryan Crocker met with his Iranian counterpart , Hassan Kazemi Qomi .\tNNP NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP NNP .\nDuring that meeting , Crocker asked Iran to stop supporting militias in Iraq .\tIN DT NN , NNP VBD NNP TO VB VBG NNS IN NNP .\nBritish Prime Minister Tony Blair is in Egypt to discuss ways to revive the Israeli-Palestinian peace process .\tJJ NNP NNP NNP NNP VBZ IN NNP TO VB NNS TO VB DT JJ NN NN .\nMr. Blair held talks in Cairo Saturday with Egyptian President Hosni Mubarak , whose government is a key mediator between Israel and the Palestinians .\tNNP NNP VBD NNS IN NNP NNP IN JJ NNP NNP NNP , WP$ NN VBZ DT JJ NN IN NNP CC DT NNS .\nThe British leader welcomed a call from Palestinian President Mahmoud Abbas to hold new elections .\tDT JJ NN VBD DT NN IN JJ NNP NNP NNP TO VB JJ NNS .\nHe said it is a sign that Mr. Abbas is seeking to overcome a deadlock amid rising tensions between his Fatah party and Hamas .\tPRP VBD PRP VBZ DT NN IN NNP NNP VBZ VBG TO VB DT NN IN VBG NNS IN PRP$ NNP NN CC NNP .\nMr. Blair also called on the international community to support Mr. Abbas in order to boost peace efforts .\tNNP NNP RB VBD IN DT JJ NN TO VB NNP NNP IN NN TO VB NN NNS .\nAfter leaving Cairo , Mr. Blair is to travel to Israel and the Palestinian territories .\tIN VBG NNP , NNP NNP VBZ TO VB TO NNP CC DT JJ NNS .\nFriday , Mr. Blair was in Ankara for talks with Turkish Prime Minister Recep Tayyip Erdogan .\tNNP , NNP NNP VBD IN NNP IN NNS IN JJ NNP NNP NNP NNP NNP .\nMembers of parliament in Benin have voted to change the country 's constitution , extending their terms in office by one year .\tNNS IN NN IN NNP VBP VBN TO VB DT NN POS NN , VBG PRP$ NNS IN NN IN CD NN .\nLocal media report the controversial vote took place behind closed doors late Friday night .\tJJ NNS VBP DT JJ NN VBD NN IN JJ NNS JJ NNP NN .\nAn overwhelming majority of members voted for the change , with 71 members supporting the change and eight against it .\tDT JJ NN IN NNS VBD IN DT NN , IN CD NNS VBG DT NN CC CD IN PRP .\nBenin 's constitution grants lawmakers four-year terms .\tNNP POS NN NNS NNS JJ NNS .\nThe next legislative election is scheduled for early next year .\tDT JJ JJ NN VBZ VBN IN JJ JJ NN .\nIf the change is approved by the country 's constitutional court , terms will be five years and legislative elections will be pushed back to 2008 .\tIN DT NN VBZ VBN IN DT NN POS JJ NN , NNS MD VB CD NNS CC JJ NNS MD VB VBN RB TO CD .\nLawmakers argued that the change would bring their elections in line with presidential elections .\tNNS VBD IN DT NN MD VB PRP$ NNS IN NN IN JJ NNS .\nThey are held every five years in the Benin .\tPRP VBP VBN DT CD NNS IN DT NNP .\nOpposition groups said changing the constitution threatens the west African country 's young democracy and is merely a power grab by members of the national assembly .\tNN NNS VBD VBG DT NN VBZ DT JJS JJ NN POS JJ NN CC VBZ RB DT NN NN IN NNS IN DT JJ NN .\nIran and Syria say they will form a united front to confront challenges and threats from other countries .\tNNP CC NNP VBP PRP MD VB DT JJ NN TO VB NNS CC NNS IN JJ NNS .\nSyrian Prime Minister Naji Otri , who is in Tehran Wednesday , said the meeting of the two allies comes at a very important and delicate time , when both countries are facing numerous challenges .\tJJ NNP NNP NNP NNP , WP VBZ IN NNP NNP , VBD DT NN IN DT CD NNS VBZ IN DT RB JJ CC JJ NN , WRB DT NNS VBP VBG JJ NNS .\nIran 's vice president , Mohammad Reza Aref , told reporters that Tehran is ready to help Syria on all grounds to confront threats .\tNNP POS NN NN , NNP NNP NNP , VBD NNS IN NNP VBZ JJ TO VB NNP IN DT NNS TO VB NNS .\nIran has been under intense U.S. and European pressure to abandon its nuclear activities , while Washington has accused Syria of being a haven for anti-Iraqi insurgents .\tNNP VBZ VBN IN JJ NNP CC JJ NN TO VB PRP$ JJ NNS , IN NNP VBZ VBN NNP IN VBG DT NN IN JJ NNS .\nTuesday , Washington recalled its ambassador to Syria for consultations , a day after Lebanon 's former prime minister , Rafik Hariri , was killed in a Beirut car bombing .\tNNP , NNP VBD PRP$ NN TO NNP IN NNS , DT NN IN NNP POS JJ JJ NN , NNP NNP , VBD VBN IN DT NNP NN NN .\nAn EU naval force spokesman says ransom has been paid for the release of a Singapore-flagged chemical tanker , held for nearly two months by Somali pirates .\tDT NNP JJ NN NN VBZ NN VBZ VBN VBN IN DT NN IN DT JJ NN NN , VBD IN RB CD NNS IN JJ NNS .\nJohn Harbor said the money was delivered on Friday morning .\tNNP NNP VBD DT NN VBD VBN IN NNP NN .\nHe said he expects the pirates to release the crew and leave the ship within about 24 hours , after counting the money .\tPRP VBD PRP VBZ DT NNS TO VB DT NN CC VB DT NN IN IN CD NNS , IN VBG DT NN .\nThe ransom amount was not specified .\tDT NN NN VBD RB VBN .\nThe chemical tanker Pramoni was hijacked on January 1 in the Gulf of Aden .\tDT NN NN NNP VBD VBN IN NNP CD IN DT NNP IN NNP .\nThe crew includes 17 Indonesians , five Chinese , one Vietnamese and one Nigerian .\tDT NN VBZ CD NNS , CD NNS , CD NN CC CD NN .\nSomali pirates have made tens of millions of dollars over the past two years hijacking ships for ransom .\tJJ NNS VBP VBN NNS IN NNS IN NNS IN DT JJ CD NNS VBG NNS IN NN .\nMultinational naval forces have stopped many attacks near the coast , but pirates have increasingly focused their efforts on the Indian Ocean , an area too large for foreign navies to effectively patrol .\tJJ JJ NNS VBP VBN JJ NNS IN DT NN , CC NNS VBP RB VBN PRP$ NNS IN DT NNP NNP , DT NN RB JJ IN JJ NNS TO RB VB .\nUnited Nations offices around the world have observed a minute of silence for those killed in the 2003 terrorist bombing of the U.N. headquarters in Baghdad .\tNNP NNPS NNS IN DT NN VBP VBN DT NN IN NN IN DT VBN IN DT CD JJ NN IN DT NNP NN IN NNP .\nIn New York Friday , U.N. Deputy Secretary-General Louise Frechette laid a wreath in front of the memorial plaque honoring the victims of the August 19 attack .\tIN NNP NNP NNP , NNP NNP NNP NNP NNP VBD DT NN IN NN IN DT JJ NN VBG DT NNS IN DT NNP CD NN .\nThe huge explosion killed 22 people , including the top U.N. envoy in Iraq , Sergio Vieira de Mello , and injured hundreds of others .\tDT JJ NN VBD CD NNS , VBG DT JJ NNP NN IN NNP , NNP NNP IN NNP , CC JJ NNS IN NNS .\nIn a statement , U.N. Secretary-General Kofi Annan hailed those killed in the bombings , calling them courageous and devoted to helping people in impoverished lands and war-torn countries build better lives .\tIN DT NN , NNP NNP NNP NNP VBD DT VBN IN DT NNS , VBG PRP JJ CC JJ TO VBG NNS IN JJ NNS CC JJ NNS VBP JJR NNS .\nMr. Annan withdrew the U.N. international staff from Iraq in October , 2003 , following a second attack on its offices in Baghdad and a series of attacks on humanitarian workers throughout Iraq .\tNNP NNP VBD DT NNP JJ NN IN NNP IN NNP , CD , VBG DT JJ NN IN PRP$ NNS IN NNP CC DT NN IN NNS IN JJ NNS IN NNP .\nSince 2004 , they have slowly been allowed to return .\tIN CD , PRP VBP RB VBN VBN TO VB .\nVenezuela 's ambassador to Cuba says President Fidel Castro is eating again and his health has significantly improved since intestinal surgery last year .\tNNP POS NN TO NNP VBZ NNP NNP NNP VBZ VBG RB CC PRP$ NN VBZ RB VBN IN JJ NN JJ NN .\nAli Rodriguez Araque told Venezuelan state television Thursday that the Cuban leader could not eat for a period following his surgery .\tNNP NNP NNP VBD JJ NN NN NNP IN DT JJ NN MD RB VB IN DT NN VBG PRP$ NN .\nBut , Rodriguez Araque says now that Mr. Castro is eating again , he is improving .\tCC , NNP NNP VBZ RB IN NNP NNP VBZ VBG RB , PRP VBZ VBG .\nLast month , Cuba 's state television broadcast images of Venezuelan President Hugo Chavez meeting with Mr. Castro in Havana .\tJJ NN , NNP POS NN NN NN NNS IN JJ NNP NNP NNP VBG IN NNP NNP IN NNP .\nIt was the first image released of the Cuban president in three months .\tPRP VBD DT JJ NN VBN IN DT JJ NN IN CD NNS .\nThe Cuban government treats the 80-year-old leader 's health as a state secret .\tDT JJ NN VBZ DT JJ NN POS NN IN DT NN NN .\nAfter his surgery in late July , Mr. Castro temporarily handed power over to his younger brother , Defense Minister Raul Castro .\tIN PRP$ NN IN JJ NNP , NNP NNP RB VBD NN IN TO PRP$ JJR NN , NNP NNP NNP NNP .\nA top Russian energy official says Iran is ready for detailed discussions on Moscow 's proposal to conduct Tehran 's uranium enrichment in Russia .\tDT JJ JJ NN NN VBZ NNP VBZ JJ IN JJ NNS IN NNP POS NN TO VB NNP POS NN NN IN NNP .\nSergei Kiryenko , the head of Russia 's atomic energy agency , made the announcement Friday , during a televised meeting with President Vladimir Putin .\tNNP NNP , DT NN IN NNP POS JJ NN NN , VBD DT NN NNP , IN DT JJ NN IN NNP NNP NNP .\nKiryenko says Iranian officials were due to visit Moscow in the coming days to discuss the plan .\tNNP VBZ JJ NNS VBD JJ TO VB NNP IN DT VBG NNS TO VB DT NN .\nThe proposal for uranium to be enriched in Russia for use in Iranian reactors is aimed at eliminating concerns that Tehran could enrich its own uranium for use in nuclear weapons .\tDT NN IN NN TO VB VBN IN NNP IN NN IN JJ NNS VBZ VBN IN VBG NNS IN NNP MD VB PRP$ JJ NN IN NN IN JJ NNS .\nThe United States and European Union have backed the Russian proposal as a way to break the deadlock over Iran 's nuclear program .\tDT NNP NNPS CC NNP NNP VBP VBN DT JJ NN IN DT NN TO VB DT NN IN NNP POS JJ NN .\nThe U.S. accuses Iran of trying to develop nuclear weapons .\tDT NNP VBZ NNP IN VBG TO VB JJ NNS .\nTehran insists its nuclear intentions are peaceful .\tNNP VBZ PRP$ JJ NNS VBP JJ .\nIraqi authorities say at least 40 people have been killed and more than 70 wounded in multiple bomb attacks Wednesday .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN CC JJR IN CD VBN IN JJ NN NNS NNP .\nThe first attack took place at an army recruiting center in southern Iraq , in the town of Hilla .\tDT JJ NN VBD NN IN DT NN NN NN IN JJ NNP , IN DT NN IN NNP .\nA time bomb planted on a parked bicycle exploded and ripped through a crowd of young men outside the military office , killing 12 of them and wounding 38 .\tDT NN NN VBD IN DT JJ NN VBD CC VBD IN DT NN IN JJ NNS IN DT JJ NN , VBG CD IN PRP CC VBG CD .\nIn Baghdad , police say at least 24 people were killed and 35 were wounded by a bomb that exploded in the commercial neighborhood of Shurja where clothing and household products are sold .\tIN NNP , NNS VBP IN JJS CD NNS VBD VBN CC CD VBD VBN IN DT NN WDT VBD IN DT JJ NN IN NNP WRB NN CC NN NNS VBP VBN .\nThree more people were killed and others were injured by several other bomb blasts in different parts of the Iraqi capital .\tCD JJR NNS VBD VBN CC NNS VBD VBN IN JJ JJ NN NNS IN JJ NNS IN DT JJ NN .\nToday 's attacks took place despite an intensified security clampdown in Baghdad by U.S. and Iraqi forces .\tNN POS NNS VBD NN IN DT JJ NN NN IN NNP IN NNP CC JJ NNS .\nPakistan 's cricket team has scored 50-1 after India declared its first innings at 616-5 in the second test at the Eden Gardens ground in Kolkata , India .\tNNP POS NN NN VBZ VBN JJ IN NNP VBD PRP$ JJ NN IN CD IN DT JJ NN IN DT NNP NNPS NN IN NNP , NNP .\nA double century from Wasim Jaffer ( 202 ) and centuries from Sourav Ganguly and V.V.S. Laxman put India in a commanding position .\tDT JJ NN IN NNP NNP LRB CD RRB CC NNS IN NNP NNP CC NNP NNP VBD NNP IN DT JJ NN .\nGanguly delighted the home crowd with his first century at Eden Gardens , scoring 102 before holing out to Sohail Tanvir .\tRB VBD DT NN NN IN PRP$ JJ NN IN NNP NNP , VBG CD IN VBG RP TO NNP NNP .\nLaxman added 112 not out and wicket keeper Mahendra Dhoni was 50 not out when Anil Kumble declared the innings .\tNNP VBD CD RB IN CC NN NN NNP NNP VBD CD RB IN WRB NNP NNP VBD DT NN .\nPakistan managed 50 runs with Salman Butt on 26 and stand-in captain Younis Khan at three when play was stopped .\tNNP VBD CD NNS IN NNP NNP IN CD CC JJ NN NNP NNP IN CD WRB NN VBD VBN .\nIndia won the first match of the three-test series in New Delhi by six wickets .\tNNP VBD DT JJ NN IN DT JJ NN IN NNP NNP IN CD NNS .\nThe third test in Bangalore begins December 8th .\tDT JJ NN IN NNP VBZ NNP CD .\nThe home side also took a five-match one-day series , 03-Feb .\tDT NN NN RB VBD DT JJ JJ NN , CD .\nSudan 's President Omar al-Bashir has vowed to defend a peace deal ending more than 20 years of war in southern Sudan .\tNNP POS NNP NNP NNP VBZ VBN TO VB DT NN NN VBG JJR IN CD NNS IN NN IN JJ NNP .\nSpeaking in the southwestern town of Waw on Saturday , Mr. Bashir said the nation 's troops would prevent any efforts to block implementation of the deal signed with rebels last week .\tVBG IN DT JJ NN IN NNP IN NNP , NNP NNP VBD DT NN POS NNS MD VB DT NNS TO VB NN IN DT NN VBD IN NNS JJ NN .\nIn recent days , Mr. Bashir has visited several key towns in the south , promising greater cooperation and investment from Khartoum .\tIN JJ NNS , NNP NNP VBZ VBN JJ JJ NNS IN DT NN , VBG JJR NN CC NN IN NNP .\nThe peace deal grants some autonomy to the south and requires local leaders and Khartoum to share oil wealth .\tDT NN NN VBZ DT NN TO DT NN CC VBZ JJ NNS CC NNP TO VB NN NN .\nMeantime , southern rebel leader John Garang told British radio that Sudanese officials must pursue a similar deal to end a separate conflict in the western Darfur region .\tRB , JJ NN NN NNP NNP VBD JJ NN IN JJ NNS MD VB DT JJ NN TO VB DT JJ NN IN DT JJ NNP NN .\nUgandan Foreign Minister Sam Kutesa says his country has no plans to attack the Democratic Republic of Congo , but will defend its own territory .\tJJ NNP NNP NNP NNP VBZ PRP$ NN VBZ DT NNS TO VB DT JJ NNP IN NNP , CC MD VB PRP$ JJ NN .\nMr. Kutesa has departed Congo 's capital , Kinshasa , following talks with President Joseph Kabila late Monday that focused on defusing tension caused by recent border violence .\tNNP NNP VBZ VBN NNP POS NN , NNP , VBG NNS IN NNP NNP NNP JJ NNP WDT VBD IN VBG NN VBN IN JJ NN NN .\nOn August 3 , a British oil worker was killed during an attack on an oil exploration barge in Lake Albert .\tIN NNP CD , DT JJ NN NN VBD VBN IN DT NN IN DT NN NN NN IN NNP NNP .\nThen last week , gunmen who crossed the border from Congo looted shops in a Ugandan border town and killed three civilians .\tRB JJ NN , NNS WP VBD DT NN IN NNP VBD NNS IN DT JJ NN NN CC VBD CD NNS .\nUganda and Congo have had strained relations for many years , with Uganda regularly threatening to send troops across the border if Kinshasa does not take action against lawless groups in eastern Congo .\tNNP CC NNP VBP VBN VBN NNS IN JJ NNS , IN NNP RB VBG TO VB NNS IN DT NN IN NNP VBZ RB VB NN IN JJ NNS IN JJ NNP .\nNew Yorkers are trudging through their third day without bus or train service , as a transit strike keeps the city in turmoil .\tNNP NNPS VBP VBG IN PRP$ JJ NN IN NN CC NN NN , IN DT NN NN VBZ DT NN IN NN .\nAs residents walked , jogged or biked to work this Thursday morning , union leaders and transit officials met for their first talks since the strike began .\tIN NNS VBD , VBD CC VBD TO VB DT NNP NN , NN NNS CC NN NNS VBD IN PRP$ JJ NNS IN DT NN VBD .\nThat meeting came after three union leaders were threatened with jail for defying a state law against strikes by public workers .\tDT NN VBD IN CD NN NNS VBD VBN IN NN IN VBG DT NN NN IN NNS IN JJ NNS .\nThe union already is being fined $ 1 million each day of the walkout .\tDT NN RB VBZ VBG VBN $ CD CD DT NN IN DT NN .\nThe strike has shut down New York 's huge subway and bus network , crippling normal travel arrangements for millions of people .\tDT NN VBZ VBN RP NNP NNP POS JJ NN CC NN NN , VBG JJ NN NNS IN NNS IN NNS .\nBusiness is down sharply at the city 's famous shops and department stores , as well as at restaurants , museums and theaters .\tNN VBZ RB RB IN DT NN POS JJ NNS CC NN NNS , RB RB IN IN NNS , NNS CC NNS .\nThe strike also comes during the busy holiday period , costing the local economy hundreds of millions of dollars a day .\tDT NN RB VBZ IN DT JJ NN NN , VBG DT JJ NN NNS IN NNS IN NNS DT NN .\nFrance has defeated Spain , 5-0 , to earn a place in the finals of the Fed Cup women 's tennis competition in Moscow .\tNNP VBZ VBN NNP , CD , TO VB DT NN IN DT NNS IN DT NNP NNP NNS POS NN NN IN NNP .\nThe French started the day Thursday , up 2-0 , and then swept the reverse singles and the doubles competition .\tDT NNS VBD DT NN NNP , IN CD , CC RB VBD DT JJ NNS CC DT NNS NN .\nNathalie Dechy of France defeated Anabel Medina Garrigues in straight sets , 06-Mar , 06-Jan .\tNNP NNP IN NNP VBD NNP NNP NNPS IN JJ NNS , CD , CD .\nTatiana Golovin of France downed Marta Marrero of Spain 06-Mar , 06-Apr .\tNNP NNP IN NNP VBD NNP NNP IN NNP CD , CD .\nMarion Bartoli and Emilie Loit of France then defeated Marta Marrero and Virginia Ruano Pascual of Spain in the doubles 07-May , 06-Feb .\tNNP NNP CC NNP NNP IN NNP RB VBD NNP NNP CC NNP NNP NNP IN NNP IN DT NNS CD , CD .\nThe French are trying to win their third Fed Cup title and are bidding to become the first nation since the United States in 1999 - 2000 to win two successive Fed Cup titles .\tDT NNS VBP VBG TO VB PRP$ JJ NNP NNP NN CC VBP VBG TO VB DT JJ NN IN DT NNP NNPS IN CD IN CD TO VB CD JJ NNP NNP NNS .\nFrance takes on the winner of the Russia-Austria series .\tNNP VBZ IN DT NN IN DT NNP NN .\nRussia leads that series , 2-0 .\tNNP VBZ IN NN , CD .\nPalestinian President Mahmoud Abbas is rejecting an idea published by Israel media that would create a Palestinian state within temporary borders .\tJJ NNP NNP NNP VBZ VBG DT NN VBN IN NNP NNS WDT MD VB DT JJ NN IN JJ NNS .\nIn a speech to his Fatah party in Ramallah on Saturday , Mr. Abbas said the idea was being presented as a way to move the Middle East peace process forward .\tIN DT NN TO PRP$ NNP NN IN NNP IN NNP , NNP NNP VBD DT NN VBD VBG VBN IN DT NN TO VB DT NNP NNP NN NN RB .\nHe added that Palestinians would not accept such a deal and restated his call for full Palestinian statehood .\tPRP VBD IN NNS MD RB VB PDT DT NN CC VBD PRP$ NN IN JJ JJ NN .\nOn Friday , Mr. Abbas met with U.S. Middle East envoy George Mitchell who traveled to the region in an effort to kick-start indirect Israeli-Palestinian peace talks .\tIN NNP , NNP NNP VBD IN NNP NNP NNP NN NNP NNP WP VBD TO DT NN IN DT NN TO VB JJ JJ NN NNS .\nMitchell also met on Friday with Israeli Prime Minister Benjamin Netanyahu , who said Israel is ' serious ' about restarting negotiations .\tNNP RB VBD IN NNP IN JJ NNP NNP NNP NNP , WP VBD NNP VBZ `` JJ `` IN VBG NNS .\nThe U.S. envoy is scheduled to meet with Mr. Netanyahu again on Sunday .\tDT NNP NN VBZ VBN TO VB IN NNP NNP RB IN NNP .\nMitchell said Friday the United States hopes to see a development to advance the peace process relatively soon .\tNNP VBD NNP DT NNP NNPS VBZ TO VB DT NN TO VB DT NN NN RB RB .\nThe United Nations food agency says it will run out of food for millions of hungry Kenyans unless donors immediately provide more aid .\tDT NNP NNP NN NN VBZ PRP MD VB IN IN NN IN NNS IN JJ NNS IN NNS RB VBP JJR NN .\nThe World Food Program says it has enough cereals to last until April , but will run out of other badly needed food items by the end of this month .\tDT NNP NNP NNP VBZ PRP VBZ RB NNS TO VB IN NNP , CC MD VB IN IN JJ RB VBN NN NNS IN DT NN IN DT NN .\nWFP officials said Saturday more aid must come within the next 10 days or the consequences will be catastrophic .\tNNP NNS VBD NNP JJR NN MD VB IN DT JJ CD NNS CC DT NNS MD VB JJ .\nA spokesman ( Peter Smerdon ) says the WFP has received just $ 28 million of the $ 225 million needed for the Kenya program .\tDT NN LRB NNP NNP RRB VBZ DT NNP VBZ VBN RB $ CD CD IN DT $ CD CD VBN IN DT NNP NN .\nKenyans have been dying of food shortages due to drought , and three-and-a-half million more people are on the brink of starvation .\tNNS VBP VBN VBG IN NN NNS JJ TO NN , CC JJ CD JJR NNS VBP IN DT NN IN NN .\nAt least 11 million people are facing starvation across East Africa .\tIN JJS CD CD NNS VBP VBG NN IN NNP NNP .\nThe president of the Organization of Petroleum Exporting Countries says the oil cartel should keep producing the current amount of oil and consider raising its quotas .\tDT NN IN DT NNP IN NNP NNP NNPS VBZ DT NN NN MD VB VBG DT JJ NN IN NN CC VB VBG PRP$ NNS .\nThe comments came Monday from OPEC President Sheikh Ahmad al-Fahd al-Sabah , who is also Kuwait 's oil minister .\tDT NNS VBD NNP IN NNP NNP NNP NNP NNP NNP , WP VBZ RB NNP POS NN NN .\nOPEC officials are scheduled to gather in Iran on March 16 to discuss oil supplies and prices .\tNNP NNS VBP VBN TO VB IN NNP IN NNP CD TO VB NN NNS CC NNS .\nWorld oil prices pushed above $ 52 a barrel Monday as forecasters said a winter storm would dump significant snow on the northeastern part of the United States , pushing up demand for heating oil .\tNNP NN NNS VBD IN $ CD DT NN NNP IN NNS VBD DT NN NN MD VB JJ NN IN DT JJ NN IN DT NNP NNPS , VBG RP NN IN NN NN .\nU.S. stock markets are making strong gains in Friday 's trading , with key stock indexes up as much as three percent .\tNNP NN NNS VBP VBG JJ NNS IN NNP POS NN , IN NN NN NNS RB RB JJ IN CD NN .\nTraders are watching as the U.S. House of Representatives considers a massive government-sponsored bailout plan for the financial sector .\tNNS VBP VBG IN DT NNP NNP IN NNP VBZ DT JJ JJ NN NN IN DT JJ NN .\nEuropean markets also posted strong gains .\tJJ NNS RB VBD JJ NNS .\nIt was a different story in Asia , where Japan 's benchmark Nikkei index fell two percent , and Hong Kong 's Hang Seng index was down nearly three percent .\tPRP VBD DT JJ NN IN NNP , WRB NNP POS JJ NNP NN VBD CD NN , CC NNP NNP POS NNP NNP NN VBD RB RB CD NN .\nChina has mobilized its huge army to guard against bird flu in its ranks after the country reported its fourth outbreak of the disease .\tNNP VBZ VBN PRP$ JJ NN TO VB IN NN NN IN PRP$ NNS IN DT NN VBD PRP$ JJ NN IN DT NN .\nThe People 's Liberation Army Daily newspaper said Saturday the 2.3-million-strong army should make urgent plans to detect the virus and stop its spread .\tDT NNS POS NNP NNP NNP NN VBD NNP DT JJ NN MD VB JJ NNS TO VB DT NN CC VB PRP$ NN .\nThe news came as Indonesian officials said a woman who died in October had bird flu , bringing the number of deaths in that country to five .\tDT NN VBD IN JJ NNS VBD DT NN WP VBD IN NNP VBD VBN NN , VBG DT NN IN NNS IN DT NN TO CD .\nA child related to the woman is being treated in a Jakarta hospital after testing positive for the disease , bringing the number of Indonesian cases to nine .\tDT NN VBN TO DT NN VBZ VBG VBN IN DT NNP NN IN VBG JJ IN DT NN , VBG DT NN IN JJ NNS TO CD .\nThe confirmation of the two cases Saturday came a day after China , Vietnam and Japan reported fresh outbreaks of bird flu in poultry .\tDT NN IN DT CD NNS NNP VBD DT NN IN NNP , NNP CC NNP VBD JJ NNS IN NN NN IN NN .\nA Serbian court has found 14 former Serb militia members guilty of the 1991 killings of more than 200 civilians outside the Croatian city of Vukovar .\tDT JJ NN VBZ VBN CD JJ JJ NN NNS JJ IN DT CD NNS IN JJR IN CD NNS IN DT JJ NN IN NNP .\nThe special court in Belgrade Monday sentenced the defendants including one woman to prison terms ranging from five to 20 years .\tDT JJ NN IN NNP NNP VBD DT NNS VBG CD NN TO NN NNS VBG IN CD CC CD NNS .\nIn November 1991 , Yugoslav troops rounded up the Croat victims from Vukovar hospital , where they awaited evacuation to safety , and took them to pits where firing squads shot them .\tIN NNP CD , JJ NNS VBD RP DT JJ NNS IN NNP NN , WRB PRP VBD NN TO NN , CC VBD PRP TO NNS WRB JJ NNS VBD PRP .\nThe bodies were discovered later in a mass grave at a farm outside of Vukovar .\tDT NNS VBD VBN RB IN DT NN NN IN DT NN IN IN NNP .\nThree Yugoslav military officers , General Mile Mrksic , Captain Miroslav Radic and Colonel Veselin Sljivancanin face trial before The Hague war crimes tribunal for their role in the deaths .\tCD JJ JJ NNS , NNP NNP NNP , NNP NNP NNP CC NNP NNP NNP NN NN IN DT NNP NN NNS JJ IN PRP$ NN IN DT NNS .\nThe United States said Friday it hopes India sends ' a clear message ' regarding human rights when Burma 's military leader visits New Delhi .\tDT NNP NNPS VBD NNP PRP VBZ NNP VBZ `` DT JJ NN `` VBG JJ NNS WRB NNP POS JJ NN NNS NNP NNP .\nA delegation including Burma 's senior general , Than Shwe , is expected to be in India for meetings next week .\tDT NN VBG NNP POS JJ NN , NNP NNP , VBZ VBN TO VB IN NNP IN NNS JJ NN .\nU.S. State Department spokesman P.J. Crowley said India should let Burma know that ' it needs to change its course . '\tNNP NNP NNP NN NNP NNP VBD NNP MD VB NNP VB IN `` PRP VBZ TO VB PRP$ NN . ``\nHe said Burma 's ruling military government needs to be told that it should ' constructively engage its opposition and other ethnic groups within Burma . '\tPRP VBD NNP POS VBG JJ NN VBZ TO VB VBN IN PRP MD `` RB VB PRP$ NN CC JJ JJ NNS IN NNP . ``\nHe also said Burma has a responsibility to protect ' the region against the risk of proliferation . '\tPRP RB VBD NNP VBZ DT NN TO VB `` DT NN IN DT NN IN NN . ``\nThan Shwe is expected to meet with Indian Prime Minister Manmohan Singh during his visit .\tNNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP NNP IN PRP$ NN .\nDeveloping countries say a U.N. climate change report being drafted in Thailand should acknowledge that poor nations contribute little to global warming , but suffer its worst effects .\tVBG NNS VBP DT NNP NN NN NN VBG VBN IN NNP MD VB IN JJ NNS VBP JJ TO JJ NN , CC VBP PRP$ JJS NNS .\nDelegates from poor nations attending the climate change conference in Bangkok this week also are demanding that rich countries share their cleaner energy-producing technologies .\tNNS IN JJ NNS VBG DT NN NN NN IN NNP DT NN RB VBP VBG IN JJ NNS VBP PRP$ NN NN NNS .\nA Sri Lankan delegate says some developing countries are forced to burn fossil fuels because they can not afford to develop more environmentally friendly methods of generating power .\tDT NNP NNP NN VBZ DT VBG NNS VBP VBN TO VB JJ NNS IN PRP MD RB VB TO VB RBR RB JJ NNS IN VBG NN .\nScientists and experts from about 120 countries are negotiating the contents of the U.N. climate change report , which is expected to be released at the end of the conference on Friday .\tNNS CC NNS IN IN CD NNS VBP VBG DT NNS IN DT NNP NN NN NN , WDT VBZ VBN TO VB VBN IN DT NN IN DT NN IN NNP .\nThe report by the Intergovernmental Panel on Climate Change is expected to call for the world to reduce greenhouse gas emissions by investing in renewable energy and reforestation .\tDT NN IN DT JJ NN IN NNP NNP VBZ VBN TO VB IN DT NN TO VB NN NN NNS IN VBG IN JJ NN CC NN .\nSomalia 's interim government remained deadlocked over peacekeeping troops Friday , after a contentious vote in the fledgling parliament erupted into a bloody brawl .\tNNP POS JJ NN VBD JJ IN VBG NNS NNP , IN DT JJ NN IN DT NN NN VBD IN DT JJ NN .\nA majority of parliamentarians voted Thursday against the Somali president 's call for peacekeepers from bordering states to help stabilize Somalia .\tDT NN IN NNS VBD NNP IN DT JJ NN POS NN IN NNS IN VBG NNS TO VB VB NNP .\nBut Prime Minister Mohamed Ali Gedi said the vote was flawed and must be held again .\tCC NNP NNP NNP NNP NNP VBD DT NN VBD VBN CC MD VB VBN RB .\nThe speaker of the parliament defended the vote , saying lawmakers would accept troops from states other than Ethiopia , Kenya and Djibouti , which they accuse of backing violent factions in Somalia .\tDT NN IN DT NN VBD DT NN , VBG NNS MD VB NNS IN NNS JJ IN NNP , NNP CC NNP , WDT PRP VBP IN VBG JJ NNS IN NNP .\nLawmakers came to blows after Thursday 's vote in the parliament , currently based in the Kenyan capital Nairobi .\tNNS VBD TO NNS IN NNP POS NN IN DT NN , RB VBN IN DT JJ NN NNP .\nChaos erupted with members of parliament throwing metal chairs and beating each other with walking sticks and clubs .\tNN VBD IN NNS IN NN VBG NN NNS CC VBG DT NN IN VBG NNS CC NNS .\nWorld No. 1 men 's tennis player Roger Federer of Switzerland has reached the semifinals of the Thailand Open men 's tennis tournament , but American Robby Ginepri is out of the event .\tNN NNP CD NNS POS NN NN NNP NNP IN NNP VBZ VBN DT NNS IN DT NNP NNP NNS POS NN NN , CC JJ NNP NNP VBZ IN IN DT NN .\nFederer , the top seed , scored a straight-set win over Gilles Muller of Luxembourg ( 06-Apr , 06-Mar ) .\tNNP , DT JJ NN , VBD DT JJ NN IN NNP NNP IN NNP LRB CD , CD RRB .\nIn the semifinals , the Swiss player faces Finland 's Jarkko Nieminen , a three-set winner over Yeu-Tzuoo Wang of Taiwan ( 06-Apr , 06-Jul , 06-Apr ) .\tIN DT NNS , DT JJ NN VBZ NNP POS NNP NNP , DT JJ NN IN NNP NNP IN NNP LRB CD , CD , CD RRB .\nThe other semifinal has Britain 's Andy Murray taking on hometown hero Paradorn Srichaphan of Thailand .\tDT JJ NN VBZ NNP POS NNP NNP VBG IN NN NN NNP NNP IN NNP .\nMurray ousted third-seeded American Ginepri ( 04-Jun , 06-Apr , 06-Mar ) .\tNNP VBD JJ JJ NNP LRB CD , CD , CD RRB .\nSrichaphan advanced when his opponent , second seed Lleyton Hewitt of Australia , withdrew with a groin injury .\tNNP VBD WRB PRP$ NN , JJ NN NNP NNP IN NNP , VBD IN DT NN NN .\nMarxist rebels have ambushed an army convoy in southern Colombia , killing eight soldiers and a civilian , and wounding four other soldiers .\tJJ NNS VBP VBN DT NN NN IN JJ NNP , VBG CD NNS CC DT JJ , CC VBG CD JJ NNS .\nAuthorities say the soldiers were traveling on a bridge in the jungle province of Putumayo Wednesday when the rebels known as the FARC detonated mines hidden on the span .\tNNS VBP DT NNS VBD VBG IN DT NN IN DT NN NN IN NNP NNP WRB DT NNS VBN IN DT NNP VBD NNS VBN IN DT NN .\nThe incident took place one day after the FARC attacked a military post in the southwestern village of Iscuande , killing 15 Marines and wounding 25 .\tDT NN VBD NN CD NN IN DT NNP VBD DT JJ NN IN DT JJ NN IN NNP , VBG CD NNPS CC VBG CD .\nColombia is mired in a long-running civil war involving leftist rebels , rightist paramilitaries and the government .\tNNP VBZ VBN IN DT JJ JJ NN VBG JJ NNS , JJ NNS CC DT NN .\nThe violence leaves thousands dead each year .\tDT NN VBZ NNS JJ DT NN .\nSouth Korea 's spy chief says North Korean leader Kim Jong Il appears to have recovered enough from a stroke to resume his ordinary duties .\tNNP NNP POS NN NN VBZ JJ JJ NN NNP NNP NNP VBZ TO VB VBN RB IN DT NN TO VB PRP$ JJ NNS .\nNational Intelligence Service chief Kim Sung-ho told lawmakers Tuesday that while North Korea 's autocratic leader is not completely fit , he appears well enough to run the country .\tNNP NNP NNP NN NNP NNP VBD NNS NNP IN IN NNP NNP POS JJ NN VBZ RB RB JJ , PRP VBZ RB JJ TO VB DT NN .\nThe South 's spy agency also believes Mr. Kim 's eldest son , Kim Jong Nam visited France last week .\tDT NNP POS NN NN RB VBZ NNP NNP POS JJS NN , NNP NNP NNP VBD NNP JJ NN .\nSouth Korea 's Yonhap news agency quotes the spy chief as saying Mr. Kim 's son traveled to France to meet his father 's neurosurgeon .\tNNP NNP POS NNP NN NN VBZ DT NN NN IN VBG NNP NNP POS NN VBD TO NNP TO VB PRP$ NN POS NN .\nNorth Korea denies Mr. Kim is ill , even though he has not been seen in public since mid-August and missed several anniversary celebrations .\tNNP NNP VBZ NNP NNP VBZ RB , RB IN PRP VBZ RB VBN VBN IN JJ IN NNP CC VBD JJ NN NNS .\nSouth Korean and U.S. officials say Mr. Kim suffered a stroke in August .\tJJ JJ CC NNP NNS VBP NNP NNP VBD DT NN IN NNP .\nJapanese carmaker Toyota Motor Corporation is reported to be considering letting Fuji Heavy Industries use its hybrid vehicle technology .\tJJ NN NNP NNP NNP VBZ VBN TO VB VBG VBG NNP NNP NNPS VBP PRP$ JJ NN NN .\nUnder the plan reported by the Nihon Keizai business daily , Fuji would use Toyota 's hybrid system in its Subaru vehicles .\tIN DT NN VBN IN DT NNP NNP NN RB , NNP MD VB NNP POS JJ NN IN PRP$ NNP NNS .\nIf the two companies reach an agreement , Toyota 's hybrid technology would become the dominant system in the world .\tIN DT CD NNS VBP DT NN , NNP POS JJ NN MD VB DT JJ NN IN DT NN .\nFuji sells 35 percent of its Subaru line in the North American market .\tNNP VBZ CD NN IN PRP$ NNP NN IN DT JJ JJ NN .\nToyota has pioneered the hybrid vehicle , which combines a conventional fuel-powered engine with an electric motor , making the car more economical and environmentally-friendly .\tNNP VBZ VBN DT JJ NN , WDT VBZ DT JJ JJ NN IN DT JJ NN , VBG DT NN RBR JJ CC RB .\nU.S. automaker General Motors , which holds a majority stake in Fuji Heavy , has formed a partnership with rival DaimlerChrysler to develop its own hybrid technology .\tNNP NN NNP NNPS , WDT VBZ DT NN NN IN NNP NNP , VBZ VBN DT NN IN JJ NNP TO VB PRP$ JJ JJ NN .\nSouth Korean authorities have destroyed thousands of ducks at four southern farms , after discovering what they call a ' low pathogenic ' strain of the bird flu virus .\tJJ JJ NNS VBP VBN NNS IN NNS IN CD JJ NNS , IN VBG WP PRP VBP DT `` JJ JJ `` NN IN DT NN NN NN .\nOfficials say the virus turned up on a farm near the southern city of Gwangju , about 250 kilometers south of Seoul .\tNNS VBP DT NN VBD RP IN DT NN IN DT JJ NN IN NNP , IN CD NNS RB IN NNP .\nAs a precaution , they destroyed 3,800 ducks on that farm and more than 12,000 at three other farms in the area .\tIN DT NN , PRP VBD CD NNS IN DT NN CC JJR IN CD IN CD JJ NNS IN DT NN .\nThis case of bird flu is a strain , known as H7 that is not highly contagious to humans .\tDT NN IN NN NN VBZ DT NN , VBN IN NNP WDT VBZ RB RB JJ TO NNS .\nSouth Korea 's poultry exports were hit hard by seven outbreaks of the potentially deadly H5N1 strain of bird flu between November 2006 and March of this year .\tNNP NNP POS NN NNS VBD VBN RB IN CD NNS IN DT RB JJ NNP NN IN NN NN IN NNP CD CC NNP IN DT NN .\nThe World Health Organization says at least 206 people have died from that strain of bird flu since 2003 .\tDT NNP NNP NNP VBZ IN JJS CD NNS VBP VBN IN DT NN IN NN NN IN CD .\nNo human deaths have been reported in South Korea .\tDT JJ NNS VBP VBN VBN IN NNP NNP .\nThe European Union is hailing the re-election of pro-Western Serbian President Boris Tadic , saying it proves Serbia 's commitment to mainstream Europe .\tDT NNP NNP VBZ VBG DT NN IN JJ JJ NNP NNP NNP , VBG PRP VBZ NNP POS NN TO NN NNP .\nIn a congratulatory note Monday , European Commission President Jose Manuel Barroso called Mr. Tadic 's win Sunday a victory for democracy and European values .\tIN DT JJ NN NNP , JJ NNP NNP NNP NNP NNP VBD NNP NNP POS NN NNP DT NN IN NN CC JJ NNS .\nBoth Germany and Austria also promised more support for Serbia 's move toward eventual EU membership .\tDT NNP CC NNP RB VBD JJR NN IN NNP POS NN IN JJ NNP NN .\nSenior Russian lawmakers said Mr. Tadic 's win assured that good bilateral relations will continue .\tJJ JJ NNS VBD NNP NNP POS NN VBD IN JJ JJ NNS MD VB .\nMr. Tadic narrowly defeated ultra-nationalist challenger Tomislav Nikolic by a margin of 51 to 48 percent .\tNNP NNP RB VBD JJ NN NNP NNP IN DT NN IN CD TO CD NN .\nBoth candidates opposed independence for Serbia 's breakaway Kosovo province , where ethnic Albanian leaders are expected to declare independence from Belgrade in coming weeks .\tDT NNS VBD NN IN NNP POS JJ NNP NN , WRB JJ JJ NNS VBP VBN TO VB NN IN NNP IN VBG NNS .\nLast week , European nations agreed to support closer ties with Serbia , in a push to counter anti-Western anger over Kosovo 's pending declaration of independence .\tJJ NN , JJ NNS VBD TO VB JJR NNS IN NNP , IN DT NN TO VB JJ NN IN NNP POS VBG NN IN NN .\nThe sandy brown Quagga Zebra ( pronounced qua-ha ) was hunted to extinction more than 100 years ago .\tDT JJ NN NNP NNP LRB JJ NN RRB VBD VBN TO VB JJR IN CD NNS RB .\nBut when scientists learned it was not a unique species but a subspecies of the Plains Zebra , the Quagga Project was started by South African Reinhold Rau to bring the animal back .\tCC WRB NNS VBD PRP VBD RB DT JJ NNS CC DT NNS IN DT NNP NNP , DT NNP NNP VBD VBN IN NNP NNP NNP NNP TO VB DT NN RB .\nVOA 's Paul Sisco has more on a unique scientific endeavor .\tNNP POS NNP NNP VBZ RBR IN DT JJ JJ NN .\nPakistan Peoples Party Chairman Asif Zardari says Pakistan 's government is not strong enough to oust President Pervez Musharraf .\tNNP NNP NNP NNP NNP NNP VBZ NNP POS NN VBZ RB JJ RB TO VB NNP NNP NNP .\nZardari says , in an interview with the British Broadcasting Corporation , that the new coalition government does not have the two-thirds majority in parliament necessary to impeach the president .\tNNP VBZ , IN DT NN IN DT NNP NNP NNP , IN DT JJ NN NN VBZ RB VB DT NNS NN IN NN JJ TO VB DT NN .\nZardari adds that a confrontation between Mr. Musharraf and the new government could prolong instability in Pakistan .\tNNP VBZ IN DT NN IN NNP NNP CC DT JJ NN MD VB NN IN NNP .\nHe says the government has other problems to work on , besides going after Mr. Musharraf .\tPRP VBZ DT NN VBZ JJ NNS TO VB IN , IN VBG IN NNP NNP .\nZardari has formed a coalition with the political party of former prime minister Nawaz Sharif .\tNNP VBZ VBN DT NN IN DT JJ NN IN JJ JJ NN NNP NNP .\nThe new government has said it will remove the president 's powers to dissolve parliament , and will reinstate top judges fired by Mr. Musharraf under emergency rule last year .\tDT JJ NN VBZ VBN PRP MD VB DT NN POS NNS TO VB NN , CC MD VB JJ NNS VBN IN NNP NNP IN NN NN JJ NN .\nU.S. Secretary of State Condoleezza Rice says all parties in the multilateral talks on North Korea 's nuclear weapons program are united in the view that there has to be a non-nuclear Korean peninsula .\tNNP NNP IN NNP NNP NNP VBZ DT NNS IN DT JJ NNS IN NNP NNP POS JJ NNS NN VBP VBN IN DT NN IN EX VBZ TO VB DT JJ JJ NN .\nShe made the comments Wednesday on the way back to the United States after an Asian tour , just days after North Korea announced it will end a yearlong boycott and return to disarmament talks July 25 .\tPRP VBD DT NNS NNP IN DT NN RB TO DT NNP NNPS IN DT JJ NN , RB NNS IN NNP NNP VBD PRP MD VB DT JJ NN CC NN TO NN NNS NNP CD .\nMs. Rice said the United States and its four allies must work intensively so they provide a common front when talks resume .\tNNP NNP VBD DT NNP NNPS CC PRP$ CD NNS MD VB RB RB PRP VBP DT JJ NN WRB NNS VBP .\nEarlier Wednesday , North Korean leader Kim Jong-il told a Chinese envoy in Pyongyang his country 's goal is a nuclear-free Korean peninsula , and added he hopes the six-party talks can be the first step .\tRBR NNP , JJ JJ NN NNP NNP VBD DT JJ NN IN NNP PRP$ NN POS NN VBZ DT JJ JJ NN , CC VBD PRP VBZ DT JJ NNS MD VB DT JJ NN .\nU.S. military officials in Afghanistan say coalition forces have killed at least 40 insurgents in the southern part of the country .\tNNP JJ NNS IN NNP VBP NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN IN DT NN .\nThe military says the rebels were killed during an operation in a remote part of southeastern Pakitka province , bordering Pakistan .\tDT JJ VBZ DT NNS VBD VBN IN DT NN IN DT JJ NN IN JJ NNP NN , VBG NNP .\nThe attack was part of an offensive that began Wednesday in the region .\tDT NN VBD NN IN DT NN WDT VBD NNP IN DT NN .\nThe offensive , Operation Mountain Thrust , is the largest since U.S. forces invaded Afghanistan in late 2001 to oust the Taleban .\tDT NN , NNP NNP NNP , VBZ DT JJS IN NNP NNS VBD NNP IN JJ CD TO VB DT NNP .\nSome 10,000 Afghan and coalition troops are targeting the Taleban 's traditional stronghold in four southern provinces - Kandahar , Helmand , Uruzgan and Zabol .\tDT CD JJ CC NN NNS VBP VBG DT NNP POS JJ NN IN CD JJ NNS IN NNP , NNP , NNP CC NNP .\nEarlier Thursday , the Taleban claimed responsibility for a bomb blast on a bus in the southern city of Kandahar that killed at least eight people and wounded at least 15 others .\tRBR NNP , DT NNP VBD NN IN DT NN NN IN DT NN IN DT JJ NN IN NNP WDT VBD IN JJS CD NNS CC VBD IN JJS CD NNS .\nPope Benedict has opened four days of ceremonies leading to the Christian observance of Easter , with a call for the faithful to find TRUE freedom by submitting to the will of God .\tNNP NNP VBZ VBN CD NNS IN NNS VBG TO DT JJ NN IN NNP , IN DT NN IN DT NN TO VB JJ NN IN VBG TO DT NN IN NNP .\nBenedict 's Holy Thursday plea came at a mass that included participation by clergy from the diocese of Rome .\tNNP POS NNP NNP NN VBD IN DT NN WDT VBD NN IN NN IN DT NN IN NNP .\nDuring the service , he also blessed oils that will be used in the coming year in church rituals .\tIN DT NN , PRP RB VBD NNS WDT MD VB VBN IN DT JJ NN IN NN NNS .\nThe pontiff will celebrate a second mass later Thursday , commemorating the biblical Last Supper of Jesus and his apostles .\tDT NN MD VB DT JJ NN RB NNP , VBG DT JJ JJ NN IN NNP CC PRP$ NNS .\nDuring that ceremony , the pope will symbolically wash the feet of 12 men .\tIN DT NN , DT NN MD RB VB DT NNS IN CD NNS .\nChristian liturgy says Jesus washed the feet of his 12 apostles on the evening before his crucifixion .\tNNP NN VBZ NNP VBD DT NNS IN PRP$ CD NNS IN DT NN IN PRP$ NN .\nOn Easter Sunday -- the holiest day of the Christian calendar -- Christians will commemorate what they believe was the resurrection of Jesus .\tIN NNP NNP IN DT JJS NN IN DT NNP NN : NNPS MD VB WP PRP VBP VBD DT NN IN NNP .\nMexican President Vicente Fox is continuing his tour of the western United States that coincides with a debate in the U.S. Senate on immigration reform .\tJJ NNP NNP NNP VBZ VBG PRP$ NN IN DT JJ NNP NNPS WDT VBZ IN DT NN IN DT NNP NNP IN NN NN .\nMr. Fox is addressing a special meeting of the Utah state legislature Wednesday .\tNNP NNP VBZ VBG DT JJ NN IN DT NNP NN NN NNP .\nHe then travels on to Washington state , where he is to speak with Mexican laborers .\tPRP RB VBZ IN TO NNP NN , WRB PRP VBZ TO VB IN JJ NNS .\nOn Tuesday , at the start of his four-day trip , Mr. Fox told an audience in Utah that building a fence along the U.S.-Mexico border is not the answer to the immigration problem .\tIN NNP , IN DT NN IN PRP$ JJ NN , NNP NNP VBD DT NN IN NNP IN VBG DT NN IN DT JJ NN VBZ RB DT NN TO DT NN NN .\nThe U.S. Senate is considering legislation to strengthen border security , including putting increased fencing along the border .\tDT NNP NNP VBZ VBG NN TO VB NN NN , VBG VBG VBN VBG IN DT NN .\nPresident Bush said last week it makes sense to use fencing in key border areas .\tNNP NNP VBD JJ NN PRP VBZ NN TO VB NN IN JJ NN NNS .\nMr. Fox also heads to California , where he is to meet with that state 's governor , Arnold Schwarzenegger , as well as with Los Angeles Mayor Antonio Villaraigosa , who is Mexican-American .\tNNP NNP RB VBZ TO NNP , WRB PRP VBZ TO VB IN DT NN POS NN , NNP NNP , RB RB IN IN NNP NNP NNP NNP NNP , WP VBZ JJ .\nPakistani security officials say U.S. drone strikes in northwestern Pakistan have killed at least 15 people , most of them militants .\tJJ NN NNS VBP NNP NN NNS IN JJ NNP VBP VBN IN JJS CD NNS , JJS IN PRP NNS .\nThere were three drone attacks reported Saturday in the North Waziristan tribal region , a suspected hideout for al-Qaida and Taliban fighters .\tEX VBD CD NN NNS VBD NNP IN DT NNP NNP JJ NN , DT JJ NN IN NNP CC NNP NNS .\nAuthorities say the first attack killed at least seven people .\tNNS VBP DT JJ NN VBN IN JJS CD NNS .\nIt was followed by a drone strike that left at least four people dead .\tPRP VBD VBN IN DT NN NN WDT VBD IN JJS CD NNS JJ .\nThe third strike killed four militants when it struck their vehicle near Miranshah , the main town in North Waziristan .\tDT JJ NN VBD CD NNS WRB PRP VBD PRP$ NN IN NNP , DT JJ NN IN NNP NNP .\nThe strikes come a day after a missile attack in the same area killed at least five people .\tDT NNS VBP DT NN IN DT NN NN IN DT JJ NN VBD IN JJS CD NNS .\nNorth Waziristan , located near the Afghan border , is a frequent target of U.S. missile strikes because al-Qaida and Taliban leaders are believed based there .\tNNP NNP , VBN IN DT JJ NN , VBZ DT JJ NN IN NNP NN NNS IN NNP CC NNP NNS VBP VBN VBN RB .\nVisiting French President Jacques Chirac has assured Japan that lifting Europe 's embargo on weapons to China will not result in an increase in weapons sales .\tVBG JJ NNP NNP NNP VBZ VBN NNP IN VBG NNP POS NN IN NNS TO NNP MD RB VB IN DT NN IN NNS NNS .\nSpeaking at a joint news conference in Tokyo after a meeting Sunday with Prime Minister Junichiro Koizumi , Mr. Chirac said he told the Japanese leader that no sensitive technology would be transferred to Beijing .\tVBG IN DT JJ NN NN IN NNP IN DT NN NNP IN NNP NNP NNP NNP , NNP NNP VBD PRP VBD DT JJ NN IN DT JJ NN MD VB VBN TO NNP .\nMr. Chirac said China 's request to lift the arms embargo was legitimate and the reason for lifting the ban was political , aimed at normalizing ties .\tNNP NNP VBD NNP POS NN TO VB DT NNS NN VBD JJ CC DT NN IN VBG DT NN VBD JJ , VBN IN VBG NNS .\nMr. Koizumi repeated Japan 's opposition to lifting the embargo , imposed after China 's bloody crackdown on pro-democracy protesters in 1989 .\tNNP NNP VBD NNP POS NN TO VBG DT NN , VBN IN NNP POS JJ NN IN JJ NNS IN CD .\nFrance has been a prime supporter of ending the ban , a move opposed by both the United States and Japan .\tNNP VBZ VBN DT JJ NN IN VBG DT NN , DT NN VBN IN DT DT NNP NNPS CC NNP .\nA fourth Venezuelan opposition party has pulled out of Sunday 's congressional elections , saying it was concerned the balloting would not be fair .\tDT JJ JJ NN NN VBZ VBN IN IN NNP POS JJ NNS , VBG PRP VBD VBN DT NN MD RB VB JJ .\nThe Justice First party announced its decision Wednesday , one day after the Democratic Action , Project Venezuela and Copei parties announced their withdrawal .\tDT NNP NNP NN VBD PRP$ NN NNP , CD NN IN DT JJ NNP , NNP NNP CC NNP NNS VBD PRP$ NN .\nThose parties say they are boycotting the vote because the electoral council is biased .\tDT NNS VBP PRP VBP VBG DT NN IN DT JJ NN VBZ VBN .\nState Department spokesman Sean McCormack Wednesday denied U.S. involvement in the withdrawals , after Venezuelan President Hugo Chavez accused the United States of interfering in the country 's electoral process .\tNNP NNP NN NNP NNP NNP VBD NNP NN IN DT NNS , IN JJ NNP NNP NNP VBD DT NNP NNPS IN VBG IN DT NN POS JJ NN .\nOpposition leaders have proposed postponing the vote until they can be assured of a free and fair election .\tNN NNS VBP VBN VBG DT NN IN PRP MD VB VBN IN DT JJ CC JJ NN .\nVenezuelan Vice President Jose Vicente Rangel has denied the accusations and insists the elections will be fair .\tJJ NNP NNP NNP NNP NNP VBZ VBN DT NNS CC VBZ DT NNS MD VB JJ .\nKazakhstan 's long-time ruler has rejected a motion from parliament to extend his rule through a referendum , rather than through a scheduled election .\tNNP POS JJ NN VBZ VBN DT NN IN NN TO VB PRP$ NN IN DT NN , RB IN IN DT VBN NN .\nPresident Nursultan Nazarbayev issued a decree Friday rejecting the initiative that could have allowed the popular president to continue to rule unchallenged until 2020 .\tNNP NNP NNP VBD DT NN NNP VBG DT NN WDT MD VB VBN DT JJ NN TO VB TO VB JJ IN CD .\nThe U.S. Embassy in Almaty strongly disapproved of the proposal , saying it would be a ' setback for democracy in Kazakhstan . '\tDT NNP NNP IN NNP RB VBD IN DT NN , VBG PRP MD VB DT `` NN IN NN IN NNP . ``\nMr. Nazarbayev has ruled the former Soviet state for the past 20 years .\tNNP NNP VBZ VBN DT JJ JJ NN IN DT JJ CD NNS .\nHis supporters celebrate him for bolstering Kazakhstan 's economy with investments in energy and development .\tPRP$ NNS VBP PRP IN VBG NNP POS NN IN NNS IN NN CC NN .\nBut his critics accuse him of clamping down on human rights and democracy .\tCC PRP$ NNS VBP PRP IN VBG RP IN JJ NNS CC NN .\nIsrael 's Labor party has voted to quit the ruling coalition of Prime Minister Ariel Sharon , paving the way for early national elections .\tNNP POS NN NN VBZ VBN TO VB DT NN NN IN NNP NNP NNP NNP , VBG DT NN IN JJ JJ NNS .\nLabor 's Central Committee approved the recommendation of party leader Amir Peretz by an overwhelming show of hands Sunday evening .\tNNP POS NNP NNP VBD DT NN IN NN NN NNP NNP IN DT JJ NN IN NNS NNP NN .\nLast week , Mr. Sharon and Mr. Peretz agreed that early elections would be held by the end of March .\tJJ NN , NNP NNP CC NNP NNP VBD IN JJ NNS MD VB VBN IN DT NN IN NNP .\nA date for the polls is expected this week or next .\tDT NN IN DT NNS VBZ VBN DT NN CC JJ .\nThe Labor party joined Mr. Sharon 's Likud-led coalition last year to help the prime minister defeat Likud rightists who tried unsuccessfully to block Israel 's withdrawal from the Gaza Strip .\tDT NNP NN VBD NNP NNP POS JJ NN JJ NN TO VB DT JJ NN NN NNP NNS WP VBD RB TO VB NNP POS NN IN DT NNP NNP .\nMr. Peretz said last week he would pull Labor out of the coaltion over differences in economic policy .\tNNP NNP VBD JJ NN PRP MD VB NNP IN IN DT NN IN NNS IN JJ NN .\nIt is unclear whether Mr. Sharon will remain in Likud or form a new party before the polls .\tPRP VBZ JJ IN NNP NNP MD VB IN NNP CC VB DT JJ NN IN DT NNS .\nPalestinian President Mahmoud Abbas met with Pope Benedict XVI at the Vatican Thursday .\tJJ NNP NNP NNP VBD IN NNP NNP NNP IN DT NNP NNP .\nThe two men spoke privately for 15 minutes and addressed the subject of Mr. Abbas 's meeting last month with Israeli Prime Minister Benjamin Netanyahu and U.S. President Barack Obama in New York .\tDT CD NNS VBD RB IN CD NNS CC VBD DT NN IN NNP NNP POS NN JJ NN IN JJ NNP NNP NNP NNP CC NNP NNP NNP NNP IN NNP NNP .\nMr. Abbas presented the Holy See with a piece of ceramic art depicting Jerusalem with the words ' Jerusalem , Capital of Arab Culture ' written on it in both Arabic and English .\tNNP NNP VBD DT NNP NNP IN DT NN IN JJ NN VBG NNP IN DT NNS `` NNP , NNP IN NNP NNP `` VBN IN PRP IN DT NNP CC NNP .\nPope Benedict toured the Middle East in May of this year , where he met separately with Mr. Abbas and Mr. Netanyahu .\tNNP NNP VBD DT NNP NNP IN NNP IN DT NN , WRB PRP VBD RB IN NNP NNP CC NNP NNP .\nThe pope has said Israel has the right to enjoy peace and security within its borders and the Palestinian people have a right to a sovereign independent homeland .\tDT NN VBZ VBN NNP VBZ DT NN TO VB NN CC NN IN PRP$ NNS CC DT JJ NNS VBP DT NN TO DT JJ JJ NN .\nAfter his visit to the Middle East , the pontiff declared that peace in the region is possible .\tIN PRP$ NN TO DT NNP NNP , DT NN VBD DT NN IN DT NN VBZ JJ .\nA spokesman for the Taliban in Pakistan is quoted Saturday as denying a U.S. media report that Osama bin Laden 's chief deputy , Ayman al-Zawahiri , has been killed or wounded .\tDT NN IN DT NNP IN NNP VBZ VBN NNP IN VBG DT NNP NNS NN IN NNP NNP NNP POS JJ NN , NNP NNP , VBZ VBN VBN CC VBN .\nThe spokesman called Friday 's report by CBS News ' baseless . '\tDT NN VBD NNP POS NN IN NNP NNP `` NN . ``\nPakistani officials say they have not seen any evidence to support the claim that al-Qaida 's second-in-command was hit in missile strike Monday in South Waziristan , near the Afghan border .\tJJ NNS VBP PRP VBP RB VBN DT NN TO VB DT NN IN NNP POS NN VBD VBN IN NN NN NNP IN NNP NNP , IN DT JJ NN .\nCBS said it based its report on an intercepted letter from a Pakistani Taliban commander that said Zawahiri needed medical treatment after the military strike .\tNNP VBD PRP VBD PRP$ NN IN DT JJ NN IN DT JJ NNP NN WDT VBD NNP VBD JJ NN IN DT JJ NN .\nIn other news , security officials say six police officers were killed Saturday when a bomb exploded in northwestern Pakistan 's Swat valley .\tIN JJ NN , NN NNS VBP CD NNS NNS VBD VBN NNP WRB DT NN VBD IN JJ NNP POS NNP NN .\nThey say the bomb was detonated by remote control as a vehicle passed .\tPRP VBP DT NN VBD VBN IN JJ NN IN DT NN VBN .\nGovernment security forces are battling pro-Taliban militants in the northwestern region .\tNN NN NNS VBP VBG JJ NNS IN DT JJ NN .\nSri Lanka 's baby tsunami survivor has been reunited with his parents , ending weeks of controversy .\tNNP NNP POS NN NN NN VBZ VBN VBN IN PRP$ NNS , VBG NNS IN NN .\nThe four-month-old boy , known as ' Baby 81 ' , was handed over to his parents in a court Wednesday , after DNA tests confirmed the TRUE parents .\tDT JJ NN , VBN IN `` NNP CD `` , VBD VBN IN TO PRP$ NNS IN DT NN NNP , IN NN NNS VBD DT JJ NNS .\nNine couples originally claimed the boy , but only one couple ( Murugupillai and Jenita Jeyarajah ) formally filed for custody .\tCD NNS RB VBD DT NN , CC RB CD NN LRB NNP CC NNP NNP RRB RB VBN IN NN .\nThe infant was found alive among debris on Sri Lanka 's east coast hours after the tsunami struck on December 26 .\tDT NN VBD VBN JJ IN NN IN NNP NNP POS JJ NN NNS IN DT NN VBD IN NNP CD .\nHong Kong 's government says two dead birds , a crested myna and a chicken , have tested positive for the H5N1 strain of bird flu .\tNNP NNP POS NN VBZ CD JJ NNS , DT JJ NN CC DT NN , VBP VBN JJ IN DT NNP NN IN NN NN .\nAuthorities say three villagers may have come into contact with the infected chicken , and are being isolated in a hospital .\tNNS VBP CD NNS MD VB VBN IN NN IN DT JJ NN , CC VBP VBG VBN IN DT NN .\nThey say the three people are being tested for bird flu , but have shown no obvious symptoms .\tPRP VBP DT CD NNS VBP VBG VBN IN NN NN , CC VBP VBN DT JJ NNS .\nThe dead chicken was purchased by a Hong Kong villager in mainland China .\tDT JJ NN VBD VBN IN DT NNP NNP NN IN JJ NNP .\nThe dead myna was found in a playground in an urban area of Hong Kong .\tDT JJ NN VBD VBN IN DT NN IN DT JJ NN IN NNP NNP .\nAuthorities say they will close a local bird sanctuary and all public aviaries beginning Thursday as a precaution .\tNNS VBP PRP MD VB DT JJ NN NN CC DT JJ NNS VBG NNP IN DT NN .\nSyria has called on the leader of Lebanon 's parliamentary majority to provide proof of alleged Syrian assassination plots against him and the Lebanese prime minister .\tNNP VBZ VBN IN DT NN IN NNP POS JJ NN TO VB NN IN JJ JJ NN NNS IN PRP CC DT JJ JJ NN .\nSyria 's state-run news agency , SANA , Wednesday quotes an unidentified Syrian official as saying the allegations by Lebanese lawmaker Saad Hariri are fabricated .\tNNP POS JJ NN NN , NNP , NNP VBZ DT JJ JJ NN IN VBG DT NNS IN JJ NN NNP NNP VBP VBN .\nThe official called on Hariri to present evidence of the assassination plots to the public .\tDT NN VBD IN NNP TO JJ NN IN DT NN NNS TO DT NN .\nHariri told reporters in Cairo Tuesday he has information about Syrian plots to kill him and Lebanese Prime Minister Fuad Siniora , though he did not elaborate .\tNNP VBD NNS IN NNP NNP PRP VBZ NN IN JJ NNS TO VB PRP CC JJ NNP NNP NNP NNP , IN PRP VBD RB VB .\nA number of anti-Syrian figures have been murdered in Lebanon in recent years , including lawmaker Antoine Ghanem in September .\tDT NN IN JJ NNS VBP VBN VBN IN NNP IN JJ NNS , VBG NN NNP NNP IN NNP .\nSyria has denied involvement in any of the attacks .\tNNP VBZ VBN NN IN DT IN DT NNS .\nSaad Hariri 's father , former Lebanese Prime Minister Rafik Hariri , was killed by a truck bomb blast in 2005 in Beirut .\tNNP NNP POS NN , JJ JJ NNP NNP NNP NNP , VBD VBN IN DT NN NN NN IN CD IN NNP .\nFormer world number one women 's tennis player Martina Hingis of Switzerland has reached the semifinals of the Australian women 's hard court tournament in Gold Coast .\tJJ NN NN CD NNS POS NN NN NNP NNP IN NNP VBZ VBN DT NNS IN DT JJ NNS POS JJ NN NN IN NNP NNP .\nHingis , playing in her first full event since coming out of retirement , beat Spain 's Nuria Llagostera Vives in three sets ( 06-Feb , 04-Jun , 6-0 ) .\tNNP , VBG IN PRP$ JJ JJ NN IN VBG IN IN NN , VBD NNP POS NNP NNP NNS IN CD NNS LRB CD , CD , CD RRB .\nIn the semifinals , Hingis takes on fourth-seed Flavia Pennetta of Italy , a three-set winner over Tatiana Golovin of France ( 06-Feb , 05-Jul , 06-Mar ) .\tIN DT NNS , NNP VBZ IN JJ NNP NNP IN NNP , DT JJ NN IN NNP NNP IN NNP LRB CD , CD , CD RRB .\nThe other semifinal has third-seeded Dinara Safina of Russia facing Lucie Safarova of the Czech Republic .\tDT JJ NN VBZ JJ NNP NNP IN NNP VBG NNP NNP IN DT JJ NNP .\nSafina ousted Anabel Medina Garrigues of Spain in straight sets ( 06-Jan , 06-Mar ) .\tNNP VBD NNP NNP NNP IN NNP IN JJ NNS LRB CD , CD RRB .\nSafarova scored an upset win over top seed Patty Schnyder of Switzerland ( 06-Apr , 06-Mar ) .\tNNP VBD DT JJ NN IN JJ NN NNP NNP IN NNP LRB CD , CD RRB .\nChilean presidential candidate Michelle Bachelet remains the front-runner for Sunday 's runoff election , as the final day of campaigning draws to a close .\tJJ JJ NN NNP NNP VBZ DT NN IN NNP POS NN NN , IN DT JJ NN IN NN VBZ TO DT NN .\nPoll results issued Thursday suggest the socialist Bachelet will get some 45 percent of the vote on Sunday , compared to 40 percent for her rival , businessman Sebastian Pinera , the candidate of a rightist alliance .\tNNP NNS VBN NNP VBP DT NN NNP MD VB DT CD NN IN DT NN IN NNP , VBN TO CD NN IN PRP$ NN , NN NNP NNP , DT NN IN DT JJ NN .\nFifteen percent of the 1,200 people surveyed last week said they were undecided .\tCD NN IN DT CD NNS VBN JJ NN VBD PRP VBD JJ .\nIf elected , Bachelet will become Chile 's first female president .\tIN VBN , NNP MD VB NNP POS JJ NN NN .\nShe shares her center-left support base with current President Richard Lagos , under whom she served as defense minister .\tPRP VBZ PRP$ JJ NN NN IN JJ NNP NNP NNP , IN WP PRP VBD IN NN NN .\nBachelet won Chile 's first round of elections in December with 46 percent of the vote , just short of the 50 percent needed to avoid a runoff .\tNNP VBD NNP POS JJ NN IN NNS IN NNP IN CD NN IN DT NN , RB RB IN DT CD NN VBN TO VB DT NN .\nIndonesian police say they have identified the third suicide bomber in the October 1 attacks on Bali that killed 20 people dead along with the bombers .\tJJ NNS VBP PRP VBP VBN DT JJ NN NN IN DT NNP CD NNS IN NNP WDT VBD CD NNS JJ IN IN DT NNS .\nA police spokesman , Inspector General Aryanto Boedihardjo , said the bomber was Aip Hidayat , from Ciamis regency West Java .\tDT NN NN , NNP NNP NNP NNP , VBD DT NN VBD NNP NNP , IN NNP NN NNP NNP .\nThe spokesman said police are comparing DNA samples from the family to confirm the bomber 's identity .\tDT NN VBD NNS VBP VBG NN NNS IN DT NN TO VB DT NN POS NN .\nHe and two other bombers identified earlier , Salik Firdaus , Misno , reportedly videotaped a statement before launching the restaurant attacks .\tPRP CC CD JJ NNS VBN RB , NNP NNP , NNP , RB VBD DT NN IN VBG DT NN NNS .\nThe video was seized from the hideout of Malaysian bomb expert Azahari Husin , who was killed November 9 in a shootout with security officers in Batu in eastern Java .\tDT NN VBD VBN IN DT NN IN JJ NN NN NNP NNP , WP VBD VBN NNP CD IN DT NN IN NN NNS IN NNP IN JJ NNP .\nThe triple suicide bombings last month were the second major bomb attack on Bali after a blast three years ago killed 202 people .\tDT JJ NN NNS JJ NN VBD DT JJ JJ NN NN IN NNP IN DT NN CD NNS RB VBD CD NNS .\nColombia 's government has announced the end of a dispute with Venezuela over the capture of a Colombian leftist rebel leader by bounty hunters on Venezuelan soil .\tNNP POS NN VBZ VBN DT NN IN DT NN IN NNP IN DT NN IN DT JJ JJ NN NN IN NN NNS IN JJ NN .\nBogota released a statement Friday , saying the incident between the South American neighbors has been resolved , and that Colombian President Alvaro Uribe will meet with his Venezuelan counterpart , Hugo Chavez , on February 3 in Venezuela .\tNNP VBD DT NN NNP , VBG DT NN IN DT JJ JJ NNS VBZ VBN VBN , CC IN JJ NNP NNP NNP MD VB IN PRP$ JJ NN , NNP NNP , IN NNP CD IN NNP .\nOfficials in Caracas welcomed the development .\tNNS IN NNP VBD DT NN .\nColombia has acknowledged paying bounty hunters to capture Rodrigo Granda from Caracas and take him back to Colombia .\tNNP VBZ VBN VBG NN NNS TO VB NNP NNP IN NNP CC VB PRP RB TO NNP .\nMr. Granda is a member of the rebel group known as the FARC .\tNNP NNP VBZ DT NN IN DT NN NN VBN IN DT NNP .\nVenezuela accused Colombia of violating Venezuela 's sovereignty in what it says was a kidnapping .\tNNP VBD NNP IN VBG NNP POS NN IN WP PRP VBZ VBD DT NN .\nColombia denied the accusation , saying the capture was a legitimate part of its war against the rebels .\tNNP VBD DT NN , VBG DT NN VBD DT JJ NN IN PRP$ NN IN DT NNS .\nNorth Korea says it will delay a scheduled round of high level inter-Korean talks , because of an upcoming joint military exercise between South Korea and the United States .\tNNP NNP VBZ PRP MD VB DT JJ NN IN JJ NN JJ NNS , IN IN DT JJ JJ JJ NN IN NNP NNP CC DT NNP NNPS .\nThe official Korean Central News Agency Saturday referred to the war games as ' hostile ' , and said the drills can not be conducted alongside peaceful talks .\tDT JJ JJ NNP NNP NNP NNP VBD TO DT NN NNS IN `` JJ `` , CC VBD DT NNS MD RB VB VBN IN JJ NNS .\nThe joint exercises are to begin March 25 , and will include at least 5,000 U.S. troops .\tDT JJ NNS VBP TO VB NNP CD , CC MD VB IN JJS CD NNP NNS .\nIt is not clear how many South Korean troops will participate .\tPRP VBZ RB JJ WRB JJ JJ JJ NNS MD VB .\nThe latest round of Cabinet level talks between the two Koreas was expected to begin in late March as well .\tDT JJS NN IN NNP NN NNS IN DT CD NNP VBD VBN TO VB IN JJ NNP IN RB .\nPyongyang has repeatedly urged South Korea to scrap the joint exercises .\tNNP VBZ RB VBN NNP NNP TO VB DT JJ NNS .\nNorth Korea says the United States uses the drills as preparations for an invasion , a claim Washington denies .\tNNP NNP VBZ DT NNP NNPS VBZ DT NNS IN NNS IN DT NN , DT NN NNP VBZ .\nHamas is urging international donors not to cut off aid to the Palestinian Authority following the militant group 's election victory last week .\tNNP VBZ VBG JJ NNS RB TO VB RP NN TO DT JJ NNP VBG DT JJ NN POS NN NN JJ NN .\nHamas leader Ismail Haniyeh called on the quartet -- the United States , Russia , the European Union and the United Nations -- to keep aid flowing .\tNNP NN NNP NNP VBD IN DT NN IN DT NNP NNPS , NNP , DT NNP NNP CC DT NNP NNPS : TO VB NN VBG .\nHe spoke as quartet officials were in London for talks on how to deal with a Hamas-led government .\tPRP VBD IN NN NNS VBD IN NNP IN NNS IN WRB TO VB IN DT JJ NN .\nU.S. Secretary of State Condoleezza Rice said the United States is contacting donor nations about suspending aid , unless Hamas renounces violence and accepts Israel 's right to exist .\tNNP NNP IN NNP NNP NNP VBD DT NNP NNPS VBZ VBG NN NNS IN VBG NN , IN NNP VBZ NN CC VBZ NNP POS NN TO VB .\nE.U. diplomats say they also want Hamas to make those changes .\tNNP NNS VBP PRP RB VBP NNP TO VB DT NNS .\nThey say they will keep diplomatic channels open with Palestinian Authority President Mahmoud Abbas , who is not a member of Hamas .\tPRP VBP PRP MD VB JJ NNS JJ IN JJ NNP NNP NNP NNP , WP VBZ RB DT NN IN NNP .\nIn both the books and films , fictional spy James Bond is portrayed as a gourmet who savors fine food , wine , and , of course , his signature ' shaken , not stirred ' martinis .\tIN DT DT NNS CC NNS , JJ NN NNP NNP VBZ VBN IN DT NN WP VBZ JJ NN , NN , CC , IN NN , PRP$ NN `` VBN , RB VBD `` NNS .\nBut , as VOA correspondent Gary Thomas reports , the Central Intelligence Agency employs an executive chef who runs a very exclusive restaurant where only those with proper security clearance can enjoy the fine dining .\tCC , IN NNP NN NNP NNP VBZ , DT NNP NNP NNP VBZ DT JJ NN WP VBZ DT RB JJ NN WRB RB DT IN JJ NN NN MD VB DT JJ NN .\nIndonesia 's Health Ministry says a 29-year-old man has died of bird flu , the latest victim in the country hardest-hit by the virus .\tNNP POS NNP NNP VBZ DT JJ NN VBZ VBN IN NN NN , DT JJS NN IN DT NN NN IN DT NN .\nThe ministry said Saturday that the human death toll from the virus now stands at 74 .\tDT NN VBD NNP IN DT JJ NN NN IN DT NN RB VBZ IN CD .\nHowever , World Health Organization officials have only recorded 63 deaths .\tRB , NNP NNP NNP NNS VBP RB VBN CD NNS .\nIndonesia only recently agreed to resume sharing its bird flu samples with the WHO , ending a four-month dispute .\tNNP RB RB VBD TO VB VBG PRP$ NN NN NNS IN DT NNP , VBG DT JJ NN .\nIndonesia had refused to share the samples until the health organization guaranteed they would not be used to make expensive commercial vaccines .\tNNP VBD VBN TO VB DT NNS IN DT NN NN VBN PRP MD RB VB VBN TO VB JJ JJ NNS .\nIndonesia has more bird flu deaths than any other nation .\tNNP VBZ RBR JJ NN NNS IN DT JJ NN .\nWHO officials say 171 people have died from the virus worldwide since the outbreak began in 2003 , mostly in Asian countries .\tNNP NNS VBP CD NNS VBP VBN IN DT NN NN IN DT NN VBD IN CD , RB IN JJ NNS .\nYasser Arafat 's nephew has turned over the late Palestinian leader 's medical records to a committee investigating the cause of his uncle 's death .\tNNP NNP POS NN VBZ VBN RP DT JJ JJ NN POS JJ NNS TO DT NN VBG DT NN IN PRP$ NN POS NN .\nNasser al-Kidwa , who also is the Palestinian representative to the United Nations , delivered the 558-page medical report plus X-rays to Palestinian Authority representatives Saturday .\tNNP NNP , WP RB VBZ DT JJ NN TO DT NNP NNP , VBD DT JJ JJ NN CC NNS TO JJ NNP NNS NNP .\nIt was the first time Palestinian officials in Ramallah have had access to Mr. Arafat 's records since his death at a Paris hospital November 11 .\tPRP VBD DT JJ NN NN NNS IN NNP VBP VBN NN TO NNP NNP POS NNS IN PRP$ NN IN DT NNP NN NNP CD .\nMr. al-Kidwa told a news conference the files do not give a clear explanation of the cause of Mr. Arafat 's death , adding that French doctors did not find any known poisons .\tNNP NNP VBD DT NN NN DT NNS VBP RB VB DT JJ NN IN DT NN IN NNP NNP POS NN , VBG IN JJ NNS VBD RB VB DT VBN NNS .\nFrench media quoted doctors who treated Mr. Arafat as saying he died of a blood clotting disorder .\tJJ NNS VBN NNS WP VBD NNP NNP IN VBG PRP VBD IN DT NN VBG NN .\nThe U.S. military in Iraq says American and Iraqi forces have finished clearing operations in the western border town of Husaybah , which is believed to be a major entry point for foreign fighters and weapons .\tDT NNP NN IN NNP VBZ NNP CC JJ NNS VBP VBN NN NNS IN DT JJ NN NN IN NNP , WDT VBZ VBN TO VB DT JJ NN NN IN JJ NNS CC NNS .\nThe military said Wednesday that patrols and raids would continue to root out remaining insurgents in the town near the Syrian border .\tDT NN VBD NNP IN NNS CC NNS MD VB TO VB RP VBG NNS IN DT NN IN DT JJ NN .\nIn other violence , bombing and shooting attacks in Baquba and Baghdad killed at least seven people , including five policemen .\tIN JJ NN , VBG CC VBG NNS IN NNP CC NNP VBD IN JJS CD NNS , VBG CD NNS .\nThe U.S. military also reported the death Tuesday of a Marine in western Iraq .\tDT NNP NN RB VBD DT NN NNP IN DT NN IN JJ NNP .\nIn a separate development , the murdered lawyer for one of former dictator Saddam Hussein 's co-defendents was buried Wednesday .\tIN DT JJ NN , DT VBN NN IN CD IN JJ NN NNP NNP POS NNS VBD VBN NNP .\nPresident Jalal Talabani condemned Tuesday 's shooting of Adel al-Zubeidi , who represented Iraq 's former vice president , Taha Yassin Ramadan .\tNNP NNP NNP VBD NNP POS NN IN NNP NNP , WP VBD NNP POS JJ NN NN , NNP NNP NNP .\nMr. Talabani also urged other members of the defense team to accept government protection which they had refused .\tNNP NNP RB VBD JJ NNS IN DT NN NN TO VB NN NN WDT PRP VBD VBN .\nWorld oil prices moved back above $ 65 a barrel in Friday 's trading as analysts expressed concern that it will take time to repair hurricane damage to the U.S. oil industry .\tNNP NN NNS VBD RB IN $ CD DT NN IN NNP POS NN IN NNS VBD NN IN PRP MD VB NN TO VB NN NN TO DT NNP NN NN .\nThe price of crude oil for future delivery hit $ 65.32 a barrel in New York , an increase of about 83 cents from yesterday .\tDT NN IN JJ NN IN JJ NN VBD $ CD DT NN IN NNP NNP , DT NN IN IN CD NNS IN NN .\nU.S. officials have said oil production from the Gulf of Mexico is still well below normal levels , and four refineries will need months of repair .\tNNP NNS VBP VBN NN NN IN DT NNP IN NNP VBZ RB RB IN JJ NNS , CC CD NNS MD VB NNS IN NN .\nThe Gulf coast is responsible for about 30 percent of U.S. crude oil and much of America 's refining capacity .\tDT NNP NN VBZ JJ IN IN CD NN IN NNP JJ NN CC NN IN NNP POS NN NN .\nOil prices have been generally easing since hitting an all-time record high of $ 70.85 on August 30 .\tNN NNS VBP VBN RB VBG IN VBG DT JJ NN NN IN $ CD IN NNP CD .\nRMS International Inc. , Hasbrouk Heights , N.J. , facing a cash-flow squeeze , said it is seeking other financing sources and waivers from debenture holders .\tNNP NNP NNP , NNP NNP , NN , VBG DT JJ NN , VBD PRP VBZ VBG JJ NN NNS CC NNS IN NN NNS .\nThe company said that because of softening sales it is n't in compliance with requirements that it maintain $ 3 million in working capital .\tDT NN VBD IN IN IN VBG NNS PRP VBZ RB IN NN IN NNS IN PRP VBP $ CD CD IN VBG NN .\nRMS distributes electronic devices and produces power supplies and plastic literature displays .\tNNP VBZ JJ NNS CC VBZ NN NNS CC NN NN NNS .\nRMS said it had a loss of $ 158 , 666 , or 10 cents a share , in the third quarter , compared with a year-earlier loss of $ 26,956 , or two cents a share .\tNNP VBD PRP VBD DT NN IN $ CD , CD , CC CD NNS DT NN , IN DT JJ NN , VBN IN DT JJ NN IN $ CD , CC CD NNS DT NN .\nSales rose to $ 3 million from $ 2.9 million .\tNNS VBD TO $ CD CD IN $ CD CD .\nFor the nine months , the company reported a net loss of $ 608 , 413 , or 39 cents a share , compared with year-earlier net income of $ 967 , 809 , or 62 cents a share .\tIN DT CD NNS , DT NN VBD DT JJ NN IN $ CD , CD , CC CD NNS DT NN , VBN IN JJ JJ NN IN $ CD , CD , CC CD NNS DT NN .\nSales rose to $ 9.8 million from $ 8.9 million .\tNNS VBD TO $ CD CD IN $ CD CD .\nFounded in the 12th century , the Principality of Muscovy , was able to emerge from over 200 years of Mongol domination ( 13th - 15th centuries ) and to gradually conquer and absorb surrounding principalities .\tVBN IN DT JJ NN , DT NNP IN NNP , VBD JJ TO VB IN IN CD NNS IN JJ NN LRB JJ : JJ NNS RRB CC TO RB VB CC VB VBG NNS .\nIn the early 17th century , a new Romanov Dynasty continued this policy of expansion across Siberia to the Pacific .\tIN DT JJ JJ NN , DT JJ NNP NNP VBD DT NN IN NN IN NNP TO DT NNP .\nUnder PETER I ( ruled 1682 - 1725 ) , hegemony was extended to the Baltic Sea and the country was renamed the Russian Empire .\tIN NNP NNP LRB VBD CD : CD RRB , NN VBD VBN TO DT NNP NNP CC DT NN VBD VBN DT JJ NNP .\nDuring the 19th century , more territorial acquisitions were made in Europe and Asia .\tIN DT JJ NN , JJR JJ NNS VBD VBN IN NNP CC NNP .\nDefeat in the Russo-Japanese War of 1904 - 5 contributed to the Revolution of 1905 , which resulted in the formation of a parliament and other reforms .\tNN IN DT JJ NNP IN CD : CD VBD TO DT NN IN CD , WDT VBD IN DT NN IN DT NN CC JJ NNS .\nRepeated devastating defeats of the Russian army in World War I led to widespread rioting in the major cities of the Russian Empire and to the overthrow in 1917 of the imperial household .\tVBN JJ NNS IN DT JJ NN IN NNP NNP NNP VBD TO JJ NN IN DT JJ NNS IN DT JJ NN CC TO DT NN IN CD IN DT JJ NN .\nThe Communists under Vladimir LENIN seized power soon after and formed the USSR .\tDT NNPS IN NNP NNP VBD NN RB IN CC VBD DT NNP .\nThe brutal rule of Iosif STALIN ( 1928 - 53 ) strengthened Communist rule and Russian dominance of the Soviet Union at a cost of tens of millions of lives .\tDT JJ NN IN NNP NNP LRB CD IN CD RRB VBD JJ NN CC JJ NN IN DT NNP NNP IN DT NN IN NNS IN NNS IN NNS .\nThe Soviet economy and society stagnated in the following decades until General Secretary Mikhail GORBACHEV ( 1985 - 91 ) introduced glasnost ( openness ) and perestroika ( restructuring ) in an attempt to modernize Communism , but his initiatives inadvertently released forces that by December 1991 splintered the USSR into Russia and 14 other independent republics .\tDT JJ NN CC NN VBN IN DT VBG NNS IN NNP NNP NNP NNP LRB CD IN CD RRB VBN NN LRB NN RRB CC FW LRB NN RRB IN DT NN TO VB NNP , CC PRP$ NNS RB VBN NNS WDT IN NNP CD VBD DT NNP IN NNP CC CD JJ JJ NNS .\nSince then , Russia has shifted its post-Soviet democratic ambitions in favor of a centralized semi-authoritarian state whose legitimacy is buttressed , in part , by carefully managed national elections , former President PUTIN 's genuine popularity , and the prudent management of Russia 's windfall energy wealth .\tIN RB , NNP VBZ VBN PRP$ JJ JJ NNS IN NN IN DT JJ JJ NN WP$ NN VBZ VBN , IN NN , IN RB VBN JJ NNS , JJ NNP NNP POS JJ NN , CC DT JJ NN IN NNP POS NN NN NN .\nRussia has severely disabled a Chechen rebel movement , although violence still occurs throughout the North Caucasus .\tNNP VBZ RB VBN DT JJ NN NN , IN NN RB VBZ IN DT NNP NNP .\nSevere volcanic activity , which began in July 1995 , has put a damper on this small , open economy .\tNNP JJ NN , WDT VBD IN NNP CD , VBZ VBN DT NN IN DT JJ , JJ NN .\nA catastrophic eruption in June 1997 closed the airports and seaports , causing further economic and social dislocation .\tDT JJ NN IN NNP CD VBD DT NNS CC NNS , VBG JJ JJ CC JJ NN .\nTwo-thirds of the 12,000 inhabitants fled the island .\tNNS IN DT CD NNS VBD DT NN .\nSome began to return in 1998 but lack of housing limited the number .\tDT VBD TO VB IN CD CC NN IN NN VBN DT NN .\nThe agriculture sector continued to be affected by the lack of suitable land for farming and the destruction of crops .\tDT NN NN VBD TO VB VBN IN DT NN IN JJ NN IN NN CC DT NN IN NNS .\nProspects for the economy depend largely on developments in relation to the volcanic activity and on public sector construction activity .\tNNS IN DT NN VBP RB IN NNS IN NN TO DT JJ NN CC IN JJ NN NN NN .\nThe UK has launched a three-year $ 122.8 million aid program to help reconstruct the economy .\tDT NNP VBZ VBN DT JJ $ CD CD NN NN TO VB VB DT NN .\nHalf of the island is expected to remain uninhabitable for another decade .\tNN IN DT NN VBZ VBN TO VB JJ IN DT NN .\nTourism continues to dominate Antigua and Barbuda 's economy , accounting for nearly 60 % of GDP and 40 % of investment .\tNNP VBZ TO VB NNP CC NNP POS NN , VBG IN RB CD NN IN NN CC CD NN IN NN .\nThe dual-island nation 's agricultural production is focused on the domestic market and constrained by a limited water supply and a labor shortage stemming from the lure of higher wages in tourism and construction .\tDT JJ NN POS JJ NN VBZ VBN IN DT JJ NN CC VBN IN DT JJ NN NN CC DT NN NN VBG IN DT NN IN JJR NNS IN NN CC NN .\nManufacturing comprises enclave-type assembly for export with major products being bedding , handicrafts , and electronic components .\tNNP VBZ JJ NN IN NN IN JJ NNS VBG JJ , NNS , CC JJ NNS .\nProspects for economic growth in the medium term will continue to depend on tourist arrivals from the US , Canada , and Europe and potential damages from natural disasters .\tNNS IN JJ NN IN DT JJ NN MD VB TO VB IN NN NNS IN DT NNP , NNP , CC NNP CC JJ NNS IN JJ NNS .\nAfter taking office in 2004 , the SPENCER government adopted an ambitious fiscal reform program , and was successful in reducing its public debt-to-GDP ratio from 120 % to about 90 % in 2008 .\tIN VBG NN IN CD , DT NNP NN VBD DT JJ JJ NN NN , CC VBD JJ IN VBG PRP$ JJ NN NN IN CD NN TO RB CD NN IN CD .\nHowever , the global financial crisis that began in 2008 , has led to a significant increase in the national debt , which topped 130 % at the end of 2010 .\tRB , DT JJ JJ NN WDT VBD IN CD , VBZ VBN TO DT JJ NN IN DT JJ NN , WDT VBD CD NN IN DT NN IN CD .\nThe Antiguan economy experienced solid growth from 2003 to 2007 , reaching over 12 % in 2006 driven by a construction boom in hotels and housing associated with the Cricket World Cup , but growth dropped off in 2008 with the end of the boom .\tDT NNP NN VBD JJ NN IN CD TO CD , VBG IN CD NN IN CD VBN IN DT NN NN IN NNS CC NN VBN IN DT NNP NNP NNP , CC NN VBD RP IN CD IN DT NN IN DT NN .\nIn 2009 , Antigua 's economy was severely hit by the global economic crisis , suffering from the collapse of its largest financial institution and a steep decline in tourism .\tIN CD , NNP POS NN VBD RB VBN IN DT JJ JJ NN , VBG IN DT NN IN PRP$ JJS JJ NN CC DT JJ NN IN NN .\nThis decline continued in 2010 as the country struggled with a yawning budget deficit .\tDT NN VBD IN CD IN DT NN VBD IN DT VBG NN NN .\nHaiti is a free market economy that enjoys the advantages of low labor costs and tariff-free access to the US for many of its exports .\tNNP VBZ DT JJ NN NN WDT VBZ DT NNS IN JJ NN NNS CC JJ NN TO DT NNP IN NN IN PRP$ NNS .\nPoverty , corruption , and poor access to education for much of the population are among Haiti 's most serious disadvantages .\tNN , NN , CC JJ NN TO NN IN NN IN DT NN VBP IN NNP POS RBS JJ NNS .\nOver the longer term , Haiti needs to create jobs for its young workforce and to build institutional capacity .\tIN DT JJR NN , NNP VBZ TO VB NNS IN PRP$ JJ NN CC TO VB JJ NN .\nHaiti 's economy suffered a severe setback when a 7 magnitude earthquake destroyed much of its capital city , Port-au-Prince , and neighboring areas in January 2010 .\tNNP POS NN VBD DT JJ NN WRB DT CD NN NN VBD NN IN PRP$ NN NN , NNP , CC JJ NNS IN NNP CD .\nAlready the poorest country in the Western Hemisphere with 80 % of the population living under the poverty line and 54 % in abject poverty , the damage to Port-au-Prince caused the country 's GDP to contract an estimated 5.1 % in 2010 .\tRB DT JJS NN IN DT JJ NNP IN CD NN IN DT NN VBG IN DT NN NN CC CD NN IN JJ NN , DT NN IN NNP VBD DT NN POS NN TO VB DT JJ CD NN IN CD .\nTwo-thirds of all Haitians depend on the agricultural sector , mainly small-scale subsistence farming , and remain vulnerable to damage from frequent natural disasters , exacerbated by the country 's widespread deforestation .\tNNS IN DT NNS VBP IN DT JJ NN , RB JJ NN NN , CC VBP JJ TO NN IN JJ JJ NNS , VBN IN DT NN POS JJ NN .\nUS economic engagement under the Haitian Hemispheric Opportunity through Partnership Encouragement ( HOPE ) Act , passed in December 2006 , has boosted apparel exports and investment by providing duty-free access to the US .\tNNP JJ NN IN DT JJ NNP NNP IN NNP NNP LRB NNP RRB NNP , VBD IN NNP CD , VBZ VBN NN NNS CC NN IN VBG JJ NN TO DT NNP .\nCongress voted in 2010 to extend the legislation until 2020 under the Haitian Economic Lift Act ( HELP ) ; the apparel sector accounts for three-quarters of Haitian exports and nearly one-tenth of GDP .\tNNP VBD IN CD TO VB DT NN IN CD IN DT JJ NNP NNP NNP LRB NNP RRB ; DT NN NN NNS IN NNS IN JJ NNS CC RB NN IN NN .\nRemittances are the primary source of foreign exchange , equaling nearly 20 % of GDP and more than twice the earnings from exports .\tNNS VBP DT JJ NN IN JJ NN , VBG RB CD NN IN NN CC JJR IN RB DT NNS IN NNS .\nHaiti suffers from a lack of investment , partly because of limited infrastructure and a lack of security .\tNNP VBZ IN DT NN IN NN , RB IN IN JJ NN CC DT NN IN NN .\nIn 2005 , Haiti paid its arrears to the World Bank , paving the way for reengagement with the Bank .\tIN CD , NNP VBD PRP$ NNS TO DT NNP NNP , VBG DT NN IN NN IN DT NNP .\nHaiti received debt forgiveness for over $ 1 billion through the Highly-Indebted Poor Country ( HIPC ) initiative in mis-2009 .\tNNP VBD NN NN IN IN $ CD CD IN DT JJ NNP NNP LRB NNP RRB NN IN CD .\nThe remainder of its outstanding external debt was cancelled by donor countries in early 2010 but has since risen to about $ 400 million .\tDT NN IN PRP$ JJ JJ NN VBD VBN IN NN NNS IN JJ CD CC VBZ IN VBN TO IN $ CD CD .\nThe government relies on formal international economic assistance for fiscal sustainability , with over half of its annual budget coming from outside sources .\tDT NN VBZ IN JJ JJ JJ NN IN JJ NN , IN IN NN IN PRP$ JJ NN VBG IN JJ NNS .\nThe economy depends largely on US military spending and tourism .\tDT NN VBZ RB IN NNP JJ NN CC NN .\nTotal US grants , wage payments , and procurement outlays amounted to $ 1.3 billion in 2004 .\tJJ NNP NNS , NN NNS , CC NN NNS VBD TO $ CD CD IN CD .\nOver the past 30 years , the tourist industry has grown to become the largest income source following national defense .\tIN DT JJ CD NNS , DT NN NN VBZ VBN TO VB DT JJS NN NN VBG JJ NN .\nThe Guam economy continues to experience expansion in both its tourism and military sectors .\tDT NNP NN VBZ TO VB NN IN DT PRP$ NN CC JJ NNS .\nAn Ant , going to a river to drink , fell in , and was carried along in the stream .\tDT NN , VBG TO DT NN TO VB , VBD IN , CC VBD VBN IN IN DT NN .\nA Dove pitied her condition , and threw into the river a small bough , by means of which the Ant gained the shore .\tDT NN VBD PRP$ NN , CC VBD IN DT NN DT JJ NN , IN NNS IN WDT DT NN VBD DT NN .\nThe Ant afterward , seeing a man with a fowling-piece aiming at the Dove , stung him in the foot sharply , and made him miss his aim , and so saved the Dove 's life .\tDT NN RB , VBG DT NN IN DT NN VBG IN DT NN , VBG PRP IN DT NN RB , CC VBD PRP VB PRP$ NN , CC RB VBD DT NN POS NN .\n' Little friends may prove great friends . '\t`` JJ NNS MD VB JJ NNS . ``\nA SHEPHERD once found the whelp of a Wolf and brought it up , and after a while taught it to steal lambs from the neighboring flocks .\tDT NN RB VBD DT NN IN DT NN CC VBD PRP RP , CC IN DT NN VBD PRP TO VB NNS IN DT JJ NNS .\nThe Wolf , having shown himself an apt pupil , said to the Shepherd , ' Since you have taught me to steal , you must keep a sharp lookout , or you will lose some of your own flock . '\tDT NN , VBG VBN PRP DT JJ NN , VBD TO DT NN , `` IN PRP VBP VBN PRP TO VB , PRP MD VB DT JJ NN , CC PRP MD VB DT IN PRP$ JJ NN . ``\nA FAMISHING Wolf , passing the door of a cottage in the forest , heard a Mother say to her babe :\tDT VBG NN , VBG DT NN IN DT NN IN DT NN , VBD DT NN VBP TO PRP$ NN :\n' Be quiet , or I will throw you out of the window , and the wolves will get you . '\t`` VB JJ , CC PRP MD VB PRP IN IN DT NN , CC DT NNS MD VB PRP . ``\nSo he waited all day below the window , growing more hungry all the time .\tRB PRP VBD DT NN IN DT NN , VBG RBR JJ PDT DT NN .\nBut at night the Old Man , having returned from the village club , threw out both Mother and Child .\tCC IN NN DT JJ NN , VBG VBN IN DT NN NN , VBD RP DT NN CC NN .\n' You seem to have more than the average share of intelligence for a man of your background , ' sneered the lawyer at a witness on the stand .\t`` PRP VBP TO VB JJR IN DT JJ NN IN NN IN DT NN IN PRP$ NN , `` VBD DT NN IN DT NN IN DT NN .\n' If I was n't under oath , I'd return the compliment , ' replied the witness .\t`` IN PRP VBD RB IN NN , NNP NN DT NN , `` VBD DT NN .\nA leading Democratic U.S. senator has called on Defense Secretary Donald Rumsfeld to explain why there is a critical shortage of protective equipment for American soldiers in Iraq and Afghanistan .\tDT VBG JJ NNP NN VBZ VBN IN NNP NNP NNP NNP TO VB WRB EX VBZ DT JJ NN IN JJ NN IN JJ NNS IN NNP CC NNP .\nIn his party 's weekly radio address Saturday , Senator Dick Durbin of Illinois said the lack of armor in the battlefield is not a matter of logistics , but a lack of leadership .\tIN PRP$ NN POS JJ NN NN NNP , NNP NNP NNP IN NNP VBD DT NN IN NN IN DT NN VBZ RB DT NN IN NNS , CC DT NN IN NN .\nHe said lawmakers have provided the Bush administration with all the defense spending it has requested , but that most vehicles and many soldiers lack adequate protection .\tPRP VBD NNS VBP VBN DT NNP NN IN PDT DT NN NN PRP VBZ VBN , CC IN JJS NNS CC JJ NNS VBP JJ NN .\nMr. Durbin 's remarks add to growing criticism of Mr. Rumsfeld by members of Congress for his handling of the war .\tNNP NNP POS NNS VBP TO VBG NN IN NNP NNP IN NNS IN NNP IN PRP$ NN IN DT NN .\nThe White House has defended the defense secretary , with a spokesman saying Mr. Rumsfeld is doing a great job .\tDT NNP NNP VBZ VBN DT NN NN , IN DT NN VBG NNP NNP VBZ VBG DT JJ NN .\nAn official in southern Sudan says Ugandan soldiers were responsible for a recent attack in the region that left at least one person dead .\tDT NN IN JJ NNP VBZ JJ NNS VBD JJ IN DT JJ NN IN DT NN WDT VBD IN JJS CD NN NN .\nThe accusation was made by the vice president of semi-autonomous southern Sudan , Riek Machar .\tDT NN VBD VBN IN DT NN NN IN JJ JJ NNP , NNP NNP .\nHe said Ugandan forces must leave the region .\tPRP VBD JJ NNS MD VB DT NN .\nMachar said an investigation shows that Ugandan soldiers were responsible for an attack last month on a homestead in the town of Nyongwa .\tNNP VBD DT NN VBZ IN JJ NNS VBD JJ IN DT NN JJ NN IN DT NN IN DT NN IN NNP .\nOne person was abducted during that attack and later killed .\tCD NN VBD VBN IN DT NN CC RB VBD .\nInitial reports said rebels of the Ugandan Lord 's Resistance Army ( LRA ) were behind the attack .\tJJ NNS VBD NNS IN DT JJ NNP POS NNP NNP LRB NNP RRB VBD IN DT NN .\nThere has been no Ugandan government reaction to Machar 's accusation .\tEX VBZ VBN DT JJ NN NN TO NNP POS NN .\nHowever , a Ugandan army spokesman , Major Paddy Ankunda , is quoted by Bloomberg news service as saying Ugandan forces are in southern Sudan to pursue LRA rebels .\tRB , DT JJ NN NN , NNP NNP NNP , VBZ VBN IN NNP NN NN IN VBG JJ NNS VBP IN JJ NNP TO VB NNP NNS .\nFormer Malaysian Prime Minister Mahathir Mohamad says U.S. suspicions about Iran 's nuclear program stem from what he calls an ' element of hatred against Muslims . '\tJJ JJ NNP NNP NNP NNP VBZ NNP NNS IN NNP POS JJ NN VBP IN WP PRP VBZ DT `` NN IN NN IN NNPS . ``\nMalaysia 's official news agency , Bernama reports that Mr. Mahathir said the United States is taking a much harder stance with Iran than it is with North Korea .\tNNP POS JJ NN NN , NNP VBZ IN NNP NNP VBD DT NNP NNPS VBZ VBG DT JJ JJR NN IN NNP IN PRP VBZ IN NNP NNP .\nThe former prime minister said Pyongyang will not be the target of a U.S. attack because ' if it is non-Muslim , the U.S. will not attack . '\tDT JJ NN NN VBD NNP MD RB VB DT NN IN DT NNP NN IN `` IN PRP VBZ JJ , DT NNP MD RB VB . ``\nMr. Mahathir was reported as saying he believes Washington will use Israel as a proxy to attack Tehran .\tNNP NNP VBD VBN IN VBG PRP VBZ NNP MD VB NNP IN DT NN TO VB NNP .\nShortly before stepping down in late 2003 after 22 years in office , Mr. Mahathir remarked that ' Jews rule the world by proxy , ' setting off a storm of international criticism .\tRB IN VBG RP IN JJ CD IN CD NNS IN NN , NNP NNP VBD IN `` NNPS VBP DT NN IN NN , `` VBG RP DT NN IN JJ NN .\nRescue workers in Indonesia have located a survivor of Monday 's huge earthquake off the coast of Sumatra .\tNN NNS IN NNP VBP VBN DT NN IN NNP POS JJ NN IN DT NN IN NNP .\nA crew of rescuers from Singapore heard the victim crying out weakly for help Saturday from beneath the rubble of a collapsed building on Nias island , one of areas hardest hit by the 8.7-magnitude quake .\tDT NN IN NNS IN NNP VBD DT NN VBG RP RB IN NN NNP IN IN DT NN IN DT JJ NN IN NNP NN , CD IN NNS RBS VBN IN DT JJ NN .\nDetails of the man 's injuries are unknown .\tNNS IN DT NN POS NNS VBP JJ .\nHe was discovered after the search for earthquake survivors had already been halted .\tPRP VBD VBN IN DT NN IN NN NNS VBD RB VBN VBN .\nIndonesian authorities said they expected to find no one alive more than four days after the devastating jolt .\tJJ NNS VBD PRP VBD TO VB DT CD JJ JJR IN CD NNS IN DT JJ NN .\nRestoring basic services and shelter for thousands of people whose homes were lost in the quake is now the focus of relief efforts .\tVBG JJ NNS CC NN IN NNS IN NNS WP$ NNS VBD VBN IN DT NN VBZ RB DT NN IN NN NNS .\nWater and food are still in short supply in the islands off Sumatra , and bad weather and aftershocks are hampering aid workers .\tNN CC NN VBP RB IN JJ NN IN DT NNS IN NNP , CC JJ NN CC NNS VBP VBG NN NNS .\nWitnesses in Somalia say Islamist insurgents have seized control of Hudur , the capital of the Bakool region .\tNNS IN NNP VBP NNP NNS VBP VBN NN IN NNP , DT NN IN DT NNP NN .\nThe insurgent group al-Shabab says on its Web site that its fighters entered Hudur early Friday after government-allied soldiers fled the town late Thursday .\tDT JJ NN NNP VBZ IN PRP$ NNP NN IN PRP$ NNS VBD NNP JJ NNP IN JJ NNS VBD DT NN JJ NNP .\nThe governor of Bakool confirmed in a phone interview with VOA 's Somali service that he and other officials have left the town .\tDT NN IN NNP VBD IN DT NN NN IN NNP POS JJ NN IN PRP CC JJ NNS VBP VBN DT NN .\nThe Bakool region borders Ethiopia , which has thousands of troops in Somalia supporting the country 's U.N.-backed administration led by President Abdullahi Yusuf .\tDT NNP NN VBZ NNP , WDT VBZ NNS IN NNS IN NNP VBG DT NN POS JJ NN VBN IN NNP NNP NNP .\nAnti-government insurgents have captured other provincial towns in recent months but have usually withdrawn after a short time .\tJJ NNS VBP VBN JJ JJ NNS IN JJ NNS CC VBP RB VBN IN DT JJ NN .\nIslamists briefly controlled much of Somalia in 2006 before a joint offensive by the government and Ethiopia pushed them from power .\tNNS RB VBD NN IN NNP IN CD IN DT JJ NN IN DT NN CC NNP VBD PRP IN NN .\nInsurgents have waged an 18-month effort to drive out the Ethiopians and topple the government .\tNNS VBP VBN DT JJ NN TO VB RP DT NNS CC VB DT NN .\nThe chief of the Russian navy says his country is looking to establish a permanent naval base on the Mediterranean Sea .\tDT NN IN DT JJ NN VBZ PRP$ NN VBZ VBG TO VB DT JJ JJ NN IN DT NNP NNP .\nAdmiral Vladimir Masorin says the Mediterranean has the highest ' strategic importance ' for his country 's Black Sea fleet .\tNNP NNP NNP VBZ DT NNP VBZ DT JJS `` JJ NN `` IN PRP$ NN POS NNP NNP NN .\nHe says a ' permanent presence ' of the Russian navy must be restored in the region .\tPRP VBZ DT `` JJ NN `` IN DT JJ NN MD VB VBN IN DT NN .\nMasorin spoke Friday at the existing base of the Black Sea fleet in the Ukrainian port city of Sevastopol .\tNNP VBD NNP IN DT VBG NN IN DT NNP NNP NN IN DT JJ JJ NN IN NNP .\nEarlier this year , Russian officials denied reports they were looking to build a military base in the Syrian port of Tartus .\tRBR DT NN , JJ NNS VBD NNS PRP VBD VBG TO VB DT JJ NN IN DT JJ NN IN NNP .\nRussia uses that port as a naval maintenance site .\tNNP VBZ DT NN IN DT JJ NN NN .\nDetained Burmese pro-democracy leader Aung San Suu Kyi has met with a senior official of country 's ruling military government in the main city of Rangoon .\tJJ JJ JJ NN NNP NNP NNP NNP VBZ VBN IN DT JJ NN IN NN POS VBG JJ NN IN DT JJ NN IN NNP .\nAung San Suu Kyi was taken from her home Friday for the one hour meeting with Burmese official Aung Kyi at a nearby government facility .\tNNP NNP NNP NNP VBD VBN IN PRP$ NN NNP IN DT CD NN NN IN JJ JJ NNP NNP IN DT JJ NN NN .\nIt was the fourth meeting between the two since September , when the military launched a bloody crackdown on pro-democracy demonstrators , and the first since mid-November .\tPRP VBD DT JJ NN IN DT CD IN NNP , WRB DT NN VBD DT JJ NN IN JJ NNS , CC DT JJ IN NNP .\nThe United Nations says at least 31 people were killed in the crackdown , which triggered international outrage against the military government .\tDT NNP NNP VBZ IN JJS CD NNS VBD VBN IN DT NN , WDT VBD JJ NN IN DT JJ NN .\nAung San Suu Kyi , a Nobel Peace Prize winner , has spent 12 of the last 18 years under some form of detention .\tNNP NNP NNP NNP , DT NNP NNP NNP NN , VBZ VBN CD IN DT JJ CD NNS IN DT NN IN NN .\nThousands of people in Indian Kashmir protested against India 's security forces Thursday , blaming them for killing four youths a day before .\tNNS IN NNS IN JJ NNP VBD IN NNP POS NN NNS NNP , VBG PRP IN VBG CD NNS DT NN IN .\nIndian officials say the youths were killed in a crossfire Wednesday as Indian troops battled militants in the Kupwara district of northern Kashmir .\tJJ NNS VBP DT NNS VBD VBN IN DT NN NNP IN JJ NNS VBD NNS IN DT NNP NN IN JJ NNP .\nBut demonstrators accused Indian soldiers of firing indiscriminately at the boys as they were playing in a park in the village of Doodipora .\tCC NNS VBD JJ NNS IN VBG RB IN DT NNS IN PRP VBD VBG IN DT NN IN DT NN IN NNP .\nIndia 's chief minister for Jammu Kashmir state , Ghulam Nabi Azad , has ordered an investigation .\tNNP POS JJ NN IN NNP NNP NN , NNP NNP NNP , VBZ VBN DT NN .\nIn other violence Wednesday , Indian security forces raided rebel hideouts in the Udhampur and Poonch districts of Indian Kashmir .\tIN JJ NN NNP , JJ NN NNS VBD JJ NNS IN DT NNP CC NNP NNS IN JJ NNP .\nIndian officials say seven militants were killed , along with two Indian security personnel .\tJJ NNS VBP CD NNS VBD VBN , IN IN CD JJ NN NNS .\nIndian Prime Minister Manmohan Singh is to hold talks with Kashmiri political leaders on Saturday .\tJJ NNP NNP NNP NNP VBZ TO VB NNS IN JJ JJ NNS IN NNP .\nBut several prominent Kashmiri separatists say they will not attend .\tCC JJ JJ JJ NNS VBP PRP MD RB VB .\nCampaigning has ended in Iran 's closely contested presidential election , but analysts expect Friday 's poll to produce no outright winner without a runoff election .\tNN VBZ VBN IN NNP POS RB VBN JJ NN , CC NNS VBP NNP POS NN TO VB DT JJ NN IN DT NN NN .\nSupporters of rival candidates campaigned in Tehran early Thursday morning , in a last minute effort to win over undecided voters .\tNNS IN JJ NNS VBN IN NNP JJ NNP NN , IN DT JJ NN NN TO VB IN JJ NNS .\nSeveral hundred pro-reform demonstrators marched in the capital , calling for a boycott of the polls .\tJJ CD JJ NNS VBD IN DT NN , VBG IN DT NN IN DT NNS .\nPolice later dispersed the protesters .\tNNS RB VBD DT NNS .\nMohsen Rezaei , seated , registers as a presidential candidate in Tehran , May 11 ; he later dropped out of the race Opinion polls show former president Akbar Hashemi Rafsanjani is leading in the race to replace President Mohammad Khatami , who is barred from running for a third consecutive term .\tNNP NNP , VBN , VBZ IN DT JJ NN IN NNP , NNP CD ; PRP RB VBD IN IN DT NN NN NNS VBP JJ NN NNP NNP NNP VBZ VBG IN DT NN TO VB NNP NNP NNP , WP VBZ VBN IN VBG IN DT JJ JJ NN .\nMr. Rafsanjani 's main rivals are top reform candidate Mostafa Moin and the conservative former national police chief Mohammad Baqer Qalibaf .\tNNP NNP POS JJ NNS VBP JJ NN NN NNP NNP CC DT JJ JJ JJ NN NN NNP NNP NNP .\nThree hard-line conservatives are still in the race after a fourth dropped out Wednesday .\tCD JJ NNS VBP RB IN DT NN IN DT NN VBD IN NNP .\nAt least one person has been seriously injured as thousands of Palestinian protesters demonstrated against Egypt 's closing of the Rafah border crossing from Gaza .\tIN JJS CD NN VBZ VBN RB VBN IN NNS IN JJ NNS VBD IN NNP POS NN IN DT NNP NN VBG IN NNP .\nReports from the scene Saturday say a teenage protester was critically wounded when Hamas security forces fired into the air to disperse demonstrators .\tNNS IN DT NN NNP VBP DT NN NN VBD RB VBN WRB NNP NN NNS VBD IN DT NN TO VB NNS .\nThe Rafah border crossing was controlled by Fatah-led Palestinian security forces until Hamas forces seized control of the Gaza strip in June .\tDT NNP NN VBG VBD VBN IN JJ JJ NN NNS IN NNP NNS VBD NN IN DT NNP NN IN NNP .\nThe crossing had been the only direct link between Gaza and Egypt .\tDT VBG VBD VBN DT JJ JJ NN IN NNP CC NNP .\nHamas seized control of Gaza after six days of clashes in which more than 100 people died .\tNNP VBD NN IN NNP IN CD NNS IN NNS IN WDT JJR IN CD NNS VBD .\nEgypt responded by closing the border .\tNNP VBD IN VBG DT NN .\nOn Friday , at least eight people in Gaza - including at least one foreign journalist - were injured by what appeared to be stun grenades as Hamas security personnel dispersed a protest by supporters of the rival Fatah faction .\tIN NNP , IN JJS CD NNS IN NNP : VBG IN JJS CD JJ NN : VBD VBN IN WP VBD TO VB JJ NNS IN NNP NN NNS VBD DT NN IN NNS IN DT JJ NNP NN .\nBurma 's military government says it is releasing nearly 4,000 prisoners who had been wrongly jailed .\tNNP POS JJ NN VBZ PRP VBZ VBG RB CD NNS WP VBD VBN RB VBN .\nState radio said 3,937 prisoners would be released starting Thursday , because they were improperly charged by the recently disbanded National Intelligence Bureau .\tNNP NN VBD CD NNS MD VB VBN VBG NNP , IN PRP VBD RB VBN IN DT RB VBN NNP NNP NNP .\nThe bureau was headed by former Prime Minister General Khin Nyunt , who was ousted last month and placed under house arrest .\tDT NN VBD VBN IN JJ NNP NNP NNP NNP NNP , WP VBD VBN JJ NN CC VBN IN NN NN .\nHe was accused of investigating military commanders and threatening the unity of the armed forces .\tPRP VBD VBN IN VBG JJ NNS CC VBG DT NN IN DT JJ NNS .\nIt is not known if any of Burma 's estimated 1,300 political prisoners will be among those freed .\tPRP VBZ RB VBN IN DT IN NNP POS JJ CD JJ NNS MD VB IN DT VBN .\nThe announced release comes two weeks before a major summit of the 10-nation Association of South East Asian Nations , where Burma is expected to be questioned about its democratic reforms .\tDT JJ NN VBZ CD NNS IN DT JJ NN IN DT JJ NNP IN NNP NNP NNP NNP , WRB NNP VBZ VBN TO VB VBN IN PRP$ JJ NNS .\nPope John Paul II has presented the relics of two early Christian saints to the Ecumenical Patriarch Bartholomew of Constantinople , the spiritual leader of the world 's Orthodox Christians .\tNNP NNP NNP NNP VBZ VBN DT NNS IN CD JJ JJ NNS TO DT NNP NNP NNP IN NNP , DT JJ NN IN DT NN POS NNP NNPS .\nThe presentation of the relics of Saint John Chrysostom and Saint Gregory Nazianzen came during a joint service in Saint Peter 's Basilica .\tDT NN IN DT NNS IN NNP NNP NNP CC NNP NNP NNP VBD IN DT JJ NN IN NNP NNP POS NNP .\nIn remarks read by an aide , the pontiff , who is seeking closer relations between the Roman Catholic and Eastern Orthodox Churches , expressed hope that the occasion will move the churches toward reconciliation .\tIN NNS VBN IN DT NN , DT NN , WP VBZ VBG RBR NNS IN DT NNP NNP CC NNP NNP NNP , VBD NN IN DT NN MD VB DT NNS IN NN .\nPatriarch Bartholomew called it proof that there are no insurmountable problems in the Church of Christ .\tNNP NNP VBD PRP NN IN EX VBP DT JJ NNS IN DT NN IN NNP .\nThe two saints honored throughout Christianity as Doctors of the Church served as Bishops of Constantinople during the fourth century , before the split of the Roman Catholic and Orthodox Churches in 1054 .\tDT CD NNS VBN IN NNP IN NNS IN DT NNP VBD IN NNS IN NN IN DT JJ NN , IN DT NN IN DT NNP NNP CC NNP NNP IN CD .\nOrthodox scholars say Crusaders took the relics to Rome after sacking Constantinople in 1204 .\tNNP NNS VBP NNPS VBD DT NNS TO NNP IN VBG NN IN CD .\nRussia says it will withdraw its troops from the two remaining Soviet-era military bases in neighboring Georgia during 2008 .\tNNP VBZ PRP MD VB PRP$ NNS IN DT CD VBG JJ JJ NNS IN VBG NNP IN CD .\nRussian Foreign Minister Sergei Lavrov announced the agreement Monday after talks in Moscow with his Georgian counterpart , Salome Zurabishvili .\tJJ NNP NNP NNP NNP VBD DT NN NNP IN NNS IN NNP IN PRP$ JJ NN , NNP NNP .\nThe agreement helps resolve one of the most contentious issues between the two former Soviet states .\tDT NN VBZ VB CD IN DT RBS JJ NNS IN DT CD JJ JJ NNS .\nTbilisi had wanted Moscow to close its two remaining bases on Georgian soil by 2006 , a timeline Russia said it could not meet .\tNNP VBD VBN NNP TO VB PRP$ CD VBG NNS IN JJ NN IN CD , DT NN NNP VBD PRP MD RB VB .\nEarlier this month , Georgia imposed limited sanctions on the two Russian bases in an attempt to pressure Moscow to agree to a timetable for withdrawal .\tRBR DT NN , NNP VBD JJ NNS IN DT CD JJ NNS IN DT NN TO VB NNP TO VB TO DT NN IN NN .\nIndonesian officials say several Southeast Asian nations have agreed to send observers to monitor a peace agreement for Indonesia 's Aceh province .\tJJ NNS VBP JJ JJ JJ NNS VBP VBN TO VB NNS TO VB DT NN NN IN NNP POS NNP NN .\nThe officials say Brunei , Malaysia , the Philippines , Singapore , and Thailand have agreed to participate in the observer mission .\tDT NNS VBP NNP , NNP , DT NNP , NNP , CC NNP VBP VBN TO VB IN DT NN NN .\nIndonesian Foreign Minister Hassan Wirayuda had made a formal request for monitors at the meeting in Laos of the Association of Southeast Asian nations .\tJJ NNP NNP NNP NNP VBD VBN DT JJ NN IN NNS IN DT NN IN NNP IN DT NNP IN NNP NNP NNS .\nThe peace agreement between the Free Aceh Movement rebel group and the Indonesian government is scheduled to be signed on August 15 .\tDT NN NN IN DT NNP NNP NNP NN NN CC DT JJ NN VBZ VBN TO VB VBN IN NNP CD .\nThe two sides reached the agreement earlier this month at talks in Finland .\tDT CD NNS VBD DT NN RBR DT NN IN NNS IN NNP .\nUnder the accord , the rebel group is to disarm and give up its demands for independence in return for some form of political representation in Aceh .\tIN DT NN , DT NN NN VBZ TO VB CC VB RP PRP$ NNS IN NN IN NN IN DT NN IN JJ NN IN NNP .\nSome inforamtion for this report provided by AP and AFP .\tDT NN IN DT NN VBN IN NNP CC NNP .\nAuthorities in Baghdad say Iraqi security forces have captured the leader of an al-Qaida terrorist cell allegedly responsible for a series of beheadings .\tNNS IN NNP VBP JJ NN NNS VBP VBN DT NN IN DT NNP JJ NN RB JJ IN DT NN IN NNS .\nThe government identified the cell leader as Mohammed Najam Ibrahim , and said he worked closely with Iraq 's most-wanted fugitive , Abu Musab al-Zarqawi .\tDT NN VBD DT NN NN IN NNP NNP NNP , CC VBD PRP VBD RB IN NNP POS JJ JJ , NNP NNP NNP .\nHe was arrested in Baquba , 60 kilometers north of the Iraqi capital .\tPRP VBD VBN IN NNP , CD NNS RB IN DT JJ NN .\nAn official statement issued Thursday did not indicate when the arrest took place , but said interrogators are seeking information that might lead them to other members of the al-Zarqawi organization .\tDT JJ NN VBN NNP VBD RB VB WRB DT NN VBD NN , CC VBD NNS VBP VBG NN WDT MD VB PRP TO JJ NNS IN DT NNP NN .\nIraqi officials say Mohammed Najam Ibrahim and his brother have carried out a number of beheadings and also have launched attacks against Iraqi security forces .\tJJ NNS VBP NNP NNP NNP CC PRP$ NN VBP VBN RP DT NN IN NNS CC RB VBP VBN NNS IN JJ NN NNS .\nIn Iraq 's western al-Anbar province , U.S. military officials say a weeklong offensive to hunt down insurgents is moving ahead .\tIN NNP POS JJ NNP NN , NNP JJ NNS VBP DT JJ NN TO VB RP NNS VBZ VBG RB .\nThey also reported another casualty - a U.S. Marine who was killed Thursday .\tPRP RB VBD DT NN IN DT NNP NN WP VBD VBN NNP .\nVoting has begun in Venezuela 's congressional elections , amid calls for a boycott by opponents of President Hugo Chavez .\tNN VBZ VBN IN NNP POS JJ NNS , IN NNS IN DT NN IN NNS IN NNP NNP NNP .\nFive opposition groups are not taking part in the vote , saying the country 's electoral council is biased in favor of the president .\tCD NN NNS VBP RB VBG NN IN DT NN , VBG DT NN POS JJ NN VBZ VBN IN NN IN DT NN .\nThe boycott makes it likely that pro-Chavez candidates will win two-thirds of the seats in the National Assembly .\tDT NN VBZ PRP JJ IN JJ NNS MD VB NNS IN DT NNS IN DT NNP NNP .\nAnalysts say with such a majority , pro-Chavez lawmakers could rewrite portions of the constitution , such as the clause that sets presidential term limits .\tNNS VBP IN JJ DT NN , JJ NNS MD VB NNS IN DT NN , JJ IN DT NN WDT VBZ JJ NN NNS .\nMr. Chavez has said the boycott is a U.S.-backed ' conspiracy ' against his government .\tNNP NNP VBZ VBN DT NN VBZ DT JJ `` NN `` IN PRP$ NN .\nThe U.S. State Department has repeatedly denied the accusations .\tDT NNP NNP NNP VBZ RB VBN DT NNS .\nThe Venezuelan government has deployed thousands of soldiers around the country to maintain order during the vote .\tDT JJ NN VBZ VBN NNS IN NNS IN DT NN TO VB NN IN DT NN .\nSmall explosions injured three people in the Caracas area on Friday .\tJJ NNS VBD CD NNS IN DT NNP NN IN NNP .\nTwo competing pharmaceutical companies say they are going to work together to develop the first once-a-day pill to treat HIV - the virus that causes AIDS .\tCD VBG JJ NNS VBP PRP VBP VBG TO VB RB TO VB DT JJ JJ NN TO VB NNP IN DT NN WDT VBZ NNP .\nBriston-Myers Squibb and Gilead Sciences announced Monday they will collaborate to combine three separate drugs currently on the market into a single-dose pill that will make it easier for patients to manage their medication routine .\tNNP NNP CC NNP NNP VBD NNP PRP MD VB TO VB CD JJ NNS RB IN DT NN IN DT JJ NN WDT MD VB PRP JJR IN NNS TO VB PRP$ NN NN .\nCurrent treatment requires patients to take several pills a day .\tJJ NN VBZ NNS TO VB JJ NNS DT NN .\nMissing doses makes it easier for the virus to mutate and become resistant to medication .\tVBG NNS VBZ PRP JJR IN DT NN TO VB CC VB JJ TO NN .\nThe companies say the planned once-a-day pill will combine Briston-Myers ' drug , Sustiva , with two drugs by Gilead - Viread and Emtriva .\tDT NNS VBP DT JJ JJ NN MD VB NNP POS NN , NNP , IN CD NNS IN NNP IN NNP CC NNP .\nThe medicines attack the AIDS virus at different points in its replication cycle .\tDT NNS VBP DT NNP NN IN JJ NNS IN PRP$ NN NN .\nThere is no cure for AIDS or HIV .\tEX VBZ DT NN IN NNP CC NNP .\nHurricane Ophelia has gathered more strength and battered the coast of North Carolina Wednesday night , pounding the beachfront communities with rains and sustained winds of 140-kilometers per hour .\tNNP NNP VBZ VBN JJR NN CC VBD DT NN IN NNP NNP NNP NN , VBG DT NN NNS IN NNS CC VBD NNS IN NNS IN NN .\nThe U.S. National Hurricane Center has issued a hurricane warning for coastal North Carolina , north to Virginia .\tDT NNP NNP NNP NNP VBZ VBN DT NN NN IN JJ NNP NNP , NN TO NNP .\nForecasters have discontinued all warnings for South Carolina .\tNNS VBP VBN DT NNS IN NNP NNP .\nFears of floods are intensifying , as the storm 's slow speed indicates that it could rain for days over the region , producing as much as 38 centimeters .\tNNS IN NNS VBP VBG , IN DT NN POS JJ NN VBZ IN PRP MD VB IN NNS IN DT NN , VBG RB RB IN CD NNS .\nStorm surges are also expected .\tNN NNS VBP RB VBN .\nSome 50,000 people along North Carolina 's coast have already lost power due to high winds and heavy rain .\tDT CD NNS IN NNP NNP POS NN VBP RB VBN NN JJ TO JJ NNS CC JJ NN .\nThe governors of Virginia and North Carolina have declared states of emergency ahead of the storm .\tDT NNS IN NNP CC NNP NNP VBP VBN NNS IN NN RB IN DT NN .\nU.S. Secretary of State Colin Powell says North Korea may be ready to resume multi-party talks to defuse a crisis over its nuclear ambitions .\tNNP NNP IN NNP NNP NNP VBZ NNP NNP MD VB JJ TO VB JJ NNS TO VB DT NN IN PRP$ JJ NNS .\nMr. Powell told reporters en route to Chile for the APEC summit that the United States has seen signals coming out of North Korea where it said it never insisted the crisis be solved only through negotiations with the United States .\tNNP NNP VBD NNS IN NN TO NNP IN DT NNP NN IN DT NNP NNPS VBZ VBN NNS VBG IN IN NNP NNP WRB PRP VBD PRP RB VBD DT NN VB VBN RB IN NNS IN DT NNP NNPS .\nEarlier U.S. officials said Washington plans to take advantage of the summit , which begins Saturday , to discuss with China , Japan , South Korea and Russia ways of getting Pyongyang back to the negotiating table .\tRBR NNP NNS VBD NNP VBZ TO VB NN IN DT NN , WDT VBZ NNP , TO VB IN NNP , NNP , NNP NNP CC NNP NNS IN VBG NNP RB TO DT NN NN .\nThe six countries have held three rounds of talks on North Korea 's nuclear ambitions .\tDT CD NNS VBP VBN CD NNS IN NNS IN NNP NNP POS JJ NNS .\nNorth Korea refused to attend a fourth round of talks planned for September because , experts believe , it was awaiting the outcome of the U.S. presidential election .\tNNP NNP VBD TO VB DT JJ NN IN NNS VBN IN NNP IN , NNS VBP , PRP VBD VBG DT NN IN DT NNP JJ NN .\nU.S. Vice President Dick Cheney has announced plans to visit Saudi Arabia for talks with King Abdullah .\tNNP NNP NNP NNP NNP VBZ VBN NNS TO VB NNP NNP IN NNS IN NNP NNP .\nThe vice president 's office said Wednesday that Cheney and the King will meet Saturday to discuss issues of mutual interest related to developments in the mideast region .\tDT NN NN POS NN VBD NNP IN NNP CC DT NN MD VB NNP TO VB NNS IN JJ NN VBN TO NNS IN DT NN NN .\nThe issues on the agenda are expected to be the war in Iraq , the Israeli - Palestinian conflict , and the situation in Lebanon .\tDT NNS IN DT NN VBP VBN TO VB DT NN IN NNP , DT JJ : JJ NN , CC DT NN IN NNP .\nPresident Bush has announced he will travel to Jordan next week to discuss improving the Iraq security situation with Iraqi Prime Minister Nouri al-Maliki .\tNNP NNP VBZ VBN PRP MD VB IN NNP JJ NN TO VB VBG DT NNP NN NN IN JJ NNP NNP NNP NNP .\nIn a joint statement , Mr. Bush and Mr. Malaki affirmed their commitment to building a peaceful , democratic and secure Iraq .\tIN DT JJ NN , NNP NNP CC NNP NNP VBD PRP$ NN TO VBG DT JJ , JJ CC JJ NNP .\nThey also pledged to strengthen their bilateral partnership .\tPRP RB VBD TO VB PRP$ JJ NN .\nU.S. President Barack Obama met Thursday with the American hiker recently freed by Iran and the mothers of her two friends still being detained in Tehran .\tNNP NNP NNP NNP VBD NNP IN DT JJ NN RB VBN IN NNP CC DT NNS IN PRP$ CD NNS RB VBG VBN IN NNP .\nThe White House said Mr. Obama wanted to personally welcome Sarah Shourd back to the Untied States following her more than one year long detention .\tDT NNP NNP VBD NNP NNP VBD TO RB VB NNP NNP RB TO DT NNP NNPS VBG PRP$ JJR IN CD NN RB NN .\nMr. Obama told Shourd , her mother and the mothers of the other two U.S. hikers that the occasion is ' bittersweet ' because Shane Bauer and Josh Fattal are still being held in Iran .\tNNP NNP VBD NNP , PRP$ NN CC DT NNS IN DT JJ CD NNP NNS IN DT NN VBZ `` JJ `` IN NNP NNP CC NNP NNP VBP RB VBG VBN IN NNP .\nIranian border guards seized the three U.S. hikers last year after Iran says they crossed from Iraq into Iranian territory .\tJJ NN NNS VBD DT CD NNP NNS JJ NN IN NNP VBZ PRP VBD IN NNP IN JJ NN .\nShourd was freed earlier this month on $ 5,00,000 bail .\tNNP VBD VBN RBR DT NN IN $ CD NN .\nShe told VOA that she and her two friends were victims of bad circumstances .\tPRP VBD NNP IN PRP CC PRP$ CD NNS VBD NNS IN JJ NNS .\nChilean President-elect Michelle Bachelet has unveiled a cabinet containing an equal number of men and women .\tJJ NNP NNP NNP VBZ VBN DT NN VBG DT JJ NN IN NNS CC NNS .\nBachelet told reporters Monday the 10 men and 10 women represent a ' historic step for equality ' in Chile .\tNNP VBD NNS NNP DT CD NNS CC CD NNS VBP DT `` JJ NN IN NN `` IN NNP .\nThe cabinet includes members of parties that are part of the left-of-center coalition , Concertacion , that has governed Chile since the end of the military dictatorship of General Augusto Pinochet in 1990 .\tDT NN VBZ NNS IN NNS WDT VBP NN IN DT JJ NN , NNP , WDT VBZ VBN NNP IN DT NN IN DT JJ NN IN NNP NNP NNP IN CD .\nAmong the cabinet members are former economist and finance minister Alejandro Foxley as foreign minister and Harvard professor Andres Velasco as finance minister .\tIN DT NN NNS VBP JJ NN CC NN NN NNP NNP IN JJ NN CC NNP NN NNP NNP IN NN NN .\nThe Reuters news agency quotes Velasco as saying Tuesday he will continue the economic policies of the outgoing government , which produced economic growth of six percent last year .\tDT NNP NN NN VBZ NNP IN VBG NNP PRP MD VB DT JJ NNS IN DT JJ NN , WDT VBD JJ NN IN CD NN JJ NN .\nBachelet , who was elected president earlier this month , will take office in March , succeeding socialist president Ricardo Lagos .\tNNP , WP VBD VBN NN RBR DT NN , MD VB NN IN NNP , VBG JJ NN NNP NNP .\nA bomb has ripped through a passenger bus in southwestern Pakistan , killing at least 13 people and wounding 20 others .\tDT NN VBZ VBN IN DT NN NN IN JJ NNP , VBG IN JJS CD NNS CC VBG CD NNS .\nThe police chief of the Baluchistan province , Chaudhry Mohammed Yaqoob , says the toll could rise because some people were still trapped inside the wreckage .\tDT NN NN IN DT NNP NN , NNP NNP NNP , VBZ DT NN MD VB IN DT NNS VBD RB VBN IN DT NN .\nOfficials say the bus was carrying about 50 passengers from the provincial capital , Quetta , to the eastern city of Lahore when the bomb went off Sunday .\tNNS VBP DT NN VBD VBG IN CD NNS IN DT JJ NN , NNP , TO DT JJ NN IN NNP WRB DT NN VBD RP NNP .\nNo one has claimed responsibility .\tDT NN VBZ VBN NN .\nBut the police chief blamed Baluch tribal militants who have stepped up their insurgency seeking greater autonomy and more compensation for the region 's gas and other natural resources .\tCC DT NN NN VBD NNP JJ NNS WP VBP VBN RP PRP$ NN VBG JJR NN CC JJR NN IN DT NN POS NN CC JJ JJ NNS .\nThe bus bombing came a day after a rocket attack blamed on Baluch tribal militants killed a soldier and wounded at least two people .\tDT NN NN VBD DT NN IN DT NN NN VBN IN NNP JJ NNS VBD DT NN CC VBD IN JJS CD NNS .\nTribal militants also blew up a gas pipeline and fired more than 200 rockets at the main paramilitary base in the region .\tNNP NNS RB VBD RP DT NN NN CC VBD JJR IN CD NNS IN DT JJ JJ NN IN DT NN .\nU.S. Secretary of State Colin Powell and the European Union 's Dutch presidency have held talks on the Ukrainian election crisis , the situation in Iraq and other major international issues .\tNNP NNP IN NNP NNP NNP CC DT NNP NNP POS JJ NN VBP VBN NNS IN DT JJ NN NN , DT NN IN NNP CC JJ JJ JJ NNS .\nMr. Powell met Friday with Dutch Foreign Minister Bernard Bot .\tNNP NNP VBD NNP IN JJ NNP NNP NNP NNP .\nThe Netherlands also has troops in Iraq as part of the U.S.-led multinational force .\tDT NNP RB VBZ NNS IN NNP IN NN IN DT JJ JJ NN .\nOn Thursday , the Dutch government volunteered to send additional personnel to Iraq as part of efforts to boost NATO 's training mission in that country .\tIN NNP , DT JJ NN VBD TO VB JJ NNS TO NNP IN NN IN NNS TO VB NNP POS NN NN IN DT NN .\nThe visit is part of Mr. Powell 's final trip to Europe as Secretary of State , before the retired general leaves the Bush Administration .\tDT NN VBZ NN IN NNP NNP POS JJ NN TO NNP IN NNP IN NNP , IN DT JJ JJ NNS DT NNP NN .\nThe International Committee of the Red Cross says it is concerned about prisoners on a hunger strike at the U.S. naval base at Guantanamo Bay , Cuba .\tDT NNP NNP IN DT NNP NNP VBZ PRP VBZ JJ IN NNS IN DT NN NN IN DT NNP JJ NN IN NNP NNP , NNP .\nSpokeswoman Antonella Notari on Friday described the situation at Guantanamo as serious .\tNN NNP NNP IN NNP VBD DT NN IN NNP IN JJ .\nShe said the International Red Cross spent 10 days visiting with detainees in late September .\tPRP VBD DT NNP NNP NNP VBD CD NNS VBG IN NNS IN JJ NNP .\nThe prisoners have been fasting since August to protest their detention without charges or trial .\tDT NNS VBP VBN VBG IN NNP TO VB PRP$ NN IN NNS CC NN .\nHuman rights groups say more than 200 prisoners have refused food .\tJJ NNS NNS VBP JJR IN CD NNS VBP VBN NN .\nU.S. authorities say fewer than 30 detainees are currently not eating .\tNNP NNS VBP JJR IN CD NNS VBP RB RB VBG .\nTwenty-two have been hospitalized and fed involuntarily through tubes .\tCD VBP VBN VBN CC VBN RB IN NNS .\nThe U.S. military is holding about 500 prisoners at Guantanamo .\tDT NNP NN VBZ VBG IN CD NNS IN NNP .\nMost were captured in Afghanistan and are suspected of being members of al-Qaida or the former Taliban regime .\tJJS VBD VBN IN NNP CC VBP VBN IN VBG NNS IN NNP CC DT JJ NNP NN .\nArchaeologists working south of Cairo have displayed ancient tombs and artifacts that are dated later than previous discoveries in the region .\tNNS VBG RB IN NNP VBP VBN JJ NNS CC NNS WDT VBP VBN RB IN JJ NNS IN DT NN .\nEgypt 's chief archaeologist , Zahi Hawass , Tuesday unveiled the tomb of a royal servant who died over 3,000 years ago , during a period known as the ' New Kingdom . '\tNNP POS NN NN , NNP NNP , NNP VBD DT NN IN DT JJ NN WP VBD IN CD NNS RB , IN DT NN VBN IN DT `` NNP NNP . ``\nThe tomb is in Saqqara , better known for pyramids and tombs that are 1,000 years older .\tDT NN VBZ IN NNP , RB VBN IN NNS CC NNS WDT VBP CD NNS JJR .\nThe walls of the tomb are covered with painted murals .\tDT NNS IN DT NN VBP VBN IN JJ NNS .\nThe excavation director says he expects to find more New Kingdom tombs at the site .\tDT NN NN VBZ PRP VBZ TO VB JJR NNP NNP NNS IN DT NN .\nHawass also revealed 4,000-year-old coffins containing the mummies of a priest and his female companion buried near Egypt 's oldest pyramid at Saqqara .\tNNP RB VBD JJ NNS VBG DT NNS IN DT NN CC PRP$ JJ NN VBN IN NNP POS JJS NN IN NNP .\nOn Monday , Egyptian archaeologists announced the discovery of a rare double statue of a scribe and his wife dating back more than 4,000 years\tIN NNP , JJ NNS VBD DT NN IN DT JJ JJ NN IN DT NN CC PRP$ NN VBG RB JJR IN CD NNS\nAfghan officials say at least 27 people were killed when a suicide bomber detonated explosives in a crowded area in southern Helmand province .\tJJ NNS VBP IN JJS CD NNS VBD VBN WRB DT NN NN VBD NNS IN DT JJ NN IN JJ NNP NN .\nAt least 45 other people were wounded .\tIN JJS CD JJ NNS VBD VBN .\nNATO officials say the bomber was driving a motorized rickshaw when he blew himself up next to a bus station .\tNNP NNS VBP DT NN VBD VBG DT VBN NN WRB PRP VBD PRP RP JJ TO DT NN NN .\nAn Afghan Defense Ministry spokesman , General Mohammad Zahir Azimi , says a local police commander who survived the attack appeared to have been the target of the blast , which killed 13 other policemen .\tDT JJ NNP NNP NN , NNP NNP NNP NNP , VBZ DT JJ NN NN WP VBD DT NN VBD TO VB VBN DT NN IN DT NN , WDT VBD CD JJ NNS .\nThe explosion in the town of Gereshk , in Helmand province , is considered one of the deadliest in Afghanistan this year .\tDT NN IN DT NN IN NNP , IN NNP NN , VBZ VBN CD IN DT JJS IN NNP DT NN .\nNATO says that Afghan security forces have been deployed to secure the area around the site of the attack .\tNNP VBZ IN JJ NN NNS VBP VBN VBN TO VB DT NN IN DT NN IN DT NN .\nIsrael 's ruling Likud party has closed a deal with the opposition Labor party to form a unity government .\tNNP POS NN NNP NN VBZ VBN DT NN IN DT NN NN NN TO VB DT NN NN .\nUnder the agreement , Labor leader Shimon Peres will become second-in-command to Prime Minister Ariel Sharon .\tIN DT NN , NNP NN NNP NNP MD VB JJ TO NNP NNP NNP NNP .\nBoth Mr. Peres and Likud Minister Ehud Olmert will share the title of vice premier in the new government , which could be announced as early as next week .\tDT NNP NNP CC NNP NNP NNP NNP MD VB DT NN IN NN NN IN DT JJ NN , WDT MD VB VBN RB RB IN JJ NN .\nCoalition talks began after some Likud members quit the Sharon government to protest Israel 's planned withdrawal from the Gaza Strip .\tNN NNS VBD IN DT NNP NNS VBD DT NNP NN TO VB NNP POS VBN NN IN DT NNP NNP .\nIn a separate development , witnesses say four Palestinians have been killed in an Israeli air strike Thursday night in the southern Gaza Strip .\tIN DT JJ NN , NNS VBP CD NNS VBP VBN VBN IN DT JJ NN NN NNP NN IN DT JJ NNP NNP .\nThis brings to nine the number of Palestinians killed since an Israeli incursion began Wednesday night in the Khan Younis refugee camp .\tDT VBZ TO CD DT NN IN NNS VBD IN DT JJ NN VBD NNP NN IN DT NNP NNP NN NN .\nSudanese President Omar al-Bashir says Sudan will not hand over any of its citizens to a foreign court , after the United nations voted to refer Darfur war crimes suspects to the International Criminal Court .\tJJ NNP NNP NNP VBZ NNP MD RB VB IN DT IN PRP$ NNS TO DT JJ NN , IN DT NNP NNS VBD TO VB NNP NN NNS VBZ TO DT NNP NNP NNP .\nIn a speech to the leadership council of the ruling National Congress party , Mr. Bashir said Saturday the Sudanese justice system is competent and honest enough to try any war crimes suspects .\tIN DT NN TO DT NN NN IN DT NN NNP NNP NN , NNP NNP VBD NNP DT JJ NN NN VBZ JJ CC JJ NN TO VB DT NN NNS NNS .\nThe U.N. Security Council passed a resolution Thursday to refer 51 people accused of crimes against humanity in Sudan 's western Darfur region to the court in the Hague .\tDT NNP NNP NNP VBD DT NN NNP TO VB CD NNS VBN IN NNS IN NN IN NNP POS JJ NNP NN TO DT NN IN DT NNP .\nHundreds of Sudanese demonstrated in the capital , Khartoum , today to protest the resolution .\tNNS IN NNS VBD IN DT NN , NNP , NN TO VB DT NN .\nThey called for Sudan to cut diplomatic relations with France for having drafted the resolution .\tPRP VBD IN NNP TO VB JJ NNS IN NNP IN VBG VBN DT NN .\nPresident Bush has chosen federal appeals court Judge Samuel Alito as his new nominee for the United States Supreme Court .\tNNP NNP VBZ VBN JJ NNS NN NNP NNP NNP IN PRP$ JJ NN IN DT NNP NNP NNP NNP .\nSpeaking at the White House Monday , the president described Mr. Alito as a man of ' enormous character ' who has shown mastery of the law and a deep commitment to justice .\tVBG IN DT NNP NNP NNP , DT NN VBD NNP NNP IN DT NN IN `` JJ NN `` WP VBZ VBN NN IN DT NN CC DT JJ NN TO NN .\nThe nominee takes the place of White House counsel Harriet Miers , who withdrew her nomination last week after pressure from some of the president 's conservative supporters .\tDT NN VBZ DT NN IN NNP NNP NN NNP NNP , WP VBD PRP$ NN JJ NN IN NN IN DT IN DT NN POS JJ NNS .\nUnlike Ms. Miers , Mr. Alito has a reputation as a solid conservative jurist , and has served 15 years as a judge on the U.S. Third Circuit Court of Appeals .\tIN NNP NNP , NNP NNP VBZ DT NN IN DT JJ JJ NN , CC VBZ VBN CD NNS IN DT NN IN DT NNP NNP NNP NNP IN NNP .\nThe nomination is likely to set off an intense political struggle .\tDT NN VBZ JJ TO VB RP DT JJ JJ NN .\nIf approved by the Senate , Mr. Alito would replace retiring Justice Sandra Day O'Connor , a moderate who has often been the deciding vote in cases dealing with abortion and other contentious issues .\tIN VBN IN DT NNP , NNP NNP MD VB VBG NNP NNP NNP NNP , DT JJ WP VBZ RB VBN DT VBG NN IN NNS VBG IN NN CC JJ JJ NNS .\nOfficials in Pakistan say a suspected suicide bomb blast near the home of a politician has killed at least four people .\tNNS IN NNP VBP DT JJ NN NN NN IN DT NN IN DT NN VBZ VBN IN JJS CD NNS .\nThe bombing happened Thursday in the northwestern town of Charsadda , close to a house belonging to Asfandyar Wali - head of the Awami National Party .\tDT NN VBD NNP IN DT JJ NN IN NNP , RB TO DT NN VBG TO NNP NNP : NN IN DT NNP NNP NNP .\nOfficials say Wali was not hurt in the attack .\tNNS VBP NNP VBD RB VBN IN DT NN .\nIn another development , United Nations employees in Pakistan 's capital , Islamabad , will no longer be allowed to live with their children in the country due to heightened security measures .\tIN DT NN , NNP NNPS NNS IN NNP POS NN , NNP , MD RB RB VB VBN TO VB IN PRP$ NNS IN DT NN JJ TO JJ NN NNS .\nU.N. officials say the secretary general approved raising security following last month 's deadly truck bombing in Islamabad .\tNNP NNS VBP DT NN NN VBD VBG NN VBG JJ NN POS JJ NN VBG IN NNP .\nThe attack at a Marriott Hotel left more than 50 people dead , and greatly raised fears about the country 's security .\tDT NN IN DT NNP NNP VBD JJR IN CD NNS JJ , CC RB VBD NNS IN DT NN POS NN .\nBritain has also issued an order for its diplomats ' children to leave Pakistan .\tNNP VBZ RB VBN DT NN IN PRP$ NNS POS NNS TO VB NNP .\nThe Venezuelan government has seized about 3,30,000 hectares of land it considers idle from 16 estates for use as collective farms .\tDT JJ NN VBZ VBN IN CD NNS IN NN PRP VBZ JJ IN CD NNS IN NN IN JJ NNS .\nPresident Hugo Chavez announced the seizures Sunday on his weekly Hello , President television show .\tNNP NNP NNP VBD DT NNS NNP IN PRP$ JJ NNP , NNP NN NN .\nHe said the land will be mostly used to raise cattle for meat and milk production .\tPRP VBD DT NN MD VB RB VBN TO VB NNS IN NN CC NN NN .\nHe did not elaborate on how the collectivization of the property would work , but said the land belongs to everyone and will benefit everyone .\tPRP VBD RB VB IN WRB DT NN IN DT NN MD VB , CC VBD DT NN VBZ TO DT CC MD VB DT .\nMr. Chavez said the move is part of a program to do away with large private estates .\tNNP NNP VBD DT NN VBZ NN IN DT NN TO VB RB IN JJ JJ NNS .\nMr. Chavez began nationalizing privately-owned industries when he began his second term of office this year in an attempt to turn Venezuela into a socialist state .\tNNP NNP VBD VBG JJ NNS WRB PRP VBD PRP$ JJ NN IN NN DT NN IN DT NN TO VB NNP IN DT JJ NN .\nIn February , he ordered the nationalization of oil projects run by foreign companies .\tIN NNP , PRP VBD DT NN IN NN NNS VBN IN JJ NNS .\nHe had already taken control of a foreign-run telecommunications company and an electric power company .\tPRP VBD RB VBN NN IN DT JJ NN NN CC DT JJ NN NN .\nA major figure in U.S. journalism , Tim Russert , chief of the Washington bureau for NBC television , has collapsed and died of a heart attack in his Washington office .\tDT JJ NN IN NNP NN , NNP NNP , NN IN DT NNP NN IN NNP NN , VBZ VBN CC VBN IN DT NN NN IN PRP$ NNP NN .\nHe was 58 years old .\tPRP VBD CD NNS JJ .\nRussert came to broadcast journalism in 1984 after working for Democratic politicians in his native New York state .\tNNP VBD TO VB NN IN CD IN VBG IN JJ NNS IN PRP$ JJ NNP NNP NN .\nHe took over as host of NBC 's Sunday morning interview program ' Meet the Press ' in 1991 and brought the nearly 50-year-old show to the top of the broadcast ratings .\tPRP VBD RP IN NN IN NNP POS NNP NN NN NN `` VBZ DT NNP `` IN CD CC VBD DT RB JJ NN TO DT NN IN DT NN NNS .\nHe became known for his tough questioning of politicians while maintaining a cheerful demeanor .\tPRP VBD VBN IN PRP$ JJ VBG IN NNS IN VBG DT JJ NN .\nRussert also wrote two best-selling books , including one that chronicled the close relationship with his father .\tNNP RB VBD CD JJ NNS , VBG CD WDT VBD DT JJ NN IN PRP$ NN .\nCuba 's communist party newspaper is signaling a crackdown on black-market satellite dishes used by citizens to get news from the United States .\tNNP POS JJ NN NN VBZ VBG DT NN IN JJ NN NNS VBN IN NNS TO VB NN IN DT NNP NNPS .\nThe newspaper Granma said satellite television programming from the United States carries out the objectives of those who want to destroy the spirit of Cuba 's 1959 communist revolution .\tDT NN NNP VBD NN NN NN IN DT NNP NNPS VBZ RP DT NNS IN DT WP VBP TO VB DT NN IN NNP POS CD JJ NN .\nAs the official voice of the Havana government , such articles in the past have signaled imminent government action .\tIN DT JJ NN IN DT NNP NN , JJ NNS IN DT NN VBP VBN JJ NN NN .\nThe French news agency , AFP , quotes witnesses as saying a government hunt for some of the clandestine dishes has already begun .\tDT JJ NN NN , NNP , VBZ NNS IN VBG DT NN NN IN DT IN DT JJ NNS VBZ RB VBN .\nLast week , Cuban President Fidel Castro , 79 , provisionally surrendered power to his brother , Raul , after undergoing what has been described as stomach surgery .\tJJ NN , JJ NNP NNP NNP , CD , RB VBD NN TO PRP$ NN , NNP , IN VBG WP VBZ VBN VBN IN NN NN .\nThe Cuban population has since been eager for information .\tDT JJ NN VBZ IN VBN JJ IN NN .\nNeither Castro has appeared in public since the announcement .\tDT NNP VBZ VBN IN JJ IN DT NN .\nA new study says the gap between what men and women earn is closing in some nations , but remains as wide as ever in others .\tDT JJ NN VBZ DT NN IN WP NNS CC NNS VBP VBZ VBG IN DT NNS , CC VBZ RB JJ IN RB IN NNS .\nMonday 's report from The World Economic Forum ranks Sweden at the top of a list of 58 major nations .\tNNP POS NN IN DT NNP NNP NNP VBZ NNP IN DT NN IN DT NN IN CD JJ NNS .\nBut it notes that not even Sweden and its nordic neighbors have completely closed the gender gap .\tCC PRP VBZ IN RB RB NNP CC PRP$ JJ NNS VBP RB VBN DT NN NN .\nResearchers examined women 's economic opportunity and participation , political power , education and health in order to come up with the rankings .\tNNS VBD NNS POS JJ NN CC NN , JJ NN , NN CC NN IN NN TO VB RP IN DT NNS .\nThey placed the United States a poor 17th because of what they term inadequate child care , maternity leave and economic opportunity .\tPRP VBD DT NNP NNPS DT JJ JJ IN IN WP PRP VBP JJ NN NN , NN NN CC JJ NN .\nThe researchers ranked Pakistan , Turkey and Egypt at the bottom of the list .\tDT NNS VBD NNP , NNP CC NNP IN DT NN IN DT NN .\nSwitzerland and Russia have skated to the quarterfinals of the men 's Olympic ice hockey tournament at the Turin Games in Italy .\tNNP CC NNP VBP VBN TO DT NNS IN DT NNS POS NNP NN NN NN IN DT NNP NNPS IN NNP .\nThe Swiss played Group A rival Germany to a two-goal draw ( 02-Feb ) Sunday .\tDT NNS VBD NNP NNP JJ NNP TO DT JJ NN LRB CD RRB NNP .\nBut with upset wins over Canada and the Czech Republic , Switzerland will advance .\tCC IN JJ NNS IN NNP CC DT JJ NNP , NNP MD VB .\nGroup A leader Finland has a place , and the Czech Republic and Canada will gain the other two spots with at least ties in games later Sunday .\tNNP NNP NN NNP VBZ DT NN , CC DT JJ NNP CC NNP MD VB DT JJ CD NNS IN IN JJS NNS IN NNS RB NNP .\nSlovakia is guaranteed to finish at the top of Group B , beating Kazakhstan , 02-Jan , to remain undefeated after four games .\tNNP VBZ VBN TO VB IN DT NN IN NNP NNP , VBG NNP , CD , TO VB JJ IN CD NNS .\nEight-time Olympic champion Russia hammered Latvia , 09-Feb , to reach the quarterfinals .\tJJ NNP NN NNP VBN NNP , CD , TO VB DT NNS .\nSweden also will advance .\tNNP RB MD VB .\nThe other place will go to the United States if it gets at least one point from its last two games .\tDT JJ NN MD VB TO DT NNP NNPS IN PRP VBZ IN JJS CD NN IN PRP$ JJ CD NNS .\nSyria has agreed to allow United Nations investigators to question at U.N. headquarters in Vienna five Syrian officials about the assassination of former Lebanese Prime Minister Rafik Hariri .\tNNP VBZ VBN TO VB NNP NNP NNS TO VB IN NNP NN IN NNP CD JJ NNS IN DT NN IN JJ JJ NNP NNP NNP NNP .\nDeputy Foreign Minister Walid Moallem told reporters Friday in Damascus that Syria agreed to the compromise after it received guarantees about the rights of the individuals and assurances that its sovereignty would be respected .\tNNP NNP NNP NNP NNP VBD NNS NNP IN NNP IN NNP VBD TO DT NN IN PRP VBD NNS IN DT NNS IN DT NNS CC NNS IN PRP$ NN MD VB VBN .\nHe did not say when the interviews will take place .\tPRP VBD RB VB WRB DT NNS MD VB NN .\nA U.N. spokeswoman confirmed that a deal has been reached , and she said Secretary-General Kofi Annan expects Syria 's cooperation to continue .\tDT NNP NN VBD IN DT NN VBZ VBN VBN , CC PRP VBD JJ NNP NNP VBZ NNP POS NN TO VB .\nThe compromise ends a deadlock with the United Nations , which had originally asked to interview the Syrians in Beirut .\tDT NN VBZ DT NN IN DT NNP NNPS , WDT VBD RB VBN TO VB DT NNS IN NNP .\nLast month , the U.N. Security Council adopted a resolution demanding that Syria cooperate with the investigation into the February assassination or face possible sanctions .\tJJ NN , DT NNP NNP NNP VBD DT NN VBG IN NNP VBP IN DT NN IN DT NNP NN CC NN JJ NNS .\nSyria has denied any involvement in the killing .\tNNP VBZ VBN DT NN IN DT NN .\nThe United States has condemned the multiple explosions that struck in the Indian capital , New Delhi on Saturday .\tDT NNP NNPS VBZ VBN DT JJ NNS WDT VBD IN DT JJ NN , NNP NNP IN NNP .\nIn a statement released late Saturday , U.S. Secretary of State Condoleezza Rice described the deadly blasts as a heinous act that deliberately targeted innocent civilians preparing for holiday celebrations .\tIN DT NN VBN JJ NNP , NNP NNP IN NNP NNP NNP VBD DT JJ NNS IN DT JJ NN IN RB VBN JJ NNS VBG IN NN NNS .\nShe said fighting terrorism is a struggle shared around the world and that the United States stands with India as it seeks to bring the guilty to justice .\tPRP VBD VBG NN VBZ DT NN VBN IN DT NN CC IN DT NNP NNPS VBZ IN NNP IN PRP VBZ TO VB DT JJ TO NN .\nElsewhere , U.N. Secretary General Kofi Annan said he was appalled by the crime and urged authorities to prosecute those responsible .\tRB , NNP NNP NNP NNP NNP VBD PRP VBD VBN IN DT NN CC VBD NNS TO VB DT JJ .\nIn Pakistan , the Minister for Information and Broadcasting , Sheikh Rashid Ahmad , said his country is shocked at what he called an act of barbarism .\tIN NNP , DT NNP IN NNP CC NNP , NNP NNP NNP , VBD PRP$ NN VBZ VBN IN WP PRP VBD DT NN IN NN .\nJapan 's foreign ministry called the attacks a cowardly act .\tNNP POS JJ NN VBD DT NNS DT RB NN .\nAustralian Prime Minister John Howard , British Foreign Secretary Jack Straw and Chinese President Hu Jintao also condemned the attacks .\tJJ NNP NNP NNP NNP , NNP NNP NNP NNP NNP CC JJ NNP NNP NNP RB VBD DT NNS .\nThousands of mourners in Azerbaijan have turned out for the funeral of magazine editor Elmar Husseinov , who was gunned down earlier in the week .\tNNS IN NNS IN NNP VBP VBN RP IN DT NN IN NN NN NNP NNP , WP VBD VBN RB RBR IN DT NN .\nOpposition supporters gathered for the funeral procession Friday protested what they say are oppressive media conditions .\tNN NNS VBD IN DT JJ NN NNP VBD WP PRP VBP VBP JJ NNS NNS .\nMr. Husseinov worked for the weekly Monitor , which has been critical of the government .\tNNP NNP VBD IN DT JJ NNP , WDT VBZ VBN JJ IN DT NN .\nHe had previously been fined and jailed for his work .\tPRP VBD RB VBN VBN CC VBN IN PRP$ NN .\nHe was found shot to death outside his apartment in Baku Wednesday .\tPRP VBD VBN VBN IN NN IN PRP$ NN IN NNP NNP .\nThe United States has sent an FBI agent to help find those responsible for the killing .\tDT NNP NNPS VBZ VBN DT NNP NN TO VB VB DT JJ IN DT NN .\nPresident Ilham Aliyev ordered a swift investigation into the attack , calling it a serious provocation against the state and authority .\tNNP NNP NNP VBD DT JJ NN IN DT NN , VBG PRP DT JJ NN IN DT NN CC NN .\nMedia groups , including the Committee to Protect Journalists and Reporters Without Borders , have condemned the killing and expressed concern about what they describe as government harassment and repression of the media .\tNNS NNS , VBG DT NNP TO VB NNS CC NNS IN NNS , VBP VBN DT NN CC VBD NN IN WP PRP VBP IN NN NN CC NN IN DT NNS .\nSocialist Michelle Bachelet is set to become Chile 's first woman president after winning Sunday 's runoff election .\tNNP NNP NNP VBZ VBN TO VB NNP POS JJ NN NN IN VBG NNP POS NN NN .\nHer rightist opponent Sebastian Pinera conceded defeat as vote tallies put Bachelet ahead with 53 percent of the ballots .\tPRP$ JJ NN NNP NNP VBD NN IN NN NNS VBD NNP RB IN CD NN IN DT NNS .\nPinera was behind with less than 47 percent .\tNNP VBD IN IN JJR IN CD NN .\nTwo-thirds of the vote have been counted .\tNNS IN DT NN VBP VBN VBN .\nBachelet , a former political prisoner and later a defense minister , had been projected to win .\tNNP , DT JJ JJ NN CC RB DT NN NN , VBD VBN VBN TO VB .\nSucceeding current President Ricardo Lagos , she will inherit an economy that has surged in part because of soaring prices for copper , which is Chile 's top export .\tVBG JJ NNP NNP NNP , PRP MD VB DT NN WDT VBZ VBN IN NN IN IN VBG NNS IN NN , WDT VBZ NNP POS JJ NN .\nThe European Space Agency says the Huygens space probe has successfully transmitted scientific data from Saturn 's moon Titan .\tDT NNP NNP NNP VBZ DT NNP NN NN VBZ RB VBN JJ NNS IN NNP POS NN NNP .\nOfficials say the probe , operated jointly by the American , European and Italian space agencies , is continuing to transmit data after landing on the moon 's surface earlier Friday .\tNNS VBP DT NN , VBN RB IN DT JJ , JJ CC JJ NN NNS , VBZ VBG TO VB NNS IN NN IN DT NN POS NN RB NNP .\nHuygens is studying the composition of Titan 's atmosphere and relaying the information to the probe 's parent craft , Cassini , for transmission to Earth .\tNNP VBZ VBG DT NN IN NNP POS NN CC VBG DT NN TO DT NN POS NN NN , NNP , IN NN TO NNP .\nEuropean space officials say the probe will continue to transmit data over the next few hours .\tJJ NN NNS VBP DT NN MD VB TO VB NNS IN DT JJ JJ NNS .\nIt takes about one hour for the signal to travel from the probe back to Earth .\tPRP VBZ IN CD NN IN DT NN TO VB IN DT NN RB TO NNP .\nScientists believe conditions on Titan are similar to those here on Earth before life evolved , which could help them understand the origin of our atmosphere .\tNNS VBP NNS IN NNP VBP JJ TO DT RB IN NN IN NN VBD , WDT MD VB PRP VB DT NN IN PRP$ NN .\nPresident Bush says he takes ' full responsibility ' for what went wrong with the federal response to the disaster caused by Hurricane Katrina .\tNNP NNP VBZ PRP VBZ `` JJ NN `` IN WP VBD JJ IN DT JJ NN TO DT NN VBN IN NNP NNP .\nSpeaking at the White House Tuesday , Mr. Bush said Katrina exposed serious problems in the response capability at all levels of government to disasters .\tVBG IN DT NNP NNP NNP , NNP NNP VBD NNP VBD JJ NNS IN DT NN NN IN DT NNS IN NN TO NNS .\nPresident Bush has seen his approval rating drop to its lowest point ever in several public opinion polls , amid widespread criticism of the federal government 's initial response to the storm .\tNNP NNP VBZ VBN PRP$ NN NN NN TO PRP$ JJS NN RB IN JJ JJ NN NNS , IN JJ NN IN DT JJ NN POS JJ NN TO DT NN .\nTelevision images showed hundreds of New Orleans residents waiting for help on docks or rooftops for several days after Katrina hit .\tNN NNS VBD NNS IN NNP NNP NNS VBG IN NN IN NNS CC NNS IN JJ NNS IN NNP VBD .\nEarlier , the White House said President Bush will address the nation from Louisiana late Thursday .\tRB , DT NNP NNP VBD NNP NNP MD VB DT NN IN NNP JJ NNP .\nNew Orleans ' Louis Armstrong international airport plans to resume some commercial flights Tuesday .\tNNP NNP POS NNP NNP JJ NN VBZ TO VB DT JJ NNS NNP .\nThe World Food Program says it will continue supplying aid to survivors of the Indian Ocean tsunami in Indonesia and Sri Lanka until 2007 .\tDT NNP NNP NNP VBZ PRP MD VB VBG NN TO NNS IN DT NNP NNP NN IN NNP CC NNP NNP IN CD .\nIn a statement Tuesday the WFP said the aid will be focused on the most vulnerable : children , new mothers , the elderly and displaced people .\tIN DT NN NNP DT NNP VBD DT NN MD VB VBN IN DT RBS JJ IN NNS , JJ NNS , DT NN CC JJ NNS .\nThe WFP director for Asia , Anthony Banbury , said the agency will remain active in the area until people are back on their feet and have regained the livelihoods they lost .\tDT NNP NN IN NNP , NNP NNP , VBD DT NN MD VB JJ IN DT NN IN NNS VBP RB IN PRP$ NNS CC VBP VBN DT NNS PRP VBD .\nAbout 1.5 million people will receive assistance .\tRB CD CD NNS MD VB NN .\nThe WFP statement said aid to the Maldives and Somalia will be phased out by the end of the year .\tDT NNP NN VBD NN TO DT NNP CC NNP MD VB VBN RP IN DT NN IN DT NN .\nAssistance to Burma and Thailand ended in mid 2005 .\tNNP TO NNP CC NNP VBD IN JJ CD .\nCuba says it has resumed diplomatic contact with eight European Union countries that have stopped inviting dissidents to official embassy events .\tNNP VBZ PRP VBZ VBN JJ NN IN CD NNP NNP NNS WDT VBP VBN VBG NNS TO JJ JJ NNS .\nForeign Minister Felipe Perez Roque announced the Cuban government 's decision at a news conference in Havana Monday .\tJJ NN NNP NNP NNP VBD DT JJ NN POS NN IN DT NN NN IN NNP NNP .\nMr. Roque says Cuban authorities will start meeting with the ambassadors of the EU countries which include France , Germany and Britain .\tNNP NNP VBZ JJ NNS MD VB VBG IN DT NNS IN DT NNP NNS WDT VBP NNP , NNP CC NNP .\nRelations between Cuba and the European Union became strained in 2003 after the Cuban government cracked down on opposition to President Fidel Castro .\tNNP IN NNP CC DT NNP NNP VBD VBN IN CD IN DT JJ NN VBD RP IN NN TO NNP NNP NNP .\nSeventy-five dissidents were arrested and imprisoned for lenghty jail terms .\tCD NNS VBD VBN CC VBN IN JJ NN NNS .\nFourteen of them have been released .\tCD IN PRP VBP VBN VBN .\nThe European Union began to reduce high-level government visits and invited dissidents to embassy gatherings .\tDT NNP NNP VBD TO VB JJ NN NNS CC VBD NNS TO VB NNS .\nIran 's judiciary says it is not ready to announce the verdicts of several al-Qaida members who Tehran says were tried and sentenced in the Islamic state .\tNNP POS NN VBZ PRP VBZ RB JJ TO VB DT NNS IN JJ NNP NNS WP NNP VBZ VBD VBN CC VBN IN DT JJ NN .\nAn Iranian judiciary official said Tuesday the verdicts will only be released when all ' legal obstacles are removed . '\tDT JJ NN NN VBD NNP DT NNS MD RB VB VBN WRB DT `` JJ NNS VBP VBN . ``\nHe did not offer any details .\tPRP VBD RB VB DT NNS .\nIran has not said how many suspected al-Qaida members were on trial , or released details on the charges against them .\tNNP VBZ RB VBN WRB JJ JJ NNP NNS VBD IN NN , CC VBN NNS IN DT NNS IN PRP .\nIran denies accusations that it has become a haven for al-Qaida militants .\tNNP VBZ NNS IN PRP VBZ VBN DT NN IN NNP NNS .\nAuthorities in Indian Kashmir say a suspected Islamic militant and three policemen have been killed and at least six people wounded in two separate incidents .\tNNS IN JJ NNP VBP DT JJ JJ NN CC CD NNS VBP VBN VBN CC IN JJS CD NNS VBN IN CD JJ NNS .\nPolice say one militant and three policemen were killed during a raid late Tuesday on a house in a village northeast of Jammu city .\tNNS VBP CD JJ CC CD NNS VBD VBN IN DT NN JJ NNP IN DT NN IN DT NN NN IN NNP NN .\nThey say three houses were damaged in the fighting .\tPRP VBP CD NNS VBD VBN IN DT NN .\nIn a separate incident in Srinagar Wednesday , suspected militants lobbed a grenade at police officers , wounding at least two policemen and four civilians .\tIN DT JJ NN IN NNP NNP , JJ NNS VBD DT NN IN NN NNS , VBG IN JJS CD NNS CC CD NNS .\nMilitant separatist groups in Indian Kashmir continue attacks against government targets , saying they oppose the ongoing peace process between India and Pakistan .\tJJ NN NNS IN NNP NNP VBP NNS IN NN NNS , VBG PRP VBP DT JJ NN NN IN NNP CC NNP .\nKashmiri militants have been fighting since 1989 for Kashmir 's independence or its merger with Pakistan .\tJJ NNS VBP VBN VBG IN CD IN NNP POS NN CC PRP$ NN IN NNP .\nThe insurgency has claimed tens of thousand of lives .\tDT NN VBZ VBN NNS IN CD IN NNS .\nA leading Palestinian newspaper says Prime Minister Ahmed Qureia will resign next week .\tDT VBG JJ NN VBZ NNP NNP NNP NNP MD VB JJ NN .\nThe al-Hayam newspaper Wednesday said Mr. Qureia will quit after returning from medical treatments in Paris .\tDT JJ NN NNP VBD NNP NNP MD VB IN VBG IN JJ NNS IN NNP .\nThere has been no official confirmation of the report .\tEX VBZ VBN DT JJ NN IN DT NN .\nOn Sunday , Palestinian lawmakers voted overwhelmingly to urge Palestinian Authority President Mahmoud Abbas to fire his cabinet for failing to stop factional fighting in the Gaza Strip .\tIN NNP , JJ NNS VBD RB TO VB JJ NNP NNP NNP NNP TO VB PRP$ NN IN VBG TO VB JJ NN IN DT NNP NNP .\nThe lawmakers demanded that Mr. Abbas appoint a new prime minister within two weeks or else face a no-confidence vote .\tDT NNS VBD IN NNP NNP VB DT JJ JJ NN IN CD NNS CC RB VB DT JJ NN .\nThe action came after a legislative committee presented a special report on the deteriorating Gaza security situation .\tDT NN VBD IN DT JJ NN VBD DT JJ NN IN DT JJ NNP NN NN .\nHours earlier Sunday , a Palestinian police commander and two civilian bystanders were killed and at least 50 others wounded in gunbattles between Hamas militants and police .\tNNS RBR NNP , DT JJ NN NN CC CD JJ NNS VBD VBN CC IN JJS CD NNS VBN IN NNS IN NNP NNS CC NNS .\nTwo separate bomb attacks in southern Afghanistan Wednesday killed five people and injured several others .\tCD JJ NN NNS IN JJ NNP NNP VBD CD NNS CC VBN JJ NNS .\nA NATO spokesman says a suicide bomber blew up a vehicle at a police checkpoint in the Zahri district of Kandahar province , killing himself and three policemen .\tDT NNP NN VBZ DT NN NN VBD RP DT NN IN DT NN NN IN DT NNP NN IN NNP NN , VBG PRP CC CD NNS .\nThree other policemen were wounded in the attack .\tCD JJ NNS VBD VBN IN DT NN .\nAlso in Kandahar , a remote-controlled bomb killed two Afghan security guards working for a U.S. company .\tRB IN NNP , DT JJ NN VBD CD JJ NN NNS VBG IN DT NNP NN .\nSix other guards were wounded .\tCD JJ NNS VBD VBN .\nIn another development , U.S. forces say they have captured two suspected al-Qaida militants during a raid in eastern Afghanistan .\tIN DT NN , NNP NNS VBP PRP VBP VBN CD JJ NNP NNS IN DT NN IN JJ NNP .\nA military statement says the two Afghan men were taken into custody this Wednesday morning in Nangarhar province .\tDT JJ NN VBZ DT CD JJ NNS VBD VBN IN NN DT NNP NN IN NNP NN .\nThe statement says coalition forces acted on intelligence about an al-Qaida member known to pass messages to senior leaders of the group .\tDT NN VBZ NN NNS VBD IN NN IN DT NNP NN VBN TO VB NNS TO JJ NNS IN DT NN .\nIt says the two detained men are being questioned about links to the terrorist organization .\tPRP VBZ DT CD JJ NNS VBP VBG VBN IN NNS TO DT JJ NN .\nAn official with Cuba 's biotechnology program says his country may develop a bird flu vaccine .\tDT NN IN NNP POS NN NN VBZ PRP$ NN MD VB DT NN NN NN .\nCarlos Borroto , with Cuba 's Center for Genetic Engineering and Biotechnology , made the comment Thursday .\tNNP NNP , IN NNP POS NNP IN NNP NNP CC NNP , VBD DT NN NNP .\nBut he said officials do not want to raise expectations because they are still studying the project 's feasibility .\tCC PRP VBD NNS VBP RB VB TO VB NNS IN PRP VBP RB VBG DT NN POS NN .\nThe official also said the two drugs now in use against avian flu are effective , but were not being produced in sufficient quantities .\tDT NN RB VBD DT CD NNS RB IN NN IN JJ NN VBP JJ , CC VBD RB VBG VBN IN JJ NNS .\nThe remarks come as Cuba prepares to host an international biotechnology conference in Havana .\tDT NNS VBP IN NNP VBZ TO VB DT JJ NN NN IN NNP .\nAn estimated 500 scientists from 35 countries are expected at the talks , beginning November 27 in Havana .\tDT VBN CD NNS IN CD NNS VBP VBN IN DT NNS , VBG NNP CD IN NNP .\nCuba 's biotechnology industry is one of the most advanced in the developing world .\tNNP POS NN NN VBZ CD IN DT RBS JJ IN DT JJ NN .\nThe United Nations Security Council has adopted a resolution condemning the bombings in London .\tDT NNP NNP NNP NNP VBZ VBN DT NN VBG DT NNS IN NNP .\nThe unanimous vote came Thursday during an emergency meeting of the 15-member council , on which Britain holds a permanent seat .\tDT JJ NN VBD NNP IN DT NN NN IN DT JJ NN , IN WDT NNP VBZ DT JJ NN .\nThe measure expresses condolences for the British people and the victims of the four bombings in London .\tDT NN VBZ NNS IN DT JJ NNS CC DT NNS IN DT CD NNS IN NNP .\nIt says any act of terrorism threatens peace and security .\tPRP VBZ DT NN IN NN VBZ NN CC NN .\nSimilar resolutions of condemnation were passed following the Madrid train bombings in 2004 , and the September 11 , 2001 attacks in the United States .\tJJ NNS IN NN VBD VBN VBG DT NNP NN NNS IN CD , CC DT NNP CD , CD NNS IN DT NNP NNPS .\nU.N. Secretary-General Kofi Annan , now in Scotland , joined leaders from the Group of Eight Industrialized nations in strongly condemning the London attacks .\tNNP NNP NNP NNP , RB IN NNP , VBD NNS IN DT NNP IN CD VBN NNS IN RB VBG DT NNP NNS .\nBomb blasts killed at least 20 people in Iraq Wednesday , and the U.S. military urged Iraqi political leaders to increase efforts to stem the bloodshed .\tNN NNS VBD IN JJS CD NNS IN NNP NNP , CC DT NNP NN VBD JJ JJ NNS TO VB NNS TO VB DT NN .\nIraqi security officials say a car bomb blast in a Shi'ite neighborhood in eastern Baghdad killed at least 10 people and wounded 25 others .\tJJ NN NNS VBP DT NN NN NN IN DT NNP NN IN JJ NNP VBD IN JJS CD NNS CC VBD CD NNS .\nLater , two car bombs exploded in another eastern suburb , killing five day laborers and wounding 10 others .\tRB , CD NN NNS VBD IN DT JJ NN , VBG CD NN NNS CC VBG CD NNS .\nIn the town of Riyadh , some 50 kilometers south of Kirkuk , suicide car bombers attacked an Iraqi army base and killed at least five soldiers and wounded 10 others .\tIN DT NN IN NNP , DT CD NNS RB IN NNP , NN NN NNS VBD DT JJ NN NN CC VBN IN JJS CD NNS CC VBD CD NNS .\nIn a village south of Baghdad , gunmen stormed a house and killed nine members of a Shi'ite family .\tIN DT NN NN IN NNP , NNS VBD DT NN CC VBD CD NNS IN DT NNP NN .\nU.S. military spokesman Major General William Caldwell warned that the upsurge in violence will continue unless Iraqi political leaders make a greater effort to overcome their differences .\tNNP JJ NN NNP NNP NNP NNP VBD IN DT NN IN NN MD VB IN JJ JJ NNS VBP DT JJR NN TO VB PRP$ NNS .\nFrench President Jacques Chirac has signaled he will probably not seek an unprecedented third term in this year 's presidential elections .\tJJ NNP NNP NNP VBZ VBN PRP MD RB RB VB DT JJ JJ NN IN DT NN POS JJ NNS .\nThe 74-year-old president said in a TV interview to be broadcast on Sunday that there is life after politics .\tDT JJ NN VBD IN DT NN NN TO VB VBN IN NNP IN EX VBZ NN IN NNS .\nIn office since 1995 , Mr. Chirac said he hoped to continue to serve France but ' in another capacity . '\tIN NN IN CD , NNP NNP VBD PRP VBD TO VB TO VB NNP CC `` IN DT NN . ``\nAs recently as last month , Mr. Chirac had indicated he was contemplating a new run at the presidency and would announce his intentions at a later date .\tRB RB IN JJ NN , NNP NNP VBD VBN PRP VBD VBG DT JJ NN IN DT NN CC MD VB PRP$ NNS IN DT JJ NN .\nIf he were to run , he must declare his candidacy before mid-March for the elections in April .\tIN PRP VBD TO VB , PRP MD VB PRP$ NN IN NN IN DT NNS IN NNP .\nPolls have shown that a large majority of the French do not want Mr. Chirac to run again .\tNNS VBP VBN IN DT JJ NN IN DT NNS VBP RB VB NNP NNP TO VB RB .\nMr. Chirac 's popularity ratings are low , and many in the French electorate view him as old and out of touch .\tNNP NNP POS NN NNS VBP JJ , CC NN IN DT JJ JJ VBP PRP IN JJ CC IN IN NN .\nVenezuelan President Hugo Chavez has criticized U.S. President George Bush for his handling of the U.S. financial crisis .\tJJ NNP NNP NNP VBZ VBN NNP NNP NNP NNP IN PRP$ NN IN DT NNP JJ NN .\nMr. Chavez said Friday that the crisis has put the world economy at risk .\tNNP NNP VBD NNP IN DT NN VBZ VBN DT NN NN IN NN .\nThe Venezuelan leader spoke to reporters from the presidential palace in Paris following a meeting with French President Nicolas Sarkozy .\tDT JJ NN VBD TO NNS IN DT JJ NN IN NNP VBG DT NN IN JJ NNP NNP NNP .\nMr. Chavez praised President Sarkozy and said the two discussed technology transfers and energy issues .\tNNP NNP VBD NNP NNP CC VBD DT CD VBN NN NNS CC NN NNS .\nEarlier Friday , Mr. Chavez was in Russia where he signed an energy cooperation pact with Russian President Dmitry Medvedev .\tRBR NNP , NNP NNP VBD IN NNP WRB PRP VBD DT NN NN NN IN JJ NNP NNP NNP .\nRussian energy officials recently said they will expand their investment in Venezuela 's oil industry .\tJJ NN NNS RB VBD PRP MD VB PRP$ NN IN NNP POS NN NN .\nThe Venezuelan leader 's trip has also taken him to Cuba and China .\tDT JJ NN POS NN VBZ RB VBN PRP TO NNP CC NNP .\nHe plans to stop in Portugal before returning home .\tPRP VBZ TO VB IN NNP IN VBG NN .\nPope John Paul has spent a second night under close medical care , but Vatican officials say his fragile health has stabilized .\tNNP NNP NNP VBZ VBN DT JJ NN IN JJ JJ NN , CC NNP NNS VBP PRP$ JJ NN VBZ VBN .\nVatican chief spokesman Joaquin Navarro-Valls said Wednesday the pope was running a slight fever and will remain at Rome 's Gemelli hospital for a few more days .\tNNP NN NN NNP NNP VBD NNP DT NN VBD VBG DT JJ NN CC MD VB IN NNP POS NNP NN IN DT JJ JJR NNS .\nItalian Prime Minister Silvio Berlusconi said he is convinced the pontiff will be released in two or three days .\tJJ NNP NNP NNP NNP VBD PRP VBZ VBN DT NN MD VB VBN IN CD CC CD NNS .\nThe 84-year old pope was hospitalized late Tuesday for treatment of an acute inflammation of the respiratory tract brought on by the flu .\tDT JJ JJ NN VBD VBN JJ NNP IN NN IN DT JJ NN IN DT JJ NN VBN RP IN DT NN .\nHe came down with the flu Sunday and had canceled all of his engagements over the past couple of days .\tPRP VBD RP IN DT NN NNP CC VBD VBN DT IN PRP$ NNS IN DT JJ NN IN NNS .\nThe pope suffers from Parkinson 's disease , which gradually affects control of the muscles , including those of the throat and chest .\tDT NN VBZ IN NNP POS NN , WDT RB VBZ NN IN DT NNS , VBG DT IN DT NN CC NN .\nA four-year-old girl in Egypt has tested positive for bird flu , the 44th confirmed human case of the deadly disease in the Arab world 's most populous country .\tDT JJ NN IN NNP VBZ VBN JJ IN NN NN , DT NN VBD JJ NN IN DT JJ NN IN DT JJ NN POS RBS JJ NN .\nEgyptian health ministry officials say the girl is from the southern village of Sheik Massoud in Minya province .\tJJ NN NN NNS VBP DT NN VBZ IN DT JJ NN IN NNP NNP IN NNP NN .\nShe was admitted to a Cairo hospital for treatment on Monday .\tPRP VBD VBN TO DT NNP NN IN NN IN NNP .\nOf the 44 bird flu cases confirmed so far in Egypt , 19 have been fatal .\tIN DT CD NN NN NNS VBN RB RB IN NNP , CD VBP VBN JJ .\nMost of the fatalities have been women or girls whose families raise poultry , which brings them into daily contact with chickens or turkeys .\tJJS IN DT NNS VBP VBN NNS CC NNS WP$ NNS VBP NN , WDT VBZ PRP IN JJ NN IN NNS CC NNS .\nClose to five million Egyptian households depend on poultry for food or income .\tNN TO CD CD JJ NNS VBP IN NN IN NN CC NN .\nThe government says this makes it unlikely that the disease can be eradicated despite a large-scale poultry vaccination program .\tDT NN VBZ DT VBZ PRP JJ IN DT NN MD VB VBN IN DT JJ NN NN NN .\nFour Egyptian women died from bird flu last December .\tCD JJ NNS VBD IN NN NN JJ NNP .\nThousands of tsunami victims in Sri Lanka are slowly returning to government-run centers a day after flash floods forced them out .\tNNS IN NN NNS IN NNP NNP VBP RB VBG TO NN NNS DT NN IN NN NNS VBD PRP RP .\nThe floods are also slowing down relief efforts .\tDT NNS VBP RB VBG RP NN NNS .\nAid convoys continue to have difficulty reaching some of the hardest-hit areas on the devastated eastern coast .\tNNP NNS VBP TO VB NN VBG DT IN DT JJ NNS IN DT JJ JJ NN .\nHealth officials say they are bracing for outbreaks of contagious diseases as hundreds of thousands of displaced people live in unsanitary conditions and lack clean drinking water .\tNNP NNS VBP PRP VBP VBG IN NNS IN JJ NNS IN NNS IN NNS IN JJ NNS VBP IN JJ NNS CC NN JJ NN NN .\nAid continues to arrive from other countries .\tNNP VBZ TO VB IN JJ NNS .\nThe first contingent of 1,500 U.S. Marines , along with a ship carrying 20 helicopters , are due to arrive in Sri Lanka later Sunday .\tDT JJ JJ IN CD NNP NNPS , IN IN DT NN VBG CD NNS , VBP JJ TO VB IN NNP NNP RB NNP .\nThe Marines will operate from an offshore platform south of the port city of Galle .\tDT NNPS MD VB IN DT JJ NN NN IN DT JJ NN IN NNP .\nRussia and China are conducting three days of joint anti-terrorism exercises in Moscow .\tNNP CC NNP VBP VBG CD NNS IN JJ NN NNS IN NNP .\nThe event began Tuesday with a simulation of a hostage situation in an administrative building , complete with attackers wearing helmets and carrying weapons .\tDT NN VBD NNP IN DT NN IN DT NN NN IN DT JJ NN , JJ IN NNS VBG NNS CC VBG NNS .\nThe exercises are a followup to large-scale maneuvers last month that involved not just Russia and China but also forces from Kazakhstan , Kyrgyzstan , Tajikistan , and Uzbekistan .\tDT NNS VBP DT NN TO JJ NNS JJ NN WDT VBD RB RB NNP CC NNP CC RB NNS IN NNP , NNP , NNP , CC NNP .\nThose exercises were held near Chelyabinsk in Russia , near the border with Kazakhstan .\tDT NNS VBD VBN IN NNP IN NNP , IN DT NN IN NNP .\nBritain says it will relax controls on the export of civilian nuclear technology to India .\tNNP VBZ PRP MD VB NNS IN DT NN IN JJ JJ NN TO NNP .\nThe British government says India is a key international partner in fighting terrorism and weapons of mass destruction following India 's agreement to adhere to international guidelines on nuclear nonproliferation .\tDT JJ NN VBZ NNP VBZ DT JJ JJ NN IN VBG NN CC NNS IN NN NN VBG NNP POS NN TO VB TO JJ NNS IN JJ NN .\nBritish Foreign Secretary Jack Straw also noted the ongoing improvement in India 's relations with Pakistan .\tJJ NNP NNP NNP NNP RB VBD DT JJ NN IN NNP POS NNS IN NNP .\nLast month , New Delhi and Washington reached an agreement under which India agreed to separate its civilian and military nuclear programs , continue a moratorium on nuclear testing and open the civilian facilities for U.N. inspections .\tJJ NN , NNP NNP CC NNP VBD DT NN IN WDT NNP VBD TO VB PRP$ JJ CC JJ JJ NNS , VBP DT NN IN JJ NN CC VB DT JJ NNS IN NNP NNS .\nUnder the accord , the United States promised India full cooperation in helping India fulfill its growing energy needs , including the sale of nuclear power plants .\tIN DT NN , DT NNP NNPS VBD NNP JJ NN IN VBG NNP VB PRP$ VBG NN NNS , VBG DT NN IN JJ NN NNS .\nThe party of Burmese pro-democracy leader Aung San Suu Kyi is urging voters to reject a proposed new constitution conceived by the country 's ruling military regime .\tDT NN IN JJ JJ NN NNP NNP NNP NNP VBZ VBG NNS TO VB DT VBN JJ NN VBN IN DT NN POS NN JJ NN .\nThe National League for Democracy issued a statement Wednesday calling on citizens to vote ' no ' when the charter comes up for approval in a referendum scheduled for May .\tDT NNP NNP IN NNP VBD DT NN NNP VBG IN NNS TO VB `` DT `` WRB DT NN VBZ RP IN NN IN DT NN VBN IN NNP .\nGeneral elections will be held in 2010 .\tNNP NNS MD VB VBN IN CD .\nInternational critics have denounced the proposed constitution , saying it solidifies the military junta 's hold on power .\tJJ NNS VBP VBN DT VBN NN , VBG PRP VBZ DT JJ NN POS NN IN NN .\nThe draft charter also bars Aung San Suu Kyi from the elections , on the grounds that she was once married to a foreigner , a British citizen who died of cancer in 1999 .\tDT NN NN RB VBZ NNP NNP NNP NNP IN DT NNS , IN DT NNS IN PRP VBD RB VBN TO DT NN , DT JJ NN WP VBD IN NN IN CD .\nAung San Suu Kyi 's National League for Democracy party won Burma 's last general elections in 1990 , but the country 's military leaders ignored the result .\tNNP NNP NNP NNP POS NNP NNP IN NNP NN VBD NNP POS JJ JJ NNS IN CD , CC DT NN POS JJ NNS VBD DT NN .\nPolice in India say at least 15 people were killed Sunday when a highway overpass under construction collapsed in southern India .\tNNS IN NNP VBP IN JJS CD NNS VBD VBN NNP WRB DT NN NN IN NN VBD IN JJ NNP .\nAbout 10 people were also reported to be injured .\tIN CD NNS VBD RB VBN TO VB VBN .\nIt is unclear as to whether any others were trapped .\tPRP VBZ JJ IN TO IN DT NNS VBD VBN .\nThe overpass was located in a busy commercial area in Hyderabad , the capital of Andhra Pradesh state .\tDT NN VBD VBN IN DT JJ JJ NN IN NNP , DT NN IN NNP NNP NN .\nWhen it comes to entertainment earnings , men still dominate .\tWRB PRP VBZ TO NN NNS , NNS RB VBP .\nForbes Magazine has just released its 2007 listing of the World 's Most Powerful Celebrities , with men on average earning nearly twice as much as their female counterparts .\tNNP NNP VBZ RB VBN PRP$ CD NN IN DT NNP POS JJS JJ NNS , IN NNS IN NN VBG RB RB RB JJ IN PRP$ JJ NNS .\nMovie actor Tom Cruise ranks atop this year 's list , earning $ 67 million .\tNN NN NNP NNP VBZ IN DT NN POS NN , VBG $ CD CD .\nRounding out the top five are , in descending order , rock singer Mick Jagger ; talk show hostess-producer Oprah Winfrey ; rock band U2 ; and golfer Tiger Woods .\tVBG RP DT JJ CD VBP , IN VBG NN , NN NN NNP NNP ; NN NN NN NNP NNP ; NN NN NNP ; CC NN NNP NNP .\nThe list measures both the stars ' earnings and their influence within their respective fields .\tDT NN VBZ DT DT NNS POS NNS CC PRP$ NN IN PRP$ JJ NNS .\nMovie industry analysts say men have the upper hand through career longevity and overall box-office appeal .\tNN NN NNS VBP NNS VBP DT JJ NN IN NN NN CC JJ JJ NN .\nFive West African heads of state will travel to Togo Friday to pressure the military-installed government to return the nation to consitutional order , or face sanctions .\tCD JJ JJ NNS IN NN MD VB TO NNP NNP TO VB DT JJ NN TO VB DT NN TO JJ NN , CC NN NNS .\nThe delegation , made up of the presidents of Nigeria , Niger , Benin , Mali and Ghana , will demand Togo reverse constitutional changes , made shortly after President Gnassingbe Eyadema died on Saturday , that allow his son to serve out his term until 2008 .\tDT NN , VBD IN IN DT NNS IN NNP , NNP , NNP , NNP CC NNP , MD VB NNP VB JJ NNS , VBN RB IN NNP NNP NNP VBD IN NNP , WDT VBP PRP$ NN TO VB RP PRP$ NN IN CD .\nWest African leaders say Togo must respect the prior constitution which called for new elections within 60 days , and the temporary handing over of power to the spearker of the parliament in the event of the president 's death .\tJJ JJ NNS VBP NNP MD VB DT JJ NN WDT VBD IN JJ NNS IN CD NNS , CC DT JJ NN IN IN NN TO DT NN IN DT NN IN DT NN IN DT NN POS NN .\nThe Economic Community of West African States , ECOWAS , says it will not recognize the new government , calling the events in Togo a coup .\tDT NNP NNP IN NNP NNP NNP , NNP , VBZ PRP MD RB VB DT JJ NN , VBG DT NNS IN NNP DT NN .\nThe new Togolese president , Faure Gnassingbe , has promised to hold general elections as soon as possible .\tDT JJ NN NN , NNP NNP , VBZ VBN TO VB JJ NNS RB RB IN JJ .\nChina 's Commerce Ministry says major differences remain between Beijing and Washington over textile exports after two days of talks on the issue in San Francisco , California earlier this week .\tNNP POS NNP NNP VBZ JJ NNS VBP IN NNP CC NNP IN JJ NNS IN CD NNS IN NNS IN DT NN IN NNP NNP , NNP RBR DT NN .\nA statement Thursday on the ministry 's website said Chinese officials are hopeful future talks will yield an agreement .\tDT NN NNP IN DT NN POS NN VBD JJ NNS VBP JJ JJ NNS MD VB DT NN .\nThe meetings focused on U.S. limits on Chinese imports intended to protect American clothing manufacturers from low-cost competition .\tDT NNS VBD IN NNP NNS IN JJ NNS VBN TO VB JJ NN NNS IN JJ NN .\nChinese products flooded the market this year after global trade quotas expired .\tJJ NNS VBD DT NN DT NN IN JJ NN NNS VBD .\nU.S. textile manufacturers complain they have lost 26,000 jobs to cheap Chinese imports .\tNNP NN NNS VBP PRP VBP VBN CD NNS TO JJ JJ NNS .\nBut American retailers argue that sharp limits on low-cost imports could cost U.S. consumers $ 6 billion in higher clothing bills annually .\tCC JJ NNS VBP IN JJ NNS IN JJ NNS MD VB NNP NNS $ CD CD IN JJR NN NNS RB .\nThat works out to about $ 20 a person in the United States .\tDT VBZ RP TO IN $ CD DT NN IN DT NNP NNPS .\nNo breakthroughs were reported during talks in Luxembourg Sunday aimed at ending a stalemate blocking European Union membership negotiations with Turkey .\tDT NNS VBD VBN IN NNS IN NNP NNP VBN IN VBG DT NN VBG NNP NNP NN NNS IN NNP .\nEU foreign ministers , meeting in emergency session in Luxembourg , are expected to meet again Monday -- the same day the long-awaited negotiations with Turkey were supposed to begin .\tNNP JJ NNS , NN IN NN NN IN NNP , VBP VBN TO VB RB NNP IN DT JJ NN DT JJ NNS IN NNP VBD VBN TO VB .\nDiplomats reported some progress during Sunday 's talks , and are holding out hopes for a breakthrough .\tNNS VBD DT NN IN NNP POS NNS , CC VBP VBG RP NNS IN DT NN .\nAustria is demanding that negotiations with Turkey include the possibility of offering Ankara less than full EU membership .\tNNP VBZ VBG IN NNS IN NNP VBP DT NN IN VBG NNP JJR IN JJ NNP NN .\nTurkey has said it would not accept a so called ' privileged partnership . '\tNNP VBZ VBN PRP MD RB VB DT RB VBN `` JJ NN . ``\nIran says it has no intention of abandoning plans to resume sensitive nuclear work , as the European Union warns that such a move could spark an international crisis .\tNNP VBZ PRP VBZ DT NN IN VBG NNS TO VB JJ JJ NN , IN DT NNP NNP VBZ IN PDT DT NN MD VB DT JJ NN .\nThe foreign ministers of Britain , France and Germany Tuesday signed a joint letter warning Iran against resuming activity at its Isfahan nuclear facility .\tDT JJ NNS IN NNP , NNP CC NNP NNP VBD DT JJ NN VBG NNP IN VBG NN IN PRP$ NNP JJ NN .\nThe letter threatens other unspecified courses of action if Tehran does not adhere to past commitments with the European Union .\tDT NN VBZ JJ JJ NNS IN NN IN NNP VBZ RB VB TO JJ NNS IN DT NNP NNP .\nThe United States says it agrees with European officials that Tehran must maintain its suspension on uranium enrichment activities .\tDT NNP NNPS VBZ PRP VBZ IN JJ NNS IN NNP MD VB PRP$ NN IN NN NN NNS .\nA State Department spokesman Tom Casey says if Iran were to break its commitments with the European Union , U.S. officials would refer the situation to the United Nations Security Council and the U.N. International Atomic Energy Agency .\tDT NNP NNP NN NNP NNP VBZ IN NNP VBD TO VB PRP$ NNS IN DT NNP NNP , NNP NNS MD VB DT NN TO DT NNP NNP NNP NNP CC DT NNP NNP NNP NNP NNP .\nIranian officials say their plan to resume nuclear work is not reversible .\tJJ NNS VBP PRP$ NN TO VB JJ NN VBZ RB JJ .\nAfghan officials say five policemen have been killed in two separate attacks .\tJJ NNS VBP CD NNS VBP VBN VBN IN CD JJ NNS .\nAuthorities say three officers were killed by a roadside bomb in Ghazni province .\tNNS VBP CD NNS VBD VBN IN DT NN NN IN NNP NN .\nTwo other policemen were killed during a militant attack in the western province of Ghor .\tCD JJ NNS VBD VBN IN DT JJ NN IN DT JJ NN IN NNP .\nThree rebels were also killed in that incident .\tCD NNS VBD RB VBN IN DT NN .\nOn Sunday , the British military said three British soldiers were killed in a suicide attack in Afghanistan 's restive Helmand province .\tIN NNP , DT JJ NN VBD CD JJ NNS VBD VBN IN DT NN NN IN NNP POS JJ NNP NN .\nThe incident brings to 100 the number of British military personnel killed in Afghanistan since 2001 .\tDT NN VBZ TO CD DT NN IN JJ JJ NNS VBN IN NNP IN CD .\nBritish Prime Minister Gordon Brown Monday paid tribute to those troops , saying they have paid the ultimate price to help ' turn a lawless region sheltering terrorists into an emerging democracy .\tNNP NNP NNP NNP NNP NNP VBD NN TO DT NNS , VBG PRP VBP VBN DT JJ NN TO VB `` VB DT JJ NN VBG NNS IN DT VBG NN .\nOn Sunday , an Afghan reporter working for the British Broadcasting Corporation was found dead in Helmand province , one day after he was abducted .\tIN NNP , DT JJ NN VBG IN DT NNP NNP NNP VBD VBN JJ IN NNP NN , CD NN IN PRP VBD VBN .\nU.S. Secretary of State-designate Condoleezza Rice is resting , after successful , minimally invasive surgery .\tNNP NNP IN NNP NNP NNP VBZ VBG , IN JJ , RB JJ NN .\nA senior administration official told VOA Dr. Rice underwent a one-and-a-half hour uterine fibroid embolization operation at a Washington hospital Friday .\tDT JJ NN NN VBD NNP NNP NNP VBD DT JJ NN JJ JJ NN NN IN DT NNP NN NNP .\nThe operation , an alternative to hysterectomy , shrinks fibroid tumors and allows for a rapid recovery .\tDT NN , DT NN TO NN , VBZ JJ NNS CC VBZ IN DT JJ NN .\nUterine fibroids are among the most common tumors in women , and are not cancerous .\tNNP NNS VBP IN DT RBS JJ NNS IN NNS , CC VBP RB JJ .\nThe administration official said Dr. Rice will stay in the hospital overnight , and return to work Monday .\tDT NN NN VBD NNP NNP MD VB IN DT NN JJ , CC VBZ IN NN NNP .\nCurrently the national security adviser , she was nominated by President Bush on Tuesday to head the State Department .\tRB DT JJ NN NN , PRP VBD VBN IN NNP NNP IN NNP TO VB DT NNP NNP .\nA trade delegation led by Nebraska Governor Dave Heineman has signed agreements to sell nearly $ 30 million worth of food to Cuba .\tDT NN NN VBN IN NNP NNP NNP NNP VBZ VBN NNS TO VB RB $ CD CD NN IN NN TO NNP .\nThe delegation signed the deal Tuesday in Havana with Cuba 's food importing company , Alimport .\tDT NN VBD DT NN NNP IN NNP IN NNP POS NN VBG NN , NNP .\nNebraska farmers agreed to sell wheat , beans and soy products to the Cubans .\tNNP NNS VBD TO VB NN , NNS CC NN NNS TO DT NNS .\nThe signing took place during Havana 's annual trade fair .\tDT NN VBD NN IN NNP POS JJ NN NN .\nGovernor Heineman said it is a big boost for farmers in his state to find a new market .\tNNP NNP VBD PRP VBZ DT JJ NN IN NNS IN PRP$ NN TO VB DT JJ NN .\nCuba has been under a U.S. trade embargo for more than four decades , but a law passed by the U.S. Congress in 2000 allows American food to be sold directly to Cuba on a cash basis .\tNNP VBZ VBN IN DT NNP NN NN IN JJR IN CD NNS , CC DT NN VBN IN DT NNP NNP IN CD VBZ JJ NN TO VB VBN RB TO NNP IN DT NN NN .\nPolice in southern Pakistan say a powerful bomb ripped through an Islamic school Monday , killing six students and wounding at least four others .\tNNS IN JJ NNP VBP DT JJ NN VBD IN DT JJ NN NNP , VBG CD NNS CC VBG IN JJS CD NNS .\nAuthorities said the bomb exploded in a madrassa in southwestern Qilla Saifullah , a town near the Afghan border in the province of Baluchistan .\tNNS VBD DT NN VBD IN DT NN IN JJ NNP NNP , DT NN IN DT JJ NN IN DT NN IN NNP .\nInvestigators said the bomb was concealed in the belongings of an Afghan student who stayed in the school overnight .\tNNS VBD DT NN VBD VBN IN DT NNS IN DT JJ NN WP VBD IN DT NN RB .\nOfficials said it exploded after the person had left .\tNNS VBD PRP VBD IN DT NN VBD VBN .\nThere was no immediate claim of responsibility for the blast .\tEX VBD DT JJ NN IN NN IN DT NN .\nSome Pakistani madrassas are seen as breeding grounds for militants fighting foreign forces in Afghanistan and opposed to Pakistani support for U.S. efforts against terrorism .\tDT JJ NNS VBP VBN IN NN NNS IN NNS VBG JJ NNS IN NNP CC VBN TO JJ NN IN NNP NNS IN NN .\nPolice said it was unclear if the explosion was linked to either conflict .\tNNP VBD PRP VBD JJ IN DT NN VBD VBN TO DT NN .\nIran 's supreme leader has dismissed President Bush 's charges against Tehran , saying Mr. Bush , like four American presidents before him , will fail in his efforts to uproot Iran 's ruling Islamic establishment .\tNNP POS JJ NN VBZ VBN NNP NNP POS NNS IN NNP , VBG NNP NNP , IN CD JJ NNS IN PRP , MD VB IN PRP$ NNS TO VB NNP POS NN JJ NN .\nAyatollah Ali Khamenei told students in Tehran Thursday that Iran 's stance has convinced other Islamic countries that it is possible to , in his words , ' confront global arrogance and win . '\tNNP NNP NNP VBD NNS IN NNP NNP IN NNP POS NN VBZ VBN JJ JJ NNS IN PRP VBZ JJ TO , IN PRP$ NNS , `` VB JJ NN CC VB . ``\nIn his State of the Union address Wednesday night , President Bush accused Iran of being the world 's primary state sponsor of terror and of pursuing nuclear weapons .\tIN PRP$ NN IN DT NNP NN NNP NN , NNP NNP VBD NNP IN VBG DT NN POS JJ NN NN IN NN CC IN VBG JJ NNS .\nHe also said the United States stands with the Iranian people as they seek liberty .\tPRP RB VBD DT NNP NNPS VBZ IN DT JJ NNS IN PRP VBP NN .\nIran 's foreign ministry spokesman called the charges ' baseless ' and said they show Mr. Bush is ignoring what he called Iran 's ' deep-rooted freedom and democracy . '\tNNP POS JJ NN NN VBD DT NNS `` JJ `` CC VBD PRP VBP NNP NNP VBZ VBG WP PRP VBD NNP POS `` JJ NN CC NN . ``\nA roadside bomb , a Taleban assault on a police station , and an air strike by U.S.-led forces in Afghanistan have killed at least 13 people .\tDT NN NN , DT NNP NN IN DT NN NN , CC DT NN NN IN JJ NNS IN NNP VBP VBN IN JJS CD NNS .\nFour Afghan soldiers died in a roadside bomb blast as they took part in a joint operation with U.S. forces against insurgents in Kunar province on Tuesday .\tCD JJ NNS VBD IN DT NN NN NN IN PRP VBD NN IN DT JJ NN IN NNP NNS IN NNS IN NNP NN IN NNP .\nAlso Tuesday , two rockets hit central Kabul , injuring three people .\tRB NNP , CD NNS VBD JJ NNP , VBG CD NNS .\nThere was no claim of responsibility .\tEX VBD DT NN IN NN .\nA day earlier , an airstrike by U.S.-led forces in the Lashkar Gah district of Helmand province killed three suspected Taleban .\tDT NN RB , DT NN IN JJ NNS IN DT NNP NNP NN IN NNP NN VBD CD JJ NNP .\nIn another clash , five rebels and one policeman were killed in a gun battle when Taleban insurgents attacked a police checkpoint in Kandahar province .\tIN DT NN , CD NNS CC CD NN VBD VBN IN DT NN NN WRB NNP NNS VBD DT NN NN IN NNP NN .\nThe number of Americans getting long-term unemployment aid hit another record high last week .\tDT NN IN NNS VBG JJ NN NN VBD DT NN NN JJ NN .\nThursday 's report from the Labor Department shows more than 5.8 million people collecting jobless compensation for more than one week .\tNNP POS NN IN DT NNP NNP VBZ JJR IN CD CD NNS VBG JJ NN IN JJR IN CD NN .\nIt is the 11th week in a row continuing claims have hit a record high , and it is a sign that the U.S. labor market remains weak .\tPRP VBZ DT JJ NN IN DT NN VBG NNS VBP VBN DT NN NN , CC PRP VBZ DT NN IN DT NNP NN NN VBZ JJ .\nThe number of new claims fell slightly by 20,000 to a total of 6,54,000 .\tDT NN IN JJ NNS VBD RB IN CD TO DT NN IN CD .\nA separate report showed the U.S. trade deficit fell to its lowest level in at least nine years in February .\tDT JJ NN VBD DT NNP NN NN VBD TO PRP$ JJS NN IN IN JJS CD NNS IN NNP .\nThe Commerce Department data show the gap between what Americans sell abroad and what they buy from foreigners narrowed by 28 percent for the month .\tDT NNP NNP NNS VBP DT NN IN WP NNS VBP RB CC WP PRP VBP IN NNS VBN IN CD NN IN DT NN .\nThe trade deficit shrank to $ 26 billion in February as the faltering economy pushed imports down , while U.S. exports recovered slightly from a two-year low .\tDT NN NN VBD TO $ CD CD IN NNP IN DT VBG NN VBD NNS RB , IN NNP NNS VBD RB IN DT JJ NN .\nFoxy Brown is a wanted woman ... again .\tNNP NNP VBZ DT JJ NN : RB .\nPolice in Fort Lauderdale , Florida have issued an arrest warrant for the 27-year-old rapper , after she failed to appear in court on charges of battery and resisting arrest without violence .\tNNS IN NNP NNP , NNP VBP VBN DT NN NN IN DT JJ NN , IN PRP VBD TO VB IN NN IN NNS IN NN CC VBG NN IN NN .\nFoxy Brown - real name Inga Marchand - scuffled last month with employees of a Fort Lauderdale beauty supply store .\tNNP NNP IN JJ NN NNP NNP : VBD JJ NN IN NNS IN DT NNP NNP NN NN NN .\nShe also struggled with a responding police officer .\tPRP RB VBD IN DT VBG NN NN .\nThis is n't Foxy Brown 's first run-in with the law : her legal troubles stretch back to a 1997 incident in which she received 80 hours of community service after spitting on two hotel workers in North Carolina .\tDT VBZ RB NNP NNP POS JJ NN IN DT NN IN PRP$ JJ NNS VB RB TO DT CD NN IN WDT PRP VBD CD NNS IN NN NN IN VBG IN CD NN NNS IN NNP NNP .\nLast October , she was sentenced to three years ' probation and anger management counseling , following a 2004 attack on two manicurists in New York City .\tJJ NNP , PRP VBD VBN TO CD NNS POS NN CC NN NN NN , VBG DT CD NN IN CD NNS IN NNP NNP NNP .\nIsrael has re-opened the border crossing between the Gaza Strip and Egypt , that had been closed for several weeks .\tNNP VBZ VBN DT NN VBG IN DT NNP NNP CC NNP , WDT VBD VBN VBN IN JJ NNS .\nThe Rafah crossing , which is the main exit and entrance point for Gaza Palestinians traveling abroad , was closed after a militant attack on a nearby Israeli army post in December , that killed five Israeli soldiers .\tDT NN VBG , WDT VBZ DT JJ NN CC NN NN IN NNP NNS VBG RB , VBD VBN IN DT JJ NN IN DT JJ JJ NN NN IN NNP , WDT VBD CD JJ NNS .\nMeanwhile , top Israeli and Palestinian security officials met to discuss a plan for Israel to hand over security control of several West Bank towns to the Palestinian Authority .\tRB , JJ JJ CC JJ NN NNS VBD TO VB DT NN IN NNP TO VB IN NN NN IN JJ NNP NNP NNS TO DT JJ NNP .\nBut there was no immediate announcement of an agreement after the talks ended early Tuesday .\tCC EX VBD DT JJ NN IN DT NN IN DT NNS VBD JJ NNP .\nThe meeting came hours after Palestinians say Israeli military gunfire killed a schoolgirl in the Gaza Strip .\tDT NN VBD NNS IN NNS VBP JJ JJ NN VBD DT NN IN DT NNP NNP .\nPalestinian militants retaliated by firing mortars at a nearby Jewish settlement .\tJJ NNS VBN IN VBG NNS IN DT JJ JJ NN .\nBut there were no reports of injuries .\tCC EX VBD DT NNS IN NNS .\nChinese leaders have completed an annual economic meeting with pledges to maintain stable fiscal policies to keep their rapidly-growing economy under control .\tJJ NNS VBP VBN DT JJ JJ NN IN NNS TO VB JJ JJ NNS TO VB PRP$ JJ NN IN NN .\nState media reported Sunday that Communist Party officials plan to tighten controls on fixed-asset investments , such as real estate , and try to increase agricultural output in the coming years .\tNNP NNS VBD NNP IN NNP NNP NNS VBP TO VB NNS IN JJ NNS , JJ IN JJ NN , CC VB TO VB JJ NN IN DT JJ NNS .\nThey are concerned that without proper management , China 's fast-growing economy could suddenly collapse .\tPRP VBP VBN IN IN JJ NN , NNP POS JJ NN MD RB VB .\nThe report did not mention any changes in the fixed exchange rate for China 's currency , the yuan .\tDT NN VBD RB VB DT NNS IN DT JJ NN NN IN NNP POS NN , DT NN .\nThe United States has been pressuring China to lift controls on the exchange rate , saying it gives Chinese goods an unfair advantage in world markets .\tDT NNP NNPS VBZ VBN VBG NNP TO VB NNS IN DT NN NN , VBG PRP VBZ JJ NNS DT JJ NN IN NN NNS .\nBeijing has promised to change the policy but has not said when it will do so .\tNNP VBZ VBN TO VB DT NN CC VBZ RB VBN WRB PRP MD VB RB .\nU.S. Vice President Joe Biden says U.S.-led forces in Afghanistan are making what he called ' measurable progress ' against al-Qaida , as the United States increases its military presence there .\tNNP NNP NNP NNP NNP VBZ JJ NNS IN NNP VBP VBG WP PRP VBD `` JJ NN `` IN NNP , IN DT NNP NNPS VBZ PRP$ JJ NN RB .\nSpeaking in the midwestern American city of Indianapolis Monday , Biden said international troops must deny al-Qaida safe haven and reverse the momentum of the Taliban .\tVBG IN DT JJ JJ NN IN NNP NNP , NNP VBD JJ NNS MD VB NNP JJ NN CC VB DT NN IN DT NNP .\nThe vice president said the latest phase is ' only beginning ' and promised the situation in Afghanistan will be reassessed in December .\tDT NN NN VBD DT JJS NN VBZ `` RB VBG `` CC VBD DT NN IN NNP MD VB VBN IN NNP .\nMeanwhile , the International Security Assistance Force in Afghanistan says four troops were killed in separate incidents in the country Monday .\tRB , DT NNP NNP NNP NNP IN NNP VBZ CD NNS VBD VBN IN JJ NNS IN DT NN NNP .\nOne of the soldiers was Hungarian and two were French .\tCD IN DT NNS VBD JJ CC CD VBD JJ .\nThe Associated Press reports the other soldier was American .\tDT NNP NNP VBZ DT JJ NN VBD JJ .\nTwo soldiers died in an attack by insurgents in eastern Afghanistan , while the other two casualties resulted from roadside bomb blasts elsewhere .\tCD NNS VBD IN DT NN IN NNS IN JJ NNP , IN DT JJ CD NNS VBD IN NN NN NNS RB .\nPoland 's parliament has overwhelmingly passed a bill approving ratification of the new European Union treaty after weeks of political infighting .\tNNP POS NN VBZ RB VBN DT NN VBG NN IN DT JJ NNP NNP NN IN NNS IN JJ NN .\nLawmakers in the lower house voted 384 to 56 Tuesday to adopt the charter , which replaces the much-maligned EU constitution rejected by French and Dutch voters in 2005 .\tNNS IN DT JJR NN VBD CD TO CD NNP TO VB DT NN , WDT VBZ DT JJ NNP NN VBN IN JJ CC JJ NNS IN CD .\nPoland 's upper house is expected to pass the bill Wednesday and President Lech Kaczynski is expected to sign it .\tNNP POS JJ NN VBZ VBN TO VB DT NN NNP CC NNP NNP NNP VBZ VBN TO VB PRP .\nThe approval follows weeks of wrangling between Poland 's pro-European government and the nationalist opposition , which argued the EU Treaty will limit Polish sovereignty .\tDT NN VBZ NNS IN NN IN NNP POS JJ NN CC DT NN NN , WDT VBD DT NNP NNP MD VB JJ NN .\nTo resolve the dispute , lawmakers adopted a separate resolution saying the Polish constitution has supremacy over the EU charter .\tTO VB DT NN , NNS VBD DT JJ NN VBG DT JJ NN VBZ NN IN DT NNP NN .\nThe EU Treaty requires the approval of all 27 member countries .\tDT NNP NNP VBZ DT NN IN DT CD NN NNS .\nFrance , Hungary , Slovenia , Malta and Romania have already ratified the treaty , which is designed to streamline decision-making and unify the bloc 's foreign policy objectives .\tNNP , NNP , NNP , NNP CC NNP VBP RB VBN DT NN , WDT VBZ VBN TO VB NN CC VB DT NN POS JJ NN NNS .\nThe United Farm Workers union has reached an agreement with a labor recruiter that would ensure better working conditions for thousands of agricultural guest workers .\tDT NNP NNP NNPS NN VBZ VBN DT NN IN DT NN NN WDT MD VB JJR NN NNS IN NNS IN JJ NN NNS .\nCalifornia-based Global Horizons is promising to pay two percent more than the federally-mandated minimum wage for guest workers .\tJJ JJ NNS VBZ VBG TO VB CD NN JJR IN DT JJ NN NN IN NN NNS .\nThe company also will provide medical care and paid bereavement leave if a family member dies , including transportation to and from their native country .\tDT NN RB MD VB JJ NN CC VBD NN NN IN DT NN NN VBZ , VBG NN TO CC IN PRP$ JJ NN .\nGlobal Horizons brings in workers from dozens of nations each year under the federal government 's ( H-2A ) agricultural guest worker program .\tNNP NNP VBZ IN NNS IN NNS IN NNS DT NN IN DT JJ NN POS LRB NNP RRB JJ NN NN NN .\nOfficials in the western state of Washington revoked the company 's operating license in December over numerous labor violations involving hundreds of workers from Thailand .\tNNS IN DT JJ NN IN NNP VBN DT NN POS NN NN IN NNP IN JJ NN NNS VBG NNS IN NNS IN NNP .\nIraqi police say a car bomb detonated by remote control has killed five people and injured 10 south of Baghdad .\tJJ NNS VBP DT NN NN VBN IN JJ NN VBZ VBN CD NNS CC JJ CD NN IN NNP .\nOfficials say the vehicle blew up on the roadside as an Iraqi police patrol passed by near the town of Haswa .\tNNS VBP DT NN VBD RP IN DT NN IN DT JJ NN NN VBN IN IN DT NN IN NNP .\nMeanwhile , a bodyguard of Iraq 's Deputy Prime Minister Ahmad Chalabi was killed and three others wounded when gunmen ambushed their convoy south of Baghdad .\tRB , DT NN IN NNP POS NNP NNP NNP NNP NNP VBD VBN CC CD NNS VBD WRB NNS VBD PRP$ JJ NN IN NNP .\nIraqi police say Mr. Chalabi was not in the convoy .\tJJ NNS VBP NNP NNP VBD RB IN DT NN .\nElsewhere , the U.S. military says four U.S. soldiers were killed by a roadside bomb in southwest Baghdad late Saturday .\tRB , DT NNP NN VBZ CD NNP NNS VBD VBN IN DT NN NN IN JJ NNP JJ NNP .\nAnd the military reports killing 11 insurgents during a battle near the northwestern town of Haditha .\tCC DT NN VBP VBG CD NNS IN DT NN IN DT JJ NN IN NNP .\nWitnesses in Somalia 's capital say at least 11 people have been killed and 15 others wounded in fighting between rival militia groups .\tNNS IN NNP POS NN VBP IN JJS CD NNS VBP VBN VBN CC CD NNS VBN IN VBG IN JJ NN NNS .\nThe fighting broke out in the Sii-Sii area of Mogadishu Sunday when gunmen linked to an alliance of warlords , the Alliance for Restoration of Peace and Counter Terrorism , opened fire on a vehicle belonging to forces loyal to the country 's Islamic courts .\tDT NN VBD RP IN DT JJ NN IN NNP NNP WRB NNS VBN TO DT NN IN NNS , DT NNP IN NNP IN NNP CC NNP NNP , VBD NN IN DT NN VBG TO NNS JJ TO DT NN POS JJ NNS .\nClashes between the same groups have killed at least 90 people since March .\tNNS IN DT JJ NNS VBP VBN IN JJS CD NNS IN NNP .\nMany Somalis suspect the coalition of warlords is supported by the U.S. government as part of its campaign to end terrorism .\tJJ NNS VBP DT NN IN NNS VBZ VBN IN DT NNP NN IN NN IN PRP$ NN TO VB NN .\nThe U.S. State Department has said it supports the alliance 's objective of rooting out terrorists , but declined further comment .\tDT NNP NNP NNP VBZ VBN PRP VBZ DT NN POS NN IN VBG RP NNS , CC VBD JJ NN .\nSomalia has been without an effective central government since 1991 , when clan-based factions ousted President Siad Barre .\tNNP VBZ VBN IN DT JJ JJ NN IN CD , WRB JJ NNS VBD NNP NNP NNP .\nA transitional government was formed last year but many factional leaders oppose it .\tDT JJ NN VBD VBN JJ NN CC JJ JJ NNS VBP PRP .\nPakistan 's president says peace with India regarding the disputed region of Kashmir is ' within reach . '\tNNP POS NN VBZ NN IN NNP VBG DT JJ NN IN NNP VBZ `` IN NN . ``\nAddressing European lawmakers in Brussels Tuesday , President Pervez Musharraf said it is important to resolve the issue through peaceful dialogue .\tVBG JJ NNS IN NNP NNP , NNP NNP NNP VBD PRP VBZ JJ TO VB DT NN IN JJ NN .\nHe said , however , Pakistan will not change its stance unless India shows flexibility in regard to the disputed Himalayan area .\tPRP VBD , RB , NNP MD RB VB PRP$ NN IN NNP VBZ NN IN NN TO DT JJ NNP NN .\nBoth of the nuclear-armed nations claim Kashmir as their own .\tDT IN DT JJ NNS VBP NNP IN PRP$ NN .\nThey have fought two wars over the region .\tPRP VBP VBN CD NNS IN DT NN .\nMr. Musharraf is expected to meet with Indian Prime Minister Manmohan Singh on the sidelines of this week 's summit of the Non-Aligned Movement in Cuba .\tNNP NNP VBZ VBN TO VB IN JJ NNP NNP NNP NNP IN DT NNS IN DT NN POS NN IN DT JJ NN IN NNP .\nAfter the summit , the Pakistan president will attend the U.N. General Assembly in New York before traveling to Washington for talks with President Bush .\tIN DT NN , DT NNP NN MD VB DT NNP NNP NNP IN NNP NNP IN VBG TO NNP IN NNS IN NNP NNP .\nAccidents in three mines in China have killed at least 30 people and left 13 miners trapped .\tNNS IN CD NNS IN NNP VBP VBN IN JJS CD NNS CC VBD CD NNS VBN .\nThe official Xinhua news agency says all 28 workers in a mine in northwestern Shaanxi province died when an underground cable caught fire on Saturday night .\tDT JJ NNP NN NN VBZ DT CD NNS IN DT NN IN JJ NNP NN VBD WRB DT NN NN VBD NN IN NNP NN .\nThe report also said rescuers had retrieved the remains of five of the miners early Sunday .\tDT NN RB VBD NNS VBD VBN DT NNS IN CD IN DT NNS JJ NNP .\nIn a separate incident , Xinhua says an explosion in a coal mining area in Hunan province killed two people on Sunday .\tIN DT JJ NN , NNP VBZ DT NN IN DT NN NN NN IN NNP NN VBD CD NNS IN NNP .\nThirteen workers were reported trapped underground after a coal mine flooded in northwestern Gansu province .\tCD NNS VBD VBN JJ NN IN DT NN NN VBN IN JJ NNP NN .\nXinhua says three others were lifted out of the facility in Jib city Sunday .\tNNP VBZ CD NNS VBD VBN IN IN DT NN IN NNP NN NNP .\nChina has the world 's worst mine safety record , with more than 2,600 coal miners killed last year in accidents and explosions .\tNNP VBZ DT NN POS JJS NN NN NN , IN JJR IN CD NN NNS VBN JJ NN IN NNS CC NNS .\nPolish officials say they will not admit a research team Iran reportedly plans to send to Auschwitz , the notorious World War II Nazi death camp .\tJJ NNS VBP PRP MD RB VB DT NN NN NNP RB VBZ TO VB TO NNP , DT JJ NNP NNP NNP NNP NN NN .\nPolish Foreign Minister Stefan Mellar said his country should stop Iran from investigating the scale of the Holocaust , which Iranian President Mahmoud Ahmadinejad has dismissed as a myth .\tJJ JJ NN NNP NNP VBD PRP$ NN MD VB NNP IN VBG DT NN IN DT NNP , WDT JJ NNP NNP NNP VBZ VBN IN DT NN .\nThe manager of the Auschwitz museum said Friday that deniers of the Holocaust profane the memory of its victims and will not be admitted .\tDT NN IN DT NNP NN VBD NNP IN NNS IN DT NNP VBP DT NN IN PRP$ NNS CC MD RB VB VBN .\nMost estimates put the number of deaths at Auschwitz alone at more than one million , mostly Jews .\tJJS NNS VBD DT NN IN NNS IN NNP RB IN JJR IN CD CD , RB NNPS .\nEarlier this week , Iran 's ambassador to Portugal said he doubts the number of victims of the Holocaust , usually estimated at about six million .\tRBR DT NN , NNP POS NN TO NNP VBD PRP VBZ DT NN IN NNS IN DT NNP , RB VBN IN IN CD CD .\nHe said that , based on what he has seen at Auschwitz , it would take about 15 years to burn that number of bodies .\tPRP VBD IN , VBN IN WP PRP VBZ VBN IN NNP , PRP MD VB RB CD NNS TO VB DT NN IN NNS .\nGunmen in Iraq disguised as police officers have shot dead five Shi'ite elementary school teachers and their driver south of Baghdad .\tNNS IN NNP VBN IN NN NNS VBP VBN JJ CD NNP JJ NN NNS CC PRP$ NN NN IN NNP .\nPolice say the victims were pulled from a mini-bus Monday as they were leaving the school near Iskandariyah .\tNNS VBP DT NNS VBD VBN IN DT JJ NNP IN PRP VBD VBG DT NN IN NNP .\nThey were then forced back into a classroom , lined up against the wall and shot to death .\tPRP VBD RB VBN RB IN DT NN , VBN RP IN DT NN CC VBN TO NN .\nIn Baghdad , authorities say at least 10 people were killed and at least 30 others wounded in a suicide car bombing near the oil ministry .\tIN NNP , NNS VBP IN JJS CD NNS VBD VBN CC IN JJS CD NNS VBD IN DT NN NN VBG IN DT NN NN .\nSeparately , the U.S. military says three American soldiers were killed today in roadside bomb attacks .\tRB , DT NNP NN VBZ CD JJ NNS VBD VBN NN IN NN NN NNS .\nTwo of the soldiers died in western Baghdad , the third was killed 80 kilometers southeast of the capital .\tCD IN DT NNS VBD IN JJ NNP , DT NN VBD VBN CD NNS NN IN DT NN .\nMeanwhile , the U.S military has released 500 detainees from Abu Ghraib prison to mark the upcoming Muslim holy month of Ramadan .\tRB , DT NNP NN VBZ VBN CD NNS IN NNP NNP NN TO VB DT JJ NNP JJ NN IN NNP .\nOfficials say another 500 prisoners will be freed over the next week .\tNNS VBP DT CD NNS MD VB VBN IN DT JJ NN .\nNATO officials in Afghanistan have urged the government to plan for parliamentary elections to take place soon to ensure there are enough troops to provide security .\tNNP NNS IN NNP VBP VBN DT NN TO VB IN JJ NNS TO VB NN RB TO VB EX VBP JJ NNS TO VB NN .\nNATO 's top civilian representative for Afghanistan , Hikmet Cetin , says the elections must take place by early July or risk conflicting with the next rotation of troops in the 8,000-strong International Security Assistance Force ISAF .\tNNP POS JJ JJ NN IN NNP , NNP NNP , VBZ DT NNS MD VB NN IN JJ NNP CC NN NN IN DT JJ NN IN NNS IN DT JJ NNP NNP NNP NNP NNP .\nMr. Cetin says if elections are not held by then , it would be better to postpone voting until September .\tNNP NNP VBZ IN NNS VBP RB VBN IN RB , PRP MD VB JJR TO VB NN IN NNP .\nTurkey took control of ISAF Sunday from a French commander during a ceremony in Kabul .\tNNP VBD NN IN NNP NNP IN DT JJ NN IN DT NN IN NNP .\nIt is the second six-month command for Turkey since the force was established after the U.S.-led overthrow of the Taleban in late 2001 .\tPRP VBZ DT JJ JJ NN IN NNP IN DT NN VBD VBN IN DT JJ NN IN DT NNP IN JJ CD .\nAuthorities in Zimbabwe have arrested a sixth man in a widening investigation into an alleged spy ring .\tNNS IN NNP VBP VBN DT JJ NN IN DT NN NN IN DT JJ NN NN .\nThe state-run Herald newspaper reports Tuesday police arrested a senior official at the Ministry of State of National Security after he allegedly found out about the spy ring - but failed to report it .\tDT JJ NNP NN NNS NNP NN VBN DT JJ NN IN DT NNP IN NNP IN NNP NNP IN PRP RB VBD RP IN DT NN NN : CC VBD TO VB PRP .\nIf convicted , he could face up to 10 years in prison .\tIN VBN , PRP MD VB RP TO CD NNS IN NN .\nFive other officials are facing charges of selling state secrets to foreign agents .\tCD JJ NNS VBP VBG NNS IN VBG NN NNS TO JJ NNS .\nOne of those is Philip Chiyangwa , a lawmaker from Mashonaland West and a top official in the ruling ZANU-PF party .\tCD IN DT VBZ NNP NNP , DT NN IN NNP NNP CC DT JJ NN IN DT NN NNP NN .\nOther suspects include the country 's ambassador-designate to Mozambique , Godfrey Dzvairo , two ruling party officials , Itai Marchi and Kenny Karidza and a bank executive , Tendai Matambanadzo .\tJJ NNS VBP DT NN POS JJ TO NNP , NNP NNP , CD VBG NN NNS , NNP NNP CC NNP NNP CC DT NN NN , NNP NNP .\nThe Herald reports three of the suspects are trying to switch their original plea from guilty to not guilty .\tDT NNP VBZ CD IN DT NNS VBP VBG TO VB PRP$ JJ NN IN JJ TO RB JJ .\nAfghan police say a roadside bomb has exploded in the country 's southern province of Helmand , killing four people , including two U.S. nationals .\tJJ NNS VBP DT NN NN VBZ VBN IN DT NN POS JJ NN IN NNP , VBG CD NNS , VBG CD NNP NNS .\nA provincial police official Sunday said the two Americans , along with their Afghan interpreter and an Afghan police officer , were killed while they were inspecting the bomb in the Naad Ali district .\tDT JJ NN NN NNP VBD DT CD NNS , IN IN PRP$ JJ NN CC DT JJ NN NN , VBD VBN IN PRP VBD VBG DT NN IN DT NNP NNP NN .\nA Taliban spokesman , Yousuf Ahmadi , told the French News Agency that Taliban militants carried out the attack and killed two American soldiers and several Afghan police .\tDT NNP NN , NNP NNP , VBD DT NNP NNP NNP IN NNP NNS VBD IN DT NN CC VBD CD JJ NNS CC JJ JJ NNS .\nU.S. officials have not yet confirmed the incident .\tNNP NNS VBP RB RB VBN DT NN .\nSouthern Afghanistan is the center of the Taliban-led insurgency , and militants rely heavily on roadside bombs in their campaign against foreign forces .\tNNP NNP VBZ DT NN IN DT JJ NN , CC NNS VBP RB IN NN NNS IN PRP$ NN IN JJ NNS .\nThe United States plans to intensify its fight against the Taliban this year by sending an extra 30,000 troops to Afghanistan .\tDT NNP NNPS VBZ TO VB PRP$ NN IN DT NNP DT NN IN VBG DT JJ CD NNS TO NNP .\nZimbabwe 's state-run media report the government is investigating non-governmental organizations ( NGOs ) it says have failed to account for millions of dollars in donor money .\tNNP POS JJ NNS VBP DT NN VBZ VBG JJ NNS LRB NNP RRB PRP VBZ VB VBN TO VB IN NNS IN NNS IN NN NN .\nThe Herald newspaper says a special commission has begun probing whether 13 NGOs handled $ 88 million in accordance with the country 's laws .\tDT NNP NN VBZ DT JJ NN VBZ VBN VBG IN CD NNS VBD $ CD CD IN NN IN DT NN POS NNS .\nThe United Nations Development Program helped raise the funds following a government appeal .\tDT NNP NNP NNP NNP VBD VB DT NNS VBG DT NN NN .\nZimbabwe 's labor minister Paul Mangwana told the paper that groups found to be in violation will be prosecuted .\tNNP POS NN NN NNP NNP VBD DT NN IN NNS VBN TO VB IN NN MD VB VBN .\nThe report also says 17 other NGOs in Zimbabwe have successfully met a deadline to account for funding they received .\tDT NN RB VBZ CD JJ NNS IN NNP VBP RB VBN DT NN TO VB IN NN PRP VBD .\nIt says a full report is expected within one month .\tPRP VBZ DT JJ NN VBZ VBN IN CD NN .\nA new poll shows widespread disapproval of how President Bush and Democrats in Congress are handling the war in Iraq .\tDT JJ NN VBZ JJ NN IN WRB NNP NNP CC NNPS IN NNP VBP VBG DT NN IN NNP .\nThe Washington Post-ABC News survey indicates that 68 percent of the 1,125 respondents disagree with President Bush on Iraq .\tDT NNP NNP NNP NN VBZ IN CD NN IN DT CD NNS VBP IN NNP NNP IN NNP .\nA total of 63 percent disapprove of how Democrats in Congress have handled the war .\tDT NN IN CD NN NN IN WRB NNPS IN NNP VBP VBN DT NN .\nNearly half of those polled said they believe Democrats have done ' too little ' to get President Bush to change his war strategy .\tRB NN IN DT VBN VBD PRP VBP NNPS VBP VBN `` RB JJ `` TO VB NNP NNP TO VB PRP$ NN NN .\nThe nationwide poll , which was taken last week , has a 3-point margin of sampling error .\tDT JJ NN , WDT VBD VBN JJ NN , VBZ DT JJ NN IN VBG NN .\nMore than half of the respondents said they support legislation that would set a deadline for withdrawing U.S. combat forces from Iraq in the first months of 2008 .\tJJR IN NN IN DT NNS VBD PRP VBP NN WDT MD VB DT NN IN VBG NNP NN NNS IN NNP IN DT JJ NNS IN CD .\nVenezuela President Hugo Chavez has threatened to detain U.S. officials if they are caught collecting sensitive information about Venezuela 's military .\tNNP NNP NNP NNP VBZ VBN TO VB NNP NNS IN PRP VBP VBN VBG JJ NN IN NNP POS JJ .\nThe statement , issued Friday , came hours after Mr. Chavez 's government accused the U.S. Embassy in Caracas of involvement with a group of Venezuelan military officers accused of spying .\tDT NN , VBN NNP , VBD NNS IN NNP NNP POS NN VBD DT NNP NNP IN NNP IN NN IN DT NN IN JJ JJ NNS VBN IN VBG .\nA spokesman for the U.S. Embassy told Reuters news agency that officials there have had no official communication with Mr. Chavez 's government and could not comment .\tDT NN IN DT NNP NNP VBD NNP NN NN WDT NNS RB VBP VBN DT JJ NN IN NNP NNP POS NN CC MD RB VB .\nThe military officers are accused of gathering information for the U.S. Defense Department .\tDT JJ NNS VBP VBN IN VBG NN IN DT NNP NNP NNP .\nVenezuela says some of the officers have been detained and others have left the country .\tNNP VBZ DT IN DT NNS VBP VBN VBN CC NNS VBP VBN DT NN .\nRelations between the two countries have been strained since Mr. Chavez took office in 1999 .\tNNP IN DT CD NNS VBP VBN VBN IN NNP NNP VBD NN IN CD .\nThe U.S. recently opposed Venezuela 's acquisition of military transport and maritime surveillance aircraft , saying it threatened regional stability .\tDT NNP RB VBD NNP POS NN IN JJ NN CC NN NN NN , VBG PRP VBD JJ NN .\nThe Russian Prosecutor General 's office is expected to carry out tests in Chechnya Wednesday to confirm Chechen Separatist leader Aslan Maskhadov 's reported death .\tDT JJ NNP NNP POS NN VBZ VBN TO VB RP NNS IN NNP NNP TO VB JJ NNP NN NNP NNP POS VBN NN .\nRussia 's Prosecutor General says forensic tests due Wednesday on the body of a man shown on Russian television in a pool of blood could confirm whether it it is that of Mr. Maskhadov .\tNNP POS NNP NNP VBZ JJ NNS JJ NNP IN DT NN IN DT NN VBN IN JJ NN IN DT NN IN NN MD VB IN PRP PRP VBZ IN IN NNP NNP .\nRussian President Vladimir Putin has said if the wanted fugitive 's death is confirmed , those who participated in the Special Forces operation in which Mr. Maskhadov was reportedly killed will be decorated with medals .\tJJ NNP NNP NNP VBZ VBN IN DT JJ NN POS NN VBZ VBN , DT WP VBD IN DT JJ NNS NN IN WDT NNP NNP VBD RB VBN MD VB VBN IN NNS .\nIn a statement broadcast on Russian television , President Putin also said that much more work needs to be done to stabilize Chechnya .\tIN DT NN NN IN JJ NN , NNP NNP RB VBD IN RB JJR NN VBZ TO VB VBN TO VB NNP .\nRussian officials have blamed Mr. Maskhadov for numerous terrorist attacks from last year 's Beslan school massacre to the Dubrovka theater hostage crisis .\tJJ NNS VBP VBN NNP NNP IN JJ JJ NNS IN JJ NN POS NNP NN NN TO DT NNP NN NN NN .\nRussia had offered a $ 10 million reward for information that would lead to Mr. Maskhadov 's capture .\tNNP VBD VBN DT $ CD CD NN IN NN WDT MD VB TO NNP NNP POS NN .\nMeridian National Corp. said it sold 7,50,000 shares of its common stock to the McAlpine family interests , for $ 1 million , or $ 1.35 a share .\tNNP NNP NNP VBD PRP VBD CD NNS IN PRP$ JJ NN TO DT NNP NN NNS , IN $ CD CD , CC $ CD DT NN .\nThe sale represents 10.2 % of Meridian 's shares outstanding .\tDT NN VBZ CD NN IN NNP POS NNS JJ .\nThe McAlpine family , which operates a number of multinational companies , including a London-based engineering and construction company , also lent to Meridian National $ 5,00,000 .\tDT NNP NN , WDT VBZ DT NN IN JJ NNS , VBG DT JJ NN CC NN NN , RB VBD TO NNP NNP $ CD .\nThat amount is convertible into shares of Meridian common stock at $ 2 a share during its one-year term .\tDT NN VBZ JJ IN NNS IN NNP JJ NN IN $ CD DT NN IN PRP$ JJ NN .\nThe loan may be extended by the McAlpine group for an additional year with an increase in the conversion price to $ 2.5 a share .\tDT NN MD VB VBN IN DT NNP NN IN DT JJ NN IN DT NN IN DT NN NN TO $ CD DT NN .\nThe sale of shares to the McAlpine family along with the recent sale of 7,50,000 shares of Meridian stock to Haden MacLellan Holding PLC of Surrey , England and a recent public offering have increased Meridian 's net worth to $ 8.5 million , said William Feniger , chief executive officer of Toledo , Ohio-based Meridian .\tDT NN IN NNS TO DT NNP NN IN IN DT JJ NN IN CD NNS IN NNP NN TO NNP NNP NNP NNP IN NNP , NNP CC DT JJ JJ NN VBP VBN NNP POS JJ NN TO $ CD CD , VBD NNP NNP , JJ JJ NN IN NNP , JJ NNP .\nAlbania declared its independence from the Ottoman Empire in 1912 , but was conquered by Italy in 1939 .\tNNP VBD PRP$ NN IN DT NNP NNP IN CD , CC VBD VBN IN NNP IN CD .\nCommunist partisans took over the country in 1944 .\tJJ NNS VBD RP DT NN IN CD .\nAlbania allied itself first with the USSR ( until 1960 ) , and then with China ( to 1978 ) .\tNNP VBD PRP RB IN DT NNP LRB IN CD RRB , CC RB IN NNP LRB TO CD RRB .\nIn the early 1990s , Albania ended 46 years of xenophobic Communist rule and established a multiparty democracy .\tIN DT JJ NNS , NNP VBD CD NNS IN JJ JJ NN CC VBD DT JJ NN .\nThe transition has proven challenging as successive governments have tried to deal with high unemployment , widespread corruption , a dilapidated physical infrastructure , powerful organized crime networks , and combative political opponents .\tDT NN VBZ VBN JJ IN JJ NNS VBP VBN TO VB IN JJ NN , JJ NN , DT JJ JJ NN , JJ JJ NN NNS , CC JJ JJ NNS .\nAlbania has made progress in its democratic development since first holding multiparty elections in 1991 , but deficiencies remain .\tNNP VBZ VBN NN IN PRP$ JJ NN IN RB VBG JJ NNS IN CD , CC NNS VBP .\nInternational observers judged elections to be largely free and fair since the restoration of political stability following the collapse of pyramid schemes in 1997 ; however , there have been claims of electoral fraud in every one of Albania 's post-communist elections .\tJJ NNS VBN NNS TO VB RB JJ CC JJ IN DT NN IN JJ NN VBG DT NN IN JJ NNS IN CD ; RB , EX VBP VBN NNS IN JJ NN IN DT CD IN NNP POS JJ NNS .\nThe 2009 general elections resulted in no single party gaining a majority of the 140 seats in Parliament , and the Movement for Socialist Integration ( LSI ) and the Democratic Party ( DP ) combined to form a coalition government , the first such in Albania 's history .\tDT CD JJ NNS VBD IN DT JJ NN VBG DT NN IN DT CD NNS IN NNP , CC DT NN IN NNP NNP LRB NNP RRB CC DT NNP NNP LRB NNP RRB VBN TO VB DT NN NN , DT JJ JJ IN NNP POS NN .\nThe Socialist Party ( SP ) has , in effect , boycotted Parliament since it convened in September 2009 and has called for investigations into alleged electoral fraud in the June 2009 elections .\tDT NNP NNP LRB NNP RRB VBZ , IN NN , VBN NNP IN PRP VBD IN NNP CD CC VBZ VBN IN NNS IN JJ JJ NN IN DT NNP CD NNS .\nAlbania joined NATO in April 2009 and is a potential candidate for EU accession .\tNNP VBD NNP IN NNP CD CC VBZ DT JJ NN IN NNP NN .\nAlthough Albania 's economy continues to grow , the country is still one of the poorest in Europe , hampered by a large informal economy and an inadequate energy and transportation infrastructure .\tIN NNP POS NN VBZ TO VB , DT NN VBZ RB CD IN DT JJS IN NNP , VBN IN DT JJ JJ NN CC DT JJ NN CC NN NN .\nThe principalities of Wallachia and Moldavia - for centuries under the suzerainty of the Turkish Ottoman Empire - secured their autonomy in 1856 ; they were de~facto linked in 1859 and formally united in 1862 under the new name of Romania .\tDT NNS IN NNP CC NNP : IN NNS IN DT NN IN DT JJ NNP NNP : VBD PRP$ NN IN CD ; PRP VBD RB VBN IN CD CC RB VBN IN CD IN DT JJ NN IN NNP .\nThe country gained recognition of its independence in 1878 .\tDT NN VBD NN IN PRP$ NN IN CD .\nIt joined the Allied Powers in World War I and acquired new territories - most notably Transylvania - following the conflict .\tPRP VBD DT NNP NNP IN NNP NNP NNP CC VBD JJ NNS : RBS RB NNP : VBG DT NN .\nIn 1940 , Romania allied with the Axis powers and participated in the 1941 German invasion of the USSR .\tIN CD , NNP VBD IN DT NNP NNS CC VBD IN DT CD JJ NN IN DT NNP .\nThree years later , overrun by the Soviets , Romania signed an armistice .\tCD NNS RB , VBN IN DT NNS , NNP VBD DT NN .\nThe post-war Soviet occupation led to the formation of a Communist ' people 's republic ' in 1947 and the abdication of the king .\tDT JJ JJ NN VBD TO DT NN IN DT JJ `` NNS POS NN `` IN CD CC DT NN IN DT NN .\nThe decades-long rule of dictator Nicolae CEAUSESCU , who took power in 1965 , and his Securitate police state became increasingly oppressive and draconian through the 1980s .\tDT JJ NN IN NN NNP NNP , WP VBD NN IN CD , CC PRP$ JJ NNS NN VBD RB JJ CC JJ IN DT NNS .\nCEAUSESCU was overthrown and executed in late 1989 .\tNNP VBD VBN CC VBN IN JJ CD .\nFormer Communists dominated the government until 1996 when they were swept from power .\tJJ NNPS VBD DT NN IN CD WRB PRP VBD VBN IN NN .\nRomania joined NATO in 2004 and the EU in 2007 .\tNNP VBD NNP IN CD CC DT NNP IN CD .\nThis small , poor island economy has become increasingly dependent on cocoa since independence in 1975 .\tDT JJ , JJ NN NN VBZ VBN RB JJ IN NN IN NN IN CD .\nCocoa production has substantially declined in recent years because of drought and mismanagement .\tNNP NN VBZ RB VBN IN JJ NNS IN IN NN CC NN .\nSao Tome and Principe has to import all fuels , most manufactured goods , consumer goods , and a substantial amount of food .\tNNP NNP CC NNP VBZ TO VB DT NNS , JJS JJ NNS , NN NNS , CC DT JJ NN IN NN .\nOver the years , it has had difficulty servicing its external debt and has relied heavily on concessional aid and debt rescheduling .\tIN DT NNS , PRP VBZ VBN NN VBG PRP$ JJ NN CC VBZ VBN RB IN JJ NN CC NN NN .\nSao Tome and Principe benefited from $ 200 million in debt relief in December 2000 under the Highly Indebted Poor Countries ( HIPC ) program , which helped bring down the country 's $ 300 million debt burden .\tNNP NNP CC NNP VBD IN $ CD CD IN NN NN IN NNP CD IN DT NNP NNP NNP NNPS LRB NNP RRB NN , WDT VBD VB RP DT NN POS $ CD CD NN NN .\nIn August 2005 , the government signed on to a new 3-year IMF Poverty Reduction and Growth Facility ( PRGF ) program worth $ 4.3 million .\tIN NNP CD , DT NN VBD IN TO DT JJ JJ NNP NNP NNP CC NNP NNP LRB NNP RRB NN JJ $ CD CD .\nConsiderable potential exists for development of a tourist industry , and the government has taken steps to expand facilities in recent years .\tJJ NN VBZ IN NN IN DT NN NN , CC DT NN VBZ VBN NNS TO VB NNS IN JJ NNS .\nThe government also has attempted to reduce price controls and subsidies .\tDT NN RB VBZ VBN TO VB NN NNS CC NNS .\nPotential exists for the development of petroleum resources in Sao Tome and Principe 's territorial waters in the oil-rich Gulf of Guinea , which are being jointly developed in a 60-40 split with Nigeria , but any actual production is at least several years off .\tNNP VBZ IN DT NN IN NN NNS IN NNP NNP CC NNP POS JJ NNS IN DT JJ NNP IN NNP , WDT VBP VBG RB VBN IN DT JJ NN IN NNP , CC DT JJ NN VBZ IN JJS JJ NNS RB .\nThe first production licenses were sold in 2004 , though a dispute over licensing with Nigeria delayed the country 's receipt of more than $ 20 million in signing bonuses for almost a year .\tDT JJ NN NNS VBD VBN IN CD , IN DT NN IN NN IN NNP VBD DT NN POS NN IN JJR IN $ CD CD IN NN NNS IN RB DT NN .\nA Central Asian country of incredible natural beauty and proud nomadic traditions , most of Kyrgyzstan was formally annexed to Russia in 1876 .\tDT JJ JJ NN IN JJ JJ NN CC JJ JJ NNS , JJS IN NNP VBD RB VBN TO NNP IN CD .\nThe Kyrgyz staged a major revolt against the Tsarist Empire in 1916 in which almost one-sixth of the Kyrgyz population was killed .\tDT NNS VBD DT JJ NN IN DT NNP NNP IN CD IN WDT RB NN IN DT JJ NN VBD VBN .\nKyrgyzstan became a Soviet republic in 1936 and achieved independence in 1991 when the USSR dissolved .\tNNP VBD DT JJ NN IN CD CC VBD NN IN CD WRB DT NNP VBD .\nNationwide demonstrations in the spring of 2005 resulted in the ouster of President Askar AKAEV , who had run the country since 1990 .\tJJ NNS IN DT NN IN CD VBD IN DT NN IN NNP NNP NNP , WP VBD VBN DT NN IN CD .\nSubsequent presidential elections in July 2005 were won overwhelmingly by former prime minister Kurmanbek BAKIEV .\tJJ JJ NNS IN NNP CD VBD VBN RB IN JJ JJ NN NNP NNP .\nOver the next few years , the new president manipulated the parliament to accrue new powers for himself .\tIN DT JJ JJ NNS , DT JJ NN VBD DT NN TO VB JJ NNS IN PRP .\nIn July 2009 , after months of harassment against his opponents and media critics , BAKIEV won re-election in a presidential campaign that the international community deemed flawed .\tIN NNP CD , IN NNS IN NN IN PRP$ NNS CC NNS NNS , NNP VBD NN IN DT JJ NN IN DT JJ NN VBN JJ .\nIn April 2010 , nationwide protests led to the resignation and expulsion of BAKIEV .\tIN NNP CD , JJ NNS VBD TO DT NN CC NN IN NNP .\nHe was replaced by President Roza OTUNBAEVA who will serve as president until 31 December 2011 according to a presidential decree issued 19 May 2010 .\tPRP VBD VBN IN NNP NNP NNP WP MD VB IN NN IN CD NNP CD VBG TO DT JJ NN VBD CD NNP CD .\nPresidential elections are scheduled to be held in October 2011 .\tJJ NNS VBP VBN TO VB VBN IN NNP CD .\nContinuing concerns include : endemic corruption , poor interethnic relations , and terrorism .\tVBG NNS VBP IN JJ NN , JJ JJ NNS , CC NN .\nTHE LARK ( according to an ancient legend ) was created before the earth itself , and when her father died , as there was no earth , she could find no place of burial for him .\tDT NN LRB VBG TO DT JJ NN RRB VBD VBN IN DT NN PRP , CC WRB PRP$ NN VBD , IN EX VBD DT NN , PRP MD VB DT NN IN NN IN PRP .\nShe let him lie uninterred for five days , and on the sixth day , not knowing what else to do , she buried him in her own head .\tPRP VBD PRP VB JJ IN CD NNS , CC IN DT JJ NN , RB VBG WP RB TO VB , PRP VBD PRP IN PRP$ JJ NN .\nHence she obtained her crest , which is popularly said to be her father 's grave-hillock .\tRB PRP VBD PRP$ NN , WDT VBZ RB VBN TO VB PRP$ NN POS NN .\nYouth 's first duty is reverence to parents .\tNN POS JJ NN VBZ NN TO NNS .\nA RICH Man wanted to tell a certain lie , but the lie was of such monstrous size that it stuck in his throat ; so he employed an Editor to write it out and publish it in his paper as an editorial .\tDT JJ NN VBD TO VB DT JJ NN , CC DT NN VBD IN JJ JJ NN IN PRP VBD IN PRP$ NN ; RB PRP VBN DT NN TO VB PRP RP CC VB PRP IN PRP$ NN IN DT NN .\nBut when the Editor presented his bill , the Rich Man said : ' Be content - is it nothing that I refrained from advising you about investments ? '\tCC WRB DT NN VBD PRP$ NN , DT JJ NN VBD : `` VB JJ : VBZ PRP DT IN PRP VBD IN VBG PRP IN NNS . ``\nThis is a test .\tDT VBZ DT NN .\nThis is a test of the Answering Machine Broadcast System .\tDT VBZ DT NN IN DT VBG NN NNP NNP .\nThis is only a test .\tDT VBZ RB DT NN .\nA published report in the United States predicts international financial assistance for the Palestinian Authority could double if elections in the West Bank and Gaza take place on schedule next month , and if the Palestinians take steps toward resolving their conflict with Israel .\tDT VBN NN IN DT NNP NNPS VBZ JJ JJ NN IN DT JJ NNP MD VB IN NNS IN DT NNP NNP CC NNP VBP NN IN NN JJ NN , CC IN DT NNS VBP NNS IN VBG PRP$ NN IN NNP .\nThe New York Times estimates up to $ 8 billion in aid from the United States , Europe and Arab nations could go to the Palestinian Authority over the next four years if those conditions - successful elections and progress toward peace - are met .\tDT NNP NNP NNP VBZ RB TO $ CD CD IN NN IN DT NNP NNPS , NNP CC NNP NNS MD VB TO DT JJ NNP IN DT JJ CD NNS IN DT NNS : JJ NNS CC NN IN NN : VBP VBN .\nThe Palestinian Authority has been facing a severe financial crisis , primarily due to declining tax revenues , and the Palestinian economy has been paralyzed during the past four years of violence in the West Bank and Gaza .\tDT JJ NNP VBZ VBN VBG DT JJ JJ NN , RB JJ TO VBG NN NNS , CC DT JJ NN VBZ VBN VBN IN DT JJ CD NNS IN NN IN DT NNP NNP CC NNP .\nPresident Bush 's wife , Laura , has announced four new African countries will be added to a U.S.-backed initiative to control malaria on the continent .\tNNP NNP POS NN , NNP , VBZ VBN CD JJ JJ NNS MD VB VBN TO DT JJ NN TO VB NN IN DT NN .\nSpeaking in Washington Thursday Mrs. Bush said the United States will be a partner in the initiative with Malawi , Mozambique , Rwanda , and Senegal .\tVBG IN NNP NNP NNP NNP VBD DT NNP NNPS MD VB DT NN IN DT NN IN NNP , NNP , NNP , CC NNP .\nShe said the program will help provide the countries with anti-malaria drugs and long-lasting mosquito nets , and help them conduct spraying procedures to kill mosquitoes .\tPRP VBD DT NN MD VB VB DT NNS IN JJ NNS CC JJ NN NNS , CC VB PRP VB VBG NNS TO VB NNS .\nPresident Bush unveiled the $ 1.2 billion initiative last year .\tNNP NNP VBD DT $ CD CD NN JJ NN .\nTanzania , Uganda and Angola are already part of the five-year plan .\tNNP , NNP CC NNP VBP RB NN IN DT JJ NN .\nThe U.N. says 3,000 children a day die of malaria in Africa .\tDT NNP VBZ CD NNS DT NN VBZ IN NN IN NNP .\nTo help lead the fight against the illness , President Bush has appointed the first U.S. Malaria Coordinator , Timothy Ziemer .\tTO VB VB DT NN IN DT NN , NNP NNP VBZ VBN DT JJ NNP NNP NNP , NNP NNP .\nZiemer , a retired U.S. Navy rear admiral , was previously executive director of World Relief , a private American disaster relief organization .\tNNP , DT JJ NNP NNP NN NN , VBD RB JJ NN IN NNP NNP , DT JJ JJ NN NN NN .\nThe late comedian Richard Pryor and late blues legend Robert Johnson are among the artists who will receive a posthumous lifetime achievement Grammy award .\tDT JJ NN NNP NNP CC JJ NNS NN NNP NNP VBP IN DT NNS WP MD VB DT JJ NN NN NNP NN .\nThe Recording Academy , which awards the Grammys - one of the top awards in the U.S. recording industry - said Pryor will be remembered for his deft treatment of controversial topics , such as race relations , that had previously been ignored .\tDT NNP NNP , WDT VBZ DT NNP IN CD IN DT JJ NNS IN DT NNP NN NN : VBD NNP MD VB VBN IN PRP$ NN NN IN JJ NNS , JJ IN NN NNS , WDT VBD RB VBN VBN .\nPryor died last month at age 65 , after suffering for years from a degenerative nerve disease .\tNNP VBD JJ NN IN NN CD , IN VBG IN NNS IN DT JJ NN NN .\nBlues legend Robert Johnson will also receive an award .\tNNP NN NNP NNP MD RB VB DT NN .\nDespite a short life that ended in 1938 , Johnson 's Delta blues style influenced generations of musicians .\tIN DT JJ NN WDT VBD IN CD , NNP POS NNP NNS NN VBD NNS IN NNS .\nInnovative rock musician David Bowie , country music artist Merle Haggard , and opera singer Jessye Norman are among the living performers to be recognized at the February 8 ceremony .\tJJ NN NN NNP NNP , NN NN NN NNP NNP , CC NN NN NNP NNP VBP IN DT VBG NNS TO VB VBN IN DT NNP CD NN .\nA U.S. military helicopter has crashed during an anti-militant operation in southern Afghanistan , killing its five-member American crew .\tDT NNP JJ NN VBZ VBN IN DT JJ NN IN JJ NNP , VBG PRP$ JJ JJ NN .\nThe U.S. military says the Chinook aircraft went down early Sunday in Zabul province shortly after dropping off troops involved in the mission .\tDT NNP NN VBZ DT NNP NN VBD RB RB NNP IN NNP NN RB IN VBG RP NNS VBN IN DT NN .\nA U.S. military spokesman , Colonel Jim Yonts , says the cause of the crash is under investigation , and that troops are at the scene providing security for recovery operation .\tDT NNP JJ NN , NNP NNP NNP , VBZ DT NN IN DT NN VBZ IN NN , CC IN NNS VBP IN DT NN VBG NN IN NN NN .\nA Taleban spokesman , Abdul Latif Hakimi , claimed responsibility for shooting down the aircraft , but the U.S. military says there is no indication hostile fire was involved .\tDT NNP NN , NNP NNP NNP , VBD NN IN VBG RP DT NN , CC DT NNP NN VBZ EX VBZ DT NN JJ NN VBD VBN .\nTwo other U.S. Chinooks crashed in Afghanistan earlier this year .\tCD JJ NNP NNS VBD IN NNP RBR DT NN .\nOne of the large , twin-rotor aircraft was shot down in June , killing all 16 Americans aboard .\tCD IN DT JJ , JJ NN VBD VBN RB IN NNP , VBG DT CD NNS IN .\nAnother Chinook crashed in a sandstorm in April , killing 15 American troops and three civilians .\tDT NNP VBD IN DT NN IN NNP , VBG CD JJ NNS CC CD NNS .\nOne person was killed and at least several others wounded in Mogadishu overnight as insurgents attacked three police stations .\tCD NN VBD VBN CC IN JJS JJ NNS VBD IN NNP JJ IN NNS VBD CD NN NNS .\nWitnesses report grenade explosions and exchanges of gunfire around police stations in the Wadajir , Hodan , and Florence districts .\tNNS VBP JJ NNS CC NNS IN NN IN NN NNS IN DT NNP , NNP , CC NNP NNS .\nThere were conflicting reports whether the person killed was an insurgent or a civilian hit by a stray bullet .\tEX VBD VBG NNS IN DT NN VBN VBD DT JJ CC DT JJ NN IN DT JJ NN .\nSuch gunbattles have become a daily occurrence in the Somali capital as insurgents continue to battle the government and its Ethiopian allies .\tJJ NNS VBP VBN DT JJ NN IN DT JJ NN IN NNS VBP TO VB DT NN CC PRP$ JJ NNS .\nA national peace conference organized by the government has shown no sign of reconciling Somalia 's warring clans and factions .\tDT JJ NN NN VBN IN DT NN VBZ VBN DT NN IN VBG NNP POS VBG NNS CC NNS .\nThe Horn of Africa country has not had a stable central government since 1991 .\tDT NNP IN NNP NN VBZ RB VBN DT JJ JJ NN IN CD .\nA suicide bombing Saturday in Turkey killed at least four people riding a minibus to a beach in an Aegean seacoast resort town .\tDT NN VBG NNP IN NNP VBD IN JJS CD NNS VBG DT NN TO DT NN IN DT JJ NN NN NN .\nInjured foreign tourist is carried to ambulance after explosion in Kusadasi , Saturday Authorities in Kusadasi , southeast of Izmir , say the blast wounded 14 people , several of whom are in critical condition .\tVBN JJ NN VBZ VBN TO NN IN NN IN NNP , NNP NNS IN NNP , NN IN NNP , VBP DT NN VBD CD NNS , JJ IN WP VBP IN JJ NN .\nThree of the dead were believed to be foreign tourists .\tCD IN DT NN VBD VBN TO VB JJ NNS .\nOne Turkish account says the bombing was carried out by a woman , but there is no word yet on who plotted the explosion .\tCD JJ NN VBZ DT NN VBD VBN RP IN DT NN , CC EX VBZ DT NN RB IN WP VBD DT NN .\nSeveral recent attacks in Turkey have been claimed by Kurdish separatist rebels , including TAK guerrillas linked to the Kurdistan Workers Party , PKK .\tJJ JJ NNS IN NNP VBP VBN VBN IN NNP JJ NNS , VBG NNP NNS VBN TO DT NNP NNP NNP , NNP .\nPrime Minister Recep Tayyip Erdogan said the attack was the work of terrorists , but he did not blame any specific group .\tNNP NNP NNP NNP NNP VBD DT NN VBD DT NN IN NNS , CC PRP VBD RB VB DT JJ NN .\nPalestinian medical workers say two gunmen with the Islamic militant group Hamas have been killed in an Israeli air strike in the southern Gaza Strip .\tJJ JJ NNS VBP CD NNS IN DT NNP JJ NN NNP VBP VBN VBN IN DT JJ NN NN IN DT JJ NNP NNP .\nHamas says Israeli aircraft Saturday struck one of the group 's military posts near the town of Khan Younis .\tNNP VBZ JJ NN NNP VBD CD IN DT NN POS JJ NNS IN DT NN IN NNP NNP .\nIt says the two dead gunmen belonged to Hamas ' military wing ( Ezzedin al-Qassam ) , and that four of its members were wounded in the attack .\tPRP VBZ DT CD JJ NNS VBN TO NNP POS JJ NN LRB NNP NNP RRB , CC IN CD IN PRP$ NNS VBD VBN IN DT NN .\nThe Israeli army confirmed the air strike .\tDT JJ NN VBD DT NN NN .\nIsrael conducts air strikes and land operations in the Gaza Strip in an effort to stop Palestinian militants from firing rockets into southern Israel .\tNNP VBZ NN NNS CC NN NNS IN DT NNP NNP IN DT NN TO VB JJ NNS IN VBG NNS IN JJ NNP .\nRussia - one of the world 's largest wheat exporters - has imposed a ban on grain exports due to an extended drought , wildfires and record-high temperatures ravaging much of the country .\tNNP IN CD IN DT NN POS JJS NN NNS : VBZ VBN DT NN IN NN NNS JJ TO DT JJ NN , NNS CC JJ NNS VBG NN IN DT NN .\nPrime Minister Vladimir Putin ordered the ban Thursday , as part of a push to control domestic prices for wheat products and livestock feed .\tJJ NN NNP NNP VBD DT NN NNP , IN NN IN DT NN TO VB JJ NNS IN NN NNS CC NN NN .\nThe ban begins August 15 and is scheduled to end in December .\tDT NN VBZ NNP CD CC VBZ VBN TO VB IN NNP .\nRussia slashed its grain harvest forecast last week by 20 percent , as drought and high temperatures spawned hundreds of wildfires that destroyed entire villages and at least one key military base near Moscow .\tNNP VBD PRP$ NN NN NN JJ NN IN CD NN , IN NN CC JJ NNS VBD NNS IN NNS WDT VBD JJ NNS CC IN JJS CD JJ JJ NN IN NNP .\nFifty people have been found dead in the smoldering ruins of rural homes in western and central Russia .\tCD NNS VBP VBN VBN JJ IN DT VBG NNS IN JJ NNS IN JJ CC JJ NNP .\nTemperatures in Moscow have hovered near 40 C for more than a week , as parched residents battle choking smog and smoke from peat fires burning just outside the city .\tNNS IN NNP VBP VBN IN CD NNP IN JJR IN DT NN , IN JJ NNS VBP VBG NN CC NN IN NN NNS VBG RB IN DT NN .\nArgentina and Spain have agreed to pursue a strategic alliance to strengthen political and economic ties .\tNNP CC NNP VBP VBN TO VB DT JJ NN TO VB JJ CC JJ NNS .\nArgentine President Nestor Kirchner and visiting Spanish Prime Minister Jose Luis Rodriguez Zapatero signed the agreement Tuesday in Buenos Aires .\tJJ NNP NNP NNP CC VBG JJ NNP NNP NNP NNP NNP NNP VBD DT NN NNP IN NNP NNP .\nEarlier this week , Mr. Zapatero met with Brazilian President Luiz Inacio Lula da Silva in Brasilia .\tRBR DT NN , NNP NNP VBD IN JJ NNP NNP NNP NNP NNP NNP IN NNP .\nThe two said they plan to strengthen cooperation in social development , construction projects and other fields .\tDT CD VBD PRP VBP TO VB NN IN JJ NN , NN NNS CC JJ NNS .\nFor the last leg of his South American trip , Mr. Zapatero is scheduled to fly to Chile Wednesday to meet with President Ricardo Lagos .\tIN DT JJ NN IN PRP$ JJ JJ NN , NNP NNP VBZ VBN TO VB TO NNP NNP TO VB IN NNP NNP NNP .\nHumanitarian agencies report more than 50 people have been killed in floods in Pakistan brought on by heavy monsoon rains that began earlier this month .\tJJ NNS VBP JJR IN CD NNS VBP VBN VBN IN NNS IN NNP VBN RP IN JJ NN NNS WDT VBD RBR DT NN .\nThe Red Cross says 50,000 people have been affected in the worst hit areas in the province of Baluchistan .\tDT NNP NNP VBZ CD NNS VBP VBN VBN IN DT JJS NN NNS IN DT NN IN NNP .\nThe Pakistani government and relief organizations are pledging food and supplies to help those displaced by the flooding .\tDT JJ NN CC NN NNS VBP VBG NN CC NNS TO VB DT VBN IN DT NN .\nBut there are concerns that worsening weather conditions could hamper those relief efforts .\tCC EX VBP NNS IN VBG NN NNS MD VB DT NN NNS .\nThailand 's military installed government Friday announced a proposal to lift martial law in 11 of 35 provinces .\tNNP POS JJ JJ NN NNP VBD DT NN TO VB JJ NN IN CD IN CD NNS .\nBut the government proposes to place new restrictions on three provinces that border Laos .\tCC DT NN VBZ TO VB JJ NNS IN CD NNS IN VBZ NNP .\nFormer head of the military government , Sonthi Boonyaratglin , told reporters that martial law will remain in regions that are prone to drug problems .\tJJ NN IN DT JJ NN , NNP NNP , VBD NNS IN JJ NN MD VB IN NNS WDT VBP JJ TO NN NNS .\nMany of the restricted provinces also supported the former political party of ousted prime minister Thaksin Shinawatra .\tNN IN DT JJ NNS RB VBD DT JJ JJ NN IN JJ JJ NN NNP NNP .\nThai prosecutors flew to England Friday to discuss the possibility of extraditing Mr. Thaksin on corruption charges .\tJJ NNS VBD TO NNP NNP TO VB DT NN IN VBG NNP NNP IN NN NNS .\nLast month , Thailand 's supreme court suspended a case against Mr. Thaksin and his wife until they appear in court .\tJJ NN , NNP POS JJ NN VBD DT NN IN NNP NNP CC PRP$ NN IN PRP VBP IN NN .\nProsecutors charge the couple with illegally influencing a Bangkok real estate deal in 2003 .\tNNS VBP DT NN IN RB VBG DT NNP JJ NN NN IN CD .\nThe two have been living in self-imposed exile in England since Mr. Thaksin was ousted in a coup last year .\tDT CD VBP VBN VBG IN JJ NN IN NNP IN NNP NNP VBD VBN IN DT NN JJ NN .\nReporters Without Borders has expressed shock over a female television reporter 's murder in Afghanistan , and called on President Hamid Karzai to take concrete steps in support of press freedom .\tNNPS NNP NNPS VBZ VBN NN IN DT JJ NN NN POS NN IN NNP , CC VBD IN NNP NNP NNP TO VB JJ NNS IN NN IN NN NN .\nShaima Rezayee had presented a music program on the privately-run television channel Tolo TV , and was shot in the head in the Kabul neighborhood of Char Qala on Wednesday .\tNNP NNP VBD VBN DT NN NN IN DT JJ NN NN NNP NNP , CC VBD VBN IN DT NN IN DT NNP NN IN NNP NNP IN NNP .\nShe was the first journalist to be killed in Afghanistan since the end of the war in 2001 .\tPRP VBD DT JJ NN TO VB VBN IN NNP IN DT NN IN DT NN IN CD .\nThe group is urging an independent investigation into the murder so that those responsible can be arrested and brought to trial .\tDT NN VBZ VBG DT JJ NN IN DT NN RB IN DT JJ MD VB VBN CC VBN TO NN .\nConservative Islamists in Afghanistan had been criticizing 24-year-old Ms. Rezayee 's music program as anti-Islamic .\tJJ NNS IN NNP VBD VBN VBG JJ NNP NNP POS NN NN IN JJ .\nBowing to pressure from religious leaders , Tolo TV had fired her earlier this year .\tVBG TO NN IN JJ NNS , NNP NNP VBD VBN PRP RBR DT NN .\nPalestinian officials say Israeli troops shot and killed a Palestinian near a checkpoint in the West Bank Sunday .\tJJ NNS VBP JJ NNS VBD CC VBD DT NN IN DT NN IN DT NNP NNP NNP .\nThey say the Israeli soldiers opened fire on the man 's vehicle when it tried to bypass a checkpoint near the city of Nablus .\tPRP VBP DT JJ NNS VBD NN IN DT NN POS NN WRB PRP VBD TO VB DT NN IN DT NN IN NNP .\nThree other Palestinians in the vehicle were wounded .\tCD JJ NNS IN DT NN VBD VBN .\nMeanwhile , Palestinian Prime Minister Ismail Haniyeh condemned Israel 's arrest of Deputy Prime Minister Nasser al-Shaer , a top official of the Hamas organization .\tRB , JJ NNP NNP NNP NNP VBD NNP POS NN IN NNP NNP NNP NNP NNP , DT JJ NN IN DT NNP NN .\nIsraeli forces raided Shaer 's home in the West Bank early Saturday and took him away for questioning .\tJJ NNS VBD NNP POS NN IN DT NNP NNP JJ NNP CC VBD PRP RB IN VBG .\nAn Israeli spokesman says Shaer was detained because he is a member of Hamas , which won Palestinian elections early this year but is considered a terrorist group by Israel , the United States and the European Union .\tDT JJ NN VBZ NNP VBD VBN IN PRP VBZ DT NN IN NNP , WDT VBD JJ NNS RB DT NN CC VBZ VBN DT JJ NN IN NNP , DT NNP NNPS CC DT NNP NNP .\nAl-Qaida 's front group in Iraq has claimed responsibility for a string of attacks on Baghdad 's Shi'ite districts this week that left at least 64 dead and 360 wounded .\tNNP POS JJ NN IN NNP VBZ VBN NN IN DT NN IN NNS IN NNP POS NNP NNS DT NN WDT VBD IN JJS CD JJ CC CD VBN .\nIn a statement posted Friday on a militant website , the Islamic State of Iraq is threatening more attacks on the country 's Shi'ite majority .\tIN DT NN VBN NNP IN DT JJ NN , DT NNP NNP IN NNP VBZ VBG JJR NNS IN DT NN POS JJ NN .\nThe statement says the assault Tuesday on Shi'ite civilians at restaurants and cafes across the capital was ' the first day of many bloody days to come . '\tDT NN VBZ DT NN NNP IN NNP NNS IN NNS CC NNS IN DT NN VBD `` DT JJ NN IN JJ JJ NNS TO VB . ``\nThe Islamic State of Iraq is an umbrella group that includes al-Qaida in Iraq and other Sunni insurgent factions .\tDT NNP NNP IN NNP VBZ DT NN NN WDT VBZ NNP IN NNP CC JJ NNP JJ NNS .\nThe group this week also threatened more attacks on Christians , after it took responsibility for a shocking siege at a Baghdad church during Sunday Mass that left 58 people dead .\tDT NN DT NN RB VBD JJR NNS IN NNS , IN PRP VBD NN IN DT JJ NN IN DT NNP NN IN NNP NNP WDT VBD CD NNS JJ .\nU.S. Secretary of State Condoleezza Rice says Washington is concerned about reports of a Chinese government crackdown on dissidents ahead of President Bush 's visit .\tNNP NNP IN NNP NNP NNP VBZ NNP VBZ JJ IN NNS IN DT JJ NN NN IN NNS RB IN NNP NNP POS NN .\nMs. Rice told reporters in Beijing Sunday the United States would strongly raise its concerns with Beijing .\tNNP NNP VBD NNS IN NNP NNP DT NNP NNPS MD RB VB PRP$ NNS IN NNP .\nShe says U.S. officials will seek clarification on the matter , and will make clear ' open societies societies allow people to express themselves . '\tPRP VBZ NNP NNS MD VB NN IN DT NN , CC MD VB JJ `` JJ NNS NNS VBP NNS TO VB PRP . ``\nThe French news agency ( AFP ) says Chinese authorities have recently detained or placed under house arrest at least a dozen dissidents and activists .\tDT JJ NN NN LRB NNP RRB VBZ JJ NNS VBP RB VBN CC VBN IN NN NN IN JJS DT NN NNS CC NNS .\nSecretary Rice also says Washington is disappointed in China 's lack of progress to a request made in September for action on specific human rights cases .\tNNP NNP RB VBZ NNP VBZ VBN IN NNP POS NN IN NN TO DT NN VBN IN NNP IN NN IN JJ JJ NNS NNS .\nThe secretary says the issue of human rights in China will be a long conversation over a long period of time .\tDT NN VBZ DT NN IN JJ NNS IN NNP MD VB DT JJ NN IN DT JJ NN IN NN .\nThe former majority leader in the U.S. House of Representatives turned himself in to authorities Thursday to face charges of money laundering and conspiracy .\tDT JJ NN NN IN DT NNP NNP IN NNPS VBD PRP IN TO NNS NNP TO VB NNS IN NN NN CC NN .\nCongressman Tom DeLay reported to a sheriff 's office in Houston , Texas , where he was booked , photographed and fingerprinted before being released on $ 10,000 bond .\tNNP NNP NNP VBD TO DT NN POS NN IN NNP , NNP , WRB PRP VBD VBN , VBN CC VBN IN VBG VBN IN $ CD NN .\nMr. DeLay had been expected to appear for booking after a Texas state court issued a warrant for his arrest on Wednesday .\tNNP NNP VBD VBN VBN TO VB IN VBG IN DT NNP NN NN VBD DT NN IN PRP$ NN IN NNP .\nThe court 's move was a formality under Texas law , which requires that an arrest warrant be issued for anyone indicted on a felony charge .\tDT NN POS NN VBD DT NN IN NNP NN , WDT VBZ IN DT NN NN VB VBN IN DT VBN IN DT NN NN .\nThe Republican congressman has denied the charges against him , saying they are politically motivated .\tDT JJ NN VBZ VBN DT NNS IN PRP , VBG PRP VBP RB JJ .\nMr. DeLay has kept his Texas congressional seat but has stepped down as Republican leader under a party rule requiring him to give up the post if charged with a felony .\tNNP NNP VBZ VBN PRP$ NNP JJ NN CC VBZ VBN RP IN JJ NN IN DT NN NN VBG PRP TO VB RP DT NN IN VBN IN DT NN .\nCitigroup , one of the largest financial institutions in the United States , said Tuesday it lost nearly $ 10 billion in the last few months of 2007 .\tNNP , CD IN DT JJS JJ NNS IN DT NNP NNPS , VBD NNP PRP VBD RB $ CD CD IN DT JJ JJ NNS IN CD .\nThe bank says its assets have shrunk by more than $ 18 billion because of huge investments in the troubled subprime mortgage sector .\tDT NN VBZ PRP$ NNS VBP VBN IN JJR IN $ CD CD IN IN JJ NNS IN DT JJ NN NN NN .\nThe company says it will layoff another 4,200 employees to save money .\tDT NN VBZ PRP MD VB DT CD NNS TO VB NN .\nCiti is turning to outside investors to replenish capital , raising more than $ 14 billion from investors in Singapore , Kuwait , Saudi Arabia and elsewhere .\tNNP VBZ VBG TO JJ NNS TO VB NN , VBG JJR IN $ CD CD IN NNS IN NNP , NNP , NNP NNP CC RB .\nMeantime , Merrill Lynch , the largest brokerage , is suffering from similar problems and raising about $ 6.6 billion from investors in Japan , Kuwait and South Korea .\tRB , NNP NNP , DT JJS NN , VBZ VBG IN JJ NNS CC VBG RB $ CD CD IN NNS IN NNP , NNP CC NNP NNP .\nTens of thousands of Nepalese have marched through the capital , Kathmandu demanding an end to years of violence between Maoist rebels and government security forces .\tNNS IN NNS IN NNS VBP VBN IN DT NN , NNP VBG DT NN TO NNS IN NN IN NNP NNS CC NN NN NNS .\nOrganizers of the peace rally said Monday they want to mount pressure on the government and the rebels to resume peace talks .\tNNS IN DT NN NN VBD NNP PRP VBP TO VB NN IN DT NN CC DT NNS TO VB NN NNS .\nStudents and people from all walks of life carried banners and chanted slogans demanding an immediate end to the Maoist rebellion that has claimed more than 10,000 lives since it began in 1996 .\tNNS CC NNS IN DT VBZ IN NN VBD NNS CC VBD NNS VBG DT JJ NN TO DT NNP NN WDT VBZ VBN JJR IN CD NNS IN PRP VBD IN CD .\nThe rebels want to replace Nepal 's constitutional monarchy with a communist state .\tDT NNS VBP TO VB NNP POS JJ NN IN DT JJ NN .\nThe rally was held as a crippling Maoist-called transport blockade of the Kathmandu valley entered its fifth day .\tDT NN VBD VBN IN DT JJ JJ NN NN IN DT NNP NN VBD PRP$ JJ NN .\nThe rebels are demanding information about their missing activists who they say disappeared while in custody .\tDT NNS VBP VBG NN IN PRP$ JJ NNS WP PRP VBP VBN IN IN NN .\nWorld oil prices declined about two percent in Tuesday 's trading after Chinese oil imports slowed and a report on the U.S. economy disappointed investors .\tNNP NN NNS VBD IN CD NN IN NNP POS NN IN JJ NN NNS VBD CC DT NN IN DT NNP NN JJ NNS .\nIn New York trading , the price of crude oil fell more than $ 2 to $ 79.43 .\tIN NNP NNP NN , DT NN IN JJ NN VBD JJR IN $ CD TO $ CD .\nA report on declining worker productivity in the United States prompted investors to expect less demand for energy , which would lower oil prices .\tDT NN IN VBG NN NN IN DT NNP NNPS VBD NNS TO VB JJR NN IN NN , WDT MD VB NN NNS .\nThe United States and China are the world 's two largest oil consumers .\tDT NNP NNPS CC NNP VBP DT NN POS CD JJS NN NNS .\nSixty years ago , fifteen-year old Roman Ferencevych lived through the waning months of World War II in war-shattered Berlin , far from his native Ukraine .\tCD NNS RB , JJ JJ NNP NNP VBD IN DT VBG NNS IN NNP NNP NNP IN JJ NNP , RB IN PRP$ JJ NNP .\nAfter the war , he found himself in the United States -- a displaced person , a refugee , and an American soldier .\tIN DT NN , PRP VBD PRP IN DT NNP NNPS IN DT JJ NN , DT NN , CC DT JJ NN .\nHere he shares his memories of that turbulent time .\tRB PRP VBZ PRP$ NNS IN DT JJ NN .\nThe day the war ended in Germany , Hear Roman Ferencevych describe life in a Displaced Persons ' Camp\tDT NN DT NN VBD IN NNP , VB NNP NNP VBP NN IN DT JJ NNS POS NNP\nRoman Ferencevych talks about the goals of the Ukrainian Community in the U.S.\tNNP NNP NNS IN DT NNS IN DT JJ NNP IN DT NNP\nMauritania 's foreign minister says her country has broken diplomatic relations with Israel .\tNNP POS JJ NN VBZ PRP$ NN VBZ VBN JJ NNS IN NNP .\nSpeaking in the capital of Nouakchott late Saturday , Naha Mint Hamdi Ould Mouknass said Mauritania has cut ties with Israel in a ' complete and definitive way . '\tVBG IN DT NN IN NNP JJ NNP , NNP NNP NNP NNP NNP VBD NNP VBZ VBN NNS IN NNP IN DT `` JJ CC JJ NN . ``\nMauritania was once one of three Arab states that had diplomatic relations with Israel .\tNNP VBD RB CD IN CD JJ NNS WDT VBD JJ NNS IN NNP .\nIt suspended the ties in January 2009 because of an Israeli offensive in the Gaza Strip .\tPRP VBD DT NNS IN NNP CD IN IN DT JJ NN IN DT NNP NNP .\nIn March , the government expelled Israeli diplomats and ordered the closing of the Israeli embassy .\tIN NNP , DT NN VBD JJ NNS CC VBD DT NN IN DT JJ NN .\nThe 2009 Israeli offensive killed an estimated 1,300 Palestinians .\tDT CD JJ NN VBD DT VBN CD NNS .\nIsrael said it launched the offensive to protect itself against rocket attacks by the militant group Hamas .\tNNP VBD PRP VBD DT NN TO VB PRP IN NN NNS IN DT JJ NN NNP .\nMauritania 's move leaves Egypt and Jordan as the only Arab states to maintain relations with Israel .\tNNP POS NN VBZ NNP CC NNP IN DT JJ JJ NNS TO VB NNS IN NNP .\nU.S. military lawyers want charges dropped against alleged conspirators in the September 2001 terrorist attacks on the United States , saying their cases were improperly influenced by a Pentagon adviser .\tNNP JJ NNS VBP NNS VBD IN JJ NNS IN DT NNP CD JJ NNS IN DT NNP NNPS , VBG PRP$ NNS VBD RB VBN IN DT NNP NN .\nIn documents released Friday , defense attorneys argue that Air Force adviser Brig. Gen. Thomas Hartmann failed to provide fair and objective legal advice , and instead pushed prosecutors to take up ' sexy ' high-profile cases .\tIN NNS VBN NNP , NN NNS VBP IN NNP NNP NN NNP NNP NNP NNP VBD TO VB JJ CC JJ JJ NN , CC RB VBD NNS TO VB RP `` JJ `` JJ NNS .\nThe defense 's motion pertains to the case of the alleged mastermind of the September 11 attacks , Khalid Sheikh Mohammed and four other prisoners held at the U.S. military detention center in Guantanamo Bay , Cuba .\tDT NN POS NN NNS TO DT NN IN DT JJ NN IN DT NNP CD NNS , NNP NNP NNP CC CD JJ NNS VBN IN DT NNP JJ NN NN IN NNP NNP , NNP .\nA judge had already barred Hartmann from a case against Salim Hamdan , a former driver for al-Qaida chief Osama bin Laden .\tDT NN VBD RB VBN NNP IN DT NN IN NNP NNP , DT JJ NN IN NNP NN NNP NNP NNP .\nHamdan was scheduled to go to trial early next month , but a military judge on Friday postponed the case for six weeks so the defendant can receive a mental evaluation .\tNNP VBD VBN TO VB TO NN RB JJ NN , CC DT JJ NN IN NNP VBD DT NN IN CD NNS IN DT NN MD VB DT JJ NN .\nChief U.N. war crimes prosecutor Carla del Ponte says Slobodan Milosevic secretly took medicines in his jail cell in what may have been a suicide attempt .\tNNP NNP NN NNS NN NNP NNP NNP VBZ NNP NNP RB VBD NNS IN PRP$ NN NN IN WP MD VB VBN DT NN NN .\nDel Ponte told France 's Le Monde newspaper Tuesday that Milosevic apparently decided to worsen his health in an attempt to get out of jail and go to Moscow for treatment or to take his own life .\tNNP NNP VBD NNP POS NNP NNP NN NNP IN NNP RB VBD TO VB PRP$ NN IN DT NN TO VB IN IN NN CC VB TO NNP IN NN CC TO VB PRP$ JJ NN .\nShe said she is waiting for blood test results to see what brought on the heart attack that killed Milosevic .\tPRP VBD PRP VBZ VBG IN NN NN NNS TO VB WP VBD IN DT NN NN WDT VBD NNP .\nDel Ponte said Milosevic 's death is difficult to accept and that it dealt the war crimes tribunal a nasty blow .\tNNP NNP VBD NNP POS NN VBZ JJ TO VB CC IN PRP VBD DT NN NNS VBP DT JJ NN .\nBut she said she wants to try fugitive former Bosnian Serb leaders Radovan Karadzic and Ratko Mladic , saying the court is now in a coma and must come back to life .\tCC PRP VBD PRP VBZ TO VB JJ JJ JJ JJ NNS NNP NNP CC NNP NNP , VBG DT NN VBZ RB IN DT NN CC MD VB RB TO NN .\nEuropean naval forces have detained seven suspected pirates off the coast of Somalia .\tJJ JJ NNS VBP VBN CD JJ NNS IN DT NN IN NNP .\nThe German Defense Ministry says pirates fired on one of its supply ships , the FSG Spessart , in the Gulf of Aden on Sunday .\tDT JJ NNP NNP VBZ NNS VBD IN CD IN PRP$ NN NNS , DT NNP NNP , IN DT NNP IN NNP IN NNP .\nIt says the German ship returned fire and then chased down the pirates with the help of other vessels in the European Union 's anti-piracy mission .\tPRP VBZ DT JJ NN VBD NN CC RB VBD RP DT NNS IN DT NN IN JJ NNS IN DT NNP NNP POS JJ NN .\nThe seven suspects are being held on a German frigate ( the Rheinland-Pfalz ) .\tDT CD NNS VBP VBG VBN IN DT JJ NN LRB DT NNP RRB .\nSomali pirates seized more than 40 ships during 2008 , receiving millions of dollars in ransom payments .\tJJ NNS VBD JJR IN CD NNS IN CD , VBG NNS IN NNS IN NN NNS .\nBut the number of hijackings has dropped sharply in recent months , after the EU , the United States and other world powers began naval patrols in the waters near Somalia .\tCC DT NN IN NNS VBZ VBN RB IN JJ NNS , IN DT NNP , DT NNP NNPS CC JJ NN NNS VBD JJ NNS IN DT NNS IN NNP .\nNorth Korea says it has sent its top diplomat to Russia , amid a flurry of attempts to ease tensions on the Korean peninsula .\tNNP NNP VBZ PRP VBZ VBN PRP$ JJ NN TO NNP , IN DT NN IN NNS TO VB NNS IN DT JJ NN .\nThe North 's state Korean Central News Agency said in a one-sentence dispatch that Foreign Minister Pak Ui-Chun departed for Moscow .\tDT NNP POS NN JJ NNP NNP NNP VBD IN DT JJ NN IN NNP NNP NNP NNP VBD IN NNP .\nThe article provided no further details .\tDT NN VBD DT JJ NNS .\nPak told Russia 's Interfax news agency Friday that Pyongyang felt justified in building a nuclear defense to ward off threats from South Korea and the U.S. , which he accused of conducting a policy of hostility and confrontation .\tNNP VBD NNP POS NNP NN NN NNP IN NNP VBD JJ IN VBG DT JJ NN TO VB RP NNS IN NNP NNP CC DT NNP , WDT PRP VBD IN VBG DT NN IN NN CC NN .\nRussia is a member of the six nations attempting to bring a halt to North Korea 's nuclear program .\tNNP VBZ DT NN IN DT CD NNS VBG TO VB DT NN TO NNP NNP POS JJ NN .\nThe six-party talks also include the two Koreas , China , Japan and the United States .\tDT JJ NNS RB VBP DT CD NNP , NNP , NNP CC DT NNP NNPS .\nTalking about fashion instantly evokes in many people images of models strutting down the catwalk .\tVBG IN NN RB VBZ IN JJ NNS NNS IN NNS VBG IN DT NN .\nBut the South Asian Student Association at Carnegie Mellon University in Pittsburgh , Pennsylvania recently took a different spin on fashion during Pakistan Awareness Week on campus .\tCC DT NNP NNP NNP NNP IN NNP NNP NNP IN NNP , NNP RB VBD DT JJ NN IN NN IN NNP NNP NN IN NN .\nVOA 's Ruth Reader reports for producer Imran Siddiqi .\tNNP POS NNP NNP VBZ IN NN NNP NNP .\nVenezuelan station Radio Caracas Television ( RCTV ) is now being shown on cable and satellite after being forced off the air by President Hugo Chavez in May .\tJJ NN NNP NNP NNP LRB NNP RRB VBZ RB VBG VBN IN NN CC NN IN VBG VBN IN DT NN IN NNP NNP NNP IN NNP .\nThe opposition-aligned TV station began its new programming Monday .\tDT JJ NN NN VBD PRP$ JJ NN NNP .\nThe chief of RCTV told a news conference last week that the station 's return is a victory for Venezuelan people who want its programs .\tDT NN IN NNP VBD DT NN NN JJ NN IN DT NN POS NN VBZ DT NN IN JJ NNS WP VBP PRP$ NNS .\nMr. Chavez refused to renew RCTV 's license to broadcast on a public frequency for allegedly backing a failed coup against him in 2002 .\tNNP NNP VBD TO VB NNP POS NN TO VB IN DT JJ NN IN RB VBG DT VBN NN IN PRP IN CD .\nOther national private networks also opposed Mr. Chavez , but their criticism of the government is now softer and they have retained their licenses .\tJJ JJ JJ NNS RB VBD NNP NNP , CC PRP$ NN IN DT NN VBZ RB JJR CC PRP VBP VBN PRP$ NNS .\nThe United States says its relief helicopters are now supplying twice as much aid to key distribution centers in quake-ravaged areas of Pakistan .\tDT NNP NNP VBZ PRP$ NN NNS VBP RB VBG RB RB JJ NN TO JJ NN NNS IN JJ NNS IN NNP .\nThe U.S. Embassy in Islamabad said Sunday this is to ensure at least a 30-day food supply in remote villages before bad weather grounds flights again .\tDT NNP NNP IN NNP VBD NNP DT VBZ TO VB IN JJS DT JJ NN NN IN JJ NNS IN JJ NN NNS NNS RB .\nThe statement says U.S. Chinook helicopters are now delivering over 100 tons of cargo a day , doubling their usual load by hanging supplies in nets under the aircraft .\tDT NN VBZ NNP NNP NNS VBP RB VBG IN CD NNS IN NN DT NN , VBG PRP$ JJ NN IN VBG NNS IN NNS IN DT NN .\nMeanwhile , the United Nations and Pakistani authorities are investigating why Pakistani earthquake victims forced their way onto two aid helicopters Friday and made the pilots airlift them from the disaster zone .\tRB , DT NNP NNPS CC JJ NNS VBP VBG WRB JJ NN NNS VBD PRP$ NN IN CD NN NNS NNP CC VBD DT NNS VBP PRP IN DT NN NN .\nThe October 8 quake killed more than 73,000 people and made more than three million people homeless .\tDT NNP CD NN VBD JJR IN CD NNS CC VBD JJR IN CD CD NNS JJ .\nUkrainian emergency officials say five people have been killed in the crash of a small private passenger plane near Kyiv .\tJJ NN NNS VBP CD NNS VBP VBN VBN IN DT NN IN DT JJ JJ NN NN IN NNP .\nThe Beechcraft turboprop was on a flight Sunday from the Czech Republic .\tDT NNP NN VBD IN DT NN NNP IN DT JJ NNP .\nWitnesses say the plane crashed and exploded in a field just short of the runway at Zhulyany airport near Kyiv .\tNNS VBP DT NN VBD CC VBD IN DT NN RB RB IN DT NN IN NNP NN IN NNP .\nNo one on the ground was hurt .\tDT NN IN DT NN VBD VBN .\nAll five victims were Czech .\tDT CD NNS VBD JJ .\nInvestigators say initial findings point to human error as the cause of the crash .\tNNS VBP JJ NNS VBP IN JJ NN IN DT NN IN DT NN .\nBurmese officials have ordered about 80 HIV patients and staff to leave a care home in Rangoon after a visit there by democracy leader Aung San Suu Kyi .\tJJ NNS VBP VBN IN CD NNP NNS CC NN TO VB DT NN NN IN NNP IN DT NN RB IN NN NN NNP NNP NNP NNP .\nThe official reason given for the eviction was that the home , a wooden shelter operated by Phyu Phyu Tin , a member of Aung San Suu Kyi 's National League for Democracy party , was in violation of Burmese law .\tDT JJ NN VBN IN DT NN VBD IN DT NN , DT JJ NN VBN IN NNP NNP NNP , DT NN IN NNP NNP NNP NNP POS NNP NNP IN NNP NN , VBD IN NN IN JJ NN .\nThe eviction order came a day after Aung San Suu Kyi visited the clinic and called for more medical assistance for the shelter 's residents , which include children .\tDT NN NN VBD DT NN IN NNP NNP NNP NNP VBD DT NN CC VBD IN JJR JJ NN IN DT NN POS NNS , WDT VBP NNS .\nThe Nobel laureate visited the clinic four days after she was freed from seven years of house arrest , when she pledged a ' peaceful revolution ' while seeking dialogue with the ruling generals .\tDT NNP NN VBD DT NN CD NNS IN PRP VBD VBN IN CD NNS IN NN NN , WRB PRP VBD DT `` JJ NN `` IN VBG NN IN DT NN NNS .\nBritish Prime Minister Tony Blair says he wants the U.S. military to close the detention facility for terrorism suspects at the American naval base in Guantanamo Bay , Cuba .\tJJ JJ NN NNP NNP VBZ PRP VBZ DT NNP NN TO VB DT NN NN IN NN NNS IN DT JJ JJ NN IN NNP NNP , NNP .\nMr. Blair told lawmakers he hopes a judicial process could be put in place so the detention center could close .\tNNP NNP VBD NNS PRP VBZ DT JJ NN MD VB VBN IN NN IN DT NN NN MD VB .\nHis comments came during his weekly question-and-answer session in parliament .\tPRP$ NNS VBD IN PRP$ JJ NN NN IN NN .\nThe prime minister stressed that the detention facility was opened under extraordinary circumstances , following the September 11 , 2001 attacks on the United States that killed nearly 3,000 people .\tDT JJ NN VBD IN DT NN NN VBD VBN IN JJ NNS , VBG DT NNP CD , CD NNS IN DT NNP NNPS WDT VBD RB CD NNS .\nHe said the facility housed people fighting U.S. and British troops in Afghanistan .\tPRP VBD DT NN VBD NNS VBG NNP CC JJ NNS IN NNP .\nAbout 500 detainees are being held at Guantanamo , suspected of links to al-Qaida or the Taleban .\tIN CD NNS VBP VBG VBN IN NNP , VBN IN NNS TO NNP CC DT NNP .\nHuman rights groups and the United Nations have called for its closure .\tJJ NNS NNS CC DT NNP NNPS VBP VBN IN PRP$ NN .\nU.S. officials insist detainees there are treated humanely .\tNNP NNS VBP NNS EX VBP VBN RB .\nChinese protesters chant anti-Japanese slogans as they march in Beijing 's Chinese police have warned against unauthorized anti-Japanese protests in the coming days after last week 's demonstrations turned violent .\tJJ NNS JJ JJ NNS IN PRP VBP IN NNP POS JJ NNS VBP VBN IN JJ JJ NNS IN DT JJ NNS IN JJ NN POS NNS VBD JJ .\nA statement posted Friday on popular Web sites told people to place their faith in the Communist Party and express their patriotic passion in an orderly manner .\tDT NN VBN NNP IN JJ NNP NNS VBD NNS TO VB PRP$ NN IN DT NNP NNP CC VB PRP$ JJ NN IN DT JJ NN .\nThe statement noted that public demonstrations require police permission and warned that violators could face punishment .\tDT NN VBD IN JJ NNS VBP NN NN CC VBD IN NNS MD VB NN .\nNotices spread by activists on Web sites and by mobile phones are calling for more protests in the next few days in Beijing , Shanghai and other cities .\tNNS VBN IN NNS IN NNP NNS CC IN JJ NNS VBP VBG IN JJR NNS IN DT JJ JJ NNS IN NNP , NNP CC JJ NNS .\nThe official announcement comes after violent anti-Japanese marches in Beijing , Guangzhou and Shenzhen this past week against Japan 's bid for a permanent seat on the U.N. Security Council and Tokyo 's alleged downplaying of wartime atrocities .\tDT JJ NN VBZ IN JJ JJ NNS IN NNP , NNP CC NNP DT JJ NN IN NNP POS NN IN DT JJ NN IN DT NNP NNP NNP CC NNP POS JJ NN IN NN NNS .\nIran 's hard-line president has called for the destruction of Israel and warned Muslim nations who recognize the Jewish state that they will be forever disgraced .\tNNP POS JJ NN VBZ VBN IN DT NN IN NNP CC VBD NNP NNS WP VBP DT JJ NN IN PRP MD VB RB VBN .\nSpeaking at a Tehran conference entitled ' The World Without Zionism ' Wednesday , President Mahmoud Ahmadinejad told thousands of students that countries or leaders who acknowledge Israel will be confronted with the wrath of the Islamic community .\tVBG IN DT NNP NN VBD `` DT NNP IN NNP `` NNP , NNP NNP NNP VBD NNS IN NNS IN NNS CC NNS WP VBP NNP MD VB VBN IN DT NN IN DT JJ NN .\nIntoning the words of the founder of Iran 's Islamic revolution , Ayatollah Ruhollah Khomeini , he said , ' Israel must be wiped off the map . '\tVBG DT NNS IN DT NN IN NNP POS JJ NN , NNP NNP NNP , PRP VBD , `` NNP MD VB VBN RP DT NN . ``\nHe also called Israel 's recent withdrawal from the Gaza Strip ' a trick , ' meant to make Islamic states acknowledge Israel .\tPRP RB VBD NNP POS JJ NN IN DT NNP NNP `` DT NN , `` VBD TO VB JJ NNS VBP NNP .\nThere was no immediate reaction to his comments from Jerusalem , but in Paris , a French foreign ministry spokesman strongly condemned the remarks .\tEX VBD DT JJ NN TO PRP$ NNS IN NNP , CC IN NNP , DT JJ JJ NN NN RB VBD DT NNS .\nSerbian government officials say a former Bosnian Serb interior minister plans to surrender to the United Nations Tribunal in The Hague to face war crimes charges .\tJJ NN NNS VBP DT JJ JJ JJ JJ NN VBZ TO VB TO DT NNP NNPS NNP IN DT NN TO VB NN NNS NNS .\nThe government said Thursday Mica Stanisic will travel to The Hague and surrender to the court Friday .\tDT NN VBD NNP NNP NNP MD VB TO DT NN CC NN TO DT NN NNP .\nThe tribunal has not yet made his indictment public .\tDT NN VBZ RB RB VBN PRP$ NN NN .\nMr. Stanisic was Bosnian Serb interior minister during part of the conflict in Bosnia-Herzegovina that began in 1992 .\tNNP NNP VBD JJ JJ NN NN IN NN IN DT NN IN NNP WDT VBD IN CD .\nThe European Union , NATO and Western governments have urged Serbia to arrest war crimes suspects and transfer them to The Hague .\tDT NNP NNP , NNP CC NNP NNS VBP VBN NNP TO VB NN NNS NNS CC VB PRP TO DT NNP .\nSince January , four high-ranking Serb military officials have surrendered to the tribunal .\tIN NNP , CD JJ JJ NN NNS VBP VBN TO DT NN .\nHowever , at least 17 Serbian or Bosnian Serb suspects , as well as Croatian General Ante Gotovina , still remain at large .\tRB , IN JJS CD JJ CC JJ JJ NNS , RB RB IN JJ NNP NNP NNP , RB VBP IN JJ .\nCongo 's electoral commission has requested a delay in national elections that are scheduled for June .\tNNP POS JJ NN VBZ VBN DT NN IN JJ NNS WDT VBP VBN IN NNP .\nThe head of the commission said Thursday he has presented the request to parliament , which must approve any delay .\tDT NN IN DT NN VBD NNP PRP VBZ VBN DT NN TO NN , WDT MD VB DT NN .\nHe did not say why the delay is necessary .\tPRP VBD RB VB WRB DT NN VBZ JJ .\nHowever the move was widely expected as preparations for the polls have fallen behind schedule .\tRB DT NN VBD RB VBN IN NNS IN DT NNS VBP VBN IN NN .\nThe delay is in line with Congo 's peace accord , which allows up to two six-month delays in elections , the nation 's first since independence in 1960 .\tDT NN VBZ IN NN IN NNP POS NN NN , WDT VBZ RP TO CD JJ NNS IN NNS , DT NN POS JJ IN NN IN CD .\nCongo 's peace deal , signed in 2003 , ended a five-year war .\tNNP POS NN NN , VBN IN CD , VBD DT JJ NN .\nEarlier this year , concerns about a delay in the elections led to violent protests in Kinshasa .\tRBR DT NN , NNS IN DT NN IN DT NNS VBD TO JJ NNS IN NNP .\nThursday , police were out in force on the streets of the capital to prevent any violence .\tNNP , NNS VBD RB IN NN IN DT NNS IN DT NN TO VB DT NN .\nPakistani officials said military fighter jets and helicopter gunships pounded tribal areas in northwestern Pakistan on Sunday , killing at least 30 insurgents and destroying seven militant hide-outs .\tJJ NNS VBD JJ NN NNS CC NN NNS VBD JJ NNS IN JJ NNP IN NNP , VBG IN JJS CD NNS CC VBG CD JJ NNS .\nPakistan launched the offensive in Orakzai to rout Taliban fighters from the mountainous area near its border with Afghanistan .\tNNP VBD DT NN IN NNP TO NN NNP NNS IN DT JJ NN IN PRP$ NN IN NNP .\nElsewhere in Pakistan 's tribal region , suspected militants released 50 of the 60 people kidnapped at gunpoint in Kurram on Saturday .\tRB IN NNP POS JJ NN , VBN NNS VBN CD IN DT CD NNS VBN IN NN IN NNP IN NNP .\nLocal officials say tribal elders are helping to negotiate the release of the remaining hostages .\tJJ NNS VBP JJ NNS VBP VBG TO VB DT NN IN DT VBG NNS .\nDelegations from Somalia 's interim government and opposition groups are meeting in Djibouti Saturday for United Nations brokered peace talks .\tNNS IN NNP POS JJ NN CC NN NNS VBP VBG IN NNP NNP IN NNP NNP VBD NN NNS .\nTwo explosions along the road to the airport outside the Somali capital , Mogadishu , Friday briefly delayed President Abdullahi Yousuf and Prime Minister Hussein Nur Adde as they prepared to fly to the meeting .\tCD NNS IN DT NN TO DT NN IN DT JJ NN , NNP , NNP RB VBD NNP NNP NNP CC NNP NNP NNP NNP NNP IN PRP VBD TO VB TO DT NN .\nAfter the explosions Ethiopian backed government forces opened fire on insurgents killing at least two civilians .\tIN DT NNS JJ JJ NN NNS VBD NN IN NNS VBG IN JJS CD NNS .\nDuring three days of meetings in Djibouti , the groups will try to finalize details of a peace agreement worked out in June between the Somali government and the opposition Alliance for the Re-liberation of Somalia .\tIN CD NNS IN NNS IN NNP , DT NNS MD VB TO VB NNS IN DT NN NN VBN RP IN NNP IN DT JJ NN CC DT NN NNP IN DT NN IN NNP .\nSomalia has not had a stable government since 1991 .\tNNP VBZ RB VBN DT JJ NN IN CD .\nFighting between government forces and insurgents has killed thousands of Somalis and displaced more than a million others .\tVBG IN NN NNS CC NNS VBZ VBN NNS IN NNS CC VBN JJR IN DT CD NNS .\nOfficials in the eastern European nation of Slovakia say two wild birds found dead appear to have carried the H5N1 strain of bird flu .\tNNS IN DT JJ JJ NN IN NNP VBP CD JJ NNS VBN JJ VBP TO VB VBN DT NNP NN IN NN NN .\nSlovakian Agriculture Minister Zsolt Simon said Thursday , the strain was detected in a white grebe found in the capital , Bratislava , and in a peregrine falcon found in Gabcikovo , at the border with Hungary .\tJJ NN NN NNP NNP VBD NNP , DT NN VBD VBN IN DT JJ NN VBN IN DT NN , NNP , CC IN DT NN NN VBD IN NNP , IN DT NN IN NNP .\nHe said samples from the birds have been sent to the European Union reference laboratory in Britain .\tPRP VBD NNS IN DT NNS VBP VBN VBN TO DT NNP NNP NN NN IN NNP .\nSlovakia is the latest European Union nation to confirm H5N1 cases .\tNNP VBZ DT JJS JJ NNP NN TO VB NNP NNS .\nThe strain has already been confirmed in France , Germany , Greece , Hungary , Slovenia , Italy and Austria .\tDT NN VBZ RB VBN VBN IN NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nAustrian officials Wednesday reported the first European Union case of the deadly disease in poultry .\tJJ NNS NNP VBD DT JJ NNP NNP NN IN DT JJ NN IN NN .\nBird flu has killed 92 people worldwide since 2003 , mostly in Asia .\tNN NN VBZ VBN CD NNS JJ IN CD , RB IN NNP .\nA pair of upsets have highlighted play at the Adelaide International men 's hardcourt tennis championships , with third-seeded Tommy Robredo of Spain and number four Mario Ancic of Croatia both losing .\tDT NN IN NNS VBP VBN NN IN DT NNP NNP NNS POS NN NN NNS , IN JJ NNP NNP IN NNP CC NN CD NNP NNP IN NNP DT VBG .\nFlorent Serra of France needed three sets to eliminate Robredo , 07-Jun , 03-Jun , 06-Mar on Wednesday , while Belgium 's Xavier Malisse topped Ancic , 03-Jun , 06-Mar , 07-Jun in their second round match .\tJJ NNP IN NNP VBD CD NNS TO VB NNP , CD , CD , CD IN NNP , IN NNP POS NNP NNP VBD NNP , CD , CD , CD IN PRP$ JJ NN NN .\nSerra will play seventh-seeded Jarkko Nieminen in the third round , after the Finnish player beat Germany 's Florian Mayer , 07-Jun , 07-May .\tNNP MD VB JJ NNP NNP IN DT JJ NN , IN DT JJ NN VBD NNP POS NNP NNP , CD , CD .\nTop-seeded Lleyton Hewitt of Australia will play his second round match Thursday against Germany 's Philipp Kohlschreiber .\tJJ NNP NNP IN NNP MD VB PRP$ JJ NN NN NNP IN NNP POS NNP NNP .\nBangladeshi medical officials are struggling to treat the victims of a fire that has killed at least 114 people in the capital , Dhaka .\tJJ JJ NNS VBP VBG TO VB DT NNS IN DT NN WDT VBZ VBN IN JJS CD NNS IN DT NN , NNP .\nAccording to local news reports , the state-run Dhaka Medical College has admitted at least 100 people with burn injuries , since the huge fire destroyed several buildings in Dhaka 's densely-populated old section .\tVBG TO JJ NN NNS , DT JJ NNP NNP NNP VBZ VBN IN JJS CD NNS IN JJ NNS , IN DT JJ NN VBD JJ NNS IN NNP POS JJ JJ NN .\nBangladeshi officials said the blaze started Thursday night when an electrical transformer exploded .\tJJ NNS VBD DT NN VBD NNP NN WRB DT JJ NN VBD .\nWitnesses say chemicals inside shops worsened the fire as it spread through apartment buildings .\tNNS VBP NNS IN NNS VBD DT NN IN PRP VBD IN NN NNS .\nNarrow roads in the centuries-old Kayettuli neighborhood hampered rescue efforts , leaving many residents trapped inside the area 's tightly-packed buildings .\tNNP NNS IN DT JJ NNP NN VBN NN NNS , VBG JJ NNS VBN IN DT NN POS JJ NNS .\nThe Bangladeshi government has declared Saturday a national day of mourning .\tDT JJ NN VBZ VBN NNP DT JJ NN IN NN .\nThe fire was the second deadly accident in Dhaka this week .\tDT NN VBD DT JJ JJ NN IN NNP DT NN .\nOn Tuesday , a building collapsed , killing at least 25 people .\tIN NNP , DT NN VBD , VBG IN JJS CD NNS .\nEuropean Union officials say the 16 nations that use the euro face a recession this year , which will bring rising unemployment and growing government debts .\tNNP NNP NNS VBP DT CD NNS WDT VBP DT NN VBP DT NN DT NN , WDT MD VB VBG NN CC VBG NN NNS .\nOfficials say the economies will shrink by 1.9 % this year , while unemployment goes above 9 % .\tNNS VBP DT NNS MD VB IN CD NN DT NN , IN NN VBZ IN CD NN .\nThe forecast is even gloomier than one issued in November .\tDT NN VBZ RB JJR IN CD VBN IN NNP .\nExperts predict the EU economy will recover somewhat in the second half of this year , and resume growth in 2010 , but warn the outlook is uncertain .\tNNS VBP DT NNP NN MD VB RB IN DT JJ NN IN DT NN , CC VB NN IN CD , CC VBP DT NN VBZ JJ .\nEuropean nations are trying to ease the impact of the recession by crafting stimulus packages that now total in the hundreds of billions of dollars , which will boost government deficits .\tJJ NNS VBP VBG TO VB DT NN IN DT NN IN VBG NN NNS WDT RB VBP IN DT NNS IN NNS IN NNS , WDT MD VB NN NNS .\nU.S. authorities have charged an American college student with providing aid to terrorists .\tNNP NNS VBP VBN DT JJ NN NN IN VBG NN TO NNS .\nCourt papers unsealed this week show that Syed Haris Ahmed , a mechanical engineering student at Georgia Tech in Atlanta was arrested on March 23 after a year-long investigation .\tNN NNS VBN DT NN VBP WDT NNP NNP NNP , DT JJ NN NN IN NNP NNP IN NNP VBD VBN IN NNP CD IN DT JJ NN .\nAuthorities accuse Ahmed , who was born in Pakistan , of attending a terrorist training camp in Pakistan last year .\tNNS VBP NNP , WP VBD VBN IN NNP , IN VBG DT JJ NN NN IN NNP JJ NN .\nAhmed has pleaded not guilty .\tNNP VBZ VBN RB JJ .\nHe is being held at an undisclosed location .\tPRP VBZ VBG VBN IN DT JJ NN .\nAuthorities say another person from the Atlanta area , 19-year-old Ehsanul Islam Sadequee , was arrested in Bangladesh in connection with the investigation of Ahmed .\tNNS VBP DT NN IN DT NNP NN , JJ NNP NNP NNP , VBD VBN IN NNP IN NN IN DT NN IN NNP .\nThey say he is being flown to New York to face charges .\tPRP VBP PRP VBZ VBG VBN TO NNP NNP TO VB NNS .\nOfficials say this is the first international terrorism charge filed in the state of Georgia .\tNNS VBP DT VBZ DT JJ JJ NN NN VBN IN DT NN IN NNP .\nNorth Korea says its National Security Service has arrested several of its citizens who were working as spies for a foreign country .\tNNP NNP VBZ PRP$ NNP NNP NNP VBZ VBN JJ IN PRP$ NNS WP VBD VBG IN NNS IN DT JJ NN .\nThe official Korean Central News Agency reports Wednesday that a foreign espionage agency coerced the North Koreans with money , sex and blackmail .\tDT JJ JJ NNP NNP NNP VBZ NNP IN DT JJ NN NN VBD DT NNP NNS IN NN , NN CC NN .\nSeveral foreigners were also arrested .\tJJ NNS VBD RB VBN .\nThe news report says the agents had posed as businessmen and used cameras , and global positioning systems to take pictures and draw maps of key military facilities .\tDT NN NN VBZ DT NNS VBD VBN IN NNS CC VBN NNS , CC JJ NN NNS TO VB NNS CC VB NNS IN JJ JJ NNS .\nNorth Korea says the spies also were asked to collect information on military and state secrets and spread the ideas of freedom and democracy .\tNNP NNP VBZ DT NNS RB VBD VBN TO VB NN IN JJ CC NN NNS CC VBD DT NNS IN NN CC NN .\nIt did not identify the foreign country or the spy agency .\tPRP VBD RB VB DT JJ NN CC DT NN NN .\nThis is the first time in recent years that North Korea has announced the arrest of spies .\tDT VBZ DT JJ NN IN JJ NNS IN NNP NNP VBZ VBN DT NN IN NNS .\nU.S. Secretary of State Condoleezza Rice is in Israel , at the start of a two-day push to revive the Middle East peace process .\tNNP NNP IN NNP NNP NNP VBZ IN NNP , IN DT NN IN DT JJ NN TO VB DT NNP NNP NN NN .\nBefore her arrival , Ms. Rice said resolving the Israeli-Palestinian conflict is a top priority .\tIN PRP$ NN , NNP NNP VBD VBG DT JJ NN VBZ DT JJ NN .\nShe also urged both sides to build on the recently-completed Israeli pullout from the Gaza Strip to reach a two-state solution to the decades-long conflict .\tPRP RB VBD DT NNS TO VB IN DT JJ JJ NN IN DT NNP NNP TO VB DT JJ NN TO DT JJ NN .\nThe U.S. diplomat is to address an Israeli think-tank later Sunday before meeting with Prime Minister Ariel Sharon .\tDT NNP NN VBZ TO VB DT JJ NN RB NNP IN VBG IN NNP NNP NNP NNP .\nShe meets with Palestinian leader Mahmoud Abbas Monday in the West Bank .\tPRP VBZ IN JJ NN NNP NNP NNP IN DT NNP NNP .\nEarlier today in Saudi Arabia , Ms. Rice had talks with Saudi leaders on the war on terror and the Israeli-Palestinian conflict .\tRB NN IN NNP NNP , NNP NNP VBD NNS IN JJ NNS IN DT NN IN NN CC DT JJ NN .\nShe later said both countries are united in fighting terrorism , and said both governments could do more to improve the image of the United States within the kingdom .\tPRP RB VBD DT NNS VBP VBN IN VBG NN , CC VBD DT NNS MD VB JJR TO VB DT NN IN DT NNP NNPS IN DT NN .\nRescuers in western Nepal continue to search for more than 100 people missing since a suspension bridge collapsed .\tNNS IN JJ NNP VBP TO VB IN JJR IN CD NNS VBG IN DT NN NN VBD .\nLocal authorities say rescue workers recovered 14 bodies , including children , from the icy waters of the Bheri River in the remote Surkhet district .\tJJ NNS VBP NN NNS VBD CD NNS , VBG NNS , IN DT NN NNS IN DT NNP NNP IN DT JJ NNP NN .\nThey say at least 32 seriously injured people were taken to hospitals , and one person died on the way .\tPRP VBP IN JJS CD RB JJ NNS VBD VBN TO NNS , CC CD NN VBD IN DT NN .\nDozens more with light injuries were treated at the scene Tuesday and allowed to go home .\tNNS RBR IN JJ NNS VBD VBN IN DT NN NNP CC VBD TO VB NN .\nPolice say scores of people managed to swim to safety , but many more may have been swept downstream .\tNNS VBP NNS IN NNS VBD TO VB TO NN , CC JJ JJR MD VB VBN VBN NN .\nAuthorities believe hundreds of people were crossing the bridge to attend a religious festival when its support cables snapped under the weight .\tNNS VBP NNS IN NNS VBD VBG DT NN TO VB DT JJ NN WRB PRP$ NN NNS VBD IN DT NN .\nThe leader of Lebanon 's parliamentary majority has accused Syria and Iran of seeking to impose a political and terrorist presence in Lebanon .\tDT NN IN NNP POS JJ NN VBZ VBN NNP CC NNP IN VBG TO VB DT JJ CC JJ NN IN NNP .\nSaad al-Hariri made his remarks in a speech Thursday to party members and supporters .\tNNP NNP VBD PRP$ NNS IN DT NN NNP TO NN NNS CC NNS .\nHe also called on supporters to attend a rally next week marking the third anniversary of the assassination of his father , former Lebanese Prime Minister Rafik al-Hariri , who was killed in a car bombing in Beirut on February 14 , 2005 .\tPRP RB VBD IN NNS TO VB DT NN JJ NN VBG DT JJ NN IN DT NN IN PRP$ NN , JJ JJ NNP NNP NNP NNP , WP VBD VBN IN DT NN NN IN NNP IN NNP CD , CD .\nSeveral other anti-Syrian political figures in Lebanon have since been assassinated , but Syria has denied involvement in the killings .\tJJ JJ JJ JJ NNS IN NNP VBP IN VBN VBN , CC NNP VBZ VBN NN IN DT NNS .\nLebanon is facing a crisis as the country 's political factions struggle to resolve their differences and elect a new president .\tNNP VBZ VBG DT NN IN DT NN POS JJ NNS NN TO VB PRP$ NNS CC VB DT JJ NN .\nThe parliamentary vote for a new president has been postponed 13 times and is now scheduled for Monday .\tDT JJ NN IN DT JJ NN VBZ VBN VBN CD NNS CC VBZ RB VBN IN NNP .\nLebanon has been without a president since November 23 , when the term of pro-Syrian President Emile Lahoud expired .\tNNP VBZ VBN IN DT NN IN NNP CD , WRB DT NN IN JJ NNP NNP NNP VBD .\nHuman Rights Watch has called for the investigation of Sudanese President Omar al-Bashir 's role in crimes against humanity committed in his country 's Darfur region .\tNNP NNP NNP VBZ VBN IN DT NN IN JJ NNP NNP NNP POS NN IN NNS IN NN VBN IN PRP$ NN POS NNP NN .\nIn a report , the group listed 20 other government , military , and Janjaweed militia members who should also be investigated .\tIN DT NN , DT NN VBN CD JJ NN , JJ , CC NNP NNP NNS WP MD RB VB VBN .\nThe report is being submitted to the prosecutor of the International Criminal Court which is scheduled to brief the United Nations Security Council Monday on the situation in Darfur .\tDT NN VBZ VBG VBN TO DT NN IN DT NNP NNP NNP WDT VBZ VBN TO VB DT NNP NNP NNP NNP NNP IN DT NN IN NNP .\nA Human Rights Watch official Peter Takirambudde , HRW Africa Director , says senior Sudanese officials must be held accountable for the ethnic cleansing in Darfur .\tDT NNP NNPS NNP NN NNP NNP , NNP NNP NNP , VBZ JJ JJ NNS MD VB VBN JJ IN DT JJ NN IN NNP .\nSince the war erupted in 2003 between rebels and government-backed militia , an estimated 1,80,000 people have died , and two million others have been displaced .\tIN DT NN VBD IN CD IN NNS CC JJ NN , DT JJ CD NNS VBP VBN , CC CD CD NNS VBP VBN VBN .\nIraq 's main Sunni Arab coalition has challenged partial vote results showing a strong lead for a Shi'ite coalition in last week 's parliamentary elections .\tNNP POS JJ NNP NNP NN VBZ VBN JJ NN NNS VBG DT JJ NN IN DT JJ NN IN JJ NN POS JJ NNS .\nLeaders for the Iraqi Consensus Front said the preliminary totals did not match those recorded by party monitors in Baghdad province , and warned they may call for a re-vote .\tNNS IN DT JJ NNP NNP VBD DT JJ NNS VBD RB VB DT VBN IN NN NNS IN NNP NN , CC VBD PRP MD VB IN DT JJ .\nInitial results show the Sunni coalition received 19 percent of the vote , and the Shi'ite-led United Iraqi Alliance took 59 percent in Baghdad .\tJJ NNS VBP DT NNP NN VBD CD NN IN DT NN , CC DT JJ NNP JJ NNP VBD CD NN IN NNP .\nFinal results are expected early next month .\tJJ NNS VBP VBN RB JJ NN .\nMeanwhile , U.S. Ambassador Zalmay Khalilzad expressed concern that results showed votes in other parts of Iraq were mostly divided along religious and ethnic lines .\tRB , NNP NNP NNP NNP VBD NN IN NNS VBD NNS IN JJ NNS IN NNP VBD RB VBN IN JJ CC JJ NNS .\nHe said Iraq 's future relies on cross-ethnic cooperation .\tPRP VBD NNP POS NN VBZ IN JJ NN .\nIn Washington , President Bush called Iraqi President Jalal Talabani and Prime Minister Ibrahim al-Jaafari Tuesday to congratulate them on the election .\tIN NNP , NNP NNP VBD JJ NNP NNP NNP CC NNP NNP NNP NNP NNP TO VB PRP IN DT NN .\nFirefighters in the western U.S. state of California are trying to contain more than 1,400 wildfires that have been burning for more than a week .\tNNS IN DT JJ NNP NN IN NNP VBP VBG TO VB JJR IN CD NNS WDT VBP VBN VBG IN JJR IN DT NN .\nState emergency officials say the fire is centered in the state 's northern region where 1,40,000 hectares have already burned .\tNN NN NNS VBP DT NN VBZ VBN IN DT NN POS JJ NN WRB CD NNS VBP RB VBN .\nOfficials say more than 50 properties have been destroyed , while another 7,000 homes remain under threat .\tNNS VBP JJR IN CD NNS VBP VBN VBN , IN DT CD NNS VBP IN NN .\nSo far no deaths have been reported , however , health officials have raised concerns over poor air quality .\tRB RB DT NNS VBP VBN VBN , RB , NN NNS VBP VBN NNS IN JJ NN NN .\nSome 1,800 people are working to contain the blaze with the help of at least 100 water-dropping helicopters .\tDT CD NNS VBP VBG TO VB DT NN IN DT NN IN IN JJS CD JJ NNS .\nOn Saturday , President Bush declared a state of emergency for California and ordered federal aid to assist in firefighting efforts .\tIN NNP , NNP NNP VBD DT NN IN NN IN NNP CC VBD JJ NN TO VB IN JJ NNS .\nCalifornia is frequently hit by wildfires due to its arid climate and hot , dry winds .\tNNP VBZ RB VBN IN NNS JJ TO PRP$ JJ NN CC JJ , JJ NNS .\nLast year , fires destroyed more than 2,00,000 hectares and some 2,000 homes in southern California .\tJJ NN , NNS VBD JJR IN CD NNS CC DT CD NNS IN JJ NNP .\nThree Palestinians have been killed and at least 14 others injured during an Israeli raid on a refugee camp in the Gaza Strip .\tCD NNS VBP VBN VBN CC IN JJS CD NNS VBN IN DT JJ NN IN DT NN NN IN DT NNP NNP .\nWitnesses say Israeli tanks opened fire as they entered the Khan Younis camp in southern Gaza early Friday , followed by bulldozers that razed several houses .\tNNS VBP JJ NNS VBD NN IN PRP VBD DT NNP NNP NN IN JJ NNP JJ NNP , VBN IN NNS WDT VBD JJ NNS .\nIsrael said the raid was intended to destroy launching points for mortar and rocket attacks into nearby Jewish settlements .\tNNP VBD DT NN VBD VBN TO VB NN NNS IN NN CC NN NNS IN JJ JJ NNS .\nAn Israeli helicopter fired missiles at a Gaza building Thursday in Rafah .\tDT JJ NN VBD NNS IN DT NNP NN NNP IN NNP .\nIsraeli military officials say the building housed a workshop used for weapons storage by the militant group Hamas .\tJJ JJ NNS VBP DT NN VBD DT NN VBN IN NNS NN IN DT JJ NN NNP .\nPalestinians from the area , however , say it was a carpentry shop .\tNNS IN DT NN , RB , VBP PRP VBD DT NN NN .\nThe latest violence comes amid an offer by Israeli Prime Minister Ariel Sharon to coordinate his Gaza troop withdrawal plan with a future Palestinian government .\tDT JJS NN VBZ IN DT NN IN JJ NNP NNP NNP NNP TO VB PRP$ NNP NN NN NN IN DT JJ JJ NN .\nVoters in Taiwan are heading to the polls for parliamentary elections .\tNNS IN NNP VBP VBG TO DT NNS IN JJ NNS .\nThe election could redefine Taiwan 's troubled relationship with mainland China .\tDT NN MD VB NNP POS JJ NN IN JJ NNP .\nAt stake in Saturday 's election is control of Taiwan 's 225-seat legislature .\tIN NN IN NNP POS NN VBZ NN IN NNP POS JJ NN .\nTaiwan and China split in 1949 after a civil war .\tNNP CC NNP VBD IN CD IN DT JJ NN .\nBeijing considers the island its territory and says Taiwanese moves toward independence would provoke a war .\tNNP VBZ DT NN PRP$ NN CC VBZ JJ NNS IN NN MD VB DT NN .\nThe election pits a pro-independence coalition , led by President Chen Shui-bian 's Democratic Progressive Party , against the Kuomintang and its allies , who favor improving relations with Beijing .\tDT NN VBZ DT JJ NN , VBN IN NNP NNP NNP POS JJ NNP NNP , IN DT NNP CC PRP$ NNS , WP VBP VBG NNS IN NNP .\nDPP Legislator Hsiao Bi-khim says the election is too close to call .\tNNP NNP NNP NNP VBZ DT NN VBZ RB JJ TO VB .\n' But President Chen is fairly confident that we can win at least close to a majority in this election , ' he says .\t`` CC NNP NNP VBZ RB JJ IN PRP MD VB IN JJS RB TO DT NN IN DT NN , `` PRP VBZ .\nPolls close at four p.m. and results are expected a few hours later .\tNNS RB IN CD NN CC NNS VBP VBN DT JJ NNS RB .\nThe U.S. military in Iraq says its warplanes have bombed a suspected al-Qaida safehouse in the western part of the country , near the Syrian border .\tDT NNP NN IN NNP VBZ PRP$ NNS VBP VBN DT JJ NNP NN IN DT JJ NN IN DT NN , IN DT JJ NN .\nThe air strike , early Thursday , specifically targeted what the military said was a ' known bombmaking cell leader , ' Abu Mohammad , who was also believed to have participated in tribal fighting in the area .\tDT NN NN , JJ NNP , RB VBN WP DT NN VBD VBD DT `` VBN VBG NN NN , `` NNP NNP , WP VBD RB VBN TO VB VBN IN JJ NN IN DT NN .\nIt was not clear if he was confirmed killed in the strike near the town of Husaybah .\tPRP VBD RB JJ IN PRP VBD VBN VBN IN DT NN IN DT NN IN NNP .\nIn other news , rescued American hostage Roy Hallums is reported in good health and is expected to return to the United States within days .\tIN JJ NN , VBD JJ NN NNP NNP VBZ VBN IN JJ NN CC VBZ VBN TO VB TO DT NNP NNPS IN NNS .\nThe U.S. military says within three hours of obtaining information on where he was being held from an Iraqi detainee they launched a successful mission Wednesday to free him .\tDT NNP NN VBZ IN CD NNS IN VBG NN IN WRB PRP VBD VBG VBN IN DT JJ NN PRP VBD DT JJ NN NNP TO VB PRP .\nPalestinian officials say Israeli forces operating in the Gaza Strip killed five Palestinians Monday .\tJJ NNS VBP JJ NNS VBG IN DT NNP NNP VBD CD NNS NNP .\nThe officials say two of the dead were from Hamas and two were from Palestinian President Mahmoud Abbas ' security guard .\tDT NNS VBP CD IN DT NN VBD IN NNP CC CD VBD IN JJ NNP NNP NNP POS NN NN .\nThey say the fifth victim was a civilian .\tPRP VBP DT JJ NN VBD DT JJ .\nIsraeli forces entered the Gaza City district on Saturday as part of an operation against militants .\tJJ NNS VBD DT NNP NNP NN IN NNP IN NN IN DT NN IN NNS .\nSince then , Israeli troops have killed several suspected militants and wounded several people , including two journalists .\tIN RB , JJ NNS VBP VBN JJ JJ NNS CC VBD JJ NNS , VBG CD NNS .\nIn a separate incident Monday , Hamas gunmen shot and killed a Palestinian motorist in southern Gaza when he refused to stop at a Hamas roadblock .\tIN DT JJ NN NNP , NNP NNS VBD CC VBD DT JJ NN IN JJ NNP WRB PRP VBD TO VB IN DT NNP NN .\nAbout 200 Afghans have demonstrated in Kabul against a death sentence given to an Afghan reporter accused of blasphemy .\tIN CD NNS VBP VBN IN NNP IN DT NN NN VBN TO DT JJ NN VBN IN JJ .\nThe protesters marched to the United Nations office in the capital Thursday , calling for the immediate release of Sayed Perwiz Kambakhsh .\tDT NNS VBD TO DT NNP NNP NN IN DT NN NNP , VBG IN DT JJ NN IN NNP NNP NNP .\nAn Afghan court sentenced the 23-year-old journalism student to death last week for defaming Islam .\tDT JJ NN VBD DT JJ NN NN TO NN JJ NN IN VBG NNP .\nHe was detained in late October , 2007 for distributing articles about the role of women in Muslim society .\tPRP VBD VBN IN JJ NNP , CD IN VBG NNS IN DT NN IN NNS IN NNP NN .\nThe case has attracted international attention with the United States and several human right groups expressing concern .\tDT NN VBZ VBN JJ NN IN DT NNP NNPS CC JJ JJ NN NNS VBG NN .\nThe Paris-based media rights group Reporters Without Borders Thursday said authorities should quickly reexamine the case .\tDT JJ NNS NNS NN VBZ IN NNS NNP VBD NNS MD RB VB DT NN .\nIt added that Kambakhsh and his family have been receiving death threats .\tPRP VBD IN NNP CC PRP$ NN VBP VBN VBG NN NNS .\nUnder Islamic law stipulated in Afghanistan 's constitution , blasphemy is punishable by death .\tIN NNP NN VBN IN NNP POS NN , NN VBZ JJ IN NN .\nBut Afghan President Hamid Karzai has to approve any death sentences before they are carried out .\tCC JJ NNP NNP NNP VBZ TO VB DT NN NNS IN PRP VBP VBN RP .\nBird flu experts from U.N. agencies are in Nigeria to assist in efforts to contain the lethal strain of the virus .\tNNP NN NNS IN NNP NNS VBP IN NNP TO VB IN NNS TO VB DT JJ NN IN DT NN .\nOfficials from the World Health Organization and Food and Agriculture Organization have joined local authorities to inform farmers and others about the potential risks .\tNNS IN DT NNP NNP NNP CC NNP CC NNP NNP VBP VBN JJ NNS TO VB NNS CC NNS IN DT JJ NNS .\nA highly pathogenic version of the H5N1 strain was recently discovered in birds on a farm in the northern state of Kaduna .\tDT RB JJ NN IN DT NNP NN VBD RB VBN IN NNS IN DT NN IN DT JJ NN IN NNP .\nThe case was the first of the lethal strain of bird flu reported on the African continent .\tDT NN VBD DT NN IN DT JJ NN IN NN NN VBN IN DT JJ NN .\nHealth officials are awaiting test results from two children in Kaduna who recently became sick to determine if they are Africa 's first human cases of bird flu .\tNNP NNS VBP VBG NN NNS IN CD NNS IN NNP WP RB VBD JJ TO VB IN PRP VBP NNP POS JJ JJ NNS IN NN NN .\nSomalia 's parliament has passed a no confidence motion against the prime minister and his cabinet , effectively dissolving the government .\tNNP POS NN VBZ VBN DT DT NN NN IN DT JJ NN CC PRP$ NN , RB VBG DT NN .\nLawmakers said Saturday Prime Minister Mohamed Ali Gedi failed to respect a power-sharing deal when he named a cabinet that was not equally divided between Somalia 's ethnic groups .\tNNS VBD NNP NNP NNP NNP NNP NNP VBD TO VB DT JJ NN WRB PRP VBD DT NN WDT VBD RB RB VBN IN NNP POS JJ NNS .\nThey also said the prime minister violated the constitution by failing to seek a vote of confidence from lawmakers .\tPRP RB VBD DT JJ NN VBD DT NN IN VBG TO VB DT NN IN NN IN NNS .\nSomali President Abdullahi Yusef Ahmed will now have to appoint another prime minister .\tJJ NNP NNP NNP NNP MD RB VB TO VB DT JJ NN .\nThe president was himself elected by the parliament in October .\tDT NN VBD PRP VBN IN DT NN IN NNP .\nHe has promised to restore stability to Somalia , wracked by clan violence and lawlessness following the overthrow of the government 13 years ago .\tPRP VBZ VBN TO VB NN TO NNP , VBN IN JJ NN CC NN VBG DT NN IN DT NN CD NNS RB .\nSomalia 's parliament has been meeting in the Kenyan capital , Nairobi , due to security concerns at home .\tNNP POS NN VBZ VBN VBG IN DT JJ NN , NNP , JJ TO NN NNS IN NN .\nThe number of confirmed dead in Somalia from South Asia 's earthquake generated tsunami has risen to at least 142 people .\tDT NN IN VBN NN IN NNP IN NNP NNP POS NN VBD NN VBZ VBN TO IN JJS CD NNS .\nA spokesman for the Somali government , Yusuf Ismail Baribari , says relief agencies are rushing aid to communities along the northeastern shoreline .\tDT NN IN DT JJ NN , NNP NNP NNP , VBZ NN NNS VBP VBG NN TO NNS IN DT JJ NN .\nThe worst hit area is the Somali island of Hafun .\tDT JJS NN NN VBZ DT JJ NN IN NNP .\nMost of the dead are believed to be fishermen who were in boats when huge waves struck the coastline on December 26 .\tJJS IN DT NN VBP VBN TO VB NNS WP VBD IN NNS WRB JJ NNS VBD DT NN IN NNP CD .\nThe Somali government says thousands in the region need immediate aid .\tDT JJ NN VBZ NNS IN DT NN VBP JJ NN .\nThere are reports of acute diarrhea and concerns that outbreaks of cholera will follow .\tEX VBP NNS IN JJ NN CC NNS IN NNS IN NN MD VB .\nThe tsunami also took lives in Tanzania , Seychelles and Kenya .\tDT NN RB VBD NNS IN NNP , NNP CC NNP .\nNATO officials say a rocket attack in southern Afghanistan has killed a coalition soldier involved in the ongoing fight against the resurgent Taleban .\tNNP NNS VBP DT NN NN IN JJ NNP VBZ VBN DT NN NN VBN IN DT JJ NN IN DT JJ NNP .\nOfficials say the rocket struck a military vehicle Tuesday , in Kandahar province .\tNNS VBP DT NN VBD DT JJ NN NNP , IN NNP NN .\nThere is no word on the NATO soldier 's nationality .\tEX VBZ DT NN IN DT NNP NN POS NN .\nSeparately , Afghan officials say Taleban militants attacked a police checkpoint in the eastern province of Khost late Monday .\tRB , JJ NNS VBP NNP NNS VBD DT NN NN IN DT JJ NN IN NNP JJ NNP .\nTwo militants and a police officer were killed .\tCD NNS CC DT NN NN VBD VBN .\nNATO-led military forces are fighting alongside Afghan troops in their effort to repel Taleban insurgents fighting against the U.S.-backed Kabul government .\tJJ NN NNS VBP VBG IN JJ NNS IN PRP$ NN TO VB NNP NNS VBG IN DT JJ NNP NN .\nAttacks by the Taleban , including an increasing number of suicide bombings , have surged this year .\tNNS IN DT NNP , VBG DT VBG NN IN NN NNS , VBP VBN DT NN .\nThe extremist group was forced from power almost five years ago in an offensive led by the United States .\tDT NN NN VBD VBN IN NN RB CD NNS RB IN DT NN VBN IN DT NNP NNPS .\nMillions of Americans could lose their homes this year and in 2009 as foreclosures across the United States are occurring at the highest rate in decades .\tNNS IN NNS MD VB PRP$ NNS DT NN CC IN CD IN NNS IN DT NNP NNPS VBP VBG IN DT JJS NN IN NNS .\nAt the beginning of the year , the number of homes facing foreclosure jumped more than 57 percent compared to a year ago .\tIN DT NN IN DT NN , DT NN IN NNS VBG NN VBD JJR IN CD NN VBN TO DT NN RB .\nThe foreclosure crisis is worsening despite ongoing efforts by some lenders and the federal government to help borrowers manage the mortgage payments on their homes .\tDT NN NN VBZ VBG IN JJ NNS IN DT NNS CC DT JJ NN TO VB NNS VB DT NN NNS IN PRP$ NNS .\nVOA 's Chris Simkins reports on how one organization is helping people save their homes .\tNNP POS NNP NNPS VBZ IN WRB CD NN VBZ VBG NNS VB PRP$ NNS .\nA previously-unknown group in Iraq has claimed responsibility for last week 's bomb attack on a Shi'ite funeral that killed at least 50 people and wounded 80 others .\tDT JJ NN IN NNP VBZ VBN NN IN JJ NN POS NN NN IN DT NNP NN WDT VBD IN JJS CD NNS CC VBD CD NNS .\nIn an internet statement Sunday , the group said it carried out the attack to demonstrate opposition to Shi'ites who are set to take control of Iraq 's new government this week .\tIN DT NN NN NNP , DT NN VBD PRP VBD IN DT NN TO VB NN TO NNS WP VBP VBN TO VB NN IN NNP POS JJ NN DT NN .\nSeparately , U.S. officials say two American civilian security contractors have been killed and a third wounded in a roadside bomb blast south of Baghdad .\tRB , NNP NNS VBP CD JJ JJ NN NNS VBP VBN VBN CC DT JJ VBN IN DT NN NN NN NN IN NNP .\nMeanwhile , Kurdish negotiators say they are nearing a deal with the dominant Shi'ite alliance on forming a coalition government .\tRB , NNP NNS VBP PRP VBP VBG DT NN IN DT JJ NNP NN IN VBG DT NN NN .\nKurdish negotiator Fuad Masoum said the talks will resume Monday in Baghdad - two days before the Iraqi National Assembly convenes for the first time since January elections .\tJJ NN NNP NNP VBD DT NNS MD VB NNP IN NNP IN CD NNS IN DT JJ NNP NNP VBZ IN DT JJ NN IN NNP NNS .\nA leading figure in Latin jazz music , Ray Barretto , has died .\tDT VBG NN IN JJ NN NN , NNP NNP , VBZ VBN .\nThe Grammy-winning percussionist , known as ' Hard Hands ' for his work on the conga drums , died Friday in the northeastern U.S. state of New Jersey .\tDT JJ NN , VBN IN `` NNP NNPS `` IN PRP$ NN IN DT NN NNS , VBD NNP IN DT JJ NNP NN IN NNP NNP .\nHe was 76 .\tPRP VBD CD .\nHis family did not give a cause of death , but he underwent heart bypass surgery earlier this year .\tPRP$ NN VBD RB VB DT NN IN NN , CC PRP VBD NN NN NN RBR DT NN .\nBarretto was raised in the United States by Puerto Rican immigrants .\tNNP VBD VBN IN DT NNP NNPS IN NNP JJ NNS .\nIn a career that spanned more than four decades , Barretto played with such jazz greats as Dizzy Gillespie and Tito Puente .\tIN DT NN WDT VBD JJR IN CD NNS , NNP VBD IN JJ NN NNS IN JJ NNP CC NNP NNP .\nHe won a Grammy with Cuban salsa singer Celia Cruz in 1990 , for a single called Rhythm in the Heart .\tPRP VBD DT NN IN JJ NN NN NNP NNP IN CD , IN DT JJ VBN NN IN DT NNP .\nHis latest album , Time Was - Time Is , was nominated for a Grammy this year for Best Latin Jazz Album .\tPRP$ JJS NN , NNP NNP NNP NNP NNP , VBD VBN IN DT NNP DT NN IN NNP NNP NNP NNP .\nTaiwan has withdrawn permits allowing journalists from China 's official Xinhua news agency and People 's Daily newspaper to report from Taipei .\tNNP VBZ VBN NNS VBG NNS IN NNP POS JJ NNP NN NN CC NNS POS JJ NN TO VB IN NNP .\nJoseph Wu , chairman of Taiwan 's Mainland Affairs Council , said Sunday the decision was part of an overall review of exchanges with China , which regards Taiwan as a breakaway province .\tNNP NNP , NN IN NNP POS NNP NNP NNP , VBD NNP DT NN VBD NN IN DT JJ NN IN NNS IN NNP , WDT VBZ NNP IN DT NN NN .\nTaiwan President Chen Shui-bian 's government announced its intention to conduct such a policy review after Beijing adopted a new anti-secession law approving the use of force against Taiwan if the island declares independence .\tNNP NNP NNP NNP POS NN VBD PRP$ NN TO VB JJ DT NN NN IN NNP VBD DT JJ JJ NN VBG DT NN IN NN IN NNP IN DT NN VBZ NN .\nAll journalists from the mainland had been barred from Taipei for more than five decades until late 2000 , when Taiwan issued a limited number of permits to Chinese reporters .\tDT NNS IN DT NN VBD VBN VBN IN NNP IN JJR IN CD NNS IN JJ CD , WRB NNP VBD DT JJ NN IN NNS TO JJ NNS .\nHaiti hosts a donors conference Tuesday , hoping to secure at least $ 5 billion in pledges to help the impoverished Caribbean nation jump start its economy and make vital repairs to infrastructure .\tNNP VBZ DT NNS NN NNP , VBG TO VB IN JJS $ CD CD IN NNS TO VB DT JJ JJ NN NN VB PRP$ NN CC VB JJ NNS TO NN .\nDelegates at the conference will include representatives from the United States , European Union , and the Inter-American Development Bank .\tNNS IN DT NN MD VB NNS IN DT NNP NNPS , NNP NNP , CC DT NNP NNP NNP .\nHaitian leaders say building roads , revitalizing agriculture , and boosting education and health care services are their priority .\tJJ NNS VBP VBG NNS , VBG NN , CC VBG NN CC NN NN NNS VBP PRP$ NN .\nHaiti 's economic problems continue and living standards remain low more than two years after a rebellion that overthrew President Jean-Bertrand Aristide .\tNNP POS JJ NNS VBP CC VBG NNS VBP JJ JJR IN CD NNS IN DT NN WDT VBD NNP NNP NNP .\nVenezuela 's foreign ministry has rejected Colombian charges that Venezuelan President Hugh Chavez is linked to the rebel group , FARC .\tNNP POS JJ NN VBZ VBN JJ NNS IN JJ NNP NNP NNP VBZ VBN TO DT NN NN , NNP .\nVenezuelan Foreign Minister Nicolas Maduro also said he does not recognize documents Colombia says prove the charges .\tJJ NNP NNP NNP NNP RB VBD PRP VBZ RB VB NNS NNP VBZ VB DT NNS .\nHe called the documents inconsistent and incomprehensible .\tPRP VBD DT NNS JJ CC JJ .\nBut Colombian authorities say the documents show that Mr. Chavez planned to give FARC rebels $ 300 million .\tCC JJ NNS VBP DT NNS VBP IN NNP NNP VBD TO VB NNP NNS $ CD CD .\nThey say the documents were found in the computer of FARC leader Raul Reyes during a cross-border raid in Ecuador last month .\tPRP VBP DT NNS VBD VBN IN DT NN IN NNP NN NNP NNP IN DT JJ NN IN NNP JJ NN .\nReyes was killed in that raid .\tNNP VBD VBN IN DT NN .\nVenezuela and Ecuador responded to the raid by taking diplomatic action against Colombia and sending troops to the border with Colombia .\tNNP CC NNP VBD TO DT NN IN VBG JJ NN IN NNP CC VBG NNS TO DT NN IN NNP .\nThe leaders of all three countries have since said they have settled the crisis .\tDT NNS IN DT CD NNS VBP IN VBN PRP VBP VBN DT NN .\nColombia apologized for the raid but called it a necessary part of the struggle against the FARC .\tNNP VBD IN DT NN CC VBD PRP DT JJ NN IN DT NN IN DT NNP .\nA suicide car bomb exploded in southern Iraq Sunday outside an apartment building used by a Shi'ite militia , killing at least one person and wounding several others .\tDT NN NN NN VBD IN JJ NNP NNP IN DT NN NN VBN IN DT NNP NN , VBG IN JJS CD NN CC VBG JJ NNS .\nThe attack in Basra , Iraq 's second city , apparently was aimed at the Iranian-backed Badr Brigade militia .\tDT NN IN NNP , NNP POS JJ NN , RB VBD VBN IN DT JJ NNP NNP NN .\nNews reports say Basra 's former governor Hassan al-Rashid , a senior militia leader , escaped unharmed .\tNNP NNS VBP NNP POS JJ NN NNP NNP , DT JJ NN NN , VBD JJ .\nBasra has been hit by several recent bombings ahead of next Saturday 's ( October 15 ) vote on a new national constitution .\tNNP VBZ VBN VBN IN JJ JJ NNS RB IN JJ NNP POS LRB NNP CD RRB NN IN DT JJ JJ NN .\nAuthorities in Baghdad say security will heightened nationwide for the referendum , with curfews and a ban on car travel in many areas .\tNNS IN NNP VBP NN MD VBN NN IN DT NN , IN NNS CC DT NN IN NN NN IN JJ NNS .\nIraq 's borders will be closed to deter infiltration by insurgents , and coalition forces will protect polling places .\tNNP POS NNS MD VB VBN TO VB NN IN NNS , CC NN NNS MD VB VBG NNS .\nWildlife workers in New Zealand have shot dozens of whales that beached on the country 's South Island .\tNN NNS IN NNP NNP VBP VBN NNS IN NNS WDT VBD IN DT NN POS NNP NNP .\nOfficials say a rescue operation had become too dangerous .\tNNS VBP DT NN NN VBD VBN RB JJ .\nForty-nine pilot whales came ashore since Saturday in a remote region known as Farewell Spit .\tCD NN NNS VBD RB IN NNP IN DT JJ NN VBN IN NNP NNP .\nEight of them died on the beaches .\tCD IN PRP VBD IN DT NNS .\nThe remaining 41 whales were spread over a wide area , more than a kilometer from the shore .\tDT VBG CD NNS VBD VBN IN DT JJ NN , JJR IN DT NN IN DT NN .\nA New Zealand conservation official said it was hopeless to try refloating the whales because of rough seas .\tDT NNP NNP NN NN VBD PRP VBD JJ TO VB VBG DT NNS IN IN JJ NNS .\nHe said wildlife officers shot the whales to prevent them from suffering a long and painful death .\tPRP VBD NN NNS VBD DT NNS TO VB PRP IN VBG DT JJ CC JJ NN .\nIt was the second major stranding of whales in the area in recent weeks .\tPRP VBD DT JJ JJ NN IN NNS IN DT NN IN JJ NNS .\nVolunteers managed to refloat more than 100 whales that beached in the earlier incident .\tNNS VBD TO VB JJR IN CD NNS WDT VBD IN DT JJR NN .\nAuthorities in Saudi Arabia say a fourth French national has died of wounds suffered in an attack in northwestern Saudi Arabia .\tNNS IN NNP NNP VBP DT JJ JJ NN VBZ VBN IN NNS VBN IN DT NN IN JJ NNP NNP .\nOfficials say a teenager died in a hospital Tuesday of wounds sustained when gunmen shot at a group of nine French nationals who had stopped along a road on Monday .\tNNS VBP DT NN VBD IN DT NN NNP IN NNS VBN WRB NNS VBD IN DT NN IN CD JJ NNS WP VBD VBN IN DT NN IN NNP .\nThree had died shortly after the attack .\tCD VBD VBN RB IN DT NN .\nA Saudi spokesman said the French nationals were residents of the Saudi kingdom who had been visiting historic sites .\tDT NNP NN VBD DT JJ NNS VBD NNS IN DT NNP NN WP VBD VBN VBG JJ NNS .\nSaudi Arabia has been battling al-Qaida militants in the kingdom , and the terrorist group has targeted Westerners in the past .\tNNP NNP VBZ VBN VBG NNP NNS IN DT NN , CC DT JJ NN VBZ VBN NNS IN DT NN .\nA four-day-long public holiday began in Iraq Thursday , ahead of Saturday 's referendum on a new constitution .\tDT JJ JJ NN VBD IN NNP NNP , RB IN NNP POS NN IN DT JJ NN .\nNew checkpoints and concrete security barriers began appearing near polling stations , and a nighttime curfew was to go into effect .\tJJ NNS CC JJ NN NNS VBD VBG IN VBG NNS , CC DT JJ NN VBD TO VB IN NN .\nFriday , Iraq will close its borders and vehicles will be banned .\tNNP , NNP MD VB PRP$ NNS CC NNS MD VB VBN .\nIn pre-election violence , two policemen were killed in the northern city of Kirkuk , and roadside bombs in Mosul and Tikrit killed two civilians and an American soldier .\tIN JJ NN , CD NNS VBD VBN IN DT JJ NN IN NNP , CC NN NNS IN NNP CC NNP VBD CD NNS CC DT JJ NN .\nAbout 15.5 million Iraqis are eligible to vote .\tIN CD CD NNS VBP JJ TO VB .\nToday , detainees who have not been convicted of a crime , as well as hospital patients , were authorized to began casting their ballots early .\tNN , NNS WP VBP RB VBN VBN IN DT NN , RB RB IN NN NNS , VBD VBN TO VBD VBG PRP$ NNS RB .\nLate Wednesday , parliament approved a deal designed to win support from Sunni Arabs , who have generally been against the constitution .\tRB NNP , NN VBD DT NN VBN TO VB NN IN NNP NNS , WP VBP RB VBN IN DT NN .\nBut many Sunni groups say they will still vote ' no . '\tCC JJ NNP NNS VBP PRP MD RB VB `` DT . ``\nPeople around the world are celebrating the Christmas holiday Sunday , in both religious and secular settings .\tNNS IN DT NN VBP VBG DT NNP NN NNP , IN DT JJ CC JJ NNS .\nChristians celebrate the holiday as the birth date of Jesus Christ .\tNNPS VBP DT NN IN DT NN NN IN NNP NNP .\nThey attend church , light ceremonial candles , and sing hymns to commemorate God 's coming to Earth in the form of a man .\tPRP VBP NN , VBP JJ NNS , CC VBP NNS TO VB NNP POS VBG TO NNP IN DT NN IN DT NN .\nChristmas is also celebrated as a secular , gift-giving holiday , making December one of the most lucrative times of the year for many Western retail stores .\tNNP VBZ RB VBN IN DT NN , JJ NN , VBG NNP CD IN DT RBS JJ NNS IN DT NN IN JJ JJ JJ NNS .\nPresident Bush Saturday made phone calls to several members of the U.S. military to wish them happy holidays .\tNNP NNP NNP VBD NN NNS TO JJ NNS IN DT NNP NN TO VB PRP JJ NNS .\nOn Christmas Eve , children anticipate the coming of Santa Claus , a mythical figure who flies around the world overnight to deliver presents to good children .\tIN NNP NNP , NNS VBP DT VBG IN NNP NNP , DT JJ NN WP VBZ IN DT NN JJ TO VB NNS TO JJ NNS .\nThe North American Aerospace Defense Command , which guards against security threats in U.S. and Canadian airspace , provides updates on what it says is Santa 's progress across the globe .\tDT NNP NNP NNP NNP NNP , WDT VBZ IN NN NNS IN NNP CC JJ NN , VBZ NNS IN WP PRP VBZ VBZ NNP POS NN IN DT NN .\nThe United Nations mediator for Kosovo , Martti Ahtisaari , has met with top officials in Belgrade for talks on the future of the Serbian province .\tDT NNP NNP NN IN NNP , NNP NNP , VBZ VBN IN JJ NNS IN NNP IN NNS IN DT NN IN DT JJ NN .\nThe discussions with Serbian Prime Minister Vojislav Kostunica Tuesday come one week after the first round of international talks on the future of Kosovo .\tDT NNS IN JJ NNP NNP NNP NNP NNP VBD CD NN IN DT JJ NN IN JJ NNS IN DT NN IN NNP .\nThe U.N.-sponsored talks in Vienna are set to resume March 17 in an effort to set the guidelines for negotiations on resolving the status of the province .\tDT JJ NNS IN NNP VBP VBN TO VB NNP CD IN DT NN TO VB DT NNS IN NNS IN VBG DT NN IN DT NN .\nMeanwhile , the top U.N. official in Kosovo , Soren Jessen-Petersen , expressed confidence that the talks will lead to a resolution by the end of the year .\tRB , DT JJ NNP NN IN NNP , NNP NNP , VBD NN IN DT NNS MD VB TO DT NN IN DT NN IN DT NN .\nHe also said he met NATO officials in Brussels who have promised to ensure security for the ethnic Serbian minority in Kosovo throughout status talks .\tPRP RB VBD PRP VBD NNP NNS IN NNP WP VBP VBN TO VB NN IN DT JJ JJ NN IN NNP IN NN NNS .\nThe region 's ethnic Albanian majority is pressing for independence from Serbia -- a demand Serbs strongly oppose .\tDT NN POS JJ JJ NN VBZ VBG IN NN IN NNP IN DT NN NNS RB VBP .\nFinance ministers are considering how to start winding down trillions of dollars in government stimulus funds that have saved the world 's economies from collapse .\tNN NNS VBP VBG WRB TO VB VBG RP NNS IN NNS IN NN NN NNS WDT VBP VBN DT NN POS NNS IN NN .\nEconomic officials from the Group of 20 industrialized nations are meeting in London Friday and Saturday to discuss this and other issues ahead of the G-20 summit in the United States later this month .\tJJ NNS IN DT NNP IN CD JJ NNS VBP VBG IN NNP NNP CC NNP TO VB DT CC JJ NNS RB IN DT NNP NN IN DT NNP NNPS RBR DT NN .\nG-20 governments are calling for a coordinated exit from the emergency stimulus measures .\tJJ NNS VBP VBG IN DT JJ NN IN DT NN NN NNS .\nFinance ministers in London this week also are expected to support actions to reduce bonuses paid to bankers .\tNNP NNS IN NNP DT NN RB VBP VBN TO VB NNS TO VB NNS VBN TO NNS .\nSwedish Finance Minister Anders Borg said Wednesday the ' bonus culture must come to an end . '\tJJ NN NN NNP NNP VBD NNP DT `` NN NN MD VB TO DT NN . ``\nCritics say these bonuses encourage risky bets that hurt companies and the economy and were a key reason the economic crisis grew so bad so quickly .\tNNS VBP DT NNS VBP JJ NNS WDT VBP NNS CC DT NN CC VBD DT JJ NN DT JJ NN VBD RB JJ RB RB .\nIndian Prime Minister Manmohan Singh has reviewed the security situation in Indian Kashmir on the second and final day of his visit to the disputed territory .\tJJ NNP NNP NNP NNP VBZ VBN DT NN NN IN JJ NNP IN DT JJ CC JJ NN IN PRP$ NN TO DT JJ NN .\nOfficials say top security commanders briefed Mr. Singh Thursday in Jammu , the winter capital of Indian Kashmir .\tNNS VBP JJ NN NNS VBD NNP NNP NNP IN NNP , DT NN NN IN JJ NNP .\nThey say the commanders told him that infiltration of militants from neighboring Pakistan has gone down sharply in the past year .\tPRP VBP DT NNS VBD PRP IN NN IN NNS IN VBG NNP VBZ VBN RB RB IN DT JJ NN .\nMuslim militants opposed to Indian rule have staged an insurgency in Kashmir for the past 15 years .\tNNP NNS VBN TO JJ NN VBP VBN DT NN IN NNP IN DT JJ CD NNS .\nOn Wednesday , Mr. Singh said he is ready to meet with anyone who wants to end violence in Kashmir .\tIN NNP , NNP NNP VBD PRP VBZ JJ TO VB IN DT WP VBZ TO VB NN IN NNP .\nBut he said he will not accept any Pakistani proposal that involves redrawing the line of control that separates Indian- from Pakistani-controlled Kashmir .\tCC PRP VBD PRP MD RB VB DT JJ NN WDT VBZ VBG DT NN IN NN IN VBZ NNP IN JJ NNP .\nThe two South Asian neighbors each claim the entire territory .\tDT CD JJ JJ NNS DT NN DT JJ NN .\nIndia withdrew 1,000 troops from Kashmir Wednesday , with more expected to follow .\tNNP VBD CD NNS IN NNP NNP , IN RBR VBN TO VB .\nPakistan called the move a positive step .\tNNP VBD DT NN DT JJ NN .\nA U.N. aid official in Gaza says dozens of masked gunmen have attacked a U.N. summer camp .\tDT NNP NN NN IN NNP VBZ NNS IN VBN NNS VBP VBN DT NNP NN NN .\nA U.N. spokesman said the attackers assaulted a guard , burned tents and vandalized bathrooms Sunday at the camp in eastern Gaza .\tDT NNP NN VBD DT NNS VBD DT NN , VBN NNS CC VBN NNS NNP IN DT NN IN JJ NNP .\nThe armed men also left behind a note pierced with several bullets , threatening to kill the U.N. Relief and Works Agency director , John Ging .\tDT JJ NNS RB VBD IN DT NN VBN IN JJ NNS , VBG TO VB DT NNP NNP CC NNP NNP NN , NNP NNP .\nThe summer camp offers arts , sports and other activities to some 2,50,000 Gaza children .\tDT NN NN VBZ NNS , NNS CC JJ NNS TO DT CD NNP NNS .\nThere were no claim of responsibility for the attack .\tEX VBD DT NN IN NN IN DT NN .\nSome extremist Islamic groups in Gaza oppose the camps .\tDT NN JJ NNS IN NNP VBP DT NNS .\nGaza 's Hamas police are investigating the incident .\tNNP POS NNP NN VBP VBG DT NN .\nU.S. consumer spending surged in January , far more than economists had expected .\tNNP NN NN VBD IN NNP , RB JJR IN NNS VBD VBN .\nA report from the Commerce Department Tuesday showed spending up 2.3 percent , the strongest gain in more than a year , and more than double what analysts expected .\tDT NN IN DT NNP NNP NNP VBD VBG RP CD NN , DT JJS NN IN JJR IN DT NN , CC JJR IN RB WP NNS VBD .\nExperts watch consumer spending closely because consumer demand drives about two-thirds of the U.S. economy , which is the world 's biggest .\tNNS VBP NN NN RB IN NN NN VBZ IN NNS IN DT NNP NN , WDT VBZ DT NN POS JJS .\nAnalysts predict the spending surge will encourage the U.S. central bank to continue its campaign of gradually raising interest rates to fend off inflation .\tNNS VBP DT NN NN MD VB DT NNP JJ NN TO VB PRP$ NN IN RB VBG NN NNS TO VB RP NN .\nWe will get another picture of the U.S. economy on Wednesday when the Federal Reserve 's new Chairman , Ben Bernanke , is scheduled to deliver a report to Congress .\tPRP MD VB DT NN IN DT NNP NN IN NNP WRB DT NNP NNP POS JJ NNP , NNP NNP , VBZ VBN TO VB DT NN TO NNP .\nAn Islamist Web site Monday says al-Qaida leader Osama bin Laden soon will release a new message aimed at Europeans .\tDT NNP NNP NN NNP VBZ NNP NN NNP NNP NNP RB MD VB DT JJ NN VBN IN NNS .\nThe Web site attributes the statement to al-Qaida 's media unit As-Sahab .\tDT NNP NN VBZ DT NN TO NNP POS NNS NN NNP .\nIt is not clear if the message will be an audio or video statement or when it will be released .\tPRP VBZ RB JJ IN DT NN MD VB DT NN CC NN NN CC WRB PRP MD VB VBN .\nBin Laden released an audio taped message last month .\tNNP NNP VBD DT NN VBN NN JJ NN .\nHe called on insurgents in Iraq to unite and said militants must overcome rivalries and beware of sectarian divisions .\tPRP VBD IN NNS IN NNP TO VB CC VBD NNS MD VB NNS CC NN IN JJ NNS .\nIn September , bin Laden appeared on video for the first time in nearly three years .\tIN NNP , NNP NNP VBD IN NN IN DT JJ NN IN RB CD NNS .\nThat message coincided with the sixth anniversary of the September 11 , 2001 , terrorist attacks on the United States .\tDT NN VBD IN DT JJ NN IN DT NNP CD , CD , JJ NNS IN DT NNP NNPS .\nBin Laden and his deputy , Ayman al-Zawahiri , are believed to be hiding in the border area between Afghanistan and Pakistan .\tNNP NNP CC PRP$ NN , NNP NNP , VBP VBN TO VB VBG IN DT NN NN IN NNP CC NNP .\nThe United States has offered a $ 25-million reward for the capture of each man .\tDT NNP NNP VBZ VBN DT $ JJ NN IN DT NN IN DT NN .\nTaiwan President Chen Shui-bian says information provided by Taipei helped Japan locate a Chinese nuclear submarine in Japanese waters last week .\tNNP NNP NNP NNP VBZ NN VBN IN NNP VBD NNP VB DT JJ JJ NN IN JJ NNS JJ NN .\nMr. Chen said Friday that Taiwan provided intelligence to Japan and the United States , alerting them to the intrusion .\tNNP NNP VBD NNP IN NNP VBD NN TO NNP CC DT NNP NNPS , VBG PRP TO DT NN .\nHe emphasized the threat from China , and the common interests among Japan , the United States and Taiwan in maintaining peace and stability in the Asia-Pacific region .\tPRP VBD DT NN IN NNP , CC DT JJ NNS IN NNP , DT NNP NNPS CC NNP IN VBG NN CC NN IN DT JJ NN .\nLast week , Tokyo demanded an apology from Beijing after the intrusion into its southern waters , which set off a two-day high-seas chase .\tJJ NN , NNP VBD DT NN IN NNP IN DT NN IN PRP$ JJ NNS , WDT VBD RP DT JJ JJ NN .\nBeijing initially refused to accept the protest or make an apology , saying it was still investigating the matter .\tNNP RB VBD TO VB DT NN CC VB DT NN , VBG PRP VBD RB VBG DT NN .\nBut earlier this week China expressed regret for the intrusion .\tCC RBR DT NN NNP VBD NN IN DT NN .\nGerman Chancellor Gerhard Schroeder says his Social Democratic Party will probably form a so-called ' Grand Coalition ' with the main opposition Christian Democratic Union , after this month 's general election failed to produce a clear winner .\tJJ NNP NNP NNP VBZ PRP$ NNP NNP NNP MD RB VB DT JJ `` NNP NNP `` IN DT JJ NN NNP NNP NNP , IN DT NN POS JJ NN VBD TO VB DT JJ NN .\nMr. Schroeder spoke Tuesday at a forum on Europrean integration in Strasbourg , France .\tNNP NNP VBD NNP IN DT NN IN JJ NN IN NNP , NNP .\nHe said he expects a stable government to emerge from exploratory talks between the two parties , but did not say what role , if any , he would hold in such a coalition .\tPRP VBD PRP VBZ DT JJ NN TO VB IN JJ NNS IN DT CD NNS , CC VBD RB VB WP NN , IN DT , PRP MD VB IN PDT DT NN .\nThe Social Democrats and their Greens Party coalition partner lost their majority in the September 18 vote .\tDT NNP NNPS CC PRP$ NNP NNP NN NN VBD PRP$ NN IN DT NNP CD NN .\nThe Christian Democrats , led by Angela Merkel , and their likely coalition partner , the liberal Free Democrats , also fell short of a majority .\tDT NNP NNPS , VBN IN NNP NNP , CC PRP$ JJ NN NN , DT JJ NNP NNPS , RB VBD RB IN DT NN .\nSeparately , the Greens elected Agriculture Minister Renate Kuenast and former party co-leader Fritz Kuhn to lead their parliamentary faction .\tRB , DT NNP VBD NNP NNP NNP NNP CC JJ NN NN NNP NNP TO VB PRP$ JJ NN .\nRussian authorities and witnesses say a suspected bomb exploded Sunday in a McDonald 's restaurant on St. Petersburg 's main street , injuring six people .\tJJ NNS CC NNS VBP DT JJ NN VBD NNP IN DT NNP POS NN IN NNP NNP POS JJ NN , VBG CD NNS .\nThe blast shattered windows and caused part of the restaurant 's ceiling to cave in .\tDT NN VBD NNS CC VBD NN IN DT NN POS NN TO VB IN .\nNone of the injuries are said to be serious .\tNN IN DT NNS VBP VBN TO VB JJ .\nThe blast occurred along Nevsky Prospekt .\tDT NN VBD IN NNP NNP .\nPolice closed down part of St. Petersburg 's main street while they carried it their investigation .\tNNS VBD RB NN IN NNP NNP POS JJ NN IN PRP VBD PRP PRP$ NN .\nA car bombing of a Moscow McDonald 's by Muslim extremists in 2002 killed one person and wounded seven .\tDT NN NN IN DT NNP NNP POS IN NNP NNS IN CD VBD CD NN CC VBD CD .\nThe armed Basque separatist group , ETA , says it is willing to take part in peace talks with the Spanish government .\tDT JJ NNP NN NN , NNP , VBZ PRP VBZ JJ TO VB NN IN NN NNS IN DT JJ NN .\nBut Sunday 's statement did not mention whether it will lay down arms as demanded by the government as a precondition for any talks .\tCC NNP POS NN VBD RB VB IN PRP MD VB RP NNS IN VBN IN DT NN IN DT NN IN DT NNS .\nThe outlawed group 's statement backed the recent peace initiative its political wing , Batasuna , presented to the Spanish parliament that would virtually grant independence to the country 's northern Basque region .\tDT JJ NN POS NN VBD DT JJ NN NN PRP$ JJ NN , NNP , VBD TO DT JJ NN WDT MD RB VB NN TO DT NN POS JJ JJ NN .\nOpponents say the plan would open the way for secession by other areas of Spain .\tNNS VBP DT NN MD VB DT NN IN NN IN JJ NNS IN NNP .\nIn ETA 's statement today it claimed responsibility for a series of attacks in recent months , but the it denied involvement in last month 's bomb hoax at Real Madrid 's soccer stadium .\tIN NNP POS NN NN PRP VBD NN IN DT NN IN NNS IN JJ NNS , CC DT PRP VBD NN IN JJ NN POS NN NN IN NNP NNP POS NN NN .\nETA has been blamed for more than 800 deaths in its more than 30 year campaign for an independent Basque homeland .\tNNP VBZ VBN VBN IN JJR IN CD NNS IN PRP$ JJR IN CD NN NN IN DT JJ NN NN .\nChina 's agriculture minister is warning of a possible massive bird flu outbreak as the country announced two new human cases of the deadly H5N1 flu strain .\tNNP POS NN NN VBZ VBG IN DT JJ JJ NN NN NN IN DT NN VBD CD JJ JJ NNS IN DT JJ NNP NN NN .\nChina 's state-owned media report Agriculture Minister Du Qinglin said authorities must be on ' high alert ' and step up efforts to control the disease .\tNNP POS JJ NNS NN NNP NNP NNP NNP VBD NNS MD VB IN `` JJ NN `` CC VB RP NNS TO VB DT NN .\nHe says China culled 22.5 million birds last year to stem the spread of the virus .\tPRP VBZ NNP VBD CD CD NNS JJ NN TO VB DT NN IN DT NN .\nCiting a Health Ministry statement , the Xinhua news agency said Saturday a nine-year-old girl from Zhejiang province and a 26-year-old woman from Anhui province tested positive for the H5N1 virus , and are in critical condition .\tVBG DT NNP NNP NN , DT NNP NN NN VBD NNP DT JJ NN IN NNP NN CC DT JJ NN IN NNP NN VBD JJ IN DT NNP NN , CC VBP IN JJ NN .\nIn France , President Jacques Chirac is urging people not to panic after confirmation of the deadly strain of bird flu at a turkey farm near Lyon .\tIN NNP , NNP NNP NNP VBZ VBG NNS RB TO VB IN NN IN DT JJ NN IN NN NN IN DT NN NN IN NNP .\nAn official of the country 's agricultural union , Christine Lambert , expressed concern the development will hurt French exports .\tDT NN IN DT NN POS JJ NN , NNP NNP , VBD NN DT NN MD VB JJ NNS .\nHundreds of Nigerians crippled by polio have staged a rally in the northern city of Kano to urge parents to vaccinate their children against the disease .\tNNS IN NNS VBN IN NN VBP VBN DT NN IN DT JJ NN IN NNP TO VB NNS TO VB PRP$ NNS IN DT NN .\nThe chairman of a polio victims association in Kano says many parents in the area have been slow to respond to international immunization programs .\tDT NN IN DT NN NNS NN IN NNP VBZ JJ NNS IN DT NN VBP VBN JJ TO VB TO JJ NN NNS .\nMuslim leaders in northern Nigeria suspended polio immunizations in late 2003 , claiming the U.N. health agency had supplied a vaccine that would cause sterility .\tNNP NNS IN JJ NNP VBD NN NNS IN JJ CD , VBG DT NNP NN NN VBD VBN DT NN WDT MD VB NN .\nThe World Health Organization ( WHO ) says the ban , which lasted a year , set Nigeria back in its efforts to fight polio .\tDT NNP NNP NNP LRB NNP RRB VBZ DT NN , WDT VBD DT NN , VBD NNP RB IN PRP$ NNS TO VB NN .\nNearly 500 cases of polio have been reported in the country this year , the most in the world by far .\tRB CD NNS IN NN VBP VBN VBN IN DT NN DT NN , DT JJS IN DT NN IN RB .\nThe suspension in Kano was also blamed for causing polio to spread in a number of African nations and as far away as Indonesia .\tDT NN IN NNP VBD RB VBN IN VBG NN TO VB IN DT NN IN JJ NNS CC IN RB RB IN NNP .\nBelarus says it plans to raise transit fees later this month by more than 30 percent on Russian oil pumped through Belarusian territory to western Europe .\tNNP VBZ PRP VBZ TO VB NN NNS RB DT NN IN JJR IN CD NN IN JJ NN VBN IN JJ NN TO JJ NNP .\nJust weeks ago Moscow more than doubled the price of natural gas sold to its western neighbor .\tRB NNS IN NNP JJR IN VBD DT NN IN JJ NN VBD TO PRP$ JJ NN .\nAuthorities in Minsk say the Belarusian hike will take effect February 15 .\tNNS IN NNP VBP DT JJ NN MD VB NN NNP CD .\nIn an interview Tuesday with Reuters news agency , Belarusian President Alexander Lukashenko - stung by the Russian price hikes - vowed to recover $ 5 billion in losses incurred since the Russian increases took effect .\tIN DT NN NNP IN NNP NN NN , JJ NNP NNP NNP : VBN IN DT JJ NN NNS : VBD TO VB $ CD CD IN NNS VBN IN DT JJ NNS VBD NN .\nAt the height of the dispute , Russia briefly cut off oil supplies in Belarusian pipelines , after accusing Minsk of siphoning oil bound for western Europe .\tIN DT NN IN DT NN , NNP RB VBD RP NN NNS IN JJ NNS , IN VBG NNP IN VBG NN VBN IN JJ NNP .\nThe stand-off was resolved when Belarus revoked a transit tax it had imposed on Russian oil , and Moscow lowered oil fees it had demanded from Minsk .\tDT NN VBD VBN WRB NNP VBN DT NN NN PRP VBD VBN IN JJ NN , CC NNP VBD NN NNS PRP VBD VBN IN NNP .\nTurkish media reports say a suicide car bomber in the southern part of the country Tuesday killed himself and wounded at least nine police officers .\tJJ NNS NNS VBP DT NN NN NN IN DT JJ NN IN DT NN NNP VBD PRP CC VBN IN JJS CD NN NNS .\nOfficials and media reports from CNN-Turk television say the bomber detonated explosives after police stopped his vehicle at a checkpoint outside the port city of Mersin , on Turkey 's Mediterranean coast .\tNNS CC NNS NNS IN JJ NN VBP DT NN VBD NNS IN NN VBD PRP$ NN IN DT NN IN DT JJ NN IN NNP , IN NNP POS NNP NN .\nSome reports had said earlier that another suspect in the vehicle also was killed .\tDT NNS VBD VBN RBR IN DT NN IN DT NN RB VBD VBN .\nAccording to reports , police had been following the vehicle after receiving intelligence that said a bomber was preparing for an attack .\tVBG TO NNS , NNS VBD VBN VBG DT NN IN VBG NN WDT VBD DT NN VBD VBG IN DT NN .\nThere was no immediate claim of responsibility .\tEX VBD DT JJ NN IN NN .\nIslamist extremists , Kurdish separatists and leftist militants have all carried out attacks in Turkey in the past .\tNNP NNS , NNP NNS CC JJ NNS VBP DT VBN RP NNS IN NNP IN DT NN .\nU.N. Secretary-General Kofi Annan begins a visit to Haiti Wednesday , to talk with political leaders about ways to improve security across the country .\tNNP NNP NNP NNP VBZ DT NN TO NNP NNP , TO VB IN JJ NNS IN NNS TO VB NN IN DT NN .\nThe U.N. says Mr. Annan will meet with President Rene Preval , other top officials and members of the U.N. Stabilization Mission in Haiti .\tDT NNP VBZ NNP NNP MD VB IN NNP NNP NNP , JJ JJ NNS CC NNS IN DT NNP NNP NNP IN NNP .\nThe number of kidnappings by armed groups has started to surge after a period of calm following the election of Mr. Preval .\tDT NN IN NNS IN JJ NNS VBZ VBN TO VB IN DT NN IN NN VBG DT NN IN NNP NNP .\nThe U.N. says trafficking in illegal drugs and weapons remains a major problem .\tDT NNP VBZ VBG IN JJ NNS CC NNS VBZ DT JJ NN .\nIn a report to the Security Council Tuesday , Mr. Annan called for the U.N. police force in Haiti to be strengthened with experts in counterkidnapping and anti-gang operations to better support the Haitian National Police .\tIN DT NN TO DT NNP NNP NNP , NNP NNP VBD IN DT NNP NN NN IN NNP TO VB VBN IN NNS IN NN CC JJ NNS TO JJR NN DT JJ NNP NNP .\nFollowing his visit to Haiti , Mr. Annan will travel to the Dominican Republic , where he is scheduled to meet with President Leonel Fernandez and members of the nation 's Congress and Supreme Court .\tVBG PRP$ NN TO NNP , NNP NNP MD VB TO DT NNP NNP , WRB PRP VBZ VBN TO VB IN NNP NNP NNP CC NNS IN DT NN POS NNP CC NNP NNP .\nA former Yugoslav army chief of staff has pleaded not guilty to 13 counts of war crimes and crimes against humanity before the United Nations tribunal in The Hague .\tDT JJ JJ NN NN IN NN VBZ VBN RB JJ TO CD NNS IN NN NNS CC NNS IN NN IN DT NNP NNPS NN IN DT NNP .\nGeneral Momcilo Perisic appeared in court Wednesday to face charges that troops under his command attacked Zagreb , the Croatian capital , and committed atrocities during the Bosnian conflict between 1992 and 1995 .\tNNP NNP NNP VBD IN NN NNP TO VB NNS IN NNS IN PRP$ NN VBD NNP , DT JJ NN , CC JJ NNS IN DT JJ NN IN CD CC CD .\nThe charges include the massacre of more than 7,000 Muslim men and boys by Bosnian Serb troops following their capture of the Muslim enclave of Srebrenica .\tDT NNS VBP DT NN IN JJR IN CD NNP NNS CC NNS IN JJ JJ NNS VBG PRP$ NN IN DT NNP NN IN NNP .\nGeneral Perisic surrendered to the court Monday .\tNNP NNP VBD TO DT NN NNP .\nHe said last week that appearing before the tribunal was the best way to defend his honor and the reputation of the army .\tPRP VBD JJ NN IN VBG IN DT NN VBD DT JJS NN TO VB PRP$ NN CC DT NN IN DT NN .\nComing to a cinema near you : the Iron Lady . Margaret Thatcher , prime minister of the United Kingdom from 1979 to 1990 , will reportedly be the subject of an upcoming film .\tVBG TO DT NN IN PRP IN DT NNP NNP . NNP NNP , JJ NN IN DT NNP NNP IN CD TO CD , MD RB VB DT NN IN DT JJ NN .\nSet during the Falklands War , the film will cover the 17 days leading up to Britain 's 1982 conflict with Argentina .\tNNP IN DT NNP NNP , DT NN MD VB DT CD NNS VBG RP TO NNP POS CD NN IN NNP .\nBacked by London-based Pathe Productions , BBC Films , and DJ Films , the project has yet to be cast , and no director has been named .\tVBN IN JJ NNP NNP , NNP NNP , CC NNP NNP , DT NN VBZ RB TO VB VBN , CC DT NN VBZ VBN VBN .\nSteven Frears ' film The Queen , which features an Oscar-winning performance from Helen Mirren as Queen Elizabeth II , has re-awakened interest in recent British history .\tNNP NNP POS NN DT NNP , WDT VBZ DT JJ NN IN NNP NNP IN NNP NNP NNP , VBZ VBN NN IN JJ JJ NN .\nRatners Group PLC , a fast-growing , acquisition-minded London-based jeweler , raised its price for Seattle-based specialty jeweler Weisfield 's Inc. to $ 57.5 a share , or $ 62.1 million , from $ 50 a share , or $ 55 million , after another concern said it would be prepared to outbid Ratners 's initial offer .\tNNP NNP NNP , DT JJ , JJ JJ NN , VBD PRP$ NN IN JJ NN NN NNP NNP NNP TO $ CD DT NN , CC $ CD CD , IN $ CD DT NN , CC $ CD CD , IN DT NN VBD PRP MD VB VBN TO VB NNP POS JJ NN .\nThe other concern was n't identified .\tDT JJ NN VBD RB VBN .\nRatners 's chairman , Gerald Ratner , said the deal remains of ' substantial benefit to Ratners . '\tNNP POS NN , NNP NNP , VBD DT NN NNS IN `` JJ NN TO NNP . ``\nIn London at mid-afternoon yesterday , Ratners 's shares were up 2 pence ( 1.26 cents ) , at 260 pence ( $ 1.64 ) .\tIN NNP IN NN NN , NNP POS NNS VBD RB CD NN LRB CD NNS RRB , IN CD NN LRB $ CD RRB .\nThe sweetened offer has acceptances from more than 50 % of Weisfield 's shareholders , and it is scheduled for completion by Dec. 10 .\tDT VBN NN VBZ NNS IN JJR IN CD NN IN NNP POS NNS , CC PRP VBZ VBN IN NN IN NNP CD .\nThe acquisition of 87-store Weisfield 's raises Ratners 's U.S. presence to 450 stores .\tDT NN IN JJ NNP NNP VBZ NNP POS NNP NN TO CD NNS .\nAbout 30 % of Ratners 's profit already is derived from the U.S.\tIN CD NN IN NNP POS NN RB VBZ VBN IN DT NNP\nSince independence in 1976 , per capita output in this Indian Ocean archipelago has expanded to roughly seven times the pre-independence , near-subsistence level , moving the island into the upper-middle income group of countries .\tIN NN IN CD , IN NN NN IN DT JJ NNP NN VBZ VBN TO RB CD NNS DT NN , NN NN , VBG DT NN IN DT JJ NN NN IN NNS .\nGrowth has been led by the tourist sector , which employs about 30 % of the labor force and provides more than 70 % of hard currency earnings , and by tuna fishing .\tNN VBZ VBN VBN IN DT NN NN , WDT VBZ IN CD NN IN DT NN NN CC VBZ JJR IN CD NN IN JJ NN NNS , CC IN NN NN .\nIn recent years , the government has encouraged foreign investment to upgrade hotels and other services .\tIN JJ NNS , DT NN VBZ VBN JJ NN TO VB NNS CC JJ NNS .\nAt the same time , the government has moved to reduce the dependence on tourism by promoting the development of farming , fishing , and small-scale manufacturing .\tIN DT JJ NN , DT NN VBZ VBN TO VB DT NN IN NN IN VBG DT NN IN NN , NN , CC JJ NN .\nGDP grew about 07-Aug % per year in 2006 - 7 , driven by tourism and a boom in tourism-related construction .\tNN VBD RB CD NN IN NN IN CD : CD , VBN IN NN CC DT NN IN JJ NN .\nThe Seychelles rupee was allowed to depreciate in 2006 after being overvalued for years and fell by 10 % in the first 9 months of 2007 .\tDT NNP NN VBD VBN TO VB IN CD IN VBG VBN IN NNS CC VBD IN CD NN IN DT JJ CD NNS IN CD .\nDespite these actions , the Seychelles economy has struggled to maintain its gains and in 2008 suffered from food and oil price shocks , a foreign exchange shortage , high inflation , large financing gaps , and the global recession .\tIN DT NNS , DT NNP NN VBZ VBN TO VB PRP$ NNS CC IN CD VBD IN NN CC NN NN NNS , DT JJ NN NN , JJ NN , JJ NN NNS , CC DT JJ NN .\nIn July 2008 the government defaulted on a Euro amortizing note worth roughly US $ 80 million , leading to a downgrading of Seychelles credit rating , but in October 2010 the EU approved a $ 2.9 million grant as part of a larger four-year program for Seychelles .\tIN NNP CD DT NN VBD IN DT NNP JJ NN JJ RB NNP $ CD CD , VBG TO DT NN IN NNP NN NN , CC IN NNP CD DT NNP VBD DT $ CD CD NN IN NN IN DT JJR JJ NN IN NNS .\nIn response to Seychelles successful implementation of tighter monetary and fiscal policies , the IMF upgraded Seychelles to a three-year extended fund facility ( EFF ) of $ 31 million in December 2009 .\tIN NN TO NNP JJ NN IN JJR JJ CC JJ NNS , DT NNP VBD NNS TO DT JJ JJ NN NN LRB NNP RRB IN $ CD CD IN NNP CD .\nIn 2008 , GDP fell more than 1 % due to declining tourism , but the economy recovered in 2009 - 10 with a notable increase in tourist numbers for 2010 .\tIN CD , NN VBD JJR IN CD NN JJ TO VBG NN , CC DT NN VBD IN CD IN CD IN DT JJ NN IN NN NNS IN CD .\nThe area of the Republic of Cyprus under government control has a market economy dominated by the service sector , which accounts for nearly four-fifths of GDP .\tDT NN IN DT NNP IN NNP IN NN NN VBZ DT NN NN VBN IN DT NN NN , WDT VBZ IN RB NNS IN NN .\nTourism , financial services , and real estate are the most important sectors .\tNNP , JJ NNS , CC JJ NN VBP DT RBS JJ NNS .\nErratic growth rates over the past decade reflect the economy 's reliance on tourism , the profitability of which often fluctuates with political instability in the region and economic conditions in Western Europe .\tJJ NN NNS IN DT JJ NN VBP DT NN POS NN IN NN , DT NN IN WDT RB VBZ IN JJ NN IN DT NN CC JJ NNS IN NNP NNP .\nNevertheless , the economy in the area under government control has grown at a rate well above the EU average since 2000 .\tRB , DT NN IN DT NN IN NN NN VBZ VBN IN DT NN RB IN DT NNP NN IN CD .\nCyprus joined the European Exchange Rate Mechanism ( ERM2 ) in May 2005 and adopted the euro as its national currency on 1 January 2008 .\tNNP VBD DT NNP NNP NNP NNP LRB NNP RRB IN NNP CD CC VBD DT NN IN PRP$ JJ NN IN CD NNP CD .\nAn aggressive austerity program in the preceding years , aimed at paving the way for the euro , helped turn a soaring fiscal deficit ( 6.3 % in 2003 ) into a surplus of 1.2 % in 2008 , and reduced inflation to 4.7 % .\tDT JJ NN NN IN DT JJ NNS , VBN IN VBG DT NN IN DT NN , VBD VB DT VBG JJ NN LRB CD NN IN CD RRB IN DT NN IN CD NN IN CD , CC VBD NN TO CD NN .\nThis prosperity came under pressure in 2009 , as construction and tourism slowed in the face of reduced foreign demand triggered by the ongoing global financial crisis .\tDT NN VBD IN NN IN CD , IN NN CC NN VBD IN DT NN IN JJ JJ NN VBN IN DT JJ JJ JJ NN .\nAlthough Cyprus lagged behind its EU peers in showing signs of stress from the global crisis , the economy tipped into recession in 2009 , contracting by 1.8 % , and has been slow to bounce back since , posting an anemic growth rate of 0.6 % in 2010 .\tIN NNP VBD IN PRP$ NNP NNS IN VBG NNS IN NN IN DT JJ NN , DT NN VBD IN NN IN CD , NN IN CD NN , CC VBZ VBN JJ TO VB RB IN , VBG DT JJ NN NN IN CD NN IN CD .\nIn addition , the budget deficit is on the rise and reached 5.3 % of GDP in 2010 , a violation of the EU 's budget deficit criteria of no more than 3 % of GDP .\tIN NN , DT NN NN VBZ IN DT NN CC VBD CD NN IN NN IN CD , DT NN IN DT NNP POS NN NN NNS IN DT JJR IN CD NN IN NN .\nIn response to the country 's deteriorating finances , Nicosia is promising to implement measures to cut the cost of the state payroll , curb tax evasion , and revamp social benefits .\tIN NN TO DT NN POS JJ NNS , NNP VBZ VBG TO VB NNS TO VB DT NN IN DT NN NN , VB NN NN , CC VB JJ NNS .\nHowever , it has been slow to act , lacking a consensus in parliament and among the social partners for its proposed measures .\tRB , PRP VBZ VBN JJ TO VB , VBG DT NN IN NN CC IN DT JJ NNS IN PRP$ JJ NNS .\nThe economy is a mixture of subsistence agriculture , an industrial sector based largely on oil and support services , and government spending .\tDT NN VBZ DT NN IN NN NN , DT JJ NN VBN RB IN NN CC NN NNS , CC NN NN .\nOil has supplanted forestry as the mainstay of the economy , providing a major share of government revenues and exports .\tNN VBZ VBN NN IN DT NN IN DT NN , VBG DT JJ NN IN NN NNS CC NNS .\nIn the early 1980s , rapidly rising oil revenues enabled the government to finance large-scale development projects with GDP growth averaging 5 % annually , one of the highest rates in Africa .\tIN DT JJ NNS , RB VBG NN NNS VBD DT NN TO VB JJ NN NNS IN NN NN VBG CD NN RB , CD IN DT JJS NNS IN NNP .\nCharacterized by budget problems and overstaffing , the government has mortgaged a substantial portion of its oil earnings through oil-backed loans that have contributed to a growing debt burden and chronic revenue shortfalls .\tVBN IN NN NNS CC NN , DT NN VBZ VBN DT JJ NN IN PRP$ NN NNS IN JJ NNS WDT VBP VBN TO DT VBG NN NN CC NN NN NNS .\nEconomic reform efforts have been undertaken with the support of international organizations , notably the World Bank and the IMF .\tJJ NN NNS VBP VBN VBN IN DT NN IN JJ NNS , RB DT NNP NNP CC DT NNP .\nHowever , the reform program came to a halt in June 1997 when civil war erupted .\tRB , DT NN NN VBD TO DT NN IN NNP CD WRB JJ NN VBD .\nDenis SASSOU-Nguesso , who returned to power when the war ended in October 1997 , publicly expressed interest in moving forward on economic reforms and privatization and in renewing cooperation with international financial institutions .\tNNP NNP , WP VBD TO NN WRB DT NN VBD IN NNP CD , RB VBN NN IN VBG RB IN JJ NNS CC NN CC IN VBG NN IN JJ JJ NNS .\nEconomic progress was badly hurt by slumping oil prices and the resumption of armed conflict in December 1998 , which worsened the republic 's budget deficit .\tJJ NN VBD RB VBN IN JJ NN NNS CC DT NN IN JJ NN IN NNP CD , WDT VBD DT NN POS NN NN .\nThe current administration presides over an uneasy internal peace and faces difficult economic challenges of stimulating recovery and reducing poverty .\tDT JJ NN VBZ IN DT JJ JJ NN CC VBZ JJ JJ NNS IN VBG NN CC VBG NN .\nThe drop in oil prices during the global crisis reduced oil revenue by about 30 % , but the subsequent recovery of oil prices has boosted the economy 's GDP and near-term prospects .\tDT NN IN NN NNS IN DT JJ NN VBD NN NN IN RB CD NN , CC DT JJ NN IN NN NNS VBZ VBN DT NN POS NN CC JJ NNS .\nIn March 2006 , the World Bank and the International Monetary Fund ( IMF ) approved Heavily Indebted Poor Countries ( HIPC ) treatment for Congo , receiving $ 1.9 billion in debt relief under the program in 2010 .\tIN NNP CD , DT NNP NNP CC DT NNP NNP NNP LRB NNP RRB VBD NNP NNP NNP NNPS LRB NNP RRB NN IN NNP , VBG $ CD CD IN NN NN IN DT NN IN CD .\nSwitzerland is a peaceful , prosperous , and modern market economy with low unemployment , a highly skilled labor force , and a per capita GDP among the highest in the world .\tNNP VBZ DT JJ , JJ , CC JJ NN NN IN JJ NN , DT RB JJ NN NN , CC DT IN NN NN IN DT JJS IN DT NN .\nSwitzerland 's economy benefits from a highly developed service sector , led by financial services , and a manufacturing industry that specializes in high-technology , knowledge-based production .\tNNP POS NN NNS IN DT RB JJ NN NN , VBN IN JJ NNS , CC DT NN NN WDT VBZ IN NN , JJ NN .\nThe Swiss have brought their economic practices largely into conformity with the EU 's , in order to enhance their international competitiveness , but some trade protectionism remains , particularly for its small agricultural sector .\tDT NNS VBP VBN PRP$ JJ NNS RB IN NN IN DT NNP POS , IN NN TO VB PRP$ JJ NN , CC DT NN NN VBZ , RB IN PRP$ JJ JJ NN .\nThe global financial crisis and resulting economic downturn put Switzerland in a recession in 2009 as global export demand stalled .\tDT JJ JJ NN CC VBG JJ NN VBD NNP IN DT NN IN CD IN JJ NN NN VBN .\nThe Swiss National Bank during this period effectively implemented a zero-interest rate policy in a bid to boost the economy and prevent appreciation of the franc .\tDT NNP NNP NNP IN DT NN RB VBD DT JJ NN NN IN DT NN TO VB DT NN CC VB NN IN DT NN .\nSwitzerland 's economy grew by 2.7 % in 2010 , when Bern implemented a third fiscal stimulus program , but its prized banking sector has recently faced significant challenges .\tNNP POS NN VBD IN CD NN IN CD , WRB NNP VBD DT JJ JJ NN NN , CC PRP$ JJ NN NN VBZ RB VBN JJ NNS .\nThe country 's largest banks suffered sizable losses in 2008 - 9 , leading its largest bank to accept a government rescue deal in late 2008 .\tDT NN POS JJS NNS VBD JJ NNS IN CD : CD , VBG PRP$ JJS NN TO VB DT NN NN NN IN JJ CD .\nSwitzerland has also come under increasing pressure from individual neighboring countries , the EU , the US , and international institutions to reform its banking secrecy laws .\tNNP VBZ RB VBN IN VBG NN IN JJ JJ NNS , DT NNP , DT NNP , CC JJ NNS TO VB PRP$ NN NN NNS .\nConsequently , the government agreed to conform to OECD regulations on administrative assistance in tax matters , including tax evasion .\tRB , DT NN VBD TO VB TO NNP NNS IN JJ NN IN NN NNS , VBG NN NN .\nThe government has renegotiated its double taxation agreements with numerous countries , including the US , to incorporate the OECD standard , and it is working with Germany and the UK to resolve outstanding issues , particularly the possibility of imposing taxes on bank deposits held by foreigners .\tDT NN VBZ VBN PRP$ JJ NN NNS IN JJ NNS , VBG DT NNP , TO VB DT NNP NN , CC PRP VBZ VBG IN NNP CC DT NNP TO VB JJ NNS , RB DT NN IN VBG NNS IN NN NNS VBN IN NNS .\nParliament passed the first five double-taxation agreements , including that with the US , in March 2010 .\tNNP VBD DT JJ CD NN NNS , VBG IN IN DT NNP , IN NNP CD .\nThe agreement with the US awaits US Senate approval .\tDT NN IN DT NNP VBZ NNP NNP NN .\nIn 2009 , Swiss financial regulators ordered the country 's largest bank to reveal at Washington 's behest the names of US account-holders suspected of using the bank to commit tax fraud .\tIN CD , JJ JJ NNS VBD DT NN POS JJS NN TO VB IN NNP POS NN DT NNS IN NNP NNS VBN IN VBG DT NN TO VB NN NN .\nThese steps will have a lasting impact on Switzerland 's long history of bank secrecy .\tDT NNS MD VB DT JJ NN IN NNP POS JJ NN IN NN NN .\nThe French annexed various Polynesian island groups during the 19th century .\tDT JJ JJ JJ JJ NN NNS IN DT JJ NN .\nIn September 1995 , France stirred up widespread protests by resuming nuclear testing on the Mururoa atoll after a three-year moratorium .\tIN NNP CD , NNP VBD RP JJ NNS IN VBG JJ NN IN DT NNP NN IN DT JJ NN .\nThe tests were suspended in January 1996 .\tDT NNS VBD VBN IN NNP CD .\nIn recent years , French Polynesia 's autonomy has been considerably expanded .\tIN JJ NNS , NNP NNP POS NN VBZ VBN RB VBN .\nLandlocked Paraguay has a market economy distinguished by a large informal sector , featuring re-export of imported consumer goods to neighboring countries , as well as the activities of thousands of microenterprises and urban street vendors .\tJJ NNP VBZ DT NN NN VBN IN DT JJ JJ NN , VBG NN IN JJ NN NNS TO JJ NNS , RB RB IN DT NNS IN NNS IN NNS CC JJ NN NNS .\nA large percentage of the population , especially in rural areas , derives its living from agricultural activity , often on a subsistence basis .\tDT JJ NN IN DT NN , RB IN JJ NNS , VBZ PRP$ NN IN JJ NN , RB IN DT NN NN .\nBecause of the importance of the informal sector , accurate economic measures are difficult to obtain .\tIN IN DT NN IN DT JJ NN , JJ JJ NNS VBP JJ TO VB .\nOn a per capita basis , real income has stagnated at 1980 levels .\tIN DT IN NN NN , JJ NN VBZ VBN IN CD NNS .\nThe economy grew rapidly between 2003 and 2008 as growing world demand for commodities combined with high prices and favorable weather to support Paraguay 's commodity-based export expansion .\tDT NN VBD RB IN CD CC CD IN VBG NN NN IN NNS VBN IN JJ NNS CC JJ NN TO VB NNP POS JJ NN NN .\nParaguay is the sixth largest soy producer in the world .\tNNP VBZ DT JJ JJS NN NN IN DT NN .\nDrought hit in 2008 , reducing agricultural exports and slowing the economy even before the onset of the global recession .\tNNP VBD IN CD , VBG JJ NNS CC VBG DT NN RB IN DT NN IN DT JJ NN .\nThe economy fell 3.8 % in 2009 , as lower world demand and commodity prices caused exports to contract .\tDT NN VBD CD NN IN CD , IN JJR NN NN CC NN NNS VBD NNS TO NN .\nThe government reacted by introducing fiscal and monetary stimulus packages .\tDT NN VBD IN VBG JJ CC JJ NN NNS .\nGrowth resumed at a 14.5 % level in 2010 , the highest in South America .\tNN VBD IN DT CD NN NN IN CD , DT JJS IN NNP NNP .\nPolitical uncertainty , corruption , limited progress on structural reform , and deficient infrastructure are the main obstacles to growth .\tJJ NN , NN , JJ NN IN JJ NN , CC JJ NN VBP DT JJ NNS TO NN .\nA SHIPWRECKED MAN , having been cast upon a certain shore , slept after his buffetings with the deep .\tDT JJ NN , VBG VBN VBN IN DT JJ NN , VBD IN PRP$ NNS IN DT NN .\nAfter a while he awoke , and looking upon the Sea , loaded it with reproaches .\tIN DT NN PRP VBD , CC VBG IN DT NN , VBD PRP IN NNS .\nHe argued that it enticed men with the calmness of its looks , but when it had induced them to plow its waters , it grew rough and destroyed them .\tPRP VBD IN PRP VBD NNS IN DT NN IN PRP$ NNS , CC WRB PRP VBD VBN PRP TO VB PRP$ NNS , PRP VBD JJ CC VBD PRP .\nThe Sea , assuming the form of a woman , replied to him : ' Blame not me , my good sir , but the winds , for I am by my own nature as calm and firm even as this earth ; but the winds suddenly falling on me create these waves , and lash me into fury . '\tDT NN , VBG DT NN IN DT NN , VBD TO PRP : `` VB RB PRP , PRP$ JJ NN , CC DT NNS , IN PRP VBP IN PRP$ JJ NN IN JJ CC JJ RB IN DT NN ; CC DT NNS RB VBG IN PRP VBP DT NNS , CC VB PRP IN NN . ``\nI 'm sorry but my answering machine is out of order .\tPRP VBP JJ CC PRP$ NN NN VBZ IN IN NN .\nI am leaving a broken CD player in its place .\tPRP VBP VBG DT JJ NN NN IN PRP$ NN .\nIt ca n't take messages either .\tPRP MD RB VB NNS RB .\nIn fact , it ca n't even play you a nice tune while you wait to not leave a message .\tIN NN , PRP MD RB RB VB PRP DT JJ NN IN PRP VBP TO RB VB DT NN .\nGlobal oil prices fell Monday as investors apparently interpreted the bankruptcy of a major U.S. investment bank as a signal that the global economy could slow down , cutting demand for oil .\tJJ NN NNS VBD NNP IN NNS RB VBD DT NN IN DT JJ NNP NN NN IN DT NN IN DT JJ NN MD VB RP , VBG NN IN NN .\nPrices were also pushed down by reports that Hurricane Ike did only limited damage to key U.S. oil producing and refining facilities .\tNNS VBD RB VBN RP IN NNS IN NNP NNP VBD RB JJ NN TO JJ NNP NN NN CC NN NNS .\nIn electronic trading in New York , the price of oil for future delivery was down more than $ 7 , putting the price of a barrel of oil at $ 94.13 .\tIN JJ NN IN NNP NNP , DT NN IN NN IN JJ NN VBD RB JJR IN $ CD , VBG DT NN IN DT NN IN NN IN $ CD .\nThat is the lowest price since February , and a drop of one-third since the record-high recorded in July .\tDT VBZ DT JJS NN IN NNP , CC DT NN IN NN IN DT NN VBN IN NNP .\nAnother benchmark oil price , Brent crude , fell even lower .\tDT JJ NN NN , JJ NN , VBD RB JJR .\nPalestinian protests erupted in east Jerusalem on Tuesday after Israeli forces demolished a home in the Arab neighborhood of Issawiya .\tJJ NNS VBD IN JJ NNP IN NNP IN JJ NNS VBD DT NN IN DT JJ NN IN NNP .\nIsraeli police report an angry crowd of protesters threw rocks and set several cars on fire before forces broke up the demonstration .\tJJ NN NN DT JJ NN IN NNS VBD NNS CC VBD JJ NNS IN NN IN NNS VBD RP DT NN .\nIsraeli authorities say a home and a small room housing a printing press next door were demolished because they were built illegally .\tJJ NNS VBP DT NN CC DT JJ NN NN DT NN NN JJ NN VBD VBN IN PRP VBD VBN RB .\nAlso on Tuesday , five Palestinians were injured by Israeli gunfire while looking for construction material in rubble near Gaza 's northern border with Israel .\tRB IN NNP , CD NNS VBD VBN IN JJ NN IN VBG IN NN NN IN NN IN NNP POS JJ NN IN NNP .\nThe Israeli military said it had opened fire on three Palestinians approaching the border fence after they failed to respond to warning shots .\tDT JJ NN VBD PRP VBD VBN NN IN CD NNS VBG DT NN NN IN PRP VBD TO VB TO VBG NNS .\nNEW : Follow our Middle East stories on Twitter and discuss them on our Facebook page .\tJJ IN VB PRP$ NNP NNP NNS IN NNP CC VB PRP IN PRP$ NNP NN .\nAfghan security forces have seized more than 15 tons of illegal drugs in a series of operations across the country .\tJJ NN NNS VBP VBN RBR IN CD NNS IN JJ NNS IN DT NN IN NNS IN DT NN .\nThe nation 's top drug enforcement official , Lieutenant General Mohammed Daoud Daoud said Saturday the seizures over the past 10 days included one ton of heroin .\tDT NN POS JJ NN NN NN , NNP NNP NNP NNP NNP VBD NNP DT NNS IN DT JJ CD NNS VBD CD NN IN NN .\nHe also is quoted by the French news agency as saying that more than a dozen men were arrested .\tPRP RB VBZ VBN IN DT JJ NN NN IN VBG IN JJR IN DT NN NNS VBD VBN .\nDaoud said the government is seeking to increase efforts to block cultivation of poppy and other drugs .\tNNP VBD DT NN VBZ VBG TO VB NNS TO VB NN IN NN CC JJ NNS .\nThe United Nations has reported that opium production is up 60 percent this year in Afghanistan .\tDT NNP NNP VBZ VBN IN NN NN VBZ RP CD NN DT NN IN NNP .\nThe world body says much of the proceeds of the illegal drug trade are funding insurgent activities and fueling political corruption .\tDT NN NN VBZ NN IN DT NNS IN DT JJ NN NN VBP VBG JJ NNS CC VBG JJ NN .\nAfghan President Hamid Karzai has warned a booming trade in opium and heroin threatens the existence of Afghanistan as a nation-state .\tJJ NNP NNP NNP VBZ VBN DT JJ NN IN NN CC NN VBZ DT NN IN NNP IN DT NN .\nIn an interview with the Associated Press Sunday , the Afghan leader called drugs a bigger threat than terrorism .\tIN DT NN IN DT NNP NNP NNP , DT JJ NN VBD NNS DT JJR NN IN NN .\nHe said foreign crime groups and terrorists are forcing farmers to grow poppies .\tPRP VBD JJ NN NNS CC NNS VBP VBG NNS TO VB NNS .\nHe said drugs are criminalizing the economy , tainting the country 's image and hindering the development of strong government institutions .\tPRP VBD NNS VBP VBG DT NN , VBG DT NN POS NN CC VBG DT NN IN JJ NN NNS .\nDuring the interview , Mr. Karzai also invited Taleban leader Mullah Omar to contact his government and seek reconciliation .\tIN DT NN , NNP NNP RB VBD NNP NN NNP NNP TO VB PRP$ NN CC VB NN .\nBut he expressed doubts that the fugitive leader would come out of hiding .\tCC PRP VBD NNS IN DT JJ NN MD VB IN IN NN .\nThe Afghan leader also said that NATO-led troops taking over security in southern part of the country must not use aggressive tactics without government permission .\tDT JJ NN RB VBD IN JJ NNS VBG RP NN IN JJ NN IN DT NN MD RB VB JJ NNS IN NN NN .\nEurope 's top human rights watchdog has expanded its probe into the alleged secret international prison network run by the U.S. Central Intelligence Agency .\tNNP POS JJ JJ NNS NN VBZ VBN PRP$ NN IN DT JJ JJ JJ NN NN VBN IN DT NNP NNP NNP NNP .\nThe Council of Europe said it is investigating whether European airports were used by CIA aircraft transporting prisoners to secret detention centers .\tDT NNP IN NNP VBD PRP VBZ VBG IN JJ NNS VBD VBN IN NNP NN VBG NNS TO JJ NN NNS .\nThe Council is already investigating the existence of alleged CIA prisons in European nations .\tDT NNP VBZ RB VBG DT NN IN JJ NNP NNS IN JJ NNS .\nSeparately , Austria Wednesday said an aircraft suspected of transporting CIA terrorist captives flew though its airspace in 2003 .\tRB , NNP NNP VBD DT NN VBN IN VBG NNP JJ NNS VBD IN PRP$ NN IN CD .\nAustria 's Air Force Chief Major General Erich Wolf told Austrian radio that military jets scrambled to intercept the plane that took off from Germany but found nothing wrong and allowed it to proceed to Baku , Azerbaijan .\tNNP POS NNP NNP NNP NNP NNP NNP NNP VBD JJ NN IN JJ NNS VBD TO VB DT NN WDT VBD RP IN NNP CC VBD DT JJ CC VBD PRP TO VB TO NNP , NNP .\nPress reports say the CIA has been holding and interrogating terrorist suspects at secret detention facilities in several countries abroad , circumventing U.S. laws protecting prisoners .\tNNP NNS VBP DT NNP VBZ VBN VBG CC VBG JJ NNS IN JJ NN NNS IN JJ NNS RB , VBG NNP NNS VBG NNS .\nU.S authorities have refused either to confirm or deny the reports .\tNNP NNS VBP VBN RB TO VB CC VB DT NNS .\nUN Secretary-General Kofi Annan\tNNP NNP NNP NNP\nUnited Nations Secretary-General Kofi Annan is leaving Tuesday for Africa , where he will co-chair a conference designed to raise support for the African Union mission in Sudan 's western Darfur region .\tNNP NNP NNP NNP NNP VBZ VBG NNP IN NNP , WRB PRP MD VB DT NN VBN TO VB NN IN DT NNP NNP NN IN NNP POS JJ NNP NN .\nThe secretary-general spoke about his trip with reporters Monday at U.N. headquarters in New York .\tDT NN VBD IN PRP$ NN IN NNS NNP IN NNP NN IN NNP NNP .\nHe said he will co-chair the donor 's meeting Thursday in Addis Ababa , Ethiopia , where the A.U. has its headquarters .\tPRP VBD PRP MD VB DT NN POS NN NNP IN NNP NNP , NNP , WRB DT NNP VBZ PRP$ NN .\nMr. Annan said there are plans to expand the AU peacekeeping force in Darfur from the current 2,000 troops to 8,000 .\tNNP NNP VBD EX VBP NNS TO VB DT NNP NN NN IN NNP IN DT JJ CD NNS TO CD .\nBut he said the AU is about $ 350 million short for the project .\tCC PRP VBD DT NNP VBZ IN $ CD CD JJ IN DT NN .\nThe secretary-general will also be traveling to the Darfur region himself and to Sudan 's southern town of Rumbek , where he will examine the peace process .\tDT NN MD RB VB VBG TO DT NNP NN PRP CC TO NNP POS JJ NN IN NNP , WRB PRP MD VB DT NN NN .\nThe murder trial of Phil Spector was halted April 30 , when one of the defense attorneys sought medical attention .\tDT NN NN IN NNP NNP VBD VBN NNP CD , WRB CD IN DT NN NNS VBD JJ NN .\nSuperior Court Judge Larry Paul Fidler did not provide a reason why Bruce Cutler consulted a physician , but told jurors that court would reconvene May 2 .\tNNP NNP NNP NNP NNP NNP VBD RB VB DT NN WRB NNP NNP VBD DT NN , CC VBD NNS IN NN MD VB NNP CD .\nSpector , 67 , famous for his ' Wall of Sound ' production technique , is accused of fatally shooting actress Lana Clarkson in February , 2003 .\tNNP , CD , JJ IN PRP$ `` NNP IN NNP `` NN NN , VBZ VBN IN RB VBG NN NNP NNP IN NNP , CD .\nHe met Clarkson at the House Of Blues in Hollywood , where she was a hostess .\tPRP VBD NNP IN DT NNP IN NNPS IN NNP , WRB PRP VBD DT NN .\nProsecutors allege Spector did not mean to murder the 40-year-old actress , but caused her death through reckless behavior .\tNNS VBP NNP VBD RB VB TO NN DT JJ NN , CC VBD PRP$ NN IN JJ NN .\nThe Indonesian health ministry says bird flu is suspected in the recent deaths of a man and his two daughters near Jakarta .\tDT JJ NN NN VBZ NN NN VBZ VBN IN DT JJ NNS IN DT NN CC PRP$ CD NNS IN NNP .\nThe victims would be Indonesia 's first human fatalities linked to avian influenza .\tDT NNS MD VB NNP POS JJ JJ NNS VBN TO JJ NN .\nHealth Minister Siti Fadillah Supari says there is no evidence the man and his daughters had contact with sickened poultry , which raises the probability of human-to-human transmission of bird flu .\tNNP NNP NNP NNP NNP VBZ EX VBZ DT NN DT NN CC PRP$ NNS VBD NN IN JJ NN , WDT VBZ DT NN IN JJ NN IN NN NN .\nHundreds of millions of birds have died or been culled across Asia during the past two years due to the deadly virus which has jumped to humans , killing people in Vietnam , Cambodia and Thailand .\tNNS IN NNS IN NNS VBP VBN CC VBN VBN IN NNP IN DT JJ CD NNS JJ TO DT JJ NN WDT VBZ VBN TO NNS , VBG NNS IN NNP , NNP CC NNP .\nWorld health officials have long feared the virus might change into a form easily transferable among people , triggering a deadly global pandemic .\tNNP NN NNS VBP RB VBN DT NN MD VB IN DT NN RB JJ IN NNS , VBG DT JJ JJ NN .\nRussian authorities say power has been fully restored to the Moscow region Thursday , a day after a massive blackout knocked out electricity to large parts of the Russian capital .\tJJ NNS VBP NN VBZ VBN RB VBN TO DT NNP NN NNP , DT NN IN DT JJ NN VBD RP NN TO JJ NNS IN DT JJ NN .\nThe blackout Wednesday left thousands of people stranded on subways , shut down the stock market , and forced hospitals to switch to emergency power .\tDT NN NNP VBD NNS IN NNS VBN IN NNS , VBD RP DT NN NN , CC VBD NNS TO VB TO NN NN .\nEnergy Minister Viktor Khristenko blamed the power outage on a fire and explosion at an energy substation .\tNNP NNP NNP NNP VBD DT NN NN IN DT NN CC NN IN DT NN NN .\nPresident Vladimir Putin has accused the state-run power company ( Unified Energy Systems ) of negligence .\tNNP NNP NNP VBZ VBN DT JJ NN NN LRB NNP NNP NNP RRB IN NN .\nMeanwhile , prosecutors have opened a criminal case over the power outage , and say they plan to question the chairman of the power company , Anatoly Chubais , who is also one of Mr. Putin 's top political rivals .\tRB , NNS VBP VBN DT JJ NN IN DT NN NN , CC VBP PRP VBP TO VB DT NN IN DT NN NN , NNP NNP , WP VBZ RB CD IN NNP NNP POS JJ JJ NNS .\nThe outage extended as far south as the Tula region , about 200 kilometers south of Moscow .\tDT NN VBD IN RB RB IN DT NNP NN , IN CD NNS RB IN NNP .\nNigerian military officials say four soldiers and a policeman were killed in a fierce gun battle Wednesday with militants in the oil-rich Niger Delta .\tJJ JJ NNS VBP CD NNS CC DT NN VBD VBN IN DT JJ NN NN NNP IN NNS IN DT NN NNP NNP .\nA Navy spokesman said Thursday that the militants were trying to capture a fuel tanker on the Escravos River , but were repelled .\tDT NNP NN VBD NNP IN DT NNS VBD VBG TO VB DT NN NN IN DT NNP NNP , CC VBD VBN .\nOfficials say three militants were killed .\tNNS VBP CD NNS VBD VBN .\nThe militant group , the Movement for the Emancipation of the Niger Delta , says at least seven soldiers were killed during the gun battle .\tDT JJ NN , DT NN IN DT NN IN DT NNP NNP , VBZ IN JJS CD NNS VBD VBN IN DT NN NN .\nThey also say that army gunboats attacked them first .\tPRP RB VBP IN NN NNS VBD PRP RB .\nThe militants kidnapped nine foreign oil workers last month , but have freed six of them .\tDT NNS VBD CD JJ NN NNS JJ NN , CC VBP VBN CD IN PRP .\nThey say they will not release the other three until the people of the Delta region receive a greater share of oil revenues .\tPRP VBP PRP MD RB VB DT JJ CD IN DT NNS IN DT NNP NN VBP DT JJR NN IN NN NNS .\nNigeria is Africa 's biggest oil exporter , but recent violence has forced an estimated 20 percent cut in the country 's output .\tNNP VBZ NNP POS JJS NN NN , CC JJ NN VBZ VBN DT JJ CD NN NN IN DT NN POS NN .\nA top official at the International Monetary Fund ( IMF ) says wealthy countries will need to start cutting spending and deal with huge national debts next year .\tDT JJ NN IN DT NNP NNP NNP LRB NNP RRB VBZ JJ NNS MD VB TO VB VBG NN CC NN IN JJ JJ NNS JJ NN .\nJohn Lipsky , the first deputy managing director of the IMF , said in a speech in China Sunday that stimulus spending remains appropriate in 2010 to push the global economic recovery .\tNNP NNP , DT JJ NN VBG NN IN DT NNP , VBD IN DT NN IN NNP NNP WDT NN NN VBZ JJ IN CD TO VB DT JJ JJ NN .\nBut he says wealthy nations must cut spending , increase taxes and reform pensions and health entitlements to reduce debt in 2011 .\tCC PRP VBZ JJ NNS MD VB NN , VB NNS CC VB NNS CC NN NNS TO VB NN IN CD .\nLipsky says cutting stimulus measures put in place during the economic crisis will not be enough , because the stimulus programs account for only about one percent of rich countries ' gross domestic products .\tNNP VBZ VBG NN NNS VBN IN NN IN DT JJ NN MD RB VB RB , IN DT NN NNS VBP IN RB IN CD NN IN JJ NNS POS JJ JJ NNS .\nHe estimated that government debt will be higher than annual GDP in most advanced economies by 2014 , the highest debt-to-GDP ratio since the years after World War II .\tPRP VBD IN NN NN MD VB JJR IN JJ NN IN JJS JJ NNS IN CD , DT JJS JJ NN IN DT NNS IN NNP NNP NNP .\nSouth African Wesley Moodie has reached the second round of the Legg Mason Tennis Classic in Washington .\tNNP NNP NNP NNP VBZ VBN DT JJ NN IN DT NNP NNP NNP NNP IN NNP .\nMoodie , ranked 86th in the world , needed four match points Monday to beat American Sam Querrey , 02-Jun , 07-Jun , 07-Jun .\tNNP , VBD CD IN DT NN , VBD CD NN NNS NNP TO VB JJ NNP NNP , CD , CD , CD .\nMoodie never managed a service break while Querrey fired 19 aces .\tNNP RB VBD DT NN NN IN NNP VBD CD NNS .\nBut Moodie won 10-percent more of his first-serve points to claim just his fifth win this year .\tCC NNP VBD JJ JJR IN PRP$ JJ NNS TO VB RB PRP$ JJ NN DT NN .\nMoodie next faces French sixth-seed Sebastien Grosjean .\tNNP RB VBZ JJ JJ NNP NNP .\nKenneth Carlsen of Denmark advanced past Danai Udomchoke , 06-Jan , 06-Feb .\tNNP NNP IN NNP VBD IN NNP NNP , CD , CD .\nCarlsen will face another Thai opponent , 43rd-ranked Paradorn Srichaphan , in the second round .\tNNP MD VB DT JJ NN , JJ NNP NNP , IN DT JJ NN .\nAmerican Kevin Kim ousted compatriot Scott Oudsema , 06-Jan , 06-Mar .\tNNP NNP NNP VBD NN NNP NNP , CD , CD .\nKim next plays top-seeded American James Blake , who was the runner-up last year to compatriot Andy Roddick .\tNNP JJ NNS JJ NNP NNP NNP , WP VBD DT NN JJ NN TO VB NNP NNP .\nHaitian and U.N. officials are appealing for calm following protests by Haitians who have demanded that front-runner Rene Preval be declared the winner of last week 's presidential election .\tJJ CC NNP NNS VBP VBG IN NN VBG NNS IN NNS WP VBP VBN IN NN NNP NNP VB VBN DT NN IN JJ NN POS JJ NN .\nPreval is expected to address Haiti 's citizens later Tuesday in Port-au-Prince .\tNNP VBZ VBN TO VB NNP POS NNS RB NNP IN NNP .\nOn Monday , protesters set up roadblocks , burned tires and stormed a hotel in Port-au-Prince .\tIN NNP , NNS VBD RP NNS , VBN NNS CC VBD DT NN IN NN .\nAt least one man was killed in the violence .\tIN JJS CD NN VBD VBN IN DT NN .\nWith 90 percent of votes counted , former President Preval has nearly 49 percent of the vote .\tIN CD NN IN NNS VBN , JJ NNP NNP VBZ RB CD NN IN DT NN .\nHe needs to exceed 50 percent to win outright and avoid a runoff election .\tPRP VBZ TO VB CD NN TO VB JJ CC VB DT NN NN .\nAnother former president , Leslie Manigat , is second with about 12 percent .\tDT JJ NN , NNP NNP , VBZ JJ IN RB CD NN .\nA State Department spokesman Monday said Secretary of State Condoleezza Rice and U.N. Secretary-General Kofi Annan Monday have discussed the importance of Haitian citizens respecting the election process .\tDT NNP NNP NN NNP VBD NNP IN NNP NNP NNP CC NNP NNP NNP NNP NNP VBP VBN DT NN IN JJ NNS VBG DT NN NN .\nSaudi Arabia and most Gulf Arab states have announced they will celebrate the Muslim holiday of Eid al-Fitr on Friday to mark the end of the holy fasting month of Ramadan .\tNNP NNP CC RBS NNP NNP NNS VBP VBN PRP MD VB DT NNP NN IN NNP NNP IN NNP TO VB DT NN IN DT JJ JJ NN IN NNP .\nReligious councils in Saudi Arabia , the United Arab Emirates , Kuwait and other Arab states said the moon 's crescent was not sighted after nightfall Wednesday , meaning there will be one more day of fasting before the holy month comes to an end .\tJJ NNS IN NNP NNP , DT NNP NNP NNPS , NNP CC JJ JJ NNS VBD DT NN POS NN VBD RB VBN IN NN NNP , VBG EX MD VB CD JJR NN IN VBG IN DT JJ NN VBZ TO DT NN .\nMuslims scan the sky at night in search of the new moon to proclaim the start of the month in Islam 's lunar calendar .\tNNPS VBP DT NN IN NN IN NN IN DT JJ NN TO VB DT NN IN DT NN IN NNP POS NN NN .\nLike most major Islamic events , the start of the Eid festival depends on a lunar sighting .\tIN JJS JJ JJ NNS , DT NN IN DT NNP NN VBZ IN DT NN NN .\nThe timing of Eid can vary in different countries accordingly .\tDT NN IN NNP MD VB IN JJ NNS RB .\nEid al-Fitr celebrates the purification achieved by a month of sunrise-to-sunset fasting , one of the five pillars of Islam , and is marked by several days of festivities .\tNNP NNP VBZ DT NN VBN IN DT NN IN JJ NN , CD IN DT CD NNS IN NNP , CC VBZ VBN IN JJ NNS IN NNS .\nCalling the press an ' agent of change , ' United Nations Secretary-General Kofi Annan marked the thirteenth annual World Press Freedom Day by declaring his support of the universal right to freedom of expression .\tVBG DT NN DT `` NN IN NN , `` NNP NNP NNP NNP NNP VBD DT JJ JJ NNP NNP NNP NNP IN VBG PRP$ NN IN DT JJ NN TO NN IN NN .\nAccording to the international group Committee to Protect Journalists , press freedom in Africa has deteriorated in the past year .\tVBG TO DT JJ NN NNP TO VB NNS , NN NN IN NNP VBZ VBN IN DT JJ NN .\nThe group 's Africa Coordinator , Julia Crawford , says Eritrea and Equatorial Guinea are among the top 10 countries in the world that censor their journalists the most .\tDT NN POS NNP NNP , NNP NNP , VBZ NNP CC NNP NNP VBP IN DT JJ CD NNS IN DT NN WDT VBP PRP$ NNS DT JJS .\nBut she also criticized Ethiopia for the recent jailings of reporters .\tCC PRP RB VBD NNP IN DT JJ NNS IN NNS .\nCrawford says there are some countries , like Liberia , where press freedom is more hopeful .\tNNP VBZ EX VBP DT NNS , IN NNP , WRB NN NN VBZ RBR JJ .\nShe notes that freedom of the press is an essential foundation for democracy .\tPRP VBZ IN NN IN DT NN VBZ DT JJ NN IN NN .\nThe Committee to Protect Journalists says 47 journalists were killed around the world in 2005 , and 11 have lost their lives so far this year .\tDT NNP TO VB NNS VBZ CD NNS VBD VBN IN DT NN IN CD , CC CD VBP VBN PRP$ NNS RB RB DT NN .\nA new survey says more Afghans think their country is heading in the right direction , even though many believe it is still plagued by a lack of security .\tDT JJ NN VBZ RBR NNS VBP PRP$ NN VBZ VBG IN DT JJ NN , RB IN JJ VBP PRP VBZ RB VBN IN DT NN IN NN .\nIn a poll released Tuesday by the Asia Foundation , 47 percent of those surveyed said Afghanistan is on the right track .\tIN DT NN VBN NNP IN DT NNP NNP , CD NN IN DT VBN VBD NNP VBZ IN DT JJ NN .\nThat is up from 42 percent in 2009 .\tDT VBZ RB IN CD NN IN CD .\nA lack of security was listed as the nation 's top problem , followed by unemployment and corruption .\tDT NN IN NN VBD VBN IN DT NN POS JJ NN , VBN IN NN CC NN .\nThis year 's survey showed a large jump in the number of Afghans who say they support efforts to negotiate with armed groups .\tDT NN POS NN VBD DT JJ NN IN DT NN IN NNS WP VBP PRP VBP NNS TO VB IN JJ NNS .\nMore than 83 percent of those surveyed said they back talks with insurgents , up from 71 percent in 2009 .\tJJR IN CD NN IN DT VBN VBD PRP VBP NNS IN NNS , RB IN CD NN IN CD .\nThe Asia Foundation surveyed more than 6,400 Afghan adults in June and July .\tDT NNP NNP VBD JJR IN CD JJ NNS IN NNP CC NNP .\nFrench counter-terrorism units have detained at least 10 people suspected of recruiting religious extremists and sending them as fighters in the insurgency in Iraq .\tJJ NN NNS VBP VBN IN JJS CD NNS VBN IN NN JJ NNS CC VBG PRP IN NNS IN DT NN IN NNP .\nFrench authorities say four of the suspects were arrested Wednesday .\tJJ NNS VBP CD IN DT NNS VBD VBN NNP .\nThey are being held with at least six others detained Monday .\tPRP VBP VBG VBN IN IN JJS CD NNS VBN NNP .\nAuthorities launched an investigation last year to determine if extremists are running a network in France recruiting Islamic militants to fight U.S. forces in Iraq .\tNNS VBD DT NN JJ NN TO VB IN NNS VBP VBG DT NN IN NNP NN NNP NNS TO VB NNP NNS IN NNP .\nFrench officials began the investigation last September after the deaths of a number of French Muslims there .\tJJ NNS VBD DT NN JJ NNP IN DT NNS IN DT NN IN JJ NNS RB .\nThe French news agency , AFP , says intelligence agents believe between 15 and 30 French nationals are combatants who have joined insurgents in Iraq .\tDT JJ NN NN , NNP , VBZ NN NNS VBP IN CD CC CD JJ NNS VBP NNS WP VBP VBN NNS IN NNP .\nFour have been killed in clashes with U.S. forces .\tCD VBP VBN VBN IN NNS IN NNP NNS .\nFormer U.S. House Majority Leader Tom DeLay has successfully petitioned to remove the judge set to preside over the politician 's campaign-finance trial .\tJJ NNP NNP NNP NNP NNP NNP VBZ RB VBN TO VB DT NN VBD TO VB IN DT NN POS NN NN .\nIn a Texas courtroom Tuesday , a retired district judge , C.W. Duncan , hearing the petition ruled in favor of the embattled Republican lawmaker .\tIN DT NNP NN NNP , DT JJ NN NN , NNP NNP , VBG DT NN VBD IN NN IN DT VBN NNP NN .\nLast week , Mr. DeLay 's lawyer filed a motion asking that the trial 's judge , Bob Perkins , be replaced because he has contributed to MoveOn.org , a political action group that has been critical of Mr. DeLay and supports Democratic Party candidates and issues .\tJJ NN , NNP NNP POS NN VBD DT NN VBG IN DT NN POS NN , NNP NNP , VB VBN IN PRP VBZ VBN TO NNP , DT JJ NN NN WDT VBZ VBN JJ IN NNP NNP CC VBZ JJ NNP NNS CC NNS .\nMr. DeLay and two associates are accused of illegally funneling corporate donations to candidates .\tNNP NNP CC CD NNS VBP VBN IN RB VBG JJ NNS TO NNS .\nAll three have denied any wrongdoing .\tDT CD VBP VBN DT NN .\nMr. DeLay was forced to step down from the majority leader 's post under House rules , but retains his congressional seat .\tNNP NNP VBD VBN TO VB RB IN DT NN NN POS NN IN NNP NNS , CC VBZ PRP$ JJ NN .\nIraqi officials say a car bomb in central Baghdad has killed at least 14 people and wounded at least 64 others .\tJJ NNS VBP DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD NNS .\nThey say a woman and a child are among the dead from Friday 's blast in a crowded market .\tPRP VBP DT NN CC DT NN VBP IN DT NN IN NNP POS NN IN DT JJ NN .\nIn other developments , the U.S. military says coalition forces killed five militants and detained 14 suspects during operations against al-Qaida in Iraq .\tIN JJ NNS , DT NNP NN VBZ NN NNS VBD CD NNS CC VBD CD NNS IN NNS IN NNP IN NNP .\nOfficials say the raid in Muqdadiyah targeted individuals associated with a network involved in numerous engagements with coalition forces .\tNNS VBP DT NN IN NNP JJ NNS VBN IN DT NN VBN IN JJ NNS IN NN NNS .\nThe military says coalition forces also conducted operations near Salman Pak , Samarra and Baghdad .\tDT JJ VBZ NN NNS RB VBN NNS IN NNP NNP , NNP CC NNP .\nChilean authorities have arrested the wife and four children of former dictator Augusto Pinochet on tax evasion charges .\tJJ NNS VBP VBN DT NN CC CD NNS IN JJ NN NNP NNP IN NN NN NNS .\nA judge ordered the arrest of Lucia Hiriart and her children Monday as part of an investigation into millions of dollars kept in bank accounts abroad .\tDT NN VBD DT NN IN NNP NNP CC PRP$ NNS NNP IN NN IN DT NN IN NNS IN NNS VBN IN NN NNS RB .\nGeneral Pinochet has been indicted for tax fraud for allegedly hiding $ 27 million in foreign bank accounts .\tNNP NNP VBZ VBN VBN IN NN NN IN RB VBG $ CD CD IN JJ NN NNS .\nPinochet also faces human rights charges related to ' Operation Colombo ' , in which some 119 political opponents disappeared during the former dictator 's rule in the mid-1970s .\tNNP RB VBZ JJ NNS NNS VBN TO `` NNP NNP `` , IN WDT DT CD JJ NNS VBN IN DT JJ NN POS NN IN DT NNS .\nHis lawyers say he is not healthy enough to stand trial , but court-ordered doctors say he is fit enough to do so .\tPRP$ NNS VBP PRP VBZ RB JJ RB TO VB NN , CC JJ NNS VBP PRP VBZ JJ RB TO VB RB .\nMore than two million Muslim pilgrims on the ritual journey known as Hajj are Saturday performing a ritual stoning ceremony in Mina , Saudi Arabia .\tJJR IN CD CD NNP NNS IN DT JJ NN VBN IN NNP VBP NNP VBG DT JJ NN NN IN NNP , NNP NNP .\nMillions of people crowded into the holy site to throw small stones at walls called jamarat , as part of a ritual representing the symbolic stoning of the devil .\tNNS IN NNS VBN IN DT JJ NN TO VB JJ NNS IN NNS VBN NN , IN NN IN DT JJ VBG DT JJ NN IN DT NN .\nMore than 360 worshippers died in a stampede during the stoning ritual a year ago .\tJJR IN CD NNS VBD IN DT NN IN DT VBG NN DT NN RB .\nSaudi authorities have spent more than $ 1 billion renovating the site to make it safe .\tJJ NNS VBP VBN JJR IN $ CD CD VBG DT NN TO VB PRP JJ .\nThe Hajj began Thursday under heavy security .\tDT NNP VBD NNP IN JJ NN .\nThe grueling ritual is a duty for every able-bodied Muslim who can afford to make the trip .\tDT JJ NN VBZ DT NN IN DT JJ NN WP MD VB TO VB DT NN .\nEach year pilgrims wearing white robes , symbolizing equality , converge on Islamic holy sites in Saudi Arabia for five days of rituals , prayer and communion with fellow Muslims .\tDT NN VBZ VBG JJ NNS , VBG NN , NN IN JJ JJ NNS IN NNP NNP IN CD NNS IN NNS , NN CC NN IN JJ NNPS .\nIraqi officials say two Iraqi policemen and two civilians have been mistakenly killed by U.S. troops after a U.S. convoy was bombed south of Baghdad .\tJJ NNS VBP CD JJ NNS CC CD NNS VBP VBN RB VBN IN NNP NNS IN DT NNP NN VBD VBN RB IN NNP .\nU.S. military officials have not commented on the incident , which the Iraqi Interior Ministry said occurred late Saturday in an area known as the triangle of death .\tNNP JJ NNS VBP RB VBN IN DT NN , WDT DT JJ NNP NNP VBD VBD JJ NNP IN DT NN VBN IN DT NN IN NN .\nIn a separate incident , U.S. authorities have expressed deep regret for the mistaken bombing Saturday of a house near the northern city of Mosul .\tIN DT JJ NN , NNP NNS VBP VBN JJ NN IN DT NN VBG NNP IN DT NN IN DT JJ NN IN NNP .\nU.S. officials say five people were killed when U.S. airstrikes hit the wrong house .\tNNP NNS VBP CD NNS VBD VBN WRB NNP VBZ VB DT JJ NN .\nWitnesses and journalists say 14 were killed .\tNNS CC NNS VBP CD VBD VBN .\nU.S. officials say a probe is continuing .\tNNP NNS VBP DT NN VBZ VBG .\nMeanwhile , authorities say seven Ukrainians and a Kazakh soldier were killed Sunday while trying to detonate an ammunition cache southwest of the capital , in Wasit province .\tRB , NNS VBP CD NNS CC DT JJ NN VBD VBN NNP IN VBG TO VB DT NN NN NN IN DT NN , IN NNP NN .\nElsewhere , police in Samarra say assassins have gunned down the city 's deputy police chief in a drive-by shooting .\tRB , NNS IN NNP VBP NNS VBP VBN RP DT NN POS NN NN NN IN DT JJ NN .\nThousands of Ugandans turned out today for the official state funeral of the country 's founding father and two-time president , Milton Obote .\tNNS IN NNS VBD RP NN IN DT JJ NN NN IN DT NN POS JJ NN CC JJ NN , NNP NNP .\nThe managing editor of the daily Monitor newspaper in Kampala , Peter Mwesige , says it was attended by government officials , political supporters and relatives of the former leader .\tDT NN NN IN DT JJ NNP NN IN NNP , NNP NNP , VBZ PRP VBD VBN IN NN NNS , JJ NNS CC NNS IN DT JJ NN .\nBut he told VOA reporter Shaka Ssali that Ugandan president Yoweri Museveni was not there .\tCC PRP VBD NNP NN NNP NNP IN JJ NN NNP NNP VBD RB RB .\nThe day was not declared a national public holiday , which to some is a source of controversy .\tDT NN VBD RB VBN DT JJ JJ NN , WDT TO DT VBZ DT NN IN NN .\nDr. Obote 's coffin is now on a tour of several Ugandan towns .\tNNP NNP VBZ NN VBZ RB IN DT NN IN JJ JJ NNS .\nOn Monday he will be buried at his ancestral home in northern Uganda .\tIN NNP PRP MD VB VBN IN PRP$ JJ NN IN JJ NNP .\nThe 81-year-old leader died of kidney failure in South Africa last week .\tDT JJ NN VBD IN NN NN IN NNP NNP JJ NN .\nHe was toppled from power in 1985 and spent the rest of his life in exile in Zambia .\tPRP VBD VBN IN NN IN CD CC VBD DT NN IN PRP$ NN IN NN IN NNP .\nPortugal 's two biggest unions have launched a day of strikes to protest planned austerity measures .\tNNP POS CD JJS NNS VBP VBN DT NN IN NNS TO VB JJ NN NNS .\nThe strikes Wednesday affected the transport sector , grounding flights and causing the cancelation of some bus and train services .\tDT NNS NNP VBD DT NN NN , VBG NNS CC VBG DT NN IN DT NN CC NN NNS .\nBanking services and other businesses , including an automotive plant were also affected .\tNNP NNS CC JJ NNS , VBG DT JJ NN VBD RB VBN .\nUnions , representing both public and private sector workers , expected the stoppage to be the biggest in 20 years .\tNNS , VBG DT JJ CC JJ NN NNS , VBD DT NN TO VB DT JJS IN CD NNS .\nThe government proposes to address a budget crisis by slashing spending , including wage cuts for public workers .\tDT NN VBZ TO VB DT NN NN IN VBG NN , VBG NN NNS IN JJ NNS .\nEuropean Council President Herman van Rompuy said Tuesday Portugal does not need the kind of financial bailout the European Union is discussing with Ireland .\tJJ NNP NNP NNP NNP NNP VBD NNP NNP VBZ RB VB DT NN IN JJ NN DT NNP NNP VBZ VBG IN NNP .\nHe said Portugal 's banks are well capitalized , and that the country has not experienced the type of housing market collapse that has affected other economies .\tPRP VBD NNP POS NNS VBP RB VBN , CC IN DT NN VBZ RB VBN DT NN IN NN NN NN WDT VBZ VBN JJ NNS .\nBritish police have been out in force in Edinburgh , Scotland , Monday , where demonstrators have begun protesting the G-Eight conference of industrialized nations that opens Wednesday .\tJJ NNS VBP VBN RP IN NN IN NNP , NNP , NNP , WRB NNS VBP VBN VBG DT JJ NN IN JJ NNS WDT VBZ NNP .\nAn undetermined number of arrests were reported after some of the protesters scuffled with police .\tDT JJ NN IN NNS VBD VBN IN DT IN DT NNS VBD IN NN .\nThere were no reports of serious violence .\tEX VBD DT NNS IN JJ NN .\nAdvocates of several causes have descended to promote their causes , including representatives from anti-military , anti-nuclear , and anti-globalization groups .\tNNS IN JJ NNS VBP VBN TO VB PRP$ NNS , VBG NNS IN JJ , JJ , CC JJ NNS .\nThe pro-reunification party in Cyprus ' Turkish enclave has scored a strong victory in parliamentary elections , but not enough to gain an outright majority .\tDT JJ NN IN NNP POS JJ NN VBZ VBN DT JJ NN IN JJ NNS , CC RB RB TO VB DT JJ NN .\nThe Republican Turkish Party of Prime Minister Mehmet Ali Talat secured 44 percent of the vote in Sunday 's election , well ahead of its opponent , the National Unity Party of former Prime Minister Dervis Eroglu .\tDT NNP NNP NNP IN NNP NNP NNP NNP NNP VBD CD NN IN DT NN IN NNP POS NN , RB RB IN PRP$ NN , DT NNP NNP NNP IN JJ NNP NNP NNP NNP .\nMr. Talat , whose party won 24 of 50 seats in parliament , favors a United Nations plan to reunify the 30-year-old breakaway Turkish Cypriot enclave with the Greek Cypriot government .\tNNP NNP , WP$ NN VBD CD IN CD NNS IN NN , VBZ DT NNP NNP NN TO VB DT JJ NN JJ JJ NN IN DT JJ JJ NN .\nMr. Eroglu strongly opposes the UN plan .\tNNP NNP RB VBZ DT NNP NN .\nGreek Cypriots rejected reunification last year , but were allowed to join the European Union under a complicated set of rules for the divided island .\tJJ NNS VBD NN JJ NN , CC VBD VBN TO VB DT NNP NNP IN DT JJ NN IN NNS IN DT VBN NN .\nSunday 's vote was closely watched in Turkey , whose chances for EU membership hinge on resolution of the Cyprus dispute .\tNNP POS NN VBD RB VBN IN NNP , WP$ NNS IN NNP NN NN IN NN IN DT NNP NN .\nIndian authorities say an explosion set off by Maoist rebels in central Chhattisgarh state has killed 13 civilians and wounded several others .\tJJ NNS VBP DT NN VBN RP IN NNP NNS IN JJ NNP NN VBZ VBN CD NNS CC VBN JJ NNS .\nLocal police say the incident took place late Friday south of the state capital , Raipur , and that the blast was most likely intended for security forces .\tJJ NNS VBP DT NN VBD NN JJ NNP NN IN DT NN NN , NNP , CC IN DT NN VBD RBS JJ VBN IN NN NNS .\nThe Maoists have stepped up attacks on police and government supporters in the area in recent months .\tDT NNPS VBP VBN RP NNS IN NN CC NN NNS IN DT NN IN JJ NNS .\nLast week , they seized a train in neighboring eastern Jharkhand state , holding some 200 people on board at gunpoint for several hours before leaving .\tJJ NN , PRP VBD DT NN IN VBG JJ NNP NN , VBG DT CD NNS IN NN IN NN IN JJ NNS IN VBG .\nThe rebels say they are fighting on behalf of poor people and landless laborers .\tDT NNS VBP PRP VBP VBG IN NN IN JJ NNS CC JJ NNS .\nA series of discouraging reports on the U.S. economy has brought sharp criticism from the Democrat who heads a key economic committee .\tDT NN IN JJ NNS IN DT NNP NN VBZ VBN JJ NN IN DT NNP WP VBZ DT JJ JJ NN .\nSenator Charles Schumer said Friday reports showing a declining job market and record-high foreclosures are more evidence that the U.S. economy is headed for recession .\tNNP NNP NNP VBD NNP NNS VBG DT VBG NN NN CC JJ NNS VBP JJR NN IN DT NNP NN VBZ VBN IN NN .\nSchumer accuses the Bush administration of doing far too little to fend off the economic crisis .\tNNP VBZ DT NNP NN IN VBG RB RB JJ TO VB RP DT JJ NN .\nWhite House spokesman Tony Fratto says the economy is in for a ' difficult quarter , ' but notes that the new stimulus plan is just getting underway .\tNNP NNP NN NNP NNP VBZ DT NN VBZ IN IN DT `` JJ NN , `` CC VBZ IN DT JJ NN NN VBZ RB VBG NN .\nHe says it should restore economic growth .\tPRP VBZ PRP MD VB JJ NN .\nThe world 's stock markets posted mixed results Wednesday after a week of turmoil that saw steep losses and some recovery .\tDT NN POS NN NNS VBD JJ NNS NNP IN DT NN IN NN WDT VBD JJ NNS CC DT NN .\nThe major U.S. stock market indexes lost around three-tenths of a percent after rising oil prices discouraged traders .\tDT JJ NNP NN NN NNS VBD IN NNS IN DT NN IN VBG NN NNS VBD NNS .\nEuropean stock market indexes moved up two-tenths of a percent or more .\tJJ NN NN NNS VBD RP NNS IN DT NN CC JJR .\nDealers say many investors are concerned that the global market sell-off that began last week may resume .\tNNS VBP JJ NNS VBP VBN IN DT JJ NN NN WDT VBD JJ NN MD VB .\nEarlier in Asia , major indices fell almost one percent in Mumbai and Hong Kong , while Tokyo was down half-a-percent at the close .\tRBR IN NNP , JJ NNS VBD RB CD NN IN NNP CC NNP NNP , IN NNP VBD RB JJ IN DT NN .\nChina 's official Xinhua news agency says an HIV-positive man in northern China has infected at least 18 people with the virus by repeatedly donating blood before knowing he had the disease .\tNNP POS JJ NNP NN NN VBZ DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NNS IN DT NN IN RB VBG NN IN VBG PRP VBD DT NN .\nThree of the blood recipients have died .\tCD IN DT NN NNS VBP VBN .\nXinhua says the man made 15 blood donations in Jilin province 's Dehui city between January of 2003 and June of 2004 .\tNNP VBZ DT NN VBD CD NN NNS IN NNP NN POS NNP NN IN NNP IN CD CC NNP IN CD .\nThe report says his blood was apparently never tested for the deadly virus .\tDT NN VBZ PRP$ NN VBD RB RB VBN IN DT JJ NN .\nChina 's state media say authorities are investigating the case , and that at least 11 workers of the city 's central blood bank have been detained .\tNNP POS NN NNS VBP NNS VBP VBG DT NN , CC IN IN JJS CD NNS IN DT NN POS JJ NN NN VBP VBN VBN .\nChina estimates 8,40,000 people on the mainland are HIV-positive , although some experts suspect there are many more .\tNNP VBZ CD NNS IN DT NN VBP JJ , IN DT NNS VBP EX VBP JJ JJR .\nThe World Health Organization says China could have 10 million people infected by 2010 .\tDT NNP NNP NNP VBZ NNP MD VB CD CD NNS VBN IN CD .\nIsraeli Prime Minister Ariel Sharon 's Kadima Party has named interim Prime Minister Ehud Olmert as its acting chairman to lead the party into March 28 elections .\tJJ NNP NNP NNP NNP POS NNP NNP VBZ VBN JJ NNP NNP NNP NNP IN PRP$ NN NN TO VB DT NN IN NNP CD NNS .\nA Kadima Party statement Monday says the decision was taken because of Mr. Sharon 's medical condition .\tDT NNP NNP NN NNP VBZ DT NN VBD VBN IN IN NNP NNP POS JJ NN .\nThe 77-year-old leader remains in a coma after suffering a massive stroke on January 4 .\tDT JJ NN VBZ IN DT NN IN VBG DT JJ NN IN NNP CD .\nIn another development , Israel has sent security forces to the West Bank town of Hebron following a riot by Jewish settlers protesting an eviction order for eight settler families who occupied Palestinian homes four years ago .\tIN DT NN , NNP VBZ VBN NN NNS TO DT NNP NNP NN IN NNP VBG DT NN IN JJ NNS VBG DT NN NN IN CD JJ NNS WP VBD JJ NNS CD NNS RB .\nOne Israeli soldier was wounded in the violence Saturday - the last day the families were to be allowed to leave without eviction by force .\tCD JJ NN VBD VBN IN DT NN NNP IN DT JJ NN DT NNS VBD TO VB VBN TO VB IN NN IN NN .\nAbout 400 settlers live in Hebron which has a Palestinian population of around 1,20,000 .\tIN CD NNS VBP IN NNP WDT VBZ DT JJ NN IN IN CD .\nThe U.S. Army is conducting a review of the reports it has given families on the deaths of soldiers killed in combat in Iraq and Afghanistan .\tDT NNP NNP VBZ VBG DT NN IN DT NNS PRP VBZ VBN NNS IN DT NNS IN NNS VBN IN NN IN NNP CC NNP .\nArmy officials announced on Friday that they are preparing to request that all unit commanders submit lists of their combat deaths so accounts of those deaths can be checked for accuracy .\tNNP NNS VBD IN NNP IN PRP VBP VBG TO VB IN DT NN NNS VBP NNS IN PRP$ NN NNS IN NNS IN DT NNS MD VB VBN IN NN .\nSpokesmen said Friday that about 500 of some 1,700 Army deaths in Iraq and Afghanistan have been checked already , and only a tiny fraction were found to have inaccuracies .\tNNS VBD NNP IN IN CD IN DT CD NNP NNS IN NNP CC NNP VBP VBN VBN RB , CC RB DT JJ NN VBD VBN TO VB NNS .\nThe review follows the high-profile case of former professional football player Pat Tillman who was killed by friendly fire .\tDT NN VBZ DT JJ NN IN JJ JJ NN NN NNP NNP WP VBD VBN IN JJ NN .\nThe Army initially told Tillman 's family that he died as the result of an enemy ambush .\tDT NNP RB VBD NNP POS NN IN PRP VBD IN DT NN IN DT NN NN .\nIraqi Foreign Minister Hoshyar Zebari has demanded that Iran stop what he says is its shelling of Kurdish areas in northern Iraq .\tJJ NNP NNP NNP NNP VBZ VBN IN NNP VB WP PRP VBZ VBZ PRP$ NN IN JJ NNS IN JJ NNP .\nZebari , who was in Tehran for ministerial meetings Monday , said the cross-border shelling has displaced hundreds of Kurds and threatens Iraqi relations with Iran .\tNNP , WP VBD IN NNP IN JJ NNS NNP , VBD DT JJ NN VBZ VBN NNS IN NNS CC VBZ JJ NNS IN NNP .\nIran 's deputy foreign minister , Mehdi Mostafavi , denied that Iranian forces have shelled Iraqi territory .\tNNP POS JJ JJ NN , NNP NNP , VBD IN JJ NNS VBP VBN JJ NN .\nLast week , Zebari said his country had summoned the Iranian ambassador and delivered a formal note of protest over the cross-border attacks .\tJJ NN , NNP VBD PRP$ NN VBD VBN DT JJ NN CC VBD DT JJ NN IN NN IN DT JJ NNS .\nZebari also acknowledged there are Kurdish rebels that move inside the border area in Iraq , but he said their presence does not justify the continued shelling .\tNNP RB VBD EX VBP JJ NNS WDT VBP IN DT NN NN IN NNP , CC PRP VBD PRP$ NN VBZ RB VB DT JJ NN .\nIran has accused Kurdish rebels of using Iraqi bases to launch attacks inside Iran .\tNNP VBZ VBN JJ NNS IN VBG JJ NNS TO VB NNS IN NNP .\nScientists in the United States say they believe they have discovered what makes bird flu viruses so deadly to humans .\tNNS IN DT NNP NNPS VBP PRP VBP PRP VBP VBN WP VBZ NN NN VBZ RB JJ TO NNS .\nResearchers at St. Jude Children 's Research Hospital in Memphis , Tennessee , say the culprit may be a protein found in the genes of many avian flu viruses .\tNNS IN NNP NNP NNP POS NNP NNP IN NNP , NNP , VBP DT NN MD VB DT NN VBN IN DT NNS IN JJ JJ NN NNS .\nThe scientists say this protein can attach to proteins in human cells .\tDT NNS VBP DT NN MD VB TO NNS IN JJ NNS .\nThey found the protein only in the avian flu viruses they sampled , and not in any of what are known as the human strains of the disease .\tPRP VBD DT NN RB IN DT JJ NN NNS PRP VBD , CC RB IN DT IN WP VBP VBN IN DT JJ NNS IN DT NN .\nThe researchers say this striking difference between the two viruses may explain why avian influenza is more lethal to people than human influenza .\tDT NNS VBP DT JJ NN IN DT CD NNS MD VB WRB JJ NN VBZ RBR JJ TO NNS IN JJ NN .\nThe findings are published in the journal Science .\tDT NNS VBP VBN IN DT NN NN .\nAvian flu is blamed for the global pandemic of 1918 , but not milder outbreaks later in the century .\tJJ NN VBZ VBN IN DT JJ NN IN CD , CC RB JJR NNS RB IN DT NN .\nBird flu has killed at least 81 people in East Asia and Turkey since 2003 .\tNN NN VBZ VBN IN JJS CD NNS IN NNP NNP CC NNP IN CD .\nMexican officials have razed more than 30 abandoned dwellings in a border town known as a staging ground for migrants to cross illegally into the United States .\tJJ NNS VBP VBN RBR IN CD JJ NNS IN DT NN NN VBN IN DT NN NN IN NNS TO VB RB IN DT NNP NNPS .\nThe demolitions in the town of Las Chepas , officially known as Josefa Ortiz de Dominguez , were the result of an agreement made last month between the governors of Mexico 's Chihuahua state and the U.S. state of New Mexico .\tDT NNS IN DT NN IN NNP NNP , RB VBN IN NNP NNP NNP NNP , VBD DT NN IN DT NN VBN JJ NN IN DT NNS IN NNP POS NNP NN CC DT NNP NN IN NNP NNP .\nChihuahua 's Jose Reyes Baeza and New Mexico 's Bill Richardson agreed to a plan to curb illegal immigration and drug smuggling across the Mexico-U.S. border .\tNNP POS NNP NNP NNP CC NNP NNP POS NNP NNP VBD TO DT NN TO VB JJ NN CC NN NN IN DT NNP NN .\nA Chihuahua public safety official told Reuters news agency that the demolitions represent less than half the buildings in Las Chepas , which is home to at least 50 residents .\tDT NNP JJ NN NN VBD NNP NN NN IN DT NNS VBP JJR IN PDT DT NNS IN NNP NNP , WDT VBZ NN TO IN JJS CD NNS .\nU.S.-based automaker Ford Motor Company has reported a $ 750 Million profit in the April through June quarter , breaking a nearly two-year streak of consecutive quarterly losses .\tJJ NN NNP NNP NNP VBZ VBN DT $ CD NN NN IN DT NNP IN NNP NN , VBG DT RB JJ NN IN JJ JJ NNS .\nThursday 's profit report came as a surprise to many analysts who had expected further losses from the struggling auto company .\tNNP POS NN NN VBD IN DT NN TO JJ NNS WP VBD VBN JJ NNS IN DT JJ NN NN .\nFord 's profit is attributed to increased sales worldwide , as well as the recent sale of its Aston Martin operation .\tNNP POS NN VBZ VBN TO VBN NNS NN , RB RB IN DT JJ NN IN PRP$ NNP NNP NN .\nFord Chief Executive Alan Mulally said the results are proof that an overall cost-reduction plan is working , but warned that the second half of this year will be difficult .\tNNP NNP NNP NNP NNP VBD DT NNS VBP NN IN DT JJ NN NN VBZ VBG , CC VBD IN DT JJ NN IN DT NN MD VB JJ .\nThe second-largest U.S. automaker is trying to recover from losses that totaled about $ 12.5 billion last year .\tDT JJ NNP NN VBZ VBG TO VB IN NNS WDT VBD IN $ CD CD JJ NN .\nTo regain profitability , the company launched a major restructuring plan that involves closing 16 factories and eliminating up to 44,000 jobs .\tTO VB NN , DT NN VBD DT JJ NN NN WDT VBZ VBG CD NNS CC VBG RP TO CD NNS .\nEgyptian police have killed a man they say was the leader of an Islamist militant group blamed for several attacks on tourist towns last month .\tJJ NNS VBP VBN DT NN PRP VBP VBD DT NN IN DT NNP NN NN VBN IN JJ NNS IN NN NNS JJ NN .\nSecurity officials said Tuesday that Nasser Khamis el-Mallahi was killed in a firefight near the North Sinai town of El-Arish .\tNNP NNS VBD NNP IN NNP NNP NNP VBD VBN IN DT NN IN DT NNP NNP NN IN JJ .\nOne accomplice was captured .\tCD NN VBD VBN .\nPolice say el-Mallahi headed Tawhid wal Jihad , which has been blamed for a series of attacks against tourist resorts in the Sinai since 2004 .\tNNS VBP NNP VBD NNP NNP NNP , WDT VBZ VBN VBN IN DT NN IN NNS IN NN NNS IN DT NNP IN CD .\nThe attacks have killed at least 117 people .\tDT NNS VBP VBN IN JJS CD NNS .\nThe most recent occurred last month in Dahab , when three near-simultaneous explosions killed at least 19 people .\tDT RBS JJ VBN JJ NN IN NNP , WRB CD JJ NNS VBD IN JJS CD NNS .\nAbout 80 others were wounded in the blasts .\tIN CD NNS VBD VBN IN DT NNS .\nIndia 's cricket team has compiled an impressive total of 352-3 after the opening day of the second test against Pakistan in Kolkata .\tNNP POS NN NN VBZ VBN DT JJ NN IN CD IN DT NN NN IN DT JJ NN IN NNP IN NNP .\nWasim Jaffer led the way Friday with an aggressive 192 not out as he aims for his second double-century in 24 tests .\tNNP NNP VBD DT NN NNP IN DT JJ CD RB RP IN PRP VBZ IN PRP$ JJ NN IN CD NNS .\nThe opening batsman struck 32 boundaries off 255 deliveries .\tDT NN NN VBD CD NNS IN CD NNS .\nJaffer shared prosperous partnerships with Rahul Dravid and Sachin Tendulkar after opener Dinesh Kartik fell for one in the second over .\tNNP VBD JJ NNS IN NNP NNP CC NNP NNP IN NNP NNP NNP VBD IN CD IN DT NN IN .\nJaffer anchored the second-wicket partnership of 136 with Dravid , who had 50 , and then a 175-run stand for the third wicket with Tendulkar , who tallied 82 .\tNNP VBD DT JJ NN IN CD IN NNP , WP VBD CD , CC RB DT JJ NN IN DT JJ NN IN NNP , WP VBD CD .\nDravid 's 117-ball knock contained seven boundaries .\tNNP POS JJ NN VBD CD NNS .\nIndia won the opening test of this three-match series by six wickets .\tNNP VBD DT NN NN IN DT JJ NN IN CD NNS .\nIndian troops say they have killed six more suspected militants in Indian-controlled Kashmir , bringing the death toll from several days of fierce gunbattles to 25 .\tJJ NNS VBP PRP VBP VBN CD JJR JJ NNS IN JJ NNP , VBG DT NN NN IN JJ NNS IN JJ NNS TO CD .\nIndian army spokesman Lieutenant Colonel J.S. Brar said the fighting ended Tuesday , with eight soldiers and 17 militants , killed since Friday in the Kupwara district .\tJJ NN NN NNP NNP NNP NNP VBD DT NN VBD NNP , IN CD NNS CC CD NNS , VBD IN NNP IN DT NNP NN .\nThe area is close to the Line of Control that divides Kashmir between India and Pakistan .\tDT NN VBZ RB TO DT NN IN NNP WDT VBZ NNP IN NNP CC NNP .\nAn army spokesman says troops began flushing out militants from the Shamsbari area Friday , sparking the longest and deadliest clash in the disputed region in recent months .\tDT NN NN VBZ NNS VBD VBG RP NNS IN DT NNP NN NNP , VBG DT JJS CC JJS NN IN DT JJ NN IN JJ NNS .\nMuslim separatists in Kashmir have been fighting for independence or a merger with Pakistan since 1989 .\tNNP NNS IN NNP VBP VBN VBG IN NN CC DT NN IN NNP IN CD .\nTens of thousands of people have been killed in the violence .\tNNS IN NNS IN NNS VBP VBN VBN IN DT NN .\nIndia and Pakistan began a slowly-implemented peace process in 2004 .\tNNP CC NNP VBD DT JJ NN NN IN CD .\nTwo of their three wars have been fought over Kashmir .\tCD IN PRP$ CD NNS VBP VBN VBN IN NNP .\nAuthorities in Indian Kashmir say militants have raided a police station , killing two officers and stealing a cache of weapons .\tNNS IN JJ NNP VBP NNS VBP VBN DT NN NN , VBG CD NNS CC VBG DT NN IN NNS .\nPolice officials say at least one officer assisted the group of militants in the attack late Friday in the remote Doda district .\tNN NNS VBP IN JJS CD NN VBD DT NN IN NNS IN DT NN JJ NNP IN DT JJ NNP NN .\nPolice gave few details of the attack .\tNNP VBD JJ NNS IN DT NN .\nOfficials say security forces are searching for the attackers , who fled after the raid .\tNNS VBP NN NNS VBP VBG IN DT NNS , WP VBD IN DT NN .\nKashmir is in the midst of a 17-year insurgency that has claimed more than 45,000 lives .\tNNP VBZ IN DT NN IN DT JJ NN WDT VBZ VBN JJR IN CD NNS .\nVarious rebel groups are fighting for an independent Kashmir or its merger with Pakistan .\tJJ NN NNS VBP VBG IN DT JJ NNP CC PRP$ NN IN NNP .\nFormer Presidents Bill Clinton and George Bush have started a nationwide fundraising campaign to help hurricane victims .\tJJ NNS NNP NNP CC NNP NNP VBP VBN DT JJ NN NN TO VB NN NNS .\nThe former presidents announced the Bush-Clinton Katrina Fund at a news conference in Houston , Texas Monday .\tDT JJ NNS VBD DT NNP NNP NNP IN DT NN NN IN NNP , NNP NNP .\nThe money raised will go to the governors of Louisiana , Mississippi and Alabama for disaster relief and medical services .\tDT NN VBN MD VB TO DT NNS IN NNP , NNP CC NNP IN NN NN CC JJ NNS .\nFormer President Clinton said Congress must focus on what action it can take to alleviate the suffering of those displaced - such as providing incentives for firms to hire evacuees .\tJJ NNP NNP VBD NNP MD VB IN WP NN PRP MD VB TO VB DT NN IN DT JJ : JJ IN VBG NNS IN NNS TO VB NNS .\nPresident Bush 's father , former President Bush said retail giant Wal-Mart will immediately give jobs to their employees who have to re-locate because of the hurricane .\tNNP NNP POS NN , JJ NNP NNP VBD JJ NN NNP MD RB VB NNS TO PRP$ NNS WP VBP TO VB IN IN DT NN .\nWal-Mart is also contributing $ 23 million to the fund .\tNNP VBZ RB VBG $ CD CD TO DT NN .\nMr. Clinton and Mr. Bush , once political rivals , teamed up earlier this year to coordinate the U.S. fundraising drive for victims of the tsunami .\tNNP NNP CC NNP NNP , RB JJ NNS , VBD RP RBR DT NN TO VB DT NNP NN NN IN NNS IN DT NN .\nUnited Nations Secretary-General Kofi Annan says it will take up to 10 years to rebuild areas of southern Asia devastated by last week 's tsunami and earthquake .\tNNP NNP NNP NNP NNP VBZ PRP MD VB RP TO CD NNS TO VB NNS IN JJ NNP VBN IN JJ NN POS NN CC NN .\nMr. Annan says the disaster is the largest the U.N. has ever dealt with .\tNNP NNP VBZ DT NN VBZ DT JJS DT NNP VBZ RB VBN IN .\nThe tsunami wreaked havoc from Malaysia to east Africa , leaving at least 1,27,000 dead .\tDT NN VBD NN IN NNP TO JJ NNP , VBG IN JJS CD NN .\nMr. Annan will head to south Asia later this week for a summit on relief efforts .\tNNP NNP MD VB TO JJ NN RB DT NN IN DT NN IN NN NNS .\nWorld leaders attending the conference in Jakarta , Indonesia , will also make an appeal for more aid .\tNNP NNS VBG DT NN IN NNP , NNP , MD RB VB DT NN IN JJR NN .\nThe international community has pledged $ 2 billion so far .\tDT JJ NN VBZ VBN $ CD CD RB RB .\nU.S. Secretary of State Colin Powell heads to the region today to inspect damage in Thailand and Indonesia .\tNNP NNP IN NNP NNP NNP VBZ TO DT NN NN TO VB NN IN NNP CC NNP .\nHe told NBC television the $ 350 million pledged by the United States may have have to be increased , saying the catastrophe is one of the worst the world has ever seen .\tPRP VBD NNP NN DT $ CD CD VBN IN DT NNP NNPS MD VB VBP TO VB VBN , VBG DT NN VBZ CD IN DT JJS DT NN VBZ RB VBN .\nIraqi officials say Turkish warplanes have bombed targets in the Kurdish autonomous region of northern Iraq , wounding one civilian .\tJJ NNS VBP JJ NNS VBP VBN NNS IN DT NNP JJ NN IN JJ NNP , VBG CD JJ .\nThe officials say Turkey bombed the village of Sidakan near the Iranian border Saturday .\tDT NNS VBP NNP VBD DT NN IN NNP IN DT JJ NN NNP .\nThere was no immediate confirmation of the strike from the Turkish military .\tEX VBD DT JJ NN IN DT NN IN DT JJ NN .\nClashes between Turks and Kurds have increased since the Kurdistan Workers ' Party , or PKK , called off a yearlong cease-fire in June .\tNNS IN NNS CC NNPS VBP VBN IN DT NNP NNP POS NNP , CC NNP , VBD RP DT JJ NN IN NNP .\nThe group cited repeated Turkish military attacks for ending the truce .\tDT NN VBD VBN JJ JJ NNS IN VBG DT NN .\nThe PKK is fighting for Kurdish autonomy in southeastern Turkey , and has bases in northern Iraq .\tDT NNP VBZ VBG IN NNP NN IN JJ NNP , CC VBZ NNS IN JJ NNP .\nPalestinian security forces have begun early voting for parliamentary candidates , in order to be free for duty during the official polling time next week .\tJJ NN NNS VBP VBN JJ NN IN JJ NNS , IN NN TO VB JJ IN NN IN DT JJ NN NN JJ NN .\nNearly 60,000 security personnel are eligible to vote through Monday .\tRB CD NN NNS VBP JJ TO VB IN NNP .\nThey will be deployed in the Palestinian territories during Wednesday 's parliamentary elections .\tPRP MD VB VBN IN DT JJ NNS IN NNP POS JJ NNS .\nThe ruling Fatah party is facing stiff competition from its chief rival , the Islamic militant group Hamas , for the 132 seats in the Palestinian parliament .\tDT NN NNP NN VBZ VBG JJ NN IN PRP$ NN NN , DT NNP JJ NN NNP , IN DT CD NNS IN DT JJ NN .\nA new Palestinian opinion poll shows Fatah with a seven-point lead over Hamas , while another survey puts the two groups in a virtual tie .\tDT JJ JJ NN NN VBZ NNP IN DT JJ NN IN NNP , IN DT NN VBZ DT CD NNS IN DT JJ NN .\nHamas is taking part in the Palestinian legislative elections for the first time .\tNNP VBZ VBG NN IN DT JJ JJ NNS IN DT JJ NN .\nIsrael 's Cabinet now says it will allow Arabs in East Jerusalem to vote for the Palestinian parliament , but will not permit candidates from Hamas to be on Jerusalem ballots .\tNNP POS NNP RB VBZ PRP MD VB NNS IN NNP NNP TO VB IN DT JJ NN , CC MD RB VB NNS IN NNP TO VB IN NNP NNS .\nShuttle astronauts installed part of cooling system on International Space Station .\tNN NNS VBD NN IN VBG NN IN NNP NNP NNP .\nThe U.S. space agency NASA says two astronauts from the shuttle Atlantis have completed a spacewalk to install part of a cooling system on the International Space Station .\tDT NNP NN NN NNP VBZ CD NNS IN DT NN NNS VBP VBN DT NN TO VB NN IN DT NN NN IN DT NNP NNP NNP .\nAstronauts Rex Walheim and Hans Schlegel installed a nitrogen tank on the orbital outpost .\tNNS NNP NNP CC NNP NNP VBD DT NN NN IN DT JJ NN .\nThe outing Wednesday lasted just over six-and-a-half hours .\tDT NN NNP VBD RB IN JJ NNS .\nSchlegel , a German , missed a previous spacewalk due to an undisclosed illness .\tNNP , DT NN , VBD DT JJ NN JJ TO DT JJ NN .\nOn Monday , two astronauts installed a European science laboratory with help from crewmates inside the space station .\tIN NNP , CD NNS VBD DT JJ NN NN IN NN IN NNS IN DT NN NN .\nCrewmembers set up electrical and data lines linking the Columbus laboratory to the space station before European astronaut Leopold Eyharts of France briefly floated inside the module for the first time .\tNNS VBD RP JJ CC NNS NNS VBG DT NN NN TO DT NN NN IN JJ NN NNP NNP IN NNP RB VBD IN DT NN IN DT JJ NN .\nAtlantis will remain at the space station until at least Sunday .\tNNP MD VB IN DT NN NN IN IN JJS NNP .\nPresident Bush has appealed for Americans to be patient with the military mission in Iraq , as poll numbers continue to show most of the country does not approve of the president 's handling of the war .\tNNP NNP VBZ VBN IN NNS TO VB JJ IN DT JJ NN IN NNP , IN NN NNS VBP TO VB JJS IN DT NN VBZ RB VB IN DT NN POS NN IN DT NN .\nMr. Bush said in his weekly radio address Saturday that the effort in Iraq and the broader Middle East will require more time , sacrifice and continued resolve .\tNNP NNP VBD IN PRP$ JJ NN NN NNP IN DT NN IN NNP CC DT JJR NNP NNP MD VB JJR NN , NN CC JJ NN .\nHe praised the efforts of Iraqi leaders who are trying to agree on a constitution .\tPRP VBD DT NNS IN JJ NNS WP VBP VBG TO VB IN DT NN .\nIraqi lawmakers missed several deadlines this week for completing a draft constitution .\tJJ NNS VBD JJ NNS DT NN IN VBG DT NN NN .\nMr. Bush also used his radio address to hail what he called Israel 's ' courageous and painful ' dismantling of Jewish settlements from Gaza and parts of the West Bank .\tNNP NNP RB VBD PRP$ NN NN TO VB WP PRP VBD NNP POS `` JJ CC JJ `` NN IN JJ NNS IN NNP CC NNS IN DT NNP NNP .\nHe urged Palestinians to now show the world they can fight terrorism .\tPRP VBD NNS TO RB VB DT NN PRP MD VB NN .\nMobile phone maker Sony Ericsson has signed an $ 88 million deal to sponsor the Women 's Tennis Association tour .\tNNP NN NN NNP NNP VBZ VBN DT $ CD CD NN TO VB DT NNP POS NNP NNP NN .\nThe deal announced Wednesday is a six-year agreement , and gives the tour a global sponsor for the first time in two years .\tDT NN VBD NNP VBZ DT JJ NN , CC VBZ DT NN DT JJ NN IN DT JJ NN IN CD NNS .\nSony Ericsson will get to put its logos on nets at Tour events , starting Monday at the Sydney International tournament .\tNNP NNP MD VB TO VB PRP$ NNS IN NNS IN NNP NNS , VBG NNP IN DT NNP NNP NN .\nThe season-ending event will now be called the Sony Ericsson WTA Tour championships .\tDT JJ NN MD RB VB VBN DT NNP NNP NNP NNP NNS .\nThe deal will also bring advanced technology to the women 's tour , including handsets for chair umpires that will allow match scores to go directly to the Internet .\tDT NN MD RB VB JJ NN TO DT NNS POS NN , VBG NNS IN NN NNS WDT MD VB NN NNS TO VB RB TO DT NNP .\nTournament prize money is not expected to increase this season as a result of the deal .\tNNP NN NN VBZ RB VBN TO VB DT NN IN DT NN IN DT NN .\nA Burmese dissident living in the United States says the Burmese government is conducting a smear campaign against him .\tDT JJ NN VBG IN DT NNP NNPS VBZ DT JJ NN VBZ VBG DT NN NN IN PRP .\nAung Din , of the lobbying group U.S. Campaign for Burma , told VOA 's Burmese service that he has been named as a suspect in last month 's bombings at three shopping centers in Rangoon , in which at least 19 people died .\tNNP NNP , IN DT NN NN NNP NNP IN NNP , VBD NNP POS JJ NN IN PRP VBZ VBN VBN IN DT NN IN JJ NN POS NNS IN CD NN NNS IN NNP , IN WDT IN JJS CD NNS VBD .\nAung Din said his family in Burma has confirmed the government is circulating leaflets accusing him of involvement in the bombing .\tNNP NNP VBD PRP$ NN IN NNP VBZ VBN DT NN VBZ VBG NNS VBG PRP IN NN IN DT NN .\nHe also said that the government briefly detained his family for questioning following the attacks .\tPRP RB VBD IN DT NN RB VBD PRP$ NN IN VBG VBG DT NNS .\nAung Din said he categorically denies any involvement in the bombings .\tNNP NNP VBD PRP RB VBZ DT NN IN DT NNS .\nHe said his lobbying group does not practice terrorism and only supports protest by peaceful means .\tPRP VBD PRP$ NN NN VBZ RB VB NN CC RB VBZ NN IN JJ NNS .\nPolice in Nepal have detained more than 50 Tibetan protesters as they prepared to demonstrate near the Chinese embassy in Kathmandu .\tNNS IN NNP VBP VBN JJR IN CD JJ NNS IN PRP VBD TO VB IN DT JJ NN IN NNP .\nThe protesters were traveling to the embassy in buses when they were stopped by police and driven to detention centers .\tDT NNS VBD VBG TO DT NN IN NNS WRB PRP VBD VBN IN NNS CC VBN TO NN NNS .\nNepal is home to some 20,000 Tibetan refugees and has seen daily , pro-Tibet demonstrations since violence erupted in Tibet in March .\tNNP VBZ NN TO DT CD JJ NNS CC VBZ VBN RB , JJ NNS IN NN VBD IN NNP IN NNP .\nPolice have been detaining the protesters but are generally freeing them the same day .\tNNS VBP VBN VBG DT NNS CC VBP RB VBG PRP DT JJ NN .\nNepal regards Tibet as part of China .\tNNP VBZ NNP IN NN IN NNP .\nHundreds of Afghan forces - backed by tanks and rocket launchers - have surrounded the country 's main high security prison after Taleban and al-Qaida prisoners seized control Saturday evening .\tNNS IN JJ NNS : VBN IN NNS CC NN NNS : VBP VBN DT NN POS JJ JJ NN NN IN NNP CC NNP NNS VBD NN NNP NN .\nAuthorities restarted negotiations Monday but warned the government could use force end the standoff .\tNNS VBD NNS NNP CC VBD DT NN MD VB NN NN DT NN .\nAfghan officials are blaming the uprising on hundreds of al-Qaida and Taleban inmates housed in the Pol-e-Charkhi jail just outside Kabul .\tJJ NNS VBP VBG DT NN IN NNS IN NNP CC NNP VBZ VBN IN DT NNP NN RB IN NNP .\nDeputy Afghan Justice Minister Mohammed Qasim Hashimzai says more than a thousand inmates armed with makeshift weapons began the revolt late Saturday .\tNNP JJ NNP NNP NNP NNP NNP VBZ JJR IN DT CD NNS VBN IN JJ NNS VBD DT NN JJ NNP .\nHe says the riots started in block two of the prison , which houses more than 13 hundred of facility 's 2,000 inmates .\tPRP VBZ DT NNS VBD IN NN CD IN DT NN , WDT VBZ JJR IN CD CD IN NN POS CD NNS .\nHe says the violence erupted after inmates rejected new uniforms .\tPRP VBZ DT NN VBD IN NNS VBD JJ NNS .\nThe uniforms were meant to improve security after seven Taleban detainees disguised as civilians escaped last month .\tDT NNS VBD VBN TO VB NN IN CD NNP NNS VBN IN NNS VBD JJ NN .\nOfficials say dozens of inmates have been injured but details are sketchy .\tNNS VBP NNS IN NNS VBP VBN VBN CC NNS VBP JJ .\nAuthorities are stepping up the pressure on New Orleans residents who have refused to leave the devastated city .\tNNS VBP VBG RP DT NN IN NNP NNP NNS WP VBP VBN TO VB DT JJ NN .\nThousands of police and National Guard troops are completing their efforts to evacuate all those who want to leave , and are now turning their attention to those who have not obeyed a mandatory evacuation effort .\tNNS IN NN CC NNP NNP NNS VBP VBG PRP$ NNS TO VB PDT DT WP VBP TO VB , CC VBP RB VBG PRP$ NN TO DT WP VBP RB VBN DT JJ NN NN .\nOfficials estimate that between 5,000 and 10,000 residents remain in New Orleans , despite contaminated floodwaters and several raging fires .\tNNS VBP IN IN CD CC CD NNS VBP IN NNP NNP , IN VBN NNS CC JJ VBG NNS .\nAuthorities warn the death toll could reach into the thousands , although fewer than 200 bodies have been found so far .\tNNS VBP DT NN NN MD VB IN DT NNS , IN JJR IN CD NNS VBP VBN VBN RB RB .\nTwenty-five thousand body bags have been provided for the clean-up operation .\tCD CD NN NNS VBP VBN VBN IN DT JJ NN .\nLate Thursday President Bush signed a bill promising nearly $ 52 billion more in relief to victims of Hurricane Katrina .\tRB NNP NNP NNP VBD DT NN VBG RB $ CD CD JJR IN NN TO NNS IN NNP NNP .\nThe president has come under pressure for the slow federal response to the national disaster .\tDT NN VBZ VBN IN NN IN DT JJ JJ NN TO DT JJ NN .\nThe White House has condemned the attack targeting a convoy carrying former Pakistani Prime Minister Benazir Bhutto .\tDT NNP NNP VBZ VBN DT NN VBG DT NN VBG JJ JJ NNP NNP NNP NNP .\nU.S. National Security Council spokesman , Gordon Johndroe , said Thursday the United States mourns ' the loss of innocent life ' in Karachi .\tNNP NNP NNP NNP NN , NNP NNP , VBD NNP DT NNP NNPS VBZ `` DT NN IN JJ NN `` IN NNP .\nThe NSC spokesman added , ' Extremists will not be allowed to stop Pakistanis from selecting their representatives through an open and democratic process . '\tDT NNP NN VBD , `` NNS MD RB VB VBN TO VB NNS IN VBG PRP$ NNS IN DT JJ CC JJ NN . ``\nIn New York , U.N. Secretary-General Ban Ki-moon expressed shock by news of the attack and extended condolences to the families of the victims .\tIN NNP NNP , NNP NNP NNP NNP VBD NN IN NN IN DT NN CC VBD NNS TO DT NNS IN DT NNS .\nThe European Union also denounced the deadly bomb blasts , while Pakistani President Pervez Musharraf called the attacks ' a conspiracy against democracy . '\tDT NNP NNP RB VBD DT JJ NN NNS , IN JJ NNP NNP NNP VBD DT NNS `` DT NN IN NN . ``\nSpeaking from Dubai , Ms. Bhutto 's husband , Asif Ali Zardari , alleged that a Pakistani intelligence agency was behind the bloodshed .\tVBG IN NNP , NNP NNP POS NN , NNP NNP NNP , VBD IN DT JJ NN NN VBD IN DT NN .\nMexico City 's mayor , also seen as a leading presidential contender , has called for a mass campaign to keep adversaries from jailing him .\tNNP NNP POS NN , RB VBN IN DT VBG JJ NN , VBZ VBN IN DT NN NN TO VB NNS IN VBG PRP .\nMexico 's Congress is to decide in coming months whether to strip Andres Manuel Lopez Obrador of immunity from prosecution enjoyed by public officials , and force him to face charges over a minor land-use case .\tNNP POS NNP VBZ TO VB IN VBG NNS IN TO VB NNP NNP NNP NNP IN NN IN NN VBN IN JJ NNS , CC VB PRP TO VB NNS IN DT JJ NN NN .\nMr. Lopez could be jailed and barred from running for president if found guilty .\tNNP NNP MD VB VBN CC VBN IN VBG IN NN IN VBN JJ .\nSpeaking at a news conference Friday , Mr. Lopez Obrador said he would keep fighting and would campaign from a jail cell if he had to .\tVBG IN DT NN NN NNP , NNP NNP NNP VBD PRP MD VB NN CC MD NN IN DT NN NN IN PRP VBD TO .\nIt was his first explicit statement of his plans to replace President Vicente Fox when Mr. Fox 's final term finishes in 2006 .\tPRP VBD PRP$ JJ JJ NN IN PRP$ NNS TO VB NNP NNP NNP WRB NNP NNP POS JJ NN VBZ IN CD .\nThe central-leftist mayor of the Party of the Democratic Revolution is widely popular in Mexico City for setting up welfare programs for the poor and the elderly .\tDT JJ NN IN DT NN IN DT JJ NN VBZ RB JJ IN NNP NNP IN VBG RP NN NNS IN DT NN CC DT NN .\nHaitian officials have said local and national elections will be held later this year .\tJJ NNS VBP VBN JJ CC JJ NNS MD VB VBN RBR DT NN .\nAn official on Haiti 's Provisional Electoral Council said local elections will be held on October 9 , followed by presidential and legislative polls on November 13 .\tDT NN IN NNP POS NNP NNP NNP VBD JJ NNS MD VB VBN IN NNP CD , VBN IN JJ CC JJ NNS IN NNP CD .\nThe dates were announced in an electoral decree recently sent to Haiti 's interim government .\tDT NNS VBD VBN IN DT JJ NN RB VBN TO NNP POS JJ NN .\nSecurity for the election remains a concern .\tNN IN DT NN VBZ DT NN .\nFormer soldiers and rebels who helped force Haitian President Jean-Bertrand Aristide into exile in South Africa last February still control parts of the countryside .\tJJ NNS CC NNS WP VBD VB JJ NNP NNP NNP IN NN IN NNP NNP JJ NNP RB VB NNS IN DT NN .\nViolence in Port-au-Prince 's pro-Aristide slums has killed more than 200 people in the last four months .\tNN IN NNP POS JJ NNS VBZ VBN JJR IN CD NNS IN DT JJ CD NNS .\nU.S. theatergoers chose suspense over skating , as Disturbiaunseated Blades Of Glory for the U.S. box office championship .\tNNP NNS VBD NN IN NN , IN VBN NNS IN NN IN DT NNP NN NN NN .\nThe peeping tom thriller starring Shia LaBeouf and David Morse took in $ 23 million to debut at number one last weekend .\tDT VBG NN NN VBG NNP NNP CC NNP NNP VBD IN $ CD CD TO VB IN NN CD JJ NN .\nThe real winner continues to be DreamWorks Pictures , distributor of both Disturbia and Blades Of Glory .\tDT JJ NN VBZ TO VB NNP NNP , NN IN DT NNP CC NNP IN NNP .\nLeBeouf , who plays a teen under house arrest who suspects a neighbor of murder , is also on the upswing .\tNNP , WP VBZ DT NN IN NN NN WP VBZ DT NN IN NN , VBZ RB IN DT NN .\nThe 20-year-old actor has been confirmed to appear in the fourth Indiana Jones movie , set for worldwide release in May , 2008 .\tDT JJ NN VBZ VBN VBN TO VB IN DT JJ NNP NNP NN , VBN IN JJ NN IN NNP , CD .\nHe will also provide the lead voice for this year 's animated penguin comedy Surf 's Up , while starring in the science fiction adventure Transformers .\tPRP MD RB VB DT JJ NN IN DT NN POS JJ NN NN NNP POS RB , IN VBG IN DT NN NN NN NNS .\nChina 's state news agency says scientists have developed two vaccines to prevent the spread of the deadly H5N1 strain of bird flu .\tNNP POS NN NN NN VBZ NNS VBP VBN CD NNS TO VB DT NN IN DT JJ NNP NN IN NN NN .\nXinhua quoted the director of the China National Bird Flu Reference Laboratory , Chen Hualan as saying experiments show the new vaccines are 100 percent effective in preventing the spread of the virus .\tNNP VBD DT NN IN DT NNP NNP NNP NNP NNP NNP , NNP NNP IN VBG NNS VBP DT JJ NNS VBP CD NN JJ IN VBG DT NN IN DT NN .\nLast week , China enacted emergency measures after confirming that the virus killed scores of migratory birds in the western Qinghai province .\tJJ NN , NNP VBD NN NNS IN VBG IN DT NN VBD NNS IN JJ NNS IN DT JJ NNP NN .\nNo human cases were reported .\tDT JJ NNS VBD VBN .\nThe World Health Organization recently said a study suggests the virus is mutating in ways that could pose a greater threat to humans .\tDT NNP NNP NNP RB VBD DT NN VBZ DT NN VBZ VBG IN NNS WDT MD VB DT JJR NN TO NNS .\nExperts have warned that such a mutation could kill millions .\tNNS VBP VBN IN PDT DT NN MD VB NNS .\nThe virus has killed more than 50 people in Vietnam , Thailand and Cambodia .\tDT NN VBZ VBN JJR IN CD NNS IN NNP , NNP CC NNP .\nA suicide bomber walked into a local government office in southern Afghanistan Monday and blew himself up , killing eight people .\tDT NN NN VBD IN DT JJ NN NN IN JJ NNP NNP CC VBD PRP RP , VBG CD NNS .\nAmong the dead are four policemen and four civilians .\tIN DT NN VBP CD NNS CC CD NNS .\nThe attack occurred in Nad Ali district of Afghanistan 's opium producing heartland of Helmand province .\tDT NN VBD IN NNP NNP NN IN NNP POS NN VBG NN IN NNP NN .\nTaleban insurgents have vowed to step up their attacks against Afghan and international troops during the holy month of Ramadan , which began last week .\tNNP NNS VBP VBN TO VB RP PRP$ NNS IN JJ CC JJ NNS IN DT JJ NN IN NNP , WDT VBD JJ NN .\nMeanwhile , Bangladesh is appealing for the release of an aid worker kidnapped just south of the capital , Kabul , on Saturday .\tRB , NNP VBZ VBG IN DT NN IN DT NN NN VBN RB RB IN DT NN , NNP , IN NNP .\nAn official with the interim government of Bangladesh said in a statement Monday the abducted man 's only mission in Afghanistan is humanitarian .\tDT NN IN DT JJ NN IN NNP VBD IN DT NN NNP DT JJ NN POS JJ NN IN NNP VBZ JJ .\nThe Bangladeshi national was taken from his office in Logar province by unidentified armed men .\tDT JJ NN VBD VBN IN PRP$ NN IN NNP NN IN JJ JJ NNS .\nIranian President Mahmoud Ahmadinejad is reported to have called Israel the ' flag of Satan . '\tJJ NNP NNP NNP VBZ VBN TO VB VBN NNP DT `` NN IN NNP . ``\nThe state-run IRNA news agency says the Iranian leader made the comment to a religious conference .\tDT JJ NNP NN NN VBZ DT JJ NN VBD DT NN TO DT JJ NN .\nIt quotes him saying that when the philosophy of a state is in question , it may be on the path to decline and dissolution .\tPRP VBZ PRP VBG IN WRB DT NN IN DT NN VBZ IN NN , PRP MD VB IN DT NN TO NN CC NN .\nMr. Ahmadinejad sparked international outrage in 2005 when he said Israel should be wiped off the map .\tNNP NNP VBD JJ NN IN CD WRB PRP VBD NNP MD VB VBN RP DT NN .\nHe has also called the Holocaust a myth .\tPRP VBZ RB VBN DT NNP DT NN .\nThe government of Senegal shut down the country 's leading radio station for most of the day Monday after it broadcast an interview with a separatist leader .\tDT NN IN NNP VBD RP DT NN POS VBG NN NN IN JJS IN DT NN NNP IN PRP VBD DT NN IN DT JJ NN .\nNineteen employees of Sud FM were charged with violating national security laws following the airing of the interview with Salif Sadio , leader of the armed wing of the secessionist Democratic Forces Movement of Casamance .\tCD NNS IN NNP NNP VBD VBN IN VBG JJ NN NNS VBG DT NN IN DT NN IN NNP NNP , NN IN DT JJ NN IN DT NN JJ NNS NN IN NNP .\nIn the interview , Mr. Sadio pledged to end what he called the Senegalese occupation of Casamance province .\tIN DT NN , NNP NNP VBD TO VB WP PRP VBD DT JJ NN IN NNP NN .\nInterior Minister Ousamane Ngom told state radio that he had ordered the station closed in the interest of national security .\tNNP NNP NNP NNP VBD NN NN IN PRP VBD VBN DT NN VBD IN DT NN IN JJ NN .\nRadio Sud staffers tell Voice of America 's French to Africa Service that other media outlets in Senegal plan to publish and broadcast the interview with Mr. Sadio on Tuesday .\tNNP NNP NNS VBP NNP IN NNP POS JJ TO NNP NNP IN JJ NNS NNS IN NNP NN TO VB CC VB DT NN IN NNP NNP IN NNP .\nOfficials in Nigeria say the deadly H5N1 strain of bird flu has spread to another state , bringing the total number of states now affected by the virus to 14 .\tNNS IN NNP VBP DT JJ NNP NN IN NN NN VBZ VBN TO DT NN , VBG DT JJ NN IN NNS RB VBN IN DT NN TO CD .\nHealth authorities say the strain has appeared in northeastern Taraba state .\tNNP NNS VBP DT NN VBZ VBN IN JJ NNP NN .\nThe new outbreak means the virus is now present in more than one third of Nigerian states .\tDT JJ NN VBZ DT NN VBZ RB JJ IN JJR IN CD NN IN JJ NNS .\nNigeria was the first African country to be hit by bird flu .\tNNP VBD DT JJ JJ NN TO VB VBN IN NN NN .\nSeveral other West African countries are also grappling with outbreaks of the disease , including Nigeria 's neighbors , Niger and Cameroon .\tJJ JJ JJ JJ NNS VBP RB VBG IN NNS IN DT NN , VBG NNP POS NNS , NNP CC NNP .\nNo human cases have been detected in the region , although the disease is believed to have killed more than 120 people around the world since 2003 .\tDT JJ NNS VBP VBN VBN IN DT NN , IN DT NN VBZ VBN TO VB VBN JJR IN CD NNS IN DT NN IN CD .\nIraqi officials say five people , including four children , were killed Thursday in attacks in Baghdad .\tJJ NNS VBP CD NNS , VBG CD NNS , VBD VBN NNP IN NNS IN NNP .\nAuthorities say a bomb attached to a government worker 's car exploded , killing four children inside it and injuring the worker and his wife .\tNNS VBP DT NN VBN TO DT NN NN POS NN VBD , VBG CD NNS IN PRP CC VBG DT NN CC PRP$ NN .\nMeanwhile , unidentified gunmen killed an Iraqi army officer and injured at his wife in northern Baghdad .\tRB , JJ NNS VBD DT JJ NN NN CC VBN IN PRP$ NN IN JJ NNP .\nThe Associated Press says the officer worked with units that provide protection to Iraqi government officials .\tDT NNP NNP VBZ DT NN VBD IN NNS WDT VBP NN TO JJ NN NNS .\nSeparately , officials in Baghdad say a police officer was mistakenly killed after Finance Ministry security guards opened fire on a suspicious vehicle .\tRB , NNS IN NNP VBP DT NN NN VBD RB VBN IN NNP NNP NN NNS VBD NN IN DT JJ NN .\nAn agreement has been reached in Ecuador to end a strike that had shut down oil exports from the country 's two largest oil-producing regions and had triggered violent protests .\tDT NN VBZ VBN VBN IN NNP TO VB DT NN WDT VBD VBN RP NN NNS IN DT NN POS CD JJS JJ NNS CC VBD VBN JJ NNS .\nThe accord was reached Thursday between the protesters and oil companies after four days of talks .\tDT NN VBD VBN NNP IN DT NNS CC NN NNS IN CD NNS IN NNS .\nIt calls for those companies to invest more in the poor communities where they drill , including repairing highways .\tPRP VBZ IN DT NNS TO VB RBR IN DT JJ NNS WRB PRP VB , VBG VBG NNS .\nHowever , the accord does not include a key demand of the demonstrators - that they not face prosecution for damaging oil installations during the protests .\tRB , DT NN VBZ RB VB DT JJ NN IN DT NNS : IN PRP RB VBP NN IN JJ NN NNS IN DT NNS .\nThe strike and protests led the government to declare a state of emergency in Orellana and Sucumbios provinces and to put them under military control .\tDT NN CC NNS VBD DT NN TO VB DT NN IN NN IN NNP CC NNP NNS CC TO VB PRP IN JJ NN .\nMost of Ecuador 's oil exports go to the United States .\tJJS IN NNP POS NN NNS VBP TO DT NNP NNPS .\nThailand said Tuesday it is lifting a state of emergency in three northern provinces , but it will remain in force in others , including the capital , Bangkok .\tNNP VBD NNP PRP VBZ VBG DT NN IN NN IN CD JJ NNS , CC PRP MD VB IN NN IN NNS , VBG DT NN , NNP .\nThe government extended the state of emergency for three months across much of the country on July 6 , citing concerns that anti-government elements might instigate more unrest like the weeks of deadly protests that began in March .\tDT NN VBD DT NN IN NN IN CD NNS IN NN IN DT NN IN NNP CD , VBG NNS IN JJ NNS MD VB JJR NN IN DT NNS IN JJ NNS WDT VBD IN NNP .\nThe decree suspends some civil liberties , allows censorship and makes it easier to use the military to keep the peace .\tDT NN VBZ DT JJ NNS , VBZ NN CC VBZ PRP JJR TO VB DT JJ TO VB DT NN .\nFighting between Thai security forces and anti-government Red Shirts killed 90 people and wounded about 1,900 others during the protesters ' 10-week occupation of part of downtown Bangkok .\tVBG IN JJ NN NNS CC JJ NNP NNP VBD CD NNS CC VBD IN CD NNS IN DT NNS POS JJ NN IN NN IN NN NNP .\nThe military broke up the Red Shirts ' encampment in a raid on May 19 .\tDT NN VBD RP DT NNP NNP POS NN IN DT NN IN NNP CD .\nUkraine 's Central Election Commission has declared Prime Minister Viktor Yanukovych the winner of Sunday 's disputed presidential election .\tNNP POS NNP NNP NNP VBZ VBN NNP NNP NNP NNP DT NN IN NNP POS JJ JJ NN .\nAuthorities say the prime minister won more than 49 percent of the vote - nearly three percentage points ahead of opposition challenger Viktor Yushchenko .\tNNS VBP DT JJ NN VBD JJR IN CD NN IN DT NN IN RB CD NN NNS RB IN NN NN NNP NNP .\nThe announcement Wednesday came as tens of thousands of protesters continued to mass in the capital , Kiev , alleging widespread fraud in the vote .\tDT NN NNP VBD IN NNS IN NNS IN NNS VBN TO NN IN DT NN , NNP , VBG JJ NN IN DT NN .\nCrowds packed the Ukrainian capital 's main square , waving flags and chanting Mr. Yushchenko 's name .\tNNS VBD DT JJ NN POS JJ NN , VBG NNS CC VBG NNP NNP POS NN .\nSome have slept in tents , despite the cold and snow .\tDT VBP VBN IN NNS , IN DT JJ CC NN .\nProtesters marched to the Election Commission following the announcement .\tNNS VBD TO DT NNP NNP VBG DT NN .\nThe European Union had warned of consequences in its relations with Ukraine if the results were announced before a review is conducted .\tDT NNP NNP VBD VBN IN NNS IN PRP$ NNS IN NNP IN DT NNS VBD VBN IN DT NN VBZ VBN .\nEuropean and U.S. monitors allege widespread fraud in the vote .\tJJ CC NNP NNS VBP JJ NN IN DT NN .\nThe White House says it is disturbed about indications of wrongdoing .\tDT NNP NNP VBZ PRP VBZ VBN IN NNS IN NN .\nPakistani President Pervez Musharraf says international terrorism should be fought on two levels .\tJJ NNP NNP NNP VBZ JJ NN MD VB VBN IN CD NNS .\nGeneral Musharraf told the U.N. General Assembly Tuesday that apart from confronting terrorists , the international community should also resolve the conflicts afflicting the Islamic world .\tNNP NNP VBD DT NNP NNP NNP NNP IN RB IN VBG NNS , DT JJ NN MD RB VB DT NNS VBG DT JJ NN .\nHe said unless those conflicts are resolved and suppression of Muslim peoples is ended , terrorism and extremism will continue to find recruits among alienated Muslims .\tPRP VBD IN DT NNS VBP VBN CC NN IN NNP NNS VBZ VBN , NN CC NN MD VB TO VB NNS IN JJ NNS .\nThe Pakistani leader said it is also imperative to end what he called racial and religious discrimination against Muslims and to prohibit the defamation of Islam .\tDT JJ NN VBD PRP VBZ RB JJ TO VB WP PRP VBD JJ CC JJ NN IN NNPS CC TO VB DT NN IN NNP .\nIn an apparent reference to the controversy over Pope Benedict 's recent remarks about Islam , he said it is disappointing to see that personalities of high standing are oblivious of Muslim sensitivities .\tIN DT JJ NN TO DT NN IN NNP NNP POS JJ NNS IN NNP , PRP VBD PRP VBZ JJ TO VB DT NNS IN JJ NN VBP JJ IN NNP NNS .\nSaudi Arabia 's King Abdullah held talks with Pakistani President Pervez Musharraf Saturday in the kingdom .\tNNP NNP POS NNP NNP VBD NNS IN JJ NNP NNP NNP NNP IN DT NN .\nOfficial media in Saudi Arabia reported that the two met at a palace in Jeddah .\tJJ NNS IN NNP NNP VBD IN DT CD VBD IN DT NN IN NNP .\nNews media say the leaders and their delegations discussed ways to enhance cooperation between the two nations .\tNNP NNS VBP DT NNS CC PRP$ NNS VBD NNS TO VB NN IN DT CD NNS .\nAccording to reports , King Abdullah also held a lunch party for General Musharraf and his delegation .\tVBG TO NNS , NNP NNP RB VBD DT NN NN IN NNP NNP CC PRP$ NN .\nThe Pakistani president said he was grateful for the hospitality .\tDT JJ NN VBD PRP VBD JJ IN DT NN .\nRussian officials have officially opened two new schools in the southern town of Beslan to replace the one destroyed in last year 's school siege , which ended with the deaths of 330 people .\tJJ NNS VBP RB VBN CD JJ NNS IN DT JJ NN IN NNP TO VB DT CD VBN IN JJ NN POS NN NN , WDT VBD IN DT NNS IN CD NNS .\nThe ceremonies Wednesday comes almost one year after armed militants raided the school , taking more than 1,000 people hostage .\tDT NNS NNP VBZ RB CD NN IN JJ NNS VBD DT NN , VBG JJR IN CD NNS NN .\nThe siege ended in explosions and a hail of gunfire as Russian security forces stormed the building .\tDT NN VBD IN NNS CC DT NN IN NN IN JJ NN NNS VBD DT NN .\nMore than half those killed were children .\tJJR IN PDT DT VBN VBD NNS .\nChechen separatist leader Shamil Basayev has claimed responsibility for the attack .\tJJ JJ NN NNP NNP VBZ VBN NN IN DT NN .\nLast week , robbers ransacked one of the new schools and made off with thousands of dollars worth of equipment .\tJJ NN , NNS VBD CD IN DT JJ NNS CC VBD RP IN NNS IN NNS NN IN NN .\nReports out of Burma say last week 's tsunami swept a seasonal fishing village of about 600 people out to sea , leaving 17 dead and scores of families destitute .\tNNS IN IN NNP VBP JJ NN POS NN VBD DT JJ NN NN IN IN CD NNS IN TO NN , VBG CD JJ CC NNS IN NNS VBP .\nThe French news agency , AFP , says most of the casualties were children playing on the beach when a three-meter wave crashed down on them and crushed village huts .\tDT JJ NN NN , NNP , VBZ JJS IN DT NNS VBD NNS VBG IN DT NN WRB DT JJ NN VBD RP IN PRP CC JJ NN NNS .\nThe village , 352 kilometers southwest of the capital of Rangoon , was built about a month ago for the post-monsoon fishing season .\tDT NN , CD NNS JJS IN DT NN IN NNP , VBD VBN IN DT NN RB IN DT JJ NN NN .\nThe agency said 14 children and three women were killed when waves swept through the village .\tDT NN VBD CD NNS CC CD NNS VBD VBN WRB NNS VBP IN DT NN .\nThe official New Light of Myanmar newspaper has raised Burma 's death toll to 59 after the bodies of three more victims were found .\tDT JJ NNP NNP IN NNP NN VBZ VBN NNP POS NN NN TO CD IN DT NNS IN CD JJR NNS VBD VBN .\nThe paper says three people are still missing .\tDT NN VBZ CD NNS VBP RB VBG .\nPope Benedict XVI called on African leaders Monday to make the needs of the poor their prime concern .\tNNP NNP NNP VBD IN JJ NNS NNP TO VB DT NNS IN DT JJ PRP$ JJ NN .\nThe Roman Catholic pontiff made his remarks before heading back to Rome from the airport in Angola 's capital , Luanda .\tDT NNP NNP NN VBD PRP$ NNS IN VBG RB TO NNP IN DT NN IN NNP POS NN , NNP .\nDuring his seven-day trip to Cameroon and Angola , the pope promoted the message of Christianity as a way to inspire hope .\tIN PRP$ JJ NN TO NNP CC NNP , DT NN VBD DT NN IN NNP IN DT NN TO VB NN .\nBut his rejection of condoms as a means to fight Africa 's AIDS epidemic provoked a firestorm of criticism during his visit .\tCC PRP$ NN IN NNS IN DT NN TO VB NNP POS NNP NN VBD DT NN IN NN IN PRP$ NN .\nPope Benedict celebrated Mass Sunday with an estimated one million Christian faithful in Luanda .\tNNP NNP VBD NNP NNP IN DT VBN CD CD NNP NN IN NNP .\nIn his homily , the pope lamented what he called ' clouds of evil ' over Africa .\tIN PRP$ NN , DT NN VBD WP PRP VBD `` NNS IN JJ `` IN NNP .\nHe said war and greed have robbed the continent of the resources needed to build a better society .\tPRP VBD NN CC NN VBP VBN DT NN IN DT NNS VBN TO VB DT JJR NN .\nThe Vatican says Africa has been a place of tremendous growth for the Catholic Church .\tDT NNP VBZ NNP VBZ VBN DT NN IN JJ NN IN DT NNP NNP .\nU.S. Deputy Defense Secretary Paul Wolfowitz says some 15,000 U.S. troops who were deployed for Iraq 's election will soon return home , but 1,35,000 forces are expected to remain in Iraq .\tNNP NNP NNP NNP NNP NNP VBZ DT CD NNP NNS WP VBD VBN IN NNP POS NN MD RB VB NN , CC CD NNS VBP VBN TO VB IN NNP .\nTestifying Thursday before the Senate Armed Services committee , the deputy secretary said American troops and the proposed $ 80 billion in supplemental funding are focused on training Iraqi security forces .\tVBG NNP IN DT NNP NNP NNPS NN , DT NN NN VBD JJ NNS CC DT VBN $ CD CD IN JJ NN VBP VBN IN NN JJ NN NNS .\nAlso during the hearing , Air Force General Richard Myers said there is not a good measure of how many of Iraq 's estimated 1,30,000 security forces are properly trained and equipped .\tRB IN DT NN , NNP NNP NNP NNP NNP VBD EX VBZ RB DT JJ NN IN WRB JJ IN NNP POS JJ CD NN NNS VBP RB VBN CC VBN .\nThe general also said he could not publicly discuss the military 's estimate of the size of the insurgency in Iraq .\tDT NN RB VBD PRP MD RB RB VB DT NN POS NN IN DT NN IN DT NN IN NNP .\nA car bomb exploded in central Baghdad Thursday , killing at least two people and wounding several others as insurgents continued their campaign of post-election violence .\tDT NN NN VBD IN JJ NNP NNP , VBG IN JJS CD NNS CC VBG JJ NNS IN NNS VBD PRP$ NN IN JJ NN .\nOfficials say the bomb , detonated by remote control , went off just after a U.S. military patrol vehicle passed by .\tNNS VBP DT NN , VBN IN JJ NN , VBD RB RB IN DT NNP JJ NN NN VBN IN .\nSouth of Baghdad , Iraqi police found the bodies of 20 truck drivers who had been shot dead .\tNNP IN NNP , JJ NN VBD DT NNS IN CD NN NNS WP VBD VBN VBN JJ .\nMeanwhile , Iraq 's interim government said the country 's borders will be closed for five days from February 17 - apparently to boost security during the major Shi'ite Muslim religious observance of Ashura .\tRB , NNP POS JJ NN VBD DT NN POS NNS MD VB VBN IN CD NNS IN NNP CD : RB TO VB NN IN DT JJ NNP NNP JJ NN IN NNP .\nWednesday , Iraq 's election commission said 300 ballot boxes from the January 30th vote need to be recounted and that it is not ready to announce the final results , which were expected today .\tNNP , NNP POS NN NN VBD CD NN NNS IN DT NNP CD NN VBP TO VB VBN CC IN PRP VBZ RB JJ TO VB DT JJ NNS , WDT VBD VBN NN .\nThe daughter of rhythm-and-blues legend Fats Domino says her father , who had been reported missing in New Orleans , had been rescued from the devastated city .\tDT NN IN NNS VBP NNP NNP VBZ PRP$ NN , WP VBD VBN VBN VBG IN NNP NNP , VBD VBN VBN IN DT JJ NN .\nKaren Domino White said Thursday she identified her father in a photograph taken of him being evacuated from his home after the hurricane .\tNNP NNP NNP VBD NNP PRP VBD PRP$ NN IN DT NN VBN IN PRP VBG VBN IN PRP$ NN IN DT NN .\nThe 77-year-old entertainer had been reported missing Thursday by his long-time agent .\tDT JJ NN VBD VBN VBN VBG NNP IN PRP$ JJ NN .\nFats Domino , whose real name is Antoine Domino , was born in New Orleans in 1928 .\tNNP NNP , WP$ JJ NN VBZ NNP NNP , VBD VBN IN NNP NNP IN CD .\nHe earned the nickname ' Fats ' after he wrote a song called The Fat Man .\tPRP VBD DT NN `` NNPS `` IN PRP VBD DT NN VBN DT NNP NN .\nOther hits include Blueberry Hill and Ai n't That a Shame .\tJJ NNS VBP NNP NNP CC NNP NNP NNP NNP NNP .\nHe was one of the first inductees into the Rock and Roll Hall of Fame .\tPRP VBD CD IN DT JJ NNS IN DT NNP CC NNP NNP IN NNP .\nPolice in Indonesia have announced a $ 10,000 ( 100 million rupiah ) reward for information identifying the three men who carried out suicide bomb attacks on Bali earlier this month .\tNNS IN NNP VBP VBN DT $ CD LRB CD CD NN RRB NN IN NN VBG DT CD NNS WP VBD RP NN NN NNS IN NNP RBR DT NN .\nOfficials are distributing hundreds of thousands of photos of the bombers ' severed heads as well as of the Malaysian fugitives accused in the plot .\tNNS VBP VBG NNS IN NNS IN NNS IN DT NNS POS JJ NNS RB RB IN IN DT JJ NNS VBN IN DT NN .\nWeeks of police work have failed to identify the bombers or uncover organizers behind the attacks that killed 23 people , including the bombers , October 1 .\tNNS IN NN NN VBP VBN TO VB DT NNS CC JJ NNS IN DT NNS WDT VBD CD NNS , VBG DT NNS , NNP CD .\nIndonesian authorities also are offering a reward of $ 1,00,000 ( one billion rupiah ) for information leading to the arrest of Malaysian suspects Noordin Mohamed Top and Azahari bin Husin .\tJJ NNS RB VBP VBG DT NN IN $ CD LRB CD CD NN RRB IN NN VBG TO DT NN IN JJ NNS NNP NNP NNP CC NNP NNP NNP .\nThe two are alleged leaders of the al Qaida-linked regional terror group Jemaah Islamiyah , which is also blamed in the 2002 Bali bomb attacks that killed 202 people .\tDT CD VBP JJ NNS IN DT NNP JJ JJ NN NN NNP NNP , WDT VBZ RB VBN IN DT CD NNP NN NNS WDT VBD CD NNS .\nA published report says Zimbabwe security officials are probing whether two cabinet officials and a lawmaker are linked to an alleged spying ring .\tDT JJ NN VBZ NNP NN NNS VBP VBG IN CD NN NNS CC DT NN VBP VBN TO DT JJ NN NN .\nThe state-run Sunday Mail reports officials this week hope to question the three men , who have been accused of passing state secrets to foreign intelligence agencies .\tDT JJ NNP NNP VBZ NNS DT NN VBP TO VB DT CD NNS , WP VBP VBN VBN IN VBG NN NNS TO JJ NN NNS .\nThe report alleges the men received ' handsome payments ' for the information .\tDT NN VBZ DT NNS VBD `` JJ NNS `` IN DT NN .\nAnother person suspected in the alleged ring is an official , Erasmus Moyo , at Zimbabwe 's embassy in Geneva , who has been reported missing .\tDT NN VBN IN DT JJ NN VBZ DT NN , NNP NNP , IN NNP POS NN IN NNP , WP VBZ VBN VBN VBG .\nOfficials say he disappeared after being summoned back to Zimbabwe .\tNNS VBP PRP VBD IN VBG VBN RB TO NNP .\nLast month , police arrested four other men , including a ruling party lawmaker , Philip Chiyangwa , on charges of selling state secrets to foreign powers .\tJJ NN , NN VBN CD JJ NNS , VBG DT NN NN NN , NNP NNP , IN NNS IN VBG NN NNS TO JJ NNS .\nRussia 's lower house of parliament has warned that the execution of Saddam Hussein could lead to a further escalation of violence in war-torn Iraq .\tNNP POS JJR NN IN NN VBZ VBN IN DT NN IN NNP NNP MD VB TO DT JJ NN IN NN IN JJ NNP .\nThe Kremlin-controlled State Duma Wednesday unanimously approved a statement saying that executing Saddam ' will not solve the existing problems of the long-suffering people of Iraq . '\tDT JJ NN NNP NNP RB VBD DT NN VBG IN VBG NNP `` MD RB VB DT VBG NNS IN DT JJ NNS IN NNP . ``\nAn Iraqi tribunal this month convicted the former president of crimes against humanity for the 1982 killings of 148 Iraqi Shi'ite Muslims in the village of Dujail , and sentenced him to death by hanging .\tDT JJ NN DT NN VBD DT JJ NN IN NNS IN NN IN DT CD NNS IN CD JJ NNP NNPS IN DT NN IN NNP , CC VBD PRP TO NN IN NN .\nNo execution date has been set .\tDT NN NN VBZ VBN VBN .\nMoscow has been a consistent critic of the U.S.-led military campaign in Iraq .\tNNP VBZ VBN DT JJ NN IN DT JJ JJ NN IN NNP .\nRussian authorities have warned previously that Saddam 's execution will dangerously increase tensions between Iraq 's Sunni Muslims who backed Saddam , and the majority Shi'ite population which supported the death penalty .\tJJ NNS VBP VBN RB IN NNP POS NN MD RB VB NNS IN NNP POS NNP NNPS WP VBD NNP , CC DT NN NNP NN WDT VBD DT NN NN .\nUkraine 's parliament has voted to dismiss two senior officials over a recent deal that nearly doubled prices for imported Russian gas .\tNNP POS NN VBZ VBN TO VB CD JJ NNS IN DT JJ NN WDT RB VBD NNS IN VBN JJ NN .\nA total of 246 members of Ukraine 's parliament Thursday endorsed the dismissal of Justice Minister Serhiy Holovaty and Fuel and Energy Minister Ivan Plachkov .\tDT NN IN CD NNS IN NNP POS NN NNP VBD DT NN IN NNP NNP NNP NNP CC NNP CC NNP NNP NNP NNP .\nLawmakers also expressed no-confidence in Oleksiy Ivchenko , head of the state gas company , Naftogaz Ukrainy .\tNNS RB VBD NN IN NNP NNP , NN IN DT NN NN NN , NNP NNP .\nEarlier this month , Ukraine agreed to buy gas from Russia at a rate of $ 95 per 1,000 cubic meters - up from the previous rate of $ 50 - following Russia 's three-day suspension of deliveries .\tRBR DT NN , NNP VBD TO VB NN IN NNP IN DT NN IN $ CD IN CD JJ NNS IN RB IN DT JJ NN IN $ CD : VBG NNP POS JJ NN IN NNS .\nBut the deal triggered a political crisis , and Ukraine 's parliament voted to dismiss the government of Prime Minister Yuriy Yekhanurov .\tCC DT NN VBD DT JJ NN , CC NNP POS NN VBD TO VB DT NN IN NNP NNP NNP NNP .\nThursday , Ukrainian President Viktor Yushchenko formally asked the Constitutional Court to decide the legality of the dismissal .\tNNP , JJ NNP NNP NNP RB VBD DT NNP NNP TO VB DT NN IN DT NN .\nAuthorities in northern Bosnia-Herzegovina have arrested a fugitive Bosnian Serb war crimes suspect .\tNNS IN JJ NNP VBP VBN DT JJ JJ JJ NN NNS VBP .\nA spokesman for Bosnia 's Prosecutor 's Office says members of the State Investigation and Protection Agency and Bosnian Serb police apprehended Predrag Kujundzic Wednesday in the northern town of Doboj .\tDT NN IN NNP POS NNP POS NNP VBZ NNS IN DT NNP NNP CC NNP NNP CC JJ JJ NN VBD NNP NNP NNP IN DT JJ NN IN NNP .\nKujundzic was a commander of a special unit of Bosnian Serb forces during the Balkan conflict of the 1990s .\tNNP VBD DT NN IN DT JJ NN IN JJ JJ NNS IN DT JJ NN IN DT NNS .\nHe is suspected of violating laws and customs of war in the Doboj region on several occasions during 1992 and the following year .\tPRP VBZ VBN IN VBG NNS CC NNS IN NN IN DT NNP NN IN JJ NNS IN CD CC DT JJ NN .\nThe spokesman said Kujundzic was arrested on the order of the country 's central Prosecutor 's Office and is being held in a court detention facility in Sarajevo .\tDT NN VBD NNP VBD VBN IN DT NN IN DT NN POS JJ NNP POS NNP CC VBZ VBG VBN IN DT NN NN NN IN NNP .\nIraqi officials are still counting votes and verifying results from Saturday 's referendum , with partial results suggesting the draft constitution will be approved .\tJJ NNS VBP RB VBG NNS CC VBG NNS IN NNP POS NN , IN JJ NNS VBG DT NN NN MD VB VBN .\nIraq 's Independent Electoral Commission says it will take random samples from some provinces to examine for possible irregularities .\tNNP POS NNP NNP NNP VBZ PRP MD VB JJ NNS IN DT NNS TO VB IN JJ NNS .\nPresident Bush praised Iraqis for voting despite threats of insurgent attacks .\tNNP NNP VBD NNS IN VBG IN NNS IN JJ NNS .\nBut U.N. Secretary General Kofi Annan says it is too soon to say if the draft constitution will bring Iraq together or widen divisions between its Shi'te , Sunni and Kurdish communities .\tCC NNP NNP NNP NNP NNP VBZ PRP VBZ RB RB TO VB IN DT NN NN MD VB NNP RB CC VB NNS IN PRP$ NNP , NNP CC NNP NNS .\nIn other developments , a U.S. airstrike killed 20 people the military says were planting roadside bombs near Ramadi .\tIN JJ NNS , DT NNP NN VBD CD NNS DT NN VBZ VBD VBG NN NNS IN NNP .\nOther coalition operations in Al Anbar province on Sunday killed what U.S. officials said were 50 more suspected terrorists .\tJJ NN NNS IN NNP NNP NN IN NNP VBD WP NNP NNS VBD VBD CD JJR JJ NNS .\nBut residents say half of the dead were civilians .\tCC NNS VBP NN IN DT NN VBD NNS .\nThe eldest daughter of former Chilean dictator Augusto Pinochet is being questioned in Washington D.C. after fleeing Chile , where she has been charged with tax evasion .\tDT JJS NN IN JJ JJ NN NNP NNP VBZ VBG VBN IN NNP NNP IN VBG NNP , WRB PRP VBZ VBN VBN IN NN NN .\nU.S. Customs and Border officials say Lucia Pinochet is being interviewed at Washington 's Dulles International Airport after arriving from Argentina .\tNNP NNP CC NNP NNS VBP NNP NNP VBZ VBG VBN IN NNP POS NNP NNP NNP IN VBG IN NNP .\nThe charges she faces are related to a broader investigation of $ 27 million her father allegedly hid in foreign bank accounts .\tDT NNS PRP VBZ VBP VBN TO DT JJR NN IN $ CD CD PRP$ NN RB VBD IN JJ NN NNS .\nGeneral Pinochet also has been charged with tax fraud .\tNNP NNP RB VBZ VBN VBN IN NN NN .\nHis wife and four other adult children were detained Monday on charges relating to the tax fraud probe .\tPRP$ NN CC CD JJ JJ NNS VBD VBN NNP IN NNS VBG TO DT NN NN NN .\nThey were freed on bail a day later .\tPRP VBD VBN IN NN DT NN RB .\nThe former dictator also faces human rights charges related to his rule in the mid-1970s .\tDT JJ NN RB VBZ JJ NNS NNS VBN TO PRP$ NN IN DT NNS .\nFrench President Nicolas Sarkozy says France is willing to help Egypt develop nuclear power plants .\tJJ NNP NNP NNP VBZ NNP VBZ JJ TO VB NNP VB JJ NN NNS .\nIn an interview published Saturday in the Egyptian newspaper Al-Ahram , Mr. Sarkozy said France will cooperate and work together with Egypt if the Cairo government wants to develop civilians uses for nuclear technology .\tIN DT NN VBN NNP IN DT JJ NN NNP , NNP NNP VBD NNP MD VB CC VB RB IN NNP IN DT NNP NN VBZ TO VB NNS NNS IN JJ NN .\nEarlier this year , authorities in Cairo announced that Egypt intends to build several nuclear reactors to meet its future energy needs .\tRBR DT NN , NNS IN NNP VBD IN NNP VBZ TO VB JJ JJ NNS TO VB PRP$ JJ NN NNS .\nThe French president has been vacationing in Egypt in advance of an official state visit he will begin on Sunday in Cairo .\tDT JJ NN VBZ VBN VBG IN NNP IN NN IN DT JJ NN NN PRP MD VB IN NNP IN NNP .\nThe U.S. military in Iraq says it has detained seven suspects in Saturday 's rocket attack on the U.S. embassy in Baghdad .\tDT NNP NN IN NNP VBZ PRP VBZ VBN CD NNS IN NNP POS NN NN IN DT NNP NN IN NNP .\nTwo Americans were killed and four others wounded in the attack .\tCD NNS VBD VBN CC CD NNS VBN IN DT NN .\nA U.S. statement says the suspects were caught by U.S. troops in southeastern Baghdad about an hour after the strike , which was recorded by police surveillance cameras .\tDT NNP NN VBZ DT NNS VBD VBN IN NNP NNS IN JJ NNP IN DT NN IN DT NN , WDT VBD VBN IN NN NN NNS .\nIn other developments Sunday , The Washington Post newspaper says the Bush administration does not have a timetable for withdrawing U.S. troops from Iraq .\tIN JJ NNS NNP , DT NNP NNP NN VBZ DT NNP NN VBZ RB VB DT NN IN VBG NNP NNS IN NNP .\nThe report quotes U.S. officials as saying U.S. forces will leave only after Iraqi military units take the lead in combat operations .\tDT NN VBZ NNP NNS IN VBG NNP NNS MD VB RB IN JJ JJ NNS VBP DT NN IN NN NNS .\nA senior administration official also said a U.S. departure will be linked to a reduction in overall violence , once an elected Iraqi government is operational .\tDT JJ NN NN RB VBD DT NNP NN MD VB VBN TO DT NN IN JJ NN , RB DT JJ JJ NN VBZ JJ .\nThe report says commanders want to withdraw about 15,000 troops by the middle of this year .\tDT NN VBZ NNS VBP TO VB RB CD NNS IN DT NN IN DT NN .\nNew clashes were reported between protesters and police in the Rostock , Germany , ahead of this week 's Group of Eight summit in a nearby resort .\tJJ NNS VBD VBN IN NNS CC NNS IN DT NNP , NNP , RB IN DT NN POS NNP IN CD NN IN DT JJ NN .\nAuthorities say some 400 extremists pelted police with bottles as they protested restrictions on refugees and asylum seekers in G8 countries .\tNNS VBP DT CD NNS VBN NN IN NNS IN PRP VBD NNS IN NNS CC NN NNS IN NNP NNS .\nThe clashes were the second outbreak of violence ahead of Heiligendamm summit .\tDT NNS VBD DT JJ NN IN NN RB IN NNP NN .\nWith public access to the resort closed , demonstrators have been meeting in Rostok .\tIN JJ NN TO DT NN VBD , NNS VBP VBN VBG IN NNP .\nA riot Saturday left about 1,000 people injured .\tDT NN NNP VBD IN CD NNS VBN .\nThose protesters were demanding that the G8 leading industrialized countries take more action to reduce poverty , inequality , environmental destruction and restrictions on immigration .\tDT NNS VBD VBG IN DT NNP VBG JJ NNS VBP JJR NN TO VB NN , NN , JJ NN CC NNS IN NN .\nGerman Chancellor Angela Merkel , in a television broadcast Sunday , condemned the violence and warned that authorities will not tolerate such activities .\tJJ NN NNP NNP , IN DT NN NN NNP , VBD DT NN CC VBD IN NNS MD RB VB JJ NNS .\nChina has rushed a first batch of vaccine to the southwestern province of Sichuan , where a pig-borne disease has killed at least 34 people .\tNNP VBZ VBN DT JJ NN IN NN TO DT JJ NN IN NNP , WRB DT JJ NN VBZ VBN IN JJS CD NNS .\nThe Xinhua news agency reports that enough vaccine to treat Streptococcus suis bacteria in 3,50,000 pigs has been flown to the province .\tDT NNP NN NN VBZ IN JJ NN TO VB NNP NNP NNS IN CD NNS VBZ VBN VBN TO DT NN .\nAnother 10 million doses are being manufactured and will be sent to affected areas .\tDT CD CD NNS VBP VBG VBN CC MD VB VBN TO JJ NNS .\nHealth authorities have identified 174 human cases - either confirmed or suspected - of the illness as of Saturday .\tNN NNS VBP VBN CD JJ NNS IN DT VBN CC VBN : IN DT NN IN IN NNP .\nMost victims had handled either infected pigs or pork .\tJJS NNS VBD VBN RB JJ NNS CC NN .\nChina says no human-to-human transmission of the ailment has been seen .\tNNP VBZ DT JJ NN IN DT NN VBZ VBN VBN .\nTwo cases have been reported in Hong Kong , adjacent to Guangdong , but they are believed to be unrelated to the Sichuan outbreak .\tCD NNS VBP VBN VBN IN NNP NNP , JJ TO NNP , CC PRP VBP VBN TO VB JJ TO DT NNP NN .\nAfter cracking down on firms trading with Iran , UAE authorities say they are worried that the newest sanctions against Iran may hurt business interests .\tIN VBG RP IN NNS VBG IN NNP , NNP NNS VBP PRP VBP VBN IN DT JJS NNS IN NNP MD VB NN NNS .\nIran is one of the United Arab Emirate 's largest trading partners .\tNNP VBZ CD IN DT NNP NNP NNP POS JJS NN NNS .\nUAE Minister of State for Foreign Affairs Anwar Gargash says the two countries have billions of dollars in legitimate trade agreements that must be spared .\tNNP NNP IN NNP IN NNP NNP NNP NNP VBZ DT CD NNS VBP NNS IN NNS IN JJ NN NNS WDT MD VB VBN .\nHe said Monday that the government is trying to decide on an approach that will help it sift through the exchanges that do not violate sanctions .\tPRP VBD NNP IN DT NN VBZ VBG TO VB IN DT NN WDT MD VB PRP VB IN DT NNS WDT VBP RB VB NNS .\nThe UAE comments come days after U.S. Undersecretary of the Treasury Stuart Levey made a trip to the UAE to urge tighter enforcement of the sanctions against Iran .\tDT NNP NNS VBP NNS IN NNP NN IN DT NNP NNP NNP VBD DT NN TO DT NNP TO VB JJR NN IN DT NNS IN NNP .\nThe sanctions are designed to curtail Iran 's alleged nuclear weapons program .\tDT NNS VBP VBN TO VB NNP POS JJ JJ NNS NN .\nIran says its nuclear program is for peaceful use .\tNNP VBZ PRP$ JJ NN VBZ IN JJ NN .\nNepalese police have arrested a top opposition leader in the capital , Kathmandu , and Maoist rebels have opened fire at a busy marketplace in southern Nepal , wounding three people .\tJJ NNS VBP VBN DT JJ NN NN IN DT NN , NNP , CC NNP NNS VBP VBN NN IN DT JJ NN IN JJ NNP , VBG CD NNS .\nOfficials in Bara district , where the Maoist attack took place Thursday , say the rebels fired indiscriminately .\tNNS IN NNP NN , WRB DT NNP NN VBD NN NNP , VBP DT NNS VBD RB .\nThey wounded a policeman , a journalist and a health worker .\tPRP VBD DT NN , DT NN CC DT NN NN .\nAt least 38 people have been killed in clashes between rebels and security forces over the past week .\tIN JJS CD NNS VBP VBN VBN IN NNS IN NNS CC NN NNS IN DT JJ NN .\nAlso Thursday , authorities stormed the home of the secretary-general of the Communist Party , Madhav Kumar Nepal , and took him away .\tRB NNP , NNS VBD DT NN IN DT NN IN DT NNP NNP , NNP NNP NNP , CC VBD PRP RB .\nThe arrest followed a raid on his home a day earlier by armed police who seized phones , communication equipment and documents .\tDT NN VBD DT NN IN PRP$ NN DT NN RB IN JJ NNS WP VBD NNS , NN NN CC NNS .\nSecurity forces placed Nepal under house arrest in mid-January during a government crackdown on opposition activists to prevent anti-government protests .\tNN NNS VBN NNP IN NN NN IN JJ IN DT NN NN IN NN NNS TO VB JJ NNS .\nEuropean Union leaders have agreed to a long-term budget after Britain offered to reduce its annual rebate .\tNNP NNP NNS VBP VBN TO DT JJ NN IN NNP VBD TO VB PRP$ JJ NN .\nThe leaders reached a final deal in Brussels early Saturday after British Prime Minister Tony Blair agreed to cut his country 's rebate by nearly $ 13 billion .\tDT NNS VBD DT JJ NN IN NNP JJ NNP IN NNP NNP NNP NNP NNP VBD TO VB PRP$ NN POS NN IN RB $ CD CD .\nMr. Blair described negotiations as extraordinarily difficult .\tNNP NNP VBD NNS IN RB JJ .\nGerman Chancellor Angela Merkel played a key role in the talks and praised the deal .\tJJ NNP NNP NNP VBD DT JJ NN IN DT NNS CC VBD DT NN .\nPolish Prime Minister Kazimierz Marcinkiewicz said the budget was reached in the spirit of solidarity .\tJJ NNP NNP NNP NNP VBD DT NN VBD VBN IN DT NN IN NN .\nThe six-year plan begins in 2007 .\tDT JJ NN VBZ IN CD .\nIt includes billions of dollars of development aid to new member states from Eastern Europe , and caps overall spending at $ 1 trillion dollars for the six-year period .\tPRP VBZ NNS IN NNS IN NN NN TO JJ NN NNS IN NNP NNP , CC VBZ JJ NN IN $ CD CD NNS IN DT JJ NN .\nThe final deal calls for a review of all EU budget revenue and spending , including farm subsidies .\tDT JJ NN VBZ IN DT NN IN DT NNP NN NN CC NN , VBG NN NNS .\nValley Federal Savings & Loan Association took an $ 89.9 million charge as it reported a third-quarter loss of $ 70.7 million , or $ 12.09 a share .\tNNP NNP NNP CC NNP NNP VBD DT $ CD CD NN IN PRP VBD DT JJ NN IN $ CD CD , CC $ CD DT NN .\nThe Van Nuys , Calif. , thrift had net income of $ 1,32,000 , or three cents a share , a year ago .\tDT NNP NNP , NNP , NN VBD JJ NN IN $ CD , CC CD NNS DT NN , DT NN RB .\nThe bulk of the pretax charge is a $ 62 million write-off of capitalized servicing at the mobile home financing subsidiary , which the company said had been a big drain on earnings .\tDT NN IN DT JJ NN VBZ DT $ CD CD NN IN VBN NN IN DT JJ NN NN NN , WDT DT NN VBD VBD VBN DT JJ NN IN NNS .\nThe company said the one-time provision would substantially eliminate all future losses at the unit .\tDT NN VBD DT JJ NN MD RB VB DT JJ NNS IN DT NN .\nValley Federal also added $ 18 million to realestate loan reserves and eliminated $ 9.9 million of good will .\tNNP NNP RB VBD $ CD CD TO VB NN NNS CC VBN $ CD CD IN JJ NN .\nThe thrift said that ' after these charges and assuming no dramatic fluctuation in interest rates , the association expects to achieve near record earnings in 1990 . '\tDT NN VBD IN `` IN DT NNS CC VBG DT JJ NN IN NN NNS , DT NN VBZ TO VB IN NN NNS IN CD . ``\nValley Federal is currently being examined by regulators .\tNNP NNP VBZ RB VBG VBN IN NNS .\nNew loans continue to slow ; they were $ 6.6 million in the quarter compared with $ 361.8 million a year ago .\tJJ NNS VBP TO VB : PRP VBD $ CD CD IN DT NN VBN IN $ CD CD DT NN RB .\nThe thrift has assets of $ 3.2 billion .\tDT NN VBZ NNS IN $ CD CD .\nAn independent Korean state or collection of states has existed almost continuously for several millennia .\tDT JJ JJ NN CC NN IN NNS VBZ VBN RB RB IN JJ NNS .\nBetween its initial unification in the 7th century - from three predecessor Korean states - until the 20th century , Korea existed as a single independent country .\tIN PRP$ JJ NN IN DT JJ NN : IN CD NN JJ NNS IN IN DT JJ NN , NNP VBD IN DT JJ JJ NN .\nIn 1905 , following the Russo-Japanese War , Korea became a protectorate of imperial Japan , and in 1910 it was annexed as a colony .\tIN CD , VBG DT JJ NNP , NNP VBD DT NN IN JJ NNP , CC IN CD PRP VBD VBN IN DT NN .\nKorea regained its independence following Japan 's surrender to the United States in 1945 .\tNNP VBD PRP$ NN VBG NNP POS NN TO DT NNP NNPS IN CD .\nAfter World War II , a Republic of Korea ( ROK ) was set up in the southern half of the Korean Peninsula while a Communist-style government was installed in the north ( the DPRK ) .\tIN NNP NNP NNP , DT NNP IN NNP LRB NNP RRB VBD VBN RP IN DT JJ NN IN DT JJ NNP IN DT JJ NN VBD VBN IN DT NN LRB DT NNP RRB .\nDuring the Korean War ( 1950 - 53 ) , US troops and UN forces fought alongside soldiers from the ROK to defend South Korea from DPRK attacks supported by China and the Soviet Union .\tIN DT NNP NNP LRB CD IN CD RRB , NNP NNS CC NNP NNS VBD IN NNS IN DT NNP TO VB NNP NNP IN NNP NNS VBN IN NNP CC DT NNP NNP .\nAn armistice was signed in 1953 , splitting the peninsula along a demilitarized zone at about the 38th parallel .\tDT NN VBD VBN IN CD , VBG DT NN IN DT JJ NN IN IN DT JJ NN .\nThereafter , South Korea achieved rapid economic growth with per capita income rising to roughly 17 times the level of North Korea .\tNNP , NNP NNP VBD JJ JJ NN IN IN NN NN VBG TO RB CD NNS DT NN IN NNP NNP .\nIn 1993 , KIM Young-sam became South Korea 's first civilian president following 32 years of military rule .\tIN CD , NNP NNP VBD NNP NNP POS JJ JJ NN VBG CD NNS IN JJ NN .\nSouth Korea today is a fully functioning modern democracy .\tNNP NNP NN VBZ DT RB VBG JJ NN .\nPresident LEE Myung-bak has pursued a policy of global engagement since taking office in February 2008 , highlighted by Seoul 's hosting of the G-20 summit in November 2010 .\tNNP NNP NNP VBZ VBN DT NN IN JJ NN IN VBG NN IN NNP CD , VBN IN NNP POS NN IN DT NNP NN IN NNP CD .\nSerious tensions with North Korea have punctuated inter-Korean relations in recent years , including the North 's sinking of the South Korean warship Cheonan in March 2010 and its artillery attack on South Korean soldiers and citizens in November 2010 .\tJJ NNS IN NNP NNP VBP VBN JJ NNS IN JJ NNS , VBG DT NNP POS NN IN DT JJ JJ NN NNP IN NNP CD CC PRP$ NN NN IN JJ JJ NNS CC NNS IN NNP CD .\nDiscovered in 1493 by Christopher COLUMBUS who named it for his brother Bartolomeo , Saint Barthelemy was first settled by the French in 1648 .\tVBN IN CD IN NNP NNP WP VBD PRP IN PRP$ NN NNP , NNP NNP VBD JJ VBN IN DT NNS IN CD .\nIn 1784 , the French sold the island to Sweden , who renamed the largest town Gustavia , after the Swedish King GUSTAV III , and made it a free port ; the island prospered as a trade and supply center during the colonial wars of the 18th century .\tIN CD , DT NNS VBD DT NN TO NNP , WP VBD DT JJS NN NNP , IN DT JJ NNP NNP NNP , CC VBD PRP DT JJ NN ; DT NN VBD IN DT NN CC NN NN IN DT JJ NNS IN DT JJ NN .\nFrance repurchased the island in 1878 and placed it under the administration of Guadeloupe .\tNNP VBD DT NN IN CD CC VBD PRP IN DT NN IN NNP .\nSaint Barthelemy retained its free port status along with various Swedish appellations such as Swedish street and town names , and the three-crown symbol on the coat of arms .\tNNP NNP VBD PRP$ JJ NN NN IN IN JJ JJ NNS JJ IN JJ NN CC NN NNS , CC DT JJ NN IN DT NN IN NNS .\nIn 2003 , the populace of the island voted to secede from Guadeloupe and in 2007 , the island became a French overseas collectivity .\tIN CD , DT NN IN DT NN VBD TO VB IN NNP CC IN CD , DT NN VBD DT JJ JJ NN .\nIn 1951 , the Nepalese monarch ended the century-old system of rule by hereditary premiers and instituted a cabinet system of government .\tIN CD , DT JJ NN VBD DT JJ NN IN NN IN JJ NNS CC VBD DT NN NN IN NN .\nReforms in 1990 established a multiparty democracy within the framework of a constitutional monarchy .\tNNS IN CD VBD DT JJ NN IN DT NN IN DT JJ NN .\nAn insurgency led by Maoist extremists broke out in 1996 .\tDT NN VBN IN NNP NNS VBD RP IN CD .\nThe ensuing ten-year civil war between insurgents and government forces witnessed the dissolution of the cabinet and parliament and assumption of absolute power by the king .\tDT VBG JJ JJ NN IN NNS CC NN NNS VBD DT NN IN DT NN CC NN CC NN IN JJ NN IN DT NN .\nSeveral weeks of mass protests in April 2006 were followed by several months of peace negotiations between the Maoists and government officials , and culminated in a November 2006 peace accord and the promulgation of an interim constitution .\tJJ NNS IN JJ NNS IN NNP CD VBD VBN IN JJ NNS IN NN NNS IN DT NNS CC NN NNS , CC VBN IN DT NNP CD NN NN CC DT NN IN DT JJ NN .\nFollowing a nation-wide election in April 2008 , the newly formed Constituent Assembly declared Nepal a federal democratic republic and abolished the monarchy at its first meeting the following month .\tVBG DT JJ NN IN NNP CD , DT RB VBN NNP NNP VBD NNP DT JJ JJ NN CC VBD DT NN IN PRP$ JJ NN DT VBG NN .\nThe Constituent Assembly elected the country 's first president in July .\tDT NNP NNP VBD DT NN POS JJ NN IN NNP .\nThe Maoists , who received a plurality of votes in the Constituent Assembly election , formed a coalition government in August 2008 , but resigned in May 2009 after the president overruled a decision to fire the chief of the army staff .\tDT NNS , WP VBD DT NN IN NNS IN DT NNP NNP NN , VBD DT NN NN IN NNP CD , CC VBD IN NNP CD IN DT NN VBD DT NN TO VB DT NN IN DT NN NN .\nThe Communist Party of Nepal-United Marxist-Leninist and the Nepali Congress party then formed a new coalition government with several smaller parties .\tDT NNP NNP IN JJ NN CC DT NNP NNP NN RB VBD DT JJ NN NN IN JJ JJR NNS .\nThe prime minister 's resignation in June 2010 ushered in seven months of political gridlock until Jhala Nath KHANAL was elected as replacement in February 2011 .\tDT JJ NN POS NN IN NNP CD VBD IN CD NNS IN JJ NN IN NNP NNP NNP VBD VBN IN NN IN NNP CD .\nHis pressing tasks are to conclude the drafting of a new constitution by the late May 2011 deadline and to determine the future of the former Maoist combatants .\tPRP$ JJ NNS VBP TO VB DT NN IN DT JJ NN IN DT JJ NNP CD NN CC TO VB DT NN IN DT JJ NNP NNS .\nOriginally a Dutch colony in the 17th century , by 1815 Guyana had become a British possession .\tRB DT JJ NN IN DT JJ NN , IN CD NNP VBD VBN DT JJ NN .\nThe abolition of slavery led to black settlement of urban areas and the importation of indentured servants from India to work the sugar plantations .\tDT NN IN NN VBN TO JJ NN IN JJ NNS CC DT NN IN JJ NNS IN NNP TO VB DT NN NNS .\nThis ethnocultural divide has persisted and has led to turbulent politics .\tDT JJ NN VBZ VBN CC VBZ VBN TO JJ NNS .\nGuyana achieved independence from the UK in 1966 , and since then it has been ruled mostly by socialist-oriented governments .\tNNP VBD NN IN DT NNP IN CD , CC IN RB PRP VBZ VBN VBN RB IN JJ NNS .\nIn 1992 , Cheddi JAGAN was elected president in what is considered the country 's first free and fair election since independence .\tIN CD , NNP NNP VBD VBN NN IN WP VBZ VBN DT NN POS JJ JJ CC JJ NN IN NN .\nAfter his death five years later , his wife , Janet JAGAN , became president but resigned in 1999 due to poor health .\tIN PRP$ NN CD NNS RB , PRP$ NN , NNP NNP , VBD NN CC VBD IN CD JJ TO JJ NN .\nHer successor , Bharrat JAGDEO , was reelected in 2001 and again in 2006 .\tPRP$ NN , NNP NNP , VBD VBN IN CD CC RB IN CD .\nThe territory of Northern Rhodesia was administered by the [ British ] South Africa Company from 1891 until it was taken over by the UK in 1923 .\tDT NN IN NNP NNP VBD VBN IN DT LRB NNP RRB NNP NNP NN IN CD IN PRP VBD VBN RP IN DT NNP IN CD .\nDuring the 1920s and 1930s , advances in mining spurred development and immigration .\tIN DT NNS CC NNS , NNS IN NN VBN NN CC NN .\nThe name was changed to Zambia upon independence in 1964 .\tDT NN VBD VBN TO NNP IN NN IN CD .\nIn the 1980s and 1990s , declining copper prices , economic mismanagement and a prolonged drought hurt the economy .\tIN DT NNS CC NNS , VBG NN NNS , JJ NN CC DT JJ NN VBD DT NN .\nElections in 1991 brought an end to one-party rule , but the subsequent vote in 1996 saw blatant harassment of opposition parties .\tNNS IN CD VBD DT NN TO JJ NN , CC DT JJ NN IN CD VBD JJ NN IN NN NNS .\nThe election in 2001 was marked by administrative problems with three parties filing a legal petition challenging the election of ruling party candidate Levy MWANAWASA .\tDT NN IN CD VBD VBN IN JJ NNS IN CD NNS VBG DT JJ NN VBG DT NN IN VBG NN NN NNP NNP .\nThe new president launched an anticorruption investigation in 2002 to probe high-level corruption during the previous administration .\tDT JJ NN VBD DT NN NN IN CD TO VB JJ NN IN DT JJ NN .\nIn 2006 - 7 , this task force successfully prosecuted four cases , including a landmark civil case in the UK in which former President CHILUBA and numerous others were found liable for more than USD 41 million .\tIN CD : CD , DT NN NN RB VBD CD NNS , VBG DT NN JJ NN IN DT NNP IN WDT JJ NNP NNP CC JJ NNS VBD VBN JJ IN JJR IN NNP CD CD .\nMWANAWASA was reelected in 2006 in an election that was deemed free and fair .\tNNP VBD VBN IN CD IN DT NN WDT VBD VBN JJ CC JJ .\nUpon his abrupt death in August 2008 , he was succeeded by his Vice President Rupiah BANDA , who subsequently won a special presidential by-election in October 2008 .\tIN PRP$ JJ NN IN NNP CD , PRP VBD VBN IN PRP$ NNP NNP NNP NNP , WP RB VBD DT JJ JJ NN IN NNP CD .\nUnder President BANDA , the Task Force on Corruption was abolished , President CHILUBA and his wife were acquitted in their criminal cases , and the government declined to register the UK civil verdict .\tIN NNP NNP , DT NNP NNP IN NNP VBD VBN , NNP NNP CC PRP$ NN VBD VBN IN PRP$ JJ NNS , CC DT NN VBD TO VB DT NNP JJ NN .\nThe Spratly Islands consist of more than 100 small islands or reefs .\tDT NNP NNP VBP IN JJR IN CD JJ NNS CC NNS .\nThey are surrounded by rich fishing grounds and potentially by gas and oil deposits .\tPRP VBP VBN IN JJ NN NNS CC RB IN NN CC NN NNS .\nThey are claimed in their entirety by China , Taiwan , and Vietnam , while portions are claimed by Malaysia and the Philippines .\tPRP VBP VBN IN PRP$ NN IN NNP , NNP , CC NNP , IN NNS VBP VBN IN NNP CC DT NNPS .\nAbout 45 islands are occupied by relatively small numbers of military forces from China , Malaysia , the Philippines , Taiwan , and Vietnam .\tIN CD NNS VBP VBN IN RB JJ NNS IN JJ NNS IN NNP , NNP , DT NNPS , NNP , CC NNP .\nBrunei has established a fishing zone that overlaps a southern reef but has not made any formal claim .\tNNP VBZ VBN DT NN NN WDT VBZ DT JJ NN CC VBZ RB VBN DT JJ NN .\nTHE President of a great Corporation went into a dry-goods shop and saw a placard which read : ' If You Do n't See What You Want , Ask For It . '\tDT NN IN DT JJ NN VBD IN DT NNS NN CC VBD DT NN WDT VBD : `` IN PRP VBP RB VB WP PRP NNP , NNP IN PRP . ``\nApproaching the shopkeeper , who had been narrowly observing him as he read the placard , he was about to speak , when the shopkeeper called to a salesman : ' John , show this gentleman the world . '\tVBG DT NN , WP VBD VBN RB VBG PRP IN PRP VBD DT NN , PRP VBD IN TO VB , WRB DT NN VBD TO DT NN IN `` NNP , VBP DT NN DT NN . ``\nMore than 1,000 supporters of former Yugoslav President Slobodan Milosevic have walked past his coffin , paying final respects to the late president .\tJJR IN CD NNS IN JJ JJ NNP NNP NNP VBP VBN IN PRP$ NN , VBG JJ NNS TO DT JJ NN .\nA large portrait of the former leader was placed Thursday in front of the closed , flag-draped casket at a communist-era museum in Belgrade .\tDT JJ NN IN DT JJ NN VBD VBN NNP IN NN IN DT JJ , JJ NN IN DT JJ NN IN NNP .\nThe observances prompted criticism from the museum 's director about the use of the cultural institution for political purposes .\tDT NNS VBD NN IN DT NN POS NN IN DT NN IN DT JJ NN IN JJ NNS .\nOfficials with Milosevic 's Socialist Party say his coffin will remain on public display until Saturday , when it will be taken to his hometown of Pozarevac .\tNNS IN NNP POS NNP NNP VBP PRP$ NN MD VB IN JJ NN IN NNP , WRB PRP MD VB VBN TO PRP$ NN IN NNP .\nMilosevic will be buried in the yard of his family home .\tNNP MD VB VBN IN DT NN IN PRP$ NN NN .\nA top party official , Milorad Vucelic says Milosevic 's widow , Mira Markovic , is expected to return to Belgrade from Russia Friday for the funeral .\tDT JJ NN NN , NNP NNP VBZ NNP POS NN , NNP NNP , VBZ VBN TO VB IN NNP IN NNP NNP IN DT NN .\nHer expected appearance follows a Serbian court Tuesday suspending an arrest warrant for her on charges of abuse of power .\tPRP$ JJ NN VBZ DT JJ NN NNP VBG DT NN NN IN PRP IN NNS IN NN IN NN .\nThere will be no official remembrances for Milosevic .\tEX MD VB DT JJ NNS IN NNP .\nSerbian President Boris Tadic has ruled out a state funeral .\tJJ NNP NNP NNP VBZ VBN RP DT NN NN .\nMilosevic died of a heart attack last week in his jail cell near The Hague .\tNNP VBD IN DT NN NN JJ NN IN PRP$ NN NN IN DT NNP .\nHe was on trial before the United Nations war crimes tribunal for genocide and crimes against humanity stemming from the Balkan wars of the 1990s .\tPRP VBD IN NN IN DT NNP NNPS NN NNS JJ IN NN CC NNS IN NN VBG IN DT NNP NNS IN DT NNS .\nThe United States ' only mobile field hospital has arrived in Pakistan to help earthquake victims in Pakistan 's devastated Kashmir region .\tDT NNP NNPS POS JJ JJ NN NN VBZ VBN IN NNP TO VB NN NNS IN NNP POS JJ NNP NN .\nOfficials Sunday said the Mobile Army Surgical Hospital , or MASH unit , would be positioned in Muzaffarabad , the capital of Pakistani Kashmir .\tNNS NNP VBD DT NNP NNP NNP NNP , CC NNP NN , MD VB VBN IN NNP , DT NN IN JJ NNP .\nThey say the Germany-based unit will be an important addition to other international hospitals operating in the region .\tPRP VBP DT JJ NN MD VB DT JJ NN TO JJ JJ NNS VBG IN DT NN .\nTens of thousands of people were injured in the massive quake , and Pakistani and international medical teams have been struggling to treat them .\tNNS IN NNS IN NNS VBD VBN IN DT JJ NN , CC JJ CC JJ JJ NNS VBP VBN VBG TO VB PRP .\nU.S. Army doctors say they expect to see people with broken bones , trauma injuries and those suffering from shock , cold or malnutrition .\tNNP NNP NNS VBP PRP VBP TO VB NNS IN JJ NNS , NN NNS CC DT VBG IN NN , JJ CC NN .\nThe MASH unit , the last of its kind in the U.S. Army , dates back to World War I and has been used in several conflicts , including Vietnam , the Balkans and the 1991 Gulf war .\tDT NNP NN , DT NN IN PRP$ NN IN DT NNP NNP , VBZ RB TO NNP NNP NNP CC VBZ VBN VBN IN JJ NNS , VBG NNP , DT NNPS CC DT CD NNP NN .\nOfficials in eastern Sudan say clashes between police and demonstrators have left at least 14 people dead .\tNNS IN JJ NNP VBP NNS IN NNS CC NNS VBP VBN IN JJS CD NNS JJ .\nWitnesses say members of the Beja tribal group were marching to the governor 's office in the eastern city of Port Sudan Saturday when the violence began .\tNNS VBP NNS IN DT NNP NN NN VBD VBG TO DT NN POS NN IN DT JJ NN IN NNP NNP NNP WRB DT NN VBD .\nOfficials from the Beja tribe say security forces shot at the demonstrators .\tNNS IN DT NNP NN VBP NN NNS VBN IN DT NNS .\nThey put the death toll at 23 .\tPRP VBD DT NN NN IN CD .\nPolice say the protesters were looting and vandalizing buildings .\tNNS VBP DT NNS VBD VBG CC VBG NNS .\nThey have imposed a curfew on the town .\tPRP VBP VBN DT NN IN DT NN .\nEarlier this week , Beja tribes people presented a list of demands to the local government , including a call for a fairer distribution of wealth and power in the region .\tRBR DT NN , NNP VBZ NNS VBD DT NN IN NNS TO DT JJ NN , VBG DT NN IN DT JJR NN IN NN CC NN IN DT NN .\nTheir demands are similar to those that sparked separate violence in Sudan 's western and southern regions .\tPRP$ NNS VBP JJ TO DT WDT VBD JJ NN IN NNP POS JJ CC JJ NNS .\nA southern peace deal was reached earlier this year , but violence continues in Darfur .\tDT JJ NN NN VBD VBN RBR DT NN , CC NN VBZ IN NNP .\nRussian officials say President Vladimir Putin will travel to Libya Wednesday at the invitation of Libyan leader Moammar Gadhafi .\tJJ NNS VBP NNP NNP NNP MD VB TO NNP NNP IN DT NN IN JJ NN NNP NNP .\nThe talks between the two leaders meeting in the North African country are expected to focus on gas exploration deals with Russia 's natural gas company , Gazprom .\tDT NNS IN DT CD NNS NN IN DT JJ JJ NN VBP VBN TO VB IN NN NN NNS IN NNP POS JJ NN NN , NNP .\nThe two-day visit will be one of Mr. Putin 's last foreign trips before he steps down from office next month , when Dmitry Medvedev will replace him .\tDT JJ NN MD VB CD IN NNP NNP POS JJ JJ NNS IN PRP VBZ RB IN NN JJ NN , WRB NNP NNP MD VB PRP .\nMr. Putin is expected to become Russia 's prime minister .\tNNP NNP VBZ VBN TO VB NNP POS JJ NN .\nThe blockbuster movie 300 may have conquered U.S. box offices , but it 's no hit in Iran .\tDT NN NN NNP MD VB VBN NNP NN NNS , CC PRP VBZ DT NN IN NNP .\nBlasting it as an ' obvious insult , ' state-run television is featuring Iranian film directors to point out its historical inaccuracies .\tVBG PRP IN DT `` JJ NN , `` JJ NN VBZ VBG JJ NN NNS TO VB RP PRP$ JJ NNS .\nFocusing on the Greek victory over vastly larger Persian forces at the Battle Of Thermopylae in 480 B.C. , 300 grossed $ 70 million in its first weekend of U.S. release .\tVBG IN DT JJ NN IN RB JJR JJ NNS IN DT NNP IN NNP IN CD NNP , NNP VBD $ CD CD IN PRP$ JJ NN IN NNP NN .\nThe film comes at a time of tension between the United States and Iran over the Middle Eastern nation 's nuclear ambitions 0.3 has not opened in Iran and likely never will , although one newspaper noted its availability through illegally-copied DVDs .\tDT NN VBZ IN DT NN IN NN IN DT NNP NNPS CC NNP IN DT NNP NNP NN POS JJ NNS NN VBZ RB VBN IN NNP CC JJ RB MD , IN CD NN VBD PRP$ NN IN JJ NNS .\nThe U.S. Army says it has reviewed an American soldier 's videotape from Iraq that appears to show troops kicking a wounded and bound Iraqi prisoner , and concluded that such behavior was inappropriate but not criminal .\tDT NNP NNP VBZ PRP VBZ VBN DT JJ NN POS NN IN NNP WDT VBZ TO VB NNS VBG DT VBN CC VBN JJ NN , CC VBD IN JJ NN VBD JJ CC RB JJ .\nThe internal military report about the videotape was part of a massive release of 1,200 pages of documents following a lawsuit filed by the American Civil Liberties Union .\tDT JJ JJ NN IN DT NN VBD NN IN DT JJ NN IN CD NNS IN NNS VBG DT NN VBN IN DT NNP NNP NNP NNP .\nThe military says its investigation of the videotape did not result in any new abuse charges , in part because the video apparently has been destroyed .\tDT JJ VBZ PRP$ NN IN DT NN VBD RB VB IN DT JJ NN NNS , IN NN IN DT NN RB VBZ VBN VBN .\nA spokesman said , ' The Army continues to investigate and hold people accountable when appropriate .\tDT NN VBD , `` DT NNP VBZ TO VB CC VB NNS JJ WRB JJ .\nNearly 110 American soldiers are said to have been disciplined for their actions in Iraq .\tRB CD JJ NNS VBP VBN TO VB VBN VBN IN PRP$ NNS IN NNP .\nThe two Koreas have announced special prisoner amnesties to mark the 60th anniversary of the liberation of the peninsula from Japanese colonial rule .\tDT CD NNS VBP VBN JJ NN NNS TO VB DT JJ NN IN DT NN IN DT NN IN JJ NN NN .\nSouth Korean authorities said Friday , that President Roh Moo-hyun has issued more than four million pardons , covering a range of offenses including corruption by government officials , less serious crimes and traffic-law violations .\tJJ JJ NNS VBD NNP , IN NNP NNP NNP VBZ VBN JJR IN CD CD NNS , VBG DT NN IN NNS VBG NN IN NN NNS , JJR JJ NNS CC NN NNS .\nAuthorities in Pyongyang say North Korea is granting amnesty to prisoners to celebrate not only the liberation of the Korean peninsula in 1945 , but also the found of its Communist party 60 years ago .\tNNS IN NNP VBP NNP NNP VBZ VBG NN TO NNS TO VB RB RB DT NN IN DT JJ NN IN CD , CC RB DT VBN IN PRP$ JJ NN CD NNS RB .\nThe official Korean Central News Agency says the amnesty will take effect on September 1 .\tDT JJ JJ NNP NNP NNP VBZ DT NN MD VB NN IN NNP CD .\nThere is no word on how many prisoners will be pardoned or what crimes the amnesty will absolve .\tEX VBZ DT NN IN WRB JJ NNS MD VB VBN CC WP NNS DT NN MD VB .\nThe United States estimates that North Korea has between 1,50,000 and 2,00,000 political prisoners in custody .\tDT NNP NNPS VBZ IN NNP NNP VBZ IN CD CC CD JJ NNS IN NN .\nUnder the watchful eye of security forces , the family of ousted Chinese leader Zhao Ziyang has held a memorial ceremony for him on China 's traditional day of remembrance for the dead .\tIN DT JJ NN IN NN NNS , DT NN IN JJ JJ NN NNP NNP VBZ VBN DT JJ NN IN PRP IN NNP POS JJ NN IN NN IN DT NN .\nZhao 's family planted a magnolia tree in the backyard of his Beijing home Tuesday .\tNNP POS NN VBD DT NN NN IN DT NN IN PRP$ NNP NN NNP .\nThe former Communist Party leader died in January at the age of 85 .\tDT JJ NNP NNP NN VBD IN NNP IN DT NN IN CD .\nZhao was deposed in 1989 over his opposition to the violent crackdown on pro-democracy protesters in Tiananmen Square .\tNNP VBD VBN IN CD IN PRP$ NN TO DT JJ NN IN JJ NNS IN NNP NNP .\nHe spent the next 15 years under house arrest .\tPRP VBD DT JJ CD NNS IN NN NN .\nChina 's government accused Zhao of making ' serious mistakes ' in his handling of the protests and downplayed his death .\tNNP POS NN VBD NNP IN VBG `` JJ NNS `` IN PRP$ NN IN DT NNS CC VBD PRP$ NN .\nMany pro-democracy activists and relatives of those who were killed in Tiananmen have been prevented by security forces from visiting Zhao 's home to pay their respects .\tJJ JJ NNS CC NNS IN DT WP VBD VBN IN NNP VBP VBN VBN IN NN NNS IN VBG NNP POS NN TO VB PRP$ NNS .\nMinisters from 21 Asia-Pacific economies will begin meetings later Wednesday in Santiago , Chile , ahead of a summit of leaders from the region later this week .\tNNS IN CD JJ NNS MD VB NNS RB NNP IN NNP , NNP , RB IN DT NN IN NNS IN DT NN RB DT NN .\nOfficials say today 's meetings of the Asia-Pacific Economic Cooperation group will help set the agenda for the leaders ' summit , and are expected to feature discussions on regional trade agreements and general trade policies .\tNNS VBP NN POS NNS IN DT NNP NNP NNP NN MD VB VB DT NN IN DT NNS POS NN , CC VBP VBN TO VB NNS IN JJ NN NNS CC JJ NN NNS .\nThe ministers also are expected to express their support for global trade talks under the auspices of the World Trade Organization .\tDT NNS RB VBP VBN TO VB PRP$ NN IN JJ NN NNS IN DT NNS IN DT NNP NNP NNP .\nOther themes expected to be addressed by ministers include anti-terrorism efforts , health concerns , anti-corruption and transparency issues , and maintaining the security of regional financial markets .\tJJ NNS VBN TO VB VBN IN NNS VBP JJ NNS , NN NNS , NN CC NN NNS , CC VBG DT NN IN JJ JJ NNS .\nPresident Bush , Chinese President Hu Jintao and Japanese Prime Minister Junichiro Koizumi will be among the leaders attending the APEC summit Saturday and Sunday .\tNNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP NNP MD VB IN DT NNS VBG DT NNP NN NNP CC NNP .\nPakistan 's deposed chief justice has begun a national campaign to reclaim his post by saying he still considers himself the legal head of his country 's Supreme Court .\tNNP POS VBN NN NN VBZ VBN DT JJ NN TO VB PRP$ NN IN VBG PRP RB VBZ PRP DT JJ NN IN PRP$ NN POS NNP NNP .\nIftikhar Mohammad Chaudhry was speaking Tuesday to lawyers in his hometown of Quetta , the first stop on a tour of Pakistani cities .\tNNP NNP NNP VBD VBG NNP TO NNS IN PRP$ NN IN NNP , DT JJ NN IN DT NN IN JJ NNS .\nPakistani authorities released Chaudhry from house arrest last week on the orders of new Prime Minister Yousuf Raza Gilani .\tJJ NNS VBD NNP IN NN NN JJ NN IN DT NNS IN JJ NNP NNP NNP NNP NNP .\nChaudhry praised the election victory of Mr. Gilani and other opposition leaders in February 's parliamentary vote , saying it has changed Pakistan 's political culture .\tNNP VBD DT NN NN IN NNP NNP CC JJ NN NNS IN NNP POS JJ NN , VBG PRP VBZ VBN NNP POS JJ NN .\nHe says Pakistani voters rejected what he calls the ' one-man rule ' of President Pervez Musharraf .\tPRP VBZ JJ NNS VBD WP PRP VBZ DT `` JJ NN `` IN NNP NNP NNP .\nMr. Musharraf dismissed Chaudhry and dozens of other top judges last November after they refused to recognize his October reelection as president .\tNNP NNP VBD NNP CC NNS IN JJ JJ NNS JJ NNP IN PRP VBD TO VB PRP$ NNP NN IN NN .\nMr. Gilani 's coalition government has promised to reinstate all the deposed judges within 30 days .\tNNP NNP POS NN NN VBZ VBN TO VB PDT DT VBN NNS IN CD NNS .\nKosovo 's Prime Minister Bajram Kosumi has resigned , following intense pressure from his own party .\tNNP POS NNP NNP NNP NNP VBZ VBN , VBG JJ NN IN PRP$ JJ NN .\nMr. Kosumi faced mounting criticism from the ruling coalition , which viewed him as an ineffective leader .\tNNP NNP VBD VBG NN IN DT NN NN , WDT VBD PRP IN DT JJ NN .\nOne of several political parties in the province , the Alliance for the Future of Kosovo , has suggested that President Fatmir Sejdiu nominate a former key member of the ethnic Albanian guerrilla movement , the Kosovo Liberation Army , Agim Ceku for the post .\tCD IN JJ JJ NNS IN DT NN , DT NNP IN DT NN IN NNP , VBZ VBN IN NNP NNP NNP VBD DT JJ JJ NN IN DT JJ JJ NN NN , DT NNP NNP NNP , NNP NNP IN DT NN .\nThe party says it believes Ceku would be dedicated to the pursuit of an independent Kosovo .\tDT NN VBZ PRP VBZ NNP MD VB VBN TO DT NN IN DT JJ NNP .\nThe outgoing prime minister was a key figure in the United Nations-mediated talks on the future of the Serbian province .\tDT JJ JJ NN VBD DT JJ NN IN DT NNP JJ NNS IN DT NN IN DT JJ NN .\nKosovo has been under U.N. administration since 1999 , when NATO airstrikes drove out Serbian security forces after violence against ethnic Albanians .\tNNP VBZ VBN IN NNP NN IN CD , WRB NNP NNS VBD RP JJ NN NNS IN NN IN JJ NNS .\nThe region 's ethnic Albanian majority is pressing for independence from Serbia - a demand that Serbs strongly oppose .\tDT NN POS JJ JJ NN VBZ VBG IN NN IN NNP IN DT NN IN NNS RB VBP .\nPakistani police say they have arrested five people in Karachi for allegedly plotting attacks on security forces and government buildings in the nation 's commercial capital .\tJJ NNS VBP PRP VBP VBN CD NNS IN NNP IN RB VBG NNS IN NN NNS CC NN NNS IN DT NN POS JJ NN .\nKarachi 's police chief , Waseem Ahmed , told reporters Wednesday the suspected terrorists belong to the Sunni extremist group Lashkar-e-Jhangvi .\tNNP POS NN NN , NNP NNP , VBD NNS NNP DT JJ NNS VBP TO DT NNP NN NN NNP .\nPolice say they recovered weapons and ammunition when they captured the men during a raid Tuesday night in the Sohrab Goth neighborhood , in the southern city .\tNNS VBP PRP VBD NNS CC NN WRB PRP VBD DT NNS IN DT NN NNP NN IN DT NNP NNP NN , IN DT JJ NN .\nThe police chief says the men planned to target several government buildings and the police head office in Karachi .\tDT NN NN VBZ DT NNS VBN TO VB JJ NN NNS CC DT NN NN NN IN NNP .\nAs the dollar 's value drops , especially in relation to the euro , the British pound and some Asian currencies , New York City is experiencing a new kind of tourism boom .\tIN DT NN POS NN NNS , RB IN NN TO DT NN , DT JJ NN CC DT JJ NNS , NNP NNP NNP VBZ VBG DT JJ NN IN NN NN .\nThe world is coming to New York to go shopping .\tDT NN VBZ VBG TO NNP NNP TO VB NN .\nSome say their savings on consumer goods actually pays for their travel .\tDT VBP PRP$ NNS IN NN NNS RB VBZ IN PRP$ NN .\nVOA 's Carolyn Weaver reports .\tNNP POS NNP NNP VBZ .\nKosovo 's ruling coalition says it has agreed on the makeup of a new government , with minor changes to some posts .\tNNP POS NN NN VBZ PRP VBZ VBN IN DT NN IN DT JJ NN , IN JJ NNS TO DT NNS .\nThe Democratic League of Kosovo says it will keep most ministers in the same positions , but will name Lutfi Haziri as new deputy prime minister .\tDT JJ NNP IN NNP VBZ PRP MD VB RBS NNS IN DT JJ NNS , CC MD VB NNP NNP IN JJ JJ JJ NN .\nThe government reshuffle follows the resignation of former Prime Minister Bajram Kosumi , after criticism of the performance of his government .\tDT NN NN VBZ DT NN IN JJ NNP NNP NNP NNP , IN NN IN DT NN IN PRP$ NN .\nThe Kosovo Assembly meets Friday to decide whether to appoint as prime minister General Agim Ceku , who commands the Kosovo Protection Corps - the Serbian province 's civil defense group .\tDT NNP NNP VBZ NNP TO VB IN TO VB IN JJ NN NNP NNP NNP , WP VBZ DT NNP NNP NNP IN DT JJ NN POS JJ NN NN .\nCeku led the ethic Albanian guerrilla movement , the Kosovo Liberation Army , in the struggle of the late 1990s against Serbian troops and security forces .\tNNP VBD DT JJ JJ NN NN , DT NNP NNP NNP , IN DT NN IN DT JJ NNS IN JJ NNS CC NN NNS .\nHe has said he is willing to assume the post .\tPRP VBZ VBN PRP VBZ JJ TO VB DT NN .\nSerbia accuses him of war crimes against civilians during the fighting .\tNNP VBZ PRP IN NN NNS IN NNS IN DT NN .\nRebels in Ivory Coast say they have withdrawn their support for elections scheduled for October 30 .\tNNS IN NNP NNP VBP PRP VBP VBN PRP$ NN IN NNS VBN IN NNP CD .\nThe rebels reached the decision Thursday after a meeting in their northern stronghold of Bouake .\tDT NNS VBD DT NN NNP IN DT NN IN PRP$ JJ NN IN NNP .\nThe French News Agency , AFP , quotes a rebel statement as saying that conditions for a ' free , democratic , and transparent vote ' can not be guaranteed .\tDT NNP NNP NNP , NNP , VBZ DT NN NN IN VBG IN NNS IN DT `` JJ , JJ , CC JJ NN `` MD RB VB VBN .\nThe October elections are meant to help foster the reunification of Ivory Coast , which has been cut in two since a civil war erupted in September 2002 after a failed coup against President Laurent Gbagbo .\tDT NNP NNS VBP VBN TO VB VB DT NN IN NNP NNP , WDT VBZ VBN VBN IN CD IN DT JJ NN VBD IN NNP CD IN DT JJ NN IN NNP NNP NNP .\nLittle progress has been made in implementing a series of peace deals between the government and rebels .\tJJ NN VBZ VBN VBN IN VBG DT NN IN NN NNS IN DT NN CC NNS .\nRwanda has withdrawn a public threat to send troops into eastern Democratic Republic of Congo , where Congolese troops have been fighting dissident soldiers .\tNNP VBZ VBN DT JJ NN TO VB NNS IN JJ JJ NNP IN NNP , WRB JJ NNS VBP VBN VBG JJ NNS .\nRwandan President Paul Kagame had threatened to send soldiers across the border to fight Hutu militias blamed for attacks on Rwanda .\tJJ NNP NNP NNP VBD VBN TO VB NNS IN DT NN TO VB NNP NNS VBN IN NNS IN NNP .\nThe Congolese government sent extra troops to eastern Congo in response to the threat , angering dissidents in the Congolese army who the Kinshasa government says are backed by Rwanda .\tDT JJ NN VBD JJ NNS TO JJ NNP IN NN TO DT NN , VBG NNS IN DT JJ NN WP DT NNP NN VBZ VBP VBN IN NNP .\nFighting broke out last week , forcing at least 1,00,000 people to flee their homes .\tVBG VBN RP JJ NN , VBG IN JJS CD NNS TO VB PRP$ NNS .\nRwandan leaders now say disarming Hutu rebels in Congo is a job for the international community .\tJJ NNS RB VBP VBG NNP NNS IN NNP VBZ DT NN IN DT JJ NN .\nRwanda blames Hutu militias for the 1994 genocide of about 8,00,000 Tutsis and moderate Hutus .\tNNP VBZ NNP NNS IN DT CD NN IN IN CD NN CC JJ NN .\nOfficials in Somalia say U.S. naval warships have bombarded a remote coastal village where suspected Islamist insurgents had set up a base .\tNNS IN NNP VBP NNP JJ NNS VBP VBN DT JJ JJ NN WRB JJ NNP NNS VBD VBN RP DT NN .\nThe attack happened Friday night when a Navy destroyer opened fire around the village of Bargal , located in northern Somalia 's semi-autonomous region of Puntland .\tDT NN VBD NNP NN WRB DT NNP NN VBD NN IN DT NN IN NNP , VBN IN JJ NNP POS JJ NN IN NNP .\nOfficials say the extremists arrived in Bargal earlier this week , then fought with troops from the region .\tNNS VBP DT NNS VBD IN NNP RBR DT NN , RB VBD IN NNS IN DT NN .\nA U.S. Department of Defense spokesman would not confirm or deny the report .\tDT NNP NNP IN NNP NN MD RB VB CC VB DT NN .\nHe would only say the United States remains committed to reducing terrorist capabilities when it finds them .\tPRP MD RB VB DT NNP NNPS VBZ JJ TO VBG JJ NNS WRB PRP VBZ PRP .\nCNN International reported Friday that the ships fired on a suspected al-Qaida operative suspected of being involved in the simultaneous bomb attacks on the U.S. embassies in Kenya and Tanzania in 1998 .\tNNP NNP VBD NNP IN DT NNS VBD IN DT JJ NNP NN VBN IN VBG VBN IN DT JJ NN NNS IN DT NNP NNS IN NNP CC NNP IN CD .\nThe U.S. carried out airstrikes earlier this year in southern Somalia targeting suspected al-Qaida operatives .\tDT NNP VBD RP NNS RBR DT NN IN JJ NNP VBG JJ NNP NNS .\nUzbekistan has rejected a call from NATO 's inter-parliamentary assembly for an international inquiry into recent violence in Andijan , but said foreign diplomats can monitor its own probe .\tNNP VBZ VBN DT NN IN NNP POS JJ NN IN DT JJ NN IN JJ NN IN NNP , CC VBD JJ NNS MD VB PRP$ JJ NN .\nUzbek Foreign Minister Elyor Ganiyev proposed setting up a group of representatives of foreign embassies in Tashkent that would monitor the probe .\tJJ NNP NNP NNP NNP VBD VBG RP DT NN IN NNS IN JJ NNS IN NNP WDT MD VB DT NN .\nNATO Secretary-General Jaap de Hoop Scheffer asked for the investigation after allegations that Uzbek troops used excessive force against unarmed civilians .\tNNP NNP NNP IN NNP NNP VBD IN DT NN IN NNS IN JJ NNS VBD JJ NN IN JJ NNS .\nNATO parliamentarians urged member states to halt support for Uzbek armed forces unless a probe was conducted .\tNNP NNS VBD NN NNS TO VB NN IN JJ JJ NNS IN DT NN VBD VBN .\nWitnesses and Uzbek opposition groups say as many as 1,000 people were killed in the crackdown .\tNNS CC JJ NN NNS VBP RB JJ IN CD NNS VBD VBN IN DT NN .\nThe government put the death toll at 173 .\tDT NN VBD DT NN NN IN CD .\nA U.S. professor and his wife , accused of spying for Cuba , have pleaded not guilty in federal court .\tDT NNP NN CC PRP$ NN , VBN IN VBG IN NNP , VBP VBN RB JJ IN JJ NN .\nCarlos and Elsa Alvarez appeared in a Miami , Florida , courtroom Thursday to face charges they spent decades sending information to Cuba about Cuban exiles in the United States .\tNNP CC NNP NNP VBD IN DT NNP , NNP , NN NNP TO VB NNS PRP VBD NNS VBG NN TO NNP IN JJ NNS IN DT NNP NNPS .\nThe couple 's attorneys say they plan to appeal a federal magistrate 's order that they be considered a flight risk and kept in detention until trial .\tDT NN POS NNS VBP PRP VBP TO VB DT JJ NN POS NN IN PRP VB VBN DT NN NN CC VBD IN NN IN NN .\nNo trial date has been set .\tDT NN NN VBZ VBN VBN .\nThe Alvarezes were charged January ninth with being agents of a foreign power without registering with the U.S. government .\tDT NNPS VBD VBN NNP JJ IN VBG NNS IN DT JJ NN IN VBG IN DT NNP NN .\nProsecutors say they sent information to Cuba using shortwave radio and encryption equipment .\tNNS VBP PRP VBD NN TO NNP VBG NN NN CC NN NN .\nFederal Bureau of Investigation officials say there is no evidence they gave Cuba any classified or military information .\tNNP NNP IN NNP NNS VBP EX VBZ DT NN PRP VBD NNP DT JJ CC JJ NN .\nIndian Prime Minister Manmohan Singh will be sworn in for a second consecutive term Friday , following his Congress party 's surprisingly decisive victory in national elections .\tJJ NNP NNP NNP NNP MD VB VBN IN IN DT JJ JJ NN NNP , VBG PRP$ NNP NN POS RB JJ NN IN JJ NNS .\nCongress party lawmakers formally elected Singh to return as the prime minister on Tuesday .\tNNP NN NNS RB VBD NNP TO VB IN DT JJ NN IN NNP .\nThe party is in the process of forming a new government .\tDT NN VBZ IN DT NN IN VBG DT JJ NN .\nParty leaders say the priorities include the plight of the poor , India 's security and promoting tolerance between Hindus and Muslims .\tNNP NNS VBP DT NNS VBP DT NN IN DT NN , NNP POS NN CC VBG NN IN NNP CC NNPS .\nMr. Singh is in a more commanding position since the ruling party has decided not to include communists in its coalition .\tNNP NNP VBZ IN DT RBR JJ NN IN DT NN NN VBZ VBN RB TO VB NNS IN PRP$ NN .\nThis will give it more flexibility in pursuing its own domestic and foreign policies .\tDT MD VB PRP JJR NN IN VBG PRP$ JJ JJ CC JJ NNS .\nThe ruling Congress Party-led alliance won 261 seats in the 543-member parliament , while its main rival , the opposition Bharatiya Janata Party , only won 159 seats .\tDT NN NNP JJ NN VBD CD NNS IN DT JJ NN , IN PRP$ JJ NN , DT NN NNP NNP NNP , RB VBD CD NNS .\nThe rest went to a number of other small parties .\tDT NN VBD TO DT NN IN JJ JJ NNS .\nPresident Bush Friday made Christmas Eve phone calls to members of the U.S. military , thanking them for their service and wishing them happy holidays .\tNNP NNP NNP VBD NNP NNP NN VBZ TO NNS IN DT NNP NN , VBG PRP IN PRP$ NN CC VBG PRP JJ NNS .\nMr. Bush placed the calls from the presidential retreat at Camp David , Maryland , where the Bush family is spending the Christmas weekend .\tNNP NNP VBD DT NNS IN DT JJ NN IN NNP NNP , NNP , WRB DT NNP NN VBZ VBG DT NNP NN .\nThe White House says Mr. Bush called 10 soldiers in all - six of them stationed in Iraq , another serving in Korea , and three others in the United States .\tDT NNP NNP VBZ NNP NNP VBD CD NNS IN DT IN CD IN PRP VBD IN NNP , DT VBG IN NNP , CC CD NNS IN DT NNP NNPS .\nPresident Bush has also sent out his annual Christmas message .\tNNP NNP VBZ RB VBN RP PRP$ JJ NNP NN .\nIn the message , Mr. Bush thanked all members of the armed forces and urged Americans to help neighbors in need .\tIN DT NN , NNP NNP VBD DT NNS IN DT JJ NNS CC VBD NNS TO VB NNS IN NN .\nThe president issued a separate message extending best wishes to those who celebrate Kwanzaa , a December holiday observed by many African-Americans .\tDT NN VBD DT JJ NN VBG JJS NNS TO DT WP VBP NNP , DT NNP NN VBN IN JJ NNPS .\nPakistani officials say a wintery mix of rain and snow has fallen over Pakistan 's earthquake zone today Sunday , disrupting relief operations .\tJJ NNS VBP DT JJ NN IN NN CC NN VBZ VBN IN NNP POS NN NN NN NNP , VBG NN NNS .\nNearly 20 centimeters of snow fell in some high-altitude areas and up to 32 millimeters of rain fell today in some lower areas .\tRB CD NNS IN NN VBD IN DT JJ NNS CC IN TO CD NNS IN NN VBD NN IN DT JJR NNS .\nA Pakistani army spokesman told the Reuters news agency no helicopters could fly in quake-stricken Kashmir because of rain and clouds .\tDT JJ NN NN VBD DT NNP NN NN DT NNS MD VB IN JJ NNP IN IN NN CC NNS .\nInternational relief officials also said their flight operations had been called off because of the weather .\tJJ NN NNS RB VBD PRP$ NN NNS VBD VBN VBN RP IN IN DT NN .\nThousands of victims from the deadly October 8 earthquake have found shelter in temporary camps , but tens of thousands more remain in high-altitude villages .\tNNS IN NNS IN DT JJ NNP CD NN VBP VBN NN IN JJ NNS , CC NNS IN NNS RBR VBP IN JJ NNS .\nU.N. officials have warned cold weather could force some 40,000 people to abandon the villages and seek shelter in already over-crowded cities in the warmer valleys .\tNNP NNS VBP VBN JJ NN MD VB DT CD NNS TO VB DT NNS CC VB NN IN RB JJ NNS IN DT NN NNS .\nIraq 's prime minister has named his defense and interior ministers , and a head of national security , following weeks of negotiations over the posts .\tNNP POS JJ NN VBZ VBN PRP$ NN CC NN NNS , CC DT NN IN JJ NN , VBG NNS IN NNS IN DT NNS .\nPrime Minister Nouri al-Maliki named Jawad al-Bolani , a Shi'ite Muslim , as his interior minister ; Sunni Arab General Abdel Qader Jassim as the defense minister ; and another Shi'ite , Sherwan al-Waili , as the new head of national security .\tNNP NNP NNP NNP VBD NNP NNP , DT NNP NNP , IN PRP$ JJ NN ; NNP NNP NNP NNP NNP NNP IN DT NN NN ; CC DT NNP , NNP NNP , IN DT JJ NN IN JJ NN .\nFilling the posts was considered crucial for Mr. Maliki as he moves to implement a plan for Iraqi forces to take charge of security to allow for the reduction and eventual withdrawal of foreign troops .\tVBG DT NNS VBD VBN JJ IN NNP NNP IN PRP VBZ TO VB DT NN IN JJ NNS TO VB NN IN NN TO VB IN DT NN CC JJ NN IN JJ NNS .\nIn other developments Thursday , insurgents carried out a string of bomb attacks across Baghdad , killing at least 27 people .\tIN JJ NNS NNP , NNS VBD RP DT NN IN NN NNS IN NNP , VBG IN JJS CD NNS .\nIn the deadliest blast , a bomb killed 13 people at a crowded market in eastern Baghdad .\tIN DT JJS NN , DT NN VBN CD NNS IN DT JJ NN IN JJ NNP .\nSeparate roadside bombings have killed 12 Afghan civilians and a Polish soldier in eastern Afghanistan .\tJJ NN NNS VBP VBN CD JJ NNS CC DT JJ NN IN JJ NNP .\nThe Polish defense ministry says a soldier was killed and five other service members were wounded Friday in Ghazni province .\tDT JJ NN NN VBZ DT NN VBD VBN CC CD JJ NN NNS VBD VBN NNP IN NNP NN .\nElsewhere in Ghazni , NATO says three Afghan construction workers were killed and two others wounded Thursday , when a bomb exploded in the Qarabaugh district .\tRB IN NNP , NNP VBZ CD JJ NN NNS VBD VBN CC CD NNS VBD NNP , WRB DT NN VBD IN DT NNP NN .\nLater in the day , nine construction workers were killed in a separate roadside bombing in the Bar Kunar district of Kunar province .\tRB IN DT NN , CD NN NNS VBD VBN IN DT JJ NN VBG IN DT NNP NNP NN IN NNP NN .\nSeparately , South Korea 's foreign ministry said Friday that Afghan security personnel staged a rocket attack in June on the construction site of South Korea 's civilian base in northern Parwan province .\tRB , NNP NNP POS JJ NN VBD NNP IN JJ NN NNS VBD DT NN NN IN NNP IN DT NN NN IN NNP NNP POS JJ NN IN JJ NNP NN .\nThe attack caused no casualties .\tDT NN VBD DT NNS .\nThe ministry says it is not clear why Afghan security guards fired rocket-propelled grenades at the site .\tDT NN VBZ PRP VBZ RB JJ WRB JJ NN NNS VBD JJ NNS IN DT NN .\nThe South Korean Yonhap news agency says four guards have been taken into custody .\tDT JJ JJ NN NN NN VBZ CD NNS VBP VBN VBN IN NN .\nRussia has authorized the United States to use its airspace for flights carrying troops and military supplies to Afghanistan .\tNNP VBZ VBN DT NNP NNPS TO VB PRP$ NN IN NNS VBG NNS CC JJ NNS TO NNP .\nThe deal , signed Monday at a U.S.-Russian summit in Moscow , permits up to 4,500 military flights a year - about 12 a day - carrying troops , arms , munitions , military vehicles and spare parts .\tDT NN , VBD NNP IN DT JJ NN IN NNP , VBZ RP TO CD JJ NNS DT NN IN IN CD DT NN IN VBG NNS , NNS , NNS , JJ NNS CC JJ NNS .\nSenior U.S. officials say the flights will not be charged Russian transit fees and will not stop in Russian territory .\tJJ NNP NNS VBP DT NNS MD RB VB VBN JJ NN NNS CC MD RB VB IN JJ NN .\nMoscow had previously limited U.S. shipments across its territory to non-military supplies carried by train .\tNNP VBD RB VBN NNP NNS IN PRP$ NN TO JJ NNS VBN IN NN .\nThe White House said the air transit agreement will save more than $ 130 million a year in fuel and other transit costs .\tDT NNP NNP VBD DT NN NN NN MD VB JJR IN $ CD CD DT NN IN NN CC JJ NN NNS .\nThe two presidents also agreed to boost joint anti-terrorism and anti-crime measures , including cooperation in sharing financial intelligence in the fight against heroin trafficking .\tDT CD NNS RB VBD TO VB JJ NN CC JJ NNS , VBG NN IN VBG JJ NN IN DT NN IN NN NN .\nA record-breaking heat wave over southeastern Europe and parts of the Middle East is expected to continue , closing out what experts say will be the hottest June ever recorded in the region .\tDT JJ NN NN IN JJ NNP CC NNS IN DT NNP NNP VBZ VBN TO VB , VBG RP WP NNS VBP MD VB DT JJS NNP RB VBD IN DT NN .\nTemperatures reached a stifling 46 degrees Celsius Monday in Athens , forcing government offices to close .\tNNS VBD DT VBG CD NNS NNP NNP IN NNP , VBG NN NNS TO VB .\nGreek authorities say the heat killed two elderly women while another death was reported on Cyprus .\tJJ NNS VBP DT NN VBD CD JJ NNS IN DT NN VBD VBN IN NNP .\nRomanian authorities say the heat has killed 25 people .\tJJ NNS VBP DT NN VBZ VBN CD NNS .\nElsewhere , British authorities issued warnings across much of the country Monday , where flash floods killed three people in northern England .\tRB , JJ NNS VBD NNS IN NN IN DT NN NNP , WRB NN NNS VBD CD NNS IN JJ NNP .\nThe bad weather forced a delay in the Wimbledon tennis tournament in London .\tDT JJ NN VBD DT NN IN DT NNP NN NN IN NNP .\nBolivian President-elect Evo Morales has met with two prominent South Africans as he winds up his visit to South Africa .\tJJ NN NNP NNP VBZ VBN IN CD JJ NNP NNS IN PRP VBZ RP PRP$ NN TO NNP NNP .\nMorales met with Archbishop Desmond Tutu and former President F. W. De Klerk Thursday to learn how the two Nobel Peace Prize winners helped transform South Africa from , as Morales said , ' apartheid isolation to democratic prosperity . '\tNNP VBD IN NN NNP NNP CC JJ NNP NNP NNP NNP NNP NNP TO VB WRB DT CD NNP NNP NNP NNS VBD VB NNP NNP IN , IN NNP VBD , `` NN NN TO JJ NN . ``\nHe also visited the notorious Robben Island prison , where anti-apartheid leader and former President Nelson Mandela , also a Nobel Peace laureate , spent years in captivity .\tPRP RB VBD DT JJ NNP NNP NN , WRB JJ NN CC JJ NNP NNP NNP , RB DT NNP NNP NN , VBD NNS IN NN .\nMorales is the first indigenous Bolivian to be elected president .\tNNP VBZ DT JJ JJ NN TO VB VBN NN .\nHe has pledged to concentrate on fighting discrimination and poverty in his poor South American homeland .\tPRP VBZ VBN TO VB IN VBG NN CC NN IN PRP$ JJ JJ JJ NN .\nWednesday , Morales met with South African President Thabo Mbeki and said the meeting strengthened political ties between their countries .\tNNP , NNP VBD IN NNP NNP NNP NNP NNP CC VBD DT NN VBD JJ NNS IN PRP$ NNS .\nMorales is traveling next to Brazil , where he will meet with President Luiz Inacio Lula da Silva on Friday .\tNNP VBZ VBG JJ TO NNP , WRB PRP MD VB IN NNP NNP NNP NNP NNP NNP IN NNP .\nTurkish Cypriots have voted Sunday to elect their first new president in more than 20 years .\tJJ NNS VBP VBN NNP TO VB PRP$ JJ JJ NN IN JJR IN CD NNS .\nThe 81-year-old incumbent Rauf Denktash , who declared the Turkish Republic of Northern Cyprus an independent state in 1983 , is not running for re-election .\tDT JJ JJ NNP NNP , WP VBD DT JJ NNP IN NNP NNP DT JJ NN IN CD , VBZ RB VBG IN NN .\nTurkish Cypriot Prime Minister Mehmet Ali Talat led a field of nine candidates in pre-election opinion polls .\tJJ JJ JJ NN NNP NNP NNP VBD DT NN IN CD NNS IN JJ NN NNS .\nHe backs a United Nations plan for resolving the division of the island .\tPRP VBZ DT NNP NNP NN IN VBG DT NN IN DT NN .\nWhen he cast his ballot Sunday , Mr. Talat called it a vote for peace .\tWRB PRP VBD PRP$ NN NNP , NNP NNP VBD PRP DT NN IN NN .\nCyprus has been divided between Greek and Turkish Cypriot communities since 1974 when Turkish troops invaded in response to a coup in Nicosia backed by Greece .\tNNP VBZ VBN VBN IN JJ CC JJ JJ NNS IN CD WRB JJ NNS VBD IN NN TO DT NN IN NNP VBN IN NNP .\nTurkish Cypriots voted last year in favor of the U.N. reunification plan , but Greek Cypriots rejected it .\tJJ NNS VBD JJ NN IN NN IN DT NNP NN NN , CC JJ NNS VBD PRP .\nThe U.S. military says three al-Qaida terrorists linked to bombings in Baghdad have been arrested .\tDT NNP NN VBZ CD NNP NNS VBN TO NNS IN NNP VBP VBN VBN .\nIt says the three are believed to be associated with al-Qaida 's chief bombing coordinator for the Iraqi capital .\tPRP VBZ DT CD VBP VBN TO VB VBN IN NNP POS NN VBG NN IN DT JJ NN .\nThe U.S. military says the three surrendered in recent days without a fight after being surrounded by multinational forces .\tDT NNP NN VBZ DT CD VBN IN JJ NNS IN DT NN IN VBG VBN IN JJ NNS .\nMeanwhile , Iraqis observed three minutes of silence Wednesday to honor victims of two recent massive suicide bombings .\tRB , NNS VBD CD NNS IN NN NNP TO VB NNS IN CD JJ JJ NN NNS .\nBut the attacks continued , with a suicide bomber killing 10 people in Baghdad .\tCC DT NNS VBD , IN DT NN NN VBG CD NNS IN NNP .\nOn the political front , several Sunni members of the committee drafting Iraq 's new constitution suspended work following the killing of two colleagues Tuesday .\tIN DT JJ NN , JJ NNP NNS IN DT NN VBG NNP POS JJ NN VBD NN VBG DT NN IN CD NNS NNP .\nA U.S. State Department spokesman condemned the killings as the work of terrorists trying to prevent democracy from taking root in Iraq .\tDT NNP NNP NNP NN VBD DT NNS IN DT NN IN NNS VBG TO VB NN IN VBG NN IN NNP .\nAttorney General Alberto Gonzales meets US soldiers at in Baghdad\tNNP NNP NNP NNP VBZ NNP NNS IN IN NNP\nThe head of the U.S. Justice Department has met with Iraq 's prime minister during a surprise trip Baghdad .\tDT NN IN DT NNP NNP NNP VBZ VBN IN NNP POS JJ NN IN DT NN NN NNP .\nAttorney General Alberto Gonzales ' one-day trip was meant as a show of support for the Iraqi government .\tNNP NNP NNP NNP POS JJ NN VBD VBN IN DT NN IN NN IN DT JJ NN .\nIn addition to his meeting with Prime Minister Ibrahim al-Jafaari and other Iraqi officials , Mr. Gonzales also spoke with American soldiers .\tIN NN TO PRP$ NN IN NNP NNP NNP NNP CC JJ JJ NNS , NNP NNP RB VBD IN JJ NNS .\nReporters who traveled with Mr. Gonzales to Baghdad say he made the trip , on the eve of the U.S. Independence Day holiday , to commend the Iraqi government 's commitment to democracy despite continuing deadly attacks by insurgents .\tNNS WP VBD IN NNP NNP IN NNP VB PRP VBD DT NN , IN DT NN IN DT NNP NNP NNP NN , TO VB DT JJ NN POS NN TO NN IN VBG JJ NNS IN NNS .\nThe head of Russia 's parliamentary commission investigating last year 's bloody Beslan school siege says the crisis could have been prevented if local authorities had followed orders to tighten security .\tDT NN IN NNP POS JJ NN VBG JJ NN POS JJ NNP NN NN VBZ DT NN MD VB VBN VBN IN JJ NNS VBD VBN NNS TO VB NN .\nAlexander Torshin told Russian lawmakers local authorities in North Ossetia , where Beslan is located , failed to carry out instructions given by Russia 's Interior Ministry to strengthen security around educational institutions on the first day of school .\tNNP NNP VBD JJ NNS JJ NNS IN NNP NNP , WRB NNP VBZ VBN , VBD TO VB RP NNS VBN IN NNP POS NNP NNP TO VB NN IN JJ NNS IN DT JJ NN IN NN .\nGunmen demanding a withdrawal of Russian forces from Chechnya held more than a 1,000 hostages for three days .\tNNS VBG DT NN IN JJ NNS IN NNP VBD JJR IN DT CD NNS IN CD NNS .\nThe stand-off ended in a series of explosions as security forces stormed the building .\tDT NN VBD IN DT NN IN NNS IN NN NNS VBD DT NN .\nMore than 330 people , mostly children , were killed .\tJJR IN CD NNS , RB NNS , VBD VBN .\nTuesday , Russia 's deputy prosecutor-general Nikolai Shepel said security forces acted properly to end the siege .\tNNP , NNP POS NN JJ NNP NNP VBD NN NNS VBD RB TO VB DT NN .\nA committee of Beslan mothers has criticized authorities for using flame-throwers and tanks , which caused the roof to collapse on escaping hostages .\tDT NN IN NNP NNS VBZ VBN NNS IN VBG NNS CC NNS , WDT VBD DT NN TO VB IN VBG NNS .\nThe Moscow City Court has opened preliminary hearings on the 2004 killing of American journalist Paul Klebnikov .\tDT NNP NNP NNP VBZ VBN JJ NNS IN DT CD NN IN JJ NN NNP NNP .\nCourt officials say Tuesday 's proceedings are closed to the public and focus on whether the case will be considered by a jury or a judge .\tNNP NNS VBP NNP POS NNS VBP VBN TO DT NN CC NN IN IN DT NN MD VB VBN IN DT NN CC DT NN .\nRussian authorities say Mr. Klebnikov , who was editor of the Russian edition of the U.S. financial magazine Forbes , was killed by ethnic Chechens .\tJJ NNS VBP NNP NNP , WP VBD NN IN DT JJ NN IN DT NNP JJ NN NNP , VBD VBN IN JJ NNS .\nThey say the men killed him on orders from another ethnic Chechen .\tPRP VBP DT NNS VBD PRP IN NNS IN DT JJ NN .\nRussian investigators believe the shooting may be connected to Mr. Klebnikov 's writings .\tJJ NNS VBP DT NN MD VB VBN TO NNP NNP POS NNS .\nState Department spokesman Adam Ereli said Monday the United States expects all those implicated in the killing to be tried and punished appropriately .\tNNP NNP NN NNP NNP VBD NNP DT NNP NNPS VBZ PDT DT VBN IN DT NN TO VB VBN CC VBN RB .\nHe says Russia 's handling of the case will send a message that those who threaten journalists will be held accountable .\tPRP VBZ NNP POS NN IN DT NN MD VB DT NN IN DT WP VBP NNS MD VB VBN JJ .\nAlberto Gonzales President Bush 's attorney general , the head of the U.S. Justice Department , has arrived in Baghdad on a surprise visit to show support for the Iraqi government .\tNNP NNP NNP NNP POS NN NN , DT NN IN DT NNP NNP NNP , VBZ VBN IN NNP IN DT NN NN TO VB NN IN DT JJ NN .\nAttorney General Alberto Gonzales has been surrounded by heavy security in the Iraqi capital as he visits with American soldiers and Iraqi officials .\tNNP NNP NNP NNP VBZ VBN VBN IN JJ NN IN DT JJ NN IN PRP VBZ IN JJ NNS CC JJ NNS .\nReporters who traveled with Mr. Gonzales to Baghdad say he intended this trip , on the eve of the U.S. Independence Day holiday , to show support for the Iraqi government 's commitment to democracy despite continuing deadly attacks by insurgents .\tNNS WP VBD IN NNP NNP TO VB VB PRP VBD DT NN , IN DT NN IN DT NNP NNP NNP NN , TO VB NN IN DT JJ NN POS NN TO NN IN VBG JJ NNS IN NNS .\nScientists have reportedly concluded that traces of highly-enriched uranium found in Iran two years ago were from imported equipment rather than Iranian nuclear activities .\tNNS VBP RB VBN IN NNS IN JJ NN VBN IN NNP CD NNS RB VBD IN VBN NN RB IN JJ JJ NNS .\nThe findings , reported by the Washington Post and the Associated Press , appear to support Iran 's claim that the bomb-grade uranium entered the country together with the centrifuge parts provided by Pakistan .\tDT NNS , VBN IN DT NNP NNP CC DT NNP NNP , VBP TO VB NNP POS NN IN DT JJ NN VBD DT NN RB IN DT NN NNS VBN IN NNP .\nThe Bush administration has cited the material as evidence that Iran is trying to produce highly enriched uranium needed for nuclear weapons .\tDT NNP NN VBZ VBN DT NN IN NN IN NNP VBZ VBG TO VB RB VBN NN VBN IN JJ NNS .\nThe European Union has been negotiating with Iran to halt uranium conversion that can lead to high-grade nuclear fuel for atomic weaponry .\tDT NNP NNP VBZ VBN VBG IN NNP TO VB NN NN WDT MD VB TO JJ JJ NN IN JJ NN .\nHowever , the Europeans canceled further talks set for August 31 , after Tehran resumed uranium conversion activities earlier this month .\tRB , DT NNS VBD JJ NNS VBN IN NNP CD , IN NNP VBD NN NN NNS RBR DT NN .\nIAEA chief Mohamed ElBaradei is due to issue a formal report on Iran 's nuclear activities September 3 .\tNNP NN NNP NNP VBZ JJ TO VB DT JJ NN IN NNP POS JJ NNS NNP CD .\nA White House spokesman says President Bush disapproves of what a leading Christian broadcaster said about Israeli leader Ariel Sharon .\tDT NNP NNP NN VBZ NNP NNP VBZ IN WP DT VBG NNP NN VBD IN JJ NN NNP NNP .\nTelevision evangelist Pat Robertson suggested Thursday that Mr. Sharon suffered a massive stroke because the prime minister defied , what he termed , the will of God by dividing Israel .\tNNP NN NNP NNP VBD NNP IN NNP NNP VBD DT JJ NN IN DT JJ NN VBD , WP PRP VBD , DT NN IN NNP IN VBG NNP .\nMr. Bush 's spokesman said the president views those remarks as wholly inappropriate and offensive .\tNNP NNP POS NN VBD DT NN VBZ DT NNS IN RB JJ CC JJ .\nMr. Robertson hosts the popular 700 Club religious show and has been one of Mr. Bush 's strongest supporters among Christian conservatives .\tNNP NNP VBZ DT JJ CD NNP JJ NN CC VBZ VBN CD IN NNP NNP POS JJS NNS IN JJ NNS .\nBut the relationship has been strained by several of Mr. Robertson 's recent comments , among them a suggestion that the United States assassinate Venezuelan president Hugo Chavez .\tCC DT NN VBZ VBN VBN IN NN IN NNP NNP POS JJ NNS , IN PRP DT NN IN DT NNP NNPS VBP JJ NN NNP NNP .\nTurkish officials say seven police officers have been wounded in a shootout during a raid on members of a far-left militant group in Istanbul .\tJJ NNS VBP CD NNS NNS VBP VBN VBN IN DT NN IN DT NN IN NNS IN DT JJ JJ NN IN NNP .\nOfficials say militants threw explosive devices at police Monday as they moved in on an apartment block .\tNNS VBP NNS VBD JJ NNS IN NN NNP IN PRP VBD RP IN DT NN NN .\nTwo civilians , including a cameraman , were struck by stray bullets .\tCD NNS , VBG DT NN , VBD VBN IN JJ NNS .\nThick smoke filled the air as helicopters flew over the area .\tNNP NN VBD DT NN IN NNS VBD IN DT NN .\nPolice say they detained at least 10 suspects during overnight raids in more than 60 areas .\tNNS VBP PRP VBD IN JJS CD NNS IN JJ NNS IN JJR IN CD NNS .\nThe raids come days before May Day , which parliament reinstated as a public holiday last week .\tDT NNS VBP NNS IN NNP NNP , WDT NN VBD IN DT JJ NN JJ NN .\nThe date had been removed from Turkey 's calendar of national holidays after a military coup in 1980 .\tDT NN VBD VBN VBN IN NNP POS NN IN JJ NNS IN DT JJ NN IN CD .\nThe coup came at a time of severe political tensions and street violence between left- and right-wing activists .\tDT NN VBD IN DT NN IN JJ JJ NNS CC NN NN IN JJ CC JJ NNS .\nThis week , the Voice of America reported from Beijing on an alleged study regarding childhood deaths in China related to indoor air pollution .\tDT NN , DT NNP IN NNP VBD IN NNP IN DT JJ NN VBG NN NNS IN NNP VBN TO JJ NN NN .\nChinese state media , citing the alleged study , had reported that more than two million Chinese children die each year from health problems related to indoor air pollution .\tJJ NN NNS , VBG DT JJ NN , VBD VBN IN JJR IN CD CD JJ NNS VBP DT NN IN NN NNS VBN TO JJ NN NN .\nThe VOA report , issued ( broadcast ) on Monday , said the study results were released by the Chinese Center for Disease Control and Prevention , or CDC .\tDT NNP NN , VBN LRB NN RRB IN NNP , VBD DT NN NNS VBD VBN IN DT JJ NNP IN NNP NNP CC NNP , CC NNP .\nOn Tuesday , Chinese media quoted officials from the CDC as saying the reports were wrong , and that the CDC had released no such statistics .\tIN NNP , JJ NNS VBN NNS IN DT NNP IN VBG DT NNS VBD JJ , CC IN DT NNP VBD VBN DT JJ NNS .\nA U.S. Defense Department internal probe has found there was no direct cooperation between the al-Qaida terrorist network and Saddam Hussein 's Iraqi government .\tDT NNP NNP NNP JJ NN VBZ VBN EX VBD DT JJ NN IN DT NNP JJ NN CC NNP NNP POS JJ NN .\nA declassified Pentagon report says military officials reached the conclusion based on interviews with Saddam and two former aides , and documents seized by U.S. forces after Saddam was ousted in 2003 .\tDT JJ NNP NN VBZ JJ NNS VBD DT NN VBN IN NNS IN NNP CC CD JJ NNS , CC NNS VBN IN NNP NNS IN NNP VBD VBN IN CD .\nThe report by Pentagon acting inspector general Thomas Gimble backs earlier assertions made by the intelligence community before the U.S.-led invasion that Iraq and al-Qaida had no operational ties .\tDT NN IN NNP VBG NN JJ NNP NNP NNS RBR NNS VBN IN DT NN NN IN DT JJ NN IN NNP CC NNP VBD DT JJ NNS .\nIn a radio interview Thursday , U.S. Vice President Dick Cheney repeated the Bush administration 's view that al Qaida was present in Iraq before the start of the war .\tIN DT NN NN NNP , NNP NNP NNP NNP NNP VBD DT NNP NN POS NN IN NNP NNP VBD JJ IN NNP IN DT NN IN DT NN .\nUkrainian opposition leader says his rival in the country 's upcoming presidential election is planning to disrupt the vote .\tJJ NN NN VBZ PRP$ NN IN DT NN POS JJ JJ NN VBZ VBG TO VB DT NN .\nViktor Yushchenko told a news conference in Kiev Thursday that provocations are being planned for the December 26 balloting .\tNNP NNP VBD DT NN NN IN NNP NNP IN NNS VBP VBG VBN IN DT NNP CD NN .\nWednesday , his rival , Prime Minister Viktor Yanukovych , said massive protests are planned if Mr. Yushchenko wins the poll .\tNNP , PRP$ NN , NNP NNP NNP NNP , VBD JJ NNS VBP VBN IN NNP NNP VBZ DT NN .\nThe prime minister was declared the winner of a flawed election in November , but the Supreme Court overturned the results and ordered this month 's re-run .\tDT JJ NN VBD VBN DT NN IN DT JJ NN IN NNP , CC DT NNP NNP VBD DT NNS CC VBD DT NN POS NN .\nThe election has been hotly contested .\tDT NN VBZ VBN RB VBN .\nMr. Yushchenko told the Associated Press he was poisoned during a dinner in September with top Ukrainian security officials .\tNNP NNP VBD DT NNP NNP PRP VBD VBN IN DT NN IN NNP IN JJ JJ NN NNS .\nHe said the meeting was the only time he was without his staff and no precautions were taken with regards to his food .\tPRP VBD DT NN VBD DT JJ NN PRP VBD IN PRP$ NN CC DT NNS VBD VBN IN NNS TO PRP$ NN .\nThe doctors who treated him in Austria said he suffered dioxin poisoning .\tDT NNS WP VBD PRP IN NNP VBD PRP VBD NN NN .\nRhythm & blues legend James Brown is recovering after undergoing surgery Wednesday for prostate cancer .\tNNP CC NNS VBD NNP NNP VBZ VBG IN VBG NN NNP IN NN NN .\nThe 71-year-old singer and songwriter underwent surgery at a hospital in Atlanta , Georgia , and was later released .\tDT JJ NN CC NN VBD NN IN DT NN IN NNP , NNP , CC VBD RB VBN .\nHis doctor says the surgery was successful , and expects Mr. Brown to make a full recovery .\tPRP$ NN VBZ DT NN VBD JJ , CC VBZ NNP NNP TO VB DT JJ NN .\nMr. Brown is known by millions of fans as ' The Godfather of Soul ' thanks to such classic songs as ' Please , Please , Please , ' ' It 's a Man 's World , ' and ' Papa 's Got a Brand New Bag . '\tNNP NNP VBZ VBN IN NNS IN NNS IN `` DT NNP IN NNP `` NNS TO JJ JJ NNS IN `` NNP , VB , VB , `` `` PRP VBZ DT NN POS NNP , `` CC `` NNP POS NNP DT NNP NNP NNP . ``\nMr. Brown will hit the road next month to promote his autobiography , followed by a tour of Australia and Asia .\tNNP NNP MD VB DT NN JJ NN TO VB PRP$ NN , VBN IN DT NN IN NNP CC NNP .\nIsraeli troops have shot and killed a young Palestinian girl in the southern Gaza Strip , after militants fired mortar rounds at a nearby Jewish settlement .\tJJ NNS VBP VBN CC VBN DT JJ JJ NN IN DT JJ NNP NNP , IN NNS VBD JJ NNS IN DT JJ JJ NN .\nOfficials say the confrontation began when militants fired three mortars at the settlement near the Khan Younis refugee camp .\tNNS VBP DT NN VBD WRB NNS VBD CD NNS IN DT NN IN DT NNP NNP NN NN .\nFour Israelis , including one child , were hurt .\tCD NNS , VBG CD NN , VBD VBN .\nIn response , the Israeli military fired into the refugee camp , killing the young girl .\tIN NN , DT JJ NN VBD IN DT NN NN , VBG DT JJ NN .\nPalestinian militants often fire homemade mortars and missiles into Jewish settlements in Gaza , but they rarely cause any injury or damage .\tJJ NNS RB NN JJ NNS CC NNS IN JJ NNS IN NNP , CC PRP RB VBP DT NN CC NN .\nThousands of Palestinians and Lebanese civil rights activists rallied in Beirut Sunday to demand more rights for Palestinian refugees .\tNNS IN NNS CC JJ JJ NNS NNS VBD IN NNP NNP TO VB JJR NNS IN JJ NNS .\nSeveral buses transported demonstrators to the Lebanese capital waving Palestinian flags and carrying signs saying , ' We just want to live in dignity . '\tJJ NNS VBD NNS TO DT JJ NN VBG JJ NNS CC VBG NNS VBG , `` PRP RB VBP TO VB IN NN . ``\nMany of the refugees live in overcrowded refugee camps across the country .\tNN IN DT NNS VBP IN JJ NN NNS IN DT NN .\nThe event organizers had planned to protest outside the parliament building but moved the demonstration in front of the nearby U.N. headquarters when Lebanese soldiers prevented them from gathering there .\tDT NN NNS VBD VBN TO VB IN DT NN NN CC VBD DT NN IN NN IN DT JJ NNP NN WRB JJ NNS VBD PRP IN VBG RB .\nAbout 4,00,000 Palestinians are registered as refugees in Lebanon by the U.N. Palestinian refugees in Lebanon have restrictions on employment opportunities and can not own property under Lebanese law .\tIN CD NNS VBP VBN IN NNS IN NNP IN DT NNP JJ NNS IN NNP VBP NNS IN NN NNS CC MD RB VB NN IN JJ NN .\nThe European Union says Britain , France and Germany are due to hold new talks with Iran Wednesday on Tehran 's nuclear program .\tDT NNP NNP VBZ NNP , NNP CC NNP VBP JJ TO VB JJ NNS IN NNP NNP IN NNP POS JJ NN .\nA spokeswoman for EU Foreign Policy chief Javier Solana Monday characterized the upcoming meeting in Vienna as ' talks about the talks , ' and said they will take place at the political directors ' level .\tDT NN IN NNP NNP NNP NN NNP NNP NNP VBD DT JJ NN IN NNP IN `` NNS IN DT NNS , `` CC VBD PRP MD VB NN IN DT JJ NNS POS NN .\nSeparately , Reuters quotes a diplomat as saying the exploratory talks are aimed at determining whether or not to meet again in January .\tRB , NNP VBZ DT NN IN VBG DT JJ NNS VBP VBN IN VBG IN CC RB TO VB RB IN NNP .\nThe Europeans are seeking assurances that Tehran will halt work on its nuclear fuel program , which the United States alleges is secretly aimed at developing an atomic bomb .\tDT NNS VBP VBG NNS IN NNP MD VB NN IN PRP$ JJ NN NN , WDT DT NNP NNPS VBZ VBZ RB VBN IN VBG DT JJ NN .\nIran denies the charges , and says its program is aimed at developing electricity .\tNNP VBZ DT NNS , CC VBZ PRP$ NN VBZ VBN IN VBG NN .\nPakistani officials say 18 people were killed and 40 others injured when a truck carrying chemicals exploded Monday in the southern city of Hyderabad .\tJJ NNS VBP CD NNS VBD VBN CC CD NNS VBN WRB DT NN VBG NNS VBD NNP IN DT JJ NN IN NNP .\nSeveral nearby shops were destroyed by the blast , which authorities described as an accident caused by a buildup of chemicals in the truck 's storage tank .\tJJ JJ NNS VBD VBN IN DT NN , WDT NNS VBD IN DT NN VBN IN DT NN IN NNS IN DT NN POS NN NN .\nIn Pakistan 's northwest , military officials said four soldiers were killed by militants who attacked an army convoy in the Bajaur tribal region .\tIN NNP POS JJS , JJ NNS VBD CD NNS VBD VBN IN NNS WP VBD DT NN NN IN DT NNP JJ NN .\nA government official said three militants were killed in the gunfight .\tDT NN NN VBD CD NNS VBD VBN IN DT NN .\nSunday , Reporters Without Borders said separatist gunmen murdered a local newspaper reporter as he drove in his car in Baluchistan province .\tNNP , NNS IN NNS VBD JJ NNS VBN DT JJ NN NN IN PRP VBD IN PRP$ NN IN NNP NN .\nThe Paris-based media rights group says he was the sixth media worker to be killed this year in Pakistan , which it calls the world 's most dangerous country for journalists .\tDT JJ NNS NNS NN VBZ PRP VBD DT JJ NNS NN TO VB VBN DT NN IN NNP , WDT PRP VBZ DT NN POS RBS JJ NN IN NNS .\nThe European Union Tuesday approved extra aid to farmers hit by a serious slump in poultry sales caused by scares from the bird flu crisis .\tDT NNP NNP NNP VBD JJ NN TO NNS VBN IN DT JJ NN IN JJ NNS VBN IN NNS IN DT NN NN NN .\nEU agriculture ministers , meeting in Luxembourg , approved the measure .\tNNP NN NNS , NN IN NNP , VBD DT NN .\nUnder the plan , national governments will present compensation claims to the European Commission , which will decide whether to co-finance them .\tIN DT NN , JJ NNS MD VB NN NNS TO DT JJ NNP , WDT MD VB IN TO VB PRP .\nThe European Union will pick up half the cost to help countries that can prove damage due to falling demand .\tDT NNP NNP MD VB RP PDT DT NN TO VB NNS WDT MD VB NN JJ TO VBG NN .\nItaly has already reported at least a 50 percent drop in poultry sales , one of the largest drops according to EU data .\tNNP VBZ RB VBN IN JJS DT CD NN NN IN NN NNS , CD IN DT JJS NNS VBG TO NNP NNS .\nThe EU agriculture Commissioner , Mariann Fischer Boel , says the most sensible approach would be to compensate farmers for measures which temporarily reduce production .\tDT NNP NN NNP , NNP NNP NNP , VBZ DT RBS JJ NN MD VB TO VB NNS IN NNS WDT RB VB NN .\nChinese paramilitary officer gestures outside of the Japanese embassy in Beijing , the scene of violent protests Beijing 's police chief has warned people against staging anti-Japanese protests during the week-long May Day holiday that starts on Sunday .\tJJ JJ NN NNS IN IN DT JJ NN IN NNP , DT NN IN JJ NNS NNP POS NN NN VBZ VBN NNS IN VBG JJ NNS IN DT JJ NNP NNP NN WDT VBZ IN NNP .\nThe official Xinhua news agency quotes Ma Zhenchuan , the director of the Beijing Municipal Public Security Bureau Saturday as saying police would resolutely punish law breakers who organize and instigate illegal demonstrations .\tDT JJ NNP NN NN VBZ NNP NNP , DT NN IN DT NNP NNP NNP NNP NNP NNP IN VBG NNS MD RB VB NN NNS WP VBP CC VBP JJ NNS .\nPolice also sent text messages via cell phones to city residents , urging them not to participate in illegal protests .\tNN RB VBD NN NNS IN NN NNS TO NN NNS , VBG PRP RB TO VB IN JJ NNS .\nFresh protests had been rumored to be planned in Beijing and other cities for Sunday and Wednesday , About 10,000 people took part in an anti-Japanese protest in Beijing on April 9 , with many hurling stones , eggs and bottles at the Japanese embassy and ambassador 's residence .\tJJ NNS VBD VBN VBN TO VB VBN IN NNP CC JJ NNS IN NNP CC NNP , IN CD NNS VBD NN IN DT JJ NN IN NNP IN NNP CD , IN JJ JJ NNS , NNS CC NNS IN DT JJ NN CC NN POS NN .\nWorld oil prices soared to new record highs Tuesday as investors worried about the impact of Hurricane Katrina on oil production in the United States .\tNNP NN NNS VBD TO JJ NN NNS NNP IN NNS VBD IN DT NN IN NNP NNP IN NN NN IN DT NNP NNPS .\nThe price of a barrel of crude oil for future delivery went as high as $ 70.85 in New York trading .\tDT NN IN DT NN IN JJ NN IN JJ NN VBD RB JJ IN $ CD IN NNP NNP NN .\nThe powerful hurricane tore through an area that produces about 25 percent of the crude oil used by the United States .\tDT JJ NN NN IN DT NN WDT VBZ IN CD NN IN DT JJ NN VBN IN DT NNP NNPS .\nIt also shut down key refineries in the path of the storm .\tPRP RB VBD RP JJ NNS IN DT NN IN DT NN .\nEven before the hurricane , world oil prices were at high levels as strong demand from China , India , and the United States strained the ability of oil producers and refiners to get products to market .\tRB IN DT NN , NN NN NNS VBD IN JJ NNS IN JJ NN IN NNP , NNP , CC DT NNP NNPS VBD DT NN IN NN NNS CC NNS TO VB NNS TO NN .\nThe World Food Organization says several provinces in western and northern China are facing food shortages because of a long drought .\tDT NNP NNP NNP VBZ JJ NNS IN JJ CC JJ NNP VBP VBG NN NNS IN IN DT JJ NN .\nThe FAO said Monday that it estimates five million hectares of winter crops were lost because of the lack of rain in provinces such as Yunnan , Gansu , Ningxia , Inner Mongolia , and Hebei .\tDT NNP VBD NNP IN PRP VBZ CD CD NNS IN NN NNS VBD VBN IN IN DT NN IN NN IN NNS JJ IN NNP , NNP , NNP , NNP NNP , CC NNP .\nThe organization said more than 60 percent of winter wheat crops were lost in the worst-hit districts .\tDT NN VBD JJR IN CD NN IN NN NN NNS VBD VBN IN DT JJ NNS .\nIt also said the affected areas are among China 's poorest regions , with more than half the rural population living under the poverty line with limited access to food .\tPRP RB VBD DT JJ NNS VBP IN NNP POS JJS NNS , IN JJR IN PDT DT JJ NN VBG IN DT NN NN IN JJ NN TO NN .\nThe FAO says the drought has a particularly serious impact on mountain areas , where there are few alternative sources of income .\tDT NNP VBZ DT NN VBZ DT RB JJ NN IN NN NNS , WRB EX VBP JJ JJ NNS IN NN .\nNATO officials in Afghanistan say one of their bombs missed its target in eastern Khost province Tuesday and instead killed two civilians and wounded up to 10 others .\tNNP NNS IN NNP VBP CD IN PRP$ NNS VBD PRP$ NN IN JJ NNP NN NNP CC RB VBD CD NNS CC VBD RP TO CD NNS .\nA NATO statement says the bomb was meant for a militant hideout but it malfunctioned and missed its target by more than two kilometers .\tDT NNP NN VBZ DT NN VBD VBN IN DT JJ NN CC PRP VBD CC VBD PRP$ NN IN JJR IN CD NNS .\nAlso Tuesday , the U.S.-led coalition said a roadside bomb in the east killed three of its soldiers and an Afghan contractor .\tRB NNP , DT JJ NN VBD DT NN NN IN DT NN VBD CD IN PRP$ NNS CC DT JJ NN .\nElsewhere , the police chief in southern Uruzgan province , Juma Gul Himat said a coalition airstrike killed at least 15 militants .\tRB , DT NN NN IN JJ NNP NN , NNP NNP NNP VBD DT NN NN VBD IN JJS CD NNS .\nThe violence came on the anniversary of Afghanistan 's first known suicide attack against legendary commander Ahmad Shah Massoud on September ninth , 2001 , by al-Qaida operatives .\tDT NN VBD IN DT NN IN NNP POS JJ VBN NN NN IN JJ NN NNP NNP NNP IN NNP NNP , CD , IN NNP NNS .\nHis death came two days before al-Qaida 's September 11 attacks on the United States .\tPRP$ NN VBD CD NNS IN NNP POS NNP CD NNS IN DT NNP NNPS .\nThe Republic of Congo celebrated 50 years of independence Sunday with a parade and ceremony in the capital , Brazzaville .\tDT NNP IN NNP VBD CD NNS IN NN NNP IN DT NN CC NN IN DT NN , NNP .\nLongtime President Denis Sassou N'Guesso watched the ceremony along with more than a dozen African heads of state , as well as a representative from former colonial power France .\tJJ NNP NNP NNP NNP VBD DT NN IN IN JJR IN DT NN JJ NNS IN NN , RB RB IN DT NN IN JJ NN NN NNP .\nThe president kicked off the anniversary with a national address Friday night , in which he said he would increase the minimum salary for all civil servants by 25 percent and offer free maternity care .\tDT NN VBD RP DT NN IN DT JJ NN NNP NN , IN WDT PRP VBD PRP MD VB DT JJ NN IN DT JJ NNS IN CD NN CC NN JJ NN NN .\nThe news was welcomed in Congo , where despite large oil reserves and a wealth of other natural resources , more than half the population of some four million lives below the poverty line .\tDT NN VBD VBN IN NNP , WRB IN JJ NN NNS CC DT NN IN JJ JJ NNS , JJR IN PDT DT NN IN DT CD CD NNS IN DT NN NN .\nWitnesses say Burmese authorities arrested nine members of an opposition political group Tuesday , as they held a protest in Rangoon calling for the release of democracy leader Aung San Suu Kyi .\tNNS VBP JJ NNS VBN CD NNS IN DT NN JJ NN NNP , IN PRP VBD DT NN IN NNP VBG IN DT NN IN NN NN NNP NNP NNP NNP .\nThe witnesses say the nine members of her National League for Democracy 's youth wing were arrested by police as they marched on the country 's old parliament building .\tDT NNS VBP DT CD NNS IN PRP$ NNP NNP IN NNP POS NN NN VBD VBN IN NNS IN PRP VBD IN DT NN POS JJ NN NN .\nThe protesters were holding a banner calling for Aung San Suu Kyi 's release from house arrest .\tDT NNS VBD VBG DT NN VBG IN NNP NNP NNP NNP POS NN IN NN NN .\nAung San Suu Kyi has been held under house arrest in Rangoon for 13 of the last 19 years .\tNNP NNP NNP NNP VBZ VBN VBN IN NN NN IN NNP IN CD IN DT JJ CD NNS .\nHer party won a landslide victory in 1990 elections , but the military , which has ruled the country since 1962 , never allowed it to take power .\tPRP$ NN VBD DT NN NN IN CD NNS , CC DT NN , WDT VBZ VBN DT NN IN CD , RB VBD PRP TO VB NN .\nThe U.S. Justice Department has issued a new memo on prisoner interrogation , replacing a controversial document outlining how to question prisoners without violating U.S. and international anti-torture statutes .\tDT NNP NNP NNP VBZ VBN DT JJ NN IN NN NN , VBG DT JJ NN VBG WRB TO VB NNS IN VBG NNP CC JJ JJ NNS .\nThe opening sentence of the memo released Friday says ' torture is abhorrent both to American laws and values , and to international norms . '\tDT NN NN IN DT NN VBN NNP VBZ `` NN VBZ JJ DT TO JJ NNS CC NNS , CC TO JJ NNS . ``\nThe document replaces a controversial memo issued in August , 2002 , which defined torture in such a way that critics said only the most severe types of interrogation techniques would not be permissible .\tDT NN VBZ DT JJ NN VBN IN NNP , CD , WDT VBD NN IN JJ DT NN IN NNS VBD RB DT RBS JJ NNS IN NN NNS MD RB VB JJ .\nThat memo became controversial after several cases of prisoner mistreatment in Iraq and Guantanamo Bay , Cuba became public .\tDT NN VBD JJ IN JJ NNS IN NN NN IN NNP CC NNP NNP , NNP VBD JJ .\nThe new document contains a broader definition of torture , describing it as ' any act by which severe pain or suffering , whether physical or mental ' is inflicted on a person to get information or a confession .\tDT JJ NN VBZ DT JJR NN IN NN , VBG PRP IN `` DT NN IN WDT JJ NN CC NN , IN JJ CC JJ `` VBZ VBN IN DT NN TO VB NN CC DT NN .\nSupporters and critics of Russia 's president are demonstrating in Moscow , with both groups calling attention to Kremlin plans to consolidate power .\tNNS CC NNS IN NNP POS NN VBP VBG IN NNP , IN DT NNS VBG NN TO NNP NNS TO VB NN .\nHundreds of prominent critics of President Vladimir Putin 's denounced the legislation as a step back for democracy and an increase in authoritarian rule .\tNNS IN JJ NNS IN NNP NNP NNP POS VBD DT NN IN DT NN RB IN NN CC DT NN IN JJ NN .\nState-run media reported another rally elsewhere in Moscow of 15,000 Putin supporters .\tNNP NNS VBD DT NN RB IN NNP IN CD NNP NNS .\nThe rallies came on Russia 's Constitution Day , as Mr. Putin signed into law a bill letting the president appoint who can run for governor .\tDT NNS VBD IN NNP POS NNP NNP , IN NNP NNP VBD IN NN DT NN VBG DT NN VBZ WP MD VB IN NN .\nAnother of the president 's proposals , aimed at scrapping the direct election of national lawmakers , is also expected to win parliamentary approval .\tDT IN DT NN POS NNS , VBN IN VBG DT JJ NN IN JJ NNS , VBZ RB VBN TO VB JJ NN .\nThe Kremlin says the changes are needed to bolster security in the wake of the Beslan school terrorist assault .\tDT NNP VBZ DT NNS VBP VBN TO VB NN IN DT NN IN DT NNP NN JJ NN .\nHundreds died in the attack , many of them children .\tNNP VBD IN DT NN , NN IN PRP NNS .\nThe Serbian government says a retired top Bosnian Serb general will surrender voluntarily to the U.N. 's war crimes tribunal for the former Yugoslavia .\tDT JJ NN VBZ DT JJ JJ JJ JJ NN MD VB RB TO DT NNP POS NN NNS JJ IN DT JJ NNP .\nThe government says General Milan Gvero , who was a close aide of wanted commander General Ratko Mladic , agreed in recent talks with Serbia 's justice minister to surrender Thursday .\tDT NN VBZ NNP NNP NNP , WP VBD DT JJ NN IN JJ NN NNP NNP NNP , VBD IN JJ NNS IN NNP POS NN NN TO VB NNP .\nThe United Nations tribunal has accused the former general of war crimes , but released no details of the charges .\tDT NNP NNP NN VBZ VBN DT JJ NN IN NN NNS , CC VBD DT NNS IN DT NNS .\nSerbia and Montenegro have been pressured by Western nations to turn over over war crimes suspects .\tNNP CC NNP VBP VBN VBN IN JJ NNS TO VB RP IN NN NNS NNS .\nUnited Nations war crimes prosecutors have accused Serbian authorities of not cooperating with the tribunal .\tNNP NNP NN NNS NNS VBP VBN JJ NNS IN RB VBG IN DT NN .\nUzbekistan , Afghanistan and Iran have agreed to join forces and build a trans-Afghan transport corridor that will give Uzbekistan access to the Persian Gulf .\tNNP , NNP CC NNP VBP VBN TO VB NNS CC VB DT JJ NN NN WDT MD VB NNP NN TO DT NNP NNP .\nAn Uzbek Foreign Ministry statement says officials from the three countries signed an agreement to set up the Interstate Coordination Council after Wednesday 's talks in Tashkent .\tDT JJ NNP NNP NN VBZ NNS IN DT CD NNS VBD DT NN TO VB RP DT NNP NNP NNP IN NNP POS NNS IN NNP .\nThe statement says the document will serve as a legal basis to develop the 2,400-kilometer interstate road , linking the former Soviet republic with Iran 's Gulf coast through Afghanistan .\tDT NN VBZ DT NN MD VB IN DT JJ NN TO VB DT JJ JJ NN , VBG DT JJ JJ NN IN NNP POS NNP NN IN NNP .\nThe Foreign Ministry gave no details on how much the project would cost or when the work will begin .\tDT NNP NNP VBD DT NNS IN WRB JJ DT NN MD VB CC WRB DT NN MD VB .\nThe U.N. Security Council has renewed trade sanctions on Liberian timber and diamonds , and extended an arms embargo in the West African nation .\tDT NNP NNP NNP VBZ VBN NN NNS IN JJ NN CC NNS , CC VBD DT NNS NN IN DT JJ JJ NN .\nThe council unanimously adopted a resolution Tuesday that extends bans on Liberian exports of wood and diamonds for six months and the arms embargo for another year .\tDT NN RB VBD DT NN NNP WDT VBZ NNS IN JJ NNS IN NN CC NNS IN CD NNS CC DT NNS NN IN DT NN .\nThe resolution also praised Liberia 's recent elections , saying they were an important step towards lasting peace in the war-torn nation .\tDT NN RB VBD NNP POS JJ NNS , VBG PRP VBD DT JJ NN IN VBG NN IN DT JJ NN .\nThe Security Council called on new President Ellen Johnson-Sirleaf to reform the nation 's existing forestry and logging operations and consider independent , outside advice on managing its diamond resources .\tDT NNP NNP VBD IN JJ NNP NNP NNP TO VB DT NN POS VBG NN CC VBG NNS CC VB JJ , JJ NN IN VBG PRP$ NN NNS .\nThe United Nations had originally imposed the sanctions in 2001 and 2003 on the government of former Liberian President Charles Taylor .\tDT NNP NNP VBD RB VBN DT NNS IN CD CC CD IN DT NN IN JJ JJ NNP NNP NNP .\nIt was believed Mr. Taylor was supplying weapons to rebels in neighboring Sierra Leone , where he is wanted on war crimes charges .\tPRP VBD VBN NNP NNP VBD VBG NNS TO NNS IN VBG NNP NNP , WRB PRP VBZ VBN IN NN NNS NNS .\nThe U.S. State Department 's annual human rights report , released Tuesday , says some African countries are making progress , while others are regressing or lagging behind .\tDT NNP NNP NNP POS JJ JJ NNS NN , VBN NNP , VBZ DT JJ NNS VBP VBG NN , IN NNS VBP VBG CC VBG RB .\nThe report praises Liberia , noting that President Ellen Johnson Sirleaf has dismissed some corrupt officials , and that her government is investigating war crimes committing during the country 's civil war .\tDT NN VBZ NNP , VBG IN NNP NNP NNP NNP VBZ VBN DT JJ NNS , CC IN PRP$ NN VBZ VBG NN NNS VBG IN DT NN POS JJ NN .\nBut the U.S. report has harsh words for Zimbabwe , saying the Mugabe government continues ' across-the-board ' human rights violations .\tCC DT NNP NN VBZ JJ NNS IN NNP , VBG DT NNP NN VBZ `` JJ `` JJ NNS NNS .\nThe report is even harder on Eritrea 's government , which it says continues to be one of the most repressive in sub-Saharan Africa .\tDT NN VBZ RB RBR IN NNP POS NN , WDT PRP VBZ VBZ TO VB CD IN DT RBS JJ IN JJ NNP .\nThere is especially strong criticism of Sudan .\tEX VBZ RB JJ NN IN NNP .\nThe report says the Sudanese government and government-backed Janjaweed militia bear responsibility for what the U.S. calls the genocide in Darfur .\tDT NN VBZ DT JJ NN CC JJ NNP NN VBP NN IN WP DT NNP VBZ DT NN IN NNP .\nPermanent legal residents of the United States will be subjected to a fingerprint check when they re-enter the country by land , sea or air .\tJJ JJ NNS IN DT NNP NNPS MD VB VBN TO DT NN NN WRB PRP VBP DT NN IN NN , NN CC NN .\nThe U.S. Department of Homeland Security says the new security checks are part of an existing program ( US-VISIT ) that keeps track of visitors as they enter or leave the United States , and screens out criminals and potential terrorists .\tDT NNP NNP IN NNP NNP VBZ DT JJ NN NNS VBP NN IN DT JJ NN LRB NNP RRB WDT VBZ NN IN NNS IN PRP VBP CC VBP DT NNP NNPS , CC VBZ RP NNS CC JJ NNS .\nThe acting director of the program , Robert Mocny , says at least 1,100 criminals have been captured at U.S. ports of entry .\tDT VBG NN IN DT NN , NNP NNP , VBZ IN JJS CD NNS VBP VBN VBN IN NNP NNS IN NN .\nThe new fingerprinting rules will affect 11 million to 12 million green-card holders .\tDT JJ NN NNS MD VB CD CD TO CD CD JJ NNS .\nIt also will apply to Canadians entering the country for an extended period of time , such as workers or students .\tPRP RB MD VB TO NNS VBG DT NN IN DT JJ NN IN NN , JJ IN NNS CC NNS .\nThe new requirements will take effect late next month .\tDT JJ NNS MD VB NN RB JJ NN .\nAn American has managed to escape from kidnappers who abducted him from the streets of Kabul , Afghanistan .\tDT NNP VBZ VBN TO VB IN NNS WP VBD PRP IN DT NNS IN NNP , NNP .\nThe man , whose name has not been released , was accosted and forced into the trunk of a car , but within minutes , he managed to open the trunk and jump out .\tDT NN , WP$ NN VBZ RB VBN VBN , VBD VBN CC VBN IN DT NN IN DT NN , CC IN NNS , PRP VBD TO VB DT NN CC VB RP .\nThe kidnappers drove away in the car .\tDT NNS VBD RB IN DT NN .\nThe United States Embassy says the victim is an American civilian , but did not say why the man is in Afghanistan .\tDT NNP NNPS NNP VBZ DT NN VBZ DT JJ JJ , CC VBD RB VB WRB DT NN VBZ IN NNP .\nSince a British adviser to the Afghan government was shot to death in Kabul last month , foreigners have been advised to keep a low profile .\tIN DT JJ NN TO DT JJ NN VBD VBN TO NN IN NNP JJ NN , NNS VBP VBN VBN TO VB DT JJ NN .\nThe United Nations says the underground water aquifer that sustains some 1.5 million Palestinians in the Gaza Strip is ' in danger of collapse ' following years of overuse and contamination from armed conflict .\tDT NNP NNP VBZ DT JJ NN NN WDT VBZ DT CD CD NNS IN DT NNP NNP VBZ `` IN NN IN NN `` VBG NNS IN NN CC NN IN JJ NN .\nU.N. Environment Program researchers said overuse , salt water intrusion , sewage and agricultural runoff as well as hazardous medical waste in Gaza landfills is contributing to the situation .\tNNP NNP NNP NNS VBD NN , NN NN NN , NN CC JJ NN RB RB IN JJ JJ NN IN NNP NNS VBZ VBG TO DT NN .\nThey said pollution levels in the water are now so bad that Gaza infants are now at risk for nitrate poisoning .\tPRP VBD NN NNS IN DT NN VBP RB RB JJ IN NNP NNS VBP RB IN NN IN JJ NN .\nA report published Monday said that residents need an alternate water supply to give the aquifer a chance to rest .\tDT NN VBN NNP VBD IN NNS VBP DT JJ NN NN TO VB DT NN DT NN TO VB .\nResearchers said unless the trend is reversed now , the damage could take centuries to reverse .\tNNS VBD IN DT NN VBZ VBN RB , DT NN MD VB NNS TO VB .\nScientists estimated restoration efforts could take 20 years and cost some $ 1.5 billion .\tNNS VBD NN NNS MD VB CD NNS CC VBD DT $ CD CD .\nEritrea 's President Isaias Afeworki has rejected a call from Ethiopia 's government to begin talks on a border dispute that sparked a two-year war in 1998 .\tNNP POS NNP NNP NNP VBZ VBN DT NN IN NNP POS NN TO VB NNS IN DT NN NN WDT VBD DT JJ NN IN CD .\nIn a statement Tuesday , Mr. Isaias said Ethiopia 's latest offer contains nothing new and would only drag the peace process backward .\tIN DT NN NNP , NNP NNP VBD NNP POS JJS NN VBZ DT JJ CC MD RB VB DT NN NN RB .\nHe also said Eritrea will accept no alternative to a 2002 ruling by an independent commission on the border dispute .\tPRP RB VBD NNP MD VB DT NN TO DT CD NN IN DT JJ NN IN DT NN NN .\nLast month , Ethiopia 's Prime Minister Meles Zenawi said his government had accepted the ruling ' in principle , ' after opposing it for more than a year .\tJJ NN , NNP POS NNP NNP NNP NNP VBD PRP$ NN VBD VBN DT NN `` IN NN , `` IN VBG PRP IN JJR IN DT NN .\nIn 2000 , the two countries agreed to abide by the commission 's decision as part of a peace deal ending the war which killed some 70,000 people .\tIN CD , DT CD NNS VBD TO VB IN DT NN POS NN IN NN IN DT NN NN VBG DT NN WDT VBD DT CD NNS .\nIraqi President Jalal Talabani says he believes voters will approve the country 's new constitution in a nationwide referendum next month .\tJJ NNP NNP NNP VBZ PRP VBZ NNS MD VB DT NN POS JJ NN IN DT JJ NN JJ NN .\nAt a news conference Friday at the Voice of America in Washington , Mr. Talabani said he did not think Sunni Arab objections would prevent the document 's approval .\tIN DT NN NN NNP IN DT NNP IN NNP IN NNP , NNP NNP VBD PRP VBD RB VB NNP NNP NNS MD VB DT NN POS NN .\nBut if it is rejected , he said elections would be held for a new national assembly , which would then draft a new document .\tCC IN PRP VBZ VBN , PRP VBD NNS MD VB VBN IN DT JJ JJ NN , WDT MD RB VB DT JJ NN .\nHe repeated his support for a federated Iraq , saying it would strengthen the country , not divide it as some Sunni Arabs fear .\tPRP VBD PRP$ NN IN DT JJ NNP , VBG PRP MD VB DT NN , RB VBP PRP IN DT NNP NNS VBP .\nHe also rejected suggestions that Iraq could spiral into a civil war .\tPRP RB VBD NNS IN NNP MD VB IN DT JJ NN .\nMr. Talabani said he hoped Iraqi security forces and police could be sufficiently rebuilt within one year to allow for U.S. and coalition forces to begin leaving the country .\tNNP NNP VBD PRP VBD JJ NN NNS CC NNS MD VB RB VBN IN CD NN TO VB IN NNP CC NN NNS TO VB VBG DT NN .\nNew York City is known for its restaurants , but one small bakery in the West Village is helping its customers rethink their environmental impact simply by eating its baked goods .\tNNP NNP NNP VBZ VBN IN PRP$ NNS , CC CD JJ NN IN DT NNP NNP VBZ VBG PRP$ NNS VBP PRP$ JJ NN RB IN VBG PRP$ JJ NNS .\nVOA 's Susy Tekunan has the story of this bakery and its quest for environmental sustainability , through car-free deliveries of its products , recycled construction materials in its store , and organic baking materials in its cookies .\tNNP POS NNP NNP VBZ DT NN IN DT NN CC PRP$ NN IN JJ NN , IN JJ NNS IN PRP$ NNS , JJ NN NNS IN PRP$ NN , CC JJ NN NNS IN PRP$ NNS .\nBrian Allen narrates .\tNNP NNP VBZ .\nSudan has accused Chad of assisting Darfur rebels in their fight against the government .\tNNP VBZ VBN NNP IN VBG NNP NNS IN PRP$ NN IN DT NN .\nChad 's foreign ministry rejected the claims Thursday .\tNNP POS JJ NN VBD DT NNS NNP .\nIt says Sudan 's allegations are unfriendly because Chad has contributed to the peaceful resolution of the Darfur crisis through its mediation with the African Union .\tPRP VBZ NNP POS NNS VBP JJ IN NNP VBZ VBN TO DT JJ NN IN DT NNP NN IN PRP$ NN IN DT NNP NNP .\nSudan 's accusations come less than a week after Chad accused Khartoum of using Chadian army deserters to fight a small rebel group in Darfur .\tNNP POS NNS VBP JJR IN DT NN IN NNP VBD NNP IN VBG JJ NN NNS TO VB DT JJ NN NN IN NNP .\nHundreds of thousands of refugees from Darfur have fled into Chad since the Sudanese conflict erupted more than two years ago .\tNNS IN NNS IN NNS IN NNP VBP VBN IN NNP IN DT JJ NN VBD JJR IN CD NNS RB .\nIraqi police say at least 16 bus passengers were killed by a roadside bomb Tuesday in southern Iraq .\tJJ NNS VBP IN JJS CD NN NNS VBD VBN IN DT NN NN NNP IN JJ NNP .\nA police spokesman says the bus was traveling from the port city of Basra to Nasariyah .\tDT NN NN VBZ DT NN VBD VBG IN DT JJ NN IN NNP TO NNP .\nAt least 22 people were wounded in the blast .\tIN JJS CD NNS VBD VBN IN DT NN .\nNo other details were immediately available .\tDT JJ NNS VBD RB JJ .\nIn other news , the U.S. military says a bomb attack Monday killed three American soldiers and their translator in the Iraqi province of Diyala .\tIN JJ NN , DT NNP NN VBZ DT NN NN NNP VBD CD JJ NNS CC PRP$ NN IN DT JJ NN IN NNP .\nIn a separate incident , the military said a suspected suicide bomb attack killed five U.S. soldiers on foot patrol in Baghdad .\tIN DT JJ NN , DT NN VBD DT JJ NN NN NN VBD CD NNP NNS IN NN NN IN NNP .\nAfghan officials say suspected Taleban gunmen have killed six policemen during a raid on a police post in southern Helmand province .\tJJ NNS VBP VBN NNP NNS VBP VBN CD NNS IN DT NN IN DT NN NN IN JJ NNP NN .\nAuthorities said Wednesday that one gunman was killed in a shoot-out with the militants late Tuesday in the Kajaki district .\tNNS VBD NNP IN CD NN VBD VBN IN DT NN IN DT NNS JJ NNP IN DT NNP NN .\nTaleban militants have carried out a guerrilla insurgency in Afghanistan since U.S.-led forces ousted the Islamic extremist government three years ago .\tNNP NNS VBP VBN RP DT NN NN IN NNP IN JJ NNS VBD DT JJ NN NN CD NNS RB .\nFrom Liverpool to lattes : Sir Paul McCartney has become the first artist to sign with Starbucks ' new record label , Hear Music .\tIN NNP TO NNS IN NNP NNP NNP VBZ VBN DT JJ NN TO VB IN NNP POS JJ NN NN , NNP NNP .\nChairman Howard Schultz announced the news March 21 at the coffee company 's annual meeting in Seattle , Washington .\tNNP NNP NNP VBD DT NN NNP CD IN DT NN NN POS JJ NN IN NNP , NNP .\nThe 64-year-old ex-Beatle appeared via satellite from London , saying the move reflected the changing nature of music marketing .\tDT JJ NN VBD IN NN IN NNP , VBG DT NN VBD DT VBG NN IN NN NN .\nCurrent U.S. album sales are down almost 17 percent from last year , in the face of competition from Internet piracy and competing media .\tJJ NNP NN NNS VBP RB RB CD NN IN JJ NN , IN DT NN IN NN IN NNP NN CC VBG NNS .\nMcCartney , currently enduring a bitter divorce from Heather Mills , said he hopes to release the still-untitled album in early June .\tNNP , RB VBG DT JJ NN IN NNP NNP , VBD PRP VBZ TO VB DT JJ NN IN JJ NNP .\nStarbucks is the world 's largest specialty coffee retailer .\tNNP VBZ DT NN POS JJS NN NN NN .\nThe chain has already struck successful marketing deals with other musical acts , while also selling books and developing a feature-length film .\tDT NN VBZ RB VBN JJ NN NNS IN JJ JJ NNS , IN RB VBG NNS CC VBG DT JJ NN .\nHear Music releases will be sold through Starbucks stores and other music retailers .\tNNP NNP NNS MD VB VBN IN NNP NNS CC JJ NN NNS .\nThe Argentine Senate has narrowly rejected a controversial grain export tax increase that has sparked a deep political crisis in the country .\tDT JJ NNP VBZ RB VBN DT JJ NN NN NN NN WDT VBZ VBN DT JJ JJ NN IN DT NN .\nAfter 17 hours of debate , the decision came down to Vice President Julio Cobos , who broke a 36-36 tie by casting his vote against the measure early Thursday .\tIN CD NNS IN NN , DT NN VBD RB TO NNP NNP NNP NNP , WP VBD DT JJ NN IN VBG PRP$ NN IN DT NN RB NNP .\nPresident Cristina Fernandez de Kirchner introduced the tax in March , a move that divided the country , triggered farm strikes and interrupted agricultural exports .\tNNP NNP NNP IN NNP VBD DT NN IN NNP , DT NN WDT VBD DT NN , VBD NN NNS CC JJ JJ NNS .\nEarlier this month , the lower house of Congress approved the grain export taxes that farmers bitterly opposed .\tRBR DT NN , DT JJR NN IN NNP VBD DT NN NN NNS IN NNS RB VBN .\nPresident Fernandez had asked Congress to debate the measure in an effort to defuse tension over the issue .\tNNP NNP VBD VBN NNP TO VB DT NN IN DT NN TO VB NN IN DT NN .\nMs. Fernandez defended the increase saying the money would have been used to help the poor .\tNNP NNP VBD DT NN VBG DT NN MD VB VBN VBN TO VB DT NN .\nAfghan officials say security forces in the southern city of Kandahar have arrested two men carrying explosives .\tJJ NNS VBP NN NNS IN DT JJ NN IN NNP VBP VBN CD NNS VBG NNS .\nThe officials say the men , believed to be terrorists , were detained hours after unidentified attackers threw a grenade at the Indian consulate in the city 's center Tuesday night .\tDT NNS VBP DT NNS , VBN TO VB NNS , VBD VBN NNS IN JJ NNS VBD DT NN IN DT JJ NN IN DT NN POS NN NNP NN .\nThe grenade exploded outside the complex , causing no casualties .\tDT NN VBD IN DT NN , VBG DT NNS .\nAlso Tuesday , unknown attackers hurled a grenade at the Ministry of Women 's Affairs in the capital , Kabul , but it too blew up outside the compound and there were no injuries .\tRB NNP , JJ NNS VBD DT NN IN DT NNP IN NNP POS NNP IN DT NN , NNP , CC PRP RB VBD RP IN DT NN CC EX VBD DT NNS .\nA police spokesman says no one has claimed responsibility for the attacks .\tDT NN NN VBZ DT NN VBZ VBN NN IN DT NNS .\nRepresentatives of the European Union and China have failed to resolve a trade dispute over Chinese textiles during a third day of talks in Beijing Saturday .\tNNS IN DT NNP NNP CC NNP VBP VBN TO VB DT NN NN IN JJ NNS IN DT JJ NN IN NNS IN NNP NNP .\nNegotiators say they will continue their discussions on Sunday .\tNNS VBP PRP MD VB PRP$ NNS IN NNP .\nIn June , China agreed to quotas in its textile exports to the EU .\tIN NNP , NNP VBD TO NNS IN PRP$ NN NNS TO DT NNP .\nBut millions of items of clothing manufactured in China have been blocked in European ports because China has already shipped its annual quota .\tCC NNS IN NNS IN NN VBN IN NNP VBP VBN VBN IN JJ NNS IN NNP VBZ RB VBN PRP$ JJ NN .\nThe quotas are designed to protect European textile manufacturers from low-priced Chinese competition .\tDT NNS VBP VBN TO VB JJ NN NNS IN JJ JJ NN .\nChinese textile exports surged early this year when a global system of textile quotas ended .\tJJ NN NNS VBD RB DT NN WRB DT JJ NN IN JJ NNS VBD .\nTalks between China and the EU began on Thursday .\tNNS IN NNP CC DT NNP VBD IN NNP .\nThe Gulf Arab state of Qatar says it will donate $ 50 million to the Hamas-led Palestinian government , which is in a financial crisis .\tDT NNP NNP NN IN NNP VBZ PRP MD VB $ CD CD TO DT JJ JJ NN , WDT VBZ IN DT JJ NN .\nThe contribution announced Monday in Doha comes after the United States and European Union cut off financial support to the Hamas-led Palestinian government until Hamas renounces violence and recognizes Israel .\tDT NN VBN NNP IN NNP VBZ IN DT NNP NNPS CC NNP NNP VBD RP JJ NN TO DT JJ JJ NN IN NNP VBZ NN CC VBZ NNP .\nOn Sunday , Iran said it would contribute $ 50 million to the Palestinian Authority .\tIN NNP , NNP VBD PRP MD VB $ CD CD TO DT JJ NNP .\nSince taking office last month , Hamas has come under diplomatic and economic pressure from Israel and Western governments , which consider Hamas a terrorist organization .\tIN VBG NN JJ NN , NNP VBZ VBN IN JJ CC JJ NN IN NNP CC JJ NNS , WDT VBP NNP DT JJ NN .\nIsrael is withholding about $ 50 million in monthly tax revenues it collects for the Palestinian Authority .\tNNP VBZ VBG IN $ CD CD IN JJ NN NNS PRP VBZ IN DT JJ NNP .\nA major symbol of Poland 's thriving pre-World War II Jewish community has been restored with the re-opening of the famed Lublin synagogue .\tDT JJ NN IN NNP POS JJ NNP NNP NNP NNP NN VBZ VBN VBN IN DT NN IN DT JJ NNP NN .\nPoland 's Chief Rabbi Michael Schudrich led hundreds of Jews Sunday in a joyful procession carrying the sacred religious scrolls into the building for the first time since the Nazi occupation .\tNNP POS NNP NNP NNP NNP VBD NNS IN NNPS NNP IN DT JJ NN VBG DT JJ JJ NNS IN DT NN IN DT JJ NN IN DT NNP NN .\nJewish leaders noted that this is the first time that Lublin 's tiny Jewish community took on a major restoration project without any donations from abroad .\tJJ NNS VBD IN DT VBZ DT JJ NN IN NNP POS JJ JJ NN VBD IN DT JJ NN NN IN DT NNS IN RB .\nThe synagogue is part of what once was the world 's most famous rabinnical school .\tDT NN VBZ NN IN WP RB VBD DT NN POS RBS JJ JJ NN .\nNazis shut down the school after the 1939 invasion .\tNNP VBD RP DT NN IN DT CD NN .\nThe communist government later turned it into a medical college .\tDT JJ NN RB VBD PRP IN DT JJ NN .\nBefore World War II about 40,000 Jews lived in Lublin .\tIN NNP NNP NNP IN CD NNS VBD IN NNP .\nMost were killed by the Nazis .\tJJS VBD VBN IN DT NNPS .\nCuban Vice President Carlos Lage says he remains optimistic about the recovery of ailing President Fidel Castro , who temporarily stepped aside in July following intestinal surgery .\tJJ NNP NNP NNP NNP VBZ PRP VBZ JJ IN DT NN IN JJ NNP NNP NNP , WP RB VBD RB IN NNP VBG JJ NN .\nLage made the comments on state television Tuesday , saying Mr. Castro continues to recover and that his health is improving .\tNNP VBD DT NNS IN NN NN NNP , VBG NNP NNP VBZ TO VB CC IN PRP$ NN VBZ VBG .\nBut he did not say whether Mr. Castro will be well enough to attend upcoming festivities belatedly marking his birthday .\tCC PRP VBD RB VB IN NNP NNP MD VB RB RB TO VB JJ NNS RB VBG PRP$ NN .\nThe Cuban leader turned 80 in August , but the festivities were postponed to allow him time to recover .\tDT JJ NN VBD CD IN NNP , CC DT NNS VBD VBN TO VB PRP NN TO VB .\nThe official Granma newspaper says the events will begin on November 28 and last through early December .\tDT JJ NNP NN VBZ DT NNS MD VB IN NNP CD CC JJ IN JJ NNP .\nMr. Castro temporarily handed power to his younger brother , Defense Minister Raul Castro , due to the operation .\tNNP NNP RB VBD NN TO PRP$ JJR NN , NNP NNP NNP NNP , JJ TO DT NN .\nThe Cuban leader has appeared only in news videos and photographs since then .\tDT JJ NN VBZ VBN RB IN NN NNS CC NNS IN RB .\nDetails of his health remain a state secret .\tNNS IN PRP$ NN VBP DT NN NN .\nA leading environmental organization says it has uncovered a massive timber smuggling operation linking Indonesia 's province of Papua and China .\tDT VBG JJ NN VBZ PRP VBZ VBN DT JJ NN VBG NN VBG NNP POS NN IN NNP CC NNP .\nThe London-based Environmental Investigation Agency Thursday said 3,00,000 cubic meters of merbau wood is being illegally smuggled out of Papua every month .\tDT JJ NNP NNP NNP NNP VBD CD JJ NNS IN NN NN VBZ VBG RB VBN IN IN NNP DT NN .\nIt says the operation is threatening the last major tract of undisturbed tropical forests in the entire Asia-Pacific region .\tPRP VBZ DT NN VBZ VBG DT JJ JJ NN IN JJ JJ NNS IN DT JJ JJ NN .\nIllegal logging is common in Indonesia and the environmental group says it continues despite Indonesia 's 2001 ban on exporting logs , and an anti-smuggling agreement between Jakarta and Beijing .\tJJ NN VBZ JJ IN NNP CC DT JJ NN VBZ PRP VBZ IN NNP POS CD NN IN VBG NNS , CC DT JJ NN IN NNP CC NNP .\nThe smuggling operation , which the group contends involves the powerful Indonesian military , is worth up to $ 1 billion a year , based on the wood 's value in the west .\tDT NN NN , WDT DT NN VBZ VBZ DT JJ JJ NN , VBZ JJ IN TO $ CD CD DT NN , VBN IN DT NN POS NN IN DT NN .\nNamibia has a new president .\tNNP VBZ DT JJ NN .\nHifikepunye Pohamba was sworn in Monday as the country 's second president since gaining independence from apartheid-era South Africa in 1990 .\tNNP NNP VBD VBN IN NNP IN DT NN POS JJ NN IN VBG NN IN JJ NNP NNP IN CD .\nMr. Pohamba took the oath of office in front of thousands of people at an outdoor stadium in the capital , Windhoek .\tNNP NNP VBD DT NN IN NN IN NN IN NNS IN NNS IN DT JJ NN IN DT NN , NNP .\nHe won 75 percent of the vote in elections last November to succeed Sam Nujoma , who has led Namibia for the past 15 years .\tPRP VBD CD NN IN DT NN IN NNS JJ NNP TO VB NNP NNP , WP VBZ VBN NNP IN DT JJ CD NNS .\nBoth men are from the ruling SWAPO , South West Africa People 's Organization , party .\tDT NNS VBP IN DT NN NNP , NNP NNP NNP NNP POS NNP , NN .\nMr. Pohamba served as lands minister under Mr. Nujoma .\tNNP NNP VBD IN NNS NN IN NNP NNP .\nThe new president vows to maintain many of his predecessor 's economic policies , and to advance a land reform program which buys farms from white owners and distributes the farms to blacks .\tDT JJ NN VBZ TO VB NN IN PRP$ NN POS JJ NNS , CC TO VB DT NN NN NN WDT VBZ NNS IN JJ NNS CC VBZ DT NNS TO NNS .\nMr. Pohamba has warned that the country faces revolution if the reforms are not quickly implemented .\tNNP NNP VBZ VBN IN DT NN VBZ NN IN DT NNS VBP RB RB VBN .\nThe U.S military in Iraq says coalition forces have captured five suspected so-called special group criminals , including a suspected financier of Iranian-sponsored insurgents .\tDT NNP NN IN NNP VBZ NN NNS VBP VBN CD JJ JJ JJ NN NNS , VBG DT JJ NN IN JJ NNS .\nThe military issued a statement saying coalition forces staged the raid early Friday , in the Admhaiyah section of Baghdad , about three kilometers northwest of Sadr City .\tDT JJ VBD DT NN VBG NN NNS VBD DT NN JJ NNP , IN DT NNP NN IN NNP , IN CD NNS JJS IN NNP NNP .\nThe special groups designation is used by the military to describe Shi'ite insurgents backed by Iran .\tDT JJ NNS NN VBZ VBN IN DT JJ TO VB NNP NNS VBN IN NNP .\nIn other news , Kuwait 's official news agency reports the country has named former military chief of staff Ali al-Momen as its first ambassador to Baghdad since the 1991 Gulf War .\tIN JJ NN , NNP POS JJ NN NN VBZ DT NN VBZ VBN JJ JJ NN IN NN NNP NNP IN PRP$ JJ NN TO NNP IN DT CD NNP NNP .\nThe United States has been urging Sunni-ruled Arab states to establish high-level diplomatic representation to the Shi'ite-led government in Baghdad .\tDT NNP NNPS VBZ VBN VBG JJ JJ NNS TO VB JJ JJ NN TO DT JJ NN IN NNP .\nKuwait 's decision comes shortly after the United Arab Emirates and Jordan named their own ambassadors to Iraq .\tNNP POS NN VBZ RB IN DT NNP NNP NNPS CC NNP VBD PRP$ JJ NNS TO NNP .\nBahrain also has announced plans to appoint an envoy .\tNNP RB VBZ VBN NNS TO VB DT NN .\nMexican legislators are calling on their Latin American counterparts to join them in opposing a proposed barrier along the U.S.-Mexican border .\tJJ NNS VBP VBG IN PRP$ JJ JJ NNS TO VB PRP IN VBG DT VBN NN IN DT JJ NN .\nHeliodoro Diaz , who presides over Mexico 's House of Representatives , has sent a written request to several regional legislatures as well as to parliaments in Spain and Portugal .\tNNP NNP , WP VBZ IN NNP POS NNP IN NNP , VBZ VBN DT JJ NN TO JJ JJ NNS RB RB IN TO NNS IN NNP CC NNP .\nMr. Diaz says opposing the wall would be ' an act of unity among Ibero-American legislatures . '\tNNP NNP VBZ VBG DT NN MD VB `` DT NN IN NN IN JJ NNS . ``\nThe U.S. House of Representatives approved a measure earlier this month to construct security fencing along the U.S.-Mexican border in an effort to curb illegal border crossing .\tDT NNP NNP IN NNP VBD DT NN RBR DT NN TO VB NN VBG IN DT JJ NN IN DT NN TO VB JJ NN VBG .\nThe measure would also reclassify illegal entry into the United States as a crime , instead of a civil offense , as at present .\tDT NN MD RB VB JJ NN IN DT NNP NNPS IN DT NN , RB IN DT JJ NN , IN IN JJ .\nThe U.N. Security Council on Thursday denounced the recent military crackdown against pro-democracy protesters in Burma and called for a release of all political prisoners there .\tDT NNP NNP NNP IN NNP VBD DT JJ JJ NN IN JJ NNS IN NNP CC VBN IN DT NN IN DT JJ NNS RB .\nPermanent members of the council with veto powers , China and Russia , had been pushing for softer language , while the United States and other Western powers want tougher action against the military-backed government .\tJJ NNS IN DT NN IN NN NNS , NNP CC NNP , VBD VBN VBG IN JJR NN , IN DT NNP NNPS CC JJ JJ NNS VBP JJR NN IN DT JJ NN .\nThe non-binding statement was issued as U.N. Secretary-General Ban Ki-moon said he would dispatch special adviser Ibrahim Gambari back to the region for consultations on the situation in Burma .\tDT JJ NN VBD VBN IN NNP NNP NNP NNP VBD PRP MD VB JJ NN NNP NNP RB TO DT NN IN NNS IN DT NN IN NNP .\nThe U.N. says Gambari will begin his Asian tour on Monday in Thailand before continuing to Malaysia , Indonesia , India , China and Japan .\tDT NNP VBZ NNP MD VB PRP$ JJ NN IN NNP IN NNP IN VBG TO NNP , NNP , NNP , NNP CC NNP .\nHe will return to Burma shortly thereafter .\tPRP MD VB TO NNP RB RB .\nGambari returned from a four-day visit to Burma last week .\tNNP VBD IN DT JJ NN TO NNP JJ NN .\nBurmese officials say the crackdown on pro-democracy protesters left 10 people dead .\tJJ NNS VBP DT NN IN JJ NNS VBD CD NNS JJ .\nDissidents put the number of fatalities at 200 .\tNNS VBD DT NN IN NNS IN CD .\nNearly a week after Cyclone Nargis hit Burma , bloating corpses dot the canals and riverbanks of the Irrawaddy River delta .\tRB DT NN IN NNP NNP VBD NNP , VBG NNS VBP DT NNS CC NNS IN DT NNP NNP NN .\nRescuers , including Buddhist monks , are struggling to reach survivors before they succumb to disease and starvation .\tNNS , VBG NNP NNS , VBP VBG TO VB NNS IN PRP VBP TO NN CC NN .\nInternational health officials say as many as 1.5 million homeless people face a wide range of threats from deadly diseases , including malaria and cholera , diarrhea , sun exposure and dirty water .\tNNP NN NNS VBP RB JJ IN CD CD JJ NNS VBP DT JJ NN IN NNS IN JJ NNS , VBG NN CC NN , NN , NN NN CC NN NN .\nShelter remains scarce and reports from Burma say profiteers are charging exorbitant prices for food , gas and other essentials .\tNNP VBZ JJ CC NNS IN NNP VBP NNS VBP VBG JJ NNS IN NN , NN CC JJ NNS .\nOne victim tells VOA Burmese Service that entire homes in his village were washed away and that only about 20 people survived the storm .\tCD NN VBZ NNP JJ NNP IN JJ NNS IN PRP$ NN VBD VBN RB CC IN RB RB CD NNS VBD DT NN .\nSome survivors say they have been forced to move from village to village in search of aid .\tDT NNS VBP PRP VBP VBN VBN TO VB IN NN TO NN IN NN IN NN .\nThey say most of the help is coming from local sources and not from the government .\tPRP VBP JJS IN DT NN VBZ VBG IN JJ NNS CC RB IN DT NN .\nThe U.S. military in Afghanistan says coalition forces killed more than 50 insurgents in southern Afghanistan during a 12-hour battle that ended early Thursday , but there also are reports of civilian casualties .\tDT NNP NN IN NNP VBZ NN NNS VBD JJR IN CD NNS IN JJ NNP IN DT JJ NN WDT VBD JJ NNP , CC EX RB VBP NNS IN JJ NNS .\nThe battle took place in Helmand Province , near Musa Qala village , which has seen intense fighting and heavy casualties throughout this week .\tDT NN VBD NN IN NNP NNP , IN NNP NNP NN , WDT VBZ VBN JJ NN CC JJ NNS IN DT NN .\nA U.S. military statement says coalition warplanes were called in during the Musa Qala fighting , but that there were no casualties among either coalition troops or civilians .\tDT NNP JJ NN VBZ NN NNS VBD VBN IN IN DT NNP NNP NN , CC IN EX VBD DT NNS IN DT NN NNS CC NNS .\nHowever , several residents of Musa Qala district have told reporters they believe almost all victims of the air strike were civilians .\tRB , JJ NNS IN NNP NNP NN VBP VBN NNS PRP VBP RB DT NNS IN DT NN NN VBD NNS .\nThey say 16 civilians died in the bombing raid .\tPRP VBP CD NNS VBD IN DT VBG NN .\nOne British soldier was killed Thursday during a separate clash between NATO troops and militants in southern Afghanistan .\tCD JJ NN VBD VBN NNP IN DT JJ NN IN NNP NNS CC NNS IN JJ NNP .\nViolence has surged in Afghanistan during the past 18 months , the bloodiest period since U.S.-led troops overthrew the Taleban in 2001 .\tNN VBZ VBN IN NNP IN DT JJ CD NNS , DT JJS NN IN JJ NNS VBD DT NNP IN CD .\nPakistani officials say government troops have killed at least 43 militants in an ongoing operation in the northwestern Khyber tribal region bordering Afghanistan .\tJJ NNS VBP NN NNS VBP VBN IN JJS CD NNS IN DT JJ NN IN DT JJ NNP JJ NN VBG NNP .\nAuthorities say one of the bases of the militant group Lashkar-e-Islam was destroyed in Saturday 's attack .\tNNS VBP CD IN DT NNS IN DT JJ NN NN VBD VBN IN NNP POS NN .\nPakistan is under intense U.S. pressure to crack down on militants close to the Afghan border .\tNNP VBZ IN JJ NNP NN TO VB RP IN NNS RB TO DT JJ NN .\nKhyber is on the main land route through Pakistan into Afghanistan .\tNNP VBZ IN DT JJ NN NN IN NNP IN NNP .\nKidnappers who seized an Italian photojournalist in Afghanistan last week are offering to release him in return for an Afghan Christian now living in Italy .\tNNS WP VBD DT JJ NN IN NNP JJ NN VBP VBG TO VB PRP IN NN IN DT JJ NNP RB VBG IN NNP .\nThe Afghan man , a convert to Christianity , fled his homeland earlier this year after he was charged with leaving Islam , an offense punishable by death .\tDT JJ NN , DT NN IN NNP , VBD PRP$ NN RBR DT NN IN PRP VBD VBN IN VBG NNP , DT NN JJ IN NN .\nHe subsequently was granted asylum in Italy .\tPRP RB VBD VBN NN IN NNP .\nA hospital in Afghanistan operated by an Italian aid agency ( Emergency ) was contacted this week by the kidnappers , who said they would release their captive if the Afghan Christian ( Abdul Rahman ) is returned to his home country .\tDT NN IN NNP VBN IN DT JJ NN NN LRB NN RRB VBD VBN DT NN IN DT NNS , WP VBD PRP MD VB PRP$ JJ IN DT JJ NNP LRB NNP NNP RRB VBZ VBN TO PRP$ NN NN .\nPhotographer Gabriele Torsello was kidnapped in Helmand province last week .\tNN NNP NNP VBD VBN IN NNP NN JJ NN .\nAuthorities there blamed the abduction on the Taleban , but the radical Islamist group denies any involvement in the Italian 's abduction .\tNNS RB VBD DT NN IN DT NNP , CC DT JJ NN NN VBZ DT NN IN DT NN POS NN .\nPolling centers in Iraq have closed after a remarkably violence-free day , which allowed millions to turn out to vote in a referendum for the country 's new draft constitution .\tVBG NNS IN NNP VBP VBN IN DT RB JJ NN , WDT VBD NNS TO VB RP TO VB IN DT NN IN DT NN POS JJ NN NN .\nCrowds of Iraqis gathered at polling sites long before they opened at 7.00 a.m. , Saturday .\tNNS IN NNS VBD IN VBG NNS RB IN PRP VBD IN CD NN , NNP .\nWithin three hours of polls opening , more than one-fourth of the nearly three million registered voters in Baghdad had cast ballots in 1,200 polling centers .\tIN CD NNS IN NNS VBG , JJR IN NN IN DT RB CD CD VBN NNS IN NNP VBD VBN NNS IN CD NN NNS .\nAn Iraqi policeman , providing security at a polling center in the mostly-Sunni area of Ghazaliyah , says the voting process proceeded better than anyone had expected .\tDT JJ NN , VBG NN IN DT NN NN IN DT NNP NN IN NNP , VBZ DT NN NN VBD JJR IN DT VBD VBN .\nDespite insurgent threats to disrupt the referendum , heavy security kept violence to a minimum on Saturday .\tIN JJ NNS TO VB DT NN , JJ NN VBD NN TO DT NN IN NNP .\nA handful of polling centers came under small arms fire in and around Baghdad , wounding several people .\tDT NN IN NN NNS VBD IN JJ NNS NN IN CC IN NNP , VBG JJ NNS .\nThere were no reported car bombings or suicide attacks .\tEX VBD DT JJ NN NNS CC NN NNS .\nPresident Bush used his weekly radio address Saturday to highlight Pakistan 's efforts to combat Islamist militants .\tNNP NNP VBD PRP$ JJ NN NN NNP TO VB NNP POS NNS TO VB NNP NNS .\nMr. Bush cited a recent report released by his administration that says al-Qaida has established a safe haven in the tribal areas of Pakistan bordering Afghanistan .\tNNP NNP VBD DT JJ NN VBN IN PRP$ NN IN VBZ NNP VBZ VBN DT JJ NN IN DT JJ NNS IN NNP VBG NNP .\nHe said Pakistani President Pervez Musharraf agreed to give tribal leaders more responsibility for policing their areas , but their efforts were unsuccessful .\tPRP VBD JJ NNP NNP NNP VBD TO VB JJ NNS RBR NN IN VBG PRP$ NNS , CC PRP$ NNS VBD JJ .\nLast Sunday , pro-Taleban militants broke the agreement .\tJJ NNP , JJ NNS VBD DT NN .\nMr. Bush said the Pakistani president is taking active steps to go after radicals .\tNNP NNP VBD DT JJ NN VBZ VBG JJ NNS TO VB IN NNS .\nHe noted Mr. Musharraf 's decision to send Pakistani troops to raid an extremist Mosque in Islamabad .\tPRP VBD NNP NNP POS NN TO VB JJ NNS TO VB DT NN NN IN NNP .\nThat raid has triggered a wave of militant attacks across the country that has killed more than 160 people .\tDT NN VBZ VBN DT NN IN JJ NNS IN DT NN WDT VBZ VBN JJR IN CD NNS .\nMr. Bush 's remarks were taped before the president underwent a medical procedure requiring him to temporarily hand over power to Vice President Dick Cheney .\tNNP NNP POS NNS VBD VBN IN DT NN VBD DT JJ NN VBG PRP TO RB VB IN NN TO NNP NNP NNP NNP .\nThe U.S. National Hurricane Center says the season 's latest storm , Ophelia , has weakened to ' tropical storm ' status as it hovers off the U.S. Atlantic coast .\tDT NNP NNP NNP NNP VBZ DT NN POS JJS NN , NNP , VBZ VBN TO `` JJ NN `` NN IN PRP VBZ RP DT NNP NNP NN .\nOphelia 's winds dropped to about 115 kilometers an hour Monday , just below hurricane level ( 119 kph ) .\tNNP POS NNS VBD TO IN CD NNS DT NN NNP , RB IN NN NN LRB CD NN RRB .\nBut residents of both North and South Carolina remain wary , as it could regain strength .\tCC NNS IN DT NNP CC NNP NNP VBP JJ , IN PRP MD VB NN .\nThe storm 's path is uncertain .\tDT NN POS NN VBZ JJ .\nOfficials are taking extra precautions after the destruction caused by Hurricane Katrina , which hit the U.S. Gulf Coast two weeks ago .\tNNS VBP VBG JJ NNS IN DT NN VBN IN NNP NNP , WDT VBD DT NNP NNP NNP CD NNS RB .\nThere is a hurricane watch along 400 kilometers of the east coast .\tEX VBZ DT NN NN IN CD NNS IN DT JJ NN .\nThe governor of North Carolina has declared a state of emergency and ordered tourists to leave an island in the state 's Outer Banks chain .\tDT NN IN NNP NNP VBZ VBN DT NN IN NN CC VBD NNS TO VB DT NN IN DT NN POS NNP NNP NN .\nFirst of America Bank Corp. said it completed its acquisition of Midwest Financial Group Inc. for about $ 250 million .\tNNP IN NNP NNP NNP VBD PRP VBD PRP$ NN IN NNP NNP NNP NNP IN IN $ CD CD .\nFirst of America , which now has 45 banks and $ 12.5 billion in assets , announced an agreement to acquire the Peoria , Ill. , bank holding company in January .\tNNP IN NNP , WDT RB VBZ CD NNS CC $ CD CD IN NNS , VBD DT NN TO VB DT NNP , NNP , NN VBG NN IN NNP .\nMidwest Financial has $ 2.3 billion in assets and eight banks .\tNNP NNP VBZ $ CD CD IN NNS CC CD NNS .\nThe Midwest Financial subsidiary banks will continue to operate under their current names until early 1990 , when each will adopt the First of America name .\tDT NNP NNP NN NNS MD VB TO VB IN PRP$ JJ NNS IN JJ CD , WRB DT MD VB DT NNP IN NNP NN .\nKalamazoo , Mich.-based First of America said it will eliminate the 13 management positions of the former Midwest Financial parent company .\tNNP , JJ NNP IN NNP VBD PRP MD VB DT CD NN NNS IN DT JJ NNP NNP NN NN .\nFirst of America said some of the managers will take other jobs with First of America .\tNNP IN NNP VBD DT IN DT NNS MD VB JJ NNS IN CD IN NNP .\nBut it said that severance payments to those executives not staying with the company will reduce First of America 's operating results for 1989 by $ 3 million to $ 4 million , or 15 cents to 20 cents a share .\tIN PRP VBD IN NN NNS TO DT NNS RB VBG IN DT NN MD VB CD IN NNP POS NN NNS IN CD IN $ CD CD IN $ CD CD , CC CD NNS IN CD NNS DT NN .\nMaldives was long a sultanate , first under Dutch and then under British protection .\tNNP VBD RB DT NN , RB IN JJ CC RB IN JJ NN .\nIt became a republic in 1968 , three years after independence .\tPRP VBD DT NN IN CD , CD NNS IN NN .\nPresident Maumoon Abdul GAYOOM dominated the islands ' political scene for 30 years , elected to six successive terms by single-party referendums .\tNNP NNP NNP NNP VBD DT NNS POS JJ NN IN CD NNS , VBN TO CD JJ NNS IN JJ NNS .\nFollowing riots in the capital Male in August 2004 , the president and his government pledged to embark upon democratic reforms including a more representative political system and expanded political freedoms .\tVBG NNS IN DT NN NN IN NNP CD , DT NN CC PRP$ NN VBD TO VB IN JJ NNS VBG DT RBR JJ JJ NN CC VBN JJ NNS .\nProgress was sluggish , however , and many promised reforms were slow to be realized .\tNNP VBD JJ , RB , CC JJ JJ NNS VBD JJ TO VB VBN .\nNonetheless , political parties were legalized in 2005 .\tRB , JJ NNS VBD VBN IN CD .\nIn June 2008 , a constituent assembly - termed the ' Special Majlis ' - finalized a new constitution , which was ratified by the president in August .\tIN NNP CD , DT JJ NN : VBD DT `` JJ NNP `` : VBD DT JJ NN , WDT VBD VBN IN DT NN IN NNP .\nThe first-ever presidential elections under a multi-candidate , multi-party system were held in October 2008 .\tDT JJ JJ NNS IN DT JJ , JJ NN VBD VBN IN NNP CD .\nGAYOOM was defeated in a runoff poll by Mohamed NASHEED , a political activist who had been jailed several years earlier by the former regime .\tNNP VBD VBN IN DT NN NN IN NNP NNP , DT JJ NN WP VBD VBN VBN JJ NNS RBR IN DT JJ NN .\nChallenges facing President NASHEED include strengthening democracy and combating poverty and drug abuse .\tNNS VBG NNP NNP VBP JJ NN CC VBG NN CC NN NN .\nMaldives officials have played a prominent role in the international climate change discussion ( due to the islands ' low elevation and the threat from sea-level rise ) and on the United Nations Human Rights Council .\tNNP NNS VBP VBN DT JJ NN IN DT JJ NN NN NN LRB JJ TO DT NNS POS JJ NN CC DT NN IN JJ NN RRB CC IN DT NNP NNP NNP NNP NNP .\nThe UN awarded Eritrea to Ethiopia in 1952 as part of a federation .\tDT NNP VBD NNP TO NNP IN CD IN NN IN DT NN .\nEthiopia 's annexation of Eritrea as a province 10 years later sparked a 30-year struggle for independence that ended in 1991 with Eritrean rebels defeating governmental forces ; independence was overwhelmingly approved in a 1993 referendum .\tNNP POS NN IN NNP IN DT NN CD NNS RB VBD DT JJ NN IN NN WDT VBD IN CD IN JJ NNS VBG JJ NNS ; NN VBD RB VBN IN DT CD NN .\nA two-and-a-half-year border war with Ethiopia that erupted in 1998 ended under UN auspices in December 2000 .\tDT JJ NN NN IN NNP WDT VBD IN CD VBD IN NNP NNS IN NNP CD .\nEritrea hosted a UN peacekeeping operation that monitored a 25 km-wide Temporary Security Zone ( TSZ ) on the border with Ethiopia .\tNNP VBD DT NNP NN NN WDT VBD DT CD JJ NNP NNP NNP LRB NNP RRB IN DT NN IN NNP .\nEritrea 's denial of fuel to the mission caused the UN to withdraw the mission and terminate its mandate 31 July 2008 .\tNNP POS NN IN NN TO DT NN VBD DT NNP TO VB DT NN CC VB PRP$ NN CD NNP CD .\nAn international commission , organized to resolve the border dispute , posted its findings in 2002 .\tDT JJ NN , VBN TO VB DT NN NN , VBD PRP$ NNS IN CD .\nHowever , both parties have been unable to reach agreement on implementing the decision .\tRB , DT NNS VBP VBN JJ TO VB NN IN VBG DT NN .\nOn 30 November 2007 , the Eritrea-Ethiopia Boundary Commission remotely demarcated the border by coordinates and dissolved itself , leaving Ethiopia still occupying several tracts of disputed territory , including the town of Badme .\tIN CD NNP CD , DT NNP NNP NNP RB VBD DT NN IN NNS CC VBD PRP , VBG NNP RB VBG JJ NNS IN JJ NN , VBG DT NN IN NNP .\nEritrea accepted the EEBC 's ' virtual demarcation ' decision and called on Ethiopia to remove its troops from the TSZ that it states is Eritrean territory .\tNNP VBD DT NNP POS `` JJ NN `` NN CC VBN IN NNP TO VB PRP$ NNS IN DT NNP IN PRP VBZ VBZ JJ NN .\nEthiopia has not accepted the virtual demarcation decision .\tNNP VBZ RB VBN DT JJ NN NN .\nIn 2009 the UN imposed sanctions on Eritrea after accusing it of backing anti-Ethiopian Islamist insurgents in Somalia .\tIN CD DT NNP VBD NNS IN NNP IN VBG PRP IN VBG JJ NN NNS IN NNP .\nAs Europe 's largest economy and second most populous nation ( after Russia ) , Germany is a key member of the continent 's economic , political , and defense organizations .\tIN NNP POS JJS NN CC JJ RBS JJ NN LRB IN NNP RRB , NNP VBZ DT JJ NN IN DT NN POS JJ , JJ , CC NN NNS .\nEuropean power struggles immersed Germany in two devastating World Wars in the first half of the 20th century and left the country occupied by the victorious Allied powers of the US , UK , France , and the Soviet Union in 1945 .\tJJ NN VBZ JJ NNP IN CD JJ NNP NNS IN DT JJ NN IN DT JJ NN CC VBD DT NN VBN IN DT JJ JJ NNS IN DT NNP , NNP , NNP , CC DT NNP NNP IN CD .\nWith the advent of the Cold War , two German states were formed in 1949 : the western Federal Republic of Germany ( FRG ) and the eastern German Democratic Republic ( GDR ) .\tIN DT NN IN DT NNP NNP , CD JJ NNS VBD VBN IN CD IN DT JJ NNP NNP IN NNP LRB NNP RRB CC DT JJ JJ NNP NNP LRB NNP RRB .\nThe democratic FRG embedded itself in key Western economic and security organizations , the EC , which became the EU , and NATO , while the Communist GDR was on the front line of the Soviet-led Warsaw Pact .\tDT JJ NNP VBD PRP IN JJ JJ JJ CC NN NNS , DT NNP , WDT VBD DT NNP , CC NNP , IN DT NNP NNP VBD IN DT JJ NN IN DT JJ NNP NNP .\nThe decline of the USSR and the end of the Cold War allowed for German unification in 1990 .\tDT NN IN DT NNP CC DT NN IN DT NNP NNP VBD IN JJ NN IN CD .\nSince then , Germany has expended considerable funds to bring Eastern productivity and wages up to Western standards .\tIN RB , NNP VBZ VBN JJ NNS TO VB NNP NN CC NNS IN TO JJ NNS .\nIn January 1999 , Germany and 10 other EU countries introduced a common European exchange currency , the euro .\tIN NNP CD , NNP CC CD JJ NNP NNS VBD DT JJ JJ NN NN , DT NN .\nIn January 2011 , Germany assumed a nonpermanent seat on the UN Security Council for the 2011 - 12 term .\tIN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD : CD NN .\nSlovakia has made significant economic reforms since its separation from the Czech Republic in 1993 .\tNNP VBZ VBN JJ JJ NNS IN PRP$ NN IN DT JJ NNP IN CD .\nReforms to the taxation , healthcare , pension , and social welfare systems helped Slovakia consolidate its budget and get on track to join the EU in 2004 and to adopt the euro in January 2009 .\tNNS TO DT NN , NN , NN , CC JJ NN NNS VBD NNP VB PRP$ NN CC VB IN NN TO VB DT NNP IN CD CC TO VB DT NN IN NNP CD .\nMajor privatizations are nearly complete , the banking sector is almost entirely in foreign hands , and the government has helped facilitate a foreign investment boom with business friendly policies .\tNNP NNS VBP RB JJ , DT NN NN VBZ RB RB IN JJ NNS , CC DT NN VBZ VBN VB DT JJ NN NN IN NN JJ NNS .\nSlovakia 's economic growth exceeded expectations in 2001 - 8 despite a general European slowdown .\tNNP POS JJ NN VBD NNS IN CD : CD IN DT JJ JJ NN .\nUnemployment , at an unacceptable 18 % in 2003 - 4 , dropped to 7.7 % in 2008 but remains the economy 's Achilles heel .\tNN , IN DT JJ CD NN IN CD : CD , VBD TO CD NN IN CD CC VBZ DT NN POS NNP NN .\nForeign direct investment ( FDI ) accounted for much of the growth until 2008 .\tJJ JJ NN LRB NNP RRB VBD IN NN IN DT NN IN CD .\nCheap and skilled labor , low taxes , a 19 % flat tax for corporations and individuals , no dividend taxes , a relatively liberal labor code and a favorable geographical location are Slovakia 's main advantages for foreign investors .\tJJ CC JJ NN , JJ NNS , DT CD NN JJ NN IN NNS CC NNS , DT NN NNS , DT RB JJ NN NN CC DT JJ JJ NN VBP NNP POS JJ NNS IN JJ NNS .\nForeign investment in the automotive and electronic sectors has been especially strong .\tJJ NN IN DT JJ CC JJ NNS VBZ VBN RB JJ .\nTo maintain a stable operating environment for investors , the European Bank for Reconstruction and Development advised the Slovak government to refrain from intervening in important sectors of the economy .\tTO VB DT JJ NN NN IN NNS , DT NNP NNP IN NNP CC NNP VBD DT JJ NN TO VB IN VBG IN JJ NNS IN DT NN .\nHowever , Bratislava 's approach to mitigating the economic slowdown has included substantial government intervention and the option to nationalize strategic companies .\tRB , NNP POS NN TO VBG DT JJ NN VBZ VBN JJ NN NN CC DT NN TO VB JJ NNS .\nRADICOVA 's government , in power since July 2010 , has allowed the budget deficit to rise slightly , to 7.9 % of GDP in 2010 .\tNNP POS NN , IN NN IN NNP CD , VBZ VBN DT NN NN TO VB RB , TO CD NN IN NN IN CD .\nGDP fell nearly 5 % in 2009 before gaining back 4 % in 2010 , and unemployment rose above 12 % in 2010 , as the global recession impacted many segments of the economy .\tNN VBD RB CD NN IN CD IN VBG RB CD NN IN CD , CC NN VBD IN CD NN IN CD , IN DT JJ NN VBD JJ NNS IN DT NN .\nON A SUMMER DAY , when the great heat induced a general thirst among the beasts , a Lion and a Boar came at the same moment to a small well to drink .\tIN DT NN NN , WRB DT JJ NN VBD DT JJ NN IN DT NNS , DT NN CC DT NN VBD IN DT JJ NN TO DT JJ NN TO VB .\nThey fiercely disputed which of them should drink first , and were soon engaged in the agonies of a mortal combat .\tPRP RB VBD WDT IN PRP MD VB JJ , CC VBD RB VBN IN DT NNS IN DT JJ NN .\nWhen they stopped suddenly to catch their breath for a fiercer renewal of the fight , they saw some Vultures waiting in the distance to feast on the one that should fall first .\tWRB PRP VBD RB TO VB PRP$ NN IN DT NN NN IN DT NN , PRP VBD DT NNS VBG IN DT NN TO VB IN DT CD WDT MD VB RB .\nThey at once made up their quarrel , saying , ' It is better for us to make friends , than to become the food of Crows or Vultures . '\tPRP IN RB VBN RP PRP$ NN , VBG , `` PRP VBZ JJR IN PRP TO VB NNS , IN TO VB DT NN IN NNS CC NNS . ``\nA Lion had come to the end of his days and lay sick unto death at the mouth of his cave , gasping for breath .\tDT NN VBD VBN TO DT NN IN PRP$ NNS CC VB JJ JJ NN IN DT NN IN PRP$ NN , VBG IN NN .\nThe animals , his subjects , came round him and drew nearer as he grew more and more helpless .\tDT NNS , PRP$ NNS , VBD IN PRP CC VBD RBR IN PRP VBD RBR CC RBR JJ .\nWhen they saw him on the point of death they thought to themselves : ' Now is the time to pay off old grudges . '\tWRB PRP VBD PRP IN DT NN IN NN PRP VBD TO PRP : `` RB VBZ DT NN TO VB RP JJ NNS . ``\nSo the Boar came up and drove at him with his tusks ; then a Bull gored him with his horns ; still the Lion lay helpless before them : so the Ass , feeling quite safe from danger , came up , and turning his tail to the Lion kicked up his heels into his face .\tIN DT NN VBD RB CC VBD IN PRP IN PRP$ NNS ; RB DT NNP VBD PRP IN PRP$ NNS ; RB DT NNP VBD JJ IN PRP IN IN DT NN , VBG RB JJ IN NN , VBD RP , CC VBG PRP$ NN TO DT NNP VBD RP PRP$ NNS IN PRP$ NN .\n' This is a double death , ' growled the Lion .\t`` DT VBZ DT JJ NN , `` VBD DT NN .\nOnly cowards insult dying majesty .\tRB NNS VBP JJ NN .\nYou should never marry a tennis player , because to them love means nothing\tPRP MD RB VB DT NN NN , IN TO PRP NN VBZ DT\nLawyers and computers have both been proliferating since 1970 .\tNNS CC NNS VBP DT VBN VBG IN CD .\nUnfortunately , lawyers , unlike computers , have not gotten twice as smart and half as expensive every 18 months .\tRB , NNS , IN NNS , VBP RB VBN RB IN JJ CC NN IN JJ DT CD NNS .\nThe radiation belts surrounding the earth were discovered almost simultaneously by VanAllen and another scientist named Fan .\tDT NN VBZ VBG DT NN VBD VBN RB RB IN NNP CC DT NN VBN NNP .\nVanAllen published first , or else the earth would have a Fan Belt .\tNNP VBD RB , CC RB DT NN MD VB DT NNP NNP .\nChinese President Hu says he would like to see his country return to stronger ties with Japan .\tJJ NNP NNP VBZ PRP MD VB TO VB PRP$ NN NN TO JJR NNS IN NNP .\nMr. Hu made the comments Tuesday during a meeting with Ichiro Ozawa , the leader of Japan 's main opposition party .\tNNP NNP VBD DT NNS NNP IN DT NN IN NNP NNP , DT NN IN NNP POS JJ NN NN .\nThe two men met as Ozawa visited Beijing in an effort to improve relations between the two countries .\tDT CD NNS VBD IN NNP VBD NNP IN DT NN TO VB NNS IN DT CD NNS .\nOzawa was invited to Beijing by the Chinese government .\tNNP VBD VBN TO NNP IN DT JJ NN .\nBefore leaving Tokyo Monday , he said it is important for Japan and China to develop friendly relations .\tIN VBG NNP NNP , PRP VBD PRP VBZ JJ IN NNP CC NNP TO VB JJ NNS .\nThe two countries ' leaders have not met face-to-face since 2001 .\tDT CD NNS POS NNS VBP RB VBN RB IN CD .\nBeijing has objected to Japanese Prime Minister Junichiro Koizumi 's repeated visits to a Tokyo shrine that honors war dead , including war criminals from World War Two .\tNNP VBZ VBN TO JJ NNP NNP NNP NNP POS JJ NNS TO DT NNP NN WDT VBZ NN NN , VBG NN NNS IN NNP NNP CD .\nSino-Japanese relations also have been strained by territorial disputes , including access to natural gas deposits in the East China Sea .\tJJ NNS RB VBP VBN VBN IN JJ NNS , VBG NN TO JJ NN NNS IN DT NNP NNP NNP .\nAn author and former aide to President Bush 's father has revealed a number of audiotapes he secretly recorded of the current president for more than a year leading up to Mr. Bush 's nomination five years ago .\tDT NN CC JJ NN TO NNP NNP POS NN VBZ VBN DT NN IN NNS PRP RB VBD IN DT JJ NN IN JJR IN DT NN VBG RP TO NNP NNP POS NN CD NNS RB .\nDoug Wead told The New York Times in a story published Sunday that he made the recordings of his friend , who was then governor of Texas , because he viewed Mr. Bush as a historic figure .\tNNP NNP VBD DT NNP NNP NNP IN DT NN VBN NNP IN PRP VBD DT NNS IN PRP$ NN , WP VBD RB NN IN NNP , IN PRP VBD NNP NNP IN DT JJ NN .\nIn some conversations Mr. Wead played for a reporter , the future president expresses concern about gaining support of conservative Christian leaders , and discusses several opponents , including Democratic Vice President Al Gore .\tIN DT NNS NNP NNP VBD IN DT NN , DT NN NN VBZ NN IN VBG NN IN JJ JJ NNS , CC VBZ JJ NNS , VBG JJ NNP NNP NNP NNP .\nAt one point , Mr. Bush calls the man he would defeat in a close contest in 2000 ' pathologically a liar . '\tIN CD NN , NNP NNP VBZ DT NN PRP MD VB IN DT JJ NN IN CD `` RB DT NN . ``\nMr. Bush complained repeatedly about the news media , which he accused of a ' campaign ' against him .\tNNP NNP VBD RB IN DT NN NNS , WDT PRP VBD IN DT `` NN `` IN PRP .\nAustralia 's cricket team has a 179-run lead over India after the second day of their first test match in Melbourne .\tNNP POS NN NN VBZ DT JJ NN IN NNP IN DT JJ NN IN PRP$ JJ NN NN IN NNP .\nThe hosts started the day Thursday at 337-9 and were soon all out for 343 .\tDT NNS VBD DT NN NNP IN CD CC VBD RB DT RP IN CD .\nBut Australian bowlers Stuart Clark and Brett Lee made sure India was not able to get its offense going , with both men taking four wickets .\tCC JJ NNS NNP NNP CC NNP NNP VBD JJ NNP VBD RB JJ TO VB PRP$ NN VBG , IN DT NNS VBG CD NNS .\nClark ( Apr-28 ) took two wickets from three balls either side of the tea break .\tNNP LRB CD RRB VBD CD NNS IN CD NNS CC NN IN DT NN NN .\nLee ( Apr-46 ) knocked out India 's lower order on the rapidly deteriorating Melbourne Cricket Ground pitch .\tNNP LRB CD RRB VBD RP NNP POS JJR NN IN DT RB VBG NNP NNP NNP NN .\nThe visitors managed only 196 all out in their first innings .\tDT NNS VBD RB CD DT RP IN PRP$ JJ NNS .\nAustralia then scored 32 without loss in its second innings .\tNNP RB VBD CD IN NN IN PRP$ JJ NN .\nThis is the first of four tests between the two countries .\tDT VBZ DT NN IN CD NNS IN DT CD NNS .\nAustralia and India will also play a triangular series that also features Sri Lanka beginning February 3rd .\tNNP CC NNP MD RB VB DT JJ NN WDT RB VBZ NNP NNP VBG NNP CD .\nPolice in Washington briefly closed the landmark Washington Monument Friday because of a bomb threat .\tNNS IN NNP RB VBD DT NN NNP NNP NNP IN IN DT NN NN .\nAuthorities evacuated the monument and the surrounding area after the threat was phoned in to Washington police .\tNNS VBD DT NN CC DT VBG NN IN DT NN VBD VBN IN TO NNP NN .\nAn official with the National Park Police declined in a television interview to elaborate on the threat to the 170-meter tall monument , which is a popular tourist attraction on the National Mall near the White House .\tDT NN IN DT NNP NNP NNP VBD IN DT NN NN TO VB IN DT NN TO DT JJ JJ NN , WDT VBZ DT JJ NN NN IN DT NNP NNP IN DT NNP NNP .\nSri Lanka 's government is denying claims by Tamil Tiger rebels that it is using tsunami relief money to buy weapons and obstructing aid deliveries to areas under rebel control .\tNNP NNP POS NN VBZ VBG NNS IN NNP NNP NNS IN PRP VBZ VBG NN NN NN TO VB NNS CC VBG NN NNS TO NNS IN NN NN .\nDefense Ministry spokesman Brigadier Daya Ratnayke said Sunday , the government uses only its annual budget for defense spending .\tNNP NNP NN NNP NNP NNP VBD NNP , DT NN VBZ RB PRP$ JJ NN IN NN NN .\nThe Sri Lankan official also insisted the government is taking extensive measures to ensure that rebel-held areas are provided with a fair share of assistance .\tDT NNP NNP NN RB VBD DT NN VBZ VBG JJ NNS TO VB IN JJ NNS VBP VBN IN DT JJ NN IN NN .\nA report on the pro-rebel Tamilnet web site said rebel leader Velupillai Prabhakaran raised the issues during a meeting Saturday with Norway 's Foreign Minister Jan Petersen in the rebel stronghold , Kilinochchi .\tDT NN IN DT JJ NNP NN NN VBD JJ NN NNP NNP VBD DT NNS IN DT NN NNP IN NNP POS NNP NNP NNP NNP IN DT NN NN , NNP .\nMr. Petersen is in Sri Lanka to try to revive peace efforts between the rebels and government , and to assess the needs of tsunami-hit areas .\tNNP NNP VBZ IN NNP NNP TO VB TO VB NN NNS IN DT NNS CC NN , CC TO VB DT NNS IN JJ NNS .\nThe hunter shot by Vice President Dick Cheney says he is ' deeply sorry ' for all the trouble the accident caused his friend .\tDT NN VBN IN NNP NNP NNP NNP VBZ PRP VBZ `` RB JJ `` IN PDT DT NN DT NN VBD PRP$ NN .\nHarry Whittington spoke Friday as he was leaving the Texas hospital that treated him after Mr. Cheney sprayed him with bird shot Saturday .\tNNP NNP VBD NNP IN PRP VBD VBG DT NNP NN WDT VBD PRP IN NNP NNP VBD PRP IN NN NN NNP .\nAlthough his face was heavily bruised , the 78-year-old lawyer appeared in good health , despite having suffered a minor heart attack Tuesday .\tIN PRP$ NN VBD RB VBN , DT JJ NN VBD IN JJ NN , IN VBG VBN DT JJ NN NN NNP .\nMr. Cheney today acknowledged the difficulties and media scrutiny the incident has caused .\tNNP NNP NN VBD DT NNS CC NNS NN DT NN VBZ VBN .\nSpeaking in Wyoming , he said it had been a ' very long week ' and was grateful that his friend is doing well .\tVBG IN NNP , PRP VBD PRP VBD VBN DT `` RB JJ NN `` CC VBD JJ IN PRP$ NN VBZ VBG RB .\nThe vice president on Wednesday took responsibility for the shooting .\tDT NN NN IN NNP VBD NN IN DT NN .\nThe owner of the ranch where it occurred had initially blamed Whittington .\tDT NN IN DT NN WRB PRP VBD VBD RB VBN NNP .\nEgyptian officials say Somali pirates have released an Egyptian cargo ship and its 28-member crew after more than two months in captivity .\tJJ NNS VBP JJ NNS VBP VBN DT JJ NN NN CC PRP$ JJ NN IN JJR IN CD NNS IN NN .\nThe officials say the cargo ship Blue Star was released Thursday following negotiations with the captors .\tDT NNS VBP DT NN NN NNP NNP VBD VBN NNP VBG NNS IN DT NNS .\nIt is not clear whether a ransom was paid .\tPRP VBZ RB JJ IN DT NN VBD VBN .\nThe officials say the ship was seized on New Year 's Day by 15 pirates as it passed by the coast of Somalia .\tDT NNS VBP DT NN VBD VBN IN NNP NNP POS NN IN CD NNS IN PRP VBD IN DT NN IN NNP .\nThe vessel carried a cargo of 6,000 tons of fertilizer .\tDT NN VBD DT NN IN CD NNS IN NN .\nSomali pirates hijacked more than 40 ships in 2008 , sometimes getting millions of dollars in ransom for their release .\tJJ VBZ VBN JJR IN CD NNS IN CD , RB VBG NNS IN NNS IN NN IN PRP$ NN .\nThe attacks have prompted a number of countries , including the United States and China , to begin conducting naval patrols near Somalia .\tDT NNS VBP VBN DT NN IN NNS , VBG DT NNP NNPS CC NNP , TO VB VBG JJ NNS IN NNP .\nThe ships have stopped several pirate attacks , most recently on Tuesday , when the crew of a German frigate arrested nine pirates who had fired on a cargo ship .\tDT NNS VBP VBN JJ NN NNS , RBS RB IN NNP , WRB DT NN IN DT JJ NN VBN CD NNS WP VBD VBN IN DT NN NN .\nRenowned Egyptian film maker Youssef Chahine , whose films reached beyond the Arab world , died early Sunday after several weeks in a coma .\tVBN JJ NN NN NNP NNP , WP$ NNS VBD IN DT JJ NN , VBD JJ NNP IN JJ NNS IN DT NN .\nHe was 82 .\tPRP VBD CD .\nChahine was born to a Lebanese Christian family in the port city of Alexandria , which was at that time a center of cosmopolitan life in the Mediterranean with its large foreign communities .\tNNP VBD VBN TO DT JJ JJ NN IN DT JJ NN IN NNP , WDT VBD IN DT NN DT NN IN JJ NN IN DT NNP IN PRP$ JJ JJ NNS .\nThroughout his more than 40 films , he tried to recapture the spirit of multiculturalism and tolerance that he grew up with there , because he saw it threatened by fundamentalism , dictatorship and imperialism .\tIN PRP$ JJR IN CD NNS , PRP VBD TO VB DT NN IN NN CC NN IN PRP VBD RP IN RB , IN PRP VBD PRP VBD IN NN , NN CC NN .\nChahine 's films were popular internationally - particularly in France .\tNNP POS NNS VBD JJ RB : RB IN NNP .\nIn 1997 he received a lifetime achievement award at the Cannes film festival .\tIN CD PRP VBD DT NN NN NN IN DT NNP NN NN .\nHis final film ' Chaos ' was released earlier this year .\tPRP$ JJ NN `` NNPS `` VBD VBN RBR DT NN .\nVenezuelan President Hugo Chavez used his speech before the United Nations World Summit Thursday to lash out at the United States , saying the world body should move out of New York because of the war in Iraq .\tJJ NNP NNP NNP VBD PRP$ NN IN DT NNP NNP NNP NNP NNP TO VB RP IN DT NNP NNPS , VBG DT NN NN MD VB IN IN NNP NNP IN IN DT NN IN NNP .\nPresident Chavez told the leaders gathered for the summit Thursday that there were never weapons of mass destruction in Iraq but that the United States still bombed the country .\tNNP NNP VBD DT NNS VBD IN DT NN NNP IN EX VBD RB NNS IN NN NN IN NNP CC IN DT NNP NNPS RB VBD DT NN .\nHe accused the United States of failing to respect the resolutions of the United Nations , and later characterized the United States as a ' terrorist state ' during a press conference .\tPRP VBD DT NNP NNPS IN VBG TO VB DT NNS IN DT NNP NNPS , CC RB VBD DT NNP NNPS IN DT `` JJ NN `` IN DT NN NN .\nThe United States has had tense relations with the Chavez government .\tDT NNP NNP VBZ VBN JJ NNS IN DT NNP NN .\nThe Venezuelan leader has repeatedly accused the United States of trying to topple his government , a charge Washington has denied .\tDT JJ NN VBZ RB VBN DT NNP NNPS IN VBG TO VB PRP$ NN , DT NN NNP VBZ VBN .\nIran has rejected a request from European nations to briefly delay their submission of proposals intended to resolve a dispute over Tehran 's nuclear program .\tNNP VBZ VBN DT NN IN JJ NNS TO RB VB PRP$ NN IN NNS VBN TO VB DT NN IN NNP POS JJ NN .\nIran 's nuclear negotiator said Saturday that the European Union had requested extending Monday 's deadline until the following Sunday , but Iran rejects any delay .\tNNP POS JJ NN VBD NNP IN DT NNP NNP VBD VBN VBG NNP POS NN IN DT VBG NNP , CC NNP VBZ DT NN .\nHe also expressed concern that the proposals , a package of economic and political incentives , would not meet Iran 's basic expectations .\tPRP RB VBD NN IN DT NNS , DT NN IN JJ CC JJ NNS , MD RB VB NNP POS JJ NNS .\nThe Europeans want Iran to agree to a permanent suspension of its uranium enrichment program , which can be used for both generating electricity , but in certain forms can fuel nuclear weapons .\tDT NNS VBP NNP TO VB TO DT JJ NN IN PRP$ NN NN NN , WDT MD VB VBN IN DT VBG NN , CC IN JJ NNS MD VB JJ NNS .\nIran says its nuclear program is for peaceful purposes , but the United States accuses Tehran of trying secretly to develop nuclear weapons .\tNNP VBZ PRP$ JJ NN VBZ IN JJ NNS , CC DT NNP NNPS VBZ NNP IN VBG RB TO VB JJ NNS .\nAlgerian officials say the All Africa Games are continuing as planned in Algiers despite a suicide bomb attack near the capital on Wednesday .\tJJ NNS VBP DT NNP NNP NNPS VBP VBG IN VBN IN NNP IN DT NN NN NN IN DT NN IN NNP .\nOfficials say security would be stepped up around the competition sites .\tNNS VBP NN MD VB VBN RP IN DT NN NNS .\nBefore the opening ceremony Wednesday , a suicide bomber killed at least eight soldiers and wounded 35 others in Lakhdaria , a village east of the capital , Algiers .\tIN DT NN NN NNP , DT NN NN VBD IN JJS CD NNS CC VBD CD NNS IN NNP , DT NN NN IN DT NN , NNP .\nThe al-Qaida Organization in the Islamic Maghreb , formerly known as the Salafist Group for Preaching and Combat has claimed responsibility for the bombing .\tDT NNP NNP IN DT NNP NNP , RB VBN IN DT NNP NNP IN NNP CC NNP VBZ VBN NN IN DT NN .\nThe group also claimed responsibility for a number of attacks that have rocked the region , including two car bombings in April that killed 33 people .\tDT NN RB VBD NN IN DT NN IN NNS WDT VBP VBN DT NN , VBG CD NN NNS IN NNP WDT VBD CD NNS .\nThe All Africa Games are a regional multi-sport event held every four years .\tDT NNP NNP NNPS VBP DT JJ JJ NN VBD DT CD NNS .\nCompeting athletes must be from the African continent .\tVBG NNS MD VB IN DT JJ NN .\nThe competition is set to last until July 23 .\tDT NN VBZ VBN TO VB IN NNP CD .\nAuthorities in Indian Kashmir say suspected Islamic militants have attacked a remote police station , triggering a gunbattle that left two militants , one policeman and one civilian dead .\tNNS IN JJ NNP VBP JJ JJ NNS VBP VBN DT JJ NN NN , VBG DT NN WDT VBD CD NNS , CD NN CC CD JJ NN .\nPolice say the ambush occurred late Sunday in southern Poonch province near the Pakistani border .\tNNS VBP DT NN VBD JJ NNP IN JJ NNP NN IN DT JJ NN .\nThey say the rebels hurled grenades and used machine guns in the attack , which led to a three-hour shoot-out .\tPRP VBP DT NNS VBD NNS CC VBN NN NNS IN DT NN , WDT VBD TO DT JJ NN .\nKashmiri militants continue their attacks against government targets , as India and Pakistan inch forward in their 18-month peace process aimed at resolving all their disputes , including Kashmir .\tJJ NNS VBP PRP$ NNS IN NN NNS , IN NNP CC NNP NN RB IN PRP$ JJ NN NN VBN IN VBG DT PRP$ NNS , VBG NNP .\nMilitant groups have been fighting for Kashmir 's independence or its merger with Pakistan since 1989 .\tJJ NNS VBP VBN VBG IN NNP POS NN CC PRP$ NN IN NNP IN CD .\nThe insurgency has claimed tens of thousand of lives .\tDT NN VBZ VBN NNS IN CD IN NNS .\nU.S. President George Bush and French President Nicolas Sarkozy have reaffirmed their joint support for a peaceful Lebanon , and say it is important for the country to have diplomatic ties with Syria .\tNNP NNP NNP NNP CC JJ NNP NNP NNP VBP VBN PRP$ JJ NN IN DT JJ NNP , CC VB PRP VBZ JJ IN DT NN TO VB JJ NNS IN NNP .\nThe two leaders issued a joint statement following talks in Paris Saturday calling for Syria and Lebanon to work towards a relationship based on ' respect , equality , security and sovereignty . '\tDT CD NNS VBD DT JJ NN VBG NNS IN NNP NNP VBG IN NNP CC NNP TO VB IN DT NN VBN IN `` NN , NN , NN CC NN . ``\nThe French and American presidents have held different positions in regard to Syria .\tDT JJ CC JJ NNS VBP VBN JJ NNS IN NN TO NNP .\nMr. Bush has repeatedly accused Damascus of supporting terrorism and fomenting violence in Lebanon .\tNNP NNP VBZ RB VBN NNP IN VBG NN CC VBG NN IN NNP .\nBut , Mr. Sarkozy has shown signs of warming relations with Syria , pledging to resume diplomatic ties that were suspended last year .\tCC , NNP NNP VBZ VBN NNS IN VBG NNS IN NNP , VBG TO VB JJ NNS WDT VBD VBN JJ NN .\nMr. Sarkozy has also invited President Bashar al-Assad to attend France 's ' Bastille Day ' celebrations on July 14 , and plans to include Syria in a new Mediterranean Union .\tNNP NNP VBZ RB VBN NNP NNP NNP TO VB NNP POS `` NNP NNP `` NNS IN NNP CD , CC VBZ TO VB NNP IN DT JJ NNP NNP .\nIran 's supreme leader Ayatollah Ali Khamenei has formally endorsed Mahmoud Ahmadinejad as the country 's next president .\tNNP POS JJ NN NNP NNP NNP VBZ RB VBN NNP NNP IN DT NN POS JJ NN .\nThe conservative Mr. Ahmadinejad , who won the June presidential elections , succeeds reformist President Mohammad Khatami , whose term ends Wednesday .\tDT JJ NNP NNP , WP VBD DT NNP JJ NNS , VBZ NN NNP NNP NNP , WP$ NN VBZ NNP .\nThe new president will be sworn-in before parliament Saturday .\tDT JJ NN MD VB JJ IN NN NNP .\nHe takes office at a time when Iran is under mounting western pressure over its nuclear ambitions .\tPRP VBZ NN IN DT NN WRB NNP VBZ IN VBG JJ NN IN PRP$ JJ NNS .\nMr. Ahmadinejad , a former mayor of Tehran , says ' access to nuclear technology is Iran 's inalienable right . '\tNNP NNP , DT JJ NN IN NNP , VBZ `` NN TO JJ NN VBZ NNP POS JJ NN . ``\nThe 49-year-old Mr. Ahmadinejad is also a former member of the hard-line Revolutionary Guard and a former instructor of the Basij religious vigilantes .\tDT JJ NNP NNP VBZ RB DT JJ NN IN DT JJ NNP NNP CC DT JJ NN IN DT NNP JJ NNS .\nA powerful storm has smashed apart Russian oil tanker anchored between the Black Sea and the Sea of Azov , creating what some experts are calling an environmental catastrophe .\tDT JJ NN VBZ VBN RB JJ NN NN VBD IN DT NNP NNP CC DT NNP IN NNP , VBG WP DT NNS VBP VBG DT JJ NN .\nAs much as 2,000 metric tons of fuel oil spilled into the Kerch Strait off Ukraine .\tRB RB IN CD JJ NNS IN NN NN VBD IN DT NNP NNP IN NNP .\nSome officials believe it could take several years to clean up .\tDT NNS VBP PRP MD VB JJ NNS TO VB RP .\nThe Volganeft-139 was anchored in the strait several kilometers from land to ride out the storm .\tDT NNP VBD VBN IN DT NN JJ NNS IN NN TO VB RP DT NN .\nHuge waves split the tanker in two .\tJJ NNS VBD DT NN IN CD .\nThirteen crewmembers were rescued .\tCD NNS VBD VBN .\nThe storm also sank four other cargo ships - three of which were carrying sulfur .\tDT NN RB VBD CD JJ NN NNS IN CD IN WDT VBD VBG NN .\nAt least eight people from the other ships are still missing .\tIN JJS CD NNS IN DT JJ NNS VBP RB VBG .\nThe Kerch Strait is a major migration route for birds and is also home to porpoises .\tDT NNP NNP VBZ DT JJ NN NN IN NNS CC VBZ RB NN TO NNS .\nProsecutors have opened an investigation into possible criminal charges .\tNNS VBP VBN DT NN IN JJ JJ NNS .\nFighting between suspected Taleban rebels and U.S.-coalition and Afghan troops has left seven insurgents dead , while a rebel attack on a medical clinic left a doctor and his six colleagues dead .\tVBG IN JJ NNP NNS CC JJ CC JJ NNS VBZ VBN CD NNS JJ , IN DT NN NN IN DT JJ NN VBD DT NN CC PRP$ CD NNS JJ .\nPolice say the attack on the independently run clinic occurred in Khost province , bordering Pakistan .\tNNS VBP DT NN IN DT JJ NN NN VBD IN NNP NN , VBG NNP .\nSuspected Taleban rebels broke into the building and shot the seven victims late Tuesday night .\tVBN NNP NNS VBD IN DT NN CC VBD DT CD NNS RB NNP NN .\nAlso on Tuesday , officials say seven insurgents were killed in a clash that broke out on the border between the southern provinces of Kandahar and Uruzgan after the rebels attacked a joint Afghan-coalition patrol .\tRB IN NNP , NNS VBP CD NNS VBD VBN IN DT NN WDT VBD RP IN DT NN IN DT JJ NNS IN NNP CC NNP IN DT NNS VBD DT JJ NN NN .\nThe officials say four Afghan soldiers were wounded in the fighting , which ended with the insurgents fleeing into nearby mountains , carrying their wounded .\tDT NNS VBP CD JJ NNS VBD VBN IN DT NN , WDT VBD IN DT NNS VBG IN JJ NNS , VBG PRP$ VBN .\nSeveral rebels were captured .\tJJ NNS VBD VBN .\nPresident Bush has congratulated Chile 's first female president-elect , Michelle Bachelet , on her win in last Sunday 's runoff election .\tNNP NNP VBZ VBN NNP POS JJ JJ NN , NNP NNP , IN PRP$ NN IN JJ NNP POS NN NN .\nA White House spokesman said President Bush called Ms. Bachelet Thursday and told her he looks forward to working with her .\tDT NNP NNP NN VBD NNP NNP VBD NNP NNP NNP CC VBD PRP PRP VBZ RB TO VBG IN PRP .\nThe spokesman said they talked about the importance of working together to promote good governance in the region .\tDT NN VBD PRP VBD IN DT NN IN VBG RB TO VB JJ NN IN DT NN .\nMs. Bachelet , a left-leaning candidate , took 53 percent of the vote in Sunday 's runoff election .\tNNP NNP , DT JJ NN , VBD CD NN IN DT NN IN NNP POS NN NN .\nHer opponent was billionaire businessman Sebastian Pinera , the candidate of a rightist alliance .\tPRP$ NN VBD NN NN NNP NNP , DT NN IN DT JJ NN .\nThe socialist Ms. Bachelet brings to her position her experience as a physician , single mother and former political dissident .\tDT JJ NNP NNP VBZ TO PRP$ NN PRP$ NN IN DT NN , JJ NN CC JJ JJ NN .\nShe has promised to improve health care and education , and has said she will divide her cabinet appointments equally between men and women .\tPRP VBZ VBN TO VB NN NN CC NN , CC VBZ VBN PRP MD VB PRP$ NN NNS RB IN NNS CC NNS .\nIraqi lawmakers say the nation 's parliament voted Saturday to extend its current session until the end of July .\tJJ NNS VBP DT NN POS NN VBD NNP TO VB PRP$ JJ NN IN DT NN IN NNP .\nThe session was due to close at the end of this month .\tDT NN VBD JJ TO VB IN DT NN IN DT NN .\nLawmakers are under pressure to pass key measures aimed at promoting national reconciliation .\tNNS VBP IN NN TO VB JJ NNS VBN IN VBG JJ NN .\nIn a separate development , Iran 's state-run IRNA news agency reports that Iraq 's president will visit Tehran this week .\tIN DT JJ NN , NNP POS JJ NNP NN NN NNS IN NNP POS NN MD VB NNP DT NN .\nIRNA quotes Iraqi sources who say President Jalal Talabani is expected to meet with senior officials , including his Iranian counterpart , President Mahmoud Ahmadinejad .\tNNP VBZ JJ NNS WP VBP NNP NNP NNP VBZ VBN TO VB IN JJ NNS , VBG PRP$ JJ NN , NNP NNP NNP .\nPreliminary election results from the West Bank indicate the mainstream Fatah faction is leading in the first Palestinian municipal elections since 1976 despite a strong showing by the militant Islamic group Hamas .\tJJ NN NNS IN DT NNP NNP VBP DT NN NNP NN VBZ VBG IN DT JJ JJ JJ NNS IN CD IN DT JJ NN IN DT JJ NNP NN NNP .\nSome 1,50,000 eligible voters cast ballots Thursday in 26 West Bank localities .\tDT CD JJ NNS VBD NNS NNP IN CD NNP NNP NNS .\nOfficial results are expected Saturday .\tJJ NNS VBP VBN NNP .\nIn the coming months , similar elections are due to be held in stages in the rest of the Palestinian territories .\tIN DT JJ NNS , JJ NNS VBP JJ TO VB VBN IN NNS IN DT NN IN DT JJ NNS .\nThursday 's vote was seen as a test of popularity between Fatah and Hamas .\tNNP POS NN VBD VBN IN DT NN IN NN IN NNP CC NNP .\nHamas has already said it will not participate in the Palestinian presidential elections set for January 9 .\tNNP VBZ RB VBN PRP MD RB VB IN DT JJ JJ NNS VBN IN NNP CD .\nFormer Palestinian Prime Minister Mahmoud Abbas , Fatah 's candidate , leads that race .\tJJ JJ NNP NNP NNP NNP , NNP POS NN , VBZ IN NN .\nElsewhere in the West Bank , Israeli and Palestinian officials say Israeli troops killed three members of the militant Al-Aqsa Martyrs Brigades .\tRB IN DT NNP NNP , JJ CC JJ NNS VBP JJ NNS VBD CD NNS IN DT JJ NNP NNP NNP .\nSudanese officials have opened a new oil pipeline expected to raise the country 's output to at least 5,00,000 barrels of oil per day .\tJJ NNS VBP VBN DT JJ NN NN VBN TO VB DT NN POS NN TO IN JJS CD NNS IN NN IN NN .\nGovernment ministers attended a launch ceremony for the pipeline in the town of Fallouj on Monday .\tNN NNS VBD DT NN NN IN DT NN IN DT NN IN NNP IN NNP .\nThe 1,400 kilometer pipeline will carry oil from wells in Sudan 's southeast to Port Sudan on the Red Sea .\tDT CD NN NN MD VB NN IN NNS IN NNP POS NN TO NNP NNP IN DT NNP NNP .\nRevenue will be split between the northern and southern governments , which signed a wealth-sharing agreement as part of the peace deal that ended Sudan 's north-south civil war last year .\tNN MD VB VBN IN DT JJ CC JJ NNS , WDT VBD DT JJ NN IN NN IN DT NN NN WDT VBD NNP POS JJ JJ NN JJ NN .\nThe pipeline is run by Petrodar , a conglomerate owned mainly by China 's National Petroleum Corporation and Malaysia 's Petronas .\tDT NN VBZ VBN IN NNP , DT NN VBN RB IN NNP POS NNP NNP NNP CC NNP POS NNP .\nCompanies in Dubai and Sudan and another Chinese firm own smaller shares .\tNNS IN NNP CC NNP CC DT JJ NN VBZ JJR NNS .\nChina is the world 's second-largest energy consumer after the United States , and has become a major investor in Sudan as it seeks foreign sources of oil .\tNNP VBZ DT NN POS JJ NN NN IN DT NNP NNPS , CC VBZ VBN DT JJ NN IN NNP IN PRP VBZ JJ NNS IN NN .\nSecurity officials in Pakistan say shots were fired at the plane of Pakistan President Pervez Musharraf after the craft took off from a military base in Rawalpindi .\tNN NNS IN NNP VBP NNS VBD VBN IN DT NN IN NNP NNP NNP NNP IN DT NN VBD RP IN DT JJ NN IN NNP .\nThe plane was not hit , and General Musharraf landed safely in southern Pakistan , where he spoke to victims of recent floods .\tDT NN VBD RB VBN , CC NNP NNP VBD RB IN JJ NNP , WRB PRP VBD TO NNS IN JJ NNS .\nAn Army spokesman , Major General Waheed Arshad , says the government is trying to figure out who fired the shots , but insists that the president 's plane was not the intended target .\tDT NNP NN , NNP NNP NNP NNP , VBZ DT NN VBZ VBG TO VB RP WP VBD DT NNS , CC VBZ IN DT NN POS NN VBD RB DT JJ NN .\nHowever , other Pakistani officials called the incident an unsuccessful attack on the president 's plane .\tRB , JJ JJ NNS VBD DT NN DT JJ NN IN DT NN POS NN .\nOfficials say the shots were from a machine gun .\tNNS VBP DT NNS VBD IN DT NN NN .\nPolice found two anti-aircraft guns on a nearby roof .\tNNP VBD CD JJ NNS IN DT JJ NN .\nIn other news , a suicide bomb attack in northwestern Pakistan has killed at least four Pakistani soldiers in a military convoy .\tIN JJ NN , DT NN NN NN IN JJ NNP VBZ VBN IN JJS CD JJ NNS IN DT JJ NN .\nA major oil company will not sign an agreement to give majority control of its oil operations in Venezuela to the government of President Hugo Chavez .\tDT JJ NN NN MD RB VB DT NN TO VB NN NN IN PRP$ NN NNS IN NNP TO DT NN IN NNP NNP NNP .\nConocoPhillips has refused to accept Venezuela 's terms for compensation for its investments .\tNNP VBZ VBN TO VB NNP POS NNS IN NN IN PRP$ NNS .\nNews reports say ExxonMobil also will decline the deal .\tNNP NNS VBP NNP RB MD VB DT NN .\nPresident Chavez gave foreign oil companies until Tuesday to agree to give the government a 60 percent share of their operations .\tNNP NNP VBD JJ NN NNS IN NNP TO VB TO VB DT NN DT CD NN NN IN PRP$ NNS .\nThose facilities are said to be worth $ 25 billion or more , and some companies complain the compensation offered is too low .\tDT NNS VBP VBN TO VB JJ $ CD CD CC JJR , CC DT NNS VBP DT NN VBD VBZ RB JJ .\nConocoPhillips and ExxonMobil may seek arbitration or court action to resolve the dispute .\tNNP CC NNP MD VB NN CC NN NN TO VB DT NN .\nThe Wall Street Journal cites unnamed sources and says it is not yet clear how other companies will respond .\tDT NNP NNP NNP VBZ JJ NNS CC VBZ PRP VBZ RB RB JJ WRB JJ NNS MD VB .\nVenezuela has already taken over foreign companies ' assets in the telecommunications and electricity sectors .\tNNP VBZ RB VBN IN JJ NNS POS NNS IN DT NNS CC NN NNS .\nKurdish party officials in Syria say the body of a Kurdish Muslim cleric has been found three weeks after he was reported missing .\tNNP NN NNS IN NNP VBP DT NN IN DT NNP NNP NN VBZ VBN VBN CD NNS IN PRP VBD VBN VBG .\nThe Yekiti Kurdish Party says hospital officials in northeastern Syria found signs of torture on the body of Sheikh Mohammad Maashouq al-Khaznawi .\tDT NNP NNP NNP VBZ NN NNS IN JJ NNP VBD NNS IN NN IN DT NN IN NNP NNP NNP NNP .\nMr. al-Khaznawi had been missing since leaving the Islamic Studies Center in Damascus on May 10 .\tNNP NNP VBD VBN VBG IN VBG DT NNP NNP NNP IN NNP IN NNP CD .\nThe disappearance sparked a march last month by thousands of Kurds demanding to know his whereabouts .\tDT NN VBD DT NN JJ NN IN NNS IN NNS VBG TO VB PRP$ NNS .\nKurdish leaders accused Syrian officials of holding the sheikh .\tJJ NNS VBD JJ NNS IN VBG DT NN .\nAuthorities denied the charge .\tNNS VBD DT NN .\nKurdish party leaders say the cleric 's body was being transported for burial services in the town of Kameshli .\tNNP NN NNS VBP DT NN POS NN VBD VBG VBN IN JJ NNS IN DT NN IN NNP .\nProvincial officials in western Afghanistan say at least 12 people were killed Sunday in factional fighting there .\tNNP NNS IN JJ NNP VBP IN JJS CD NNS VBD VBN NNP IN JJ NN RB .\nThe officials say clashes broke out in western Herat province between two local warlords , Amanullah Khan and Arbab Basir .\tDT NNS VBP NNS VBD RP IN JJ NNP NN IN CD JJ NNS , NNP NNP CC NNP NNP .\nEarlier Sunday , NATO-led troops killed 15 suspected militants who ambushed a NATO convoy in southern Afghanistan .\tRBR NNP , JJ NNS VBD CD JJ NNS WP VBD DT NNP NN IN JJ NNP .\nThe alliance said Sunday that the troops returned fire after they were attacked in Zabul province with small arms and rocket-propelled grenades .\tDT NN VBD NNP IN DT NNS VBD NN IN PRP VBD VBN IN NNP NN IN JJ NNS CC JJ NNS .\nIt said two NATO vehicles were damaged in the attack .\tPRP VBD CD NNP NNS VBD VBN IN DT NN .\nNATO forces are encountering stiff resistance from Taleban insurgents in the south .\tNNP NNS VBP VBG JJ NN IN NNP NNS IN DT NN .\nItaly 's prime minister has confirmed that U.S. forces in Iraq opened fire on a car carrying a freed Italian hostage and her rescuers , Friday .\tNNP POS JJ NN VBZ VBN IN NNP NNS IN NNP VBD NN IN DT NN VBG DT VBN JJ NN CC PRP$ NNS , NNP .\nSilvio Berlusconi said freed journalist Giuliana Sgrena sustained a shoulder injury and an Italian agent who helped free her was killed .\tNNP NNP VBD VBN NN NNP NNP VBD DT NN NN CC DT JJ NN WP VBD VB PRP VBD VBN .\nMr. Berlusconi said he has summoned the American ambassador in Rome for an explanation of the incident .\tNNP NNP VBD PRP VBZ VBN DT JJ NN IN NNP IN DT NN IN DT NN .\nExecutives at Ms. Sgrena 's newspaper , Il Manifesto , said the shooting occurred at a coalition checkpoint as the car headed to Baghdad airport .\tNNS IN NNP NNP POS NN , NNP NNP , VBD DT NN VBD IN DT NN NN IN DT NN VBD TO NNP NN .\nA spokesman for the U.S. military in Baghdad told VOA they are looking into press reports about the incident , but had no information .\tDT NN IN DT NNP NN IN NNP VBD NNP PRP VBP VBG IN NN NNS IN DT NN , CC VBD DT NN .\nGunmen abducted Ms. Sgrena outside a Baghdad mosque on February 4 .\tNNS VBD NNP NNP IN DT NNP NN IN NNP CD .\nShe later appeared in a video appeal for Italian troops to leave Iraq .\tPRP RB VBD IN DT NN NN IN JJ NNS TO VB NNP .\nA recent Philippine military report says al Qaida-linked Muslim militants in the country have stepped-up recruiting efforts and signed on some 100 recent Muslim converts since July .\tDT JJ JJ JJ NN VBZ NNP JJ NN NNS IN DT NN VBP JJ NN NNS CC VBN IN DT CD JJ NNP NNS IN NNP .\nThe report says the Abu Sayyaf terror group has joined forces with the Rajah Solaiman Movement , a group of Filipino Christians who have converted to Islam .\tDT NN VBZ DT NNP NNP NN NN VBZ VBN NNS IN DT NNP NNP NNP , DT NN IN JJ NNPS WP VBP VBN TO NNP .\nMilitary officials say Abu Sayyaf has promised the recent converts up to $ 530 each to conduct sabotage operations in Zamboanga city on the southern island of Mindanao .\tJJ NNS VBP NNP NNP VBZ VBN DT JJ NNS IN TO $ CD DT TO VB NN NNS IN NNP NN IN DT JJ NN IN NNP .\nPhilippine security forces , assisted by U.S. intelligence , have been battling Muslim insurgents in Mindanao and other southern islands .\tJJ NN NNS , VBN IN NNP NN , VBP VBN VBG NNP NNS IN NNP CC JJ JJ NNS .\nAbu Sayyaf has been blamed for a series of kidnappings and other deadly attacks , including a ferry bombing last year that killed more than 100 people .\tNNP NNP VBZ VBN VBN IN DT NN IN NNS CC JJ JJ NNS , VBG DT NN NN JJ NN WDT VBD JJR IN CD NNS .\nA major Chinese oil company , CNOOC , has given up an $ 18.5 billion bid to take over the U.S.-based Unocal oil company .\tDT JJ JJ NN NN , NNP , VBZ VBN RP DT $ CD CD NN TO VB RP DT JJ NNP NN NN .\nIt would have been the largest-ever Chinese acquisition of a U.S. company .\tPRP MD VB VBN DT JJ JJ NN IN DT NNP NN .\nWith oil prices at record-high levels , the bid sparked opposition from members of the U.S. Congress .\tIN NN NNS IN JJ NNS , DT NN VBD NN IN NNS IN DT NNP NNP .\nSome politicians said losing control of some U.S.-owned oil assets could harm the nation 's economy and security .\tDT NNS VBD VBG NN IN DT JJ NN NNS MD VB DT NN POS NN CC NN .\nThe parent company of CNOOC is controlled by the Chinese government .\tDT NN NN IN NNP VBZ VBN IN DT JJ NN .\nA statement on the company web site said its interests are ' purely commercial ' and called the political opposition ' unjustified ' and harmful to Unocal shareholders and employees .\tDT NN IN DT NN NN NN VBD PRP$ NNS VBP `` RB JJ `` CC VBD DT JJ NN `` JJ `` CC JJ TO NNP NNS CC NNS .\nEnding CNOOC 's bid leaves Chevron as the only bidder for Unocal .\tVBG NNP POS NN VBZ NNP IN DT JJ NN IN NNP .\nMillions of residents of Harbin , one of northeast China 's largest cities , are enduring their third day without water after about 100 tons of a toxic chemical were released into a river .\tNNS IN NNS IN NNP , CD IN NN NNP POS JJS NNS , VBP VBG PRP$ JJ NN IN NN IN IN CD NNS IN DT JJ NN VBD VBN IN DT NN .\nChina 's official Xinhua news agency says that , as of early Friday , the level of chemicals in the Songhua River remained 28 times above national safety standards .\tNNP POS JJ NNP NN NN VBZ DT , IN IN JJ NNP , DT NN IN NNS IN DT NNP NNP VBD CD NNS IN JJ NN NNS .\nThursday , the leading edge of an 80-kilometer long slick of benzene reached Harbin 's municipal water inlets .\tNNP , DT VBG NN IN DT JJ JJ NN IN NN VBD NNP POS JJ NN NNS .\nExperts say it will be sometime Saturday before the river flows clean again in Harbin .\tNNS VBP PRP MD VB RB NNP IN DT NN VBZ JJ RB IN NNP .\nAuthorities are warning people to avoid the benzene fumes rising from the river .\tNNS VBP VBG NNS TO VB DT NN VBZ VBG IN DT NN .\nMeanwhile , Petrechemical Corporation , a subsidiary of China 's largest oil producer , China National Petroleum Corporation has apologized for the chemical plant explosion November 13 that spilled the cancer-causing pollutants upstream in Jilin City .\tRB , NNP NNP , DT NN IN NNP POS JJS NN NN , NNP NNP NNP NNP VBZ VBN IN DT NN NN NN NNP CD WDT VBD DT JJ NNS NN IN NNP NNP .\nA powerful typhoon that drenched the Philippines earlier this week is bearing down on Taiwan Friday , forcing the cancellation of flights and the closure of schools and offices .\tDT JJ NN WDT VBD DT NNPS RBR DT NN VBZ VBG RP IN NNP NNP , VBG DT NN IN NNS CC DT NN IN NNS CC NNS .\nForecasters at Taiwan 's Central Weather Bureau say that by late Friday afternoon local time , Typhoon Sepat was located about 220 kilometers southeast of coastal Taitung county , with gusts of wind up to 227 kilometers per hour .\tNNS IN NNP POS NNP NNP NNP VBP IN IN JJ NNP NN JJ NN , NNP NNP VBD VBN IN CD NNS NN IN JJ NNP NN , IN NNS IN NN IN TO CD NNS IN NN .\nSepat is moving northwest at a speed of around 20 kilometers per hour .\tNNP VBZ VBG RB IN DT NN IN IN CD NNS IN NN .\nForecasters expect it to begin plowing over the center of the island on Friday evening and then move on to lash China 's southeastern coast on Saturday .\tNNS VBP PRP TO VB VBG IN DT NN IN DT NN IN NNP NN CC RB VB IN TO VB NNP POS JJ NN IN NNP .\nEarlier this week Typhoon Sepat exacerbated monsoon rains and flooded parts of the Philippine capital , Manila .\tRBR DT NN NNP NNP VBD NN NNS CC VBD NNS IN DT JJ NN , NNP .\nNo deaths were reported .\tDT NNS VBD VBN .\nFlooding continued in Manila Friday , forcing the closure of offices and schools .\tVBG VBN IN NNP NNP , VBG DT NN IN NNS CC NNS .\nIraq 's prime minister-designate has completed his list of proposed cabinet members after three months of political negotiations .\tNNP POS JJ NN VBZ VBN PRP$ NN IN VBN NN NNS IN CD NNS IN JJ NNS .\nIbrahim al-Jaafari presented the list to President Jalal Talabani Tuesday .\tNNP NNP VBD DT NN TO NNP NNP NNP NNP .\nThe three-member presidential council must approve the list , before it can go to the 275-member national assembly for a vote of approval .\tDT JJ JJ NN MD VB DT NN , IN PRP MD VB TO DT JJ JJ NN IN DT NN IN NN .\nIraqi officials and state television report that the country 's majority Shi'ites will get 17 cabinet seats , while the Kurds , who came second in the elections , will get eight .\tJJ NNS CC NN NN NN IN DT NN POS NN NNS MD VB CD NN NNS , IN DT NNPS , WP VBD RB IN DT NNS , MD VB CD .\nThe Sunnis , who mostly boycotted the vote , will get only six seats .\tDT NNP , WP RB VBD DT NN , MD VB RB CD NNS .\nAnd the tiny Christian minority will have one seat .\tCC DT JJ JJ NN MD VB CD NN .\nThe party of interim Prime Minister Iyad Allawi , which won 40 seats in the assembly , was apparently shut out of the new government .\tDT NN IN JJ NNP NNP NNP NNP , WDT VBD CD NNS IN DT NN , VBD RB VBN IN IN DT JJ NN .\nIn addition , Mr. Jaafari has named three deputy prime ministers - a Shi'ite , a Kurd and a Sunni .\tIN NN , NNP NNP VBZ VBN CD JJ JJ NNS IN DT NNP , DT NNP CC DT NNP .\nIraqi politicians are holding more talks on forming a unity government as another U.S. congressional delegation visits Baghdad to check on their progress .\tJJ NNS VBP VBG JJR NNS IN VBG DT NN NN IN DT NNP JJ NN VBZ NNP TO VB IN PRP$ NN .\nU.S. Senator John McCain met in Baghdad with officials who have been trying to form a government for the past three months .\tNNP NNP NNP NNP VBD IN NNP IN NNS WP VBP VBN VBG TO VB DT NN IN DT JJ CD NNS .\nMcCain said he is guardedly optimistic that officials can agree on a government within weeks .\tNNP VBD PRP VBZ RB JJ IN NNS MD VB IN DT NN IN NNS .\nSeparately , U.S. Ambassador to Iraq , Zalmay Khalilzad , said the country is at a defining moment .\tRB , NNP NNP TO NNP , NNP NNP , VBD DT NN VBZ IN DT JJ NN .\nHe said Iraqi leaders are struggling to form a government and bring under control the violence that grips the nation .\tPRP VBD JJ NNS VBP VBG TO VB DT NN CC VB IN NN DT NN WDT VBZ DT NN .\nIn the latest violence , a roadside bomb killed four Iraqis in Baghdad Saturday .\tIN DT JJS NN , DT NN NN VBD CD NNS IN NNP NNP .\nPolice also found 10 more bodies that showed signs of torture in the city .\tNNS RB VBD CD JJR NNS WDT VBD NNS IN NN IN DT NN .\nNorth of the capital , another roadside bomb killed two Iraqis .\tNNP IN DT NN , DT NN NN VBD CD NNS .\nPolls have opened in Benin , where voters are choosing a successor to long-time President Mathieu Kerekou .\tNNS VBP VBN IN NNP , WRB NNS VBP VBG DT NN TO JJ NNP NNP NNP .\nAfter casting his ballot Sunday in Cotonou , Mr. Kerekou expressed doubt about the vote 's transparency .\tIN VBG PRP$ NN NNP IN NNP , NNP NNP VBD NN IN DT NN POS NN .\nThe French press agency quotes him as saying unnamed groups gave FALSE names and voter cards to foreigners in the west African nation before the poll .\tDT JJ NN NN VBZ PRP IN VBG JJ NNS VBD JJ NNS CC NN NNS TO NNS IN DT JJ JJ NN IN DT NN .\nSome four million people are eligible to cast ballots in the election , which features 26 candidates , including two women .\tDT CD CD NNS VBP JJ TO VB NNS IN DT NN , WDT VBZ CD NNS , VBG CD NNS .\nA second round will be called in two weeks if no candidate wins more than 50 percent of the vote .\tDT JJ NN MD VB VBN IN CD NNS IN DT NN VBZ JJR IN CD NN IN DT NN .\nPresident Kerekou is barred from running again because he is older than the 70 year age limit .\tNNP NNP VBZ VBN IN VBG RB IN PRP VBZ JJR IN DT CD NN NN NN .\nMr. Kerekou first came to power in a military coup in 1972 and led the country to its first democratic elections in 1991 , which he lost .\tNNP NNP RB VBD TO NN IN DT JJ NN IN CD CC VBD DT NN TO PRP$ JJ JJ NNS IN CD , WDT PRP VBD .\nHe returned to office after winning a 1996 vote .\tPRP VBD TO NN IN VBG DT CD NN .\nPakistani authorities have raided offices of two Afghan trading firms suspected of providing funds to leaders of Taleban insurgents and frozen their bank accounts .\tJJ NNS VBP VBN NNS IN CD JJ NN NNS VBN IN VBG NNS TO NNS IN NNP NNS CC JJ PRP$ NN NNS .\nPakistani officials say the raids by government agents in the northwestern city of Peshawar and in the capital , Islamabad , occurred on Tuesday .\tJJ NNS VBP DT NNS IN NN NNS IN DT JJ NN IN NNP CC IN DT NN , NNP , VBD IN NNP .\nThey say the agents seized documents indicating the firms ' involvement in transferring money to the Taleban .\tPRP VBP DT NNS VBD NNS VBG DT NNS POS NN IN VBG NN TO DT NNP .\nThe authorities now are trying to determine whether the funds were being channeled to the Taleban 's reclusive leader , Mullah Omar .\tDT NNS RB VBP VBG TO VB IN DT NNS VBD VBG VBN TO DT NNP POS JJ NN , NNP NNP .\nTuesday 's raids came the same day as a meeting in Washington between President Bush and Pakistani Prime Minister Shaukat Aziz , in which the two sides vowed to continue working closely to defeat terrorism .\tNNP POS NNS VBD DT JJ NN IN DT NN IN NNP IN NNP NNP CC JJ NNP NNP NNP NNP , IN WDT DT CD NNS VBD TO VB VBG RB TO VB NN .\nEgypt has reported a second suspected human case of bird flu as Israel culls thousands of birds in an effort to contain an outbreak .\tNNP VBZ VBN DT JJ JJ JJ NN IN NN NN IN NNP VBZ NNS IN NNS IN DT NN TO VB DT NN .\nEgypt 's health ministry said Sunday a young man hospitalized since Thursday is suffering symptoms of the disease .\tNNP POS NN NN VBD NNP DT JJ NN VBN IN NNP VBZ VBG NNS IN DT NN .\nIt said he kept a farm , north of Cairo , where a number of chickens died last Monday .\tPRP VBD PRP VBD DT NN , NN IN NNP , WRB DT NN IN NNS VBD JJ NNP .\nThe report followed the death Friday in Egypt of a woman believed to have contracted the H5N1 strain of the virus .\tDT NN VBD DT NN NNP IN NNP IN DT NN VBN TO VB VBN DT NNP NN IN DT NN .\nIn Israel , authorities say the situation is under control .\tIN NNP , NNS VBP DT NN VBZ IN NN .\nThey are killing tens of thousands of birds to try to prevent the disease from spreading .\tPRP VBP VBG NNS IN NNS IN NNS TO VB TO VB DT NN IN VBG .\nBird flu has spread across parts of Europe , Africa and Asia , killing about 100 people since 2003 .\tNN NN VBZ VBN IN NNS IN NNP , NNP CC NNP , VBG IN CD NNS IN CD .\nHealth officials have warned it could mutate into a virus that can be easily transmitted between humans and create a global pandemic .\tNN NNS VBP VBN PRP MD VB IN DT NN WDT MD VB RB VBN IN NNS CC VB DT JJ NN .\nPresident Bush has used his weekly radio address to urge Congress to do more to ease the economic worries of many Americans .\tNNP NNP VBZ VBN PRP$ JJ NN NN TO VB NNP TO VB JJR TO VB DT JJ NNS IN JJ NNS .\nThe president Saturday said even though the economy is growing , American families are concerned with rising energy prices and the cost of health care .\tDT NN NNP VBD RB IN DT NN VBZ VBG , JJ NNS VBP VBN IN VBG NN NNS CC DT NN IN NN NN .\nThe president praised Congress for passing recent energy and tax bills .\tDT NN VBD NNP IN VBG JJ NN CC NN NNS .\nBut he said he was disappointed in a spending bill that he signed earlier this week .\tCC PRP VBD PRP VBD VBN IN DT NN NN IN PRP VBD RBR DT NN .\nHe said the $ 555 billion budget bill was loaded with wasteful special interest items , mentioning a prison museum and a sailing school .\tPRP VBD DT $ CD CD NN NN VBD VBN IN JJ JJ NN NNS , VBG DT NN NN CC DT NN NN .\nThe president said his resolution for the New Year is to work with Congress to keep the economy growing , to keep taxes low and to ensure Washington spends money wisely .\tDT NN VBD PRP$ NN IN DT NNP NN VBZ TO VB IN NNP TO VB DT NN VBG , TO VB NNS JJ CC TO VB NNP VBZ NN RB .\nSome experts say the worst of the recession may be over , but others are pessimistic about the economic outlook .\tDT NNS VBP DT JJS IN DT NN MD VB IN , CC NNS VBP JJ IN DT JJ NN .\nA survey of economists by the Bloomberg financial news service projects U.S. unemployment will rise further this year , from 8.9 to 9.6 percent .\tDT NN IN NNS IN DT NNP JJ NN NN NNS NNP NN MD VB RBR DT NN , IN CD TO CD NN .\nThese experts also expect the world 's largest economy to get smaller at a 1.9 percent annual pace in April , May and June , and gradually switch to modest growth later this year .\tDT NNS RB VBP DT NN POS JJS NN TO VB JJR IN DT CD NN JJ NN IN NNP , NNP CC NNP , CC RB VB TO JJ NN RB DT NN .\nNobel prize-winning economist Paul Krugman says the U.S. and other governments need to do more than the current set of stimulus packages and interest rate cuts .\tNNP JJ NN NNP NNP VBZ DT NNP CC JJ NNS VBP TO VB JJR IN DT JJ NN IN NN NNS CC NN NN NNS .\nHe says half-measures will do too little to help banks and boost growth .\tPRP VBZ NNS MD VB RB RB TO VB NNS CC VB NN .\nBut the head of the European Central Bank , Jean-Claude Trichet , said Monday that the global economy has weathered the worst of the recession and is ready to turn upward .\tCC DT NN IN DT NNP NNP NNP , NNP NNP , VBD NNP IN DT JJ NN VBZ VBN DT JJS IN DT NN CC VBZ JJ TO VB RB .\nChinese Vice President Zeng Qinghong says China 's imports have helped create 10 million jobs worldwide since it joined the World Trade Organization in 2001 .\tJJ NNP NNP NNP NNP VBZ NNP POS NNS VBP VBN VB CD CD NNS JJ IN PRP VBD DT NNP NNP NNP IN CD .\nZeng made the comments during opening remarks Saturday at a regional meeting of politicians , business leaders and academics on China 's southern island of Hainan .\tNNP VBD DT NNS IN VBG NNS NNP IN DT JJ NN IN NNS , NN NNS CC NNS IN NNP POS JJ NN IN NNP .\nChina 's official Xinhua News Agency quoted Zeng as saying that since 2001 it has annually imported nearly $ 500 billion worth of goods from around the world .\tNNP POS JJ NNP NNP NNP VBD NNP IN VBG IN IN CD PRP VBZ RB VBN RB $ CD CD NN IN NNS IN IN DT NN .\nXinhua says more than 850 participants from about 40 countries are attending the annual Boao Forum for Asia .\tNNP VBZ JJR IN CD NNS IN IN CD NNS VBP VBG DT JJ NNP NNP IN NNP .\nThe meeting is expected to focus on topics including regional economic cooperation , the Doha round of WTO talks and other global issues .\tDT NN VBZ VBN TO VB IN NNS VBG JJ JJ NN , DT NNP NN IN NNP NNS CC JJ JJ NNS .\nA senior Iraqi official says an appeals court has upheld the death sentence against ousted leader Saddam Hussein for the 1982 killings of 148 Shi'ite villagers .\tDT JJ JJ NN VBZ DT NNS NN VBZ VBN DT NN NN IN JJ NN NNP NNP IN DT CD NNS IN CD NNP NNS .\nNational Security Advisor Mowaffaq Rubaie made the announcement in Baghdad Tuesday .\tNNP NNP NNP NNP NNP VBD DT NN IN NNP NNP .\nUnder Iraqi law , the death sentence is to be carried out within 30 days .\tIN JJ NN , DT NN NN VBZ TO VB VBN RP IN CD NNS .\nLast month , an Iraqi court sentenced Saddam to hang for the killings of the Shi'ites from the town of Dujail after an attempt there to assassinate Saddam .\tJJ NN , DT JJ NN VBD NNP TO VB IN DT NNS IN DT NNS IN DT NN IN NNP IN DT NN RB TO VB NNP .\nThe ousted leader is also on trial on charges of genocide for the 1988 Anfal campaign in which prosecutors say 1,80,000 Kurds were killed .\tDT JJ NN VBZ RB IN NN IN NNS IN NN IN DT CD NNP NN IN WDT NNS VBP CD NNS VBD VBN .\nA group of independent policymakers and economists say economic growth is within reach of developing countries if they adopt the right policies .\tDT NN IN JJ NNS CC NNS VBP JJ NN VBZ IN NN IN VBG NNS IN PRP VBP DT JJ NNS .\nThe World Bank 's Commission on Growth and Development has released a new report , which says developing countries can achieve fast , sustained and equitable growth , providing they use formulas used by other successful economies .\tDT NNP NNP POS NNP IN NNP CC NNP VBZ VBN DT JJ NN , WDT VBZ VBG NNS MD VB JJ , JJ CC JJ NN , VBG PRP VBP NNS VBN IN JJ JJ NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nLeaders of the the world 's richest nations have again pledged to help cut poverty and disease in Africa .\tNNS IN DT DT NN POS JJS NNS VBP RB VBN TO VB VB NN CC NN IN NNP .\nIn a statement Sunday , leaders at the summit of the seven top industrialized nations plus Russia pledged to pursue existing efforts to increase debt relief and support aid work on the continent .\tIN DT NN NNP , NNS IN DT NN IN DT CD JJ JJ NNS IN NNP VBD TO VB VBG NNS TO VB NN NN CC NN NN NN IN DT NN .\nThe statement also said the grouping will identify the next steps to be taken before next year 's summit in Germany .\tDT NN RB VBD DT NN MD VB DT JJ NNS TO VB VBN IN JJ NN POS NN IN NNP .\nAid agencies welcomed the formal G-8 commitment not to let Africa issues fade from public view .\tJJ NNS VBD DT JJ JJ NN RB TO VB NNP NNS VBP IN JJ NN .\nBut an official from the British charity ' Save the Children ' urged G-8 countries to act more urgently .\tCC DT NN IN DT JJ NN `` VB DT NNS `` VBD JJ NNS TO VB JJR RB .\nMatt Phillips said the ' fact that there have not been [ G-8 ] steps backward ' will ' be cold comfort to the 800 African families who lost a child today ' because they could not afford a doctor .\tNNP NNP VBD DT `` NN IN EX VBP RB VBN LRB NNP RRB NNS RB `` MD `` VB JJ NN TO DT CD JJ NNS WP VBD DT NN NN `` IN PRP MD RB VB DT NN .\nGunmen killed at least 12 people at a house party in Ciudad Juarez , Mexico Friday , the latest act of brutality in a border city known as a battleground for drug gangs .\tNNS VBD IN JJS CD NNS IN DT NN NN IN NNP NNP , NNP NNP , DT JJS NN IN NN IN DT NN NN VBN IN DT NN IN NN NNS .\nLocal media report a group of armed men arrived at the house in several vehicles and opened fire on party-goers .\tJJ NNS VBP DT NN IN JJ NNS VBD IN DT NN IN JJ NNS CC VBD NN IN NNS .\nAt least 10 people were wounded in the attack , including a child .\tIN JJS CD NNS VBD VBN IN DT NN , VBG DT NN .\nCiudad Juarez sits just across the border from the U.S. city of El~Paso , Texas .\tNNP NNP VBZ RB IN DT NN IN DT NNP NN IN NNP , NNP .\nMore than 6,000 people have been killed in the last three years in the Mexican city where the Juarez and Sinaloa drug cartels battle with Mexican police and military forces that are trying to stop their illegal operations .\tJJR IN CD NNS VBP VBN VBN IN DT JJ CD NNS IN DT JJ NN WRB DT NNP CC NNP NN VBZ NN IN JJ NNS CC JJ NNS WDT VBP VBG TO VB PRP$ JJ NNS .\nIt was not immediately clear whether the latest violence was related to the drug war .\tPRP VBD RB RB JJ IN DT JJS NN VBD VBN TO DT NN NN .\nPresident Bush has invited representatives from 11 countries to a conference on global warming , to be held in Washington September 27-28 .\tNNP NNP VBZ VBN NNS IN CD NNS TO DT NN IN JJ NN , TO VB VBN IN NNP NNP CD .\nThe White House says Secretary of State Condoleezza Rice will host the meeting .\tDT NNP NNP VBZ NNP IN NNP NNP NNP MD VB DT NN .\nAttendees are expected to discuss a new strategy for global warming for 2012 , when the Kyoto agreement expires .\tNNS VBP VBN TO VB DT JJ NN IN JJ NN IN CD , WRB DT NNP NN VBZ .\nIn his invitation letter , Mr. Bush said he hopes the group will agree to set new international limits on gas emissions , and work with businesses to help new environment-friendly technologies grow .\tIN PRP$ NN NN , NNP NNP VBD PRP VBZ DT NN MD VB TO VB JJ JJ NNS IN NN NNS , CC NN IN NNS TO VB JJ JJ NNS VBP .\nThe Bush administration has long been accused of having an environmental policy that lags behind other nations .\tDT NNP NN VBZ RB VBN VBN IN VBG DT JJ NN WDT VBZ IN JJ NNS .\nThe Kyoto Protocol was adopted in 1997 to limit the amount of so-called greenhouse gas emitted in industrialized countries .\tDT NNP NNP VBD VBN IN CD TO VB DT NN IN JJ NN NN VBN IN JJ NNS .\nThe United States has never been a party to the agreement .\tDT NNP NNPS VBZ RB VBN DT NN TO DT NN .\nMr. Bush invited representatives from the United Nations and European Union as well as the 11 individual nations .\tNNP NNP VBD NNS IN DT NNP NNPS CC NNP NNP RB RB IN DT CD JJ NNS .\nU.S. and European share prices have recovered a day after they plunged because of concerns about the economy .\tNNP CC JJ NN NNS VBP VBN DT NN IN PRP VBD IN IN NNS IN DT NN .\nU.S. stock indexes are up in Wednesday 's trading , while European markets are mixed .\tNNP NN NNS VBP RB IN NNP POS NN , IN JJ NNS VBP JJ .\nAsian markets took a nosedive Wednesday following Tuesday 's steep decline in U.S. and European share prices .\tJJ NNS VBD DT JJ NNP VBG NNP POS JJ NN IN NNP CC JJ NN NNS .\nHong Kong 's Hang Seng index fell more than 1,300 points , more than five percent , in a holiday-shortened trading day .\tNNP NNP POS NNP NNP NN VBD JJR IN CD NNS , JJR IN CD NN , IN DT JJ NN NN .\nTokyo 's Nikkei index was off 646 points - nearly five percent .\tNNP POS NNP NN VBD RB CD NNS : RB CD NN .\nMarkets in China , Taiwan , South Korea , and New Zealand were closed for a holiday .\tNNS IN NNP , NNP , NNP NNP , CC NNP NNP VBD VBN IN DT NN .\nAnalysts say many investors fear the U.S. economy is close to a recession if not already in one .\tNNS VBP JJ NNS VBP DT NNP NN VBZ RB TO DT NN IN RB RB IN CD .\nMany private radio stations in Nepal resumed news broadcasts Friday , more than six months after King Gyanendra banned news from all independent outlets .\tJJ JJ NN NNS IN NNP VBD NN NNS NNP , JJR IN CD NNS IN NNP NNP VBD NN IN DT JJ NNS .\nNepal 's Supreme Court ruled earlier this week that one station closed for violating the news ban should be allowed to resume operations .\tNNP POS NNP NNP VBD RBR DT NN IN CD NN VBD IN VBG DT NN NN MD VB VBN TO VB NNS .\nA media rights group in Nepal , Save Independent Radio Movement , says other stations interpreted the ruling as giving them the right to broadcast news .\tDT NNS NNS NN IN NNP , NNP NNP NNP NNP , VBZ JJ NNS VBD DT NN IN VBG PRP DT NN TO VB NN .\nThe group says about 16 of the country 's more than 40 independent radio stations have restarted news broadcasts , and others will do the same over the next several days .\tDT NN VBZ IN CD IN DT NN POS JJR IN CD JJ NN NNS VBP VBN NN NNS , CC NNS MD VB DT NN IN DT JJ JJ NNS .\nThe news ban for independent radio was part of a wider media crackdown imposed by King Gyanendra after he fired the government and seized complete power in February .\tDT NN NN IN JJ NN VBD NN IN DT JJR NNS NN VBN IN NNP NNP IN PRP VBD DT NN CC VBD JJ NN IN NNP .\nIraqi police in Kirkuk say a suicide car bomber struck a funeral service for a Shi'ite soldier , killing at least four people and wounding some 25 others .\tJJ NN IN NNP VBP DT NN NN NN VBD DT JJ NN IN DT NNP NN , VBG IN JJS CD NNS CC VBG DT CD NNS .\nOfficials said the bomber drove into the middle of the service before detonating a blast .\tNNS VBD DT NN VBD IN DT NN IN DT NN IN VBG DT NN .\nAlso Thursday , the prime minister and president of Romania publicly disagreed about a proposal to withdraw the country 's 890 troops from Iraq .\tRB NNP , DT JJ NN CC NN IN NNP RB VBD IN DT NN TO VB DT NN POS CD NNS IN NNP .\nPrime Minister Calin Tariceanu proposed a withdrawal because of the human and financial cost of the deployment .\tNNP NNP NNP NNP VBD DT NN IN IN DT JJ CC JJ NN IN DT NN .\nBut President Traian Basescu called the idea ' unacceptable . '\tCC NNP NNP NNP VBD DT NN `` JJ . ``\nUnder Romanian law , the country 's Supreme Defense Council , chaired by the president , has the power to decide on a withdrawal .\tIN JJ NN , DT NN POS NNP NNP NNP , VBN IN DT NN , VBZ DT NN TO VB IN DT NN .\nThe president said the prime minister 's statement would hurt Romania 's credibility abroad .\tDT NN VBD DT JJ NN POS NN MD VB NNP POS NN RB .\nBelarus 's Foreign Ministry has dismissed the latest U.S.-imposed sanctions aimed at freezing the U.S. assets of Belarusian President Alexander Lukashenko and other government officials .\tNNP POS NNP NNP VBZ VBN DT JJS JJ NNS VBN IN VBG DT NNP NNS IN JJ NNP NNP NNP CC JJ NN NNS .\nA Foreign Ministry spokesman , Andrei Popov , Tuesday accused the United States of pursuing what he called ' an old goal ' of spreading FALSE information about Belarus .\tDT NNP NNP NN , NNP NNP , NNP VBD DT NNP NNPS IN VBG WP PRP VBD `` DT JJ NN `` IN VBG JJ NN IN NNP .\nPresident Bush signed an executive order for the sanctions on Monday .\tNNP NNP VBD DT JJ NN IN DT NNS IN NNP .\nThe move also bars Americans and U.S. companies from doing business with Mr. Lukashenko and nine other officials .\tDT NN RB VBZ NNS CC NNP NNS IN VBG NN IN NNP NNP CC CD JJ NNS .\nThe European Union froze Mr. Lukashenko 's assets in Europe last month and joined the United States in imposing a travel ban on Belarusian senior government officials .\tDT NNP NNP VBD NNP NNP POS NNS IN NNP JJ NN CC VBD DT NNP NNPS IN VBG DT NN NN IN JJ JJ NN NNS .\nPresident Lukashenko was elected to a third term in March in a vote the West called fraudulent .\tNNP NNP VBD VBN TO DT JJ NN IN NNP IN DT NN DT NNP VBD JJ .\nTurkish authorities say a security officer and a Kurdish rebel have been killed in clashes in the country 's mainly Kurdish southeast .\tJJ NNS VBP DT NN NN CC DT JJ NN VBP VBN VBN IN NNS IN DT NN POS RB JJ NN .\nThey say the two died in Siirt province Tuesday .\tPRP VBP DT CD VBD IN NNP NN NNP .\nAuthorities say the rebel was a member of the banned Kurdistan Workers Party , or PKK .\tNNS VBP DT NN VBD DT NN IN DT VBN NNP NNP NNP , CC NNP .\nThe violence is the latest in southeastern Turkey .\tDT NN VBZ DT JJS IN JJ NNP .\nIn March , clashes erupted at funerals for some of the 14 Kurdish guerrillas killed by Turkish security forces in Diyarbakir .\tIN NNP , NNS VBD IN NNS IN DT IN DT CD NNP NNS VBN IN JJ NN NNS IN NNP .\nThe PKK has been fighting for autonomy in Turkey 's southeastern region since 1984 .\tDT NNP VBZ VBN VBG IN NN IN NNP POS JJ NN IN CD .\nMore than 30,000 people have been killed .\tJJR IN CD NNS VBP VBN VBN .\nThe PKK guerrillas are based mainly in the mountains of southeastern Turkey and northern Iraq .\tDT NNP NNS VBP VBN RB IN DT NNS IN JJ NNP CC JJ NNP .\nThe organizers of a Lebanese aid voyage say they will set sail Sunday on a trip designed to break Israel 's blockade of the Gaza Strip .\tDT NNS IN DT JJ NN NN VBP PRP MD VB JJ NNP IN DT NN VBN TO VB NNP POS NN IN DT NNP NNP .\nIsrael has warned against the journey by the ship , named the Mariam .\tNNP VBZ VBN IN DT NN IN DT NN , VBD DT NNP .\nThe organizers of the mission say those on board will be women only .\tDT NNS IN DT NN VBP DT IN NN MD VB NNS RB .\nIsrael came under harsh international criticism after it launched a deadly raid in May on a flotilla of aid ships trying to break the Gaza blockade .\tNNP VBD IN JJ JJ NN IN PRP VBD DT JJ NN IN NNP IN DT NN IN NN NNS VBG TO VB DT NNP NN .\nNine Turkish activists were killed .\tCD JJ NNS VBD VBN .\nIsrael eased its land blockade in response to the outrage , but kept the sea blockade in force .\tNNP VBD PRP$ NN NN IN NN TO DT NN , CC VBD DT NN NN IN NN .\nIsraeli officials say the measure is necessary to prevent Hamas militants and supporters from smuggling weapons into Gaza .\tJJ NNS VBP DT NN VBZ JJ TO VB NNP NNS CC NNS IN VBG NNS IN NNP .\nThe French Defense Ministry says an investigation has confirmed an Ivory Coast man was killed by suffocation by French soldiers in the West African nation last May .\tDT JJ NNP NNP VBZ DT NN VBZ VBN DT NNP NNP NN VBD VBN IN NN IN JJ NNS IN DT JJ JJ NN JJ NNP .\nIn a statement issued Wednesday the ministry says the man was killed while in an armored vehicle May 13 .\tIN DT NN VBN NNP DT NN VBZ DT NN VBD VBN IN IN DT JJ NN NNP CD .\nThe statement says the commander of the French force in Ivory Coast was informed of the incident but did not inform his superiors .\tDT NN VBZ DT NN IN DT JJ NN IN NNP NNP VBD VBN IN DT NN CC VBD RB VB PRP$ NNS .\nLast month the ministry suspended General Henri Poncet and two other military officers for what it called ' serious breaches of law , military regulations and orders ' in connection with the incident .\tJJ NN DT NN VBD NNP NNP NNP CC CD JJ JJ NNS IN WP PRP VBD `` JJ NNS IN NN , JJ NNS CC NNS `` IN NN IN DT NN .\nFrench peacekeepers patrol a buffer zone in Ivory Coast separating the government-controlled south and the rebel-held north .\tJJ NNS VBP DT NN NN IN NNP NNP VBG DT JJ NN CC DT JJ NN .\nMonday marks the 30th anniversary of the barcode .\tNNP VBZ DT JJ NN IN DT NN .\nBarcodes are the symbols that appear on goods in 155 countries that help clerks speed customer purchases , and help companies keep track of inventory .\tNNS VBP DT NNS WDT VBP IN NNS IN CD NNS WDT VBP NNS VB NN NNS , CC VB NNS VB NN IN NN .\nBarcodes are a series of lines and numbers that machine scanners can read and identify exactly what product is being sold and how much it costs .\tNNS VBP DT NN IN NNS CC NNS IN NN NNS MD VB CC VB RB WP NN VBZ VBG VBN CC WRB JJ PRP VBZ .\nMore than 100 nations have groups that issue unique barcodes to one million companies around the world .\tJJR IN CD NNS VBP NNS WDT VBP JJ NNS TO CD CD NNS IN DT NN .\nAnd scanners read those barcodes about 10 billion times each day .\tCC NNS VBP DT NNS IN CD CD NNS DT NN .\nThe non-profit group that issues barcodes in the United States says the first barcoded item scanned and sold was a package of chewing gum , which is now in a museum .\tDT JJ NN WDT VBZ NNS IN DT NNP NNPS VBZ DT JJ JJ NN VBN CC VBN VBD DT NN IN VBG NN , WDT VBZ RB IN DT NN .\nUkraine 's Supreme Court has invalidated the results of the country 's presidential runoff , and called for a new vote in three weeks .\tNNP POS NNP NNP VBZ VBN DT NNS IN DT NN POS JJ NN , CC VBD IN DT JJ NN IN CD NNS .\nFriday 's decision comes as tens of thousands of opposition supporters rally in Kiev protesting the disputed November 21 runoff vote .\tNNP POS NN VBZ IN NNS IN NNS IN NN NNS VBZ IN NNP VBG DT JJ NNP CD NN NN .\nElection officials had declared Prime Minister Viktor Yanukovych the winner of the election , prompting massive demonstrations .\tNNP NNS VBD VBN NNP NNP NNP NNP DT NN IN DT NN , VBG JJ NNS .\nOpposition challenger Viktor Yushchenko and international monitors said massive fraud occurred .\tNN NN NNP NNP CC JJ NNS VBD JJ NN VBD .\nDemonstrators clad in orange , the color of the opposition , massed outside the court Friday to await the decision , while thousands of others continued to gather in Kiev main 's square .\tNNS VBP IN NN , DT NN IN DT NN , VBD IN DT NN NNP TO VB DT NN , IN NNS IN NNS VBD TO VB IN NNP NN POS NN .\nUkraine 's outgoing president , Leonid Kuchma , said Thursday in Kiev he supports holding entirely new elections .\tNNP POS NN NN , NNP NNP , VBD NNP IN NNP PRP VBZ VBG RB JJ NNS .\nHe met earlier outside Moscow with Russian President Vladimir Putin , who said he does not support redoing the runoff .\tPRP VBD RBR IN NNP IN JJ NNP NNP NNP , WP VBD PRP VBZ RB VB VBG DT NN .\nBritish police say they have released two people who had been detained in connection with last month 's failed car bomb attacks in London and Glasgow .\tJJ NNS VBP PRP VBP VBN CD NNS WP VBD VBN VBN IN NN IN JJ NN POS JJ NN NN NNS IN NNP CC NNP .\nThe two who were released without charge are physician trainees arrested July 2 - two days after a vehicle packed with gas cylinders , nails and gasoline smashed into barricades near the entrance to Glasgow 's main airport .\tDT CD WP VBD VBN IN NN VBP NN NNS VBN NNP CD IN CD NNS IN DT NN VBN IN NN NNS , NNS CC NN VBD IN NNS IN DT NN TO NNP POS JJ NN .\nA woman detained in the case was released last week .\tDT NN VBN IN DT NN VBD VBN JJ NN .\nThree people - two in Britain and one in Australia - have been charged .\tCD NNS : CD IN NNP CC CD IN NNP : VBP VBN VBN .\nPolice have identified the suspects as Indian-born doctor Sabeel Ahmed , and his brother , Kafeel , who remains hospitalized in Glasgow with severe burns .\tNNS VBP VBN DT NNS IN JJ NN NNP NNP , CC PRP$ NN , NNP , WP VBZ VBN IN NNP IN JJ NNS .\nA distant cousin of the two , Muhammad Haneef , was charged Saturday in Brisbane , Australia .\tDT JJ NN IN DT CD , NNP NNP , VBD VBN NNP IN NNP , NNP .\nSeparately , a British judge has given police until July 21 to question a Jordanian doctor who was arrested in northern England June 30 .\tRB , DT JJ NN VBZ VBN NN IN NNP CD TO VB DT JJ NN WP VBD VBN IN JJ NNP NNP CD .\nThe U.S. military in Iraq says one U.S. soldier has been killed and three others wounded in a bomb attack in the country 's north .\tDT NNP NN IN NNP VBZ CD NNP NN VBZ VBN VBN CC CD NNS VBN IN DT NN NN IN DT NN POS NN .\nIn a statement , the military said the bomb was detonated Monday near a military patrol near the town of Baquba .\tIN DT NN , DT NN VBD DT NN VBD VBN NNP IN DT JJ NN IN DT NN IN NNP .\nThe violence came as President Bush joined other world leaders in praising the results from Iraq 's national elections .\tDT NN VBD IN NNP NNP VBD JJ NN NNS IN VBG DT NNS IN NNP POS JJ NNS .\nWorld leaders hailed the election results , but several also urged the winning parties not to worsen religious and ethnic tensions in the country .\tNNP NNS VBD DT NN NNS , CC JJ RB VBD DT VBG NNS RB TO VB JJ CC JJ NNS IN DT NN .\nThe United Iraqi Alliance , a coalition of Shi'ite Muslim groups , won the biggest share of the eight million votes , but fell just short of an outright majority .\tDT NNP JJ NNP , DT NN IN NNP NNP NNS , VBD DT JJS NN IN DT CD CD NNS , CC VBD RB JJ IN DT JJ NN .\nIraq 's election commission says a Kurdish coalition finished second , with 25 percent .\tNNP POS NN NN VBZ DT JJ NN VBD JJ , IN CD NN .\nInterim Prime Minister Iyad Allawi and his allies ranked third , with 14 percent .\tNNP NNP NNP NNP NNP CC PRP$ NNS VBD JJ , IN CD NN .\nIraqi authorities say gunmen have ambushed and killed 12 Iraqi soldiers near the northern city of Kirkuk .\tJJ NNS VBP NNS VBP VBN CC VBN CD JJ NNS IN DT JJ NN IN NNP .\nOfficials say the attackers shot and killed the soldiers after stopping their bus on a road leading to the oil-rich city late Wednesday .\tNNS VBP DT NNS VBD CC VBD DT NNS IN VBG PRP$ NN IN DT NN VBG TO DT JJ NN JJ NNP .\nIt was the deadliest single attack in Iraq since Sunday 's election to choose members of the country 's interim national assembly .\tPRP VBD DT JJS JJ NN IN NNP IN NNP POS NN TO VB NNS IN DT NN POS JJ JJ NN .\nElection workers are still counting votes .\tNN NNS VBP RB VBG NNS .\nAn influential association of Sunni Muslim clerics said the assembly will lack the authority to draft a new constitution , because many Sunnis did not vote .\tDT JJ NN IN NNP NNP NNS VBD DT NN NN VBP DT NN TO VB DT JJ NN , IN JJ NNPS VBD RB VB .\nIraq 's interim prime minister Iyad Allawi said he wants to ensure all parts of Iraqi society have a role in its new government .\tNNP POS JJ JJ NN NNP NNP VBD PRP VBZ TO VB DT NNS IN JJ NN VBP DT NN IN PRP$ JJ NN .\nMr. Allawi held talks Wednesday with leaders from the country 's political and religious factions , including Sunni leaders .\tNNP NNP VBD NNS NNP IN NNS IN DT NN POS JJ CC JJ NNS , VBG NNP NNS .\nFive Philippine legislators accused of plotting a coup against the president have emerged from the Congress building where they took refuge more than two months ago .\tCD JJ NNS VBN IN VBG DT NN IN DT NN VBP VBN IN DT NNP NN WRB PRP VBD NN RBR IN CD NNS RB .\nHundreds of supporters cheered the left-wing lawmakers Monday as they walked out of the House of Representatives after a 70-day standoff with the government .\tNNS IN NNS VBD DT JJ NNS NNP IN PRP VBD IN IN DT NNP IN NNPS IN DT JJ NN IN DT NN .\nThe five hid in the building to avoid being taken into custody for their alleged role in a failed plot in February to overthrow President Gloria Macapagal Arroyo .\tDT CD NN IN DT NN TO VB VBG VBN IN NN IN PRP$ JJ NN IN DT JJ NN IN NNP TO VB NNP NNP NNP NNP .\nOn Thursday , a court dismissed rebellion charges against them on technical grounds .\tIN NNP , DT NN VBD NN NNS IN PRP IN JJ NNS .\nThe government says it does not rule out refiling a case against the lawmakers .\tDT NN VBZ PRP VBZ RB VB RP VBG DT NN IN DT NNS .\nA Pakistani court has lifted a ban on the popular social networking site Facebook , two weeks after the site was blocked for soliciting images of the Prophet Muhammad .\tDT JJ NN VBZ VBN DT NN IN DT JJ JJ NN NN NNP , CD NNS IN DT NN VBD VBN IN VBG NNS IN DT NNP NNP .\nMost Muslims consider any image of the Prophet to be blasphemous , and Facebook 's ' Everybody Draw Muhammad Day ' page triggered protests throughout Pakistan .\tJJS NNPS VBP DT NN IN DT NN TO VB JJ , CC NNP POS `` DT VB NNP NN `` NN VBD NNS IN NNP .\nThe Lahore High Court on Monday ordered the government to restore access to Facebook , but said ' blasphemous ' content should remain blocked .\tDT NNP NNP NNP IN NNP VBD DT NN TO VB NN TO NNP , CC VBD `` JJ `` NN MD VB VBN .\nThe court also called on the government to develop a system targeting offensive content online .\tDT NN RB VBD IN DT NN TO VB DT NN VBG JJ NN NN .\nLast week , Pakistan lifted a similar ban on the video website YouTube .\tJJ NN , NNP VBD DT JJ NN IN DT NN JJ NNP .\nAuthorities said sacrilegious or profane material will remain restricted .\tNNS VBD JJ CC JJ NN MD VB JJ .\nOn Sunday , authorities in Bangladesh also temporarily blocked Facebook .\tIN NNP , NNS IN NNP RB RB VBN NNP .\nPublications of cartoons of the Prophet Muhammad in Danish newspapers a few years ago sparked violent protests in majority-Muslim countries .\tNNP IN NNS IN DT NNP NNP IN JJ NNS DT JJ NNS RB VBD JJ NNS IN JJ NNS .\nSuspected leftist rebels in Colombia have killed at least a dozen coca growers in the northwestern part of the country .\tVBN JJ NNS IN NNP VBP VBN IN JJS DT NN NN NNS IN DT JJ NN IN DT NN .\nA local official says members of the Revolutionary Armed Forces of Colombia , or FARC , killed 11 men and one woman during an attack Wednesday near Puerto Valdivia .\tDT JJ NN VBZ NNS IN DT NNP NNP NNS IN NNP , CC NNP , VBD CD NNS CC CD NN IN DT NN NNP IN NNP NNP .\nThe FARC relies on coca , which is used to make cocaine , for much of its funding .\tDT NNP VBZ IN NN , WDT VBZ VBN TO VB NN , IN NN IN PRP$ NN .\nIt often kills peasants who refuse to cooperate or sell their product to rightwing paramilitaries .\tPRP RB VBZ NNS WP VBP TO VB CC VB PRP$ NN IN NN NNS .\nThe FARC and a smaller leftist rebel group are locked in a long-running war against the government and rightist paramilitaries that leaves thousands of people dead each year .\tDT NNP CC DT JJR JJ NN NN VBP VBN IN DT JJ NN IN DT NN CC NN NNS WDT VBZ NNS IN NNS JJ DT NN .\nVice President Dick Cheney was briefly examined at a Washington hospital Tuesday after experiencing discomfort in his left leg , where a blood clot was discovered earlier this month .\tNNP NNP NNP NNP VBD RB VBN IN DT NNP NN NNP IN VBG NN IN PRP$ JJ NN , WRB DT NN NN VBD VBN RBR DT NN .\nCheney 's office says the doctors conducted another ultrasound image of the clot in his leg , which showed there was no extension or complication of the clot .\tNNP POS NN VBZ DT NNS VBN DT JJ NN IN DT NN IN PRP$ NN , WDT VBD EX VBD DT NN CC NN IN DT NN .\nDoctors say Cheney 's blood thinning medication is working .\tNNS VBP NNP POS NN VBG NN VBZ VBG .\nThe vice president later returned to the White House to resume his schedule .\tDT NN NN RB VBD TO DT NNP NNP TO VB PRP$ NN .\nCheney has had four heart attacks , although none since taking office in 2001 .\tNNP VBZ VBN CD NN NNS , IN NN IN VBG NN IN CD .\nThe blood clot was discovered shortly after Cheney returned from a trip that took him to Australia and South Asia .\tDT NN NN VBD VBN RB IN NNP VBD IN DT NN WDT VBD PRP TO NNP CC NNP NNP .\nDoctors say there is an increased risk of developing blood clots from long flights because of prolonged periods of immobility .\tNNS VBP EX VBZ DT JJ NN IN VBG NN NNS IN JJ NNS IN IN JJ NNS IN NN .\nIsraeli President Shimon Peres says tensions between Israel and Syria are now ' over , ' and Israel is ready to negotiate for peace with Syria .\tJJ NNP NNP NNP VBZ NNS IN NNP CC NNP VBP RB `` IN , `` CC NNP VBZ JJ TO VB IN NN IN NNP .\nMr. Peres made the comment to foreign reporters Tuesday in Israel .\tNNP NNP VBD DT NN TO JJ NNS NNP IN NNP .\nMonday , Israeli Prime Minister Ehud Olmert also said Israel was ready to negotiate with Syria .\tNNP , JJ NNP NNP NNP NNP RB VBD NNP VBD JJ TO VB IN NNP .\nThe developments come less than two weeks after Syria accused Israel of launching an air strike inside Syria .\tDT NNS VBP JJR IN CD NNS IN NNP VBD NNP IN VBG DT NN NN IN NNP .\nIsrael has refused to comment on the matter .\tNNP VBZ VBN TO VB IN DT NN .\nMedia reports have suggested the air strike either targeted Iranian arms destined for Lebanese Hezbollah guerrillas , or a nuclear facility in Syria built with North Korean technology .\tNNS NNS VBP VBN DT NN NN CC JJ JJ NNS VBN IN JJ NNP NNS , CC DT JJ NN IN NNP VBN IN JJ JJ NN .\nLast week , Syria protested to the United Nations about the incident and accused Israel of aggression .\tJJ NN , NNP VBD TO DT NNP NNPS IN DT NN CC VBD NNP IN NN .\nPeace talks between Syria and Israel collapsed in 2000 .\tNN NNS IN NNP CC NNP VBD IN CD .\nA Palestinian teenager has been killed and at least six others wounded in the West Bank in a shootout between Israeli troops and militants .\tDT JJ NN VBZ VBN VBN CC IN JJS CD NNS VBN IN DT NNP NNP IN DT NN IN JJ NNS CC NNS .\nPalestinian witnesses in Jenin say the dead 18-year-old was unarmed and was throwing rocks at Israeli troops attempting to arrest a wanted militant from the Islamic Jihad movement .\tJJ NNS IN NNP VBP DT JJ JJ VBD JJ CC VBD VBG NNS IN JJ NNS VBG TO VB DT JJ NN IN DT NNP NNP NN .\nIsrael says its troops returned fire after Palestinians began shooting and detonating explosives .\tNNP VBZ PRP$ NNS VBD NN IN NNS VBD VBG CC VBG NNS .\nIn other developments , the Israeli parliament passed a law Wednesday , severely limiting Palestinian lawsuits for damages incurred in Israeli military operations .\tIN JJ NNS , DT JJ NN VBD DT NN NNP , RB VBG JJ NNS IN NNS VBN IN JJ JJ NNS .\nThe law limits suits brought in Israeli courts to just traffic accidents involving Israeli forces and instances where Palestinians are injured while in Israeli prisons .\tDT NN VBZ NNS VBN IN JJ NNS TO RB NN NNS VBG JJ NNS CC NNS WRB NNS VBP VBN IN IN JJ NNS .\nPalestinian medical workers say an Israeli air strike on Gaza has killed a Palestinian militant and wounded two other people .\tJJ JJ NNS VBP DT JJ NN NN IN NNP VBZ VBN DT JJ NN CC VBD CD JJ NNS .\nMedics said Monday that the air strike hit near the border , east of Gaza City .\tNNP VBD NNP IN DT NN NN VBD IN DT NN , NN IN NNP NNP .\nAn Israeli army spokeswoman said the strike targeted a militant who fired a rocket-powered grenade at Israeli soldiers near the border .\tDT JJ NN NN VBD DT NN VBD DT NN WP VBD DT JJ NN IN JJ NNS IN DT NN .\nThe militant was believed to have been a member of the group Popular Front for the Liberation of Palestine .\tDT NN VBD VBN TO VB VBN DT NN IN DT NN NNP NNP IN DT NN IN NNP .\nThe new archbishop of Warsaw has assumed his duties , three months after his predecessor admitted to being a communist-era informer and resigned .\tDT JJ NN IN NNP VBZ VBN PRP$ NNS , CD NNS IN PRP$ NN VBD TO VBG DT NN NN CC VBD .\nMore than 1,000 people attended Palm Sunday Mass today in Warsaw , where a Papal decree was read appointing Kazimierz Nycz , a former bishop in northern Poland , to the post .\tJJR IN CD NNS VBD NNP NNP NNP NN IN NNP , WRB DT NN NN VBD VBN VBG NNP NNP , DT JJ NN IN JJ NNP , TO DT NN .\nPope Benedict XVI appointed the cleric last month , after his previous choice , Stanislaw Wielgus , resigned , admitting he had worked with Poland 's dreaded communist-era police for two decades beginning in the 1960s .\tNNP NNP NNP VBD DT NN JJ NN , IN PRP$ JJ NN , NNP NNP , VBD , VBG PRP VBD VBN IN NNP POS JJ JJ NN IN CD NNS VBG IN DT NNS .\nIn his admission , Wielgus expressed remorse and said he never informed on or sought to hurt anyone .\tIN PRP$ NN , NNP VBD NN CC VBD PRP RB VBD IN CC VBN TO VB DT .\nPolish President Lech Kaczynski and his brother Jaroslaw , the prime minister , have vowed to root out those in public life with close ties to the communist apparatus .\tJJ NNP NNP NNP CC PRP$ NN NNP , DT JJ NN , VBP VBN TO VB RP DT IN JJ NN IN JJ NNS TO DT NN NN .\nHealth officials in Thailand say a 27-year-old man has died of bird flu .\tNNP NNS IN NNP VBP DT JJ NN VBZ VBN IN NN NN .\nHe is the second person the virus has killed in the country this year .\tPRP VBZ DT JJ NN DT NN VBZ VBN IN DT NN DT NN .\nIf confirmed by the World Health Organization , the case would raise Thailand 's bird flu death toll to 16 people since the virus began spreading in Asia in late 2003 .\tIN VBN IN DT NNP NNP NNP , DT NN MD VB NNP POS NN NN NN NN TO CD NNS IN DT NN VBD VBG IN NNP IN JJ CD .\nThai authorities say the latest victim of the H5N1 virus died Thursday in the central province of Uthai Thani , after burying a sick chicken .\tJJ NNS VBP DT JJS NN IN DT NNP NN VBD NNP IN DT JJ NN IN NNP NNP , IN VBG DT JJ NN .\nThey say the man 's wife is taking anti-viral medication and is being monitored .\tPRP VBP DT NN POS NN VBZ VBG JJ NN CC VBZ VBG VBN .\nIn his radio address Saturday , Thai Prime Minister Thaksin Shinawatra called on farmers to report promptly any suspected cases of bird flu in their flocks .\tIN PRP$ NN NN NNP , JJ NNP NNP NNP NNP VBD IN NNS TO VB RB DT JJ NNS IN NN NN IN PRP$ NNS .\nThe WHO says bird flu has killed at least 134 people worldwide since 2003 .\tDT NNP VBZ NN NN VBZ VBN IN JJS CD NNS JJ IN CD .\nPakistan is condemning the loss of civilian lives during a NATO attack on suspected Taleban militants along the border with Afghanistan .\tNNP VBZ VBG DT NN IN JJ NNS IN DT NNP NN IN JJ NNP NNS IN DT NN IN NNP .\nPakistani spokeswoman Tasnim Aslam said Monday the NATO mission in Afghanistan must be more cautious before launching military operations near Pakistan 's borders .\tJJ NN NNP NNP VBD NNP DT NNP NN IN NNP MD VB RBR JJ IN VBG JJ NNS IN NNP POS NNS .\nShe also said any military action taken inside Pakistan must only be conducted by Pakistani forces .\tPRP RB VBD DT JJ NN VBN IN NNP MD RB VB VBN IN JJ NNS .\nNine civilians died when a rocket fired by NATO forces on Saturday hit a building in Pakistan 's North Waziristan province .\tCD NNS VBD WRB DT NN VBN IN NNP NNS IN NNP VBD DT NN IN NNP POS NNP NNP NN .\nAt the time , NATO says it was battling Taleban insurgents near the Afghan-Pakistan border .\tIN DT NN , NNP VBZ PRP VBD VBG NNP NNS IN DT JJ NN .\nThe spokeswoman says Pakistan has issued a complaint with NATO .\tDT NN VBZ NNP VBZ VBN DT NN IN NNP .\nCivilian deaths during NATO and U.S.-led military operations in Afghanistan have prompted sharp criticism from Afghan officials , including President Hamid Karzai .\tJJ NNS IN NNP CC JJ JJ NNS IN NNP VBP VBN JJ NN IN JJ NNS , VBG NNP NNP NNP .\nNATO officials have said they are reviewing their rules of engagement to limit civilian causalities but have also blamed Taleban militants for using civilians as human shields .\tNNP NNS VBP VBN PRP VBP VBG PRP$ NNS IN NN TO VB JJ NNS CC VBP RB VBN NNP NNS IN VBG NNS IN JJ NNS .\nOfficials in Kyrgyzstan say they have detained about 50 people after hundreds of looters tore through a Kurdish village to protest the rape of a four year-old Russian girl .\tNNS IN NNP VBP PRP VBP VBN IN CD NNS IN NNS IN NNS VBD IN DT JJ NN TO VB DT NN IN DT CD JJ JJ NN .\nOfficials said Monday the group is being held on charges of mass disorder .\tNNS VBD NNP DT NN VBZ VBG VBN IN NNS IN JJ NN .\nThe riots began Sunday after news spread that a Kurdish suspect in the rape was being held in the village of Petrovka .\tDT NNS VBD NNP IN NN VBD IN DT JJ NN IN DT NN VBD VBG VBN IN DT NN IN NNP .\nEthnic Russian and Kyrgyz protesters charged through the village , smashing windows and overturning cars belonging to ethnic Kurds .\tNNP JJ CC JJ NNS VBD IN DT NN , VBG NNS CC VBG NNS VBG TO JJ NNS .\nInterior Minister spokesman Bakyt Seitov says the situation is under control .\tNNP NNP NN NNP NNP VBZ DT NN VBZ IN NN .\nOfficials say such ethnic clashes are rare in Kyrgyzstan , a former Soviet republic where Turkic-speaking groups live along side Russians , Chinese and others .\tNNS VBP JJ JJ NNS VBP JJ IN NNP , DT JJ JJ NN WRB JJ NNS VBP IN JJ NNS , NNS CC NNS .\nPolice in the Nepalese capital , Kathmandu , detained at least 16 more activists Monday , who were protesting against King Gyanendra 's seizure of absolute power .\tNNS IN DT JJ NN , NNP , VBD IN JJS CD JJR NNS NNP , WP VBD VBG IN NNP NNP POS NN IN JJ NN .\nThe protesters defied a ban on demonstrations and gathered near the Central Secretariat building , shouting slogans like ' down with autocracy , we want democracy . '\tDT NNS VBD DT NN IN NNS CC VBD IN DT NNP NNP NN , VBG NNS IN `` RP IN NN , PRP VBP NN . ``\nSunday , seven activists - all members of the Nepali Congress party - were arrested after staging a similar protest .\tNNP , CD NNS IN DT NNS IN DT NNP NNP NN : VBD VBN IN VBG DT JJ NN .\nMeanwhile , the Nepalese army said Maoist rebels kidnapped and killed three unarmed soldiers in the eastern Ramechhap district Saturday .\tRB , DT JJ NN VBD JJ NNS VBN CC VBN CD JJ NNS IN DT JJ NN NN NNP .\nNepal 's king dismissed the government and assumed all powers on February first , saying the government had failed to stop the Maoist insurgency .\tNNP POS NN VBD DT NN CC VBD DT NNS IN NNP RB , VBG DT NN VBD VBN TO VB DT NNP NN .\nRebels have been fighting nearly a decade to replace Nepal 's monarchy with a communist state .\tNNS VBP VBN VBG RB DT NN TO VB NNP POS NN IN DT JJ NN .\nRussian human rights advocates and liberal politicians gathered in Moscow Monday to criticize President Vladimir Putin and call for unity by opposition groups .\tJJ JJ NNS NNS CC JJ NNS VBD IN NNP NNP TO VB NNP NNP NNP CC VB IN NN IN NN NNS .\nSpeakers at the congress slammed Mr. Putin for decisions they say are steadily moving Russia back into an authoritarian state .\tNNS IN DT NN VBD NNP NNP IN NNS PRP VBP VBP RB VBG NNP RB IN DT JJ NN .\nAmong those attending were former world chess champion Gary Kasparov and ex-Prime Minister Mikhail Kasyanov .\tIN DT VBG VBD JJ NN NN NN NNP NNP CC NNP NNP NNP NNP .\nRussia 's political liberals are gearing up for the 2007 parliamentary elections and the 2008 presidential election .\tNNP POS JJ NNS VBP VBG RP IN DT CD JJ NNS CC DT CD JJ NN .\nMeanwhile , Mr. Putin made a surprise visit to Chechnya Monday to attend the opening of the troubled province 's new parliament .\tRB , NNP NNP VBD DT NN NN TO NNP NNP TO VB DT NN IN DT JJ NN POS JJ NN .\nThe president traveled to the capital city of Grozny by helicopter .\tDT NN VBD TO DT NN NN IN NNP IN NN .\nThousands of Russian troops have died in continued fighting with Chechen rebels since Mr. Putin assumed power in 1999 .\tNNS IN JJ NNS VBP VBN IN JJ NN IN JJ NNS IN NNP NNP VBD NN IN CD .\nThe Central Intelligence Agency , CIA , says Iraq has become a magnet for international terrorist activity and provides an ideal training ground for terrorists to enhance their skills .\tDT NNP NNP NNP , NNP , VBZ NNP VBZ VBN DT NN IN JJ JJ NN CC VBZ DT JJ NN NN IN NNS TO VB PRP$ NNS .\nIn a report on long-term global trends released Thursday , the CIA says political Islam will have a significant impact in the next 15 years , rallying disparate ethnic and national groups and possibly creating an authority that transcends national boundaries .\tIN DT NN IN JJ JJ NNS VBN NNP , DT NNP VBZ JJ NNP MD VB DT JJ NN IN DT JJ CD NNS , VBG JJ JJ CC JJ NNS CC RB VBG DT NN WDT VBZ JJ NNS .\nIt says al-Qaida will likely be superseded by other Islamic extremist groups that merge with local separatist movements .\tPRP VBZ NNP MD RB VB VBN IN JJ JJ NN NNS WDT VBP IN JJ JJ NNS .\nThe CIA says the prospect of a biological or nuclear weapons attack remains the greatest danger facing the United States .\tDT NNP VBZ DT NN IN DT JJ CC JJ NNS NN VBZ DT JJS NN VBG DT NNP NNPS .\nAnalysts also say globalization will be the dominant force in the next 15 years and will generate enormous economic , cultural and political changes across the planet .\tNNS RB VBP NN MD VB DT JJ NN IN DT JJ CD NNS CC MD VB JJ JJ , JJ CC JJ NNS IN DT NN .\nU.S. business tycoon Donald Trump intends to build a high-rise building in the former Soviet republic of Georgia .\tNNP NN NN NNP NNP VBZ TO VB DT JJ NN IN DT JJ JJ NN IN NNP .\nGeorgia 's presidential press office and the Trump organization confirmed Wednesday that Trump had signed a letter of intent to build one of his self-named towers in the country .\tNNP POS JJ NN NN CC DT NNP NN VBD NNP IN NNP VBD VBN DT NN IN NN TO VB CD IN PRP$ JJ NNS IN DT NN .\nTrump signed the deal with the Georgian business group Silk Road during a visit of President Mikheil Saakashvili to New York .\tNNP VBD DT NN IN DT JJ NN NN NNP NNP IN DT NN IN NNP NNP NNP TO NNP NNP .\nAn executive vice president of the Trump organization , Michael Cohen , said Mr. Saakashvili was present at the signing .\tDT JJ NN NN IN DT NNP NN , NNP NNP , VBD NNP NNP VBD JJ IN DT NN .\nCohen said in a statement that while the letter of intent was just the first in a series of agreements , it demonstrated Trump 's interest in investing in Georgia .\tNNP VBD IN DT NN IN IN DT NN IN NN VBD RB DT NN IN DT NN IN NNS , PRP VBD NNP POS NN IN VBG IN NNP .\nMr. Saakashvili 's press office said potential sites for the development included Tbilisi and along the Black Sea coast .\tNNP NNP POS NN NN VBD JJ NNS IN DT NN VBD NNP CC IN DT NNP NNP NN .\nA suicide car bomber in northern Iraq has killed at least 20 people at the funeral of a local Kurdish official .\tDT NN NN NN IN JJ NNP VBZ VBN IN JJS CD NNS IN DT NN IN DT JJ NNP NN .\nThe blast in Tal Afar wounded 30 others taking part in the funeral procession .\tDT NN IN NNP NNP VBD CD NNS VBG NN IN DT JJ NN .\nIn Baghdad , insurgents gunned down five Iraqi policemen at a checkpoint Sunday .\tIN NNP , NNS VBD RP CD JJ NNS IN DT NN NNP .\nAnd a car bomber killed four Iraqis in an attack on a U.S. military convoy .\tCC DT NN NN VBD CD NNS IN DT NN IN DT NNP JJ NN .\nIn other developments , a new video shows a bound blond-haired man claiming to be a 63-year-old Australian national surrounded by gunmen and urging coalition forces to leave Iraq .\tIN JJ NNS , DT JJ NN VBZ DT VBN JJ NN VBG TO VB DT JJ JJ NN VBN IN NNS CC VBG NN NNS TO VB NNP .\nAuthorities are working to authenticate the tape .\tNNS VBP VBG TO VB DT NN .\nMeanwhile , Iraqi police say five suspects arrested in the kidnapping and murder of British aid worker Margaret Hassan have admitted involvement in her death .\tRB , JJ NNS VBP CD NNS VBN IN DT NN CC NN IN JJ NN NN NNP NNP VBP VBN NN IN PRP$ NN .\nHe says they were detained early Sunday south of Baghdad .\tPRP VBZ PRP VBD VBN JJ NNP NN IN NNP .\nAuthorities in Tajikistan are tearing down advertisements for mobile telephones , after President Emomali Rakhmon criticized use of the devices .\tNNS IN NNP VBP VBG RP NNS IN JJ NNS , IN NNP NNP NNP VBD NN IN DT NNS .\nThe leader of the Central Asian nation says people are spending too much of their monthly income on mobile phone service .\tDT NN IN DT NNP NNP NN VBZ NNS VBP VBG RB RB IN PRP$ JJ NN IN JJ NN NN .\nPresident Rakhmon has also warned of potential health hazards stemming from mobile phone use .\tNNP NNP VBZ RB VBN IN JJ NN NNS VBG IN JJ NN NN .\nMore than 70 percent of Tajikistan 's population of more than seven million own mobile phones .\tJJR IN CD NN IN NNP POS NN IN JJR IN CD CD VBP JJ NNS .\nTajik mobile phone companies say the restrictions on advertising and other measures will hurt the development of the mobile telecommunications industry which they say has been flourishing in the country .\tJJ JJ NN NNS VBP DT NNS IN NN CC JJ NNS MD VB DT NN IN DT JJ NN NN WDT PRP VBP VBZ VBN VBG IN DT NN .\nChinese state media say the most famous Buddhist temple in Tibet has opened its doors again to worshippers .\tJJ NN NNS VBP DT RBS JJ NN NN IN NNP VBZ VBN PRP$ NNS RB TO NNS .\nChinese authorities shut down the Jokhang Temple , in the Tibetan capital of Lhasa , after a series of protests by Tibetan monks in March .\tJJ NNS VBD RP DT NNP NNP , IN DT JJ NN IN NNP , IN DT NN IN NNS IN JJ NNS IN NNP .\nThe protests , initially peacefully , eventually led to violent clashes between the monks and Chinese authorities .\tDT NNS , RB RB , RB VBD TO JJ NNS IN DT NNS CC JJ NNS .\nThe Xinhua news agency said the temple had reopened Friday .\tDT NNP NN NN VBD DT NN VBD VBN NNP .\nThe agency reported that an estimated 400 Buddhist pilgrims and 40 tourists had visited the temple within hours after it opened again .\tDT NN VBD IN DT VBN CD NNP NNS CC CD NNS VBD VBN DT NN IN NNS IN PRP VBD RB .\nChina has accused the Dalai Lama , Tibet 's exiled spiritual leader , of provoking unrest as part of a bid for Tibetan independence .\tNNP VBZ VBN DT NNP NNP , NNP POS JJ JJ NN , IN VBG NN IN NN IN DT NN IN JJ NN .\nThe Dalai Lama says that he wants autonomy , but not independence , for the region .\tDT NNP NNP VBZ IN PRP VBZ NN , CC RB NN , IN DT NN .\nChinese agricultural authorities have reported an outbreak of bird flu among poultry in Tibet .\tJJ JJ NNS VBP VBN DT NN IN NN NN IN NN IN NNP .\nChina 's official Xinhua News Agency says the outbreak occurred in Tibet 's Gongga county , which lies about 50 kilometers outside the capital , Lhasa .\tNNP POS JJ NNP NNP NNP VBZ DT NN VBD IN NNP POS NNP NN , WDT VBZ IN CD NNS IN DT NN , NNP .\nXinhua says the outbreak , of the deadly H5N1 strain of the virus , had been suspected since January 25 , and was confirmed Tuesday .\tNNP VBZ DT NN , IN DT JJ NNP NN IN DT NN , VBD VBN VBN IN NNP CD , CC VBD VBN NNP .\nThe Ministry of Agriculture says efforts are underway to contain the outbreak .\tDT NNP IN NNP VBZ NNS VBP JJ TO VB DT NN .\nOne thousand birds have died from the virus , more than 1,300 others have been culled to prevent it from spreading .\tCD CD NNS VBP VBN IN DT NN , JJR IN CD NNS VBP VBN VBN TO VB PRP IN VBG .\nNo human infections have been reported .\tDT JJ NNS VBP VBN VBN .\nBird flu remains difficult for humans to catch but scientists worry it could mutate into a form that passes easily between people .\tNNP NN VBZ JJ IN NNS TO VB CC NNS VBP PRP MD VB IN DT NN WDT VBZ RB IN NNS .\nThe World Health Organization says the bird flu virus has killed more than 200 people worldwide since 2003 , mostly in Asia .\tDT NNP NNP NNP VBZ DT NN NN NN VBZ VBN JJR IN CD NNS JJ IN CD , RB IN NNP .\nWitnesses in southwestern Somalia say fighting between government troops and Islamist militants has killed at least 14 people .\tNNS IN JJ NNP VBP VBG IN NN NNS CC NNP NNS VBZ VBN IN JJS CD NNS .\nThe clash broke out Wednesday in the Bakool region , after government troops attacked a base belonging to the al-Shabab militant group in the Rabdhure district .\tDT NN VBD RP NNP IN DT NNP NN , IN NN NNS VBD DT NN VBG TO DT JJ JJ NN IN DT NNP NN .\nHeavy gunfire was exchanged and at least one vehicle was burned .\tJJ NN VBD VBN CC IN JJS CD NN VBD VBN .\nAnother vehicle was reported to have been captured by the militants .\tDT NN VBD VBN TO VB VBN VBN IN DT NNS .\nAl-Shabab controls much of southern and central Somalia after a two-year insurgency , and has moved to impose its own strict form of Islamic law in areas under its control .\tNNP VBZ NN IN JJ CC JJ NNP IN DT JJ NN , CC VBZ VBN TO VB PRP$ JJ JJ NN IN JJ NN IN NNS IN PRP$ NN .\nLast week , Somalia 's cabinet voted to make Sharia the basis of Somalia 's legal system , in an effort to appease the insurgents .\tJJ NN , NNP POS NN VBD TO VB NNP DT NN IN NNP POS JJ NN , IN DT NN TO VB DT NNS .\nPakistani authorities say they have arrested two suspected suicide bombers who were allegedly planning to attack a mosque and government buildings in the capital , Islamabad .\tJJ NNS VBP PRP VBP VBN CD JJ NN NNS WP VBD RB VBG TO VB DT NN CC NN NNS IN DT NN , NNP .\nBin Amin , a senior police official in the capital , says authorities are looking for others who may be involved in the alleged plot .\tNNP NNP , DT JJ NN NN IN DT NN , VBZ NNS VBP VBG IN NNS WP MD VB VBN IN DT JJ NN .\nHe told the Associated Press the men were linked to the Pakistani Taliban in the country 's South Waziristan region .\tPRP VBD DT NNP NNP DT NNS VBD VBN TO DT JJ NNP IN DT NN POS NNP NNP NN .\nThe alleged plot was set to be carried out in an exclusive and high security neighborhood in Islamabad , where many foreign embassies , Pakistan 's parliament and government ministries are located .\tDT JJ NN VBD VBN TO VB VBN RP IN DT JJ CC JJ NN NN IN NNP , WRB JJ JJ NNS , NNP POS NN CC NN NNS VBP VBN .\nThe last terrorist attack in Islamabad took place in October 2009 , when a suicide bomber killed five U.N. staffers at the Islamabad office of the World Food Program .\tDT JJ JJ NN IN NNP VBD NN IN NNP CD , WRB DT NN NN VBD CD NNP NNS IN DT NNP NN IN DT NNP NNP NNP .\nIn September 2008 a massive truck bomb destroyed Islamabad 's Marriott Hotel killing at least 60 people .\tIN NNP CD DT JJ NN NN VBD NNP POS NNP NNP VBG IN JJS CD NNS .\nFrance 's presidential election finalists are to debate Wednesday , in a two-hour , televised event ahead of this Sunday 's vote .\tNNP POS JJ NN NNS VBP TO VB NNP , IN DT JJ , JJ NN RB IN DT NNP POS NN .\nThe debate between conservative frontrunner Nicholas Sarkozy and Socialist Segolene Royal begins at 9.00 p.m. local time ( 1900 UTC ) and is expected to draw more than 20 million French viewers - an audience size usually reserved for World Cup soccer finals .\tDT NN IN JJ NN NNP NNP CC NNP NNP NNP VBZ IN CD RB JJ NN LRB CD NNP RRB CC VBZ VBN TO VB JJR IN CD CD JJ NNS IN DT NN NN RB VBN IN NNP NNP NN NNS .\nThe latest opinion poll shows Sarkozy maintaining at least a four percentage point lead over Royal .\tDT JJS NN NN VBZ NNP VBG IN JJS DT CD NN NN NN IN NNP .\nOn Tuesday , the fourth-place finisher in the April 22 first-round vote , ultra-conservative Jean-Marie Le Pen , urged his supporters to boycott the run-off election .\tIN NNP , DT JJ NN IN DT NNP CD JJ NN , JJ NNP NNP NNP , VBD PRP$ NNS TO VB DT JJ NN .\nThe third-place finisher , centrist Francois Bayrou , has not formally backed either candidate .\tDT JJ NN , NN NNP NNP , VBZ RB RB VBN DT NN .\nRussia 's President Vladimir Putin was meeting President Bush at the White House Friday for talks on bilateral and global issues .\tNNP POS NNP NNP NNP VBD VBG NNP NNP IN DT NNP NNP NNP IN NNS IN NN CC JJ NNS .\nWhite House officials have said the talks will focus on deepening the U.S.-Russian partnership to face current challenges and opportunities .\tNNP NNP NNS VBP VBN DT NNS MD VB IN VBG DT JJ NN TO VB JJ NNS CC NNS .\nRelations between the two leaders have been strained recently by differences over Iran 's nuclear program .\tNNP IN DT CD NNS VBP VBN VBN RB IN NNS IN NNP POS JJ NN .\nMr. Putin supports Iran 's right to develop nuclear technology , while Mr. Bush warns that the Islamic republic may be seeking nuclear weapons .\tNNP NNP VBZ NNP POS NN TO VB JJ NN , IN NNP NNP VBZ IN DT JJ NN MD VB VBG JJ NNS .\nMr. Putin traveled to Washington after addressing the United Nations World Summit in New York on Thursday .\tNNP NNP VBD TO NNP IN VBG DT NNP NNP NNP NNP IN NNP NNP IN NNP .\nIn his speech , he warned terrorism is the main threat to human rights and development , and called on the United Nations to be the center for international anti-terrorism efforts .\tIN PRP$ NN , PRP VBD NN VBZ DT JJ NN TO JJ NNS CC NN , CC VBD IN DT NNP NNPS TO VB DT NN IN JJ JJ NNS .\nThe Bush administration is asking the state of Texas to hold new hearings for 51 Mexicans on death row , who say they were denied consular assistance in violation of international law .\tDT NNP NN VBZ VBG DT NN IN NNP TO VB JJ NNS IN CD NNS IN NN NN , WP VBP PRP VBD VBN JJ NN IN NN IN JJ NN .\nThe move is in response to a 2004 ruling by the International Court of Justice , which said Texas officials failed to notify the Mexicans of their right to talk to consular officials shortly after their arrests .\tDT NN VBZ IN NN TO DT CD NN IN DT NNP NNP IN NNP , WDT VBD NNP NNS VBD TO VB DT NNS IN PRP$ NN TO VB TO JJ NNS RB IN PRP$ NNS .\nU.S. officials said in a recent Supreme Court filing that complying with the World Court 's decision will help protect the interests of U.S. citizens abroad and underscore America 's commitment to international law .\tNNP NNS VBD IN DT JJ NNP NNP NN WDT VBG IN DT NNP NNP POS NN MD VB VB DT NNS IN NNP NNS RB CC VB NNP POS NN TO JJ NN .\nThe decision comes just weeks ahead of a U.S. Supreme Court hearing in the case of Jose Medellin , one of five gang members sentenced to death for the rape and murder of two Texas girls in 1993 .\tDT NN VBZ RB NNS RB IN DT NNP NNP NNP NN IN DT NN IN NNP NNP , CD IN CD NN NNS VBD TO NN IN DT NN CC NN IN CD NNP NNS IN CD .\nColeco Industries Inc. , a once high-flying toy maker whose stock peaked at $ 65 a share in the early 1980s , filed a Chapter 11 reorganization plan that provides just 1.125 cents a share for common stockholders .\tNNP NNPS NNP , DT RB JJ NN NN WP$ NN VBD IN $ CD DT NN IN DT JJ NNS , VBN DT NN CD NN NN WDT VBZ RB CD NNS DT NN IN JJ NNS .\nUnder the plan , unsecured creditors , who are owed about $ 430 million , would receive about $ 92 million , or 21 cents for each dollar they are owed .\tIN DT NN , JJ NNS , WP VBP VBN IN $ CD CD , MD VB IN $ CD CD , CC CD NNS IN DT NN PRP VBP VBN .\nIn addition , they will receive stock in the reorganized company , which will be named Ranger Industries Inc .\tIN NN , PRP MD VB NN IN DT VBN NN , WDT MD VB VBN NNP NNPS NNP .\nAfter these payments , about $ 2,25,000 will be available for the 20 million common shares outstanding .\tIN DT NNS , IN $ CD MD VB JJ IN DT CD CD JJ NNS JJ .\nThe Avon , Conn. , company 's stock hit a high in 1983 after it unveiled its Adam home computer , but the product was plagued with glitches and the company 's fortunes plunged .\tDT NNP , NNP , NN POS NN VBD DT NN IN CD IN PRP VBD PRP$ NNP NN NN , CC DT NN VBD VBN IN NNS CC DT NN POS NNS VBD .\nBut Coleco bounced back with the introduction of the Cabbage Patch dolls , whose sales hit $ 600 million in 1985 .\tCC NNP VBD RB IN DT NN IN DT NNP NNP NNS , WP$ NNS VBD $ CD CD IN CD .\nBut as the craze died , Coleco failed to come up with another winner and filed for bankruptcy-law protection in July 1988 .\tCC IN DT NN VBD , NNP VBD TO VB RP IN DT NN CC VBN IN NN NN IN NNP CD .\nThe plan was filed jointly with unsecured creditors in federal bankruptcy court in New York and must be approved by the court .\tDT NN VBD VBN RB IN JJ NNS IN JJ NN NN IN NNP NNP CC MD VB VBN IN DT NN .\nComoros has endured more than 20 coups or attempted coups since gaining independence from France in 1975 .\tNNP VBZ VBN JJR IN CD NNS CC VBN NNS IN VBG NN IN NNP IN CD .\nIn 1997 , the islands of Anjouan and Moheli declared independence from Comoros .\tIN CD , DT NNS IN NNP CC NNP VBD NN IN NNP .\nIn 1999 , military chief Col. AZALI seized power in a bloodless coup , and helped negotiate the 2000 Fomboni Accords power-sharing agreement in which the federal presidency rotates among the three islands , and each island maintains its own local government .\tIN CD , NN NN NNP NNP VBD NN IN DT JJ NN , CC VBD VB DT CD NNP NNPS JJ NN IN WDT DT JJ NN VBZ IN DT CD NNS , CC DT NN VBZ PRP$ JJ JJ NN .\nAZALI won the 2002 presidential election , and each island in the archipelago elected its own president .\tNNP VBD DT CD JJ NN , CC DT NN IN DT NN VBD PRP$ JJ NN .\nAZALI stepped down in 2006 and President SAMBI was elected to office .\tNNP VBD RP IN CD CC NNP NNP VBD VBN TO NN .\nIn 2007 , Mohamed BACAR effected Anjouan 's de-facto secession from the Union , refusing to step down in favor of fresh Anjouanais elections when Comoros ' other islands held legitimate elections in July .\tIN CD , NNP NNP VBD NNP POS JJ NN IN DT NNP , VBG TO VB RB IN NN IN JJ NNP NNS WRB NNS POS JJ NNS VBD JJ NNS IN NNP .\nThe African Union ( AU ) initially attempted to resolve the political crisis by applying sanctions and a naval blockade on Anjouan , but in March 2008 , AU and Comoran soldiers seized the island .\tDT NNP NNP LRB NNP RRB RB VBN TO VB DT JJ NN IN VBG NNS CC DT JJ NN IN NNP , CC IN NNP CD , NNP CC NNP NNS VBD DT NN .\nThe move was generally welcomed by the island 's inhabitants .\tDT NN VBD RB VBN IN DT NN POS NNS .\nThe Holy See is supported financially by a variety of sources , including investments , real estate income , and donations from Catholic individuals , dioceses , and institutions ; these help fund the Roman Curia ( Vatican bureaucracy ) , diplomatic missions , and media outlets .\tDT NNP NNP VBZ VBN RB IN DT NN IN NNS , VBG NNS , JJ NN NN , CC NNS IN NNP NNS , NNS , CC NNS ; DT NN VB DT NNP NNP LRB NNP NN RRB , JJ NNS , CC NNS NNS .\nThe separate Vatican City State budget includes the Vatican museums and post office and is supported financially by the sale of stamps , coins , medals , and tourist mementos ; by fees for admission to museums ; and by publications sales .\tDT JJ NNP NNP NNP NN VBZ DT NNP NNS CC NN NN CC VBZ VBN RB IN DT NN IN NNS , NNS , NNS , CC NN NNS ; IN NNS IN NN TO NNS ; CC IN NNS NNS .\nMoreover , an annual collection taken up in dioceses and direct donations go to a non-budgetary fund known as Peter 's Pence , which is used directly by the Pope for charity , disaster relief , and aid to churches in developing nations .\tRB , DT JJ NN VBN RP IN NNS CC JJ NNS VBP TO DT JJ NN VBN IN NNP POS NNP , WDT VBZ VBN RB IN DT NNP IN NN , NN NN , CC NN TO NNS IN VBG NNS .\nThe incomes and living standards of lay workers are comparable to those of counterparts who work in the city of Rome .\tDT NNS CC VBG NNS IN JJ NNS VBP JJ TO DT IN NNS WP VBP IN DT NN IN NNP .\nBolivia , named after independence fighter Simon BOLIVAR , broke away from Spanish rule in 1825 ; much of its subsequent history has consisted of a series of nearly 200 coups and countercoups .\tNNP , VBN IN NN NN NNP NNP , VBD RB IN JJ NN IN CD ; NN IN PRP$ JJ NN VBZ VBN IN DT NN IN RB CD NNS CC NNS .\nDemocratic civilian rule was established in 1982 , but leaders have faced difficult problems of deep-seated poverty , social unrest , and illegal drug production .\tJJ JJ NN VBD VBN IN CD , CC NNS VBP VBN JJ NNS IN JJ NN , JJ NN , CC JJ NN NN .\nIn December 2005 , Bolivians elected Movement Toward Socialism leader Evo MORALES president - by the widest margin of any leader since the restoration of civilian rule in 1982 - after he ran on a promise to change the country 's traditional political class and empower the nation 's poor , indigenous majority .\tIN NNP CD , NNS VBD NNP NNP NNP NN NNP NNP NN : IN DT JJS NN IN DT NN IN DT NN IN JJ NN IN CD : IN PRP VBD IN DT NN TO VB DT NN POS JJ JJ NN CC VB DT NN POS NN , JJ NN .\nHowever , since taking office , his controversial strategies have exacerbated racial and economic tensions between the Amerindian populations of the Andean west and the non-indigenous communities of the eastern lowlands .\tRB , IN VBG NN , PRP$ JJ NNS VBP VBN JJ CC JJ NNS IN DT JJ NNS IN DT NNP NN CC DT JJ NNS IN DT JJ NNS .\nIn December 2009 , President MORALES easily won reelection , and his party took control of the legislative branch of the government , which will allow him to continue his process of change .\tIN NNP CD , NNP NNP RB VBD NN , CC PRP$ NN VBD NN IN DT JJ NN IN DT NN , WDT MD VB PRP TO VB PRP$ NN IN NN .\nEstonia , a 2004 European Union entrant , has a modern market-based economy and one of the higher per capita income levels in Central Europe and the Baltic region .\tNNP , DT CD NNP NNP NN , VBZ DT JJ JJ NN CC CD IN DT JJR IN NN NN NNS IN NNP NNP CC DT JJ NN .\nEstonia 's successive governments have pursued a free market , pro-business economic agenda and have wavered little in their commitment to pro-market reforms .\tNNP POS JJ NNS VBP VBN DT JJ NN , JJ JJ NN CC VBP VBN RB IN PRP$ NN TO JJ NNS .\nThe current government has followed relatively sound fiscal policies that have resulted in balanced budgets and very low public debt .\tDT JJ NN VBZ VBN RB JJ JJ NNS WDT VBP VBN IN JJ NNS CC RB JJ JJ NN .\nThe economy benefits from strong electronics and telecommunications sectors and strong trade ties with Finland , Sweden , and Germany .\tDT NN NNS IN JJ NNS CC NNS NNS CC JJ NN NNS IN NNP , NNP , CC NNP .\nTallinn 's priority has been to sustain high growth rates - on average 8 % per year from 2003 to 2007 .\tNNP POS NN VBZ VBN TO VB JJ NN NNS : IN JJ CD NN IN NN IN CD TO CD .\nEstonia 's economy slowed down markedly and fell sharply into recession in mid-2008 , primarily as a result of an investment and consumption slump following the bursting of the real estate market bubble .\tNNP POS NN VBD RB RB CC VBD RB IN NN IN CD , RB IN DT NN IN DT NN CC NN NN VBG DT NN IN DT JJ NN NN NN .\nGDP dropped nearly 14 % in 2009 , among the world 's highest rates of contraction .\tNN VBD RB CD NN IN CD , IN DT NN POS JJS NNS IN NN .\nRising exports to Sweden and Finland lead an economic recovery in 2010 , but unemployment stands above 17 % .\tVBG NNS TO NNP CC NNP VBP DT JJ NN IN CD , CC NN NNS IN CD NN .\nEstonia joined the OECD in December 2010 and adopted the euro in January 2011 .\tNNP VBD DT NNP IN NNP CD CC VBD DT NN IN NNP CD .\nItaly became a nation-state in 1861 when the regional states of the peninsula , along with Sardinia and Sicily , were united under King Victor EMMANUEL II .\tNNP VBD DT NN IN CD WRB DT JJ NNS IN DT NN , IN IN NNP CC NNP , VBD VBN IN NNP NNP NNP NNP .\nAn era of parliamentary government came to a close in the early 1920s when Benito MUSSOLINI established a Fascist dictatorship .\tDT NN IN JJ NN VBD TO DT NN IN DT JJ NNS WRB NNP NNP VBD DT NN NN .\nHis alliance with Nazi Germany led to Italy 's defeat in World War II .\tPRP$ NN IN NNP NNP VBD TO NNP POS NN IN NNP NNP NNP .\nA democratic republic replaced the monarchy in 1946 and economic revival followed .\tDT JJ NN VBD DT NN IN CD CC JJ NN VBD .\nItaly was a charter member of NATO and the European Economic Community ( EEC ) .\tNNP VBD DT NN NN IN NNP CC DT JJ NNP NNP LRB NNP RRB .\nIt has been at the forefront of European economic and political unification , joining the Economic and Monetary Union in 1999 .\tPRP VBZ VBN IN DT NN IN JJ JJ CC JJ NN , VBG DT NNP CC NNP NNP IN CD .\nPersistent problems include illegal immigration , organized crime , corruption , high unemployment , sluggish economic growth , and the low incomes and technical standards of southern Italy compared with the prosperous north .\tJJ NNS VBP JJ NN , VBN NN , NN , JJ NN , JJ JJ NN , CC DT JJ NNS CC JJ NNS IN JJ NNP VBN IN DT JJ NN .\nIndonesia , a vast polyglot nation , has weathered the global financial crisis relatively smoothly because of its heavy reliance on domestic consumption as the driver of economic growth .\tNNP , DT JJ NN NN , VBZ VBN DT JJ JJ NN RB RB IN IN PRP$ JJ NN IN JJ NN IN DT NN IN JJ NN .\nIncreasing investment by both local and foreign investors is also supporting solid growth .\tVBG NN IN DT JJ CC JJ NNS VBZ RB VBG JJ NN .\nAlthough the economy slowed to 4.5 % growth in 2009 from the 6 %-plus growth rate recorded in 2007 and 2008 , by 2010 growth returned to a 6 % rate .\tIN DT NN VBD TO CD NN NN IN CD IN DT CD JJ NN NN VBN IN CD CC CD , IN CD NN VBD TO DT CD NN NN .\nDuring the recession , Indonesia outperformed most of its regional neighbors .\tIN DT NN , NNP VBD JJS IN PRP$ JJ NNS .\nThe government made economic advances under the first administration of President YUDHOYONO , introducing significant reforms in the financial sector , including tax and customs reforms , the use of Treasury bills , and capital market development and supervision .\tDT NN VBD JJ NNS IN DT JJ NN IN NNP NNP , VBG JJ NNS IN DT JJ NN , VBG NN CC NNS NNS , DT NN IN NNP NNS , CC NN NN NN CC NN .\nIndonesia 's debt-to-GDP ratio in recent years has declined steadily because of increasingly robust GDP growth and sound fiscal stewardship , leading two of the three leading credit agencies to upgrade credit ratings for Indonesia 's sovereign debt to one notch below investment grade .\tNNP POS JJ NN IN JJ NNS VBZ VBN RB IN IN RB JJ NN NN CC JJ JJ NN , VBG CD IN DT CD VBG NN NNS TO VB NN NNS IN NNP POS JJ NN TO CD NN IN NN NN .\nIndonesia still struggles with poverty and unemployment , inadequate infrastructure , corruption , a complex regulatory environment , and unequal resource distribution among regions .\tNNP RB VBZ IN NN CC NN , JJ NN , NN , DT JJ JJ NN , CC JJ NN NN IN NNS .\nYUDHOYONO and his vice president , respected economist BOEDIONO , have maintained broad continuity of economic policy , although the economic reform agenda has been slowed during the first year of their term by corruption scandals and the departure of an internationally respected finance minister .\tNNP CC PRP$ NN NN , JJ NN NNP , VBP VBN JJ NN IN JJ NN , IN DT JJ NN NN VBZ VBN VBN IN DT JJ NN IN PRP$ NN IN NN NNS CC DT NN IN DT RB JJ NN NN .\nIn late 2010 , increasing inflation , driven by higher and volatile food prices , posed an increasing challenge to economic policymakers and threatened to push millions of the near-poor below the poverty line .\tIN JJ CD , VBG NN , VBN IN JJR CC JJ NN NNS , VBD DT VBG NN TO JJ NNS CC VBD TO VB NNS IN DT JJ IN DT NN NN .\nThe government in 2011 faces the ongoing challenge of improving Indonesia 's infrastructure to remove impediments to growth , while addressing climate change concerns , particularly with regard to conserving Indonesia 's forests and peatlands , the focus of a potentially trailblazing $ 1 billion REDD+ pilot project .\tDT NN IN CD VBZ DT JJ NN IN VBG NNP POS NN TO VB NNS TO NN , IN VBG NN NN NNS , RB IN NN TO VBG NNP POS NNS CC NNS , DT NN IN DT RB VBG $ CD CD NNP NN NN .\nA WOLF , who in devouring a man had choked himself with a bunch of keys , asked an ostrich to put her head down his throat and pull them out , which she did .\tDT NN , WP IN VBG DT NN VBD VBN PRP IN DT NN IN NNS , VBD DT NN TO VB PRP$ NN IN PRP$ NN CC VB PRP RP , WDT PRP VBD .\n' I suppose , ' said the Wolf , ' you expect payment for that service . '\t`` PRP VBP , `` VBD DT NN , `` PRP VBP NN IN DT NN . ``\n' A kind act , ' replied the Ostrich , ' is its own reward ; I have eaten the keys . '\t`` DT NN NN , `` VBD DT NN , `` VBZ PRP$ JJ NN ; PRP VBP VBN DT NNS . ``\nTo err is human .\tTO VB VBZ JJ .\nTo put the blame on someone else is doubles .\tTO VB DT NN IN DT RB VBZ NNS .\nAT&T fired President John Walter after nine months , saying he lacked intellectual leadership .\tNNP VBD NNP NNP NNP IN CD NNS , VBG PRP VBD JJ NN .\nHe received a $ 26 million severance package .\tPRP VBD DT $ CD CD NN NN .\nPerhaps it 's not Walter who 's lacking intelligence .\tRB PRP VBZ RB NNP WP VBZ VBG NN .\nPope John Paul II The Vatican has released the spiritual testament of Pope John Paul II .\tNNP NNP NNP NNP DT NNP VBZ VBN DT JJ NN IN NNP NNP NNP NNP .\nIn the document , the pontiff said he considered resigning in 2000 .\tIN DT NN , DT NN VBD PRP VBD VBG IN CD .\nHe also said he thought about being buried in his native Poland , but decided to leave that decision up to the College of Cardinals .\tPRP RB VBD PRP VBD IN VBG VBN IN PRP$ JJ NNP , CC VBD TO VB DT NN RB TO DT NNP IN NNPS .\nThe pope requested that his personal notes be destroyed , and said he left no material property .\tDT NN VBD IN PRP$ JJ NNS VB VBN , CC VBD PRP VBD DT NN NN .\nHe began writing the document a quarter-century ago , and also reflected on his family and youth , and said it was a miracle he survived an assassination attempt in 1981 .\tPRP VBD VBG DT NN DT NN RB , CC RB VBD IN PRP$ NN CC NN , CC VBD PRP VBD DT NN PRP VBD DT NN NN IN CD .\nMeanwhile , thousands of people continue to wait hours to view the pope 's body at St. Peter 's Basilica .\tRB , NNS IN NNS VBP TO VB NNS TO VB DT NN POS NN IN NNP NNP POS NNP .\nThe Vatican says some two million people have already passed by it .\tDT NNP VBZ DT CD CD NNS VBP RB VBN IN PRP .\nPresident Bush and some 200 other world leaders are to attend the pope 's funeral Friday .\tNNP NNP CC DT CD JJ NN NNS VBP TO VB DT NN POS JJ NNP .\nThe pontiff will be interred in a crypt beneath the basilica .\tDT NN MD VB VBN IN DT NN IN DT NN .\nItalian officials have imposed extraordinary security measures that include anti-aircraft missiles and instituting a no-fly zone over Rome .\tJJ NNS VBP VBN JJ NN NNS WDT VBP JJ NNS CC VBG DT JJ NN IN NNP .\nSudan promised on Saturday to implement a resolution adopted by the 53-nation U.N. Human Rights Commission that unanimously condemns human-rights violations in Sudan 's western Darfur region .\tNNP VBD IN NNP TO VB DT NN VBN IN DT JJ NNP NNP NNP NNP WDT RB VBZ JJ NNS IN NNP POS JJ NNP NN .\nSudan 's State Minister of Foreign Affairs , Najib el-Kheir , says his country will cooperate with a special investigator appointed by the Commission to monitor the human-rights situation in Darfur .\tNNP POS NNP NNP IN NNP NNP , NNP NNP , VBZ PRP$ NN MD VB IN DT JJ NN VBN IN DT NNP TO VB DT JJ NN IN NNP .\nThe Geneva-based Human Rights Commission called on Khartoum to disarm Arab militias that have been terrorizing villagers in Darfur , and to bring to justice all those involved in human-rights violations .\tDT JJ NNP NNP NNP VBD IN NNP TO VB JJ NNS WDT VBP VBN VBG NNS IN NNP , CC TO VB TO NN PDT DT VBN IN JJ NNS .\nAn estimated 1,80,000 people have been killed in Darfur since February 2003 .\tDT VBN CD NNS VBP VBN VBN IN NNP IN NNP CD .\nIran is warning the Group of Eight industrialized nations against making any decisions on its nuclear program without first consulting Tehran .\tNNP VBZ VBG DT NNP IN CD JJ NNS IN VBG DT NNS IN PRP$ JJ NN IN JJ NN NN .\nIranian Foreign Minister Manouchehr Mottaki says because Iran is not attending the group 's summit this month , a decision made there could negate progress toward resolving the standoff over Iran 's nuclear program .\tJJ NNP NNP NNP NNP VBZ IN NNP VBZ RB VBG DT NN POS NN DT NN , DT NN VBN EX MD VB NN IN VBG DT NN IN NNP POS JJ NN .\nIran 's top nuclear negotiator , Ali Larijani , meets this week with European Union foreign policy chief Javier Solana to discuss an international offer of incentives for Iran to suspend uranium enrichment .\tNNP POS JJ JJ NN , NNP NNP , VBZ DT NN IN NNP NNP JJ NN NN NNP NNP TO VB DT JJ NN IN NNS IN NNP TO VB NN NN .\nThe five permanent members of the U.N. Security Council plus Germany offered the incentives package .\tDT CD JJ NNS IN DT NNP NNP NNP CC NNP VBD DT NNS NN .\nThey want Iran to respond before the Group of Eight summit on July 15 .\tPRP VBP NNP TO VB IN DT NNP IN CD NN IN NNP CD .\nIran has said it will not respond until late August .\tNNP VBZ VBN PRP MD RB VB IN JJ NNP .\nThe U.S. and many of its European allies believe Iran is planning to build nuclear weapons .\tDT NNP CC NN IN PRP$ JJ NNS VBP NNP VBZ VBG TO VB JJ NNS .\nIran denies the charge .\tNNP VBZ DT NN .\nIsraeli Deputy Prime Minister Shimon Peres says Iran should be expelled from the United Nations , after its president called for Israel to be ' wiped off the map . '\tJJ NNP NNP NNP NNP NNP VBZ NNP MD VB VBN IN DT NNP NNP , IN PRP$ NN VBD IN NNP TO VB `` VBN RP DT NN . ``\nMr. Peres said the statement from President Mahmoud Ahmadinejad goes against the principles of the United Nations .\tNNP NNP VBD DT NN IN NNP NNP NNP VBZ IN DT NNS IN DT NNP NNPS .\nMr. Ahmadinejad was speaking Wednesday in Tehran to thousands of students gathered at a conference titled ' The World Without Zionism . '\tNNP NNP VBD VBG NNP IN NNP TO NNS IN NNS VBN IN DT NN VBN `` DT NNP IN NNP . ``\nHe warned that any country or leader that acknowledges Israel will face the wrath of the Islamic community .\tPRP VBD IN DT NN CC NN WDT VBZ NNP MD VB DT NN IN DT JJ NN .\nIn Washington , a White House spokesman , Scott McClellan , said the remarks underscore the Bush administration 's concerns about Iran 's nuclear intentions .\tIN NNP , DT NNP NNP NN , NNP NNP , VBD DT NNS VBP DT NNP NN POS NNS IN NNP POS JJ NNS .\nSpeaking on a trip to Moscow , Israel 's foreign minister , Silvan Shalom , also expressed concern over Iran 's nuclear program .\tVBG IN DT NN TO NNP , NNP POS JJ NN , NNP NNP , RB VBD NN IN NNP POS JJ NN .\nSeveral Western nations fear that Iran is secretly trying to build nuclear weapons , a charge Tehran denies .\tJJ JJ NNS VBP IN NNP VBZ RB VBG TO VB JJ NNS , DT NN NNP VBZ .\nSouth Korean news reports say North Korea is preparing to test fire more short-range missiles , following this week 's reported launch of two missiles .\tJJ JJ NN NNS VBP NNP NNP VBZ VBG TO VB NN RBR JJ NNS , VBG DT NN POS VBN NN IN CD NNS .\nAccording to the reports , intelligence sources believe the North has deployed 10 missiles on Chodo , a small island navy base off the peninsula 's western coast .\tVBG TO DT NNS , NN NNS VBP DT NNP VBZ VBN CD NNS IN NNP , DT JJ NN NN NN IN DT NN POS JJ NN .\nThe missiles include land-to-ship and ship-to-ship missiles .\tDT NNS VBP NN CC NN NNS .\nPyongyang has banned all ships from traveling near Chodo until October 15 .\tNNP VBZ VBN DT NNS IN VBG IN NNP IN NNP CD .\nNorth Korea reportedly fired two missiles from Chodo on Monday as part of a military drill .\tNNP NNP RB VBD CD NNS IN NNP IN NNP IN NN IN DT JJ NN .\nBut the firings occur at a time of increased tensions between the two Korean rivals , and speculation about the health of North Korean leader Kim Jong Il.\tCC DT NNS VBP IN DT NN IN VBN NNS IN DT CD JJ NNS , CC NN IN DT NN IN JJ JJ NN NNP NNP NNP\nSouth Korea 's Yonhap news agency says the North used an aging Russian-made aircraft to fire the two short-range missiles earlier this week , according to a source with knowledge of North Korean military affairs .\tNNP NNP POS NNP NN NN VBZ DT NNP VBD DT NN JJ NN TO VB DT CD JJ NNS RBR DT NN , VBG TO DT NN IN NN IN JJ JJ JJ NNS .\nU.S. Secretary of State Condoleezza Rice says Iran has so far shown no interest in a proposed European deal over its nuclear program .\tNNP NNP IN NNP NNP NNP VBZ NNP VBZ RB RB VBN DT NN IN DT VBN JJ NN IN PRP$ JJ NN .\nMs. Rice says Iran has given no indication that it will accept the offer of trade benefits in exchange for an end to the Tehran government 's nuclear ambitions .\tNNP NNP VBZ NNP VBZ VBN DT NN IN PRP MD VB DT NN IN NN NNS IN NN IN DT NN TO DT NNP NN POS JJ NNS .\nShe added that the world is coming to a united position that Iran must not be able to produce a nuclear weapon .\tPRP VBD IN DT NN VBZ VBG TO DT JJ NN IN NNP MD RB VB JJ TO VB DT JJ NN .\nShe spoke in Washington ahead of talks with President Bush .\tPRP VBD IN NNP RB IN NNS IN NNP NNP .\nEarlier Thursday , White House spokesman Scott McClellan said Mr. Bush is looking at how the United States can best support the European effort and make sure it gets Iran to abandon its nuclear ambition .\tRBR NNP , NNP NNP NN NNP NNP VBD NNP NNP VBZ VBG IN WRB DT NNP NNPS MD RB VB DT JJ NN CC VB JJ PRP VBZ NNP TO VB PRP$ JJ NN .\nThe United States says Iran is secretly trying to develop a nuclear weapon , a charge Iran denies .\tDT NNP NNP VBZ NNP VBZ RB VBG TO VB DT JJ NN , DT NN NNP VBZ .\nRussia says it will not pay a higher rent to Ukraine for basing its Black Sea fleet on Ukraine 's Crimean peninsula .\tNNP VBZ PRP MD RB VB DT JJR NN IN NNP IN VBG PRP$ NNP NNP NN IN NNP POS JJ NN .\nRussian Deputy Foreign Minister Grigory Karasin says the annual rent for the naval base is not subject to change , because it was fixed by agreement with Ukraine in 1997 .\tJJ NN NN NN NNP NNP VBZ DT JJ NN IN DT JJ NN VBZ RB JJ TO VB , IN PRP VBD VBN IN NN IN NNP IN CD .\nUnder the deal , Russia pays $ 93 million a year to use the base .\tIN DT NN , NNP VBZ $ CD CD DT NN TO VB DT NN .\nUkraine wants to increase that figure significantly to reflect current market prices .\tNNP VBZ TO VB DT NN RB TO VB JJ NN NNS .\nKarasin met with Ukrainian officials in Kiev Tuesday to try to resolve the dispute .\tNNP VBD IN JJ NNS IN NNP NNP TO VB TO VB DT NN .\nBoth sides said they would continue discussing the issue .\tDT NNS VBD PRP MD VB VBG DT NN .\nThey also agreed to conduct an inventory of lighthouses and other Black Sea facilities that Ukraine claims as its own .\tPRP RB VBD TO VB DT NN IN NNS CC JJ NNP NNP NNS WDT NNP NNS IN PRP$ NN .\nNobel Peace Laureate Mohamed ElBaradei began his career four decades ago as a diplomat in his native Egypt .\tNNP NNP NNP NNP NNP VBD PRP$ NN CD NNS RB IN DT NN IN PRP$ JJ NNP .\nAfter receiving a bachelor 's degree in law at the University of Cairo , he joined the foreign ministry and was posted to the United Nations office in Geneva .\tIN VBG DT NN POS NN IN NN IN DT NNP IN NNP , PRP VBD DT JJ NN CC VBD VBN TO DT NNP NNP NN IN NNP .\nIn 1974 , he earned a doctorate in International Law at New York University in the United States , where he also taught for several years .\tIN CD , PRP VBD DT NN IN NNP NNP IN NNP NNP NNP IN DT NNP NNPS , WRB PRP RB VBD IN JJ NNS .\nMr. ElBaradei , 63 , joined the Vienna-based International Atomic Energy Agency in 1984 and rose quickly through the organization , becoming its director in 1997 .\tNNP NNP , CD , VBD DT JJ NNP NNP NNP NNP IN CD CC VBD RB IN DT NN , VBG PRP$ NN IN CD .\nIn recent years , Mr. ElBaradei 's work has taken him to such political hot spots as North Korea , Libya , Iran and Iraq .\tIN JJ NNS , NNP NNP POS NN VBZ VBN PRP TO JJ JJ JJ NNS IN NNP NNP , NNP , NNP CC NNP .\nA top U.S. official has called on Burma 's military government to free pro-democracy leader Aung San Suu Kyi and other political prisoners .\tDT JJ NNP NN VBZ VBN IN NNP POS JJ NN TO JJ JJ NN NNP NNP NNP NNP CC JJ JJ NNS .\nAssistant Secretary of State Christopher Hill said Aung San Suu Kyi 's continued house arrest poses a real problem for Burma being able to rejoin the international community .\tNNP NNP IN NNP NNP NNP VBD NNP NNP NNP NNP POS JJ NN NN VBZ DT JJ NN IN NNP VBG JJ TO VB DT JJ NN .\nA Nobel laureate , Aung San Suu Kyi has spent most of the last 17 years under some form of detention .\tDT NNP NN , NNP NNP NNP NNP VBZ VBN JJS IN DT JJ CD NNS IN DT NN IN NN .\nHer latest term of house arrest is up for review on May 27 .\tPRP$ JJS NN IN NN NN VBZ RP IN NN IN NNP CD .\nAung San Suu Kyi 's National League for Democracy won parliamentary elections in 1990 .\tNNP NNP NNP NNP POS NNP NNP IN NNP VBD JJ NNS IN CD .\nBut the military junta did not allow it to take power .\tCC DT JJ NN VBD RB VB PRP TO VB NN .\nLast week the United States said it is renewing sanctions on Burma for at least another year , saying the military government is becoming more brutal .\tJJ NN DT NNP NNPS VBD PRP VBZ VBG NNS IN NNP IN IN JJS DT NN , VBG DT JJ NN VBZ VBG RBR JJ .\nThe United Nations estimates there are at least 1,100 political prisoners in Burma .\tDT NNP NNPS VBZ EX VBP IN JJS CD JJ NNS IN NNP .\nAl-Qaida in Iraq says it will put on trial two employees of the Moroccan embassy in Baghdad that it kidnapped last month .\tNNP IN NNP VBZ PRP MD VB IN NN CD NNS IN DT JJ NN IN NNP IN PRP VBD JJ NN .\nIn an unverifiable Internet posting , the group led by Abu Musab al-Zarqawi said Tuesday an Islamic court would determine the men 's fate .\tIN DT JJ NN VBG , DT NN VBN IN NNP NNP NNP VBD NNP DT JJ NN MD VB DT NNS POS NN .\nThe Moroccan government has confirmed that two of its employees disappeared October 20 while driving from Jordan to Baghdad .\tDT JJ NN VBZ VBN IN CD IN PRP$ NNS VBD NNP CD IN VBG IN NNP TO NNP .\nMeanwhile , the U.S. military says it released 500 detainees from Abu Ghraib prison Tuesday , ahead of this week 's Eid al-Fitr holiday , which marks the end of the Muslim holy month of Ramadan .\tRB , DT NNP NN VBZ PRP VBD CD NNS IN NNP NNP NN NNP , RB IN DT NN POS JJ JJ NN , WDT VBZ DT NN IN DT NNP JJ NN IN NNP .\nNone of those released was guilty of violent crimes .\tNN IN DT VBN VBD JJ IN JJ NNS .\nAnd the U.S. military reported the death of another service member .\tCC DT NNP NN VBD DT NN IN DT NN NN .\nThe soldier , killed Monday , was the 93rd American killed in Iraq last month , making it the second deadliest month this year for American forces in Iraq .\tDT NN , VBN NNP , VBD DT JJ NN VBN IN NNP JJ NN , VBG PRP DT JJ JJS NN DT NN IN JJ NNS IN NNP .\nTension is running high in Lebanon after a bomb blast that injured at least six people in a Christian suburb of Beirut late Saturday .\tNNP VBZ VBG JJ IN NNP IN DT NN NN WDT VBD IN JJS CD NNS IN DT JJ NN IN NNP JJ NNP .\nOpposition leaders have blamed Syria for the blast - the third to hit a Christian neighborhood over the past eight days .\tNN NNS VBP VBN NNP IN DT NN IN DT JJ TO VB DT JJ NN IN DT JJ CD NNS .\nLawmaker Walid Jumblatt says Lebanon 's Syrian-backed security forces are trying to destabilize the country as Damascus withdraws its forces .\tNNP NNP NNP VBZ NNP POS JJ NN NNS VBP VBG TO VB DT NN IN NNP VBZ PRP$ NNS .\nPatriarch Nasrallah Sfeir , leader of Lebanon 's Maronite Christians , told worshippers Sunday that the country faces a choice between sovereignty and more turmoil .\tNNP NNP NNP , NN IN NNP POS NNP NNPS , VBD NNS NNP IN DT NN VBZ DT NN IN NN CC JJR NN .\nTalking to reporters after the Easter Sunday mass , Lebanon 's President Emile Lahoud called on the country 's people to be united .\tVBG TO NNS IN DT NNP NNP NN , NNP POS NNP NNP NNP VBD IN DT NN POS NNS TO VB VBN .\nThe U.S. State Department has condemned the bombings in Beirut , saying authorities must arrest those responsible .\tDT NNP NNP NNP VBZ VBN DT NNS IN NNP , VBG NNS MD VB DT JJ .\nIt also repeated the the U.S. call for Syrian forces to leave Lebanon immediately .\tPRP RB VBD DT DT NNP NN IN JJ NNS TO VB NNP RB .\nGoogle users in China will no longer be automatically redirected to an unfiltered website in Hong Kong when they open the popular Internet search engine .\tNNP NNS IN NNP MD RB RB VB RB VBN TO DT JJ NN IN NNP NNP WRB PRP VBP DT JJ NNP NN NN .\nInstead , they will find a page with a link they can click on to go to the Hong Kong site for unfiltered searches .\tRB , PRP MD VB DT NN IN DT NN PRP MD VB IN TO VB TO DT NNP NNP NN IN JJ NNS .\nGoogle will continue to offer music and other non-controversial services on the main China site .\tNNP MD VB TO VB NN CC JJ JJ NNS IN DT JJ NNP NN .\nThe American Internet giant began redirecting users to Hong Kong in January to protest Chinese censorship and an attempt to hack into the e-mail accounts of human rights activists .\tDT JJ NN NN VBD VBG NNS TO NNP NNP IN NNP TO VB JJ NN CC DT NN TO VB IN DT JJ NNS IN JJ NNS NNS .\nBut a blog by Google 's chief legal officer David Drummond on Tuesday said China had warned the company its operating license would not be renewed if the practice continued .\tCC DT NN IN NNP POS JJ JJ NN NNP NNP IN NNP VBD NNP VBD VBN DT NN PRP$ NN NN MD RB VB VBN IN DT NN VBD .\nThe license expires on Wednesday .\tDT NN VBZ IN NNP .\nIndian officials say at least 32 people have been killed by a blaze in a southern India firecracker warehouse .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN IN DT NN IN DT JJ NNP NN NN .\nPolice say two people have been arrested , including the owner of the warehouse .\tNNS VBP CD NNS VBP VBN VBN , VBG DT NN IN DT NN .\nTen other people were reported injured in the fire late Friday on the eve of the Diwali holiday , also known as the festival of lights .\tCD JJ NNS VBD VBN NN IN DT NN JJ NNP IN DT NN IN DT NNP NN , RB VBN IN DT NN IN NNS .\nThe deadly fire ignited in a warehouse in the village of Pallipat , 90 kilometers from the port city of Chennai .\tDT JJ NN VBN IN DT NN IN DT NN IN NNP , CD NNS IN DT JJ NN IN NNP .\nAmong the victims were people buying firecrackers for the holiday .\tIN DT NNS VBD NNS VBG NNS IN DT NN .\nDiwali celebrations are spread over several days and involve wearing new clothes , sharing sweets and snacks , as well as lighting many lamps , candles and firecrackers .\tNNP NNS VBP VBN IN JJ NNS CC VB VBG JJ NNS , VBG NNS CC NNS , RB RB IN VBG JJ NNS , NNS CC NNS .\nThe International Labor Organization is calling on the Burmese government to change legislation and a constitutional provision that allow forced labor .\tDT NNP NNP NNP VBZ VBG IN DT JJ NN TO VB NN CC DT JJ NN WDT VBP VBN NN .\nDuring a session of the ILO 's committee on labor standards in Geneva Saturday , the group said efforts by the military government to end forced labor so far have been ' totally inadequate ' .\tIN DT NN IN DT NNP POS NN IN NN NNS IN NNP NNP , DT NN VBD NNS IN DT JJ NN TO VB VBN NN RB RB VBP VBN `` RB JJ `` .\nThe committee called on the Burmese government to amend current legislation to ban forced labor .\tDT NN VBD IN DT JJ NN TO VB JJ NN TO VB VBN NN .\nIt also called on the military-ruled junta to change a provision that will allow forced labor when the new constitution goes into effect in 2010 .\tPRP RB VBD IN DT JJ NN TO VB DT NN WDT MD VB VBN NN WRB DT JJ NN VBZ IN NN IN CD .\nHuman rights groups have long accused the Burmese government of using forced labor , including child labor , for state-run construction projects .\tJJ NNS NNS VBP RB VBN DT JJ NN IN VBG VBN NN , VBG NN NN , IN JJ NN NNS .\nChina 's official news agency says the death toll from Tropical Storm Bilis has risen to 518 .\tNNP POS JJ NN NN VBZ DT NN NN IN NNP NNP NNP VBZ VBN TO CD .\nXinhua says Guangdong province reported an additional 36 deaths Saturday .\tNNP VBZ NNP NN VBD DT JJ CD NNS NNP .\nOn Friday , the official death toll doubled from previous counts .\tIN NNP , DT JJ NN NN VBD IN JJ NNS .\nThe Xinhua report did not say how the newly reported deaths occurred .\tDT NNP NN VBD RB VB WRB DT RB VBN NNS VBD .\nRains from the tropical storm caused massive flooding and triggered landslides in several provinces .\tNNS IN DT JJ NN VBD JJ NN CC VBD NNS IN JJ NNS .\nHardest hit was Hunan , where the storm is blamed for the deaths of 346 people .\tJJS NN VBD NNP , WRB DT NN VBZ VBN IN DT NNS IN CD NNS .\nBilis hit China 's southeastern coast July 14 , after first striking the Philippines , where it left 28 dead .\tNNP VBD NNP POS JJ NN NNP CD , IN RB VBG DT NNP , WRB PRP VBD CD JJ .\nOne person was killed in Taiwan .\tCD NN VBD VBN IN NNP .\nIraq 's election commission says it has rejected a small number of ballots from last month 's parliamentary vote , and plans to issue final results later this week .\tNNP POS NN NN VBZ PRP VBZ VBN DT JJ NN IN NNS IN JJ NN POS JJ NN , CC VBZ TO VB JJ NNS RB DT NN .\nOfficials said ballots from 227 boxes were thrown out , adding the move should not affect the vote tally .\tNNS VBD NNS IN CD NNS VBD VBN RP , VBG DT NN MD RB VB DT NN RB .\nThey said final results from the remaining 31,000 boxes will be announced as early as Friday .\tPRP VBD JJ NNS IN DT VBG CD NNS MD VB VBN RB RB IN NNP .\nVote results have been delayed for weeks , after some Sunni Arab groups alleged widespread fraud .\tJJ NNS VBP VBN VBN IN NNS , IN DT NNP JJ NNS VBD JJ NN .\nNear Baghdad , a U.S. military helicopter crashed Monday killing the two soldiers on board .\tNNP NNP , DT NNP JJ NN VBD NNP VBG DT CD NNS IN NN .\nIn an unverified Internet claim , insurgents said they hit the aircraft in a rocket attack .\tIN DT JJ NN NN , NNS VBD PRP VBD DT NN IN DT NN NN .\nMeanwhile , Iraqi prosecutors said the trial of Saddam Hussein is to resume January 24th without the chief judge .\tRB , JJ NNS VBD DT NN IN NNP NNP VBZ TO VB NNP CD IN DT NN NN .\nJudge Rizkar Mohammed Amin quit last week , complaining of government interference .\tNNP NNP NNP NNP VBD JJ NN , VBG IN NN NN .\nThe Pakistani military says its troops have killed nearly 40 militants in two separate attacks Sunday in the northwest region of the country .\tDT JJ NN VBZ PRP$ NNS VBP VBN RB CD NNS IN CD JJ NNS NNP IN DT JJS NN IN DT NN .\nOfficials say both offensives were in the Orakzai tribal area near the Afghan border .\tNNS VBP DT NNS VBD IN DT NNP JJ NN IN DT JJ NN .\nA government official said several dozen militants attacked a village , but troops beat them back , killing many of the insurgents .\tDT NN NN VBD JJ NN NNS VBD DT NN , CC NNS VBD PRP RB , VBG NN IN DT NNS .\nHours later , militants and troops battled in another area of the region .\tNNS RB , NNS CC NNS VBD IN DT NN IN DT NN .\nA government official says 12 rebels were killed in that fight .\tDT NN NN VBZ CD NNS VBD VBN IN DT NN .\nPakistan 's military figures can not be independently verified because access to the remote area is limited .\tNNP POS JJ NNS MD RB VB RB VBN IN NN TO DT JJ NN VBZ VBN .\nPakistan 's military began an offensive in Orakzai in March to flush out Taliban insurgents believed to have fled an earlier military offensive in South Waziristan .\tNNP POS JJ VBD DT NN IN NNP IN NNP TO VB RP NNP NNS VBN TO VB VBN DT JJR JJ NN IN NNP NNP .\nBurmese officials say they plan to release 5,000 prisoners to mark the 60th anniversary of the country 's independence on Tuesday .\tJJ NNS VBP PRP VBP TO VB CD NNS TO VB DT JJ NN IN DT NN POS NN IN NNP .\nBurma 's military government issued the announcement on state-radio Sunday .\tNNP POS JJ NN VBD DT NN IN JJ NNP .\nSince November , officials have freed some 20,000 prisoners , including some who had been illegally jailed by the former National Intelligence Bureau .\tIN NNP , NNS VBP VBN DT CD NNS , VBG DT WP VBD VBN RB VBN IN DT JJ NNP NNP NNP .\nThe government has dismantled the organization led by disgraced Prime Minister Khin Nyunt .\tDT NN VBZ VBN DT NN VBN IN JJ NNP NNP NNP NNP .\nA panel headed by British Prime Minister Tony Blair is calling on wealthy nations to spend $ 25 billion a year more to help reverse poverty in Africa .\tDT NN VBN IN JJ NNP NNP NNP NNP VBZ VBG IN JJ NNS TO VB $ CD CD DT NN RBR TO VB VB NN IN NNP .\nIn a report released Friday , in London and Addis Ababa , Ethiopia , the Africa Commission calls on rich nations to end trade barriers and agricultural subsidies and cancel all debt for poor African countries .\tIN DT NN VBN NNP , IN NNP CC NNP NNP , NNP , DT NNP NNP VBZ IN JJ NNS TO VB NN NNS CC JJ NNS CC VB DT NN IN JJ JJ NNS .\nThe report also calls on African governments to commit to transparency and to ratify the U.N. Covenant on Corruption .\tDT NN RB VBZ IN JJ NNS TO VB TO NN CC TO VB DT NNP NNP IN NNP .\nThe panel urges developed nations to monitor corruption and reject illicit funds deposited in their banks by corrupt officials from African nations .\tDT NN VBZ JJ NNS TO VB NN CC VB JJ NNS VBN IN PRP$ NNS IN JJ NNS IN JJ NNS .\nMr. Blair says there is ' no excuse , no defense , no justification ' for the plight of millions in Africa today .\tNNP NNP VBZ EX VBZ `` DT NN , DT NN , DT NN `` IN DT NN IN NNS IN NNP NN .\nA United Nations envoy has carried out his first inspection to verify that Syria is withdrawing its military and intelligence personnel from Lebanon and complying with Security Council Resolution 1559 .\tDT NNP NNP NN VBZ VBN RP PRP$ JJ NN TO VB DT NNP VBZ VBG PRP$ NN CC NN NNS IN NNP CC VBG IN NNP NNP NNP CD .\nTerje Roed-Larsen Tuesday visited a West Beirut apartment block that Syrian intelligence agents evacuated in recent weeks .\tNNP NNP NNP VBD DT NNP NNP NN NN IN JJ NN NNS VBD IN JJ NNS .\nMr. Roed-Larsen also voiced support for the Lebanese opposition 's demand that parliamentary elections go forward on time by May 31 .\tNNP NNP RB VBD NN IN DT JJ NN POS NN IN JJ NNS VBP RB IN NN IN NNP CD .\nOn Sunday , Syria pledged to remove all of its troops and intelligence personnel from Lebanon by April 30 .\tIN NNP , NNP VBD TO VB DT IN PRP$ NNS CC NN NNS IN NNP IN NNP CD .\nToday , witnesses reported more Syrian troops were dismantling their posts , and at least 20 trucks were seen transporting troops and equipment towards Syria .\tNN , NNS VBD RBR JJ NNS VBD VBG PRP$ NNS , CC IN JJS CD NNS VBD VBN VBG NNS CC NN IN NNP .\nA Thai soldier has been shot and killed by suspected insurgents in strife-torn southern Thailand .\tDT JJ NN VBZ VBN VBN CC VBN IN JJ NNS IN JJ JJ NNP .\nPolice say the soldier was gunned down Thursday in Yala province .\tNNS VBP DT NN VBD VBN RP NNP IN NNP NN .\nNo arrests have been made .\tDT NNS VBP VBN VBN .\nMeanwhile , the head of Yala 's teachers union says government schools in the province will remain closed indefinitely due to recent attacks on teachers .\tRB , DT NN IN NNP POS NNS NN VBZ NN NNS IN DT NN MD VB JJ RB JJ TO JJ NNS IN NNS .\nThe schools have been shut since last month .\tDT NNS VBP VBN VBN IN JJ NN .\nMany schools in two other southern provinces , Narathiwat and Pattani , are also closed .\tJJ NNS IN CD JJ JJ NNS , NNP CC NNP , VBP RB VBN .\nTeachers have been a frequent target in a year-long Muslim separatist insurgency in Thailand 's three southern provinces that has left more than 500 people dead .\tNNS VBP VBN DT JJ NN IN DT JJ NN NN NN IN NNP POS CD JJ NNS WDT VBZ VBN JJR IN CD NNS JJ .\nLawyers for former Russian oil tycoon Mikhail Khodorkovsky say they will appeal his fraud and tax evasion conviction to the European Court of Human Rights in Strasbourg , France .\tNNS IN JJ JJ NN NN NNP NNP VBP PRP MD VB PRP$ NN CC NN NN NN TO DT NNP NNP IN NNP NNPS IN NNP , NNP .\nThursday , a Moscow court rejected Khodorkovsky 's appeal of his conviction , but supporters of the former head of the oil firm Yukos say authorities rushed through the process to prevent him from running in a December parliamentary byelection .\tNNP , DT NNP NN VBD NNP POS NN IN PRP$ NN , CC NNS IN DT JJ NN IN DT NN NN NNP VBP NNS VBD IN DT NN TO VB PRP IN VBG IN DT NNP JJ NN .\nIn a related development Friday , the Moscow prosecutor 's office said it has asked that three of Khodorkovsky 's lawyers be disbarred .\tIN DT JJ NN NNP , DT NNP NN POS NN VBD PRP VBZ VBN IN CD IN NNP POS NNS VB VBN .\nA spokeswoman said the three should have represented him in his appeal as well as in his defense .\tDT NN VBD DT CD MD VB VBN PRP IN PRP$ NN RB RB IN IN PRP$ NN .\nAnother of his lawyers , Robert Amsterdam of Canada , said Friday Moscow authorities have revoked his visa and told him to leave the country immediately .\tDT IN PRP$ NNS , NNP NNP IN NNP , VBD NNP NNP NNS VBP VBN PRP$ NN CC VBN PRP TO VB DT NN RB .\nRussian authorities have not confirmed his statement .\tJJ NNS VBP RB VBN PRP$ NN .\nShoppers gave Madonna 's new fashion venture mixed reviews March 22 , on the occasion of its worldwide rollout .\tNNS VBD NNP POS JJ NN NN JJ NNS NNP CD , IN DT NN IN PRP$ JJ NN .\nThe Material Girl 's ' M By Madonna ' line of clothing and accessories is being marketed by the low-priced Swedish retailer Hennes & Mauritz AB ( H&M ) .\tDT NNP NNP POS `` NNP IN NNP `` NN IN NN CC NNS VBZ VBG VBN IN DT JJ JJ NN NNP CC NNP NNP LRB NNP RRB .\nShoppers in New York City quickly snapped up items such as belts and small purses , but were reportedly surprised at the generally conservative approach to clothing design .\tNNS IN NNP NNP NNP RB VBD RP NNS JJ IN NNS CC JJ NNS , CC VBD RB VBN IN DT RB JJ NN TO NN NN .\nAn H & M sales associate said retail action has been equally divided between sales and returns .\tDT NNP CC NNP NNS NN VBD JJ NN VBZ VBN RB VBN IN NNS CC NNS .\nMadonna has often shocked contemporary audiences through such risque fashion choices as conical bras and crucifixes .\tNNP VBZ RB VBN JJ NNS IN JJ JJ NN NNS IN JJ NNS CC NNS .\nStockholm-based H & M has more than 1,300 stores in 24 countries .\tJJ NNP CC NNP VBZ JJR IN CD NNS IN CD NNS .\nThe International Atomic Energy Agency has decided to use its half of the $ 1 million Nobel Peace Prize award to improve cancer treatment and nutrition in the developing world .\tDT NNP NNP NNP NNP VBZ VBN TO VB PRP$ NN IN DT $ CD CD NNP NNP NNP NN TO VB NN NN CC NN IN DT JJ NN .\nThe 35-member board of the U.N. nuclear agency agreed Friday to create a fund for fellowships and training to improve cancer management and childhood nutrition in these nations .\tDT JJ NN IN DT NNP JJ NN VBD NNP TO VB DT NN IN NNS CC NN TO VB NN NN CC NN NN IN DT NNS .\nIn October , the Norwegian Nobel committee presented the agency and its director , Mohamed ElBaradei , with the prestigious prize .\tIN NNP , DT JJ NNP NN VBD DT NN CC PRP$ NN , NNP NNP , IN DT JJ NN .\nThe award was given in recognition of their efforts to use nuclear energy in safe , peaceful ways and prevent it from being used for military purposes .\tDT NN VBD VBN IN NN IN PRP$ NNS TO VB JJ NN IN JJ , JJ NNS CC VB PRP IN VBG VBN IN JJ NNS .\nMr. ElBaradei plans to use his share of the prize money to assist orphanages in his native Egypt .\tNNP NNP VBZ TO VB PRP$ NN IN DT NN NN TO VB NNS IN PRP$ JJ NNP .\nSeveral automakers say their U.S. sales rose sharply in March as the American economy recovers from the worst recession in decades .\tJJ NNS VBP PRP$ NNP NNS VBD RB IN NNP IN DT JJ NN NNS IN DT JJS NN IN NNS .\nToyota gained nearly 41 percent from the same month a year ago .\tNNP VBD RB CD NN IN DT JJ NN DT NN RB .\nToyota used discounts and other incentives to boost sales after safety recalls tarnished the company 's image of reliability .\tNNP VBD NNS CC JJ NNS TO VB NNS IN NN NNS VBN DT NN POS NN IN NN .\nSales for Ford jumped around 40 percent , Honda gained 22 percent , and General Motors improved 21 percent .\tNNS IN NNP VBD IN CD NN , NNP VBD CD NN , CC NNP NNPS VBD CD NN .\nThe Korea-based company Hyundai sold about 15 percent more cars .\tDT JJ NN NNP VBD IN CD NN JJR NNS .\nChrysler saw sales fall about eight percent .\tNNP VBD NNS VB IN CD NN .\nTen of Egypt 's opposition groups have joined forces against President Hosni Mubarak 's ruling party in parliamentary elections set for November .\tCD IN NNP POS NN NNS VBP VBN NNS IN NNP NNP NNP POS VBG NN IN JJ NNS VBN IN NNP .\nThe new alliance , the National Front for Change , includes groups across the political spectrum including liberals , leftists , Islamists and the Kifaya or ' Enough ' protest movement .\tDT JJ NN , DT NNP NNP IN NNP , VBZ NNS IN DT JJ NN VBG NNS , NNS , NNS CC DT NNP CC `` NNP `` NN NN .\nThe outlawed Muslim Brotherhood says it will coordinate fully with the coalition but will field candidates as independents rather than on the unified list .\tDT JJ NNP NNP VBZ PRP MD VB RB IN DT NN CC MD VB NNS IN NNS RB IN IN DT JJ NN .\nReuters news agency says talks are under way to bring the opposition Ghad tomorrow party into the new coalition .\tNNP NN NN VBZ NNS VBP IN NN TO VB DT NN NN NN NN IN DT JJ NN .\nGhad 's leader , Ayman Nour , is facing a forgery trial after running second to President Mubarak in September 's presidential voting .\tNNP POS NN , NNP NNP , VBZ VBG DT NN NN IN VBG JJ TO NNP NNP IN NNP POS JJ NN .\nOfficials say Israeli Prime Minister Ariel Sharon and Palestinian President Mahmoud Abbas plan to meet in two weeks for their first face to face talks since Mr. Abbas ' election earlier this month .\tNNS VBP JJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBZ TO VB IN CD NNS IN PRP$ JJ NN TO VB NNS IN NNP NNP POS NN RBR DT NN .\nThe meeting will coincide with a planned visit to the region by U.S. Secretary of State Condoleezza Rice .\tDT NN MD VB IN DT JJ NN TO DT NN IN NNP NNP IN NNP NNP NNP .\nNews of the talks came Saturday , as Israeli and Palestinians security officials met to discuss the security situation .\tNN IN DT NNS VBD NNP , IN JJ CC NNS NN NNS VBD TO VB DT NN NN .\nThe Israelis and Palestinians have recently taken steps to try to revive the peace process .\tDT NNS CC NNS VBP RB VBN NNS TO VB TO VB DT NN NN .\nIsrael stopped offensive operations in the Gaza Strip and the Palestinians deployed thousands of police in the territory to stop militants from firing rockets on Israelis .\tNNP VBD JJ NNS IN DT NNP NNP CC DT NNS VBD NNS IN NNS IN DT NN TO VB NNS IN VBG NNS IN NNS .\nMr. Abbas is also trying to get Israel and Palestinian militants to agree to a ceasefire .\tNNP NNP VBZ RB VBG TO VB NNP CC JJ NNS TO VB TO DT NN .\nA U.S. government report says the nation 's employers added 2,11,000 new jobs in March , dropping the unemployment rate slightly , to 4.7 percent .\tDT NNP NN NN VBZ DT NN POS NNS VBD CD JJ NNS IN NNP , VBG DT NN NN RB , TO CD NN .\nThe Labor Department report says job gains were spread throughout the non-farm economy - with the biggest gains in the areas of professional and business services , education and health services , and retail trade .\tDT NNP NNP NN VBZ NN NNS VBD VBN IN DT JJ NN IN IN DT JJS NNS IN DT NNS IN JJ CC NN NNS , NN CC NN NNS , CC JJ NN .\nThe 2,11,000 new jobs figure is well above what most economists had predicted ( 1,90,000 ) for March .\tDT CD JJ NNS NN VBZ RB IN WP RBS NNS VBD VBN LRB CD RRB IN NNP .\nAnalysts say this is an indication the economy is continuing to strengthen .\tNNS VBP DT VBZ DT NN DT NN VBZ VBG TO VB .\nIn remarks to reporters at the White House , President Bush cited those new figures as evidence that Congress should make his tax-relief plan permanent , rather than let the tax cuts expire .\tIN NNS TO NNS IN DT NNP NNP , NNP NNP VBD DT JJ NNS IN NN IN NNP MD VB PRP$ JJ NN JJ , RB IN VB DT NN NNS VBP .\nMr. Bush said the cuts are helping the economy move forward and create jobs .\tNNP NNP VBD DT NNS VBP VBG DT NN VB RB CC VB NNS .\nThe unemployment figure in February was 4.8 percent .\tDT NN NN IN NNP VBD CD NN .\nWitnesses in Burma have reported two explosions in the country 's main city , Rangoon .\tNNS IN NNP VBP VBN CD NNS IN DT NN POS JJ NN , NNP .\nThey say Burmese security forces sealed off a park and a bus station hit by the explosions , which happened Tuesday night about an hour apart .\tPRP VBP JJ NN NNS VBD RP DT NN CC DT NN NN VBN IN DT NNS , WDT VBD NNP NN IN DT NN RB .\nThe witnesses say police brought in bomb-sniffing dogs and ordered onlookers to disperse .\tDT NNS VBP NNS VBD IN NN NNS CC VBD NNS TO VB .\nBurma 's military rulers made no comment on the explosions and there were no reports of serious casualties .\tNNP POS JJ NNS VBD DT NN IN DT NNS CC EX VBD DT NNS IN JJ NNS .\nBurma has seen several small bombings in recent years .\tNNP VBZ VBN JJ JJ NNS IN JJ NNS .\nThe military government has blamed them on its political opponents or ethnic rebel groups seeking autonomy .\tDT JJ NN VBZ VBN PRP IN PRP$ JJ NNS CC JJ NN NNS VBG NN .\nThe groups deny carrying out such attacks .\tDT NNS VBP VBG RP JJ NNS .\nBurma has been under near-continuous military rule since 1962 .\tNNP VBZ VBN IN JJ JJ NN IN CD .\nPakistan 's new government has moved to lift harsh restrictions on the media put in place during November 's state of emergency .\tNNP POS JJ NN VBZ VBN TO VB JJ NNS IN DT NNS VBN IN NN IN NNP POS NN IN NN .\nInformation Minister Sherry Rehman introduced legislation Friday that would clear the way for live media broadcasts .\tNNP NNP NNP NNP VBD NN NNP WDT MD VB DT NN IN JJ NNS NNS .\nThe measure would also prevent officials at the Pakistan Electronic Media Regulatory Authority from shutting down news channels , seizing equipment , or fining and imprisoning journalists .\tDT NN MD RB VB NNS IN DT NNP NNP NNP NNP NNP IN VBG RP NN NNS , VBG NN , CC NN CC VBG NNS .\nRehman said the new freedoms would place a ' heavy responsibility ' on journalists and other members of the media .\tNNP VBD DT JJ NNS MD VB DT `` JJ NN `` IN NNS CC JJ NNS IN DT NNS .\nPakistani President Pervez Musharraf first moved to curb the media when he declared a state of emergency on November 3 .\tJJ NNP NNP NNP RB VBD TO VB DT NNS WRB PRP VBD DT NN IN NN IN NNP CD .\nHe lifted the state of emergency just over a month later but left restrictions on the media in place .\tPRP VBD DT NN IN NN RB IN DT NN RB CC VBD NNS IN DT NNS IN NN .\nThe Iranian government has lifted its ban on the Cable News Network , which was imposed for misquoting President Mahmoud Ahmadinejad because of a translation error .\tDT JJ NN VBZ VBN PRP$ NN IN DT NNP NNP NNP , WDT VBD VBN IN VBG NNP NNP NNP IN IN DT NN NN .\nOfficials say Mr. Ahmadinejad asked the cultural ministry to lift the ban late Monday , after CNN apologized for the mistake .\tNNS VBP NNP NNP VBD DT JJ NN TO VB DT NN JJ NNP , IN NNP VBD IN DT NN .\nHours earlier , Iran barred CNN journalists from the country for misquoting the president as speaking of ' nuclear weapons ' when he actually spoke of ' nuclear technology ' during a recent news conference .\tNNS RB , NNP VBD NNP NNS IN DT NN IN VBG DT NN IN NN IN `` JJ NNS `` WRB PRP RB VBD IN `` JJ NN `` IN DT JJ NN NN .\nCNN says the Farsi word for ' technology ' was mistakenly translated into ' weapons . '\tNNP VBZ DT NNP NN IN `` NN `` VBD RB VBN IN `` NNS . ``\nThe U.S.-based network does not have a permanent correspondent in Iran .\tDT JJ NN VBZ RB VB DT JJ NN IN NNP .\nBut reporters have occasionally been allowed to enter the country for brief assignments .\tCC NNS VBP RB VBN VBN TO VB DT NN IN JJ NNS .\nIraq 's Prime Minister Ibrahim al-Jaafari is in Turkey for talks on boosting relations and on ways to defuse the spike in sectarian violence in Iraq .\tNNP POS NNP NNP NNP NNP VBZ IN NNP IN NNS IN VBG NNS CC IN NNS TO VB DT NN IN JJ NN IN NNP .\nHe met Tuesday in Ankara with Turkish Prime Minister Recep Tayyip Erdogan , who warned the violence could spill outside Iraq 's borders .\tPRP VBD NNP IN NNP IN NNP NNP NNP NNP NNP NNP , WP VBD DT NN MD VB IN NNP POS NNS .\nTurkish officials fear a civil war in Iraq could lead to the creation of a Kurdish state in northern Iraq , leading Turkey 's Kurds to call for their own independence .\tJJ NNS VBP DT JJ NN IN NNP MD VB TO DT NN IN DT JJ NN IN JJ NNP , VBG NNP POS NNS TO VB IN PRP$ JJ NN .\nMr. al-Jaafari 's talks were also expected to focus on Turkish help for Iraq to overcome water and energy shortages .\tNNP NNP POS NNS VBD RB VBN TO VB IN JJ NN IN NNP TO VB NN CC NN NNS .\nIraq 's president , Jalal Talabani , criticized Mr. al-Jaafari for making the trip without informing him .\tNNP POS NN , NNP NNP , VBD NNP NNP IN VBG DT NN IN VBG PRP .\nThe U.S. Supreme Court has agreed to let the Bush administration transfer accused ' enemy combatant ' Jose Padilla from U.S. military custody to face criminal charges in Florida .\tDT NNP NNP NNP VBZ VBN TO VB DT NNP NN VB VBD `` NN JJ `` NNP NNP IN NNP JJ NN TO VB JJ NNS IN NNP .\nThe high court 's ruling Wednesday is a victory for the White House , which has held Mr. Padilla in a military detention facility since he was detained three years ago .\tDT JJ NN POS NN NNP VBZ DT NN IN DT NNP NNP , WDT VBZ VBN NNP NNP IN DT JJ NN NN IN PRP VBD VBN CD NNS RB .\nMr. Padilla 's case has been the subject of numerous court rulings and his classification as an ' enemy combatant ' has been criticized by civil rights groups .\tNNP NNP POS NN VBZ VBN DT NN IN JJ NN NNS CC PRP$ NN IN DT `` NN NN `` VBZ VBN VBN IN JJ NNS NNS .\nLast month the U.S. Justice Department reversed course and requested that the U.S.-born Mr. Padilla be tried in a civilian court .\tJJ NN DT NNP NNP NNP VBD NN CC VBD IN DT JJ NNP NNP VB VBN IN DT JJ NN .\nAn appeals court had ruled against that request , prompting the administration to take the case to the Supreme Court .\tDT NNS NN VBD VBN IN DT NN , VBG DT NN TO VB DT NN TO DT NNP NNP .\nMr. Padilla was arrested under suspicion of plotting with al-Qaida to set off a dirty bomb in the United States .\tNNP NNP VBD VBN IN NN IN VBG IN NNP TO VB RP DT NN NN IN DT NNP NNPS .\nAt least 100 demonstrators have rallied near Egypt 's security police headquarters to demand the resignation of the country 's interior minister and the prosecution of security officers whom they accuse of torture .\tIN JJS CD NNS VBP VBN IN NNP POS NN NN NN TO VB DT NN IN DT NN POS JJ NN CC DT NN IN NN NNS WP PRP VBP IN NN .\nParticipants in Sunday 's demonstration in Cairo included Egyptian human rights activists .\tNNS IN NNP POS NN IN NNP VBD JJ JJ NNS NNS .\nInternational and Egyptian human rights groups have criticized Egyptian prisons , police stations and detention centers for what they say is widespread brutality and torture .\tNNP CC JJ JJ NNS NNS VBP VBN JJ NNS , NN NNS CC NN NNS IN WP PRP VBP VBZ JJ NN CC NN .\nThe U.S. State Department 's latest human rights report said Egypt has a poor human rights record .\tDT NNP NNP NNP POS JJS JJ NNS NN VBD NNP VBZ DT JJ JJ NNS NN .\nEgypt agreed two years ago to create a national council on human rights to investigate allegations of rights abuses .\tNNP VBD CD NNS RB TO VB DT JJ NN IN JJ NNS TO VB NNS IN NNS NNS .\nBut the government has frequently denied abuse allegations .\tCC DT NN VBZ RB VBN NN NNS .\nThe Washington-area 's planning commission has given preliminary approval to a memorial for victims of communism .\tDT NNP POS NN NN VBZ VBN JJ NN TO DT JJ IN NNS IN NN .\nThe National Planning Commission on Thursday approved the design , which includes a bronze statue of the ' Goddess of Democracy ' , similar to one erected by Chinese students in Beijings 's Tiananmen Square in 1989 .\tDT NNP NNP NNP IN NNP VBD DT NN , WDT VBZ DT NN NN IN DT `` NNPS IN NNP `` , JJ TO CD VBN IN JJ NNS IN NNP POS NNP NNP IN CD .\nPlans are to build the memorial in Northwest Washington near the Capitol .\tNNS VBP TO VB DT NN IN NNP NNP IN DT NNP .\nThe Victims of Communism Memorial Foundation have pushed for the project for more than a decade , arguing that the nation 's capital has memorials to many wars but not to the Cold War .\tDT NNS IN NNP NNP NNP VBP VBN IN DT NN IN JJR IN DT NN , VBG IN DT NN POS NN VBZ NNS TO JJ NNS CC RB TO DT NNP NNP .\nThe chairman of the foundation says donors have given about 70 percent of the $ 6,00,000 needed to build the memorial .\tDT NN IN DT NN VBZ NNS VBP VBN IN CD NN IN DT $ CD VBN TO VB DT NN .\nHe expects construction to begin in early 2006 .\tPRP VBZ NN TO VB IN JJ CD .\nThe foundation has worked to honor the more than 100 million people who were killed or tortured under communist regimes .\tDT NN VBZ VBN TO VB DT JJR IN CD CD NNS WP VBD VBN CC VBN IN NN NNS .\nA U.S. newspaper says the U.S. Central Intelligence Agency has maintained a secret prison for valuable al-Qaida detainees at the U.S. detention center in Guantanamo Bay , Cuba .\tDT NNP NN VBZ DT NNP NNP NNP NNP VBZ VBN DT JJ NN IN JJ NNP NNS IN DT NNP NN NN IN NNP NNP , NNP .\nThe Washington Post Friday quotes military officials and intelligence officers as saying the existence of the prison has never been made public before .\tDT NNP NNP NNP VBZ JJ NNS CC NN NNS IN VBG DT NN IN DT NN VBZ RB VBN VBN JJ IN .\nThe Postsays it is unclear whether the facility is still in operation .\tDT NNPS PRP VBZ JJ IN DT NN VBZ RB IN NN .\nBut , it cites intelligence sources as saying the prison has housed detainees from Pakistan , West Africa , Yemen and other countries .\tCC , PRP VBZ NN NNS IN VBG DT NN VBZ VBN NNS IN NNP , NNP NNP , NNP CC JJ NNS .\nThe newspaper says most international terrorism suspects in U.S. custody are held by the U.S. military - not the CIA .\tDT NN VBZ RBS JJ NN NNS IN NNP NN VBP VBN IN DT NNP JJ : RB DT NNP .\nThose held by the military are guaranteed access to the International Committee of the Red Cross .\tDT VBN IN DT NN VBP VBN NN TO DT NNP NNP IN DT NNP NNP .\nBut the Post says the CIA detainees are held under separate rules and far greater secrecy .\tCC DT NNP VBZ DT NNP NNS VBP VBN IN JJ NNS CC RB JJR NN .\nOfficials at the CIA had no immediate comment .\tNNS IN DT NNP VBD DT JJ NN .\nRescue workers have retrieved three more bodies from the wreckage of a passenger train that derailed Saturday in southern India , bringing the death toll to at least 113 people .\tNN NNS VBP VBN CD JJR NNS IN DT NN IN DT NN NN WDT VBD NNP IN JJ NNP , VBG DT NN NN TO IN JJS CD NNS .\nThe train plunged into a rain-swollen river in Andhra Pradesh where flash floods had washed away a portion of track .\tDT NN VBD IN DT JJ NN IN NNP NNP WRB NN NNS VBD VBN RB DT NN IN NN .\nMilitary and other rescue personnel used hacksaws and other machinery to dismantle the partially submerged coaches and rescued at least 100 injured passengers .\tNN CC JJ NN NNS VBN NNS CC JJ NN TO VB DT RB VBN NNS CC VBD IN JJS CD JJ NNS .\nRailway safety officials have begun an investigation into the accident .\tNNP NN NNS VBP VBN DT NN IN DT NN .\nState-run Indian Railways transports more than 13 million passengers daily .\tVBN NNP NNP VBZ JJR IN CD CD NNS RB .\nEach year , some 300 train accidents take place across the country , most are blamed on lax safety standards .\tDT NN , DT CD NN NNS VBP NN IN DT NN , JJS VBP VBN IN NN NN NNS .\nUkraine 's Central Election Commission has officially declared opposition leader Viktor Yushchenko the winner of the December 26 runoff presidential election .\tNNP POS NNP NNP NNP VBZ RB VBN NN NN NNP NNP DT NN IN DT NNP CD NN JJ NN .\nThe final results announced late Monday give Mr. Yushchenko 51 percent of the vote , while former pro-Russian Prime Minister Viktor Yanukovych received 44 percent .\tDT JJ NNS VBN JJ NNP VBP NNP NNP CD NN IN DT NN , IN JJ JJ NNP NNP NNP NNP VBD CD NN .\nElection officials had been waiting until Mr. Yanukovych exhausted his appeals to the Supreme Court before officially declaring a winner .\tNNP NNS VBD VBN VBG IN NNP NNP VBD PRP$ NNS TO DT NNP NNP IN RB VBG DT NN .\nThe former prime minister filed a number of complaints to the high court alleging massive fraud .\tDT JJ JJ NN VBD DT NN IN NNS TO DT JJ NN VBG JJ NN .\nThey were all dismissed by the court .\tPRP VBD DT VBN IN DT NN .\nAides to Mr. Yanukovych say they will keep up their legal fight .\tNNS TO NNP NNP VBP PRP MD VB RP PRP$ JJ NN .\nThe supreme court ordered the December 26 runoff after throwing out a November vote it said was rigged in favor of Mr. Yanukovych .\tDT NN NN VBD DT NNP CD NN IN VBG RP DT NNP NN PRP VBD VBD VBN IN NN IN NNP NNP .\nMr. Yushchenko may take the oath of office as early as this week .\tNNP NNP MD VB DT NN IN NN RB RB IN DT NN .\nIndian Prime Minister Manmohan Singh has agreed to meet a Kashmiri separatist leader to discuss the future of the disputed region .\tJJ NNP NNP NNP NNP VBZ VBN TO VB DT JJ JJ NN TO VB DT NN IN DT JJ NN .\nIndian media say Mr. Singh invited Sajjad Lone , chairman of Kashmir 's People 's Conference , to talks in New Delhi on Saturday .\tJJ NNS VBP NNP NNP VBD NNP NNP , NN IN NNP POS NNS POS NN , TO NNS IN NNP NNP IN NNP .\nMr. Singh has promised to meet with all separatist leaders from Indian-controlled Kashmir who have renounced violence .\tNNP NNP VBZ VBN TO VB IN DT JJ NNS IN JJ NNP WP VBP VBN NN .\nThe prime minister held his first talks with a Kashmiri group in September of last year .\tDT JJ NN VBD PRP$ JJ NNS IN DT JJ NN IN NNP IN JJ NN .\nOn that occasion , he met with moderate members of the Hurriyat Conference , an umbrella organization of Kashmiri separatists .\tIN DT NN , PRP VBD IN JJ NNS IN DT NNP NNP , DT NN NN IN JJ NNS .\nIndia has been fighting an insurgency in Kashmir for more than 15 years , which has killed at least 44,000 people .\tNNP VBZ VBN VBG DT NN IN NNP IN JJR IN CD NNS , WDT VBZ VBN IN JJS CD NNS .\nKashmiri separatists have made various demands , ranging from independence to merging with neighboring Pakistan .\tJJ NNS VBP VBN JJ NNS , VBG IN NN TO VBG IN JJ NNP .\nBelgian officials have tightened security in the country after the arrest of 14 suspects accused of planning to free an imprisoned member of al-Qaida .\tJJ NNS VBP VBN NN IN DT NN IN DT NN IN CD NNS VBN IN VBG TO VB DT JJ NN IN NNP .\nThe suspects were detained early Friday in a police raid .\tDT NNS VBD VBN RB NNP IN DT NN NN .\nOfficials say they planned to break Nizar Trabelsi out of prison using weapons and explosives .\tNNS VBP PRP VBD TO VB NNP NNP IN IN NN VBG NNS CC NNS .\nAuthorities say they are not aware of any other actions the group had planned .\tNNS VBP PRP VBP RB JJ IN DT JJ NNS DT NN VBD VBN .\nBut they say they are taking precautions during the busy holiday season and have tightened security on the metro , railway stations , airports and shopping districts .\tCC PRP VBP PRP VBP VBG NNS IN DT JJ NN NN CC VBP VBN NN IN DT NN , NN NNS , NNS CC NN NNS .\nThe extra security measures will remain in place at least until after New Year 's Day .\tDT JJ NN NNS MD VB IN NN IN JJS IN IN NNP NNP POS NN .\nThe U.S. embassy today issued a warning to American citizens of a heightened risk of terrorist attack in Brussels .\tDT NNP NN NN VBD DT NN TO JJ NNS IN DT JJ NN IN JJ NN IN NNP .\nTrabelsi is serving a 10-year prison term , for planning to attack a military base in Belgium where U.S. soldiers are stationed .\tNNP VBZ VBG DT JJ NN NN , IN VBG TO VB DT JJ NN IN NNP WRB NNP NNS VBP VBN .\nHe was arrested in September 2001 .\tPRP VBD VBN IN NNP CD .\nA passenger plane flying from Dubai to India hit an air pocket Sunday over India , plunging 4,600 meters , injuring more than a dozen people .\tDT NN NN VBG IN NNP TO NNP VBD DT NN NN NNP IN NNP , VBG CD NNS , VBG JJR IN DT NN NNS .\nThe plane dropped from a height of about approximately 7,620 meters before the pilot could bring the aircraft under control .\tDT NN VBD IN DT NN IN IN RB CD NNS IN DT NN MD VB DT NN IN NN .\nAviation officials say some of the injured passengers were not wearing seat belts when the plane fell .\tNNP NNS VBP DT IN DT NN NNS VBD RB VBG NN NNS WRB DT NN VBD .\nThe aircraft carried 361 passengers and 14 crew members .\tDT NN VBD CD NNS CC CD NN NNS .\nThe Emirates Boeing 777 landed safely at its destination , the southern Indian city of Kochi , where doctors examined the passengers .\tDT NNPS NNP CD VBD RB IN PRP$ NN , DT JJ JJ NN IN NNP , WRB NNS VBD DT NNS .\nAn air pocket is a downward air current that causes an aircraft to lose altitude abruptly .\tDT NN NN VBZ DT JJ NN NN WDT VBZ DT NN TO VB NN RB .\nUkraine 's outgoing president , Leonid Kuchma , has fired three government officials , including one who reportedly backs opposition presidential candidate Viktor Yushchenko .\tNNP POS NN NN , NNP NNP , VBZ VBN CD NN NNS , VBG CD WP RB VBZ NN JJ NN NNP NNP .\nPresident Kuchma made the staff changes Friday .\tNNP NNP VBD DT NN NNS NNP .\nEarlier this week , London 's Financial Times newspaper quoted one of those dismissed , presidential aide Vasil Baziv , as saying state officials called on Mr. Kuchma to use force to quell mass opposition demonstrations in Kiev .\tRBR DT NN , NNP POS NNP NNP NN VBD CD IN DT VBN , JJ NN NNP NNP , IN VBG NN NNS VBD IN NNP NNP TO VB NN TO VB JJ NN NNS IN NNP .\nThe aide also is reported to have said that nearly all of the country 's civil servants believe that Mr. Yushchenko is already the new president of Ukraine .\tDT NN RB VBZ VBN TO VB VBN IN RB DT IN DT NN POS JJ NNS VBP IN NNP NNP VBZ RB DT JJ NN IN NNP .\nMr. Yushchenko is locked in a tight presidential race with Prime Minister Viktor Yanukovych .\tNNP NNP VBZ VBN IN DT JJ JJ NN IN NNP NNP NNP NNP .\nThe two will face-off in a court-ordered re-vote on December 26 .\tDT CD MD VB IN DT JJ NN IN NNP CD .\nThe new vote is to replace November 's flawed balloting .\tDT JJ NN VBZ TO VB NNP POS JJ NN .\nPresident Kuchma also fired Agrarian Policy Minister Viktor Slauta and Kharkiv regional administration head Yevhen Kushnaryov .\tNNP NNP RB VBD NNP NNP NNP NNP NNP CC NNP JJ NN NN NNP NNP .\nPreliminary Palestinian election results indicate President Mahmoud Abbas ' ruling Fatah movement has won more than half the votes cast in Thursday 's West Bank municipal elections .\tJJ JJ NN NNS VBP NNP NNP NNP POS NN NNP NN VBZ VBN JJR IN PDT DT NNS VBN IN NNP POS NNP NNP JJ NNS .\nElection officials gave varying results Friday , but all showed a clear Fatah victory .\tNN NNS VBD VBG NNS NNP , CC DT VBD DT JJ NNP NN .\nThe militant group Hamas , which was expected to have a strong showing , garnered just over 20 percent of the votes .\tDT JJ NN NNP , WDT VBD VBN TO VB DT JJ NN , VBD RB IN CD NN IN DT NNS .\nElection turnout was strong , with over 80 percent of eligible voters choosing local councils in 104 West Bank towns and villages .\tNNP NN VBD JJ , IN IN CD NN IN JJ NNS VBG JJ NNS IN CD NNP NNP NNS CC NNS .\nHamas downplayed its poor showing , saying many of its candidates were arrested in a week of Israeli raids and airstrikes preceding the vote .\tNNP VBD PRP$ JJ NN , VBG NN IN PRP$ NNS VBD VBN IN DT NN IN JJ NNS CC NNS VBG DT NN .\nFriday , Israeli troops killed two militants from the Al-Aqsa Martyrs Brigades during a raid for wanted Palestinians in Balata refugee camp , in Nablus .\tNNP , JJ NNS VBD CD NNS IN DT NNP NNP NNP IN DT NN IN JJ NNS IN NNP NN NN , IN NNP .\nIsraeli troops also killed a 13-year-old boy during an incident at Askar camp .\tJJ NNS RB VBD DT JJ NN IN DT NN IN NNP NN .\nAfghan officials say the U.S. military has handed over six Afghan villagers who were detained during a raid early Tuesday at a compound where troops discovered bomb-making materials .\tJJ NNS VBP DT NNP NN VBZ VBN RP CD JJ NNS WP VBD VBN IN DT NN RB NNP IN DT NN WRB NNS VBD JJ NNS .\nThe raid near Bagram Air Base and the subsequent arrests sparked a violent protest by several hundred locals who demanded their release .\tDT NN IN NNP NNP NNP CC DT JJ NNS VBD DT JJ NN IN JJ CD NNS WP VBD PRP$ NN .\nThey said U.S. troops arrested the villagers without consulting local authorities .\tPRP VBD NNP NNS VBN DT NNS IN VBG JJ NNS .\nU.S. soldiers fired warning shots outside the air base after some protesters threw stones at military vehicles and tried to push down the base 's outer gate .\tNNP NNS VBD VBG NNS IN DT NN NN IN DT NNS VBD NNS IN JJ NNS CC VBD TO VB RP DT NN POS JJ NN .\nNo casualties were reported .\tDT NNS VBD VBN .\nThe U.S. military said those arrested were suspected of planning attacks against U.S.-led forces .\tDT NNP NN VBD DT VBN VBD VBN IN VBG NNS IN JJ NNS .\nThis latest incident at Bagram came amid an upsurge in violence ahead of September 's parliamentary elections in Afghanistan .\tDT JJS NN IN NNP VBD IN DT NN IN NN RB IN NNP POS JJ NNS IN NNP .\nUkrainian President Viktor Yushchenko says withdrawing his country 's troops from Iraq is a top priority .\tJJ NNP NNP NNP VBZ VBG PRP$ NN POS NNS IN NNP VBZ DT JJ NN .\nMr. Yuschenko stressed the importance of coordinating the withdrawal with Ukraine 's coalition partners and withdrawing the troops without suffering any losses .\tNNP NNP VBD DT NN IN VBG DT NN IN NNP POS NN NNS CC VBG DT NNS IN VBG DT NNS .\nThe Interfax news agency quotes him as saying Thursday the military has completed its mission , and now it is time for the diplomats and instructors to do their job .\tDT NNP NN NN VBZ PRP IN VBG NNP DT NN VBZ VBN PRP$ NN , CC RB PRP VBZ NN IN DT NNS CC NNS TO VB PRP$ NN .\nDefense Minister Anatoly Hrytsenko said Thursday 700 of Ukraine 's more than 1,600 troops in Iraq could be withdrawn by April .\tNNP NNP NNP NNP VBD NNP CD IN NNP POS JJR IN CD NNS IN NNP MD VB VBN IN NNP .\nUkraine 's foreign minister , Boris Tarasyuk , said last week that instructors , businessmen and diplomats will replace the peacekeepers .\tNNP POS JJ NN , NNP NNP , VBD JJ NN IN NNS , NNS CC NNS MD VB DT NNS .\nA Nigerian oil workers ' union says it has suspended a nationwide strike aimed at forcing the government to lower the price of diesel .\tDT JJ NN NNS POS NN VBZ PRP VBZ VBN DT JJ NN VBN IN VBG DT NN TO VB DT NN IN NN .\nOfficials from Nigeria 's National Union of Petroleum and Gas Workers Monday said they called off the strike after the government agreed to address their demands .\tNNS IN NNP POS NNP NNP IN NNP CC NNP NNP NNP VBD PRP VBD RP DT NN IN DT NN VBD TO VB PRP$ NNS .\nUnion officials say they are giving the government two weeks to come up with a plan to lower diesel prices , which have more than doubled in recent weeks .\tNNP NNS VBP PRP VBP VBG DT NN CD NNS TO VB RP IN DT NN TO JJR NN NNS , WDT VBP JJR IN VBN IN JJ NNS .\nLong lines formed at gas stations across the country after the strike began Friday , as drivers feared the strike could disrupt supplies .\tJJ NNS VBD IN NN NNS IN DT NN IN DT NN VBD NNP , IN NNS VBD DT NN MD VB NNS .\nNigeria is Africa 's biggest crude exporter .\tNNP VBZ NNP POS JJS NN NN .\nBut attacks on oil pipelines and the kidnapping of foreign workers have significantly cut Nigeria 's output and contributed to record high oil prices around the world .\tCC NNS IN NN NNS CC DT NN IN JJ NNS VBP RB VBN NNP POS NN CC VBD TO VB JJ NN NNS IN DT NN .\nAuthorities in Iraq say at least 14 people have been killed and 75 injured in a fire that swept through a hospital in the southern Iraqi city of Nasiriyah early Sunday .\tNNS IN NNP VBP IN JJS CD NNS VBP VBN VBN CC CD NN IN DT NN WDT VBD IN DT NN IN DT JJ JJ NN IN NNP JJ NNP .\nThe Italian news agency ( ANSA ) says Italian military personnel stationed in the area helped evacuate the facility .\tDT JJ NN NN LRB NNP RRB VBZ JJ JJ NNS VBN IN DT NN VBD VB DT NN .\nThe cause of the blaze has not been determined .\tDT NN IN DT NN VBZ RB VBN VBN .\nBut authorities say they do not believe the fire resulted from insurgent attacks .\tCC NNS VBP PRP VBP RB VB DT NN VBD IN JJ NNS .\nMeanwhile , eight Chinese workers taken hostage in Iraq earlier this month have turned up unharmed in Baghdad .\tRB , CD JJ NNS VBN NN IN NNP RBR DT NN VBP VBN RP JJ IN NNP .\nReuters ( news agency ) says a new video shows the eight men being greeted by Chinese diplomatic officials at a mosque west of Baghdad .\tNNP LRB NN NN RRB VBZ DT JJ NN VBZ DT CD NNS VBG VBN IN JJ JJ NNS IN DT NN NN IN NNP .\nIn a video released Saturday , kidnappers said they released the captives after Beijing promised to discourage its citizens from traveling to Iraq .\tIN DT NN VBN NNP , NNS VBD PRP VBD DT NNS IN NNP VBD TO VB PRP$ NNS IN VBG TO NNP .\nA former Russian prime minister and retired Russian general will travel to the war crimes tribunal at the Hague to speak in defense of former Yugoslav president Slobodan Milosevic .\tDT JJ JJ JJ NN CC JJ JJ NN MD VB TO DT NN NNS JJ IN DT NNP TO VB IN NN IN JJ JJ NN NNP NNP .\nRetired Colonel General Leonid Ivashov will testify Friday and former Prime Minister Nikolai Ryzhkov on Monday .\tJJ NNP NNP NNP NNP MD VB NNP CC JJ NNP NNP NNP NNP IN NNP .\nThe general said Thursday the men believe the charges against Mr. Milosevic are far-fetched , and that claims he committed war crimes have been fabricated by those who launched the 1999 NATO bombing campaign over Kosovo .\tDT NN VBD NNP DT NNS VBP DT NNS IN NNP NNP VBP JJ , CC IN NNS PRP VBD NN NNS VBP VBN VBN IN DT WP VBD DT CD NNP NN NN IN NNP .\nGeneral Ivashov said former prime minister and foreign minister Yevgeny Primakov also will speak on Mr. Milosevic 's behalf in late November .\tNNP NNP VBD JJ JJ NN CC JJ NN NNP NNP RB MD VB IN NNP NNP POS NN IN JJ NNP .\nThe former Yugoslav leader faces more than 60 counts of war crimes stemming from the Balkan conflicts of the 1990s .\tDT JJ JJ NN VBZ JJR IN CD NNS IN NN NNS VBG IN DT NNP NNS IN DT NNS .\nThe NATO assault was launched to end Serb aggression against ethnic Albanians .\tDT NNP NN VBD VBN TO VB JJ NN IN JJ NNS .\nYasser Arafat 's nephew says the late Palestinian leader 's medical records give no clear cause for his death , but there were no trace of known poisons .\tNNP NNP POS NN VBZ DT JJ JJ NN POS JJ NNS VBP DT JJ NN IN PRP$ NN , CC EX VBD DT NN IN VBN NNS .\nNasser al-Kidwa spoke to reporters Monday after receiving a copy of the medical file from the French military hospital outside Paris , where Mr. Arafat died on November 11 .\tNNP NNP VBD TO NNS NNP IN VBG DT NN IN DT JJ NN IN DT JJ JJ NN IN NNP , WRB NNP NNP VBD IN NNP CD .\nHe said toxicology tests were conducted on the late Palestinian leader , but no known poison was detected .\tPRP VBD NN NNS VBD VBN IN DT JJ JJ NN , CC DT VBN NN VBD VBN .\nMr. al-Kidwa , who is also the Palestinian representative to the United Nations , is expected to deliver the report to a Palestinian ministerial council which is looking into the cause of Mr. Arafat 's death .\tNNP NNP , WP VBZ RB DT JJ NN TO DT NNP NNP , VBZ VBN TO VB DT NN TO DT JJ NN NN WDT VBZ VBG IN DT NN IN NNP NNP POS NN .\nThe Palestinian leader was admitted to the French hospital in late October , but details of his illness have not been revealed .\tDT JJ NN VBD VBN TO DT JJ NN IN JJ NNP , CC NNS IN PRP$ NN VBP RB VBN VBN .\nThe United Nations High Commission for Refugees will be on an eight day mission to Uganda and Tanzania starting Monday\tDT NNP NNP NNP NNP IN NNP MD VB IN DT CD NN NN TO NNP CC NNP VBG NNP\nA U.N. statement says Antonio Guterres will oversee the start of a new program that would help refugees from Burundi return to their country for the first time since 1972 .\tDT NNP NN VBZ NNP NNP MD VB DT NN IN DT JJ NN WDT MD VB NNS IN NNP NN TO PRP$ NN IN DT JJ NN IN CD .\nThe commissioner 's office says some 2,18,000 Burundians were forced out of their homeland by violence that year , and now he would like to get as many home as possible .\tDT NN POS NN VBZ DT CD NNS VBD VBN IN IN PRP$ NN IN NN IN NN , CC RB PRP MD VB TO VB IN JJ NN IN JJ .\nIn a deal reached by Burundi , Tanzania and the U.N. refugee agency , 1,72,000 of the refugees will be allowed to stay in Tanzania and become citizens .\tIN DT NN VBN IN NNP , NNP CC DT NNP NN NN , CD IN DT NNS MD VB VBN TO VB IN NNP CC VB NNS .\nThe other 46,000 plan to return home to Burundi .\tDT JJ CD VBZ TO VB NN TO NNP .\nFormer U.S. President Bill Clinton has announced a $ 20 million fund to support small- and medium-sized businesses in earthquake-ravaged Haiti .\tJJ NNP NNP NNP NNP VBZ VBN DT $ CD CD NN TO VB JJ CC JJ NNS IN JJ NNP .\nMr. Clinton make the announcement Thursday in Haiti , along with Mexican billionaire Carlos Slim and Canadian businessman Frank Giustra , who each plan to donate half the seed money for the fund .\tNNP NNP VBD DT NN NNP IN NNP , IN IN JJ NN NNP NNP CC JJ NN NNP NNP , WP DT VBZ TO VB PDT DT NN NN IN DT NN .\nIn a statement , Mr. Clinton said the fund recognizes the important role small-and medium-sized enterprises play in helping to build a self-sustainable economy in Haiti .\tIN DT NN , NNP NNP VBD DT NN VBZ DT JJ NN JJ JJ NNS VBP IN VBG TO VB DT JJ NN IN NNP .\nThe announcement came shortly before the inaugural board meeting of the Interim Haiti Reconstruction Commission , which is being chaired by Mr. Clinton and Haitian Prime Minister Jean-Max Bellerive .\tDT NN VBD RB IN DT JJ NN NN IN DT NNP NNP NNP NNP , WDT VBZ VBG VBN IN NNP NNP CC JJ NNP NNP NNP NNP .\nThe commission is overseeing assistance to the Caribbean nation .\tDT NN VBZ VBG NN TO DT NNP NN .\nThe powerful January 12 earthquake killed at least 2,17,000 people and left one million homeless .\tDT JJ NNP CD NN VBN IN JJS CD NNS CC VBD CD CD NN .\nMany of the homeless are still living in tent cities .\tNN IN DT NN VBP RB VBG IN JJ NNS .\nMr. Clinton is the U.N. special envoy to Haiti .\tNNP NNP VBZ DT NNP JJ NN TO NNP .\nA U.S. health expert says the burden of responding to a possible bird flu pandemic reaching the United States will largely fall on local governments .\tDT NNP NN NN VBZ DT NN IN VBG TO DT JJ NN NN JJ VBG DT NNP NNPS MD RB VB IN JJ NNS .\nMichael Osterholm says the U.S. military will not be able to respond quickly if a pandemic spreads to all 50 U.S. states , leaving the effort up to state and city officials .\tNNP NNP VBZ DT NNP NN MD RB VB JJ TO VB RB IN DT JJ VBZ TO DT CD NNP NNS , VBG DT NN IN TO NN CC NN NNS .\nA plan drafted by the Bush administration to help the country deal with a possible bird flu outbreak says nearly two million people could die , in a worst-case scenario .\tDT NN VBN IN DT NNP NN TO VB DT NN NN IN DT JJ NN NN NN VBZ RB CD CD NNS MD VB , IN DT JJ NN .\nThe plan says hospitals would be overwhelmed with patients , which could number more than eight million .\tDT NN VBZ NNS MD VB VBN IN NNS , WDT MD VB JJR IN CD CD .\nBan Ki-moon is in Japan for ceremonies commemorating the 65th anniversary of the atomic bombing of Hiroshima and Nagasaki .\tNNP NNP VBZ IN NNP IN NNS VBG DT JJ NN IN DT JJ NN IN NNP CC NNP .\nMr. Ban will be the first U.N. secretary general ever to attend the Peace Memorial Ceremony , held every year on August 6 at the exact hour an atom bomb was dropped on Hiroshima .\tNNP NNP MD VB DT JJ NNP NN NN RB TO VB DT NNP NNP NNP , VBN DT NN IN NNP CD IN DT JJ NN DT NN NN VBD VBN IN NNP .\nHe will also be the world body 's first leader to visit Nagasaki , where a bomb fell three days later .\tPRP MD RB VB DT NN NN POS JJ NN TO VB NNP , WRB DT NN VBD CD NNS RB .\nMr. Ban met Tuesday with Foreign Minister Katsuya Okada in Tokyo , where he said his visit was meant to send a message about the need to work for global nuclear disarmament .\tNNP NNP VBD NNP IN NNP NNP NNP NNP IN NNP , WRB PRP VBD PRP$ NN VBD VBN TO VB DT NN IN DT NN TO VB IN JJ JJ NN .\nHe was expected to meet Wednesday with Prime Minister Naoto Kan before traveling to Hiroshima .\tPRP VBD VBN TO VB NNP IN NNP NNP NNP NNP IN VBG IN NNP .\nThe two bombs killed more than 2,00,000 people during the final stages of World War II .\tDT CD NNS VBD JJR IN CD NNS IN DT JJ NNS IN NNP NNP NNP .\nUnited Nations Secretary-General Kofi Annan has condemned a recent incursion of Ugandan rebels into the Democratic Republic of Congo ( DRC ) .\tNNP NNP NNP NNP NNP VBZ VBN DT JJ NN IN JJ NNS IN DT JJ NNP IN NNP LRB NNP RRB .\nIn a statement Wednesday , Mr. Annan called for all governments in the region to use established processes to resolve the situation and boost efforts to end the activities of illegal armed groups .\tIN DT NN NNP , NNP NNP VBD IN DT NNS IN DT NN TO VB JJ NNS TO VB DT NN CC VB NNS TO VB DT NNS IN JJ JJ NNS .\nHe reiterated that the threat or use of force against the territorial integrity or political independence of Congo violates the U.N. charter and recent mutual commitments .\tPRP VBD IN DT NN CC NN IN NN IN DT JJ NN CC JJ NN IN NNP VBZ DT NNP NN CC JJ JJ NNS .\nUgandan President Yoweri Museveni has threatened to send troops into Congo to disarm Ugandan rebels if Congo 's army and U.N. peacekeepers failed to do so .\tJJ NNP NNP NNP VBZ VBN TO VB NNS IN NNP TO VB JJ NNS IN NNP POS NN CC NNP NNS VBD TO VB RB .\nAt least 300 Ugandan rebels from the Lord 's Resistance Army crossed into Congo last month seeking political asylum .\tIN JJS CD JJ NNS IN DT NNP POS NNP NNP VBD IN NNP JJ NN VBG JJ NN .\nThe U.N. Security Council Tuesday expressed concern about the foreign armed groups that remain in the DRC , and welcomed a DRC plan to disarm Ugandan rebels .\tDT NNP NNP NNP NNP VBD NN IN DT JJ JJ NNS WDT VBP IN DT NNP , CC VBD DT NNP NN TO VB JJ NNS .\nPalestinian sources say two police officers have been killed and several others wounded in an explosion in the northern Gaza Strip that destroyed a building used by Palestinian security forces .\tJJ NNS VBP CD NNS NNS VBP VBN VBN CC JJ NNS VBD IN DT NN IN DT JJ NNP NNP WDT VBD DT NN VBN IN JJ NN NNS .\nA Palestinian Interior Ministry spokesman accused Israel in the incident at the Jabaliya refugee camp .\tDT JJ NNP NNP NN VBD NNP IN DT NN IN DT NNP NN NN .\nBut the Israeli army said it was not involved .\tCC DT JJ NN VBD PRP VBD RB VBN .\nIsrael has recently stepped up air strikes and artillery shelling against militant targets in northern Gaza , in response to ongoing rocket fire from Gaza militants targeting southern Israel .\tNNP VBZ RB VBN RP NN NNS CC NN NN IN JJ NNS IN JJ NNP , IN NN TO JJ NN NN IN NNP NNS VBG JJ NNP .\nOfficials in Chile say the rescue shaft they are drilling to free 33 trapped copper miners could reach the men by Saturday .\tNNS IN NNP VBP DT NN NN PRP VBP VBG TO JJ CD JJ NN NNS MD VB DT NNS IN NNP .\nChile 's mining minister , Laurence Golborne , told reporters Thursday that once the drill breaks through , it could take anywhere from three to 10 days to bring the men to safety .\tNNP POS NN NN , NNP NNP , VBD NNS NNP IN RB DT NN NNS IN , PRP MD VB RB IN CD CC CD NNS TO VB DT NNS TO NN .\nGolborne said experts will have to analyze the soil and rock around the bore to determine if a metal reinforcement is needed to secure the shaft .\tNNP VBD NNS MD VB TO VB DT NN CC NN IN DT NN TO VB IN DT NN NN VBZ VBN TO VB DT NN .\nHe said that process could take as long as three days .\tPRP VBD IN NN MD VB RB RB IN CD NNS .\nThe officials say a drill boring the rescue shaft is now within 100 meters of where the miners are located .\tDT NNS VBP DT NN VBG DT NN NN VBZ RB IN CD NNS IN WRB DT NNS VBP VBN .\nThe men have been trapped more than 600 meters underground since early August .\tDT NNS VBP VBN VBN RBR IN CD NNS RB IN JJ NNP .\nCrews have been sending food , water , games , letters and other items to the men through small supply shafts .\tNNS VBP VBN VBG NN , NN , NNS , NNS CC JJ NNS TO DT NNS IN JJ NN NNS .\nCrowds are gathering in the U.S. city of New Orleans Tuesday to celebrate Mardi Gras , which literally means ' Fat Tuesday ' .\tNNS VBP VBG IN DT NNP NN IN NNP NNP NNP TO VB NNP NNP , WDT RB VBZ `` NNP NNP `` .\nEleven parades will be taking place in the city Tuesday , and street parties will continue until midnight .\tCD NNS MD VB VBG NN IN DT NN NNP , CC NN NNS MD VB IN NN .\nMardi Gras , or Carnival as it is known elsewhere , is a joyful time celebrated in many predominately Roman Catholic countries .\tNNP NNP , CC NNP IN PRP VBZ VBN RB , VBZ DT JJ NN VBN IN JJ JJ NNP NNP NNS .\nIt precedes Lent , the somber Christian observance leading up to Easter .\tPRP VBZ NNP , DT JJ NNP NN VBG RP TO NNP .\nCity officials say the crowd is smaller than last year , but still party-goers are pouring into New Orleans ' famous French Quarter .\tNNP NNS VBP DT NN VBZ JJR IN JJ NN , CC RB NNS VBP VBG IN NNP NNP POS JJ JJ NN .\nMany of them are in costume , wearing purple , gold and green beads , feather boas and masks .\tNN IN PRP VBP IN NN , VBG NN , NN CC JJ NNS , NN NNS CC NNS .\nLavish Mardi Gras parades were also staged in New Orleans Tuesday evening , one of them led by singer Harry Connick Jr .\tJJ NNP NNP NNS VBD RB VBN IN NNP NNP NNP NN , CD IN PRP VBN IN NN NNP NNP NNP .\nUruguay 's new president has restored diplomatic ties with Cuba .\tNNP POS JJ NN VBZ VBN JJ NNS IN NNP .\nThe move came Tuesday , shortly after Tabare Vazquez was sworn into office in Montevideo .\tDT NN VBD NNP , RB IN NNP NNP VBD VBN IN NN IN NNP .\nDiplomatic relations between the two nations were broken in 2002 after Mr. Vazquez 's predecessor , Jorge Batlle , criticized Cuba over its human rights record .\tJJ NNS IN DT CD NNS VBD VBN IN CD IN NNP NNP POS NN , NNP NNP , VBD NNP IN PRP$ JJ NNS NN .\nUruguay 's 65-year-old president is a cancer specialist and former mayor of Montevideo .\tNNP POS JJ NN VBZ DT NN NN CC JJ NN IN NNP .\nCuban leader Fidel Castro canceled his plans to attend the inauguration for health reasons .\tJJ NN NNP NNP VBD PRP$ NNS TO VB DT NN IN NN NNS .\nAmong those attending the inauguration were the presidents of Bolivia , Chile , Paraguay and Peru as well as Spain 's Crown Prince Felipe .\tIN DT VBG DT NN VBD DT NNS IN NNP , NNP , NNP CC NNP RB RB IN NNP POS NNP NNP NNP .\nThe U.S. delegation was led by Labor Secretary Elaine Chao .\tDT NNP NN VBD VBN IN NNP NNP NNP NNP .\nU.S. State Department spokesman Adam Ereli Tuesday offered congratuatlions to the New President and said the United States looks forward to working with him .\tNNP NNP NNP NN NNP NNP NNP VBD NNS TO DT NNP NNP CC VBD DT NNP NNPS VBZ RB TO VBG IN PRP .\nAfghan officials say the police chief for the southern province of Kandahar has been killed in a clash with Afghan special forces trained by the U.S.\tJJ NNS VBP DT NN NN IN DT JJ NN IN NNP VBZ VBN VBN IN DT NN IN JJ JJ NNS VBN IN DT NNP\nA senior member of the Kandahar provincial council says at least nine other police officers were killed in Monday 's clash outside the prosecutor 's office in Kandahar city .\tDT JJ NN IN DT NNP JJ NN VBZ IN JJS CD JJ NNS NNS VBD VBN IN NNP POS NN IN DT NN POS NN IN NNP NN .\nIt is not clear what sparked the shootout .\tPRP VBZ RB JJ WP VBD DT NN .\nAfghan officials said Sunday Taliban insurgents killed at least seven police officers in separate attacks in western Afghanistan on Saturday .\tJJ NNS VBD NNP NNP NNS VBD IN JJS CD NNS NNS IN JJ NNS IN JJ NNP IN NNP .\nAuthorities say five officers and at least seven Taliban fighters were killed when militants attacked a police post in Farah province , Posht-e-Rud .\tNNS VBP CD NNS CC IN JJS CD NNP NNS VBD VBN WRB NNS VBD DT NN NN IN NNP NN , NNP .\nElsewhere in Farah Saturday , Taliban fighters ambushed Afghan police in Bala Boluk , triggering a battle in which two police officers and at least five insurgents were killed .\tRB IN NNP NNP , NNP NNS VBD JJ NNS IN NNP NNP , VBG DT NN IN WDT CD NNS NNS CC IN JJS CD NNS VBD VBN .\nThe U.S. Army began work Thursday on a long process to destroy nearly 9,50,000 liters of deadly VX nerve gas agent that has been stored in the midestern U.S. state of Indiana .\tDT NNP NNP VBD NN NNP IN DT JJ NN TO VB RB CD NNS IN JJ NNP NN NN NN WDT VBZ VBN VBN IN DT JJ NNP NN IN NNP .\nArmy contractors drained two of 1,600 hardened steel containers at the Newport Chemical Depot and moved the nerve agent into a holding tank .\tNNP NNS VBD CD IN CD VBN NN NNS IN DT NNP NNP NNP CC VBD DT NN NN IN DT NN NN .\nFriday , the VX will be pumped into a chemical reactor where it will be mixed with water and sodium hydroxide .\tNNP , DT NNP MD VB VBN IN DT NN NN WRB PRP MD VB VBN IN NN CC NN NN .\nThe mixture will be heated for several days to determine when the chemical has been neutralized .\tDT NN MD VB VBN IN JJ NNS TO VB WRB DT NN VBZ VBN VBN .\nThe entire process will take more than two years to complete .\tDT JJ NN MD VB JJR IN CD NNS TO VB .\nAuthorities want to ship the neutralized chemical to a New Jersey treatment plant before it is dumped into the Delaware River .\tNNS VBP TO VB DT JJ NN TO DT NNP NNP NN NN IN PRP VBZ VBN IN DT NNP NNP .\nExperts say a single drop of VX on the skin can kill a person in less than 12 seconds .\tNNS VBP DT JJ NN IN NNP IN DT NN MD VB DT NN IN JJR IN CD NNS .\nNepal 's army has deployed more helicopters and armed escorts along highways Sunday in an effort to break a Maoist blockade .\tNNP POS NN VBZ VBN JJR NNS CC JJ NNS IN NNS NNP IN DT NN TO VB DT NN NN .\nTraffic was light again on the second day of the nationwide blockade .\tNN VBD JJ RB IN DT JJ NN IN DT JJ NN .\nThe Maoists are protesting King Gyanendra 's decision to dismiss the government , impose a state of emergency and suspend civil liberties , as well as putting the media under military control .\tDT NNS VBP VBG NNP NNP POS NN TO VB DT NN , VB DT NN IN NN CC VB JJ NNS , RB RB IN VBG DT NNS IN JJ NN .\nThe rebels say they will continue until the monarch reverses his actions , which have prompted protests from many countries .\tDT NNS VBP PRP MD VB IN DT NN VBZ PRP$ NNS , WDT VBP VBN NNS IN JJ NNS .\nThe king dismissed the government for failing to hold parliamentary elections and stop the communist insurgency .\tDT NN VBD DT NN IN VBG TO VB JJ NNS CC VB DT JJ NN .\nThe blockade began on the ninth anniversary of the rebels ' violent uprising against the monarchy , during which more than 11,000 people have been killed .\tDT NN VBD IN DT JJ NN IN DT NNS POS JJ NN IN DT NN , IN WDT JJR IN CD NNS VBP VBN VBN .\nThe Afghan government says it is not concerned about the recently launched clandestine Taleban radio station that is broadcasting anti-U.S. and anti-government propaganda .\tDT JJ NN VBZ PRP VBZ RB JJ IN DT RB VBN JJ NNP NN NN WDT VBZ VBG JJ CC JJ NN .\nA presidential spokesman says since the Afghan people suffered enough under the ousted Taleban regime , the propaganda is not expected to have an impact .\tDT JJ NN VBZ IN DT JJ NNS VBD RB IN DT JJ NNP NN , DT NN VBZ RB VBN TO VB DT NN .\nHe also said he does not believe the Taleban remnants can continue such activities for long because the government intends to bring them to justice sooner rather than later .\tPRP RB VBD PRP VBZ RB VB DT NNP NNS MD VB JJ NNS IN RB IN DT NN VBZ TO VB PRP TO NN RBR RB IN RB .\nA U.S. military spokeswoman in Kabul says it is up to the Afghan government how it wants to deal with the broadcasts .\tDT NNP JJ NN IN NNP VBZ PRP VBZ RB TO DT JJ NN WRB PRP VBZ TO VB IN DT NNS .\nBut she said the area targeted by the broadcasts will definitely be under U.S. military surveillance .\tCC PRP VBD DT NN VBN IN DT NNS MD RB VB IN NNP JJ NN .\nCampaigning has officially begun in Iraq for the country 's upcoming March 7 general election .\tNN VBZ RB VBN IN NNP IN DT NN POS JJ NNP CD JJ NN .\nThe first official campaign posters were plastered across Baghdad Friday .\tDT JJ NN NN NNS VBD VBN IN NNP NNP .\nCampaigning opened amid simmering tensions over the decision to ban a number of Sunni Muslim candidates because of alleged ties to late Iraqi leader Saddam Hussein 's Ba'ath party .\tNN VBD IN VBG NNS IN DT NN TO VB DT NN IN NNP NNP NNS IN IN JJ NNS TO JJ JJ NN NNP NNP POS NNP NN .\nIraq 's Shi'ite-led government has tried to purge former Ba'athists from top positions .\tNNP POS JJ NN VBZ VBN TO VB JJ NNS IN JJ NNS .\nAnalysts say the effort could re-ignite sectarian tensions between majority Shi'ite Muslims and Sunnis , who dominated Iraq under Saddam .\tNNS VBP DT NN MD VB JJ NNS IN NN NNP NNPS CC NNPS , WP VBD NNP IN NNP .\nAs campaigning began , the U.S. military said five people were killed during a joint raid with Iraqi forces in a village near the Iranian border .\tIN NN VBD , DT NNP NN VBD CD NNS VBD VBN IN DT JJ NN IN JJ NNS IN DT NN IN DT JJ NN .\nIt said those killed were suspected militants , but a provincial council member told the Associated Press they were civilians .\tPRP VBD DT VBN VBD VBN NNS , CC DT JJ NN NN VBD DT NNP NNP PRP VBD NNS .\nNo further information was immediately available .\tDT JJ NN VBD RB JJ .\nA diplomat close to a U.N. investigation of Iran 's nuclear program says Pakistan has agreed to hand over used centrifuge components to the U.N. nuclear watchdog agency .\tDT NN RB TO DT NNP NN IN NNP POS JJ NN VBZ NNP VBZ VBN TO NN IN VBN NN NNS TO DT NNP JJ NN NN .\nInspectors hope tests will prove whether traces of enriched uranium found in Iran came from the Pakistani equipment , as Tehran has argued , rather than from material produced at the Iranian site .\tNNS VBP NNS MD VB IN NNS IN VBN NN VBN IN NNP VBD IN DT JJ NN , IN NNP VBZ VBN , RB IN IN NN VBN IN DT JJ NN .\nEach batch of enriched uranium has a unique ' fingerprint . '\tDT NN IN VBN NN VBZ DT JJ `` NN . ``\nIslamabad acknowledged for the first time last week that Pakistani scientist Abdul Qadeer Khan gave equipment to Iran .\tNNP VBD IN DT JJ NN JJ NN IN JJ NN NNP NNP NNP VBD NN TO NNP .\nIt has previously admitted that his group sold technology and blueprints to North Korea , Libya and Iran .\tPRP VBZ RB VBN IN PRP$ NN VBD NN CC NNS TO NNP NNP , NNP CC NNP .\nIran insists it intends to use enriched uranium only in power stations , but Washington argues that Iran is making fuel for atomic warheads .\tNNP VBZ PRP VBZ TO VB VBN NN RB IN NN NNS , CC NNP VBZ IN NNP VBZ VBG NN IN JJ NNS .\nMilitary officials say at least three soldiers and 12 militants have been killed in a clash in southwestern Pakistan .\tJJ NNS VBP IN JJS CD NNS CC CD NNS VBP VBN VBN IN DT NN IN JJ NNP .\nMajor General Salim Nawaz say the rebels ambushed a paramilitary convoy Sunday in the Dera Bugti district of Baluchistan province .\tNNP NNP NNP NNP VBP DT NNS VBD DT JJ NN NNP IN DT NNP NNP NN IN NNP NN .\nThe general says troops retaliated , killing the militants and destroying their hideout near natural gas installations in the Sui area .\tDT JJ VBZ NNS VBD , VBG DT NNS CC VBG PRP$ NN IN JJ NN NNS IN DT NNP NN .\nThis is the second such clash in over a week .\tDT VBZ DT JJ JJ NN IN IN DT NN .\nAt least 36 militants and troops were killed in the region last weekend .\tIN JJS CD NNS CC NNS VBD VBN IN DT NN JJ NN .\nRebel tribesmen have been waging a long-running , low-key insurgency in Dera Bugti .\tNNP NNS VBP VBN VBG DT JJ , JJ NN IN NNP NNP .\nThe militants accuse the central government of not sharing profits from the province 's vast natural gas reserves .\tDT NNS VBP DT JJ NN IN RB VBG NNS IN DT NN POS JJ JJ NN NNS .\nDera Bugti is near Pakistan 's biggest natural gas field and was the base of late Baluch rebel leader Nawab Akbar Bugti who was killed in a military operation in 2006 .\tNNP NNP VBZ IN NNP POS JJS JJ NN NN CC VBD DT NN IN JJ NNP NN NN NNP NNP NNP WP VBD VBN IN DT JJ NN IN CD .\nShi'ite and Kurdish political leaders in Iraq say the new government could be formed within the next week , as marathon negotiations on its makeup continue .\tNNP CC NNP JJ NNS IN NNP VBP DT JJ NN MD VB VBN IN DT JJ NN , IN NN NNS IN PRP$ NN VB .\nJawad al-Maliky of the Shi'ite-dominated United Iraqi Alliance told reporters Friday the National Assembly will likely meet again next Thursday and vote on the proposed president , prime minster and cabinet .\tNNP NNP IN DT JJ NNP JJ NNP VBD NNS NNP DT NNP NNP MD RB VB RB JJ NNP CC NN IN DT VBN NN , JJ NN CC NN .\nBut some other politicians have given a slightly longer time frame , saying the parliament will not reconvene until next Saturday .\tCC DT JJ NNS VBP VBN DT RB JJR NN NN , VBG DT NN MD RB VB IN JJ NNP .\nThe new interim assembly was sworn in Wednesday , but the government was not named because Shi'ite and Kurdish politicians have not been able to compromise on several significant issues .\tDT JJ JJ NN VBD VBN IN NNP , CC DT NN VBD RB VBN IN NNP CC NNP NNS VBP RB VBN JJ TO VB IN JJ JJ NNS .\nSome Iraqis have expressed frustration over the prolonged talks , after millions defied insurgents and risked attack to vote in the January 30th election .\tDT NNS VBP VBN NN IN DT JJ NNS , IN NNS VBD NNS CC VBD NN TO VB IN DT NNP CD NN .\nTurkish officials say Kurdish separatist militants have killed four soldiers in an overnight ambush in the eastern part of Turkey .\tJJ NNS VBP NNP JJ NNS VBP VBN CD NNS IN DT JJ NN IN DT JJ NN IN NNP .\nAuthorities say militants of the Kurdistan Workers Party , armed with rocket launchers , attacked a local commando unit on patrol in Tunceli province in a pre-dawn raid on Sunday .\tNNS VBP NNS IN DT NNP NNP NNP , VBN IN NN NNS , VBD DT JJ NN NN IN NN IN NNP NN IN DT JJ NN IN NNP .\nOne Turkish soldier was wounded .\tCD JJ NN VBD VBN .\nFighting between the government and the Kurdish rebels subsided in 1999 after the rebels declared a cease-fire with Ankara .\tVBG IN DT NN CC DT NNP NNS VBD IN CD IN DT NNS VBD DT NN IN NNP .\nBut rebels called off the truce last June , saying they were not satisfied with the pace of promised Turkish reforms .\tCC NNS VBD RP DT NN JJ NNP , VBG PRP VBD RB VBN IN DT NN IN JJ JJ NNS .\nThe Kurdistan Workers Party has been fighting for an ethnic homeland in southeastern Turkey for more than two decades .\tDT NNP NNP NNP VBZ VBN VBG IN DT JJ NN IN JJ NNP IN JJR IN CD NNS .\nMore than 30,000 people have died since their revolt began in 1984 .\tJJR IN CD NNS VBP VBN IN PRP$ NN VBD IN CD .\nJapanese authorities have confirmed that a bird flu outbreak in the country 's south was caused by the deadly H5N1 virus .\tJJ NNS VBP VBN IN DT NN NN NN IN DT NN POS NN VBD VBN IN DT JJ NNP NN .\nAuthorities said Saturday officials are culling tens of thousands of birds on the affected poultry farm in Miyazaki prefecture .\tNNS VBD NNP NNS VBP VBG NNS IN NNS IN NNS IN DT JJ NN NN IN NNP NN .\nThe culling began Friday , after preliminary tests showed the chickens were infected with an H5 strain of the bird flu virus .\tDT NN VBD NNP , IN JJ NNS VBD DT NNS VBD VBN IN DT NNP NN IN DT NN NN NN .\nEarlier this month in the same area , Japan confirmed its first outbreak of H5N1 in three years .\tRBR DT NN IN DT JJ NN , NNP VBD PRP$ JJ NN IN NNP IN CD NNS .\nNo human infections have been reported .\tDT JJ NNS VBP VBN VBN .\nBird flu has killed more than 150 people worldwide since its emergence in 2003 .\tNN NN VBZ VBN JJR IN CD NNS JJ IN PRP$ NN IN CD .\nTaleban militants have freed one German and four Afghans held hostage in Afghanistan since July in exchange for the release of several Taleban prisoners .\tNNP NNS VBP VBN CD JJ CC CD NNS VBN NN IN NNP IN NNP IN NN IN DT NN IN JJ NNP NNS .\nJaghato district chief Mohammed Nahim in Wardak province says the hostage swap took place earlier Wednesday .\tNNP NN NN NNP NNP IN NNP NN VBZ DT NN NN VBD NN RB NNP .\nThe official and the private Afghan news agency , Pajhwok , says the freed Taleban militants were related to the kidnappers .\tDT NN CC DT JJ JJ NN NN , NNP , VBZ DT VBN NNP NNS VBD VBN TO DT NNS .\nThe German , Rudolf Blechschmidt , was captured in Wardak province along with the Afghans and another German , who became ill while in captivity and was shot dead .\tDT NN , NNP NNP , VBD VBN IN NNP NN IN IN DT NNS CC DT NN , WP VBD JJ IN IN NN CC VBD VBN JJ .\nGerman Foreign Minister Frank-Walter Steinmeier confirmed the release of the engineer , saying officials were happy and relieved .\tJJ NNP NNP NNP NNP VBD DT NN IN DT NN , VBG NNS VBD JJ CC JJ .\nBlechschmidt appeared in a video in August pleading for his freedom and saying his health was deteriorating .\tNNP VBD IN DT NN IN NNP VBG IN PRP$ NN CC VBG PRP$ NN VBD VBG .\nTaleban kidnappers demanded Germany withdraw its troops serving with the NATO mission in Afghanistan .\tNNP NNS VBD NNP VB PRP$ NNS VBG IN DT NNP NN IN NNP .\nThe German government refused .\tDT JJ NN VBD .\nAfghan officials say at least 32 people have died in a head-on collision between two buses in southern Afghanistan .\tJJ NNS VBP IN JJS CD NNS VBP VBN IN DT JJ NN IN CD NNS IN JJ NNP .\nAt least 35 others were injured .\tIN JJS CD NNS VBD VBN .\nPolice said the crash occurred Monday on the main road linking the capital Kabul and the southern city of Kandahar .\tNNS VBD DT NN VBD NNP IN DT JJ NN VBG DT NN NNP CC DT JJ NN IN NNP .\nThe Reuters news agency reports the crash occurred at a high speed about an hour before sundown .\tDT NNP NN NN VBZ DT NN VBD IN DT JJ NN IN DT NN IN NN .\nIn other news , NATO reports that a soldier with its International Security Assistance Force mission was killed and at least four others wounded while on patrol in southern Afghanistan on Monday .\tIN JJ NN , NNP VBZ IN DT NN IN PRP$ NNP NNP NNP NNP NN VBD VBN CC IN JJS CD NNS VBN IN IN NN IN JJ NNP IN NNP .\nArab foreign ministers meeting in Cairo have agreed to support a U.S. proposal for indirect peace talks between Palestinians and Israelis .\tJJ JJ NNS VBG IN NNP VBP VBN TO VB DT NNP NN IN JJ NN NNS IN NNS CC NNS .\nPalestinian negotiator Saeb Erekat told reporters Wednesday that members of the Arab League will back the talks for a period of four months .\tJJ NN NNP NNP VBD NNS NNP IN NNS IN DT NNP NNP MD VB DT NNS IN DT NN IN CD NNS .\nPalestinian President Mahmoud Abbas , who is attending the Cairo meeting , has said he would abide by the Arab League 's decision .\tJJ NNP NNP NNP , WP VBZ VBG DT NNP NN , VBZ VBN PRP MD VB IN DT NNP NNP POS NN .\nIsraeli Prime Minister Benjamin Netanyahu also welcomed the decision .\tJJ NNP NNP NNP NNP RB VBD DT NN .\nThe announcement follows a U.S. offer to mediate discussions between the two sides in an effort to revive the stalled peace process .\tDT NN VBZ DT NNP NN TO VB NNS IN DT CD NNS IN DT NN TO VB DT VBN NN NN .\nOn Tuesday , a U.S. State Department spokesman , P.J. Crowley , said Washington believes Israel and the Palestinians are ' getting closer ' to starting a dialogue .\tIN NNP , DT NNP NNP NNP NN , NNP NNP , VBD NNP VBZ NNP CC DT NNS VBP `` VBG RBR `` TO VBG DT NN .\nTalks broke down over a year ago .\tNNS VBD RP IN DT NN RB .\nOne of the biggest disputes is Israel 's continued settlement activity in territory that Palestinians claim for a future state .\tCD IN DT JJS NNS VBZ NNP POS JJ NN NN IN NN IN NNS VBP IN DT JJ NN .\nUkrainian President Viktor Yushchenko has assured President Bush that recent political developments in Ukraine will in no way affect his country 's hopes to eventually join NATO and the European Union .\tJJ NNP NNP NNP VBZ VBN NNP NNP IN JJ JJ NNS IN NNP MD IN DT NN VB PRP$ NN POS NNS TO RB VB NNP CC DT NNP NNP .\nIn a statement , Saturday , the Ukrainian presidency said the two men had spoken by telephone .\tIN DT NN , NNP , DT JJ NN VBD DT CD NNS VBD VBN IN NN .\nThe statement quoted Mr. Yushchenko as telling Mr. Bush his recent actions were aimed at consolidating democracy and making Ukraine 's government more efficient .\tDT NN VBD NNP NNP IN VBG NNP NNP PRP$ JJ NNS VBD VBN IN VBG NN CC VBG NNP POS NN RBR JJ .\nThursday , Mr. Yushchenko dismissed Prime Minister Yulija Tymoshenko , one of the key figures behind the ' Orange Revolution , ' the popular movement that brought him to power early this year .\tNNP , NNP NNP VBD NNP NNP NNP NNP , CD IN DT JJ NNS IN DT `` NNP NNP , `` DT JJ NN WDT VBD PRP TO NN RB DT NN .\nThe Ukrainian president also dismissed the entire cabinet amid reports of government infighting and allegations of official fraud .\tDT JJ NN RB VBD DT JJ NN IN NNS IN NN NN CC NNS IN JJ NN .\nHe named senior regional official Yuri Yekhanurov acting prime minister .\tPRP VBD JJ JJ NN NNP NNP VBG JJ NN .\nMs. Tymoshenko says she and her supporters plan to run their own candidates in next year 's parliamentary elections .\tNNP NNP VBZ PRP CC PRP$ NNS VBP TO VB PRP$ JJ NNS IN JJ NN POS JJ NNS .\nGovernments , officials and activists worldwide are commemorating International Human Rights Day Friday .\tNNS , NNS CC NNS NN VBP VBG NNP NNP NNP NNP NNP .\nToday marks the anniversary of the U.N. General Assembly 's adoption of the Universal Declaration of Human Rights in 1948 .\tNN VBZ DT NN IN DT NNP NNP NNP POS NN IN DT NNP NNP IN NNP NNPS IN CD .\nThe General Assembly will commemorate Human Rights Day by holding a plenary session on human rights education .\tDT NNP NNP MD VB NNP NNP NNP IN VBG DT JJ NN IN JJ NNS NN .\nThe session also marks the end of the United Nations Decade for Human Rights Education , which began in 1995 .\tDT NN RB VBZ DT NN IN DT NNP NNP NNP IN NNP NNP NNP , WDT VBD IN CD .\nThe world body also plans to hold panel discussions on human rights education in schools , as well as a human rights year in review .\tDT NN NN RB VBZ TO VB NN NNS IN JJ NNS NN IN NNS , RB RB IN DT JJ NNS NN IN NN .\nPope John Paul II has denounced using hostages as bargaining pieces and called for respect of human life .\tNNP NNP NNP NNP VBZ VBN VBG NNS IN NN NNS CC VBN IN NN IN JJ NN .\nThe pontiff made the comments in French Saturday as he accepted a political courage award from a French Catholic television station and French political magazine .\tDT NN VBD DT NNS IN NNP NNP IN PRP VBD DT JJ NN NN IN DT JJ JJ NN NN CC JJ JJ NN .\nHe told the audience at the Vatican that his thoughts go out to journalists , who he described as artisans of peace and liberty , and face danger in conflict zones .\tPRP VBD DT NN IN DT NNP IN PRP$ NNS VBP RP TO NNS , WP PRP VBD IN NNS IN NN CC NN , CC NN NN IN NN NNS .\nHe said there is no justification for kidnappers using a human life to bargain for demands .\tPRP VBD EX VBZ DT NN IN NNS VBG DT JJ NN TO VB IN NNS .\nHis comments come as officials still seek word on two French journalists who have been missing in Iraq since August .\tPRP$ NNS VBP IN NNS RB VBP NN IN CD JJ NNS WP VBP VBN VBG IN NNP IN NNP .\nMilitants who claimed to have abducted the pair have called for France to repeal its headscarf ban in state schools .\tNNS WP VBD TO VB VBN DT NN VBP VBN IN NNP TO VB PRP$ NN NN IN NN NNS .\nU.S. Republicans say the country 's health care costs could be lowered by cutting down on lawsuits and allowing people to buy health insurance plans across state lines .\tNNP NNS VBP DT NN POS NN NN NNS MD VB VBN IN VBG RP IN NNS CC VBG NNS TO VB NN NN NNS IN NN NNS .\nGiving the Republican Party 's weekly Saturday radio and Internet address , Illinois Congressman Mark Kirk said his party 's suggested reforms are ' common sense . '\tVBG DT NNP NNP POS JJ NNP NN CC NN NN , NNP NNP NNP NNP VBD PRP$ NN POS JJ NNS VBP `` JJ NN . ``\nHe said he regrets their health care reform bill was rejected .\tPRP VBD PRP VBZ PRP$ NN NN NN NN VBD VBN .\nKirk said the Democrats ' plan is ' a new massive spending program , ' when the national debt already ' tops $ 12 trillion . '\tNNP VBD DT NNPS POS NN VBZ `` DT JJ JJ NN NN , `` WRB DT JJ NN RB `` VBZ $ CD CD . ``\nLast week , Democrats in the House of Representatives passed their plan .\tJJ NN , NNPS IN DT NNP IN NNPS VBD PRP$ NN .\nIt includes a government-run option for health insurance and extends coverage to an additional 36 million people .\tPRP VBZ DT JJ NN IN NN NN CC VBZ NN TO DT JJ CD CD NNS .\nThe government estimates the new bill would cost about $ 1.2 trillion over 10 years .\tDT NN VBZ DT JJ NN MD VB IN $ CD CD IN CD NNS .\nThe U.S. Senate has yet to pass health care legislation .\tDT NNP NNP VBZ RB TO VB NN NN NN .\nHeads of state from French-speaking nations are gathering in the west African nation of Burkina Faso for a two-day summit to discuss the crisis in Ivory Coast .\tNNS IN NN IN JJ NNS VBP VBG IN DT JJ JJ NN IN NNP NNP IN DT JJ NN TO VB DT NN IN NNP NNP .\nLeaders of some world hotspots : Sudan , Haiti , Rwanda and Democratic Republic of Congo - top the guest list .\tNNS IN DT NN NNS IN NNP , NNP , NNP CC NNP NNP IN NNP IN JJ DT NN NN .\nHowever , Ivorian President Laurent Gbagbo is not expected to attend .\tRB , JJ NNP NNP NNP VBZ RB VBN TO VB .\nFrench President Jacques Chirac is expected to press delegates to renew a call for peace in Ivory Coast , after the government raided rebel bases this month , shattering an 18-month truce .\tJJ NNP NNP NNP VBZ VBN TO VB NNS TO VB DT NN IN NN IN NNP NNP , IN DT NN VBD JJ NNS DT NN , VBG DT JJ NN .\nThe raids killed nine members of a French peacekeeping force , which responded by destroying Ivorian warplanes .\tDT NNS VBD CD NNS IN DT JJ NN NN , WDT VBD IN VBG JJ NNS .\nThe United States is concerned about the outbreak of violence in eastern Uzbekistan .\tDT NNP NNPS VBZ VBN IN DT NN IN NN IN JJ NNP .\nA State Department spokesman in Washington , Richard Boucher , has called Friday on both the Uzbek government and the protesters to avoid violence and seek a peaceful way out of the crisis .\tDT NNP NNP NN IN NNP , NNP NNP , VBZ VBN NNP IN DT DT JJ NN CC DT NNS TO VB NN CC VB DT JJ NN IN IN DT NN .\nThe European Union is blaming authorities in Tashkent for the violence .\tDT NNP NNP VBZ VBG NNS IN NNP IN DT NN .\nA spokesman for the European Commission says the clashes in Andijan were a consequence of the government 's lack of respect for human rights and the rule of law , as well as its failure to ease poverty .\tDT NN IN DT JJ NNP VBZ DT NNS IN NNP VBD DT NN IN DT NN POS NN IN NN IN JJ NNS CC DT NN IN NN , RB RB IN PRP$ NN TO VB NN .\nIn Moscow , Russian authorities have blamed Uzbek protesters for the violence .\tIN NNP , JJ NNS VBP VBN JJ NNS IN DT NN .\nThe head of the Duma State Committee for International Affairs , Konstantin Kosachev , warns that the Adijon uprising could trigger a wave of unrest across a wider area of Central Asia .\tDT NN IN DT NNP NNP NNP IN NNP NNP , NNP NNP , VBZ IN DT NNP NN MD VB DT NN IN NN IN DT JJR NN IN NNP NNP .\nDoctors treating prominent U.S. Senator Edward Kennedy say his apparent seizure Tuesday was caused by fatigue .\tNNS VBG JJ NNP NNP NNP NNP VBP PRP$ JJ NN NNP VBD VBN IN NN .\nKennedy , who has brain cancer , collapsed during an inauguration luncheon in honor of President Barack Obama at the Capitol building .\tNNP , WP VBZ NN NN , VBD IN DT NN NN IN NN IN NNP NNP NNP IN DT NNP NN .\nHe was taken to a nearby hospital , where he underwent tests .\tPRP VBD VBN TO DT JJ NN , WRB PRP VBD NNS .\nDoctors say the 76-year-old liberal icon is awake , talking with friends , and feeling well .\tNNS VBP DT JJ JJ NN VBZ JJ , VBG IN NNS , CC VBG RB .\nHe will remain in the hospital overnight for observation .\tPRP MD VB IN DT NN JJ IN NN .\nMr. Obama told dignitaries at the inaugural lunch that he was praying for Kennedy , who he called a warrior for civil rights .\tNNP NNP VBD NNS IN DT JJ NN IN PRP VBD VBG IN NNP , WP PRP VBD DT NN IN JJ NNS .\nKennedy underwent surgery for a malignant brain tumor last year , after being diagnosed in May .\tNNP VBD NN IN DT JJ NN NN JJ NN , IN VBG VBN IN NNP .\nHe has represented the state of Massachusetts in the Senate since 1962 and is the only surviving brother of the late President John Kennedy .\tPRP VBZ VBN DT NN IN NNP IN DT NNP IN CD CC VBZ DT RB VBG NN IN DT JJ NNP NNP NNP .\nSony Corp. completed its tender offer for Columbia Pictures Entertainment Inc. , with Columbia shareholders tendering 99.3 % of all common shares outstanding by the Tuesday deadline .\tNNP NNP VBN PRP$ NN NN IN NNP NNP NNP NNP , IN NNP NNS VBG CD NN IN DT JJ NNS JJ IN DT NNP NN .\nSony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said .\tNNP NNP NNP NNP , VBN IN DT NNP NN , MD RB VB NN IN DT NN NN RB DT NN , DT NN VBD .\nSony is paying $ 27 a share , or $ 3.55 billion , cash and is assuming $ 1.4 billion of long-term debt .\tNNP VBZ VBG $ CD DT NN , CC $ CD CD , NN CC VBZ VBG $ CD CD IN JJ NN .\nStill unresolved is Sony 's effort to hire producers Jon Peters and Peter Guber to run the studio .\tRB JJ VBZ NNP POS NN TO VB NNS NNP NNP CC NNP NNP TO VB DT NN .\nSony 's planned acquisition of Guber / Peters Entertainment Co. for $ 200 million is scheduled to close Monday .\tNNP POS VBN NN IN NNP NN NNP NNP NN IN $ CD CD VBZ VBN TO VB NNP .\nGuber / Peters has been locked in litigation with Warner Communications Inc. in an attempt to get out of an exclusive production contract with Warner .\tNNP NN NNP VBZ VBN VBN IN NN IN NNP NNP NNP IN DT NN TO VB IN IN DT JJ NN NN IN NNP .\nBoth sides are in talks to settle the dispute .\tDT NNS VBP IN NNS TO VB DT NN .\nIn February 2007 , the Iles Eparses became an integral part of the French Southern and Antarctic Lands ( TAAF ) .\tIN NNP CD , DT NNPS NNPS VBD DT JJ NN IN DT JJ NNP CC NNP NNP LRB NNP RRB .\nThe Southern Lands are now divided into five administrative districts , two of which are archipelagos , Iles Crozet and Iles Kerguelen ; the third is a district composed of two volcanic islands , Ile Saint-Paul and Ile Amsterdam ; the fourth , Iles Eparses , consists of five scattered tropical islands around Madagascar .\tDT NNP NNPS VBP RB VBN IN CD JJ NNS , CD IN WDT VBP NNS , NNP NNP CC NNP NNP ; DT NN VBZ DT NN VBN IN CD JJ NNS , NNP NNP CC NNP NNP ; DT NN , NNP NNPS , VBZ IN CD JJ JJ NNS IN NNP .\nThey contain no permanent inhabitants and are visited only by researchers studying the native fauna , scientists at the various scientific stations , fishermen , and military personnel .\tPRP VBP DT JJ NNS CC VBP VBN RB IN NNS VBG DT JJ NN , NNS IN DT JJ JJ NNS , NNS , CC JJ NNS .\nThe fifth district is the Antarctic portion , which consists of ' Adelie Land , ' a thin slice of the Antarctic continent discovered and claimed by the French in 1840 .\tDT JJ NN VBZ DT JJ NN , WDT VBZ IN `` NNP NNP , `` DT JJ NN IN DT NNP NN VBD CC VBD IN DT NNS IN CD .\nLandlocked Malawi ranks among the world 's most densely populated and least developed countries .\tJJ NNP VBZ IN DT NN POS RBS RB VBN CC JJS JJ NNS .\nThe economy is predominately agricultural with about 80 % of the population living in rural areas .\tDT NN VBZ RB JJ IN IN CD NN IN DT NN NN IN JJ NNS .\nAgriculture , which has benefited from fertilizer subsidies since 2006 , accounts for more than one-third of GDP and 90 % of export revenues .\tNN , WDT VBZ VBN IN NN NNS IN CD , NNS IN JJR IN NN IN NN CC CD NN IN NN NNS .\nThe performance of the tobacco sector is key to short-term growth as tobacco accounts for more than half of exports .\tDT NN IN DT NN NN VBZ JJ TO JJ NN IN NN NNS IN JJR IN NN IN NNS .\nThe economy depends on substantial inflows of economic assistance from the IMF , the World Bank , and individual donor nations .\tDT NN VBZ IN JJ NNS IN JJ NN IN DT NNP , DT NNP NNP , CC JJ NN NNS .\nIn 2006 , Malawi was approved for relief under the Heavily Indebted Poor Countries ( HIPC ) program .\tIN CD , NNP VBD VBN IN NN IN DT NNP NNP NNP NNPS LRB NNP RRB NN .\nIn December 2007 , the US granted Malawi eligibility status to receive financial support within the Millennium Challenge Corporation ( MCC ) initiative .\tIN NNP CD , DT NNP VBD NNP NN NN TO VB JJ NN IN DT NNP NNP NNP LRB NNP RRB NN .\nThe government faces many challenges including developing a market economy , improving educational facilities , facing up to environmental problems , dealing with the rapidly growing problem of HIV / AIDS , and satisfying foreign donors that fiscal discipline is being tightened .\tDT NN VBZ JJ NNS VBG VBG DT NN NN , VBG JJ NNS , VBG RP TO JJ NNS , VBG IN DT RB VBG NN IN NNP NNP NNP , CC VBG JJ NNS IN JJ NN VBZ VBG VBN .\nSince 2005 President MUTHARIKA'S government has exhibited improved financial discipline under the guidance of Finance Minister Goodall GONDWE and signed a three year Poverty Reduction and Growth Facility worth $ 56 million with the IMF .\tIN CD NNP NNP NN VBZ VBN JJ JJ NN IN DT NN IN NNP NNP NNP NNP CC VBD DT CD NN NNP NNP CC NNP NNP JJ $ CD CD IN DT NNP .\nImproved relations with the IMF lead other international donors to resume aid as well .\tJJ NNS IN DT NNP NN JJ JJ NNS TO VB NN IN RB .\nThe government has announced infrastructure projects that could yield improvements , such as a new oil pipeline , for better fuel access , and the potential for a waterway link through Mozambican rivers to the ocean , for better transportation options .\tDT NN VBZ VBN NN NNS WDT MD VB NNS , JJ IN DT JJ NN NN , IN JJR NN NN , CC DT NN IN DT NN NN IN NNP NNS TO DT NN , IN JJR NN NNS .\nSince 2009 , however , Malawi has experienced some setbacks , including a general shortage of foreign exchange , which has damaged its ability to pay for imports , and fuel shortages that hinder transportation and productivity .\tIN CD , RB , NNP VBZ VBN DT NNS , VBG DT JJ NN IN JJ NN , WDT VBZ VBN PRP$ NN TO VB IN NNS , CC NN NNS WDT VB NN CC NN .\nInvestment fell 23 % in 2009 , and continued to decline in 2010 .\tNN VBD CD NN IN CD , CC VBD TO VB IN CD .\nThe government has failed to address barriers to investment such as unreliable power , water shortages , poor telecommunications infrastructure , and the high costs of services .\tDT NN VBZ VBN TO VB NNS TO NN JJ IN JJ NN , NN NNS , JJ NNS NN , CC DT JJ NNS IN NNS .\nThe Atlantic Ocean is the second largest of the world 's five oceans ( after the Pacific Ocean , but larger than the Indian Ocean , Southern Ocean , and Arctic Ocean ) .\tDT NNP NNP VBZ DT JJ JJS IN DT NN POS CD NNS LRB IN DT NNP NNP , CC JJR IN DT NNP NNP , NNP NNP , CC NNP NNP RRB .\nThe Kiel Canal ( Germany ) , Oresund ( Denmark-Sweden ) , Bosporus ( Turkey ) , Strait of Gibraltar ( Morocco-Spain ) , and the Saint Lawrence Seaway ( Canada-US ) are important strategic access waterways .\tDT NNP NNP LRB NNP RRB , NNP LRB NNP RRB , NNP LRB NNP RRB , NNP IN NNP LRB NNP RRB , CC DT NNP NNP NNP LRB NNP RRB VBP JJ JJ NN NNS .\nThe decision by the International Hydrographic Organization in the spring of 2000 to delimit a fifth world ocean , the Southern Ocean , removed the portion of the Atlantic Ocean south of 60 degrees south latitude .\tDT NN IN DT NNP NNP NNP IN DT NN IN CD TO VB DT JJ NN NN , DT NNP NNP , VBD DT NN IN DT NNP NNP NN IN CD NNS JJ NN .\nFounding president and liberation struggle icon Jomo KENYATTA led Kenya from independence in 1963 until his death in 1978 , when President Daniel Toroitich arap MOI took power in a constitutional succession .\tVBG NN CC NN NN NN NNP NNP VBD NNP IN NN IN CD IN PRP$ NN IN CD , WRB NNP NNP NNP NNP NNP VBD NN IN DT JJ NN .\nThe country was a de~facto one-party state from 1969 until 1982 when the ruling Kenya African National Union ( KANU ) made itself the sole legal party in Kenya .\tDT NN VBD DT JJ JJ NN IN CD IN CD WRB DT NN NNP NNP NNP NNP LRB NNP RRB VBD PRP DT JJ JJ NN IN NNP .\nMOI acceded to internal and external pressure for political liberalization in late 1991 .\tNNP VBD TO JJ CC JJ NN IN JJ NN IN JJ CD .\nThe ethnically fractured opposition failed to dislodge KANU from power in elections in 1992 and 1997 , which were marred by violence and fraud , but were viewed as having generally reflected the will of the Kenyan people .\tDT RB JJ NN VBD TO VB NNP IN NN IN NNS IN CD CC CD , WDT VBD VBN IN NN CC NN , CC VBD VBN IN VBG RB VBN DT NN IN DT JJ NNS .\nPresident MOI stepped down in December 2002 following fair and peaceful elections .\tNNP NNP VBD RB IN NNP CD VBG JJ CC JJ NNS .\nMwai KIBAKI , running as the candidate of the multiethnic , united opposition group , the National Rainbow Coalition ( NARC ) , defeated KANU candidate Uhuru KENYATTA and assumed the presidency following a campaign centered on an anticorruption platform .\tNNP NNP , VBG IN DT NN IN DT JJ , JJ NN NN , DT NNP NNP NNP LRB NNP RRB , VBN NNP NN NNP NNP CC VBD DT NN VBG DT NN VBN IN DT NN NN .\nKIBAKI 's NARC coalition splintered in 2005 over a constitutional review process .\tNNP POS NNP NN VBD IN CD IN DT JJ NN NN .\nGovernment defectors joined with KANU to form a new opposition coalition , the Orange Democratic Movement , which defeated the government 's draft constitution in a popular referendum in November 2005 .\tNN NNS VBD IN NNP TO VB DT JJ NN NN , DT NNP NNP NNP , WDT VBD DT NN POS NN NN IN DT JJ NN IN NNP CD .\nKIBAKI 's reelection in December 2007 brought charges of vote rigging from ODM candidate Raila ODINGA and unleashed two months of violence in which as many as 1,500 people died .\tNNP POS NN IN NNP CD VBD NNS IN NN VBG IN NNP NN NNP NNP CC JJ CD NNS IN NN IN WDT RB JJ IN CD NNS VBD .\nUN-sponsored talks in late February produced a powersharing accord bringing ODINGA into the government in the restored position of prime minister .\tJJ NNS IN JJ NNP VBD DT JJ NN VBG NNP IN DT NN IN DT VBN NN IN JJ NN .\nKenya in August 2010 adopted a new constitution that eliminates the role of prime minister after the next presidential election .\tNNP IN NNP CD VBD DT JJ NN WDT VBZ DT NN IN JJ NN IN DT JJ JJ NN .\nScattered over more than three-quarters of a million square kilometers of ocean , the Coral Sea Islands were declared a territory of Australia in 1969 .\tVBN IN JJR IN NNS IN DT CD JJ NNS IN NN , DT NNP NNP NNP VBD VBN DT NN IN NNP IN CD .\nThey are uninhabited except for a small meteorological staff on the Willis Islets .\tPRP VBP JJ IN IN DT JJ JJ NN IN DT NNP NNPS .\nAutomated weather stations , beacons , and a lighthouse occupy many other islands and reefs .\tVBN NN NNS , NNS , CC DT NN VBP JJ JJ NNS CC NNS .\nA LION roaming by the seashore saw a Dolphin lift up its head out of the waves , and suggested that they contract an alliance , saying that of all the animals they ought to be the best friends , since the one was the king of beasts on the earth , and the other was the sovereign ruler of all the inhabitants of the ocean .\tDT NN VBG IN DT NN VBD DT NN NN IN PRP$ NN IN IN DT NNS , CC VBD IN PRP VB DT NN , VBG IN IN PDT DT NNS PRP MD TO VB DT JJS NNS , IN DT CD VBD DT NN IN NNS IN DT NN , CC DT NN VBD DT JJ NN IN PDT DT NNS IN DT NN .\nThe Dolphin gladly consented to this request .\tDT NN RB VBD TO DT NN .\nNot long afterwards the Lion had a combat with a wild bull , and called on the Dolphin to help him .\tRB RB VBZ DT NNP VBD DT NN IN DT JJ NN , CC VBD IN DT NN TO VB PRP .\nThe Dolphin , though quite willing to give him assistance , was unable to do so , as he could not by any means reach the land .\tDT NN , IN RB JJ TO VB PRP NN , VBD JJ TO VB RB , IN PRP MD RB IN DT NNS VBP DT NN .\nThe Lion abused him as a traitor .\tDT NN VBD PRP IN DT NN .\nThe Dolphin replied , ' Nay , my friend , blame not me , but Nature , which , while giving me the sovereignty of the sea , has quite denied me the power of living upon the land . '\tDT NN VBD , `` UH , PRP$ NN , VB RB PRP , CC NN , WDT , IN VBG PRP DT NN IN DT NN , VBZ RB VBN PRP DT NN IN VBG IN DT NN . ``\nA DRUNKEN Man was lying in the road with a bleeding nose , upon which he had fallen , when a Pig passed that way .\tDT JJ NN VBD VBG IN DT NN IN DT NN NN , IN WDT PRP VBD VBN , WRB DT NN VBD DT NN .\n' You wallow fairly well , ' said the Pig , ' but , my fine fellow , you have much to learn about rooting . '\t`` PRP VBP RB RB , `` VBD DT NNP , `` CC , PRP$ JJ NN , PRP VBP RB TO VB IN NN . ``\nDiplomats say the United States and the European Union are ready to offer Iran a compromise deal that would permit the Tehran government to carry out one of the early stages of making nuclear fuel , but all actual uranium enrichment would take place in Russia .\tNNS VBP DT NNP NNPS CC DT NNP NNP VBP JJ TO VB NNP DT NN NN WDT MD VB DT JJ NN TO VB RP CD IN DT JJ NNS IN VBG JJ NN , CC DT JJ NN NN MD VB NN IN NNP .\nEnriched uranium can be used to generate energy or to make nuclear weapons .\tVBN NN MD VB VBN TO VB NN CC TO VB JJ NNS .\nIran says it wants to process its own nuclear fuel to produce electricity .\tNNP VBZ PRP VBZ TO VB PRP$ JJ JJ NN TO VB NN .\nBut The United States and Europe accuse Tehran of seeking highly enriched weapons-grade material .\tCC DT NNP NNPS CC NNP VBP NNP IN VBG RB VBN JJ NN .\nDiplomats say moving the enrichment process to Russia would allow international oversight of the process .\tNNS VBP VBG DT NN NN TO NNP MD VB JJ NN IN DT NN .\nIran has rejected international demands to renounce its right to enrichment , and restarted its conversion process earlier this year .\tNNP VBZ VBN JJ NNS TO VB PRP$ NN TO NN , CC VBD PRP$ NN NN RBR DT NN .\nThe International Atomic Energy Agency ruled Tehran is not in compliance with the Nuclear Non-Proliferation treaty .\tDT NNP NNP NNP NNP VBD NNP VBZ RB IN NN IN DT NNP NNP NN .\nThe IAEA board meets later this month ( November 24 ) to consider further action .\tDT NNP NN VBZ RB DT NN LRB NNP CD RRB TO VB JJ NN .\nAn estimated 8,000 landless activists converged on Brazil 's capital this week to demand land reform .\tDT VBN CD JJ NNS VBD IN NNP POS NN DT NN TO VB NN NN .\nThe demonstrators surrounded the central bank in Brasilia Thursday , carrying a list of demands for delivery to a bank official .\tDT NNS VBN DT JJ NN IN NNP NNP , VBG DT NN IN NNS IN NN TO DT NN NN .\nThe Reuters news agency quoted one activist as saying there could be another fight over the issue in five to six months unless more public money is provided to speed up land reform .\tDT NNP NN NN VBN CD NN IN VBG EX MD VB DT NN IN DT NN IN CD CC CD NNS IN JJR JJ NN VBZ VBN TO VB RP NN NN .\nThe protest took place just days after hooded gunmen killed five land reform activists on a farm in the southeastern state of Minas Gerais .\tDT NN VBD NN RB NNS IN JJ NNS VBD CD NN NN NNS IN DT NN IN DT JJ NN IN NNP NNP .\nBrazil has one of the greatest disparities in land ownership in the world , with a small number of wealthy ranchers owning the vast majority of the land .\tNNP VBZ CD IN DT JJS NNS IN NN NN IN DT NN , IN DT JJ NN IN JJ NNS VBG DT JJ NN IN DT NN .\nSouth Korea says North Korea has fired three short-range missiles off its west coast .\tNNP NNP VBZ NNP NNP VBZ VBN CD JJ NNS IN PRP$ JJS NN .\nSouth Korea 's Yonhap news agency said Saturday that the missiles were fired Friday into the Yellow Sea off Jeungsan County , about 40 kilometers west of the North Korean capital of Pyongyang .\tNNP NNP POS NNP NN NN VBD NNP IN DT NNS VBD VBN NNP IN DT NNP NNP IN NNP NNP , IN CD NNS JJS IN DT JJ JJ NN IN NNP .\nQuoting a government source , Yonhap said the testing was part of a military training exercise involving ship-to-ship missiles with a range of 46 kilometers .\tVBG DT NN NN , NNP VBD DT NN VBD NN IN DT JJ NN NN VBG NN NNS IN DT NN IN CD NNS .\nThe North 's navy fired three ship-to-ship missiles on March 28th in what was then described by the South Korean government as part of a regular military exercise in the waters off the peninsula 's west coast .\tDT NNP POS NN VBD CD NN NNS IN NNP CD IN WP VBD RB VBN IN DT JJ JJ NN IN NN IN DT JJ JJ NN IN DT NNS IN DT NN POS JJS NN .\nA White House spokesman , Gordon Johndroe , described the tests in March as ' not constructive , ' and urged North Korea to instead focus on dismantling its nuclear facilities .\tDT NNP NNP NN , NNP NNP , VBD DT NNS IN NNP IN `` RB JJ , `` CC VBD NNP NNP TO RB VB IN VBG PRP$ JJ NNS .\nIraqi search and rescue crews are pulling bodies Friday from destroyed buildings after a barrage of rocket and bomb attacks on Baghdad killed at least 64 people Thursday .\tJJ NN CC NN NNS VBP VBG NNS NNP IN VBN NNS IN DT NN IN NN CC NN NNS IN NNP VBD IN JJS CD NNS NNP .\nThe attack , which officials say included explosives planted in apartments , wounded more than 250 people .\tDT NN , WDT NNS VBP VBN NNS VBN IN NNS , VBD JJR IN CD NNS .\nThe series of blasts went off for a half hour in mainly Shi'ite areas of the capital .\tDT NN IN NNS VBD RP IN DT JJ NN IN RB JJ NNS IN DT NN .\nThe coordinated attacks occurred during the intensified U.S.-Iraqi security clampdown across the capital aimed at stopping sectarian violence .\tDT JJ NNS VBD IN DT JJ JJ NN NN IN DT NN VBN IN VBG JJ NN .\nEarlier Thursday , Iraqi Prime Minister Nouri al-Maliki said he hoped Iraqi forces would be able to take responsibility for security for most of the country by the end of the year .\tRBR NNP , JJ NNP NNP NNP NNP VBD PRP VBD JJ NNS MD VB JJ TO VB NN IN NN IN JJS IN DT NN IN DT NN IN DT NN .\nHe said the province of Dhi Qar will be handed over to Iraqi forces next month .\tPRP VBD DT NN IN NNP NNP MD VB VBN RP TO JJ NNS JJ NN .\nThe U.S. Navy is warning ships to stay away from the coast of Somalia after a series of pirate attacks there .\tDT NNP NNP VBZ VBG NNS TO VB RB IN DT NN IN NNP IN DT NN IN NN NNS RB .\nThe U.S. Maritime Liaison Office in Bahrain says that , although ships belonging to U.S.-led anti-terror coalition are operating in the area , they can not monitor every ship that passes the east coast of Somalia .\tDT NNP NNP NNP NNP IN NNP VBZ IN , IN NNS VBG TO JJ JJ NN VBP VBG IN DT NN , PRP MD RB VB DT NN WDT VBZ DT JJ NN IN NNP .\nThe office is urging merchant ships to stay at least 200 nautical miles ( 370 kilometers ) off Somalia .\tDT NN VBZ VBG NN NNS TO VB IN JJS CD JJ NNS LRB CD NNS RRB IN NNP .\nPirates have attacked at least eight ships in the area this year .\tNNS VBP VBN IN JJS CD NNS IN DT NN DT NN .\nOn Saturday , pirates tried , but failed , to hijack a boat carrying food to Somalia for the United Nations World Food Program .\tIN NNP , NNS VBD , CC VBD , TO VB DT NN VBG NN TO NNP IN DT NNP NNP NNP NNP NNP .\nThe United Nations is calling for international action against the rampant piracy off Somalia 's coast , saying it threatens further aid deliveries to the country .\tDT NNP NNPS VBZ VBG IN JJ NN IN DT JJ NN IN NNP POS NN , VBG PRP VBZ JJ NN NNS TO DT NN .\nPresident Bush is holding a televised news conference to discuss two of his top priorities - energy and the government 's Social Security pension plan .\tNNP NNP VBZ VBG DT JJ NN NN TO VB CD IN PRP$ JJ NNS IN NN CC DT NN POS NNP NNP NN NN .\nListen on VOA News Now for the live news conference on the following shortwave frequencies : 7115 Khz , 9885 Khz , 11705 Khz and 11725 Khz , or monitor it here now on VOANews.com .\tNNP IN NNP NNP RB IN DT JJ NN NN IN DT VBG NN NNS IN CD NNP , CD NNP , CD NNP CC CD NNP , CC VB PRP RB RB IN NNP .\nThe news conference will also be available on FM in some areas .\tDT NN NN MD RB VB JJ IN NN IN DT NNS .\nBaghdad listeners can tune in 102.4 FM ; Mosul listeners , 104.6 FM ; and in Basra , 105 FM .\tNNP NNS MD NN IN CD NN ; NNP NNS , CD NN ; CC IN NNP , CD NN .\nWhite House spokesman Scott McClellan says the president will talk about specific ideas to keep Social Security solvent in the future .\tNNP NNP NN NNP NNP VBZ DT NN MD VB IN JJ NNS TO VB NNP NNP NN IN DT NN .\nHe says Mr. Bush will also talk about the importance of addressing the nation 's long-term energy needs .\tPRP VBZ NNP NNP MD RB VB IN DT NN IN VBG DT NN POS JJ NN NNS .\nThe news conference comes as rising fuel costs continue to take a toll on the U.S. economy and Mr. Bush 's approval ratings .\tDT NN NN VBZ IN VBG NN NNS VBP TO VB DT NN IN DT NNP NN CC NNP NNP POS NN NNS .\nArgentinean authorities say they have arrested a Colombian model accused of leading a drug-trafficking ring .\tJJ NNS VBP PRP VBP VBN DT JJ NN VBN IN VBG DT NN NN .\nAuthorities say they detained Angie Sanclemente Valenica on Wednesday in Argentina 's capital Buenos Aires .\tNNS VBP PRP VBD NNP NNP NNP IN NNP IN NNP POS NN NNP NNP .\nValencia , a former beauty queen , had been accused of heading a group of attractive young women that smuggled cocaine to Mexico .\tNNP , DT JJ NN NN , VBD VBN VBN IN VBG DT NN IN JJ JJ NNS WDT VBD NN TO NNP .\nValencia has denied the charges .\tNNP VBZ VBN DT NNS .\nHer native Colombia is the world 's largest cocaine producer .\tPRP$ JJ NNP VBZ DT NN POS JJS NN NN .\nA Russian who had been held at the U.S. detention center at Guantanamo Bay , Cuba , says U.S. forces there regularly desecrated the Koran .\tDT NN WP VBD VBN VBN IN DT NNP NN NN IN NNP NNP , NNP , VBZ NNP NNS RB RB VBD DT NNP .\nAirat Vakhitov , who was released from Guantanamo last year , said soldiers threw Korans into the toilet and regularly desecrated the book to provoke a response .\tNNP NNP , WP VBD VBN IN NNP JJ NN , VBD NNS VBD NNS IN DT NN CC RB VBD DT NN TO VB DT NN .\nThe Associated Press quotes Mr. Vakhitov as later saying he did not personally see the Koran being desecrated , but was informed of the alleged incidents by other detainees .\tDT NNP NNP VBZ NNP NNP IN RB VBG PRP VBD RB RB VB DT NNP VBG VBN , CC VBD VBN IN DT VBN NNS IN JJ NNS .\nU.S. officials did not immediately respond to the claims made Tuesday in Moscow .\tNNP NNS VBD RB RB VB TO DT NNS VBN NNP IN NNP .\nEarlier this month , the Pentagon acknowledged that U.S. forces at Guantanamo had mishandled the Koran on several occasions .\tRBR DT NN , DT NNP VBD IN NNP NNS IN NNP VBD VBN DT NNP IN JJ NNS .\nNewsweek magazine reported last month that U.S. forces in Guantanamo had flushed a Koran down a toilet - a charged that sparked deadly riots in Afghanistan and protests in a number of other countries .\tNNP NN VBD JJ NN IN NNP NNS IN NNP VBD VBN DT NNP IN DT NN IN DT VBN WDT VBD JJ NNS IN NNP CC NNS IN DT NN IN JJ NNS .\nThe magazine later retracted the story .\tDT NN RB VBD DT NN .\nA South Korean official says Seoul has repatriated three North Korean fishermen rescued from a boat drifting in South Korean waters .\tDT JJ JJ NN VBZ NNP VBZ VBN CD JJ JJ NNS VBD IN DT NN VBG IN JJ JJ NNS .\nUnification Ministry spokesman Chun Hae-sung told reporters that the fishermen were sent back to the North at the border village of Panmunjom on Friday .\tNNP NNP NN NNP NNP VBD NNS IN DT NNS VBD VBN RB TO DT NNP IN DT NN NN IN NNP IN NNP .\nHe said the three were rescued last month by a South Korean navy vessel near the disputed western sea border with North Korea .\tPRP VBD DT CD VBD VBN JJ NN IN DT JJ JJ NN NN IN DT JJ JJ NN NN IN NNP NNP .\nChun said the fisherman told investigators they wanted to go back to their homeland .\tNNP VBD DT NN VBD NNS PRP VBD TO VB RB TO PRP$ NN .\nThe two Koreas are still technically at war after the Korean War ended in 1953 with a truce .\tDT CD NNS VBP RB RB IN NN IN DT NNP NNP VBD IN CD IN DT NN .\nThe U.S. military in Iraq says three coalition soldiers have been killed in Iraq in separate incidents in the past 24 hours .\tDT NNP NN IN NNP VBZ CD NN NNS VBP VBN VBN IN NNP IN JJ NNS IN DT JJ CD NNS .\nOfficials say one soldier was killed and four others injured when their patrol was attacked by an explosive and small arms fire near Ashraf .\tNNS VBP CD NN VBD VBN CC CD NNS VBN WRB PRP$ NN VBD VBN IN DT JJ CC JJ NNS NN IN NNP .\nAnd two American soldiers were killed by a roadside bomb in eastern Baghdad .\tCC CD JJ NNS VBD VBN IN DT NN NN IN JJ NNP .\nThe casualties Wednesday came as U.S. officials announced troops had killed two members of al-Qaida in Iraq during separate operations .\tDT NNS NNP VBD IN NNP NNS VBD NNS VBD VBN CD NNS IN NNP IN NNP IN JJ NNS .\nThe security situation in Iraq was cited by defense lawyers for Saddam Hussein , who demanded bodyguards and other security measures following the kidnapping and murder of a lawyer representing one of Saddam 's co-defendants .\tDT NN NN IN NNP VBD VBN IN NN NNS IN NNP NNP , WP VBD NNS CC JJ NN NNS VBG DT NN CC NN IN DT NN VBG CD IN NNP POS NNS .\nAnd in Washington , U.S. Ambassador to Iraq Zalmay Khalilzad , said military officials could begin reducing the size of American forces in Iraq next year .\tCC IN NNP , NNP NNP TO NNP NNP NNP , VBD JJ NNS MD VB VBG DT NN IN JJ NNS IN NNP JJ NN .\nThe Treasury Department has frozen the U.S. assets of five people and four groups for alleged connections to an organization with ties to the al-Qaida terrorist network .\tDT NNP NNP VBZ VBN DT NNP NNS IN CD NNS CC CD NNS IN JJ NNS TO DT NN IN NNS TO DT NNP JJ NN .\nThe suspects , companies - Sara Properties , Meadowbrook Investments and Ozlam Properties - and charity - Sanabel Relief Agency - are reported to be based in Britain .\tDT NNS , NNS : NNP NNP , NNP NNP CC NNP NNPS : CC NN : NNP NNP NNP : VBP VBN TO VB VBN IN NNP .\nA statement from the Treasury Department accuses them of financing the Libyan Islamic Fighting Group .\tDT NN IN DT NNP NNP VBZ PRP IN VBG DT JJ NNP NNP NNP .\nThat group is alleged to be affiliated with al-Qaida and allegedly has engaged in terrorist activities including the attempted assassination of Libyan leader Moammar Gadhafi .\tDT NN VBZ VBN TO VB VBN IN NNP CC RB VBZ VBN IN JJ NNS VBG DT JJ NN IN JJ NN NNP NNP .\nThe order against the individuals and groups also bars Americans from doing business with them .\tDT NN IN DT NNS CC NNS RB VBZ NNS IN VBG NN IN PRP .\nActing Israeli Prime Minister Ehud Olmert says Iran is obsessed with hatred of Israel and the Jewish people and must be stopped from developing nuclear weapons .\tVBG JJ NNP NNP NNP NNP VBZ NNP VBZ VBN IN NN IN NNP CC DT JJ NNS CC MD VB VBN IN VBG JJ NNS .\nSpeaking late Tuesday , the Israeli leader called for concrete , joint action by the international community to stop Iran 's alleged push to develop a nuclear arsenal .\tVBG JJ NNP , DT JJ NN VBD IN NN , JJ NN IN DT JJ NN TO VB NNP POS JJ NN TO VB DT JJ NN .\nHours earlier , the leaders of Russia and France joined the chorus of world leaders calling on Tehran to stop all uranium enrichment .\tNNS RB , DT NNS IN NNP CC NNP VBD DT NN IN NN NNS VBG IN NNP TO VB DT NN NN .\nChina called for continued diplomatic efforts to ease growing international tensions .\tNNP VBD IN JJ JJ NNS TO VB VBG JJ NNS .\nIran insists its nuclear program is aimed at developing electricity .\tNNP VBZ PRP$ JJ NN VBZ VBN IN VBG NN .\nIran resumed small-scale uranium enrichment Monday -- an initial step in the process of producing fuel for nuclear reactors or atomic weapons .\tNNP VBD JJ NN NN NNP IN DT JJ NN IN DT NN IN VBG NN IN JJ NNS CC JJ NNS .\nIran had threatened to resume enrichment after the International Atomic Energy Agency referred it to the U.N. Security Council for possible sanctions earlier this month .\tNNP VBD VBN TO VB NN IN DT NNP NNP NNP NNP VBD PRP TO DT NNP NNP NNP IN JJ NNS RBR DT NN .\nTaiwan says it has arrested a military intelligence officer who allegedly provided defense secrets to China .\tNNP VBZ PRP VBZ VBN DT JJ NN NN WP RB VBD NN NNS TO NNP .\nA defense ministry spokesman says the officer worked in a division responsible for collecting information about China 's military capabilities .\tDT NN NN NN VBZ DT NN VBD IN DT NN JJ IN VBG NN IN NNP POS JJ NNS .\nHis activities were uncovered during an investigation into a crime ring involving fake credit cards .\tPRP$ NNS VBD VBN IN DT NN IN DT NN NN VBG JJ NN NNS .\nThe spokesman says the information the officer passed on to Beijing dealt with the mainland and not Taiwan , and was non-essential .\tDT NN VBZ DT NN DT NN VBD IN TO NNP VBD IN DT NN CC RB NNP , CC VBD JJ .\nA former Australian soldier is suspected of appearing in a videotaped terror message released this week , threatening attacks against the West .\tDT JJ JJ NN VBZ VBN IN VBG IN DT VBN NN NN VBN DT NN , VBG NNS IN DT NNP .\nForeign Minister Alexander Downer said Friday , that former army private Mathew Stewart is suspected of joining al-Qaida , although he has not been identified as the masked spokesman in the video .\tNNP NNP NNP NNP VBD NNP , IN JJ NN JJ NNP NNP VBZ VBN IN VBG NNP , IN PRP VBZ RB VBN VBN IN DT VBN NN IN DT NN .\nMr. Downer says the government has reason to believe Mr. Stewart is one of a number of Australians who have turned to al-Qaida .\tNNP NNP VBZ DT NN VBZ NN TO VB NNP NNP VBZ CD IN DT NN IN NNS WP VBP VBN TO NNP .\nFederal police have questioned Mr. Stewart 's family , and his mother says he is not the man in the video .\tNNP NNS VBP VBN NNP NNP POS NN , CC PRP$ NN VBZ PRP VBZ RB DT NN IN DT NN .\nMr. Stewart served with the U.N. peacekeeping force in East Timor before he was discharged in 2001 and traveled to Afghanistan the next year .\tNNP NNP VBD IN DT NNP NN NN IN NNP NNP IN PRP VBD VBN IN CD CC VBD TO NNP DT JJ NN .\nHe has not been seen since .\tPRP VBZ RB VBN VBN IN .\nU.S. military officials in Afghanistan say four American soldiers were killed Saturday when their vehicle hit a mine and exploded .\tNNP JJ NNS IN NNP VBP CD JJ NNS VBD VBN NNP WRB PRP$ NN VBD DT NN CC VBD .\nThe military says the blast occurred Saturday in the southeastern province of Logar , where U.S. and Afghan soldiers were surveying a potential site for a weapons range .\tDT JJ VBZ DT NN VBD NNP IN DT JJ NN IN NNP , WRB NNP CC JJ NNS VBD VBG DT JJ NN IN DT NNS NN .\nOfficials say they are not certain if the mine had been planted recently or was old unexploded ordnance .\tNNS VBP PRP VBP RB JJ IN DT NN VBD VBN VBN RB CC VBD JJ JJ NN .\nAfghanistan is littered with old mines after a quarter century of war .\tNNP VBZ VBN IN JJ NNS IN DT NN NN IN NN .\nThe deaths came a day after a U.S. Defense Department spokesman , Paul Swiergosz , said American troops will provide transportation and planning support to U.S. and Afghan agencies conducting counter drug operations .\tDT NNS VBD DT NN IN DT NNP NNP NNP NN , NNP NNP , VBD JJ NNS MD VB NN CC VBG NN TO NNP CC JJ NNS VBG JJ NN NNS .\nThe 17,000 U.S. troops in Afghanistan were previously instructed only to seize or destroy drugs discovered during military operations .\tDT CD NNP NNS IN NNP VBD RB VBN RB TO VB CC VB NNS VBN IN JJ NNS .\nU.S. Secretary of State Hillary Clinton says it will be up to her daughter Chelsea whether to accept a Kenyan man 's offer of livestock in return for Chelsea 's hand in marriage .\tNNP NNP IN NNP NNP NNP VBZ PRP MD VB RB TO PRP$ NN NNP IN TO VB DT JJ NN POS NN IN NN IN NN IN NNP POS NN IN NN .\nThe Kenyan man 's offer of 40 goats and 20 cows was first made in 2000 , in a letter to Secretary Clinton 's husband , then-president Bill Clinton .\tDT JJ NN POS NN IN CD NNS CC CD NNS VBD JJ VBN IN CD , IN DT NN TO NNP NNP POS NN , JJ NNP NNP .\nAt a town hall meeting in Nairobi Thursday , the mediator asked for a fresh response to the proposal .\tIN DT NN NN NN IN NNP NNP , DT NN VBD IN DT JJ NN TO DT NN .\nClinton said her daughter is ' very independent , ' but added that she will pass along what she called the ' very kind offer . '\tNNP VBD PRP$ NN VBZ `` RB JJ , `` CC VBD IN PRP MD VB IN WP PRP VBD DT `` RB NN NN . ``\nSecretary Clinton is on an 11-day , seven-nation tour of Africa .\tNNP NNP VBZ IN DT JJ , JJ NN IN NNP .\nA U.S. group measuring governments ' Internet censorship says Burma has one of the world 's most restrictive policies and may be increasing control through sophisticated filtering software .\tDT NNP NN VBG NNS POS NN NN VBZ NNP VBZ CD IN DT NN POS RBS JJ NNS CC MD VB VBG NN IN JJ NN NN .\nThe ' Open Net Initiative ' group , supported by several rights groups and U.S. universities , says Burma 's regulating system has both broad , vaguely worded policies governing Internet behavior and harsh penalties for lawbreakers .\tDT `` NNP NNP NNP `` NN , VBN IN JJ NNS NNS CC NNP NNS , VBZ NNP POS NN NN VBZ DT JJ , RB VBN NNS VBG NNP NN CC JJ NNS IN NNS .\nIt says the state focuses on blocking politically sensitive information such as pro-democracy Web sites , and has the capability to monitor e-mail communication .\tPRP VBZ DT NN VBZ IN VBG RB JJ NN JJ IN JJ NNP NNS , CC VBZ DT NN TO VB JJ NN .\nThe group says even some mainstream Internet sites , like Yahoo and Hotmail , are barred because they thwart state monitoring .\tDT NN VBZ RB DT JJ NNP NNS , IN NNP CC NNP , VBP VBN IN PRP VB NN NN .\nIt says the government uses Internet filtering software purchased from a U.S. company , Fortinet .\tPRP VBZ DT NN VBZ NNP VBG NN VBN IN DT NNP NN , NNP .\nThe independent Irawaddy newspaper quotes officials with the company denying the charge .\tDT JJ JJ NN VBZ NNS IN DT NN VBG DT NN .\nSomalia 's parliament has approved Mohammed Ali Gedi as the country 's new prime minister , nearly two weeks after rejecting his nomination .\tNNP POS NN VBZ VBN NNP NNP NNP IN DT NN POS JJ JJ NN , RB CD NNS IN VBG PRP$ NN .\nMore than 80 percent of lawmakers voted to approve Mr. Gedi Thursday .\tJJR IN CD NN IN NNS VBD TO VB NNP NNP NNP .\nHe was later sworn in during a ceremony in Nairobi , Kenya , where the new government has been meeting due to security concerns at home .\tPRP VBD RB VBN IN IN DT NN IN NNP , NNP , WRB DT JJ NN VBZ VBN VBG JJ TO NN NNS IN NN .\nEarlier this month , lawmakers passed a vote of no confidence in Mr. Gedi , saying Somali President Abdullahi Yusuf Ahmed failed to seek parliament 's approval for the nomination .\tRBR DT NN , NNS VBD DT NN IN DT NN IN NNP NNP , VBG JJ NNP NNP NNP NNP VBD TO VB NN POS NN IN DT NN .\nThe president re-appointed Mr. Gedi two days later , satisfying lawmakers demands that the process comply with rules governing the newly created power-sharing government .\tDT NN VBD NNP NNP CD NNS RB , VBG NNS NNS IN DT NN VB IN NNS VBG DT RB VBN JJ NN .\nParliament had also rejected the prime minister 's formation of a cabinet of nearly 80 ministers .\tNNP VBD RB VBN DT JJ NN POS NN IN DT NN IN RB CD NNS .\nMr. Gedi is expected to appoint a new cabinet in the coming weeks .\tNNP NNP VBZ VBN TO VB DT JJ NN IN DT JJ NNS .\nThe U.S. Senate is expected to take up a measure Wednesday designed to make sweeping reforms to the nation 's intelligence agencies .\tDT NNP NNP VBZ VBN TO VB RP DT NN NNP VBN TO VB JJ NNS TO DT NN POS NN NNS .\nLawmakers in the House of Representatives approved the bill Tuesday night by a vote of 336 to 75 .\tNNS IN DT NNP IN NNPS VBD DT NN NNP NN IN DT NN IN CD TO CD .\nThe bill calls for the creation of a national intelligence director and a National Counterterrorism Center to coordinate all intelligence on terrorist activity .\tDT NN VBZ IN DT NN IN DT JJ NN NN CC DT NNP NNP NNP TO VB DT NN IN JJ NN .\nThe bill enacts many of the reforms advocated by the panel that investigated the September 11 , 2001 terrorist attacks .\tDT NN VBZ NN IN DT NNS VBN IN DT NN WDT VBD DT NNP CD , CD JJ NNS .\nA White House spokesman said President Bush was very pleased with the bill 's passage in the House and that the president believes it will make America safer .\tDT NNP NNP NN VBD NNP NNP VBD RB JJ IN DT NN POS NN IN DT NNP CC IN DT NN VBZ PRP MD VB NNP JJR .\nCongressional leaders said earlier Tuesday they were able to resolve key differences in the bill that had delayed its final passage .\tJJ NNS VBD JJR NNP PRP VBD JJ TO VB JJ NNS IN DT NN WDT VBD VBN PRP$ JJ NN .\nThe U.S. military says coalition forces killed about 40 Taleban fighters Friday in an attack on an insurgent camp in southern Afghanistan .\tDT NNP NN VBZ NN NNS VBD IN CD NNP NNS NNP IN DT NN IN DT JJ NN IN JJ NNP .\nA military spokesman , Lieutenant Colonel Paul Fitzpatrick , said Saturday that the coalition forces waited until about 50 rebels entered the camp for a meeting before attacking .\tDT JJ NN , NNP NNP NNP NNP , VBD NNP IN DT NN NNS VBD IN IN CD NNS VBD DT NN IN DT NN IN VBG .\nThe spokesman said the compound , in eastern Uruzgan province , was severely damaged and it was anticipated that most of those present were killed .\tDT NN VBD DT NN , IN JJ NNP NN , VBD RB VBN CC PRP VBD VBN IN JJS IN DT JJ VBD VBN .\nAnother U.S. statement said two coalition troops were killed Friday , when their vehicle was hit by a roadside bomb in eastern Kunar province , bordering Pakistan .\tDT NNP NN VBD CD NN NNS VBD VBN NNP , WRB PRP$ NN VBD VBN IN DT NN NN IN JJ NNP NN , VBG NNP .\nThe military did not give the nationalities of the soldiers killed .\tDT JJ VBD RB VB DT NNS IN DT NNS VBN .\nU.S.-led coalition forces in Afghanistan launched an offensive Wednesday involving about 10,000 Afghan and coalition troops .\tJJ NN NNS IN NNP VBD DT JJ NNP VBG IN CD JJ CC NN NNS .\nGunmen have raided a hospital in the northern Iraqi city of Kirkuk , freeing a wounded man who was detained for plotting to kill a judge involved in Saddam Hussein 's trial .\tNNS VBP VBN DT NN IN DT JJ JJ NN IN NNP , VBG DT JJ NN WP VBD VBN IN VBG TO VB DT NN VBN IN NNP NNP POS NN .\nA police official says three police guards were killed and six others were wounded in the early morning attack Wednesday .\tDT NN NN VBZ CD NNS NNS VBD VBN CC CD NNS VBD VBN IN DT JJ NN NN NNP .\nElsewhere , an American soldier was killed Tuesday near the western town of Habbaniya when his vehicle hit a mine .\tRB , DT JJ NN VBD VBN NNP IN DT JJ NN IN NNP WRB PRP$ NN VBD DT NN .\nMeanwhile , in London , British Foreign Secretary Jack Straw said Britain can not meet the demands of kidnappers holding a British peace activist and three other Westerners hostage in Iraq .\tRB , IN NNP , NNP NNP NNP NNP NNP VBD NNP MD RB VB DT NNS IN NNS VBG DT JJ NN NN CC CD JJ NNS NN IN NNP .\nMr. Straw said no government could meet their demands .\tNNP NNP VBD DT NN MD VB PRP$ NNS .\nThe kidnappers have threatened to kill the hostages unless Iraqi detainees are released from American and Iraqi jails by Thursday .\tDT NNS VBP VBN TO VB DT NNS IN JJ NNS VBP VBN IN NNP CC JJ NNS IN NNP .\nScientists are warning that a long-term temperature increase of more than two-degrees Celsius would have dangerous consequences for global climate systems .\tNNS VBP VBG IN DT JJ NN NN IN JJR IN NNS NN MD VB JJ NNS IN JJ NN NNS .\nMeeting at a U.N. sponsored climate conference in Argentina Tuesday , a group of European experts said such an increase could threaten Latin American water supplies , reduce food yields in Asia and increase extreme weather conditions in the Caribbean .\tVBG IN DT NNP VBN NN NN IN NNP NNP , DT NN IN JJ NNS VBD JJ DT NN MD VB JJ JJ NN NNS , VB NN NNS IN NNP CC VB JJ NN NNS IN DT NNP .\nMost scientists agree that global temperatures have already risen an average of more than half-a-degree Celsius over the past century .\tJJS NNS VBP IN JJ NNS VBP RB VBN DT NN IN JJR IN JJ NN IN DT JJ NN .\nThe main focus of the two-week U.N. conference in Buenos Aires conference is the 1997 Kyoto Protocol , which mandates the reduction of carbon dioxide and other gas emissions believed to cause global warming .\tDT JJ NN IN DT JJ NNP NN IN NNP NNP NN VBZ DT CD NNP NNP , WDT VBZ DT NN IN NN NN CC JJ NN NNS VBN TO VB JJ NN .\nThe United States and Australia are the only major industrial countries that have failed to ratify the accord .\tDT NNP NNPS CC NNP VBP DT JJ JJ JJ NNS WDT VBP VBN TO VB DT NN .\nIn rejecting the accord , President Bush said it would damage the U.S. economy .\tIN VBG DT NN , NNP NNP VBD PRP MD VB DT NNP NN .\nThe Libyan government has given its first-ever donation to the World Food Program to assist with relief efforts in the Darfur region .\tDT JJ NN VBZ VBN PRP$ JJ NN TO DT NNP NNP NNP TO VB IN NN NNS IN DT NNP NN .\nThe U.N. agency says it will use the $ 4.5 million contribution to cover the increased costs of jet fuel for food airlifts into the troubled area .\tDT NNP NN VBZ PRP MD VB DT $ CD CD NN TO VB DT JJ NNS IN NN NN IN NN NNS IN DT JJ NN .\nIn a statement , the agency says it has been airlifting food from southern Libya into Darfur for nearly a year .\tIN DT NN , DT NN VBZ PRP VBZ VBN VBG NN IN JJ NNP IN NNP IN RB DT NN .\nIt says Libya has provided a ground transportation corridor for relief convoys from the port of Benghazi , Libya , into eastern Chad since 2004 .\tPRP VBZ NNP VBZ VBN DT NN NN NN IN NN NNS IN DT NN IN NNP , NNP , IN JJ NNP IN CD .\nThe World Food Program says it aims to help two-point-seven million people in the Darfur region of western Sudan , and more than 2,00,000 Sudanese refugees in eastern Chad .\tDT NNP NNP NNP VBZ PRP VBZ TO VB CD CD NNS IN DT NNP NN IN JJ NNP , CC JJR IN CD JJ NNS IN JJ NNP .\nBritish Prime Minister Tony Blair says he hopes to bring the United States back into global warming talks .\tJJ NNP NNP NNP NNP VBZ PRP VBZ TO VB DT NNP NNPS RB IN JJ NN NNS .\nMr. Blair said Wednesday - the day the Kyoto pact took effect - that global warming could become a catastrophe and that getting the United States back into a dialogue is one solution .\tNNP NNP VBD NNP IN DT NN DT NNP NN VBD NN : IN JJ NN MD VB DT NN CC IN VBG DT NNP NNPS RB IN DT NN VBZ CD NN .\nPresident Bush pulled out of Kyoto in 2001 , saying it would hurt the U.S. economy .\tNNP NNP VBD IN IN NNP IN CD , VBG PRP MD VB DT NNP NN .\nHe has called for new technology as one way to cut greenhouse gases .\tPRP VBZ VBN IN JJ NN IN CD NN TO VB NN NNS .\nSome European leaders have criticized the United States for pulling out of the Kyoto treaty .\tDT JJ NNS VBP VBN DT NNP NNPS IN VBG IN IN DT NNP NN .\nThey say they expect Mr. Bush to address the matter when he visits Europe next week .\tPRP VBP PRP VBP NNP NNP TO VB DT NN WRB PRP VBZ NNP JJ NN .\nNorth Korean media say a top official is planning to visit Syria , heightening suspicions that the two countries are cooperating on a secret nuclear program .\tJJ JJ NNS VBP DT JJ NN VBZ VBG TO VB NNP , VBG NNS IN DT CD NNS VBP VBG IN DT JJ JJ NN .\nIn a brief statement Saturday , the official North Korean Central News Agency said the speaker of North Korea 's parliament , Choe Thae Bok , has left for a trip that will take him to Italy and Syria .\tIN DT JJ NN NNP , DT JJ JJ JJ NNP NNP NNP VBD DT NN IN NNP NNP POS NN , NNP NNP NNP , VBZ VBN IN DT NN WDT MD VB PRP TO NNP CC NNP .\nThe report gave no other details .\tDT NN VBD DT JJ NNS .\nIn September , U.S. media reports said Pyongyang has secretly offered nuclear cooperation to Syria , and that the two nations are working on some sort of nuclear facility .\tIN NNP , NNP NNS NNS VBD NNP VBZ RB VBN JJ NN TO NNP , CC IN DT CD NNS VBP VBG IN DT NN IN JJ NN .\nBoth have denied the allegations .\tDT VBP VBN DT NNS .\nNorth Korea conducted a nuclear weapons test last year , but has since been compliant in six-nation talks aimed at ending its nuclear weapons program .\tNNP NNP VBD DT JJ NNS NN JJ NN , CC VBZ IN VBN JJ IN JJ NNS VBN IN VBG PRP$ JJ NNS NN .\nAn official in southern Nigeria says two recently kidnapped Philippine oil workers have been freed .\tDT NN IN JJ NNP VBZ CD RB VBN JJ NN NNS VBP VBN VBN .\nThe government spokesman , Emmanuel Okah , in Rivers State said the two workers abducted Tuesday from the troubled Niger Delta region were released Sunday .\tDT NN NN , NNP NNP , IN NNP NNP VBD DT CD NNS VBN NNP IN DT JJ NNP NNP NN VBD VBN NNP .\nHe did not say if negotiators paid a ransom , which is frequently demanded by kidnappers in the oil-rich region .\tPRP VBD RB VB IN NNS VBD DT NN , WDT VBZ RB VBN IN NNS IN DT JJ NN .\nThe two workers are employees of the Norway-based oil services company Petroleum Geo-Services .\tDT CD NNS VBP NNS IN DT JJ NN NNS NN NNP NNP .\nThey were abducted by armed men from an oil rig near the city of Port Harcourt .\tPRP VBD VBN IN JJ NNS IN DT NN NN IN DT NN IN NNP NNP .\nMilitants targeting Nigeria 's oil industry have kidnapped some 31 foreign workers since January .\tNNS VBG NNP POS NN NN VBP VBN DT CD JJ NNS IN NNP .\nAll have been released unharmed .\tDT VBP VBN VBN JJ .\nThe militants are demanding a greater share of the region 's oil wealth .\tDT NNS VBP VBG DT JJR NN IN DT NN POS NN NN .\nChinese journalists covering the recent collapse of a bridge in central China , which killed at least 41 people , have been harassed while trying to interview grieving families of the deceased .\tJJ NNS VBG DT JJ NN IN DT NN IN JJ NNP , WDT VBD IN JJS CD NNS , VBP VBN VBN IN VBG TO VB VBG NNS IN DT JJ .\nAccording to a Chinese-language Web site , China Public Opinion Monitor , that focuses on human rights issues , a group of reporters from five state-run newspapers , including the Communist Party 's People 's Daily , were attacked by a group of unidentified men earlier this week in Hunan province .\tVBG TO DT JJ NNP NN , NNP NNP NNP NNP , WDT VBZ IN JJ NNS NNS , DT NN IN NNS IN CD JJ NNS , VBG DT NNP NNP POS NNS POS NNP , VBD VBN IN DT NN IN JJ NNS RBR DT NN IN NNP NN .\nAn editor from China 's Southern Metropolitan Daily confirmed to VOA Mandarin service that the clash occurred .\tDT NN IN NNP POS NNP NNP NNP VBD TO NNP NNP NN IN DT NN VBD .\nLocal government officials deny that any reporters were beaten .\tJJ NN NNS VBP IN DT NNS VBD VBN .\nMonday 's collapse of the bridge over the Tuo river in Hunan province has captured nationwide media attention and China 's president has promised a swift investigation .\tNNP POS NN IN DT NN IN DT NNP NN IN NNP NN VBZ VBN JJ NNS NN CC NNP POS NN VBZ VBN DT JJ NN .\nIt is still unclear why the bridge collapsed .\tPRP VBZ RB JJ WRB DT NN VBD .\nBisphenol A is a chemical used in making plastic bottles and most other plastic products we use every day .\tNNP NNP VBZ DT NN VBN IN VBG JJ NNS CC RBS JJ NN NNS PRP VBP DT NN .\nUntil now , the only indication that bisphenol A , or BPA , might be harmful came from studies using laboratory animals .\tIN RB , DT JJ NN IN NNP NNP , CC NNP , MD VB JJ VBD IN NNS VBG NN NNS .\nNow , a study involving humans indicates exposure to the chemical may increase the risk of developing heart disease , diabetes and liver problems .\tRB , DT NN VBG NNS VBZ NN TO DT NN MD VB DT NN IN VBG NN NN , NNS CC NN NNS .\nVOA 's Carol Pearson has more .\tNNP POS NNP NNP VBZ RBR .\nItalian prosecutors say police have arrested two foreigners suspected of plotting terror attacks on targets near Milan .\tJJ NNS VBP NNS VBP VBN CD NNS VBN IN VBG NN NNS IN NNS IN NNP .\nItaly 's ANSA news agency says the suspects are Moroccan nationals with suspected links to al-Qaida .\tNNP POS NNP NN NN VBZ DT NNS VBP JJ NNS IN JJ NNS TO NNP .\nThe report says the two , identified as Rachid Ilhami and Gafir Abdelkader , were planning attacks on a supermarket and a nightclub parking lot outside Milan .\tDT NN VBZ DT CD , VBN IN NNP NNP CC NNP NNP , VBD VBG NNS IN DT NN CC DT NN NN NN IN NNP .\nAuthorities say additional attacks were planned on police stations in the area .\tNNS VBP JJ NNS VBD VBN IN NN NNS IN DT NN .\nThe report says wiretaps showed the suspects initially planned to use a van packed with explosives , but later decided to use oxygen canisters .\tDT NN VBZ NNS VBD DT NNS RB VBD TO VB DT NN VBN IN NNS , CC RB VBD TO VB NN NNS .\nANSA says police also seized a cultural center near Milan , where one of the suspects worked as a preacher .\tNNP VBZ NN RB VBD DT JJ NN IN NNP , WRB CD IN DT NNS VBD IN DT NN .\nBoth suspects are thought to have lived in Italy for several years .\tDT NNS VBP VBN TO VB VBN IN NNP IN JJ NNS .\nA bomb exploded near a busy bus terminal south of the Pakistani capital Islamabad late Monday , killing at least nine people and injuring around 17 others .\tDT NN VBD IN DT JJ NN NN NN IN DT JJ NN VBN JJ NNP , VBG IN JJS CD NNS CC VBG IN CD NNS .\nLocal police say the explosion in Rawalpindi appears to be a suicide attack .\tJJ NNS VBP DT NN IN NNP VBZ TO VB DT NN NN .\nSome news reports say the bomber was inside a car or on a motorcycle when the explosives went off .\tDT NN NNS VBP DT NN VBD IN DT NN CC IN DT NN WRB DT NNS VBD RB .\nEmergency personnel are at the scene .\tNN NNS VBP IN DT NN .\nNo other information is immediately available .\tDT JJ NN VBZ RB JJ .\nThe attack came on the same day the government gave in to opposition demands to reinstate a popular Supreme Court justice .\tDT NN VBD IN DT JJ NN DT NN VBD IN TO NN NNS TO VB DT JJ NNP NNP NN .\nThe concession prompted supporters of opposition leader Nawaz Sharif to call off his so-called ' long march ' to Islamabad .\tDT NN VBD NNS IN NN NN NNP NNP TO VB RP PRP$ JJ `` JJ NN `` TO NNP .\nPakistan has been facing a wave of militant attacks over the past few years .\tNNP VBZ VBN VBG DT NN IN JJ NNS IN DT JJ JJ NNS .\nThe government has recently signed separate peace agreements with Islamic militants in the Swat Valley , and in the neighboring Bajaur region .\tDT NN VBZ RB VBN JJ NN NNS IN JJ NNS IN DT NNP NNP , CC IN DT JJ NNP NN .\nThe Israeli military has acknowledged it carried out a strike in Gaza City Wednesday that killed a Palestinian man and wounded another .\tDT JJ NN VBZ VBN PRP VBD RP DT NN IN NNP NNP NNP WDT VBD DT JJ NN CC VBD DT .\nMilitary officials say the strike targeted a militant with the Army of Islam , an extremist group believed to have al-Qaida loyalties .\tJJ NNS VBP DT NN VBD DT NN IN DT NNP IN NNP , DT NN NN VBN TO VB NNP NNS .\nThe Israeli military released a statement saying the intended target ( identified as Mohammed Jamal al-Nimnim ) had directed several attacks against Israel .\tDT JJ NN VBD DT NN VBG DT JJ NN LRB VBN IN NNP NNP NNP RRB VBD VBN JJ NNS IN NNP .\nThe military says the strike was a joint effort between Israeli Defense Forces and the Israel Security Agency .\tDT JJ VBZ DT NN VBD DT JJ NN IN JJ NNP NNP CC DT NNP NNP NNP .\nEarlier Wednesday , Palestinians blamed Israel after the suspect 's car exploded near Hamas police headquarters .\tRBR NNP , NNS VBD NNP IN DT NN POS NN VBD IN NNP NN NN .\nIsraeli media reports said the blast could have been a car bomb that detonated prematurely , but there was no official word from Israel .\tJJ NNS NNS VBD DT NN MD VB VBN DT NN NN WDT VBD RB , CC EX VBD DT JJ NN IN NNP .\nThe explosion comes during a period of relative calm between the Palestinian-ruled territory and Israel -- and between the rival Hamas and Fatah factions .\tDT NN VBZ IN DT NN IN JJ NN IN DT JJ NN CC NNP : CC IN DT JJ NNP CC NNP NNS .\nDaughter of journalist Dharmeratnam Sivaram , grieves by his body in Talangama , near Colombo Sri Lanka 's government has ordered a full-scale investigation into the murder of a prominent Tamil journalist who was abducted outside a restaurant Thursday night .\tNNP IN NN NNP NNP , VBZ IN PRP$ NN IN NNP , IN NNP NNP NNP POS NN VBZ VBN DT JJ NN IN DT NN IN DT JJ NNP NN WP VBD VBN IN DT NN NNP NN .\nDharmeratnam Sivaram , a 46-year-old senior editor of a pro-Tamil rebel website , was out with friends when four unidentified men grabbed him .\tNNP NNP , DT JJ JJ NN IN DT JJ NN NN , VBD RP IN NNS WRB CD JJ NNS VBD PRP .\nHe was shot after being bound and gagged , and his body dumped near the Sri Lankan parliamentary complex .\tPRP VBD VBN IN VBG VBN CC VBN , CC PRP$ NN VBD IN DT NNP NNP JJ NN .\nMr. Sivaram , also a columnist with an English language daily , was the country 's best-known Tamil Internet journalist .\tNNP NNP , RB DT NN IN DT JJ NN RB , VBD DT NN POS JJ NNP NNP NN .\nThe website was popular for its reporting on the Sri Lankan civil war and the peace process after the 2002 cease-fire .\tDT NN VBD JJ IN PRP$ NN IN DT NNP NNP JJ NN CC DT NN NN IN DT CD NN .\nThe Paris-based media watch dog Reporters Without Borders had expressed fears for Mr. Sivaram 's safety after police searched his home in Colombo last year .\tDT JJ NNS VBP NN NNS IN NNS VBD VBN NNS IN NNP NNP POS NN IN NNS VBD PRP$ NN IN NNP JJ NN .\nThe Netherlands rallied to defeat China , 02-Jan , to reach the main draw of the eight-nation Hopman Cup mixed team tennis tournament in Perth , Australia .\tDT NNP VBD TO VB NNP , CD , TO VB DT JJ NN IN DT NN NNP NNP JJ NN NN NN IN NNP , NNP .\nPeng Shuai , ranked 36th , gave China a 1-0 lead when she beat 16-year-old Michaella Krajicek in the women 's singles match , 06-Mar , 04-Jun , 06-Mar .\tNNP NNP , VBD CD , VBD NNP DT JJ NN WRB PRP VBD JJ NNP NNP IN DT NNS POS NNS NN , CD , CD , CD .\nPeter Wessels got the Dutch even by winning his singles match over Sun Peng , 06-Feb , 06-Feb .\tNNP NNP VBD DT NNS RB IN VBG PRP$ NNS NN IN NNP NNP , CD , CD .\nThen Wessels and Krajicek combined to win the mixed doubles match over Peng and Sun , 06-Apr , 06-Apr .\tRB NNP CC NNP VBD TO VB DT JJ NNS NN IN NNP CC NNP , CD , CD .\nWith the victory , the Dutch will join Australia , Argentina and Germany in Group A .\tIN DT NN , DT NNS MD VB NNP , NNP CC NNP IN NNP NNP .\nGermany , with Anna-Lena Groenefeld and Nicolas Kiefer plays on Saturday against the Australian team of Samantha Stosur and Wayne Arthurs .\tNNP , IN NNP NNP CC NNP NNP VBZ IN NNP IN DT JJ NN IN NNP NNP CC NNP NNP .\nGroup B features the United States , Russia , Sweden and Serbia and Montenegro .\tNNP NNP VBZ DT NNP NNPS , NNP , NNP CC NNP CC NNP .\nThe Americans are represented by Lisa Raymond and Taylor Dent .\tDT NNS VBP VBN IN NNP NNP CC NNP NNP .\nPlans to build a mosque near the site of the destroyed World Trade Center in New York cleared an obstacle Tuesday when a city committee denied landmark status to a nearby building .\tNNS TO VB DT NN IN DT NN IN DT VBN NNP NNP NNP IN NNP NNP VBD DT NN NNP WRB DT NN NN VBD JJ NN TO DT JJ NN .\nThe New York Landmarks Preservation Committee voted unanimously against giving protected status to a building constructed in the 1850s , that developers want to tear down to build an Islamic community center and mosque .\tDT NNP NNP NNP NNP NNP VBD RB IN VBG JJ NN TO DT NN VBN IN DT NNS , IN NNS VBP TO VB RP TO VB DT JJ NN NN CC NN .\nThe World Trade Center site in downtown New York has been known as ground zero since the terrorist attacks of September 11 , 2001 destroyed the twin towers that once stood there .\tDT NNP NNP NNP NN IN JJ NNP NNP VBZ VBN VBN IN NN NN IN DT JJ NNS IN NNP CD , CD VBD DT NN NNS WDT RB VBD RB .\nThe plan to build a mosque a few blocks from the ground zero has drawn criticism from those who say it is disrespectful to victims who were killed in an attack by Islamist extremists .\tDT NN TO VB DT NN DT JJ NNS IN DT NN NN VBZ VBN NN IN DT WP VBP PRP VBZ JJ TO NNS WP VBD VBN IN DT NN IN NNP NNS .\nSupporters of the project say it will help bridge divisions between the West and the Muslim world .\tNNS IN DT NN VBP PRP MD VB VB NNS IN DT NNP CC DT NNP NN .\nAuthorities in Vietnam say Typhoon Kai Tak killed at least 18 people , and emergency workers are still searching for bodies .\tNNS IN NNP VBP NNP NNP NNP VBD IN JJS CD NNS , CC NN NNS VBP RB VBG IN NNS .\nWeather officials say the typhoon dissipated Wednesday after battering the coast of central Vietnam .\tNNP NNS VBP DT NN VBD NNP IN VBG DT NN IN JJ NNP .\nAuthorities say deaths have been reported in several regions , including the provinces of Quang Ngai and Thua Thien Hue .\tNNS VBP NNS VBP VBN VBN IN JJ NNS , VBG DT NNS IN NNP NNP CC NNP NNP NNP .\nAt least six people are missing .\tIN JJS CD NNS VBP VBG .\nVietnam 's official news agency says heavy rain and widespread flooding inundated thousands of homes and severely damaged roads and other infrastructure .\tNNP POS JJ NN NN VBZ JJ NN CC JJ NN VBD NNS IN NNS CC RB VBN NNS CC JJ NN .\nThousands of hectares of crops have been destroyed .\tNNS IN NNS IN NNS VBP VBN VBN .\nThe typhoon also prompted Chinese President Hu Jintao to cut short his visit to Vietnam .\tDT NN RB VBD JJ NNP NNP NNP TO VB JJ PRP$ NN TO NNP .\nOfficial reports say damage from the typhoon is estimated at $ 1.7 million .\tJJ NNS VBP NN IN DT NN VBZ VBN IN $ CD CD .\nIraqi police say at least 28 people , including seven policemen , were killed in a powerful explosion in a Baghdad house overnight .\tJJ NNS VBP IN JJS CD NNS , VBG CD NNS , VBD VBN IN DT JJ NN IN DT NNP NN RB .\nOfficials describe the incident as an ambush , saying ' massive amounts of explosives ' were detonated as police raided the building .\tNNS VBP DT NN IN DT NN , VBG `` JJ NNS IN NNS `` VBD VBN IN NN VBD DT NN .\nPolice had earlier received an anonymous tip that the house was a suspected base for foreign militants .\tNNS VBD RBR VBN DT JJ NN IN DT NN VBD DT JJ NN IN JJ NNS .\nOfficials say several nearby houses also collapsed , and they fear a number of residents might be trapped under the rubble .\tNNS VBP JJ JJ NNS RB VBD , CC PRP VBP DT NN IN NNS MD VB VBN IN DT NN .\nTuesday , at least 23 Iraqi police and national guards were killed in a series of insurgent attacks in the so-called Sunni Triangle region north of Baghdad - in and near the towns of Tikrit , Samarra , Balad and Baquba .\tNNP , IN JJS CD JJ NN CC JJ NNS VBD VBN IN DT NN IN JJ NNS IN DT JJ NNP NNP NN NN IN NNP : IN CC IN DT NNS IN NNP , NNP , NNP CC NNP .\nTop U.S. military officials in Iraq say they expect an escalation of attacks and assassination attempts ahead of the January 30th elections .\tJJ NNP NN NNS IN NNP VBP PRP VBP DT NN IN NNS CC NN NNS RB IN DT NNP JJ NNS .\nFrench football star Zinedine Zidane has announced that he will retire from the sport after this summer 's World Cup tournament in Germany .\tJJ NN NN NNP NNP VBZ VBN IN PRP MD VB IN DT NN IN DT NN POS NNP NNP NN IN NNP .\nZidane told French television , Canal Plus , Tuesday that he has made a ' definitive ' decision that the World Cup is his last goal .\tNNP VBD JJ NN , NNP NNP , NNP IN PRP VBZ VBN DT `` JJ `` NN IN DT NNP NNP VBZ PRP$ JJ NN .\nThe inspirational Real Madrid playmaker said the World Cup is the only thing he wants to focus on .\tDT JJ JJ NNP NN VBD DT NNP NNP VBZ DT JJ NN PRP VBZ TO VB IN .\nZidane was awarded FIFA World Player of the Year honors in 1998 , 2000 and 2003 and has won 99 caps for France , including 17 as captain .\tNNP VBD VBN NNP NNP NNP IN DT NN NNS IN CD , CD CC CD CC VBZ VBN CD NNS IN NNP , VBG CD IN NN .\nHe scored two goals against Brazil in the final to secure the 1998 World Cup .\tPRP VBD CD NNS IN NNP IN DT JJ TO VB DT CD NNP NNP .\nZidane became the world 's most expensive player in 2001 when he moved from Juventus of Italy to Real Madrid for $ 66 million .\tNNP VBD DT NN POS RBS JJ NN IN CD WRB PRP VBD IN NNP IN NNP TO NNP NNP IN $ CD CD .\nFrance is grouped with Switzerland , South Korea and Togo at this year 's World Cup .\tNNP VBZ VBN IN NNP , NNP NNP CC NNP IN DT NN POS NNP NNP .\nRescuers in Baghdad have pulled more bodies from the rubble of a house that was destroyed in an apparent suicide attack Christmas Eve , raising the death toll to nine people .\tNNS IN NNP VBP VBN JJR NNS IN DT NN IN DT NN WDT VBD VBN IN DT JJ NN NN NNP NNP , VBG DT NN NN TO CD NNS .\nThere are unconfirmed reports that the dead were all members of the same family .\tEX VBP JJ NNS IN DT NN VBD DT NNS IN DT JJ NN .\nMeanwhile , the wounded were being treated at Baghdad hospitals .\tRB , DT VBN VBD VBG VBN IN NNP NNS .\nMany of them suffered severe burns in the gas tanker explosion .\tNN IN PRP VBD JJ NNS IN DT NN NN NN .\nFriday 's attack further unnerved Christians living in the capital , as many of them did not venture out to subdued Christmas services this Saturday morning .\tNNP POS NN JJ JJ NNS VBG IN DT NN , IN NN IN PRP VBD RB VB RP TO VB NNP NNS DT NNP NN .\nIn the Shi'ite holy city of Najaf , the governor said police have arrested a group of men suspected of having organized Sunday 's attack in Najaf that killed 52 pilgrims .\tIN DT NNP JJ NN IN NNP , DT NN VBD NNS VBP VBN DT NN IN NNS VBN IN VBG VBN NNP POS NN IN NNP WDT VBD CD NNS .\nHe said an announcement would be made in Baghdad next week .\tPRP VBD DT NN MD VB VBN IN NNP JJ NN .\nChina says it will accept bids next week from three international firms to design and build four nuclear reactors .\tNNP VBZ PRP MD VB NNS JJ NN IN CD JJ NNS TO VB CC VB CD JJ NNS .\nU.S.-based Westinghouse , along with companies from France and Russia , will submit bids to build the reactors in China 's eastern province of Zhejiang and the southern province of Guangdong .\tJJ NNP , IN IN NNS IN NNP CC NNP , MD VB NNS TO VB DT NNS IN NNP POS JJ NN IN NNP CC DT JJ NN IN NNP .\nWestinghouse 's efforts got a boost last week when the U.S. Export-Import Bank approved nearly five billion dollars to help finance the project .\tNNP POS NNS VBD DT NN JJ NN WRB DT NNP NNP NNP VBD RB CD CD NNS TO VB VB DT NN .\nThis is the first time a U.S. firm has competed for a nuclear project in China .\tDT VBZ DT JJ NN DT NNP NN VBZ VBN IN DT JJ NN IN NNP .\nChina is seeking to boost its nuclear power program as part of an overall effort to meet its growing energy demands .\tNNP VBZ VBG TO VB PRP$ JJ NN NN IN NN IN DT JJ NN TO VB PRP$ VBG NN NNS .\nIt already has nine nuclear power plants in operation .\tPRP RB VBZ CD JJ NN NNS IN NN .\nLondon police chief Ian Blair says police have made what he calls ' significant ' progress in its investigation into last week 's failed London subway bombings .\tNNP NN NN NNP NNP VBZ NNS VBP VBN WP PRP VBZ `` JJ `` NN IN PRP$ NN IN JJ NN POS JJ NNP NN NNS .\nInvestigators said Tuesday they found a large amount of suspicious material in a north London apartment connected to one of the four wanted suspects .\tNNS VBD NNP PRP VBD DT JJ NN IN JJ NN IN DT JJ NNP NN VBN TO CD IN DT CD JJ NNS .\nThey have also seized a suspicious car parked near the apartment .\tPRP VBP RB VBN DT JJ NN VBN IN DT NN .\nThe suspects fled from three London subway stations and a bus when their bombs failed to explode on July 21st .\tDT NNS VBD IN CD NNP NN NNS CC DT NN WRB PRP$ NNS VBD TO VB IN NNP CD .\nPolice have identified two of the suspects as a British citizen from Eritrea and a Somali living legally in Britain .\tNNS VBP VBN CD IN DT NNS IN DT JJ NN IN NNP CC DT JJ NN RB IN NNP .\nAuthorities are looking for a link between the July 21 attack and the July 7 London suicide bombings that killed 56 people .\tNNS VBP VBG IN DT NN IN DT NNP CD NN CC DT NNP CD NNP NN NNS WDT VBD CD NNS .\nIvorian President Laurent Gbagbo says a law approved by parliament to allow an opposition leader to run for president must be put to a referendum , angering rebels who say he is wrecking peace efforts .\tJJ NNP NNP NNP VBZ DT NN VBN IN NN TO VB DT NN NN TO VB IN NN MD VB VBN TO DT NN , VBG NNS WP VBP PRP VBZ VBG NN NNS .\nThe rebels say the reform should be enacted into law immediately .\tDT NNS VBP DT NN MD VB VBN IN NN RB .\nThe law to allow opposition leaders to run for president has been a key demand among those who want former prime minister and opposition leader Alassane Ouattara to make a bid for the presidency .\tDT NN TO VB NN NNS TO VB IN NN VBZ VBN DT JJ NN IN DT WP VBP JJ JJ NN CC NN NN NNP NNP TO VB DT NN IN DT NN .\nIt is designed to end a ban on Ivorians with foreign parents from running as presidential candidates .\tPRP VBZ VBN TO VB DT NN IN NNS IN JJ NNS IN VBG IN JJ NNS .\nU.S. lawmakers have approved an addition $ 2 billion to fund an immensely popular car trade-in program known as ' cash for clunkers . '\tNNP NNS VBP VBN DT NN $ CD CD TO VB DT RB JJ NN NN NN VBN IN `` NN IN NNS . ``\nThe House of Representatives rushed a bill forward Friday to replenish funding for the program , which nearly exhausted its initial $ 1 billion funding limit within a matter of days .\tDT NNP IN NNP VBD DT NN RB NNP TO VB NN IN DT NN , WDT RB VBD PRP$ JJ $ CD CD NN NN IN DT NN IN NNS .\nPresident Barack Obama praised lawmakers for working quickly to pass the bill .\tNNP NNP NNP VBD NNS IN VBG RB TO VB DT NN .\nHis administration had promised to extend the initiative .\tPRP$ NN VBD VBN TO VB DT NN .\nThe legislation still has to be approved by the Senate , which is likely to vote next week .\tDT NN RB VBZ TO VB VBN IN DT NNP , WDT VBZ JJ TO VB JJ NN .\n' Cash for clunkers ' gives car owners up to $ 4,500 in rebates to trade in older vehicles for more fuel-efficient models .\t`` NN IN NNS `` VBZ NN NNS RB TO $ CD IN NNS TO VB IN JJR NNS IN JJR JJ NNS .\nThe government launched the program one week ago to boost U.S. auto sales and to improve the fuel economy of vehicles on the road .\tDT NN VBD DT NN CD NN IN TO VB NNP NN NNS CC TO VB DT NN NN IN NNS IN DT NN .\nIt was scheduled to run through November 1 .\tPRP VBD VBN TO VB IN NNP CD .\nThai police say at least 18 bombs have exploded at banks in the restive southern province of Yala , killing at least one person and wounding several others .\tJJ NNS VBP IN JJS CD NNS VBP VBN IN NNS IN DT JJ JJ NN IN NNP , VBG IN JJS CD NN CC VBG JJ NNS .\nOfficials suspect militants detonated the bombs , which exploded Thursday at or near commercial banks in Yala 's provincial capital and nearby districts .\tNNS VBP NNS VBD DT NNS , WDT VBD NNP IN CC IN JJ NNS IN NNP POS JJ NN CC JJ NNS .\nIslamist insurgents have staged a lengthy series of attacks in Yala and two other Muslim-majority provinces in southern Thailand , Narathiwat and Pattani , since January 2004 .\tNNP NNS VBP VBN DT JJ NN IN NNS IN NNP CC CD JJ JJ NNS IN JJ NNP , NNP CC NNP , IN NNP CD .\nThe provinces were a Malay sultanate until Buddhist Thailand annexed them a century ago .\tDT NNS VBD DT JJ NN IN NNP NNP VBD PRP DT NN RB .\nMore than 1,400 people have been killed since the insurgency erupted .\tJJR IN CD NNS VBP VBN VBN IN DT NN VBD .\nEgyptian police say they have killed one of the main suspects in the recent bombings at Egypt 's Red Sea resort of Sharm el-Sheikh .\tJJ NNS VBP PRP VBP VBN CD IN DT JJ NNS IN DT JJ NNS IN NNP POS NNP NNP NN IN NNP NNP .\nA police official says Mohammed Saleh Fulayfill was killed and his wife was wounded during a shootout with police near the town of Suez .\tDT NN NN VBZ NNP NNP NNP VBD VBN CC PRP$ NN VBD VBN IN DT NN IN NN IN DT NN IN NNP .\nThe July 23 bombings at Sharm el-Sheikh killed at least 64 people .\tDT NNP CD NNS IN NNP NNP VBD IN JJS CD NNS .\nThe suspect was also being tried in his absence for his alleged role in similar bomb attacks last October in the Egyptian resort town of Taba .\tDT NN VBD RB VBG VBN IN PRP$ NN IN PRP$ JJ NN IN JJ NN NNS JJ NNP IN DT JJ NN NN IN NNP .\nAustrian prosecutors say the three-year prison term of a British historian convicted of denying the Nazi Holocaust is too light and have appealed the ruling .\tJJ NNS VBP DT JJ NN NN IN DT JJ NN VBN IN VBG DT NNP NNP VBZ RB JJ CC VBP VBN DT NN .\nA spokesman for the Vienna prosecutor 's office , Walter Geyer , announced the appeal of the sentence of David Irving .\tDT NN IN DT NNP NN POS NN , NNP NNP , VBD DT NN IN DT NN IN NNP NNP .\nThe historian Monday pleaded guilty to charges of denying the Holocaust following his arrest in November over comments he made in 1989 .\tDT NN NNP VBD JJ TO NNS IN VBG DT NNP VBG PRP$ NN IN NNP IN NNS PRP VBD IN CD .\nHe told the judge that he had abandoned those views after finding documents by the chief planner of the Jewish genocide , Adolf Eichmann .\tPRP VBD DT NN IN PRP VBD VBN DT NNS IN VBG NNS IN DT JJ NN IN DT JJ NN , NNP NNP .\nThe chief judge , however , said he did not believe Irving was sincere .\tDT NN NN , RB , VBD PRP VBD RB VB NNP VBD JJ .\nThe British historian also has said he plans to appeal the sentence .\tDT JJ NN RB VBZ VBN PRP VBZ TO VB DT NN .\nIrving has written books calling Nazi concentration camp gas chambers a hoax , and he has said that Nazi forces killed far fewer than the estimated six million Jews .\tNNP VBZ VBN NNS VBG JJ NN NN NN NNS DT NN , CC PRP VBZ VBN IN NNP NNS VBD RB JJR IN DT VBN CD CD NNPS .\nIraqi Prime Minister Ibrahim al-Jaafari toured the embattled city of Tal Afar Monday , where Iraqi forces backed by U.S. troops are trying to drive insurgents from their northern stronghold .\tJJ NNP NNP NNP NNP VBD DT JJ NN IN NNP NNP NNP , WRB JJ NNS VBN IN NNP NNS VBP VBG TO VB NNS IN PRP$ JJ NN .\nThe prime minister 's office confirmed the visit , which came despite insurgent threats to counter-attack coalition forces in the city with chemical weapons .\tDT JJ NN POS NN VBD DT NN , WDT VBD IN JJ NNS TO JJ NN NNS IN DT NN IN JJ NNS .\nSome insurgent positions were found deserted Sunday , as 5,000 Iraqi soldiers and 3,500 U.S. armored cavalry troops pushed into the near-empty city .\tDT JJ NNS VBD VBN JJ NNP , IN CD JJ NNS CC CD NNP JJ NN NNS VBD IN DT JJ NN .\nU.S. authorities say they suspect many insurgents escaped the fighting through a network of tunnels found beneath the city on Sunday .\tNNP NNS VBP PRP VBP JJ NNS VBD DT NN IN DT NN IN NNS VBN IN DT NN IN NNP .\nIn Baghdad today , the Iraqi Defense Ministry said 157 insurgents have been killed since Sunday .\tIN NNP NN , DT JJ NNP NNP VBD CD NNS VBP VBN VBN IN NNP .\nThe U.S. military reported 141 insurgent fatalities in the previous 24 hours .\tDT NNP NN VBD CD JJ NNS IN DT JJ CD NNS .\nReuters news agency quotes a Defense Ministry spokesman as saying the operation should be completed by Thursday .\tNNP NN NN VBZ DT NNP NNP NN IN VBG DT NN MD VB VBN IN NNP .\nThe White House says Florida Governor and President Bush 's brother Jeb will lead a delegation to Haiti for Sunday 's inauguration of incoming Haitian President Rene Preval .\tDT NNP NNP VBZ NNP NNP CC NNP NNP POS NN NNP MD VB DT NN TO NNP IN NNP POS NN IN JJ JJ NNP NNP NNP .\nA statement issued Monday said U.S. Ambassador to Haiti Janet Ann Sanderson and M.\tDT NN VBN NNP VBD NNP NNP TO NNP NNP NNP NNP CC NNP\nRony Francois , Secretary of the Florida Department of Health , also will comprise the presidential delegation announced by President Bush .\tNNP NNP , NNP IN DT NNP NNP IN NNP , RB MD VB DT JJ NN VBN IN NNP NNP .\nThe incoming Haitian leader won the presidency in February , following a campaign of promises to improve social conditions and education for Haitians .\tDT JJ JJ NN VBD DT NN IN NNP , VBG DT NN IN NNS TO VB JJ NNS CC NN IN NNS .\nThe vote ushered in the first democratically elected government in Haiti since the ouster of President Jean-Bertrand Aristide in 2004 .\tDT NN VBD IN DT JJ RB VBN NN IN NNP IN DT NN IN NNP NNP NNP IN CD .\nMr. Preval first held the presidency from 1996 to 2001 .\tNNP NNP RB VBD DT NN IN CD TO CD .\nThe top U.S. military commander in Iraq has told troops they must refrain from torturing or mistreating Iraqis .\tDT JJ NNP JJ NN IN NNP VBZ VBN NNS PRP MD VB IN VBG CC VBG NNS .\nArmy General David Petraeus reminded American forces in an open letter dated Thursday they had to convince Iraqis that ' we - not our enemies - occupy the high moral ground . '\tNNP NNP NNP NNP VBD JJ NNS IN DT JJ NN VBN NNP PRP VBD TO VB NNS IN `` PRP : RB PRP$ NNS IN JJ DT JJ JJ NN . ``\nGeneral Petraeus was responding to a recent survey of U.S. ground troops in Iraq , which found more than one-third of all Marines and Army soldiers support torture if it leads to information about insurgents , or saves the lives of U.S. troops .\tNNP NNP VBD VBG TO DT JJ NN IN NNP NN NNS IN NNP , WDT VBD JJR IN NN IN DT NNPS CC NNP NNS NN NN IN PRP VBZ TO NN IN NNS , CC VBZ DT NNS IN NNP NNS .\nMany also said they would not report a fellow serviceman for killing or injuring an Iraqi civilian .\tNN RB VBD PRP MD RB VB DT JJ NN IN VBG CC VBG DT JJ JJ .\nThe general says that while seeing a fellow trooper killed can lead to anger and a need for revenge , torture is ' neither useful nor necessary . '\tDT NN VBZ IN IN VBG DT NN NN VBN MD VB TO NN CC DT NN IN NN , NN VBZ `` CC JJ CC JJ . ``\nCongo 's President Joseph Kabila has suspended six government ministers accused of embezzling money through state-run companies .\tNNP POS NNP NNP NNP VBZ VBN CD NN NNS VBN IN VBG NN IN JJ NNS .\nMr. Kabila says the sanctions target the ministers of energy , transport and communications , higher education , public works and infrastructure , mining , and external trade .\tNNP NNP VBZ DT NNS VBP DT NNS IN NN , NN CC NNS , JJR NN , JJ NNS CC NN , NN , CC JJ NN .\nThe government also suspended 10 top officials in state-run companies as part of an ongoing probe into corruption charges .\tDT NN RB VBD CD JJ NNS IN JJ NNS IN NN IN DT JJ NN IN NN NNS .\nMr. Kabila 's transition government is struggling to rebuild the nation , following more than 30 years of corrupt rule by former dictator Mobutu Sese Seko .\tNNP NNP POS NN NN VBZ VBG TO VB DT NN , VBG JJR IN CD NNS IN JJ NN IN JJ NN NNP NNP NNP .\nMobutu 's regime was accused of massive fraud and looting of funds through government offices and state mining companies .\tNNP POS NN VBD VBN IN JJ NN CC NN IN NNS IN NN NNS CC NN NN NNS .\nOfficials in Afghanistan say Taleban militants have beheaded four Afghan men .\tNNS IN NNP VBP NNP NNS VBP VBN CD JJ NNS .\nAuthorities say the decapitated bodies were found in Shajoy district of insurgent-hit Zabol province .\tNNS VBP DT JJ NNS VBD VBN IN NNP NN IN JJ NNP NN .\nThey say the men were kidnapped from their homes Tuesday .\tPRP VBP DT NNS VBD VBN IN PRP$ NNS NNP .\nThe Taleban claimed responsibility , accusing the men of spying for the United States .\tDT NNP VBD NN , VBG DT NNS IN VBG IN DT NNP NNPS .\nThat claim could not be immediately confirmed .\tDT NN MD RB VB RB VBN .\nAlso Friday , a roadside bomb exploded as a convoy carrying Denmark 's defense chief , Jesper Helsoe , passed by .\tRB NNP , DT NN NN VBD IN DT NN VBG NNP POS NN NN , NNP NNP , VBN IN .\nThe explosion occurred near Feyzabad in the northeastern part of the country .\tDT NN VBD IN NNP IN DT JJ NN IN DT NN .\nNo casualties were reported .\tDT NNS VBD VBN .\nLate Thursday , coalition leaders announced the deaths of 14 militants during the ongoing military offensive to flush out insurgents from southern Afghanistan .\tRB NNP , NN NNS VBD DT NNS IN CD NNS IN DT JJ JJ NN TO VB RP NNS IN JJ NNP .\nThe Taleban , whose government was toppled by a U.S.-led military coalition in late 2001 , have been fighting against the new government .\tDT NNP , WP$ NN VBD VBN IN DT JJ JJ NN IN JJ CD , VBP VBN VBG IN DT JJ NN .\nA suicide bomber in a car blew himself up next to a NATO convoy in southern Afghanistan on Friday , but no troops were hurt .\tDT NN NN IN DT NN VBD PRP RP JJ TO DT NNP NN IN JJ NNP IN NNP , CC DT NNS VBD VBN .\nThe blast occurred north of Tirin Kot , the capital of Uruzgan province .\tDT NN VBD NN IN NNP NNP , DT NN IN NNP NN .\nAfghan police say the suicide bomber was trying to get close to the convoy but was more than 30 meters away when the explosion went off .\tJJ NNS VBP DT NN NN VBD VBG TO VB RB TO DT NN CC VBD JJR IN CD NNS RB WRB DT NN VBD RB .\nThe bomber was killed , but there were no other casualties .\tDT NN VBD VBN , CC EX VBD DT JJ NNS .\nAttacks from suspected Taleban militants against NATO , U.S. and Afghan forces increased dramatically in Afghanistan last year .\tNNS IN JJ NNP NNS IN NNP , NNP CC JJ NNS VBD RB IN NNP JJ NN .\nU.S. and Afghan officials have warned they expect an increase in Taleban attacks in the coming months .\tNNP CC JJ NNS VBP VBN PRP VBP DT NN IN NNP NNS IN DT JJ NNS .\nPakistani security officials say they have detained a suspected Taliban commander and killed at least five other militants during an operation in the country 's northwest .\tJJ NN NNS VBP PRP VBP VBN DT JJ NNP NN CC VBD IN JJS CD JJ NNS IN DT NN IN DT NN POS NN .\nOfficials say security forces clashed with the insurgents Thursday in the Mohmand tribal region , bordering Bajaur , where Pakistani troops have been fighting Taliban and al-Qaida militants for months .\tNNS VBP NN NNS VBN IN DT NNS NNP IN DT NNP JJ NN , VBG NNP , WRB JJ NNS VBP VBN VBG NNP CC NNP NNS IN NNS .\nAuthorities say the security forces captured a suspected explosives expert and Pakistani Taliban commander , known as Imran or Mansoor , during the clash today .\tNNS VBP DT NN NNS VBD DT JJ NNS NN CC JJ NNP NN , VBN IN NNP CC NNP , IN DT NN NN .\nThey say the commander helped prepare suicide bomb materials and maintained links with insurgents across the border in Afghanistan .\tPRP VBP DT NN VBD VB NN NN NNS CC VBN NNS IN NNS IN DT NN IN NNP .\nAuthorities in Nepal say one policeman has been killed and four wounded by a bomb that exploded as they were clearing a roadblock set by suspected Maoist rebels .\tNNS IN NNP VBP CD NN VBZ VBN VBN CC CD VBN IN DT NN WDT VBD IN PRP VBD VBG DT NN VBN IN JJ NNP NNS .\nAuthorities say the blast struck Monday on the Mahendranagar highway , about 600 kilometers west of the capital , Kathmandu .\tNNS VBP DT NN VBD NNP IN DT NNP NN , IN CD NNS JJS IN DT NN , NNP .\nThe explosion comes on the second day of a week-long strike called by Maoist rebels to disrupt Wednesday 's local elections to be held across the country .\tDT NN VBZ IN DT JJ NN IN DT JJ NN VBN IN NNP NNS TO VB NNP POS JJ NNS TO VB VBN IN DT NN .\nThe rebels have threatened to harm anyone who participates in the municipal elections .\tDT NNS VBP VBN TO VB DT WP VBZ IN DT JJ NNS .\nMore than 600 candidates have already dropped out .\tJJR IN CD NNS VBP RB VBN RP .\nThe rebels and opposition parties oppose the elections , calling them a sham aimed at legitimizing King Gyanendra 's seizure of power a year ago in the constitutional monarchy .\tDT NNS CC NN NNS VBP DT NNS , VBG PRP DT NN VBN IN VBG NNP NNP POS NN IN NN DT NN RB IN DT JJ NN .\nThe king says he took absolute rule because the government failed to stop the nearly decade-long Maoist insurgency .\tDT NN VBZ PRP VBD JJ NN IN DT NN VBD TO VB DT RB JJ NNP NN .\nAfghan officials say a roadside bomb has killed three Afghans and two foreigners in the country 's south .\tJJ NNS VBP DT NN NN VBZ VBN CD NNS CC CD NNS IN DT NN POS NN .\nOfficials say the victims worked for an American security company ( USPI ) and were killed on the road linking Kandahar with Herat .\tNNS VBP DT NNS VBD IN DT JJ NN NN LRB NNP RRB CC VBD VBN IN DT NN VBG NNP IN NNP .\nThe nationalities of the two foreigners is not clear .\tDT NNS IN DT CD NNS VBZ RB JJ .\nThe Taleban are being blamed for the attack .\tDT NNP VBP VBG VBN IN DT NN .\nIn a separate incident , a suicide bomber blew up himself and his accomplice in the center of Kandahar city Tuesday .\tIN DT JJ NN , DT NN NN VBD RP PRP CC PRP$ NN IN DT NN IN NNP NN NNP .\nThere were no other casualties .\tEX VBD DT JJ NNS .\nThe governor of Kandahar province , Asadullah Khalid , blamed the attack on people he considers Taleban militants .\tDT NN IN NNP NN , NNP NNP , VBD DT NN IN NNS PRP VBZ NNP NNS .\nTaleban insurgents have increased attacks in southern Afghanistan in recent months .\tNNP NNS VBP VBN NNS IN JJ NNP IN JJ NNS .\nU.S.-led forces overthrew the hardline Islamist Taleban regime in late 2001 , following the September 11 terrorist attacks in the United States .\tJJ NNS VBP DT JJ NNP NNP NN IN JJ CD , VBG DT NNP CD JJ NNS IN DT NNP NNPS .\nSeismologists say a 7.1 magnitude earthquake has struck about 100 kilometers south of the coast of Taiwan .\tNNS VBP DT CD NN NN VBZ VBN IN CD NNS RB IN DT NN IN NNP .\nJapanese seismologists have issued a tsunami warning for the region , saying a one-meter-tall tsunami is now heading for the Philippines .\tJJ NNS VBP VBN DT NN NN IN DT NN , VBG DT JJ NN VBZ RB VBG IN DT NNPS .\nTaiwanese scientists say the earthquake was followed by a magnitude 6.4 aftershock that struck off of southwestern Taiwan .\tJJ NNS VBP DT NN VBD VBN IN DT NN CD NN WDT VBD IN IN JJ NNP .\nThere have been no immediate reports of damage or casualties .\tEX VBP VBN DT JJ NNS IN NN CC NNS .\nAbu Farraj al-Libbi , a top al-Qaida operative and close associate of Osama bin Laden who is wanted for two attempts to assassinate Pakistani President Pervez Musharraf , has been arrested in Pakistan .\tNNP NNP NNP , DT JJ NNP NN CC JJ NN IN NNP NNP NNP WP VBZ VBN IN CD NNS TO VB JJ NNP NNP NNP , VBZ VBN VBN IN NNP .\nPakistani Information Minister Shiekh Rashid Ahmed confirmed the arrest of Abu Farraj al-Libbi .\tJJ NNP NNP NNP NNP NNP VBD DT NN IN NNP NNP NNP .\n' We arrested [ him ] yesterday with four other people , ' said Shiekh Rashid Ahmed .\t`` PRP VBN LRB PRP RRB NN IN CD JJ NNS , `` VBD NNP NNP NNP .\nThe Libyan native , considered third in charge of al-Qaida , had a $ 1 million bounty on his head .\tDT JJ NN , VBN JJ IN NN IN NNP , VBD DT $ CD CD NN IN PRP$ NN .\nHe is one of the group 's top operational commanders , and is accused of planning two unsuccessful bomb attacks against Pakistan 's president , Pervez Musharraf , in 2003 .\tPRP VBZ CD IN DT NN POS JJ JJ NNS , CC VBZ VBN IN VBG CD JJ NN NNS IN NNP POS NN , NNP NNP , IN CD .\nMr. Rashid would not comment on where the suspect was arrested , but he was thought to have been hiding in Pakistan 's northern tribal areas .\tNNP NNP MD RB VB IN WRB DT NN VBD VBN , CC PRP VBD VBN TO VB VBN VBG IN NNP POS JJ JJ NNS .\nBurma 's military government appears to have resumed its promised release of prisoners after a delay of several days .\tNNP POS JJ NN VBZ TO VB VBN PRP$ JJ NN IN NNS IN DT NN IN JJ NNS .\nJournalists in Rangoon Thursday said they saw inmates being freed from the country 's largest jail , Insein prison .\tNNS IN NNP NNP VBD PRP VBD NNS VBG VBN IN DT NN POS JJS NN , NNP NN .\nThey apparently were the first to be let go since a few hundred were granted freedom last Friday .\tPRP RB VBD DT JJ TO VB VBN VB IN DT JJ CD VBD VBN NN JJ NNP .\nThe government announced last week that it would free some 4,000 prisoners it said were wrongly detained by the recently disbanded security apparatus , the National lntelligence Bureau .\tDT NN VBD JJ NN IN PRP MD VB DT CD NNS PRP VBD VBD RB VBN IN DT RB JJ NN NN , DT NNP NN NNP .\nOf those freed last week , only a handful were said to be political dissidents .\tIN DT VBN JJ NN , RB DT NN VBD VBN TO VB JJ NNS .\nSources in the Burmese capital tell VOA one of those expected to be released is Win Tin , a former top aide to opposition leader Aung San Suu Kyi .\tNNS IN DT JJ NN VBP NNP CD IN DT VBN TO VB VBN VBZ NNP NNP , DT JJ JJ NN TO NN NN NNP NNP NNP NNP .\nWin Tin has been jailed since 1989 and is 74 years old .\tNNP NNP VBZ VBN VBN IN CD CC VBZ CD NNS JJ .\nAung San Suu Kyi remains under house arrest .\tNNP NNP NNP NNP VBZ IN NN NN .\nBrazil has successfully launched its first rocket into space .\tNNP VBZ RB VBN PRP$ JJ NN IN NN .\nThe rocket was launched from the Alcantara base in northern Brazil to conduct experiments just outside Earth 's atmosphere .\tDT NN VBD VBN IN DT NNP NN IN JJ NNP TO VB NNS RB IN NNP POS NN .\nThe launch Saturday came 14 months after a deadly rocket explosion at the Altcantara base killed 21 space agency employees , including key technicians .\tDT NN NNP VBD CD NNS IN DT JJ NN NN IN DT NNP NN VBD CD NN NN NNS , VBG JJ NNS .\nThe launch pad explosion also damaged the reputation of Brazil 's space program and set back plans to sell up to 15 of its VSV-30 rockets .\tDT NN NN NN RB VBD DT NN IN NNP POS NN NN CC VBD RP NNS TO VB RP TO CD IN PRP$ JJ NNS .\nBrazil 's Alcantara base is considered an excellent launch site because of its proximity to the equator , where the Earth moves the fastest . .\tNNP POS NNP NN VBZ VBN DT JJ NN NN IN IN PRP$ NN TO DT NN , WRB DT NNP VBZ DT JJS . .\nScientists say launching a rocket at this point gives it an extra boost and allows it to carry less fuel .\tNNS VBP VBG DT NN IN DT NN VBZ PRP DT JJ NN CC VBZ PRP TO VB JJR NN .\nThe U.N. Security Council has canceled plans to send a delegation to talks with the Sudanese government and the African Union on the crisis in Darfur .\tDT NNP NNP NNP VBZ VBN NNS TO VB DT NN TO NNS IN DT JJ NN CC DT NNP NNP IN DT NN IN NNP .\nU.N. diplomats said late Friday the mission fell through after they could not agree on its scope and mandate .\tNNP NNS VBD JJ NNP DT NN VBD IN IN PRP MD RB VB IN PRP$ NN CC NN .\nThe Council president , Peru 's U.N. Ambassador Jorge Voto Bernales , said members could also not agree on what message the delegation would convey to the Sudanese and A.U. officials who begin meetings Monday in Ethiopia 's capital , Addis Ababa .\tDT NNP NN , NNP POS NNP NNP NNP NNP NNP , VBD NNS MD RB RB VB IN WDT NN DT NN MD VB TO DT JJ CC NNP NNS WP VBP NNS NNP IN NNP POS NN , NNP NNP .\nThe Security Council has approved a U.N. mission for Darfur to take over from an under-funded A.U. mission .\tDT NNP NNP VBZ VBN DT NNP NN IN NNP TO VB RP IN DT JJ NNP NN .\nSudan has repeatedly rejected the mission , likening a U.N. force to colonization .\tNNP VBZ RB VBN DT NN , VBG DT NNP NN TO NN .\nTo counter those rejections , U.N. diplomats are reported to be considering a force made up mainly of African troops who receive communication gear and logistical support through the United Nations .\tTO VB DT NNS , NNP NNS VBP VBN TO VB VBG DT NN VBN RP RB IN JJ NNS WP VBP NN NN CC JJ NN IN DT NNP NNPS .\nZimbabwe President Robert Mugabe told the U.N. General Assembly Sunday that claims of a humanitarian crisis in his country are unfounded .\tNNP NNP NNP NNP VBD DT NNP NNP NNP NNP IN NNS IN DT JJ NN IN PRP$ NN VBP JJ .\nMr. Mugabe said those who criticized Zimbabwe 's recent program to demolish illegal dwellings and street stalls were trying to tarnish the image of Zimbabwe and depict it as a failed state .\tNNP NNP VBD DT WP VBD NNP POS JJ NN TO VB JJ NNS CC NN NNS VBD VBG TO VB DT NN IN NNP CC VB PRP IN DT JJ NN .\nA recent U.N. report called Mr. Mugabe 's so-called urban cleanup campaign a disastrous policy that left 7,00,000 people without homes or jobs .\tDT JJ NNP NN VBD NNP NNP POS JJ JJ NN NN DT JJ NN WDT VBD CD NNS IN NNS CC NNS .\nPresident Mugabe told the General Assembly that what he calls ' Operation Restore Order ' cleared the way for a vast reconstruction program that would lead to new factories and homes .\tNNP NNP VBD DT NNP NNP IN WP PRP VBZ `` NN NNP NNP `` VBD DT NN IN DT JJ NN NN WDT MD VB TO JJ NNS CC NNS .\nHe also criticized what he called Zimbabwe 's ' detractors and ill-wishers ' for reporting starvation in the country .\tPRP RB VBD WP PRP VBD NNP POS `` NNS CC NNS `` IN VBG NN IN DT NN .\nHe said those reports were not TRUE .\tPRP VBD DT NNS VBD RB JJ .\nU.S.-led forces in Iraq 's western Anbar province say they have detained 13 suspected insurgents in a continuing offensive along the Euphrates river .\tJJ NNS IN NNP POS JJ NNP NN VBP PRP VBP VBN CD JJ NNS IN DT VBG NN IN DT NNP NN .\nA U.S. military statement Thursday said no major battles or airstrikes have occurred during the operation , which began Tuesday around the city of Hit .\tDT NNP JJ NN NNP VBD DT JJ NNS CC NNS VBP VBN IN DT NN , WDT VBD NNP IN DT NN IN NNP .\nThe statement also said troops have confiscated hundreds of mortars , explosives and guns .\tDT NN RB VBD NNS VBP VBN NNS IN NNS , NNS CC NNS .\nIt said basic utilities in the town continue to function and residents continue to have access to medical treatment .\tPRP VBD JJ NNS IN DT NN VBP TO VB CC NNS VBP TO VB NN TO JJ NN .\nAnbar is Iraq 's largest province and is believed to be an insurgent stronghold and transit route for foreign fighters .\tNNP VBZ NNP POS JJS NN CC VBZ VBN TO VB DT JJ NN CC NN NN IN JJ NNS .\nThe presidents of Russia and Syria have held talks at the Kremlin amid controversy over a reported weapons sale between their nations .\tDT NNS IN NNP CC NNP VBP VBN NNS IN DT NNP IN NN IN DT JJ NNS NN IN PRP$ NNS .\nRussia 's Vladimir Putin and Bashar al-Assad of Syria signed bilateral agreements at Tuesday 's meeting .\tNNP POS NNP NNP CC NNP NNP IN NNP VBD JJ NNS IN NNP POS NN .\nRussia also agreed to write-off about $ 10 billion of Syria 's more than $ 13 billion debt to Moscow .\tNNP RB VBD TO NN IN $ CD CD IN NNP POS JJR IN $ CD CD NN TO NNP .\nThe leaders stressed the importance of building strong relations .\tDT NNS VBD DT NN IN VBG JJ NNS .\nMr. al-Assad also said he would welcome an increased Russian role in the Middle East .\tNNP NNP RB VBD PRP MD VB DT VBN JJ NN IN DT NNP NNP .\nEarlier , the Syrian leader told university students his country has the right to purchase anti-aircraft missiles for defense .\tRB , DT JJ NN VBD NN NNS PRP$ NN VBZ DT NN TO VB JJ NNS IN NN .\nReports have said Russia planned to sell shoulder-fired SA-18 missiles and larger Iskander-E missiles to Syria - prompting protests from Israel .\tNNS VBP VBN NNP VBD TO VB JJ JJ NNS CC JJR JJ NNS TO NNP IN VBG NNS IN NNP .\nThe Iskander-E would be capable of hitting most of Israel .\tDT NN MD VB JJ IN VBG JJS IN NNP .\nThe Israelis fear the SA-18 could fall into the hands of Hezbollah guerrillas in Lebanon .\tDT NNS VBP DT NN MD VB IN DT NNS IN NNP NNS IN NNP .\nChinese organizers have canceled the international portion of the Beijing Paralympic torch relay , and shortened the domestic legs .\tJJ NNS VBP VBN DT JJ NN IN DT NNP NNP NN NN , CC VBD DT JJ NNS .\nWednesday 's announcement comes after international legs of the Olympic torch relay were plagued by violent protests against China 's Tibet policy .\tNNP POS NN VBZ IN JJ NNS IN DT NNP NN NN VBD VBN IN JJ NNS IN NNP POS NNP NN .\nHowever , organizers say the Paralympic relay route was changed because the government is focusing on relief work following a deadly earthquake on May 12 .\tRB , NNS VBP DT NNP NN NN VBD VBN IN DT NN VBZ VBG IN NN NN VBG DT JJ NN IN NNP CD .\nIt killed 70,000 people and left millions displaced in Sichuan province .\tPRP VBD CD NNS CC VBD NNS VBN IN NNP NN .\nThe first-ever international Paralympic torch relay had been scheduled to visit upcoming Olympic host cities London , England , Vancouver , Canada and Sochi , Russia as well as Hong Kong before the September sixth to 17th Paralympics .\tDT JJ JJ NNP NN NN VBD VBN VBN TO VB JJ NNP NN NNS NNP , NNP , NNP , NNP CC NNP , NNP RB RB IN NNP NNP IN DT NNP NN TO JJ NNS .\nFour Chinese cities , Chengdu , Chongqing , Urumqi and Tianjin , were also removed from the original 16-stop schedule for the domestic relay .\tCD JJ NNS , NNP , NNP , NNP CC NNP , VBD RB VBN IN DT JJ JJ NN IN DT JJ NN .\nThe state-run China Daily newspaper has reported the 2008 Olympics will create more than 1.8 million jobs in Beijing and boost the Chinese capital 's overall economic growth .\tDT JJ NNP NNP NN VBZ VBN DT CD NNS MD VB JJR IN CD CD NNS IN NNP CC VB DT JJ NN POS JJ JJ NN .\nThe newspaper cited a new economic outlook by two statisticians for the city government that says Beijing 's economy will grow 9.8 percent annually between now and 2008 .\tDT NN VBD DT JJ JJ NN IN CD NNS IN DT NN NN WDT VBZ NNP POS NN MD VB CD NN RB IN RB CC CD .\nThat is an increase of almost one percentage point ( 0.8 ) from the annual average between 2001 and 2005 .\tDT VBZ DT NN IN RB CD NN NN LRB CD RRB IN DT JJ NN IN CD CC CD .\nThe report says more than 50 sectors of the economy will benefit from the Games , with construction leading the way with more than 20 percent of the growth .\tDT NN VBZ JJR IN CD NNS IN DT NN MD VB IN DT NNPS , IN NN VBG DT NN IN JJR IN CD NN IN DT NN .\nThe 2008 Games have spurred Beijing to launch numerous infrastructure development projects , including expanded highway and subway systems , an Olympic sports and culture zone and 17 new gymnasiums .\tDT CD NNPS VBP VBN NNP TO VB JJ NN NN NNS , VBG VBN NN CC NN NNS , DT NNP NNS CC NN NN CC CD JJ NNS .\nThousands of Egyptians demonstrated in central Cairo Wednesday to demand democratic reform .\tNNS IN NNS VBN IN JJ NNP NNP TO VB JJ NN .\nThe protest brought together members of the banned Islamist group the Muslim Brotherhood and several leftist groups .\tDT NN VBD RB NNS IN DT VBN NNP NN DT NNP NNP CC JJ JJ NNS .\nIt was one of the largest and the latest in a series of demonstrations held ahead of Egypt 's first multi-candidate presidential elections scheduled for September .\tPRP VBD CD IN DT JJS CC DT JJS IN DT NN IN NNS VBN RB IN NNP POS JJ JJ JJ NNS VBN IN NNP .\nEgyptians approved an amendment to allow more than one presidential candidate earlier this year .\tNNS VBD DT NN TO VB JJR IN CD JJ NN RBR DT NN .\nBut opposition officials say the amendment includes restrictive measures that will prevent a credible challenge to President Hosni Mubarak if he decides to seek another term .\tCC NN NNS VBP DT NN VBZ JJ NNS WDT MD VB DT JJ NN TO NNP NNP NNP IN PRP VBZ TO VB DT NN .\nEgypt has banned the Muslim Brotherhood so members of the group will not be able to take part in the election .\tNNP VBZ VBN DT NNP NNP IN NNS IN DT NN MD RB VB JJ TO VB NN IN DT NN .\nA sleek , black and chrome French train with oversized wheels has broken a world speed record for conventional rail , reaching a top velocity of nearly 575 kilometers per hour .\tDT JJ , JJ CC JJ JJ NN IN JJ NNS VBZ VBN DT NN NN NN IN JJ NN , VBG DT JJ NN IN RB CD NNS IN NN .\nFrench television Tuesday showed sparks flying and a long tail of dust , as the specially built ( V-150 ) train streaked through the French countryside .\tJJ NN NNP VBD NNS VBG CC DT JJ NN IN NN , IN DT RB VBN LRB NNP RRB NN VBD IN DT JJ NN .\nThe train easily surpassed the old French record of 515 kilometers per hour set in 1990 , and just missed the Japanese record ( 581 kph ) for a train that levitates over magnetic track .\tDT NN RB VBD DT JJ JJ NN IN CD NNS IN NN VBN IN CD , CC RB VBD DT JJ NN LRB CD NN RRB IN DT NN WDT VBZ IN JJ NN .\nFrench manufacturer Alstom equipped the train with two 25,000 horsepower engines and three double-decker cars .\tJJ NN NNP VBD DT NN IN CD CD NN NNS CC CD JJ NNS .\nIt set the record on a newly-built track linking Paris with Strasbourg .\tPRP VBD DT NN IN DT JJ NN VBG NNP IN NNP .\nA modified version of the prototype train is set to begin passenger service between Paris and Strasbourg in June .\tDT VBN NN IN DT NN NN VBZ VBN TO VB NN NN IN NNP CC NNP IN NNP .\nThe U.S. government is taking steps to move Hurricane Katrina evacuees out of hotels and into long-term housing .\tDT NNP NN VBZ VBG NNS TO VB NNP NNP VBZ IN IN NNS CC IN JJ NN .\nThe Federal Emergency Management Agency , known as FEMA has told families living in more than 40,000 hotel rooms across the country that it will stop paying their hotel bills on December 1 .\tDT NNP NNP NNP NNP , VBN IN NNP VBZ VBN NNS VBG IN JJR IN CD NN NNS IN DT NN IN PRP MD VB VBG PRP$ NN NNS IN NNP CD .\nFunding will last until January 7 for another 12,000 families occupying hotel rooms in the states of Louisiana and Mississippi , where damage from Katrina has led to a housing shortage .\tNNP MD VB IN NNP CD IN DT CD NNS VBG NN NNS IN DT NNS IN NNP CC NNP , WRB NN IN NNP VBZ VBN TO DT NN NN .\nUp to 1,50,000 evacuees will have to find apartments or other housing options by the deadlines if they want to continue receiving FEMA rental assistance of $ 786 a month .\tIN TO CD NNS MD VB TO VB NNS CC JJ NN NNS IN DT NNS IN PRP VBP TO VB VBG NNP JJ NN IN $ CD DT NN .\nAdvocates for the evacuees have criticized the deadlines , saying FEMA is not giving the families enough time to find new housing .\tNNS IN DT NNS VBP VBN DT NNS , VBG NNP VBZ RB VBG DT NNS JJ NN TO VB JJ NN .\nA defunct Russian communications satellite has smashed into a U.S. satellite in orbit , creating a possible risk to the International Space Station .\tDT JJ JJ NNS NN VBZ VBN IN DT NNP NN IN NN , VBG DT JJ NN TO DT NNP NNP NNP .\nU.S. officials say this is the first time two whole satellites ever crashed into each other in space .\tNNP NNS VBP DT VBZ DT JJ NN CD JJ NNS RB VBD IN DT NN IN NN .\nThey collided Tuesday about 780 kilometers above Siberia , creating a huge explosion with many pieces of debris .\tPRP VBD NNP IN CD NNS IN NNP , VBG DT JJ NN IN JJ NNS IN NN .\nThe U.S. space agency , NASA , said the floating satellite parts create a small risk to the International Space Station , which flies at a lower orbit than where the collision took place .\tDT NNP NN NN , NNP , VBD DT JJ NN NNS VBP DT JJ NN TO DT NNP NNP NNP , WDT VBZ IN DT JJR NN IN WRB DT NN VBD NN .\nBut NASA says it will be weeks before the full magnitude of the collision is known .\tCC NNP VBZ PRP MD VB NNS IN DT JJ NN IN DT NN VBZ VBN .\nScientists say there are thousands of pieces of space junk orbiting the Earth , including old satellites and burned-out rocket boosters .\tNNS VBP EX VBP NNS IN NNS IN NN NN VBG DT NNP , VBG JJ NNS CC JJ NN NNS .\nThousands of people have marched in two Colombian cities to protest a planned free trade agreement with the United States .\tNNS IN NNS VBP VBN IN CD JJ NNS TO VB DT JJ JJ NN NN IN DT NNP NNPS .\nThe marchers massed in Bogota and Cartagena Thursday , saying the accord would worsen unemployment in the Andean nation .\tDT NNS VBD IN NNP CC NNP NNP , VBG DT NN MD VB NN IN DT JJ NN .\nThe demonstration took place as trade negotiators from Colombia , Ecuador , Peru and the United States met for a new round of talks in Cartagena .\tDT NN VBD NN IN NN NNS IN NNP , NNP , NNP CC DT NNP NNPS VBD IN DT JJ NN IN NNS IN NNP .\nThe negotiations for the free trade deal began in May of last year and are supposed to conclude next month .\tDT NNS IN DT JJ NN NN VBD IN NNP IN JJ NN CC VBP VBN TO VB JJ NN .\nThe Andean countries want to extend existing trade accords that allow them to export items such as fresh cut flowers without tariffs .\tDT JJ NNS VBP TO VB VBG NN NNS WDT VBP PRP TO VB NNS JJ IN JJ VBN NNS IN NNS .\nThe agreements , set to expire in 2006 , were put in place to help countries on the front lines in the fight against the illegal drug trade .\tDT NNS , VBN TO VB IN CD , VBD VBN IN NN TO VB NNS IN DT NN NNS IN DT NN IN DT JJ NN NN .\nWorld Bank President Paul Wolfowitz is in Islamabad , where he met with President Pervez Musharraf and praised Pakistan 's economic and banking sector reforms .\tNNP NNP NNP NNP NNP VBZ IN NNP , WRB PRP VBD IN NNP NNP NNP CC VBD NNP POS JJ CC JJ NN NNS .\nGeneral Musharraf thanked the World Bank for its support to Pakistan , which includes poverty alleviation , water , power , energy and infrastructure projects .\tNNP NNP VBD DT NNP NNP IN PRP$ NN TO NNP , WDT VBZ NN NN , NN , NN , NN CC NN NNS .\nPakistan is the World Bank 's fifth-largest borrower .\tNNP VBZ DT NNP NNP POS JJ NN .\nEarlier , Mr. Wolfowitz met with Prime Minister Shaukat Aziz , a former Citibank executive who is credited with turning around Pakistan 's economy over the past few years .\tRB , NNP NNP VBD IN NNP NNP NNP NNP , DT JJ NNP NN WP VBZ VBN IN VBG RP NNP POS NN IN DT JJ JJ NNS .\nThe government has said that Pakistan 's economy grew 8.4 percent in the fiscal year that ended in June .\tDT NN VBZ VBN IN NNP POS NN VBD CD NN IN DT JJ NN WDT VBD IN NNP .\nMr. Wolfowitz also met with people from poor rural areas to learn how World Bank-funded projects have helped them .\tNNP NNP RB VBD IN NNS IN JJ JJ NNS TO VB WRB NNP JJ NNS VBP VBN PRP .\nThe World Bank president is scheduled to leave on Wednesday for India .\tDT NNP NNP NN VBZ VBN TO VB IN NNP IN NNP .\nPakistani officials say the latest crackdown has resulted in the arrest of up to 600 suspected militants , clerics and Islamist activists across the country .\tJJ NNS VBP DT JJS NN VBZ VBN IN DT NN IN RB TO CD JJ NNS , NNS CC JJ NNS IN DT NN .\nThose detained include members of outlawed militant organizations , clerics accused of delivering ' provocative ' speeches , and Islamists accused of publishing or distributing hate material .\tDT VBN VBP NNS IN JJ JJ NNS , NNS VBN IN VBG `` JJ `` NNS , CC NNS VBN IN NN CC VBG NN NN .\nAt least 295 of the detainees belong to militant groups outlawed over the past three years .\tIN JJS CD IN DT NNS VBP TO JJ NNS VBN IN DT JJ CD NNS .\nPresident Pervez Musharraf ordered the crackdown after revelations that some of the suspected suicide bombers in the July 7 attacks on London were Britons of Pakistani descent who had visited Pakistan .\tNNP NNP NNP VBD DT NN IN NNS IN DT IN DT JJ NN NNS IN DT NNP CD NNS IN NNP VBD NNS IN JJ NN WP VBD VBN NNP .\nBut Pakistani officials say the arrests had nothing to do with the London Bombings .\tCC JJ NNS VBP DT NNS VBD DT TO VB IN DT NNP NNPS .\nThe officials say some of those detained will be tried under Pakistan 's Anti-Terrorism Law , which allows authorities to hold a suspect up to a year without laying charges .\tDT NNS VBP DT IN DT VBN MD VB VBN IN NNP POS NNP NNP , WDT VBZ NNS TO VB DT NN RB TO DT NN IN VBG NNS .\nIraqi President Jalal Talabani is in the United States for weeks of medical care , including weight-loss treatment .\tJJ NNP NNP NNP VBZ IN DT NNP NNPS IN NNS IN JJ NN , VBG JJ NN .\nMr. Talabani , a Kurd , arrived at the Mayo Clinic in the northern U.S. state of Minnesota on Sunday .\tNNP NNP , DT NNP , VBD IN DT NNP NNP IN DT JJ NNP NN IN NNP IN NNP .\nThe Iraqi president , who is in his early 70s , has said he has no health problems except for his weight .\tDT JJ NN , WP VBZ IN PRP$ JJ NNS , VBZ VBN PRP VBZ DT NN NNS IN IN PRP$ NN .\nEarlier this year , he underwent more than two weeks of treatment in Jordan for exhaustion and dehydration .\tRBR DT NN , PRP VBD JJR IN CD NNS IN NN IN NNP IN NN CC NN .\nMr. Talabani 's role as president is largely ceremonial , but he has been influential in political efforts to try to heal Iraq 's sectarian divisions .\tNNP NNP POS NN IN NN VBZ RB JJ , CC PRP VBZ VBN JJ IN JJ NNS TO VB TO VB NNP POS JJ NNS .\nThe teen years are often a difficult time for girls and boys as they make the transition from children to young adults .\tDT JJ NNS VBP RB DT JJ NN IN NNS CC NNS IN PRP VBP DT NN IN NNS TO JJ NNS .\nOne group is using the written word to help ease the transition for girls who come from difficult environments in New York .\tCD NN VBZ VBG DT VBN NN TO VB VB DT NN IN NNS WP VBP IN JJ NNS IN NNP NNP .\n' Girls Write Now ' pairs teenage girls with professional women writers , who serve as writing coaches .\t`` NNP NNP NNP `` VBZ JJ NNS IN JJ NNS NNS , WP VBP IN VBG NNS .\nPaige Kollock reports .\tNNP NNP VBZ .\nAmerican actor Dennis Weaver , who was famous for his role as Chester in the television show Gunsmoke , has died at the age of 81 .\tJJ NN NNP NNP , WP VBD JJ IN PRP$ NN IN NNP IN DT NN NN NNP , VBZ VBN IN DT NN IN CD .\nWeaver 's publicist said Monday that he died at his home in Colorado from complications caused by cancer .\tNNP POS NN VBD NNP IN PRP VBD IN PRP$ NN IN NNP IN NNS VBN IN NN .\nAs a young man , Weaver served in the Navy during World War II and took part in qualifications for the 1948 U.S. Olympic decathlon team .\tIN DT JJ NN , NNP VBD IN DT NNP IN NNP NNP NNP CC VBD NN IN NNS IN DT CD NNP NNP NN NN .\nHe later pursued acting , and won an Emmy award in the 1950s for his role as the tall , limping Chester on the Western Gunsmoke .\tPRP RB VBD NN , CC VBD DT NNP NN IN DT NNS IN PRP$ NN IN DT JJ , VBG NNP IN DT JJ NNP .\nDennis Weaver also starred in a television series during the 1970s called McCloud and appeared in several major movies .\tNNP NNP RB VBD IN DT NN NN IN DT NNS VBD NNP CC VBD IN JJ JJ NNS .\nAn Iraqi prosecutor says Saddam Hussein 's cousin and four other former officials in the ousted regime deserve the death penalty for mass killings of Kurds .\tDT JJ NN VBZ NNP NNP POS NN CC CD JJ JJ NNS IN DT JJ NN VBP DT NN NN IN JJ NNS IN NNS .\nThe prosecutor sought the death penalty Monday at the trial in Baghdad against Ali Hassan al-Majid and the other four officials .\tDT NN VBD DT NN NN NNP IN DT NN IN NNP IN NNP NNP NNP CC DT JJ CD NNS .\nAl-Majid is known as ' Chemical Ali ' for allegedly ordering poison gas attacks against the Kurds .\tNNP VBZ VBN IN `` NNP NNP `` IN RB VBG NN NN NNS IN DT NNPS .\nThe prosecutor asked that a sixth defendant , former governor of Mosul Taher al-Ani , be released for lack of evidence .\tDT NN VBD IN DT JJ NN , JJ NN IN NNP NNP NNP , VB VBN IN NN IN NN .\nThe former officials are on trial for war crimes and crimes against humanity for the so-called Anfal campaign in the 1980s , in which 1,80,000 Iraqi Kurds died .\tDT JJ NNS VBP IN NN IN NN NNS CC NNS IN NN IN DT JJ NNP NN IN DT NNS , IN WDT CD JJ NNPS VBD .\nThe defendants claim the campaign was against legitimate military targets - Kurdish guerrillas who had sided with Iran during the 1980 - 88 Iran-Iraq war .\tDT NNS VBP DT NN VBD IN JJ JJ NNS IN JJ NNS WP VBD VBN IN NNP IN DT CD IN CD NNP NN .\nBusta Rhymes will face trial on two assault charges after being caught driving with a suspended license .\tNNP NNP MD VB NN IN CD NN NNS IN VBG VBN VBG IN DT JJ NN .\nA Manhattan judge Monday , March 26 , withdrew a plea offer which included probation , community service , and a series of lectures to troubled youth .\tDT NNP NN NNP , NNP CD , VBD DT NN NN WDT VBD NN , NN NN , CC DT NN IN NNS TO JJ NN .\nThe trial is tentatively set to start May 8 .\tDT NN VBZ RB VBN TO VB NNP CD .\nThe 34-year-old rapper - real name Trevor Smith , Jr. - is accused of beating his former driver last December in a dispute over back pay .\tDT JJ NN IN JJ NN NNP NNP , NNP : VBZ VBN IN VBG PRP$ JJ NN JJ NNP IN DT NN IN JJ NN .\nThe other case involves an August , 2006 attack on a fan , who allegedly spit on the rapper 's car .\tDT JJ NN VBZ DT NNP , CD NN IN DT NN , WP RB VBP IN DT NN POS NN .\nNew York City police also want to question Busta Rhymes in connection with the February , 2006 shooting death of his bodyguard , Israel Ramirez .\tNNP NNP NNP NNS RB VBP TO VB NNP NNP IN NN IN DT NNP , CD NN NN IN PRP$ NN , NNP NNP .\nThey claim he has been uncooperative .\tPRP VBP PRP VBZ VBN JJ .\nThe U.S. military says 23 of the terror suspects being held at the U.S. detention camp at Guantanamo Bay , Cuba , tried to hang or strangle themselves in a coordinated , mass disruption in 2003 .\tDT NNP NN VBZ CD IN DT NN VBZ VBG VBN IN DT NNP NN NN IN NNP NNP , NNP , VBD TO VB CC VB PRP IN DT JJ , JJ NN IN CD .\nA military spokesman , Lieutenant Commander Chris Lounderma , told VOA two of the protesters attempted suicide , during the disruption from August 18 to August 26 of 2003 .\tDT JJ NN , NNP NNP NNP NNP , VBD NNP CD IN DT NNS VBN NN , IN DT NN IN NNP CD TO NNP CD IN CD .\nThe spokesman said those two protesters required hospital treatment before they were eventually transferred to a psychiatric ward .\tDT NN VBD DT CD NNS VBN NN NN IN PRP VBD RB VBN TO DT JJ NN .\nOfficials say the demonstration was an attempt to disrupt operations at Guantanamo and unnerve new security guards .\tNNS VBP DT NN VBD DT NN TO VB NNS IN NNP CC JJ JJ NN NNS .\nThe U.S. military released details on the disruption in response to questions from U.S. media .\tDT NNP NN VBD NNS IN DT NN IN NN TO NNS IN NNP NNS .\nThere are some 550 prisoners held at the camp .\tEX VBP DT CD NNS VBN IN DT NN .\nPalestinian officials and witnesses say Hamas militiamen detained at least 10 members of the rival Fatah movement after breaking up a wedding and beating guests .\tJJ NNS CC NNS VBP NNP NNS VBD IN JJS CD NNS IN DT JJ NNP NN IN VBG RP DT NN CC NN NNS .\nThe witnesses said the arrests occurred during overnight marriage celebrations in the northern Gaza town of Beit Hanun .\tDT NNS VBD DT NNS VBD IN JJ NN NNS IN DT JJ NNP NN IN NNP NNP .\nHamas authorities say the wedding guests were singing Fatah nationalist songs in support of Palestinian President and Fatah leader Mahmoud Abbas , and firing guns into the air .\tNNP NNS VBP DT NN NNS VBD VBG NNP NN NNS IN NN IN JJ NNP CC NNP NN NNP NNP , CC VBG NNS IN DT NN .\nHospital workers said at least 10 people were hurt in the confrontation .\tNN NNS VBD IN JJS CD NNS VBD VBN IN DT NN .\nWitnesses said that after the incident , about 150 relatives of those arrested staged protests outside Hamas offices in the town .\tNNS VBD IN IN DT NN , IN CD NNS IN DT VBN VBD NNS IN NNP NNS IN DT NN .\nMost of the protesters were women and children .\tJJS IN DT NNS VBD NNS CC NNS .\nHamas militants took control of the Gaza Strip nearly two months ago after a week of deadly street battles with Fatah .\tNNP NNS VBD NN IN DT NNP NNP RB CD NNS RB IN DT NN IN JJ NN NNS IN NNP .\nA published report says between $ 5 million and $ 15 million worth of oil a day is missing in Iraq , and could have been siphoned off through corruption or smuggling .\tDT JJ NN VBZ IN $ CD CD CC $ CD CD NN IN NN DT NN VBZ VBG IN NNP , CC MD VB VBN VBN RP IN NN CC NN .\nCiting a draft report from the U.S. Government Accountability office , The New York Times said Saturday the losses amount to between 1,00,000 and 3,00,000 barrels a day of Iraq 's declared oil production over the past four years .\tVBG DT NN NN IN DT NNP NN NN NN , DT NNP NNP NNP VBD NNP DT NNS VBP TO IN CD CC CD NNS DT NN IN NNP POS VBN NN NN IN DT JJ CD NNS .\nThe Times quotes an unnamed State Department official who offered some possible explanations for the losses , including pipeline sabotage , and inaccurate reporting of oil production .\tDT NNP VBZ DT JJ NNP NNP NN WP VBD DT JJ NNS IN DT NNS , VBG NN NN , CC JJ NN IN NN NN .\nThe newspaper says the report did not make a final conclusion on what happened to the missing oil .\tDT NN VBZ DT NN VBD RB VB DT JJ NN IN WP VBD TO DT JJ NN .\nThe Times said the report is expected to be released next week .\tDT NNP VBD DT NN VBZ VBN TO VB VBN JJ NN .\nDozens of Palestinian gunmen took over an office of the Palestinian elections commission near Jerusalem Tuesday , to press for changes in a slate of ruling party candidates for parliament .\tNNS IN JJ NNS VBD RP DT NN IN DT JJ NNS NN IN NNP NNP , TO VB IN NNS IN DT NN IN VBG NN NNS IN NN .\nThe gunmen , from the militant al-Aqsa Martyrs Brigades , were demanding that the ruling Fatah party slate for January 25 elections include more representatives from neighboring East Jerusalem .\tDT NNS , IN DT JJ NN NNP NNP , VBD VBG IN DT NN NNP NN NN IN NNP CD NNS VBP JJR NNS IN VBG NNP NNP .\nPolice were reported negotiating with the gunmen Tuesday afternoon .\tNNS VBD VBN VBG IN DT NNS NNP NN .\nIn another sign of growing lawlessness in the Palestinian territories , al-Aqsa gunmen Tuesday briefly seized three government buildings in the northern Gaza Strip , to demand jobs with the Palestinian Authority .\tIN DT NN IN VBG NN IN DT JJ NNS , NNP NNS NNP RB VBD CD NN NNS IN DT JJ NNP NNP , TO VB NNS IN DT JJ NNP .\nInternal unrest has been growing in Gaza since Israel ended its 38-year occupation of the territory earlier this year .\tNNP NN VBZ VBN VBG IN NNP IN NNP VBD PRP$ JJ NN IN DT NN RBR DT NN .\nPakistani officials say at least seven family members have been killed by fighting in the country 's troubled northwest .\tJJ NNS VBP IN JJS CD NN NNS VBP VBN VBN IN VBG IN DT NN POS JJ NN .\nThe civilians were killed Friday when artillery shells launched by security forces hit their home in Swat Valley .\tDT NNS VBD VBN NNP WRB NN NNS VBN IN NN NNS VBP PRP$ NN IN NNP NNP .\nThe victims included at least three children .\tDT NNS VBD IN JJS CD NNS .\nAt least three other homes in the area also were damaged .\tIN JJS CD JJ NNS IN DT NN RB VBD VBN .\nTroops said they were targeting militant positions in the region .\tNNS VBD PRP VBD VBG JJ NNS IN DT NN .\nPakistan 's military launched a major offensive against militants in Swat Valley last year , when radical cleric Maulana Fazlullah called for a holy war against the government .\tNNP POS NN VBD DT JJ NN IN NNS IN NNP NNP JJ NN , WRB JJ NN NNP NNP VBD IN DT JJ NN IN DT NN .\nSince then , security forces have killed more than 200 militants and cleared out most of the area .\tIN RB , NN NNS VBP VBN RBR IN CD NNS CC VBD RP JJS IN DT NN .\nSyria and Iraq have re-opened embassies in each other 's capitals for the first time in more than two decades .\tNNP CC NNP VBP VBN NNS IN DT NN POS NNS IN DT JJ NN IN JJR IN CD NNS .\nThey agreed last month to resume diplomatic relations that were severed because of Syria 's support for Iran during the Iran-Iraq war in the 1980s .\tPRP VBD JJ NN TO VB JJ NNS WDT VBD VBN IN IN NNP POS NN IN NNP IN DT NNP NN IN DT NNS .\nMeanwhile , in violence Monday , bombings killed two people in Baghdad .\tRB , IN NN NNP , NNS VBD CD NNS IN NNP .\nAnd gunmen wearing Iraqi army uniforms stole one million dollars and kidnapped four security guards from a vehicle transporting the money to the central bank in Baghdad .\tCC NNS VBG JJ NN VBZ JJ CD CD NNS CC VBD CD NN NNS IN DT NN VBG DT NN TO DT JJ NN IN NNP .\nIn western Baghdad , U.S. and Iraqi troops found and freed 23 kidnapped Iraqis and arrested six men suspected of abducting them .\tIN JJ NNP , NNP CC JJ NNS VBD CC VBD CD VBN NNS CC VBN CD NNS VBN IN VBG PRP .\nThe U.S. military also says a Marine helicopter made an emergency landing in Anbar province , injuring 18 people on board .\tDT NNP NN RB VBZ DT NN NN VBD DT NN NN IN NNP NN , VBG CD NNS IN NN .\nBut officials do not believe the helicopter was forced to land because of enemy action .\tCC NNS VBP RB VB DT NN VBD VBN TO VB IN IN NN NN .\nRoadside bombs killed four American soldiers in Baghdad on Sunday .\tNNP NNS VBD CD JJ NNS IN NNP IN NNP .\nMexico 's Zapatista rebels have emerged from their jungle hideout to begin a six-month nationwide tour in a bid to influence this year 's presidential elections .\tNNP POS NNP NNS VBP VBN IN PRP$ NN NN TO VB DT JJ JJ NN IN DT NN TO VB DT NN POS JJ NNS .\nRebel leader Subcomandante Marcos led the Zapatistas into the city of San Cristobal de las Casas on Sunday riding a motorcycle to the cheers of thousands of supporters .\tNNP NN NNP NNP VBD DT NNP IN DT NN IN NNP NNP IN NNP NNP IN NNP VBG DT NN TO DT NNS IN NNS IN NNS .\nThe rebels plan to visit every Mexican state to build support for the country 's indigenous people and the poor ahead of the July vote .\tDT NNS VBP TO VB DT JJ NN TO VB NN IN DT NN POS JJ NNS CC DT NN RB IN DT NNP NN .\nThe ski mask-wearing rebel leader - who now wants to be called ' Delegate Zero ' - says the rebels will avoid big rallies and concentrate on building ties with ordinary workers .\tDT NN JJ NN NN : WP RB VBZ TO VB VBN `` NNP NNP `` : VBZ DT NNS MD VB JJ NNS CC VB IN NN NNS IN JJ NNS .\nThe tour began on the 12th anniversary of the Zapatista 's bloody uprising demanding greater rights for Indians , and autonomy for the Chiapas region .\tDT NN VBD IN DT JJ NN IN DT NNP POS JJ NN VBG JJR NNS IN NNS , CC NN IN DT NNP NN .\nPakistan has re-opened a route critical to transporting supplies to NATO and U.S.-led forces in neighboring Afghanistan .\tNNP VBZ VBN DT NN JJ TO VBG NNS TO NNP CC JJ NNS IN VBG NNP .\nLocal officials say Pakistani security forces escorted a convoy of about 30 food trucks and oil tankers through the Khyber Pass Monday .\tJJ NNS VBP JJ NN NNS VBD DT NN IN IN CD NN NNS CC NN NNS IN DT NNP NNP NNP .\nPakistan closed the route last week after gunmen hijacked about 15 supply trucks destined for Afghanistan .\tNNP VBD DT NN JJ NN IN NNS VBD IN CD NN NNS VBN IN NNP .\nSecurity along the countries ' mountainous border is a major concern for U.S.-led troops fighting Taliban and al-Qaida militants in Afghanistan .\tNN IN DT NNS POS JJ NN VBZ DT JJ NN IN JJ NNS VBG NNP CC NNP NNS IN NNP .\nThe Chinese state news agency says 21 miners were killed in a mine explosion in southwestern China last week .\tDT JJ NN NN NN VBZ CD NNS VBD VBN IN DT NN NN IN JJ NNP JJ NN .\nThe accident happened Thursday at a small mine in Panzhihua , in Sichuan province .\tDT NN VBD NNP IN DT JJ NN IN NNP , IN NNP NN .\nXinhua news agency says 10 miners survived the disaster .\tNNP NN NN VBZ CD NNS VBD DT NN .\nIt says a preliminary investigation found the blast was caused by poor management practices .\tPRP VBZ DT JJ NN VBD DT NN VBD VBN IN JJ NN NNS .\nIt did not explain the delay in reporting the blast .\tPRP VBD RB VB DT NN IN VBG DT NN .\nChina has the deadliest mines in the world , despite government efforts to improve safety .\tNNP VBZ DT JJS NNS IN DT NN , IN NN NNS TO VB NN .\nMore than 1,000 miners have been killed this year .\tJJR IN CD NNS VBP VBN VBN DT NN .\nMine producers ignore safety regulations to fulfill soaring energy demands brought on by China 's booming economy .\tNNP NNS VBP NN NNS TO VB VBG NN NNS VBN RP IN NNP POS JJ NN .\nJordanian officials say King Abdullah has ordered his ambassador to return to Iraq one day after the envoy was recalled .\tJJ NNS VBP NNP NNP VBZ VBN PRP$ NN TO VB TO NNP CD NN IN DT NN VBD VBN .\nOn Sunday , in a diplomatic tit-for-tat Iraq and Jordan both recalled their top diplomats .\tIN NNP , IN DT JJ NN NNP CC NNP DT VBD PRP$ JJ NNS .\nJordan called its ambassador to Iraq home for consultations after Iraqis , protesting a deadly bombing south of Baghdad , raised the Iraqi flag over the Jordanian embassy .\tNNP VBD PRP$ NN TO NNP NN IN NNS IN NNS , VBG DT JJ NN NN IN NNP , VBD DT JJ NN IN DT JJ NN .\nThe protesters gathered at the embassy after news reports said the suicide bomber was a Jordanian national .\tDT NNS VBN IN DT NN IN NN NNS VBD DT NN NN VBD DT JJ NN .\nHours after the Jordanian recall Iraqi brought home its ambassador to Jordan for consultations .\tNNS IN DT JJ NN JJ VBD NN PRP$ NN TO NNP IN NNS .\nMeanwhile , a car bomb attack in Samarra wounded 10 people Monday and a U.S. soldier was killed in an insurgent attack in Kirkuk .\tRB , DT NN NN NN IN NNP VBD CD NNS NNP CC DT NNP NN VBD VBN IN DT JJ NN IN NNP .\nOn Sunday , coalition soldiers killed 24 insurgents who attacked a coalition convoy outside Baghdad .\tIN NNP , NN NNS VBD CD NNS WP VBD DT NN NN IN NNP .\nA Rwandan businessman has been found guilty for his role in destroying a church where 2,000 Tutsis had sought shelter during Rwanda 's 1994 genocide .\tDT JJ NN VBZ VBN VBN JJ IN PRP$ NN IN VBG DT NN WRB CD NNP VBD VBN NN IN NNP POS CD NN .\nThe International Criminal Tribunal for Rwanda on Monday sentenced Gaspard Kanyarukiga to 30 years in prison .\tDT NNP NNP NNP IN NNP IN NNP VBD NNP NNP TO CD NNS IN NN .\nIt was not immediately clear if he will appeal .\tPRP VBD RB RB JJ IN PRP MD VB .\nProsecutors argued during his trial that Kanyarukiga ordered the bulldozing of the church with the Tutsis inside .\tNNS VBD IN PRP$ NN IN NNP VBD DT NN IN DT NN IN DT NNP NN .\nKanyarukiga is the second person to be sentenced by the court in connection with the massacre at Nyange church .\tNNP VBZ DT JJ NN TO VB VBN IN DT NN IN NN IN DT NN IN NNP NN .\nThe church 's priest was sentenced to life in prison in 2008 .\tDT NN POS NN VBD VBN TO NN IN NN IN CD .\nHutu extremists killed an estimated 8,00,000 ethnic Tutsis and moderate Hutus during the genocide .\tNNP NNS VBD DT VBN CD JJ NN CC JJ NN IN DT NN .\nThe U.N. tribunal , operating out of the Tanzanian town of Arusha , was set up to prosecute those most responsible for organizing the killings .\tDT NNP NN , VBG IN IN DT JJ NN IN NNP , VBD VBN RP TO VB DT RBS JJ IN VBG DT NNS .\nXerox Corp. has told employees in its Crum & Forster personal insurance operations that it is laying off about 300 people , or 25 % of the staff .\tNNP NNP VBZ VBN NNS IN PRP$ NNP CC NNP JJ NN NNS IN PRP VBZ VBG RP IN CD NNS , CC CD NN IN DT NN .\nA spokeswoman for Crum & Forster said employees were told early this week that numerous staff functions for the personal insurance lines were going to be centralized as a cost-cutting move .\tDT NN IN NNP CC NNP VBD NNS VBD VBN RB DT NN IN JJ NN NNS IN DT JJ NN NNS VBD VBG TO VB VBN IN DT JJ NN .\nShe said the move would result in a after-tax charge of less than $ 4 million to be spread over the next three quarters .\tPRP VBD DT NN MD VB IN DT JJ NN IN JJR IN $ CD CD TO VB VBN IN DT JJ CD NNS .\nBy comparison , for the first nine months , Xerox earned $ 492 million , or $ 4.55 a share , on revenue of $ 12.97 billion .\tIN NN , IN DT JJ CD NNS , NNP VBD $ CD CD , CC $ CD DT NN , IN NN IN $ CD CD .\nEarnings at Xerox 's financial-services operations actually rose slightly , but that was largely because capital gains at Crum & Forster offset Hurricane Hugo payments and the reserves set up to cover future payments .\tNNS IN NNP POS JJ NNS RB VBD RB , CC DT VBD RB IN NN NNS IN NNP CC NNP VBD NNP NNP NNS CC DT NNS VBN RP TO VB JJ NNS .\nProperty / casualty insurance has been a tough business in recent quarters , as pricing has been cutthroat and natural disasters such as Hurricane Hugo and the California earthquake have resulted in huge payments .\tNN CC NN NN VBZ VBN DT JJ NN IN JJ NNS , IN NN VBZ VBN JJ CC JJ NNS JJ IN NNP NNP CC DT NNP NN VBP VBN IN JJ NNS .\nGreat Britain formally acquired possession of Malta in 1814 .\tNNP NNP RB VBD NN IN NNP IN CD .\nThe island staunchly supported the UK through both world wars and remained in the Commonwealth when it became independent in 1964 .\tDT NN RB VBD DT NNP IN DT NN NNS CC VBD IN DT NNP WRB PRP VBD JJ IN CD .\nA decade later Malta became a republic .\tDT NN RB NNP VBD DT NN .\nSince about the mid-1980s , the island has transformed itself into a freight transshipment point , a financial center , and a tourist destination .\tIN IN DT NNS , DT NN VBZ VBN PRP IN DT NN NN NN , DT JJ NN , CC DT NN NN .\nMalta became an EU member in May 2004 and began using the euro as currency in 2008 .\tNNP VBD DT NNP NN IN NNP CD CC VBD VBG DT NN IN NN IN CD .\nIn 1979 the Federated States of Micronesia , a UN Trust Territory under US administration , adopted a constitution .\tIN CD DT NNP NNPS IN NNP , DT NNP NNP NNP IN NNP NN , VBD DT NN .\nIn 1986 independence was attained under a Compact of Free Association with the US , which was amended and renewed in 2004 .\tIN CD NN VBD VBN IN DT NN IN NNP NNP IN DT NNP , WDT VBD VBN CC VBN IN CD .\nPresent concerns include large-scale unemployment , overfishing , and overdependence on US aid .\tJJ NNS VBP JJ NN , VBG , CC NN IN NNP NN .\nPitcairn Island was discovered in 1767 by the British and settled in 1790 by the Bounty mutineers and their Tahitian companions .\tNNP NNP VBD VBN IN CD IN DT NNS CC VBN IN CD IN DT NNP NNS CC PRP$ JJ NNS .\nPitcairn was the first Pacific island to become a British colony ( in 1838 ) and today remains the last vestige of that empire in the South Pacific .\tNNP VBD DT JJ NNP NN TO VB DT JJ NN LRB IN CD RRB CC NN VBZ DT JJ NN IN DT NN IN DT NNP NNP .\nOutmigration , primarily to New Zealand , has thinned the population from a peak of 233 in 1937 to less than 50 today .\tNN , RB TO NNP NNP , VBZ VBN DT NN IN DT NN IN CD IN CD TO JJR IN CD NN .\nBy terms of the 1960 Treaty of Establishment that created the independent Republic of Cyprus , the UK retained full sovereignty and jurisdiction over two areas of almost 254 square kilometers - Akrotiri and Dhekelia .\tIN NNS IN DT CD NNP IN NNP WDT VBD DT JJ NNP IN NNP , DT NNP VBD JJ NN CC NN IN CD NNS IN RB CD NN NNS IN NNP CC NNP .\nThe southernmost and smallest of these is the Akrotiri Sovereign Base Area , which is also referred to as the Western Sovereign Base Area .\tDT JJS CC JJS IN DT VBZ DT NNP NNP NNP NNP , WDT VBZ RB VBN TO IN DT NNP NNP NNP NNP .\nFiji became independent in 1970 after nearly a century as a British colony .\tNNP VBD JJ IN CD IN RB DT NN IN DT JJ NN .\nDemocratic rule was interrupted by two military coups in 1987 caused by concern over a government perceived as dominated by the Indian community ( descendants of contract laborers brought to the islands by the British in the 19th century ) .\tJJ NN VBD VBN IN CD JJ NNS IN CD VBN IN NN IN DT NN VBN IN VBN IN DT JJ NN LRB NNS IN NN NNS VBN TO DT NNS IN DT NNS IN DT JJ NN RRB .\nThe coups and a 1990 constitution that cemented native Melanesian control of Fiji led to heavy Indian emigration ; the population loss resulted in economic difficulties , but ensured that Melanesians became the majority .\tDT NNS CC DT CD NN WDT VBD JJ JJ NN IN NNP VBD TO JJ JJ NN ; DT NN NN VBD IN JJ NNS , CC VBD IN NNS VBD DT NN .\nA new constitution enacted in 1997 was more equitable .\tDT JJ NN VBN IN CD VBD JJR JJ .\nFree and peaceful elections in 1999 resulted in a government led by an Indo-Fijian , but a civilian-led coup in May 2000 ushered in a prolonged period of political turmoil .\tNNP CC JJ NNS IN CD VBD IN DT NN VBN IN DT JJ , CC DT JJ NN IN NNP CD VBD IN DT JJ NN IN JJ NN .\nParliamentary elections held in August 2001 provided Fiji with a democratically elected government led by Prime Minister Laisenia QARASE .\tJJ NNS VBN IN NNP CD VBD NNP IN DT RB VBN NN VBN IN NNP NNP NNP NNP .\nRe-elected in May 2006 , QARASE was ousted in a December 2006 military coup led by Commodore Voreqe BAINIMARAMA , who initially appointed himself acting president but in January 2007 became interim prime minister .\tVBN IN NNP CD , NNP VBD VBN IN DT NNP CD JJ NN VBN IN NNP NNP NNP , WP RB VBD PRP VBG NN CC IN NNP CD VBD JJ JJ NN .\nSince taking power BAINIMARAMA has neutralized his opponents , crippled Fiji 's democratic institutions , and refused to hold elections .\tIN VBG NN NNP VBZ VBN PRP$ NNS , VBD NNP POS JJ NNS , CC VBD TO VB NNS .\nMilitary regimes favoring Islamic-oriented governments have dominated national politics since independence from the UK in 1956 .\tJJ NNS VBG JJ NNS VBP VBN JJ NNS IN NN IN DT NNP IN CD .\nSudan was embroiled in two prolonged civil wars during most of the remainder of the 20th century .\tNNP VBD VBN IN CD JJ JJ NNS IN JJS IN DT NN IN DT JJ NN .\nThese conflicts were rooted in northern economic , political , and social domination of largely non-Muslim , non-Arab southern Sudanese .\tDT NNS VBD VBN IN JJ JJ , JJ , CC JJ NN IN RB JJ , JJ JJ NNS .\nThe first civil war ended in 1972 but broke out again in 1983 .\tDT JJ JJ NN VBN IN CD CC VBD RP RB IN CD .\nThe second war and famine-related effects resulted in more than four million people displaced and , according to rebel estimates , more than two million deaths over a period of two decades .\tDT JJ NN CC JJ NNS VBD IN JJR IN CD CD NNS JJ CC , VBG TO JJ NNS , JJR IN CD CD NNS IN DT NN IN CD NNS .\nPeace talks gained momentum in 2002 - 4 with the signing of several accords .\tNNP NNS VBD NN IN CD : CD IN DT NN IN JJ NNS .\nThe final North / South Comprehensive Peace Agreement ( CPA ) , signed in January 2005 , granted the southern rebels autonomy for six years followed by a referendum on independence for Southern Sudan .\tDT JJ NNP NNP NNP NNP NNP NNP LRB NNP RRB , VBN IN NNP CD , VBD DT JJ NNS NN IN CD NNS VBN IN DT NN IN NN IN NNP NNP .\nThe referendum was held in January 2011 and indicated overwhelming support for independence .\tDT NN VBD VBN IN NNP CD CC VBD JJ NN IN NN .\nA separate conflict , which broke out in the western region of Darfur in 2003 , has displaced nearly two million people and caused an estimated 2,00,000 to 4,00,000 deaths .\tDT JJ NN , WDT VBD RP IN DT JJ NN IN NNP IN CD , VBZ VBN RB CD CD NNS CC VBD DT JJ CD TO CD NNS .\nThe UN took command of the Darfur peacekeeping operation from the African Union in December 2007 .\tDT NNP VBD NN IN DT NNP NN NN IN DT NNP NNP IN NNP CD .\nPeacekeeping troops have struggled to stabilize the situation , which has become increasingly regional in scope and has brought instability to eastern Chad .\tVBG NNS VBP VBN TO VB DT NN , WDT VBZ VBN RB JJ IN NN CC VBZ VBN NN TO JJ NNP .\nSudan also has faced large refugee influxes from neighboring countries primarily Ethiopia and Chad .\tNNP RB VBZ VBN JJ NN NNS IN VBG NNS RB NNP CC NNP .\nArmed conflict , poor transport infrastructure , and lack of government support have chronically obstructed the provision of humanitarian assistance to affected populations .\tJJ NN , JJ NN NN , CC NN IN NN NN VBP RB VBN DT NN IN JJ NN TO JJ NNS .\nA FOX entered into partnership with a Lion on the pretense of becoming his servant .\tDT NN VBD IN NN IN DT NN IN DT NN IN VBG PRP$ NN .\nEach undertook his proper duty in accordance with his own nature and powers .\tDT NN PRP$ JJ NN IN NN IN PRP$ JJ NN CC NNS .\nThe Fox discovered and pointed out the prey ; the Lion sprang on it and seized it .\tDT NN VBD CC VBD RP DT NN ; DT NNP NN IN PRP CC VBD PRP .\nThe Fox soon became jealous of the Lion carrying off the Lion 's share , and said that he would no longer find out the prey , but would capture it on his own account .\tDT NN RB VBD JJ IN DT NNP VBG RP DT NN POS NN , CC VBD IN PRP MD RB RB VB RP DT NN , CC MD VB PRP IN PRP$ JJ NN .\nThe next day he attempted to snatch a lamb from the fold , but he himself fell prey to the huntsmen and hounds .\tDT JJ NN PRP VBD TO VB DT NN IN DT NN , CC PRP PRP VBD NN TO DT NNS CC NNS .\nIt is difficult to trust anyone whose instrument changes shape as he plays it !\tPRP VBZ JJ TO VB DT WP$ NN VBZ NN IN PRP VBZ PRP .\nTwo brawny men came to my house to install some new floor covering in the kitchen .\tCD JJ NNS VBD TO PRP$ NN TO VB DT JJ NN VBG IN DT NN .\nOnce they had moved the stove and refrigerator out of the way , it was not long before the job was done .\tRB PRP VBD VBN DT NN CC NN IN IN DT NN , PRP VBD RB RB IN DT NN VBD VBN .\nAs they were getting ready to leave , I asked them to put the heavy appliances back in place .\tIN PRP VBD VBG JJ TO VB , PRP VBD PRP TO VB DT JJ NNS RB IN NN .\nThe two men demanded $ 45 for this service , stating it was not in their contract .\tDT CD NNS VBD $ CD IN DT NN , VBG PRP VBD RB IN PRP$ NN .\nI really had no choice but to pay them .\tPRP RB VBD DT NN CC TO VB PRP .\nAs soon as they left , however , the doorbell rang .\tRB RB IN PRP VBD , RB , DT NN NN .\nIt was the two men .\tPRP VBD DT CD NNS .\nThey asked me to move my car , which was blocking their van .\tPRP VBD PRP TO VB PRP$ NN , WDT VBD VBG PRP$ NN .\nI told them my fee : $ 45 .\tPRP VBD PRP PRP$ NN IN $ CD .\nThe US Gulf Coast city of New Orleans escaped a major disaster this week when Hurricane Gustav hit shore some 110 kilometers southwest of the legendary city .\tDT NNP NNP NNP NN IN NNP NNP VBD DT JJ NN DT NN WRB NNP NNP VBD NN DT CD NNS JJS IN DT JJ NN .\nThree years ago , New Orleans was devastated by Hurricane Katrina .\tCD NNS RB , NNP NNP VBD VBN IN NNP NNP .\nVOA 's Barry Wood reports the city is cleaning up from a storm that could have been much worse .\tNNP POS NNP NNP VBZ DT NN VBZ VBG RP IN DT NN WDT MD VB VBN RB JJR .\nA delegation of Taiwan 's main opposition party visiting mainland China has paid tribute to a group of Chinese revolutionaries .\tDT NN IN NNP POS JJ NN NN VBG JJ NNP VBZ VBN NN TO DT NN IN JJ NNS .\nChiang Pin-kung , the vice chairman of the Nationalist Party , laid a wreath Tuesday at a shrine in the southern city of Guangzhou honoring 72 revolutionaries killed in the effort to overthrow China 's last imperial dynasty in 1911 .\tNNP NNP , DT NN NN IN DT NNP NNP , VBD DT NN NNP IN DT NN IN DT JJ NN IN NNP VBG CD NNS VBN IN DT NN TO VB NNP POS JJ JJ NN IN CD .\nThe visit by the Nationalist Party delegation comes days after a mass protest was held in Taiwan against Beijing 's new anti-secession law , which authorizes the use of force if Taiwan declares its independence from the mainland .\tDT NN IN DT NNP NNP NN VBZ NNS IN DT NN NN VBD VBN IN NNP IN NNP POS JJ JJ NN , WDT VBZ DT NN IN NN IN NNP VBZ PRP$ NN IN DT NN .\nOfficial Chinese media have hailed the delegation 's visit as a step toward easing tensions between the mainland and Taiwan .\tNNP JJ NNS VBP VBN DT NN POS NN IN DT NN IN VBG NNS IN DT NNP CC NNP .\nThe Nationalists ruled mainland China until 1949 , when they lost a civil war to Mao Zedong 's communist forces .\tDT NNPS VBD JJ NNP IN CD , WRB PRP VBD DT JJ NN TO NNP NNP POS JJ NNS .\nA former Egyptian militant says Iran has secretly handed over to Cairo the alleged mastermind of a failed 1995 assassination attempt on Egyptian President Hosni Mubarak .\tDT JJ JJ NN VBZ NNP VBZ RB VBN IN TO NNP DT JJ NN IN DT JJ CD NN NN IN JJ NNP NNP NNP .\nHani el-Sibaie , who now runs an Islamic center in London , said he has been told that Iran returned militant Moustafa Hamza to Egypt in October .\tNNP NNP , WP RB VBZ DT JJ NN IN NNP , VBD PRP VBZ VBN VBN IN NNP VBD JJ NNP NNP TO VB IN NNP .\nThe fugitive is facing three deaths sentences imposed by Cairo since 1992 in absentia .\tDT NN VBZ VBG CD NNS NNS VBN IN NNP IN CD IN NN .\nNeither Egypt nor Iran has publicly commented on Sunday 's reports .\tCC NNP CC NNP VBZ RB VBN IN NNP POS NNS .\nHamza 's group renounced violence in 1997 and two years later ended all attacks inside and outside of Egypt .\tNNP POS NN VBD NN IN CD CC CD NNS RB VBD DT NNS IN CC IN IN NNP .\nHe has lived abroad for years .\tPRP VBZ VBN RB IN NNS .\nA senior Chinese official says the current dispute with U.S.-based Internet giant Google should not be ' over-interpreted ' as a sign of Beijing 's relationship with Washington .\tDT JJ JJ NN VBZ DT JJ NN IN JJ NN NN NNP MD RB VB `` JJ `` IN DT NN IN NNP POS NN IN NNP .\nState-run Xinhua news agency says Vice Foreign Minister He Yafei made the remarks Thursday in Beijing .\tNNP NNP NN NN VBZ NNP NNP NNP PRP NNP VBD DT NNS NNP IN NNP .\nGoogle announced last week that may end its operations in China due to censorship concerns , and a cyber attack targeting the Google-based e-mail accounts of Chinese human rights activists .\tNNP VBD JJ NN WDT MD VB PRP$ NNS IN NNP JJ TO NN NNS , CC DT NN NN VBG DT JJ JJ NNS IN JJ JJ NNS NNS .\nChina says it does not condone cyber attacks , but added that all foreign companies , including Google , must comply with all local laws , regulations and customs , including government controls over the Internet .\tNNP VBZ PRP VBZ RB VB NN NNS , CC VBD IN DT JJ NNS , VBG NNP , MD VB IN DT JJ NNS , NNS CC NNS , VBG NN NNS IN DT NNP .\nU.S. Secretary of State Hillary Clinton will unveil the the Obama administration 's policies towards Internet freedom during a speech Thursday in Washington .\tNNP NNP IN NNP NNP NNP MD VB DT DT NNP NN POS NNS IN NNP NN IN DT NN NNP IN NNP .\nAt least 20 people have been killed in two attacks in Baghdad .\tIN JJS CD NNS VBP VBN VBN IN CD NNS IN NNP .\nIraqi authorities say insurgents stormed a police station in the western Amil district early Friday , killing six policemen .\tJJ NNS VBP NNS VBD DT NN NN IN DT JJ NNP NN RB NNP , VBG CD NNS .\nLater in the day , 14 people were killed and 19 injured by a car bomb that exploded outside a mosque in the northern district of al-Adamiya .\tRB IN DT NN , CD NNS VBD VBN CC CD VBN IN DT NN NN WDT VBD IN DT NN IN DT JJ NN IN NNP .\nThe attacks were the latest by insurgents fighting the U.S. led coalition and security forces of the interim Iraqi government .\tDT NNS VBD DT JJS IN NNS VBG DT NNP VBD NN CC NN NNS IN DT JJ JJ NN .\nPresident Bush says Iraq should stick to plans to hold elections in January , despite calls by some Iraqi politicians for a delay until security improves .\tNNP NNP VBZ NNP MD VB TO NNS TO VB NNS IN NNP , IN NNS IN DT JJ NNS IN DT NN IN NN VBZ .\nOn Thursday , U.S. Defense Secretary Donald Rumsfeld acknowledged America failed to anticipate the strength of the Iraqi insurgency after the fall of Saddam Hussein .\tIN NNP , NNP NNP NNP NNP NNP VBD NNP VBD TO VB DT NN IN DT JJ NN IN DT NN IN NNP NNP .\nNigerian government officials say former Liberian leader and war crimes suspect Charles Taylor has disappeared from the house where he was living in exile in Nigeria .\tJJ NN NNS VBP JJ JJ NN CC NN NNS VBP NNP NNP VBZ VBN IN DT NN WRB PRP VBD VBG IN NN IN NNP .\nThey say Taylor left his villa in the southern town of Calabar Monday night .\tPRP VBP NNP VBD PRP$ NN IN DT JJ NN IN NNP NNP NN .\nHis disappearance came just after the Nigerian government said they were willing to allow Liberia to arrest Taylor .\tPRP$ NN VBD RB IN DT JJ NN VBD PRP VBD JJ TO VB NNP TO VB NNP .\nThe United Nations war crimes tribunal for Sierra Leone had asked for his arrest on charges of rape and torture related to his rule in Liberia and a civil war in neighboring Sierra Leone .\tDT NNP NNPS NN NNS JJ IN NNP NNP VBD VBN IN PRP$ NN IN NNS IN NN CC NN VBN TO PRP$ NN IN NNP CC DT JJ NN IN VBG NNP NNP .\nLocal officials said 22 Taliban insurgents have been killed in fighting in southern Afghanistan .\tJJ NNS VBD CD NNP NNS VBP VBN VBN IN VBG IN JJ NNP .\nOfficials said NATO airstrikes and Afghan security forces attacked the group of militants Friday in Helmand province .\tNNS VBD NNP NNS CC JJ NN NNS VBD DT NN IN NNS NNP IN NNP NN .\nThey said several local Taliban commanders were among the dead .\tPRP VBD JJ JJ NNP NNS VBD IN DT NN .\nThe clash took place near the province 's main city , Lashkar Gah .\tDT NN VBD NN IN DT NN POS JJ NN , NNP NNP .\nEarlier in the same province , the British defense ministry said a roadside bomb blast killed a British Royal Marine .\tRBR IN DT JJ NN , DT JJ NN NN VBD DT NN NN NN VBD DT JJ NNP NNP .\nNATO said the man was part of the NATO-led international force battling insurgents in Afghanistan .\tNNP VBD DT NN VBD NN IN DT JJ JJ NN VBG NNS IN NNP .\nTwo other NATO soldiers were killed in fighting in the east .\tCD JJ NNP NNS VBD VBN IN VBG IN DT NN .\nA spokesman for the force said they came under direct fire while under patrol .\tDT NN IN DT NN VBD PRP VBD IN JJ NN IN IN NN .\nTheir identities and nationalities were not immediately released .\tPRP$ NNS CC NNS VBD RB RB VBN .\nTwo American journalists have been reunited with their families after being released from detention in North Korea .\tCD JJ NNS VBP VBN VBN IN PRP$ NNS IN VBG VBN IN NN IN NNP NNP .\nThe two were freed after a diplomatic trip to Pyongyang by former president Bill Clinton .\tDT CD VBD VBN IN DT JJ NN TO NNP IN JJ NN NNP NNP .\nIn an interview with VOA Senior Correspondent Andre de Nesnera , former U.S. Ambassador to the United Nations John Bolton talks about Bill Clinton 's trip and the issue of North Korea's nuclear ambitions .\tIN DT NN IN NNP NNP NNP NNP NNP NNP , JJ NNP NN TO DT NNP NNP NNP NNP NNS IN NNP NNP POS NN CC DT NN IN NNP NNP JJ NNS .\nReport says consequences to human health from environmental degradation will grow significantly worse in next 50 years\tNNP VBZ NNS TO JJ NN IN JJ NN MD VB RB JJR IN JJ CD NNS\nThe World Health Organization ( WHO ) says the decline of the global ecosystem poses a serious threat to human health .\tDT NNP NNP NNP LRB NNP RRB VBZ DT NN IN DT JJ NN VBZ DT JJ NN TO JJ NN .\nIn a WHO report published Friday , scientists warn that pressures on the environment could have unpredictable and potentially severe impacts on health .\tIN DT NNP NN VBN NNP , NNS VBP IN NNS IN DT NN MD VB JJ CC RB JJ NNS IN NN .\nIt says more than one billion people lack access to safe water supplies , while more than two billion lack adequate sanitation , due in part to ecosystem depletion and contamination .\tPRP VBZ JJR IN CD CD NNS VBP NN TO JJ NN NNS , IN JJR IN CD CD NN JJ NN , JJ IN NN TO VB NN CC NN .\nThe report says consequences to human health from environmental degradation will grow significantly worse in the next 50 years .\tDT NN VBZ NNS TO JJ NN IN JJ NN MD VB RB JJR IN DT JJ CD NNS .\nThe report says poor populations dependent on natural ecosystems for basic needs face the greatest risk of health problems .\tDT NN VBZ JJ NNS JJ IN JJ NNS IN JJ NNS VBP DT JJS NN IN NN NNS .\nRegions of concern include sub-Saharan Africa , Central Asia , parts of Latin America , and areas in South and Southeast Asia .\tNNS IN NN VBP JJ NNP , NNP NNP , NNS IN NNP NNP , CC NNS IN NNP CC NNP NNP .\nTop seed Maria Sharapova of Russia has withdrawn from the semifinals of the China Open tennis tournament in Beijing , giving countrywoman Maria Kirilenko a slot in the final .\tJJ NN NNP NNP IN NNP VBZ VBN IN DT NNS IN DT NNP NNP NN NN IN NNP , VBG NN NNP NNP DT NN IN DT JJ .\nSharapova was trailing , 06-Apr , 02-Jan , when she pulled out because of an injury to her right pectoral muscle .\tNNP VBD VBG , CD , CD , WRB PRP VBD RP IN IN DT NN TO PRP$ JJ JJ NN .\nThe crowd booed when the top-seeded Russian retired from the semifinal .\tDT NN VBD WRB DT JJ JJ VBN IN DT NN .\nIn Sunday 's final , Kirilenko faces Germany 's Anna-Lena Groenefeld , a straight-set winner over Marta Domachowska of Poland 07-May , 06-Apr .\tIN NNP POS JJ , NNP VBZ NNP POS NNP NNP , DT JJ NN IN NNP NNP IN NNP CD , CD .\nSharapova is the latest of several players to withdraw because of injury .\tNNP VBZ DT JJS IN JJ NNS TO VB IN IN NN .\nWorld number two Lindsay Davenport of the United States pulled out of the tournament before it started because of back trouble .\tNN NN CD NNP NNP IN DT NNP NNPS VBD IN IN DT NN IN PRP VBD IN IN RB NN .\nVenus Williams of the United States withdrew from her quarterfinal match Friday because of a knee problem .\tNNP NNP IN DT NNP NNPS VBD IN PRP$ JJ NN NNP IN IN DT NN NN .\nThe Pacific Ocean was so named for its seemingly peaceful character , but unusually high waves pounded the California coastline Thursday .\tDT NNP NNP VBD RB VBN IN PRP$ RB JJ NN , CC RB JJ NNS VBD DT NNP NN NNP .\nThe waves rose up to five and one half meters in some places , but most were in the two-meter range .\tDT NNS VBD RP TO CD CC CD NN NNS IN DT NNS , CC JJS VBD IN DT JJ NN .\nA strong storm in the North Pacific Ocean that started out in the Gulf of Alaska generated the waves .\tDT JJ NN IN DT NNP NNP NNP WDT VBD RP IN DT NNP IN NNP VBD DT NNS .\nThese high waves happen occasionally on the California coast and usually do n't harm coastline structures .\tDT JJ NNS VBP RB IN DT NNP NN CC RB VBP RB VB JJ NNS .\nSome beachside communities built sand berms to help protect their property .\tDT NN NNS VBN NN NNS TO VB VB PRP$ NN .\nBut for the many California surfboard riders it is an exciting opportunity that only happens a couple of times each year .\tCC IN DT JJ NNP NN NNS PRP VBZ DT JJ NN WDT RB VBZ DT NN IN NNS DT NN .\nCoastline authorities and experienced surfers emphasize that only highly skilled surfers should enter the water in these extreme conditions .\tNNP NNS CC JJ NNS VBP IN RB RB JJ NNS MD VB DT NN IN DT JJ NNS .\nThe large swells are expected to fade soon .\tDT JJ NNS VBP VBN TO VB RB .\nA published report says the United States has ended its hunt for biological , chemical and nuclear weapons in Iraq , several months after inspectors concluded that Baghdad did not possess banned weapons at the time of the U.S.-led invasion .\tDT JJ NN VBZ DT NNP NNPS VBZ VBN PRP$ NN IN JJ , NN CC JJ NNS IN NNP , JJ NNS IN NNS VBD IN NNP VBD RB VB VBN NNS IN DT NN IN DT JJ NN .\nThe Washington Post reports Wednesday that chief U.S. weapons inspector Charles Duelfer wrapped up his work in Iraq last month .\tDT NNP NNP NNS NNP IN JJ NNP NNS NN NNP NNP VBD RP PRP$ NN IN NNP JJ NN .\nThe newspaper quotes unnamed intelligence officials as saying the hunt was called off because of a lack of new information and the ongoing violence in Iraq .\tDT NN VBZ JJ NN NNS IN VBG DT NN VBD VBN RP IN IN DT NN IN JJ NN CC DT JJ NN IN NNP .\nOne official said there will not be any substantial changes to Mr. Duelfer 's final report , which was presented to Congress last September .\tCD NN VBD EX MD RB VB DT JJ NNS TO NNP NNP POS JJ NN , WDT VBD VBN TO NNP JJ NNP .\nThe report concluded that former Iraqi leader Saddam Hussein did not posses illicit weapons prior to the 2002 invasion .\tDT NN VBD IN JJ JJ NN NNP NNP VBD RB VB JJ NNS RB TO DT CD NN .\nPresident Bush cited Iraq 's alleged stockpiles of banned weapons as a key reason for going to war .\tNNP NNP VBD NNP POS JJ NNS IN VBN NNS IN DT JJ NN IN VBG TO NN .\nIran says it has postponed further talks with Russia about a proposal to process uranium on Russian soil for use in Iran 's nuclear plants .\tNNP VBZ PRP VBZ VBN JJ NNS IN NNP IN DT NN TO VB NN IN JJ NN IN NN IN NNP POS JJ NNS .\nGovernment spokesman Gholamhossein Elham told reporters in Tehran Monday the two sides will not meet late this week , as scheduled , but that a mutually convenient date will be set later .\tNNP NN NNP NNP VBD NNS IN NNP NNP DT CD NNS MD RB VB RB DT NN , IN VBN , CC IN DT RB JJ NN MD VB VBN RB .\nRussia has been pushing for the plan as a way to ease international concerns that Iran might be aiming to produce weapons-grade uranium .\tNNP VBZ VBN VBG IN DT NN IN DT NN TO VB JJ NNS IN NNP MD VB VBG TO VB JJ NN .\nIran says its nuclear program is only intended to generate electricity .\tNNP VBZ PRP$ JJ NN VBZ RB VBN TO VB NN .\nSpeaking on Sunday , U.S. Secretary of State Condoleezza Rice said a coalition of countries , including all members of the United Nations Security Council , are determined to prevent Iran from developing nuclear weapons .\tVBG IN NNP , NNP NNP IN NNP NNP NNP VBD DT NN IN NNS , VBG DT NNS IN DT NNP NNP NNP NNP , VBP VBN TO VB NNP IN VBG JJ NNS .\nA U.S. federal judge has ruled that military tribunals for prisoners at the U.S. base at Guantanamo Bay , Cuba , are unconstitutional .\tDT NNP JJ NN VBZ VBN IN JJ NNS IN NNS IN DT NNP NN IN NNP NNP , NNP , VBP JJ .\nIn a setback for the Bush administration , a U.S. district judge in Washington D.C. also ruled that the Guantanamo detainees have constitutional protections under the law .\tIN DT NN IN DT NNP NN , DT NNP NN NN IN NNP NNP RB VBD IN DT NNP NNS VBP JJ NNS IN DT NN .\nAn attorney for the Bush administration had asked the judge to throw out the prisoners ' challenges , saying their fate should be left to the military .\tDT NN IN DT NNP NN VBD VBN DT NN TO VB RP DT NNS POS NNS , VBG PRP$ NN MD VB VBN TO DT NN .\nThe military tribunals have been criticized by human rights groups as fundamentally unfair to defendants .\tDT JJ NNS VBP VBN VBN IN JJ NNS NNS IN RB JJ TO NNS .\nMonday 's ruling will probably not final .\tNNP POS NN MD RB RB JJ .\nSeveral lawsuits by Guantanamo prisoners could go to U.S. appeals courts and then to the Supreme Court .\tJJ NNS IN NNP NNS MD VB TO NNP NNS NNS CC RB TO DT NNP NNP .\nMore than 540 terrorism suspects are being held as enemy combatants at the U.S. naval base .\tJJR IN CD NN NNS VBP VBG VBN IN NN NNS IN DT NNP JJ NN .\nMost of them were captured in Afghanistan or Pakistan during the 2001 U.S.-led invasion to oust the Taleban .\tJJS IN PRP VBD VBN IN NNP CC NNP IN DT CD JJ NN TO VB DT NNP .\nWhile football players around the world are preparing for the 2006 World Cup in Germany , so are the referees who will oversee the games .\tIN NN NNS IN DT NN VBP VBG IN DT CD NNP NNP IN NNP , RB VBP DT NNS WP MD VB DT NNS .\nFIFA , the sport 's world governing body , says referees designated for the World Cup finals will start their build-up to the tournament 16 months before the opening kick-off .\tNNP , DT NN POS NN NN NN , VBZ NNS VBN IN DT NNP NNP NNS MD VB PRP$ NN TO DT NN CD NNS IN DT NN NN .\nA total of 46 international referees will attend the first workshop in Frankfurt between February 12 and 16 .\tDT NN IN CD JJ NNS MD VB DT JJ NN IN NNP IN NNP CD CC CD .\nThey will be subjected to a medical check-up and theoretical and practical training sessions while working on their physical fitness .\tPRP MD VB VBN TO DT JJ NN CC JJ CC JJ NN NNS IN VBG IN PRP$ JJ NN .\nThe final list of World Cup referees will be announced early next year .\tDT JJ NN IN NNP NNP NNS MD VB VBN RB JJ NN .\nFIFA president Sepp Blatter says the unique program will help identify , train and prepare the best match officials .\tNNP NN NNP NNP VBZ DT JJ NN MD VB VB , VB CC VB DT JJS NN NNS .\nYet another major carmaker is slashing jobs .\tRB DT JJ NN VBZ VBG NNS .\nThis time DaimlerChrysler is cutting 6000 positions to save more than $ 1 billion a year .\tDT NN NNP VBZ VBG CD NNS TO VB JJR IN $ CD CD DT NN .\nThe cuts trim one fifth of the company 's management and administrative workers over the next two years .\tDT NNS JJ CD NN IN DT NN POS NN CC JJ NNS IN DT JJ CD NNS .\nDaimler announced 8,500 production job cuts last year .\tNNP VBD CD NN NN NNS JJ NN .\nDaimlerChrysler 's cuts follow recent announcements by larger rivals Ford and General Motors that they are slashing tens of thousands of workers and closing two dozen factories and other facilities .\tNNP POS NNS VBP JJ NNS IN JJR NNS NNP CC NNP NNPS IN PRP VBP VBG NNS IN NNS IN NNS CC VBG CD NN NNS CC JJ NNS .\nDaimlerChrysler is the world 's fifth-largest carmaker , and it is based in Germany and the United States .\tNNP VBZ DT NN POS JJ NN , CC PRP VBZ VBN IN NNP CC DT NNP NNPS .\nIntensified competition from Asian automakers is forcing European and U.S. companies to slash costs and search for greater efficiency .\tVBN NN IN JJ NNS VBZ VBG JJ CC NNP NNS TO VB NNS CC NN IN JJR NN .\nAngola has imposed travel restrictions on people who have visited an area hit hard by an outbreak of the deadly Marburg virus .\tNNP VBZ VBN NN NNS IN NNS WP VBP VBN DT NN VBN RB IN DT NN IN DT JJ NNP NN .\nAngola 's deputy health minister , Jose Van Dunem , says anyone who has visited northern Uige province will not be allowed to leave the country for 21 days .\tNNP POS JJ NN NN , NNP NNP NNP , VBZ DT WP VBZ VBN JJ NNP NN MD RB VB VBN TO VB DT NN IN CD NNS .\nHe said the measure is necessary to stop the spread of the Marburg virus to neighboring countries .\tPRP VBD DT NN VBZ JJ TO VB DT NN IN DT NNP NN TO JJ NNS .\nHealth officials say the disease has killed at least 117 people , mostly children .\tNN NNS VBP DT NN VBZ VBN IN JJS CD NNS , RB NNS .\nAll of those who died contracted the disease in Uige .\tDT IN DT WP VBD VBD DT NN IN NNP .\nTwo deaths took place in Angola 's capital , Luanda .\tCD NNS VBD NN IN NNP POS NN , NNP .\nSeveral neighboring countries have put their health workers on alert for people showing symptoms of the disease .\tJJ JJ NNS VBP VBN PRP$ NN NNS IN NN IN NNS VBG NNS IN DT NN .\nMarburg virus , similar to the deadly Ebola virus , causes high fever , vomiting , and bloody discharges .\tNNP NN , JJ TO DT JJ NNP NN , VBZ JJ NN , VBG , CC JJ NNS .\nAngry crowds in several Indian cities burned pictures of Hollywood actor Richard Gere and Indian actress Shilpa Shetty after he publicly kissed her hand and cheeks at an AIDS awareness event .\tNNP NNS IN JJ JJ NNS VBD NNS IN NNP NN NNP NNP CC JJ NN NNP NNP IN PRP RB VBD PRP$ NN CC NNS IN DT NNP NN NN .\nDemonstrators say Gere 's kissing of Shetty goes against Indian culture .\tNNS VBP NNP POS NN IN NNP VBZ IN JJ NN .\nProtesters gathered Monday in at least three Indian cities - Mumbai , Varanasi , Meerut - where they chanted ' Down with Shilpa Shetty ' while burning pictures of the two actors .\tNNS VBD NNP IN IN JJS CD JJ NNS IN NNP , NNP , NNP : WRB PRP VBD `` VBN IN NNP NNP `` IN VBG NNS IN DT CD NNS .\nGere and Shetty appeared at a press conference Sunday in New Delhi to promote AIDS awareness among truck drivers in India .\tNNP CC NNP VBD IN DT NN NN NNP IN NNP NNP TO VB NNP NN IN NN NNS IN NNP .\nDuring the conference , Gere kissed Shetty on the hand and repeatedly on the cheeks in front of cheering crowds .\tIN DT NN , NNP VBD NNP IN DT NN CC RB IN DT NNS IN NN IN VBG NNS .\nThe space shuttle Endeavourhas undocked from the International Space Station after bringing equipment needed to expand its capacity from three to six people .\tDT NN NN NNP VBD IN DT NNP NNP NNP IN VBG NN VBN TO VB PRP$ NN IN CD CC CD NNS .\nThe shuttle left the orbiting outpost Friday with seven astronauts , and looped around the space station so the shuttle crew could photograph its exterior .\tDT NN VBD DT NN NN NNP IN CD NNS , CC VBD IN DT NN NN IN DT NN NN MD VB PRP$ NN .\nThe astronauts shared a Thanksgiving dinner Thursday with the three-person crew aboard the International Space Station before saying their goodbyes and sealing the hatches between the shuttle and the space station .\tDT NNS VBD DT NNP NN NNP IN DT JJ NN IN DT NNP NNP NNP IN VBG PRP$ NNS CC VBG DT NNS IN DT NN CC DT NN NN .\nThe shuttle is scheduled to arrive at the Kennedy Space Center in the southeastern U.S. state of Florida on Sunday .\tDT NN VBZ VBN TO VB IN DT NNP NNP NNP IN DT JJ NNP NN IN NNP IN NNP .\nAs part of the 16-day mission , the shuttle crew delivered and installed a new toilet , kitchen equipment , and water recycling system meant to allow the space station to double its crew capacity .\tIN NN IN DT JJ NN , DT NN NN VBN CC VBN DT JJ NN , NN NN , CC NN NN NN VBD TO VB DT NN NN TO VB PRP$ NN NN .\nThe U.S. dollar declined in value compared to other major currencies Tuesday .\tDT NNP NN VBD IN NN VBN TO JJ JJ NNS NNP .\nAt one point , the dollar bought a bit more than 104 yen and it took just over $ 1.32 to buy a euro .\tIN CD NN , DT NN VBD DT NN RBR IN CD NNS CC PRP VBD RB IN $ CD TO VB DT NN .\nThe drop followed reports that South Korea plans to switch more of its reserves from dollars to other currencies .\tDT NN VBD NNS IN NNP NNP VBZ TO VB JJR IN PRP$ NNS IN NNS TO JJ NNS .\nSouth Korea has the world 's fourth largest currency reserves , and they have traditionally been held largely in dollar-denominated investments .\tNNP NNP VBZ DT NN POS JJ JJS NN NNS , CC PRP VBP RB VBN VBN RB IN JJ NNS .\nSome analysts say they are watching central banks in Europe and the Middle East to see if they take similar action , which would further reduce demand for the dollar and weaken its value .\tDT NNS VBP PRP VBP VBG JJ NNS IN NNP CC DT NNP NNP TO VB IN PRP VBP JJ NN , WDT MD RB VB NN IN DT NN CC VB PRP$ NN .\nMedical researchers say a simple decision by expectant mothers can mean the difference between life and death for thousands of people .\tJJ NNS VBP DT JJ NN IN JJ NNS MD VB DT NN IN NN CC NN IN NNS IN NNS .\nBlood from umbilical cords has been used in life-saving transplants for people suffering from diseases such as leukemia .\tNNP IN JJ NNS VBZ VBN VBN IN JJ NNS IN NNS VBG IN NNS JJ IN NN .\nBut cord blood is in short supply .\tCC NN NN VBZ IN JJ NN .\nVOA 's Robert Raffaele has the story .\tNNP POS NNP NNP VBZ DT NN .\nThe World Health Organization says that while there have already been three deaths from bird flu in China this year , there are no signs the deadly disease is becoming a bigger problem .\tDT NNP NNP NNP VBZ IN IN EX VBP RB VBN CD NNS IN NN NN IN NNP DT NN , EX VBP DT NNS DT JJ NN VBZ VBG DT JJR NN .\nIn a statement Wednesday , the WHO 's top representative in China , Hans Troedsson , says the three recent cases were not unexpected considering the winter season .\tIN DT NN NNP , DT NNP POS JJ NN IN NNP , NNP NNP , VBZ DT CD JJ NNS VBD RB JJ VBG DT NN NN .\nBird flu tends to be more active during the colder months of the year .\tNNP NN VBZ TO VB RBR JJ IN DT NN NNS IN DT NN .\nTroedsson also stressed that all three cases involved people who contracted the disease from poultry , not from human to human transmissions .\tNNP RB VBD IN DT CD NNS VBN NNS WP VBD DT NN IN NN , RB IN JJ TO JJ NNS .\nChina has the world 's largest poultry population and is at the center of the fight against bird flu , which scientists fear could mutate into a form that could pass easily between people , sparking a pandemic .\tNNP VBZ DT NN POS JJS NN NN CC VBZ IN DT NN IN DT NN IN NN NN , WDT NNS VBP MD VB IN DT NN WDT MD VB RB IN NNS , VBG DT NN .\nThe World Health Organization says China has had 20 bird flu deaths and 30 cases since the outbreak began in 2003 .\tDT NNP NNP NNP VBZ NNP VBZ VBN CD NN NN NNS CC CD NNS IN DT NN VBD IN CD .\nSudan 's President Omar al-Bashir has arrived in Libya for talks on Sudan 's troubled Darfur region .\tNNP POS NNP NNP NNP VBZ VBN IN NNP IN NNS IN NNP POS JJ NNP NN .\nSudan 's official news agency , SUNA , says the president will meet with Darfur rebels who refused to endorse a peace deal signed last year .\tNNP POS JJ NN NN , NNP , VBZ DT NN MD VB IN NNP NNS WP VBD TO VB DT NN NN VBN JJ NN .\nThe discussions this week also will be attended by Libyan leader Moammar Gadhafi and Eritrean President Isaias Afewerki .\tDT NNS DT NN RB MD VB VBN IN JJ NN NNP NNP CC JJ NNP NNP NNP .\nLast year , Sudan 's government and the largest Darfur rebel group signed a landmark peace deal .\tJJ NN , NNP POS NN CC DT JJS NN NN NN VBD DT NN NN NN .\nSome other rebel groups rejected the deal , saying it does not meet their demands for power- and wealth-sharing .\tDT JJ NN NNS VBD DT NN , VBG PRP VBZ RB VB PRP$ NNS IN JJ CC JJ .\nFour years of fighting in Darfur has killed at least 2,00,000 people and driven more than two million others from their homes .\tCD NNS IN VBG IN NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD CD NNS IN PRP$ NNS .\nPresident Bashir has resisted the deployment of United Nations peacekeepers to Darfur to support a 7,000-strong African Union mission .\tNNP NNP VBZ VBN DT NN IN NNP NNPS NNS TO VB TO VB DT JJ NNP NNP NN .\nOne of the two main rebel groups in Sudan 's Darfur region has demanded a United Nations force to replace African Union troops in the troubled region .\tCD IN DT CD JJ NN NNS IN NNP POS NNP NN VBZ VBN DT NNP NNP NN TO VB NNP NNP NNS IN DT JJ NN .\nThe leader of the Justice and Equality Movement , Khalil Ibrahim , said Thursday the AU force has failed to protect civilians in Darfur or disarm pro-government Arab militias known as the Janjaweed .\tDT NN IN DT NNP CC NNP NNP , NNP NNP , VBD NNP DT NNP NN VBZ VBN TO VB NNS IN NNP CC VB JJ JJ NNS VBN IN DT NNP .\nIn an interview with Reuters news agency , he said his group will not return to peace talks in Nigeria unless the United Nations takes over as lead mediator from the African Union .\tIN DT NN IN NNP NN NN , PRP VBD PRP$ NN MD RB VB TO NN NNS IN NNP IN DT NNP NNPS VBZ RP IN JJ NN IN DT NNP NNP .\nThis latest round of AU-sponsored talks broke off this week with both the rebels and the government accusing each other of violating a cease-fire agreement .\tDT JJS NN IN JJ NNS VBD RP DT NN IN DT DT NNS CC DT NN VBG DT NN IN VBG DT NN NN .\nThe African Union has sent some 800 troops to Darfur to protect cease-fire monitors , but they are not mandated to protect civilians or to intervene in fighting .\tDT NNP NNP VBZ VBN DT CD NNS TO VB TO VB NN NNS , CC PRP VBP RB VBN TO VB NNS CC TO VB IN NN .\nCanada has assumed the presidency of the Group of Eight industrialized nations for 2010 , a year that will see the country play a much larger role on the international stage .\tNNP VBZ VBN DT NN IN DT NNP IN CD JJ NNS IN CD , DT NN WDT MD VB DT NN VB DT JJ JJR NN IN DT JJ NN .\nPrime Minister Stephen Harper will host the leaders of the world 's major economic powers in Ontario in June for an annual summit expected to focus on free trade , democracy and human rights .\tNNP NNP NNP NNP MD VB DT NNS IN DT NN POS JJ JJ NNS IN NNP IN NNP IN DT JJ NN VBN TO VB IN JJ NN , NN CC JJ NNS .\nCanada takes over the presidency from Italy , which presided over debates in 2009 on food security , as well as the nuclear programs of Iran and North Korea .\tNNP VBZ IN DT NN IN NNP , WDT VBD IN NNS IN CD IN NN NN , RB RB IN DT JJ NNS IN NNP CC NNP NNP .\nThe G8 includes the United States , Japan , Germany , France , Britain , Italy , Canada and Russia .\tDT NNP VBZ DT NNP NNPS , NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nCanada will also chair this year 's Group of 20 developed and developing nations , and host the 2010 Winter Olympics in Vancouver .\tNNP MD RB VB DT NN POS NNP IN CD JJ CC JJ NNS , CC VB DT CD NNP NNPS IN NNP .\nRadical Muslim militant Shamil Basayev , in a Chechen rebel-linked website , has reportedly claimed responsibility for a extensive blackout that hit large parts of Moscow Wednesday .\tNNP NNP JJ NNP NNP , IN DT JJ JJ NN , VBZ RB VBN NN IN DT JJ NN WDT VBD JJ NNS IN NNP NNP .\nBut Russian officials repeated Friday their belief that the power outage was caused by a fire and explosion at an energy substation , which they say runs on worn-out equipment .\tCC JJ NNS VBD NNP PRP$ NN IN DT NN NN VBD VBN IN DT NN CC NN IN DT NN NN , WDT PRP VBP NNS IN JJ NN .\nThe militant has claimed responsibility for some of Russia 's deadliest terrorist attacks , including last year 's elementary school massacre of 330 people .\tDT NN VBZ VBN NN IN DT IN NNP POS JJS JJ NNS , VBG JJ NN POS JJ NN NN IN CD NNS .\nYesterday , Russian prosecutors questioned the chief of the country 's monopoly power company , Anatoly Chubais , about the blackout .\tNN , JJ NNS VBD DT NN IN DT NN POS NN NN NN , NNP NNP , IN DT NN .\nRussian President Vladimir Putin has accused Unified Energy Systems , the monopoly company that is mostly owned by the government , of negligence .\tJJ NNP NNP NNP VBZ VBN NNP NNP NNP , DT NN NN WDT VBZ RB VBN IN DT NN , IN NN .\nWednesday 's blackout shut down the Moscow stock market , forced hospitals to switch to emergency power , and left thousands of people stranded in subways .\tNNP POS NN VBD RP DT NNP NN NN , VBD NNS TO VB TO NN NN , CC VBD NNS IN NNS VBN IN NNS .\nIran has again rejected calls to end its nuclear fuel cycle work , despite fresh European threats to bring United Nations sanctions .\tNNP VBZ RB VBN NNS TO VB PRP$ JJ NN NN NN , IN JJ JJ NNS TO VB NNP NNP NNS .\nA Foreign Ministry spokesman Sunday repeated Tehran 's claim that its uranium conversion work is aimed at generating electricity rather than atomic weaponry .\tDT NNP NNP NN NNP VBD NNP POS NN IN PRP$ NN NN NN VBZ VBN IN VBG NN RB IN JJ NN .\nHe said Iran will not yield to threats from Western governments .\tPRP VBD NNP MD RB VB TO NNS IN JJ NNS .\nIran resumed uranium conversion at its plant in Isfahan last month , rejecting European incentives aimed at ending Tehran 's nuclear activities .\tNNP VBD NN NN IN PRP$ NN IN NNP JJ NN , VBG JJ NNS VBN IN VBG NNP POS JJ NNS .\nThursday , the European Union said it would ask the International Atomic Energy Agency to seek U.N. sanctions at an IAEA board meeting September 19 in Vienna .\tNNP , DT NNP NNP VBD PRP MD VB DT NNP NNP NNP NNP TO VB NNP NNS IN DT NNP NN NN NNP CD IN NNP .\nOn Friday , an IAEA report said Iran has failed to answer key questions about its work with uranium and plutonium - two key materials needed for an atomic bomb .\tIN NNP , DT NNP NN VBD NNP VBZ VBN TO VB JJ NNS IN PRP$ NN IN NN CC NN IN CD JJ NNS VBN IN DT JJ NN .\nIraqi officials say insurgents ambushed an Egyptian-owned telephone company 's convoy in Baghdad Wednesday , killing at least six security guards and possibly abducting two foreign engineers .\tJJ NNS VBP NNS VBD DT JJ NN NN POS NN IN NNP NNP , VBG IN JJS CD NN NNS CC RB VBG CD JJ NNS .\nOfficials say the engineers from Malawi and Madagascar are missing and feared kidnapped .\tNNS VBP DT NNS IN NNP CC NNP VBP VBG CC VBD VBN .\nMeanwhile , kidnappers freed the sister of Iraq 's interior minister , Shi'ite politician Bayan Jabr , two weeks after she was abducted in Baghdad .\tRB , NNS VBD DT NN IN NNP POS JJ NN , NNP NN NNP NNP , CD NNS IN PRP VBD VBN IN NNP .\nOn Tuesday , Iraqi insurgents released a videotape of kidnapped American journalist Jill Carroll , who works for the Christian Science Monitor , saying they would kill her unless female prisoners in Iraq are released within 72 hours .\tIN NNP , JJ NNS VBD DT NN IN VBN JJ NN NNP NNP , WP VBZ IN DT NNP NNP NNP , VBG PRP MD VB PRP IN JJ NNS IN NNP VBP VBN IN CD NNS .\nAnd Iran said it is looking into Iraqi allegations of a clash between Iraqi and Iranian coastguard forces in the Persian Gulf .\tCC NNP VBD PRP VBZ VBG IN JJ NNS IN DT NN IN JJ CC JJ NN NNS IN DT NNP NNP .\nBasra 's governor said Tuesday that nine Iraqi coast guard sailors were kidnapped and one killed in a skirmish with Iranian forces .\tNNP POS NN VBD NNP IN CD JJ NN NN NNS VBD VBN CC CD VBN IN DT NN IN JJ NNS .\nDirector of Greek shipping firm Alloceans Shipping says pirates freed the ' Ariana ' and its crew members after the company paid a ransom .\tNNP IN JJ NN NN NNP NNP VBZ NNS VBD DT `` NNP `` CC PRP$ NN NNS IN DT NN VBD DT NN .\nSomali pirates have released a Greek-owned cargo ship and its 24 Ukrainian crew members after seven months in captivity .\tJJ NNS VBP VBN DT JJ NN NN CC PRP$ CD JJ NN NNS IN CD NNS IN NN .\nThe director of Greek shipping firm Alloceans Shipping , Spyros Minas , says pirates freed the Ariana Thursday , after the company paid a ransom .\tDT NN IN JJ NN NN NNP NNP , NNP NNP , VBZ NNS VBD DT NNP NNP , IN DT NN VBD DT NN .\nIn Kiev , Ukrainian President Victor Yushchenko also announced the crew 's release .\tIN NNP , JJ NNP NNP NNP RB VBD DT NN POS NN .\nThe shipping company did not reveal the size of the ransom , but pirates told reporters the amount was more than $ 2.5 million .\tDT NN NN VBD RB VB DT NN IN DT NN , CC NNS VBD NNS DT NN VBD JJR IN $ CD CD .\nPirates have continued to hijack vessels despite the presence of foreign naval patrols near Somalia .\tNNS VBP VBN TO VB NNS IN DT NN IN JJ JJ NNS IN NNP .\nThey are still believed to be holding around 260 crew members on nearly a dozen captured ships .\tPRP VBP RB VBN TO VB VBG IN CD NN NNS IN RB DT NN VBN NNS .\nEstonia 's Kristina Smigun has captured her second gold medal of the Turin Winter Olympics , with a victory in the women 's 10-kilometer classical cross country ski event .\tNNP POS NNP NNP VBZ VBN PRP$ JJ NN NN IN DT NNP NNP NNPS , IN DT NN IN DT NNS POS JJ JJ NN NN NN NN .\nSmigun , who won the 15-kilometer pursuit on Sunday , finished more than 21 seconds ahead of Marit Bjoergen of Norway , who took the silver medal Thursday .\tNNP , WP VBD DT JJ NN IN NNP , VBD RBR IN CD NNS RB IN NNP NNP IN NNP , WP VBD DT NN NN NNP .\nHilde Pedersen , also from Norway , won the bronze .\tNNP NNP , RB IN NNP , VBD DT NN .\nSeven other gold medals are at stake Thursday , in Turin .\tCD JJ JJ NNS VBP IN NN NNP , IN NNP .\nThe men 's Nordic Combined is on the schedule after high winds postponed the event on Wednesday .\tDT NNS POS NNP NNP VBZ IN DT NN IN JJ NNS VBD DT NN IN NNP .\nThursday 's schedule also includes the debut of men 's snowboard cross , while the free program will complete men 's figure skating .\tNNP POS NN RB VBZ DT NN IN NNS POS NN NN , IN DT JJ NN MD VB NNS POS NN NN .\nWomen will ski and shoot for gold in the 7.5 kilometer biathlon sprint .\tNNS MD VB CC VB IN NN IN DT CD NN NN NN .\nWomen will also compete in skeleton singles .\tNNS MD RB VB IN NN NNS .\nBoth genders will seek medals in speedskating team pursuit .\tDT NNS MD VB NNS IN VBG NN NN .\nIran says it has filed a complaint with the International Monetary Fund against a U.S. treasury department ban on a leading Iranian bank .\tNNP VBZ PRP VBZ VBN DT NN IN DT NNP NNP NNP IN DT NNP NN NN NN IN DT JJ JJ NN .\nIranian state television quotes central bank chief Ebrahim Sheibani as saying Iran lodged the complaint after the United States imposed sanctions this month on Bank Saderat .\tJJ NN NN NNS JJ NN NN NNP NNP IN VBG NNP VBD DT NN IN DT NNP NNPS VBD NNS DT NN IN NNP NNP .\nU.S. officials allege the Iranian government uses the bank to transfer millions of dollars to terrorist groups , including Hezbollah and Hamas .\tNNP NNS VBP DT JJ NN VBZ DT NN TO VB NNS IN NNS TO JJ NNS , VBG NNP CC NNP .\nSheibani says the ban is politically motivated and the United States has not provided any evidence for its claim .\tNNP VBZ DT NN VBZ RB JJ CC DT NNP NNPS VBZ RB VBN DT NN IN PRP$ NN .\nIranian banks have long been denied access to the U.S. financial system but are able to access the system indirectly through third-country banks .\tJJ NNS VBP RB VBN VBN NN TO DT NNP JJ NN CC VBP JJ TO VB DT NN RB IN JJ NNS .\nThe ban effectively cuts off Bank Saderat from the U.S. financial system .\tDT NN RB VBZ RP NNP NNP IN DT NNP JJ NN .\nThe cut-off comes as Washington continues to pressure Iran to stop enriching uranium as part of its nuclear program .\tDT NN VBZ IN NNP VBZ TO VB NNP TO VB VBG NN IN NN IN PRP$ JJ NN .\nThe Israeli army says it carried out two airstrikes in Gaza late Monday , both aimed at houses belonging to militants .\tDT JJ NN VBZ PRP VBD RP CD NNS IN NNP JJ NNP , DT VBN IN NNS VBG TO NNS .\nThe first was aimed at a home in the Jabalya refugee camp , and the second hit a house in the Beit Hanoun district of Northern Gaza .\tDT NN VBD VBN IN DT NN IN DT NNP NN NN , CC DT JJ NN DT NN IN DT NNP NNP NN IN NNP NNP .\nIn both cases residents of the houses were warned in advance .\tIN DT NNS NNS IN DT NNS VBD VBN IN NN .\nEarlier , Palestinian hospital officials said an Israeli military strike in northern Gaza killed three Palestinians , including a teenage boy .\tRB , JJ NN NNS VBD DT JJ JJ NN IN JJ NNP VBD CD NNS , VBG DT NN NN .\nIsrael 's military says it targeted Palestinian militants in the area after they fired two rockets at the Israeli city of Ashkelon .\tNNP POS NN VBZ PRP JJ JJ NNS IN DT NN IN PRP VBD CD NNS IN DT JJ NN IN NNP .\nMeanwhile , the U.S. television network , Fox , says two of its employees were kidnapped by Palestinian gunmen in the Gaza Strip Monday .\tRB , DT NNP NN NN , NNP , VBZ CD IN PRP$ NNS VBD VBN IN JJ NNS IN DT NNP NNP NNP .\nWitnesses say American correspondent Steve Centanni and cameraman Olaf Wiig from New Zealand were taken away by gunmen after their car was intercepted in Gaza City .\tNNS VBP JJ NN NNP NNP CC NN NNP NNP IN NNP NNP VBD VBN RB IN NNS IN PRP$ NN VBD VBN IN NNP NNP .\nAuthorities have lost control of a southern Afghanistan district after Taleban fighters attacked and disarmed police late Thursday .\tNNS VBP VBN NN IN DT JJ NNP NN IN NNP NNS VBD CC VBD NN JJ NNP .\nReports from Musa Qala in the southern province of Helmand say hundreds of Taleban fighters seized the town , destroying part of its district headquarters .\tNNS IN NNP NNP IN DT JJ NN IN NNP VBP NNS IN NNP NNS VBD DT NN , VBG NN IN PRP$ NN NN .\nThe Associated press quotes a spokesman for NATO forces in Afghanistan , Colonel Tom Collins , as saying an unknown number of militants apparently entered Musa Qala .\tDT NNP NN VBZ DT NN IN NNP NNS IN NNP , NNP NNP NNP , IN VBG DT JJ NN IN NNS RB VBD NNP NNP .\nBritish forces pulled out of the town last year after a peace deal was signed between local elders and the Helmand provincial government .\tJJ NNS VBD IN IN DT NN JJ NN IN DT NN NN VBD VBN IN JJ NNS CC DT NNP JJ NN .\nIndia has test-fired another multi-target surface-to-air missile , as part of trials of its airborne warfare systems .\tNNP VBZ VBN DT JJ NN NN , IN NN IN NNS IN PRP$ JJ NN NNS .\nThe missile , known as ' Akash , ' or the Sky , has a range of approximately 25 kilometers and can carry a warhead of up to 50 kilograms .\tDT NN , VBN IN `` NNP , `` CC DT NNP , VBZ DT NN IN RB CD NNS CC MD VB DT NN IN RB TO CD NNS .\nIndian defense officials say the missile performed successfully in Monday 's test in eastern Orissa state .\tJJ NN NNS VBP DT NN VBD RB IN NNP POS NN IN JJ NNP NN .\nThey say it was fired from a mobile launcher at the country 's main Chandipur coastal testing site , northeast of the state capital , Bhubaneshwar .\tPRP VBP PRP VBD VBN IN DT JJ NN IN DT NN POS JJ NNP JJ NN NN , NN IN DT NN NN , NNP .\nIt was the third Akash missile test in as many days .\tPRP VBD DT JJ NNP NN NN IN IN JJ NNS .\nOn Saturday , two missiles fired from rocket launchers tracked , intercepted and destroyed two airborne targets at a range of about 20 kilometers .\tIN NNP , CD NNS VBN IN NN NNS VBD , VBD CC VBD CD JJ NNS IN DT NN IN IN CD NNS .\nThe missile is one of five being developed by India 's state-run Defense Research and Development Organization .\tDT NN VBZ CD IN CD VBG VBN IN NNP POS JJ NNP NNP CC NNP NNP .\nThe first Roman Catholic priest to serve as a voting member of the U.S Congress has died .\tDT JJ NNP NNP NN TO VB IN DT NN NN IN DT NNP NNP VBZ VBN .\nGeorgetown University says Reverend Robert Drinan died at the age of 86 after suffering from pneumonia and congestive heart failure .\tNNP NNP VBZ NNP NNP NNP VBD IN DT NN IN CD IN VBG IN NN CC JJ NN NN .\nHe represented Massachusetts in the House of Representatives during the 1970s before stepping down when Pope John Paul II issued a directive barring priests from holding public office .\tPRP VBD NNP IN DT NNP IN NNPS IN DT NNS IN VBG RP WRB NNP NNP NNP NNP VBD DT NN VBG NNS IN VBG JJ NN .\nAfter leaving Congress , Drinan continued to advocate human rights and humanitarian causes .\tIN VBG NNP , NNP VBD TO VB JJ NNS CC JJ NNS .\nHe also taught classes on international human rights , law , legal ethics and religion and government at Georgetown .\tPRP RB VBD NNS IN JJ JJ NNS , NN , JJ NNS CC NN CC NN IN NNP .\nThe U.S. State Department has issued a new warning for U.S. citizens considering travel to Israel and the Palestinian territories .\tDT NNP NNP NNP VBZ VBN DT JJ NN IN NNP NNS VBG NN TO NNP CC DT JJ NNS .\nIn a statement Friday , the State Department said the fresh warning supersedes a previous travel alert for the region issued in January .\tIN DT NN NNP , DT NNP NNP VBD DT JJ NN VBZ DT JJ NN NN IN DT NN VBN IN NNP .\nIt cited ' considerable violence ' in recent months between Palestinian factions , as well as between Israeli security forces and armed Palestinian groups .\tPRP VBD `` JJ NN `` IN JJ NNS IN JJ NNS , RB RB IN IN JJ NN NNS CC JJ JJ NNS .\nIt urged U.S. citizens to be mindful of security when traveling to Israel and Jerusalem .\tPRP VBD NNP NNS TO VB JJ IN NN WRB VBG TO NNP CC NNP .\nThe statement recommended that all Americans , including journalists and aid workers , defer travel to the West Bank and avoid any travel in the Gaza Strip .\tDT NN VBD IN DT NNS , VBG NNS CC NN NNS , VB NN TO DT NNP NNP CC VB DT NN IN DT NNP NNP .\nChinese paramilitary officer gestures outside of the Japanese embassy in Beijing , the scene of violent protests China has offered to repair damage the Japanese embassy in Beijing sustained during recent violent protests , but is rejecting Tokyo 's demand for an apology .\tJJ JJ NN NNS IN IN DT JJ NN IN NNP , DT NN IN JJ NNS NNP VBZ VBN TO VB NN DT JJ NN IN NNP VBD IN JJ JJ NNS , CC VBZ VBG NNP POS NN IN DT NN .\nBeijing says Japan is to blame for starting the dispute , which centers on a new Japanese history textbook critics say overlooks Japan 's brutal military occupation of much of Asia before and during World War II .\tNNP VBZ NNP VBZ TO VB IN VBG DT NN , WDT VBZ IN DT JJ JJ NN NN NNS VBP NNS NNP POS JJ JJ NN IN NN IN NNP IN CC IN NNP NNP NNP .\nApproval of the book sparked three weeks of angry protests in China .\tNNP IN DT NN VBD CD NNS IN JJ NNS IN NNP .\nTokyo has proposed a meeting between Prime Minister Junichiro Koizumi and Chinese President Hu Jintao at the upcoming Asia-Africa summit in Indonesia .\tNNP VBZ VBN DT NN IN NNP NNP NNP NNP CC JJ NNP NNP NNP IN DT JJ NNP NN IN NNP .\nUN Secretary General Kofi Annan has also urged the two leaders to meet and resolve their differences .\tNNP NNP NNP NNP NNP VBZ RB VBN DT CD NNS TO VB CC VB PRP$ NNS .\nCuban President Fidel Castro says the country 's economy is growing despite the U.S. government 's long-standing trade embargo against the island .\tJJ NNP NNP NNP VBZ DT NN POS NN VBZ VBG IN DT NNP NN POS JJ NN NN IN DT NN .\nThe Cuban leader said Monday in a May Day speech lasting more than three hours that the current rate of growth was at 12.5 percent .\tDT JJ NN VBD NNP IN DT NNP NNP NN VBG JJR IN CD NNS IN DT JJ NN IN NN VBD IN CD NN .\nCuba , however , uses a calculation system that differs from the international standard .\tNNP , RB , VBZ DT NN NN WDT VBZ IN DT JJ NN .\nAs he spoke before hundreds of thousands of people gathered in Havana , Mr. Castro criticized the Bush administration for creating a transition plan for a post-Castro Cuba .\tIN PRP VBD IN NNS IN NNS IN NNS VBN IN NNP , NNP NNP VBD DT NNP NN IN VBG DT NN NN IN DT JJ NNP .\nAdditionally , he said the U.S. characterization of his country as a state sponsor of terrorism was cynical .\tRB , PRP VBD DT NNP NN IN PRP$ NN IN DT NN NN IN NN VBD JJ .\nLast Friday , the State Department released a report which again listed Cuba and five other countries , Iran , Libya , North Korea , Sudan and Syria as state sponsors of terrorism , which are subject to sanctions under U.S. law .\tJJ NNP , DT NNP NNP VBD DT NN WDT RB VBD NNP CC CD JJ NNS , NNP , NNP , NNP NNP , NNP CC NNP IN NN NNS IN NN , WDT VBP JJ TO NNS IN NNP NN .\nAlgerian President Abdelaziz Bouteflika has confirmed that two Algerian diplomats in Iraq have been killed by their kidnappers .\tJJ NNP NNP NNP VBZ VBN IN CD JJ NNS IN NNP VBP VBN VBN IN PRP$ NNS .\nThe president issued a statement Wednesday calling the murders a ' cowardly ' act .\tDT NN VBD DT NN NNP VBG DT NNS DT `` RB `` NN .\nHe did not say what evidence the government has that proves Algerian mission chief Ali Belaroussi and attache Azzedine Belkadi have been killed .\tPRP VBD RB VB WP NN DT NN VBZ DT VBZ JJ NN NN NNP NNP CC NNP NNP NNP VBP VBN VBN .\nEarlier Wednesday , Abu Musab al-Zarqawi 's terrorist group , al-Qaida in Iraq , said in an Internet statement that it had killed the two diplomats , who were abducted last Thursday in Baghdad .\tRBR NNP , NNP NNP NNP POS JJ NN , NNP IN NNP , VBD IN DT NNP NN IN PRP VBD VBN DT CD NNS , WP VBD VBN JJ NNP IN NNP .\nNo videotape or pictures of the alleged killings accompanied the statement .\tDT NN CC NNS IN DT JJ NNS VBD DT NN .\nIn New York , United Nations Secretary-General Kofi Annan condemned the killings as ' brutal and barbaric , ' and he said every effort must be made to bring the killers to justice .\tIN NNP NNP , NNP NNP NNP NNP NNP VBD DT NNS IN `` JJ CC JJ , `` CC PRP VBD DT NN MD VB VBN TO VB DT NNS TO NN .\nAfghan authorities say U.S-led coalition forces have arrested five suspected Taleban insurgents in connection with an attack on a oil tanker that killed two Pakistanis .\tJJ NNS VBP JJ NN NNS VBP VBN CD JJ NNP NNS IN NN IN DT NN IN DT NN NN WDT VBD CD NNS .\nPolice in the Afghan border town of Spin Boldak said the five suspects were apprehended Wednesday - a day after the two Pakistani nationals were killed in the same area .\tNNS IN DT JJ NN NN IN NNP NNP VBD DT CD NNS VBD VBN NNP IN DT NN IN DT CD JJ NNS VBD VBN IN DT JJ NN .\nThe victims were ambushed after the Pakistani-owned tanker delivered fuel to a U.S. base in southern Afghanistan .\tDT NNS VBD VBN IN DT JJ NN VBN NN TO DT NNP NN IN JJ NNP .\nTaleban and allied militants have stepped up attacks in recent months , often hitting soft targets associated with coalition forces and the Afghan government of President Hamid Karzai .\tNNP CC JJ NNS VBP VBN RP NNS IN JJ NNS , RB VBG JJ NNS VBN IN NN NNS CC DT JJ NN IN NNP NNP NNP .\nThe opposition in Azerbaijan is calling for protests over the shooting death of an editor of a magazine critical of the government .\tDT NN IN NNP VBZ VBG IN NNS IN DT NN NN IN DT NN IN DT NN JJ IN DT NN .\nPopular Front leader Ali Kerimli urged the demonstrations in response to Wednesday 's fatal attack on Elmar Husseinov of the weekly Monitor .\tJJ NNP NN NNP NNP VBD DT NNS IN NN TO NNP POS JJ NN IN NNP NNP IN DT JJ NN .\nNo suspects have been identified .\tDT NNS VBP VBN VBN .\nPresident Ilham Aliyev ordered a swift investigation and called the attack a serious provocation against the state and authority .\tNNP NNP NNP VBD DT JJ NN CC VBD DT NN DT JJ NN IN DT NN CC NN .\nThe slain journalist had come under government scrutiny and had previously been jailed and fined for his work .\tDT NN NN VBD VBN IN NN NN CC VBD RB VBN VBN CC VBN IN PRP$ NN .\nThe Committee to Protect Journalists said the killing appeared to have been well planned and orchestrated - while the Paris-based Reporters Without Borders called it part of a campaign of violence against journalists in Azerbaijan .\tDT NNP TO VB NNS VBD DT NN VBD TO VB VBN RB VBN CC VBN : IN DT JJ NNS IN NNS VBD PRP NN IN DT NN IN NN IN NNS IN NNP .\nAlso , the Organization for Security and Cooperation in Europe expressed shock at the attack and said it expects a swift investigation .\tRB , DT NNP IN NNP CC NNP IN NNP VBD NN IN DT NN CC VBD PRP VBZ DT JJ NN .\nWitnesses say Palestinian gunmen have freed two Western teachers kidnapped early Wednesday in the Gaza Strip as part of a push to gain the release of several jailed militants .\tNNS VBP JJ NNS VBP VBN CD JJ NNS VBN JJ NNP IN DT NNP NNP IN NN IN DT NN TO VB DT NN IN JJ JJ NNS .\nThe teachers , abducted as they drove to work in Gaza City , were reported safe hours later at the headquarters of Palestinian leader Mahmoud Abbas .\tDT NNS , VBN IN PRP VBD TO VB IN NNP NNP , VBD VBN JJ NNS RB IN DT NN IN JJ NN NNP NNP .\nDetails of the release were not clear .\tNNS IN DT NN VBD RB JJ .\nGunmen from the Popular Front for the Liberation of Palestine had claimed responsibility , in a statement demanding the release of jailed PFLP chief Ahmed Saadat .\tNNS IN DT NNP NNP IN DT NN IN NNP VBD VBN NN , IN DT NN VBG DT NN IN JJ NNP NN NNP NNP .\nHe and several others in the group remain under foreign supervision in a Palestinian prison for their role in the 2001 assassination of Israeli Cabinet minister Rehavam Zeevi .\tPRP CC JJ NNS IN DT NN VBP IN JJ NN IN DT JJ NN IN PRP$ NN IN DT CD NN IN JJ NNP NN NNP NNP .\nEurope 's top security organization says it will have an observer mission in Kyrgyzstan to monitor the July 10 presidential election .\tNNP POS JJ NN NN VBZ PRP MD VB DT NN NN IN NNP TO VB DT NNP CD JJ NN .\nThe Organization for Security and Cooperation in Europe , the OSCE , says it will ' assess the entire election process ' in terms of its compliance with international standards for democratic elections .\tDT NNP IN NNP CC NNP IN NNP , DT NNP , VBZ PRP MD `` VB DT JJ NN NN `` IN NNS IN PRP$ NN IN JJ NNS IN JJ NNS .\nThe OSCE mission consists of 15 election experts based in Bishkek and 26 long-term observers deployed to various regions of Kyrgyzstan .\tDT NNP NN VBZ IN CD NN NNS VBN IN NNP CC CD JJ NNS VBN TO JJ NNS IN NNP .\nAbout 300 short-term observers will join the mission just before the polls .\tIN CD JJ NNS MD VB DT NN RB IN DT NNS .\nThe OSCE move follows allegations of official abuses during the Kyrgyz parliamentary polls earlier this year which triggered public protests that ousted the unpopular government in March .\tDT NNP NN VBZ NNS IN JJ NNS IN DT JJ JJ NNS RBR DT NN WDT VBD JJ NNS WDT VBD DT JJ NN IN NNP .\nThe presidential election is seen as a major democracy test for the new Kyrgyz leadership .\tDT JJ NN VBZ VBN IN DT JJ NN NN IN DT JJ JJ NN .\nCanada 's foreign minister was splattered with red paint by a protester Friday while speaking at a Montreal news conference about the situation in Haiti .\tNNP POS JJ NN VBD VBN IN JJ NN IN DT NN NNP IN VBG IN DT NNP NN NN IN DT NN IN NNP .\nPierre Pettigrew left the conference briefly to change clothes as security guards led the protester out of the room .\tNNP NNP VBD DT NN RB TO VB NNS IN NN NNS VBD DT NN IN IN DT NN .\nThe incident took place as Canadian and Haitian ministers , officials from donor countries , and the special U.N. representative for Haiti were meeting to discuss progress in the Caribbean nation as it prepares for elections later this year .\tDT NN VBD NN IN JJ CC JJ NNS , NNS IN NN NNS , CC DT JJ NNP NN IN NNP VBD VBG TO VB NN IN DT JJ NN IN PRP VBZ IN NNS RBR DT NN .\nCanada is urging the United Nations Stabilization Mission in Haiti to intervene more directly in the internal political process .\tNNP VBZ VBG DT NNP NNPS NNP NNP IN NNP TO VB JJR RB IN DT JJ JJ NN .\nHuman Rights Watch has expressed concerns that Iraq 's war crimes tribunals will be flawed , unfair and lacking in credibility .\tNNP NNP NNP VBZ VBN NNS IN NNP POS NN NNS NNS MD VB VBN , JJ CC VBG IN NN .\nThe New York-based organization said Friday that the tribunal has serious human rights shortcomings , and that the Iraqi government will need to change the process to make sure the trials are fair .\tDT NNP VBN NN VBD NNP IN DT NN VBZ JJ JJ NNS NNS , CC IN DT JJ NN MD VB TO VB DT NN TO VB JJ DT NNS VBP JJ .\nAmong its recommendations are that Iraq enlist international legal experts , inform defendants of their rights and allow them to be questioned in the presence of their lawyers .\tIN PRP$ NNS VBP IN NNP NN JJ JJ NNS , VB NNS IN PRP$ NNS CC VB PRP TO VB VBN IN DT NN IN PRP$ NNS .\nInvestigative hearings for some of Saddam Hussein 's top lieutenants are expected to begin next week .\tJJ NNS IN DT IN NNP NNP POS JJ NNS VBP VBN TO VB JJ NN .\nCharges against them include participating in crimes against Iraqi Kurds and Shi'ites .\tNNS IN PRP VBP VBG IN NNS IN JJ NNPS CC NNPS .\nOn Thursday , Saddam met with his attorney for the first time since his capture more than a year ago .\tIN NNP , NNP VBD IN PRP$ NN IN DT JJ NN IN PRP$ NN RBR IN DT NN RB .\nU.S. President Barack Obama turned 48 Tuesday and is spending at least part of his birthday with Democratic senators .\tNNP NNP NNP NNP VBD CD NNP CC VBZ VBG IN JJS NN IN PRP$ NN IN JJ NNS .\nWhite House spokesman Robert Gibbs told reporters he is unsure of any specific birthday plans the president has made , but did say Mr. Obama and Vice President Joe Biden are meeting with Democratic senators for lunch to discuss health care and economic issues .\tNNP NNP NN NNP NNP VBD NNS PRP VBZ JJ IN DT JJ NN NNS DT NN VBZ VBN , CC VBD VB NNP NNP CC NNP NNP NNP NNP VBP VBG IN JJ NNS IN NN TO VB NN NN CC JJ NNS .\nGibbs says the president spent time with friends over the weekend at the Camp David presidential retreat outside Washington .\tNNP VBZ DT NN VBD NN IN NNS IN DT NN IN DT NNP NNP JJ NN IN NNP .\nHe says the president played basketball , had dinner and went bowling .\tPRP VBZ DT NN VBD NN , VBD NN CC VBD NN .\nGibbs says he will have more information later Tuesday on how the president planned to observe his birthday .\tNNP VBZ PRP MD VB JJR NN RB NNP IN WRB DT NN VBD TO VB PRP$ NN .\nVenezuelan police have arrested two brothers in connection with the killing of a top government prosecutor .\tJJ NNS VBP VBN CD NNS IN NN IN DT NN IN DT JJ NN NN .\nOfficials said Friday , Rolando and Otoniel Guevara were arrested west of the capital city of Caracas .\tNNS VBD NNP , NNP CC NNP NNP VBD VBN NN IN DT NN NN IN NNP .\nTheir arrest comes the same week that police shot and killed two other suspects in the prosecutor 's murder .\tPRP$ NN VBZ DT JJ NN IN NNS VBD CC VBD CD JJ NNS IN DT NN POS NN .\nProsecutor Danilo Anderson died when explosions ripped through his car as he drove through the Venezuelan capital .\tNNP NNP NNP VBD WRB NNS VBD IN PRP$ NN IN PRP VBD IN DT JJ NN .\nOfficials have said the attack may have been politically-motivated .\tNNS VBP VBN DT NN MD VB VBN JJ .\nMr. Anderson had been overseeing a case against hundreds of opposition politicians , businessmen and former military officers involved in a 2002 coup that briefly ousted President Hugo Chavez .\tNNP NNP VBD VBN VBG DT NN IN NNS IN NN NNS , NNS CC JJ JJ NNS VBN IN DT CD NN IN RB VBD NNP NNP NNP .\nTwo former Caracas police chiefs who were being investigated by Mr. Anderson sought asylum Friday at El Salvador 's embassy in Caracas .\tCD JJ NNP NN NNS WP VBD VBG VBN IN NNP NNP VBD NN NNP IN NNP NNP POS NN IN NNP .\nIsraeli Prime Minister Ariel Sharon says he is very satisfied with measures taken by Palestinian leader Mahmoud Abbas to halt militant violence .\tJJ NNP NNP NNP NNP VBZ PRP VBZ RB JJ IN NNS VBN IN JJ NN NNP NNP TO VB JJ NN .\nIn an interview published Thursday in an Israeli newspaper Yediot Aharonot , Mr. Sharon said there is no doubt the Palestinian leader has begun to work toward reducing militant attacks against Israelis .\tIN DT NN VBN NNP IN DT JJ NN NNP NNP , NNP NNP VBD EX VBZ DT NN DT JJ NN VBZ VBN TO VB IN VBG JJ NNS IN NNS .\nMr. Sharon added that he wants to move forward with peace efforts .\tNNP NNP VBD IN PRP VBZ TO VB RB IN NN NNS .\nMeanwhile , Israeli and Palestinian officials have begun preparations for the first summit between Mr. Sharon and Mr. Abbas .\tRB , JJ CC JJ NNS VBP VBN NNS IN DT JJ NN IN NNP NNP CC NNP NNP .\nAuthorities say officials will meet next week to plan details of the summit , which Israel says could take place within two weeks .\tNNS VBP NNS MD VB JJ NN TO VB NNS IN DT NN , WDT NNP VBZ MD VB NN IN CD NNS .\nAt least three Palestinians have been wounded in the Gaza Strip in what witnesses say was an Israeli attempt to kill a Palestinian militant .\tIN JJS CD NNS VBP VBN VBN IN DT NNP NNP IN WP NNS VBP VBD DT JJ NN TO VB DT JJ NN .\nPalestinian witnesses say a missile from an Israeli drone struck a car carrying a top member of the Popular Resistance Committees , an umbrella organization of militant factions .\tJJ NNS VBP DT NN IN DT JJ NN VBD DT NN VBG DT JJ NN IN DT NNP NNP NNP , DT NN NN IN JJ NNS .\nThe apparent target of the attack , identified as Jamal Abu Samahdna , was reported among the wounded .\tDT JJ NN IN DT NN , VBN IN JJ NNP NNP , VBD VBN IN DT VBN .\nIsrael has not commented .\tNNP VBZ RB VBN .\nLast week , Prime Minister Ariel Sharon said Israel would not launch attacks or raids in the Palestinian territories in the runup to January ninth Palestinian elections , as long as the Jewish state is not provoked .\tJJ NN , NNP NNP NNP NNP VBD NNP MD RB VB NNS CC NNS IN DT JJ NNS IN DT NN TO NNP JJ JJ NNS , RB RB IN DT JJ NN VBZ RB VBN .\nIn other developments , about 3,000 members of Mr. Sharon 's minority Likud Party vote today on forming a new coalition government to advance plans for a proposed Israeli withdrawal from the Gaza Strip .\tIN JJ NNS , IN CD NNS IN NNP NNP POS NN NNP NNP NN NN IN VBG DT JJ NN NN TO VB NNS IN DT VBN JJ NN IN DT NNP NNP .\nRussia is sending doctors and medical supplies to Chile , as part of relief efforts to help Chileans recover from last month 's devastating earthquake and a series of strong aftershocks .\tNNP VBZ VBG NNS CC JJ NNS TO NNP , IN NN IN NN NNS TO VB NNS VB IN JJ NN POS JJ NN CC DT NN IN JJ NNS .\nA Russian official says two planes are being sent to Chile , carrying physicians , medicine and a mobile hospital .\tDT JJ NN VBZ CD NNS VBP VBG VBN TO NNP , VBG NNS , NN CC DT JJ NN .\nParts of Chile shook Thursday after getting hit by a magnitude 6.9 aftershock .\tNNS IN NNP VBD NNP IN VBG VBN IN DT NN CD NN .\nThe U.S. Geological Survey said the aftershock was centered in Chile 's Libertador O'Higgins region , about 145 kilometers southwest of the capital , Santiago .\tDT NNP NNP NNP VBD DT NN VBD VBN IN NNP POS NNP NNP NN , IN CD NNS JJS IN DT NN , NNP .\nThe shaking was felt by foreign dignitaries who had gathered in the city of Valparaiso for the inauguration of new Chilean President Sebastian Pinera .\tDT VBG VBD VBN IN JJ NNS WP VBD VBN IN DT NN IN NNP IN DT NN IN JJ JJ NNP NNP NNP .\nIt was one of the strongest aftershocks to strike Chile since an 8.8-magnitude earthquake in late February killed about 500 people .\tPRP VBD CD IN DT JJS NNS TO VB NNP IN DT JJ NN IN JJ NNP VBD IN CD NNS .\nU.S. Secretary of State Condoleezza Rice has warned China not to use legitimate security concerns as an excuse to crack down on dissidents .\tNNP NNP IN NNP NNP NNP VBZ VBN NNP RB TO VB JJ NN NNS IN DT NN TO VB RP IN NNS .\nAt a joint news conference with New Zealand Prime Minister Helen Clark in Auckland Saturday , Rice said China should showcase not just the Olympics , but an attitude of openness and tolerance .\tIN DT JJ NN NN IN NNP NNP NNP NNP NNP NNP IN NNP NNP , NNP VBD NNP MD VB RB RB DT NNPS , CC DT NN IN NN CC NN .\nNeither Rice nor the prime minister expressed any concerns about the safety of U.S. or New Zealand athletes .\tCC NNP CC DT JJ NN VBD DT NNS IN DT NN IN NNP CC NNP NNP NNS .\nGlobal intelligence analysts Stratfor and Intelcenter said Friday that a Uighur separatist group , the Turkestan Islamic Party , has claimed credit for several attacks , including the May 5 Shanghai bus bombing that killed two people .\tJJ NN NNS NNP CC NNP VBD NNP IN DT NNP NN NN , DT NNP NNP NNP , VBZ VBN NN IN JJ NNS , VBG DT NNP CD NNP NN NN WDT VBD CD NNS .\nThe Internet intelligence analysts said the Islamic group threatened further attacks on Chinese cities that will host Olympic games .\tDT NNP NN NNS VBD DT NNP NN VBD JJ NNS IN JJ NNS WDT MD VB NNP NNS .\nThe Turkestan Islamic Party is an ethnic Uighur and Muslim group seeking to create an independent state out of China 's westernmost , heavily Muslim Xinjiang province .\tDT NNP NNP NNP VBZ DT JJ NNP CC NNP NN VBG TO VB DT JJ NN IN IN NNP POS NN , RB NNP NNP NN .\nThe African Union says Sudan 's government is starting to withdraw troops from Darfur , heeding an A.U. demand to end fighting by Saturday .\tDT NNP NNP VBZ NNP POS NN VBZ VBG TO VB NNS IN NNP , VBG DT NNP NN TO VB NN IN NNP .\nAn A.U. spokesman says he hopes the pullback will allow Sudan 's government and rebels to resume stalled peace talks in Nigeria .\tDT NNP NN VBZ PRP VBZ DT NN MD VB NNP POS NN CC NNS TO VB VBN NN NNS IN NNP .\nRebels have refused to participate in the talks until the government stops attacks in Darfur .\tNNS VBP VBN TO VB IN DT NNS IN DT NN VBZ NNS IN NNP .\nFriday , the African Union gave both the Sudanese government and rebels a 24-hour ultimatum to respect a cease-fire .\tNNP , DT NNP NNP VBD DT DT JJ NN CC NNS DT JJ NN TO VB DT NN .\nIt said after the deadline passes , it will report any violations to the U.N. Security Council .\tPRP VBD IN DT NN VBZ , PRP MD VB DT NNS TO DT NNP NNP NNP .\nThe ultimatum followed a report by the commander of the A.U. 's observer force in Darfur which said Sudan 's government appears to be preparing a major military offensive in the region .\tDT NN VBD DT NN IN DT NN IN DT NNP POS NN NN IN NNP WDT VBD NNP POS NN VBZ TO VB VBG DT JJ JJ NN IN DT NN .\nThe report also detailed violations by rebel forces .\tDT NN RB VBN NNS IN JJ NNS .\nKenya 's President Mwai Kibaki says he will take decisive action within days in the multi-million-dollar corruption scandals rocking his government .\tNNP POS NNP NNP NNP VBZ PRP MD VB JJ NN IN NNS IN DT JJ NN NNS VBG PRP$ NN .\nHis pledge Thursday came after Kenya 's former anti-corruption chief told British television that he came under high-level pressure in 2004 to abandon a fraud investigation .\tPRP$ NN NNP VBD IN NNP POS JJ NN NN VBD JJ NN IN PRP VBD IN JJ NN IN CD TO VB DT NN NN .\nThe BBC played excerpts of a tape John Githongo says he recorded when Kenya 's then-Justice Minister Kiraitu Murungi pressed him to give up the probe .\tDT NNP VBD NNS IN DT NN NNP NNP VBZ PRP VBD WRB NNP POS NNP NNP NNP NNP VBD PRP TO VB RP DT NN .\nGithongo , who left Kenya last year , has linked Murungi and other top Kenyan officials to a massive corruption scandal , known as the ' Anglo-Leasing ' affair that diverted more than $ 200 million from the government .\tNNP , WP VBD NNP JJ NN , VBZ VBN NNP CC JJ JJ JJ NNS TO DT JJ NN NN , VBN IN DT `` JJ `` NN IN VBN JJR IN $ CD CD IN DT NN .\nMurungi and the other officials deny any wrongdoing .\tNNP CC DT JJ NNS VBP DT NN .\nHowever , Kenyan anti-corruption activists say they will post the names and pictures of the accused officials in public places to maintain pressure on Mr. Kibaki .\tRB , JJ JJ NNS VBP PRP MD VB DT NNS CC NNS IN DT VBN NNS IN JJ NNS TO VB NN IN NNP NNP .\nThe U.S. military in Iraq says 17 more bodies have been discovered in the northern city of Mosul .\tDT NNP NN IN NNP VBZ CD JJR NNS VBP VBN VBN IN DT JJ NN IN NNP .\nU.S. and Iraqi officials say that in the past two weeks the bodies of more than 50 people , many of them shot execution-style , have been found in and near Mosul .\tNNP CC JJ NNS VBP IN IN DT JJ CD NNS DT NNS IN JJR IN CD NNS , NN IN PRP VBD JJ , VBP VBN VBN IN CC IN NNP .\nA U.S. military statement says 43 suspected insurgents have been taken into custody in the city since Saturday .\tDT NNP JJ NN VBZ CD JJ NNS VBP VBN VBN IN NN IN DT NN IN NNP .\nElsewhere , police say a car bomb explosion in Samarra has killed at least three civilians and wounded several others .\tRB , NNS VBP DT NN NN NN IN NNP VBZ VBN IN JJS CD NNS CC VBN JJ NNS .\nIn other developments , Iran has offered to train Iraqi border guards , as part of an effort to help Baghdad strengthen their 1,600-kilometer common border .\tIN JJ NNS , NNP VBZ VBN TO VB JJ NN NNS , IN NN IN DT NN TO VB NNP VB PRP$ JJ JJ NN .\nDeputy Interior Minister Ali Asghar Ahmadi also said Iran will host a meeting Tuesday of Arab interior ministers , aimed at finding ways to help Iraq quell the insurgency .\tNNP NNP NNP NNP NNP NNP RB VBD NNP MD VB DT NN NNP IN JJ NN NNS , VBN IN VBG NNS TO VB NNP VB DT NN .\nFormer world number one men 's tennis player Lleyton Hewitt of Australia has beaten number two Andy Roddick of the United States to reach the finals of the Tennis Masters Cup tournament in Houston , Texas .\tJJ NN NN CD NNS POS NN NN NNP NNP IN NNP VBZ VBN NN CD NNP NNP IN DT NNP NNPS TO VB DT NNS IN DT NNP NNP NNP NN IN NNP , NNP .\nHewitt took less than one hour to beat the second-seeded American in straight sets , 06-Mar , 06-Feb .\tNNP VBD JJR IN CD NN TO VB DT JJ NN IN JJ NNS , CD , CD .\nThe loss cost Roddick not only a chance at the title but also the one million dollars that goes to an undefeated champion .\tDT NN VBD NNP RB RB DT NN IN DT NN CC RB DT CD CD NNS WDT VBZ TO DT JJ NN .\nUntil Saturday , Roddick had not lost a match in round robin play .\tIN NNP , NNP VBD RB VBN DT NN IN NN NN NN .\nThe Australian faces the winner of the day 's second semifinals between world number one Roger Federer and Russian Marat Safin .\tDT NN VBZ DT NN IN DT NN POS JJ NNS IN NN NN CD NNP NNP CC JJ NNP NNP .\nFederer is also undefeated so far in this tournament and has a chance to win the million-dollar payday .\tNNP VBZ RB VBN RB RB IN DT NN CC VBZ DT NN TO VB DT JJ NN .\nThe champion is guaranteed $ 7,00,000 .\tDT NN VBZ VBN $ CD .\nIraqi police say insurgents killed at least nine people in separate attacks , while security forces and people in hospitals and detention centers cast ballots Monday , three days ahead of the main voting in parliamentary elections .\tJJ NNS VBP NNS VBD IN JJS CD NNS IN JJ NNS , IN NN NNS CC NNS IN NNS CC NN NNS VBD NNS NNP , CD NNS RB IN DT JJ NN IN JJ NNS .\nAuthorities are imposing tight security before the polls open for general balloting Thursday .\tNNS VBP VBG JJ NN IN DT NNS JJ IN JJ NN NNP .\nIraq 's borders and airports will be closed .\tNNP POS NNS CC NNS MD VB VBN .\nRoad travel will be restricted to vehicles with special permits , and curfews will be extended effective Tuesday .\tNN NN MD VB VBN TO NNS IN JJ NNS , CC NNS MD VB VBN JJ NNP .\nElection officials say Iraqi voters living outside the country will begin casting ballots Tuesday at polling stations in 15 countries , including the United States .\tNN NNS VBP JJ NNS VBG IN DT NN MD VB VBG NNS NNP IN VBG NNS IN CD NNS , VBG DT NNP NNPS .\nMeanwhile , the U.S. military says one American soldier was killed in a suicide car bomb blast in Ramadi Sunday .\tRB , DT NNP NN VBZ CD JJ NN VBD VBN IN DT NN NN NN NN IN NNP NNP .\nAnother U.S. soldier was killed in a roadside bomb blast in Baghdad today .\tDT NNP NN VBD VBN IN DT NN NN NN IN NNP NN .\nThree members of Iraq 's largest Sunni Arab political party were kidnapped and killed Friday on a Mosul street in broad daylight .\tCD NNS IN NNP POS JJS JJ JJ JJ NN VBD VBN CC VBN NNP IN DT NNP NN IN JJ NN .\nA spokesman for the Iraqi Islamic Party said the men were hanging posters urging people to vote in October 's scheduled constitutional referendum when they were abducted .\tDT NN IN DT JJ NNP NNP VBD DT NNS VBD VBG NNS VBG NNS TO VB IN NNP POS JJ JJ NN WRB PRP VBD VBN .\nThey were driven to a different part of the city , made to stand against a wall in front of a mosque and then sprayed with gunfire .\tPRP VBD VBN TO DT JJ NN IN DT NN , VBN TO VB IN DT NN IN NN IN DT NN CC RB VBD IN NN .\nSome insurgent groups have threatened to kill anyone who participates in the constitutional referendum .\tDT JJ NNS VBP VBN TO VB DT WP VBZ IN DT JJ NN .\nMeanwhile , in Baghdad , hundreds of supporters of radical Shi'ite cleric Moqtada al-Sadr demonstrated against calls for federalism in Iraq .\tRB , IN NNP , NNS IN NNS IN JJ NNP NN NNP NNP VBD IN NNS IN NN IN NNP .\nShi'ites are divided over the issue .\tNNS VBP VBN IN DT NN .\nIraq 's largest Shi'ite party , the Supreme Council for the Islamic Revolution in Iraq supports it , but several smaller groups do not .\tNNP POS JJS JJ NN , DT NNP NNP IN DT NNP NNP IN NNP VBZ PRP , CC JJ JJR NNS VBP RB .\nThe Israeli army says it is investigating allegations that soldiers used Palestinian civilians as human shields during recent operations in the West Bank town of Nablus .\tDT JJ NN VBZ PRP VBZ VBG NNS IN NNS VBD JJ NNS IN JJ NNS IN JJ NNS IN DT NNP NNP NN IN NNP .\nThe army issued a statement Friday , saying it has ordered ' an official ' investigation into the alleged misuse of civilians by soldiers .\tDT NN VBD DT NN NNP , VBG PRP VBZ VBN `` DT NN `` NN IN DT JJ NN IN NNS IN NNS .\nThe Israeli human rights group B'Tselem says Israeli soldiers , in at least two incidents , forced civilians to lead them in house-to-house searches for wanted militants .\tDT JJ JJ NNS NN NNP VBZ JJ NNS , IN IN JJS CD NNS , VBD NNS TO VB PRP IN NN NNS IN JJ NNS .\nIsraeli law bans the military from using human shields .\tJJ NN VBZ DT NN IN VBG JJ NNS .\nThe Israeli army carried out a five-day raid into Nablus that ended two weeks ago .\tDT JJ NN VBD RP DT JJ NN IN NNP WDT VBD CD NNS RB .\nDuring the incursion , soldiers shot dead one Palestinian and detained more than 10 suspected militants .\tIN DT NN , NNS VBD JJ CD NN CC VBD JJR IN CD JJ NNS .\nThe Afghan intelligence agency says officials have arrested 17 would-be suicide bombers who allegedly trained in Pakistan .\tDT JJ NN NN VBZ NNS VBP VBN CD JJ NN NNS WP RB VBN IN NNP .\nA spokesman for the intelligence agency says security agents detained the suspects before they had a chance to strike targets in Afghanistan .\tDT NN IN DT NN NN VBZ NN NNS VBD DT NNS IN PRP VBD DT NN TO VB NNS IN NNP .\nHe says the detainees told authorities they had attended militant training camps in neighboring Pakistan .\tPRP VBZ DT NNS VBD NNS PRP VBD VBN JJ NN NNS IN VBG NNP .\nThe Afghan spokesman says militants in Pakistan encourage fighters to carry out suicide attacks by telling them Islam is in danger in Afghanistan .\tDT JJ NN VBZ NNS IN NNP VBP NNS TO VB RP NN NNS IN VBG PRP NNP VBZ IN NN IN NNP .\nPakistani and Afghan authorities have accused each other of not doing enough to combat the Taleban-led insurgency in Afghanistan .\tJJ CC JJ NNS VBP VBN DT NN IN RB VBG RB TO VB DT JJ NN IN NNP .\nPresident Bush will highlight economic progress in Iraq during a speech he is set to give shortly Wednesday in Washington .\tNNP NNP MD VB JJ NN IN NNP IN DT NN PRP VBZ VBN TO VB RB NNP IN NNP .\nIn his address before the Council on Foreign Relations , Mr. Bush is expected to discuss U.S. efforts in rebuilding Iraq 's schools , hospitals and infrastructure , as well as creating new businesses .\tIN PRP$ NN IN DT NNP IN NNP NNP , NNP NNP VBZ VBN TO VB NNP NNS IN VBG NNP POS NNS , NNS CC NN , RB RB IN VBG JJ NNS .\nWednesday 's speech is the second in a series of addresses defending the administration 's Iraq war policy .\tNNP POS NN VBZ DT NN IN DT NN IN NNS VBG DT NN POS NNP NN NN .\nMr. Bush 's approval ratings have dropped to the lowest of his presidency , thanks in part to the continued insurgency in Iraq that has claimed the lives of more than 2,000 U.S. service members .\tNNP NNP POS NN NNS VBP VBN TO DT JJS IN PRP$ NN , NNS IN NN TO DT JJ NN IN NNP WDT VBZ VBN DT NNS IN JJR IN CD NNP NN NNS .\nSeveral Democratic lawmakers sent a letter to the president Tuesday , urging him to put public relations aside in today 's speech and present what they termed a ' real ' strategy for success , naming specific benchmarks by which progress can be measured .\tJJ JJ NNS VBD DT NN TO DT NN NNP , VBG PRP TO VB JJ NNS RB IN NN POS NN CC VB WP PRP VBD DT `` JJ `` NN IN NN , VBG JJ NNS IN WDT NN MD VB VBN .\nThe deputy leader of the Yemeni branch of al-Qaida has called for new attacks on U.S. interests .\tDT JJ NN IN DT JJ NN IN NNP VBZ VBN IN JJ NNS IN NNP NNS .\nSaid al-Shihri made the threat in an audio message posted Monday on a website used by Islamic extremists .\tNNP NNP VBD DT NN IN DT NN NN VBN NNP IN DT NN VBN IN JJ NNS .\nHe said attacks should be launched against American interests everywhere .\tPRP VBD NNS MD VB VBN IN JJ NNS RB .\nAl-Shihri accused Saudi Arabia and Egypt of , in his words , ' preserving the interests of Jews and Christians ' by providing them with oil and giving them access to waters surrounding the Arabian peninsula .\tNNP VBD NNP NNP CC NNP IN , IN PRP$ NNS , `` VBG DT NNS IN NNPS CC NNPS `` IN VBG PRP IN NN CC VBG PRP NN TO NNS VBG DT JJ NN .\nHe also praised Nigerian Umar Farouk Abdulmutallab for his failed attempt to blow up a passenger jet over the U.S. city of Detroit on Christmas Day .\tPRP RB VBD JJ NNP NNP NNP IN PRP$ JJ NN TO VB RP DT NN NN IN DT NNP NN IN NNP IN NNP NNP .\nAbdulmutallab , who is in U.S. custody , has said he was trained by al-Qaida operatives in Yemen .\tNNP , WP VBZ IN NNP NN , VBZ VBN PRP VBD VBN IN NNP NNS IN NNP .\nAl-Shihri is a former inmate at the U.S. prison at Guantanamo Bay , Cuba .\tNNP VBZ DT JJ NN IN DT NNP NN IN NNP NNP , NNP .\nU.S. President Barack Obama is using his weekly address Saturday to lead America in honoring the country 's fallen military personnel for the Memorial Day holiday .\tNNP NNP NNP NNP VBZ VBG PRP$ JJ NN NNP TO VB NNP IN VBG DT NN POS JJ JJ NNS IN DT NNP NNP NN .\nMr. Obama called on Americans to pay tribute to fallen veterans with more than words .\tNNP NNP VBD IN NNS TO VB NN TO JJ NNS IN JJR IN NNS .\nThe comments come ahead of Memorial Day , a national holiday that takes place on the last Monday of May each year .\tDT NNS VBP RB IN NNP NNP , DT JJ NN WDT VBZ NN IN DT JJ NNP IN NNP DT NN .\nMr. Obama says Americans should make sure that members of armed forces have all the support they need , and that military veterans receive appropriate care and assistance .\tNNP NNP VBZ NNS MD VB JJ IN NNS IN JJ NNS VBP PDT DT NN PRP VBP , CC IN JJ NNS VBP JJ NN CC NN .\nThe president summed up his address by saying Americans should serve everyone who has ever worn an American military uniform as well as they have served Americans .\tDT NN VBD RP PRP$ NN IN VBG NNS MD VB DT WP VBZ RB VBN DT JJ JJ NN RB RB IN PRP VBP VBN NNS .\nMemorial Day also is the unofficial start of the summer season in the U.S.\tNNP NNP RB VBZ DT JJ NN IN DT NN NN IN DT NNP\nMany Americans spend the day enjoying barbecues and other outdoor activities .\tJJ NNS VBP DT NN VBG NNS CC JJ JJ NNS .\nAuthorities in the northern Indian state of Uttar Pradesh say at least 11 people were killed Sunday afternoon when a bus packed with passengers veered off a road and plunged into a canal .\tNNS IN DT JJ JJ NN IN NNP NNP VBP IN JJS CD NNS VBD VBN NNP NN WRB DT NN VBN IN NNS VBN IN DT NN CC VBD IN DT NN .\nThe authorities say the accident happened in the Bulandshahr district after the driver lost control of the vehicle .\tDT NNS VBP DT NN VBD IN DT NNP NN IN DT NN VBD NN IN DT NN .\nThey say 11 bodies have been recovered by rescue workers , but cautioned the death toll could rise .\tPRP VBP CD NNS VBP VBN VBN IN NN NNS , CC VBD DT NN NN MD VB .\nThe rescue operation continued into the night .\tDT NN NN VBD IN DT NN .\nIndia is plagued by traffic accidents due to poorly maintained vehicles and roads , and hazardous driving .\tNNP VBZ VBN IN NN NNS JJ TO RB VBN NNS CC NNS , CC JJ NN .\nEgyptian officials say the ruling National Democratic Party has won about 70 percent of seats at stake in the first round of parliamentary voting .\tJJ NNS VBP DT NN NNP NNP NNP VBZ VBN IN CD NN IN NNS IN NN IN DT JJ NN IN JJ NN .\nJustice Minister Mahmoud Abu el-Leil says the ruling party claimed 112 seats , and the banned Muslim Brotherhood won 34 seats , more than doubling its presence .\tNNP NNP NNP NNP NNP VBZ DT VBG NN VBD CD NNS , CC DT VBN NNP NNP VBD CD NNS , JJR IN VBG PRP$ NN .\nHe said independent groups won 13 seats , and opposition candidates took five others .\tPRP VBD JJ NNS VBD CD NNS , CC NN NNS VBD CD NNS .\nElection monitors have said the vote earlier this month was marred by violence , vote buying and voter registration fraud .\tNN NNS VBP VBN DT NN RBR DT NN VBD VBN IN NN , NN NN CC NN NN NN .\nEgypt is to hold a second round of voting Sunday , and the third and final stage on December first .\tNNP VBZ TO VB DT JJ NN IN NN NNP , CC DT JJ CC JJ NN IN NNP NN .\nThe ruling party is expected to retain control over the 454-member parliament , where it holds 90 percent of the seats .\tDT NN NN VBZ VBN TO VB NN IN DT JJ NN , WRB PRP VBZ CD NN IN DT NNS .\nTibet 's exiled spiritual leader is set to begin five days of talks with the public in the British city of Nottingham .\tNNP POS JJ JJ NN VBZ VBN TO VB CD NNS IN NNS IN DT NN IN DT JJ NN IN NNP .\nThe Dalai Lama says the focus of the conference is to explain Buddhist spiritual values and help teach people how to lead a happy life .\tDT NNP NNP VBZ DT NN IN DT NN VBZ TO VB NNP JJ NNS CC VB VB NNS WRB TO VB DT JJ NN .\nHe says the talks are designed to help everyone , including members of other faiths and atheists .\tPRP VBZ DT NNS VBP VBN TO VB DT , VBG NNS IN JJ NNS CC NNS .\nHe also plans to talk about environmental matters .\tPRP RB VBZ TO VB IN JJ NNS .\nThe Dalai Lama arrived in Nottingham Friday after meeting with British Prime Minister Gordon Brown at London 's Lambeth Palace .\tDT NNP NNP VBD IN NNP NNP IN VBG IN NNP NNP NNP NNP NNP IN NNP POS NNP NNP .\nMr. Brown pledged to work for reconciliation between China and the people of Tibet .\tNNP NNP VBD TO VB IN NN IN NNP CC DT NNS IN NNP .\nChina Saturday criticized the meeting , saying Britain is interfering in China 's internal affairs .\tNNP NNP VBD DT NN , VBG NNP VBZ VBG IN NNP POS JJ NNS .\nThe Tibetan leader Thursday told British lawmakers their country is not doing enough to support Tibetans he says face ' cultural genocide ' at the hands of the Chinese .\tDT JJ NN NNP VBD JJ NNS PRP$ NN VBZ RB VBG RB TO VB NNS PRP VBZ NN `` JJ NN `` IN DT NNS IN DT NNS .\nSouth Korean state auditors questioned disgraced cloning scientist Hwang Woo-suk Friday about his possible misappropriation of state funds .\tJJ JJ NN NNS VBD JJ NN NN NNP NNP NNP IN PRP$ JJ NN IN NN NNS .\nHwang and his research team had received more than $ 45 million in state funding and private donations for research over the past decade .\tNNP CC PRP$ NN NN VBD VBN JJR IN $ CD CD IN NN NN CC JJ NNS IN NN IN DT JJ NN .\nThe interrogation comes two days after prosecutors said Hwang had made FALSE claims about creating patient-specific stem cells .\tDT NN VBZ CD NNS IN NNS VBD NNP VBD VBN JJ NNS IN VBG JJ NN NNS .\nHwang has already been questioned by a Seoul National University panel , which earlier this month said the veterinarian had fabricated results published in landmark 2004 and 2005 papers in the international journal Science .\tNNP VBZ RB VBN VBN IN DT NNP NNP NNP NN , WDT RBR DT NN VBD DT NN VBD VBN NNS VBN IN NN CD CC CD NNS IN DT JJ NN NN .\nHwang has admitted to fraud in his papers , but says he was the victim of a conspiracy to discredit him .\tNNP VBZ VBN TO NN IN PRP$ NNS , CC VBZ PRP VBD DT NN IN DT NN TO VB PRP .\nHe accuses junior scientists of deceiving him about research data .\tPRP VBZ JJ NNS IN VBG PRP IN NN NNS .\nThe Olympic torch relay has resumed after a three-day suspension to mark the official mourning period for victims of last week 's devastating earthquake in Sichuan province .\tDT NNP NN NN VBZ VBN IN DT JJ NN TO VB DT JJ NN NN IN NNS IN JJ NN POS JJ NN IN NNP NN .\nThe torch relay resumed Thursday in China 's eastern port city , Ningbo , with a minute of silence in honor of the more than 80,000 who are dead or missing .\tDT NN NN VBD NNP IN NNP POS JJ NN NN , NNP , IN DT NN IN NN IN NN IN DT JJR IN CD WP VBP JJ CC JJ .\nAfter Ningbo , the torch will travel to Shanghai .\tIN NNP , DT NN MD VB TO NNP .\nOrganizers of the Beijing Olympics say they plan to scale back the celebratory tone of the relay .\tNNS IN DT NNP NNS VBP PRP VBP TO VB RP DT JJ NN IN DT NN .\nThe epicenter of the May 12 7.9 magnitude earthquake was in Sichuan , and most of the confirmed deaths from the quake are there .\tDT NN IN DT NNP CD CD NN NN VBD IN NNP , CC JJS IN DT VBN NNS IN DT NN VBP RB .\nOrganizers say the torch will still travel through Sichuan province , but later than planned to avoid hampering rescue efforts .\tNNS VBP DT NN MD RB VB IN NNP NN , CC RB IN VBN TO VB VBG NN NNS .\nThe Sichuan leg of the relay was originally planned for mid-June , but has now been put off until early August - August 3 to August 5 .\tDT JJ NN IN DT NN VBD RB VBN IN NNP , CC VBZ RB VBN VBN RP IN JJ NNP IN NNP CD TO NNP CD .\nSome 200 Palestinian women have marched to demand the release of Hamas supporters from jails in the West Bank .\tDT CD JJ NNS VBP VBN TO VB DT NN IN NNP NNS IN NNS IN DT NNP NNP .\nProtesters wearing veils and chanting ' God is great ' gathered Saturday in the West Bank city of Ramallah .\tNNS VBG NNS CC VBG `` NNP VBZ JJ `` VBD NNP IN DT NNP NNP NN IN NNP .\nThey included wives , mothers and daughters of imprisoned Hamas supporters .\tPRP VBD NNS , NNS CC NNS IN JJ NNP NNS .\nScuffles broke out when police tried to block the women from gathering in Ramallah 's main square .\tNNS VBD RP WRB NNS VBD TO VB DT NNS IN NN IN NNP POS JJ NN .\nAt least one of the protesters was detained .\tIN JJS CD IN DT NNS VBD VBN .\nSecurity forces loyal to Palestinian President Mahmoud Abbas have arrested scores of Hamas supporters in the West Bank since Hamas took control of the Gaza Strip by force in June .\tNN NNS JJ TO JJ NNP NNP NNP VBP VBN NNS IN NNP NNS IN DT NNP NNP IN NNP VBD NN IN DT NNP NNP IN NN IN NNP .\nMr. Abbas heads the Fatah faction , which is a fierce rival of Hamas .\tNNP NNP VBZ DT NNP NN , WDT VBZ DT JJ NN IN NNP .\nPresident Bush says Afghanistan and Iraq are making progress in the war on terrorism .\tNNP NNP VBZ NNP CC NNP VBP VBG NN IN DT NN IN NN .\nIn his weekly radio address Saturday , Mr. Bush talked about his meeting with Afghanistan 's President Hamid Karzai at Camp David earlier this week .\tIN PRP$ JJ NN NN NNP , NNP NNP VBD IN PRP$ NN IN NNP POS NNP NNP NNP IN NNP NNP RBR DT NN .\nHe said President Karzai told him officials from Afghanistan and Pakistan have been meeting to discuss how to deal with extremists who are targeting both their countries .\tPRP VBD NNP NNP VBD PRP NNS IN NNP CC NNP VBP VBN VBG TO VB WRB TO VB IN NNS WP VBP VBG DT PRP$ NNS .\nRegarding Iraq , Mr. Bush said his ' troop surge , ' a buildup of U.S. forces in Iraq since the beginning of this year , is helping coalition troops seize the initiative from the enemy and give it to the Iraqi people , although he admitted political progress has been slower than hoped .\tVBG NNP , NNP NNP VBD PRP$ `` NN NN , `` DT NN IN NNP NNS IN NNP IN DT NN IN DT NN , VBZ VBG NN NNS VBP DT NN IN DT NN CC VB PRP TO DT JJ NNS , IN PRP VBD JJ NN VBZ VBN JJR IN VBN .\nHe said since January , each month coalition forces have killed or captured an average of more than 1,500 al-Qaida terrorists and enemies of the Iraqi government .\tPRP VBD IN NNP , DT NN NN NNS VBP VBN CC VBN DT NN IN JJR IN CD NNP NNS CC NNS IN DT JJ NN .\nLebanese prosecutors have issued charges against four pro-Syrian generals in connection with the February assassination of former Lebanese Prime Minister Rafik Hariri .\tJJ NNS VBP VBN NNS IN CD JJ NNS IN NN IN DT NNP NN IN JJ JJ NNP NNP NNP NNP .\nOfficials say the charges were brought on the recommendation of the head of the U.N. team investigating the killing .\tNNS VBP DT NNS VBD VBN IN DT NN IN DT NN IN DT NNP NN VBG DT NN .\nDetlev Mehlis says he believes the four - a top aide to pro-Syrian President Emile Lahoud and three former generals - were involved in planning the assassination .\tNNP NNP VBZ PRP VBZ DT CD IN DT JJ NN TO JJ NNP NNP NNP CC CD JJ NNS : VBD VBN IN VBG DT NN .\nThe U.N. investigator said he believes more people were involved in the killing .\tDT NNP NN VBD PRP VBZ JJR NNS VBD VBN IN DT NN .\nMr. Mehlis said he has not yet uncovered any Syrian links to the February 14 bombing that killed Mr. Hariri and 20 others in Beirut .\tNNP NNP VBD PRP VBZ RB RB VBN DT JJ NNS TO DT NNP CD NN WDT VBD NNP NNP CC CD NNS IN NNP .\nHe also emphasized that Lebanon 's President Lahoud is not a suspect .\tPRP RB VBD IN NNP POS NNP NNP VBZ RB DT NN .\nAfghan officials say Taliban gunmen have shot and killed a tribal elder and his son , who was a former bodyguard for President Hamid Karzai .\tJJ NNS VBP NNP NNS VBP VBN CC VBN DT JJ NN CC PRP$ NN , WP VBD DT JJ NN IN NNP NNP NNP .\nThe two victims were shot to death as they left Saturday 's morning prayers at a mosque in the southern province of Kandahar Mr. Karzai condemned the attack as an affront to Islam .\tDT CD NNS VBD VBN TO NN IN PRP VBD NNP POS NN NNS IN DT NN IN DT JJ NN IN NNP NNP NNP VBD DT NN IN DT NN TO NNP .\nIn a separate development , three people were killed in a roadside bomb blast in the eastern province of Paktika .\tIN DT JJ NN , CD NNS VBD VBN IN DT NN NN NN IN DT JJ NN IN NNP .\nAlso , NATO officials say a suicide car bomber struck an international military convoy in western Afghanistan , wounding at least four foreign troops .\tRB , NNP NNS VBP DT NN NN NN VBD DT JJ JJ NN IN JJ NNP , VBG IN JJS CD JJ NNS .\nElsewhere , officials say NATO forces killed 19 suspected militants in an overnight operation in central Wardak province .\tRB , NNS VBP NNP NNS VBD CD JJ NNS IN DT JJ NN IN JJ NNP NN .\nNATO officials also say they have launched an investigation into a recent NATO air strike against Taliban militants , in which Afghan officials say at least 17 civilians were killed .\tNNP NNS RB VBP PRP VBP VBN DT NN IN DT JJ NNP NN NN IN NNP NNS , IN WDT JJ NNS VBP IN JJS CD NNS VBD VBN .\nAmerican skier Daron Rahlves has won his third World Cup men 's downhill race of the season by beating Austrian Michael Walchhofer in Wengen , Switzerland .\tJJ NN NNP NNP VBZ VBN PRP$ JJ NNP NNP NNS POS NN NN IN DT NN IN VBG JJ NNP NNP IN NNP , NNP .\nRahlves finished the 4,480 meter Lauberhorn course in two minutes , 30.54 seconds .\tNNP VBD DT CD NN NNP NN IN CD NNS , CD NNS .\nWalchhofer was second , 0.4 seconds behind .\tNNP VBD JJ , CD NNS IN .\nAustrian teammate and 2002 Olympic champion Fritz Strobl finished third , 1.06 seconds behind the American .\tJJ NN CC CD NNP NN NNP NNP VBD JJ , CD NNS IN DT NNP .\nReigning World Cup overall champion Bode Miller of the United States finished 11th , nearly 2.5 seconds behind Rahlves .\tVBG NNP NNP JJ NN NNP NNP IN DT NNP NNPS VBD CD , RB CD NNS IN NNP .\nMiller was supposed to start the race in the 27th slot but was dropped to 31st after he did not show up for a mandatory bib presentation ceremony Friday night .\tNNP VBD VBN TO VB DT NN IN DT JJ NN CC VBD VBN TO CD IN PRP VBD RB VB RP IN DT JJ NN NN NN NNP NN .\nBenjamin Raich of Austria retained the overall World Cup lead with 706 points .\tNNP NNP IN NNP VBD DT JJ NNP NNP NN IN CD NNS .\nWalchhofer is second 106 points back with Rahlves third ( 589 points ) .\tNNP VBZ JJ CD NNS RB IN NNP JJ LRB CD NNS RRB .\nVenezuelan President Hugo Chavez says a dispute with Colombia regarding the capture of a Colombian leftist rebel leader on Venezuelan soil is - quote - ' practically over . '\tJJ NNP NNP NNP VBZ DT NN IN NNP VBG DT NN IN DT JJ JJ NN NN IN JJ NN VBZ IN NN : `` RB IN . ``\nPresident Chavez also said Tuesday he expects a meeting with Colombian President Alvaro Uribe Thursday in Caracas to be - in his words - ' very fruitful . '\tNNP NNP RB VBD NNP PRP VBZ DT NN IN JJ NNP NNP NNP NNP IN NNP TO VB : IN PRP$ NNS : `` RB JJ . ``\nVenezuela 's ambassador to Colombia returned to Bogota Monday after being recalled during the dispute .\tNNP POS NN TO NNP VBD TO NNP NNP IN VBG VBN IN DT NN .\nMr. Chavez also says he will accept the new Colombian ambassador 's credentials after months of delays .\tNNP NNP RB VBZ PRP MD VB DT JJ JJ NN POS NNS IN NNS IN NNS .\nLast week , Colombia announced the end of the dispute over the seizure of Rodrigo Granda , a member of the Revolutionary Armed Forces of Colombia , or FARC .\tJJ NN , NNP VBD DT NN IN DT NN IN DT NN IN NNP NNP , DT NN IN DT NNP NNP NNS IN NNP , CC NNP .\nColombia said it paid bounty hunters to capture Mr. Granda in Caracas in December .\tNNP VBD PRP VBD NN NNS TO VB NNP NNP IN NNP IN NNP .\nVenezuela accused Colombia of violating its sovereignty in what it says was a kidnapping .\tNNP VBD NNP IN VBG PRP$ NN IN WP PRP VBZ VBD DT NN .\nThe Chinese city of Tianjin has ordered 40 factories to close for nearly two months in an effort to cut air pollution for the Beijing Olympics .\tDT JJ NN IN NNP VBZ VBN CD NNS TO VB IN RB CD NNS IN DT NN TO VB NN NN IN DT NNP NNPS .\nTianjin , a port city about 150 kilometers southeast of Beijing , will host some of the Olympic soccer matches .\tNNP , DT JJ NN IN CD NNS NN IN NNP , MD VB DT IN DT NNP NN NNS .\nThe city ordered the factories to close from July 25 through September 20 .\tDT NN VBD DT NNS TO VB IN NNP CD IN NNP CD .\nThe city has also banned work on major construction sites during the same period .\tDT NN VBZ RB VBN NN IN JJ NN NNS IN DT JJ NN .\nBeijing has taken similar efforts to improve air quality , including an ' even-odd ' system based on license plates which aims to take half the city 's cars off the roads ahead of the Games .\tNNP VBZ VBN JJ NNS TO VB NN NN , VBG DT `` JJ `` NN VBN IN NN NNS WDT VBZ TO VB PDT DT NN POS NNS IN DT NNS RB IN DT NNPS .\nA deputy governor has been shot and wounded in the latest violence to hit strife-torn southern Thailand .\tDT NN NN VBZ VBN VBN CC VBN IN DT JJS NN TO VB JJ JJ NNP .\nAuthorities say the deputy governor of Pattani province , Soonthorn Rittipakdee , was visiting the scene of a previous shooting Tuesday when he was wounded .\tNNS VBP DT NN NN IN NNP NN , NNP NNP , VBD VBG DT NN IN DT JJ NN NNP WRB PRP VBD VBN .\nMr. Soonthorn was taken to a provincial hospital after the shooting .\tNNP NNP VBD VBN TO DT JJ NN IN DT NN .\nPolice say he should survive the attack .\tNNS VBP PRP MD VB DT NN .\nThai Prime Minister Thaksin Shinawatra said he believed the shooting was an accident , but did not elaborate .\tJJ NNP NNP NNP NNP VBD PRP VBD DT NN VBD DT NN , CC VBD RB VB .\nMr. Soonthorn is believed to be one of the highest-ranking casualties of sectarian violence that has claimed the lives of hundreds of people in southern Thailand since January .\tNNP NNP VBZ VBN TO VB CD IN DT JJ NNS IN JJ NN WDT VBZ VBN DT NNS IN NNS IN NNS IN JJ NNP IN NNP .\nThe southern Thai provinces of Yala , Pattani and Narathiwat are the only Muslim-majority areas in the mostly Buddhist nation .\tDT JJ JJ NNS IN NNP , NNP CC NNP VBP DT RB JJ NNS IN DT RB JJ NN .\nBritish voters are casting ballots Thursday in local and regional elections widely seen as a referendum on Prime Minister Tony Blair 's decade in office .\tJJ NNS VBP VBG NNS NNP IN JJ CC JJ NNS RB VBN IN DT NN IN NNP NNP NNP NNP POS NN IN NN .\nVoters are choosing local councils in England and Scotland .\tNNS VBP VBG JJ NNS IN NNP CC NNP .\nVoters in Scotland and Wales are also choosing members of their national legislatures .\tNNS IN NNP CC NNP VBP RB VBG NNS IN PRP$ JJ NNS .\nIn Scotland , the pro-independence Scottish National Party has promised to hold a referendum on independence from Britain if it gains power .\tIN NNP , DT NN NNP NNP NNP VBZ VBN TO VB DT NN IN NN IN NNP IN PRP VBZ NN .\nMany analysts predict Britain 's Labor Party will suffer significant losses Thursday , because of widespread opposition to Mr. Blair 's support for the U.S.-led invasion of Iraq , and discontent over several domestic scandals implicating the ruling party .\tJJ NNS VBP NNP POS NNP NNP MD VB JJ NNS NNP , IN IN JJ NN TO NNP NNP POS NN IN DT JJ NN IN NNP , CC NN IN JJ JJ NNS VBG DT NN NN .\nMr. Blair is Labor 's longest-serving prime minister .\tNNP NNP VBZ NNP POS JJ JJ NN .\nHe has said he will make a definitive statement next week on when he plans to leave office .\tPRP VBZ VBN PRP MD VB DT JJ NN JJ NN IN WRB PRP VBZ TO VB NN .\nViolence on both sides of the Arab-Israeli conflict killed at least three people Friday .\tNN IN DT NNS IN DT JJ NN VBN IN JJS CD NNS NNP .\nIsraeli military officials say Palestinian gunmen ambushed a car outside the West Bank city of Nablus , killing one Israeli and wounding three others .\tJJ JJ NNS VBP JJ NNS VBD DT NN IN DT NNP NNP NN IN NNP , VBG CD NN CC VBG CD NNS .\nThe militant group , Al Aqsa Martyrs Brigades , has claimed responsibility for the attack .\tDT JJ NN , NNP NNP NNP NNP , VBZ VBN NN IN DT NN .\nIn Gaza , Israeli tank fire killed a young Palestinian man in unclear circumstances .\tIN NNP , JJ NN NN VBD DT JJ JJ NN IN JJ NNS .\nEarlier , another Palestinian was shot and killed by Israeli soldiers while trying to enter the Jewish settlement of Ganei Tal in the southern Gaza Strip .\tRB , DT NN VBD VBN CC VBN IN JJ NNS IN VBG TO VB DT JJ NN IN NNP NNP IN DT JJ NNP NNP .\nIt was not clear if the man was armed .\tPRP VBD RB JJ IN DT NN VBD VBN .\nOn Thursday , Israeli troops killed a Palestinian gunman as he attempted to infiltrate the same settlement , in a botched attack that was claimed by the militant group , Hamas .\tIN NNP , JJ NNS VBD DT JJ NN IN PRP VBD TO VB DT JJ NN , IN DT JJ NN WDT VBD VBN IN DT JJ NN , NNP .\nThe U.S. television network Fox has identified two of its employees who were kidnapped by Palestinian gunmen in the Gaza Strip Monday .\tDT NNP NN NN NNP VBZ VBN CD IN PRP$ NNS WP VBD VBN IN JJ NNS IN DT NNP NNP NNP .\nA Fox spokesman named American correspondent Steve Centanni and cameraman Olaf Wiig from New Zealand .\tDT NNP NN VBD JJ NN NNP NNP CC NN NNP NNP IN NNP NNP .\nWitnesses say the two were taken away by gunman after their car was intercepted in Gaza City .\tNNS VBP DT CD VBD VBN RB IN NN IN PRP$ NN VBD VBN IN NNP NNP .\nMeanwhile , witnesses say an Israeli airstrike in Gaza has destroyed an empty house .\tRB , NNS VBP DT JJ NN IN NNP VBZ VBN DT JJ NN .\nThe Israeli military said it was targeting a command center of the Islamic Jihad militant group , and had warned residents of the house before the airstrike took place .\tDT JJ NN VBD PRP VBD VBG DT NN NN IN DT NNP NNP JJ NN , CC VBD VBN NNS IN DT NN IN DT NN VBD NN .\nEarlier , Palestinian hospital officials said an Israeli military strike in northern Gaza killed three Palestinians , including a teenage boy .\tRB , JJ NN NNS VBD DT JJ JJ NN IN JJ NNP VBD CD NNS , VBG DT NN NN .\nIsrael 's military says it targeted Palestinian militants in the area after they fired two rockets at the Israeli city of Ashkelon .\tNNP POS JJ VBZ PRP JJ JJ NNS IN DT NN IN PRP VBD CD NNS IN DT JJ NN IN NNP .\nIslamic Jihad claimed responsibility for the rocket attack , which did not cause any casualties .\tNNP NNP VBD NN IN DT NN NN , WDT VBD RB VB DT NNS .\nIran has denied allegations that it has a secret nuclear weapons facility .\tNNP VBZ VBN NNS IN PRP VBZ DT JJ JJ NNS NN .\nIranian officials say the claim by the opposition National Council of Resistance of Iran is a lie .\tJJ NNS VBP DT NN IN DT NN NNP NNP IN NNP IN NNP VBZ DT NN .\nThey say the group is trying to negate the progress Iran recently made with European negotiators by agreeing to suspend uranium enrichment .\tPRP VBP DT NN VBZ VBG TO VB DT NN NNP RB VBD IN JJ NNS IN VBG TO VB NN NN .\nTehran says the facility in question is only used to generate electricity .\tNNP VBZ DT NN IN NN VBZ RB VBN TO VB NN .\nMeanwhile , the Washington Post is reporting that U.S. Secretary of State Colin Powell 's claim that Iran could be developing nuclear-capable missiles was based on intelligence that was classified and based on what it called an ' unvetted , single source . '\tRB , DT NNP NNP VBZ VBG IN NNP NNP IN NNP NNP NNP POS NN IN NNP MD VB VBG JJ NNS VBD VBN IN NN WDT VBD VBN CC VBN IN WP PRP VBD DT `` JJ , JJ NN . ``\nMr. Powell said Wednesday that intelligence indicates Iran is trying to modify its missiles to carry nuclear warheads , but did not elaborate .\tNNP NNP VBD NNP IN NN VBZ NNP VBZ VBG TO VB PRP$ NNS TO VB JJ NNS , CC VBD RB VB .\nBrazil 's Foreign Ministry says deposed Ecuadorean President Lucio Gutierrez is expected to leave Ecuador Sunday for exile in Brazil .\tNNP POS NNP NNP VBZ VBN NNP NNP NNP NNP VBZ VBN TO VB NNP NNP IN NN IN NNP .\nOfficials said Saturday a Brazilian air force passenger jet is expected to head for Quito within hours .\tNNS VBD NNP DT JJ NN NN NN NN VBZ VBN TO VB IN NNP IN NNS .\nMr. Gutierrez has been at the Brazilian ambassador 's residence since his ouster on Wednesday .\tNNP NNP VBZ VBN IN DT JJ NN POS NN IN PRP$ NN IN NNP .\nEarlier , Brazil said it was waiting for the right security conditions to fly Mr. Gutierrez out of Ecuador .\tRB , NNP VBD PRP VBD VBG IN DT JJ NN NNS TO VB NNP NNP IN IN NNP .\nAngry protesters have camped outside the residence to demand he face justice .\tNNP NNS VBP VBN IN DT NN TO VB PRP VB NN .\nA prosecutor has called for the deposed president 's arrest for the deaths of two people killed during recent violent protests .\tDT NN VBZ VBN IN DT VBN NN POS NN IN DT NNS IN CD NNS VBN IN JJ JJ NNS .\nEcuador 's political crisis began in December , when lawmakers dismissed 27 of the 31 Supreme Court justices after Mr. Gutierrez accused them of bias against him .\tNNP POS JJ NN VBD IN NNP , WRB NNS VBD CD IN DT CD NNP NNP NNS IN NNP NNP VBD PRP IN NN IN PRP .\nChina 's state media report the environmental impact of the Three Gorges Dam project may force four million more people to relocate from the area .\tNNP POS NN NNS VBP DT JJ NN IN DT CD NNP NNP NN MD VB CD CD JJR NNS TO VB IN DT NN .\nFriday 's reports say residents near the dam will be encouraged to move to the outskirts of the nearby city of Chongqing in southwestern China .\tNNP POS NNS VBP NNS IN DT NN MD VB VBN TO VB TO DT NNS IN DT JJ NN IN VBG IN JJ NNP .\nNearly 1.5 million people have already been displaced to make way for the world 's biggest hydroelectric project .\tRB CD CD NNS VBP RB VBN VBN TO VB NN IN DT NN POS JJS JJ NN .\nThe reports quote Chongqing 's Vice Mayor Yu Yuanmu as saying the reservoir area near the dam has a vulnerable environment that is threatened by overpopulation .\tDT NNS VBP NNP POS NNP NNP NNP NNP IN VBG DT NN NN IN DT NN VBZ DT JJ NN WDT VBZ VBN IN NN .\nLast month , Chinese media reports said the project had created potentially catastrophic environmental problems , including flooding and land erosion .\tJJ NN , JJ NNS NNS VBD DT NN VBD VBN RB JJ JJ NNS , VBG NN CC NN NN .\nEnvironmentalists , who have long condemned the project , say the dam 's reservoir will likely become heavily polluted with industrial waste .\tNNS , WP VBP RB VBN DT NN , VBP DT NN POS NN MD RB VB RB JJ IN JJ NN .\nDelegates from 57 Muslim countries will discuss the challenges and dangers of Islamic extremism when they meet Wednesday at the Organization of Islamic Conference summit in Saudi Arabia .\tNNS IN CD NNP NNS MD VB DT NNS CC NNS IN JJ NN WRB PRP VBP NNP IN DT NNP IN NNP NNP NN IN NNP NNP .\nRepresentatives began discussing the agenda Tuesday in the Red Sea city of Jeddah , with plans to combat terrorism high on the list .\tNNS VBD VBG DT NN NNP IN DT NNP NNP NN IN NNP , IN NNS TO VB NN NN IN DT NN .\nOIC Secretary-General Ekmeleddin Ihsanoglu , who is from Turkey , proposed a plan to restructure the 36-year-old organization over the next ten years .\tNNP NNP NNP NNP , WP VBZ IN NNP , VBD DT NN TO VB DT JJ NN IN DT JJ JJ NNS .\nThe so-called ' 10 Year Program of Action ' calls for decisive cooperation to deal with political , socio-economic , cultural and scientific challenges that weaken Islamic nations .\tDT JJ `` CD NN NN IN NNP `` VBZ IN JJ NN TO VB IN JJ , JJ , JJ CC JJ NNS WDT VBP JJ NNS .\nThe summit begins Wednesday in the Muslim holy city of Mecca .\tDT NN VBZ NNP IN DT NNP JJ NN IN NNP .\nIranian health officials have begun slaughtering thousands of birds along the country 's border with Turkey , in an attempt to prevent the spread of avian flu .\tJJ NN NNS VBP VBN VBG NNS IN NNS IN DT NN POS NN IN NNP , IN DT NN TO VB DT NN IN JJ NN .\nThe move reported Saturday comes as the disease continues to spread in Turkey .\tDT NN VBD NNP VBZ IN DT NN VBZ TO VB IN NNP .\nThree children died of bird flu there last week , and 15 more people have been diagnosed with the disease .\tCD NNS VBD IN NN NN RB JJ NN , CC CD JJR NNS VBP VBN VBN IN DT NN .\nIn Ankara , government ministers and representatives of the poultry industry are discussing how to minimize the economic effects of the bird flu outbreak .\tIN NNP , NN NNS CC NNS IN DT NN NN VBP VBG WRB TO VB DT JJ NNS IN DT NN NN NN .\nIndustry experts say poultry sales in the country have dropped by 70 percent since the deadly H5N1 strain of bird flu was reported in humans in Turkey late last month - the first bird flu deaths outside Asia .\tNN NNS VBP NN NNS IN DT NN VBP VBN IN CD NN IN DT JJ NNP NN IN NN NN VBD VBN IN NNS IN NNP RB JJ NN IN DT JJ NN NN NNS IN NNP .\nMeanwhile , Belgian health officials said a Russian journalist hospitalized in Brussels for suspected bird flu has been tested and shows no sign of the disease .\tRB , JJ NN NNS VBD DT JJ NN VBN IN NNP IN JJ NN NN VBZ VBN VBN CC VBZ DT NN IN DT NN .\nPolish President Lech Kaczynski has called the roof collapse at an exhibition hall the worst tragedy to strike post-communist Poland .\tJJ NNP NNP NNP VBZ VBN DT NN NN IN DT NN NN DT JJS NN TO VB JJ NNP .\nSixty-six people were killed and at least 141 others injured when the roof of an exhibition hall in the city of Katowice caved in Saturday evening .\tCD NNS VBD VBN CC IN JJS CD NNS VBN WRB DT NN IN DT NN NN IN DT NN IN NNP VBD IN NNP NN .\nThe hall was hosting a pigeon racing exhibition and a number of foreigners are among the victims .\tDT NN VBD VBG DT NN NN NN CC DT NN IN NNS VBP IN DT NNS .\nPresident Kaczynski declared three days of mourning and has canceled Monday 's scheduled visit to the Czech Republic .\tNNP NNP VBD CD NNS IN NN CC VBZ VBN NNP POS JJ NN TO DT JJ NNP .\nPope Benedict and Russian President Vladimir Putin have sent messages of condolences .\tNNP NNP CC JJ NNP NNP NNP VBP VBN NNS IN NNS .\nPolish authorities say they do not expect to find any more survivors in the wreckage .\tJJ NNS VBP PRP VBP RB VB TO VB DT JJR NNS IN DT NN .\nThey say heavy snow piled on the roof may have contributed to the collapse .\tPRP VBP JJ NN VBN IN DT NN MD VB VBN TO DT NN .\nContinental Airlines says soaring prices for jet fuel are forcing it to slash 3,000 jobs from its 45,000-person workforce , retire some old , inefficient planes , and cut flights .\tNNP NNP VBZ VBG NNS IN NN NN VBP VBG PRP TO VB CD NNS IN PRP$ JJ NN , VB DT JJ , JJ NNS , CC VB NNS .\nThursday 's announcement by Continental follows similar drastic actions by rival carriers Delta , United , and American .\tNNP POS NN IN NNP VBZ JJ JJ NNS IN JJ NNS NNP , NNP , CC NNP .\nContinental officials say fuel prices are up 75 percent in a year , fundamentally ' shifting the economics ' of the business .\tNNP NNS VBP NN NNS VBP RB CD NN IN DT NN , RB `` VBG DT NNS `` IN DT NN .\nTop Continental executives will not take their salaries for the rest of this year , and will forgo bonuses .\tNNP NNP NNS MD RB VB PRP$ NNS IN DT NN IN DT NN , CC MD VB NNS .\nThe carrier will cut 67 older model planes from its fleet of 375 planes , and replace some of them with newer , more fuel-efficient aircraft .\tDT NN MD VB CD JJR NN NNS IN PRP$ NN IN CD NNS , CC VB DT IN PRP IN JJR , RBR JJ NN .\nOfficials in Afghanistan say two roadside bombings have killed eight civilians in southern Kandahar province .\tNNS IN NNP VBP CD NN NNS VBP VBN CD NNS IN JJ NNP NN .\nSix more people were wounded in the blasts near the town of Spin Boldak .\tCD JJR NNS VBD VBN IN DT NNS IN DT NN IN NNP NNP .\nWednesday , Afghan officials said at least seven people were killed when security forces raided a Kabul hideout housing militants involved in an attack on President Hamid Karzai .\tNNP , JJ NNS VBD IN JJS CD NNS VBD VBN WRB NN NNS VBD DT NNP NN NN NNS VBN IN DT NN IN NNP NNP NNP .\nAfghan intelligence chief Amrullah Saleh said at least one of the dead militants directly participated in Sunday 's attack on the president during a military parade in Kabul .\tJJ NN NN NNP NNP VBD IN JJS CD IN DT JJ NNS RB VBD IN NNP POS NN IN DT NN IN DT JJ NN IN NNP .\nMr. Karzai escaped unharmed .\tNNP NNP VBD JJ .\nThe intelligence chief also said there is evidence that militants based in Pakistan 's tribal region planned the assassination attempt .\tDT NN NN RB VBD EX VBZ NN IN NNS VBN IN NNP POS JJ NN VBD DT NN NN .\nBut Saleh said he had no proof the Pakistani government was involved .\tCC NNP VBD PRP VBD DT NN DT JJ NN VBD VBN .\nSaleh told Afghanistan 's Parliament Tuesday he knew of the plot to murder President Karzai and had warned the Afghan leader and his security advisor .\tNNP VBD NNP POS NNP NNP PRP VBD IN DT NN TO NN NNP NNP CC VBD VBN DT JJ NN CC PRP$ NN NN .\nItalian troops have begun arriving in Lebanon to boost a United Nations peacekeeping mission .\tJJ NNS VBP VBN VBG IN NNP TO VB DT NNP NNP NN NN .\nHelicopters and rubber boats were bringing ashore the more than 800 soldiers from an Italian military ship off the coast of the southern city of Tyre .\tNNS CC NN NNS VBD VBG RB DT JJR IN CD NNS IN DT JJ JJ NN IN DT NN IN DT JJ NN IN NNP .\nThose troops are part of the first large contingent to arrive since Israel and Hezbollah agreed to end their fighting in Lebanon .\tDT NNS VBP NN IN DT JJ JJ JJ TO VB IN NNP CC NNP VBD TO VB PRP$ NN IN NNP .\nItaly 's military plans to deploy more than 2,000 soldiers in the coming months to the international force that will include some 15,000 personnel .\tNNP POS JJ NNS TO VB JJR IN CD NNS IN DT VBG NNS TO DT JJ NN WDT MD VB DT CD NNS .\nSpain and France also are making large contributions to the force .\tNNP CC NNP RB VBP VBG JJ NNS TO DT NN .\nIn Beirut , Lebanese lawmakers began a sit-in to protest Israel 's continued blockade of air , land and sea access to Lebanon .\tIN NNP , JJ NNS VBD DT NN TO VB NNP POS JJ NN IN NN , NN CC NN NN TO NNP .\nU.N. Secretary-General Kofi Annan has said Israel should withdraw from Lebanon once five thousand U.N. peacekeepers have deployed .\tNNP NNP NNP NNP VBZ VBN NNP MD VB IN NNP RB CD CD NNP NNS VBP VBN .\nThe head of Iran 's atomic energy agency has proposed building nuclear power plants jointly with neighboring Arab countries .\tDT NN IN NNP POS JJ NN NN VBZ VBN VBG JJ NN NNS RB IN JJ JJ NNS .\nGholam Reza Aghazadeh did not give any specifics about his proposal Sunday for the development of light-water nuclear plants .\tNNP NNP NNP VBD RB VB DT NNS IN PRP$ NN NNP IN DT NN IN JJ JJ NNS .\nIran is building its first nuclear power plant with Russia 's help .\tNNP VBZ VBG PRP$ JJ JJ NN NN IN NNP POS NN .\nIran says it is developing nuclear power , not weapons .\tNNP VBZ PRP VBZ VBG JJ NN , RB NNS .\nBut Western nations are concerned Tehran 's intentions are militaristic .\tCC JJ NNS VBP JJ NNP POS NNS VBP JJ .\nThe U.N. Security Council has imposed sanctions on Iran to try to stop it from enriching uranium .\tDT NNP NNP NNP VBZ VBN NNS IN NNP TO VB TO VB PRP IN VBG NN .\nTehran says it wants to produce low-grade fuel for peaceful nuclear power plants .\tNNP VBZ PRP VBZ TO VB JJ NN IN JJ JJ NN NNS .\nBut the same process could be used to enrich uranium to a higher grade for nuclear weapons .\tCC DT JJ NN MD VB VBN TO VB NN TO DT JJR NN IN JJ NNS .\nA recent International Atomic Energy Agency report says Iran is defying U.N. sanctions and has stopped providing substantial information to the U.N. nuclear agency about its activities .\tDT JJ NNP NNP NNP NNP NN VBZ NNP VBZ VBG NNP NNS CC VBZ VBN VBG JJ NN TO DT NNP JJ NN IN PRP$ NNS .\nCapping a day of solemn remembrance , thousands of paper lanterns representing the souls of those killed in the atomic attack on Hiroshima , Japan , 60 years ago have floated down the city 's Motoyasu River .\tVBG DT NN IN NN NN , NNS IN NN NNS VBG DT NNS IN DT VBN IN DT JJ NN IN NNP , NNP , CD NNS RB VBP VBN RP DT NN POS NNP NNP .\nFamilies and friends gathered along the banks of the river Saturday night to launch the candlelit lanterns .\tNNS CC NNS VBD IN DT NNS IN DT NN NNP NN TO VB DT NN NNS .\nThe river is the same one survivors fled to in an effort to escape the horrific heat of the nuclear blast .\tDT NN VBZ DT JJ CD NNS VBD TO IN DT NN TO VB DT JJ NN IN DT JJ NN .\nThe annual lantern observance brought to a close a full day of memorials , including official ceremonies at the Peace Memorial Park and dozens of peace rallies .\tDT JJ NN NN VBD TO DT RB DT JJ NN IN NNS , VBG JJ NNS IN DT NNP NNP NNP CC NNS IN NN NNS .\nThousands of residents , joined by Japanese and foreign dignitaries , bowed their heads at 8.15 a.m. - the exact moment of the attack - and offered prayers for world peace and for the souls of those who died in the blast .\tNNS IN NNS , VBN IN JJ CC JJ NNS , VBD PRP$ NNS IN CD RB IN DT JJ NN IN DT NN : CC VBN NNS IN NN NN CC IN DT NNS IN DT WP VBD IN DT NN .\nNepalese politicians say police detained hundreds of protesters across the country Monday as they protested King Gyanendra 's seizure of absolute power last month .\tJJ NNS VBP NNS VBD NNS IN NNS IN DT NN NNP IN PRP VBD NNP NNP POS NN IN JJ NN JJ NN .\nThe Communist Party of Nepal says 500 people were arrested in the eastern city of Janakpur , where the largest demonstration took place .\tDT NNP NNP IN NNP VBZ CD NNS VBD VBN IN DT JJ NN IN NNP , WRB DT JJS NN VBD NN .\nFive political parties vowed to hold protests Monday in defiance of a ban on public demonstrations .\tCD JJ NNS VBD TO VB NNS NNP IN NN IN DT NN IN JJ NNS .\nDozens of people were also arrested in Kathmandu .\tNNS IN NNS VBD RB VBN IN NNP .\nAs the protests took place , Maoist rebels set fire to four buses near Itahari after their leader , Prachanda , ordered stepped up attacks and strikes against King Gyanendra .\tIN DT NNS VBD NN , JJ NNS VBN NN TO CD NNS IN NNP IN PRP$ NN , NNP , VBD VBN RP NNS CC NNS IN NNP NNP .\nThe New Delhi-based Asia Center for Human Rights is calling for international intervention in the political crisis in Nepal , saying it could deepen if not resolved soon .\tDT NNP JJ NNP NNP IN NNP NNP VBZ VBG IN JJ NN IN DT JJ NN IN NNP , VBG PRP MD VB IN RB VBN RB .\nLebanese military sources say dozens of family members of Islamic militants have been evacuated from a Palestinian refugee camp where militants have been battling government forces for months .\tJJ JJ NNS VBP NNS IN NN NNS IN NNP NNS VBP VBN VBN IN DT JJ NN NN WRB NNS VBP VBN VBG NN NNS IN NNS .\nThe sources say some 60 women and children left the battered Nahr el-Bared camp in northern Lebanon Friday after a cease-fire was negotiated with the militants .\tDT NNS VBP DT CD NNS CC NNS VBD DT JJ NNP JJ NN IN JJ NNP NNP IN DT NN VBD VBN IN DT NNS .\nFighting between the Lebanese Army and the Fatah al-Islam militants began May 20 .\tVBG IN DT JJ NNP CC DT NNP NNP NNS VBD NNP CD .\nSince then , government troops have tried to evict the al-Qaida-inspired militants , who have defied demands to leave the camp .\tIN RB , NN NNS VBP VBN TO VB DT JJ NNS , WP VBP VBN NNS TO VB DT NN .\nThe fighting has killed 142 Lebanese troops and many militants and civilians .\tDT NN VBZ VBN CD JJ NNS CC JJ NNS CC NNS .\nThe government believes less than 100 militants remain in the camp .\tDT NN VBZ JJR IN CD NNS VBP IN DT NN .\nBefore the fighting , the camp had a population of more than 30,000 people .\tIN DT NN , DT NN VBD DT NN IN JJR IN CD NNS .\nMost of the residents have since fled .\tJJS IN DT NNS VBP IN VBN .\nSri Lankan government supporters clashed with opposition activists protesting the arrest of their defeated presidential candidate Sarath Fonseka .\tNNP NNP NN NNS VBD IN NN NNS VBG DT NN IN PRP$ VBN JJ NN NNP NNP .\nThousands of opposition demonstrators gathered in front of the Supreme Court in Colombo Wednesday , when they were confronted by ruling-party activists who pelted them with stones .\tNNS IN NN NNS VBD IN NN IN DT NNP NNP IN NNP NNP , WRB PRP VBD VBN IN JJ NNS WP VBD PRP IN NNS .\nPolice stepped in to break up the clashes .\tNNP VBD IN TO VB RP DT NNS .\nWitnesses say several people were wounded .\tNNS VBP JJ NNS VBD VBN .\nOpposition supporters are demanding the release of Fonseka , the former chief of the armed forces , who was arrested Monday on charges of conspiring against the government .\tNNP NNS VBP VBG DT NN IN NNP , DT JJ NN IN DT JJ NNS , WP VBD VBN NNP IN NNS IN VBG IN DT NN .\nFonseka lost last month 's election to President Mahinda Rajapaksa , but the retired general and his allies allege the polls were rigged .\tNNP VBD JJ NN POS NN TO NNP NNP NNP , CC DT JJ NN CC PRP$ NNS VBP DT NNS VBD VBN .\nThe Sri Lankan election commissioner said there is no evidence of any tampering .\tDT NNP NNP NN NN VBD EX VBZ DT NN IN DT NN .\nOn Tuesday , Mr. Rajapaksa dissolved parliament to clear the way for parliamentary elections to be held in early April .\tIN NNP , NNP NNP VBD NN TO VB DT NN IN JJ NNS TO VB VBN IN JJ NNP .\nAn official at the Chinese embassy in Jakarta says Beijing is ' astonished and strongly dissatisfied ' after gunfire from an Indonesian warship killed a Chinese fisherman and wounded two others .\tDT NN IN DT JJ NN IN NNP VBZ NNP VBZ `` JJ CC RB VBD `` IN NN IN DT JJ NN VBD DT JJ NN CC VBD CD NNS .\nThe China Daily Thursday quotes the official , Yu Hongyao , as saying China expects to be informed of any developments in the incident , which took place Monday in the Arafura Sea off eastern Indonesia .\tDT NNP NNP NNP VBZ DT NN , NNP NNP , IN VBG NNP VBZ TO VB VBN IN DT NNS IN DT NN , WDT VBD NN NNP IN DT NNP NNP IN JJ NNP .\nThe Indonesian navy intercepted four Chinese boats believed to be fishing illegally .\tDT JJ NN VBD CD JJ NNS VBN TO VB VBG RB .\nIndonesian navy officials say three of the boats fled and the warship fired shots when the fourth boat did not respond to radio and visual signals .\tJJ NN NNS VBP CD IN DT NNS VBD CC DT NN VBD NNS WRB DT JJ NN VBD RB VB TO NN CC JJ NNS .\nThe damaged fishing boat and its remaining 13 crew members are being held at an Indonesian naval base in the Papua coastal town of Merauke .\tDT JJ NN NN CC PRP$ VBG CD NN NNS VBP VBG VBN IN DT JJ JJ NN IN DT NNP JJ NN IN NNP .\nUpjohn Co. said it will offer an early retirement package to as many as 1,100 employees in a cost-cutting move expected to result in a fourth-quarter charge .\tNNP NNP VBD PRP MD VB DT JJ NN NN TO RB JJ IN CD NNS IN DT JJ NN VBN TO VB IN DT JJ NN .\nUpjohn officials said they could n't estimate the size of the charge until they determine which employees , and how many , will participate in the retirement plan .\tNNP NNS VBD PRP MD RB VB DT NN IN DT NN IN PRP VBP WDT NNS , CC WRB JJ , MD VB IN DT NN NN .\nBut the pharmaceutical company said it ' anticipates the long-term savings resulting from the plan 's implementation will more than offset short-term costs . '\tCC DT JJ NN VBD PRP `` VBZ DT JJ NNS VBG IN DT NN POS NN MD RBR IN VBN JJ NNS . ``\nThe program , available to Upjohn employees 55 years old or older , could increase an individual 's retirement benefits 10 % to 20 % .\tDT NN , JJ TO NNP NNS CD NNS JJ CC JJR , MD VB DT NN POS NN NNS CD NN TO CD NN .\nIn addition , Upjohn is offering a one-time retirement bonus equal to six months of base pay .\tIN NN , NNP VBZ VBG DT JJ NN NN JJ TO CD NNS IN NN NN .\nChairman Theodore Cooper called the program part of the company 's two-year strategy to implement budget constraints and ' an effective headcount-control program . '\tNNP NNP NNP VBD DT NN NN IN DT NN POS JJ NN TO VB NN NNS CC `` DT JJ NN NN . ``\nBut some analysts questioned how much of an impact the retirement package will have , because few jobs will end up being eliminated .\tCC DT NNS VBD WRB RB IN DT NN DT NN NN MD VB , IN JJ NNS MD VB RP VBG VBN .\n' It 's a cosmetic move , ' said Jonathan S. Gelles of Wertheim Schroder & Co .\t`` PRP VBZ DT JJ NN , `` VBD NNP NNP NNP IN NNP NNP CC NNP .\nAccording to Upjohn 's estimates , only 50 % to 60 % of the 1,100 eligible employees will take advantage of the plan .\tVBG TO NNP POS NNS , RB CD NN TO CD NN IN DT CD JJ NNS MD VB NN IN DT NN .\nUpjohn further estimated that about 50 % of the employees who leave for early retirement may be replaced .\tNNP RBR VBD IN IN CD NN IN DT NNS WP VBP IN JJ NN MD VB VBN .\nAs a result , Upjohn will likely trim only about 275 to 350 of its more than 21,000 jobs world-wide .\tIN DT NN , NNP MD RB VB RB IN CD TO CD IN PRP$ JJR IN CD NNS JJ .\nIn composite trading on the New York Stock Exchange yesterday , Upjohn shares rose 87.5 cents to $ 38.875 apiece .\tIN JJ NN IN DT NNP NNP NNP NNP NN , NNP NNS VBD CD NNS TO $ CD RB .\nAn Upjohn spokesman said he had ' heard nothing ' to suggest the early retirement package was spurred by shareholder pressure or a potential bidder for the company , which occasionally has been the target of takeover speculation .\tDT NNP NN VBD PRP VBD `` VBN NN `` TO VB DT JJ NN NN VBD VBN IN NN NN CC DT JJ NN IN DT NN , WDT RB VBZ VBN DT NN IN NN NN .\nThe company earlier this year adopted a shareholder-rights plan to ward off unwanted suitors .\tDT NN RBR DT NN VBD DT JJ NN TO VB RP JJ NNS .\nThe spokesman said it is the first early retirement plan offered under its two-year cost-control strategy .\tDT NN VBD PRP VBZ DT JJ JJ NN NN VBN IN PRP$ JJ JJ NN .\nEarlier staff-reduction moves have trimmed about 300 jobs , the spokesman said .\tJJR NN NNS VBP VBN IN CD NNS , DT NN VBD .\nLithuania gained membership in the World Trade Organization and joined the EU in May 2004 .\tNNP VBD NN IN DT NNP NNP NNP CC VBD DT NNP IN NNP CD .\nDespite Lithuania 's EU accession , Lithuania 's trade with its Central and Eastern European neighbors , and Russia in particular , accounts for a growing percentage of total trade .\tIN NNP POS NNP NN , NNP POS NN IN PRP$ NNP CC NNP NNP NNS , CC NNP IN JJ , NNS IN DT VBG NN IN JJ NN .\nPrivatization of the large , state-owned utilities is nearly complete .\tNN IN DT JJ , JJ NNS VBZ RB JJ .\nForeign government and business support have helped in the transition from the old command economy to a market economy .\tJJ NN CC NN NN VBP VBN IN DT NN IN DT JJ NN NN TO DT NN NN .\nLithuania 's economy grew on average 8 % per year for the four years prior to 2008 driven by exports and domestic demand .\tNNP POS NN VBD IN JJ CD NN IN NN IN DT CD NNS RB TO CD VBN IN NNS CC JJ NN .\nHowever , GDP plunged nearly 15 % in 2009 - during the 2008 - 9 crisis the three former Soviet Baltic republics had the world 's worst economic declines .\tRB , NN VBD RB CD NN IN CD : IN DT CD : CD NN DT CD JJ JJ JJ NNS VBD DT NN POS JJS JJ NNS .\nIn 2009 , the government launched a high-profile campaign , led by Prime Minister KUBILIUS , to attract foreign investment and to develop export markets .\tIN CD , DT NN VBD DT JJ NN , VBN IN NNP NNP NNP , TO VB JJ NN CC TO VB NN NNS .\nThe current account deficit , which had risen to roughly 15 % of GDP in 2007 - 8 , recovered to a surplus of 4 % 2009 and 3.4 % in 2010 in the wake of a cutback in imports to almost half the 2008 level .\tDT JJ NN NN , WDT VBD VBN TO RB CD NN IN NN IN CD : CD , VBD TO DT NN IN CD NN CD CC CD NN IN CD IN DT NN IN DT NN IN NNS TO RB PDT DT CD NN .\nNevertheless , economic growth was flat and unemployment continued upward to 17.9 % in 2010 .\tRB , JJ NN VBD JJ CC NN VBD JJ TO CD NN IN CD .\nSouth Africa is a middle-income , emerging market with an abundant supply of natural resources ; well-developed financial , legal , communications , energy , and transport sectors ; a stock exchange that is the 18th largest in the world ; and modern infrastructure supporting a relatively efficient distribution of goods to major urban centers throughout the region .\tNNP NNP VBZ DT NN , VBG NN IN DT JJ NN IN JJ NNS ; JJ JJ , JJ , NNS , NN , CC NN NNS ; DT NN NN WDT VBZ DT JJ JJS IN DT NN ; CC JJ NN VBG DT RB JJ NN IN NNS TO JJ JJ NNS IN DT NN .\nAt the end of 2007 , South Africa began to experience an electricity crisis .\tIN DT NN IN CD , NNP NNP VBD TO VB DT NN NN .\nState power supplier Eskom encountered problems with aged plants , necessitating ' load-shedding ' cuts to residents and businesses in the major cities .\tNN NN NN NNP VBD NNS IN VBN NNS , VBG `` JJ `` NNS TO NNS CC NNS IN DT JJ NNS .\nGrowth was robust from 2004 to 2007 as South Africa reaped the benefits of macroeconomic stability and a global commodities boom , but began to slow in the second half of 2007 due to the electricity crisis and the subsequent global financial crisis ' impact on commodity prices and demand .\tNN VBD JJ IN CD TO CD IN NNP NNP VBD DT NNS IN JJ NN CC DT JJ NNS NN , CC VBD TO VB IN DT JJ NN IN CD JJ TO DT NN NN CC DT JJ JJ JJ NN POS NN IN NN NNS CC NN .\nGDP fell nearly 2 % in 2009 .\tNN VBD RB CD NN IN CD .\nUnemployment remains high and outdated infrastructure has constrained growth .\tNN VBZ JJ CC JJ NN VBZ VBN NN .\nDaunting economic problems remain from the apartheid era - especially poverty , lack of economic empowerment among the disadvantaged groups , and a shortage of public transportation .\tVBG JJ NNS VBP IN DT NN NN IN RB NN , NN IN JJ NN IN DT JJ NNS , CC DT NN IN JJ NN .\nSouth Africa 's former economic policy was fiscally conservative , focusing on controlling inflation , and attaining a budget surplus .\tNNP NNP POS JJ JJ NN VBD RB JJ , VBG IN VBG NN , CC VBG DT NN NN .\nThe current government largely follows the same prudent policies , but must contend with the impact of the global crisis and is facing growing pressure from special interest groups to use state-owned enterprises to deliver basic services to low-income areas and to increase job growth .\tDT JJ NN RB VBZ DT JJ JJ NNS , CC MD VB IN DT NN IN DT JJ NN CC VBZ VBG VBG NN IN JJ NN NNS TO VB JJ NNS TO VB JJ NNS TO JJ NNS CC TO VB NN NN .\nMore than a quarter of South Africa 's population currently receives social grants .\tJJR IN DT NN IN NNP NNP POS NN RB VBZ JJ NNS .\nThis uninhabited island was claimed by the US in 1857 for its guano .\tDT JJ NN VBD VBN IN DT NNP IN CD IN PRP$ NN .\nMining took place between 1865 and 1898 .\tNN VBD NN IN CD CC CD .\nThe lighthouse , built in 1917 , was shut down in 1996 and administration of Navassa Island transferred from the Coast Guard to the Department of the Interior .\tDT NN , VBN IN CD , VBD VBN RP IN CD CC NN IN NNP NNP VBD IN DT NNP NNP TO DT NNP IN DT NNP .\nA 1998 scientific expedition to the island described it as a unique preserve of Caribbean biodiversity ; the following year it became a National Wildlife Refuge and annual scientific expeditions have continued .\tDT CD JJ NN TO DT NN VBD PRP IN DT JJ NN IN NNP NN ; DT JJ NN PRP VBD DT NNP NNP NNP CC JJ JJ NNS VBP VBN .\nExplored and settled by the Spanish in the 16th century , Panama broke with Spain in 1821 and joined a union of Colombia , Ecuador , and Venezuela - named the Republic of Gran Colombia .\tVBN CC VBN IN DT JJ IN DT JJ NN , NNP VBD IN NNP IN CD CC VBD DT NN IN NNP , NNP , CC NNP : VBD DT NNP IN NNP NNP .\nWhen the latter dissolved in 1830 , Panama remained part of Colombia .\tWRB DT NN VBN IN CD , NNP VBD NN IN NNP .\nWith US backing , Panama seceded from Colombia in 1903 and promptly signed a treaty with the US allowing for the construction of a canal and US sovereignty over a strip of land on either side of the structure ( the Panama Canal Zone ) .\tIN NNP NN , NNP VBD IN NNP IN CD CC RB VBD DT NN IN DT NNP VBG IN DT NN IN DT NN CC NNP NN IN DT NN IN NN IN DT NN IN DT NN LRB DT NNP NNP NNP RRB .\nThe Panama Canal was built by the US Army Corps of Engineers between 1904 and 1914 .\tDT NNP NNP VBD VBN IN DT NNP NNP NNP IN NNPS IN CD CC CD .\nIn 1977 , an agreement was signed for the complete transfer of the Canal from the US to Panama by the end of the century .\tIN CD , DT NN VBD VBN IN DT JJ NN IN DT NNP IN DT NNP TO NNP IN DT NN IN DT NN .\nCertain portions of the Zone and increasing responsibility over the Canal were turned over in the subsequent decades .\tJJ NNS IN DT NNP CC VBG NN IN DT NNP VBD VBN RP IN DT JJ NNS .\nWith US help , dictator Manuel NORIEGA was deposed in 1989 .\tIN NNP NN , NN NNP NNP VBD VBN IN CD .\nThe entire Panama Canal , the area supporting the Canal , and remaining US military bases were transferred to Panama by the end of 1999 .\tDT JJ NNP NNP , DT NN VBG DT NNP , CC VBG NNP JJ NNS VBD VBN TO NNP IN DT NN IN CD .\nIn October 2006 , Panamanians approved an ambitious plan ( estimated to cost $ 5.3 billion ) to expand the Canal .\tIN NNP CD , NNS VBD DT JJ NN LRB VBN TO VB $ CD CD RRB TO VB DT NNP .\nThe project , which began in 2007 and could double the Canal 's capacity , is expected to be completed in 2014 - 15 .\tDT NN , WDT VBD IN CD CC MD VB DT NNP POS NN , VBZ VBN TO VB VBN IN CD IN CD .\nParaguay achieved its independence from Spain in 1811 .\tNNP VBD PRP$ NN IN NNP IN CD .\nIn the disastrous War of the Triple Alliance ( 1865 - 70 ) - between Paraguay and Argentina , Brazil , and Uruguay - Paraguay lost two-thirds of all adult males and much of its territory .\tIN DT JJ NNP IN DT NNP NNP LRB CD IN CD RRB : IN NNP CC NNP , NNP , CC NNP : NNP VBD NNS IN DT NN NNS CC NN IN PRP$ NN .\nThe country stagnated economically for the next half century .\tDT NN VBD RB IN DT JJ JJ NN .\nFollowing the Chaco War of 1932 - 35 with Bolivia , Paraguay gained a large part of the Chaco lowland region .\tVBG DT NNP NNP IN CD IN CD IN NNP , NNP VBD DT JJ NN IN DT NNP NN NN .\nThe 35-year military dictatorship of Alfredo STROESSNER ended in 1989 , and , despite a marked increase in political infighting in recent years , Paraguay has held relatively free and regular presidential elections since then .\tDT JJ JJ NN IN NNP NNP VBD IN CD , CC , IN DT JJ NN IN JJ NN IN JJ NNS , NNP VBZ VBN RB JJ CC JJ JJ NNS IN RB .\nCeltic tribes arrived on the island between 600 - 150 B.C.\tNNP NNS VBD IN DT NN IN CD : CD NNP\nInvasions by Norsemen that began in the late 8th century were finally ended when King Brian BORU defeated the Danes in 1014 .\tNNS IN NNS WDT VBD IN DT JJ JJ NN VBD RB VBN WRB NNP NNP NNP VBD DT NNS IN CD .\nEnglish invasions began in the 12th century and set off more than seven centuries of Anglo-Irish struggle marked by fierce rebellions and harsh repressions .\tJJ NNS VBD IN DT JJ NN CC VB RP JJR IN CD NNS IN JJ NN VBN IN JJ NNS CC JJ NNS .\nA failed 1916 Easter Monday Rebellion touched off several years of guerrilla warfare that in 1921 resulted in independence from the UK for 26 southern counties ; six northern ( Ulster ) counties remained part of the UK .\tDT VBN CD NNP NNP NNP VBD RP JJ NNS IN NN NN IN IN CD VBD IN NN IN DT NNP IN CD JJ NNS ; CD JJ LRB NNP RRB NNS VBD NN IN DT NNP .\nIn 1949 , Ireland withdrew from the British Commonwealth ; it joined the European Community in 1973 .\tIN CD , NNP VBD IN DT JJ NN ; PRP VBD DT NNP NNP IN CD .\nIrish governments have sought the peaceful unification of Ireland and have cooperated with Britain against terrorist groups .\tJJ NNS VBP VBN DT JJ NN IN NNP CC VBP VBN IN NNP IN JJ NNS .\nA peace settlement for Northern Ireland is gradually being implemented despite some difficulties .\tDT NN NN IN NNP NNP VBZ RB VBG VBN IN DT NNS .\nIn 2006 , the Irish and British governments developed and began to implement the St. Andrews Agreement , building on the Good Friday Agreement approved in 1998 .\tIN CD , DT JJ CC JJ NNS VBD CC VBD TO VB DT NNP NNP NNP , NN IN DT JJ NNP NN VBN IN CD .\nA LION came across a Hare , who was fast asleep .\tDT NN VBD IN DT NN , WP VBD JJ JJ .\nHe was just in the act of seizing her , when a fine young Hart trotted by , and he left the Hare to follow him .\tPRP VBD RB IN DT NN IN VBG PRP , WRB DT JJ JJ NNP VBN IN , CC PRP VBD DT NNP TO VB PRP .\nThe Hare , scared by the noise , awoke and scudded away .\tDT NN , VBN IN DT NN , NN CC VBD RB .\nThe Lion was unable after a long chase to catch the Hart , and returned to feed upon the Hare .\tDT NN VBD JJ IN DT JJ NN TO VB DT NN , CC VBD TO VB IN DT NN .\nOn finding that the Hare also had run off , he said , ' I am rightly served , for having let go of the food that I had in my hand for the chance of obtaining more . '\tIN VBG IN DT NN RB VBD VBN RP , PRP VBD , `` PRP VBP RB VBN , IN VBG VBN NN IN DT NN IN PRP VBD IN PRP$ NN IN DT NN IN VBG RBR . ``\nTo the optimist , the glass is half full .\tTO DT NN , DT NN VBZ JJ JJ .\nTo the pessimist , the glass is half empty .\tTO DT NN , DT NN VBZ JJ JJ .\nTo the engineer , the glass is twice as big as it needs to be .\tTO DT NN , DT NN VBZ RB RB JJ IN PRP VBZ TO VB .\nInsurgents in Iraq carried out several attacks in Baghdad Wednesday as a week-long surge of violence in the capital continues .\tNNS IN NNP VBD RP JJ NNS IN NNP NNP IN DT JJ NN IN NN IN DT NN VBZ .\nOfficials say three separate suicide car bombings in different parts of Baghdad killed at least two Iraqis and wounded eight others .\tNNS VBP CD JJ NN NN NNS IN JJ NNS IN NNP VBD IN JJS CD NNS CC VBD CD NNS .\nThe attacks came a day after two U.S soldiers and at least 12 Iraqis were killed in a series of attacks across the country .\tDT NNS VBD DT NN IN CD NNP NNS CC IN JJS CD NNS VBD VBN IN DT NN IN NNS IN DT NN .\nA U.S. military spokesman said today the American casualties occurred in a suicide car bomb blast near a U.S. patrol in southern Baghdad .\tDT NNP NN NN VBD NN DT JJ NNS VBD IN DT NN NN NN NN IN DT NNP NN IN JJ NNP .\nAl-Qaida in Iraq , the nation 's most feared terrorist group , claimed responsibility for one of Tuesday 's deadliest attacks , in which six Iraqis were killed and more than 30 others wounded in a car bomb blast at an army recruitment center in Baghdad .\tNNP IN NNP , DT NN POS RBS VBN JJ NN , VBD NN IN CD IN NNP POS JJS NNS , IN WDT CD NNS VBD VBN CC JJR IN CD NNS VBD IN DT NN NN NN IN DT NN NN NN IN NNP .\nOther attacks killed four Iraqi troops and a Baghdad university professor and his son .\tJJ NNS VBD CD JJ NNS CC DT NNP NN NN CC PRP$ NN .\nAsian stock markets were mostly lower in trading Monday .\tJJ NN NNS VBD RB JJR IN NN NNP .\nTokyo 's Nikkei index lost 85 points , to finish at 13.857 .\tNNP POS NNP NN VBD CD NNS , TO VB IN CD .\nHong Kong 's Hang Seng index gained 27 points , to end at 22.772 .\tNNP NNP POS NNP NNP NN VBD CD NNS , TO VB IN CD .\nElsewhere , share prices were lower in Shanghai , Singapore and Taipei .\tRB , NN NNS VBD JJR IN NNP , NNP CC NNP .\nStocks closed slightly higher in Wellington .\tNNS VBD RB JJR IN NNP .\nThe dollar was selling at 107.41 yen in Tokyo currency trading , up from 107.25 yen late Friday in New York .\tDT NN VBD VBG IN CD NN IN NNP NN NN , RB IN CD NN JJ NNP IN NNP NNP .\nYemeni officials say government troops killed seven suspected al-Qaida militants in the country 's restive south Sunday .\tJJ NNS VBP NN NNS VBD CD JJ NNP NNS IN DT NN POS JJ NN NNP .\nThe officials said the seven were killed in the town of Loder in southern Abyan province , where 11 soldiers and seven other suspected al-Qaida militants died in clashes Thursday and Friday .\tDT NNS VBD DT CD VBD VBN IN DT NN IN NNP IN JJ NNP NN , WRB CD NNS CC CD JJ JJ NNP NNS VBD IN NNS NNP CC NNP .\nOn Saturday , the government urged security forces in six provinces to tighten security measures .\tIN NNP , DT NN VBD NN NNS IN CD NNS TO VB NN NNS .\nIt also called for increased vigilance and said a massive manhunt was under way for suspects linked to the violence .\tPRP RB VBD IN VBN NN CC VBD DT JJ NN VBD IN NN IN NNS VBN TO DT NN .\nSouth Yemen is feared to have become a base for al-Qaida 's local branch , Al-Qaida in the Arabian Peninsula .\tNNP NNP VBZ VBN TO VB VBN DT NN IN NNP POS JJ NN , NNP IN DT NNP NNP .\nEarlier this month , al-Qaida threatened to target anyone who supports Yemeni President Ali Abdullah Saleh or what it called the ' crusader campaign ' by the United States .\tRBR DT NN , NNP VBD TO VB DT WP VBZ JJ NNP NNP NNP NNP CC WP PRP VBD DT `` NN NN `` IN DT NNP NNPS .\nKiefer Sutherland was arrested early Tuesday on misdemeanor drunk driving charges after reportedly failing a field sobriety test .\tNNP NNP VBD VBN RB NNP IN NN JJ NN NNS IN RB VBG DT NN NN NN .\nOfficer Kevin Maiberger says the 40-year-old star of the TV series 24 was pulled over at about 1.10 a.m. in West Los Angeles after officers spotted him making an illegal U-Turn .\tNNP NNP NNP VBZ DT JJ NN IN DT NN NN CD VBD VBN RP IN IN CD NN IN NNP NNP NNP IN NNS VBD PRP VBG DT JJ NN .\nOfficer Karen Smith says Sutherland tested over California 's legal blood alcohol limit of 0.08 percent , and was arrested on a misdmeanor charge of driving under the influence .\tNNP NNP NNP VBZ NNP VBD IN NNP POS JJ NN NN NN IN CD NN , CC VBD VBN IN DT NN NN IN VBG IN DT NN .\nSheriff 's Department records indicate he was released around 4.00 a.m. after posting $ 25,000 bail .\tNNP POS NNP NNS VBP PRP VBD VBN IN CD NN IN VBG $ CD NN .\nMaiberger says Sutherland faces an October 16 court date .\tNNP VBZ NNP VBZ DT NNP CD NN NN .\nKeifer Sutherland last year won a best actor Emmy Award for his starring role in the FOX series 24 .\tNNP NNP JJ NN VBD DT JJS NN NNP NNP IN PRP$ VBG NN IN DT NNP NN CD .\nThe series is set to return to the air in January .\tDT NN VBZ VBN TO VB TO DT NN IN NNP .\nBritish Prime Minister Tony Blair says it is a ' complete obscenity ' for terrorists to try to justify their actions .\tJJ JJ NN NNP NNP VBZ PRP VBZ DT `` JJ NN `` IN NNS TO VB TO VB PRP$ NNS .\nMr. Blair was referring to a videotape aired Thursday of al-Qaida 's second in command , Ayman al-Zawahiri , who said Britain and the United States would face more deaths unless they pull out of Iraq .\tNNP NNP VBD VBG TO DT NN VBN NNP IN NNP POS JJ IN NN , NNP NNP , WP VBD NNP CC DT NNP NNPS MD VB JJR NNS IN PRP VBP IN IN NNP .\nThe prime minister charged that those responsible for the video support the killing of innocent people in Iraq , Afghanistan and anywhere that people want to live under the rules of democracy .\tDT JJ NN VBD IN DT JJ IN DT NN VBP DT NN IN JJ NNS IN NNP , NNP CC RB IN NNS VBP TO VB IN DT NNS IN NN .\nThe al-Zawahiri video aired on the Arab satellite channel al-Jazeera .\tDT NNP NN VBD IN DT JJ NN NN NNP .\nChinese President Hu Jintao will hold talks with the leaders of Russia , Britain and France next month during commemorations in Moscow of the end of the Second World War .\tJJ NNP NNP NNP MD VB NNS IN DT NNS IN NNP , NNP CC NNP JJ NN IN NNS IN NNP IN DT NN IN DT NNP NNP NNP .\nAn official announcement in Beijing Saturday , says it is not known whether Mr. Hu will meet with President Bush , who will be among scores of leaders attending ceremonies marking the end of the European phase of the war .\tDT JJ NN IN NNP NNP , VBZ PRP VBZ RB VBN IN NNP NNP MD VB IN NNP NNP , WP MD VB IN NNS IN NNS VBG NNS VBG DT NN IN DT JJ NN IN DT NN .\nChina 's assistant foreign minister Li Hui says President Hu will discuss international and regional issues in talks with Russian President Vladimir Putin .\tNNP POS JJ JJ NN NNP NNP VBZ NNP NNP MD VB JJ CC JJ NNS IN NNS IN JJ NNP NNP NNP .\nThe official added that there are no plans for a meeting in Moscow between the Chinese leader and Japanese Prime Minister Junichiro Koizumi .\tDT NN VBD IN EX VBP DT NNS IN DT NN IN NNP IN DT JJ NN CC JJ NNP NNP NNP NNP .\nChina says Mr. Hu also will hold talks with the leaders of South Korea , Turkmenistan and Romania .\tNNP VBZ NNP NNP RB MD VB NNS IN DT NNS IN NNP NNP , NNP CC NNP .\nEuropean Union foreign ministers are gathered in Brussels ahead of a meeting where heads of state and government are expected to endorse new security initiatives and hold talks on the new EU treaty .\tNNP NNP JJ NNS VBP VBN IN NNP RB IN DT NN WRB NNS IN NN CC NN VBP VBN TO VB JJ NN NNS CC VB NNS IN DT JJ NNP NN .\nAn EU statement says the ministers are to discuss the Middle East peace process , the Democratic Republic of Congo , and prospects for boosting political dialogue between the union and Israel .\tDT NNP NN VBZ DT NNS VBP TO VB DT NNP NNP NN NN , DT JJ NNP IN NNP , CC NNS IN VBG JJ NN IN DT NN CC NNP .\nThey also are expected to discuss international security issues .\tPRP RB VBP VBN TO VB JJ NN NNS .\nBefore the summit on Thursday and Friday , EU foreign ministers are also holding talks on the eventual accession of Macedonia into the union and discussing the situation in the Western Balkans and Pakistan .\tIN DT NN IN NNP CC NNP , NNP JJ NNS VBP RB VBG NNS IN DT JJ NN IN NNP IN DT NN CC VBG DT NN IN DT JJ NNPS CC NNP .\nState media in China say authorities have stopped a toxic chemical slick from reaching the major southern metropolis of Guangzhou by closing a dam on the Bei River .\tNNP NNS IN NNP VBP NNS VBP VBN DT JJ NN NN IN VBG DT JJ JJ NNS IN NNP IN VBG DT NN IN DT NNP NNP .\nThe China Daily newspaper reports Friday that government workers have lowered the gates of the Baishiyao dam to trap the cadmium spill .\tDT NNP NNP NN VBZ NNP IN NN NNS VBP VBN DT NNS IN DT NNP NN TO NN DT NN NN .\nThe dam is about 100 kilometers north of Guangzhou , a densely populated city of about 10 million people .\tDT NN VBZ IN CD NNS RB IN NNP , DT RB JJ NN IN IN CD CD NNS .\nA local government spokesman says the water quality south of the dam is safe .\tDT JJ NN NN VBZ DT NN NN NN IN DT NN VBZ JJ .\nFarther upstream , officials plan to dilute the cadmium by releasing nearly 400 billion liters of water from a reservoir into the Bei River .\tNNP NN , NNS VBP TO VB DT NN IN VBG RB CD CD NNS IN NN IN DT NN IN DT NNP NNP .\nThe contamination of the river by a smelter in Guangdong province a week ago is China 's second major environmental incident in recent weeks .\tDT NN IN DT NN IN DT NN IN NNP NN DT NN RB VBZ NNP POS JJ JJ JJ NN IN JJ NNS .\nNorth Korea says it has asked the United Nations to end all humanitarian aid to the country by the end of the year .\tNNP NNP VBZ PRP VBZ VBN DT NNP NNPS TO VB DT JJ NN TO DT NN IN DT NN IN DT NN .\nBut the U.N. World Food Program , which administers aid to Pyongyang , said it has received no word about such a move .\tCC DT NNP NNP NNP NNP , WDT VBZ NN TO NNP , VBD PRP VBZ VBN DT NN IN PDT DT NN .\nNorth Korea 's Deputy Foreign Minister Choe Su Hon announced Pyongyang 's intentions Thursday at U.N. headquarters .\tNNP NNP POS NNP NNP NNP NNP NNP NNP VBD NNP POS NNS NNP IN NNP NN .\nHe said his country made the decision because it has experienced improved food production and because countries such as the United States are politicizing humanitarian assistance .\tPRP VBD PRP$ NN VBD DT NN IN PRP VBZ VBN VBN NN NN CC IN NNS JJ IN DT NNP NNPS VBP VBG JJ NN .\nThe World Food Program says it has not been asked to leave North Korea , but that its operation there may change in the new year .\tDT NNP NNP NNP VBZ PRP VBZ RB VBN VBN TO VB NNP NNP , CC IN PRP$ NN EX MD VB IN DT JJ NN .\nA spokesman said the organization expects to shift from humanitarian aid to funding development projects .\tDT NN VBD DT NN VBZ TO VB IN JJ NN TO VBG NN NNS .\nDetails have not been finalized .\tNNS VBP RB VBN VBN .\nAuthor Betty Friedan , frequently credited with laying the groundwork for modern feminism with her book , The Feminine Mystique , died of congestive heart failure Saturday .\tNN NNP NNP , RB VBN IN VBG DT NN IN JJ NN IN PRP$ NN , DT NNP NNP , VBD IN JJ NN NN NNP .\nIt was her 85th birthday .\tPRP VBD PRP$ JJ NN .\nFriedan was born in Peoria , Illinois on 4 February 1921 .\tNNP VBD VBN IN NNP , NNP IN CD NNP CD .\nShe studied psychology and worked as a journalist , but was primarily a housewife when she published her groundbreaking book in 1963 .\tPRP VBD NN CC VBD IN DT NN , CC VBD RB DT NN WRB PRP VBD PRP VBG NN IN CD .\nThe book 's theme was that society forced women to find their identity through their husbands and children and allowed them little personal autonomy , leaving them unfulfilled .\tDT NN POS NN VBD DT NN VBD NNS TO VB PRP$ NN IN PRP$ NNS CC NNS CC VBD PRP JJ JJ NN , VBG PRP JJ .\n' The Feminine Mystique ' was an immediate best-seller and made Friedan one of the most prominent voices in the women 's movement of the 1960s and 70s .\t`` DT NNP NNP `` VBD DT JJ NN CC VBD NNP CD IN DT RBS JJ NNS IN DT NNS POS NN IN DT NNS CC NNS .\nShe co-founded the National Organization for Women in 1966 and the National Political Women 's Caucus in 1971 .\tPRP VBD DT NNP NNP IN NNP IN CD CC DT NNP NNP NNP POS NNP IN CD .\nFriedan 's later work concentrated on how society views aging .\tNNP POS JJ NN VBD IN WRB NN VBZ NN .\nAuthorities in South Korea say a person there has contracted bird flu but has no symptoms of the disease .\tNNS IN NNP NNP VBP DT NN RB VBZ VBN NN NN CC VBZ DT NNS IN DT NN .\nAnd in Japan , officials are investigating a possible outbreak at a chicken farm .\tCC IN NNP , NNS VBP VBG DT JJ NN IN DT NN NN .\nSouth Korean health officials said Thursday the person was infected during an outbreak of the potentially deadly H5N1 virus that hit poultry farms late last year .\tJJ JJ NN NNS VBD NNP DT NN VBD VBN IN DT NN IN DT RB JJ NNP NN WDT VBD NN NNS RB JJ NN .\nIn Japan , government officials at the Agriculture , Forestry and Fisheries Ministry told the Kyodo news agency that they are looking into what might be an outbreak of bird flu at a farm in Miyazaki Prefecture .\tIN NNP , NN NNS IN DT NNP , NNP CC NNP NNP VBD DT NNP NN NN IN PRP VBP VBG IN WP MD VB DT NN IN NN NN IN DT NN IN NNP NNP .\nThe farm feeds about 10,000 chickens .\tDT NN VBZ IN CD NNS .\nIt was not immediately clear how many birds may already have been infected or killed by the suspected virus .\tPRP VBD RB RB JJ WRB JJ NNS MD RB VB VBN VBN CC VBN IN DT JJ NN .\nThe H5N1 strain of bird flu has killed more than 150 people worldwide over the past three years - none in Japan or South Korea .\tDT NNP NN IN NN NN VBZ VBN JJR IN CD NNS JJ IN DT JJ CD NNS IN NN IN NNP CC NNP NNP .\nNiger 's electoral commission has postponed local and regional elections scheduled for Saturday by three days , citing logistical problems .\tNNP POS JJ NN VBZ VBN JJ CC JJ NNS VBN IN NNP IN CD NNS , VBG JJ NNS .\nNiger 's electoral commission says the country will now hold its municipal and regional elections on Tuesday , instead of Saturday as planned .\tNNP POS JJ NN VBZ DT NN MD RB VB PRP$ JJ CC JJ NNS IN NNP , IN IN NNP IN VBN .\nElectoral commission president , Abdouramane Goushmane says the commission postponed the elections after it realized that all of the ballots would not be ready in time for the poll Saturday .\tNNP NN NN , NNP NNP VBZ DT NN VBD DT NNS IN PRP VBD IN DT IN DT NNS MD RB VB JJ IN NN IN DT NN NNP .\nThe local and regional polls are the first in a series of a elections this month meant to return the country to civilian rule after a military coup in February 2010 .\tDT JJ CC JJ NNS VBP DT JJ IN DT NN IN DT NNS DT NN VBN TO VB DT NN TO JJ NN IN DT JJ NN IN NNP CD .\nGoushmane said this postponement will not affect the timing of legislative elections and a presidential poll planned for January 31 .\tNNP VBD DT NN MD RB VB DT NN IN JJ NNS CC DT JJ NN VBN IN NNP CD .\nNiger has been under military rule since February , when the army overthrew the country 's increasingly unpopular leader , President Mamadou Tandja .\tNNP VBZ VBN IN JJ NN IN NNP , WRB DT NN VBD DT NN POS RB JJ NN , NNP NNP NNP .\nThe military promised elections within the year .\tDT JJ JJ NNS IN DT NN .\nThe new constitution , voted on by referendum in October , gives the army until April 6 to restore civilian rule .\tDT JJ NN , VBD IN IN NN IN NNP , VBZ DT NN IN NNP CD TO VB JJ NN .\nSomalia 's exiled Islamist opposition is rejecting peace talks with the government that began in Djibouti on Tuesday .\tNNP POS VBN NN NN VBZ VBG NN NNS IN DT NN WDT VBD IN NNP IN NNP .\nThe Alliance for the Re-Liberation of Somalia says that opposition figures attending the talks are not authorized to meet with the government or sign any agreements .\tDT NNP IN DT NN IN NNP VBZ IN NN NNS VBG DT NNS VBP RB VBN TO VB IN DT NN CC VB DT NNS .\nIn the statement posted on its Web site on Wednesday , the group says it will never hold talks with the Somali government as long as Ethiopian troops remain in Somalia .\tIN DT NN VBD IN PRP$ NNP NN IN NNP , DT NN VBZ PRP MD RB VB NNS IN DT JJ NN RB RB IN JJ NNS VBP IN NNP .\nEthiopia has several thousand soldiers in Somalia to help the interim government battle an Islamist-led insurgency .\tNNP VBZ JJ CD NNS IN NNP TO VB DT JJ NN NN DT JJ NN .\nThe exiled opposition alliance is based in Eritrea and includes members of the Islamic Courts Union , which controlled much of Somalia in 2006 before being ousted by government and Ethiopian troops .\tDT VBN NN NN VBZ VBN IN NNP CC VBZ NNS IN DT NNP NNP NNP , WDT VBD NN IN NNP IN CD IN VBG VBN IN NN CC JJ NNS .\nFighting between insurgents and pro-government forces has killed thousands of Somalis in the year-and-a-half since .\tVBG IN NNS CC JJ NNS VBZ VBN NNS IN NNS IN DT NN IN .\nSomalia has endured 17 years of chaos and conflict since the fall of the last stable government .\tNNP VBZ VBN CD NNS IN NN CC NN IN DT NN IN DT JJ JJ NN .\nFifteen people have been killed in the crash of an airplane belonging to Venezuela 's state-run airline , Conviasa .\tCD NNS VBP VBN VBN IN DT NN IN DT NN VBG TO NNP POS JJ NN , NNP .\nThirty-six others on board survived the accident in a steel mill yard in Bolivar state .\tCD NNS IN NN VBD DT NN IN DT NN NN NN IN NNP NN .\nSteel mill workers helped pull the survivors from the smoking wreckage .\tNN NN NNS VBD VB DT NNS IN DT NN NN .\nIt is not clear what caused the crash , but officials say the pilot had radioed traffic controllers that something was wrong before the plane went down on the property of the state-run Sidor steel mill .\tPRP VBZ RB JJ WP VBD DT NN , CC NNS VBP DT NN VBD VBN NN NNS IN DT VBD JJ IN DT NN VBD RB IN DT NN IN DT JJ NNP NN NN .\nThe aircraft , a twin-engine turboprop , was carrying 47 passengers and a crew of four .\tDT NN , DT JJ NN , VBD VBG CD NNS CC DT NN IN CD .\nIt was flying from the Caribbean resort island of Margarita to the industrial city of Puerto Ordaz .\tPRP VBD VBG IN DT NNP NN NN IN NNP TO DT JJ NN IN NNP NNP .\nBolivar 's state governor described the large number of survivors as ' a miracle . '\tNNP POS NN NN VBD DT JJ NN IN NNS IN `` DT NN . ``\nAnd he called the steel mill workers ' heroes ' for assisting the survivors .\tCC PRP VBD DT NN NN NNS `` NNS `` IN VBG DT NNS .\nNorth Korea has criticized recent reports of a crisis in its leadership as a U.S.-organized smear campaign .\tNNP NNP VBZ VBN JJ NNS IN DT NN IN PRP$ NN IN DT JJ NN NN .\nA statement from the Foreign Ministry in Pyongyang Monday denies reports of mass defections by North Korean generals to China and called them part of a propaganda campaign designed to create instability .\tDT NN IN DT NNP NNP IN NNP NNP VBZ NNS IN NN NNS IN JJ JJ NNS TO NNP CC VBD PRP NN IN DT NN NN VBN TO VB NN .\nThe Ministry says the campaign is forcing North Korea to reconsider its participation in talks with the United States - an apparent reference to the six-party talks aimed at ending Pyongyang 's nuclear weapons ambitions .\tDT NNP VBZ DT NN VBZ VBG NNP NNP TO VB PRP$ NN IN NNS IN DT NNP NNPS IN DT JJ NN TO DT JJ NNS VBN IN VBG NNP POS JJ NNS NNS .\nThe statement carried by the official Korean Central News Agency also denounced reports in Western news media that some of the many portraits of the Communist state 's leader , Kim Jong-il , have been removed from display in North Korean cities .\tDT NN VBN IN DT JJ JJ NNP NNP NNP RB VBD NNS IN JJ NN NNS IN DT IN DT JJ NNS IN DT NNP NN POS NN , NNP NNP , VBP VBN VBN IN NN IN JJ JJ NNS .\nAskar Akayev Kyrgyzstan 's parliament has voted to strip ousted President Askar Akayev of many of his special privileges .\tNNP NNP NNP POS NN VBZ VBN TO VB JJ NNP NNP NNP IN NN IN PRP$ JJ NNS .\nLawmakers meeting Friday voted almost unanimously to repeal legislation that would allow the former leader to participate in government and parliament sessions .\tNNS VBG NNP VBD RB RB TO VB NN WDT MD VB DT JJ NN TO VB IN NN CC NN NNS .\nThe lawmakers held off , however , a discussion of Mr. Akayev 's resignation .\tDT NNS VBD RP , RB , DT NN IN NNP NNP POS NN .\nAlthough the ousted leader submitted his resignation Monday it will not be valid until parliament votes to accept it .\tIN DT JJ NN VBD PRP$ NN NNP PRP MD RB VB JJ IN NN NNS TO VB PRP .\nSuch a vote would legitimize the country 's new authorities and clear the way for new presidential elections .\tJJ DT NN MD VB DT NN POS JJ NNS CC VB DT NN IN JJ JJ NNS .\nMr. Akayev fled Kyrgyzstan on March 24 after protesters stormed his office and the opposition seized power .\tNNP NNP VBD NNP IN NNP CD IN NNS VBD PRP$ NN CC DT NN VBD NN .\nMeanwhile , 500 protestors in the southern part of the country ended a three-day occupation of a regional governor 's administrative offices in Naryn .\tRB , CD NNS IN DT JJ NN IN DT NN VBD DT JJ NN IN DT JJ NN POS JJ NNS IN NNP .\nThe activists were demanding the reversal of a court decision that annulled the new prime minister 's win in parliamentary elections .\tDT NNS VBD VBG DT NN IN DT NN NN WDT VBD DT JJ JJ NN POS NN IN JJ NNS .\nRoyal Dutch-Shell Group says it will pour $ 600 million into the development of an onshore gas field in China .\tNNP NNP NNP VBZ PRP MD VB $ CD CD IN DT NN IN DT JJ NN NN IN NNP .\nThe project represents a major foreign investment into China 's natural gas sector .\tDT NN VBZ DT JJ JJ NN IN NNP POS JJ NN NN .\nShell officials tell the Wall Street Journal they will spend the money over the next couple of years to develop and operate the field in Changbei .\tNNP NNS VBP DT NNP NNP NNP PRP MD VB DT NN IN DT JJ NN IN NNS TO VB CC VB DT NN IN NNP .\nNatural gas will then be distributed to Beijing , Tianjin , Hebei and Shandong .\tJJ NN MD RB VB VBN TO NNP , NNP , NNP CC NNP .\nThe field is expected to begin production in 2007 through a pipeline that is being built by PetroChina .\tDT NN VBZ VBN TO VB NN IN CD IN DT NN WDT VBZ VBG VBN IN NNP .\nShell officials tell the Wall Street Journal plans for the project have already been submitted to the Chinese authorities for approval .\tNNP NNS VBP DT NNP NNP NNP NNS IN DT NN VBP RB VBN VBN TO DT JJ NNS IN NN .\nU.S. Homeland Security officials have prepared a report listing 12 ways terrorists might attack the country and estimates of the death toll each attack might produce .\tNNP NNP NNP NNS VBP VBN DT NN VBG CD NNS NNS MD VB DT NN CC NNS IN DT NN NN DT NN MD VB .\nExistence of the unreleased document was first reported by the New York Times newspaper late Tuesday .\tNN IN DT JJ NN VBD RB VBN IN DT NNP NNP NNP NN RB NNP .\nThe Times says the scenarios include terrorists blowing up a chlorine tank , killing more than 17,000 people , and spreading pneumonic plague in public areas , killing 2500 .\tDT NNP VBZ DT NNS VBP NNS VBG RP DT NN NN , VBG JJR IN CD NNS , CC VBG JJ NN IN JJ NNS , VBG CD .\nIn another scenario , terrorists would infect cattle with foot-and-mouth disease at several sites , resulting in financial losses in the hundreds of millions of dollars .\tIN DT NN , NNS MD VB NNS IN JJ NN IN JJ NNS , VBG IN JJ NNS IN DT NNS IN NNS IN NNS .\nHomeland Security officials say the report was drawn up to help federal , state , and local officials develop preparedness plans .\tNNP NNP NNS VBP DT NN VBD VBN RP TO VB JJ , NN , CC JJ NNS VBP NN NNS .\nThe officials say there is no credible evidence that the attacks mentioned in the report are being planned .\tDT NNS VBP EX VBZ DT JJ NN IN DT NNS VBN IN DT NN VBP VBG VBN .\nSudan is expelling the country directors for two foreign aid groups , accusing them of violating a ban on engaging in political activities .\tNNP VBZ VBG DT NN NNS IN CD JJ NN NNS , VBG PRP IN VBG DT NN IN VBG IN JJ NNS .\nThe British charities Oxfam and Save the Children received letters warning of the expulsion orders , and said they plan to follow up with Sudan 's government .\tDT JJ NNS NNP CC NNP DT NNPS VBD NNS VBG IN DT NN NNS , CC VBD PRP VBP TO VB RP IN NNP POS NN .\nThe United Nations is pressing Khartoum to reverse the orders , saying the aid groups play a key role in helping victims of fighting in western Sudan .\tDT NNP NNP VBZ VBG NNP TO VB DT NNS , VBG DT NN NNS VBP DT JJ NN IN VBG NNS IN VBG IN JJ NNP .\nSudan 's government has criticized the groups for issuing statements which it says indicate support for the rebels in the western Darfur region .\tNNP POS NN VBZ VBN DT NNS IN VBG NNS WDT PRP VBZ VB NN IN DT NNS IN DT JJ NNP NN .\nIt also rejected a Save the Children press release that accused Sudanese troops of bombing a site near a refugee camp in the town of Tawilla earlier this month .\tPRP RB VBD DT NNP DT NNP NN NN WDT VBD JJ NNS IN VBG DT NN IN DT NN NN IN DT NN IN NNP RBR DT NN .\nSyrian President Bashar al-Assad is in Iran Saturday to meet with President Mahmoud Ahmadinejad and top officials .\tJJ NNP NNP NNP VBZ IN NNP NNP TO VB IN NNP NNP NNP CC JJ NNS .\nIran 's state-owned media report the leaders are expected to discuss instability in Iraq , the crisis in Lebanon and ways to strengthen bilateral ties .\tNNP POS JJ NNS VBP DT NNS VBP VBN TO VB NN IN NNP , DT NN IN NNP CC NNS TO VB JJ NNS .\nState-run news agency IRNA says the Syrian president is also scheduled to meet with Iran 's Supreme Leader Ayatollah Ali Khamenei during the two-day visit .\tJJ NN NN NNP VBZ DT JJ NN VBZ RB VBN TO VB IN NNP POS NNP NNP NNP NNP NNP IN DT JJ NN .\nSyria and Iran are close regional allies .\tNNP CC NNP VBP JJ JJ NNS .\nWashington accuses the two countries of fomenting tension in Iraq by allowing insurgents to enter Iraq and then aiding them .\tNNP VBZ DT CD NNS IN VBG NN IN NNP IN VBG NNS TO VB NNP CC RB VBG PRP .\nSyria is a firm supporter of Iran 's nuclear program , which the United States says is aimed at building atomic weapons .\tNNP VBZ DT JJ NN IN NNP POS JJ NN , WDT DT NNP NNP VBZ VBZ VBN IN VBG JJ NNS .\nIran says the program is solely for peaceful purposes .\tNNP VBZ DT NN VBZ RB IN JJ NNS .\nRiot police in Santiago , Chile have fired tear gas and water cannon at hundreds of students protesting President Bush 's arrival later this week at an economic summit in the Chilean capital .\tNN NN IN NNP , NNP VBP VBN JJ NN CC NN NN IN NNS IN NNS VBG NNP NNP POS NN RB DT NN IN DT JJ NN IN DT JJ NN .\nStreet clashes erupted Wednesday , just before foreign and trade ministers from the 21-member Asia-Pacific Economic Cooperation ( APEC ) opened two days of talks on free trade and other issues .\tNN NNS VBD NNP , RB IN JJ CC NN NNS IN DT JJ NNP NNP NNP LRB NNP RRB VBD CD NNS IN NNS IN JJ NN CC JJ NNS .\nPolice arrested dozens of demonstrators protesting the U.S.-led war in Iraq and globalization , which they say widens the gap between rich and poor nations .\tNNS VBN NNS IN NNS VBG DT JJ NN IN NNP CC NN , WDT PRP VBP VBZ DT NN IN JJ CC JJ NNS .\nNo injuries were reported .\tDT NNS VBD VBN .\nIn addition to President Bush , outgoing U.S. Secretary of State Colin Powell , Chinese President Hu Jintao and Japanese Prime Minister Junichiro Koizumi will attend the talks , which take place this Saturday and Sunday .\tIN NN TO NNP NNP , VBG NNP NNP IN NNP NNP NNP , JJ NNP NNP NNP CC JJ NNP NNP NNP NNP MD VB DT NNS , WDT VBP NN DT NNP CC NNP .\nMexico 's conservative ruling party says it will ask the Supreme Court to review Mexico City 's recent decision to allow first-trimester abortions in the capital .\tNNP POS JJ VBG NN VBZ PRP MD VB DT NNP NNP TO VB NNP NNP POS JJ NN TO VB JJ NNS IN DT NN .\nCity lawmakers approved the measure Tuesday on a 46 - 19 vote .\tNNP NNS VBD DT NN NNP IN DT CD : CD NN .\nThe move makes it legal to have an abortion within the first 12 weeks of pregnancy .\tDT NN VBZ PRP JJ TO VB DT NN IN DT JJ CD NNS IN NN .\nElsewhere in Mexico , abortion is legal only in cases of rape , incest , or danger to the mother 's health .\tRB IN NNP , NN VBZ JJ RB IN NNS IN NN , NN , CC NN TO DT NN POS NN .\nSupporters , including Mexico 's liberal Party of the Democratic Revolution , say the new law will protect women from unsafe , illegal abortions .\tNNS , VBG NNP POS JJ NN IN DT JJ NN , VBP DT JJ NN MD VB NNS IN JJ , JJ NNS .\nBut critics , including the Roman Catholic Church and President Felipe Calderon 's National Action Party , fear it is a step toward legalized abortion across Latin America .\tCC NNS , VBG DT NNP NNP NNP CC NNP NNP NNP POS NNP NNP NNP , VBP PRP VBZ DT NN IN VBN NN IN NNP NNP .\nOnly Cuba and Guyana currently allow abortions , though Colombia is considering a law to allow the procedure .\tRB NNP CC NNP RB VBP NNS , IN NNP VBZ VBG DT NN TO VB DT NN .\nFormer senior White House aide Lewis Libby is scheduled to make his first court appearance Thursday to face perjury , FALSE statement and obstruction of justice charges .\tJJ JJ NNP NNP NN NNP NNP VBZ VBN TO VB PRP$ JJ NN NN NNP TO VB NN , JJ NN CC NN IN NN NNS .\nA grand jury indicted Mr. Libby on Friday in connection with statements he made to jurors and FBI agents investigating who in the White House publicly identified a covert CIA officer .\tDT JJ NN VBD NNP NNP IN NNP IN NN IN NNS PRP VBD TO NNS CC NNP NNS VBG WP IN DT NNP NNP RB VBD DT JJ NNP NN .\nMr. Libby stepped down from his post as Vice President Dick Cheney 's chief of staff after the indictments were handed down .\tNNP NNP VBD RB IN PRP$ NN IN NNP NNP NNP NNP POS NN IN NN IN DT NNS VBD VBN RP .\nMonday , Mr. Cheney named his official government lawyer , David Addington , to replace Mr. Libby as chief of staff .\tNNP , NNP NNP VBD PRP$ JJ NN NN , NNP NNP , TO VB NNP NNP IN NN IN NN .\nHe chose a member of his national security team , John Hannah , to fill Mr. Libby 's other post as assistant to the vice president for national security affairs .\tPRP VBD DT NN IN PRP$ JJ NN NN , NNP NNP , TO VB NNP NNP POS JJ NN IN NN TO DT NN NN IN JJ NN NNS .\nAt least one other person , President Bush 's chief adviser Karl Rove , reportedly remains under investigation in the CIA leak probe .\tIN JJS CD JJ NN , NNP NNP POS JJ NN NNP NNP , RB VBZ IN NN IN DT NNP NN NN .\nA Spanish military hospital ship Wednesday picked up the bodies of 24 migrants in the Atlantic Ocean off the coast of Mauritania .\tDT JJ JJ NN NN NNP VBD RP DT NNS IN CD NNS IN DT NNP NNP IN DT NN IN NNP .\nThe bodies were floating about 720 kilometers south of Spain 's Canary Islands .\tDT NNS VBD VBG IN CD NNS RB IN NNP POS NNP NNP .\nAuthorities believe they were North Africans who drowned while trying to reach Spain .\tNNS VBP PRP VBD JJ NNS WP VBD IN VBG TO VB NNP .\nThe bodies were found one day after more than 330 migrants reached the islands in several boats - a single-day record for the Canaries .\tDT NNS VBD VBN CD NN IN JJR IN CD NNS VBD DT NNS IN JJ NNS IN DT JJ NN IN DT NNS .\nA delegation of Spanish officials plans to fly to Mauritania Thursday to discuss the migrant situation .\tDT NN IN JJ NNS VBZ TO VB TO NNP NNP TO VB DT JJ NN .\nSpain has already offered the west African nation patrol boats to intercept would-be immigrants .\tNNP VBZ RB VBN DT JJS JJ NN NN NNS TO VB JJ NNS .\nSpanish officials say about 3,000 North Africans have reached the Canary Islands in the first three months of the year .\tJJ NNS VBP IN CD JJ NNS VBP VBN DT NNP NNP IN DT JJ CD NNS IN DT NN .\nThe Red Cross says more than 1,000 died trying .\tDT NNP NNP VBZ JJR IN CD VBD VBG .\nTyphoon Utor is whipping across the central Philippines , killing at least three people and forcing 70,000 residents from their homes .\tNN NNP VBZ VBG IN DT JJ NNP , VBG IN JJS CD NNS CC VBG CD NNS IN PRP$ NNS .\nEvacuees huddled in makeshift emergency shelters Sunday as the typhoon toppled power lines across the island nation with winds of 120 kilometers an hour .\tNNS VBD IN JJ NN NNS NNP IN DT NN VBD NN NNS IN DT NN NN IN NNS IN CD NNS DT NN .\nAuthorities are urging villagers on the western island of Mindoro to head to higher ground to avoid possible flash floods and large waves .\tNNS VBP VBG NNS IN DT JJ NN IN NNP TO VB TO JJR NN TO VB JJ NN NNS CC JJ NNS .\nAuthorities ordered the mass evacuation from Albay province to prevent a repeat of the disaster that struck just over a week ago when another typhoon triggered mudslides on Mayon Volcano .\tNNS VBD DT NN NN IN NNP NN TO VB DT NN IN DT NN WDT VBD RB IN DT NN IN WRB DT NN VBD NNS IN NNP NNP .\nThe massive sludge covered entire villages , leaving at least 1,300 people dead or missing .\tDT JJ NN VBD JJ NNS , VBG IN JJS CD NNS JJ CC JJ .\nSomalia 's prime minister has ordered all aid agencies operating in the country to register with the government or leave .\tNNP POS JJ NN VBZ VBN DT NN NNS VBG IN DT NN TO VB IN DT NN CC VB .\nA spokesman for the prime minister , Abdulkadir Walayo , said the government will protect aid workers who register , but said it will not be liable for the safety of those who fail to sign up .\tDT NN IN DT JJ NN , NNP NNP , VBD DT NN MD VB NN NNS WP VBP , CC VBD PRP MD RB VB JJ IN DT NN IN DT WP VBP TO VB RP .\nKidnappings of foreign aid workers by armed groups are frequent in Somalia .\tNNS IN JJ NN NNS IN JJ NNS VBP JJ IN NNP .\nThe spokesman did not provide details on what registration would involve and had no specifics on how the Somali government planned to provide security for registered aid organizations .\tDT NN VBD RB VB NNS IN WP NN MD VB CC VBD DT NNS IN WRB DT JJ NN VBD TO VB NN IN JJ NN NNS .\nThe government controls very little of the countryside where humanitarian agencies do most of their work .\tDT NN VBZ RB RB IN DT NN WRB JJ NNS VBP JJS IN PRP$ NN .\nThe hardline al-Shabab militant group and related Islamic groups control much of the country after a two year long insurgency .\tDT JJ NNP JJ NN CC JJ JJ NNS VBP NN IN DT NN IN DT CD NN RB RB .\nIran is loaning cash-strapped Cuba $ 26 Million .\tNNP VBZ VBG JJ NNP $ CD NN .\nThe loan is part of a bilateral cooperation agreement between the two countries covering key areas such as banking , farming and biotechnology .\tDT NN VBZ NN IN DT JJ NN NN IN DT CD NNS VBG JJ NNS JJ IN NN , NN CC NN .\nCuba 's state-run newspaper Granma Friday reported details of the agreement .\tNNP POS JJ NN NNP NNP VBD NNS IN DT NN .\nThe newspaper says Iran will offer Cuba assistance and equipment to help it fight the effects of a drought plaguing the eastern portion of the island .\tDT NN VBZ NNP MD VB NNP NN CC NN TO VB PRP VB DT NNS IN DT NN VBG DT JJ NN IN DT NN .\nIn return , Havana will help Tehran build a biotechnology factory to produce hepatitis B vaccines and Cuban-engineered medicines to treat heart and kidney disease .\tIN NN , NNP MD VB NNP VB DT NN NN TO VB NNP NNP NNS CC JJ NNS TO VB NN CC NN NN .\nIran 's official news agency IRNA hailed Iranian-Cuban relations , and said the agreement paves the way for further joint economic cooperation between the two nations .\tNNP POS JJ NN NN NNP VBD JJ NNS , CC VBD DT NN VBZ DT NN IN JJ JJ JJ NN IN DT CD NNS .\nThe United States has accused Iran of running a secret nuclear weapons program , and has recently tightened a long-standing economic embargo on Cuba .\tDT NNP NNPS VBZ VBN NNP IN VBG DT JJ JJ NNS NN , CC VBZ RB VBN DT JJ JJ NN IN NNP .\nFormer Chilean dictator Augusto Pinochet has been charged with tax evasion and corruption related to multi-million-dollar bank accounts he allegedly opened in the United States and other countries .\tJJ JJ NN NNP NNP VBZ VBN VBN IN NN NN CC NN VBN TO JJ NN NNS PRP RB VBD IN DT NNP NNPS CC JJ NNS .\nCourt officials in Santiago say General Pinochet , who will be 90 on Friday , has been placed under house arrest .\tNNP NNS IN NNP VBP NNP NNP , WP MD VB CD IN NNP , VBZ VBN VBN IN NN NN .\nJudge Carlos Cerda has questioned the former dictator three times during the past two weeks over some $ 27 million prosecutors allege he hid in foreign accounts .\tNNP NNP NNP VBZ VBN DT JJ NN CD NNS IN DT JJ CD NNS IN DT $ CD CD NNS VBP PRP VBD IN JJ NNS .\nThe general 's wife and youngest son have been indicted as accomplices .\tDT NN POS NN CC JJS NN VBP VBN VBN IN NNS .\nGeneral Pinochet also faces charges in the disappearances and deaths of 119 leftist opponents in 1975 and is suspected of involvement in hundreds of other deaths while he was in power from 1973 - 1990 .\tNNP NNP RB VBZ NNS IN DT NNS CC NNS IN CD JJ NNS IN CD CC VBZ VBN IN NN IN NNS IN JJ NNS IN PRP VBD IN NN IN CD IN CD .\nA senior U.N. official says Algerian authorities never responded to a request for tighter security for U.N. offices in Algiers that were later hit by a suicide bombing .\tDT JJ NNP NN VBZ JJ NNS RB VBD TO DT NN IN JJR NN IN NNP NNS IN NNP WDT VBD RB VBN IN DT NN NN .\nThe head of the U.N. Development Agency , Kemal Dervis , said U.N. officials submitted a formal request to the Algerian government for road blockades , but no action was taken .\tDT NN IN DT NNP NNP NNP , NNP NNP , VBD NNP NNS VBD DT JJ NN TO DT JJ NN IN NN NNS , CC DT NN VBD VBN .\nThe bombing in December destroyed the offices in Algiers and killed at least 37 people , including 17 U.N. staffers .\tDT NN IN NNP VBD DT NNS IN NNP CC VBN IN JJS CD NNS , VBG CD NNP NNS .\nAl-Qaida 's North African wing later claimed responsibility .\tNNP POS JJ JJ NN RB VBD NN .\nThe U.N. secretary-general has decided to set up an independent panel to investigate the attack .\tDT NNP NN VBZ VBN TO VB RP DT JJ NN TO VB DT NN .\nBut Algerian Prime Minister Abdelaziz Belkhadem has criticized that move , saying the investigation will not be welcome .\tCC JJ NNP NNP NNP NNP VBZ VBN IN NN , VBG DT NN MD RB VB JJ .\nHe said the move was decided without consulting the Algerian government .\tPRP VBD DT NN VBD VBN IN VBG DT JJ NN .\nVenezuela 's defense minister says his country is considering building unmanned planes and may look to allied countries , such as Iran , for help .\tNNP POS NN NN VBZ PRP$ NN VBZ VBG VBG JJ NNS CC MD VB TO JJ NNS , JJ IN NNP , IN NN .\nGeneral Raul Baduel says Venezuela has made progress in the development of planes that do not require human pilots .\tNNP NNP NNP VBZ NNP VBZ VBN NN IN DT NN IN NNS WDT VBP RB VB JJ NNS .\nSpeaking in Caracas Monday , he said Venezuela will look to other countries for help in maintaining its aging U.S.-made F-5 fighter jets .\tVBG IN NNP NNP , PRP VBD NNP MD VB TO JJ NNS IN NN IN VBG PRP$ NN JJ NN NN NNS .\nVenezuela has had trouble maintaining the jets since the United States began blocking arms sales to the South American country .\tNNP VBZ VBN NN VBG DT NNS IN DT NNP NNPS VBD VBG NNS NNS TO DT NNP NNP NN .\nThe Bush administration has said it considers Venezuelan President Hugo Chavez a destabilizing factor in Latin America .\tDT NNP NN VBZ VBN PRP VBZ JJ NNP NNP NNP DT JJ NN IN NNP NNP .\nCosta Rica is asking a United Nations court to order Nicaragua to withdraw its troops from disputed land along the river that forms the border between the two nations .\tNNP NNP VBZ VBG DT NNP NNP NN TO VB NNP TO VB PRP$ NNS IN JJ NN IN DT NN WDT VBZ DT NN IN DT CD NNS .\nThe International Court of Justice in The Hague began hearing arguments on the issue Tuesday .\tDT NNP NNP IN NNP IN DT NNP VBD VBG NNS IN DT NN NNP .\nCosta Rica accuses Nicaragua of violating international law by putting troops on Costa Rican territory for a dredging project to build a canal .\tNNP NNP VBZ NNP IN VBG JJ NN IN VBG NNS IN JJ JJ NN IN DT VBG NN TO VB DT NN .\nNicaragua denies violating Costa Rican territory , saying the work is being done on its own land .\tNNP VBZ VBG JJ JJ NN , VBG DT NN VBZ VBG VBN IN PRP$ JJ NN .\nCosta Rican diplomat Edgar Ugalde told the court the action is threatening peace in the region .\tJJ JJ NN NNP NNP VBD DT NN DT NN VBZ VBG NN IN DT NN .\nCosta Rica also says the project is damaging to the area 's wetlands and wildlife .\tNNP NNP RB VBZ DT NN VBZ VBG TO DT NN POS NNS CC NN .\nNicaraguan officials are also scheduled to address the court Tuesday .\tJJ NNS VBP RB VBN TO VB DT NN NNP .\nBanned American sprinter Justin Gatlin has lost his appeal to run in the U.S. Olympic athletics trials in Eugene , Oregon .\tVBN JJ NN NNP NNP VBZ VBN PRP$ NN TO VB IN DT NNP NNP NNS NNS IN NNP , NNP .\nGatlin says he will end his legal effort rather than take the case to the U.S. Supreme Court .\tNNP VBZ PRP MD VB PRP$ JJ NN RB IN VB DT NN TO DT NNP NNP NNP .\nGatlin has twice tested positive for banned substances .\tNNP VBZ RB VBN JJ IN VBN NNS .\nBut his first doping violation resulted from prescribed medication to treat attention deficit disorder .\tCC PRP$ JJ NN NN VBD IN JJ NN TO VB NN NN NN .\nIn a brief decision Thursday , the 11th U.S. Circuit Court of Appeals in Atlanta ruled Gatlin 's case is not eligible for an injunction .\tIN DT JJ NN NNP , DT JJ NNP NNP NNP IN NNPS IN NNP VBD NNP POS NN VBZ RB JJ IN DT NN .\nEarlier this month , the Court of Arbitration for Sport upheld a four-year ban against Gatlin for doping violations .\tRBR DT NN , DT NNP IN NNP IN NNP VBD DT JJ NN IN NNP IN VBG NNS .\nThe defending Olympic 100-meter champion sought a court ruling that would allow him to run in the U.S. trials starting Saturday .\tDT VBG NNP JJ NN VBD DT NN NN WDT MD VB PRP TO VB IN DT NNP NNS VBG NNP .\nA team of Hubble Telescope astronomers has announced the discovery of infant stars in a galaxy neighboring the Milky Way .\tDT NN IN NNP NNP NNS VBZ VBN DT NN IN NN NNS IN DT JJ VBG DT NNP NNP .\nThe stars were found in the Small Magellanic Cloud , a fragmentary galaxy some 2,00,000 light years from earth used by scientists as a laboratory to study how stars are born .\tDT NNS VBD VBN IN DT JJ NNP NNP , DT JJ NN DT CD NN NNS IN NN VBN IN NNS IN DT NN TO VB WRB NNS VBP VBN .\nAstronomers say Hubble has taken images of a large number of infant stars still forming from collapsing gas clouds , and say the youngest of these is only half the mass of our sun .\tNNS VBP NNP VBZ VBN NNS IN DT JJ NN IN NN NNS RB VBG IN VBG NN NNS , CC VBP DT JJS IN DT VBZ RB PDT DT NN IN PRP$ NN .\nThough star birth is common in Earth 's own galaxy , scientists say the young star is unusual because it lacks many of the elements it needs to fuel itself .\tIN NN NN VBZ JJ IN NNP POS JJ NN , NNS VBP DT JJ NN VBZ JJ IN PRP VBZ NN IN DT NNS PRP VBZ TO VB PRP .\nThe lawyer for an Iranian-American journalist prevented from leaving Iran says his client is facing a new charge of acting against Iran 's national security .\tDT NN IN DT JJ NN VBD IN VBG NNP VBZ PRP$ NN VBZ VBG DT JJ NN IN VBG IN NNP POS JJ NN .\nThe lawyer for Parnaz Azima told U.S.-funded Radio Farda that Iranian authorities have given no indication when the Radio Farda journalist can leave Iran .\tDT NN IN NNP NNP VBD JJ NNP NNP IN JJ NNS VBP VBN DT NN WRB DT NNP NNP NN MD VB NNP .\nAzima is already facing charges of working with Radio Farda and spreading propaganda against the Iranian state .\tNNP VBZ RB VBG NNS IN VBG IN NNP NNP CC VBG NN IN DT JJ NN .\nAzima traveled to Tehran in January to visit her sick mother , but has been prevented from leaving .\tNNP VBD TO NNP IN NNP TO VB PRP$ JJ NN , CC VBZ VBN VBN IN VBG .\nLast week , Iran released on bail an Iranian-American academic who has been jailed in Tehran since May on security charges .\tJJ NN , NNP VBD IN NN DT JJ NN WP VBZ VBN VBN IN NNP IN NNP IN NN NNS .\nHaleh Esfandiari is a Middle East expert for the Woodrow Wilson Center .\tNNP NNP VBZ DT NNP NNP NN IN DT NNP NNP NNP .\nTwo other Iranian-Americans - urban planner Kian Tajbakhsh and Ali Shakeri , who works for a university conflict-resolution group - are also being held .\tCD JJ NNS : JJ NN NNP NNP CC NNP NNP , WP VBZ IN DT NN NN NN : VBP RB VBG VBN .\nA top Venezuelan official says his country will fight drug trafficking without the help of the United States .\tDT JJ JJ NN VBZ PRP$ NN MD VB NN NN IN DT NN IN DT NNP NNPS .\nForeign Minister Nicolas Maduro said Tuesday that Venezuela is a sovereign nation that does not need what he described as ' money from the devil . '\tNNP NNP NNP NNP VBD NNP IN NNP VBZ DT JJ NN WDT VBZ RB VB WP PRP VBD IN `` NN IN DT NN . ``\nMaduro 's comments come after the release of President Bush 's budget , in which a request for aid for anti-drug efforts in Venezuela was eliminated .\tNNP POS NNS VBP IN DT NN IN NNP NNP POS NN , IN WDT DT NN IN NN IN JJ NNS IN NNP VBD VBN .\nVenezuelan President Hugo Chavez severed ties with the U.S. Drug Enforcement Administration in 2005 , claiming agents were involved in espionage .\tJJ NNP NNP NNP VBD NNS IN DT NNP NNP NNP NNP IN CD , VBG NNS VBD VBN IN NN .\nThe South American country is a major transit route for cocaine destined for the United States or Europe .\tDT NNP NNP NN VBZ DT JJ NN NN IN NN VBN IN DT NNP NNPS CC NNP .\nChinese President Hu Jintao has signed several agreements during his visit to Spain to improve relations and trade between the two countries .\tJJ NNP NNP NNP VBZ VBN JJ NNS IN PRP$ NN TO NNP TO VB NNS CC NN IN DT CD NNS .\nMr. Hu and Spanish Prime Minister Jose Luis Rodriguez Zapatero signed a document Monday making Spain a privileged partner in economic and political dealings .\tNNP NNP CC JJ NNP NNP NNP NNP NNP NNP VBD DT NN NNP VBG NNP DT JJ NN IN JJ CC JJ NNS .\nChina has similar deals with Britain , France and Germany .\tNNP VBZ JJ NNS IN NNP , NNP CC NNP .\nSpain and China also reached an extradition accord .\tNNP CC NNP RB VBD DT NN NN .\nBut Spain , in accordance with European Union policy , will not send back suspects who could face the death penalty in Spain .\tCC NNP , IN NN IN NNP NNP NN , MD RB VB RB NNS WP MD VB DT NN NN IN NNP .\nDuring his visit to Spain , Mr. Hu also met with King Juan Carlos .\tIN PRP$ NN TO NNP , NNP NNP RB VBD IN NNP NNP NNP .\nSpain is the last stop on Mr. Hu 's European tour , which also brought him to Germany and Britain .\tNNP VBZ DT JJ NN IN NNP NNP POS JJ NN , WDT RB VBD PRP TO NNP CC NNP .\nDemonstrators protesting Chinese policies on human rights and Tibet have followed Mr. Hu throughout his trip .\tNNS VBG JJ NNS IN JJ NNS CC NNP VBP VBN NNP NNP IN PRP$ NN .\nFirefighters battling a fast moving wildfire in southern California say the blaze is now about 40 percent contained , and should be fully under control by Tuesday .\tNNS VBG DT JJ VBG NN IN JJ NNP VBP DT NN VBZ RB IN CD NN VBN , CC MD VB RB IN NN IN NNP .\nWhen the fire began Saturday in the beach community of Malibu , strong winds and high temperatures helped spread the flames rapidly , forcing more than 10,000 people to leave their homes .\tWRB DT NN VBD NNP IN DT NN NN IN NNP , JJ NNS CC JJ NNS VBD VB DT NNS RB , VBG JJR IN CD NNS TO VB PRP$ NNS .\nLos Angeles County fire officials say the blaze has destroyed nearly 50 homes and scorched about 2,000 hectares of land .\tNNP NNP NNP NN NNS VBP DT NN VBZ VBN RB CD NNS CC VBN IN CD NNS IN NN .\nAt least 500 firefighters are working to contain the flames , aided by water drops from 10 helicopters and other aircraft .\tIN JJS CD NNS VBP VBG TO VB DT NNS , VBN IN NN NNS IN CD NNS CC JJ NN .\nLast month , 24 fires in southern California burned through nearly 2,00,000 hectares and destroyed 2,000 homes .\tJJ NN , CD NNS IN JJ NNP VBD IN RB CD NNS CC VBD CD NNS .\nA British official says the government has been talking with the United States about placing part of an American anti-missile system in Britain .\tDT JJ NN VBZ DT NN VBZ VBN VBG IN DT NNP NNPS IN VBG NN IN DT JJ JJ NN IN NNP .\nA spokeswoman for British Prime Minister Tony Blair said Friday talks with Washington have been held at various levels , but the discussions are at an early stage .\tDT NN IN JJ NNP NNP NNP NNP VBD NNP NNS IN NNP VBP VBN VBN IN JJ NNS , CC DT NNS VBP IN DT JJ NN .\nA U.S. official in London says Washington has been discussing possible joint efforts with Britain .\tDT NNP NN IN NNP VBZ NNP VBZ VBN VBG JJ JJ NNS IN NNP .\nBut he says right now , the U.S. is concentrating on Poland and the Czech Republic as the main European sites for a missile defense shield .\tCC PRP VBZ RB RB , DT NNP VBZ VBG IN NNP CC DT JJ NNP IN DT JJ JJ NNS IN DT NN NN NN .\nMoscow has objected to U.S. plans for placing the system so close to Russia .\tNNP VBZ VBN TO NNP NNS IN VBG DT NN RB RB TO NNP .\nU.S. officials say the system is no threat to Russia , and the system is aimed at stopping such countries as Iran .\tNNP NNS VBP DT NN VBZ DT NN TO NNP , CC DT NN VBZ VBN IN VBG JJ NNS IN NNP .\nPalestinian Authority President Mahmoud Abbas is expected to ask Hamas prime minister-designate Ismail Haniyeh to form a new government Tuesday .\tJJ NNP NNP NNP NNP VBZ VBN TO VB NNP JJ JJ NNP NNP TO VB DT JJ NN NNP .\nHamas wants to build a coalition government , but Mr. Abbas 's Fatah party and the militant Islamic Jihad group have declined to join .\tNNP VBZ TO VB DT NN NN , CC NNP NNP POS NNP NN CC DT JJ NNP NNP NN VBP VBN TO VB .\nThe new Palestinian government is facing a financial crisis because of Western threats to cut aid and Israel 's freeze on the transfer of customs revenues it collects for the Palestinian Authority .\tDT JJ JJ NN VBZ VBG DT JJ NN IN IN JJ NNS TO VB NN CC NNP POS NN IN DT NN IN NNS NNS PRP VBZ IN DT JJ NNP .\nIran is urging Muslim nations to make up the funding shortfall .\tNNP VBZ VBG NNP NNS TO VB RP DT NN NN .\nHamas leader Khaled Mashaal said Tuesday Iran will play a greater role in Palestinian affairs .\tNNP NN NNP NNP VBD NNP NNP MD VB DT JJR NN IN JJ NNS .\nIsrael has said it will not have contact with a Hamas-led government , but Israel 's interim Prime MInister Ehud Ohlmert said Tuesday there is still hope for reaching peace .\tNNP VBZ VBN PRP MD RB VB NN IN DT JJ NN , CC NNP POS JJ NNP NNP NNP NNP VBD NNP EX VBZ RB NN IN VBG NN .\nJapan says it will provide Iraq with $ 655 million in loans for port reconstruction and other infrastructure projects .\tNNP VBZ PRP MD VB NNP IN $ CD CD IN NNS IN JJ NN CC JJ NN NNS .\nJapan 's foreign ministry said Tuesday the loans will be used to help reconstruct the port of Umm Qasr and repair a thermal power plant near Baghdad .\tNNP POS JJ NN VBD NNP DT NNS MD VB VBN TO VB VB DT NN IN NNP NNP CC VB DT JJ NN NN IN NNP .\nIt said the funds would also be used for irrigation projects .\tPRP VBD DT NNS MD RB VB VBN IN NN NNS .\nThe infrastructure loans are part of $ 3.5 billion in lending that Japan pledged at a 2003 Iraq donors conference in Madrid .\tDT NN NNS VBP NN IN $ CD CD IN NN IN NNP VBD IN DT CD NNP NNS NN IN NNP .\nJapan has around 600 non-combat troops in the southern Iraqi city of Samawa .\tNNP VBZ IN CD JJ NNS IN DT JJ JJ NN IN NNP .\nIn December , the Cabinet approved an extension of the troop 's mission for up to one year .\tIN NNP , DT NNP VBD DT NN IN DT NN POS NN IN RB TO CD NN .\nPrime Minister Junichiro Koizumi has not said whether the troops would remain the entire year , but reports from Japan have said Tokyo may consider withdrawing them sooner .\tNNP NNP NNP NNP VBZ RB VBN IN DT NNS MD VB DT JJ NN , CC NNS IN NNP VBP VBN NNP MD VB VBG PRP RBR .\nIndonesian doctors say a 20-year-old woman showing symptoms of bird flu has died in a Jakarta hospital .\tJJ NNS VBP DT JJ NN VBG NNS IN NN NN VBZ VBN IN DT NNP NN .\nA hospital spokesman , Dr. Ilham Patu , said test results confirming the cause of death are expected to be available by Monday .\tDT NN NN , NNP NNP NNP , VBD NN NNS VBG DT NN IN NN VBP VBN TO VB JJ IN NNP .\nMeanwhile , China confirmed its eighth outbreak of bird flu within a month on Saturday , this time in birds on farms in the central Hubei province .\tRB , NNP VBD PRP$ JJ NN IN NN NN IN DT NN IN NNP , DT NN IN NNS IN NNS IN DT JJ NNP NN .\nThe Ministry of Agriculture said the latest outbreak killed a total of 2,500 birds and prompted health officials to cull more than 30,000 birds .\tDT NNP IN NNP VBD DT JJS NN VBD DT NN IN CD NNS CC VBD NN NNS TO VB JJR IN CD NNS .\nChina has not reported any confirmed human cases of bird flu .\tNNP VBZ RB VBN DT VBD JJ NNS IN NN NN .\nKuwait has also found the deadly H5N1 variety of avian flu in a bird culled by authorities .\tNNP VBZ RB VBN DT JJ NNP NN IN JJ NN IN DT NN VBN IN NNS .\nZimbabwe marks 25 years of independence from Britain Monday amid opposition claims that the country 's economy has not done well during those years .\tNNP VBZ CD NNS IN NN IN NNP NNP IN NN NNS IN DT NN POS NN VBZ RB VBN RB IN DT NNS .\nOfficials said leaders of neighboring Democratic Republic of Congo , Tanzania , Namibia , Angola , Mozambique and Botswana are attending the anniversary celebrations .\tNNS VBD NNS IN VBG JJ NNP IN NNP , NNP , NNP , NNP , NNP CC NNP VBP VBG DT NN NNS .\nPresident Robert Mugabe , who has led the country since independence , is scheduled to give a speech extolling the country 's achievements .\tNNP NNP NNP , WP VBZ VBN DT NN IN NN , VBZ VBN TO VB DT NN VBG DT NN POS NNS .\nBut opposition groups are saying that the country is worse off today than when it gained independence 25 years ago .\tCC NN NNS VBP VBG IN DT NN VBZ JJR IN NN IN WRB PRP VBD NN CD NNS RB .\nHundreds of Somalis have rallied in support of interim Prime Minister Ali Mohamed Gedi , who narrowly survived a no-confidence vote in parliament Sunday .\tNNS IN NNS VBP VBN IN NN IN JJ NNP NNP NNP NNP NNP , WP RB VBD DT JJ NN IN NN NNP .\nCrowds of supporters marched in the Somali town of Baidoa Monday carrying signs and chanting Mr. Gedi 's name .\tNNS IN NNS VBD IN DT JJ NN IN NNP NNP VBG NNS CC VBG NNP NNP POS NN .\nThe no-confidence measure Sunday needed 139 votes for passage but only got 126 .\tDT JJ NN NNP VBD CD NNS IN NN CC RB VBD CD .\nEighty-eight lawmakers voted to keep Mr. Gedi in office .\tJJ NNS VBD TO VB NNP NNP IN NN .\nMany lawmakers have criticized Mr. Gedi 's decision to allow Ethiopian troops onto Somali soil .\tJJ NNS VBP VBN NNP NNP POS NN TO VB JJ NNS IN JJ NN .\nEthiopia sent the troops earlier this month after Islamic militias that control much of southern Somalia appeared to be moving on the government 's base of Baidoa .\tNNP VBD DT NNS RBR DT NN IN JJ NNS IN VBP NN IN JJ NNP VBD TO VB VBG IN DT NN POS NN IN NNP .\nThe transitional government has international backing but virtually no power outside the town .\tDT JJ NN VBZ JJ NN CC RB DT NN IN DT NN .\nThe government suffered major political blows last week when 18 cabinet ministers resigned and another overseeing a rewrite of the constitution was shot and killed .\tDT NN VBD JJ JJ NNS JJ NN WRB CD NN NNS VBD CC DT VBG DT NN IN DT NN VBD VBN CC VBN .\nPakistani officials say pneumonia is spreading among children who survived the October earthquake that left more than three million people out in the cold .\tJJ NNS VBP NN VBZ VBG IN NNS WP VBD DT NNP NN WDT VBD JJR IN CD CD NNS IN IN DT NN .\nThey say hundreds of homeless people have contracted pneumonia in the quake-zone as the harsh Himalayan winter sets in .\tPRP VBP NNS IN JJ NNS VBP VBN NN IN DT NN IN DT JJ JJ NN NNS IN .\nThe Himalayan region got its first harsh winter weather at the weekend with up to 20 centimeters of snow falling at some high altitudes and heavy rain in some lower areas , bringing relief operations to a halt .\tDT JJ NN VBD PRP$ JJ JJ NN NN IN DT NN IN RB TO CD NNS IN NN VBG IN DT JJ NNS CC JJ NN IN DT JJR NNS , VBG NN NNS TO DT NN .\nAid agencies are racing to ensure that survivors get adequate shelter and enough food to see them through the winter .\tJJ NNS VBP VBG TO VB IN NNS VBP JJ NN CC JJ NN TO VB PRP IN DT NN .\nRelief workers say the fear is that disease could sweep through cold , poorly nourished survivors , causing a second wave of deaths .\tNN NNS VBP DT NN VBZ DT NN MD VB IN JJ , RB JJ NNS , VBG DT JJ NN IN NNS .\nNorthern California 's wine-making region is bracing for more flooding as a second wave of rainstorms approaches .\tNNP NNP POS JJ NN VBZ VBG IN JJR NN IN DT JJ NN IN NNS NNS .\nResidents of Napa and Sonoma are still recovering from Saturday 's storms , which dumped about 17 centimeters of rains in some places , swelling rivers , causing mudslides and flooding downtown areas .\tNNS IN NNP CC NNP VBP RB VBG IN NNP POS NNS , WDT VBD IN CD NNS IN NNS IN DT NNS , VBG NNS , VBG NNS CC NN NN NNS .\nAnother wave of storms is expected to dump even more rain in the region .\tDT NN IN NNS VBZ VBN TO VB RB JJR NN IN DT NN .\nOfficials continue to urge people to go to higher ground .\tNNS VBP TO VB NNS TO VB TO JJR NN .\nThe Russian and Napa rivers have now receded from flood levels and officials do not expect the additional rains to again cause them to breach their banks .\tDT JJ CC NNP NNS VBP RB VBN IN NN NNS CC NNS VBP RB VB DT JJ NNS TO RB VB PRP TO VB PRP$ NNS .\nBut the storms are threatening the streak of good weather for Pasadena 's annual Rose Bowl parade Monday before the College Football Championship game .\tCC DT NNS VBP VBG DT NN IN JJ NN IN NNP POS JJ NNP NNP NN NNP IN DT NNP NNP NNP NN .\nIt has not rained during the event since 1955 .\tPRP VBZ RB VBN IN DT NN IN CD .\nFrance has indicated it would support referring Iran to the U.N. Security Council for possible sanctions , if Tehran fails to meet its obligations for nuclear non-proliferation .\tNNP VBZ VBN PRP MD VB VBG NNP TO DT NNP NNP NNP IN JJ NNS , IN NNP VBZ TO VB PRP$ NNS IN JJ NN .\nFrench Prime Minister Dominique de Villepin , speaking at a United Nations summit of world leaders , did not mention Iran by name .\tJJ NNP NNP NNP NNP NNP , NN IN DT NNP NNP NN IN NN NNS , VBD RB VB NNP IN NN .\nBut he said such a referral for sanctions is ' legitimate ' once dialogue has been exhausted .\tCC PRP VBD PDT DT NN IN NNS VBZ `` JJ `` RB NN VBZ VBN VBN .\nPresident Bush , in an address to the General Assembly , said countries that sponsor terrorism and pursue weapons of mass destruction must be sent a message that they will not be allowed to threaten world peace .\tNNP NNP , IN DT NN TO DT NNP NNP , VBD NNS WDT VBP NN CC VB NNS IN NN NN MD VB VBN DT NN IN PRP MD RB VB VBN TO VB NN NN .\nThe United States accuses Iran of using its nuclear program to develop atomic weapons -- a charge Tehran has repeatedly denied .\tDT NNP NNPS VBZ NNP IN VBG PRP$ JJ NN TO VB JJ NNS IN DT NN NNP VBZ RB VBN .\nWashington is pushing to have Iran referred to the Security Council .\tNNP VBZ VBG TO VB NNP VBN TO DT NNP NNP .\nThe European Union has warned Iran to stop uranium processing and enrichment activities or face referral to the Security Council .\tDT NNP NNP VBZ VBN NNP TO VB NN NN CC NN NNS CC NN NN TO DT NNP NNP .\nTwo senior Taiwanese Cabinet ministers have offered to resign , following the ruling Democratic Progressive Party 's defeat in legislative elections held last week .\tCD JJ JJ NN NNS VBP VBN TO VB , VBG DT NN JJ NNP NNP POS NN IN JJ NNS VBN JJ NN .\nGovernment Information Office chief Shieh Jhy-wey told reporters Friday that he wanted to quit ahead of the Cabinet 's planned mass resignation on January 28 .\tNNP NNP NNP NN NNP NNP VBD NNS NNP IN PRP VBD TO VB RB IN DT NNP POS JJ NN NN IN NNP CD .\nMedia reports say Education Minister Tu Cheng-sheng has also offered to go as well .\tNNS NNS VBP NNP NNP NNP NNP VBZ RB VBN TO VB RB RB .\nIn last week 's elections , the opposition Nationalists won 81 of the 113 seats in Taiwan 's legislature .\tIN JJ NN POS NNS , DT NN NNS VBD CD IN DT CD NNS IN NNP POS NN .\nThe Nationalists campaigned on a theme of improving ties with China and strengthening Taiwan 's stagnant economy , which they blamed on President Chen Shu-bian 's pro-independence stance .\tDT NNPS VBD IN DT NN IN VBG NNS IN NNP CC VBG NNP POS JJ NN , WDT PRP VBD IN NNP NNP NNP POS JJ NN .\nChina and Taiwan split in 1949 during the Chinese civil war , and Beijing regards the self-ruled island as part of its territory .\tNNP CC NNP NN IN CD IN DT JJ JJ NN , CC NNP VBZ DT JJ NN IN NN IN PRP$ NN .\nChina has threatened to use force if Taiwan takes steps towards formal independence .\tNNP VBZ VBN TO VB NN IN NNP VBZ NNS IN JJ NN .\nInsurgents in Iraq carried out a series of attacks Wednesday , as they pressed on with their violent campaign to disrupt Sunday 's national elections .\tNNS IN NNP VBD RP DT NN IN NNS NNP , IN PRP VBD IN IN PRP$ JJ NN TO VB NNP POS JJ NNS .\nIn northern Iraq , around Kirkuk , three car bomb blasts killed at least five people , including policemen .\tIN JJ NNP , IN NNP , CD NN NN NNS VBD IN JJS CD NNS , VBG NNS .\nIn Baquba , also in the north , at least one policeman was killed when gunmen attacked the local offices of three political parties contesting in the upcoming vote .\tIN NNP , RB IN DT NN , IN JJS CD NN VBD VBN WRB NNS VBD DT JJ NNS IN CD JJ NNS VBG IN DT JJ NN .\nThe U.S. military says one soldier was killed and two others wounded in Tikrit , where insurgents attacked their patrol with rocket propelled grenades .\tDT NNP NN VBZ CD NN VBD VBN CC CD NNS VBD IN NNP , WRB NNS VBD PRP$ NN IN NN VBN NNS .\nA U.S. military convoy also came under attack on the road to Baghdad 's airport .\tDT NNP JJ NN RB VBD IN NN IN DT NN TO NNP POS NN .\nTuesday , U.S. and Iraqi forces said they were stepping up security efforts ahead of Sunday 's vote .\tNNP , NNP CC JJ NNS VBD PRP VBD VBG RP NN NNS RB IN NNP POS NN .\nThe Israeli military says it will complete its withdrawal from the Gaza Strip by September 15 , but warned it will strike the territory hard if Israel comes under attack .\tDT JJ NN VBZ PRP MD VB PRP$ NN IN DT NNP NNP IN NNP CD , CC VBD PRP MD VB DT NN RB IN NNP VBZ IN NN .\nThe warning came as Palestinian militants on Saturday reaffirmed their plan to resist disarmament , a key to peace efforts between the Israelis and Palestinians .\tDT NN VBD IN JJ NNS IN NNP VBD PRP$ NN TO VB NN , DT NN TO NN NNS IN DT NNS CC NNS .\nIn a direct challenge to the Palestinian leadership , Hamas ' secretive military wing has emerged from hiding and posted information about its command structure on its Web site .\tIN DT JJ NN TO DT JJ NN , NNP POS JJ JJ NN VBZ VBN IN NN CC VBD NN IN PRP$ NN NN IN PRP$ NNP NN .\nFor the first time , the group has identified its leadership , including the commander of the Ezzedine al-Qassem Brigade military wing , Mohammed Deif .\tIN DT JJ NN , DT NN VBZ VBN PRP$ NN , VBG DT NN IN DT NNP NNP NNP JJ NN , NNP NNP .\nIn an interview posted on the Web site , the elusive commander warned the Palestinian leadership not to contemplate any move to disarm the militants .\tIN DT NN VBN IN DT NN NN , DT JJ NN VBD DT JJ NN RB TO VB DT NN TO VB DT NNS .\nCanada says it has discovered what may be another case of mad cow disease .\tNNP VBZ PRP VBZ VBN WP MD VB DT NN IN JJ NN NN .\nThe news comes just one day after the United States announced plans to reopen its border in March to nearly all Canadian beef and live cattle .\tDT NN VBZ RB CD NN IN DT NNP NNP VBD NNS TO VB PRP$ NN IN NNP TO RB DT JJ NN CC JJ NNS .\nU.S. officials banned the import of Canadian cattle in May , 2003 after Canada found its first case of the disease .\tNNP NNS VBD DT NN IN JJ NNS IN NNP , CD IN NNP VBD PRP$ JJ NN IN DT NN .\nThe Canadian Food Inspection Agency says the suspected new case involves a 10-year-old dairy cow , but the human food and animal feed systems have not been effected .\tDT JJ NNP NNP NNP VBZ DT JJ JJ NN VBZ DT JJ NN NN , CC DT JJ NN CC NN NN NNS VBP RB VBN VBN .\nThe agency says final results from tests on the cow will be ready in three to five days .\tDT NN VBZ JJ NNS IN NNS IN DT NN MD VB JJ IN CD CC CD NNS .\nMad cow disease attacks the central nervous system of cattle and can be harmful to humans if tainted meat is consumed .\tJJ NN NN VBZ DT JJ JJ NN IN NNS CC MD VB JJ TO NNS IN JJ NN VBZ VBN .\nIndia says it has successfully test-fired two nuclear-capable missiles .\tNNP VBZ PRP VBZ RB VBN CD JJ NNS .\nDefense sources say the Prithvi-II missiles were fired Monday from a test range in Chandipur in eastern Orissa state .\tNNP NNS VBP DT NNP NNS VBD VBN NNP IN DT NN NN IN NNP IN JJ NNP NN .\nThe missile has a range of about 220 kilometers and can carry a 500-kilogram warhead .\tDT NN VBZ DT NN IN IN CD NNS CC MD VB DT JJ NN .\nAnalysts say Monday 's test is considered routine and unlikely to aggravate tensions with longtime rival Pakistan .\tNNS VBP NNP POS NN VBZ VBN JJ CC JJ TO VB NNS IN JJ JJ NNP .\nThe United Nations Tribunal in The Hague has released its indictment against former Kosovo Prime Minister Ramush Haradinaj , charging him with 37 counts of war crimes and crimes against humanity .\tDT NNP NNPS NNP IN DT NNP VBZ VBN PRP$ NN IN JJ NNP NNP NNP NNP NNP , VBG PRP IN CD NNS IN NN NNS CC NNS IN NN .\nThe indictment , unsealed Thursday , charges Mr. Haradinaj and two other former Kosovo ethnic Albanian guerilla leaders with murder , rape , deportation and other offenses .\tDT NN , JJ NNP , VBZ NNP NNP CC CD JJ JJ NNP JJ JJ NN NNS IN NN , NN , NN CC JJ NNS .\nThe two other men , Idriz Balaj and Lahi Brahimaj , face 35 counts each of war crimes and crimes against humanity .\tDT CD JJ NNS , NNP NNP CC NNP NNP , NN CD VBZ DT IN NN NNS CC NNS IN NN .\nHague prosecutors say Mr. Haradinaj and the two other men , whom the indictment describes as his wartime subordinates , persecuted , mistreated and killed ethnic Serbs in 1998 .\tNNP NNS VBP NNP NNP CC DT CD JJ NNS , WP DT NN VBZ IN PRP$ NN NNS , VBN , VBN CC VBN JJ NNS IN CD .\nThe alleged offenses took place during the conflict between ethnic Albanian guerrillas and Serbian and Yugoslav forces in Kosovo .\tDT JJ NNS VBD NN IN DT NN IN JJ JJ NNS CC JJ CC JJ NNS IN NNP .\nThe three men gave themselves up to the court Wednesday , one day after Mr. Haradinaj resigned as Kosovo prime minister .\tDT CD NNS VBD PRP RP TO DT NN NNP , CD NN IN NNP NNP VBD IN NNP JJ NN .\nHealth officials in India have reported the country 's first death from the H1N1 swine flu virus .\tNN NNS IN NNP VBP VBN DT NN POS JJ NN IN DT NNP NN NN NN .\nOfficials quoted in media reports say the victim was a 14-year-old girl in the western city of Pune .\tNNS VBN IN NNS NNS VBP DT NN VBD DT JJ NN IN DT JJ NN IN NNP .\nIndia has reported hundreds of cases of swine flu but Monday 's reported death is the country 's first .\tNNP VBZ VBN NNS IN NNS IN NN NN CC NNP POS VBN NN VBZ DT NN POS JJ .\nThe World Health Organization has declared the swine flu virus a pandemic .\tDT NNP NNP NNP VBZ VBN DT JJ NN NN DT NN .\nSince late July , The WHO reports 1,34,503 cases of swine flu worldwide and 816 deaths .\tIN JJ NNP , DT NNP VBZ CD NNS IN NN NN NN CC CD NNS .\nHealth experts say the majority of patients infected with the virus recover fully within a week , even without any medical treatment .\tNN NNS VBP DT NN IN NNS VBN IN DT NN VB RB IN DT NN , RB IN DT JJ NN .\nAmnesty International has reported to the United Nations that Brazil has scarcely improved its human rights record over the past decade .\tNNP NNP VBZ VBN TO DT NNP NNP IN NNP VBZ RB VBN PRP$ JJ NNS NN IN DT JJ NN .\nThe international human rights group Tuesday submitted a report to the U.N. Human Rights Committee in Geneva .\tDT JJ JJ NNS NN NNP VBD DT NN TO DT NNP NNP NNP NNP IN NNP .\nIt expresses concern about continued high numbers of extra-judicial killings , the widespread use of torture , and attacks against human rights defenders by police officers in Brazil That U.N. committee is to begin Wednesday to conduct its own review of Brazil 's progress on human rights .\tPRP VBZ NN IN VBN JJ NNS IN JJ NNS , DT JJ NN IN NN , CC NNS IN JJ NNS NNS IN NN NNS IN NNP IN NNP NN VBZ TO VB NNP TO VB PRP$ JJ NN IN NNP POS NN IN JJ NNS .\nThe Amnesty report says despite implementation of a National Human Rights Plan in 1996 and an anti-torture law in 1997 , Brazilian authorities continue to abuse their power , and that incidents of abuse often go unreported or unpunished .\tDT NNP NN VBZ IN NN IN DT NNP NNP NNP NNP IN CD CC DT JJ NN IN CD , JJ NNS VBP TO VB PRP$ NN , CC IN NNS IN NN RB VBP JJ CC JJ .\nIt says frequent targets for such abuse include include poor black or mixed-race men who are suspected of a crime .\tPRP VBZ JJ NNS IN JJ NN VBP VBP JJ JJ CC JJ NNS WP VBP VBN IN DT NN .\nHundreds of Pakistani women have gathered in the capital , Islamabad , to denounce President Pervez Musharraf 's reported remarks about rape victims in the country , and to demand his apology .\tNNS IN JJ NNS VBP VBN IN DT NN , NNP , TO VB NNP NNP NNP POS JJ NNS IN NN NNS IN DT NN , CC TO VB PRP$ NN .\nThe participants condemned the comments published in the Washington Post , in which General Musharraf said that many Pakistanis believe crying rape is an easy way to get a visa to go abroad and make money .\tDT NNS VBD DT NNS VBN IN DT NNP NNP , IN WDT NNP NNP VBD IN JJ NNS VBP VBG NN VBZ DT JJ NN TO VB DT NN TO VB RB CC VB NN .\nThe Pakistani leader insists he was misquoted and was only expressing a commonly held opinion in Pakistan , not his own .\tDT JJ NN VBZ PRP VBD VBN CC VBD RB VBG DT RB VBN NN IN NNP , RB PRP$ NN .\nBut the women activists say he should have been careful in choosing his words about rape victims .\tCC DT NNS NNS VBP PRP MD VB VBN JJ IN VBG PRP$ NNS IN NN NNS .\nPakistani human rights groups have also been protesting the so-called ' honor killings ' of women in the country .\tJJ JJ NNS NNS VBP RB VBN VBG DT JJ `` NN NNS `` IN NNS IN DT NN .\nThe groups say hundreds of women are killed every year in Pakistan in the name of family honor after they are accused of having affairs .\tDT NNS VBP NNS IN NNS VBP VBN DT NN IN NNP IN DT NN IN NN NN IN PRP VBP VBN IN VBG NNS .\nA well-known U.S. consumer group is calling for a ban on some of the most widely-used dyes in food products sold in the United States and elsewhere .\tDT JJ NNP NN NN VBZ VBG IN DT NN IN DT IN DT RBS JJ NNS IN NN NNS VBN IN DT NNP NNPS CC RB .\nThe Center for Science in the Public Interest says there is evidence that these dyes are harmful for children .\tDT NNP IN NNP IN DT NNP NN VBZ EX VBZ NN IN DT NNS VBP JJ IN NNS .\nVOA 's Carol Pearson has more .\tNNP POS NNP NNP VBZ RBR .\nNegotiators from Iran and several European countries have resumed talks in Geneva on resolving the international standoff over Tehran 's nuclear program .\tNNS IN NNP CC JJ JJ NNS VBP VBN NNS IN NNP IN VBG DT JJ NN IN NNP POS JJ NN .\nIran insists it has the right to enrich uranium , which can be used in energy production and nuclear weapons .\tNNP VBZ PRP VBZ DT NN TO VB NN , WDT MD VB VBN IN NN NN CC JJ NNS .\nBritain , France and Germany say Iran must permanently abandon such activities .\tNNP , NNP CC NNP VBP NNP MD RB VB JJ NNS .\nIranian officials have said they will never agree to such a halt .\tJJ NNS VBP VBN PRP MD RB VB TO PDT DT NN .\nThe latest round of confidential talks is scheduled to continue through Thursday .\tDT JJS NN IN JJ NNS VBZ VBN TO VB IN NNP .\nLast week , diplomats at an International Atomic Energy Agency meeting in Vienna said Iran is building a system of underground tunnels to conceal and protect parts of its nuclear program .\tJJ NN , NNS IN DT NNP NNP NNP NNP NN IN NNP VBD NNP VBZ VBG DT NN IN JJ NNS TO VB CC VB NNS IN PRP$ JJ NN .\nThe United States maintains Iran is trying to covertly develop nuclear weapons , but Tehran says its program is meant only to meet the country 's energy needs .\tDT NNP NNPS VBZ NNP VBZ VBG TO RB VB JJ NNS , CC NNP VBZ PRP$ NN VBZ VBN RB TO VB DT NN POS NN NNS .\nJapanese officials have lifted the tsunami warning they issued for the nation 's Pacific coastline after strong earthquakes struck the Kuril Islands northeast of Japan earlier Wednesday .\tJJ NNS VBP VBN DT NN NN PRP VBD IN DT NN POS NNP NN IN JJ NNS VBD DT NNP NNP NN IN NNP RB NNP .\nEarthquake monitoring agencies recorded a quake with a magnitude of at least 7.8 followed by three tremors with magnitudes of 6 or higher .\tNN NN NNS VBD DT NN IN DT NN IN IN JJS CD VBN IN CD NNS IN NNS IN CD CC JJR .\nJapanese officials advised people in Pacific coastal areas to flee to higher ground , but only minimal waves were reported in northern Japan .\tJJ NNS VBD NNS IN NNP JJ NNS TO VB TO JJR NN , CC RB JJ NNS VBD VBN IN JJ NNP .\nThe Japanese Meteorological agency warns other waves still could follow and urged continued caution .\tDT JJ JJ NN VBZ JJ NNS RB MD VB CC VBD JJ NN .\nStrong earthquakes have the potential to generate a destructive wave that can strike coastlines near the epicenter within minutes of the quake .\tJJ NNS VBP DT JJ TO VB DT JJ NN WDT MD VB NNS IN DT NN IN NNS IN DT NN .\nIraq 's president says he expects the country 's new constitution to be ready Sunday , one day ahead of schedule .\tNNP POS NN VBZ PRP VBZ DT NN POS JJ NN TO VB JJ NNP , CD NN RB IN NN .\nJalal Talabani told reporters Saturday that the committee drafting the document had resolved several outstanding issues .\tNNP NNP VBD NNS NNP IN DT NN VBG DT NN VBD VBN JJ JJ NNS .\nHe said the delegates are working to reach agreement on the issues of federalism and the relationship between Islam and the state .\tPRP VBD DT NNS VBP VBG TO VB NN IN DT NNS IN NN CC DT NN IN NNP CC DT NN .\nSome members of the 71-person drafting committee say most areas of disagreement have been resolved .\tDT NNS IN DT JJ NN NN VBP RBS NNS IN NN VBP VBN VBN .\nMeanwhile , a roadside bomb killed a U.S. soldier and wounded another in western Baghdad .\tRB , DT NN NN VBD DT NNP NN CC VBD DT IN JJ NNP .\nAnd residents near the western city of Ramadi are blaming U.S. troops for a shooting incident Friday outside a mosque that local officials say killed 15 people , eight of them children .\tCC NNS IN DT JJ NN IN NNP VBP VBG NNP NNS IN DT NN NN NNP IN DT NN IN JJ NNS VBP VBN CD NNS , CD IN PRP NNS .\nThe U.S. military says its troops were not involved in any shooting in the area .\tDT NNP NN VBZ PRP$ NNS VBD RB VBN IN DT NN IN DT NN .\nA U.S. government report says the country 's trade deficit rose to an all-time high of $ 60.3 billion in November .\tDT NNP NN NN VBZ DT NN POS NN NN VBD TO DT JJ NN IN $ CD CD IN NNP .\nThe Commerce Department says the trade gap grew nearly eight percent from the previous record of $ 56 billion in October .\tDT NNP NNP VBZ DT NN NN VBD RB CD NN IN DT JJ NN IN $ CD CD IN NNP .\nThe department says the unexpected increase reflected record levels for imports of oil and consumer goods , while exports fell .\tDT NN VBZ DT JJ NN VBD NN NNS IN NNS IN NN CC NN NNS , IN NNS VBD .\nThe trade deficit through November totaled $ 561 billion , which exceeds the record for all of 2003 .\tDT NN NN IN NNP VBD $ CD CD , WDT VBZ DT NN IN DT IN CD .\nThe Associated Press quotes U.S. Treasury Secretary John Snow as saying the trade gap reflects the fact that Americans are becoming more prosperous .\tDT NNP NNP VBZ NNP NNP NNP NNP NNP IN VBG DT NN NN VBZ DT NN IN NNS VBP VBG RBR JJ .\nA senior Palestinian official says President Mahmoud Abbas will meet with Israeli Foreign Minister Tzipi Livni on the sidelines of an economic conference in Egypt .\tDT JJ JJ NN VBZ NNP NNP NNP MD VB IN JJ NNP NNP NNP NNP IN DT NNS IN DT JJ NN IN NNP .\nSaeb Erekat said Thursday the meeting has been arranged for Sunday at the Egyptian resort of Sharm el-Sheikh .\tNNP NNP VBD NNP DT NN VBZ VBN VBN IN NNP IN DT JJ NN IN NNP NNP .\nMark Regev , a spokesman for the Israeli Foreign Ministry did not confirm the meeting , saying only that Livni 's schedule has not been finalized .\tNNP NNP , DT NN IN DT JJ NNP NNP VBD RB VB DT NN , VBG RB IN NNP POS NN VBZ RB VBN VBN .\nA meeting between the two would be the first high-level contact between the parties since Hamas Islamists were swept to power in Palestinian elections in January .\tDT NN IN DT CD MD VB DT JJ JJ NN IN DT NNS IN NNP NNPS VBD VBN TO NN IN JJ NNS IN NNP .\nIsrael has boycotted the Hamas-led government and ruled out peace talks unless the militant group renounces violence , recognizes Israel 's right to exist and accepts interim Israeli- Palestinian accords .\tNNP VBZ VBN DT JJ NN CC VBD RP NN NNS IN DT JJ NN VBZ NN , VBZ NNP POS NN TO VB CC VBZ JJ JJ JJ NNS .\nHamas leaders say negotiations with Israel would be a waste of time .\tNNP NNS VBP NNS IN NNP MD VB DT NN IN NN .\nBritish insurance company Prudential says it will buy the Asian unit of U.S. insurer AIG for $ 35 billion , allowing AIG to repay some of the money it owes U.S. taxpayers .\tJJ NN NN NNP VBZ PRP MD VB DT JJ NN IN NNP NN NNP IN $ CD CD , VBG NNP TO VB DT IN DT NN PRP VBZ NNP NNS .\nPrudential announced its proposed takeover of AIG 's AIA Group Monday , saying the deal will make the British company the largest insurer in Southeast Asia .\tNNP VBD PRP$ JJ NN IN NNP POS NNP NNP NNP , VBG DT NN MD VB DT JJ NN DT JJS NN IN NNP NNP .\nPrudential says AIG will get $ 25 billion in cash and $ 10 billion in new Prudential shares in return for AIA .\tNNP VBZ NNP MD VB $ CD CD IN NN CC $ CD CD IN JJ JJ NNS IN NN IN NNP .\nThe deal is subject to approval by shareholders and regulators .\tDT NN VBZ JJ TO NN IN NNS CC NNS .\nAIG says it will use the funds to repay some of the $ 180 billion it received in a U.S. government bailout in 2008 during the height of the global financial crisis .\tNNP VBZ PRP MD VB DT NNS TO VB DT IN DT $ CD CD PRP VBD IN DT NNP NN NN IN CD IN DT NN IN DT JJ JJ NN .\nPrudential already has a significant presence in Asia 's insurance market .\tNNP RB VBZ DT JJ NN IN NNP POS NN NN .\nIts chief executive Tidjane Thiam said Monday he sees Asia as the ' engine ' of the group 's future growth .\tPRP$ JJ NN NNP NNP VBD NNP PRP VBZ NNP IN DT `` NN `` IN DT NN POS JJ NN .\nPresident Bush has restated the message he delivered to the United Nations General Assembly earlier this week , a call to support moderates and reformers in the Middle East .\tNNP NNP VBZ VBN DT NN PRP VBD TO DT NNP NNP NNP NNP RBR DT NN , DT NN TO VB NNS CC NNS IN DT NNP NNP .\nIn his weekly Saturday radio address , Mr. Bush said the alternative is to yield the future to terrorists and extremists .\tIN PRP$ JJ NNP NN NN , NNP NNP VBD DT NN VBZ TO VB DT NN TO NNS CC NNS .\nMr. Bush noted that while he was in New York this week , he met with Palestinian President Mahmoud Abbas .\tNNP NNP VBD IN IN PRP VBD IN NNP NNP DT NN , PRP VBD IN JJ NNP NNP NNP .\nHe said that by supporting moderate leaders like Mr. Abbas , the United States can help Palestinians and Israelis achieve peace in the Middle East .\tPRP VBD IN IN VBG JJ NNS IN NNP NNP , DT NNP NNPS MD VB NNS CC NNS VBP NN IN DT NNP NNP .\nThe president said he plans to meet next week with the presidents of Pakistan and Afghanistan to discuss the fight against terrorism in their region .\tDT NN VBD PRP VBZ TO VB JJ NN IN DT NNS IN NNP CC NNP TO VB DT NN IN NN IN PRP$ NN .\nThe British government is planning to send an additional 220 soldiers to Iraq to help replace Dutch troops who are leaving the country later this year .\tDT JJ NN VBZ VBG TO VB DT JJ CD NNS TO NNP TO VB VB JJ NNS WP VBP VBG DT NN RB DT NN .\nDefense Minister Geoff Hoon made the announcement Thursday .\tNNP NNP NNP NNP VBD DT NN NNP .\nThe Dutch government is to pull its 1,400 troops out of Iraq on March 15 .\tDT JJ NN VBZ TO VB PRP$ CD NNS IN IN NNP IN NNP CD .\nMr. Hoon says Britain will deploy 600 of its soldiers to provide stability in the area of southern Iraq evacuated by the Dutch .\tNNP NNP VBZ NNP MD VB CD IN PRP$ NNS TO VB NN IN DT NN IN JJ NNP VBN IN DT NNS .\nHe said the 220 additional British troops will supplement Iraqi forces and provide them with logistics and other ' essential support . '\tPRP VBD DT CD JJ JJ NNS MD VB JJ NNS CC VB PRP IN NNS CC JJ `` JJ NN . ``\nMr. Hoon said British troops will also support Iraqi security forces in the run-up to Sunday 's general elections and help protect Japanese troops who are engaged in construction projects .\tNNP NNP VBD JJ NNS MD RB VB JJ NN NNS IN DT NN TO NNP POS JJ NNS CC VB VB JJ NNS WP VBP VBN IN NN NNS .\nAbout 9,000 British troops are deployed in Iraq , concentrated in the southern provinces around Basra .\tIN CD JJ NNS VBP VBN IN NNP , VBN IN DT JJ NNS IN NNP .\nVenezuelan President Hugo Chavez has made another verbal attack on British Prime Minister Tony Blair , saying he should return the Falkland Islands to Argentina .\tJJ NNP NNP NNP VBZ VBN DT JJ NN IN JJ NNP NNP NNP NNP , VBG PRP MD VB DT NNP NNP TO NNP .\nMr. Chavez has strongly criticized the British leader for saying that Venezuela should respect the rules of the international community .\tNNP NNP VBZ RB VBN DT JJ NN IN VBG DT NNP MD VB DT NNS IN DT JJ NN .\nMr. Blair made the comment Wednesday in the British parliament .\tNNP NNP VBD DT NN NNP IN DT JJ NN .\nMr. Chavez said Thursday it was Britain that has violated international law by joining the U.S.-led invasion of Iraq .\tNNP NNP VBD NNP PRP VBD NNP WDT VBZ VBN JJ NN IN VBG DT JJ NN IN NNP .\nHe also accused Britain of ' stealing ' the Falkland Islands from Argentina , and called on Mr. Blair to give them back .\tPRP RB VBD NNP IN `` VBG `` DT NNP NNP IN NNP , CC VBD IN NNP NNP TO VB PRP RB .\nArgentina claims sovereignty over the Falkland Islands , and invaded the territory in 1982 , triggering a three-month war with Britain in which hundreds were killed on both sides .\tNNP VBZ NN IN DT NNP NNP , CC VBD DT NN IN CD , VBG DT JJ NN IN NNP IN WDT NNS VBD VBN IN DT NNS .\nBritain repelled the invasion , and continues to control the island chain .\tNNP VBD DT NN , CC VBZ TO VB DT NN NN .\nIndonesian Muslim protesters display big banner saying Save Al Aqsa Mosque during anti-Israel protest in Jakarta Thousands of Muslims across Indonesia staged peaceful anti-Israel protests Sunday , including a major demonstration at the U.S. Embassy in Jakarta .\tJJ NN NNS VBP JJ NN VBG NNP NNP NNP NNP IN JJ NN IN NNP NNS IN NNPS IN NNP VBD JJ JJ NNS NNP , VBG DT JJ NN IN DT NNP NNP IN NNP .\nAs many as 10,000 protesters from the Prosperous Justice Party shouted anti-American slogans outside the heavily guarded embassy in the Indonesian capital .\tRB JJ IN CD NNS IN DT NNP NNP NNP VBD JJ NNS IN DT RB VBN NN IN DT JJ NN .\nSpeakers lashed out at Israel and demanded Washington stop financial and political support for the Jewish state .\tNNS VBD RP IN NNP CC VBD NNP VB JJ CC JJ NN IN DT JJ NN .\nTraffic in the center of the city was disrupted for several hours .\tNN IN DT NN IN DT NN VBD VBN IN JJ NNS .\nParty members held smaller protests in at least three other cities across the world 's most populous Muslim nation .\tNNP NNS VBD JJR NNS IN IN JJS CD JJ NNS IN DT NN POS RBS JJ NN NN .\nIndonesia does not have diplomatic relations with Israel , and there are periodic street protests in the country against the Jewish state and against the U.S. war on terrorism .\tNNP VBZ RB VB JJ NNS IN NNP , CC EX VBP JJ NN NNS IN DT NN IN DT JJ NN CC IN DT NNP NN IN NN .\nAfghan President Hamid Karzai condemned a recent drug raid by U.S. and Russian forces as a violation of Afghan sovereignty .\tJJ NNP NNP NNP VBD DT JJ NN NN IN NNP CC JJ NNS IN DT NN IN JJ NN .\nU.S. and Russian officials say they seized a metric ton of heroin from four clandestine laboratories earlier this week in Nangarhar province , near the border with Pakistan .\tNNP CC JJ NNS VBP PRP VBD DT JJ NN IN NN IN CD JJ NNS RBR DT NN IN NNP NN , IN DT NN IN NNP .\nMr. Karzai was outraged , saying in a statement Saturday that he was not previously informed of the operation .\tNNP NNP VBD VBN , VBG IN DT NN NNP IN PRP VBD RB RB VBN IN DT NN .\nU.S. and Russian officials have both said that Afghan forces were involved in the raid .\tNNP CC JJ NNS VBP DT VBD IN JJ NNS VBD VBN IN DT NN .\nRussian foreign minister Sergei Lavrov told Itar-Tass news agency Saturday that Russia was satisfied with the operation and plans to continue to cooperate in the fight against drug trafficking .\tJJ JJ NN NNP NNP VBD JJ NN NN NNP IN NNP VBD VBN IN DT NN CC VBZ TO VB TO VB IN DT NN IN NN NN .\nRussia has been wary of supporting NATO military operations in Afghanistan but has called on NATO to do more to combat the Afghan heroin trade .\tNNP VBZ VBN JJ IN VBG NNP JJ NNS IN NNP CC VBZ VBN IN NNP TO VB JJR TO VB DT JJ NN NN .\nThe Iraqi parliament has again failed to approve a law that would govern next year 's national elections .\tDT JJ NN VBZ RB VBN TO VB DT NN WDT MD VB JJ NN POS JJ NNS .\nIraqi lawmakers say they will consider the bill again on Sunday .\tJJ NNS VBP PRP MD VB DT NN RB IN NNP .\nTheir repeated failure to reach a consensus on the controversial bill has raised doubts that the elections will take place as planned on January 16 .\tPRP$ JJ NN TO VB DT NN IN DT JJ NN VBZ VBN NNS IN DT NNS MD VB NN IN VBN IN NNP CD .\nThe election commission chief , Faraj al-Haidari , had warned parliament that if it did not approve the bill this week , there would not be enough time to get ready for the vote .\tDT NN NN NN , NNP NNP , VBD VBN NN IN IN PRP VBD RB VB DT NN DT NN , EX MD RB VB JJ NN TO VB JJ IN DT NN .\nLawmakers can not agree on the voting guidelines for Kirkuk , an oil-rich province that is home to Kurdish , Arab and Turkmen communities .\tNNS MD RB VB IN DT NN NNS IN NNP , DT JJ NN WDT VBZ NN TO VB , JJ CC JJ NNS .\nSome parliamentarians support using current voter records for Kirkuk , which would favor Kurds .\tDT NNS VBP VBG JJ NN NNS IN NNP , WDT MD VB NNS .\nOthers have suggested using a voter registry dating back to 2004 , which would favor Arabs .\tNNS VBP VBN VBG DT NN NN VBG RB TO CD , WDT MD VB NNS .\nPolice say a former U.S. presidential aide whose body was found in a landfill in the northeastern U.S. state of Delaware was murdered .\tNNS VBP DT JJ NNP JJ NN WP$ NN VBD VBN IN DT NN IN DT JJ NNP NN IN NNP VBD VBN .\nAuthorities announced Monday that they found the body of John Wheeler at a Wilmington , Delaware landfill on New Year 's Eve .\tNNS VBD NNP IN PRP VBD DT NN IN NNP NNP IN DT NNP , NNP NN IN NNP NNP POS NNP .\nThey said his body was spotted as a trash truck was emptying its load into the landfill .\tPRP VBD PRP$ NN VBD VBN IN DT NN NN VBD VBG PRP$ NN IN DT NN .\nPolice have asked the public for tips on Wheeler 's whereabouts prior to his death .\tNNS VBP VBN DT NN IN NNS IN NNP POS NNS RB TO PRP$ NN .\nHe was last seen Tuesday , exiting a train from Washington , D.C. to Wilmington .\tPRP VBD JJ VBN NNP , VBG DT NN IN NNP , NNP TO NNP .\nWheeler served in the Vietnam War and later was one of the principal backers of a controversial drive for a Vietnam War memorial in Washington , D.C.\tNNP VBD IN DT NNP NNP CC RB VBD CD IN DT JJ NNS IN DT JJ NN IN DT NNP NNP NN IN NNP , NNP\nWheeler served in the Pentagon under four presidents .\tNNP VBD IN DT NNP IN CD NNS .\nHe created a Vietnam War veterans ' leadership program for President Ronald Reagan and later an environmental conservation group for at-risk youth under President George W. Bush .\tPRP VBD DT NNP NNP NNS POS NN NN IN NNP NNP NNP CC RB DT JJ NN NN IN JJ NN IN NNP NNP NNP NNP .\nIvory Coast 's officials say presidential elections will be held on October 30 as part of the effort to reunify the West African nation that has been divided since a rebel uprising in September 2002 .\tNNP NNP POS NNS VBP JJ NNS MD VB VBN IN NNP CD IN NN IN DT NN TO VB DT JJ JJ NN WDT VBZ VBN VBN IN DT NN NN IN NNP CD .\nThe announcement Thursday is seen as a major step toward implementing a peace deal signed earlier this month in South Africa .\tDT NN NNP VBZ VBN IN DT JJ NN IN VBG DT NN NN VBN RBR DT NN IN NNP NNP .\nOn Tuesday , Ivorian President Laurent Gbagbo announced that Alassane Ouattara , a formerly excluded opposition leader , would be allowed to run in the election .\tIN NNP , JJ NNP NNP NNP VBD IN NNP NNP , DT RB VBN NN NN , MD VB VBN TO VB IN DT NN .\nThe popular northern leader was barred from earlier elections because of questions over his citizenship .\tDT JJ JJ NN VBD VBN IN JJR NNS IN IN NNS IN PRP$ NN .\nMr. Ouattara 's candidacy has been a key demand by northern rebels who control half of the country .\tNNP NNP POS NN VBZ VBN DT JJ NN IN JJ NNS WP VBP NN IN DT NN .\nThursday , Mr. Ouattara who lives in self-imposed exile in France , praised Mr. Gabgbo 's decision and said he will return to Ivory Coast soon .\tNNP , NNP NNP WP VBZ IN JJ NN IN NNP , VBD NNP NNP POS NN CC VBD PRP MD VB TO NNP NNP RB .\nAn artist based in Los Angeles , California , is attracting attention with a showing of his work that combines video , audio and sculpture .\tDT NN VBN IN NNP NNP , NNP , VBZ VBG NN IN DT NN IN PRP$ NN IN VBZ NN , NN CC NN .\nVideo art , or what some call ' new media art , ' has been around for some time .\tNNP NN , CC WP DT NN `` JJ NNS NN , `` VBZ VBN IN IN DT NN .\nBut this artist 's work is unusual - he combines high technology and digital gadgets , making the art interactive but as in traditional art , you could put some of the sculptures in your home .\tCC DT NN POS NN VBZ JJ IN PRP VBZ JJ NN CC JJ NNS , VBG DT NN JJ CC IN IN JJ NN , PRP MD VB DT IN DT NNS IN PRP$ NN .\nVOA 's Paul Sisco reports on the artist , who calls himself simply , ' Matteo . '\tNNP POS NNP NNP VBZ IN DT NN , WP VBZ PRP RB , `` NNP . ``\nCuba and Panama have restored diplomatic ties , one year after they were severed due to Panama 's decision to pardon four Cubans accused of trying to assassinate Cuban President Fidel Castro .\tNNP CC NNP VBP VBN JJ NNS , CD NN IN PRP VBD VBN JJ TO NNP POS NN TO VB CD NNS VBN IN VBG TO VB JJ NNP NNP NNP .\nCuban Foreign Minister Felipe Perez Roque and his Panamanian counterpart , Ricardo Duran , Saturday signed documents in Havana to officially declare normal relations .\tJJ NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , NNP VBD NNS IN NNP TO RB VB JJ NNS .\nHavana cut off relations with Panama on August 26 , 2004 , after then-President Mireya Moscoso pardoned the Cuban exiles .\tNNP VBD RP NNS IN NNP IN NNP CD , CD , IN JJ NNP NNP VBD DT JJ NNS .\nHer successor , Martin Torrijos , had vowed to re-establish ties after his inauguration last year .\tPRP$ NN , NNP NNP , VBD VBN TO VB NNS IN PRP$ NN JJ NN .\nMr. Torrijos arrived Saturday in Cuba , where he attended a graduation ceremony at the Latin American School of Medicine along with Mr. Castro and Venezuelan President Hugo Chavez .\tNNP NNP VBD NNP IN NNP , WRB PRP VBD DT NN NN IN DT NNP NNP NNP IN NNP IN IN NNP NNP CC JJ NNP NNP NNP .\nA suicide car bomber in the Iraqi capital has struck a convoy carrying an elite Iraqi police unit , killing at least nine people , most of them anti-terror commandos .\tDT NN NN NN IN DT JJ NN VBZ VBN DT NN VBG DT JJ JJ NN NN , VBG IN JJS CD NNS , JJS IN PRP JJ NNS .\nAuthorities say at least 10 others were wounded in the attack .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NN .\nThe bombing followed clashes overnight in Baghdad between U.S. troops and militiamen loyal to Shi'ite cleric Moqtada al-Sadr .\tDT NN VBD NNS RB IN NNP IN NNP NNS CC NNS JJ IN NNP NN NNP NNP .\nCoalition authorities say U.S. troops killed at least eight militiamen and wounded five others , as they sought to detain a group of fighters suspected of carrying out guerrilla attacks .\tNN NNS VBP NNP NNS VBD IN JJS CD NNS CC VBD CD NNS , IN PRP VBD TO VB DT NN IN NNS VBN IN VBG RP NN NNS .\nElsewhere in Baghdad , police say gunmen raided a convoy of armored vehicles , killing two guards and stealing $ 8,50,000 .\tRB IN NNP , NNS VBP NNS VBD DT NN IN JJ NNS , VBG CD NNS CC VBG $ CD .\nTo the south , a bomber on a bicycle blew himself up in a crowded market in Hilla , killing at least one other person and wounding dozens of others .\tTO DT NN , DT NN IN DT NN VBD PRP RP IN DT JJ NN IN NNP , VBG IN JJS CD JJ NN CC VBG NNS IN NNS .\nThe European Commission says it plans to contribute $ 100 million in aid to help countries prevent the spread of bird flu .\tDT JJ NNP VBZ PRP VBZ TO VB $ CD CD IN NN TO VB NNS VB DT NN IN NN NN .\nEU External Relations Commissioner Benita Ferrero-Walder said Friday in Brussels the aid will be offered at next week 's bird flu conference in Beijing .\tNNP NNP NNP NNP NNP NNP VBD NNP IN NNP DT NN MD VB VBN IN JJ NN POS NN NN NN IN NNP .\nShe noted that never before has an animal disease posed such a global threat .\tPRP VBD IN RB RB VBZ DT NN NN VBN JJ DT JJ NN .\nThursday , the World Bank said it had approved $ 500 million in aid to help fight bird flu .\tNNP , DT NNP NNP VBD PRP VBD VBN $ CD CD IN NN TO VB VB NN NN .\nThe World Health Organization says samples of the deadly H5N1 strain taken from two bird flu victims in Turkey show a slight genetic change in the virus - a sign it may be mutating into a human flu virus that could kill millions .\tDT NNP NNP NNP VBZ NNS IN DT JJ NNP NN VBN IN CD JJ NN NNS IN NNP VBP DT JJ JJ NN IN DT NN IN DT NN PRP MD VB VBG IN DT JJ NN NN WDT MD VB NNS .\nBird flu has killed three people in Turkey and 79 in East Asia since 2003 .\tNN NN VBZ VBN CD NNS IN NNP CC CD IN NNP NNP IN CD .\nFormer world 200-meter breaststroke record holder Brendan Hansen has failed to make the U.S. Olympic team in the event .\tJJ NN JJ NN NN NN NNP NNP VBZ VBN TO VB DT NNP NNP NN IN DT NN .\nHansen held the record of 2.08.50 minutes until Japanese rival Kosuke Kitajima smashed it by nearly one second on June 7 ( 2.07.51 ) .\tNNP VBD DT NN IN CD NNS IN JJ JJ NNP NNP VBD PRP IN RB CD JJ IN NNP CD LRB CD RRB .\nOn Thursday at the U.S. Olympic swimming trials in Omaha , Nebraska , Hansen was nearly three seconds slower ( 2.11.37 ) than his best time , which remains an American record .\tIN NNP IN DT NNP NNP NN NNS IN NNP , NNP , NNP VBD RB CD NNS JJR LRB CD RRB IN PRP$ JJS NN , WDT VBZ DT JJ NN .\nHansen is on the Olympic team in the 100-meter breaststroke and could qualify in the 400-meter medley relay .\tNNP VBZ IN DT NNP NN IN DT JJ NN CC MD VB IN DT JJ NN NN .\nKatie Hoff , who qualified for four individual events and one relay , failed to advance out of the semifinals of the 100-meter freestyle .\tNNP NNP , WP VBD IN CD JJ NNS CC CD NN , VBD TO VB IN IN DT NNS IN DT JJ NN .\nThat ended her bid for as many as eight medals at the Olympics .\tDT VBD PRP$ NN IN RB JJ IN CD NNS IN DT NNP .\nThe Smithsonian Institution has decided to build a national museum of African American history on the National Mall in Washington , D.C. , near the Washington Monument .\tDT NNP NNP VBZ VBN TO VB DT JJ NN IN JJ JJ NN IN DT NNP NNP IN NNP , NNP , IN DT NNP NN .\nThe Institution 's Board of Regents , which oversees a complex of national museums and research centers , chose the site in a voice vote late Monday .\tDT NNP POS NNP IN NNPS , WDT VBZ DT NN IN JJ NNS CC NN NNS , VBD DT NN IN DT NN NN JJ NNP .\nThis new museum will be housed in a 31,500 square-meter building on the two-hectare site , a prime location for visitors because of its proximity to the Washington Monument and the White House .\tDT JJ NN MD VB VBN IN DT CD JJ NN IN DT JJ NN , DT JJ NN IN NNS IN IN PRP$ NN TO DT NNP NN CC DT NNP NNP .\nThe National Museum of African American History and Culture will tell the story of black Americans from slavery through civil rights .\tDT NNP NNP IN NNP NNP NNP CC NNP MD VB DT NN IN JJ NNS IN NN IN JJ NNS .\nOfficials at the Smithsonian hope to complete construction of the building by 2016 .\tNNS IN DT JJ NN TO JJ NN IN DT NN IN CD .\nAn American museum that wants to honor a Cuban scientist says it is frustrated the U.S. government denied the scientist a visa to come and pick up his award .\tDT JJ NN WDT VBZ TO VB DT JJ NN VBZ PRP VBZ VBN DT NNP NN VBD DT NN DT NN TO VB CC VB RP PRP$ NN .\nA spokesman for the Tech Museum of Innovation , in San Jose , California , said the museum had wanted the federal government to grant a visa to Vicente Verez Bencomo for the Wednesday ceremony .\tDT NN IN DT NNP NNP IN NNP , IN NNP NNP , NNP , VBD DT NN VBD VBN DT JJ NN TO VB DT NN TO NNP NNP NNP IN DT NNP NN .\nThe Miami Herald newspaper quoted the spokesman as saying Mr. Verez-Bencomo had been allowed entry as recently as March .\tDT NNP NNP NN VBD DT NN IN VBG NNP NNP VBD VBN VBN NN RB RB IN NNP .\nThe U.S. State Department has declined to comment .\tDT NNP NNP NNP VBZ VBN TO VB .\nMr. Verez-Bencomo was one of a number of scientists being honored for innovations that use technology to benefit mankind .\tNNP NNP VBD CD IN DT NN IN NNS VBG VBN IN NNS WDT VBP NN TO VB NN .\nHe helped develop a low-cost vaccine that fights the bacteria causing pneumonia and meningitis , diseases which kill some 7,00,000 children each year .\tPRP VBD VB DT JJ NN WDT VBZ DT NNS VBG NN CC NN , NNS WDT VBP DT CD NNS DT NN .\nZimbabwe 's main opposition group appears to be split over whether to participate in elections next month for a newly created upper house of parliament .\tNNP POS JJ NN NN VBZ TO VB VBN IN IN TO VB IN NNS JJ NN IN DT RB VBN JJ NN IN NN .\nThe leader of the Movement for Democratic Change , Morgan Tsvangirai , announced Wednesday that the party had decided to boycott the November 26 poll .\tDT NN IN DT NN IN JJ NNP , NNP NNP , VBD NNP IN DT NN VBD VBN TO VB DT NNP CD NN .\nBut later in the day , MDC spokesman Paul Themba-Nyathi said a majority of the party 's national council had voted in favor of participating .\tCC RB IN DT NN , NNP NN NNP NNP VBD DT NN IN DT NN POS JJ NN VBD VBN IN NN IN VBG .\nLawmakers approved the newly created Senate in August as part of a package of constitutional reforms proposed by President Robert Mugabe .\tNNS VBD DT RB VBN NNP IN NNP IN NN IN DT NN IN JJ NNS VBN IN NNP NNP NNP .\nThe opposition has strongly objected to the creation of the new upper house , calling it a ploy by the ruling party to cement its grip on power .\tDT NN VBZ RB VBN IN DT NN IN DT JJ JJ NN , VBG PRP DT NN IN DT VBG NN TO VB PRP$ NN IN NN .\nA majority of U.S. lawmakers say the revised economic bailout plan defeated Monday failed to address major concerns .\tDT NN IN NNP NNS VBP DT JJ JJ NN NN VBN NNP VBD TO VB JJ NNS .\nLawmakers had modified President George Bush 's original $ 700 billion plan to rescue key financial institutions by adding more scrutiny and limits on dispersing the money .\tNNS VBD VBN NNP NNP NNP POS JJ $ CD CD NN TO VB JJ JJ NNS IN VBG JJR NN CC NNS IN VBG DT NN .\nThe Congressional measure would have phased in funding , provided homeowners some protection and let them share in any profits of the financial firms receiving the money .\tDT JJ NN MD VB VBN IN NN , VBN NNS DT NN CC VB PRP VB IN DT NNS IN DT JJ NNS VBG DT NN .\nBut even in its modified form , enough opposing members of Congress felt the bill was still flawed .\tCC RB IN PRP$ VBN NN , RB VBG NNS IN NNP VBD DT NN VBD RB VBN .\nThey said both the original bill and the defeated measure put the taxpayer at far too great a risk for the benefit of large corporations and did not address underlying economic problems .\tPRP VBD DT DT JJ NN CC DT VBN NN VBD DT NN IN RB RB JJ DT NN IN DT NN IN JJ NNS CC VBD RB VB VBG JJ NNS .\nMost members of Congress face verdict of voters during election day November 4 .\tJJS NNS IN NNP VBP NN IN NNS IN NN NN NNP CD .\nThe Turkish man who tried to assassinate Pope John Paul in 1981 has asked Turkish authorities to briefly allow him out of prison to attend the pope 's funeral .\tDT JJ NN WP VBD TO VB NNP NNP NNP IN CD VBZ VBN JJ NNS TO RB VB PRP IN IN NN TO VB DT NN POS NN .\nMehmet Ali Agca 's lawyer Mustafa Demirbag said Tuesday that he has applied to the Justice Ministry for a short compassionate leave .\tNNP NNP NNP POS NN NNP NNP VBD NNP IN PRP VBZ VBN TO DT NNP NNP IN DT JJ NN NN .\nOn Sunday , Agca said from his Istanbul jail cell that he had lost , in his words , his ' spiritual brother ' and was grief stricken over the pontiff 's death .\tIN NNP , NNP VBD IN PRP$ NNP NN NN IN PRP VBD VBN , IN PRP$ NNS , PRP$ `` JJ NN `` CC VBD JJ NN IN DT NN POS NN .\nAgca gravely wounded John Paul in the 1981 shooting in Saint Peter 's Square .\tNNP RB VBD NNP NNP IN DT CD NN IN NNP NNP POS NNP .\nTwo years later , the pope visited Agca in the Italian prison where he served 19 years and forgave him .\tCD NNS RB , DT NN VBD NNP IN DT JJ NN WRB PRP VBD CD NNS CC VB PRP .\nIn 2000 , Agca was extradited to Istanbul where he is serving out a 17-year sentence for earlier crimes committed in Turkey .\tIN CD , NNP VBD VBN TO VB WRB PRP VBZ VBG RP DT JJ NN IN JJR NNS VBN IN NNP .\nColombia 's second-largest rebel group has accepted an offer from neighboring Venezuela to facilitate peace talks between the guerrillas and the Colombian government .\tNNP POS JJ NN NN VBZ VBN DT NN IN VBG NNP TO VB NN NNS IN DT NNS CC DT JJ NN .\nThe National Liberation Army , the ELN , said in a statement dated September 16 but released Friday , that it accepts the offer from Venezuela 's government and people .\tDT NNP NNP NNP , DT NNP , VBD IN DT NN JJ NNP CD CC VBN NNP , IN PRP VBZ DT NN IN NNP POS NN CC NNS .\nThere was no immediate comment from officials in Bogota , but the government of Colombian President Alvaro Uribe has shown an interest in opening talks with the ELN .\tEX VBD DT JJ NN IN NNS IN NNP , CC DT NN IN JJ NNP NNP NNP VBZ VBN DT NN IN VBG NNS IN DT NNP .\nEarlier this month , Colombia agreed to temporarily release jailed ELN rebel leader Francisco Galan to allow him to negotiate with civil society leaders about launching talks with the Uribe government .\tRBR DT NN , NNP VBD TO RB VB JJ NNP NN NN NNP NNP TO VB PRP TO VB IN JJ NN NNS IN VBG NNS IN DT NNP NN .\nThe ELN and a larger rebel group , the Revolutionary Armed Forces of Colombia , are mired in a long-running civil war that also involves rightist paramilitaries and the government .\tDT NNP CC DT JJR NN NN , DT NNP NNP NNS IN NNP , VBP VBN IN DT JJ JJ NN WDT RB VBZ NN NNS CC DT NN .\nThe conflict leaves thousands of people dead each year .\tDT NN VBZ NNS IN NNS JJ DT NN .\nMorocco says security forces have broken up an al-Qaida-linked militant cell that was planning attacks throughout the country .\tNNP VBZ NN NNS VBP VBN RP DT JJ JJ NN WDT VBD VBG NNS IN DT NN .\nMorocco 's state news agency quotes the Interior Ministry as saying the group consisted of 24 militants .\tNNP POS NN NN NN VBZ DT NNP NNP IN VBG DT NN VBD IN CD NNS .\nIt said the group was ' planning assassinations and acts of sabotage ' targeting the security services and foreign interests in Morocco .\tPRP VBD DT NN VBD `` VBG NNS CC NNS IN NN `` VBG DT NN NNS CC JJ NNS IN NNP .\nThe agency news report says four of the group 's members had been jailed previously on terror-related charges .\tDT NN NN NN VBZ CD IN DT NN POS NNS VBD VBN VBN RB IN JJ NNS .\nIt says the group also recruited Moroccan citizens to send to conflict areas such as Afghanistan , Iraq and Somalia .\tPRP VBZ DT NN RB VBD JJ NNS TO VB TO NN NNS JJ IN NNP , NNP CC NNP .\nThe suspects were captured after an assault on a police officer in Casablanca .\tDT NNS VBD VBN IN DT NN IN DT NN NN IN NNP .\nBette Midler will replace Celine Dion as headliner at Caesar 's Palace Hotel-Casino in Las Vegas .\tNNP NNP MD VB NNP NNP IN NN IN NNP POS NNP NNP IN NNP NNP .\nFamed for her bawdy stage routine , the 61-year-old Midler reportedly agreed to a two-year run of 100 shows per year .\tVBN IN PRP$ JJ NN NN , DT JJ NNP RB VBD TO DT JJ NN IN CD NNS IN NN .\nHer five-night-a-week performances begin February 20 .\tPRP$ JJ NNS VBP NNP CD .\nReplacing Celine Dion is no mean feat : since inaugurating her show , ' A New Day , ' in March 2003 , the French-Canadian singer has grossed more than $ 500 million .\tVBG NNP NNP VBZ DT JJ NN IN IN VBG PRP$ NN , `` DT NNP NNP , `` IN NNP CD , DT JJ NN VBZ VBN JJR IN $ CD CD .\nShe will give her final performance December 15 .\tPRP MD VB PRP$ JJ NN NNP CD .\nSharing space in the 4,100-seat , $ 95 million Colosseum is Elton John , who will continue his 50 show-per-year schedule through 2008 .\tVBG NN IN DT JJ , $ CD CD NN VBZ NNP NNP , WP MD VB PRP$ CD JJ NN IN CD .\nBooking agent John Meglen says the new performance schedule leaves room for a probable third headliner .\tVBG NN NNP NNP VBZ DT JJ NN NN VBZ NN IN DT JJ JJ NN .\nHe would not comment on who it may be , although entertainment insiders have mentioned Cher as a likely candidate .\tPRP MD RB VB IN WP PRP MD VB , IN NN NNS VBP VBN NNP IN DT JJ NN .\nVenezuela has agreed to delay its planned suspension of some U.S. flights to allow talks with the affected airlines .\tNNP VBZ VBN TO VB PRP$ VBN NN IN DT NNP NNS TO VB NNS IN DT JJ NNS .\nIn a statement , the Venezuelan aviation ministry said the restrictions , set to take effect on Wednesday , will now be postponed until March 30 .\tIN DT NN , DT JJ NN NN VBD DT NNS , VBN TO VB NN IN NNP , MD RB VB VBN IN NNP CD .\nIt added that officials met Friday with representatives from several U.S. airlines , and said more talks are expected in coming days .\tPRP VBD IN NNS VBD NNP IN NNS IN JJ NNP NNS , CC VBD JJR NNS VBP VBN IN VBG NNS .\nU.S. officials have said the suspension of flights would violate a 50-year-old aviation deal between the nations .\tNNP NNS VBP VBN DT NN IN NNS MD VB DT JJ NN NN IN DT NNS .\nThey expressed hope that talks will help resolve the dispute .\tPRP VBD NN IN NNS MD VB VB DT NN .\nVenezuelan officials announced the ban last week in response to U.S. restrictions placed on Venezuelan planes 10-years-ago because of security concerns .\tJJ NNS VBD DT NN JJ NN IN NN TO NNP NNS VBN IN JJ NNS JJ IN IN NN NNS .\nThey say the United States has failed to acknowledge security improvements taken by Venezuelan companies in recent years .\tPRP VBP DT NNP NNP VBZ VBN TO VB NN NNS VBN IN JJ NNS IN JJ NNS .\nIraq has agreed to resume imports of Australian wheat as long as they are not handled by the monopoly wheat exporter at the center of a bribery investigation .\tNNP VBZ VBN TO VB NNS IN JJ NN RB RB IN PRP VBP RB VBN IN DT NN NN NN IN DT NN IN DT NN NN .\nThe Australian government is investigating whether A.W.B Limited paid about $ 220 million to secure more than two billion dollars in wheat contracts with Saddam Hussein 's government .\tDT JJ NN VBZ VBG IN NNP NNP VBD RB $ CD CD TO VB JJR IN CD CD NNS IN NN NNS IN NNP NNP POS NN .\nEarlier this month , the Iraqi Grain Board suspended its relationship with A.W.B. .\tRBR DT NN , DT JJ NNP NNP VBD PRP$ NN IN NNP .\nAustralian Trade Minister Mark Vaile made an emergency trip to Iraq last week to discuss the suspension .\tJJ NNP NNP NNP NNP VBD DT NN NN TO NNP JJ NN TO VB DT NN .\nVaile told ABC radio Monday that the new agreement with Iraq is something that has to be worked out with the industry and with growers .\tNNP VBD NNP NN NNP IN DT JJ NN IN NNP VBZ DT WDT VBZ TO VB VBN RP IN DT NN CC IN NNS .\nPrime Minister John Howard has rejected accusations that his government knew about the kickbacks .\tNNP NNP NNP NNP VBZ VBN NNS IN PRP$ NN VBD IN DT NNS .\nThe BBC says it may start to filter out the sound of vuvuzelas from its World Cup broadcasts , following complaints about the incessant drone .\tDT NNP VBZ PRP MD VB TO VB RP DT NN IN NNS IN PRP$ NNP NNP NNS , VBG NNS IN DT NN NN .\nThe BBC said Tuesday it had received 545 complaints from viewers , forcing officials to look into options to reduce the noise from the plastic trumpets .\tDT NNP VBD NNP PRP VBD VBN CD NNS IN NNS , VBG NNS TO VB IN NNS TO VB DT NN IN DT NN NNS .\nOne option would be to offer an electronic filter that reduces most of the ambient noise while maintaining the game commentary .\tCD NN MD VB TO VB DT JJ NN WDT VBZ JJS IN DT JJ NN IN VBG DT NN NN .\nFootball coaches , players and reporters have all complained about the constant din generated by thousands of vuvuzelas at the stadiums .\tNN NNS , NNS CC NNS VBP DT VBN IN DT JJ NN VBN IN NNS IN NNS IN DT NNS .\nHowever , FIFA officials say the horns are a South African tradition and will not be banned .\tRB , NNP NNS VBP DT NNS VBP DT JJ JJ NN CC MD RB VB VBN .\nCamel racers in the United Arab Emirates are experimenting with robots now that it is no longer legal to use small boys as jockeys .\tNNP NNS IN DT NNP NNP NNPS VBP VBG IN NNS RB IN PRP VBZ RB RB JJ TO VB JJ NNS IN NNS .\nThe UAE has instituted new regulations as of March 31 , which forbid boys younger than 16 years of age or lighter than 45 kilograms from being jockeys .\tDT NNP VBZ VBN JJ NNS IN IN NNP CD , WDT VBD NNS JJR IN CD NNS IN NN CC JJR IN CD NNS IN VBG NNS .\nHuman rights groups had called the former practice of using underage jockeys a form of slavery .\tJJ NNS NNS VBD VBN DT JJ NN IN VBG NN NNS DT NN IN NN .\nThe groups say boys , some as young as four , were kept in prison-like conditions and underfed to keep their weight down .\tDT NNS VBP NNS , DT RB JJ IN CD , VBD VBN IN JJ NNS CC VBD TO VB PRP$ NN RB .\nA prototype of a new robotic jockey was tested Saturday .\tDT NN IN DT JJ JJ NN VBD VBN NNP .\nThe first production robots should be assembled by August , in time for the beginning of the next camel racing season .\tDT JJ NN NNS MD VB VBN IN NNP , IN NN IN DT NN IN DT JJ NN NN NN .\nA U.S. soldier has pleaded guilty to murdering a wounded 16-year-old Iraqi boy .\tDT NNP NN VBZ VBN JJ TO VBG DT VBN JJ JJ NN .\nStaff Sergeant Johnny Horne was convicted Friday of the unpremeditated murder of the civilian youth in Baghdad 's Sadr City district in August .\tNNP NNP NNP NNP VBD VBN NNP IN DT JJ NN IN DT JJ NN IN NNP POS NNP NNP NN IN NNP .\nThe sergeant was one of several soldiers who had found the wounded teenager in a burning garbage truck they had just fired on .\tDT NN VBD CD IN JJ NNS WP VBD VBN DT JJ NN IN DT NN NN NN PRP VBD RB VBN IN .\nThe youth had severe abdominal wounds and Horne said he decided to , in his words , ' put him out of his misery ' by shooting him in the head .\tDT NN VBD JJ JJ NNS CC NNP VBD PRP VBD TO , IN PRP$ NNS , `` VB PRP IN IN PRP$ NN `` IN VBG PRP IN DT NN .\nTwo other soldiers are also implicated in the murder , but have yet to stand trial .\tCD JJ NNS VBP RB VBN IN DT NN , CC VBP RB TO VB NN .\nUnder a plea bargain agreement , Horne faces a maximum of 10 years instead of the possibility of life in prison .\tIN DT NN NN NN , NNP VBZ DT NN IN CD NNS RB IN DT NN IN NN IN NN .\nThree Iraqi men have gone on trial in Stuttgart , Germany , suspected of plotting an assassination attempt against former Iraqi Prime Minister Iyad Allawi in 2004 .\tCD JJ NNS VBP VBN IN NN IN NNP , NNP , VBN IN VBG DT NN NN IN JJ JJ NNP NNP NNP NNP IN CD .\nThe three men are being tried on charges of conspiracy and membership in Ansar al-Islam , an Islamic militant group that U.S. authorities have linked to al-Qaida .\tDT CD NNS VBP VBG VBN IN NNS IN NN CC NN IN NNP NNP , DT JJ JJ NN WDT NNP NNS VBP VBN TO NNP .\nThey were arrested in Germany after police intercepted phone calls during which they allegedly plotted an attack on Mr. Allawi during his visit to Berlin in December 2004 .\tPRP VBD VBN IN NNP IN NN VBD NN NNS IN WDT PRP RB VBD DT NN IN NNP NNP IN PRP$ NN TO NNP IN NNP CD .\nMr. Allawi changed his travel plans after the alleged plot was uncovered .\tNNP NNP VBD PRP$ NN NNS IN DT JJ NN VBD VBN .\nPolice say two of the men also are believed to have collected funds for Ansar al-Islam and recruited members to the group .\tNNS VBP CD IN DT NNS RB VBP VBN TO VB VBN NNS IN NNP NNP CC VBD NNS TO DT NN .\nIn a separate case , two other men are being tried in Munich for allegedly providing logistical and financial aid to Ansar al-Islam .\tIN DT JJ NN , CD JJ NNS VBP VBG VBN IN NNP IN RB VBG JJ CC JJ NN TO NNP NNP .\nAn Uzbek human rights group says authorities there executed a prisoner last month , despite a United Nations appeal to suspend the death penalty because of torture concerns .\tDT JJ JJ NNS NN VBZ NNS RB VBD DT NN JJ NN , IN DT NNP NNP NN TO VB DT NN NN IN IN NN NNS .\nThe head of the group ' Mothers Against Execution and Torture , ' Tamara Chikunova , says the 25-year-old prisoner Akhrorkhodzha Tolipkhodzhayev was executed by a firing squad after being found guilty of murdering two teenagers .\tDT NN IN DT NN `` NNPS IN NNP CC NNP , `` NNP NNP , VBZ DT JJ NN NNP NNP VBD VBN IN DT NN NN IN VBG VBN JJ IN VBG CD NNS .\nMs. Chikunova says there was evidence that the man 's charges were not proven at the trial , and that his confession was extracted under torture .\tNNP NNP VBZ EX VBD NN IN DT NN POS NNS VBD RB VBN IN DT NN , CC IN PRP$ NN VBD VBN IN NN .\nUzbekistan 's autocratic government has long been accused of human rights abuses , including torture in detention centers and prisons .\tNNP POS JJ NN VBZ RB VBN VBN IN JJ NNS NNS , VBG NN IN NN NNS CC NNS .\nAmnesty International said recently that at least 6,000 political prisoners , including dozens of women , are being held in degrading conditions in Uzbekistan .\tNNP NNP VBD RB IN IN JJS CD JJ NNS , VBG NNS IN NNS , VBP VBG VBN IN VBG NNS IN NNP .\nAfghan officials say police have killed six Taliban insurgents , including a militant-appointed provincial governor , during a clash in western Afghanistan .\tJJ NNS VBP NNS VBP VBN CD NNP NNS , VBG DT JJ JJ NN , IN DT NN IN JJ NNP .\nThe interior ministry says the fighting erupted Thursday in the western province of Ghor .\tDT JJ NN VBZ DT NN VBD NNP IN DT JJ NN IN NNP .\nA ministry statement says a militant police chief and a Taliban-appointed governor of Ghor were among those killed in the clash .\tDT NN NN VBZ DT JJ NN NN CC DT JJ NN IN NNP VBD IN DT VBN IN DT NN .\nA police official says at least two police officers and a civilian were wounded in the fighting .\tDT NN NN VBZ IN JJS CD NNS NNS CC DT JJ VBD VBN IN DT NN .\nAfghan , NATO and U.S. troops are fighting a resurgent Taliban and other rebels who have strongholds in the southern and eastern parts of the country .\tJJ , NNP CC NNP NNS VBP VBG DT JJ NNP CC JJ NNS WP VBP NNS IN DT JJ CC JJ NNS IN DT NN .\nIn some areas , the Taliban have appointed and run their own parallel administration .\tIN DT NNS , DT NNP VBP VBN CC VB PRP$ JJ JJ NN .\nThe Bush administration has expressed confidence in United Nations Secretary-General Kofi Annan , despite calls for his resignation from several U.S. lawmakers over a scandal involving the U.N.-administered oil-for-food program for Iraq .\tDT NNP NN VBZ VBN NN IN NNP NNP NNP NNP NNP , IN NNS IN PRP$ NN IN JJ NNP NNS IN DT NN VBG DT JJ NN NN IN NNP .\nThe U.S. ambassador to the United Nations , John Danforth , said Thursday that President Bush has confidence in Mr. Annan , and dismissed speculation the administration was trying to push the Ghanaian diplomat out .\tDT NNP NN TO DT NNP NNP , NNP NNP , VBD NNP IN NNP NNP VBZ NN IN NNP NNP , CC VBD NN DT NN VBD VBG TO VB DT JJ NN IN .\nMr. Danforth also stressed the importance of a U.S. investigation of the oil-for-food program , saying it would be the only way to - in his words - lift the cloud from the United Nations .\tNNP NNP RB VBD DT NN IN DT NNP NN IN DT NN NN , VBG PRP MD VB DT JJ NN TO : IN PRP$ NNS IN NN DT NN IN DT NNP NNPS .\nSeveral prominent Africans , including Nelson Mandela and Desmond Tutu , are defending the secretary-general .\tJJ JJ NNS , VBG NNP NNP CC NNP NNP , VBP VBG DT NN .\nThe African statesmen are linking the calls for Mr. Annan 's resignation to his sharp differences with President Bush over the U.S.-led war in Iraq .\tDT JJ NNS VBP VBG DT NNS IN NNP NNP POS NN TO PRP$ JJ NNS IN NNP NNP IN DT JJ NN IN NNP .\nTwo French journalists who were held hostage in Iraq for four months have arrived back in France .\tCD JJ NNS WP VBD VBN NN IN NNP IN CD NNS VBP VBN RB IN NNP .\nJoyful relatives tearfully greeted the men - Christian Chesnot and Georges Malbrunot - upon their arrival at an air base outside Paris Wednesday .\tJJ NNS RB VBD DT NNS IN NNP NNP CC NNP NNP : IN PRP$ NN IN DT NN NN IN NNP NNP .\nFrench President Jacques Chirac cut short a vacation in Morocco to be on hand for the arrival .\tJJ NNP NNP NNP VBD RB DT NN IN NNP TO VB IN NN IN DT NN .\nFrench officials have said no ransom was paid for the release , which came Tuesday .\tJJ NNS VBP VBN DT NN VBD VBN IN DT NN , WDT VBD NNP .\nThe journalists were abducted while traveling to Najaf August 20 .\tDT NNS VBD VBN IN VBG TO NNP NNP CD .\nThey were held by a group calling itself the Islamic Army of Iraq , which has previously killed hostages .\tPRP VBD VBN IN DT NN VBG PRP DT NNP NNP IN NNP , WDT VBZ RB VBN NNS .\nPolice in northwestern Pakistan say a suicide bomber detonated an explosives #NAME? car at a security post Tuesday , killing a Pakistani soldier and wounding at least seven others .\tNNS IN JJ NNP VBP DT NN NN VBD DT NNS JJ NN IN DT NN NN NNP , VBG DT JJ NN CC VBG IN JJS CD NNS .\nAuthorities say the attack occurred in the town of Doaba in Hangu district .\tNNS VBP DT NN VBD IN DT NN IN NNP IN NNP NN .\nPakistan 's northwestern tribal areas are considered to be Taliban and al-Qaida militant strongholds .\tNNP POS JJ JJ NNS VBP VBN TO VB NNP CC NNP JJ NNS .\nElsewhere in the northwest , officials say two rockets landed near the runway of Peshawar airport before dawn Tuesday .\tRB IN DT NN , NNS VBP CD NNS VBD IN DT NN IN NNP NN IN NN NNP .\nReports of damage varied , from slight to none at all .\tNNS IN NN VBN , IN JJ IN NN IN DT .\nChina 's foreign ministry says it plans to work closely with Russian officials to minimize the effects of pollution from a toxic chemicals slick moving along a major river toward Russia .\tNNP POS JJ NN VBZ PRP VBZ TO VB RB IN JJ NNS TO VB DT NNS IN NN IN DT JJ NNS VBP VBG IN DT JJ NN IN NNP .\nRussian environmental officials report an increase in the level of cancer-causing benzene in the Amur River .\tJJ JJ NNS VBP DT NN IN DT NN IN JJ NN IN DT NNP NNP .\nBut Russian authorities say it is not clear if it is from the Chinese chemical spill .\tCC JJ NNS VBP PRP VBZ RB JJ IN PRP VBZ IN DT JJ NN NN .\nThey say it could take several more days before the worst of the spill reaches Russian territory .\tPRP VBP PRP MD VB JJ JJR NNS IN DT JJS IN DT NN VBZ JJ NN .\nMeanwhile , a top United Nations official , Klaus Toepfer , told China 's Xinhua news agency Thursday that Beijing will allow U.N. officials to inspect the effects of the spill .\tRB , DT JJ NNP NNP NN , NNP NNP , VBD NNP POS NNP NN NN NNP IN NNP MD VB NNP NNS TO VB DT NNS IN DT NN .\nAn explosion at a Chinese factory two weeks ago released 100 tons of poisonous chemicals into the Songhua river .\tDT NN IN DT JJ NN CD NNS RB VBD CD NNS IN JJ NNS IN DT NNP NN .\nAs they flow toward Russia , riverside cities are shutting down water systems to avoid contamination .\tIN PRP VBP IN NNP , JJ NNS VBP VBG RP NN NNS TO VB NN .\nPakistan 's security force has arrested 10 terrorists in North Wazirstan along the border area of Pakistan and Afghanistan .\tNNP POS NN NN VBZ VBN CD NNS IN NNP NNP IN DT NN NN IN NNP CC NNP .\nPakistani officials say the operation was launched Sunday after intelligence reports indicated that several al-Qaida suspects were hiding in the mountainous region , about 300 kilometers southwest of Islamabad .\tJJ NNS VBP DT NN VBD VBN NNP IN NN NNS VBD IN JJ NNP NNS VBD VBG IN DT JJ NN , IN CD NNS JJS IN NNP .\nThe latest offensive comes after the Pakistani army warned local tribesman to stop protecting terrorists , or face military action .\tDT JJS NN VBZ IN DT JJ NN VBD JJ NN TO VB VBG NNS , CC VB JJ NN .\nLast week , Pakistani soldiers killed two foreign al-Qaida members and arrested 11 in the same region .\tJJ NN , JJ NNS VBD CD JJ NNP NNS CC VBN CD IN DT JJ NN .\nThailand 's parliament has elected Prime Minister Thaksin Shinawatra to a second four-year term .\tNNP POS NN VBZ VBN NNP NNP NNP NNP TO DT JJ JJ NN .\nMr. Thaksin received the votes of 377 lawmakers out of 500 in the parliament 's lower house during a televised vote Wednesday , making him the first democratically elected prime minister to hold a second term .\tNNP NNP VBD DT NNS IN CD NNS IN IN CD IN DT NN POS JJR NN IN DT JJ NN NNP , VBG PRP DT JJ RB JJ JJ NN TO VB DT JJ NN .\nThe 55-year-old prime minister led his Thai Rak Thai party to an overwhelming victory in last month 's general elections .\tDT JJ JJ NN VBD PRP$ JJ NNP JJ NN TO DT JJ NN IN JJ NN POS JJ NNS .\nHe says the focus of his second term will be coping with rising oil prices , bird flu , and the separatist insurgency in the Muslim-dominated south .\tPRP VBZ DT NN IN PRP$ JJ NN MD VB VBG IN VBG NN NNS , NN NN , CC DT JJ NN IN DT JJ NN .\nMr. Thaksin and his government are expected to be sworn in on Monday .\tNNP NNP CC PRP$ NN VBP VBN TO VB VBN IN IN NNP .\nPakistani authorities are hunting for a militant who escaped from custody after being detained in connection with a plot to assassinate President Pervez Musharraf in December 2003 .\tJJ NNS VBP VBG IN DT NN WP VBD IN NN IN VBG VBN IN NN IN DT NN TO VB NNP NNP NNP IN NNP CD .\nInformation Minister Sheikh Rashid Ahmed confirmed Tuesday that Mushtaq Ahmed had escaped but did not provide any details .\tNNP NNP NNP NNP NNP VBD NNP IN NNP NNP VBD VBN CC VBD RB VB DT NNS .\nThe French News Agency says the man has been on the run for nearly seven weeks since he vanished after being allowed to go the bathroom at the detention facility near Rawalpindi , a garrison city adjacent to Islamabad .\tDT NNP NNP NNP VBZ DT NN VBZ VBN IN DT NN IN RB CD NNS IN PRP VBD IN VBG VBN TO VB DT NN IN DT NN NN IN NNP , DT NN NN JJ TO NNP .\nThere were two failed attempts on Mr. Musharraf 's life in December 2003 .\tEX VBD CD VBN NNS IN NNP NNP POS NN IN NNP CD .\nThe Pakistani leader has angered many extremist groups by his support for the U.S.-led war on terrorism .\tDT JJ NN VBZ VBN JJ NN NNS IN PRP$ NN IN DT JJ NN IN NN .\nMilitary officials in Nepal say 11 Maoist rebels and two soldiers were killed during fighting at an army camp in eastern Nepal .\tJJ NNS IN NNP VBP CD JJ NNS CC CD NNS VBD VBN IN VBG IN DT NN NN IN JJ NNP .\nOfficials say the rebels attacked the army camp , located 400 kilometers east of the capital , Kathmandu , late Friday .\tNNS VBP DT NNS VBD DT NN NN , VBN CD NNS NN IN DT NN , NNP , JJ NNP .\nMaoist rebels have carried out a series of attacks across Nepal since ending their four-month , unilateral cease-fire on January 2 .\tNNP NNS VBP VBN RP DT NN IN NNS IN NNP IN VBG PRP$ JJ , JJ NN IN NNP CD .\nThey have been fighting to overthrow the constitutional monarchy and replace it with a communist state since 1996 .\tPRP VBP VBN VBG TO VB DT JJ NN CC VB PRP IN DT JJ NN IN CD .\nAt least 12,000 people have died in the fighting .\tIN JJS CD NNS VBP VBN IN DT NN .\nNepal 's King Gyanendra took absolute control of the country nearly a year ago .\tNNP POS NNP NNP VBD JJ NN IN DT NN RB DT NN RB .\nFormerly the British protectorate of Bechuanaland , Botswana adopted its new name upon independence in 1966 .\tRB DT JJ NN IN NNP , NNP VBD PRP$ JJ NN IN NN IN CD .\nFour decades of uninterrupted civilian leadership , progressive social policies , and significant capital investment have created one of the most dynamic economies in Africa .\tCD NNS IN JJ JJ NN , JJ JJ NNS , CC JJ NN NN VBP VBN CD IN DT RBS JJ NNS IN NNP .\nMineral extraction , principally diamond mining , dominates economic activity , though tourism is a growing sector due to the country 's conservation practices and extensive nature preserves .\tNN NN , RB NN NN , VBZ JJ NN , IN NN VBZ DT VBG NN JJ TO DT NN POS NN NNS CC JJ NN NNS .\nBotswana has one of the world 's highest known rates of HIV / AIDS infection , but also one of Africa 's most progressive and comprehensive programs for dealing with the disease .\tNNP VBZ CD IN DT NN POS JJS VBN NNS IN NNP NNP NNP NN , CC RB CD IN NNP POS JJS JJ CC JJ NNS IN VBG IN DT NN .\nDuring the 17th century , the archipelago was divided into two territorial units , one English and the other Danish .\tIN DT JJ NN , DT NN VBD VBN IN CD JJ NNS , CD JJ CC DT JJ JJ .\nSugarcane , produced by slave labor , drove the islands ' economy during the 18th and early 19th centuries .\tNN , VBN IN JJ NN , VBD DT NNS POS NN IN DT CD CC RB JJ NNS .\nIn 1917 , the US purchased the Danish portion , which had been in economic decline since the abolition of slavery in 1848 .\tIN CD , DT NNP VBD DT JJ NN , WDT VBD VBN IN JJ NN IN DT NN IN NN IN CD .\nIn 1895 , military defeat forced China to cede Taiwan to Japan .\tIN CD , JJ NN VBD NNP TO VB NNP TO NNP .\nTaiwan reverted to Chinese control after World War II .\tNNP VBD TO JJ NN IN NNP NNP NNP .\nFollowing the Communist victory on the mainland in 1949 , 2 million Nationalists fled to Taiwan and established a government using the 1947 constitution drawn up for all of China .\tVBG DT JJ NN IN DT NN IN CD , CD CD NNS VBD TO NNP CC VBD DT NN VBG DT CD NN VBN RP IN DT IN NNP .\nOver the next five decades , the ruling authorities gradually democratized and incorporated the local population within the governing structure .\tIN DT JJ CD NNS , DT NN NNS RB VBN CC VBN DT JJ NN IN DT NN NN .\nIn 2000 , Taiwan underwent its first peaceful transfer of power from the Nationalist to the Democratic Progressive Party .\tIN CD , NNP VBD PRP$ JJ JJ NN IN NN IN DT NN TO DT JJ NNP NNP .\nThroughout this period , the island prospered and became one of East Asia 's economic ' Tigers . '\tIN DT NN , DT NN VBD CC VBD CD IN NNP NNP POS JJ `` NNPS . ``\nThe dominant political issues continue to be the relationship between Taiwan and China - specifically the question of Taiwan 's eventual status - as well as domestic political and economic reform .\tDT JJ JJ NNS VBP TO VB DT NN IN NNP CC NNP : RB DT NN IN NNP POS JJ NN : RB RB IN JJ JJ CC JJ NN .\nThe inhabitants of this tiny isolated economy exist on fishing , subsistence farming , handicrafts , and postage stamps .\tDT NNS IN DT JJ JJ NN VBP IN NN , NN NN , NNS , CC NN NNS .\nThe fertile soil of the valleys produces a wide variety of fruits and vegetables , including citrus , sugarcane , watermelons , bananas , yams , and beans .\tDT JJ NN IN DT NNS VBZ DT JJ NN IN NNS CC NNS , VBG NNS , NN , NNS , NNS , NNS , CC NNS .\nBartering is an important part of the economy .\tNNP VBZ DT JJ NN IN DT NN .\nThe major sources of revenue are the sale of postage stamps to collectors and the sale of handicrafts to passing ships .\tDT JJ NNS IN NN VBP DT NN IN JJ NNS TO NNS CC DT NN IN NNS TO VBG NNS .\nIn October 2004 , more than one-quarter of Pitcairn 's small labor force was arrested , putting the economy in a bind , since their services were required as lighter crew to load or unload passing ships .\tIN NNP CD , JJR IN NN IN NNP POS JJ NN NN VBD VBN , VBG DT NN IN DT NN , IN PRP$ NNS VBD VBN IN JJR NN TO VB CC VB NN NNS .\nIn this small , landlocked economy , subsistence agriculture occupies approximately 70 % of the population .\tIN DT JJ , JJ NN , NN NN VBZ RB CD NN IN DT NN .\nThe manufacturing sector has diversified since the mid-1980s .\tDT NN NN VBZ VBN IN DT NNS .\nSugar and wood pulp were major foreign exchange earners ; however , the wood pulp producer closed in January 2010 , and sugar is now the main export earner .\tNN CC NN NN VBD JJ JJ NN NNS ; RB , DT NN NN NN VBD IN NNP CD , CC NN VBZ RB DT JJ NN NN .\nIn 2007 , the sugar industry increased efficiency and diversification efforts , in response to a 17 % decline in EU sugar prices .\tIN CD , DT NN NN VBD NN CC NN NNS , IN NN TO DT CD NN NN IN NNP NN NNS .\nMining has declined in importance in recent years with only coal and quarry stone mines remaining active .\tNN VBZ VBN IN NN IN JJ NNS IN JJ NN CC NN NN NNS VBG JJ .\nSurrounded by South Africa , except for a short border with Mozambique , Swaziland is heavily dependent on South Africa from which it receives more than nine-tenths of its imports and to which it sends 60 % of its exports .\tVBN IN NNP NNP , IN IN DT JJ NN IN NNP , NNP VBZ RB JJ IN NNP NNP IN WDT PRP VBZ JJR IN NNS IN PRP$ NNS CC TO WDT PRP VBZ CD NN IN PRP$ NNS .\nSwaziland 's currency is pegged to the South African rand , subsuming Swaziland 's monetary policy to South Africa .\tNNP POS NN VBZ VBN TO DT JJ JJ NN , VBG NNP POS JJ NN TO NNP NNP .\nThe government is heavily dependent on customs duties from the Southern African Customs Union ( SACU ) , and worker remittances from South Africa substantially supplement domestically earned income .\tDT NN VBZ RB JJ IN NNS NNS IN DT NNP NNP NNP NNP LRB NNP RRB , CC NN NNS IN NNP NNP RB NN RB VBD NN .\nThe government has also legislated that 30 % of local pension funds need to be invested in Swaziland , boosting demand for government bonds .\tDT NN VBZ RB VBN IN CD NN IN JJ NN NNS VBP TO VB VBN IN NNP , VBG NN IN NN NNS .\nCustoms revenues plummeted due to the global economic crisis and a drop in South African imports .\tNN NNS VBD JJ TO DT JJ JJ NN CC DT NN IN JJ JJ NNS .\nThe resulting decline in revenue has pushed the country into a fiscal crisis .\tDT VBG NN IN NN VBZ VBN DT NN IN DT JJ NN .\nThe government has requested assistance from the IMF and from the African Development Bank .\tDT NN VBZ VBN NN IN DT NNP CC IN DT NNP NNP NNP .\nWith an estimated 40 % unemployment rate , Swaziland 's need to increase the number and size of small and medium enterprises and attract foreign direct investment is acute .\tIN DT VBN CD NN NN NN , NNP POS NN TO VB DT NN CC NN IN JJ CC JJ NNS CC VB JJ JJ NN VBZ JJ .\nOvergrazing , soil depletion , drought , and floods persist as problems for the future .\tNN , NN NN , NN , CC NNS VBP IN NNS IN DT NN .\nMore than one-fourth of the population needed emergency food aid in 2006 - 7 because of drought , and more than one-quarter of the adult population has been infected by HIV / AIDS .\tJJR IN NN IN DT NN VBD NN NN NN IN CD : CD IN IN NN , CC JJR IN NN IN DT NN NN VBZ VBN VBN IN NNP NNP NNP .\nAN Ambitious Writer , distinguished for the condition of his linen , was travelling the high road to fame , when he met a Tramp .\tDT JJ NN , VBN IN DT NN IN PRP$ NN , VBD VBG DT JJ NN TO NN , WRB PRP VBD DT NN .\n' What is the matter with your shirt ? ' inquired the Tramp .\t`` WP VBZ DT NN IN PRP$ NN . `` VBD DT NN .\n' It bears the marks of that superb unconcern which is the characteristic of genius , ' replied the Ambitious Writer , contemptuously passing him by .\t`` PRP VBZ DT NNS IN DT NN JJ WDT VBZ DT NN IN NN , `` VBD DT JJ NN , RB VBG PRP IN .\nResting by the wayside a little later , the Tramp carved upon the smooth bark of a birch-tree the words , ' John Gump , Champion Genius . '\tVBG IN DT NN DT NN RB , DT NNP VBD IN DT JJ NN IN DT NN DT NNS , `` NNP NNP , NNP NNP . ``\nI think the political correctness is getting ridiculous .\tPRP VBP DT JJ NN VBZ VBG JJ .\nToday I overheard a little boy say he was going to go play a game of Cattle Management Specialists and Native Americans .\tNN PRP VBD DT JJ NN VBP PRP VBD VBG TO VB VB DT NN IN NNP NNP NNPS CC NNP NNS .\nHaiti is marking six months since the powerful earthquake that killed more than 2,20,000 people and left Port-au-Prince and surrounding areas in ruins .\tNNP VBZ VBG CD NNS IN DT JJ NN WDT VBD JJR IN CD NNS CC VBD NNP CC VBG NNS IN NNS .\nThe 7 magnitude earthquake on January 12 left some 1.5 million others homeless .\tDT CD NN NN IN NNP CD VBD DT CD CD NNS JJ .\nHaitian Prime Minister Jean-Max Bellerive and former U.S. President Bill Clinton say millions of Haitians still lack access to basic services such as shelter , water , sanitation and health care .\tJJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP VBP NNS IN NNS RB VBP NN TO JJ NNS JJ IN NN , NN , NN CC NN NN .\nIn an opinion piece in The New York Times , they say progress has been made , but that all involved in Haiti 's recovery must do better .\tIN DT NN NN IN DT NNP NNP NNP , PRP VBP NN VBZ VBN VBN , CC IN DT VBN IN NNP POS NN MD VB JJR .\nMr. Clinton and Mr. Bellerive , who are the co-chairs of the Interim Haiti Reconstruction Commission , say that so far only 10 percent of the $ 5.3 billion pledged by governments to Haiti has been disbursed to the Haitian government .\tNNP NNP CC NNP NNP , WP VBP DT NNS IN DT NNP NNP NNP NNP , VBP IN RB RB RB CD NN IN DT $ CD CD VBN IN NNS TO NNP VBZ VBN VBN TO DT JJ NN .\nTop U.S. and Japanese negotiators in nuclear disarmament talks with North Korea said the North must agree to a verification of its disarmament activities in writing .\tJJ NNP CC JJ NNS IN JJ NN NNS IN NNP NNP VBD DT NNP MD VB TO DT NN IN PRP$ NN NNS IN NN .\nU.S. Assistant Secretary of State Christopher Hill and his Japanese counterpart Akitaka Saiki met Tuesday in Tokyo ahead of six-nation talks in Beijing next week .\tNNP NNP NNP IN NNP NNP NNP CC PRP$ JJ NN NNP NNP VBD NNP IN NNP RB IN JJ NNS IN NNP JJ NN .\nAfter the meeting , the two envoys told reporters they expect tough negotiations with North Korea .\tIN DT NN , DT CD NNS VBD NNS PRP VBP JJ NNS IN NNP NNP .\nThey say the Beijing talks will focus on hammering out a document with a detailed list of verification measures .\tPRP VBP DT NNP NNS MD VB IN VBG RP DT NN IN DT JJ NN IN NN NNS .\nHill said the North must commit in writing to allow international inspectors to take samples from its nuclear facilities .\tNNP VBD DT NNP MD VB IN VBG TO VB JJ NNS TO VB NNS IN PRP$ JJ NNS .\nWashington said North Korea agreed to sampling during a meeting with Hill in October , but Pyongyang denies it .\tNNP VBD NNP NNP VBD TO VBG IN DT NN IN NNP IN NNP , CC NNP VBZ PRP .\nNorth Korea has agreed to dismantle its nuclear activities in exchange for aid and energy , but has halted the process several times .\tNNP NNP VBZ VBN TO VB PRP$ JJ NNS IN NN IN NN CC NN , CC VBZ VBN DT NN JJ NNS .\nHill plans to hold talks Wednesday with Saiki and the South Korean negotiator Kim Sook before heading for Singapore , where he is meeting with North Korean officials .\tNNP VBZ TO VB NNS NNP IN NNP CC DT JJ JJ NN NNP NNP IN VBG IN NNP , WRB PRP VBZ VBG IN JJ JJ NNS .\nU.S. Secretary of Defense Donald Rumsfeld is in Algeria , in what officials believe is the first such visit by a U.S. defense secretary .\tNNP NNP IN NNP NNP NNP VBZ IN NNP , IN WP NNS VBP VBZ DT JJ JJ NN IN DT NNP NN NN .\nSecretary Rumsfeld says he came to Algeria because it has become a good partner in the war on terrorism .\tNNP NNP VBZ PRP VBD TO NNP IN PRP VBZ VBN DT JJ NN IN DT NN IN NN .\nHe says the country has come a long way since the years when it was a staunch opponent of U.S. policy , as a member of the Non-Aligned Movement .\tPRP VBZ DT NN VBZ VBN DT JJ NN IN DT NNS WRB PRP VBD DT JJ NN IN NNP NN , IN DT NN IN DT JJ NN .\nNow , Algerian forces are preparing to participate in a NATO counter-terrorism operation in the Mediterranean , starting in June .\tRB , JJ NNS VBP VBG TO VB IN DT NNP NN NN IN DT NNP , VBG IN NNP .\nAlgeria is also one of the most active participants in the U.S. Trans-Saharan Counter-Terrorism Initiative .\tNNP VBZ RB CD IN DT RBS JJ NNS IN DT NNP NNP NNP NNP .\nA senior U.S. official , who spoke on condition of anonymity says the United States wants to further expand military relations with Algeria .\tDT JJ NNP NN , WP VBD IN NN IN NN VBZ DT NNP NNPS VBZ TO RB VB JJ NNS IN NNP .\nBut , he says , it also wants the Algerian government to think more creatively about how to implement greater political reforms .\tCC , PRP VBZ , PRP RB VBZ DT JJ NN TO VB RBR RB IN WRB TO VB JJR JJ NNS .\nThe African Union has condemned a roadside bomb attack in Somalia that killed one AU peacekeeper and wounded two others in the capital , Mogadishu .\tDT NNP NNP VBZ VBN DT NN NN NN IN NNP WDT VBD CD NNP NN CC VBD CD NNS IN DT NN , NNP .\nIn a statement Thursday , Special A.U. Representative for Somalia Nicolas Bwakira condemned the attack and said it would not derail the A.U. 's peacekeeping mission in Somalia .\tIN DT NN NNP , NNP NNP NNP IN NNP NNP NNP VBD DT NN CC VBD PRP MD RB VB DT NNP POS VBG NN IN NNP .\nBwakira says two bombs exploded late Wednesday on a road between the airport and the K-4 Section of Mogadishu .\tNNP VBZ CD NNS VBD JJ NNP IN DT NN IN DT NN CC DT NNP NN IN NNP .\nHe says the wounded peacekeepers were taken to Nairobi , Kenya for treatment .\tPRP VBZ DT JJ NNS VBD VBN TO NNP , NNP IN NN .\nThe AU peacekeeping mission in Somalia currently consists of about 3,400 troops contributed by Uganda and Burundi .\tDT NNP NN NN IN NNP RB VBZ IN IN CD NNS VBN IN NNP CC NNP .\nThe troops have come under frequent attack from the al-Shabab militant group .\tDT NNS VBP VBN IN JJ NN IN DT JJ JJ NN .\nAl-Shabab controls much of southern and central Somalia after a two-year insurgency , and has moved to impose its own strict form of Islamic law in areas under its control .\tNNP VBZ NN IN JJ CC JJ NNP IN DT JJ NN , CC VBZ VBN TO VB PRP$ JJ JJ NN IN JJ NN IN NNS IN PRP$ NN .\nLast week , Somalia 's cabinet voted to make Sharia the basis of Somalia 's legal system , in an effort to appease the insurgents .\tJJ NN , NNP POS NN VBD TO VB NNP DT NN IN NNP POS JJ NN , IN DT NN TO VB DT NNS .\nThe child molestation trial of pop superstar Michael Jackson is underway in southern California , where scores of fans turned out to show their support .\tDT NN NN NN IN NN NN NNP NNP VBZ JJ IN JJ NNP , WRB NNS IN NNS VBD RP TO VB PRP$ NN .\nLawyers at a Santa Barbara county court Monday began screening the first of up to 750 potential jurors for the trial , which could last several months .\tNNS IN DT NNP NNP NN NN NNP VBD VBG DT NN IN RB TO CD JJ NNS IN DT NN , WDT MD VB JJ NNS .\nMr. Jackson faces 10 charges involving alleged sexual molestation of a child under the age of 14 .\tNNP NNP VBZ CD NNS VBG JJ JJ NN IN DT NN IN DT NN IN CD .\nThe singer has pleaded not guilty , saying he is completely innocent .\tDT NN VBZ VBN RB JJ , VBG PRP VBZ RB JJ .\nMr. Jackson gave a V-for-victory sign as he entered the courtroom Monday , dressed entirely in white and surrounded by bodyguards .\tNNP NNP VBD DT NN NN IN PRP VBD DT NN NNP , VBN RB IN JJ CC VBN IN NNS .\nIn a video statement released Sunday , Mr. Jackson criticized recent leaks of grand jury testimony on the case , calling them ' malicious , disgusting and FALSE . '\tIN DT NN NN VBN NNP , NNP NNP VBD JJ NNS IN JJ NN NN IN DT NN , VBG PRP `` JJ , JJ CC JJ . ``\nAfghan officials say airstrikes by U.S. helicopter gunships and tankbuster jets have killed at least 12 suspected Taleban in southern Afghanistan .\tJJ NNS VBP NNS IN NNP NN NNS CC NN NNS VBP VBN IN JJS CD JJ NNP IN JJ NNP .\nThey say the fighting began after insurgents tried to kill the former military commander of Khost province , Kheyal Baaz Khan Sherzai , in an ambush .\tPRP VBP DT NN VBD IN NNS VBD TO VB DT JJ JJ NN IN NNP NN , NNP NNP NNP NNP , IN DT NN .\nThe suspected Taleban fired rockets at Mr. Sherzai on a main road between the Afghan capital , Kabul and Gardez .\tDT JJ NNP VBD NNS IN NNP NNP IN DT JJ NN IN DT JJ NN , NNP CC NNP .\nHe was not injured .\tPRP VBD RB VBN .\nThe French press agency ( AFP ) says Afghan soldiers chased the attackers into the mountains and U.S. air support was called in .\tDT JJ NN NN LRB NNP RRB VBZ JJ NNS VBD DT NNS IN DT NNS CC NNP NN NN VBD VBN IN .\nTaleban fighters have carried out a number of attacks recently after a winter lull .\tNNP NNS VBP VBN RP DT NN IN NNS RB IN DT NN NN .\nA U.S.-led coalition ousted the Taleban regime in 2001 .\tDT JJ NN VBD DT NNP NN IN CD .\nAbout 17,000 US military personnel are in Afghanistan trying to weed out Taleban remnants .\tIN CD NNP JJ NNS VBP IN NNP VBG TO VB RP NNP NNS .\nMexico 's state-run oil company , Pemex , said its 2008 production of crude oil fell 9.2 percent from 2007 .\tNNP POS JJ NN NN , NNP , VBD PRP$ CD NN IN JJ NN VBD CD NN IN CD .\nPemex said Wednesday that daily production last year dropped to almost 2.8 million barrels compared to three million barrels the year before .\tNNP VBD NNP IN JJ NN JJ NN VBD TO RB CD CD NNS VBN TO CD CD NNS DT NN IN .\nThe oil company blamed bad weather and operational factors at its biggest oil field , Cantarell , for the production 2008 shortfall .\tDT NN NN VBD JJ NN CC JJ NNS IN PRP$ JJS NN NN , NNP , IN DT NN CD NN .\nExports were also down 16.8 percent last year .\tNNS VBD RB RB CD NN JJ NN .\nMexican President Felipe Calderon has sought more private investment in Pemex to boost falling production .\tJJ NNP NNP NNP VBZ VBN RBR JJ NN IN NNP TO VB VBG NN .\nOpponents have said opening the struggling oil industry to private interests would threaten Mexico 's sovereignty .\tNNS VBP VBN VBG DT JJ NN NN TO JJ NNS MD VB NNP POS NN .\nMexico is a major oil supplier to the United States .\tNNP VBZ DT JJ NN NN TO DT NNP NNPS .\nLeaders of 53 Commonwealth nations have gathered in the Mediterranean island of Malta for a summit .\tNNS IN CD NNP NNS VBP VBN IN DT JJ NN IN NNP IN DT NN .\nThe Commonwealth 's three-day biennial meeting is set to begin Friday .\tDT NNP POS JJ JJ NN VBZ VBN TO VB NNP .\nMost , but not all , members of the Commonwealth were once part of the British Empire .\tJJS , CC RB DT , NNS IN DT NNP VBD RB NN IN DT JJ NN .\nMember nations include developed countries such as Australia and Canada , developing nations including India and Pakistan , and island nations such as Vanuatu .\tNNP NNS VBP JJ NNS JJ IN NNP CC NNP , VBG NNS VBG NNP CC NNP , CC NN NNS JJ IN NNP .\nAlmost one-third of the world 's population lives in Commonwealth member nations .\tRB NN IN DT NN POS NN VBZ IN NNP NN NNS .\nThe Commonwealth says the group 's values include democracy , good governance , equality and economic development .\tDT NNP VBZ DT NN POS NNS VBP NN , JJ NN , NN CC JJ NN .\nA European investigator says there appears to be evidence that the U.S. Central Intelligence Agency abducted people in Europe and transferred them between countries illegally .\tDT JJ NN VBZ EX VBZ TO VB NN IN DT NNP NNP NNP NNP VBD NNS IN NNP CC VBD PRP IN NNS RB .\nSwiss Senator Dick Marty made the comment in a report to the Council of Europe , which brings together lawmakers from democratic European countries to discuss such issues as human rights .\tJJ NNP NNP NNP VBD DT NN IN DT NN TO DT NNP IN NNP , WDT VBZ RB NNS IN JJ JJ NNS TO VB JJ NNS IN JJ NNS .\nU.S. newspapers last month reported that the CIA has been using European airports and airspace to transport terror suspects to secret prisons in eastern Europe .\tNNP NNS JJ NN VBD IN DT NNP VBZ VBN VBG JJ NNS CC NN TO VB NN NNS TO JJ NNS IN JJ NNP .\nMr. Marty criticized U.S. Secretary of State Condoleezza Rice for not providing information or explanation of the issue during her recent visit to Europe .\tNNP NNP VBD NNP NNP IN NNP NNP NNP IN RB VBG NN CC NN IN DT NN IN PRP$ JJ NN TO NNP .\nOn Monday , British Foreign Secretary Jack Straw said his government has found no evidence the Bush administration requested permission to fly terror suspects through Britain or its airspace .\tIN NNP , NNP NNP NNP NNP NNP VBD PRP$ NN VBZ VBN DT NN DT NNP NN VBD NN TO VB NN NNS IN NNP CC PRP$ NN .\nThe United Nations war crimes tribunal has authorized former Kosovo Prime Minister Ramush Haradinaj to engage in political activities during his provisional release .\tDT NNP NNPS NN NNS JJ VBZ VBN JJ NNP NNP NNP NNP NNP TO VB IN JJ NNS IN PRP$ JJ NN .\nJudges at the tribunal in The Hague , in a split decision Wednesday , allowed Mr. Haradinaj to join in such activities if U.N. administrators in Kosovo approve his participation on a case-by-case basis .\tNNS IN DT NN IN DT NNP , IN DT NN NN NNP , VBD NNP NNP TO VB IN JJ NNS IN NNP NNS IN NNP VB PRP$ NN IN DT JJ NN .\nMr. Haradinaj , a former Kosovo Albanian guerrilla leader , resigned his post and surrendered to The Hague tribunal in March after the court indicted him on 37 counts of war crimes during the Kosovo conflict of the late 1990s .\tNNP NNP , DT JJ NNP JJ NN NN , VBD PRP$ NN CC VBD TO DT NNP NN IN NNP IN DT NN VBD PRP IN CD NNS IN NN NNS IN DT NNP NN IN DT JJ NNS .\nMr. Haradinaj has insisted his actions were consistent with international law .\tNNP NNP VBZ VBN PRP$ NNS VBD JJ IN JJ NN .\nSerbian politicians have condemned Wednesday 's decision .\tJJ NNS VBP VBN NNP POS NN .\nThey demanded that Serb defendants on provisional release be granted similar privileges .\tPRP VBD IN JJ NNS IN JJ NN VB VBN JJ NNS .\nThe Reuters news agency says the tribunal 's chief prosecutor plans to appeal the ruling .\tDT NNP NN NN VBZ DT NN POS NN NN VBZ TO VB DT NN .\nIsrael says it will be forced to defend itself against Iran , if the United Nations Security Council fails to take action to stop Tehran from acquiring nuclear weapons .\tNNP VBZ PRP MD VB VBN TO VB PRP IN NNP , IN DT NNP NNP NNP NNP VBZ TO VB NN TO VB NNP IN VBG JJ NNS .\nIn an interview with Reuters news agency , Israeli Defense Minister Shaul Mofaz was asked whether Israel is ready to use military force , if the Security Council does not stop what Israel believes is a covert Iranian weapons program .\tIN DT NN IN NNP NN NN , JJ NNP NNP NNP NNP VBD VBN IN NNP VBZ JJ TO VB JJ NN , IN DT NNP NNP VBZ RB VB WP NNP VBZ VBZ DT JJ JJ NNS NN .\nMofaz replied , ' we have to defend ourselves . '\tNNP VBD , `` PRP VBP TO VB PRP . ``\nHe said any military action would be based on Israel 's right to provide security to its people .\tPRP VBD DT JJ NN MD VB VBN IN NNP POS NN TO VB NN TO PRP$ NNS .\nIn 1981 , Israel bombed a nuclear reactor in Iraq to prevent Saddam Hussein from developing nuclear weapons .\tIN CD , NNP VBD DT JJ NN IN NNP TO VB NNP NNP IN VBG JJ NNS .\nIranian President Mahmoud Ahmadinejad has called for the destruction of Israel since taking office last year .\tJJ NNP NNP NNP VBZ VBN IN DT NN IN NNP IN VBG NN JJ NN .\nHe also has rejected the vast body of historical documentation of the Holocaust as myth .\tPRP RB VBZ VBN DT JJ NN IN JJ NN IN DT NNP IN NN .\nAfghanistan 's anti-drug force commander says foreign help to combat trade in opium and heroin has been very slow , but he predicted big gains in the anti-narcotic campaign in the coming year .\tNNP POS JJ NN NN VBZ JJ NN TO VB NN IN NN CC NN VBZ VBN RB JJ , CC PRP VBD JJ NNS IN DT JJ NN IN DT JJ NN .\nThe international community has committed hundreds of millions of dollars to train Afghan police in destroying laboratories and opium crops , as well as to fund projects to help farmers grow legal crops .\tDT JJ NN VBZ VBN NNS IN NNS IN NNS TO VB JJ NNS IN VBG NNS CC NN NNS , RB RB IN TO VB NNS TO VB NNS VB JJ NNS .\nGeneral Mohammed Daud told reporters the international community must do more to provide alternative sources of income for farmers being forced to stop growing opium poppies .\tNNP NNP NNP VBD NNS DT JJ NN MD VB JJR TO VB JJ NNS IN NN IN NNS VBG VBN TO VB VBG NN NNS .\nHe said the donor countries have not yet fully delivered on their promises .\tPRP VBD DT NN NNS VBP RB RB RB VBN IN PRP$ NNS .\nThe general said 1,300 police officers were being deployed this month from Kabul to provinces where local authorities need help to enforce the government 's anti-poppy campaign .\tDT NN VBD CD NN NNS VBD VBG VBN DT NN IN NNP TO NNS WRB JJ NNS VBP NN TO VB DT NN POS JJ NN .\nHe said 2006 will be the year when his special force will arrest all smugglers , especially those who have links with the government .\tPRP VBD CD MD VB DT NN WRB PRP$ JJ NN MD VB DT NNS , RB DT WP VBP NNS IN DT NN .\nThe French parliament has given final approval to a bill extending the state of emergency aimed at stopping riots by mostly North African youths .\tDT JJ NN VBZ VBN JJ NN TO DT NN VBG DT NN IN NN VBN IN VBG NNS IN RB JJ JJ NNS .\nThe Senate approved the bill Wednesday despite objections from leftist lawmakers who say the continued emergency measures are not needed because the violence is easing .\tDT NNP VBD DT NN NNP IN NNS IN JJ NNS WP VBP DT JJ NN NNS VBP RB VBN IN DT NN VBZ VBG .\nBut Interior Minister Nicolas Sarkozy said many cities are still tense .\tCC NNP NNP NNP NNP VBD JJ NNS VBP RB JJ .\nThe lower house of parliament passed the bill Monday .\tDT JJR NN IN NN VBD DT NN NNP .\nIt gives local authorities the power to impose curfews for three more months .\tPRP VBZ JJ NNS DT NN TO VB NNS IN CD JJR NNS .\nThe violence began late last month when two teenagers of North African origin accidentally electrocuted themselves while hiding from police in a power station near Paris .\tDT NN VBD RB JJ NN WRB CD NNS IN JJ JJ NN RB VBD PRP IN VBG IN NN IN DT NN NN IN NNP .\nThousands of cars and a number of buildings were burned in the riots that followed .\tNNS IN NNS CC DT NN IN NNS VBD VBN IN DT NNS WDT VBD .\nThe government has promised to tackle what it says are the real causes of the violence , including unemployment and racism .\tDT NN VBZ VBN TO VB WP PRP VBZ VBP DT JJ NNS IN DT NN , VBG NN CC NN .\nPakistani President Pervez Musharraf has arrived in London for talks with Prime Minister Tony Blair on terrorism , trade and the situation in Afghanistan .\tJJ NNP NNP NNP VBZ VBN IN NNP IN NNS IN NNP NNP NNP NNP IN NN , NN CC DT NN IN NNP .\nGeneral Musharraf traveled from Washington where he met with President Bush .\tNNP NNP VBD IN NNP WRB PRP VBD IN NNP NNP .\nDuring his visit he said the search for al-Qaida leader Osama bin Laden has gone completely cold .\tIN PRP$ NN PRP VBD DT NN IN NNP NN NNP NNP NNP VBZ VBN RB JJ .\nIn an interview published Sunday General Musharraf says Pakistani forces are aggressively pursuing Osama bin Laden , but have only been able to determine that he is still alive .\tIN DT NN VBN NNP NNP NNP VBZ JJ NNS VBP RB VBG NNP NNP NNP , CC VBP RB VBN JJ TO VB IN PRP VBZ RB JJ .\nMr. Musharraf says the United States must share responsibility for the failure to track him down because the U.S.-led coalition does not have enough troops in neighboring Afghanistan .\tNNP NNP VBZ DT NNP NNPS MD VB NN IN DT NN TO VB PRP RB IN DT JJ NN VBZ RB VB JJ NNS IN JJ NNP .\nDuring his visit , Mr. Bush said ' there is nobody more dedicated ' to tracking down Osama bin Laden than Mr. Musharraf .\tIN PRP$ NN , NNP NNP VBD `` EX VBZ DT RBR JJ `` TO VBG RP NNP NNP NNP IN NNP NNP .\nBrazilian President Luiz Inacio Lula da Silva has apologized for a corruption scandal that is rocking his government and threatening his own popularity .\tJJ NNP NNP NNP NNP NNP NNP VBZ VBN IN DT NN NN WDT VBZ VBG PRP$ NN CC VBG PRP$ JJ NN .\nIn a televised address Friday , Mr. da Silva said his ruling Workers ' Party must apologize for its mistakes .\tIN DT JJ NN NNP , NNP NNP NNP VBD PRP$ NN NNS POS NN MD VB IN PRP$ NNS .\nThe party is embroiled in a scandal over allegations it bought votes in Congress .\tDT NN VBZ VBN IN DT NN IN NNS PRP VBD NNS IN NNP .\nThere are also accusations that private businessmen bribed lawmakers .\tEX VBP RB NNS IN JJ NNS VBD NNS .\nEarlier Friday , a public opinion poll indicated the Brazilian leader would lose a re-election bid in 2006 because of the growing scandal .\tRBR NNP , DT JJ NN NN VBD DT JJ NN MD VB DT NN NN IN CD IN IN DT VBG NN .\nOn Thursday , the publicist behind Mr. da Silva 's 2002 presidential campaign , Duda Mendonca told congressional investigators that he was partly paid for his services with illegal funds from an offshore bank .\tIN NNP , DT NN IN NNP NNP NNP POS CD JJ NN , NNP NNP VBD JJ NNS IN PRP VBD RB VBN IN PRP$ NNS IN JJ NNS IN DT JJ NN .\nSeveral lawmakers have resigned since the corruption scandal surfaced in June .\tJJ NNS VBP VBN IN DT NN NN VBD IN NNP .\nHospitals in Bombay are struggling to cope with hundreds of patients infected by waterborne diseases in the aftermath of western India 's monsoon floods , and they say the death toll is rising .\tNNS IN NNP VBP VBG TO VB IN NNS IN NNS VBN IN JJ NNS IN DT NN IN JJ NNP POS NN NNS , CC PRP VBP DT NN NN VBZ VBG .\nA government health official says illnesses caused by contaminated water have killed at least 66 people , and there are fears the TRUE death toll could be far higher , since many cases have not been reported .\tDT NN NN NN VBZ NNS VBN IN JJ NN VBP VBN IN JJS CD NNS , CC EX VBP NNS DT JJ NN NN MD VB RB JJR , IN JJ NNS VBP RB VBN VBN .\nThousands of people seeking medical care crowded into the city 's handful of state-run hospitals , Friday .\tNNS IN NNS VBG JJ NN VBN IN DT NN POS NN IN JJ NNS , NNP .\nThe facilities are short of beds , and many patients are forced to sleep on floors or wait for care in the streets outside the hospitals .\tDT NNS VBP JJ IN NNS , CC JJ NNS VBP VBN TO VB IN NNS CC VB IN NN IN DT NNS IN DT NNS .\nBombay 's medical crisis continues , two weeks after record monsoon floods that inundated the city killed more than 1,000 people .\tNNP POS JJ NN VBZ , CD NNS IN NN NN NNS WDT VBD DT NN VBD JJR IN CD NNS .\nEgyptian authorities say the death toll from the collapse of a residential building last week has risen to 35 .\tJJ NNS VBP DT NN NN IN DT NN IN DT JJ NN JJ NN VBZ VBN TO CD .\nThe 12-story building in the Mediterranean port city of Alexandria crumbled on Monday .\tDT JJ NN IN DT JJ JJ NN IN NNP VBD IN NNP .\nRescue workers have pulled three survivors from the rubble .\tNN NNS VBP VBN CD NNS IN DT NN .\nThe building collapsed as construction workers carried out repairs on the first floor .\tDT NN VBD IN NN NNS VBD RP NNS IN DT JJ NN .\nProsecutors have issued arrest warrants for the building 's owner and a contractor responsible for repair work .\tNNS VBP VBN NN NNS IN DT NN POS NN CC DT NN JJ IN NN NN .\nBuildings frequently collapse in Egypt because of poor maintenance and inferior construction in violation of regulations .\tNNS RB VBP IN NNP IN IN JJ NN CC JJ NN IN NN IN NNS .\nEgyptian authorities say the building was erected 25 years ago without a permit .\tJJ NNS VBP DT NN VBD VBN CD NNS RB IN DT NN .\nIt was originally seven stories , but five more were added later .\tPRP VBD RB CD NNS , CC CD JJR VBD VBN RB .\nPakistani police say a suicide bomber crashed an explosives-laden car into a police checkpoint killing at least three officers and wounding 17 others .\tJJ NNS VBP DT NN NN VBD DT JJ NN IN DT NN NN VBG IN JJS CD NNS CC VBG CD NNS .\nOfficials say Monday 's early morning attack occurred in northwest Pakistan , near the North Waziristan tribal region bordering Afghanistan .\tNNS VBP NNP POS JJ NN NN VBD IN JJ NNP , IN DT NNP NNP JJ NN VBG NNP .\nNo one has claimed responsibility for the incident .\tDT NN VBZ VBN NN IN DT NN .\nMany Taliban and al-Qaida militants fled to Pakistan from neighboring Afghanistan after the U.S.-led invasion in Afghanistan toppled the Taliban in late 2001 .\tJJ NNP CC NNP NNS VBD TO NNP IN VBG NNP IN DT JJ NN IN NNP VBD DT NNP IN JJ CD .\nInsurgents have a strong presence in Pakistan 's volatile tribal areas .\tNNS VBP DT JJ NN IN NNP POS JJ JJ NNS .\nAfghan officials say five people were killed and six others injured when an earthquake struck near the country 's eastern border with Pakistan .\tJJ NNS VBP CD NNS VBD VBN CC CD NNS VBN WRB DT NN VBD IN DT NN POS JJ NN IN NNP .\nA Defense Ministry spokesman , General Mohammed Zahir Azimi , said several homes were destroyed in the quake in Zabul province , correcting an earlier statement that the quake struck in neighboring Paktika province .\tDT NNP NNP NN , NNP NNP NNP NNP , VBD JJ NNS VBD VBN IN DT NN IN NNP NN , VBG DT JJR NN IN DT NN VBD IN JJ NNP NN .\nThe spokesman said that Army rescue teams and doctors were in the region assessing the damage and helping villagers .\tDT NN VBD IN NNP NN NNS CC NNS VBD IN DT NN VBG DT NN CC VBG NNS .\nPakistan 's Seismological Center in the city of Peshawar said two quakes were registered along the border area early Sunday .\tNNP POS NNP NNP IN DT NN IN NNP VBD CD NNS VBD VBN IN DT NN NN JJ NNP .\nWar-shattered Afghanistan does not have a meteorological agency that can provide information about the scale of earthquakes .\tJJ NNP VBZ RB VB DT JJ NN WDT MD VB NN IN DT NN IN NNS .\nAfghanistan was spared the devastation caused by a massive October 8 earthquake in neighboring Pakistan and in India .\tNNP VBD VBN DT NN VBN IN DT JJ NNP CD NN IN JJ NNP CC IN NNP .\nThe United Nations is launching a massive campaign in Burma this week to fight the spread of dengue fever in areas hard-hit by last month 's deadly cyclone .\tDT NNP NNP VBZ VBG DT JJ NN IN NNP DT NN TO VB DT NN IN NN NN IN NNS JJ IN JJ NN POS JJ NN .\nStarting Tuesday , hundreds of volunteers will begin fanning out across the main city of Rangoon and into the Irrawaddy Delta , where the U.N. estimates more than two million people have been affected by the storm .\tVBG NNP , NNS IN NNS MD VB VBG RP IN DT JJ NN IN NNP CC IN DT NNP NNP , WRB DT NNP VBZ JJR IN CD CD NNS VBP VBN VBN IN DT NN .\nThe groups will be looking for mosquito larvae that breed in pools of standing water during the monsoon season .\tDT NNS MD VB VBG IN NN NN IN VBP IN NNS IN VBG NN IN DT NN NN .\nThat season began early last month when Cyclone Nargis ripped across the delta , leaving more than 1,30,000 people dead and missing .\tDT NN VBD RB JJ NN WRB NNP NNP VBD IN DT NN , VBG JJR IN CD NNS JJ CC JJ .\nU.N. officials fear the number of cases of the mosquito-borne disease could be higher than usual this year because many people have lost their homes and are more exposed to mosquitoes .\tNNP NNS VBP DT NN IN NNS IN DT JJ NN MD VB JJR IN JJ DT NN IN JJ NNS VBP VBN PRP$ NNS CC VBP RBR JJ TO NNS .\nMembers of the international community are meeting Wednesday in Afghanistan to reduce record-high opium production and illegal drug trafficking .\tNNS IN DT JJ NN VBP VBG NNP IN NNP TO VB JJ NN NN CC JJ NN NN .\nThe anti-drug conference opened in Kabul with United Nations experts discussing the security threat that opium poses to Afghanistan and surrounding nations .\tDT JJ NN VBD IN NNP IN NNP NNP NNS VBG DT NN NN WDT VBD NNS TO NNP CC VBG NNS .\nA U.N. report released earlier this year showed poppy cultivation reached new highs this year in Afghanistan , with nearly 95 percent of the world 's opium produced in the country .\tDT NNP NN VBN RBR DT NN VBD NN NN VBD JJ NNS DT NN IN NNP , IN RB CD NN IN DT NN POS NN VBN IN DT NN .\nThe U.N. report also said the illegal opium trade drives instability by helping fund Taliban insurgents .\tDT NNP NN RB VBD DT JJ NN NN VBZ NN IN VBG VB NNP NNS .\nTopics on the agenda include ways to strengthen border security among Central Asian countries that are increasingly becoming a destination for heroin .\tNNS IN DT NN VBP NNS TO VB NN NN IN JJ JJ NNS WDT VBP RB VBG DT NN IN NN .\nLast week , the European Union suggested some of Afghanistan 's poppy crop should be used to make legal opium-based pain medicine instead of heroin .\tJJ NN , DT NNP NNP VBD DT IN NNP POS NN NN MD VB VBN TO VB JJ JJ NN NN IN IN NN .\nThe United States and the Afghan government oppose the idea .\tDT NNP NNPS CC DT JJ NN VBP DT NN .\nNorth Korean state radio reportedly has raised the question of a dynastic transfer of power from Kim Jong-il to one of his sons when the Stalinist leader dies .\tJJ JJ NN NN RB VBZ VBN DT NN IN DT JJ NN IN NN IN NNP NNP TO CD IN PRP$ NNS WRB DT JJ NN VBZ .\nMr. Kim , who turns 63 next month , inherited power from his father Kim Il-Sung in 1994 , establishing what has been called the world 's first Communist dynasty .\tNNP NNP , WP VBZ CD JJ NN , VBD NN IN PRP$ NN NNP NNP IN CD , VBG WP VBZ VBN VBN DT NN POS JJ JJ NN .\nSouth Korean media report Monday that a recent political commentary on North Korean radio , heard last Thursday , referred to comments by the elder Kim saying his son or even his grandson should complete his work if he falls short of completing the country 's ' revolution . '\tJJ JJ NNS VBP NNP IN DT JJ JJ NN IN JJ JJ NN , VBN JJ NNP , VBD TO NNS IN DT NN NNP VBG PRP$ NN CC RB PRP$ NN MD VB PRP$ NN IN PRP VBZ JJ IN VBG DT NN POS `` NN . ``\nKim Jong-il has three sons , the eldest being 33-year-old Kim Jong-Nam .\tNNP NNP VBZ CD NNS , DT JJS VBG JJ NNP NNP .\nHis two rivals for a possible succession are 23-year-old Kim Jong-Chul and 21-year-old Kim Jong-Woon .\tPRP$ CD NNS IN DT JJ NN VBP JJ NNP NNP CC JJ NNP NNP .\nRecent civil wars in the West African nations of Liberia , Sierra Leone and Ivory Coast destabilized neighboring southeast Guinea with a flood of refugees and increased poverty .\tJJ JJ NNS IN DT JJ JJ NNS IN NNP , NNP NNP CC NNP NNP VBD JJ NN NNP IN DT NN IN NNS CC VBD NN .\nHealth workers say the movement of displaced people and an increase in sexual assaults have caused the region to have the highest HIV / AIDS rate in the country .\tNN NNS VBP DT NN IN JJ NNS CC DT NN IN JJ NNS VBP VBN DT NN TO VB DT JJS NNP NNP NNP NN IN DT NN .\nAs people die from the virus , many leave behind children to face life as AIDS orphans .\tIN NNS VBP IN DT NN , JJ NN IN NNS TO VB NN IN NNP NNS .\nKari Barber has more from the town of N'Zerekore in Guinea .\tNNP NNP VBZ RBR IN DT NN IN NNP IN NNP .\nSouth Korean diplomats have taken custody of eight people believed to be North Koreans who entered a South Korean school in eastern China .\tJJ JJ NNS VBP VBN NN IN CD NNS VBN TO VB JJ NNS WP VBD DT JJ JJ NN IN JJ NNP .\nThe North Koreans entered the school Tuesday in the city of Qingdao , along China 's eastern coast asking to be sent to South Korea .\tDT NNP NNS VBD DT NN NNP IN DT NN IN NNP , IN NNP POS JJ NN VBG TO VB VBN TO NNP NNP .\nSouth Korea 's Foreign Ministry says it has appealed to Beijing not to send the asylum seekers back to North Korea .\tNNP NNP POS NNP NNP VBZ PRP VBZ VBN TO NNP RB TO VB DT NN NNS RB TO NNP NNP .\nChina recently sent home seven North Koreans who sought asylum in August at a South Korean school in the Chinese city of Yentai .\tNNP RB VBD NN CD NNP NNS WP VBD NN IN NNP IN DT JJ JJ NN IN DT JJ NN IN NNP .\nBeijing has an agreement with Pyongyang to return asylum seekers , but has allowed many to travel to South Korea through third countries .\tNNP VBZ DT NN IN NNP TO VB NN NNS , CC VBZ VBN JJ TO VB TO NNP NNP IN JJ NNS .\nHundreds of North Koreans have broken into embassies and foreign schools in China in recent years seeking asylum .\tNNS IN NNP NNS VBP VBN IN NNS CC JJ NNS IN NNP IN JJ NNS VBG NN .\nThe Nepalese military says a fierce battle between government troops and Maoist rebels has left at least five soldiers and an unknown number of guerillas dead .\tDT JJ NN VBZ DT JJ NN IN NN NNS CC JJ NNS VBZ VBN IN JJS CD NNS CC DT JJ NN IN NNS JJ .\nA military statement says the clash occurred Friday in the western Kapilvastu district as security forces were trying to clear roadblocks set up by the rebels .\tDT JJ NN VBZ DT NN VBD NNP IN DT JJ NNP NN IN NN NNS VBD VBG TO VB NNS VBN RP IN DT NNS .\nThe statement says the rebels , who were hiding in the area , set off bombs targeting the security forces , who retaliated with heavy gunfire .\tDT NN VBZ DT NNS , WP VBD VBG IN DT NN , VBD RP NNS VBG DT NN NNS , WP VBD IN JJ NN .\nThe Maoists are fighting to topple Nepal 's constitutional monarchy and replace it with a communist state .\tDT NNS VBP VBG TO VB NNP POS JJ NN CC VB PRP IN DT JJ NN .\nIn an unrelated development , Nepalese authorities released a journalist held in detention by security forces for almost 21 months .\tIN DT JJ NN , JJ NNS VBD DT NN VBN IN NN IN NN NNS IN RB CD NNS .\nThe Federation of Nepalese Journalists says Bhaikaji Ghimire was released Thursday afternoon on the Supreme Court 's order .\tDT NNP IN JJ NNPS VBZ NNP NNP VBD VBN NNP NN IN DT NNP NNP POS NN .\nA UN report on human rights abuses in Ivory Coast has been published in the Paris-based newspaper Liberation , several days after it was leaked to Ivorian papers .\tDT NNP NN IN JJ NNS NNS IN NNP NNP VBZ VBN VBN IN DT JJ NN NN , JJ NNS IN PRP VBD VBN TO JJ NNS .\nThe report outlines examples of death squads , mass executions , torture and rapes in the country over the past two years .\tDT NN VBZ NNS IN NN NNS , NN NNS , NN CC NNS IN DT NN IN DT JJ CD NNS .\nVOA West Africa correspondent Nico Colombant , based in Abidjan , talked with English to Africa reporter William Eagle about the abuses .\tNNP NNP NNP NN NNP NNP , VBN IN NNP , VBD IN NNP TO NNP NN NNP NNP IN DT NNS .\nCorrespondent Colombant says authorities are probably directing them , although it is difficult to determine who exactly is giving the orders .\tNNP NNP VBZ NNS VBP RB VBG PRP , IN PRP VBZ JJ TO VB WP RB VBZ VBG DT NNS .\nAmong those abused are women , and he says soldiers and rebels engage in rape .\tIN DT VBN VBP NNS , CC PRP VBZ NNS CC NNS VBP IN NN .\nHe says warfare and economic hard times have led to a growth in prostitution , which is sometimes controlled by soldiers .\tPRP VBZ NN CC JJ JJ NNS VBP VBN TO DT NN IN NN , WDT VBZ RB VBN IN NNS .\nUN peacekeepers have also been seen soliciting prostitutes , which could lead to the spread of AIDS and other sexually transmitted diseases\tNNP NNS VBP RB VBN VBN VBG NNS , WDT MD VB TO DT NN IN NNP CC JJ RB JJ NNS\nU.N. Secretary-General Ban Ki-moon says the Lebanese militant group Hezbollah has outlined its terms for further prisoner exchanges with Israel .\tNNP NNP NNP NNP VBZ DT JJ JJ NN NNP VBZ VBN PRP$ NNS IN JJ NN NNS IN NNP .\nMr. Ban Wednesday said he received a letter from Hezbollah chief Hassan Nasrallah .\tNNP NNP NNP VBD PRP VBD DT NN IN NNP NN NNP NNP .\nHe said Nasrallah indicated his willingness to resolve the remaining Israeli missing in action humanitarian cases of the 1980s .\tPRP VBD NNP VBD PRP$ NN TO VB DT VBG NNS VBG IN NN JJ NNS IN DT NNS .\nBut before Hezbollah acts , the Lebanese Shi'ite leader wants the release of hundreds of ' minors , women and elderly people being held in Israeli detention ' as well as detainees suffering from handicaps and injuries .\tCC IN NNP NNS , DT JJ NNP NN VBZ DT NN IN NNS IN `` NNS , NNS CC JJ NNS VBG VBN IN JJ NN `` RB RB IN NNS VBG IN NNS CC NNS .\nLast week , Israel released five prisoners and the remains of some 200 militants to Lebanon in exchange for the bodies of two Israeli soldiers whose capture two years ago triggered a 34-day war .\tJJ NN , NNP VBD CD NNS CC DT NNS IN DT CD NNS TO NNP IN NN IN DT NNS IN CD JJ NNS WP$ NN CD NNS RB VBD DT JJ NN .\nWednesday , Hezbollah transferred the remains of 114 of those militants to Syria .\tNNP , NNP VBD DT NNS IN CD IN DT NNS TO NNP .\nHundreds of relatives greeted the bodies as they were handed over at the Lebanese-Syrian border .\tNNS IN NNS VBD DT NNS IN PRP VBD VBN RP IN DT JJ NN .\nArnold Schwarzenegger , the Republican governor of California , is scheduled to address this year 's conference of Britain 's Conservative Party .\tNNP NNP , DT JJ NN IN NNP , VBZ VBN TO VB DT NN POS NN IN NNP POS NNP NNP .\nParty officials said Sunday in London that Schwarzenegger would speak about climate change at the party 's annual meeting .\tNNP NNS VBD NNP IN NNP IN NNP MD VB IN NN NN IN DT NN POS JJ NN .\nBritish conservative leader David Cameron said Schwarzenegger had shown tremendous leadership in pioneering measures to protect the environment .\tJJ JJ NN NNP NNP VBD NNP VBD VBN JJ NN IN VBG NNS TO VB DT NN .\nSchwarzenegger signed into law last year a measure that imposed emissions limits on utilities , refineries and manufacturing plants .\tNNP VBD IN NN JJ NN DT NN WDT VBD NNS NNS IN NNS , NNS CC NN NNS .\nThe goal is to cut greenhouse gas emissions 25 percent by the year 2020 .\tDT NN VBZ TO VB NN NN NNS CD NN IN DT NN CD .\nHe said California could set the standard for the United States and the rest of the world .\tPRP VBD NNP MD VB DT NN IN DT NNP NNPS CC DT NN IN DT NN .\nTaleban militants in Afghanistan bombed a convoy carrying a provincial governor and later opened fire on the vehicles , killing one official .\tNNP NNS IN NNP VBD DT NN VBG DT JJ NN CC RB VBD NN IN DT NNS , VBG CD NN .\nAuthorities said the governor of eastern Lagham province was unhurt in the attack Saturday .\tNNS VBD DT NN IN JJ NNP NN VBD JJ IN DT NN NNP .\nThey said one official in the provincial government was killed by gunfire .\tPRP VBD CD NN IN DT JJ NN VBD VBN IN NN .\nA Taleban spokesman claimed responsibility for the attack .\tDT NNP NN VBD NN IN DT NN .\nPolice said they had detained several suspects .\tNNS VBD PRP VBD VBN JJ NNS .\nMeanwhile , Afghan officials said a roadside bomb killed six members of a security force in eastern Paktia province .\tRB , JJ NNS VBD DT NN NN VBD CD NNS IN DT NN NN IN JJ NNP NN .\nIn Kandahar province , two NATO soldiers were killed and three wounded by militants firing rocket propelled grenades and small arms .\tIN NNP NN , CD NNP NNS VBD VBN CC CD VBN IN NNS VBG NN VBD NNS CC JJ NNS .\nCoalition officials did not release the nationality of the troops involved .\tNN NNS VBD RB VB DT NN IN DT NNS VBN .\nFriday , a suicide attack on a NATO convoy in Kandahar killed one NATO soldier and eight Afghan civilians .\tNNP , DT NN NN IN DT NNP NN IN NNP VBD CD NNP NN CC CD JJ NNS .\nA report by the U.S. Defense Department estimates about 26,000 Iraqi civilians have been killed or wounded in attacks by insurgents since January last year .\tDT NN IN DT NNP NNP NNP VBZ IN CD JJ NNS VBP VBN VBN CC VBN IN NNS IN NNS IN NNP JJ NN .\nThe Pentagon provided the estimate in a report to Congress this month .\tDT NNP VBD DT NN IN DT NN TO NNP DT NN .\nIt says about 80 percent of all insurgent attacks were directed at coalition forces , but that the majority of all casualties , 80 percent , are among Iraqi civilians .\tPRP VBZ IN CD NN IN DT JJ NNS VBD VBN IN NN NNS , CC IN DT NN IN DT NNS , CD NN , VBP IN JJ NNS .\nFurther , the Pentagon says the number of Iraqi casualties has risen , from about 26 a day between the months of January and March 2004 , to about 64 a day in the period between August 29 of this year and September 16 .\tRB , DT NNP VBZ DT NN IN JJ NNS VBZ VBN , IN IN CD DT NN IN DT NNS IN NNP CC NNP CD , TO IN CD DT NN IN DT NN IN NNP CD IN DT NN CC NNP CD .\nViolence continued Saturday , when at least 25 people died following a bomb explosion in a Shi'ite village north of Baghdad .\tNN VBD NNP , WRB IN JJS CD NNS VBD VBG DT NN NN IN DT NNP NN NN IN NNP .\nPakistani President Pervez Musharraf has dismissed opposition protests over the suspension of the country 's top judge , saying his critics are trying to politicize a constitutional and judicial issue .\tJJ NNP NNP NNP VBZ VBN NN NNS IN DT NN IN DT NN POS JJ NN , VBG PRP$ NNS VBP VBG TO VB DT JJ CC JJ NN .\nThousands of people across Pakistan protested Monday against the removal of Chief Justice Iftikhar Mohammed Chaudry earlier this month on allegations of abusing authority .\tNNS IN NNS IN NNP VBD NNP IN DT NN IN NNP NNP NNP NNP NNP RBR DT NN IN NNS IN VBG NN .\nLawyers and opposition parties say General Musharraf is trying to interfere with the independence of the judiciary .\tNNS CC NN NNS VBP NNP NNP VBZ VBG TO VB IN DT NN IN DT NN .\nHe insists there is little public support for the protests .\tPRP VBZ EX VBZ JJ JJ NN IN DT NNS .\nDuring a speech Tuesday in Rawalpindi , the Pakistani leader also denied the government has been involved in the disappearance of hundreds of people since Pakistan joined the U.S.-led war on terrorism in 2001 .\tIN DT NN NNP IN NNP , DT JJ NN RB VBD DT NN VBZ VBN VBN IN DT NN IN NNS IN NNS IN NNP VBD DT JJ NN IN NN IN CD .\nHuman rights groups say the government has detained hundreds of people in secret , accusing them of links to extremist groups .\tJJ NNS NNS VBP DT NN VBZ VBN NNS IN NNS IN NN , VBG PRP IN NNS IN NN NNS .\nInternational health workers in Angola say they are still struggling to end an outbreak of the Marburg virus , which has killed 156 people in the southern African nation .\tJJ NN NNS IN NNP VBP PRP VBP RB VBG TO VB DT NN IN DT NNP NN , WDT VBZ VBN CD NNS IN DT JJ JJ NN .\nRepresentatives of Doctors without Borders and the U.N. children 's fund expressed concern Wednesday that the death toll continues to rise , despite emergency efforts .\tNNS IN NNS IN NNS CC DT NNP NNS POS NN VBD NN NNP IN DT NN NN VBZ TO VB , IN NN NNS .\nThe Associated Press quoted Health Minister Sebastiao Veloso as saying no new cases have been reported outside northwestern Uige province , where the rare virus was first spotted .\tDT NNP NNP VBD NNP NNP NNP NNP IN VBG DT JJ NNS VBP VBN VBN IN JJ NNP NN , WRB DT JJ NN VBD RB VBN .\nHospital workers are using isolation units and protective clothing to limit the spread of the virus , which causes fever , diarrhea and bleeding .\tNN NNS VBP VBG NN NNS CC JJ NN TO VB DT NN IN DT NN , WDT VBZ NN , NN CC NN .\nAngola 's government and aid groups have also launched campaigns to warn people that the illness can spread through contact with body fluids .\tNNP POS NN CC NN NNS VBP RB VBN NNS TO VB NNS IN DT NN MD VB IN NN IN NN NNS .\nThe Discovery Channel and NASA have restored 50 years of history for the U.S. space agency 's archives .\tDT NNP NNP CC NNP VBP VBN CD NNS IN NN IN DT NNP NN NN POS NNS .\nDiscovery has used the material to produce a documentary series called , When We Left Earth :\tNNP VBZ VBN DT NN TO VB DT NN NN VBN , WRB PRP VBD NNP :\nThe NASA Missions .\tDT NNP NNPS .\nIt will be broadcast internationally next month .\tPRP MD VB VBN RB JJ NN .\nThis week in Washington , former senator and astronaut John Glenn joined members of the U.S. Congress , officials from NASA and others for a sneak preview .\tDT NN IN NNP , JJ NN CC NN NNP NNP VBD NNS IN DT NNP NNP , NNS IN NNP CC NNS IN DT NN NN .\nVOA 's Paul Sisco reports .\tNNP POS NNP NNP VBZ .\nVenezuelan President Hugo Chavez arrived in Iran Wednesday for talks with officials on bilateral issues .\tJJ NNP NNP NNP VBD IN NNP NNP IN NNS IN NNS IN JJ NNS .\nReports say he is expected to meet with Iranian President Mahmoud Ahmadinejad on Thursday as well as launch a joint development bank and bilateral investment fund .\tNNS VBP PRP VBZ VBN TO VB IN JJ NNP NNP NNP IN NNP RB RB IN NN DT JJ NN NN CC JJ NN NN .\nMr. Chavez ' visit to Iran follows a meeting with Latin American and Arab leaders in Qatar .\tNNP NNP POS NN TO NNP VBZ DT NN IN JJ JJ CC JJ NNS IN NNP .\nThe Venezuelan president has made several trips to Iran since Mr. Ahmadinejad took power in 2005 .\tDT JJ NN VBZ VBN JJ NNS TO NNP IN NNP NNP VBD NN IN CD .\nBoth leaders have forged close ties .\tDT NNS VBP VBN JJ NNS .\nLater this week , Mr. Chavez heads to Asia for talks with regional leaders .\tRB DT NN , NNP NNP VBZ TO NNP IN NNS IN JJ NNS .\nPakistan 's military says it has successfully test-fired a short-range nuclear-capable missile .\tNNP POS JJ VBZ PRP VBZ RB VBN DT JJ JJ NN .\nOfficials say the ( Abdali ) surface-to-surface ballistic missile , with a range of 200 kilometers , was launched Saturday from an undisclosed location inside Pakistan .\tNNS VBP DT LRB NNP RRB JJ JJ NN , IN DT NN IN CD NNS , VBD VBN NNP IN DT JJ NN IN NNP .\nIt is the country 's second missile test this month .\tPRP VBZ DT NN POS JJ NN NN DT NN .\nThe launch comes one day after Pakistan 's rival , India , test-fired a nuclear-capable ballistic missile from a ship off its east coast in the Bay of Bengal .\tDT NN VBZ CD NN IN NNP POS NN , NNP , VBD DT JJ JJ NN IN DT NN IN PRP$ JJ NN IN DT NNP IN NNP .\nPakistan and India often conduct such tests to demonstrate their defensive readiness .\tNNP CC NNP RB VBP JJ NNS TO VB PRP$ JJ NN .\nThe two rivals normally give each other notice for long-range missile launches .\tDT CD NNS RB VBP DT JJ NN IN JJ NN NNS .\nA team of inspectors from the United Nations nuclear agency has visited a heavy water reactor in Iran .\tDT NN IN NNS IN DT NNP NNP JJ NN VBZ VBN DT JJ NN NN IN NNP .\nIranian state media reports Monday 's inspection of the Arak facility took five hours .\tJJ NN NNS NNS NNP POS NN IN DT NNP NN VBD CD NNS .\nThe facility will produce plutonium once it is completed .\tDT NN MD VB NN RB PRP VBZ VBN .\nForeign Ministry spokesman Mohammad Ali Hosseini says another team from the IAEA will visit Iran on August 6 to work out a framework for inspecting the Natanz uranium enrichment facility .\tNNP NNP NN NNP NNP NNP VBZ DT NN IN DT NNP MD VB NNP IN NNP CD TO VB RP DT NN IN VBG DT NNP NN NN NN .\nIran has agreed to allow the inspections as part of a deal to resolve questions about its nuclear activities .\tNNP VBZ VBN TO VB DT NNS IN NN IN DT NN TO VB NNS IN PRP$ JJ NNS .\nPlutonium and highly enriched uranium can be used to build nuclear weapons .\tNN CC RB VBN NN MD VB VBN TO VB JJ NNS .\nThe U.N. Security Council has imposed two sets of sanctions on Iran because of its refusal to suspend uranium enrichment .\tDT NNP NNP NNP VBZ VBN CD NNS IN NNS IN NNP IN IN PRP$ NN TO VB NN NN .\nThe United States and its Western allies accuse Iran of trying to develop nuclear weapons , but Iran says its atomic program is for peaceful purposes .\tDT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS , CC NNP VBZ PRP$ JJ NN VBZ IN JJ NNS .\nSaudi King Abdullah says dangerous conditions in Iraq , Lebanon and the Palestinian territories could trigger broad conflict in the region .\tNNP NNP NNP VBZ JJ NNS IN NNP , NNP CC DT JJ NNS MD VB JJ NN IN DT NN .\nSpeaking at a summit of Gulf leaders in Riyadh Saturday , the Saudi king said the Middle East is like a powder keg waiting for a spark to explode .\tVBG IN DT NN IN NNP NNS IN NNP NNP , DT NNP NN VBD DT NNP NNP VBZ IN DT NN NN VBG IN DT NN TO VB .\nHe expressed concern that Palestinians are fighting among themselves , and that Iraqis are killing each other .\tPRP VBD NN IN NNS VBP VBG IN PRP , CC IN NNS VBP VBG DT NN .\nKing Abdullah added that unity in Lebanon is at risk , following a month-long war between Israel and Hezbollah militants .\tNNP NNP VBD IN NN IN NNP VBZ IN NN , VBG DT JJ NN IN NNP CC NNP NNS .\nOfficials at the Riyadh meeting of the Gulf Cooperation Council were expected to discuss Iran 's nuclear program .\tNNS IN DT NNP NN IN DT NNP NNP NNP VBD VBN TO VB NNP POS JJ NN .\nThe regional group brings together Bahrain , Kuwait , Oman , Qatar , Saudi Arabia and the United Arab Emirates .\tDT JJ NN VBZ RB NNP , NNP , NNP , NNP , NNP NNP CC DT NNP NNP NNPS .\nThe U.S. Defense Department says U.S. and North Korean officials have reached agreement on a framework to recover the remains of American servicmen missing from the Korean War .\tDT NNP NNP NNP VBZ NNP CC JJ JJ NNS VBP VBN NN IN DT NN TO VB DT NNS IN JJ NNS VBG IN DT JJ NNP .\nTwo days of talks in Bangkok were led by U.S. Deputy Assistant Secretary of Defense Jerry Jennings .\tCD NNS IN NNS IN NNP VBD VBN IN NNP NNP NNP NNP IN NNP NNP NNP .\nThe agreement reached Thursday will mark the 10th consecutive year that U.S. specialists have carried out remains recovery missions in North Korea .\tDT NN VBN NNP MD VB DT JJ JJ NN IN NNP NNS VBP VBN RP VBZ NN NNS IN NNP NNP .\nThe remains of more than 200 soldiers have been recovered since 1996 .\tDT NNS IN JJR IN CD NNS VBP VBN VBN IN CD .\nOf the 88,000 Americans missing from all conflicts , more than 8,100 are from the Korean War .\tIN DT CD NNS VBG IN DT NNS , JJR IN CD VBP IN DT NNP NNP .\nFinancial regulators in the United States have introduced new rules intended to curb a trading strategy that benefits investors when stock prices fall , and that has been blamed for market turmoil .\tNNP NNS IN DT NNP NNPS VBP VBN JJ NNS VBN TO VB DT NN NN WDT VBZ NNS WRB NN NNS VBP , CC DT VBZ VBN VBN IN NN NN .\nNew rules from the U.S. Securities and Exchange Commission that went into effect Thursday restrict certain types of so-called short-selling .\tNNP NNS IN DT NNP NNPS CC NNP NNP WDT VBD IN NN NNP VB JJ NNS IN JJ NN .\nShort-selling occurs when a trader borrows shares in a stock from a broker to sell .\tNN VBZ WRB DT NN VBZ NNS IN DT NN IN DT NN TO VB .\nIf the stock price goes down , the trader buys back more shares at a cheaper price , returns the broker 's portion and keeps the rest .\tIN DT NN NN VBZ RB , DT NN VBZ RB JJR NNS IN DT JJR NN , VBZ DT NN POS NN CC VBZ DT NN .\nRegulators in Great Britain have enacted a temporary ban on short-selling .\tNNS IN NNP NNP VBP VBN DT JJ NN IN NN .\nNew York state 's attorney general , Andrew Cuomo , says he is launching an investigation into instances of illegal short-selling , in which traders or brokers spread FALSE information about the deals .\tNNP NNP NN POS NN NN , NNP NNP , VBZ PRP VBZ VBG DT NN IN NNS IN JJ NN , IN WDT NNS CC NNS VBD JJ NN IN DT NNS .\nAn international human rights group says Kuwaiti should stop arresting and deporting expatriate supporters of Egyptian pro-reform activist and Nobel Peace Prize winner Mohammed ElBaradei .\tDT JJ JJ NNS NN VBZ NNS MD VB VBG CC VBG JJ NNS IN JJ JJ NN CC NNP NNP NNP NN NNP NNP .\nNew York-based Human Rights Watch says Kuwait should release all of the Egyptians still in custody , and allow them and those already deported to return to their homes in Kuwait .\tNNP JJ NNP NNP NNP VBZ NNP MD VB DT IN DT NNS RB IN NN , CC VB PRP CC DT RB VBN TO VB TO PRP$ NNS IN NNP .\nKuwaiti authorities released around 21 Egyptian residents of Kuwait Saturday , and deported them to Egypt .\tJJ NNS VBN IN CD JJ NNS IN NNP NNP , CC VBD PRP TO NNP .\nHuman Rights Watch says some of the Egyptians were detained after they attended a meeting in support of ElBaradei on April 8 .\tNNP NNP NNP VBZ DT IN DT NNS VBD VBN IN PRP VBD DT NN IN NN IN NNP IN NNP CD .\nOthers were detained the next day during a meeting to discuss the arrests .\tNNS VBD VBN DT JJ NN IN DT NN TO VB DT NNS .\nElBaradei , a former chief of the International Atomic Energy Agency , is leading a campaign for political reform in Egypt .\tNNP , DT JJ NN IN DT NNP NNP NNP NNP , VBZ VBG DT NN IN JJ NN IN NNP .\nHe also has expressed a willingness to run against President Hosni Mubarak in an election next year on condition the vote is free and fair .\tPRP RB VBZ VBN DT NN TO VB IN NNP NNP NNP IN DT NN JJ NN IN NN DT NN VBZ JJ CC JJ .\nInsurgents trying to derail Iraq 's January elections have attacked a voter registration center in Dujail , north of Baghdad , killing at least one civilian and wounding several others .\tNNS VBG TO VB NNP POS NNP NNS VBP VBN DT NN NN NN IN NNP , NN IN NNP , VBG IN JJS CD JJ CC VBG JJ NNS .\nAnother attack Saturday in Mosul killed one person and wounded at least six others when a bomb exploded near a U.S. military patrol , but instead hit a passing school bus .\tDT NN NNP IN NNP VBD CD NN CC VBD IN JJS CD NNS WRB DT NN VBD IN DT NNP JJ NN , CC RB VBD DT NN NN NN .\nMeanwhile , an Iraqi militant group claimed responsibility for the murders of two American contractors in an ambush December eighth near Baghdad .\tRB , DT JJ JJ NN VBD NN IN DT NNS IN CD JJ NNS IN DT JJ NNP NN IN NNP .\nJoseph Wemple and Dale Stoffel worked on construction and engineering projects in Iraq .\tNNP NNP CC NNP NNP VBD IN NN CC NN NNS IN NNP .\nAnd Turkey 's foreign ministry has clarified that five Turkish security guards and two Iraqi drivers were killed in an ambush Friday near Mosul .\tCC NNP POS JJ NN VBZ VBN IN CD JJ NN NNS CC CD JJ NNS VBD VBN IN DT JJ NNP IN NNP .\nAn earlier ministry statement did not specify how many were killed , but some news reports had said four guards were killed .\tDT JJR NN NN VBD RB VB WRB JJ VBD VBN , CC DT NN NNS VBD VBN CD NNS VBD VBN .\nIsraeli warplanes have dropped leaflets warning Gaza residents to stay clear of the border , after Palestinian militants fired at least 10 mortar shells at Israel .\tJJ NNS VBP VBN NNS VBG NNP NNS TO VB JJ IN DT NN , IN JJ NNS VBD IN JJS CD NN NNS IN NNP .\nThe leaflets warned residents not to come within 300 meters of the border fence , and to avoid involvement with weapons smugglers along the Gaza-Egypt border .\tDT NNS VBD NNS RB TO VB IN CD NNS IN DT NN NN , CC TO VB NN IN NNS NNS IN DT JJ NN .\nThe Israeli army says some of the mortar shells landed in Israel near the Kerem Shalom crossing with the Gaza Strip .\tDT JJ NN VBZ DT IN DT NN NNS VBD IN NNP IN DT NNP NNP VBG IN DT NNP NNP .\nThere were no reports of casualties or damage .\tEX VBD DT NNS IN NNS CC NN .\nThe development comes one year after Israel carried out a three-week offensive against Hamas militants in Gaza .\tDT NN VBZ CD NN IN NNP VBD RP DT JJ NN IN NNP NNS IN NNP .\nIsrael says the operation was aimed at halting rockets attacks into Israel .\tNNP VBZ DT NN VBD VBN IN VBG NNS NNS IN NNP .\nPalestinian militants have since carried out sporadic rocket and mortar attacks that have provoked Israeli military strikes .\tJJ NNS VBP RB VBN IN JJ NN CC NN NNS WDT VBP VBN JJ JJ NNS .\nAt least 1,300 Palestinians and 13 Israelis were killed in the fighting during Israel 's Gaza offensive .\tIN JJS CD NNS CC CD NNS VBD VBN IN DT NN IN NNP POS NNP NN .\nVenezuela has deployed troops in two opposition-led states , where final results from Sunday 's general election have yet to be released .\tNNP VBZ VBN NNS IN CD JJ NNS , WRB JJ NNS IN NNP POS JJ NN VBP RB TO VB VBN .\nInterior Minister Jesse Chacon says the National Guard troops were sent Tuesday to help prevent violence .\tNNP NNP NNP NNP VBZ DT NNP NNP NNS VBD VBN NNP TO VB VB NN .\nIn Yaracuy , troops surrounded the office of opposition Governor Eduardo Lapi , who vowed not to leave his post until final vote results are issued .\tIN NNP , NNS VBN DT NN IN NN NNP NNP NNP , WP VBD RB TO VB PRP$ NN IN JJ NN NNS VBP VBN .\nHe questioned if the troop deployment was a coup attempt against him .\tPRP VBD IN DT NN NN VBD DT NN NN IN PRP .\nSecurity was also boosted in Carabobo state , where another opposition official , Governor Henrique Salas , is seeking re-election .\tNN VBD RB VBN IN NNP NN , WRB DT NN NN , NNP NNP NNP , VBZ VBG NN .\nMonday , election officials issued results for many regions , showing Mr. Chavez 's party had won 18 of the country 's 22 state governor posts that were being disputed .\tNNP , NN NNS VBD NNS IN JJ NNS , VBG NNP NNP POS NN VBD VBN CD IN DT NN POS CD NN NN NNS WDT VBD VBG VBN .\nOfficials say they plan to release final results in the next two day .\tNNS VBP PRP VBP TO VB JJ NNS IN DT JJ CD NN .\nSome of this information provided by Reuters .\tDT IN DT NN VBN IN NNP .\nThe largest U.S. automaker , General Motors , is getting its fourth new chief executive officer in 18 months , Dan Akerson .\tDT JJS NNP NN , NNP NNPS , VBZ VBG PRP$ JJ JJ JJ NN NN IN CD NNS , NNP NNP .\nHe takes over in September just as GM has posted its second consecutive profitable quarter .\tPRP VBZ RP IN NNP RB IN NNP VBZ VBN PRP$ JJ JJ JJ NN .\nThat is a major turnaround for the company that emerged from bankruptcy with the aid of $ 50 billion in emergency government loans .\tDT VBZ DT JJ NN IN DT NN WDT VBD IN NN IN DT NN IN $ CD CD IN NN NN NNS .\nAkerson is a member of the GM board of directors , but most of his business experience is in running , buying , and selling major telecommunications companies .\tNNP VBZ DT NN IN DT NNP NN IN NNS , CC JJS IN PRP$ NN NN VBZ IN VBG , NN , CC VBG JJ NNS NNS .\nWhile the 61-year-old executive lacks manufacturing experience , analysts say he is well regarded on Wall Street , which will be helpful as the company gets ready to make a major stock offering .\tIN DT JJ NN VBZ VBG NN , NNS VBP PRP VBZ RB VBN IN NNP NNP , WDT MD VB JJ IN DT NN VBZ JJ TO VB DT JJ NN NN .\nDescribed as quiet and private , Akerson is expected to become the face of GM in an industry where the CEO is often required to be the biggest salesman .\tVBN IN JJ CC JJ , NNP VBZ VBN TO VB DT NN IN NNP IN DT NN WRB DT NN VBZ RB VBN TO VB DT JJS NN .\nJapanese Prime Minister Junichiro Koizumi has turned down a request by Peruvian President Alejandro Toledo to meet at the Asia-Pacific Economic Cooperation summit in South Korea .\tJJ NNP NNP NNP NNP VBZ VBN RP DT NN IN JJ NNP NNP NNP TO VB IN DT NNP NNP NNP NN IN NNP NNP .\nJapanese officials say Mr. Koizumi does not have time .\tJJ NNS VBP NNP NNP VBZ RB VB NN .\nRelations between the two countries have soured over former Peruvian President Alberto Fujimori 's recent return to South America .\tNNP IN DT CD NNS VBP VBN IN JJ JJ NNP NNP NNP POS JJ NN TO NNP NNP .\nMr. Fujimori , a Japanese citizen , fled to Japan five years ago in the midst of a corruption scandal .\tNNP NNP , DT JJ NN , VBD TO NNP CD NNS RB IN DT NN IN DT NN NN .\nHe was arrested last week in Chile .\tPRP VBD VBN JJ NN IN NNP .\nIf returned to Peru , he faces charges of corruption and of authorizing death squads .\tIN VBN TO NNP , PRP VBZ NNS IN NN CC IN VBG NN NNS .\nLast week , Peru recalled its ambassador to Japan after a Japanese consular official in Chile visited Mr. Fujimori in jail .\tJJ NN , NNP VBD PRP$ NN TO NNP IN DT JJ JJ NN IN NNP VBD NNP NNP IN NN .\nLima says Tokyo is interfering in Mr. Fujimori 's extradition process , but Tokyo insists it is treating him like any other Japanese citizen .\tNNP VBZ NNP VBZ VBG IN NNP NNP POS NN NN , CC NNP VBZ PRP VBZ VBG PRP IN DT JJ JJ NN .\nPresumed U.S. Republican presidential nominee John McCain says Thursday 's U.S. Supreme Court ruling on detainees at Guantanamo Bay is one of the worst in American history .\tVBN NNP NNP JJ NN NNP NNP VBZ NNP POS NNP NNP NNP NN IN NNS IN NNP NNP VBZ CD IN DT JJS IN JJ NN .\nMcCain said at a town hall meeting Friday in the U.S. state of New Jersey that detainees at Guantanamo are enemy combatants , and thus do not get the same rights as U.S. citizens .\tNNP VBD IN DT NN NN NN NNP IN DT NNP NN IN NNP NNP IN NNS IN NNP VBP NN NNS , CC RB VBP RB VB DT JJ NNS IN NNP NNS .\nHe said the ruling will lead to many lawsuits against the government .\tPRP VBD DT NN MD VB TO JJ NNS IN DT NN .\nMcCain 's Democratic rival , Barack Obama , praised the Supreme Court ruling .\tNNP POS JJ NN , NNP NNP , VBD DT NNP NNP NN .\nIn a statement after the ruling was announced , he said the decision ensures that U.S. officials can protect the country and bring terrorists to justice , while also protecting core American values .\tIN DT NN IN DT NN VBD VBN , PRP VBD DT NN VBZ IN NNP NNS MD VB DT NN CC VB NNS TO NN , IN RB VBG JJ JJ NNS .\nObama also said the ruling is an important step toward re-establishing the credibility of the United States as a nation committed to the rule of law .\tNNP RB VBD DT NN VBZ DT JJ NN IN VBG DT NN IN DT NNP NNPS IN DT NN VBN TO DT NN IN NN .\nAfghan officials say a suicide bomber killed a police officer in eastern Khost province .\tJJ NNS VBP DT NN NN VBD DT NN NN IN JJ NNP NN .\nAuthorities say Friday 's blast wounded 15 other people , including eight civilians outside police headquarters in Khost .\tNNS VBP NNP POS NN VBD CD JJ NNS , VBG CD NNS IN NN NN IN NNP .\nThe Taleban claimed responsibility for the blast .\tDT NNP VBD NN IN DT NN .\nHours later , a second bomber blew himself up at a checkpoint in Khost .\tNNS RB , DT JJ NN VBD PRP RP IN DT NN IN NNP .\nThat explosion wounded the driver of a taxi the bomber in which the bomber was riding .\tDT NN VBD DT NN IN DT NN DT NN IN WDT DT NN VBD VBG .\nThere has been no initial claim of responsibility for the attack .\tEX VBZ VBN DT JJ NN IN NN IN DT NN .\nFrequent suicide attacks blamed on Taleban militants have killed Afghan police and troops during the past year .\tJJ NN NNS VBN IN NNP NNS VBP VBN JJ NNS CC NNS IN DT JJ NN .\nPresident Bush says Taliban militants in Afghanistan were hit hard last year during military operations by U.S. , Afghan and NATO troops .\tNNP NNP VBZ NNP NNS IN NNP VBD VBN RB JJ NN IN JJ NNS IN NNP , JJ CC NNP NNS .\nDuring a news conference Thursday , Mr. Bush said troops were on the offensive against a resurgent and increasingly violent Taliban movement .\tIN DT NN NN NNP , NNP NNP VBD NNS VBD IN DT NN IN DT JJ CC RB JJ NNP NN .\nHowever , the president also said it makes sense to review U.S. strategy in Afghanistan to figure out what works and what does not .\tRB , DT NN RB VBD PRP VBZ NN TO VB NNP NN IN NNP TO VB RP WP VBZ CC WP VBZ RB .\nThis week , the U.S. military said it is going to assess coalition strategy in Afghanistan in the wake of rising Taliban attacks .\tDT NN , DT NNP NN VBD PRP VBZ VBG TO VB NN NN IN NNP IN DT NN IN VBG NNP NNS .\nMr. Bush expressed concern that NATO allies might tire of what he called the hard work of securing Afghanistan and may want to withdraw .\tNNP NNP VBD NN IN NNP NNS MD VB RP WP PRP VBD DT JJ NN IN VBG NNP CC MD VB TO VB .\nHe said the U.S. objective is to give them options - other than combat missions - in Afghanistan and to remind NATO allies that the job of securing the strife-torn country will take time .\tPRP VBD DT NNP NN VBZ TO VB PRP NNS IN JJ IN NN NNS : IN NNP CC TO VB NNP NNS IN DT NN IN VBG DT JJ NN MD VB NN .\nU.S. President Barack Obama called India a critical partner during talks with Prime Minister Manmohan Singh at the G-20 summit in London .\tNNP NNP NNP NNP VBD NNP DT JJ NN IN NNS IN NNP NNP NNP NNP IN DT NNP NN IN NNP .\nThe leaders of the world 's two largest democracies affirmed their nations ' enduring friendship when they met for the first time Thursday .\tDT NNS IN DT NN POS CD JJS NNS VBD PRP$ NNS POS VBG NN WRB PRP VBD IN DT JJ NN NNP .\nMr. Obama called India a global power that will be helpful in dealing with climate change , poverty , science and innovation .\tNNP NNP VBD NNP DT JJ NN WDT MD VB JJ IN VBG IN NN NN , NN , NN CC NN .\nThe Indian prime minister called Mr. Obama a visionary leader who has given hope to all of ' the oppressed people ' of the world .\tDT JJ JJ NN VBD NNP NNP DT JJ NN WP VBZ VBN NN TO DT IN `` DT JJ NNS `` IN DT NN .\nMr. Singh said India is ready to chart a new path of collaboration in diverse fields , including the challenges of terrorism .\tNNP NNP VBD NNP VBZ JJ TO VB DT JJ NN IN NN IN JJ NNS , VBG DT NNS IN NN .\nThe Obama administration has said defeating Islamic extremism in South Asia requires a comprehensive , regional approach .\tDT NNP NN VBZ VBN VBG NNP NN IN NNP NNP VBZ DT JJ , JJ NN .\nCuba 's top diplomat in the United States says ailing President Fidel Castro will soon return to power .\tNNP POS JJ NN IN DT NNP NNP VBZ VBG NNP NNP NNP MD RB VB TO NN .\nDagoberto Rodriguez told reporters Tuesday that Mr. Castro 's health has been improving daily and that he will soon assume his responsibilities again as president .\tNNP NNP VBD NNS NNP IN NNP NNP POS NN VBZ VBN VBG JJ CC IN PRP MD RB VB PRP$ NNS RB IN NN .\nCastro ceded power to his brother Raul Castro at the end of July after undergoing intestinal surgery .\tNNP VBD NN TO PRP$ NN NNP NNP IN DT NN IN NNP IN VBG JJ NN .\nSince the surgery , Cuban officials have stated frequently that Mr. Castro was doing well as speculation swirled that his condition was worsening .\tIN DT NN , JJ NNS VBP VBN RB IN NNP NNP VBD VBG RB IN NN VBD IN PRP$ NN VBD VBG .\nEarlier this month , Raul Castro said his 80 year old brother was ' not dying . '\tRBR DT NN , NNP NNP VBD PRP$ CD NN JJ NN VBD `` RB VBG . ``\nA key Israeli ultra-Orthodox religious party has agreed to join forces with Prime Minister Ariel Sharon , clearing the way for a unity government needed to push through Israel 's planned withdrawal from the Gaza Strip .\tDT JJ JJ JJ JJ NN VBZ VBN TO VB NNS IN JJ NN NNP NNP , VBG DT NN IN DT NN NN VBN TO VB IN NNP POS VBN NN IN DT NNP NNP .\nMr. Sharon 's Likud coalition lost its parliamentary majority last year , when some right-wing parties opposed to the Gaza withdrawal quit the government .\tNNP NNP POS NNP NN VBD PRP$ JJ NN JJ NN , WRB DT JJ NNS VBN TO DT NNP NN VBD DT NN .\nWednesday 's decision by the United Torah Judaism party to join with Mr. Sharon gives the Israeli leader at least 66 votes in the 120-member Knesset .\tNNP POS NN IN DT NNP NNP NNP NN TO VB IN NNP NNP VBZ DT JJ NN IN JJS CD NNS IN DT JJ NNP .\nLast week , the opposition Labor party also agreed to join the coalition .\tJJ NN , DT NN NN NN RB VBD TO VB DT NN .\nHours after the United Torah decision , the prime minister said he expects to present parliament with a national unity government by next week .\tNNS IN DT NNP NNP NN , DT JJ NN VBD PRP VBZ TO VB NN IN DT JJ NN NN IN JJ NN .\nThe withdrawal of 8,200 Israeli settlers from Gaza and four small West Bank enclaves is set to begin later this year .\tDT NN IN CD JJ NNS IN NNP CC CD JJ NNP NNP NNS VBZ VBN TO VB RB DT NN .\nVenezuelan authorities have said they will redistribute more than 1,10,000 hectares of privately-held property to landless farmers .\tJJ NNS VBP VBN PRP MD VB JJR IN CD NNS IN JJ NN TO JJ NNS .\nThe land seizure is part of an agrarian reform effort led by President Hugo Chavez .\tDT NN NN VBZ NN IN DT JJ NN NN VBN IN NNP NNP NNP .\nSince his 1998 election , President Chavez has enacted controversial reform laws , including a 2001 land law aimed at narrowing the gap between Venezuela 's rich and poor .\tIN PRP$ CD NN , NNP NNP VBZ VBN JJ NN NNS , VBG DT CD NN NN VBN IN VBG DT NN IN NNP POS NN CC NN .\nThe law allows the government to redistribute unused land to the poor .\tDT NN VBZ DT NN TO VB JJ NN TO DT NN .\nCritics say the law violates property rights , and could lead to illegal land grabs .\tNNS VBP DT NN VBZ NN NNS , CC MD VB TO JJ NN NNS .\nOne of four estates to be redistributed includes a 13,000 hectare cattle ranch owned by a British company .\tCD IN CD NNS TO VB VBN VBZ DT CD NN NNS NN VBN IN DT JJ NN .\nThe company has said it legally owns the property , and that the land is fully productive .\tDT NN VBZ VBN PRP RB VBZ DT NN , CC IN DT NN VBZ RB JJ .\nWitnesses say an explosion has killed at least five soldiers in the Somali capital , Mogadishu .\tNNS VBP DT NN VBZ VBN IN JJS CD NNS IN DT JJ NN , NNP .\nResidents say they saw the bodies of three Ethiopian and two Somali government soldiers lying in the street after the attack Tuesday .\tNNS VBP PRP VBD DT NNS IN CD JJ CC CD JJ NN NNS VBG IN DT NN IN DT NN NNP .\nThe witnesses say Ethiopian troops opened fire after the blast .\tDT NNS VBP JJ NNS VBD NN IN DT NN .\nThere has been no word on additional casualties .\tEX VBZ VBN DT NN IN JJ NNS .\nIslamist insurgents launch almost-daily attacks on Somali government forces and allied Ethiopian troops .\tNNP NNS VBP RB NNS IN JJ NN NNS CC JJ JJ NNS .\nMore than a year of fighting has killed thousands of Somalis and displaced hundreds of thousands more , mostly from Mogadishu .\tJJR IN DT NN IN NN VBZ VBN NNS IN NNS CC VBD NNS IN NNS RBR , RB IN NNP .\nU.N.-sponsored peace talks in Djibouti last week ended with no progress toward an agreement .\tJJ NN NNS IN NNP JJ NN VBD IN DT NN IN DT NN .\nEthiopian troops entered Somalia in 2006 to help the government oust an Islamist movement that had seized power in Mogadishu and other cities .\tJJ NNS VBD NNP IN CD TO VB DT NN VB DT JJ NN WDT VBD VBN NN IN NNP CC JJ NNS .\nSomalia has endured more than 17 years of chaos and conflict since the fall of the country 's last stable government in 1991 .\tNNP VBZ VBN JJR IN CD NNS IN NN CC NN IN DT NN IN DT NN POS JJ JJ NN IN CD .\nThe government of Kenya says it has targeted thieves , not political opponents , in a corruption investigation that has caused three cabinet ministers to resign their posts .\tDT NN IN NNP VBZ PRP VBZ VBN NNS , RB JJ NNS , IN DT NN NN WDT VBZ VBN CD NN NNS TO VB PRP$ NNS .\nGovernment spokesman Alfred Mutua said Sunday some have accused the government of witch-hunting , but Mutua said the government will not discriminate in its effort to bring thieves to justice .\tNNP NN NNP NNP VBD NNP DT VBP VBN DT NN IN NN , CC NNP VBD DT NN MD RB VB IN PRP$ NN TO VB NNS TO NN .\nMutua told reporters the signs of corruption were all around , citing holes in recently built roads .\tNNP VBD NNS DT NNS IN NN VBD DT RB , VBG NNS IN RB VBN NNS .\nHe said those involved in what he called ' shoddy deals ' would be held accountable .\tPRP VBD DT VBN IN WP PRP VBD `` JJ NNS `` MD VB VBN JJ .\nOn Friday , thousands of protesters took to the streets of Nairobi , demanding the resignations of Vice President Moody Awori and civil service chief Francis Muthaura .\tIN NNP , NNS IN NNS VBD TO DT NNS IN NNP , VBG DT NNS IN NNP NNP NNP NNP CC JJ NN NN NNP NNP .\nTheir names have been mentioned in connection with a multi-million dollar scandal known as the ' Anglo Leasing ' affair .\tPRP$ NNS VBP VBN VBN IN NN IN DT JJ NN NN VBN IN DT `` NNP VBG `` NN .\nAsian stock markets opened dramatically higher Monday morning , rebounding from last week 's losses .\tJJ NN NNS VBD RB JJR NNP NN , VBG IN JJ NN POS NNS .\nJapan 's Nikkei 225 Stock Average and South Korea 's Kospi Index each rose more than three percent early in the trading session , and Taiwan 's main stock index was up by four percent after 15 minutes of trading .\tNNP POS NNP CD NNP NNP CC NNP NNP POS NNP NNP DT VBD JJR IN CD NN RB IN DT NN NN , CC NNP POS JJ NN NN VBD RB IN CD NN IN CD NNS IN NN .\nU.S. and European stocks rebounded Friday immediately after the U.S. Federal Reserve cut the interest rate it charges on short-term loans to large commercial banks .\tNNP CC JJ NNS VBD NNP RB IN DT NNP NNP NNP VBD DT NN NN PRP VBZ IN JJ NNS TO JJ JJ NNS .\nToday was the first trading opportunity since then for Asian investors , whose stock holdings had suffered big losses through most of last week .\tNN VBD DT JJ NN NN IN RB IN JJ NNS , WP$ NN NNS VBD VBN JJ NNS IN JJS IN JJ NN .\nThe U.S. central bank 's interest-rate cut was intended to buffer the impact on world financial markets of a housing-loan crisis in the United States .\tDT NNP JJ NN POS NN NN VBD VBN TO VB DT NN IN NN JJ NNS IN DT JJ NN IN DT NNP NNPS .\nAnalysts say the Federal Reserve appears to have succeeded in easing investors ' fears that a credit crisis could hurt economic growth and profits .\tNNS VBP DT NNP NNP VBZ TO VB VBN IN VBG NNS POS NNS IN DT NN NN MD VB JJ NN CC NNS .\nAfrican Union officials say rebels in Sudan 's troubled Darfur region have released most of the 18 kidnapped AU workers following negotiations .\tNNP NNP NNS VBP NNS IN NNP POS JJ NNP NN VBP VBN JJS IN DT CD VBN NNP NNS VBG NNS .\nThe workers were taken Sunday in the town of Tine on the Chad-Sudan border .\tDT NNS VBD VBN NNP IN DT NN IN NNP IN DT JJ NN .\nOfficials say the 18 included military observers and civilian police , and an official from a Darfur rebel group , the Justice and Equality Movement .\tNNS VBP DT CD VBD JJ NNS CC JJ NN , CC DT NN IN DT NNP NN NN , DT NNP CC NNP NNP .\nAfrican Union spokesman Noureddine Mezni says it is unclear how many of the hostages were released .\tNNP NNP NN NNP NNP VBZ PRP VBZ JJ WRB JJ IN DT NNS VBD VBN .\nAU officials say the kidnappers are believed to be from a dissident faction of the Justice and Equality Movement .\tNNP NNS VBP DT NNS VBP VBN TO VB IN DT JJ NN IN DT NNP CC NNP NNP .\nMore than six-thousand African Union peacekeepers are in Darfur to monitor a cease-fire between pro-government forces and non-Arab rebels .\tJJR IN JJ NNP NNP NNS VBP IN NNP TO VB DT NN IN JJ NNS CC JJ NNS .\nTwo AU peacekeepers from Nigeria and two civilian contractors were killed Saturday in an ambush the AU blamed on the main Darfur rebel group , the Sudan Liberation Army .\tCD NNP NNS IN NNP CC CD JJ NNS VBD VBN NNP IN DT JJ DT NNP VBD IN DT JJ NNP NN NN , DT NNP NNP NNP .\nA third peacekeeper died Sunday from wounds .\tDT JJ NN VBD NNP IN NNS .\nNATO and Afghan officials say more than 90 insurgents have been killed during heavy fighting in southern Afghanistan .\tNNP CC JJ NNS VBP JJR IN CD NNS VBP VBN VBN IN JJ NN IN JJ NNP .\nThe officials say at least 78 insurgents were killed Saturday as coalition forces repelled an attack on a NATO outpost in southeastern Paktika province .\tDT NNS VBP IN JJS CD NNS VBD VBN NNP IN NN NNS VBD DT NN IN DT NNP NN IN JJ NNP NN .\nFive NATO troops were injured in the fighting .\tCD NNP NNS VBD VBN IN DT NN .\nThe NATO-led International Security Assistance Force says troops called in airstrikes that helped beat back the assault .\tDT JJ NNP NNP NNP NNP VBZ NNS VBN IN NNS WDT VBD VB RP DT NN .\nIn a separate incident , an Afghan official says NATO and Afghan forces killed 17 insurgents during an operation in Helmand province Saturday .\tIN DT JJ NN , DT JJ NN VBZ NNP CC JJ NNS VBD CD NNS IN DT NN IN NNP NN NNP .\nA provincial government spokesman says the fighting the Deshu district lasted about 12 hours .\tDT JJ NN NN VBZ DT VBG DT NNP NN VBD RB CD NNS .\nAlso , NATO says a senior Taliban leader , Mullah Abdullah Kakar , was killed during an airstrike in southern Zabul province on Thursday .\tRB , NNP VBZ DT JJ NNP NN , NNP NNP NNP , VBD VBN IN DT NN IN JJ NNP NN IN NNP .\nTuesday has been a lucky day for the official U.S. national Thanksgiving turkey and its alternate .\tNNP VBZ VBN DT JJ NN IN DT JJ NNP JJ NNP NN CC PRP$ NN .\nPresident Bush gave the national turkey , whose name is Marshmallow , and its alternate , Yam , the traditional Thanksgiving pardon in a ceremony at the White House .\tNNP NNP VBD DT JJ NN , WP$ NN VBZ NNP , CC PRP$ NN , NNP , DT JJ NNP NN IN DT NN IN DT NNP NNP .\nThe two turkeys will be flown to Disneyland in California to be part of the holiday display , and will also serve as honorary grand marshals for Disneyland 's Thanksgiving Day parade on Thursday .\tDT CD NNS MD VB VBN TO VB IN NNP TO VB NN IN DT NN NN , CC MD RB VB IN JJ JJ NNS IN NNP POS NNP NNP NN IN NNP .\nThey will spend the rest of their lives at a Disneyland ranch .\tPRP MD VB DT NN IN PRP$ NNS IN DT NNP NN .\nFor the past 15 years , the national Thanksgiving turkey and its alternate have been retired to a farm just outside Washington , DC in Virginia .\tIN DT JJ CD NNS , DT JJ NNP NN CC PRP$ NN VBP VBN VBN TO DT NN RB IN NNP , NNP IN NNP .\nOn the Thursday Thanksgiving Day holiday , millions of Americans traditionally enjoy a roasted turkey meal , which often includes yams with marshmallows .\tIN DT NNP NNP NNP NN , NNS IN NNS RB VBP DT JJ NN NN , WDT RB VBZ NNS IN NNS .\nThe Communist Party of the Philippines says it has directed its armed unit , the New People 's Army , to go on an offensive nationwide .\tDT NNP NNP IN DT NNP VBZ PRP VBZ VBN PRP$ JJ NN , DT NNP NNP POS NNP , TO VB IN DT JJ NN .\nIn a statement issued Sunday , the CPP also said it would consider forming an alliance with any of the parties seeking to oust President Gloria Macapagal Arroyo from power .\tIN DT NN VBN NNP , DT NNP RB VBD PRP MD VB VBG DT NN IN DT IN DT NNS VBG TO VB NNP NNP NNP NNP IN NN .\nThe CPP said its list of potential allies include disgruntled military and police units and conservative political parties .\tDT NNP VBD PRP$ NN IN JJ NNS VBP JJ NN CC NN NNS CC JJ JJ NNS .\nOn Friday , President Arroyo declared that government troops would observe four days of unilateral cease-fire with communist rebels to mark the Christian holiday season .\tIN NNP , NNP NNP VBD IN NN NNS MD VB CD NNS IN JJ NN IN JJ NNS TO VB DT JJ NN NN .\nThe days of the cease-fire are Christmas Eve , Christmas Day , New Year 's Eve and New Year 's Day .\tDT NNS IN DT NN VBP NNP NNP , NNP NNP , NNP NNP POS NNP CC NNP NNP POS NN .\nThe government and communist rebels have been engaged in armed conflict for more than 40 years .\tDT NN CC JJ NNS VBP VBN VBN IN JJ NN IN JJR IN CD NNS .\nTurkey 's military says troops killed four Kurdish guerrillas in operations Friday night near the border with northern Iraq .\tNNP POS JJ VBZ NNS VBD CD JJ NNS IN NNS NNP NN IN DT NN IN JJ NNP .\nMilitary authorities said Saturday the clash occurred in southeastern Hakkari province .\tJJ NNS VBD NNP DT NN VBD IN JJ NNP NN .\nThe banned Kurdistan Workers ' Party ( PKK ) has been fighting for autonomy for ethnic Kurds in Turkey 's southeast since 1984 .\tDT VBN NNP NNP POS NNP LRB NNP RRB VBZ VBN VBG IN NN IN JJ NNS IN NNP POS NN IN CD .\nMore than 30,000 people have been killed in the conflict .\tJJR IN CD NNS VBP VBN VBN IN DT NN .\nAuthorities in Haiti have killed at least one person during a protest by supporters of ousted former President Jean-Bertrand Aristide .\tNNS IN NNP VBP VBN IN JJS CD NN IN DT NN IN NNS IN JJ JJ NNP NNP NNP .\nThousands of protesters marched in the Bel-air section of Port-au-Prince to demand the return Mr. Aristide , who has been in exile in South Africa since last February .\tNNS IN NNS VBD IN DT JJ NN IN NNP TO VB DT NN NNP NNP , WP VBZ VBN IN NN IN NNP NNP IN JJ NNP .\nAuthorities opened fire on the crowd as they entered an intersection in Bel-air .\tNNS VBD NN IN DT NN IN PRP VBD DT NN IN NNP .\nFew other details were given .\tJJ JJ NNS VBD VBN .\nViolence in Port-au-Prince 's pro-Aristide slums has killed more than 200 people in the last four months .\tNN IN NNP POS JJ NNS VBZ VBN JJR IN CD NNS IN DT JJ CD NNS .\nPhilippine President Benigno Aquino has launched his first executive order , creating a truth commission to investigate possible corruption by the administration of former President Gloria Arroyo .\tJJ NNP NNP NNP VBZ VBN PRP$ JJ NN NN , VBG DT NN NN TO VB JJ NN IN DT NN IN JJ NNP NNP NNP .\nMr. Aquino announced the order Friday , saying the move would bring ' necessary closure to allegations of official wrongdoing and impunity . '\tNNP NNP VBD DT NN NNP , VBG DT NN MD VB `` JJ NN TO NNS IN JJ NN CC NN . ``\nThe commission will probe allegations of corruption in a deal with a Chinese company to provide broadband Internet access in the Philippines , among other questions .\tDT NN MD VB NNS IN NN IN DT NN IN DT JJ NN TO VB JJ NN NN IN DT NNPS , IN JJ NNS .\nThe commission has until the end of 2012 to finish its investigation .\tDT NN VBZ IN DT NN IN CD TO VB PRP$ NN .\nMr. Aquino campaigned for the presidency on an anti-corruption platform .\tNNP NNP VBD IN DT NN IN DT JJ NN .\nFormer Supreme Court Chief Justice Hilario Davide has been selected to head the commission .\tJJ NNP NNP NNP NNP NNP NNP VBZ VBN VBN TO VB DT NN .\nVenezuelan President Hugo Chavez has replaced his vice president and justice minister just days before he is inaugurated for a second term .\tJJ NNP NNP NNP VBZ VBN PRP$ NN NN CC NN NN RB NNS IN PRP VBZ VBN IN DT JJ NN .\nMr. Chavez said in a television interview late Wednesday that the decision to replace Vice President Jose Vicente Rangel was not easy because he regards Rangel as a ' star pitcher , ' as in a baseball game , and respects him like a father .\tNNP NNP VBD IN DT NN NN JJ NNP IN DT NN TO VB NNP NNP NNP NNP NNP VBD RB JJ IN PRP VBZ NNP IN DT `` NN NN , `` IN IN DT NN NN , CC VBZ PRP IN DT NN .\nIn talking about the replacement of Justice Minister Jesse Chacon , Chavez alluded to a recent rise in crime and prison violence in Venezuela .\tIN VBG IN DT NN IN NNP NNP NNP NNP , NNP VBD TO DT JJ NN IN NN CC NN NN IN NNP .\nPsychiatrist and politician Jorge Rodriguez will become Venezuela 's new vice president , and parliamentary deputy Pedro Carreno will be the new justice minister .\tNN CC NN NNP NNP MD VB NNP POS JJ NN NN , CC JJ NN NNP NNP MD VB DT JJ NN NN .\nMr. Chavez will be inaugurated for a second six-year term on January 10 .\tNNP NNP MD VB VBN IN DT JJ JJ NN IN NNP CD .\nMr. Chavez has said he hopes to merge all the political parties supporting him into one party .\tNNP NNP VBZ VBN PRP VBZ TO VB PDT DT JJ NNS VBG PRP IN CD NN .\nHe also wants to re-write the constitution .\tPRP RB VBZ TO VB DT NN .\nIndonesia 's Health Ministry says a 12-year-old boy has died of bird-flu .\tNNP POS NNP NNP VBZ DT JJ NN VBZ VBN IN NN .\nOfficials say the boy , who had tested positive for the H5N1 strain of the virus , died Saturday in a hospital in Tangerang .\tNNS VBP DT NN , WP VBD VBN JJ IN DT NNP NN IN DT NN , VBD NNP IN DT NN IN NNP .\nIf confirmed by the World Health Organization ( WHO ) , it would bring to 88 the number of people who have died from the virus in Indonesia .\tIN VBN IN DT NNP NNP NNP LRB NNP RRB , PRP MD VB TO CD DT NN IN NNS WP VBP VBN IN DT NN IN NNP .\nMore than 200 people worldwide have died from bird flu since the outbreak began in 2003 , mostly in Asian nations .\tJJR IN CD NNS JJ VBP VBN IN NN NN IN DT NN VBD IN CD , RB IN JJ NNS .\nIndonesia has been sharply criticized for being slow to act in its fight to control bird flu , which has spread easily in a nation where many people keep chickens and other birds in their backyards and homes .\tNNP VBZ VBN RB VBN IN VBG JJ TO VB IN PRP$ NN TO VB NN NN , WDT VBZ VBN RB IN DT NN WRB JJ NNS VBP NNS CC JJ NNS IN PRP$ NNS CC NNS .\nBird flu is usually transmitted directly from infected birds .\tNN NN VBZ RB JJ RB IN JJ NNS .\nHowever , experts fear the virus could mutate into a form easily transmissible by human-to-human contact .\tRB , NNS VBP DT NN MD VB IN DT NN RB JJ IN JJ NN .\nThe U.S. Treasury Department has taken action against three Saudi Arabian nationals suspected of raising money for terrorists .\tDT NNP NNP NNP VBZ VBN NN IN CD JJ JJ NNS VBN IN VBG NN IN NNS .\nThe three men , identified as Abdul Rahim al-Talhi , Muhammad Abdallah Salih Sughayr and Fahd Muhammad Abd Al-Aziz Al-Khashiban are accused of providing support to the al-Qaida-linked Abu Sayyaf Group , responsible for a string of bombings and kidnappings in Southeast Asia .\tDT CD NNS , VBN IN NNP NNP NNP , NNP NNP NNP NNP CC NNP NNP NNP NNP NNP VBP VBN IN VBG NN TO DT JJ NNP NNP NNP , JJ IN DT NN IN NNS CC NNS IN NNP NNP .\nTreasury department official , Stuart Levey , Under Secretary for Terrorism and Financial Intelligence says it is important to hold the men publicly responsible to deter other would-be donors .\tNNP NN NN , NNP NNP , IN NNP IN NNP CC NNP NNP VBZ PRP VBZ JJ TO VB DT NNS RB JJ TO VB JJ JJ NNS .\nWednesday 's action freezes assets belonging to the men .\tNNP POS NN VBZ NNS VBG TO DT NNS .\nIt also forbids U.S. citizens from doing business with them .\tPRP RB VBZ NNP NNS IN VBG NN IN PRP .\nVenezuela 's vice president says military officials at the U.S. embassy in Caracas helped pass state secrets to the Pentagon .\tNNP POS NN NN VBZ JJ NNS IN DT NNP NN IN NNP VBD VB NN NNS TO DT NNP .\nJose Vicente Rangel told reporters Friday that the Venezuelan government has confidential information proving the U.S. officials ' involvement .\tNNP NNP NNP VBD NNS NNP IN DT JJ NN VBZ JJ NN VBG DT NNP NNS POS NN .\nHe also alleged that embassy officials were involved in a brief coup against President Hugo Chavez in 2002 .\tPRP RB VBD IN NN NNS VBD VBN IN DT JJ NN IN NNP NNP NNP IN CD .\nU.S. officials have long denied that charge .\tNNP NNS VBP RB VBN IN NN .\nRangel first said on Wednesday that some low-level Venezuelan officials , both active and retired navy officers , had been caught passing information to the Pentagon .\tNNP RB VBD IN NNP IN DT JJ JJ NNS , DT JJ CC JJ NN NNS , VBD VBN VBN VBG NN TO DT NNP .\nThe U.S. ambassador in Caracas , William Brownfield , said he has not been contacted by the Venezuelan government about the matter .\tDT NNP NN IN NNP , NNP NNP , VBD PRP VBZ RB VBN VBN IN DT JJ NN IN DT NN .\nHe said on Venezuelan television Thursday that when Caracas presents the United States with a statement , he will respond .\tPRP VBD IN JJ NN NNP IN WRB NNP VBZ DT NNP NNPS IN DT NN , PRP MD VB .\nNorth Korea is criticizing the United States for keeping it on a list of nations that support terrorism .\tNNP NNP VBZ VBG DT NNP NNPS IN VBG PRP IN DT NN IN NNS WDT VBP NN .\nAn annual U.S. State Department report on state-sponsored terrorism issued last month said North Korea is among several nations that maintain ties to terrorists .\tDT JJ NNP NNP NNP NN IN JJ NN VBN JJ NN VBD NNP NNP VBZ IN JJ NNS WDT VBP NNS TO NNS .\nPyongyang 's state-run news agency says the report proves the Bush Administration is frantic to overthrow the government of North Korea , and called the United States the kingpin of state-sponsored terrorism .\tNNP POS JJ NN NN VBZ DT NN VBZ DT NNP NN VBZ JJ TO VB DT NN IN NNP NNP , CC VBD DT NNP NNPS DT NN IN JJ NN .\nA South Korean newspaper , Chosun Ilbo , said Tuesday that U.S. spy satellites have spotted activity that could mean North Korea is preparing for a nuclear test .\tDT JJ JJ NN , NNP NNP , VBD NNP IN NNP NN NNS VBP VBN NN WDT MD VB NNP NNP VBZ VBG IN DT JJ NN .\nHowever , South Korean officials are denying the report .\tRB , JJ JJ NNS VBP VBG DT NN .\nMonday U.S. Secretary of State Condoleezza Rice said there should be no doubt about the United States ' ability to deter a North Korean nuclear threat .\tNNP NNP NNP IN NNP NNP NNP VBD EX MD VB DT NN IN DT NNP NNPS POS NN TO VB DT JJ JJ JJ NN .\nSaudi Arabia 's King Abdullah has issued new rules regarding political succession in the country .\tNNP NNP POS NNP NNP VBZ VBN JJ NNS VBG JJ NN IN DT NN .\nThe rules issued Monday outline who can become members of the Allegiance Commission , the body established last year to vote on future kings .\tDT NNS VBD NNP NN WP MD VB NNS IN DT NNP NNP , DT NN VBN JJ NN TO VB IN JJ NNS .\nThe order also details what should be done if a member dies and how a crown prince should be chosen .\tDT NN RB NNS WP MD VB VBN IN DT NN VBZ CC WRB DT NN NN MD VB VBN .\nSaudi Arabia was founded in 1932 by the Saud family .\tNNP NNP VBD VBN IN CD IN DT NNP NN .\nThe country 's current leader , King Abdullah , came to power in 2005 .\tDT NN POS JJ NN , NNP NNP , VBD TO NN IN CD .\nSaudi rule has traditionally been passed down to the sons of Abdul Aziz bin Saud , the founder of the Islamic kingdom .\tJJ NN VBZ RB VBN VBN RP TO DT NNS IN NNP NNP NNP NNP , DT NN IN DT NNP NN .\nPalestinian factions have agreed to extend an open-ended truce with Israel in exchange for a halt to Israeli attacks and the release of prisoners .\tJJ NNS VBP VBN TO VB DT JJ NN IN NNP IN NN IN DT NN TO JJ NNS CC DT NN IN NNS .\nThe Palestinian groups made the decision Thursday , following a meeting with Palestinian leader Mahmoud Abbas in Cairo , Egypt .\tDT JJ NNS VBD DT NN NNP , VBG DT NN IN JJ NN NNP NNP IN NNP , NNP .\nIn a statement , the groups said continuation of the cease-fire depends on Israel 's commitment to halt all assaults against Palestinians .\tIN DT NN , DT NNS VBD NN IN DT NN VBZ IN NNP POS NN TO VB DT NNS IN NNS .\nMr. Abbas and Israeli Prime Minister Ariel Sharon declared a cease-fire at a February 8 summit meeting in Egypt .\tNNP NNP CC JJ NNP NNP NNP NNP VBD DT NN IN DT NNP CD NN NN IN NNP .\nMr. Abbas met with Palestinian militants in Cairo to persuade them to join the cease-fire .\tNNP NNP VBD IN JJ NNS IN NNP TO VB PRP TO VB DT NN .\nIsraeli Prime Minister Ariel Sharon says Palestinians must disarm and dismantle the militant groups , in addition to agreeing to a cease-fire .\tJJ NNP NNP NNP NNP VBZ NNS MD VB CC VB DT JJ NNS , IN NN TO VBG TO DT NN .\nRussia 's Foreign Minister Sergei Lavrov is scheduled to meet later Tuesday in Washington with President Bush and Secretary of State Condoleezza Rice .\tNNP POS NNP NNP NNP NNP VBZ VBN TO VB RB NNP IN NNP IN NNP NNP CC NNP IN NNP NNP NNP .\nAmong other issues , Lavrov is expected to discuss Russia 's attempt to negotiate a compromise on the Iranian nuclear situation .\tIN JJ NNS , NNP VBZ VBN TO VB NNP POS NN TO VB DT NN IN DT JJ JJ NN .\nMeanwhile , the influential Council on Foreign Relations has released a report saying U.S.-Russian relations are heading in the wrong direction .\tRB , DT JJ NNP IN NNP NNP VBZ VBN DT NN VBG JJ NNS VBP VBG IN DT JJ NN .\nThe foreign policy organization says Russia is trying to curtail U.S. and NATO access to Central Asian military bases .\tDT JJ NN NN VBZ NNP VBZ VBG TO VB NNP CC NNP NN TO NNP NNP JJ NNS .\nIt also accuses Russia of using energy supplies as a political weapon , and says Russian political institutions are becoming corrupt .\tPRP RB VBZ NNP IN VBG NN NNS IN DT JJ NN , CC VBZ JJ JJ NNS VBP VBG JJ .\nThe head of the independent task force that wrote the report later said Russia could be thrown out of the G-8 if it does not cooperate on major world problems .\tDT NN IN DT JJ NN NN WDT VBD DT NN RB VBD NNP MD VB VBN IN IN DT NNP IN PRP VBZ RB VB IN JJ NN NNS .\nThe G-8 comprises Britain , Canada , France , Germany , Italy , Japan , the United States and Russia .\tDT NNP VBZ NNP , NNP , NNP , NNP , NNP , NNP , DT NNP NNPS CC NNP .\nA Nigerian official says two children suspected of having the deadly bird flu virus are healthy and were probably never infected .\tDT JJ NN VBZ CD NNS VBN IN VBG DT JJ NN NN NN VBP JJ CC VBD RB RB VBN .\nA Kuduna state health official , Abdulhamid Abubakar , said Tuesday that the two boys have recovered after being treated for a fever and a cough .\tDT NNP NN NN NN , NNP NNP , VBD NNP IN DT CD NNS VBP VBN IN VBG VBN IN DT NN CC DT NN .\nOfficials are still awaiting test results to see if the boys were infected with the H5N1 bird flu strain , which can be deadly to humans .\tNNS VBP RB VBG NN NNS TO VB IN DT NNS VBD VBN IN DT NNP NN NN NN , WDT MD VB JJ TO NNS .\nNigerian authorities are on high alert for any outbreaks after the virus was discovered on four bird farms in northern Nigeria last week .\tJJ NNS VBP IN JJ NN IN DT NNS IN DT NN VBD VBN IN CD NN NNS IN JJ NNP JJ NN .\nHowever , an official with the United Nations Food and Agriculture Organization says restrictions on poultry trading are not being widely enforced .\tRB , DT NN IN DT NNP NNPS NNP CC NNP NNP VBZ NNS IN JJ NN VBP RB VBG RB VBN .\nThat official , Juan Lubroth , also says the H5N1 virus may have entered Niger .\tDT NN , NNP NNP , RB VBZ DT NNP NN MD VB VBN NNP .\nThe French news agency quotes a Niger government spokesman as rejecting that assertion .\tDT JJ NN NN VBZ DT NNP NN NN IN VBG IN NN .\nTwo new economic reports say U.S. consumer confidence fell in March while home prices dropped in January .\tCD JJ JJ NNS VBP NNP NN NN VBD IN NNP IN NN NNS VBD IN NNP .\nConsumer confidence fell sharply , by 11.9 points to a reading of 64.5 , to a five-year low as consumers worried about tight credit , a troubled job market , rising prices , and falling home values .\tNN NN VBD RB , IN CD NNS TO DT NN IN CD , TO DT JJ NN IN NNS VBN IN JJ NN , DT JJ NN NN , VBG NNS , CC VBG NN NNS .\nEconomists watch consumer confidence because consumer demand drives about two-thirds of the U.S. economy .\tNNS VBP NN NN IN NN NN VBZ IN NNS IN DT NNP NN .\nThe bad news was reinforced by a separate report from a business group , Standard & Poor 's / Case-Shiller index , which said U.S. home prices fell around 11 percent from a year ago in the nation 's largest cities .\tDT JJ NN VBD VBN IN DT JJ NN IN DT NN NN , NNP CC NNP POS NNP NNP NN , WDT VBD NNP NN NNS VBD RB CD NN IN DT NN RB IN DT NN POS JJS NNS .\nFalling home values make it difficult for consumers to borrow money with the value of their homes as collateral .\tVBG NN NNS VBP PRP JJ IN NNS TO VB NN IN DT NN IN PRP$ NNS IN NN .\nThe problem can further slow consumer spending .\tDT NN MD RB VB NN NN .\nSinbad is alive and well .\tNNP VBZ JJ CC RB .\nThe 50-year-old actor-comedian says he ' rose from the dead ' last week , after Wikipedia mistakenly proclaimed his demise .\tDT JJ NN VBZ PRP `` VBD IN DT JJ `` JJ NN , IN NNP RB VBD PRP$ NN .\nAn editor on the vast Internet site posted that Sinbad had succumbed to a heart attack .\tDT NN IN DT JJ NNP NN VBD IN NNP VBD VBN TO DT NN NN .\nEmail links of the erroneous page were forwarded nationwide before other members of the Wikipedia community corrected the mistake .\tNNP NNS IN DT JJ NN VBD VBN JJ IN JJ NNS IN DT NNP NN VBD DT NN .\nSinbad , whose real name is David Adkins , says he 's not upset at the error - although he would n't mind an apology from Wikipedia headquarters in St. Petersburg , Florida .\tNNP , WP$ JJ NN VBZ NNP NNP , VBZ PRP VBZ RB VBN IN DT NN : IN PRP MD RB VB DT NN IN NNP NN IN NNP NNP , NNP .\nPresident Bush has conveyed his greetings to Jewish Americans as they begin observing Rosh Hashanah , the Jewish New Year .\tNNP NNP VBZ VBN PRP$ NNS TO JJ NNS IN PRP VBP VBG NNP NNP , DT JJ NNP NN .\nMr. Bush released a statement Friday , offering his best wishes for the occasion and the start of the Days of Awe , in which Jews reflect on the past year and welcome the year to come .\tNNP NNP VBD DT NN NNP , VBG PRP$ JJS NNS IN DT NN CC DT NN IN DT NNS IN NNP , IN WDT NNPS VBP IN DT JJ NN CC VB DT NN TO VB .\nAt the sound of the Shofar , a musical instrument blown like a trumpet , Jews around the world are called to gather to celebrate Rosh Hashanah .\tIN DT NN IN DT NNP , DT JJ NN VBN IN DT NN , NNPS IN DT NN VBP VBN TO VB TO VB NNP NNP .\nMr. Bush says the period is also a time to reflect on the history of the Jewish people , from the days of Abraham to the present .\tNNP NNP VBZ DT NN VBZ RB DT NN TO VB IN DT NN IN DT JJ NNS , IN DT NNS IN NNP TO DT NN .\nThe president says throughout America 's history , Jewish Americans have strengthened and enriched the character of the nation .\tDT NN VBZ IN NNP POS NN , JJ NNS VBP VBN CC VBN DT NN IN DT NN .\nInvestigators in Ethiopia say police killed 193 people during anti-government protests last year - a figure nearly triple the official death toll .\tNNS IN NNP VBP NNS VBD CD NNS IN JJ NNS JJ NN IN DT NN RB RB DT JJ NN NN .\nVOA has obtained a report from an Ethiopian government-backed inquiry team charged with determining if police used excessive force in ending the June and November 2005 protests .\tNNP VBZ VBN DT NN IN DT JJ JJ NN NN VBN IN VBG IN NNS VBD JJ NN IN VBG DT NNP CC NNP CD NNS .\nThe team concluded that police did use excessive force , employing means such as shooting , strangling , and beating demonstrators .\tDT NN VBD IN NNS VBD VB JJ NN , VBG NNS JJ IN NN , VBG , CC NN NNS .\nIt also says six police officers were killed in the protests .\tPRP RB VBZ CD NNS NNS VBD VBN IN DT NNS .\nThere has been no public comment on the report from Ethiopian officials .\tEX VBZ VBN DT JJ NN IN DT NN IN JJ NNS .\nAt least one member of the inquiry team , Judge Wolde-Michael Meshesha , has left Ethiopia for fear of political reprisals .\tIN JJS CD NN IN DT NN NN , NNP NNP NNP , VBZ VBN NNP IN NN IN JJ NNS .\nThe protests followed elections won by the ruling party that opposition groups say were rigged .\tDT NNS VBD NNS VBN IN DT VBG NN IN NN NNS VBP VBD VBN .\nThe European Union and U.S.-based Carter Center expressed concerns over the vote and the post-election violence .\tDT NNP NNP CC JJ NNP NNP VBD NNS IN DT NN CC DT JJ NN .\nHealth officials in Turkey say a 12-year-old girl with symptoms of bird flu has died while her younger brother has tested positive for the virus and is in critical condition .\tNNP NNS IN NNP VBP DT JJ NN IN NNS IN NN NN VBZ VBN IN PRP$ JJR NN VBZ VBN JJ IN DT NN CC VBZ IN JJ NN .\nThe girl , Fatma Ozcan , had been hospitalized in the eastern city of Van with her five-year-old brother Muhammed for several days .\tDT NN , NNP NNP , VBD VBN VBN IN DT JJ NN IN NNP IN PRP$ JJ NN NNP IN JJ NNS .\nLate Sunday , the Turkish Health Ministry said the boy has tested positive for bird flu .\tRB NNP , DT JJ NNP NNP VBD DT NN VBZ VBN JJ IN NN NN .\nDoctors were performing tests to determine whether the H5N1 strain killed the girl .\tNNS VBD VBG NNS TO VB IN DT NNP NN VBD DT NN .\nInitial tests were negative .\tJJ NNS VBD JJ .\nTurkey previously found 18 people testing positive for bird flu , including three children from the same family who died in a village near Van last week .\tNNP RB VBD CD NNS VBG JJ IN NN NN , VBG CD NNS IN DT JJ NN WP VBD IN DT NN IN NNP JJ NN .\nThose deaths were the first reported bird flu fatalities outside eastern Asia , where more than 70 infected people have died since 2003\tDT NNS VBD DT JJ VBN NN NN NNS IN JJ NNP , WRB JJR IN CD JJ NNS VBP VBN IN CD\nAuthorities in Spain and Morocco closed airports Tuesday , as ash from an Icelandic volcano once again disrupts air travel .\tNNS IN NNP CC NNP VBD NNS NNP , IN NN IN DT JJ NN RB RB VBZ NN NN .\nSpain 's air traffic control agency ( Aena ) said Tuesday that four airports in the Canary Islands and three airports in southern Spain have been shut down .\tNNP POS NN NN NN NN LRB NNP RRB VBD NNP IN CD NNS IN DT NNP NNP CC CD NNS IN JJ NNP VBP VBN VBN RP .\nMorocco closed several of its airports including Casablanca .\tNNP VBD JJ IN PRP$ NNS VBG NNP .\nThe volcano continued belching ash on Tuesday .\tDT NN VBD VBG NN IN NNP .\nOfficials say they do not know how long the eruption will continue .\tNNS VBP PRP VBP RB VB WRB JJ DT NN MD VB .\nVolcanic activity has shut down sections of European airspace on-and-off for more than a month .\tNNP NN VBZ VBN RP NNS IN JJ NN NN IN JJR IN DT NN .\nThe cloud of abrasive ash can damage aircraft engines and cause other problems for airplanes in flight .\tDT NN IN JJ NN MD VB NN NNS CC VB JJ NNS IN NNS IN NN .\nThe European Union says airlines lost more than $ 3 billion when ash from the same volcano crippled air travel across Europe for nearly a week in April .\tDT NNP NNP VBZ NNS VBD JJR IN $ CD CD WRB NN IN DT JJ NN VBD NN NN IN NNP IN RB DT NN IN NNP .\nThe death toll from two bombings in Pakistan 's eastern city of Lahore has risen to six , with at least 26 others wounded .\tDT NN NN IN CD NNS IN NNP POS JJ NN IN NNP VBZ VBN TO CD , IN IN JJS CD NNS VBD .\nLocal police say the first bomb placed under the seat of a bicycle went off Thursday near a national monument - Minar-e-Pakistan .\tJJ NNS VBP DT JJ NN VBN IN DT NN IN DT NN VBD RP NNP IN DT JJ NN IN NNP .\nMinutes later , a second device detonated in a crowded shopping district in a central part of the city .\tNNS RB , DT JJ NN VBN IN DT JJ NN NN IN DT JJ NN IN DT NN .\nAfter the bombings , police stepped up security across the region while investigators said they were probing various leads .\tIN DT NNS , NNS VBD RP NN IN DT NN IN NNS VBD PRP VBD VBG JJ NNS .\nThere has been no immediate claim of responsibility .\tEX VBZ VBN DT JJ NN IN NN .\nIn an unrelated development , Pakistani security forces arrested at least 10 suspected militants and recovered weapons in the remote North Waziristan region - the scene of a major military offensive last week against al-Qaida-linked militants .\tIN DT JJ NN , JJ NN NNS VBN IN JJS CD JJ NNS CC VBD NNS IN DT JJ NNP NNP NN IN DT NN IN DT JJ JJ NN JJ NN IN JJ NNS .\nA U.S. State Department spokesman says North Korea 's chief nuclear negotiator Kim Kye Kwan and his U.S. counterpart , Christopher Hill , are expected to meet in New York later this week .\tDT NNP NNP NNP NN VBZ NNP NNP POS JJ JJ NN NNP NNP NNP CC PRP$ NNP NN , NNP NNP , VBP VBN TO VB IN NNP NNP RB DT NN .\nSean McCormack was responding to media reports that Vice Foreign Minister Kim will visit San Francisco on Thursday for a lecture at Stanford and then will head to New York for a meeting with Assistant Secretary of State Hill .\tNNP NNP VBD VBG TO NNS NNS IN NNP NNP NNP NNP MD VB NNP NNP IN NNP IN DT NN IN NNP CC RB MD VB TO NNP NNP IN DT NN IN NNP NNP IN NNP NNP .\nHe said the two sides were still working through the logistics and a date .\tPRP VBD DT CD NNS VBD RB VBG IN DT NNS CC DT NN .\nThe planned trip was first reported Saturday by South Korean media .\tDT JJ NN VBD RB VBN NNP IN NNP JJ NNS .\nEarlier this month , North Korea agreed to close its main nuclear facility in Yongbyong and allow atomic energy inspectors in the country within 60 days in exchange for energy aid .\tRBR DT NN , NNP NNP VBD TO VB PRP$ JJ JJ NN IN NNP CC VB JJ NN NNS IN DT NN IN CD NNS IN NN IN NN NN .\nNorth Korea expelled IAEA weapons inspectors in late December , 2002 , and officially withdrew from the Nuclear Non-Proliferation Treaty in January 2003 .\tNNP NNP VBD NNP NNS NNS IN JJ NNP , CD , CC RB VBD IN DT NNP NNP NNP IN NNP CD .\nPresident Bush Wednesday will attend six events related to his inauguration for a second term in the White House .\tNNP NNP NNP MD VB CD NNS VBN TO PRP$ NN IN DT JJ NN IN DT NNP NNP .\nMr. Bush plans to make stops at a luncheon , a pop music concert , three candlelight dinners , and a reception for his Texas supporters called the ' Black Tie and Boots Ball . '\tNNP NNP VBZ TO VB NNS IN DT NN , DT NN NN NN , CD NN NNS , CC DT NN IN PRP$ NNP NNS VBD DT `` NNP NNP CC NNP NNP . ``\nThe concert , dubbed ' A Celebration of Freedom , ' features The Temptations , country singer Kenny Chesney , and a drop-in by the U.S. Army 's parachute team .\tDT NN , VBD `` DT NN IN NNP , `` VBZ DT NNS , NN NN NNP NNP , CC DT NN IN DT NNP NNP POS NN NN .\nSub-freezing temperatures and a forecast of snow are not expected to put a chill on the celebrations .\tJJ NNS CC DT NN IN NN VBP RB VBN TO VB DT NN IN DT NNS .\nThe president will take the oath of office Thursday outside the U.S. Capitol building , watched by unprecedented security and a crowd expected to number several hundred thousand people .\tDT NN MD VB DT NN IN NN NNP IN DT NNP NNP NN , VBN IN JJ NN CC DT NN VBN TO NN JJ CD CD NNS .\nThe Israeli military says troops have shot and killed two armed Palestinian gunmen outside a Jewish settlement in the West Bank .\tDT JJ NN VBZ NNS VBP VBN CC VBN CD JJ JJ NNS IN DT JJ NN IN DT NNP NNP .\nThe military said the shootings occurred Tuesday at a settlement near the West Bank town of Nablus .\tDT NN VBD DT NNS VBD NNP IN DT NN IN DT NNP NNP NN IN NNP .\nReuters quotes Palestinian sources as saying the two men belonged to the militant al-Aqsa Martyrs Brigades .\tNNP VBZ JJ NNS IN VBG DT CD NNS VBD TO DT JJ JJ NNS NNS .\nEarlier today , Palestinians say a teenager was shot dead and another youth was wounded near Ramallah by Israeli gunfire during a stone-throwing protest against the barrier fence that Israel is building in the West Bank .\tRBR NN , NNS VBP DT NN VBD VBN JJ CC DT NN VBD VBN IN NNP IN JJ NN IN DT JJ NN IN DT NN NN IN NNP VBZ VBG IN DT NNP NNP .\nIsraeli sources say troops were not involved in the shooting .\tJJ NNS VBP NNS VBD RB VBN IN DT NN .\nReports from the Hurricane Katrina disaster zone Sunday say the American singer and musician Clarence ' Gatemouth ' Brown has died at the age of 81 , shortly after he was forced to leave his home just outside New Orleans .\tNNS IN DT NNP NNP NN NN NNP VBP DT JJ NN CC NN NNP `` NNP `` NNP VBZ VBN IN DT NN IN CD , RB IN PRP VBD VBN TO VB PRP$ NN RB IN NNP NNP .\nAccording to Associated Press , Brown died Saturday in Orange , Texas , the town where he grew up .\tVBG TO NNP NNP , NNP VBD NNP IN NNP , NNP , DT NN WRB PRP VBD RP .\nHe reportedly had suffered from both lung cancer and heart disease .\tPRP RB VBD VBN IN DT NN NN CC NN NN .\nFor 50 years Brown 's career was based in New Orleans , where he played guitar and sang blues , country , jazz , zydeco and Cajun music .\tIN CD NNS NNP POS NN VBD VBN IN NNP NNP , WRB PRP VBD NN CC VBD NNS , NN , NN , NN CC NNP NN .\nThe nickname ' Gatemouth ' derived from Brown 's distinctive deep voice .\tDT NN `` NNP `` VBN IN NNP POS JJ JJ NN .\nHis early blues hits included Okie Dokie Stomp and Ai n't That Dandy .\tPRP$ JJ NN NNS VBD NNP NNP NNP CC VBZ RB DT NN .\nGeorge W. Bush\tNNP NNP NNP\nPresident Bush is to deliver a speech in Washington Wednesday in which he will offer proposals aimed at reining in high energy prices .\tNNP NNP VBZ TO VB DT NN IN NNP NNP IN WDT PRP MD VB NNS VBN IN VBG IN JJ NN NNS .\nSenior administration officials say Mr. Bush will encourage construction of new nuclear power plants and propose making closed military bases available for new oil refineries .\tNNP NN NNS VBP NNP NNP MD VB NN IN JJ JJ NN NNS CC VB VBG JJ JJ NNS JJ IN JJ NN NNS .\nThe lack of adequate oil refining capacity is often cited by experts as one reason for high gasoline prices in the United States .\tDT NN IN JJ NN NN NN VBZ RB VBN IN NNS IN CD NN IN JJ NN NNS IN DT NNP NNPS .\nOfficials say Mr. Bush will also call for the further use of hybrid automobiles and those that burn clean diesel fuel by adding them to a list of vehicles eligible for tax credits .\tNNS VBP NNP NNP MD RB VB IN DT JJ NN IN JJ NNS CC DT WDT VBP JJ NN NN IN VBG PRP TO DT NN IN NNS JJ IN NN NNS .\nThe speech will be Mr. Bush 's second on energy issues in a week .\tDT NN MD VB NNP NNP POS JJ IN NN NNS IN DT NN .\nA U.S. report has criticized the Federal Bureau of Investigation for missing key information about terrorists planning the September 11 , 2001 attacks , more than a year before the strike .\tDT NNP NN VBZ VBN DT NNP NNP IN NNP IN VBG JJ NN IN NNS VBG DT NNP CD , CD NNS , JJR IN DT NN IN DT NN .\nThe Justice Department issued the report Thursday , saying FBI officials had at least five chances to discover two of the airline hijackers as they prepared for the attacks , but failed to do so .\tDT NNP NNP VBD DT NN NNP , VBG NNP NNS VBD IN JJS CD NNS TO VB CD IN DT NN NNS IN PRP VBD IN DT NNS , CC VBD TO VB RB .\nIn one case , it says an agent working for the Central Intelligence Agency ( CIA ) was blocked by a supervisor from sending information on the hijackers to FBI officials .\tIN CD NN , PRP VBZ DT NN VBG IN DT NNP NNP NNP LRB NNP RRB VBD VBN IN DT NN IN VBG NN IN DT NNS TO NNP NNS .\nAttorney General Alberto Gonzales told NBC 's Today show that reforms have been made to increase intelligence sharing among U.S. authorities , following the attacks .\tNNP NNP NNP NNP VBD NNP POS NN NN IN NNS VBP VBN VBN TO VB NN NN IN NNP NNS , VBG DT NNS .\nPublication of the report had been stalled for a year , due in part to legal challenges by Zacarias Moussaoui , who pleaded guilty this year to a role in the attacks .\tNN IN DT NN VBD VBN VBN IN DT NN , JJ IN NN TO JJ NNS IN NNP NNP , WP VBD JJ DT NN TO DT NN IN DT NNS .\nIraqi authorities say they have found a mass grave containing at least 20 bodies in Karbala , a holy city for Shi'ite Muslims .\tJJ NNS VBP PRP VBP VBN DT NN NN VBG IN JJS CD NNS IN NNP , DT JJ NN IN NNP NNPS .\nThey say the grave was found by construction workers who were laying a pipeline near the mausoleum of Imam Hussein , which is the Shi'ites ' holiest shrine .\tPRP VBP DT NN VBD VBN IN NN NNS WP VBD VBG DT NN IN DT NN IN NNP NNP , WDT VBZ DT NNS POS JJS NN .\nAuthorities are examining the remains , which they say include the bodies of women and children .\tNNS VBP VBG DT NNS , WDT PRP VBP VBP DT NNS IN NNS CC NNS .\nThey believe those in the grave were victims of Saddam Hussein 's bloody suppression of a Shi'ite uprising after the Gulf War in 1991 .\tPRP VBP DT IN DT NN VBD NNS IN NNP NNP POS JJ NN IN DT NNP NN IN DT NNP NNP IN CD .\nMore than 200 suspected mass graves have been reported since the fall of Saddam 's regime in 2003 .\tJJR IN CD JJ NN NNS VBP VBN VBN IN DT NN IN NNP POS NN IN CD .\nMost of them were found in Iraq 's Shi'ite-dominated south and northern Kurdish region .\tJJS IN PRP VBD VBN IN NNP POS JJ NN CC JJ NNP NN .\nA senior Burmese prison official says more than 9,000 inmates promised freedom under the military government 's prisoner release program will be freed by the end of Friday .\tDT JJ JJ NN NN VBZ JJR IN CD NNS VBN NN IN DT JJ NN POS NN NN NN MD VB VBN IN DT NN IN NNP .\nA senior official at Rangoon 's notorious Insein prison Zaw Win , told reporters about the mass release , Friday .\tDT JJ NN IN NNP POS JJ NNP NN NNP NNP , VBD NNS IN DT NN NN , NNP .\nWitnesses say they have only seen 1,000 prisoners released Friday .\tNNS VBP PRP VBP RB VBN CD NNS VBN NNP .\nSources tell VOA 's Burmese service that of those released Friday , only three were political detainees .\tNNS VBP NNP POS JJ NN IN IN DT VBN NNP , RB CD VBD JJ NNS .\nBurma says the inmates were wrongly detained by the recently-disbanded security apparatus , the National Intelligence Bureau .\tNNP VBZ DT NNS VBD RB VBN IN DT JJ NN NN , DT NNP NNP NNP .\nThe agency was headed by ousted Burmese Prime Minister General Khin Nyunt .\tDT NN VBD VBN IN JJ JJ NNP NNP NNP NNP NNP .\nMost of those already freed are ordinary prisoners .\tJJS IN DT RB VBN VBP JJ NNS .\nIran says it is donating $ 50 million to the Hamas-led Palestinian government , to ease a Palestinian cash crisis spurred by Western aid cuts .\tNNP VBZ PRP VBZ VBG $ CD CD TO DT JJ JJ NN , TO VB DT JJ NN NN VBN IN JJ NN NNS .\nIranian Foreign Minister Manouchehr Mottaki announced the donation Sunday during a conference in Tehran .\tJJ NNP NNP NNP NNP VBD DT NN NNP IN DT NN IN NNP .\nThe promise of funding comes after the United States and the European Union said they were stopping aid to the Hamas government because it refuses to renounce violence and accept Israel .\tDT NN IN NN VBZ IN DT NNP NNPS CC DT NNP NNP VBD PRP VBD VBG NN TO DT NNP NN IN PRP VBZ TO VB NN CC VB NNP .\nIsrael is withholding about $ 50 million in monthly payments of tax revenues it collects for the Palestinian Authority .\tNNP VBZ VBG IN $ CD CD IN JJ NNS IN NN NNS PRP VBZ IN DT JJ NNP .\nIndian veterinary officials are killing thousands of birds this week to try to control the country 's latest outbreak of avian influenza .\tJJ JJ NNS VBP VBG NNS IN NNS DT NN TO VB TO VB DT NN POS JJS NN IN JJ NN .\nAuthorities said Thursday that about 44,000 birds will be killed in West Bengal state 's Malda district .\tNNS VBD NNP IN IN CD NNS MD VB VBN IN NNP NNP NN POS NNP NN .\nAn outbreak of the H5N1 virus has killed about 1,000 chickens in Malda in recent days .\tDT NN IN DT NNP NN VBZ VBN IN CD NNS IN NNP IN JJ NNS .\nWest Bengal is struggling with recurrent bird flu infections .\tNNP NNP VBZ VBG IN JJ NN NN NNS .\nAbout 50,000 birds were slaughtered earlier this month after an outbreak in Murshidabad district .\tIN CD NNS VBD VBN RBR DT NN IN DT NN IN NNP NN .\nAnother massive outbreak last January led to the slaughter of nearly four million chickens .\tDT JJ NN JJ NNP VBD TO DT NN IN RB CD CD NNS .\nThe virus hit 13 of West Bengal 's 19 districts and was considered India 's worst bird flu outbreak .\tDT NN VBD CD IN NNP NNP POS CD NNS CC VBD VBN NNP POS JJS NN NN NN .\nNo cases of human infection have been reported so far in India .\tDT NNS IN JJ NN VBP VBN VBN RB RB IN NNP .\nThe Sudanese government is accusing Chad of sending troops into Darfur to supply rebels in the region .\tDT JJ NN VBZ VBG NNP IN VBG NNS IN NNP TO VB NNS IN DT NN .\nSudan 's Information Minister Kamal Obeid issued a statement Wednesday saying Chadian troops took supplies to the rebel Justice and Equality Movement near the North Darfur capital of El-Fasher .\tNNP POS NN NN NNP NNP VBD DT NN NNP VBG JJ NNS VBD NNS TO DT NN NN CC NN NN IN DT NNP NNP NN IN NNP .\nHe also accused Chad of providing protection to the rebels .\tPRP RB VBD NNP IN VBG NN TO DT NNS .\nThe Reuters news agency quotes a statement from Chad 's communications minister denying the accusations .\tDT NNP NN NN VBZ DT NN IN NNP POS NNS NN VBG DT NNS .\nChad and Sudan broke off diplomatic relations last year , with each accusing the other of supporting rebel assaults on their capitals .\tNNP CC NNP VBD RP JJ NNS JJ NN , IN DT VBG DT NN IN VBG JJ NNS IN PRP$ NNS .\nThe countries re-established relations in November , but tensions between the two nations remain high .\tDT NNS JJ NNS IN NNP , CC NNS IN DT CD NNS VBP JJ .\nOn Monday , Chad accused Sudan of supporting the formation of a new insurgent group opposed to the Chadian government .\tIN NNP , NNP VBD NNP IN VBG DT NN IN DT JJ JJ NN VBN TO DT JJ NN .\nChina says it will again call on the European Union to lift its arms sales embargo during upcoming talks with German Chancellor Gerhard Schroeder and EU officials .\tNNP VBZ PRP MD RB VB IN DT NNP NNP TO VB PRP$ NNS NNS NN IN VBG NNS IN JJ NNP NNP NNP CC NNP NNS .\nMr. Schroeder will be in China next week for talks with President Hu Jintao and Prime Minister Wen Jiabao .\tNNP NNP MD VB IN NNP JJ NN IN NNS IN NNP NNP NNP CC NNP NNP NNP NNP .\nAfterwards , Mr. Wen will travel to the Netherlands to attend Wednesday 's China - European Union summit .\tRB , NNP NNP MD VB TO DT NNP TO VB NNP POS NNP IN NNP NNP NN .\nChinese foreign ministry spokeswoman Zhang Qiyue says Beijing should not be expected to make any concessions on human rights to have the embargo lifted .\tJJ JJ NN NN NNP NNP VBZ NNP MD RB VB VBN TO VB DT NNS IN JJ NNS TO VB DT NN VBD .\nThe European Union imposed the embargo in 1989 after China 's violent crackdown on pro-democracy demonstrations in Beijing 's Tiananmen Square .\tDT NNP NNP VBD DT NN IN CD IN NNP POS JJ NN IN JJ NNS IN NNP POS NNP NNP .\nPresident Bush has outlined the agenda for his second term in office and has asked for the support of all Americans in his weekly Saturday morning radio address .\tNNP NNP VBZ VBN DT NN IN PRP$ JJ NN IN NN CC VBZ VBN IN DT NN IN DT NNS IN PRP$ JJ NNP NN NN NN .\nMr. Bush Saturday promised to reach out to friends and allies , including NATO and the European Union , to promote global development and progress , defeat terrorists and encourage democracy as an alternative to tyranny and terror .\tNNP NNP NNP VBD TO VB RP TO NNS CC NNS , VBG NNP CC DT NNP NNP , TO VB JJ NN CC NN , NN NNS CC VB NN IN DT NN TO VB CC VB .\nHe said in order to create jobs he will propose what he called ' practical measures ' to help small business , including the elimination of so-called ' frivolous ' lawsuits he said drive up the cost of health care .\tPRP VBD IN NN TO VB NNS PRP MD VB WP PRP VBD `` JJ NNS `` TO VB JJ NN , VBG DT NN IN JJ `` JJ `` NNS PRP VBD NN IN DT NN IN NN NN .\nThe president also promised education and tax code reform and a revision of the U.S. Social Security system .\tDT NN RB VBD NN CC NN NN NN CC DT NN IN DT NNP NNP NNP NN .\nThe President said there is no limit to the greatness of America when its citizens work together .\tDT NNP VBD EX VBZ DT NN TO DT NN IN NNP WRB PRP$ NNS VBP RB .\nMexican President-elect Felipe Calderon has called for reconciliation in his first mass victory celebration since his narrow election victory in July .\tJJ NNP NNP NNP VBZ VBN IN NN IN PRP$ JJ NN NN NN IN PRP$ JJ NN NN IN NNP .\nMr. Calderon told supporters in an open air bullring in Mexico City Sunday that he will work to create jobs , cut crime and fight poverty .\tNNP NNP VBD NNS IN DT JJ NN NN IN NNP NNP NNP IN PRP MD VB TO VB NNS , VB NN CC VB NN .\nMeanwhile , opposition candidate Andres Manuel Lopez Obrador has agreed to temporarily end a mass protest in downtown Mexico City .\tRB , NN NN NNP NNP NNP NNP VBZ VBN TO RB VB DT NN NN IN NN NNP NNP .\nLopez Obrador called for the halt to allow the army to hold its traditional September 16th military parade through the city center .\tNNP NNP VBD IN DT NN TO VB DT NN TO VB PRP$ JJ NNP JJ JJ NN IN DT NN NN .\nHe said Sunday that demonstrators , who are protesting alleged election fraud , have nothing against the military .\tPRP VBD NNP IN NNS , WP VBP VBG JJ NN NN , VBP DT IN DT NN .\nLopez Obrador also called for stepped up demonstrations on September 15th when outgoing Mexican President Vicente Fox is due to make an annual address to the nation .\tNNP NNP RB VBD IN VBN RP NNS IN NNP CD WRB VBG JJ NNP NNP NNP VBZ JJ TO VB DT JJ NN TO DT NN .\nLast week Mexico 's top electoral court officially declared Mr. Calderon the winner of the disputed election .\tJJ NN NNP POS JJ JJ NN RB VBD NNP NNP DT NN IN DT JJ NN .\nOrthodox Christians across the globe who retain the Julian calendar are celebrating Christmas Monday .\tNNP NNPS IN DT NN WP VBP DT JJ NN VBP VBG NNP NNP .\nFor many , the holiday season often starts with a midnight Mass .\tIN NN , DT NN NN RB VBZ IN DT NN NNP .\nIn Russia , President Vladimir Putin attended Mass in a church north of Moscow .\tIN NNP , NNP NNP NNP VBD NNP IN DT NN NN IN NNP .\nMikhail Saakashvili , fresh from his victorious and controversial Georgian presidential bid , attended the same Mass as his political rival , Levan Gachechiladze .\tNNP NNP , JJ IN PRP$ JJ CC JJ JJ JJ NN , VBD DT JJ NNP IN PRP$ JJ NN , NNP NNP .\nGreek Orthodox Patriarch Theofilos the Third welcomed Palestinian President Mahmoud Abbas to the midnight Mass at the Church of the Nativity in Bethlehem .\tJJ NNP NNP NNP DT NNP VBD JJ NNP NNP NNP TO DT NN NNP IN DT NN IN DT NN IN NNP .\nRussia 's Interfax news agency says Christmas this year also will be celebrated in outer space .\tNNP POS NNP NN NN VBZ NNP DT NN RB MD VB VBN IN JJ NN .\nYuri Malenchenko , the Russian flight engineer aboard the International Space Station , will mark Orthodox Christmas today with his two American crew members .\tNNP NNP , DT JJ NN NN IN DT NNP NNP NNP , MD VB NNP NNP NN IN PRP$ CD JJ NN NNS .\nOil giant Shell has resumed production at two flowstations after Nigerian authorities intervened to resolve a dispute with villagers .\tNN NN NNP VBZ VBN NN IN CD NNS IN JJ NNS VBD TO VB DT NN IN NNS .\nShell reopened the facilities Tuesday , nearly one month after a protest by members of the remote fishing village of Kula stopped the flow of some 1,00,000 barrels of crude a day .\tNNP VBD DT NNS NNP , RB CD NN IN DT NN IN NNS IN DT JJ NN NN IN NNP VBD DT NN IN DT CD NNS IN NN DT NN .\nOn December 5 , the villagers seized two Shell oil facilities and one from ChevronTexaco , demanding jobs and investment in the local community .\tIN NNP CD , DT NNS VBD CD NNP NN NNS CC CD IN NNP , VBG NNS CC NN IN DT JJ NN .\nThe protesters left the flowstations several days later but threatened to attack again unless their demands were met .\tDT NNS VBD DT NNS JJ NNS RB CC VBD TO VB RB IN PRP$ NNS VBD VBN .\nLast week , ChevronTexaco struck a deal , allowing it to resume oil production in the village .\tJJ NN , NNP VBD DT NN , VBG PRP TO VB NN NN IN DT NN .\nMultinational oil companies in Nigeria are routinely targeted by impoverished locals , who say their communities are deprived of the oil wealth pumped from their lands .\tJJ NN NNS IN NNP VBP RB VBN IN JJ NNS , WP VBP PRP$ NNS VBP VBN IN DT NN NN VBD IN PRP$ NNS .\nFormer U.S. President Bill Clinton has praised the lasting peace forged by the Dayton Peace Accords a decade ago , but urged Serbs to do more to bring top fugitive war crimes suspects in the Balkans to justice .\tJJ NNP NNP NNP NNP VBZ VBN DT JJ NN VBN IN DT NNP NNP VBZ DT NN RB , CC VBD NNS TO VB JJR TO VB JJ JJ NN NNS VBZ IN DT NNPS TO NN .\nWriting in Wednesday 's Wall Street Journal , Mr. Clinton said the U.S.-brokered agreement was not a perfect peace , but it ended Bosnia-Herzegovina 's ethnic conflict and provided for national security and a shared form of government .\tVBG IN NNP POS NNP NNP NNP , NNP NNP VBD DT JJ NN VBD RB DT JJ NN , CC PRP VBD NNP POS JJ NN CC VBN IN JJ NN CC DT JJ NN IN NN .\nHowever , he stressed that Serb authorities must continue to work toward arresting and transferring all indicted war crimes suspects , especially , Radovan Karadzic and Ratko Mladic , to The Hague war crimes tribunal .\tRB , PRP VBD IN JJ NNS MD VB TO VB IN VBG CC VBG DT VBN NN NNS VBZ , RB , NNP NNP CC NNP NNP , TO DT NNP NN NNS JJ .\nHe said failure to do so will prevent the Balkans from breaking with the past .\tPRP VBD NN TO VB RB MD VB DT NNPS IN VBG IN DT NN .\nThe tribunal indicted the two fugitives for their roles in attacks on civilians during the Bosnian conflict .\tDT NN VBD DT CD NNS IN PRP$ NNS IN NNS IN NNS IN DT JJ NN .\nThe Netherlands has defeated Japan , 02-Jan while Benin and Australia played to a 01-Jan draw on the first day of the World Under-20 men 's football ( soccer ) tournament in the Netherlands .\tDT NNP VBZ VBN NNP , CD IN NNP CC NNP VBD TO DT JJ NN IN DT JJ NN IN DT NNP NNP NNS POS NN LRB NN RRB NN IN DT NNP .\nRyan Babel scored one goal and set PSV Eindhoven striker Ibrahim Afellay 's goal for the Dutch .\tNNP NNP VBD CD NN CC VBN NNP NNP NN NNP NNP POS NN IN DT NNS .\nSota Hirayama scored for Japan in the 68th minute .\tNNP NNP VBD IN NNP IN DT JJ NN .\nMeanwhile , Australia had to rally from one goal down to tie Benin , 01-Jan , after Razak Omotoyossi scored in the 32nd minute .\tRB , NNP VBD TO VB IN CD NN IN TO VB NNP , CD , IN NNP NNP VBD IN DT JJ NN .\nAustralia 's Nick Ward tied the match in the 59th minute .\tNNP POS NNP NNP VBD DT NN IN DT JJ NN .\nThe top two teams in each of the six groups plus the four best teams among those ranked third after the first round qualify for the round of 16 .\tDT JJ CD NNS IN DT IN DT CD NNS CC DT CD JJS NNS IN DT VBN JJ IN DT JJ NN VB IN DT NN IN CD .\nThe winners in the round of 16 make the quarterfinals .\tDT NNS IN DT NN IN CD VBP DT NNS .\nThe tournament final is scheduled for July 5th .\tDT NN JJ VBZ VBN IN NNP CD .\nIsraeli police have removed a large group of illegal Jewish squatters trying to set up makeshift settlement outposts near the West Bank city of Hebron .\tJJ NNS VBP VBN DT JJ NN IN JJ JJ NNS VBG TO VB RP NN NN NNS IN DT NNP NNP NN IN NNP .\nPolice say at least 150 Israeli youths were evacuated Thursday as they occupied several hilltops sites in the area .\tNNS VBP IN JJS CD JJ NNS VBD VBN NNP IN PRP VBD JJ NNS NNS IN DT NN .\nAuthorities say the youths were removed before they were able to erect permanent structures .\tNNS VBP DT NNS VBD VBN IN PRP VBD JJ TO VB JJ NNS .\nIsraeli news reports say several people were injured during the evictions , including a deputy police commander who was hospitalized with an eye injury .\tJJ NN NNS VBP JJ NNS VBD VBN IN DT NNS , VBG DT NN NN NN WP VBD VBN IN DT NN NN .\nPolice say at least three of the settlers were arrested .\tNNS VBP IN JJS CD IN DT NNS VBD VBN .\nThe Yediot Aharonot newspaper says Army Chief of Staff Dan Halutz was sharply critical of the youths ' conduct .\tDT NNP NNP NN VBZ NNP NNP IN NNP NNP NNP VBD RB JJ IN DT NNS POS NN .\nThe paper quoted him as blaming settler leadership for encouraging what he called ' thuggish ' behavior by the protesters .\tDT NN VBD PRP IN VBG NN NN IN VBG WP PRP VBD `` VBP `` NN IN DT NNS .\nThe Fitch rating agency slashed BP 's credit rating drastically six steps from AA to BBB Tuesday , on concerns about the cost of cleaning up the firm 's Gulf of Mexico oil spill .\tDT NNP NN NN VBD NNP POS NN NN RB CD NNS IN NNP TO NNP NNP , IN NNS IN DT NN IN VBG RP DT NN POS NNP IN NNP NN NN .\nU.S. political leaders are asking BP to set aside billions of dollars in a special fund to be sure claims will be paid .\tNNP JJ NNS VBP VBG NNP TO VB RP NNS IN NNS IN DT JJ NN TO VB JJ NNS MD VB VBN .\nSome estimates put cleanup and other costs as high at $ 40 billion .\tDT NNS VBP NN CC JJ NNS IN JJ IN $ CD CD .\nRating agencies give lenders guidance on how likely a particular borrower is to repay its debt , and a lower rating is likely to mean higher interest charges .\tVBG NNS VBP NNS NN IN WRB JJ DT JJ NN VBZ TO VB PRP$ NN , CC DT JJR NN VBZ JJ TO VB JJR NN NNS .\nA new Israeli public opinion poll indicates most Israelis want Prime Minister Ehud Olmert to resign because of the way he handled the war against Hezbollah in Lebanon .\tDT JJ JJ JJ NN NN VBZ RBS NNS VBP NNP NNP NNP NNP TO VB IN IN DT NN PRP VBD DT NN IN NNP IN NNP .\nResults of the survey published Friday in the Yediot Ahronot daily newspaper show 63 percent of those questioned say Mr. Olmert should step down .\tNNS IN DT NN VBN NNP IN DT NNP NNP JJ NN VBZ CD NN IN DT VBN VBP NNP NNP MD VB RB .\nA similar poll published a week ago showed 41 percent said they want Mr. Olmert to resign .\tDT JJ NN VBN DT NN RB VBD CD NN VBD PRP VBP NNP NNP TO VB .\nThe new survey also indicates that most Israelis view the U.N.-brokered ceasefire as a failure for Israel because Hezbollah leadership remained intact and the two Israeli soldiers , whose capture last month sparked the war , are still in captivity .\tDT JJ NN RB VBZ IN JJS NNS VBP DT JJ NN IN DT NN IN NNP IN NNP NN VBD JJ CC DT CD JJ NNS , WP$ NN JJ NN VBD DT NN , VBP RB IN NN .\nThe survey also indicates a strong swing toward the hard-line Likud party led by former Prime Minister Benjamin Netanyahu and away from Mr. Olmert 's centrist Kadima party .\tDT NN RB VBZ DT JJ NN IN DT JJ NNP NN VBN IN JJ NNP NNP NNP NNP CC RB IN NNP NNP POS NN NNP NN .\nA well-known Lebanese television journalist has been wounded by a bomb blast that damaged her car north of Beirut .\tDT JJ JJ NN NN VBZ VBN VBN IN DT NN NN WDT VBD PRP$ NN NN IN NNP .\nSecurity officials say May Shidiac of LBC television has been taken to a hospital in serious condition .\tNN NNS VBP NNP NNP IN NNP NN VBZ VBN VBN TO DT NN IN JJ NN .\nThe bombing was the latest of several attacks against prominent Lebanese this year , including a journalist and a politician killed in separate attacks in June , and former Prime Minister Rafiq Hariri who was assassinated in February .\tDT NN VBD DT JJS IN JJ NNS IN JJ NNS DT NN , VBG DT NN CC DT NN VBN IN JJ NNS IN NNP , CC JJ NNP NNP NNP NNP WP VBD VBN IN NNP .\nAll were outspoken critics of Syria .\tDT VBD JJ NNS IN NNP .\nEarlier Sunday , in Cairo , Egyptian President Hosni Mubarak urged his Syrian counterpart , Bashar al-Assad , to continue cooperating in a U.N. probe of the Hariri assassination .\tRBR NNP , IN NNP , JJ NNP NNP NNP VBD PRP$ JJ NN , NNP NNP , TO VB VBG IN DT NNP NN IN DT NNP NN .\nA Mubarak spokesman urged the international community to refrain from pre-judging any Syrian role .\tDT NNP NN VBD DT JJ NN TO VB IN VBG DT JJ NN .\nFour pro-Syrian former Lebanese security chiefs have been indicted in the killings .\tCD JJ JJ JJ NN NNS VBP VBN VBN IN DT NNS .\nOn Friday , U.N. investigators finished questioning several Syrian officials .\tIN NNP , NNP NNS VBD VBG JJ JJ NNS .\nIt will issue a final report late next month .\tPRP MD VB DT JJ NN RB JJ NN .\nPolice in Rangoon , Burma 's largest city , kept close watch Saturday outside the headquarters of Aung San Suu Kyi 's pro-democracy party , as it celebrated its 20th anniversary .\tNNS IN NNP , NNP POS JJS NN , VBD JJ NN NNP IN DT NN IN NNP NNP NNP NNP POS JJ NN , IN PRP VBD PRP$ JJ NN .\nPlainclothes officers took pictures of people arriving for the ceremony , attended by at least 200 members of the National League for Democracy , as well as foreign diplomats .\tNNS NNS VBD NNS IN NNS VBG IN DT NN , VBN IN IN JJS CD NNS IN DT NNP NNP IN NNP , RB RB IN JJ NNS .\nThe ceremony was also a homecoming for prominent journalist Win Tin , who was released from prison earlier this week after 19 years behind bars .\tDT NN VBD RB DT NN IN JJ NN NNP NNP , WP VBD VBN IN NN RBR DT NN IN CD NNS IN NNS .\nHe is Burma 's longest-held political prisoner .\tPRP VBZ NNP POS JJ JJ NN .\nThe NLD released a statement calling for the ruling generals to release all political prisoners , including Aung San Suu Kyi , who has spent 13 of the last 19 years under house arrest .\tDT NNP VBD DT NN VBG IN DT NN NNS TO VB DT JJ NNS , VBG NNP NNP NNP NNP , WP VBZ VBN CD IN DT JJ CD NNS IN NN NN .\nThe NLD was founded in 1988 , after the military crushed a pro-democracy uprising in Burma .\tDT NNP VBD VBN IN CD , IN DT NN VBD DT JJ NN IN NNP .\nPolice say a NATO strike has killed a Taliban commander involved in the suicide attack on a USAID contractor in northern Afghanistan earlier this month .\tNNS VBP DT NNP NN VBZ VBN DT NNP NN VBN IN DT NN NN IN DT NNP NN IN JJ NNP RBR DT NN .\nNATO says the Taliban commander , who was targeted Thursday in Kunduz province , openly claimed responsibility for the July 2 attack on the U.S. contractor 's compound in Kunduz city that killed five people .\tNNP VBZ DT NNP NN , WP VBD VBN NNP IN NNP NN , RB VBD NN IN DT NNP CD NN IN DT NNP NN POS NN IN NNP NN WDT VBD CD NNS .\nIn western Farah province , NATO says a joint Afghan-international force killed a Taliban commander and a ' number of ' insurgents during a raid on a militant training camp on Thursday .\tIN JJ NNP NN , NNP VBZ DT JJ JJ NN VBD DT NNP NN CC DT `` NN IN `` NNS IN DT NN IN DT JJ NN NN IN NNP .\nThe alliance says the commander , Mullah Akhtar , was responsible for brining foreign fighters from Iran into Afghanistan .\tDT NN VBZ DT NN , NNP NNP , VBD JJ IN VBG JJ NNS IN NNP IN NNP .\nNATO and Afghan forces are increasingly targeting Taliban leadership during operations throughout Afghanistan .\tNNP CC JJ NNS VBP RB VBG NNP NN IN NNS IN NNP .\nNATO said Friday that at least 12 Taliban commanders have been killed or captured in the southern province of Helmand since May 1 .\tNNP VBD NNP IN IN JJS CD NNP NNS VBP VBN VBN CC VBN IN DT JJ NN IN NNP IN NNP CD .\nA top Spanish judge has approved a request by public prosecutors for a probe of suspected links between the Basque separatist group ETA and Colombia 's Marxist rebel FARC movement .\tDT JJ JJ NN VBZ VBN DT NN IN JJ NNS IN DT NN IN JJ NNS IN DT NNP NN NN NNP CC NNP POS JJ NN NNP NN .\nNational Court Judge Eloy Velasco acted on a petition prosecutors filed last month as they sought to indict five ETA members on suspicion of collaborating with the Colombian rebels .\tNNP NNP NNP NNP NNP VBD IN DT NN NNS VBN JJ NN IN PRP VBD TO VB CD NNP NNS IN NN IN VBG IN DT JJ NNS .\nThe prosecutors said the two groups have held joint training sessions in the use of explosives .\tDT NNS VBD DT CD NNS VBP VBN JJ NN NNS IN DT NN IN NNS .\nThey said FARC and ETA have a relationship stretching back to at least 1993 .\tPRP VBD NNP CC NNP VBP DT NN VBG RB TO IN JJS CD .\nETA is blamed for more than 820 deaths in its 40-year violent campaign for the creation of an independent Basque state in northern Spain and southwestern France .\tNNP VBZ VBN IN JJR IN CD NNS IN PRP$ JJ JJ NN IN DT NN IN DT JJ JJ NN IN JJ NNP CC JJ NNP .\nThe FARC is Colombia 's most powerful rebel movement .\tDT NNP VBZ NNP POS RBS JJ NN NN .\nColombia , the United States and the European Union designate the FARC as a terrorist group .\tNNP , DT NNP NNPS CC DT NNP NNP VBP DT NNP IN DT JJ NN .\nU.S. Secretary of State Condoleezza Rice says Washington has no plans to have a military base in Tajikistan , or to increase its military presence abroad .\tNNP NNP IN NNP NNP NNP VBZ NNP VBZ DT NNS TO VB DT JJ NN IN NNP , CC TO VB PRP$ JJ NN RB .\nMs. Rice made the comment Thursday at a news conference in Dushanbe , following a meeting with Tajik Foreign Minister Talbak Nazarov .\tNNP NNP VBD DT NN NNP IN DT NN NN IN NNP , VBG DT NN IN JJ NNP NNP NNP NNP .\nThe top U.S. diplomat said that , on the contrary , the United States is reducing the number of its military bases across the world .\tDT JJ NNP NN VBD IN , IN DT NN , DT NNP NNPS VBZ VBG DT NN IN PRP$ JJ NNS IN DT NN .\nEarlier in the day , Ms. Rice held talks with President Emomali Rakhmonov that focused on cooperation in democracy building and the war against terrorism and drug trafficking .\tRBR IN DT NN , NNP NNP VBD NNS IN NNP NNP NNP WDT VBD IN NN IN NN NN CC DT NN IN NN CC NN NN .\nMs. Rice arrived in Tajikistan - the last stop on her Central Asian tour - from Kazakhstan , where she denied suggestions that Washington was putting its oil interests ahead of democracy in the Central Asian nation .\tNNP NNP VBD IN NNP IN DT JJ NN IN PRP$ JJ JJ NN : IN NNP , WRB PRP VBD NNS IN NNP VBD VBG PRP$ NN NNS RB IN NN IN DT JJ JJ NN .\nRalston Purina Co. reported a 47 % decline in fourth-quarter earnings , reflecting restructuring costs as well as a more difficult pet food market .\tNNP NNP NNP VBD DT CD NN NN IN JJ NNS , VBG NN NNS RB RB IN DT RBR JJ NN NN NN .\nThe St. Louis company earned $ 45.2 million , or 65 cents a share , compared with $ 84.9 million , or $ 1.24 a share , a year earlier .\tDT NN NNP NN VBD $ CD CD , CC CD NNS DT NN , VBN IN $ CD CD , CC $ CD DT NN , DT NN RBR .\nSales in the latest period were $ 1.76 billion , a 13 % increase from last year 's $ 1.55 billion .\tNNS IN DT JJS NN VBD $ CD CD , DT CD NN NN IN JJ NN POS $ CD CD .\nFor the year ended Sept. 30 , Ralston earned $ 422.5 million , or $ 6.44 a share , up 8.9 % from $ 387.8 million , or $ 5.63 a share .\tIN DT NN VBN NNP CD , NNP VBD $ CD CD , CC $ CD DT NN , RB CD NN IN $ CD CD , CC $ CD DT NN .\nThis year 's results included a gain of $ 70.2 million on the disposal of seafood operations .\tDT NN POS NNS VBD DT NN IN $ CD CD IN DT NN IN NN NNS .\nSales for the full year were $ 6.6 billion , up 13 % from $ 5.8 billion .\tNNS IN DT JJ NN VBD $ CD CD , RB CD NN IN $ CD CD .\nRalston said its restructuring costs include the phase-out of a battery facility in Greenville , N.C. , the recent closing of a Hostess cake bakery in Cincinnati and a reduction in staff throughout the company .\tNNP VBD PRP$ NN NNS VBP DT NN IN DT NN NN IN NNP , NN , DT JJ NN IN DT NNP NN NN IN NNP CC DT NN IN NN IN DT NN .\nThe battery plant , which makes rechargeable nickel cadmium and carbon zinc products , will be closed over the next year or so , a spokesman said .\tDT NN NN , WDT VBZ JJ NN NN CC NN NN NNS , MD VB VBN IN DT JJ NN CC RB , DT NN VBD .\nRalston attributed its fourth-quarter slump partly to higher costs of ingredients in the pet food business as well as competitive pressures , which required higher advertising spending .\tNNP VBD PRP$ JJ NN RB TO JJR NNS IN NNS IN DT NN NN NN RB RB IN JJ NNS , WDT VBD JJR NN NN .\nFor the year , pet food volume was flat , the company said .\tIN DT NN , NN NN NN VBD JJ , DT NN VBD .\nIts cereal division realized higher operating profit on volume increases , but also spent more on promotion .\tPRP$ NN NN VBD JJR NN NN IN NN NNS , CC RB VBD RBR IN NN .\nThe Continental Baking business benefited from higher margins on bread and on increased cake sales , it added .\tDT NNP NNP NN VBD IN JJR NNS IN NN CC IN VBN NN NNS , PRP VBD .\nRalston said its Eveready battery unit was hurt by continuing economic problems in South America .\tNNP VBD PRP$ NNP NN NN VBD VBN IN VBG JJ NNS IN NNP NNP .\nRalston shares closed yesterday at $ 80.5 , off $ 1 , in New York Stock Exchange composite trading .\tNNP NNS VBD NN IN $ CD , IN $ CD , IN NNP NNP NNP NNP JJ NN .\nThe island - discovered by Christopher COLUMBUS in 1494 - was settled by the Spanish early in the 16th century .\tDT NN : VBN IN NNP NNP IN CD : VBD VBN IN DT JJ JJ IN DT JJ NN .\nThe native Taino Indians , who had inhabited Jamaica for centuries , were gradually exterminated and replaced by African slaves .\tDT JJ NNP NNS , WP VBD VBN NNP IN NNS , VBD RB VBN CC VBN IN JJ NNS .\nEngland seized the island in 1655 and established a plantation economy based on sugar , cocoa , and coffee .\tNNP VBD DT NN IN CD CC VBD DT NN NN VBN IN NN , NN , CC NN .\nThe abolition of slavery in 1834 freed a quarter million slaves , many of whom became small farmers .\tDT NN IN NN IN CD VBD DT NN CD NNS , NN IN WP VBD JJ NNS .\nJamaica gradually obtained increasing independence from Britain .\tNNP RB VBD VBG NN IN NNP .\nIn 1958 it joined other British Caribbean colonies in forming the Federation of the West Indies .\tIN CD PRP VBD JJ JJ NNP NNS IN VBG DT NNP IN DT NNP NNPS .\nJamaica gained full independence when it withdrew from the Federation in 1962 .\tNNP VBD JJ NN WRB PRP VBD IN DT NNP IN CD .\nDeteriorating economic conditions during the 1970s led to recurrent violence as rival gangs affiliated with the major political parties evolved into powerful organized crime networks involved in international drug smuggling and money laundering .\tVBG JJ NNS IN DT NNS VBD TO JJ NN IN JJ NNS VBN IN DT JJ JJ NNS VBN IN JJ JJ NN NNS VBN IN JJ NN NN CC NN NN .\nViolent crime , drug trafficking , and poverty pose significant challenges to the government today .\tJJ NN , NN NN , CC NN VBP JJ NNS TO DT NN NN .\nNonetheless , many rural and resort areas remain relatively safe and contribute substantially to the economy .\tRB , JJ JJ CC NN NNS VBP RB JJ CC VBP RB TO DT NN .\nDespite being the smallest country geographically in Central America , El Salvador has the third largest economy in the region .\tIN VBG DT JJS NN RB IN NNP NNP , NNP NNP VBZ DT JJ JJS NN IN DT NN .\nThe economy took a hit from the global recession and real GDP contracted by 3.5 % in 2009 .\tDT NN VBD DT NN IN DT JJ NN CC JJ NN VBN IN CD NN IN CD .\nThe economy began a slow recovery in 2010 on the back of improved export and remittances figures .\tDT NN VBD DT JJ NN IN CD IN DT NN IN JJ NN CC VBZ NNS .\nRemittances accounted for 16 % of GDP in 2009 , and about a third of all households receive these transfers .\tNNS VBD IN CD NN IN NN IN CD , CC IN DT NN IN DT NNS VBP DT NNS .\nIn 2006 El Salvador was the first country to ratify the Dominican Republic-Central American Free Trade Agreement ( CAFTA-DR ) , which has bolstered the export of processed foods , sugar , and ethanol , and supported investment in the apparel sector amid increased Asian competition and the expiration of the Multi-Fiber Agreement in 2005 .\tIN CD NNP NNP VBD DT JJ NN TO VB DT NNP JJ NNP NNP NNP NNP LRB NNP RRB , WDT VBZ VBN DT NN IN JJ NNS , NN , CC NN , CC VBD NN IN DT NN NN IN JJ JJ NN CC DT NN IN DT NNP NNP IN CD .\nEl Salvador has promoted an open trade and investment environment , and has embarked on a wave of privatizations extending to telecom , electricity distribution , banking , and pension funds .\tNNP NNP VBZ VBN DT JJ NN CC NN NN , CC VBZ VBN IN DT NN IN NNS VBG TO NN , NN NN , NN , CC NN NNS .\nIn late 2006 , the government and the Millennium Challenge Corporation signed a five-year , $ 461 million compact to stimulate economic growth and reduce poverty in the country 's northern region , the primary conflict zone during the civil war , through investments in education , public services , enterprise development , and transportation infrastructure .\tIN JJ CD , DT NN CC DT NNP NNP NNP VBD DT JJ , $ CD CD JJ TO VB JJ NN CC VB NN IN DT NN POS JJ NN , DT JJ NN NN IN DT JJ NN , IN NNS IN NN , JJ NNS , NN NN , CC NN NN .\nWith the adoption of the US dollar as its currency in 2001 , El Salvador lost control over monetary policy .\tIN DT NN IN DT NNP NN IN PRP$ NN IN CD , NNP NNP VBD NN IN JJ NN .\nAny counter-cyclical policy response to the downturn must be through fiscal policy , which is constrained by legislative requirements for a two-thirds majority to approve any international financing , and by already high levels of debt .\tDT JJ NN NN TO DT NN MD VB IN JJ NN , WDT VBZ VBN IN JJ NNS IN DT JJ NN TO VB DT JJ NN , CC IN RB JJ NNS IN NN .\nIran 's economy is marked by an inefficient state sector , reliance on the oil sector , which provides the majority of government revenues , and statist policies , which create major distortions throughout the system .\tNNP POS NN VBZ VBN IN DT JJ NN NN , NN IN DT NN NN , WDT VBZ DT NN IN NN NNS , CC JJ NNS , WDT VBP JJ NNS IN DT NN .\nPrivate sector activity is typically limited to small-scale workshops , farming , and services .\tJJ NN NN VBZ RB VBN TO JJ NNS , NN , CC NNS .\nPrice controls , subsidies , and other rigidities weigh down the economy , undermining the potential for private-sector-led growth .\tNN NNS , NNS , CC JJ NNS VBP IN DT NN , VBG DT NN IN JJ NN .\nSignificant informal market activity flourishes .\tJJ JJ NN NN NNS .\nThe legislature in late 2009 passed President Mahmud AHMADI-NEJAD 's bill to reduce subsidies , particularly on food and energy .\tDT NN IN JJ CD VBD NNP NNP NNP POS NN TO VB NNS , RB IN NN CC NN .\nThe bill would phase out subsidies - which benefit Iran 's upper and middle classes the most - over three to five years and replace them with cash payments to Iran 's lower classes .\tDT NN MD VB RP NNS : WDT VBP NNP POS JJ CC JJ NNS DT RBS : IN CD CC CD NNS CC VB PRP IN NN NNS TO NNP POS JJR NNS .\nHowever , the start of the program was delayed repeatedly throughout 2010 over fears of public reaction to higher prices .\tRB , DT NN IN DT NN VBD VBN RB IN CD IN NNS IN JJ NN TO JJR NNS .\nThis is the most extensive economic reform since the government implemented gasoline rationing in 2007 .\tDT VBZ DT RBS JJ JJ NN IN DT NN VBD NN VBG IN CD .\nThe recovery of world oil prices in the last year increased Iran 's oil export revenue by at least $ 10 billion over 2009 , easing some of the financial impact of the newest round of international sanctions .\tDT NN IN NN NN NNS IN DT JJ NN VBD NNP POS NN NN NN IN IN JJS $ CD CD IN CD , VBG DT IN DT JJ NN IN DT JJS NN IN JJ NNS .\nAlthough inflation has fallen substantially since the mid-2000s , Iran continues to suffer from double-digit unemployment and underemployment .\tIN NN VBZ VBN RB IN DT NNS , NNP VBZ TO VB IN JJ NN CC NN .\nUnderemployment among Iran 's educated youth has convinced many to seek jobs overseas , resulting in a significant ' brain drain . '\tNN IN NNP POS VBN NN VBZ VBN JJ TO VB NNS RB , VBG IN DT JJ `` NN NN . ``\nKazakhstan , geographically the largest of the former Soviet republics , excluding Russia , possesses enormous fossil fuel reserves and plentiful supplies of other minerals and metals , such as uranium , copper , and zinc .\tNNP , RB DT JJS IN DT JJ JJ NNS , VBG NNP , VBZ JJ NN NN NNS CC JJ NNS IN JJ NNS CC NNS , JJ IN NN , NN , CC NN .\nIt also has a large agricultural sector featuring livestock and grain .\tPRP RB VBZ DT JJ JJ NN VBG NN CC NN .\nIn 2002 Kazakhstan became the first country in the former Soviet Union to receive an investment-grade credit rating , and from 2000 through 2007 , Kazakhstan 's economy grew more than 9 % per year .\tIN CD NNP VBD DT JJ NN IN DT JJ NNP NNP TO VB DT JJ NN NN , CC IN CD IN CD , NNP POS NN VBD RBR IN CD NN IN NN .\nExtractive industries , particularly hydrocarbons and mining , have been the engines of this growth .\tJJ NNS , RB NNS CC NN , VBP VBN DT NNS IN DT NN .\nHowever , geographic limitations and decaying infrastructure present serious obstacles .\tRB , JJ NNS CC VBG NN JJ JJ NNS .\nLandlocked , with restricted access to the high seas , Kazakhstan relies on its neighbors to export its products , especially oil and gas .\tJJ , IN JJ NN TO DT JJ NNS , NNP VBZ IN PRP$ NNS TO VB PRP$ NNS , RB NN CC NN .\nAlthough its Caspian Sea ports and rail lines carrying oil have been upgraded , civil aviation has been neglected .\tIN PRP$ NNP NNP NNS CC NN NNS VBG NN VBP VBN VBN , JJ NN VBZ VBN VBN .\nTelecoms are improving , but require considerable investment , as does the information technology base .\tNNS VBP VBG , CC VBP JJ NN , IN VBZ DT NN NN NN .\nSupply and distribution of electricity can be erratic .\tNN CC NN IN NN MD VB JJ .\nAt the end of 2007 , global financial markets froze up and the loss of capital inflows to Kazakhstani banks caused a credit crunch .\tIN DT NN IN CD , JJ JJ NNS VBP RB CC DT NN IN NN NNS TO NNP NNS VBD DT NN NN .\nThe subsequent and sharp fall of oil and commodity prices in 2008 aggravated the economic situation , and Kazakhstan plunged into recession .\tDT JJ CC JJ NN IN NN CC NN NNS IN CD VBD DT JJ NN , CC NNP VBD IN NN .\nWhile the global financial crisis took a significant toll on Kazakhstan 's economy , it has rebounded well .\tIN DT JJ JJ NN VBD DT JJ NN IN NNP POS NN , PRP VBZ VBN RB .\nIn response to the crisis , Kazakhstan 's government devalued the tenge ( Kazakhstan 's currency ) to stabilize market pressures and injected $ 19 billion in economic stimulus .\tIN NN TO DT NN , NNP POS NN VBD DT NN LRB NNP POS NN RRB TO VB NN NNS CC VBD $ CD CD IN JJ NN .\nRising commodity prices have helped revive Kazakhstan 's economy , which registered 7 % growth in 2010 .\tVBG NN NNS VBP VBN VB NNP POS NN , WDT VBD CD NN NN IN CD .\nBarring a dramatic decline in oil prices , strong growth is expected to continue in 2011 .\tVBG DT JJ NN IN NN NNS , JJ NN VBZ VBN TO VB IN CD .\nDespite solid macroeconomic indicators , the government realizes that its economy suffers from an overreliance on oil and extractive industries , the so-called ' Dutch disease . '\tIN JJ JJ NNS , DT NN VBZ IN PRP$ NN VBZ IN DT NN IN NN CC JJ NNS , DT JJ `` JJ NN . ``\nIn response , Kazakhstan has embarked on an ambitious diversification program , aimed at developing targeted sectors like transport , pharmaceuticals , telecommunications , petrochemicals and food processing .\tIN NN , NNP VBZ VBN IN DT JJ NN NN , VBN IN VBG JJ NNS IN NN , NNS , NNS , NNS CC NN NN .\nLucayan Indians inhabited the islands when Christopher COLUMBUS first set foot in the New World on San Salvador in 1492 .\tJJ NNS VBD DT NNS WRB NNP NNP RB VBD NN IN DT NNP NNP IN NNP NNP IN CD .\nBritish settlement of the islands began in 1647 ; the islands became a colony in 1783 .\tJJ NN IN DT NNS VBD IN CD ; DT NNS VBD DT NN IN CD .\nSince attaining independence from the UK in 1973 , The Bahamas has prospered through tourism and international banking and investment management .\tIN VBG NN IN DT NNP IN CD , DT NNPS VBZ VBN IN NN CC JJ NN CC NN NN .\nBecause of its geography , the country is a major transshipment point for illegal drugs , particularly shipments to the US and Europe , and its territory is used for smuggling illegal migrants into the US .\tIN IN PRP$ NN , DT NN VBZ DT JJ NN NN IN JJ NNS , RB NNS TO DT NNP CC NNP , CC PRP$ NN VBZ VBN IN VBG JJ NNS IN DT NNP .\nWhat is now Ecuador formed part of the northern Inca Empire until the Spanish conquest in 1533 .\tWP VBZ RB NNP VBD NN IN DT JJ NNP NNP IN DT JJ NN IN CD .\nQuito became a seat of Spanish colonial government in 1563 and part of the Viceroyalty of New Granada in 1717 .\tNNP VBD DT NN IN JJ JJ NN IN CD CC NN IN DT NNP IN NNP NNP IN CD .\nThe territories of the Viceroyalty - New Granada ( Colombia ) , Venezuela , and Quito - gained their independence between 1819 and 1822 and formed a federation known as Gran Colombia .\tDT NNS IN DT NNP IN NNP NNP LRB NNP RRB , NNP , CC NNP : VBD PRP$ NN IN CD CC CD CC VBD DT NN VBN IN NNP NNP .\nWhen Quito withdrew in 1830 , the traditional name was changed in favor of the ' Republic of the Equator . '\tWRB NNP VBD IN CD , DT JJ NN VBD VBN IN NN IN DT `` NNP IN DT NNP . ``\nBetween 1904 and 1942 , Ecuador lost territories in a series of conflicts with its neighbors .\tIN CD CC CD , NNP VBD NNS IN DT NN IN NNS IN PRP$ NNS .\nA border war with Peru that flared in 1995 was resolved in 1999 .\tDT NN NN IN NNP WDT VBD IN CD VBD VBN IN CD .\nAlthough Ecuador marked 30 years of civilian governance in 2004 , the period was marred by political instability .\tIN NNP VBD CD NNS IN JJ NN IN CD , DT NN VBD VBN IN JJ NN .\nProtests in Quito contributed to the mid-term ouster of three of Ecuador 's last four democratically elected Presidents .\tNNS IN NNP VBD TO DT JJ NN IN CD IN NNP POS JJ CD RB VBN NNS .\nIn September 2008 , voters approved a new constitution , Ecuador 's 20th since gaining independence .\tIN NNP CD , NNS VBD DT JJ NN , NNP POS JJ IN VBG NN .\nGeneral elections , under the new constitutional framework , were held in April 2009 , and voters re-elected President Rafael CORREA .\tNNP NNS , IN DT JJ JJ NN , VBD VBN IN NNP CD , CC NNS VBD NNP NNP NNP .\nJUPITER ISSUED a proclamation to all the beasts of the forest and promised a royal reward to the one whose offspring should be deemed the handsomest .\tNNP VBD DT NN TO PDT DT NNS IN DT NN CC VBD DT JJ NN TO DT CD WP$ NN MD VB VBN DT JJS .\nThe Monkey came with the rest and presented , with all a mother 's tenderness , a flat-nosed , hairless , ill-featured young Monkey as a candidate for the promised reward .\tDT NN VBD IN DT NN CC VBN , IN PDT DT NN POS NN , DT JJ , JJ , JJ JJ NN IN DT NN IN DT JJ NN .\nA general laugh saluted her on the presentation of her son .\tDT JJ NN VBD PRP IN DT NN IN PRP$ NN .\nShe resolutely said , ' I know not whether Jupiter will allot the prize to my son , but this I do know , that he is at least in the eyes of me his mother , the dearest , handsomest , and most beautiful of all . '\tPRP RB VBD , `` PRP VBP RB IN NNP MD VB DT NN TO PRP$ NN , CC DT PRP VBP VB , IN PRP VBZ IN JJS IN DT NNS IN PRP PRP$ NN , DT JJS , JJS , CC RBS JJ IN DT . ``\nHave you been following this steroid scandal ? This is first time in baseball history that the players have more additives in them than the hot dogs .\tVB PRP VBN VBG DT JJ NN . DT VBZ JJ NN IN NN NN IN DT NNS VBP JJR NNS IN PRP IN DT JJ NNS .\nNormal people believe that if it is n't broke , do n't fix it .\tJJ NNS VBP IN IN PRP VBZ RB RB , VBP RB VB PRP .\nEngineers believe that if it is n't broke , it does n't have enough features yet .\tNNS VBP IN IN PRP VBZ RB RB , PRP VBZ RB VB JJ NNS RB .\nAt least 12 people have died in Haiti after heavy rains caused flooding around earthquake-devastated Port-au-Prince .\tIN JJS CD NNS VBP VBN IN NNP IN JJ NNS VBD VBG IN JJ NNP .\nThe floods over the last several days were particularly damaging to tent cities where people have been living following the powerful earthquake in January that destroyed much of the capital . Water and earth crashed through low-lying areas , damaging structures and scattering objects in their paths .\tDT NNS IN DT JJ JJ NNS VBD RB JJ TO JJ NNS WRB NNS VBP VBN VBG VBG DT JJ NN IN NNP WDT VBD NN IN DT NN . NN CC NN VBD IN JJ NNS , JJ NNS CC VBG NNS IN PRP$ NNS .\nAt least two children are believed to be among the dead .\tIN JJS CD NNS VBP VBN TO VB IN DT NN .\nAid groups working on earthquake relief have been ferrying supplies to the flood victims .\tNN NNS VBG IN NN NN VBP VBN VBG NNS TO DT NN NNS .\nExperts have warned since the earthquake about the consequences of heavy rains on damaged areas .\tNNS VBP VBN IN DT NN IN DT NNS IN JJ NNS IN JJ NNS .\nThe Manila-based Asian Development Bank says it will provide a $ 5,00,000 grant for a major highway project in northeastern China .\tDT JJ NNP NNP NNP VBZ PRP MD VB DT $ CD NN IN DT JJ NN NN IN JJ NNP .\nThe money will be used to upgrade or build more than half of the 828-kilometer Jixi-Nehe highway , located in the province of Heilongjiang , bordered by Russia on the north and North Korea on the east .\tDT NN MD VB VBN TO VB CC VB JJR IN NN IN DT JJ JJ NN , VBN IN DT NN IN NNP , VBN IN NNP IN DT NN CC NNP NNP IN DT NN .\nThe ADB says the road project will boost the province 's economy .\tDT NNP VBZ DT NN NN MD VB DT NN POS NN .\nHeilongjiang has the largest cultivated land area in China along with heavy industry and timber resources .\tNNP VBZ DT JJS JJ NN NN IN NNP IN IN JJ NN CC NN NNS .\nIt is heavily dependent on foreign trade .\tPRP VBZ RB JJ IN JJ NN .\nThe bank says inadequate transportation conditions in the province also hurt the rural poor by restricting their access to basic goods and services .\tDT NN VBZ JJ NN NNS IN DT NN RB VBD DT JJ NN IN VBG PRP$ NN TO JJ NNS CC NNS .\nThe United Nations says fighting between armed militants and government troops has driven nearly 4,000 people from their homes in Congo 's eastern Ituri province .\tDT NNP NNP VBZ VBG IN JJ NNS CC NN NNS VBZ VBN RB CD NNS IN PRP$ NNS IN NNP POS JJ NNP NN .\nA spokesman for the U.N. peacekeeping mission in the region , Floruan Barbey , said the displaced people have taken shelter in a church and school in the town of Fataki , near the provincial capital Bunia .\tDT NN IN DT NNP NN NN IN DT NN , NNP NNP , VBD DT JJ NNS VBP VBN NN IN DT NN CC NN IN DT NN IN NNP , IN DT JJ NN NNP .\nThe spokesman said the militants and government troops engaged in sporadic fighting this week .\tDT NN VBD DT NNS CC NN NNS VBD IN JJ NN DT NN .\nIt was unclear if there were any casualties .\tPRP VBD JJ IN EX VBD DT NNS .\nHe says the fighters are apparently loyal to rebel leader Peter Karim .\tPRP VBZ DT NNS VBP RB JJ TO JJ NN NNP NNP .\nTalks are underway between Karim and the government over how to demobilize his forces .\tNNS VBP JJ IN NNP CC DT NN IN WRB TO VB PRP$ NNS .\nCongo 's government is struggling to rebuild following a civil war in which some four million people died , mostly from hunger and disease .\tNNP POS NN VBZ VBG TO VB VBG DT JJ NN IN WDT DT CD CD NNS VBD , RB IN NN CC NN .\nThe United Nations has about 17,000 troops in the DRC to assist the government and maintain peace .\tDT NNP NNP VBZ IN CD NNS IN DT NNP TO VB DT NN CC VB NN .\nThe White House has rejected calls by opposition Democrats for an independent commission to probe allegations of detainee abuse at the U.S. detention facility at Guantanamo Bay , Cuba .\tDT NNP NNP VBZ VBN NNS IN NN NNS IN DT JJ NN TO VB NNS IN NN NN IN DT NNP NN NN IN NNP NNP , NNP .\nWhite House spokesman Scott McClellan told reporters Tuesday the Department of Defense is already probing such allegations .\tNNP NNP NN NNP NNP VBD NNS NNP DT NNP IN NNP VBZ RB VBG JJ NNS .\nOn Tuesday , Congressional Democrats presented draft legislation that would create an independent commission , which they say would serve the national interest .\tIN NNP , NNP NNPS VBD NN NN WDT MD VB DT JJ NN , WDT PRP VBP MD VB DT JJ NN .\nSome lawmakers have called for closing down the Guantanamo prison , following recent reports by human rights groups of detainee abuse .\tDT NNS VBP VBN IN VBG RP DT NNP NN , VBG JJ NNS IN JJ NNS NNS IN NN NN .\nPresident Bush has not ruled out the possibility , but Vice President Dick Cheney said last week there are no plans to shut it down .\tNNP NNP VBZ RB VBN IN DT NN , CC NNP NNP NNP NNP VBD JJ NN EX VBP DT NNS TO VB PRP RP .\nLast month , the U.S. military said it found five instances of mishandling of the Koran , the Muslim holy book , at Guantanamo .\tJJ NN , DT NNP NN VBD PRP VBD CD NNS IN NN IN DT NNP , DT NNP JJ NN , IN NNP .\nIt said guards were punished in two cases .\tPRP VBD NNS VBD VBN IN CD NNS .\nThe All India Football Federation ( AIFF ) has appointed a new national team manager ahead of next month 's Asian Cup football tournament after Pradip Choudhury walked out , following reported differences with coach Bob Houghton .\tDT NNP NNP NNP NNP LRB NNP RRB VBZ VBN DT JJ JJ NN NN RB IN JJ NN POS NNP NNP NN NN IN NNP NNP VBD RP , VBG VBN NNS IN NN NNP NNP .\nRaul Carmo Fernandes was named as the replacement after Choudhury left the Indian training camp in Dubai , United Arab Emirates .\tNNP NNP NNP VBD VBN IN DT NN IN NNP VBD DT JJ NN NN IN NNP , NNP NNP NNPS .\nThe loss of Choudhury , who was popular with players , has apparently negatively impacted the team .\tDT NN IN NNP , WP VBD JJ IN NNS , VBZ RB RB VBN DT NN .\nAIFF officials have announced they will travel to Dubai Wednesday in an attempt to boost morale .\tNNP NNS VBP VBN PRP MD VB TO NNP NNP IN DT NN TO VB NN .\nThe team put out a statement saying it believed that Choudhury should have set aside his personal differences with the coach for the good of the team .\tDT NN VBD RP DT NN VBG PRP VBD IN NNP MD VB VBN RP PRP$ JJ NNS IN DT NN IN DT NN IN DT NN .\nIndia has been drawn into Group C at the Asian Cup -- where it will face Australia , South Korea and Bahrain .\tNNP VBZ VBN VBN IN NNP NNP IN DT NNP NNP : WRB PRP MD VB NNP , NNP NNP CC NNP .\nThe tournament will be held in Doha from January 7 to 29 .\tDT NN MD VB VBN IN NNP IN NNP CD TO CD .\nAt 17 , DeAndre Way became known around the world as Soulja Boy on the success of his number one hit , ' Crank That . '\tIN CD , NNP NNP VBD VBN IN DT NN IN NNP NNP IN DT NN IN PRP$ NN CD NN , `` NNP NNP . ``\nThe song was also number one for seven weeks on the iTunes digital download site in September 2007 .\tDT NN VBD RB NN CD IN CD NNS IN DT NNP JJ NN NN IN NNP CD .\nDespite the criticism from other rap stars like 50 Cent and Jay-Z , Soulja Boy says the numbers speak for themselves .\tIN DT NN IN JJ NN NNS IN NNP NNP CC NNP , NNP NNP VBZ DT NNS VBP IN PRP .\nLarry London caught up with Soulja Boy on tour in Washington .\tNNP NNP VBD RP IN NNP NNP IN NN IN NNP .\nThe New York Times says a controversial government surveillance program has monitored a handful of purely domestic communications .\tDT NNP NNP NNP VBZ DT JJ NN NN NN VBZ VBN DT NN IN RB JJ NNS .\nUnidentified officials say the National Security Agency intercepted the communications apparently by accident .\tJJ NNS VBP DT NNP NNP NNP VBD DT NNS RB IN NN .\nThe White House says President Bush 's order setting up the domestic surveillance program applied only to cases where one party on a call or e-mail message was outside the United States .\tDT NNP NNP VBZ NNP NNP POS NN VBG RP DT JJ NN NN VBD RB TO NNS WRB CD NN IN DT NN CC JJ NN VBD IN DT NNP NNPS .\nBut telecommunications experts say with the globalized nature of communications networks , it is difficult to pinpoint exactly where a message originated from .\tCC NN NNS VBP IN DT JJ NN IN NNS NNS , PRP VBZ JJ TO VB RB WRB DT NN VBN IN .\nIn a separate development , The Washington Post says a federal judge has resigned from the secret court that oversees government surveillance in intelligence cases , apparently due to deep concerns that the administration 's actions may have tainted the court 's work .\tIN DT JJ NN , DT NNP NNP VBZ DT JJ NN VBZ VBN IN DT JJ NN WDT VBZ NN NN IN NN NNS , RB JJ TO JJ NNS IN DT NN POS NNS MD VB VBN DT NN POS NN .\nWorld oil prices continued declining Monday as members of the Organization of Petroleum Exporting Countries said they would consider raising oil output quotas to continue easing prices .\tNNP NN NNS VBD VBG NNP IN NNS IN DT NNP IN NNP NNP NNPS VBD PRP MD VB VBG NN NN NNS TO VB VBG NNS .\nCrude oil for May delivery dropped as low as $ 52.1 a barrel in New York trading on Monday .\tJJ NN IN NNP NN VBD RB JJ IN $ CD DT NN IN NNP NNP NN IN NNP .\nThat is down sharply from a week ago when crude oil futures hit a record high price of $ 58.28 a barrel .\tDT VBZ RB RB IN DT NN RB WRB JJ NN NNS VBD DT NN JJ NN IN $ CD DT NN .\nThe decline follows last week 's U.S. government report showing an increasing supply of crude oil in the U.S. market , and growing refinery operations to turn out gasoline .\tDT NN VBZ JJ NN POS NNP NN NN VBG DT VBG NN IN JJ NN IN DT NNP NN , CC VBG NN NNS TO VB RP NN .\nMeantime , U.S. retail gasoline prices hit a record high average of $ 2.29 a gallon or about 60 cents a liter .\tRB , NNP JJ NN NNS VBD DT NN JJ NN IN $ CD DT NN CC RB CD NNS DT NN .\nThe lingering high prices are thought to reflect the time it takes to refine crude oil into gasoline .\tDT VBG JJ NNS VBP VBN TO VB DT NN PRP VBZ TO VB JJ NN IN NN .\nJapan 's foreign minister says his country and North Korea will resume bilateral talks on November 3 in Beijing .\tNNP POS JJ NN VBZ PRP$ NN CC NNP NNP MD VB JJ NNS IN NNP CD IN NNP .\nJapanese Foreign Minister Nobutaka Machimura said Wednesday the talks will include North Korea 's nuclear weapons program and the abductee issue .\tJJ NNP NNP NNP NNP VBD NNP DT NNS MD VB NNP NNP POS JJ NNS NN CC DT JJ NN .\nThe North has admited abducting 13 Japanese citizens to help train North Korean spies .\tDT NNP VBZ VBN VBG CD JJ NNS TO VB VB JJ JJ NNS .\nFive of the abductees have returned to Japan .\tCD IN DT NNS VBP VBN TO NNP .\nPyongyang says the other eight are dead .\tNNP VBZ DT JJ CD VBP JJ .\nBilateral talks at government level have been held up since late last year when Japan accused North Korea of lying over the fate of the abductees .\tNNP NNS IN NN NN VBP VBN VBN RP IN JJ JJ NN WRB NNP VBD NNP NNP IN VBG IN DT NN IN DT NNS .\nMr. Machimura said he expects North Korea to also bring up the issue of reparation for Japan 's colonial rule of Korea , from 1910 to 1945 .\tNNP NNP VBD PRP VBZ NNP NNP TO RB VB RP DT NN IN NN IN NNP POS JJ NN IN NNP , IN CD TO CD .\nHundreds of people marched through downtown Hong Kong Sunday to protest Japan 's wartime atrocities .\tNNS IN NNS VBD IN NN NNP NNP NNP TO VB NNP POS NN NNS .\nDemonstrators set out from an urban park and wound their way through some of the city 's busiest streets to government headquarters in the central business district .\tNNS VBD RP IN DT JJ NN CC VBD PRP$ NN IN DT IN DT NN POS JJS NNS TO NN NNS IN DT JJ NN NN .\nThey carried banners denouncing Japanese militarism and calling for Japan 's withdrawal from disputed islands that are also claimed by China .\tPRP VBD NNS VBG JJ NN CC NN IN NNP POS NN IN JJ NNS WDT VBP RB VBN IN NNP .\nUnlike some of the protests in mainland China in the past weeks , the march in Hong Kong was peaceful .\tIN DT IN DT NNS IN JJ NNP IN DT JJ NNS , DT NN IN NNP NNP VBD JJ .\nOrganizers said the march was meant to protest Japanese militarism and not the Japanese people .\tNNS VBD DT NN VBD VBN TO VB JJ NN CC RB DT JJ NNS .\nMany Chinese feel that Tokyo is not contrite enough about its wartime record in China , when Japanese troops slaughtered tens of thousands of Chinese .\tJJ JJ NN IN NNP VBZ RB JJ RB IN PRP$ NN NN IN NNP , WRB JJ NNS VBD NNS IN NNS IN NNS .\nFinance ministers and central bank governors of the G-7 countries have called on the World Trade Organization to make significant progress toward a global trade agreement at a summit in Hong Kong later this month .\tNNP NNS CC JJ NN NNS IN DT NN NNS VBP VBN IN DT NNP NNP NNP TO VB JJ NN IN DT JJ NN NN IN DT NN IN NNP NNP RB DT NN .\nIn a statement at the conclusion of two days of talks in London , officials from the world 's seven leading industrialized countries said the WTO meeting will be a critical step in seeking agreement on a comprehensive package for developing countries .\tIN DT NN IN DT NN IN CD NNS IN NNS IN NNP , NNS IN DT NN POS CD JJ JJ NNS VBD DT NNP NN MD VB DT JJ NN IN VBG NN IN DT JJ NN IN VBG NNS .\nThe G-7 countries are Britain , Canada , France , Germany , Japan , Italy , and the United States .\tDT NN NNS VBP NNP , NNP , NNP , NNP , NNP , NNP , CC DT NNP NNPS .\nTrade negotiators are working on a binding treaty that would expand the global economy by lowering trade barriers across all sectors .\tNNP NNS VBP VBG IN DT NN NN WDT MD VB DT JJ NN IN VBG NN NNS IN DT NNS .\nDisputes over agricultural subsidies are the major stumbling block in the current round launched in Doha , Qatar in 2001 .\tNNS IN JJ NNS VBP DT JJ NN NN IN DT JJ NN VBN IN NNP , NNP IN CD .\nThe London meeting expressed hope for a final accord by the end of next year .\tDT NNP NN VBD NN IN DT JJ NN IN DT NN IN JJ NN .\nThe U.S. military in Afghanistan says a U.S. Marine and an American solider were killed in separate insurgent attacks Monday .\tDT NNP NN IN NNP VBZ DT NNP NN CC DT JJ NN VBD VBN IN JJ JJ NNS NNP .\nThe military says the marine was killed when suspected Taleban insurgents fired rocket-propelled grenades and mortars at a U.S. base near the eastern city of Asadabad .\tDT JJ VBZ DT NN VBD VBN WRB VBN NNP NNS VBD JJ NNS CC NNS IN DT NNP NN IN DT JJ NN IN NNP .\nThe military says the solider was killed when his unit came under similar attack near the southern city of Kandahar .\tDT JJ VBZ DT NN VBD VBN WRB PRP$ NN VBD IN JJ NN IN DT JJ NN IN NNP .\nThe attacks occured just a week after Afghanistan held landmark general elections .\tDT NNS VBD RB DT NN IN NNP VBD JJ JJ NNS .\nThe election took place without any major violence despite Taleban threats to disrupt the vote .\tDT NN VBD NN IN DT JJ NN IN NNP NNS TO VB DT NN .\nIraqi police say insurgents have killed at least 40 people and wounded dozens more in attacks just four days before a national referendum on a new constitution .\tJJ NNS VBP NNS VBP VBN IN JJS CD NNS CC VBD NNS RBR IN NNS RB CD NNS IN DT JJ NN IN DT JJ NN .\nIn the deadliest attack Tuesday , a suicide car bomber struck a crowded market in the town of Tal Afar , near the Syrian border , killing at least 30 people and wounding 45 others .\tIN DT JJS NN NNP , DT NN NN NN VBD DT JJ NN IN DT NN IN NNP NNP , IN DT JJ NN , VBG IN JJS CD NNS CC VBG CD NNS .\nIn Kirkuk , at least three people were killed in a drive-by shooting , and in Baghdad a suicide car bomber killed at least seven people at an Iraqi army checkpoint .\tIN NNP , IN JJS CD NNS VBD VBN IN DT JJ NN , CC IN NNP DT NN NN NN VBD IN JJS CD NNS IN DT JJ NN NN .\nU.S. and Iraqi officials have repeatedly warned that insurgents - many of whom are Sunni Arabs - will step up attacks to undermine Saturday 's constitutional referendum .\tNNP CC JJ NNS VBP RB VBN IN NNS IN NN IN WP VBP NNP NNS : MD VB RP NNS TO VB NNP POS JJ NN .\nShi'ite and Kurdish political leaders have been pursuing last-minute negotiations with Sunni political leaders who are concerned their community will be sidelined under the constitution 's proposed federal system .\tNNP CC NNP JJ NNS VBP VBN VBG JJ NNS IN NNP JJ NNS WP VBP VBN PRP$ NN MD VB VBN IN DT NN POS VBN JJ NN .\nJames Brown , revered as the ' Godfather of Soul ' , will undergo surgery for prostate cancer next week .\tNNP NNP , VBN IN DT `` NNP IN NNP `` , MD VB NN IN NN NN JJ NN .\nThe 71-year-old musician said in a statement he has overcome a lot of things in his life , and he will overcome this as well .\tDT JJ NN VBD IN DT NN PRP VBZ VBN DT NN IN NNS IN PRP$ NN , CC PRP MD VB DT RB RB .\nJames Brown finished a two-week tour in Canada earlier this week .\tNNP NNP VBD DT JJ NN IN NNP RBR DT NN .\nIn January , he is set to release an autobiography entitled I Feel Good :\tIN NNP , PRP VBZ VBN TO VB DT NN VBD PRP NNP NNP :\nA Memoir of a Life of Soul .\tDT NNP IN DT NN IN NNP .\nThe influential soul , rock , rap and funk musician has made more than 50 albums , selling millions worldwide , since he broke onto the scene with ' Please , Please , Please ' in 1956 .\tDT JJ NN , NN , NN CC NN NN VBZ VBN JJR IN CD NNS , VBG NNS JJ , IN PRP VBD IN DT NN IN `` NNP , NNP , NNP `` IN CD .\nEgypt has begun the military trial of at least 33 members of the banned opposition group , the Muslim Brotherhood .\tNNP VBZ VBN DT JJ NN IN IN JJS CD NNS IN DT VBN NN NN , DT NNP NNP .\nDefense lawyers boycotted Thursday 's opening session because they say they were not informed that the trial was starting .\tNN NNS VBD NNP POS NN NN IN PRP VBP PRP VBD RB VBN IN DT NN VBD VBG .\nThe charges against the Muslim Brotherhood members are related to money laundering and terrorism .\tDT NNS IN DT NNP NNP NNS VBP VBN TO NN NN CC NN .\nThe defendants include the Brotherhood 's third highest ranking member , Khayrat el-Shater , who was arrested in December during a crackdown on the organization .\tDT NNS VBP DT NNP POS JJ JJS JJ NN , NNP NNP , WP VBD VBN IN NNP IN DT NN IN DT NN .\nThe Muslim Brotherhood is officially banned in Egypt .\tDT NNP NNP VBZ RB VBN IN NNP .\nBut the group won nearly one-fifth of the seats in the lower house of parliament in 2005 by fielding candidates as independents .\tCC DT NN VBD RB JJ IN DT NNS IN DT JJR NN IN NN IN CD IN VBG NNS IN NNS .\nA published report says U.S. Defense Secretary Donald Rumsfeld has created an espionage unit in the Pentagon that gives him wide authority over spy operations abroad .\tDT JJ NN VBZ NNP NNP NNP NNP NNP VBZ VBN DT NN NN IN DT NNP WDT VBZ PRP JJ NN IN NN NNS RB .\nThe Washington Post says the Strategic Support Branch reaches into what has normally been Central Intelligence Agency territory .\tDT NNP NNP VBZ DT NNP NNP NNP VBZ IN WP VBZ RB VBN NNP NNP NNP NN .\nThe report in Sunday 's newspaper says the unit has been secretly operating for two years in Iraq , Afghanistan and elsewhere .\tDT NN IN NNP POS NN VBZ DT NN VBZ VBN RB VBG IN CD NNS IN NNP , NNP CC RB .\nA Defense Department statement released Sunday denies the existence of such a unit , but says it is consulting with other agencies in the U.S. intelligence community , including the CIA , to improve human intelligence capability .\tDT NNP NNP NN VBN NNP VBZ DT NN IN JJ DT NN , CC VBZ PRP VBZ VBG IN JJ NNS IN DT NNP NN NN , VBG DT NNP , TO VB JJ NN NN .\nThe Post says its information comes from interviews with participants , and documents obtained by the newspaper .\tDT NNP VBZ PRP$ NN VBZ IN NNS IN NNS , CC NNS VBN IN DT NN .\nThe unit is said to deploy special operations forces and experts such as linguists and interrogators into both friendly and unfriendly nations .\tDT NN VBZ VBN TO VB JJ NNS NNS CC NNS JJ IN NNS CC NNS IN DT JJ CC JJ NNS .\nThe man accused of masterminding Rwanda 's 1994 genocide says the accusation a malicious attempt to destroy his name .\tDT NN VBN IN VBG NNP POS CD NN VBZ DT NN DT JJ NN TO VB PRP$ NN .\nColonel Theoneste Bagosora , the former director of Rwanda 's Defense Ministry , began testifying Monday before a United Nations war crimes court in Tanzania .\tNNP NNP NNP , DT JJ NN IN NNP POS NNP NNP , VBD VBG NNP IN DT NNP NNP NN NNS NN IN NNP .\nHe denied planning the government-sponsored killing of some 8,00,000 minority Tutsis and their Hutu sympathizers .\tPRP VBD VBG DT JJ NN IN DT CD NN NN CC PRP$ NNP NNS .\nThe prosecution says Colonel Bagosora ordered military commanders to start the killings shortly after President Juvenal Habyarimana was killed in a plane crash in April of 1994 .\tDT NN VBZ NNP NNP VBD JJ NNS TO VB DT NNS RB IN NNP NNP NNP VBD VBN IN DT NN NN IN NNP IN CD .\nColonel Bagosora is being tried with three military codefendants on charges of genocide and crimes against humanity .\tNNP NNP VBZ VBG VBN IN CD JJ NNS IN NNS IN NN CC NNS IN NN .\nThe U.N. Security Council established the International Criminal Tribunal for Rwanda in November , 1994 .\tDT NNP NNP NNP VBD DT NNP NNP NNP IN NNP IN NNP , CD .\nIt has so far convicted 22 people and acquitted three others .\tPRP VBZ RB RB VBN CD NNS CC VBN CD NNS .\nOil futures are again breaking records after surpassing $ 110 a barrel on March 13 in New York .\tNN NNS VBP RB VBG NNS IN VBG $ CD DT NN IN NNP CD IN NNP NNP .\nDespite evidence to suggest that high fuel prices are not justified -- weakening demand and growing supplies have been unable to stop skyrocketing prices .\tIN NN TO VB IN JJ NN NNS VBP RB JJ : VBG NN CC VBG NNS VBP VBN JJ TO VB VBG NNS .\nWith gasoline prices expected to rise even more in the next few months , consumers are starting to lose patience .\tIN NN NNS VBN TO VB RB RBR IN DT JJ JJ NNS , NNS VBP VBG TO VB NN .\nAnd as VOA 's Mil Arcega reports , it is not just average motorists who are hurting .\tCC IN NNP POS NNP NNP VBZ , PRP VBZ RB RB JJ NNS WP VBP VBG .\nPresident Bush will deliver a speech Tuesday outlining the administration 's goals for Iraq in the coming year .\tNNP NNP MD VB DT NN NNP VBG DT NN POS NNS IN NNP IN DT JJ NN .\nIn a speech to a gathering of war veterans in Washington , Mr. Bush will discuss the ongoing process of rebuilding Iraq 's economy , establishing democracy and training Iraqi security forces .\tIN DT NN TO DT NN IN NN NNS IN NNP , NNP NNP MD VB DT JJ NN IN VBG NNP POS NN , VBG NN CC NN JJ NN NNS .\nWhite House spokesman Scott McClellan says the president will talk about how the administration has ' learned from experience ' in all of these areas .\tNNP NNP NN NNP NNP VBZ DT NN MD VB IN WRB DT NN VBZ `` VBN IN NN `` IN DT IN DT NNS .\nHe also says Mr. Bush will call on the international community to fulfill its financial pledges to Iraq .\tPRP RB VBZ NNP NNP MD VB IN DT JJ NN TO VB PRP$ JJ NNS TO NNP .\nThe president gave a series of speeches late last year aimed at restoring public confidence in his handling of Iraq , which has plummeted due to the ongoing violence and instability in the country .\tDT NN VBD DT NN IN NNS RB JJ NN VBN IN VBG JJ NN IN PRP$ NN IN NNP , WDT VBZ VBN JJ TO DT JJ NN CC NN IN DT NN .\nMr. McClellan notes that 2006 will be ' a time of more testing and sacrifice . '\tNNP NNP VBZ IN CD MD VB `` DT NN IN JJR NN CC NN . ``\nThe Venezuelan government has taken over the Bancoro bank , the 13th financial institution the government has seized in the last year .\tDT JJ NN VBZ VBN IN DT NNP NN , DT JJ JJ NN DT NN VBZ VBN IN DT JJ NN .\nVenezuelan Finance Minister Jorge Giordani , speaking Friday in Caracas , said that the government decided to intervene in the operations of Bancoro because of liquidity problems and significant financial losses .\tJJ NNP NNP NNP NNP , VBG NNP IN NNP , VBD IN DT NN VBD TO VB IN DT NNS IN NNP IN IN NN NNS CC JJ JJ NNS .\nVenezuelan President Hugo Chavez says he will nationalize any bank that fails to meet government lending guidelines or is in financial trouble .\tJJ NNP NNP NNP VBZ PRP MD VB DT NN WDT VBZ TO VB NN NN NNS CC VBZ IN JJ NN .\nThe government began taking over small and midsized banks in November of 2009 , citing irregularities .\tDT NN VBD VBG RP JJ CC JJ NNS IN NNP IN CD , VBG NNS .\nIn recent years , Mr. Chavez has nationalized firms in many sectors , including petroleum , communications , electricity , agriculture and banking .\tIN JJ NNS , NNP NNP VBZ VBN NNS IN JJ NNS , VBG NN , NNS , NN , NN CC NN .\nCritics say he is trying to model Venezuela on communist-led Cuba , but Mr. Chavez has said he is working to improve the lives of the country 's impoverished majority .\tNNS VBP PRP VBZ VBG TO VB NNP IN JJ NNP , CC NNP NNP VBZ VBN PRP VBZ VBG TO VB DT NNS IN DT NN POS JJ NN .\nA Kuwaiti oil and gas producer says it has discovered nearly 142 billion cubic meters of recoverable natural gas in the southern U.S. state of Texas .\tDT JJ NN CC NN NN VBZ PRP VBZ VBN RB CD CD JJ NNS IN JJ JJ NN IN DT JJ NNP NN IN NNP .\nThe company , Aref Energy , said Monday that its U.S. project manager is Texas-based energy giant Halliburton .\tDT NN , NNP NNP , VBD NNP IN PRP$ NNP NN NN VBZ JJ NN NN NNP .\nAref Energy holds a 50 percent share in the operation in south-central Texas .\tNNP NNP VBZ DT CD NN NN IN DT NN IN JJ NNP .\nThe company has not named its partners in the operation .\tDT NN VBZ RB VBN PRP$ NNS IN DT NN .\nHalliburton says it is taking measures to start gas production operations early next year .\tNNP VBZ PRP VBZ VBG NNS TO VB NN NN NNS RB JJ NN .\nAref says a survey by the joint venture indicates a total of 538 billion cubic meters of natural gas at the Texas site .\tNNP VBZ DT NN IN DT JJ NN VBZ DT NN IN CD CD JJ NNS IN JJ NN IN DT NNP NN .\nPakistan 's opposition has held a ' black day ' of protests across the country after President Pervez Musharraf 's decision to retain the powerful post of army chief .\tNNP POS NN VBZ VBN DT `` JJ NN `` IN NNS IN DT NN IN NNP NNP NNP POS NN TO VB DT JJ NN IN NN NN .\nMembers of an Islamic alliance and other parties took to the streets Saturday in all major cities and towns , where speakers denounced General Musharraf for breaking his promise .\tNNS IN DT JJ NN CC JJ NNS VBD TO DT NNS NNP IN DT JJ NNS CC NNS , WRB NNS VBD NNP NNP IN VBG PRP$ NN .\nThe rallies came two days after the Pakistani leader said in a televised address he had decided to retain both portfolios for the sake of the economic and political stability of the country .\tDT NNS VBD CD NNS IN DT JJ NN VBD IN DT JJ NN PRP VBD VBN TO VB DT NNS IN DT NN IN DT JJ CC JJ NN IN DT NN .\nGeneral Musharraf , who seized power in a bloodless coup in 1999 , has angered the religious right by going back on a pledge he made to win its support for constitutional amendments that gave him sweeping powers .\tNNP NNP , WP VBD NN IN DT JJ NN IN CD , VBZ VBN DT JJ NN IN VBG RB IN DT NN PRP VBD TO VB PRP$ NN IN JJ NNS WDT VBD PRP JJ NNS .\nItalian President Carlo Azeglio Ciampi is holding formal talks with political leaders Thursday , the first step in forming a new government .\tJJ NNP NNP NNP NNP VBZ VBG JJ NNS IN JJ NNS NNP , DT JJ NN IN VBG DT JJ NN .\nPrime Minister Silvio Berlusconi resigned Wednesday , two weeks after his center-right coalition suffered a crushing defeat in regional elections , losing 11 of 13 regions .\tNNP NNP NNP NNP VBD NNP , CD NNS IN PRP$ JJ NN VBD DT VBG NN IN JJ NNS , VBG CD IN CD NNS .\nOne party pulled out of the coalition last week and another has threatened to also drop out .\tCD NN VBD IN IN DT NN JJ NN CC DT VBZ VBN TO RB VB RP .\nThe president is expected later this week to ask Mr. Berlusconi to form a new cabinet .\tDT NN VBZ VBN RB DT NN TO VB NNP NNP TO VB DT JJ NN .\nEarlier , the prime minister told parliament he is stepping down with plans to form a new and stronger coalition .\tRB , DT JJ NN VBD NN PRP VBZ VBG RP IN NNS TO VB DT JJ CC JJ NN .\nHe praised the outgoing government for what he called its ' secure leadership ' over the past four years which he says increased Italian prestige on the world stage .\tPRP VBD DT JJ NN IN WP PRP VBD PRP$ `` JJ NN `` IN DT JJ CD NNS WDT PRP VBZ VBN JJ NN IN DT NN NN .\nIndonesia says it will carry out a third nationwide polio vaccination drive in November to curb the spread of the crippling virus in children .\tNNP VBZ PRP MD VB RP DT JJ JJ NN NN NN IN NNP TO VB DT NN IN DT JJ NN IN NNS .\nHealth Minister Siti Fadilah Supari said Tuesday the next round of free vaccinations will be held November 27 .\tNNP NNP NNP NNP NNP VBD NNP DT JJ NN IN JJ NNS MD VB VBN NNP CD .\nShe said about 97 percent of children under five years of age were immunized during two earlier drives .\tPRP VBD IN CD NN IN NNS IN CD NNS IN NN VBD VBN IN CD JJR NNS .\nIndonesia is battling its first polio outbreak in a decade .\tNNP VBZ VBG PRP$ JJ NN NN IN DT NN .\nAbout 264 children have been diagnosed with the waterborne virus since it was detected in March .\tIN CD NNS VBP VBN VBN IN DT JJ NN IN PRP VBD VBN IN NNP .\nOfficials today said a child in tsunami-devastated Aceh province , where thousands remain in refugee camps , is among the latest to develop polio .\tNNS NN VBD DT NN IN JJ NNP NN , WRB NNS VBP IN NN NNS , VBZ IN DT JJS TO VB NN .\nHealth experts are concerned that the polio virus could spread from Indonesia to other parts of Southeast Asia .\tNNP NNS VBP VBN IN DT NN NN MD VB IN NNP TO JJ NNS IN NNP NNP .\nA British soldier facing court martial in Britain has pleaded guilty to committing the war crime of treating detainees inhumanely while serving in Iraq .\tDT JJ NN VBG NN NN IN NNP VBZ VBN JJ TO VBG DT NN NN IN VBG NNS RB IN VBG IN NNP .\nCorporal Donald Payne entered his plea today on a military base southwest of London .\tNNP NNP NNP VBD PRP$ NN NN IN DT JJ NN NN IN NNP .\nHe is one of seven British soldiers charged in the 2003 death of an Iraqi hotel receptionist held in British custody in the southern Iraqi city of Basra .\tPRP VBZ CD IN CD JJ NNS VBN IN DT CD NN IN DT JJ NN NN VBN IN JJ NN IN DT JJ JJ NN IN NNP .\nThe remaining six defendants pleaded not guilty to all charges .\tDT VBG CD NNS VBD RB JJ TO DT NNS .\nAuthorities say the receptionist sustained more than 90 injuries .\tNNS VBP DT NN VBD JJR IN CD NNS .\nA second detainee was described as so badly beaten that he nearly died of kidney failure .\tDT JJ NN VBD VBN IN RB RB VBN IN PRP RB VBD IN NN NN .\nCorporal Payne has pleaded not guilty to the more serious charges of manslaughter and obstructing justice .\tNNP NNP VBZ VBN RB JJ TO DT RBR JJ NNS IN NN CC VBG NN .\nA military prosecutor told the tribunal today Tuesday his case will show systematic abuse and unacceptable violence against prisoners .\tDT JJ NN VBD DT NN NN NNP PRP$ NN MD VB JJ NN CC JJ NN IN NNS .\nThe trial is expected to last at least four months .\tDT NN VBZ VBN TO VB IN JJS CD NNS .\nMullah Mohammad Omar , the Taleban leader who fled to Pakistan after U.S.-led forces routed his fighters in Afghanistan , has resurfaced with a message asking all Muslims to join his fight .\tNNP NNP NNP , DT NNP NN WP VBD TO NNP IN JJ NNS VBD PRP$ NNS IN NNP , VBZ VBN IN DT NN VBG DT NNS TO VB PRP$ NN .\nMullah Omar dropped out of sight in late 2001 , but he is believed to be in hiding somewhere near the Afghan-Pakistani border .\tNNP NNP VBD IN IN NN IN JJ CD , CC PRP VBZ VBN TO VB IN VBG RB IN DT JJ NN .\nIn a message distributed during the past several days in the southern Afghan city of Kandahar , his former stronghold , the Taleban leader said his forces are intensifying their fight against those whom he called foreign occupiers of their homeland .\tIN DT NN VBN IN DT JJ JJ NNS IN DT JJ JJ NN IN NNP , PRP$ JJ NN , DT NNP NN VBD PRP$ NNS VBP VBG PRP$ NN IN DT WP PRP VBD JJ NNS IN PRP$ NN .\nFootball 's ( soccer 's ) world governing body FIFA has fined the Mexican football federation after two of its players were expelled from last month 's Confederations Cup in Germany following positive doping tests .\tNNP POS LRB NN POS RRB NN VBG NN NNP VBZ VBN DT JJ NN NN IN CD IN PRP$ NNS VBD VBN IN JJ NN POS NNPS NNP IN NNP VBG JJ NN NNS .\nIn a statement Wednesday , FIFA said it fined the Mexican Federation more than $ 5,83,000 after Aaron Galindo and Salvador Carmona tested positive for the steroid nandrolone .\tIN DT NN NNP , NNP VBD PRP VBD DT JJ NNP JJR IN $ CD IN NNP NNP CC NNP NNP VBD JJ IN DT JJ NN .\nThe Mexican Federation tested the players before the tournament , which began on June 15 .\tDT JJ NNP VBD DT NNS IN DT NN , WDT VBD IN NNP CD .\nHowever , the men were not expelled until June 22 , after they played in Mexico 's 02-Jan victory over Japan and 1-0 win over Brazil .\tRB , DT NNS VBD RB VBN IN NNP CD , IN PRP VBD IN NNP POS JJ NN IN NNP CC JJ NN IN NNP .\nMexico lost to Argentina on penalties in the tournament semi-final .\tNNP VBD TO NNP IN NNS IN DT NN JJ .\nPakistani officials say a roadside bomb killed seven Pakistani soldiers in the northwest Saturday , as the army pushed forward with its offensive against Taliban militants .\tJJ NNS VBP DT NN NN VBD CD JJ NNS IN DT JJ NNP , IN DT NN VBD RB IN PRP$ NN IN NNP NNS .\nOfficials say the bomb attack occurred in the Khyber tribal area , home to the Khyber Pass , the main route for moving supplies to international forces fighting in Afghanistan .\tNNS VBP DT NN NN VBD IN DT NNP JJ NN , NN TO DT NNP NNP , DT JJ NN IN VBG NNS TO JJ NNS VBG IN NNP .\nThe attack came as Pakistani warplanes bombed Taliban bases in the tribal regions .\tDT NN VBD IN JJ NNS VBD NNP NNS IN DT JJ NNS .\nThe army said troops killed 33 militants in the latest operations .\tDT NN VBD NNS VBD CD NNS IN DT JJS NNS .\nIt said forces are closing in on key Taliban strongholds in the South Waziristan region , where it launched its offensive two weeks ago .\tPRP VBD NNS VBP VBG IN IN JJ NNP NNS IN DT NNP NNP NN , WRB PRP VBD PRP$ NN CD NNS RB .\nThe military 's latest report comes a day after U.S. Secretary of State Hillary Clinton ended her confrontational visit to Pakistan .\tDT NN POS JJS NN VBZ DT NN IN NNP NNP IN NNP NNP NNP VBD PRP$ JJ NN TO NNP .\nDuring her three-day trip , Clinton questioned why the country has not captured al-Qaida leaders , saying ' somebody , somewhere in Pakistan ' must know where they are .\tIN PRP$ JJ NN , NNP VBD WRB DT NN VBZ RB VBN NNP NNS , VBG `` DT , RB IN NNP `` MD VB WRB PRP VBP .\nAfrican leaders are mourning Pope John Paul , while praising his teachings and his leadership in the significant growth of the church on the African continent .\tJJ NNS VBP VBG NNP NNP NNP , IN VBG PRP$ NNS CC PRP$ NN IN DT JJ NN IN DT NN IN DT JJ NN .\nSouth Africa 's President Thabo Mbeki said the pontiff 's guidance would continue to inspire people of all faiths and that he had strengthened the moral fiber of the world .\tNNP NNP POS NNP NNP NNP VBD DT NN POS NN MD VB TO VB NNS IN DT NNS CC IN PRP VBD VBN DT JJ NN IN DT NN .\nMr. Mbeki thanked John Paul for his support in the development and rebirth of Africa .\tNNP NNP VBD NNP NNP IN PRP$ NN IN DT NN CC NN IN NNP .\nNigerian President Olusegun Obasanjo praised the pope for advocating religious tolerance and remembered his unwavering support for democracy while Nigeria fought against dictatorship in the 1990s .\tJJ NNP NNP NNP VBD DT NN IN VBG JJ NN CC VBD PRP$ JJ NN IN NN IN NNP VBD IN NN IN DT NNS .\nNigeria has 20 million Catholics , the most of any African nation .\tNNP VBZ CD CD NNPS , DT JJS IN DT JJ NN .\nNigerian Cardinal Francis Arinze has been mentioned as a possible successor as pope , although analysts say there is no clear cut favorite .\tJJ NNP NNP NNP VBZ VBN VBN IN DT JJ NN IN NN , IN NNS VBP EX VBZ DT JJ NN NN .\nHurricane Paula has now weakened into a tropical storm , as it continues to dump heavy rain along Cuba 's northern coast .\tNNP NNP VBZ RB VBN IN DT JJ NN , IN PRP VBZ TO VB JJ NN IN NNP POS JJ NN .\nThe storm , with maximum sustained winds of 105 kilometers per hour , moved slowly ( 16 kilometers per hour ) Thursday over Cuba 's tobacco fields as it headed in a more easterly direction .\tDT NN , IN JJ JJ NNS IN CD NNS IN NN , VBD RB LRB CD NNS IN NN RRB NNP IN NNP POS NN NNS IN PRP VBD IN DT JJR JJ NN .\nAt last report ( 1800 UTC ) , the U.S. National Hurricane Center said Paula was centered 115 kilometers west of Havana .\tIN JJ NN LRB CD NNP RRB , DT NNP NNP NNP NNP VBD NNP VBD VBN CD NNS NN IN NNP .\nIt said the storm could weaken further and be classified as a tropical depression by Friday .\tPRP VBD DT NN MD VB JJ CC VB VBN IN DT JJ NN IN NNP .\nHeavy rain could fall in parts of Cuba , with up to 25 centimeters in the western and central regions .\tJJ NN MD VB IN NNS IN NNP , IN RB TO CD NNS IN DT JJ CC JJ NNS .\nForecasters posted a tropical storm watch for parts of the Florida Keys , a chain of islands off southern Florida .\tNNS VBD DT JJ NN NN IN NNS IN DT NNP NNP , DT NN IN NNS IN JJ NNP .\nUkraine 's opposition has pulled out of talks with Prime Minister Viktor Yanukovych on ending the country 's political crisis .\tNNP POS NN VBZ VBN IN IN NNS IN NNP NNP NNP NNP IN VBG DT NN POS JJ NN .\nThe announcement came amid continued opposition protests over charges of widespread fraud after Mr. Yanukovych was declared the winner of the November 21 vote .\tDT NN VBD IN JJ NN NNS IN NNS IN JJ NN IN NNP NNP VBD VBN DT NN IN DT NNP CD NN .\nOpposition candidate Viktor Yushchenko says the vote was rigged and is challenging the results in Ukraine 's Supreme Court , which could order a new election .\tNN NN NNP NNP VBZ DT NN VBD VBN CC VBZ VBG DT NNS IN NNP POS NNP NNP , WDT MD VB DT JJ NN .\nTalks collapsed Tuesday when the pro-western Mr. Yushchenko rejected an offer to become the new prime minister in a Yanukovych presidency .\tNNS VBD NNP WRB DT JJ NNP NNP VBD DT NN TO VB DT JJ JJ NN IN DT NNP NN .\nThe disputed election is threatening to split Ukraine apart .\tDT JJ NN VBZ VBG TO VB NNP RB .\nLawmakers in pro-Russian eastern Ukraine are threatening to declare autonomy if Mr. Yanukovych does not become president .\tNNS IN JJ JJ NNP VBP VBG TO VB NN IN NNP NNP VBZ RB VB NN .\nEuropean leaders are converging on Ukraine to mediate .\tJJ NNS VBP VBG IN NNP TO VB .\nThey include European Union foreign policy chief Javier Solana and Polish President Aleksander Kwasniewski .\tPRP VBP NNP NNP JJ NN NN NNP NNP CC JJ NNP NNP NNP .\nPresident Bush has said the will of the Ukrainian people must prevail .\tNNP NNP VBZ VBN DT NN IN DT JJ NNS MD VB .\nIndonesian health officials say their tests show two women from the same area have been infected by the bird-flu virus .\tJJ NN NNS VBP PRP$ NNS VBP CD NNS IN DT JJ NN VBP VBN VBN IN DT NN NN .\nThe two patients , both from a town just east of Indonesia 's capital , Jakarta , are being treated at a hospital there .\tDT CD NNS , DT IN DT NN RB RB IN NNP POS NN , NNP , VBP VBG VBN IN DT NN RB .\nThe World Health Organization has not confirmed the results yet .\tDT NNP NNP NNP VBZ RB VBN DT NNS RB .\nSo far , 23 people have been confirmed as having bird flu in Indonesia .\tRB RB , CD NNS VBP VBN VBN IN VBG NN NN IN NNP .\nSeven people who contracted the deadly H5N1 strain of the virus have died .\tCD NNS WP VBD DT JJ NNP NN IN DT NN VBP VBN .\nElsewhere , Africa 's first outbreak of the H5N1 virus strain was confirmed in Nigeria Wednesday .\tRB , NNP POS JJ NN IN DT NNP NN NN VBD VBN IN NNP NNP .\nThe ( Paris-based ) World Organization for Animal Health says the virus killed 40,000 chickens on a farm in Kaduna state .\tDT LRB JJ RRB NNP NNP IN NNP NNP VBZ DT NN VBD CD NNS IN DT NN IN NNP NN .\nNo human cases of bird flu have been reported in the West African nation .\tDT JJ NNS IN NN NN VBP VBN VBN IN DT JJ JJ NN .\nAvian flu has killed 88 people in southeast Asia , China , and Turkey since 2003 .\tJJ NN VBZ VBN CD NNS IN JJ NNP , NNP , CC NNP IN CD .\nOfficials with the U.N. World Food Program , WFP , say a ship carrying food aid for Somalian tsunami victims has been hijacked and the ship 's crew taken hostage .\tNNS IN DT NNP NNP NNP NNP , NNP , VBP DT NN VBG NN NN IN JJ NN NNS VBZ VBN VBN CC DT NN POS NN VBN NN .\nThe WFP issued a statement early Thursday , saying unidentified pirates boarded the freighter MV Semlow off the coast of Somalia earlier this week .\tDT NNP VBD DT NN RB NNP , VBG JJ NNS VBD DT NN NNP NNP IN DT NN IN NNP RBR DT NN .\nThe ship was carrying 850 metric tons of rice donated by Japan and Germany .\tDT NN VBD VBG CD JJ NNS IN NN VBN IN NNP CC NNP .\nThe ship is registered in St. Vincent and the Grenadines and had a crew of ten .\tDT NN VBZ VBN IN NNP NNP CC DT NNPS CC VBD DT NN IN NN .\nThe WFP says it has appealed to local leaders and clan elders for the safe return of the crew and the food aid .\tDT NNP VBZ PRP VBZ VBN TO JJ NNS CC JJ NNS IN DT JJ NN IN DT NN CC DT NN NN .\nMaritime officials say piracy has become increasingly common off the coast of Somalia .\tNNP NNS VBP NN VBZ VBN RB JJ IN DT NN IN NNP .\nVietnamese health officials say bird flu has been detected in ducks in the country 's south just one day after authorities lifted a ban on hatching ducks and other waterfowl .\tJJ NN NNS VBP NN NN VBZ VBN VBN IN NNS IN DT NN POS NN RB CD NN IN NNS VBD DT NN IN VBG NNS CC JJ NN .\nAuthorities say tests showed 800 ducks in the Mekong delta province of Vinh Long were infected with bird flu , but it is not immediately clear if they had the deadly H5N1 strain of the virus .\tNNS VBP NNS VBD CD NNS IN DT NNP NN NN IN NNP NNP VBD VBN IN NN NN , CC PRP VBZ RB RB JJ IN PRP VBD DT JJ NNP NN IN DT NN .\nAll the birds have been slaughtered .\tPDT DT NNS VBP VBN VBN .\nEarlier this week , authorities announced an outbreak of bird flu in the country 's north .\tRBR DT NN , NNS VBD DT NN IN NN NN IN DT NN POS NN .\nVietnam plans to begin a massive new poultry vaccination campaign in the coming week .\tNNP VBZ TO VB DT JJ JJ NN NN NN IN DT JJ NN .\nMeanwhile , officials in Burma say crows and sparrows may have carried the H5N1 virus to a poultry farm in the suburbs of Rangoon sparking an outbreak .\tRB , NNS IN NNP VBP NNS CC NNS MD VB VBN DT NNP NN TO DT NN NN IN DT NNS IN NNP VBG DT NN .\nMore than 160 people have died from bird flu worldwide since the outbreak began in late 2003 .\tJJR IN CD NNS VBP VBN IN NN NN NN IN DT NN VBD IN JJ CD .\nGerman Chancellor Angela Merkel says the situation is ' serious ' as bird flu reaches the German mainland for the first time .\tJJ NNP NNP NNP VBZ DT NN VBZ `` JJ `` IN NN NN VBZ DT JJ NN IN DT JJ NN .\nAuthorities Sunday found the deadly H5N1 strain in two wild birds in the north .\tNNS NNP VBD DT JJ NNP NN IN CD JJ NNS IN DT NN .\nEighteen new cases were also discovered on the Baltic island of Ruegen .\tNNP JJ NNS VBD RB VBN IN DT JJ NN IN NNP .\nMeanwhile , French Agriculture Minister Dominique Bussereau is urging consumers to keep eating chicken , assuring them it is perfectly safe to eat properly-cooked meat .\tRB , JJ NNP NNP NNP NNP VBZ VBG NNS TO VB JJ NN , VBG PRP PRP VBZ RB JJ TO VB JJ NN .\nFrance reported its first bird flu case Saturday .\tNNP VBD PRP$ JJ NN NN NN NNP .\nItaly says it will ask for European Union aid for poultry farmers who have lost millions of dollars as chicken consumption there plummets .\tNNP VBZ PRP MD VB IN NNP NNP NN IN JJ NNS WP VBP VBN NNS IN NNS IN NN NN RB VBZ .\nAlso , India has begun killing chickens in western Maharastra state after reporting the country 's first bird flu case Saturday .\tRB , NNP VBZ VBN VBG NNS IN JJ NNP NN IN VBG DT NN POS JJ NN NN NN NNP .\nNo human bird flu cases have been reported outside of Asia and Turkey , where about 90 people have died since 2003 .\tDT JJ NN NN NNS VBP VBN VBN IN IN NNP CC NNP , WRB RB CD NNS VBP VBN IN CD .\nFour U.S. financial giants have agreed to temporarily halt housing foreclosures .\tCD NNP JJ NNS VBP VBN TO RB VB NN NNS .\nJ.P. Morgan Chase , Bank of America and Morgan Stanley said Friday their mortgage institutions would not begin the foreclosure process on any owner-occupied properties until March 6 .\tNNP NNP NNP , NNP IN NNP CC NNP NNP VBD NNP PRP$ NN NNS MD RB VB DT NN NN IN DT JJ NNS IN NNP CD .\nCitigroup said its moratorium would last until March 12 , unless President Barack Obama finalizes his administration 's loan modification program at an earlier date .\tNNP VBD PRP$ NN MD VB IN NNP CD , IN NNP NNP NNP VBZ PRP$ NN POS NN NN NN IN DT JJR NN .\nA key U.S. congressman , Barney Frank , had urged the industry to hold off on foreclosures until a new process for helping homeowners could be put in place .\tDT JJ NNP NN , NNP NNP , VBD VBN DT NN TO VB RP IN NNS IN DT JJ NN IN VBG NNS MD VB VBN IN NN .\nThe Massachusetts Democrat is head of the House financial services committee .\tDT NNP NNP VBZ NN IN DT NNP JJ NNS NN .\nA White House spokesman , Robert Gibbs , announced Friday that President Obama will outline a plan to tackle the home foreclosure crisis during a visit Wednesday to the western state of Arizona .\tDT NNP NNP NN , NNP NNP , VBD NNP IN NNP NNP MD VB DT NN TO VB DT NN NN NN IN DT NN NNP TO DT JJ NN IN NNP .\nTwo astronauts are back aboard the International Space Station after a spacewalk to conduct experiments and maintenance .\tCD NNS VBP RB IN DT NNP NNP NNP IN DT NN TO VB NNS CC NN .\nStation Commander Leroy Chiao of the United States and Russian flight engineer Salizhan Sharipov spent a total of five hours , 28 minutes outside the orbiting station Wednesday .\tNNP NNP NNP NNP IN DT NNP NNPS CC JJ NN NN NNP NNP VBD DT NN IN CD NNS , CD NNS IN DT NN NN NNP .\nThe U.S. space agency says the crew members installed a work platform , set up two experiments , and checked vents on systems that help control the station 's atmosphere .\tDT NNP NN NN VBZ DT NN NNS VBD DT NN NN , VBD RP CD NNS , CC VBD NNS IN NNS WDT VBP VB DT NN POS NN .\nThe spacewalk was the first for the current two-man crew , who arrived at the station in October .\tDT NN VBD DT JJ IN DT JJ JJ NN , WP VBD IN DT NN IN NNP .\nNASA says the crew members plan to conduct their second spacewalk in March .\tNNP VBZ DT NN NNS VBP TO VB PRP$ JJ NN IN NNP .\nHurricane Danielle is picking up strength as it moves over the Atlantic Ocean .\tNNP NNP VBZ VBG RP NN IN PRP VBZ IN DT NNP NNP .\nThe U.S. National Hurricane Center said the storm 's sustained winds increased to nearly 140 kilometers per hour Wednesday morning .\tDT NNP NNP NNP NNP VBD DT NN POS JJ NNS VBD TO RB CD NNS IN NN NNP NN .\nIt remains a Category 1 on the five-point scale of hurricane strength .\tPRP VBZ DT NNP CD IN DT JJ NN IN NN NN .\nDanielle is moving northwest in the open waters of the Atlantic .\tNNP VBZ VBG JJS IN DT JJ NNS IN DT NNP .\nAs of the last report , it was about 1,275 kilometers east of the Northern Leeward Islands .\tIN IN DT JJ NN , PRP VBD IN CD NNS NN IN DT NNP NNP NNP .\nMeanwhile , in the Pacific , Tropical Storm Frank is also gaining strength as it continues on its path away from the southwestern coast of Mexico .\tRB , IN DT NNP , NNP NNP NNP VBZ RB VBG NN IN PRP VBZ IN PRP$ NN RB IN DT JJ NN IN NNP .\nForecasters say the storm could become a hurricane later Wednesday .\tNNS VBP DT NN MD VB DT NN RB NNP .\nIts sustained winds were last recorded at nearly 110 kilometers per hour .\tPRP$ JJ NNS VBD JJ VBN IN RB CD NNS IN NN .\nAs of now , neither storm is posing a threat to land .\tIN IN RB , DT NN VBZ VBG DT NN TO NN .\nUsher is off the market .\tNNP VBZ IN DT NN .\nThe multi-platinum R&B star is officially engaged to his longtime girlfriend , stylist Tameka Foster .\tDT JJ NN NN VBZ RB VBN TO PRP$ JJ NN , NN NNP NNP .\nUsher 's publicist Simone Smalls made the announcement March 30 , but provided no further details .\tNNP POS NN NNP NNP VBD DT NN NNP CD , CC VBD DT JJ NNS .\nUsher had previously announced the engagement to MTV News .\tNNP VBD RB VBN DT NN TO NNP NNP .\nThe 28-year-old singer said he may be getting married by year 's end .\tDT JJ NN VBD PRP MD VB VBG VBN IN NN POS NN .\nA five-time Grammy Award winner , Usher has sold more than 35 million albums worldwide .\tDT JJ NNP NNP NN , NNP VBZ VBN JJR IN CD CD NNS JJ .\nThe 34-nation Organization of American States ( OAS ) has postponed choosing a new chief , saying many foreign ministers who had planned to attend the election session here in Washington are instead heading to Rome for the pope 's funeral .\tDT JJ NNP IN NNP NNP LRB NNP RRB VBZ VBN VBG DT JJ NN , VBG JJ JJ NNS WP VBD VBN TO VB DT NN NN RB IN NNP VBP RB VBG TO NNP IN DT NN POS NN .\nThe OAS Permanent Council had scheduled an election to choose a new secretary general on Thursday , but the vote will now take place April 11 .\tDT NNP NNP NNP VBD VBN DT NN TO VB DT JJ NN NN IN NNP , CC DT NN MD RB VB NN NNP CD .\nThe top candidates for the post are Mexico 's conservative foreign secretary Luis Ernesto Derbez , Chile 's socialist interior minister Jose Miguel Insulza and a pro-business former Salvadoran president with close ties to Washington - Francisco Flores .\tDT JJ NNS IN DT NN VBP NNP POS JJ JJ NN NNP NNP NNP , NNP POS JJ JJ NN NNP NNP NNP CC DT JJ JJ JJ NN IN JJ NNS TO NNP : NNP NNP .\nThe International Football Federation ( FIFA ) and the European Football Union ( UEFA ) have agreed to stage a charity match with the proceeds going to victims of last month 's devastating Indian Ocean tsunami .\tDT NNP NNP NNP LRB NNP RRB CC DT JJ NNP NNP LRB NNP RRB VBP VBN TO VB DT NN NN IN DT NNS VBG TO NNS IN JJ NN POS JJ NNP NNP NN .\nIn a statement released Friday , FIFA said the two associations decided to organize the match ' on a grand scale ' in a major European stadium in February .\tIN DT NN VBN NNP , NNP VBD DT CD NNS VBD TO VB DT NN `` IN DT JJ NN `` IN DT JJ JJ NN IN NNP .\nSeveral national football associations -- including England , Germany , Greece , Portugal , Spain , India , and Malaysia -- have said they want to arrange charity matches .\tJJ JJ NN NNS : VBG NNP , NNP , NNP , NNP , NNP , NNP , CC NNP : VBP VBN PRP VBP TO VB NN NNS .\nFIFA did not say who would play in the match , or where it would be held .\tNNP VBD RB VB WP MD VB IN DT NN , CC WRB PRP MD VB VBN .\nEarlier this week , FIFA and the Asian Football Confederation called for famous players to help with aid distribution .\tRBR DT NN , NNP CC DT NNP NNP NNP VBD IN JJ NNS TO VB IN NN NN .\nFIFA and the Asian confederation also agreed to deliver football equipment to national associations in nations struck by the tsunami .\tNNP CC DT JJ NN RB VBD TO VB NN NN TO JJ NNS IN NNS VBN IN DT NN .\nLawmakers in Spain have voted to send about 400 troops to join anti-piracy patrols off the coast of Somalia .\tNNS IN NNP VBP VBN TO VB IN CD NNS TO VB JJ NNS IN DT NN IN NNP .\nThe Spanish parliament approved the deployment on a vote of 311 to nothing Wednesday .\tDT JJ NN VBD DT NN IN DT NN IN CD TO DT NNP .\nDefense Minister Carme Chacon said the first 200 troops will leave for the Gulf of Aden on a frigate and supply vessel this Friday .\tNNP NNP NNP NNP VBD DT JJ CD NNS MD VB IN DT NNP IN NNP IN DT NN CC NN NN DT NNP .\nThe Spanish troops will join the European Union force sent to protect ships against hijackings and attacks by Somali pirates .\tDT JJ NNS MD VB DT NNP NNP NN VBN TO VB NNS IN NNS CC NNS IN JJ NNS .\nThe International Maritime Bureau said Somali pirates attacked at least 111 ships last year , an increase of nearly 200 percent from 2007 .\tDT NNP NNP NNP VBD JJ NNS VBD IN JJS CD NNS JJ NN , DT NN IN RB CD NN IN CD .\nThe United States , China , and several other countries have also put ships on patrol in the Gulf of Aden and Somalia 's Indian Ocean coast .\tDT NNP NNPS , NNP , CC JJ JJ NNS VBP RB VBN NNS IN NN IN DT NNP IN NNP CC NNP POS NNP NNP NN .\nA Belarusian court has sentenced former opposition presidential candidate Alexander Kozulin , to 5 01-Feb years in prison .\tDT JJ NN VBZ VBN JJ NN JJ NN NNP NNP , TO CD CD NNS IN NN .\nThe judge cleared the courtroom before delivering the verdict after the accused called the proceedings unfair and a farce .\tDT NN VBD DT NN IN VBG DT NN IN DT VBN VBD DT NNS JJ CC DT NN .\nAuthorities had charged Kozulin with hooliganism and incitement to disorder in connection with mass protests by opposition activists over what they considered fraud in the vote .\tNNS VBD VBN NNP IN NN CC NN TO NN IN NN IN JJ NNS IN NN NNS IN WP PRP VBD NN IN DT NN .\nBelarus authorities arrested Kozulin a week after the March 19 vote in which authorities say President Alexander Lukashenko won a landslide victory .\tNNP NNS VBN NNP DT NN IN DT NNP CD NN IN WDT NNS VBP NNP NNP NNP VBD DT NN NN .\nDemonstrators said the election was fraudulent .\tNNS VBD DT NN VBD JJ .\nProsecutors say more than 500 people were detained during the protests , but opposition activists put the number at more than one thousand .\tNNS VBP JJR IN CD NNS VBD VBN IN DT NNS , CC NN NNS VBD DT NN IN JJR IN CD CD .\nThe United States and the European Union denounced the arrests , and enacted a visa ban on President Lukashenko and other top Belarus officials to protest the fraud .\tDT NNP NNPS CC DT NNP NNP VBD DT NNS , CC VBD DT NN NN IN NNP NNP CC JJ JJ NNP NNS TO VB DT NN .\nChadian Prime Minister Pascal Yoadimadji has died in Paris at the age of 56 .\tJJ JJ NN NNP NNP VBZ VBN IN NNP IN DT NN IN CD .\nChad 's ambassador to France says Mr. Yoadimnadji died Friday from a brain hemorrhage .\tNNP POS NN TO NNP VBZ NNP NNP VBD NNP IN DT NN NN .\nThe prime minister was flown to Paris earlier this week after suffering a heart attack .\tDT JJ NN VBD VBN TO NNP RBR DT NN IN VBG DT NN NN .\nMr. Yoadimnadji was named prime minister in 2005 by Chadian President Idriss Deby .\tNNP NNP VBD VBN JJ NN IN CD IN JJ NNP NNP NNP .\nHe had previously served in the government as agricultural minister , president of the national electoral commission and president of the constitutional council .\tPRP VBD RB VBN IN DT NN IN JJ NN , NN IN DT JJ JJ NN CC NN IN DT JJ NN .\nChina has confirmed an outbreak of the H5N1 strain of bird flu among wilds birds in western China .\tNNP VBZ VBN DT NN IN DT NNP NN IN NN NN IN NNS NNS IN JJ NNP .\nThe Ministry of Agriculture said Friday that the outbreak was discovered in Qinghai province after 123 birds were found dead .\tDT NNP IN NNP VBD NNP IN DT NN VBD VBN IN NNP NN IN CD NNS VBD VBN JJ .\nThe bird flu virus killed more than 1,000 geese in Qinghai last year .\tDT NN NN NN VBD JJR IN CD NNS IN NNP JJ NN .\nThe province is located along a major Asian migratory route for birds .\tDT NN VBZ VBN IN DT JJ JJ JJ NN IN NNS .\nResearchers believe wild birds from the region may have carried bird flu along migratory paths to Europe .\tNNS VBP JJ NNS IN DT NN MD VB VBN JJ NN IN JJ NNS TO NNP .\nUS computer maker Dell has says it plans to substantially expand its customer support and software development centers in India .\tNNP NN NN NNP VBZ VBZ PRP VBZ TO RB VB PRP$ NN NN CC NN NN NNS IN NNP .\nOfficials say the state of Texas-based company intends to add 2,000 more employees to its staff , bringing the total in India to 10,000 by January , 2006 .\tNNS VBP DT NN IN JJ NN VBZ TO VB CD JJR NNS TO PRP$ NN , VBG DT NN IN NNP TO CD IN NNP , CD .\nThe company runs three call centers in India , with most of the operations centered in Bangalore , India 's ' silicon valley . '\tDT NN VBZ CD NN NNS IN NNP , IN JJS IN DT NNS VBN IN NNP , NNP POS `` NN NN . ``\nDell officials say they will open several more offices in India .\tNNP NNS VBP PRP MD VB JJ JJR NNS IN NNP .\nScores of Western companies have cut costs by shifting software development , engineering design and routine office functions to countries such as India , which has a large pool of English-speaking workers and low wages .\tNNS IN JJ NNS VBP VBN NNS IN VBG NN NN , NN NN CC JJ NN NNS TO NNS JJ IN NNP , WDT VBZ DT JJ NN IN JJ NNS CC JJ NNS .\nComputer experts estimate that such outsourcing could create as many as 1.2 million jobs in India by 2008 and bring in revenues of at least $ 21 billion .\tNN NNS VBP IN JJ NN MD VB RB JJ IN CD CD NNS IN NNP IN CD CC VB IN NNS IN IN JJS $ CD CD .\nNATO says it trained almost 1,500 Iraqi military officers in 2005 , and hopes to train a similar number this year .\tNNP VBZ PRP VBD RB CD JJ JJ NNS IN CD , CC VBZ TO VB DT JJ NN DT NN .\nThe organization says 1,000 officers were trained inside Iraq at a NATO college on the outskirts of Baghdad .\tDT NN VBZ CD NNS VBD VBN IN NNP IN DT NNP NN IN DT NNS IN NNP .\nAround 160 NATO personnel are based at the college , which opened in September 2005 .\tIN CD NNP NNS VBP VBN IN DT NN , WDT VBD IN NNP CD .\nThe remaining Iraqi officers , numbering about 500 , were trained at NATO facilities in Europe .\tDT VBG JJ NNS , VBG IN CD , VBD VBN IN NNP NNS IN NNP .\nNATO says the training effort is designed to teach Iraqi military officers modern leadership skills and democratic values .\tNNP VBZ DT NN NN VBZ VBN TO VB JJ JJ NNS JJ NN NNS CC JJ NNS .\nThe organization also supplies military equipment to Iraqi forces and logistical support to Polish troops inside Iraq .\tDT NN RB VBZ JJ NN TO JJ NNS CC JJ NN TO JJ NNS IN NNP .\nBut NATO has not engaged in any combat in Iraq because of opposition from NATO members France and Germany .\tCC NNP VBZ RB VBN IN DT NN IN NNP IN IN NN IN NNP NNS NNP CC NNP .\nThe cholera outbreak in Angola continues .\tDT NN NN IN NNP VBZ .\nThe medical aid group - Doctors Without Borders - says in all there have been about 32,000 cases over the past 13 weeks , with about 1,200 deaths .\tDT JJ NN NN ; NNPS NNP NNPS : VBZ IN DT EX VBP VBN IN CD NNS IN DT JJ CD NNS , IN IN CD NNS .\nRichard Veerman is the group 's head of mission in Angola .\tNNP NNP VBZ DT NN POS NN IN NN IN NNP .\nFrom the capital , Luanda , he gave English to Africa reporter Joe De Capua an update on the cholera outbreak .\tIN DT NN , NNP , PRP VBD NNP TO NNP NN NNP NNP NNP DT NN IN DT NN NN .\nHe says there are about 600 new cases a day in the country , about half of those in Luanda .\tPRP VBZ EX VBP IN CD JJ NNS DT NN IN DT NN , IN NN IN DT IN NNP .\nThat 's down from over 900 cases a day about a week ago .\tDT VBZ RB IN IN CD NNS DT NN IN DT NN RB .\nHowever , Veerman says it 's still too early to tell whether this means the outbreak is truly on the decline .\tRB , NNP VBZ PRP VBZ RB RB JJ TO VB IN DT VBZ DT NN VBZ RB IN DT NN .\nTaiwan 's Defense Ministry says China 's military buildup and modernization is aimed directly at the island .\tNNP POS NNP NNP VBZ NNP POS JJ NN CC NN VBZ VBN RB IN DT NN .\nA Taiwanese Defense Ministry spokesman made the comments Tuesday one day after China released a white paper on national defense .\tDT JJ NNP NNP NN VBD DT NNS NNP CD NN IN NNP VBD DT JJ NN IN JJ NN .\nChina 's Information Office of the State Council said the white paper is intended to illustrate China 's national defense policies and the progress made in national defense over the past two years .\tNNP POS NNP NNP IN DT NNP NNP VBD DT JJ NN VBZ VBN TO VB NNP POS JJ NN NNS CC DT NN VBN IN JJ NN IN DT JJ CD NNS .\nTaiwanese Defense Ministry spokesman Wang Shih-chien says the white paper shows that China is emphasizing the buildup of its air and amphibious forces , proving that Beijing is targeting the island .\tJJ NNP NNP NN NNP NNP VBZ DT JJ NN VBZ IN NNP VBZ VBG DT NN IN PRP$ NN CC JJ NNS , VBG IN NNP VBZ VBG DT NN .\nThe Chinese policy document threatens to crush any attempt by Taiwan to become independent .\tDT JJ NN NN VBZ TO VB DT NN IN NNP TO VB JJ .\nBeijing considers the island part of its territory .\tNNP VBZ DT NN NN IN PRP$ NN .\nSome members of the Organization of Petroleum Exporting Countries are calling for cuts in oil output .\tDT NNS IN DT NNP IN NNP NNP NNPS VBP VBG IN NNS IN NN NN .\nThe comments come as officials of the 11 member cartel gather in Cairo for a meeting Friday to discuss oil supplies and prices .\tDT NNS VBP IN NNS IN DT CD NN NN VB IN NNP IN DT NN NNP TO VB NN NNS CC NNS .\nOPEC supplies about 40 percent of the world 's oil .\tNNP NNS IN CD NN IN DT NN POS NN .\nOil prices have fallen significantly from their record highs in October , and economists say a reduction in oil output would put upward pressure on prices .\tNN NNS VBP VBN RB IN PRP$ NN NNS IN NNP , CC NNS VBP DT NN IN NN NN MD VB JJ NN IN NNS .\nCrude prices soared this year due to strong demand from China and the United States amid worries that political problems , violence , or bad weather would disrupt oil supplies in some key producing nations .\tNN NNS VBD DT NN RB TO JJ NN IN NNP CC DT NNP NNPS IN NNS IN JJ NNS , NN , CC JJ NN MD VB NN NNS IN DT JJ VBG NNS .\nOPEC oil output has been close to 25-year highs , and exceeds the cartel 's self-imposed production quotas .\tNNP NN NN VBZ VBN JJ TO JJ NNS , CC VBZ DT NN POS JJ NN NNS .\nRebels in Sudan 's Darfur region say they clashed with government forces Wednesday , days before a scheduled new round of peace talks .\tNNS IN NNP POS NNP NN VBP PRP VBD IN NN NNS NNP , NNS IN DT VBN JJ NN IN NN NNS .\nThe Sudan Liberation Army faction of Abdel Wahid Nur said its troops attacked the government-held Golo district in the Jebel Marra mountains .\tDT NNP NNP NNP NN IN NNP NNP NNP VBD PRP$ NNS VBD DT JJ NNP NN IN DT NNP NNP NNS .\nA spokesman said there were casualties on both sides .\tDT NN VBD EX VBD NNS IN DT NNS .\nHe did not give specific figures .\tPRP VBD RB VB JJ NNS .\nThe joint U.N.-African Union peacekeeping mission confirmed there was fighting in the area .\tDT JJ NNP NNP VBG NN VBD EX VBD VBG IN DT NN .\nThe rebels say earlier this week , Sudanese warplanes bombarded rebel-controlled areas in Jebel Marra and in Jebel Moun , near the border with Chad .\tDT NNS VBP RBR DT NN , JJ NNS VBD JJ NNS IN NNP NNP CC IN NNP NNP , IN DT NN IN NNP .\nPeace talks between Khartoum and Darfur rebel groups are due to resume later this month in Qatar .\tNN NNS IN NNP CC NNP NN NNS VBP JJ TO VB RB DT NN IN NNP .\nThe United Nations says the fighting in Darfur has killed up to 3,00,000 people and displaced 2.7 million since 2003 .\tDT NNP NNP VBZ DT NN IN NNP VBZ VBN RP TO CD NNS CC VBD CD CD IN CD .\nThe government says 10,000 people have died in the conflict .\tDT NN VBZ CD NNS VBP VBN IN DT NN .\nMembers of the Organization of Petroleum Exporting Countries are meeting in Vienna to consider offering as much as another two million barrels of crude oil a day to world markets .\tNNS IN DT NNP IN NNP NNP NNPS VBP VBG IN NNP TO VB VBG RB JJ IN DT CD CD NNS IN JJ NN DT NN TO NN NNS .\nOil and gasoline prices soared to record highs in recent weeks as Hurricane Katrina threatened oil production and refining capacity on the U.S. Gulf Coast .\tNN CC NN NNS VBD TO VB NNS IN JJ NNS IN NNP NNP VBD NN NN CC NN NN IN DT NNP NNP NNP .\nSome analysts say OPEC 's offer would have symbolic rather than practical impact because gasoline prices were driven upward by a shortage of refining capacity rather than a lack of crude oil .\tDT NNS VBP NNP POS NN MD VB JJ RB IN JJ NN IN NN NNS VBD VBN RB IN DT NN IN NN NN RB IN DT NN IN JJ NN .\nWorld oil prices have fallen from their record high of $ 70.85 , but rebounded more than $ 2 a barrel to $ 65.25 cents on the New York market Monday morning .\tNNP NN NNS VBP VBN IN PRP$ NN NN IN $ CD , CC VBD JJR IN $ CD DT NN TO $ CD NNS IN DT NNP NNP NN NNP NN .\nTraders were reacting to news that another tropical storm is on a course that might hurt oil and gasoline production .\tNNS VBD VBG TO NN IN DT JJ NN VBZ IN DT NN WDT MD VB NN CC NN NN .\nOfficials in Afghanistan say the United States has released 17 Afghan detainees from military custody at Guantanamo Bay in Cuba .\tNNS IN NNP VBP DT NNP NNPS VBZ VBN CD JJ NNS IN JJ NN IN NNP NNP IN NNP .\nAbdul Wakil Omari , a spokesman for the Afghan Supreme Court , said the men would be formally handed over during a ceremony at the court later Tuesday .\tNNP NNP NNP , DT NN IN DT JJ NNP NNP , VBD DT NNS MD VB RB VBN RP IN DT NN IN DT NN RB NNP .\nHe did not say how many prisoners had been released , but other officials put the number at 17 .\tPRP VBD RB VB WRB JJ NNS VBD VBN VBN , CC JJ NNS VBD DT NN IN CD .\nIt was not clear if the men will face charges in their home country .\tPRP VBD RB JJ IN DT NNS MD VB NNS IN PRP$ NN NN .\nThe U.S. military had no immediate comment .\tDT NNP NN VBD DT JJ NN .\nThe United States has released more than 200 detainees from Guantanamo , but many , including dozens of prisoners sent to the United Kingdom , Russia , France , Morocco , Saudi Arabia and Pakistan , are freed on the condition they will be held by their home countries .\tDT NNP NNPS VBZ VBN JJR IN CD NNS IN NNP , CC JJ , VBG NNS IN NNS VBN TO DT NNP NNP , NNP , NNP , NNP , NNP NNP CC NNP , VBP VBN IN DT NN PRP MD VB VBN IN PRP$ NN NNS .\nPakistan has officially raised the death toll from last month 's massive earthquake to 73,276 .\tNNP VBZ RB VBN DT NN NN IN JJ NN POS JJ NN TO CD .\nThe country 's head of relief operations , Major-General Farooq Ahmed Khan , said Wednesday the October 8 quake also left more than 69,000 people injured .\tDT NN POS NN IN NN NNS , NNP NNP NNP NNP , VBD NNP DT NNP CD NN RB VBD JJR IN CD NNS VBN .\nOn Tuesday , government officials had put the death toll at 57,600 , with most fatalities registered in Pakistani-controlled Kashmir .\tIN NNP , NN NNS VBD VBN DT NN NN IN CD , IN JJS NNS VBN IN JJ NNP .\nGeneral Khan gave no reason for the abrupt increase in the death toll , but Pakistani officials say it could rise further .\tNNP NNP VBD DT NN IN DT JJ NN IN DT NN NN , CC JJ NNS VBP PRP MD VB RB .\nMeanwhile , the U.S. military said it resumed helicopter relief flights in northern Pakistan , one day after one of its aircraft is believed to have come under fire .\tRB , DT NNP NN VBD PRP VBD NN NN NNS IN JJ NNP , CD NN IN CD IN PRP$ NN VBZ VBN TO VB VBN IN NN .\nU.S. officials say a suspected rocket-propelled grenade was fired on Tuesday at a helicopter delivering relief aid , causing no damage or injuries .\tNNP NNS VBP DT JJ JJ NN VBD VBN IN NNP IN DT NN VBG NN NN , VBG DT NN CC NNS .\nPakistani officials said the helicopter crew probably heard dynamite being used to clear landslides triggered by the quake .\tJJ NNS VBD DT NN NN RB VBD NN VBG VBN TO VB NNS VBN IN DT NN .\nThe U.S. Energy Department says Washington is prepared to tap its emergency oil stockpile to help oil producers and refiners in the path of Hurricane Katrina .\tDT NNP NNP NNP VBZ NNP VBZ VBN TO VB PRP$ NN NN NN TO VB NN NNS CC NNS IN DT NN IN NNP NNP .\nThe storm is lashing a part of the U.S. Gulf coast responsible for about one quarter of U.S. crude oil production .\tDT NN VBZ VBG DT NN IN DT NNP NNP NN JJ IN IN CD NN IN NNP JJ NN NN .\nIt is also home to key oil import facilities and refineries .\tPRP VBZ RB NN TO JJ NN NN NNS CC NNS .\nThe oil would be loaned to refiners and producers to lessen the effect of disrupted energy production .\tDT NN MD VB VBN TO NNS CC NNS TO VB DT NN IN VBN NN NN .\nWorries about damage to energy production infrastructure have pushed crude oil prices up to record levels .\tNNS IN NN TO NN NN NN VBP VBN JJ NN NNS RB TO NN NNS .\nA similar oil loan program aided oil companies after a hurricane disrupted production last year .\tDT JJ NN NN NN VBN NN NNS IN DT NN VBN NN JJ NN .\nTwo exit polls are predicting victory for Ukraine 's pro-western opposition leader Viktor Yushchenko in Sunday 's presidential run-off election , though the polls differ widely on the margin of victory\tCD NN NNS VBP VBG NN IN NNP POS JJ NN NN NNP NNP IN NNP POS JJ NN NN , IN DT NNS VBP RB IN DT NN IN NN\nOne exit poll , conducted by the Kiev Institute of Sociology and the Razumkov Center for Economic and Political Studies , shows Mr.Yushchenko ahead of Ukraine 's Moscow-leaning Prime Minister Viktor Yanukovich by a double-digit margin\tCD NN NN , VBN IN DT NNP NNP IN NNP CC DT NNP NNP IN NNP CC NNP NNP , VBZ NNP RB IN NNP POS JJ NNP NNP NNP NNP IN DT JJ NN\nBut the Interfax news agency quotes another exit poll showing Mr.Yushchenko ahead by less than four percentage points .\tCC DT NNP NN NN VBZ DT NN NN VBG NNP RB IN JJR IN CD NN NNS .\nBut both sides are claiming numerous instances of voting irregularities .\tCC DT NNS VBP VBG JJ NNS IN NN NNS .\nIn the first round of voting last month , neither candidate won a majority , but Mr. Yushchenko alleged voting fraud had cost him the election .\tIN DT JJ NN IN NN JJ NN , DT NN VBD DT NN , CC NNP NNP VBD NN NN VBD NN PRP DT NN .\nThree Pakistani troops were wounded Monday when attackers fired rockets at their security checkpoint in a remote tribal area near the Afghan border .\tCD JJ NNS VBD VBN NNP WRB NNS VBD NNS IN PRP$ NN NN IN DT JJ JJ NN IN DT JJ NN .\nThe troops were manning the post near the town of Miran Shah in the troubled North Waziristan region when the attack occurred before dawn .\tDT NNS VBD VBG DT NN IN DT NN IN NNP NNP IN DT JJ NNP NNP NN WRB DT NN VBD IN NN .\nSoldiers returned fire with artillery and machine guns and a gun battle broke out .\tNNS VBD NN IN NN CC NN NNS CC DT NN NN VBD RP .\nThree soldiers were hit by shrapnel from rockets .\tCD NNS VBD VBN IN NN IN NNS .\nIslamic militants have been blamed for attacks on security forces in the region .\tNNP NNS VBP VBN VBN IN NNS IN NN NNS IN DT NN .\nMeanwhile , Pakistani security forces are pressuring tribal leaders to hand over suspected militants responsible for recent attacks on government forces that have claimed more than 22 lives , including at least eight soldiers at a checkpoint in North Waziristan .\tRB , JJ NN NNS VBP VBG JJ NNS TO VB IN JJ NNS JJ IN JJ NNS IN NN NNS WDT VBP VBN JJR IN CD NNS , VBG IN JJS CD NNS IN DT NN IN NNP NNP .\nTens of thousands of Pakistani forces have been deployed in the region to search for foreign militants .\tNNS IN NNS IN JJ NNS VBP VBN VBN IN DT NN TO VB IN JJ NNS .\nThousands of Croatians have gathered in the city of Split to show support for war crimes suspect General Ante Gotovina .\tNNS IN NNS VBP VBN IN DT NN IN NNP TO VB NN IN NN NNS VBP NNP NNP NNP .\nThe demonstrators waved Croatian flags and posters of General Gotovina , who was arrested in Spain 's Canary Islands on Wednesday after being on the run since 2001 .\tDT NNS VBD JJ NNS CC NNS IN NNP NNP , WP VBD VBN IN NNP POS NNP NNP IN NNP IN VBG IN DT NN IN CD .\nThe general was extradited to the United Nations tribunal in the Hague on Saturday to face charges involving the deaths of civilians during a 1995 Croatian army sweep through a Serb-held region .\tDT NN VBD VBN TO DT NNP NNPS NN IN DT NNP IN NNP TO VB NNS VBG DT NNS IN NNS IN DT CD JJ NN NN IN DT JJ NN .\nHe is expected to appear before the court next week .\tPRP VBZ VBN TO VB IN DT NN JJ NN .\nThousands of his supporters also gathered on Saturday in Croatia 's port city of Zadar to protest his arrest .\tNNS IN PRP$ NNS RB VBD IN NNP IN NNP POS JJ NN IN NNP TO VB PRP$ NN .\nThey call General Gotovina a hero who helped free Croatia from the former Yugoslavia .\tPRP VBP NNP NNP DT NN WP VBD JJ NN IN DT JJ NNP .\nThe Taliban has claimed responsibility for killing ten people , including foreigners , after the bodies were found in dense forest in northern Afghanistan .\tDT NNP VBZ VBN NN IN VBG JJ NNS , VBG NNS , IN DT NNS VBD VBN IN JJ NN IN JJ NNP .\nThe International Assistance Mission , a Christian charity providing health services to the Afghan people , said on its website Saturday the dead people are ' likely ' members of its eye camp team , who were returning to Kabul after working in Nuristan .\tDT NNP NNP NNP , DT JJ NN VBG NN NNS TO DT JJ NNS , VBD IN PRP$ JJ NNP DT JJ NNS VBP `` JJ `` NNS IN PRP$ NN NN NN , WP VBD VBG TO NNP IN VBG IN NNP .\nU.S. officials in Afghanistan say at least two Americans were among the group of eight foreigners and two Afghans killed .\tNNP NNS IN NNP VBP IN JJS CD NNS VBD IN DT NN IN CD NNS CC CD NNS VBD .\nLocal officials said six Germans were among those killed in Badakhshan province .\tJJ NNS VBD CD NNS VBD IN DT VBN IN NNP NN .\nTaliban spokesman Zabihullah Mujahed told the French news agency a patrol confronted the ' Christian missionaries and we killed them all . '\tNNP NN NNP NNP VBD DT JJ NN NN DT NN VBD DT `` NNP NNS CC PRP VBD PRP DT . ``\nOne Afghan man survived the attack .\tCD JJ NN VBD DT NN .\nThe bullet-riddled bodies were discovered Friday .\tDT JJ NNS VBD VBN NNP .\nAt least seven Indian police officers were killed Sunday when their vehicle struck a landmine in the eastern region of the country .\tIN JJS CD JJ NNS NNS VBD VBN NNP WRB PRP$ NN VBD DT NN IN DT JJ NN IN DT NN .\nOfficials say they suspect the bombs were planted by Maoist rebels .\tNNS VBP PRP VBP DT NNS VBD VBN IN NNP NNS .\nThe attack was in Orissa state , nearly 550 kilometers south of the state capital Bhubaneshwar .\tDT NN VBD IN NNP NN , RB CD NNS RB IN DT NN NN NNP .\nIndian officials say the long-running Maoist insurgency , which has spread to 20 of the country 's 28 states , is India 's most serious domestic security issue .\tJJ NNS VBP DT JJ NNP NN , WDT VBZ VBN TO CD IN DT NN POS CD NNS , VBZ NNP POS RBS JJ JJ NN NN .\nThe rebels , also called Naxalites , are demanding land and jobs for the poor .\tDT NNS , RB VBD NNP , VBP VBG NN CC NNS IN DT NN .\nThe media rights group Reporters Without Borders has recognized a Burmese-run television and radio network for its work , including coverage of September 's pro-democracy protests in Burma .\tDT NNS NNS NN NNP NNP NNP VBZ VBN DT JJ NN CC NN NN IN PRP$ NN , VBG NN IN NNP POS JJ NNS IN NNP .\nThe group says the Norway-based Democratic Voice of Burma was one of the few media that sent out images of the Burmese military crackdown on demonstrations led by Buddhist monks .\tDT NN VBZ DT JJ JJ NN IN NNP VBD CD IN DT JJ NNS WDT VBD RP NNS IN DT JJ JJ NN IN NNS VBN IN NNP NNS .\nReporters Without Borders chose the station to receive its 2007 award recognizing ' a media that exemplifies the battle for the right to inform the public and be informed . '\tNNPS IN NNPS VBD DT NN TO VB PRP$ CD NN VBG `` DT NNS WDT VBZ DT NN IN DT NN TO VB DT NN CC VB VBN . ``\nThe non-profit media organization was founded in 1992 by a group of pro-democracy students who escaped the massacres of a 1988 crackdown by Burma 's military government .\tDT JJ NNS NN VBD VBN IN CD IN DT NN IN JJ NNS WP VBD DT NNS IN DT CD NN IN NNP POS JJ NN .\nThe U.S. government has launched a new website designed to help new immigrants find information about federal government resources .\tDT NNP NN VBZ VBN DT JJ NN VBN TO VB JJ NNS VBP NN IN JJ NN NNS .\nThe new site , welcometousa.gov , is an initiative of the interagency Task Force on New Americans established by President Bush in 2006 .\tDT JJ NN , NNP , VBZ DT NN IN DT NN NNP NNP IN NNP NNS VBN IN NNP NNP IN CD .\nThe website provides information on how to become a U.S. citizen , how to get a driver 's license , and ways for new immigrants to find employment .\tDT NN VBZ NN IN WRB TO VB DT NNP NN , WRB TO VB DT NN POS NN , CC NNS IN JJ NNS TO VB NN .\nAnother objective of the website is to encourage immigrants and native-born Americans to engage in volunteer activities .\tDT NN IN DT NN VBZ TO VB NNS CC JJ NNS TO VB IN NN NNS .\nMost of the website is in English , but it includes links to new immigration guides in 11 languages , including Chinese , Korean , Haitian Creole , Spanish , French , Russian , Vietnamese and Arabic .\tJJS IN DT NN VBZ IN NNP , CC PRP VBZ NNS TO JJ NN NNS IN CD NNS , VBG NNP , NNP , JJ NNP , JJ , NNP , JJ , NNP CC NNP .\nChina has cut the size of its military by 2,00,000 soldiers to make it a leaner , more high-tech fighting force .\tNNP VBZ VBN DT NN IN PRP$ JJ IN CD NNS TO VB PRP DT JJR , RBR JJ NN NN .\nThe People 's Liberation Army newspaper said Monday the military had been reduced to 2.3 million troops as part of a three-year modernization program that ended last year .\tDT NNS POS NNP NNP NN VBD NNP DT NN VBD VBN VBN TO CD CD NNS IN NN IN DT JJ NN NN WDT VBD JJ NN .\nThe program involved shutting down Chinese military farms and schools not involved in combat , and removing layers of military bureaucracy .\tDT NN VBN VBG RP JJ JJ NNS CC NNS RB VBN IN NN , CC VBG NNS IN JJ NN .\nChina has been trimming the size of its military since the mid-1980s , when it had about 4.2 million soldiers .\tNNP VBZ VBN VBG DT NN IN PRP$ JJ IN DT NNS , WRB PRP VBD RB CD CD NNS .\nHowever , Beijing continued a sizable increase in military spending last year .\tRB , NNP VBD DT JJ NN IN JJ NN JJ NN .\nBeijing has spent heavily on high-tech weapons in recent years to back up threats against Taiwan .\tNNP VBZ VBN RB IN JJ NNS IN JJ NNS TO VB RP NNS IN NNP .\nJapan , South Korea and the United States have repeatedly expressed about China 's military build-up , and have accused Beijing of underreporting its defense spending .\tNNP , NNP NNP CC DT NNP NNPS VBP RB VBN IN NNP POS JJ NN , CC VBP VBN NNP IN VBG PRP$ NN NN .\nSpain and Morocco have called for a European-African summit to discuss the surge of illegal immigration from the North African country to Europe .\tNNP CC NNP VBP VBN IN DT JJ NN TO VB DT NN IN JJ NN IN DT JJ JJ NN TO NNP .\nThe announcement was made in Rabat Tuesday by Spanish Foreign Minister Miguel Angel Moratinos .\tDT NN VBD VBN IN NNP NNP IN JJ NNP NNP NNP NNP NNP .\nEarlier Tuesday , Morocco flew 140 illegal migrants back to Senegal .\tRBR NNP , NNP VBD CD JJ NNS RB TO NNP .\nOther flights to Senegal and Mali are planned .\tJJ NNS TO NNP CC NNP VBP VBN .\nSpain has been sending Africans who have illegally entered its enclaves in Melilla and Ceuta back into Morocco , which has started sending them home .\tNNP VBZ VBN VBG NNS WP VBP RB VBN PRP$ NNS IN NNP CC NNP RB IN NNP , WDT VBZ VBN VBG PRP NN .\nMore than 1,000 migrants have scaled the razor-wire fences surrounding the enclaves since August , seeking a better life in Europe .\tJJR IN CD NNS VBP VBN DT JJ NNS VBG DT NNS IN NNP , VBG DT JJR NN IN NNP .\nAt least 14 have died during the attempts .\tIN JJS CD VBP VBN IN DT NNS .\nAmnesty International has accused the European Union of failing to protect refugees .\tNNP NNP VBZ VBN DT NNP NNP IN VBG TO VB NNS .\nIndian novelist Kiran Desai has become the youngest female writer to win Britain 's Man Booker prize - one of the world 's most prestigious literary awards .\tJJ NN NNP NNP VBZ VBN DT JJS JJ NN TO VB NNP POS NNP NNP NN IN CD IN DT NN POS RBS JJ JJ NNS .\nDesai was selected the winner of the $ 93,000 prize Tuesday for her novel The Inheritance of Loss .\tNNP VBD VBN DT NN IN DT $ CD NN NNP IN PRP$ NN DT NN IN NNP .\nJudges called it a ' magnificent novel of humane breadth and wisdom , comic tenderness , and powerful political acuteness . '\tNNP VBD PRP DT `` JJ NN IN JJ NN CC NN , JJ NN , CC JJ JJ NN . ``\nIt is the story of a retired judge who moves into an isolated and crumbling house in the Himalayas hoping to live in peace when his orphaned granddaughter unexpectedly comes to live with him .\tPRP VBZ DT NN IN DT JJ NN WP VBZ IN DT JJ CC VBG NN IN DT NNP VBG TO VB IN NN WRB PRP$ VBN NN RB VBZ TO VB IN PRP .\nThe 35-year-old Desai was born in India and educated in the United States and England .\tDT JJ NNP VBD VBN IN NNP CC VBN IN DT NNP NNPS CC NNP .\nShe is the daughter of novelist Anita Desai , who has been nominated for a Booker prize three times .\tPRP VBZ DT NN IN NN NNP NNP , WP VBZ VBN VBN IN DT NNP NN CD NNS .\nThe U.N. war crimes tribunal in the Hague has overturned a conviction for complicity in genocide against a former Bosnian Serb army officer .\tDT NNP NN NNS JJ IN DT NNP VBZ VBN DT NN IN NN IN NN IN DT JJ JJ JJ NN NN .\nIn 2005 , Vidoje Blagojevic was convicted on several war crimes charges for giving logistical support to the 1995 massacre of more than 7,000 Muslims in the Bosnian enclave of Srebrenica .\tIN CD , NNP NNP VBD VBN IN JJ NN NNS NNS IN VBG JJ NN TO DT CD NN IN JJR IN CD NNS IN DT JJ NN IN NNP .\nBlagojevic appealed the conviction .\tNNP VBD DT NN .\nWednesday , appeals judges let most of the convictions stand but ruled he should have been acquitted on the genocide charge .\tNNP , NNS NNS VBP JJS IN DT NNS VBP CC VBD PRP MD VB VBN VBN IN DT NN NN .\nThe judges said it was impossible to show that he had knowledge of the ' genocidal intent ' of the massacre 's perpetrators .\tDT NNS VBD PRP VBD JJ TO VB IN PRP VBD NN IN DT `` JJ NN `` IN DT NN POS NNS .\nThe tribunal judges cut his sentence Wednesday , from 18 years in prison to 15 years .\tDT JJ NNS VBD PRP$ NN NNP , IN CD NNS IN NN TO CD NNS .\nThe massacre happened after Serb troops captured Srebrenica , which the U.N. had declared a safe area .\tDT NN VBD IN JJ NNS VBD NNP , WDT DT NNP VBD VBN DT JJ NN .\nIn 2004 , Bosnian Serb authorities acknowledged the deaths as a massacre for the first time .\tIN CD , JJ JJ NNS VBD DT NNS IN DT NN IN DT JJ NN .\nUnited Nations officials say some indigenous groups in Colombia face extinction because of ongoing political fighting that has forced them to flee their ancestral homes .\tNNP NNP NNS VBP DT JJ NNS IN NNP NN NN IN IN JJ JJ NN WDT VBZ VBN PRP TO VB PRP$ JJ NNS .\nFighting between the Colombian army and guerrillas from the Revolutionary Armed Forces of Colombia , FARC , in the past week has caused the displacement of an estimated 3,500 indigenous Nasa people in one southwest province .\tVBG IN DT JJ NN CC NNS IN DT JJ JJ NNS IN NNP , NNP , IN DT JJ NN VBZ VBN DT NN IN DT VBN CD JJ NNP NNS IN CD NN NN .\nObservers say that if the fighting continues , the number of displaced could reach 5,000 .\tNNS VBP IN IN DT NN VBZ , DT NN IN JJ MD VB CD .\nU.N. officials say the Embera people are also under threat .\tNNP NNS VBP DT NNP NNS VBP RB IN NN .\nAbout 4,000 of them could soon be driven from their homes in the northwest .\tIN CD IN PRP MD RB VB VBN IN PRP$ NNS IN DT NN .\nColombia 's indigenous peoples have suffered heavily during the civil war .\tNNP POS JJ NNS VBP VBN RB IN DT JJ NN .\nIllegal armed groups have killed their leaders and conscripted young people into the ranks .\tJJ JJ NNS VBP VBN PRP$ NNS CC VBN JJ NNS IN DT NNS .\nThe National Indigenous Organization of Colombia estimates that more than 20 indigenous leaders have disappeared or have been murdered so far this year .\tDT NNP NNP NNP IN NNP VBZ IN JJR IN CD JJ NNS VBP VBN CC VBP VBN VBN RB RB DT NN .\nA published report says the Bush administration has initiated a top-level internal review of its anti-terrorism policy , with the aim of moving away from hunting al-Qaida leadership and towards a broader strategy of dealing with violent extremism .\tDT JJ NN VBZ DT NNP NN VBZ VBN DT JJ JJ NN IN PRP$ JJ NN , IN DT NN IN VBG RB IN VBG NNP NN CC IN DT JJR NN IN VBG IN JJ NN .\nThe Washington Post in its Sunday edition says the new strategy has evolved as al-Qaida has become increasingly decentralized since the attacks of September 11 , 2001 .\tDT NNP NNP IN PRP$ NNP NN VBZ DT JJ NN VBZ VBN IN NNP VBZ VBN RB VBN IN DT NNS IN NNP CD , CD .\nWhite House officials tell the newspaper a new anti-terrorism model must emerge to cope with the rapid global spread of pro-al-Qaida Islamic jihadists .\tNNP NNP NNS VBP DT NN DT JJ JJ NN MD VB TO VB IN DT JJ JJ NN IN NNP NNP NNS .\nOfficials say hitting al-Qaida in Afghanistan after the 2001 attacks was a logical tactical maneuver .\tNNS VBP VBG NNP IN NNP IN DT CD NNS VBD DT JJ JJ NN .\nBut they say the new leadership among terror groups is difficult to target as they adapt and blend into multiple societies .\tCC PRP VBP DT JJ NN IN NN NNS VBZ JJ TO VB IN PRP VBP CC VBP IN JJ NNS .\nThe reported policy shift is the first major change in anti-terrorism strategy for the Bush administration since the attacks .\tDT JJ NN NN VBZ DT JJ JJ NN IN JJ NN IN DT NNP NN IN DT NNS .\nPresident Bush has called the ideology of Islamic radicals the great challenge of the 21st century .\tNNP NNP VBZ VBN DT NN IN NNP VBZ DT JJ NN IN DT JJ NN .\nThe president spoke Friday in Norfolk , Virginia , home to the world 's largest naval base , to a receptive audience that often broke into applause .\tDT NN VBD NNP IN NNP , NNP , NN TO DT NN POS JJS JJ NN , TO DT JJ NN WDT RB VBD IN NN .\nThe president compared Islamic radicals to dictators from the past including Hitler and Stalin .\tDT NN VBN NNP NNS TO NNS IN DT JJ VBG NNP CC NNP .\nHe said such militants must be taken seriously and stopped before their crimes multiply .\tPRP VBD JJ NNS MD VB VBN RB CC VBD IN PRP$ NNS RB .\nHe said protecting the freedoms of others in the world protects freedom in the United States .\tPRP VBD VBG DT NNS IN NNS IN DT NN VBZ NN IN DT NNP NNPS .\nMr. Bush stressed that Islamic radicalism is very different from Islam .\tNNP NNP VBD IN NNP NN VBZ RB JJ IN NNP .\nDuring his speech , a protester in the audience yelled , ' Mr. President , war is terror , ' and revealed a shirt saying ' Dump Bush . '\tIN PRP$ NN , DT NN IN DT NN VBD , `` NNP NNP , NN VBZ NN , `` CC VBD DT NN VBG `` NNP NNP . ``\nHe was escorted out of the auditorium , as other audience members voiced their disapproval of him .\tPRP VBD VBN IN IN DT NN , IN JJ NN NNS VBD PRP$ NN IN PRP .\nAfghan authorities say a roadside bomb in Afghanistan 's southern Kandahar province killed two police officers and wounded three others .\tJJ NNS VBP DT NN NN IN NNP POS JJ NNP NN VBD CD NNS NNS CC VBD CD NNS .\nA provincial spokesman said the intelligence chief of the capital city of Kabul was in the convoy , but the bomb missed him because he was in another car .\tDT JJ NN VBD DT NN NN IN DT NN NN IN NNP VBD IN DT NN , CC DT NN VBD PRP IN PRP VBD IN DT NN .\nSeparately , coalition and Afghan forces killed more 30 Taleban fighters in the southern Afghan province of Zabul Saturday .\tRB , NN CC JJ NNS VBN RBR CD NNP NNS IN DT JJ JJ NN IN NNP NNP .\nNo Afghan or coalition troops were hurt in the battle .\tDT JJ CC NN NNS VBD VBN IN DT NN .\nIn another incident , an Afghan army commander said fighting in Zabul left two Taliban dead and at least two others captured .\tIN DT NN , DT JJ NN NN VBD NN IN NNP VBD CD NNP JJ CC IN JJS CD NNS VBD .\nThe Taleban ruled Afghanistan between 1996 and 2001 , when they were toppled in a US-led invasion .\tDT NNP VBD NNP IN CD CC CD , WRB PRP VBD VBN IN DT JJ NN .\nThey are now waging an insurgency against the government and its allies .\tPRP VBP RB VBG DT NN IN DT NN CC PRP$ NNS .\nNigerian health officials say a deadly strain of bird flu has been detected for the first time in the southwestern state of Ogun .\tJJ NN NNS VBP DT JJ NN IN NN NN VBZ VBN VBN IN DT JJ NN IN DT JJ NN IN NNP .\nOfficials Saturday said H5N1 was found at a single farm in that state .\tNNP NNP VBD NNP VBD VBN IN DT JJ NN IN DT NN .\nThey said further testing and decontaminating processes are under way .\tPRP VBD JJ NN CC NN NNS VBP IN NN .\nHealth experts fear the disease could spread from Ogun to nearby Lagos , home to more than 13 million people .\tNNP NNS VBP DT NN MD VB IN NNP TO JJ NNP , NN TO JJR IN CD CD NNS .\nAlso Saturday , Poland confirmed a second outbreak of H5N1 among wild birds .\tRB NNP , NNP VBD DT JJ NN IN NNP IN JJ NNS .\nThe nation 's chief veterinary officer told reporters that a dead infected swan was found in a western town bordering Germany .\tDT NN POS JJ JJ NN VBD NNS IN DT JJ JJ NN VBD VBN IN DT JJ NN VBG NNP .\nIn recent days , dead swans with H5N1 were discovered in the central Polish town of Torun .\tIN JJ NNS , JJ NNS IN NNP VBD VBN IN DT JJ JJ NN IN NNP .\nAvian flu has spread from Asia to Europe , Africa and the Middle East .\tJJ NN VBZ VBN IN NNP TO NNP , NNP CC DT NNP NNP .\nThe World Health Organization says bird flu has killed 97 people since 2003 , mostly in Asia .\tDT NNP NNP NNP VBZ NN NN VBZ VBN CD NNS IN CD , RB IN NNP .\nU.S. Democratic presidential candidate Barack Obama met Sunday with T. Boone Pickens , a billionaire oilman and Republican , to discuss the future of U.S. energy policy .\tNNP JJ JJ NN NNP NNP VBD NNP IN NNP NNP NNP , DT NN NN CC JJ , TO VB DT NN IN NNP NN NN .\nBefore the meeting in Reno , Nevada , Senator Obama dismissed questions about Pickens 's involvement in the 2004 presidential election .\tIN DT NN IN NNP , NNP , NNP NNP VBD NNS IN NNP POS NN IN DT CD JJ NN .\nPickens contributed $ 3 million to a group called ' Swift Boat Veterans for Truth , ' which sought to discredit the Vietnam war service of then-Democratic presidential nominee John Kerry .\tNNP VBD $ CD CD TO DT NN VBN `` NNP NNP NNP IN NNP , `` WDT VBD TO VB DT NNP NN NN IN JJ JJ NN NNP NNP .\nThe attacks were seen as a factor in President George Bush 's 2004 victory .\tDT NNS VBD VBN IN DT NN IN NNP NNP NNP POS CD NN .\nPickens has endorsed neither Obama nor Republican candidate John McCain .\tNNP VBZ VBN DT NNP CC JJ NN NNP NNP .\nPickens is promoting a national energy plan that relies on natural gas to cut U.S. dependence on foreign oil .\tNNP VBZ VBG DT JJ NN NN WDT VBZ IN JJ NN TO VB NNP NN IN JJ NN .\nPickens met last week with Senator McCain , who had no public appearances scheduled Sunday .\tNNP VBD JJ NN IN NNP NNP , WP VBD DT JJ NNS VBN NNP .\nU.S.-based Muslim groups have joined governments and organizations around the world in condemning Thursday 's deadly bombings in London .\tJJ NN NNS VBP VBN NNS CC NNS IN DT NN IN VBG NNP POS JJ NNS IN NNP .\nIn a statement , the Washington-based Council on American-Islamic Relations condemned the attacks as ' barbaric crimes , ' which it said ' can never be justified or excused . '\tIN DT NN , DT JJ NNP IN NNP NNP VBD DT NNS IN `` JJ NNS , `` WDT PRP VBD `` MD RB VB VBN CC VBN . ``\nThe group has said in the past that those who commit acts of terror in the name of Islam are betraying that religion 's values .\tDT NN VBZ VBN IN DT NN IN DT WP VBP NNS IN NN IN DT NN IN NNP VBP VBG DT NN POS NNS .\nIn a separate statement , the Muslim Public Affairs Council extended condolences to the families of the victims and to the British people .\tIN DT JJ NN , DT NNP NNP NNP NNP VBD NNS TO DT NNS IN DT NNS CC TO DT JJ NNS .\nIt called the bombings an ' attack against humanity . '\tPRP VBD DT NNS DT `` NN IN NN . ``\nAn Iranian exile has accused Tehran of building a secret underground facility for enriching uranium at the Parchin military complex in northern Iran .\tDT JJ NN VBZ VBN NNP IN VBG DT JJ NN NN IN VBG NN IN DT NNP JJ NN IN JJ NNP .\nAli Reza Jafarzadeh , who has previously revealed accurate information about two hidden nuclear sites in Iran , told VOA Thursday that the Parchin facility was recently completed .\tNNP NNP NNP , WP VBZ RB VBN JJ NN IN CD JJ JJ NNS IN NNP , VBD NNP NNP IN DT NNP NN VBD RB VBN .\nMr. Jafarzadeh cited what he called sources inside the regime .\tNNP NNP VBD WP PRP VBD NNS IN DT NN .\nHe said the new facility has the capability to enrich uranium using laser technology .\tPRP VBD DT JJ NN VBZ DT NN TO VB NN VBG NN NN .\nIn certain forms , enriched uranium can be used to fuel nuclear weapons .\tIN JJ NNS , VBN NN MD VB VBN TO VB JJ NNS .\nIn January , international nuclear inspectors visited Parchin , but Tehran denied a second request to revisit the facility .\tIN NNP , JJ JJ NNS VBD NNP , CC NNP VBD DT JJ NN TO VB DT NN .\nThe United States has alleged that Iran is engaged in secret nuclear weapons research at Parchin , a charge Iran denies .\tDT NNP NNPS VBZ VBN IN NNP VBZ VBN IN JJ JJ NNS NN IN NNP , DT NN NNP VBZ .\nMr. Jafarzadeh previously was the spokesman for the National Council of Resistance of Iran , which Washington has designated as a terrorist organization .\tNNP NNP RB VBD DT NN IN DT NNP NNP IN NNP IN NNP , WDT NNP VBZ VBN IN DT JJ NN .\nIraqi officials say anti-American Shi'ite cleric Moqtada al-Sadr has returned to Iraq , after a nearly three-year absence .\tJJ NNS VBP JJ NNP NN NNP NNP VBZ VBN TO NNP , IN DT RB JJ NN .\nSadrist officials say the radical and influential figure returned to his family home in the city of Najaf on Wednesday .\tNNP NNS VBP DT JJ CC JJ NN VBD TO PRP$ NN NN IN DT NN IN NNP IN NNP .\nAl-Sadr has been living in Iran , and it is unclear how long he plans to stay in Iraq .\tNNP VBZ VBN VBG IN NNP , CC PRP VBZ JJ WRB RB PRP VBZ TO VB IN NNP .\nThe cleric emerged as a key U.S. foe after the 2003 invasion of Iraq , leading two uprisings carried out by his Mehdi Army against American forces .\tDT NN VBD IN DT JJ NNP NN IN DT CD NN IN NNP , VBG CD NNS VBN RP IN PRP$ NNP NNP IN JJ NNS .\nAl-Sadr 's political movement was a key player following last year 's disputed elections in Iraq .\tNNP POS JJ NN VBD DT JJ NN VBG JJ NN POS JJ NNS IN NNP .\nThe cleric 's bloc worked out a deal to be part of the new Iraqi government , and its support helped Prime Minister Nouri al-Maliki secure a second term .\tDT NN POS NN VBD RP DT NN TO VB NN IN DT JJ JJ NN , CC PRP$ NN VBD NNP NNP NNP NNP VB DT JJ NN .\nThe Sadrists won 39 out of 325 seats in parliament in the March , 2010 , elections .\tDT NNS VBD CD IN IN CD NNS IN NN IN DT NNP , CD , NNS .\nBritish director Ken Loach 's The Wind that Shakes the Barley - a drama about the struggle for Irish independence in the 1920s - has won the Palme d'Or , the top prize at the Cannes Film Festival .\tJJ NN NNP NNP POS DT NNP WDT VBZ DT NNP IN DT NN IN DT NN IN JJ NN IN DT NNS : VBZ VBN DT NNP NNP , DT JJ NN IN DT NNP NNP NNP .\nThe runner-up prize , The Grand Prix , was won by the French film Flanders .\tDT NN NN , DT NNP NNP , VBD VBN IN DT JJ NN NNP .\nOther winners in this year 's Cannes festival include Mexico 's Alejandro Gonzales Inarritu as Best Director .\tJJ NNS IN DT NN POS NNP NN VBP NNP POS NNP NNP NNP IN NNP NNP .\nThe female cast of the Spanish film Volver won collectively as Best actress - and the Best Actor award also want to a cast for Days of Glory , about North African soldiers defending France during World War II .\tDT JJ NN IN DT JJ NN NNP VBD RB IN JJS NN : CC DT JJS NN NN RB VBP TO DT NN IN NNS IN NNP , IN JJ JJ NNS VBG NNP IN NNP NNP NNP .\nWitnesses say a group of Palestinian policemen firing in the air took over the parliament building in Gaza City Monday .\tNNS VBP DT NN IN JJ NNS VBG IN DT NN VBD RP DT NN NN IN NNP NNP NNP .\nEyewitnesses say about 30 policemen entered the compound and closed the gates behind them .\tNNS VBP IN CD NNS VBD DT NN CC VBD DT NNS IN PRP .\nSome policemen were seen taking up positions on the roof .\tDT NNS VBD VBN VBG RP NNS IN DT NN .\nIt was not immediately clear why they took over the building .\tPRP VBD RB RB JJ WRB PRP VBD RP DT NN .\nLast week , Palestinian police and Fatah party activists held protests across the West Bank and Gaza Strip following the defeat of the long-dominant Fatah faction by the militant Hamas group in Wednesday 's parliamentary elections .\tJJ NN , JJ NN CC NNP NN NNS VBD NNS IN DT NNP NNP CC NNP NNP VBG DT NN IN DT JJ NNP NN IN DT JJ NNP NN IN NNP POS JJ NNS .\nProtesters demanded that Fatah leaders resign , and also warned against allowing Hamas to take control of Palestinian security forces .\tNNS VBD IN NNP NNS VB , CC RB VBD IN VBG NNP TO VB NN IN JJ NN NNS .\nThe European Union has submitted a package of proposals to Iran aimed at ending a long-running standoff over Tehran 's nuclear program .\tDT NNP NNP VBZ VBN DT NN IN NNS TO NNP VBN IN VBG DT JJ NN IN NNP POS JJ NN .\nThe offer was transmitted Friday by the ambassadors of Britain , France and Germany , which have been negotiating with Tehran to seek guarantees that its nuclear program is peaceful .\tDT NN VBD VBN NNP IN DT NNS IN NNP , NNP CC NNP , WDT VBP VBN VBG IN NNP TO VB NNS IN PRP$ JJ NN VBZ JJ .\nDetails of the plan were not immediately known .\tNNS IN DT NN VBD RB RB VBN .\nBut diplomats quoted by the New York Times said Europe planned to offer Iran a sweeping proposal allowing it to acquire nuclear reactors and fuel and achieve a full economic relationship with the West if it ends its suspected weapons program .\tCC NNS VBN IN DT NNP NNP NNP VBD NNP VBD TO VB NNP DT JJ NN VBG PRP TO VB JJ NNS CC NN CC VB DT JJ JJ NN IN DT NNP IN PRP VBZ PRP$ JJ NNS NN .\nThe report says the proposal seeks a pledge by Iran to end any uranium conversion and enrichment activities .\tDT NN VBZ DT NN VBZ DT NN IN NNP TO VB DT NN NN CC NN NNS .\nA spokesman for the International Atomic Energy Agency said Friday a special session will be held Tuesday to discuss Iran 's threat to resume sensitive nuclear fuel cycle work .\tDT NN IN DT NNP NNP NNP NNP VBD NNP DT JJ NN MD VB VBN NNP TO VB NNP POS NN TO VB JJ JJ NN NN NN .\nThree bombings in northern Iraq killed six people Saturday , including one child .\tCD NNS IN JJ NNP VBD CD NNS NNP , VBG CD NN .\nIn one attack , police say a roadside bomb exploded about 80 kilometers south of Mosul , killing two police officers and one soldier .\tIN CD NN , NNS VBP DT NN NN VBD IN CD NNS RB IN NNP , VBG CD NNS NNS CC CD NN .\nIn a second attack , a roadside bomb targeting an Iraqi army patrol exploded about 25 kilometers south of Mosul , killing the child and one soldier .\tIN DT JJ NN , DT NN NN VBG DT JJ NN NN VBD IN CD NNS RB IN NNP , VBG DT NN CC CD NN .\nThe third bombing took place in Fallujah , about 50 kilometers west of Baghdad .\tDT JJ NN VBD NN IN NNP , IN CD NNS JJS IN NNP .\nPolice say two bombs exploded near the home of a former police officer , killing a woman .\tNNS VBP CD NNS VBD IN DT NN IN DT JJ NN NN , VBG DT NN .\nInsurgent attacks remain common in some areas of Iraq , although such violence has dropped significantly since reaching its highest levels between 2005 to 2007 .\tJJ NNS VBP JJ IN DT NNS IN NNP , IN JJ NN VBZ VBN RB IN VBG PRP$ JJS NNS IN CD TO CD .\nThe International Committee of the Red Cross says one of its aid workers has been killed in Haiti .\tDT NNP NNP IN DT NNP NNP VBZ CD IN PRP$ NN NNS VBZ VBN VBN IN NNP .\nIn Geneva Friday , a spokesman for the aid agency said Joel Cauvin , a Haitian staff member , was found dead Thursday .\tIN NNP NNP , DT NN IN DT NN NN VBD NNP NNP , DT JJ NN NN , VBD VBN JJ NNP .\nHe said Mr. Cauvin was abducted Wednesday night near his home in Port-au-Prince .\tPRP VBD NNP NNP VBD VBN NNP NN IN PRP$ NN IN NN .\nThe ICRC said it has no information that the killing was targeted at the agency .\tDT NNP VBD PRP VBZ DT NN IN DT NN VBD VBN IN DT NN .\nIt said it will continue its humanitarian operations in Haiti .\tPRP VBD PRP MD VB PRP$ JJ NNS IN NNP .\nPolitical and gang violence has plagued the country since President Jean-Bertrand Arrested was ousted in February 2004 following an armed revolt .\tNN CC NN NN VBZ VBN DT NN IN NNP NNP NNP VBD VBN IN NNP CD VBG DT JJ NN .\nLast week , the United Nations Security Council agreed to add another 1,000 soldiers and police to the peacekeeping mission ahead of elections later this year .\tJJ NN , DT NNP NNP NNP NNP VBD TO VB DT CD NNS CC NNS TO DT VBG NN RB IN NNS RBR DT NN .\nThat would bring the number of troops in Haiti to 7,500 .\tDT MD VB DT NN IN NNS IN NNP TO CD .\nColombian police say suspected leftist rebels have executed at least seven farm workers involved in coca harvesting in the southwest of the country .\tJJ NNS VBP VBN JJ NNS VBP VBN IN JJS CD NN NNS VBN IN NN NN IN DT JJS IN DT NN .\nAuthorities say the attack was carried out Wednesday in the province of Narino by gunmen from Revolutionary Armed Forces of Colombia , or FARC .\tNNS VBP DT NN VBD VBN IN NNP IN DT NN IN NNP IN NNS IN NNP NNP NNS IN NNP , CC NNP .\nThey say the rebel group killed the farm workers as part of its battle for ownership of lucrative coca fields used in the production of cocaine .\tPRP VBP DT NN NN VBD DT NN NNS IN NN IN PRP$ NN IN NN IN JJ NN NNS VBN IN DT NN IN NN .\nFARC militants have been fighting a long-running conflict with far-right paramilitaries in the region , with each side trying to control drug smuggling routes to Central America .\tNNP NNS VBP VBN VBG DT JJ NN IN JJ NNS IN DT NN , IN DT NN VBG TO VB NN VBG NNS TO NNP NNP .\nU.S. Defense Secretary Donald Rumsfeld has left Washington on a trip scheduled to take him to several Asian and European nations .\tNNP NNP NNP NNP NNP VBZ VBN NNP IN DT NN VBN TO VB PRP TO JJ JJ CC JJ NNS .\nHis first stop is China , where he is scheduled to meet with his counterpart General Cao Gangchuan and Chinese President Hu Jintao .\tPRP$ JJ NN VBZ NNP , WRB PRP VBZ VBN TO VB IN PRP$ NN NNP NNP NNP CC JJ NNP NNP NNP .\nTalks are expected to focus on military relations between the two nations .\tNNS VBP VBN TO VB IN JJ NNS IN DT CD NNS .\nRelations have been strained in recent years over the Taiwan issue , China 's rapid military buildup and the 2001 collision between a U.S. surveillance plane and a Chinese fighter jet .\tNNP VBP VBN VBN IN JJ NNS IN DT NNP NN , NNP POS JJ JJ NN CC DT CD NN IN DT NNP NN NN CC DT JJ NN NN .\nMr. Rumsfeld is scheduled to tour the headquarters of China 's Second Artillery Corps , which controls the country 's strategic missiles .\tNNP NNP VBZ VBN TO VB DT NN IN NNP POS JJ NNP NNP , WDT VBZ DT NN POS JJ NNS .\nChinese officials denied a request to visit the national military command center .\tJJ NNS VBD DT NN TO VB DT JJ JJ NN NN .\nThe Defense Secretary is also scheduled to visit South Korea , Mongolia , Kazakhstan and Lithuania .\tDT NNP NNP VBZ RB VBN TO VB NNP NNP , NNP , NNP CC NNP .\nThe United Nations ' special envoy for human rights has visited with prisoners in a northwest Burmese jail .\tDT NNP NNPS POS JJ NN IN JJ NNS VBZ VBN IN NNS IN DT JJ JJ NN .\nOfficials say Tomas Ojea Quintana traveled to the northwestern state of Rakhine to meet Wednesday with detainees being held at the Butheetaung prison near the border with Bangladesh .\tNNS VBP NNP NNP NNP VBD TO DT JJ NN IN NNP TO VB NNP IN NNS VBG VBN IN DT NNP NN IN DT NN IN NNP .\nHe is also expected to visit Burma 's infamous Insein prison near Rangoon , and travel to Naypyidaw , Burma 's administrative capital , to meet with several officials from Burma 's military government .\tPRP VBZ RB VBN TO VB NNP POS JJ NNP NN IN NNP , CC NN TO NNP , NNP POS JJ NN , TO VB IN JJ NNS IN NNP POS JJ NN .\nHe is scheduled to leave Burma on Friday .\tPRP VBZ VBN TO VB NNP IN NNP .\nAhead of his trip to the region , the military released National League for Democracy vice chairman Tin Oo , after seven years of detention .\tNN IN PRP$ NN TO DT NN , DT JJ VBN NNP NNP IN NNP NN NN NNP NNP , IN CD NNS IN NN .\nNLD leader Aung San Suu Kyi remains one of 2,100 political dissidents being held in Burma .\tNNP NN NNP NNP NNP NNP VBZ CD IN CD JJ NNS VBG VBN IN NNP .\nShe has been under some form of detention in Burma for 14 of the past 20 years .\tPRP VBZ VBN IN DT NN IN NN IN NNP IN CD IN DT JJ CD NNS .\nThe son of professional wrestler Hulk Hogan has been released from a Florida hospital , after being involved in an August 26 car crash .\tDT NN IN JJ NN NNP NNP VBZ VBN VBN IN DT NNP NN , IN VBG VBN IN DT NNP CD NN NN .\nPolice in Clearwater , Florida say Nick Bollea was driving his Toyota Supra sports car at a high rate of speed when it hit a median , flipped , and struck a tree .\tNNS IN NNP , NNP VBP NNP NNP VBD VBG PRP$ NNP NNP NNS NN IN DT JJ NN IN NN WRB PRP VBD DT NN , VBD , CC VBD DT NN .\nClearwater Police spokesman Wayne Shelor said the car was destroyed .\tNNP NNP NN NNP NNP VBD DT NN VBD VBN .\nBollea and a companion , 22-year-old John Graziano , were extricated from the vehicle and airlifted to Bayfront Medical Center in St. Petersburg .\tNNP CC DT NN , JJ NNP NNP , VBD VBN IN DT NN CC VBN TO NNP NNP NNP IN NNP NNP .\nBollea was released from the hospital on August 27 , while Graziano is reportedly in critical condition .\tNNP VBD VBN IN DT NN IN NNP CD , IN NNP VBZ RB IN JJ NN .\nShelor said alcohol did not appear to be a factor in the crash , with excessive speed the likely culprit .\tNNP VBD NN VBD RB VB TO VB DT NN IN DT NN , IN JJ NN DT JJ NN .\nSeventeen-year-old Nick Bollea appears on the reality TV show Hogan Knows Best with his father , mother , and sister .\tJJ NNP NNP VBZ IN DT NN NN NN NNP NNP NNP IN PRP$ NN , NN , CC NN .\nAn Iraqi man convicted in the 2004 kidnapping and killing of a British aid worker may have escaped from prison .\tDT JJ NN VBN IN DT CD NN CC NN IN DT JJ NN NN MD VB VBN IN NN .\nA lawyer for former Care International worker Margaret Hassan told the French news agency that Ali Lutfi Jassar al-Rawi did not appear at a Thursday appeal hearing .\tDT NN IN JJ NNP NNP NN NNP NNP VBD DT JJ NN NN WDT NNP NNP NNP NNP VBD RB VB IN DT NNP NN NN .\nHassan 's lawyer says Iraqi officials have told him Jassar is missing from prison and his whereabouts are unknown .\tNNP POS NN VBZ JJ NNS VBP VBN PRP NNP VBZ VBG IN NN CC PRP$ NNS VBP JJ .\nLast year , a Baghdad court sentenced Jassar to life in prison for his role in Hassan 's death .\tJJ NN , DT NNP NN VBD NNP TO NN IN NN IN PRP$ NN IN NNP POS NN .\nIraqi officials had sentenced a second man , Mustafa Salman al-Jibouri , to life in the case but later reduced his sentence on appeal .\tJJ NNS VBD VBN DT JJ NN , NNP NNP NNP , TO NN IN DT NN CC RB VBD PRP$ NN IN NN .\nHassan had lived in Iraq for 30 years and served as the head of Care International in Baghdad .\tNNP VBD VBN IN NNP IN CD NNS CC VBD IN DT NN IN NNP NNP IN NNP .\nAfter she was kidnapped , she appeared in several videos appealing for British forces to withdraw from Iraq .\tIN PRP VBD VBN , PRP VBD IN JJ NNS VBG IN JJ NNS TO VB IN NNP .\nInvestigators have not found her body .\tNNS VBP RB VBN PRP$ NN .\nThe United States says it is monitoring the situation closely regarding Iran 's controversial presidential election , including reports of voting irregularities .\tDT NNP NNPS VBZ PRP VBZ VBG DT NN RB VBG NNP POS JJ JJ NN , VBG NNS IN NN NNS .\nWhite House spokesman Robert Gibbs says the U.S. is impressed by the ' vigorous debate and enthusiasm ' the election generated , particularly among young Iranians .\tNNP NNP NN NNP NNP VBZ DT NNP VBZ VBN IN DT `` JJ NN CC NN `` DT NN VBD , RB IN JJ NNS .\nSpeaking Saturday in Canada , U.S. Secretary of State Hillary Clinton said the United States hopes the outcome of the Iranian election reflects the ' genuine will and desire of the Iranian people . '\tVBG NNP IN NNP , NNP NNP IN NNP NNP NNP VBD DT NNP NNPS VBZ DT NN IN DT JJ NN VBZ DT `` JJ NN CC NN IN DT JJ NNS . ``\nShe said like the rest of the world , the U.S. is waiting and watching to see what the Iranian people decide .\tPRP VBD IN DT NN IN DT NN , DT NNP VBZ VBG CC VBG TO VB WP DT JJ NNS VBP .\nStanding alongside Clinton , Canadian Foreign Minister Lawrence Cannon said his country is ' deeply concerned ' with reports of voting irregularities in Iran .\tVBG IN NNP , JJ NNP NNP NNP NNP VBD PRP$ NN VBZ `` RB JJ `` IN NNS IN NN NNS IN NNP .\nHe called on Iranian authorities to conduct a ' fair and transparent ' counting of the ballots .\tPRP VBD RP JJ NNS TO VB DT `` JJ CC JJ `` NN IN DT NNS .\nU.S. Olympic speedskater Joey Cheek is following through on his promise to lend a helping hand to children in Africa .\tNNP NNP NN NNP NNP VBZ VBG IN IN PRP$ NN TO VB DT VBG NN TO NNS IN NNP .\nCheek met with U.S. lawmakers Tuesday to promote the work of the humanitarian aid group Right to Play .\tNNP VBD IN NNP NNS NNP TO VB DT NN IN DT JJ NN NN RB TO VB .\nThe gold and silver medalist made headlines during the Olympics when he donated his $ 40,000 Olympic bonus to support the group 's work in Sudan 's violence wracked Darfur region .\tDT NN CC NN NN VBD NNS IN DT NNS WRB PRP VBD PRP$ $ CD NNP NN TO VB DT NN POS NN IN NNP POS NN VBD NNP NN .\nThe organization , founded by Norwegian Olympic champ Johann Koss , emphasizes sporting and recreational activities for children in 23 countries , 14 of them in Africa .\tDT NN , VBN IN JJ NNP NN NNP NNP , VBZ NN CC JJ NNS IN NNS IN CD NNS , CD IN PRP IN NNP .\nCheek told VOA 's English to Africa service that he plans to visit Zambia in April to observe some of the group 's projects .\tNNP VBD NNP POS NNP TO NNP NN IN PRP VBZ TO VB NNP IN NNP TO VB DT IN DT NN POS NNS .\nThey include AIDS awareness and prevention , and vaccinations against diseases .\tPRP VBP NNP NN CC NN , CC NNS IN NNS .\nMexican federal police say they have captured a regional leader of the Zetas drug gang , who allegedly trafficked drugs from the Dominican Republic and Panama to the United States .\tJJ JJ NNS VBP PRP VBP VBN DT JJ NN IN DT NNP NN NN , WP RB VBD NNS IN DT NNP NNP CC NNP TO DT NNP NNPS .\nSecurity official Luis Cardenas said Thursday that Eduardo Ramirez Valencia was detained Wednesday along with an accomplice in Hidalgo state .\tNNP NN NNP NNP VBD NNP IN NNP NNP NNP VBD VBN NNP IN IN DT NN IN NNP NN .\nCardenas also said Ramirez was thought to have collaborated closely with Heriberto Lazcano , an alleged Zeta leader .\tNNP RB VBD NNP VBD VBN TO VB VBN RB IN NNP NNP , DT JJ NNP NN .\nAuthorities have blamed the Zetas , in part , for an escalation in violence in northeastern Mexico this year .\tNNS VBP VBN DT NNP , IN NN , IN DT NN IN NN IN JJ NNP DT NN .\nMexico 's northern border is being rocked by violent crime and clashes involving groups battling for control of drug-trafficking routes into the United States .\tNNP POS JJ NN VBZ VBG VBN IN JJ NN CC NNS VBG NNS VBG IN NN IN JJ NNS IN DT NNP NNPS .\nAbout 30,000 people have been killed in Mexico 's drug war since President Felipe Calderon took office in late 2006 and began cracking down on the cartels .\tIN CD NNS VBP VBN VBN IN NNP POS NN NN IN NNP NNP NNP VBD NN IN JJ CD CC VBD VBG RP IN DT NNS .\nBritain 's Prime Minister Tony Blair says last week 's terrorist attacks in London were probably carried out by Islamist extremists .\tNNP POS NNP NNP NNP NNP VBZ JJ NN POS JJ NNS IN NNP VBD RB VBN RP IN NNP NNS .\nSpeaking to parliament , Mr. Blair declined to give details on an ongoing police investigation .\tVBG TO NN , NNP NNP VBD TO VB NNS IN DT JJ NN NN .\nBut he praised the work of police and emergency services after the blasts on underground trains and a double-decker bus .\tCC PRP VBD DT NN IN NN CC NN NNS IN DT NNS IN JJ NNS CC DT JJ NN .\nOpposition leader Michael Howard said he hopes the government in coming weeks will try to uncover possible security flaws exploited in the attacks .\tNN NN NNP NNP VBD PRP VBZ DT NN IN VBG NNS MD VB TO VB JJ NN NNS VBN IN DT NNS .\nMeantime , police say the confirmed number of dead in the bombings has risen to 52 , with about 700 people injured .\tRB , NNS VBP DT VBN NN IN JJ IN DT NNS VBZ VBN TO CD , IN RB CD NNS VBN .\nForensic experts say it may be weeks before all of the victims are publicly identified .\tJJ NNS VBP PRP MD VB NNS IN DT IN DT NNS VBP RB VBN .\nLondon Mayor Ken Livingstone became the first to sign a book of condolences for the victims , writing ' the city will endure . '\tNNP NNP NNP NNP VBD DT JJ TO VB DT NN IN NNS IN DT NNS , VBG `` DT NN MD VB . ``\nNew Zealand occupied the German protectorate of Western Samoa at the outbreak of World War I in 1914 .\tNNP NNP VBD DT JJ NN IN JJ NNP IN DT NN IN NNP NNP NNP IN CD .\nIt continued to administer the islands as a mandate and then as a trust territory until 1962 , when the islands became the first Polynesian nation to reestablish independence in the 20th century .\tPRP VBD TO VB DT NNS IN DT NN CC RB IN DT NN NN IN CD , WRB DT NNS VBD DT JJ JJ NN TO VB NN IN DT JJ NN .\nThe country dropped the ' Western ' from its name in 1997 .\tDT NN VBD DT `` JJ `` IN PRP$ NN IN CD .\nGuam was ceded to the US by Spain in 1898 .\tNNP VBD VBN TO DT NNP IN NNP IN CD .\nCaptured by the Japanese in 1941 , it was retaken by the US three years later .\tVBN IN DT NNS IN CD , PRP VBD VBN IN DT NNP CD NNS RB .\nThe military installation on the island is one of the most strategically important US bases in the Pacific .\tDT JJ NN IN DT NN VBZ CD IN DT RBS RB JJ NNP NNS IN DT NNP .\nAfter three decades as part of the UN Trust Territory of the Pacific under US administration , this westernmost cluster of the Caroline Islands opted for independence in 1978 rather than join the Federated States of Micronesia .\tIN CD NNS IN NN IN DT NNP NNP NNP IN DT NNP IN NNP NN , DT JJ NN IN DT NNP NNP VBD IN NN IN CD RB IN VB DT NNP NNPS IN NNP .\nA Compact of Free Association with the US was approved in 1986 but not ratified until 1993 .\tDT NN IN NNP NNP IN DT NNP VBD VBN IN CD CC RB VBN IN CD .\nIt entered into force the following year when the islands gained independence .\tPRP VBD IN NN DT JJ NN WRB DT NNS VBD NN .\nBurkina Faso is a poor , landlocked country that relies heavily on cotton and gold exports for revenue .\tNNP NNP VBZ DT JJ , JJ NN WDT VBZ RB IN NN CC NN NNS IN NN .\nThe country has few natural resources and a weak industrial base .\tDT NN VBZ JJ JJ NNS CC DT JJ JJ NN .\nAbout 90 % of the population is engaged in subsistence agriculture , which is vulnerable to periodic drought .\tRB CD NN IN DT NN VBZ VBN IN NN NN , WDT VBZ JJ TO JJ NN .\nCotton is the main cash crop .\tNN VBZ DT JJ NN NN .\nSince 1998 , Burkina Faso has embarked upon a gradual privatization of state-owned enterprises and in 2004 revised its investment code to attract foreign investment .\tIN CD , NNP NNP VBZ VBN IN DT JJ NN IN JJ NNS CC IN CD VBN PRP$ NN NN TO VB JJ NN .\nAs a result of this new code and other legislation favoring the mining sector , the country has seen an upswing in gold exploration and production .\tIN DT NN IN DT JJ NN CC JJ NN VBG DT NN NN , DT NN VBZ VBN DT NN IN NN NN CC NN .\nBy 2010 , gold had become the main source of export revenue .\tIN CD , NN VBD VBN DT JJ NN IN NN NN .\nBurundi 's first democratically elected president was assassinated in October 1993 after only 100 days in office , triggering widespread ethnic violence between Hutu and Tutsi factions .\tNNP POS JJ RB VBN NN VBD VBN IN NNP CD IN RB CD NNS IN NN , VBG JJ JJ NN IN NNP CC NNP NNS .\nMore than 2,00,000 Burundians perished during the conflict that spanned almost a dozen years .\tJJR IN CD NNS VBN IN DT NN WDT VBD RB DT NN NNS .\nHundreds of thousands of Burundians were internally displaced or became refugees in neighboring countries .\tNNS IN NNS IN NNS VBD RB JJ CC VBD NNS IN JJ NNS .\nAn internationally brokered power-sharing agreement between the Tutsi-dominated government and the Hutu rebels in 2003 paved the way for a transition process that led to an integrated defense force , established a new constitution in 2005 , and elected a majority Hutu government in 2005 .\tDT RB VBN JJ NN IN DT JJ NN CC DT NNP NNS IN CD VBD DT NN IN DT NN NN WDT VBD TO DT JJ NN NN , VBD DT JJ NN IN CD , CC VBD DT NN NNP NN IN CD .\nThe new government , led by President Pierre NKURUNZIZA , signed a South African brokered ceasefire with the country 's last rebel group in September of 2006 but still faces many challenges .\tDT JJ NN , VBN IN NNP NNP NNP , VBD DT JJ JJ JJ NN IN DT NN POS JJ NN NN IN NNP IN CD CC RB VBZ JJ NNS .\nTHREE BULLS for a long time pastured together .\tNN NNS IN DT JJ NN VBN RB .\nA Lion lay in ambush in the hope of making them his prey , but was afraid to attack them while they kept together .\tDT NN VBD IN NN IN DT NN IN VBG PRP PRP$ NN , CC VBD JJ TO VB PRP IN PRP VBD RB .\nHaving at last by guileful speeches succeeded in separating them , he attacked them without fear as they fed alone , and feasted on them one by one at his own leisure .\tVBG IN JJ IN JJ NNS VBN IN VBG PRP , PRP VBD PRP IN NN IN PRP VBD RB , CC VBN IN PRP CD IN CD IN PRP$ JJ NN .\nUnion is strength .\tNN VBZ NN .\nTHE SWALLOW and the Crow had a contention about their plumage .\tDT NN CC DT NN VBD DT NN IN PRP$ NN .\nThe Crow put an end to the dispute by saying , ' Your feathers are all very well in the spring , but mine protect me against the winter . '\tDT NN VBD DT NN TO DT NN IN VBG , `` PRP$ NNS VBP DT RB RB IN DT NN , CC NN VBP PRP IN DT NN . ``\nFair weather friends are not worth much .\tJJ NN NNS VBP RB JJ NN .\nI just read that last year 41,53,237 people got married .\tPRP RB VBD IN JJ NN CD NNS VBD VBN .\nI do n't want to start any trouble , but should n't that be an even number ?\tPRP VBP RB VB TO VB DT NN , CC MD RB DT VB DT RB NN .\nBurma 's second ranking official has arrived in Bangladesh for talks that will focus on border issues and a possible land leasing deal for Bangladeshi farmers .\tNNP POS JJ JJ NN VBZ VBN IN NNP IN NNS WDT MD VB IN NN NNS CC DT JJ NN NN NN IN JJ NNS .\nVice Senior General Maung Aye brought an entourage of 55 officials with him , including seven ministers , for the three-day visit .\tNNP NNP NNP NNP NNP VBD DT NN IN CD NNS IN PRP , VBG CD NNS , IN DT JJ NN .\nDuring meetings with Bangladeshi officials the delegation will discuss sea border issues , cross-border road projects and a plan to lease border land to farmers in Bangladesh for cultivation .\tIN NNS IN JJ NNS DT NN MD VB NN NN NNS , JJ NN NNS CC DT NN TO VB NN NN TO NNS IN NNP IN NN .\nThe establishment of a cross-border road is expected to top the agenda .\tDT NN IN DT JJ NN VBZ VBN TO VB DT NN .\nThe road is part of a plan to create an overland link between Bangladesh and China .\tDT NN VBZ NN IN DT NN TO VB DT JJ NN IN NNP CC NNP .\nThe European Union 's top military advisor says a lack of equipment , including helicopters , may delay the bloc 's peacekeeping mission to Chad .\tDT NNP NNP POS JJ JJ NN VBZ DT NN IN NN , VBG NNS , MD VB DT NN POS NN NN TO NNP .\nGeneral Henri Bentegeat says the mission also needs medical support and logistics assets .\tNNP NNP NNP VBZ DT NN RB VBZ JJ NN CC NNS NNS .\nHe is to discuss the issue with EU defense ministers on Monday in Brussels .\tPRP VBZ TO VB DT NN IN NNP NN NNS IN NNP IN NNP .\nThe EU plans to send about 3,000 peacekeeping troops to Chad to help secure refugee camps along Chad 's border with Sudan 's troubled Darfur region .\tDT NNP VBZ TO VB IN CD VBG NNS TO VB TO VB VB NN NNS IN NNP POS NN IN NNP POS JJ NNP NN .\nViolence from the Darfur conflict has spilled into Chad , displacing tens of thousands of people .\tNN IN DT NNP NN VBZ VBN IN NNP , VBG NNS IN NNS IN NNS .\nThe first EU troops are expected to arrive in Chad in December .\tDT JJ NNP NNS VBP VBN TO VB IN NNP IN NNP .\nChina and India reported new human deaths from the deadly H5N1 strain of the avian flu on Friday , as authorities in Azerbaijan and Nigeria moved to contain newly reported cases among birds .\tNNP CC NNP VBD JJ JJ NNS IN DT JJ NNP NN IN DT JJ NN IN NNP , IN NNS IN NNP CC NNP VBD TO VB RB VBN NNS IN NNS .\nChina 's Health Ministry said a 20-year-old woman from the central Hunan province died from bird flu last week .\tNNP POS NNP NNP VBD DT JJ NN IN DT JJ NNP NN VBD IN NN NN JJ NN .\nIndonesian officials also reported that a woman has died from bird flu .\tJJ NNS RB VBD IN DT NN VBZ VBN IN NN NN .\nThey said a second woman suspected of having the virus is in critical condition at a Jakarta hospital .\tPRP VBD DT JJ NN VBN IN VBG DT NN VBZ IN JJ NN IN DT NNP NN .\nAzerbaijan on Friday became the latest country to report an outbreak of the virus among waterfowl .\tNNP IN NNP VBD DT JJS NN TO VB DT NN IN DT NN IN NN .\nHealth officials said lab tests revealed the deadly H5N1 strain among wild birds found dead near the Caspian Sea .\tNNP NNS VBD NN NNS VBD DT JJ NNP NN IN JJ NNS VBN JJ IN DT NNP NNP .\nThe first cases in Africa were detected earlier this week on poultry farms in Nigeria .\tDT JJ NNS IN NNP VBD VBN RBR DT NN IN NN NNS IN NNP .\nForeign governments and aid organization have promised to help Nigeria contain the virus , which has killed nearly 90 people worldwide since 2003 .\tJJ NNS CC NN NN VBP VBN TO VB NNP VB DT NN , WDT VBZ VBN RB CD NNS JJ IN CD .\nThe European Parliament has urged European Union states to maintain their almost 16-year-old arms embargo on China in light of what lawmakers call Beijing 's lack of progress on human rights .\tDT NNP NNP VBZ VBN NNP NNP NNS TO VB PRP$ RB JJ NNS NN IN NNP IN NN IN WP NNS VBP NNP POS NN IN NN IN JJ NNS .\nA resolution approved Thursday in Strasbourg also notes China 's adoption of a so-called anti-secession law that authorizes the use of force against Taiwan if the island moves towards declaring formal independence from Beijing .\tDT NN VBN NNP IN NNP RB VBZ NNP POS NN IN DT JJ NN NN WDT VBZ DT NN IN NN IN NNP IN DT NN VBZ IN VBG JJ NN IN NNP .\nThe European Union imposed the embargo in 1989 following Beijing 's bloody crackdown on pro-democracy demonstrators .\tDT NNP NNP VBD DT NN IN CD VBG NNP POS JJ NN IN JJ NNS .\nBut late last year , EU member states agreed in principle to lift the restrictions by the end of June .\tCC RB JJ NN , NNP NN NNS VBD IN NN TO VB DT NNS IN DT NN IN NNP .\nIn Berlin , German Chancellor Gerhard Schroeder again backed plans for lifting the ban .\tIN NNP , JJ NNP NNP NNP RB VBD NNS IN VBG DT NN .\nHe told parliament the embargo is unnecessary , because China has changed much in the past 15 years .\tPRP VBD NN DT NN VBZ JJ , IN NNP VBZ VBN RB IN DT JJ CD NNS .\nAn environmental organization says several countries are refusing to cooperate with an investigation of the deadly strain of bird flu .\tDT JJ NN VBZ JJ NNS VBP VBG TO VB IN DT NN IN DT JJ NN IN NN NN .\nDutch-based Wetlands International is the non-governmental agency commissioned by the U.N. Food and Agriculture Organization to research H5N1 in wild birds .\tJJ NNP NNP VBZ DT JJ NN VBN IN DT NNP NNP CC NNP NNP TO VB NNP IN JJ NNS .\nWetlands International says Iran , Nigeria , Sudan , Tunisia and Turkey have refused to grant access to researchers .\tNNP NNP VBZ NNP , NNP , NNP , NNP CC NNP VBP VBN TO VB NN TO NNS .\nThe organization says it believes the refusals are the result of concerns by those countries about the potential impact on poultry exports and tourism if the virus is found in wild birds .\tDT NN VBZ PRP VBZ DT NNS VBP DT NN IN NNS IN DT NNS IN DT JJ NN IN NN NNS CC NN IN DT NN VBZ VBN IN JJ NNS .\nMeanwhile , European Union countries are dealing with millions of dollars in lost revenue as demand for poultry products falls off sharply .\tRB , NNP NNP NNS VBP VBG IN NNS IN NNS IN JJ NN IN NN IN NN NNS VBZ RP RB .\nBird flu has spread from Asia to Europe , Africa and the Mideast , killing 94 people since 2003 .\tNN NN VBZ VBN IN NNP TO NNP , NNP CC DT NN , VBG CD NNS IN CD .\nFive Sudanese men have been formally charged with murdering a U.S. diplomat and his driver last year .\tCD JJ NNS VBP VBN RB VBN IN VBG DT NNP NN CC PRP$ NN JJ NN .\nThe men , who could face the death penalty if convicted , entered pleas of not guilty during a hearing in a Khartoum court Thursday .\tDT NNS , WP MD VB DT NN NN IN VBN , VBD NNS IN RB JJ IN DT NN IN DT NNP NN NNP .\nThe men are accused of killing John Granville , an officer with the U.S. Agency for International Development , and his driver , Abdelrahman Abbas Rahama .\tDT NNS VBP VBN IN VBG NNP NNP , DT NN IN DT NNP NNP IN NNP NNP , CC PRP$ NN , NNP NNP NNP .\nThe two were shot and killed in Khartoum in the early hours of New Year 's Day , 2008 .\tDT CD VBD VBN CC VBN IN NNP IN DT JJ NNS IN NNP NNP POS NNP , CD .\nProsecutors say the alleged assailants were Islamic extremists who decided to attack foreigners .\tNNS VBP DT JJ NNS VBD JJ NNS WP VBD TO VB NNS .\nThe men have said they were tortured into confessing to the crimes .\tDT NNS VBP VBN PRP VBD VBN IN VBG TO DT NNS .\nVenezuelan prosecutors want Colombia to extradite businessman Pedro Carmona , who assumed power in Venezuela during a brief coup against President Hugo Chavez in 2002 .\tJJ NNS VBP NNP TO VB NN NNP NNP , WP VBD NN IN NNP IN DT JJ NN IN NNP NNP NNP IN CD .\nProsecutors provided evidence Monday detailing their accusations against Carmona .\tNNS VBD NN NNP VBG PRP$ NNS IN NNP .\nThey have requested that he be charged with civilian rebellion .\tPRP VBP VBN IN PRP VB VBN IN JJ NN .\nVenezuelan military officers arrested President Chavez in April 2002 and announced his resignation after at least 17 unarmed protesters were shot and killed during an anti-government rally .\tJJ JJ NNS VBD NNP NNP IN NNP CD CC VBD PRP$ NN IN IN JJS CD JJ NNS VBD VBN CC VBN IN DT JJ NN .\nCoup leaders installed Carmona as interim leader .\tNN NNS VBD NNP IN JJ NN .\nHe was forced out two days later when military leaders withdrew their support and returned President Chavez to office .\tPRP VBD VBN IN CD NNS RB WRB JJ NNS VBD PRP$ NN CC VBD NNP NNP TO NN .\nPalestinian President Mahmoud Abbas says Israeli and Palestinian negotiators will meet Monday to begin talks on issues that must be resolved for a peace treaty .\tJJ NNP NNP NNP VBZ JJ CC JJ NNS MD VB NNP TO VB NNS IN NNS WDT MD VB VBN IN DT NN NN .\nSpeaking in Ramallah Sunday , Mr. Abbas said teams from the two sides would hold talks on issues including the status of Jerusalem , Palestinian refugees and the borders of the future Palestinian state .\tVBG IN NNP NNP , NNP NNP VBD NNS IN DT CD NNS MD VB NNS IN NNS VBG DT NN IN NNP , JJ NNS CC DT NNS IN DT JJ JJ NN .\nAlso Sunday , Israeli Prime Minister Ehud Olmert criticized the continued presence of unauthorized Israeli settler outposts in the West Bank .\tRB NNP , JJ NNP NNP NNP NNP VBD DT JJ NN IN JJ JJ NN NNS IN DT NNP NNP .\nMr. Olmert told a group of political allies that it is a ' disgrace ' the settlements are still standing some four years after Israel pledged to dismantle them .\tNNP NNP VBD DT NN IN JJ NNS IN PRP VBZ DT `` NN `` DT NNS VBP RB VBG DT CD NNS IN NNP VBD TO VB PRP .\nIn other news Sunday , Palestinian medical sources said an Israeli missile struck a car in the Gaza Strip , killing two Palestinian militants and critically wounding a third individual .\tIN JJ NN NNP , JJ JJ NNS VBD DT JJ NN VBD DT NN IN DT NNP NNP , VBG CD JJ NNS CC RB VBG DT JJ NN .\nIsrael 's army confirmed the strike .\tNNP POS NN VBD DT NN .\nGunmen in Nigeria have killed at least five police officers in an attack on a police station in the restive southern oil region early this morning Sunday .\tNNS IN NNP VBP VBN IN JJS CD NNS NNS IN DT NN IN DT NN NN IN DT JJ JJ NN NN RB DT NN NNP .\nPolice spokeswoman Ireju Bares said the unidentified gunmen also stole arms and ammunition from the station at Bonny in the southern Nigerian state of Rivers .\tNNP NN NNP NNP VBD DT JJ NNS RB VBP NNS CC NN IN DT NN IN NNP IN DT JJ JJ NN IN NNS .\nA leading group of American pediatricians says some children with high cholesterol should take cholesterol lowering medications .\tDT VBG NN IN JJ NNS VBZ DT NNS IN JJ NN MD VB NN VBG NNS .\nSome doctors criticize the recommendation .\tDT NNS VBP DT NN .\nOther support it .\tJJ VBP PRP .\nThere is no doubt , it has stirred up a furious debate .\tEX VBZ DT NN , PRP VBZ VBN RP DT JJ NN .\nVOA 's Carol Pearson reports .\tNNP POS NNP NNP VBZ .\nThe price of crude oil hit a new record high above $ 122 a barrel in Tuesday 's New York trading .\tDT NN IN JJ NN VBD DT JJ NN NN IN $ CD DT NN IN NNP POS NNP NNP NN .\nPrices rose more than $ 2 to go as high as $ 122.73 a barrel .\tNNS VBD JJR IN $ CD TO VB RB JJ IN $ CD DT NN .\nPrices have soared on concerns that supplies might not meet growing demand after recent militant attacks on Nigeria 's oil facilities hampered exports from the world 's eighth largest oil exporter .\tNNS VBP VBN IN NNS IN NNS MD RB VB VBG NN IN JJ JJ NNS IN NNP POS NN NNS VBN NNS IN DT NN POS JJ JJS NN NN .\nTensions in Iraq and between Western nations and Iran reinforced supply worries .\tNNS IN NNP CC IN JJ NNS CC NNP VBD NN NNS .\nThe price of oil has nearly doubled over the past year .\tDT NN IN NN VBZ RB VBN IN DT JJ NN .\nThe Tibetan spiritual leader who teaches age-old principles of peace and tolerance has gone high-tech , joining the online messaging service Twitter .\tDT JJ JJ NN WP VBZ JJ NNS IN NN CC NN VBZ VBN JJ , VBG DT JJ NN NN NNP .\nThe Dalai Lama 's office in India set up a Twitter account this week under the name @dalailama .\tDT NNP NNP POS NN IN NNP VBD RP DT NNP NN DT NN IN DT NN NNP .\nThe Buddhist leader has not personally written any messages , but his office has posted Web links to the Dalai Lama 's interviews and photos during his visit to the United States .\tDT NNP NN VBZ RB RB VBN DT NNS , CC PRP$ NN VBZ VBN NNP NNS TO DT NNP NNP POS NNS CC NNS IN PRP$ NN TO DT NNP NNPS .\nThe Dalai Lama signed up for his online account Monday , a day after meeting Twitter founder Evan Williams in Los Angeles , California .\tDT NNP NNP VBD RP IN PRP$ JJ NN NNP , DT NN IN VBG NNP NN NNP NNP IN NNP NNP , NNP .\nWilliams says the Dalai Lama laughed at the idea of using the social network service .\tNNP VBZ DT NNP NNP VBD IN DT NN IN VBG DT JJ NN NN .\nBut as of Tuesday , the spiritual leader has attracted 69,000 followers .\tCC IN IN NNP , DT JJ NN VBZ VBN CD NNS .\nThe Dalai Lama was in Florida Tuesday giving a speech on global compassion .\tDT NNP NNP VBD IN NNP NNP VBG DT NN IN JJ NN .\nUnited Nations Secretary-General Kofi Annan says a peace agreement that ended the civil war in southern Sudan appears to be floundering .\tNNP NNP NN NNP NNP VBZ DT NN NN WDT VBD DT JJ NN IN JJ NNP VBZ TO VB VBG .\nIn a report released late Tuesday , Mr. Annan said many important pledges have not been fulfilled .\tIN DT NN VBN JJ NNP , NNP NNP VBD JJ JJ NNS VBP RB VBN VBN .\nThe Khartoum-based government and the southern Sudan People 's Liberation Army signed the peace agreement in January 2005 , ending 21 years of civil war .\tDT JJ NN CC DT JJ NNP NNP POS NNP NNP VBD DT NN NN IN NNP CD , VBG CD NNS IN JJ NN .\nMr. Annan says both sides have been observing security commitments ' reasonably well , ' but they have not embraced all the provisions of the pact .\tNNP NNP VBZ DT NNS VBP VBN VBG NN NNS `` RB RB , `` CC PRP VBP RB VBN PDT DT NNS IN DT NN .\nHe says plans for elections , as well as power and wealth sharing , have not been met .\tPRP VBZ NNS IN NNS , RB RB IN NN CC NN NN , VBP RB VBN VBN .\nThe U.N. secretary-general also notes that international donors have only provided a fraction of the money needed to rebuild southern Sudan .\tDT NNP NN RB VBZ IN JJ NNS VBP RB VBN DT NN IN DT NN VBN TO VB JJ NNP .\nMexican authorities are investigating a report that a violent drug cartel has obtained anti-aircraft missiles that could be used to kill President Vicente Fox .\tJJ NNS VBP VBG DT NN IN DT JJ NN NN VBZ VBN JJ NNS WDT MD VB VBN TO VB NNP NNP NNP .\nThe Mexican newspaper El~Universal says a U.S.-based private intelligence firm , Stratfor , has issued a report saying the Soviet-era weapons were purchased on the black market by a group of ex-Mexican army commandoes now working with drug traffickers .\tDT JJ NN NNP VBZ DT JJ JJ NN NN , NNP , VBZ VBN DT NN VBG DT JJ NNS VBD VBN IN DT JJ NN IN DT NN IN JJ NN NNS RB VBG IN NN NNS .\nThe weapons were said to have been first acquired by Nicaragua during its civil war in the 1980s , and some could have been passed on to drug-smuggling groups .\tDT NNS VBD VBN TO VB VBN JJ VBN IN NNP IN PRP$ JJ NN IN DT NNS , CC DT MD VB VBN VBN IN TO JJ NNS .\nA Mexican prosecutor says the report lacks credibility , but says his country is contacting U.S. authorities to determine if the report is TRUE , or , in his words , ' taken from a movie script . '\tDT JJ NN VBZ DT NN VBZ NN , CC VBZ PRP$ NN VBZ VBG NNP NNS TO VB IN DT NN VBZ JJ , CC , IN PRP$ NNS , `` VBN IN DT NN NN . ``\nPresident Fox has launched a massive crackdown on drug traffickers to combat a surge of drug-related violence .\tNNP NNP VBZ VBN DT JJ NN IN NN NNS TO VB DT NN IN JJ NN .\nDoctors in northwest China say they have performed the country 's first face transplant on a Chinese man who was mauled by a black bear .\tNNS IN JJ NNP VBP PRP VBP VBN DT NN POS JJ NN NN IN DT JJ NN WP VBD VBN IN DT JJ NN .\nXijing Hospital in Shaanxi province 's Xi'an city announced it had attached a new cheek , upper lip , nose and eyebrow to a 30-year-old man .\tNNP NNP IN NNP NN POS JJ NN VBD PRP VBD VBN DT JJ NN , JJ NN , NN CC NN TO DT JJ NN .\nA single donor provided the parts for the 14-hour operation on Friday .\tDT JJ NN VBD DT NNS IN DT JJ NN IN NNP .\nXinhua news agency reports the director of the plastic surgery department said it would be six months before the patient has feeling in his new face .\tNNP NN NN VBZ DT NN IN DT NN NN NN VBD PRP MD VB CD NNS IN DT NN VBZ NN IN PRP$ JJ NN .\nXinhua says the man was attacked by a bear in Yunnan province two years ago and has since lived as a recluse because of his disfigurement .\tNNP VBZ DT NN VBD VBN IN DT NN IN NNP NN CD NNS RB CC VBZ RB VBN IN DT NN IN IN PRP$ NN .\nEarlier this year , surgeons in France performed the world 's first partial face transplant on a woman whose lips and nose were ripped off by a dog .\tRBR DT NN , NNS IN NNP VBD DT NN POS JJ JJ NN NN IN DT NN WP$ NNS CC NN VBD VBN RP IN DT NN .\nThe leader of Nepal 's Maoist insurgency says he thinks the king will ultimately be exiled or executed to make way for a republic in the world 's only Hindu monarchy .\tDT NN IN NNP POS NNP NN VBZ PRP VBZ DT NN MD RB VB VBN CC VBN TO VB NN IN DT NN IN DT NN POS JJ NNP NN .\nIn a BBC television interview broadcast Monday , top Nepali communist leader Prachanda said King Gyanendra , who seized total power a year ago , had not left any room for compromise .\tIN DT NNP NN NN NN NNP , JJ JJ NN NN NNP VBD NNP NNP , WP VBD JJ NN DT NN RB , VBD RB VBN DT NN IN NN .\nThe reclusive 52-year-old Prachanda has been living underground ( in hiding ) for more than two decades .\tDT JJ JJ NNP VBZ VBN VBG JJ LRB IN VBG RRB IN JJR IN CD NNS .\nLast year , he forged a loose alliance with the main political parties to topple the king and restore democracy .\tJJ NN , PRP VBD DT JJ NN IN DT JJ JJ NNS TO VB DT NN CC VB NN .\nThe Maoists have been fighting since 1996 to overthrow Nepal 's government and install communist rule , a war that has killed about 13,000 people and shattered the economy .\tDT NNS VBP VBN VBG IN CD TO VB NNP POS NN CC VB JJ NN , DT NN WDT VBZ VBN IN CD NNS CC VBD DT NN .\nLeaders in South Asia are expressing sadness at the death of Pope John Paul .\tNNS IN NNP NNP VBP VBG NN IN DT NN IN NNP NNP NNP .\nIndian President Abdul Kalam said Sunday the world has lost a church leader and a statesman who tirelessly worked for peace .\tJJ NNP NNP NNP VBD NNP DT NN VBZ VBN DT NN NN CC DT NN WP RB VBD IN NN .\nPakistan President Pervez Musharraf said the pope had brought people of different faiths closer .\tNNP NNP NNP NNP VBD DT NN VBD VBN NNS IN JJ NNS RBR .\nIn Afghanistan , President Hamid Karzai said Pope John Paul was a man with concern for all human beings .\tIN NNP , NNP NNP NNP VBD NNP NNP NNP VBD DT NN IN NN IN DT JJ NNS .\nPope John Paul 's travels to South and Central Asia reflected his stated belief that spreading the Catholic faith and dialogue with other religions were not mutually exclusive but complimentary .\tNNP NNP NNP POS VBZ TO NNP CC NNP NNP VBD PRP$ JJ NN IN VBG DT JJ NN CC NN IN JJ NNS VBD RB RB JJ CC JJ .\nDuring his long papacy , the pontiff took trips to Pakistan , Bangladesh , Kazakhstan and , twice , to India .\tIN PRP$ JJ NN , DT NN VBD NNS TO NNP , NNP , NNP CC , RB , TO NNP .\nSecretary of State Condoleezza Rice leaves Sunday on a five-day trip to the Middle East .\tNNP IN NNP NNP NNP VBZ NNP IN DT JJ NN TO DT NNP NNP .\nRice is expected to meet with Saudi King Abdullah in Jeddah and hold talks with Egypt 's president Hosni Mubarak and foreign minister Aboul Gheit .\tNNP VBZ VBN TO VB IN NNP NNP NNP IN NNP CC VB NNS IN NNP POS NN NNP NNP CC JJ NN NNP NNP .\nLater , she will meet with Palestinian Authority President Mahmoud Abbas and Israeli Prime Minister Ehud Olmert .\tRB , PRP MD VB IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP .\nPresident Bush said he is sending Rice to the region to lead a diplomatic effort to engage moderate leaders , to help Palestinians reform their security services and to support the Israeli-Palestinian peace process .\tNNP NNP VBD PRP VBZ VBG NNP TO DT NN TO VB DT JJ NN TO VB JJ NNS , TO VB NNS VB PRP$ NN NNS CC TO VB DT JJ NN NN .\nMs. Rice last visited the region in July , during the 34-day war between Israel and Hezbollah militants in Lebanon .\tNNP NNP JJ VBD DT NN IN NNP , IN DT JJ NN IN NNP CC NNP NNS IN NNP .\nItalian Prime Minister Silvio Berlusconi faces a political crisis as one key ally has demanded that he put his government to a confidence vote while another has raised the possibility of withdrawing from his coalition .\tJJ NNP NNP NNP NNP VBZ DT JJ NN IN CD JJ NN VBZ VBN IN PRP VBD PRP$ NN TO DT NN NN IN DT VBZ VBN DT NN IN VBG IN PRP$ NN .\nForeign Minister Gianfranco Fini issued the call for a confidence vote next week as Mr. Berlusconi met with his coalition allies to discuss strategy after a crushing defeat in local elections last week .\tNNP NNP NNP NNP VBD DT NN IN DT NN NN JJ NN IN NNP NNP VBD IN PRP$ NN NNS TO VB NN IN DT VBG NN IN JJ NNS JJ NN .\nMr. Fini heads the National Alliance , a junior partner in the ruling coalition .\tNNP NNP VBZ DT NNP NNP , DT JJ NN IN DT NN NN .\nOfficials of another junior partner , the Union of Christian Democrats , said its leaders are considering a withdrawal from the cabinet .\tNNS IN DT JJ NN , DT NNP IN NNP NNPS , VBD PRP$ NNS VBP VBG DT NN IN DT NN .\nMr. Berlusconi is struggling to keep his government together , and is suggesting a cabinet reshuffle and review of the government 's program .\tNNP NNP VBZ VBG TO VB PRP$ NN RB , CC VBZ VBG DT NN NN CC NN IN DT NN POS NN .\nCoalition parties went down to defeat in 11 of 13 regional elections .\tNN NNS VBD RB TO VB IN CD IN CD JJ NNS .\nPreviously , the coalition controlled eight of the regions .\tRB , DT NN VBD CD IN DT NNS .\nThe Pakistani military says its troops killed 30 militants in the country 's northwest Saturday , in an operation that also killed six soldiers .\tDT JJ NN VBZ PRP$ NNS VBD CD NNS IN DT NN POS JJS NNP , IN DT NN WDT RB VBD CD NNS .\nBoth ground forces and helicopters took part in the operation in the Orakzai tribal region near the Afghan border .\tDT NN NNS CC NNS VBD NN IN DT NN IN DT NNP JJ NN IN DT JJ NN .\nMilitary officials say security forces captured six insurgents after the fighting and also took control of important heights around the Bezoti area , a militant stronghold in the region .\tJJ NNS VBP NN NNS VBN CD NNS IN DT NN CC RB VBD NN IN JJ NNS IN DT NNP NN , DT JJ NN IN DT NN .\nPakistan 's military launched an offensive in Orakzai in March to flush out Taliban insurgents who are believed to have fled an earlier military offensive in South Waziristan .\tNNP POS NN VBD DT NN IN NNP IN NNP TO VB RP NNP NNS WP VBP VBN TO VB VBN DT JJR JJ NN IN NNP NNP .\nThe military says more than 100 militants have been killed in the Orakzai operation , but that figure can not be independently verified because access to the remote area is limited .\tDT JJ VBZ JJR IN CD NNS VBP VBN VBN IN DT NNP NN , CC DT NN MD RB VB RB VBN IN NN TO DT JJ NN VBZ VBN .\nPakistan 's Supreme Court has declared unconstitutional a bill passed by a staunchly Islamic province to enforce Islamic values on society with the help of so-called religious police .\tNNP POS NNP NNP VBZ VBN JJ DT NN VBN IN DT RB JJ NN TO VB JJ NNS IN NN IN DT NN IN JJ JJ NN .\nThe Supreme Court ordered the governor of North West Frontier Province not to sign the bill in its present form .\tDT NNP NNP VBD DT NN IN NNP NNP NNP NNP RB TO VB DT NN IN PRP$ JJ NN .\nThe bill was passed by the provincial assembly where hardline religious parties are in a majority .\tDT NN VBD VBN IN DT JJ NN WRB JJ JJ NNS VBP IN DT NN .\nBut it must be approved by the provincial governor , who is appointed by Islamabad , before it can become law .\tCC PRP MD VB VBN IN DT JJ NN , WP VBZ VBN IN NNP , IN PRP MD VB NN .\nThe issue was referred to the Supreme Court by President Pervez Musharraf who has vowed to rid society of Muslim extremism .\tDT NN VBD VBN TO DT NNP NNP IN NNP NNP NNP WP VBZ VBN TO VB NN IN NNP NN .\nThe court spent four days on the federal government 's challenge to the legislation .\tDT NN VBD CD NNS IN DT JJ NN POS NN TO DT NN .\nThe nine-member bench ruled that many of the provisions in the bill violate the country 's 1973 constitution .\tDT JJ NN VBD IN NN IN DT NNS IN DT NN VBP DT NN POS CD NN .\nAstronauts at the International Space Station have completed the second spacewalk of five , during the shuttle Endeavour 's 11-day mission at the station .\tNNS IN DT NNP NNP NNP VBP VBN DT JJ NN IN CD , IN DT NN NNP POS JJ NN IN DT NN .\nAstronauts Dave Wolf and Tom Marshburn undertook a 6-hour , 53-minute spacewalk Monday to conduct maintenance work at the station .\tNNS NNP NNP CC NNP NNP VBD DT JJ , JJ NN NNP TO VB NN NN IN DT NN .\nThe walk coincided with the 40th anniversary of man 's landing on the moon .\tDT NN VBD IN DT JJ NN IN NN POS NN IN DT NN .\nWolf and astronaut Tim Kopra completed the first spacewalk of the mission during a 5.5-hour operation Saturday .\tNNP CC JJ NNP NNP VBD DT JJ NN IN DT NN IN DT JJ NN NNP .\nThey installed an external platform on the massive Japanese lab at the space station .\tPRP VBD DT JJ NN IN DT JJ JJ NN IN DT NN NN .\nThe lab is known as Kibo , or ' hope . '\tDT NN VBZ VBN IN NNP , CC `` NN . ``\nThe platform will allow scientists to conduct experiments in the vacuum of space .\tDT NN MD VB NNS TO VB NNS IN DT NN IN NN .\nWith the shuttle crew 's visit , there are 13 astronauts aboard the space station , the most ever .\tIN DT NN NN POS NN , EX VBP CD NNS IN DT NN NN , DT RBS RB .\nKopra is taking the place of Japan 's Koichi Wakata , who has been on the space station since March .\tNNP VBZ VBG DT NN IN NNP POS NNP NNP , WP VBZ VBN IN DT NN NN IN NNP .\nBrazil and Argentina have announced they will build a pharmaceutical plant to produce AIDS drugs and other medications .\tNNP CC NNP VBP VBN PRP MD VB DT JJ NN TO VB NNP NNS CC JJ NNS .\nArgentine officials made the announcement Wednesday in the Argentine capital , Buenos Aires , after a meeting there between the two countries ' health ministers .\tJJ NNS VBD DT NN NNP IN DT JJ NN , NNP NNP , IN DT NN RB IN DT CD NNS POS NN NNS .\nThe $ 10-million drug plant is expected to be located on Argentine territory , but both nations will contribute to the project .\tDT $ JJ NN NN VBZ VBN TO VB VBN IN JJ NN , CC DT NNS MD VB TO DT NN .\nThe announcement came as Argentine President Nestor Kirchner met with his Brazilian counterpart , Luis Inacio Lula da Silva , in Brasilia .\tDT NN VBD IN JJ NNP NNP NNP VBD IN PRP$ JJ NN , NNP NNP NNP NNP NNP , IN NNP .\nPresident Bush has again urged Congress to approve his plan for adding private investment accounts to the national retirement system known as Social Security .\tNNP NNP VBZ RB VBN NNP TO VB PRP$ NN IN VBG JJ NN NNS TO DT JJ NN NN VBN IN NNP NNP .\nIn Saturday 's weekly radio address , Mr. Bush repeated his warning that the system will soon run short of money because the amount collected in taxes is far less than the money needed to pay benefits .\tIN NNP POS JJ NN NN , NNP NNP VBD PRP$ NN IN DT NN MD RB VB RB IN NN IN DT NN VBN IN NNS VBZ RB JJR IN DT NN VBN TO VB NNS .\nHe stressed that if Congress does not act , the government could be forced to dramatically increase taxes , borrow money or reduce Social Security benefits .\tPRP VBD IN IN NNP VBZ RB VB , DT NN MD VB VBN TO RB VB NNS , VB NN CC VB NNP NNP NNS .\nUnder Mr. Bush 's plan , younger workers would be able to divert some of their Social Security taxes into private accounts that could be invested in stocks or bonds .\tIN NNP NNP POS NN , JJR NNS MD VB JJ TO VB DT IN PRP$ NNP NNP NNS IN JJ NNS WDT MD VB VBN IN NNS CC NNS .\nSpeaking for the opposition Democratic party , US Senator Charles Schumer , of New York said the federal retirement program only needs fine-tuning .\tVBG IN DT NN JJ NN , NNP NNP NNP NNP , IN NNP NNP VBD DT JJ NN NN RB VBZ NN .\nHe said Mr. Bush 's plan will not fix the system 's long-term financial problems .\tPRP VBD NNP NNP POS NN MD RB VB DT NN POS JJ JJ NNS .\nA new industry claims to let you peer into your medical future and see what diseases you are likely to get .\tDT JJ NN VBZ TO VB PRP VB IN PRP$ JJ NN CC VB WP NNS PRP VBP JJ TO VB .\nThe industry is at-home genetic testing .\tDT NN VBZ JJ JJ NN .\nVOA 's Carol Pearson has more .\tNNP POS NNP NNP VBZ RBR .\nPeru has withdrawn its ambassador to Japan , Luis Macchiavello and warned Tokyo against interfering in Lima 's effort to extradite former Peruvian President Alberto Fujimori from Chile .\tNNP VBZ VBN PRP$ NN TO NNP , NNP NNP CC VBD NNP IN VBG IN NNP POS NN TO VB JJ JJ NNP NNP NNP IN NNP .\nAfter Peru announced the decision to recall its ambassador , the foreign ministry issued a statement saying such interference by Japan would be unacceptable .\tIN NNP VBD DT NN TO VB PRP$ NN , DT JJ NN VBD DT NN VBG JJ NN IN NNP MD VB JJ .\nJapanese officials say they can not comment because they have yet to be officially informed of the decision .\tJJ NNS VBP PRP MD RB VB IN PRP VBP RB TO VB RB VBN IN DT NN .\nEarlier this week , Mr. Fujimori left Japan after five years in exile and flew to Chile with the intention of returning to Peru to run for president next year .\tRBR DT NN , NNP NNP VBD NNP IN CD NNS IN NN CC VBD TO NNP IN DT NN IN VBG TO NNP TO VB IN NN JJ NN .\nHe was arrested in Chile at Peru 's request .\tPRP VBD VBN IN NNP IN NNP POS NN .\nMr. Fujimori fled to Japan in 2000 amid charges of corruption and human rights abuses stemming from his 10 years in office .\tNNP NNP VBD TO NNP IN CD IN NNS IN NN CC JJ NNS NNS VBG IN PRP$ CD NNS IN NN .\nMr. Fujimori is recognized as a citizen in Japan , which refused to extradite him to Peru .\tNNP NNP VBZ VBN IN DT NN IN NNP , WDT VBD TO VB PRP TO NNP .\nA new United Nations report by some of the world 's top scientists says global warming is ' very likely ' man-made and that the world can expect higher temperatures , rising sea levels , and erratic weather .\tDT JJ NNP NNPS NN IN DT IN DT NN POS JJ NNS VBZ JJ NN VBZ `` RB JJ `` JJ CC IN DT NN MD VB JJR NNS , VBG NN NNS , CC JJ NN .\nThe Intergovernmental Panel on Climate Change will formally release its report Friday in Paris , where experts from more than 100 nations have been meeting .\tDT NNP NNP IN NNP NNP MD RB VB PRP$ NN NNP IN NNP , WRB NNS IN JJR IN CD NNS VBP VBN VBG .\nThe panel defines the term ' very likely ' as meaning there is a 90 percent chance that man-made pollutants are causing the Earth to warm up .\tDT NN VBZ DT NN `` RB JJ `` IN VBG EX VBZ DT CD NN NN WDT JJ NNS VBP VBG DT NNP TO VB RP .\nA draft of the report forecasts global temperatures rising up to four degrees Celsius by the end of the century .\tDT NN IN DT NN VBZ JJ NNS VBG RP TO CD NNS NNP IN DT NN IN DT NN .\nSome scientists believe natural weather patterns may be causing climate change and say the future will not be as dire as some experts predict .\tDT NNS VBP JJ NN NNS MD VB VBG NN NN CC VB DT NN MD RB VB RB JJ IN DT NNS VBP .\nA top international economic organization says Turkey is ' at a crossroads ' , noting that the country has done much to enhance its economic stability , but needs to do more .\tDT JJ JJ JJ NN VBZ NNP VBZ `` IN DT NNS `` , VBG IN DT NN VBZ VBN RB TO VB PRP$ JJ NN , CC VBZ TO VB JJR .\nThe Paris-based Organization for Economic Cooperation and Development presented the report Thursday during a visit to the French capital by Turkish Prime Minister Recep Tayyip Erdogan .\tDT JJ NNP IN NNP NNP CC NNP VBD DT NN NNP IN DT NN TO DT JJ NN IN NNP NNP NNP NNP NNP NNP .\nThe report says Turkey had made efforts to improve governance , macroeconomic policy and investor confidence , following an economic crisis three years ago .\tDT NN VBZ NNP VBD VBN NNS TO VB NN , JJ NN CC NN NN , VBG DT JJ NN CD NNS RB .\nHowever , the OECD report says the Ankara government should do more to enhance long-term economic growth by guaranteeing property rights and improving the justice system .\tRB , DT NNP NN VBZ DT NNP NN MD VB JJR TO VB JJ JJ NN IN VBG NN NNS CC VBG DT NN NN .\nIt also says the large size of Turkey 's informal , or underground , economy remains a problem as it narrows the country 's tax base .\tPRP RB VBZ DT JJ NN IN NNP POS JJ , CC RB , NN VBZ DT NN IN PRP VBZ DT NN POS NN NN .\nFrench filmmaker Eric Rohmer , a founding director of the French ' New Wave ' movement , has died at the age of 89 .\tJJ NN NNP NNP , DT JJ NN IN DT JJ `` NNP NNP `` NN , VBZ VBN IN DT NN IN CD .\nRohmer died Monday in Paris .\tNNP VBD NNP IN NNP .\nRelatives say he was hospitalized a week ago , but gave no further details about his condition .\tNNS VBP PRP VBD VBN DT NN RB , CC VBD DT JJ NNS IN PRP$ NN .\nRohmer 's films explored relationships and love affairs from a philosophical perspective .\tNNP POS NNS VBD NNS CC NN NNS IN DT JJ NN .\nRohmer achieved critical acclaim in the late 1960s and early 1970s with films such as My Night at Maud 's and Claire 's Knee .\tNNP VBD JJ NN IN DT JJ NNS CC JJ NNS IN NNS JJ IN NNP NNP IN NNP POS CC NNP POS NN .\nFrench President Nicholas Sarkozy said the filmmaker created the ' Rohmer style ' that will survive for years to come .\tJJ NNP NNP NNP VBD DT NN VBD DT `` NNP NN `` WDT MD VB IN NNS TO VB .\nBritish Prime Minister Tony Blair has met separately with Northern Ireland 's two rival political leaders , for the first time since the Irish Republican Army was declared disarmed .\tJJ NNP NNP NNP NNP VBZ VBN RB IN NNP NNP POS CD JJ JJ NNS , IN DT JJ NN IN DT JJ NNP NNP VBD VBN JJ .\nThe head of the Protestant Democratic Unionist Party , Ian Paisley , Thursday gave Mr. Blair a 64-page document outlining measures needed for talks with the IRA to resume .\tDT NN IN DT NNP NNP NNP NNP , NNP NNP , NNP VBD NNP NNP DT JJ NN VBG NNS VBN IN NNS IN DT NNP TO VB .\nThey include an agreement for Britain to retain at least one battalion of the Royal Irish Regiment in Northern Ireland .\tPRP VBP DT NN IN NNP TO VB IN JJS CD NN IN DT NNP NNP NNP IN NNP NNP .\nGerry Adams , who leads the IRA 's political wing , Sinn Fein , told Mr. Blair it is vital to restore power-sharing institutions in the British province .\tNNP NNP , WP VBZ DT NNP POS JJ NN , NNP NNP , VBD NNP NNP PRP VBZ JJ TO VB JJ NNS IN DT JJ NN .\nMeanwhile , Britain 's Assets Recovery Agency today said it raided 250 properties worth more than $ 50 million in an investigation focusing on the financing of IRA activities .\tRB , NNP POS NNS NNP NNP NN VBD PRP VBD CD NNS JJ JJR IN $ CD CD IN DT NN VBG IN DT NN IN NNP NNS .\nCanadian General John de Chastelain , who oversaw IRA disarmament , said last week the group has scrapped all its weapons .\tJJ NNP NNP NNP NNP , WP VBD NNP NN , VBD JJ NN DT NN VBZ VBN DT PRP$ NNS .\nFormer U.S. President George W. Bush , in a rare public appearance , said Saturday the mission in Afghanistan is ' necessary for peace and stability . '\tJJ NNP NNP NNP NNP NNP , IN DT JJ JJ NN , VBD NNP DT NN IN NNP VBZ `` JJ IN NN CC NN . ``\nSpeaking at a leadership conference in India 's capital , New Delhi , Mr. Bush warned that if the Taliban and al-Qaida take control of Afghanistan , the people there will ' face a return to a brutal tyranny . '\tVBG IN DT NN NN IN NNP POS NN , NNP NNP , NNP NNP VBD IN IN DT NNP CC NNP VBP NN IN NNP , DT NNS RB MD `` VB DT NN TO DT JJ NN . ``\nMr. Bush ordered U.S. troops into Afghanistan in late 2001 , after the September 11 attacks on the United States .\tNNP NNP VBD NNP NNS IN NNP IN JJ CD , IN DT NNP CD NNS IN DT NNP NNPS .\nThe invasion to fight militants quickly ousted the hardline Taliban government .\tDT NN TO VB NNS RB VBD DT JJ NNP NN .\nThe former president has made few public appearances since leaving office in January .\tDT JJ NN VBZ VBN JJ JJ NNS IN VBG NN IN NNP .\ntop U.S official has called for unifying Bosnian government institutions that have remained divided on ethnic lines since the 1995 Dayton Peace Agreement halted the conflict in the country .\tJJ NNP NN VBZ VBN IN VBG JJ NN NNS WDT VBP VBN VBN IN JJ NNS IN DT CD NNP NNP NNP VBD DT NN IN DT NN .\nU.S. Undersecretary of State for Political Affairs Nicholas Burns told reporters in Sarajevo the Dayton agreement has served its purpose and the time has come to transform Bosnia-Herzegovina into a unitary state .\tNNP NNP IN NNP IN NNP NNP NNP NNP VBD NNS IN NNP DT NNP NN VBZ VBN PRP$ NN CC DT NN VBZ VBN TO VB NNP IN DT JJ NN .\nHe urged major constitutional reforms that would lead to creation of a single Bosnian presidency , a stronger government and an effective parliament .\tPRP VBD JJ JJ NNS WDT MD VB TO NN IN DT JJ JJ NN , DT JJR NN CC DT JJ NN .\nThe Dayton Agreement left Bosnia with a collective presidency , made up of Croat , Muslim and Serb members and divided the country into a Serb Republic and Muslim-Croat Federation .\tDT NNP NNP VBD NNP IN DT JJ NN , VBD IN IN JJ , NNP CC JJ NNS CC VBD DT NN IN DT JJ NNP CC NNP NNP .\nEach has its own administration and parliament under a weak central government .\tDT VBZ PRP$ JJ NN CC NN IN DT JJ JJ NN .\nSarajevo is the first stop of Mr. Burns ' Balkan trip , which also will take him to Pristina and Belgrade .\tNNP VBZ DT JJ NN IN NNP NNP POS NNP NN , WDT RB MD VB PRP TO NNP CC NNP .\nArmenia says it could take part in a commission with Turkey to study decades-old allegations of Turkish genocide against Armenians during World War I and other issues , but first calls for improved ties .\tNNP VBZ PRP MD VB NN IN DT NN IN NNP TO VB JJ NNS IN JJ NN IN NNS IN NNP NNP NNP CC JJ NNS , CC RB VBZ IN JJ NNS .\nArmenian President Robert Kocharian said the proposal would only work if the two countries improve bilateral relations .\tJJ NNP NNP NNP VBD DT NN MD RB VB IN DT CD NNS VBP JJ NNS .\nThe neighbors share a border , but have no diplomatic ties .\tDT NNS VBP DT NN , CC VBP DT JJ NNS .\nTurkish Foreign Minister Abdullah Gul earlier this month said Prime Minister Recep Tayyip Erdogan made the offer in a letter to the Armenian president .\tNNP NNP NNP NNP NNP RBR DT NN VBD NNP NNP NNP NNP NNP VBD DT NN IN DT NN TO DT JJ NN .\nTurkey has refused to establish diplomatic ties with Armenia because of Armenia 's campaign to gain international recognition of the World War One massacres as genocide .\tNNP VBZ VBN TO VB JJ NNS IN NNP IN IN NNP POS NN TO VB JJ NN IN DT NNP NNP CD NNS IN NN .\nArmenia says 1.5 million of its nationals were slaughtered by the Turks during the final years of the Ottoman Empire 90 years ago .\tNNP VBZ CD CD IN PRP$ NNS VBD VBN IN DT NNS IN DT JJ NNS IN DT NNP NNP CD NNS RB .\nTurkey says 3,00,000 Armenians and thousands of Turks were killed during a Russia-backed Armenian uprising against Ottoman rule .\tNNP VBZ CD NNS CC NNS IN NNS VBD VBN IN DT JJ JJ NN IN NNP NN .\nUkraine 's parliament has voted to dismiss the country 's foreign and interior ministers , dealing another blow to President Viktor Yushchenko .\tNNP POS NN VBZ VBN TO VB DT NN POS JJ CC JJ NNS , VBG DT NN TO NNP NNP NNP .\nThe resolution to fire Foreign Minister Borys Tarasyuk secured 247 votes in the 450-seat assembly Friday .\tDT NN TO VB NNP NNP NNP NNP VBD CD NNS IN DT JJ NN NNP .\nMinutes later , 248 lawmakers voted to oust Interior Minister Yuri Lutsenko - who had barely survived a parliamentary attempt to dismiss him Thursday .\tNNS RB , CD NNS VBD TO VB NNP NNP NNP NNP : WP VBD RB VBN DT JJ NN TO VB PRP NNP .\nLawmakers then named economist Vasil Tsushko the new interior minister .\tNNS RB VBD NN NNP NNP DT JJ JJ NN .\nMr. Tarasyuk later called the vote illegitimate and said the question of his dismissal will be resolved by Ukraine 's Supreme Court .\tNNP NNP RB VBD DT NN NN CC VBD DT NN IN PRP$ NN MD VB VBN IN NNP POS NNP NNP .\nThe two dismissed officials were some of Mr. Yushchenko 's staunchest supporters .\tDT CD VBN NNS VBD DT IN NNP NNP POS JJS NNS .\nThe Ukrainian president is in a power struggle with Prime Minister Viktor Yanukovych .\tDT JJ NN VBZ IN DT NN NN IN NNP NNP NNP NNP .\nMr. Yushchenko won Ukraine 's 2004 presidential election after Ukraine 's Supreme Court threw out an earlier victory by Mr. Yanukovych because of what it said was massive fraud .\tNNP NNP VBD NNP POS CD JJ NN IN NNP POS NNP NNP VBD RP DT JJR NN IN NNP NNP IN IN WP PRP VBD VBD JJ NN .\nJustin Timberlake has a message for U.S. celebrity journalists : drop dead .\tNNP NNP VBZ DT NN IN NNP NN NNS IN NN NN .\nSpeaking to Details Magazine , the 26-year-old entertainer says he despises tabloids for turning his personal life into gossip fodder .\tVBG TO NNP NNP , DT JJ NN VBZ PRP VBZ NNS IN VBG PRP$ JJ NN IN NN NN .\n' They create soap operas out of people 's lives ... it 's a spin game , and I choose not to take part in it , ' Timberlake said .\t`` PRP VBP NN NNS IN IN NNS POS NNS : PRP VBZ DT NN NN , CC PRP VBP RB TO VB NN IN PRP , `` NNP VBD .\nHe takes particular exception to speculation about his relationships with Britney Spears and Cameron Diaz .\tPRP VBZ JJ NN TO NN IN PRP$ NNS IN NNP NNPS CC NNP NNP .\nHe and Britney ended their three-year relationship in 2002 .\tPRP CC NNP VBD PRP$ JJ NN IN CD .\nHe and Diaz , who had dated since 2003 , confirmed their split in January .\tPRP CC NNP , WP VBD VBN IN CD , VBD PRP$ NN IN NNP .\nThe lawyer for former Iraqi deputy prime minister Tariq Aziz says his client has refused to testify against Saddam Hussein at a future war crimes trial .\tDT NN IN JJ JJ NN JJ NN NNP NNP VBZ PRP$ NN VBZ VBN TO VB IN NNP NNP IN DT JJ NN NNS NN .\nThe lawyer said he met Thursday for the first time with Mr. Aziz , who is in U.S. custody somewhere near Baghdad .\tDT NN VBD PRP VBD NNP IN DT JJ NN IN NNP NNP , WP VBZ IN NNP NN RB IN NNP .\nHe said his client appeared in good health and spirits , despite 20 months of confinement .\tPRP VBD PRP$ NN VBD IN JJ NN CC NNS , IN CD NNS IN NN .\nDuring their four-hour meeting Mr. Aziz also reportedly denied any wrongdoing in the United Nations-run oil-for-food program , which allowed Iraq to sell oil to buy food and medicine for its people .\tIN PRP$ JJ NN NNP NNP RB RB VBD DT NN IN DT NNP NNP NN NN , WDT VBD NNP TO VB NN TO VB NN CC NN IN PRP$ NNS .\nTariq Aziz and 11 of Saddam 's other top lieutenants face charges including crimes against Iraq 's Kurdish and Shi'ite communities .\tNNP NNP CC CD IN NNP POS JJ JJ NNS VBP NNS VBG NNS IN NNP POS NNP CC NNP NNS .\nThe presidents of Russia and Ukraine are expected to meet next week in the wake of a dispute between their countries over the price Kiev pays Moscow for natural gas .\tDT NNS IN NNP CC NNP VBP VBN TO VB JJ NN IN DT NN IN DT NN IN PRP$ NNS IN DT NN NNP VBZ NNP IN JJ NN .\nA Kremlin spokesman says Russian President Vladimir Putin will confer with Ukrainian President Viktor Yushchenko January 11 in Kazakhstan on the sidelines of the inauguration of President Nursultan Nazarbayev .\tDT NNP NN VBZ JJ NNP NNP NNP MD VB IN JJ NNP NNP NNP NNP CD IN NNP IN DT NNS IN DT NN IN NNP NNP NNP .\nRussian news reports say Mr. Putin and Mr. Yushchenko also exchanged Orthodox Christmas greetings by telephone late Friday .\tJJ NN NNS VBP NNP NNP CC NNP NNP RB VBD NNP NNP NNS IN NN JJ NNP .\nRussia 's state-run natural gas company , Gazprom , cut off exports to Ukraine Sunday after Kiev refused a contract that increased the price by 400 percent .\tNNP POS JJ JJ NN NN , NNP , VBD RP NNS TO NNP NNP IN NNP VBD DT NN WDT VBD DT NN IN CD NN .\nOn Wednesday , the two sides agreed Ukraine will pay nearly double the price for natural gas it paid in 2005 .\tIN NNP , DT CD NNS VBD NNP MD VB RB JJ DT NN IN JJ NN PRP VBD IN CD .\nThe United States on Thursday announced $ 190 million in aid for victims of last year 's devastating floods in Pakistan .\tDT NNP NNPS IN NNP VBD $ CD CD IN NN IN NNS IN JJ NN POS JJ NNS IN NNP .\nThe pledge was made by the acting U.S. special representative for Pakistan and Afghanistan , Frank Ruggiero , who said it fulfills a promise made by his predecessor Richard Holbrooke , who died suddenly in December .\tDT NN VBD VBN IN DT VBG NNP JJ NN IN NNP CC NNP , NNP NNP , WP VBD PRP VBZ DT NN VBN IN PRP$ NN NNP NNP , WP VBD RB IN NNP .\nSpeaking to reporters in Islamabad alongside Pakistan 's Finance Minister Abdul Hafeez Shaikh , Ruggiero said the money will be put into a cash compensation fund for the estimated 1.6 million families worst-hit by the floods .\tVBG TO NNS IN NNP IN NNP POS NNP NNP NNP NNP NNP , NNP VBD DT NN MD VB VBN IN DT NN NN NN IN DT VBN CD CD NNS JJ IN DT NNS .\nRuggiero also signed an agreement to provide Pakistan with $ 66 million to help complete two dam projects .\tNNP RB VBD DT NN TO VB NNP IN $ CD CD TO VB JJ CD NN NNS .\nLast year 's floods , which were caused by unusually heavy monsoon rains , affected 21 million people and are considered to be Pakistan 's worst natural disaster .\tJJ NN POS NNS , WDT VBD VBN IN RB JJ NN NNS , VBD CD CD NNS CC VBP VBN TO VB NNP POS JJS JJ NN .\nAt least 10,000 people , including current and former lawmakers , have rallied in Tokyo to protest proposals that would allow a woman to assume the imperial throne .\tIN JJS CD NNS , VBG JJ CC JJ NNS , VBP VBN IN NNP TO VB NNS WDT MD VB DT NN TO VB DT JJ NN .\nSpeakers at Tuesday 's rally said efforts to alter the royal line threaten the nation 's most sacred traditions .\tNNS IN NNP POS NN VBD NNS TO VB DT NN NN VBP DT NN POS JJS JJ NNS .\nJapan has the world 's oldest continuous monarchy .\tNNP VBZ DT NN POS JJS JJ NN .\nThe imperial family has not produced a male heir since 1965 , prompting Prime Minister Junichiro Koizumi to propose a bill recommending that the emperor 's first-born child - regardless of sex - ascend to the Chrysanthemum throne .\tDT JJ NN VBZ RB VBN DT JJ NN IN CD , VBG NNP NNP NNP NNP TO VB DT NN VBG IN DT NN POS JJ NN : RB IN NN IN VB IN DT NNP NN .\nThe proposal was put on hold after an announcement last month that the wife of the second son of Emperor Akihito is pregnant with her third child .\tDT NN VBD VBN IN NN IN DT NN JJ NN IN DT NN IN DT JJ NN IN NNP NNP VBZ JJ IN PRP$ JJ NN .\nA recent poll indicated a wide majority of Japanese favor allowing a woman to inherit the imperial throne .\tDT JJ NN VBD DT JJ NN IN JJ NN VBG DT NN TO VB DT JJ NN .\nRussian media say the country 's Strategic Missile Forces have successfully tested an intercontinental ballistic missile .\tJJ NNS VBP DT NN POS NNP NNP NNS VBP RB VBN DT JJ JJ NN .\nThe media quote Colonel Alexander Vovk , a spokesman for the missile forces , as saying the RS-12M Topol ballistic missile was launched Saturday evening from Kapustin Yar firing range in southern Russia .\tDT NNS VBP NNP NNP NNP , DT NN IN DT NN NNS , IN VBG DT NNP NNP JJ NN VBD VBN NNP NN IN NNP NNP VBG NN IN JJ NNP .\nThe spokesman said the aim of the test was to confirm the stability of this class of missile .\tDT NN VBD DT NN IN DT NN VBD TO VB DT NN IN DT NN IN NN .\nThe launch comes amid U.S. plans for a missile defense system based in Europe which Russian President Vladimir Putin says will destabilize the region and lead to a new arms race .\tDT NN VBZ IN NNP NNS IN DT NN NN NN VBN IN NNP WDT JJ NNP NNP NNP VBZ MD VB DT NN CC NN TO DT JJ NNS NN .\nThe United States wants to deploy 10 missile interceptors in Poland and guidance radar in the Czech Republic , to counter what it says are threats from such nations as Iran and North Korea .\tDT NNP NNPS VBZ TO VB CD NN NNS IN NNP CC NN NN IN DT JJ NNP , TO VB WP PRP VBZ VBP NNS IN JJ NNS IN NNP CC NNP NNP .\nThe new speaker of the U.S. House of Representatives has met in Islamabad with Pakistani President Pervez Musharraf .\tDT JJ NN IN DT NNP NNP IN NNP VBZ VBN IN NNP IN JJ NNP NNP NNP .\nNancy Pelosi 's talks with General Musharraf focused on the war on terrorism and the situation in Afghanistan .\tNNP NNP POS NNS IN NNP NNP VBD IN DT NN IN NN CC DT NN IN NNP .\nPelosi 's visit to Islamabad comes as U.S. lawmakers consider a bill to link military aid to Pakistan 's commitment to fighting Islamic extremists and Taleban militants .\tNNP POS NN TO NNP VBZ IN NNP NNS VBP DT NN TO VB JJ NN TO NNP POS NN TO VBG JJ NNS CC NNP NNS .\nPelosi and her congressional delegation are expected to visit Afghanistan Sunday .\tNNP CC PRP$ JJ NN VBP VBN TO VB NNP NNP .\nThe U.S. ambassador to Afghanistan , Ronald Neumann said Saturday that Afghan and coalition forces have the means to successfully fight the Taleban this year .\tDT NNP NN TO NNP , NNP NNP VBD NNP IN JJ CC NN NNS VBP DT NNS TO RB VB DT NNP DT NN .\nEarlier this week , NATO officials said the U.S. would extend the tour of 3,000 troops in Afghanistan by four months to help fight resurgent Taleban fighters .\tRBR DT NN , NNP NNS VBD DT NNP MD VB DT NN IN CD NNS IN NNP IN CD NNS TO VB VB JJ NNP NNS .\nPope Benedict XVI has told Venezuela 's President Hugo Chavez that he is concerned about religious reforms in the largely Catholic nation .\tNNP NNP NNP VBZ VBN NNP POS NNP NNP NNP IN PRP VBZ VBN IN JJ NNS IN DT RB JJ NN .\nThe pontiff and Mr. Chavez met at the Vatican Thursday .\tDT NN CC NNP NNP VBD IN DT NNP NNP .\nA Vatican spokesman says Pope Benedict was worried about a proposal to ban teaching religion in Venezuelan schools .\tDT NNP NN VBZ NNP NNP VBD VBN IN DT NN TO VB NN NN IN JJ NNS .\nHe said the pope expressed his hope that Santa Rosa Catholic University can maintain its religious identity .\tPRP VBD DT NN VBD PRP$ NN IN NNP NNP NNP NNP MD VB PRP$ JJ NN .\nThe pontiff also asked that the nation 's health programs ' respect life , ' an apparent reference to abortion , which the church opposes .\tDT NN RB VBD IN DT NN POS NN NNS `` VB NN , `` DT JJ NN TO NN , WDT DT NN VBZ .\nThe Venezuelan leader assured the pope of his commitment to ' overcome every tension in respecting the legitimate rights of all . '\tDT JJ NN VBD DT NN IN PRP$ NN TO `` VB DT NN IN VBG DT JJ NNS IN DT . ``\nMr. Chavez often quotes from the bible during speeches .\tNNP NNP RB VBZ IN DT NN IN NNS .\nBut he has clashed with the Catholic leadership in Venezuela , referring to it as a ' cancer . '\tCC PRP VBZ VBN IN DT JJ NN IN NNP , VBG TO PRP IN DT `` NN . ``\nThe hurricane-damaged city of New Orleans is celebrating the final weekend of its famous Mardi Gras festival .\tDT JJ NN IN NNP NNP VBZ VBG DT JJ NN IN PRP$ JJ NNP NNP NN .\nThousands of people gathered to see decorated vehicles , called floats , parade through the city 's streets Saturday and catch strings of beads thrown from the floats and nearby buildings .\tNNS IN NNS VBN TO VB JJ NNS , VBD NNS , NN IN DT NN POS NNS NNP CC VB NNS IN NNS VBN IN DT NNS CC JJ NNS .\nMore parades were scheduled Sunday .\tRBR NNS VBD VBN NNP .\nSome of the city 's social clubs had rescheduled their activities because of rain .\tDT IN DT NN POS JJ NNS VBD VBN PRP$ NNS IN IN NN .\nThe Mardi Gras festival often draws more than one million visitors to the city , but fewer were expected this year because of flooding and other damage caused by Hurricane Katrina in August .\tDT NNP NNP NN RB VBZ JJR IN CD CD NNS TO DT NN , CC JJR VBD VBN DT NN IN IN NN CC JJ NN VBN IN NNP NNP IN NNP .\nCity officials agreed to carry on with the annual tradition , in part to attract tourists and help rebuild the city 's economy .\tNNP NNS VBD TO VB RP IN DT JJ NN , IN NN TO VB NNS CC VB VB DT NN POS NN .\nThe celebrations culminate February 28 , on what is known as ' Fat Tuesday , ' the last day before the Christian Lenten season of fasting begins .\tDT NNS VBP NNP CD , IN WP VBZ VBN IN `` NNP NNP , `` DT JJ NN IN DT NNP NNP NN IN NN VBZ .\nResidents of flood-stricken California are bracing for more rain Monday .\tNNS IN JJ NNP VBP VBG IN JJR NN NNP .\nEarlier rains and winds pushed rivers out of their banks in northern California and killed at least one person .\tRBR NNS CC NNS VBD NNS IN IN PRP$ NNS IN JJ NNP CC VBN IN JJS CD NN .\nWhile the western state of California is being hit by too much rain , the southwest of the United States has been hit by wildfires driven by high winds and hot dry weather .\tIN DT JJ NN IN NNP VBZ VBG VBN IN RB JJ NN , DT JJS IN DT NNP NNPS VBZ VBN VBN IN NNS VBN IN JJ NNS CC JJ JJ NN .\nAuthorities ordered residents of a section of Oklahoma City to evacuate Sunday .\tNNS VBD NNS IN DT NN IN NNP NNP TO VB NNP .\nIn some cases , people had just minutes to packs and flee their homes .\tIN DT NNS , NNS VBD RB NNS TO NNS CC VB PRP$ NNS .\nA number of houses burned to the ground .\tDT NN IN NNS VBN TO DT NN .\nFires have burned tens of thousands of hectares of grassland in New Mexico , Oklahoma , and Texas since last week .\tNNS VBP VBN NNS IN NNS IN NNS IN NN IN NNP NNP , NNP , CC NNP IN JJ NN .\nMexican authorities say federal riot police will stay in the town of Oaxaca until order is restored .\tJJ NNS VBP JJ NN NNS MD VB IN DT NN IN NNP IN NN VBZ VBN .\nPolice took control of the city Sunday , ending five months of sometimes violent protests by striking teachers and other groups who took over streets and buildings and called for the resignation of the state governor .\tNNP VBD NN IN DT NN NNP , VBG CD NNS IN RB JJ NNS IN JJ NNS CC JJ NNS WP VBD RP NNS CC NNS CC VBN IN DT NN IN DT NN NN .\nWitnesses say at least one person was killed as police broke through street barricades and turned water cannons on demostrators .\tNNS VBP IN JJS CD NN VBD VBN IN NN VBD IN NN NNS CC VBD NN NNS IN NNS .\nPresident Vicente Fox ordered federal action after a U.S. activist-journalist and two Mexican men , one of them a teacher , were shot and killed Friday near the site of the protests .\tNNP NNP NNP VBD JJ NN IN DT NNP NN CC CD JJ NNS , CD IN PRP DT NN , VBD VBN CC VBN NNP IN DT NN IN DT NNS .\nLeaders of the teachers union said Monday they plan further marches .\tNNS IN DT NNS NN VBD NNP PRP VBP JJ NNS .\nThey had earlier agreed to go back to work , but it is unclear if classes have resumed for the more than a million public school students in Oaxaca state .\tPRP VBD RB VBN TO VB RB TO NN , CC PRP VBZ JJ IN NNS VBP VBN IN DT JJR IN DT CD JJ NN NNS IN NNP NN .\nCanada 's Food Inspection Agency - which confirmed the results Sunday - had suspected last week the cow was infected with the disease based on preliminary testing .\tNNP POS NNP NNP NNP : WDT VBD DT NNS NNP : VBD VBN JJ NN DT NN VBD VBN IN DT NN VBN IN JJ NN .\nThe agency said at the time that human food and animal feed supplies were not affected .\tDT NN VBD IN DT NN IN JJ NN CC NN NN NNS VBD RB VBN .\nThe confirmation comes just days after the United States announced plans to reopen its border in March to nearly all Canadian beef and live cattle .\tDT NN VBZ RB NNS IN DT NNP NNP VBD NNS TO VB PRP$ NN IN NNP TO RB DT JJ NN CC JJ NNS .\nU.S. officials banned the import of Canadian cattle in May , 2003 , after Canada found its first case of the disease .\tNNP NNS VBD DT NN IN JJ NNS IN NNP , CD , IN NNP VBD PRP$ JJ NN IN DT NN .\nMad cow disease attacks the central nervous system of cattle and can be harmful to humans if tainted meat is consumed .\tJJ NN NN VBZ DT JJ JJ NN IN NNS CC MD VB JJ TO NNS IN JJ NN VBZ VBN .\nRussia has added more world champions to compete at next month 's European figure skating championships .\tNNP VBZ VBN JJR NN NNS TO VB IN JJ NN POS JJ NN VBG NNS .\nIrina Slutskaya , Tatiana Totmianina and Maxim Marinin were named Thursday to skate alongside men 's star Evgeny Plushenko , the 2002 Olympic silver medalist .\tNNP NNP , NNP NNP CC NNP NNP VBD VBN NNP TO VB IN NNS POS NN NNP NNP , DT CD NNP NN NN .\nThe three skaters are likely to be the same the Russian figure skating federation sends to the Turin Olympics .\tDT CD NNS VBP JJ TO VB DT JJ DT JJ NN VBG NN VBZ TO DT NNP NNPS .\nThe exception will be in the men 's category where Russia will be allowed only two entrants .\tDT NN MD VB IN DT NNS POS NN WRB NNP MD VB VBN RB CD NNS .\nThe women 's entries include world champion and 2002 Olympics silver medalist Slutskaya , Elena Sokolova and Viktoria Volchkova .\tDT NNS POS NNS VBP NN NN CC CD NNS JJ NN NNP , NNP NNP CC NNP NNP .\nWorld champions Totmianina and Marinin were also selected despite withdrawing from the Russian national competition .\tNNP NNS NNP CC NNP VBD RB VBN IN VBG IN DT JJ JJ NN .\nTatiana Navka and Roman Kostomarov , Russia 's world champion ice dancers , head the list for that event .\tNNP NNP CC NNP NNP , NNP POS NN NN NN NNS , VBP DT NN IN DT NN .\nPalestinian lawmakers say Prime Minister Ahmed Qureia has agreed to change his proposed cabinet to include more reform-minded ministers .\tJJ NNS VBP NNP NNP NNP NNP VBZ VBN TO VB PRP$ JJ NN TO VB JJR JJ NNS .\nSeveral legislators from the dominant Fatah faction had threatened Monday to vote down the original cabinet list , saying it had too many ministers associated with corruption .\tJJ NNS IN DT JJ NNP NN VBD VBN NNP TO VB RP DT JJ NN NN , VBG PRP VBD RB JJ NNS VBN IN NN .\nThey say Mr. Qureia is expected to soon present a revised cabinet that includes more technocrats and reformers .\tPRP VBP NNP NNP VBZ VBN TO RB VB DT JJ NN WDT VBZ RBR NNS CC NNS .\nPrime Minister Ariel Sharon is also facing a challenge from Israeli lawmakers who have reservations about the plan to remove Israeli settlers from Gaza .\tNNP NNP NNP NNP VBZ RB VBG DT NN IN JJ NNS WP VBP NNS IN DT NN TO VB JJ NNS IN NNP .\nSome 26 of the right-wing Likud party 's 40 parliament ( Knesset ) members have signed a petition calling for a referendum on the Gaza pullout .\tDT CD IN DT JJ NNP NN POS CD NN LRB NNP RRB NNS VBP VBN DT NN VBG IN DT NN IN DT NNP NN .\nThis year , the price of oil has soared , in recent weeks reaching a new high of $ 135 a barrel .\tDT NN , DT NN IN NN VBZ VBN , IN JJ NNS VBG DT JJ NN IN $ CD DT NN .\nThis has sparked protests in many countries , including Britain , where truck drivers recently blocked roads in several cities to protest the price of fuel .\tDT VBZ VBN NNS IN JJ NNS , VBG NNP , WRB NN NNS RB VBD NNS IN JJ NNS TO VB DT NN IN NN .\nFor some , the high cost of fuel has prompted more creativity .\tIN DT , DT JJ NN IN NN VBZ VBN JJR NN .\nA growing number of motorists are making their own bio-diesel with recycled cooking oil .\tDT VBG NN IN NNS VBP VBG PRP$ JJ NN IN JJ NN NN .\nIt 's only cheaper , but greener too .\tPRP VBZ RB JJR , CC NN RB .\nCatherine Drew visited a course near Oxford , England to see how it is done .\tNNP NNP VBD DT NN IN NNP , NNP TO VB WRB PRP VBZ VBN .\nSouth Korean President Roh Moo-hyun and his Mexican counterpart , Vicente Fox , met in Mexico City Friday for talks covering economic cooperation .\tJJ JJ NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBD IN NNP NNP NNP IN NNS VBG JJ NN .\nPresident Roh is eager for Mexico to eliminate legal restrictions that prevent South Korean construction firms from bidding on large public works projects .\tNNP NNP VBZ JJ IN NNP TO VB JJ NNS WDT VBP JJ JJ NN NNS IN NN IN JJ JJ NNS NNS .\nPresident Fox wants to equalize the trade flow with South Korea and for Seoul to further open its markets to Mexican farm products .\tNNP NNP VBZ TO VB DT NN NN IN NNP NNP CC IN NNP TO RB VB PRP$ NNS TO JJ NN NNS .\nCurrently , Korean exports dominate the exchange , valued at approximately $ 5.4 billion annually .\tRB , JJ NNS VBP DT NN , VBN IN RB $ CD CD RB .\nSouth Korea is Mexico 's sixth-largest trading partner .\tNNP NNP VBZ NNP POS JJ NN NN .\nThe two leaders also signed a variety of small accords covering such topics as customs procedures and unfair trade practices at the National Palace in Mexico City .\tDT CD NNS RB VBD DT NN IN JJ NNS VBG JJ NNS IN NNS NNS CC JJ NN NNS IN DT NNP NNP IN NNP NNP .\nPresident Roh leaves for Costa Rica on Sunday .\tNNP NNP VBZ IN NNP NNP IN NNP .\nA Georgian policeman has been shot and killed near the breakaway province of Abkhazia .\tDT JJ NN VBZ VBN VBN CC VBN IN DT NN NN IN NNP .\nGeorgian Interior Ministry spokesman Shota Utiashvili said the policeman was shot and killed Saturday when shots were fired from the direction of a nearby Abkhaz-controlled checkpoint .\tJJ NNP NNP NN NNP NNP VBD DT NN VBD VBN CC VBN NNP WRB NNS VBD VBN IN DT NN IN DT JJ JJ NN .\nThe incident occurred on the same day that Russian forces left key positions in western Georgia as part of a deal brokered by France .\tDT NN VBD IN DT JJ NN IN JJ NNS VBD JJ NNS IN JJ NNP IN NN IN DT NN VBN IN NNP .\nGeorgian authorities confirmed that Russian troops have left posts around the Black Sea port of Poti .\tJJ NNS VBD IN JJ NNS VBP VBN NNS IN DT NNP NNP NN IN NNP .\nRussian forces pushed into neighboring Georgia last month after the Georgian military tried to retake control of the breakaway region of South Ossetia .\tJJ NNS VBD IN VBG NNP JJ NN IN DT JJ NN VBD TO VB NN IN DT JJ NN IN NNP NNP .\nRussia has recognized both South Ossetia and Abkhazia as independent states .\tNNP VBZ VBN DT NNP NNP CC NNP IN JJ NNS .\nAlthough the Russians have withdrawn from several positions in Georgia , they continue to maintain a security zone around the separatist region .\tIN DT NNS VBP VBN IN JJ NNS IN NNP , PRP VBP TO VB DT NN NN IN DT JJ NN .\nJane Fonda reportedly scolded her co-star Lindsay Lohan about her antics on the set of their film Georgia Rules .\tNNP NNP RB VBD PRP$ NN NNP NNP IN PRP$ NNS IN DT NN IN PRP$ NN NNP NNP .\nThe veteran star is said to have sent Lohan a note taking her to task for widely-publicized bad behavior .\tDT NN NN VBZ VBN TO VB VBN NNP DT NN VBG PRP TO NN IN JJ JJ NN .\nFonda 's publicist denies reports that Lindsay Lohan is not welcome at the film 's May 7 premiere .\tNNP POS NN VBZ NNS IN NNP NNP VBZ RB JJ IN DT NN POS NNP CD NN .\nHeld in Atlanta , Georgia , it will benefit the non-profit organization G-CAPP , which Jane Fonda co-chairs .\tNNP IN NNP , NNP , PRP MD VB DT JJ NN NNP , WDT NNP NNP VBZ .\nAt least seven coal miners were reported killed and 19 were missing after an explosion at a mine in the eastern U.S. state of West Virginia .\tIN JJS CD NN NNS VBD VBN VBN CC CD VBD VBG IN DT NN IN DT NN IN DT JJ NNP NN IN NNP NNP .\nState mine safety director Ron Wooten says the blast happened Monday afternoon at Massey Energy 's Upper Big Branch South Mine mine in Raleigh County , about 50 kilometers from Charleston , the state capital .\tNN NN NN NN NNP NNP VBZ DT NN VBD NNP NN IN NNP NNP POS NNP NNP NNP NNP NNP NN IN NNP NNP , IN CD NNS IN NNP , DT NN NN .\nRescue efforts are under way and state Governor Joe Manchin , who was away on a personal trip , is returning home .\tNN NNS VBP IN NN CC NN NNP NNP NNP , WP VBD RB IN DT JJ NN , VBZ VBG NN .\nMassey Energy told the Charleston Gazette there is little information yet on what happened .\tNNP NNP VBD DT NNP NNP EX VBZ JJ NN RB IN WP VBD .\nWest Virginia is the state where 12 miners died after an explosion in the Sago coal mine in January 2006 .\tNNP NNP VBZ DT NN WRB CD NNS VBD IN DT NN IN DT NNP NN NN IN NNP CD .\nThat accident trapped 13 men underground for two days .\tDT NN VBN CD NNS RB IN CD NNS .\nOne miner survived , while the rest died of carbon monoxide poisoning .\tCD NN VBD , IN DT NN VBD IN NN NN NN .\nThe World Health Organization has reported another bird flu death in Indonesia , confirming Monday that a five-year-old boy who died last month was infected with the virus .\tDT NNP NNP NNP VBZ VBN DT NN NN NN IN NNP , VBG NNP IN DT JJ NN WP VBD JJ NN VBD VBN IN DT NN .\nOfficials said the victim died June 16 in East Java province .\tNNS VBD DT NN VBD NNP CD IN NNP NNP NN .\nHe was believed to have come into contact with infected chickens .\tPRP VBD VBN TO VB VBN IN NN IN JJ NNS .\nScientists have diagnosed more than 120 bird flu fatalities since late 2003 .\tNNS VBP VBN JJR IN CD NN NN NNS IN JJ CD .\nMost of them have been in Asia .\tJJS IN PRP VBP VBN IN NNP .\nScientists worry that human-to-human transmission of the virus could spark a global pandemic .\tNNS VBP IN JJ NN IN DT NN MD VB DT JJ NN .\nIn late June , the WHO said it believed one Indonesian family became infected through such human-to-human transmission .\tIN JJ NNP , DT NNP VBD PRP VBD CD JJ NN VBD JJ IN JJ JJ NN .\nBut health officials say that the specific H5N1 virus strain that killed seven of eight family members died out with its last victim .\tCC NN NNS VBP IN DT JJ NNP NN NN WDT VBD CD IN CD NN NNS VBD RP IN PRP$ JJ NN .\nEuropean Union and Mediterranean officials at a summit in Barcelona , Spain , have reached a last-minute agreement on a code of conduct in the war against terrorism .\tNNP NNP CC NNP NNS IN DT NN IN NNP , NNP , VBP VBN DT JJ NN IN DT NN IN NN IN DT NN IN NN .\nAt an often fractious conference that ended Monday , diplomats worked into the night Sunday trying to agree on how to define terrorism .\tIN DT RB JJ NN WDT VBD NNP , NNS VBD IN DT NN NNP VBG TO VB IN WRB TO VB NN .\nSome Arab delegates wanted to distinguish between terrorism and what they call ' resistance movements , ' but European officials insisted that the code reflect that terrorism is never justified .\tDT JJ NNS VBD TO VB IN NN CC WP PRP VBP `` NN NNS , `` CC JJ NNS VBD IN DT NN VBP DT NN VBZ RB JJ .\nFirst reports indicated that a compromise was worked out .\tJJ NNS VBD IN DT NN VBD VBN RP .\nThe summit marked the 10th anniversary of the Euro-Mediterranean partnership , which includes all 25 EU states , Israel , the Palestinian Authority and eight mostly Arab Mediterranean countries .\tDT NN VBD DT JJ NN IN DT JJ NN , WDT VBZ DT CD NNP NNS , NNP , DT JJ NNP CC CD RB JJ JJ NNS .\nBut only the Mediterranean leaders from Turkey and the Palestinian Authority attending the Barcelona summit .\tCC RB DT JJ NNS IN NNP CC DT JJ NNP VBG DT NNP NN .\nOthers were absent for various reasons .\tNNS VBD JJ IN JJ NNS .\nBritain 's Prince Charles and his new wife , Camilla , have visited the site of the 09-Nov terrorist attacks in New York City , as they begin a weeklong trip to the United States .\tNNP POS NNP NNP CC PRP$ JJ NN , NNP , VBP VBN DT NN IN DT CD JJ NNS IN NNP NNP NNP , IN PRP VBP DT NN NN TO DT NNP NNPS .\nAfter visiting the World Trade Center site Tuesday , the couple traveled to a nearby memorial garden to unveil a stone marker for British victims of the terrorist attacks .\tIN VBG DT NNP NNP NNP NN NNP , DT NN VBD TO DT JJ JJ NN TO VB DT NN NN IN JJ NNS IN DT JJ NNS .\nTelevision reports say few onlookers turned out for a glimpse of the Prince of Wales and his longtime companion , the Duchess of Cornwall , whom he married earlier this year .\tNN NNS VBP JJ NNS VBD RP IN DT NN IN DT NNP IN NNP CC PRP$ JJ NN , DT NNP IN NNP , WP PRP VBD RBR DT NN .\nPrince Charles also met with U.N. Secretary-General Kofi Annan at the United Nations .\tNNP NNP RB VBD IN NNP NNP NNP NNP IN DT NNP NNPS .\nOn Wednesday , Prince Charles and Camilla travel to Washington to visit President and Mrs. Bush at the White House .\tIN NNP , NNP NNP CC NNP VBP IN NNP TO VB NNP CC NNP NNP IN DT NNP NNP .\nFriday , the royal couple will visit New Orleans to meet with victims of Hurricane Katrina , which devastated the Gulf Coast in August .\tNNP , DT JJ NN MD VB NNP NNP TO VB IN NNS IN NNP NNP , WDT VBD DT NNP NNP IN NNP .\nEstonian President Arnold Ruutel has formally approved the country 's new government , three weeks after the previous ruling coalition collapsed .\tJJ NNP NNP NNP VBZ RB VBN DT NN POS JJ NN , CD NNS IN DT JJ NN NN VBD .\nThe president 's action followed a parliamentary vote confirming Andrus Ansip and his coalition government .\tDT NN POS NN VBD DT JJ NN VBG NNP NNP CC PRP$ NN NN .\nThe 48-year-old Mr. Ansip was the minister of economics and communications minister in the previous government .\tDT JJ NNP NNP VBD DT NN IN NNS CC NNS NN IN DT JJ NN .\nThe new coalition brings together Mr. Ansip 's Reform Party , the Centre Party and the People 's Union .\tDT JJ NN VBZ RB NNP NNP POS NNP NNP , DT NNP NNP CC DT NNS POS NNP .\nEstonia 's previous prime minister , Juhan Parts , resigned last month after lawmakers voted no-confidence in his justice minister .\tNNP POS JJ JJ NN , NNP NNP , VBD JJ NN IN NNS VBD NN IN PRP$ NN NN .\nTickets have gone on sale for the International Football Federation 's all-star match to raise money for the victims of last month 's devastating Indian Ocean tsunami .\tNNS VBP VBN IN NN IN DT NNP NNP NNP POS JJ NN TO VB NN IN DT NNS IN JJ NN POS JJ NNP NNP NN .\nTickets for the so-called ' Football for Hope ' match February 15 in Barcelona will cost between $ 13 - $ 38 .\tNNS IN DT JJ `` NN IN NNP `` NN NNP CD IN NNP MD VB IN $ CD IN $ CD .\nAll proceeds will be donated to the Tsunami Solidarity Fund set up by FIFA and the Asian Football Confederation .\tDT NNS MD VB VBN TO DT NNP NNP NNP VBN RP IN NNP CC DT NNP NNP NNP .\nFIFA player of the Year Ronaldinho of Brazil and European player of the year Andriy Shevchenko of Ukraine will captain the two teams .\tNNP NN IN DT NN NNP IN NNP CC JJ NN IN DT NN NNP NNP IN NNP MD VB DT CD NNS .\nOther stars slated to appear include Brazil 's Ronaldo , David Beckham of England and Frenchman Zinedine Zidane .\tJJ NNS VBN TO VB VBP NNP POS NNP , NNP NNP IN NNP CC NN NNP NNP .\nThe Israeli cabinet has postponed a vote to open a key border crossing between the Gaza Strip and Egypt .\tDT JJ NN VBZ VBN DT NN TO VB DT JJ NN VBG IN DT NNP NNP CC NNP .\nIsraeli radio linked the delay to a disagreement over the role of European security monitors at the Rafah crossing .\tJJ NN VBD DT NN TO DT NN IN DT NN IN JJ NN NNS IN DT NNP VBG .\nLast week , the Israeli security cabinet voted to reopen the crossing under Egyptian and Palestinian control , with Europeans monitoring the flow of people .\tJJ NN , DT JJ NN NN VBD TO VB DT VBG IN JJ CC JJ NN , IN NNS VBG DT NN IN NNS .\nBut the radio report says the European Union is balking at Israel 's demand that its monitors arrest anyone suspected of arms smuggling .\tCC DT NN NN VBZ DT NNP NNP VBZ VBG IN NNP POS NN IN PRP$ NNS NN DT VBN IN NNS VBG .\nIsraeli forces left the Gaza Strip in September after a 38-year occupation , but they still control the borders of the Palestinian territory .\tJJ NNS VBD DT NNP NNP IN NNP IN DT JJ NN , CC PRP RB VBP DT NNS IN DT JJ NN .\nEuropean delegates and Israeli negotiators met Sunday in Jerusalem in a push to resolve the dispute .\tJJ NNS CC JJ NNS VBD NNP IN NNP IN DT NN TO VB DT NN .\nThe Europeans are to meet with Palestinians later in the day and Monday in Ramallah and Gaza City .\tDT NNS VBP TO VB IN NNS RB IN DT NN CC NNP IN NNP CC NNP NNP .\nA strong earthquake has hit southern Iran .\tDT JJ NN VBZ VBN JJ NNP .\nOfficials expect some damage , but there are no reports of casualties .\tNNS VBP DT NN , CC EX VBP DT NNS IN NNS .\nIranian officials say the magnitude six quake was centered in a lightly-populated rural area north of Bandar Abbas , a major port on the Persian Gulf .\tJJ NNS VBP DT NN CD NN VBD VBN IN DT JJ JJ NN NN IN NNP NNP , DT JJ NN IN DT NNP NNP .\nIran 's state-run news agency reported at least two aftershocks , the strongest measuring 4.8 magnitude .\tNNP POS JJ NN NN VBD IN JJS CD NNS , DT JJS NN CD NN .\nLast November , a quake of 5.9 magnitude struck Qeshm island , south of Bandar Abbas , killing nine people and injuring scores of others .\tJJ NNP , DT NN IN CD NN VBD NNP NN , NN IN NNP NNP , VBG CD NNS CC VBG NNS IN NNS .\nShuttle astronauts are more than half way through a record sixteen day construction mission to the International Space Station .\tNNP NNS VBP JJR IN DT NN IN DT NN CD NN NN NN TO DT NNP NNP NNP .\nEndeavor is docked for the International Space Station , where it will remain until next Wednesday when unhitches for the return to earth .\tNNP VBZ VBN IN DT NNP NNP NNP , WRB PRP MD VB IN JJ NNP WRB NNS IN DT NN TO NN .\nVOA 's Paul Sisco has today 's mission update .\tNNP POS NNP NNP VBZ NN POS NN NN .\nUkraine 's defense ministry says it will begin a three-stage withdrawal of its troops from Iraq next week .\tNNP POS NN NN VBZ PRP MD VB DT JJ NN IN PRP$ NNS IN NNP JJ NN .\nThe Interfax news agency reports Saturday that 150 of Ukraine 's more than 1600 soldiers will leave Iraq on Tuesday .\tDT NNP NN NN VBZ NNP IN CD IN NNP POS JJR IN CD NNS MD VB NNP IN NNP .\nA full withdrawal should be complete by October .\tDT JJ NN MD VB JJ IN NNP .\nMeanwhile , Bulgaria says U.S. forces have admitted responsibility for the ' friendly-fire ' death of a Bulgarian soldier in southern Iraq a week ago .\tRB , NNP VBZ NNP NNS VBP VBN NN IN DT `` JJ `` NN IN DT JJ NN IN JJ NNP DT NN RB .\nThe Bulgarian defense ministry said the U.S. military said the shooting was ' unintentional , ' but that U.S. troops failed to carefully identify the target and opened fire without warning shots .\tDT JJ NN NN VBD DT NNP NN VBD DT NN VBD `` JJ , `` CC IN NNP NNS VBD TO RB VB DT NN CC VBD NN IN VBG NNS .\nThere was no immediate confirmation from the U.S. military .\tEX VBD DT JJ NN IN DT NNP NN .\nIn a separate incident , the U.S. military says it is investigating whether six American soldiers mistreated two Iraqi detainees they were transporting to a detention facility last month .\tIN DT JJ NN , DT NNP NN VBZ PRP VBZ VBG IN CD JJ NNS VBD CD JJ NNS PRP VBD VBG TO DT NN NN JJ NN .\nBoth detainees sustained minor injuries .\tDT NNS VBD JJ NNS .\nTop officials of the U.S. central bank held a key interest rate steady at two percent Tuesday .\tJJ NNS IN DT NNP JJ NN VBD DT JJ NN NN JJ IN CD NN NNP .\nSome economists had been expecting the U.S. Federal Reserve to cut interest rates in an effort to ease the current financial crisis by making it easier for businesses and consumers to borrow money .\tDT NNS VBD VBN VBG DT NNP NNP NNP TO VB NN NNS IN DT NN TO VB DT JJ JJ NN IN VBG PRP JJR IN NNS CC NNS TO VB NN .\nIn a statement explaining their decision , Fed officials said they were not changing rates in part because the danger of inflation is still high .\tIN DT NN VBG PRP$ NN , NNP NNS VBD PRP VBD RB VBG NNS IN NN IN DT NN IN NN VBZ RB JJ .\nThe statement did say that strains in the financial markets have increased ' significantly ' and labor markets are weakening .\tDT NN VBD VB IN NNS IN DT JJ NNS VBP VBN `` RB `` CC NN NNS VBP VBG .\nThe Fed often lowers interest rates in an effort to stimulate the economy , and raises them to fight inflation .\tDT NNP RB VBZ NN NNS IN DT NN TO VB DT NN , CC VBZ PRP TO VB NN .\nChina 's foreign ministry has denied reports that Chinese banks loaned six billion dollars to a Russian bank to buy the main oil production unit of the Yukos energy company .\tNNP POS JJ NN VBZ VBN NNS IN JJ NNS VBD CD CD NNS TO DT JJ NN TO VB DT JJ NN NN NN IN DT NNP NN NN .\nRussia 's finance minister said Wednesday that Chinese funds helped a Russian bank and the Roseneft state-owned oil firm buy ex-Yukos unit Yuganskneftegaz .\tNNP POS NN NN VBD NNP IN JJ NNS VBD DT JJ NN CC DT NNP JJ NN NN VB NNP NN NNP .\nBut after his comments , Roseneft and the finance ministry said the Chinese funds were used to buy oil , not to buy Yugansk .\tCC IN PRP$ NNS , NNP CC DT NN NN VBD DT JJ NNS VBD VBN TO VB NN , RB TO VB NNP .\nThe Chinese foreign ministry Thursday confirmed that it did not provide any loans for the Yugansk deal , but it did not say if the funds were used to purchase oil .\tDT JJ JJ NN NNP VBD IN PRP VBD RB VB DT NNS IN DT NNP NN , CC PRP VBD RB VB IN DT NNS VBD VBN TO VB NN .\nThe Yugansk company was sold last December to a mysterious buyer in a $ 9 billion deal that President Vladimir Putin 's economic advisor called ' the fraud of the year . '\tDT NNP NN VBD VBN JJ NNP TO DT JJ NN IN DT $ CD CD NN IN NNP NNP NNP POS JJ NN VBD `` DT NN IN DT NN . ``\nYukos has challenged the sale in U.S. courts .\tNNP VBZ VBN DT NN IN NNP NNS .\nReports from Somalia say two people were killed and six others wounded when a bomb exploded in the capital , Mogadishu in what officials believe may have been an attempt to attack an African Union delegation .\tNNS IN NNP VBP CD NNS VBD VBN CC CD NNS VBD WRB DT NN VBD IN DT NN , NNP IN WP NNS VBP MD VB VBN DT NN TO VB DT NNP NNP NN .\nWitnesses say the blast went off early Thursday on a road near where the AU delegation was scheduled to pass .\tNNS VBP DT NN VBD RB JJ NNP IN DT NN IN WRB DT NNP NN VBD VBN TO VB .\nThe officials say the explosive device had been attached to a motorcycle which had been parked by the side of the road .\tDT NNS VBP DT JJ NN VBD VBN VBN TO DT NN WDT VBD VBN VBN IN DT NN IN DT NN .\nThe AU team has been in Somalia to asses security for a regional peacekeeping force .\tDT NNP NN VBZ VBN IN NNP TO VB NN IN DT JJ NN NN .\nSomalia 's new government had asked for AU peacekeepers to defend officials as they begin moving home from their current base in Kenya later this month .\tNNP POS JJ NN VBD VBN IN NNP NNS TO VB NNS IN PRP VBP VBG NN IN PRP$ JJ NN IN NNP RB DT NN .\nThe campaign of Barack Obama says the Democratic presidential hopeful is about to choose a running mate and wants his supporters to be the first to know .\tDT NN IN NNP NNP VBZ DT JJ JJ NN VBZ IN TO VB DT NN NN CC VBZ PRP$ NNS TO VB DT JJ TO VB .\nCampaign manager David Plouffe has notified backers that they can sign up to receive an e-mail or text message ' the moment ' the decision is made .\tNN NN NNP NNP VBZ VBN NNS IN PRP MD VB RP TO VB DT NN CC NN NN `` DT NN `` DT NN VBZ VBN .\nThe Obama campaign has used technology , especially the Internet , to build an on-line community of two million volunteers and to raise hundreds of millions of dollars in campaign funds .\tDT NNP NN VBZ VBN NN , RB DT NNP , TO VB DT JJ NN IN CD CD NNS CC TO VB NNS IN NNS IN NNS IN NN NNS .\nObama is vacationing in the U.S. Pacific state of Hawaii , two weeks ahead of the Democratic National Convention , where he and his vice presidential running mate will be formally nominated .\tNNP VBZ VBG IN DT NNP NNP NN IN NNP , CD NNS RB IN DT JJ NNP NNP , WRB PRP CC PRP$ NN JJ VBG NN MD VB RB VBN .\nRepublican presidential candidate John McCain campaigns Tuesday in Pennsylvania and New Jersey .\tJJ JJ NN NNP NNP NNS NNP IN NNP CC NNP NNP .\nThe veteran Arizona lawmaker is to be nominated as his party 's candidate in the first week of September at the Republican National Convention .\tDT JJ NNP NN VBZ TO VB VBN IN PRP$ NN POS NN IN DT JJ NN IN NNP IN DT NNP NNP NNP .\nThe head of Iran 's nuclear negotiators has warned that the country 's incoming president may reverse an agreement to freeze uranium enrichment activities .\tDT NN IN NNP POS JJ NNS VBZ VBN IN DT NN POS JJ NN MD VB DT NN TO VB NN NN NNS .\nHassan Rohani told an Iranian daily he believes elected President Mahmoud Ahmadinejad will remain committed to nuclear talks with the European Union .\tNNP NNP VBD DT JJ NN PRP VBZ VBN NNP NNP NNP MD VB JJ TO JJ NNS IN DT NNP NNP .\nBut he says the new president has a different view on the enrichment freeze , and may implement a change in a new round of talks with EU diplomats next month .\tCC PRP VBZ DT JJ NN VBZ DT JJ NN IN DT NN NN , CC MD VB DT NN IN DT JJ NN IN NNS IN NNP NNS JJ NN .\nTuesday , Mr. Ahmadinejad vowed ' new measures ' in nuclear talks when he takes over Iran 's government on August 3 .\tNNP , NNP NNP VBD `` JJ NNS `` IN JJ NNS WRB PRP VBZ RP NNP POS NN IN NNP CD .\nEU officials have been offering economic incentives if Iran agrees to end uranium enrichment , amid fears the Islamic Republic may develop a nuclear weapon .\tNNP NNS VBP VBN VBG JJ NNS IN NNP VBZ TO VB NN NN , IN NNS DT NNP NNP MD VB DT JJ NN .\nTehran insists its program is for peaceful ends .\tNNP VBZ PRP$ NN VBZ IN JJ NNS .\nSri Lankan government negotiators and Tamil Tiger rebels have agreed to resume their cease-fire talks in April and to restrain the level of violence between them .\tNNP NNP NN NNS CC NNP NNP NNS VBP VBN TO VB PRP$ NN NNS IN NNP CC TO VB DT NN IN NN IN PRP .\nNorwegian mediator Erik Solheim said the agreement came during two days of talks in Geneva that ended Thursday .\tJJ NN NNP NNP VBD DT NN VBD IN CD NNS IN NNS IN NNP WDT VBD NNP .\nEarlier , Solheim had played down expectations of a breakthrough , saying confidence was low .\tRB , NNP VBD VBN RP NNS IN DT NN , VBG NN VBD JJ .\nSri Lanka wants to make some changes to a 2002 ceasefire accord signed by the rebels .\tNNP NNP VBZ TO VB DT NNS TO DT CD NN NN VBN IN DT NNS .\nBut the Tamil rebels say they will only discuss implementing the existing ceasefire deal .\tCC DT NNP NNS VBP PRP MD RB VB VBG DT VBG NN NN .\nBoth sides blame the other for a surge in violence in December and January that killed at least 150 people .\tDT NNS VBP DT JJ IN DT NN IN NN IN NNP CC NNP WDT VBD IN JJS CD NNS .\nIn the latest incident , Sri Lanka 's military accuses Tamil rebels of killing a Muslim man in the east of the country on Wednesday .\tIN DT JJS NN , NNP NNP POS JJ NNS NNP NNS IN VBG DT NNP NN IN DT NN IN DT NN IN NNP .\nRecep Tayyip Erdogan\tNNP NNP NNP\nTurkey 's prime minister says his country will not agree to new conditions for European Union membership .\tNNP POS JJ NN VBZ PRP$ NN MD RB VB TO JJ NNS IN NNP NNP NN .\nIn comments Sunday , Prime Minister Recep Tayyip Erdogan said Turkey was in no position to renegotiate so close to the start of EU accession talks , which are scheduled to begin this October .\tIN NNS NNP , NNP NNP NNP NNP NNP VBD NNP VBD IN DT NN TO VB RB RB TO DT NN IN NNP NN NNS , WDT VBP VBN TO VB DT NNP .\nMr. Erdogan said that would not be ' honest politics . '\tNNP NNP VBD DT MD RB VB `` JJ NNS . ``\nLast week EU Commission President Jose Manuel Barroso said the bloc should have an open debate on Turkey 's candidacy .\tJJ NN NNP NNP NNP NNP NNP NNP VBD DT NN MD VB DT JJ NN IN NNP POS NN .\nBut British Prime Minister Tony Blair warned against shutting the EU to new members like Turkey , remarks welcomed by Mr. Erdogan .\tCC JJ NNP NNP NNP NNP VBD IN VBG DT NNP TO JJ NNS IN NNP , NNS VBN IN NNP NNP .\nOpposition to the largely Muslim nation 's membership in the European bloc contributed to the defeat of the EU constitution in recent referenda in France and the Netherlands .\tNN TO DT RB JJ NN POS NN IN DT JJ NN VBD TO DT NN IN DT NNP NN IN JJ NN IN NNP CC DT NNP .\nThe U.S. military says four American soldiers have died in separate attacks in Baghdad .\tDT NNP NN VBZ CD JJ NNS VBP VBN IN JJ NNS IN NNP .\nThree of the soldiers were killed Monday in east Baghdad , where U.S. and Iraqi troops have waged intense battles with Shi'ite militiamen .\tCD IN DT NNS VBD VBN NNP IN JJ NNP , WRB NNP CC JJ NNS VBP VBN JJ NNS IN NNP NNS .\nThe fourth soldier was killed by indirect fire during a separate incident in western Baghdad .\tDT JJ NN VBD VBN IN JJ NN IN DT JJ NN IN JJ NNP .\nEarlier , the U.S. military reported it had killed seven militants in Baghdad 's Sadr City district .\tRB , DT NNP NN VBD PRP VBD VBN CD NNS IN NNP POS NNP NNP NN .\nThe casualties came during a combined air and ground assault launched in response to small arms fire directed at U.S. troops .\tDT NNS VBD IN DT JJ NN CC NN NN VBN IN NN TO JJ NNS NN VBD IN NNP NNS .\nOn Sunday , Iraqi and American troops killed 38 suspected militants in Baghdad , in the fiercest fighting in weeks .\tIN NNP , JJ CC JJ NNS VBD CD JJ NNS IN NNP , IN DT JJS NN IN NNS .\nOfficials said gunmen took advantage of a sandstorm that blanketed the Iraqi capital to launch apparently coordinated assaults .\tNNS VBD NNS VBD NN IN DT NN WDT VBD DT JJ NN TO VB RB VBN NNS .\nThe sandstorm grounded American helicopters , the main weapon used by U.S. forces to hunt insurgent rocket-launching crews .\tDT NN VBD JJ NNS , DT JJ NN VBN IN NNP NNS TO VB JJ NN NNS .\nCar bombs killed at least 24 people in Iraq Sunday and police found the bullet-riddled bodies of 42 men in Baghdad .\tNN NNS VBD IN JJS CD NNS IN NNP NNP CC NN VBD DT JJ NNS IN CD NNS IN NNP .\nIn the deadliest blast , at least 15 people were killed in the southern Shi'ite holy city of Karbala .\tIN DT JJS NN , IN JJS CD NNS VBD VBN IN DT JJ NNP JJ NN IN NNP .\nIn Baghdad , a car bomb near an army patrol in a Sunni neighborhood ( Adhamiyah ) killed eight people and wounded 15 .\tIN NNP , DT NN NN IN DT NN NN IN DT NNP NN LRB NNP RRB VBD CD NNS CC VBD CD .\nAt nearly the same time , another blast ( in the Waziriyah neighborhood ) killed one person .\tIN RB DT JJ NN , DT NN LRB IN DT NNP NN RRB VBD CD NN .\nAnd a U.S. Marine died from wounds sustained during an operation in al-Anbar province .\tCC DT NNP NN VBD IN NNS VBN IN DT NN IN NNP NN .\nTo the north , Kurdistan 's parliament formally unified the autonomous region 's two local governments .\tIN DT NN , NNP POS NN RB VBN DT JJ NN POS CD JJ NNS .\nIn southern Iraq , Basra was reported calm and an overnight curfew was lifted after Saturday 's clash between Shi'ite gunmen and British troops who were trying to recover a downed British military helicopter .\tIN JJ NNP , NNP VBD VBN NN CC DT JJ NN VBD VBN IN NNP POS NN IN NNP NNS CC JJ NNS WP VBD VBG TO VB DT JJ JJ JJ NN .\nThe number of Indonesian children infected with the crippling polio virus has risen to 155 , with the discovery of 33 new cases in the last two weeks .\tDT NN IN JJ NNS VBN IN DT JJ NN NN VBZ VBN TO CD , IN DT NN IN CD JJ NNS IN DT JJ CD NNS .\nThe World Health Organization says the new infections were found in areas on western Java island , where the disease originally broke out earlier this year .\tDT NNP NNP NNP VBZ DT JJ NNS VBD VBN IN NNS IN JJ NNP NN , WRB DT NN RB VBD RP RBR DT NN .\nThe polio outbreak - Indonesia 's first in 10 years - has prompted authorities to vaccinate 6.5 million children .\tDT NN NN IN NNP POS JJ IN CD NNS : VBZ VBN NNS TO VB CD CD NNS .\nAnother 24 million will be immunized in new rounds of a vaccination campaign on August 30 and September 27 .\tDT CD CD MD VB VBN IN JJ NNS IN DT NN NN IN NNP CD CC NNP CD .\nPolio is usually spread through polluted water .\tNNP VBZ RB VBN IN JJ NN .\nIt affects the nervous system , causing paralysis , muscular atrophy and death .\tPRP VBZ DT JJ NN , VBG NN , JJ NN CC NN .\nPolice have arrested four more suspects in connection with July 's train bombings in Mumbai ( formerly known as Bombay ) that killed nearly 200 people and wounded more than 800 others .\tNNS VBP VBN CD JJR NNS IN NN IN NNP POS NN NNS IN NNP LRB RB VBN IN NNP RRB WDT VBD RB CD NNS CC VBD JJR IN CD NNS .\nAuthorities identified the men as Mohammed Shafi , Shaikh Mohammed , Mohammed Majid and Abdul Vahiuddin .\tNNS VBD DT NNS IN NNP NNP , NNP NNP , NNP NNP CC NNP NNP .\nPolice arrested three of the suspects in Mumbai and the fourth in the eastern city of Calcutta .\tNNS VBN CD IN DT NNS IN NNP CC DT NN IN DT JJ NN IN NNP .\nThis raises the total number of arrests in the case to more than 15 people .\tDT VBZ DT JJ NN IN NNS IN DT NN TO JJR IN CD NNS .\nIndian officials say they suspect the Pakistan-based Lashkar-e-Toiba militant group was behind the attacks .\tJJ NNS VBP PRP VBP DT JJ NNP JJ NN VBD IN DT NNS .\nThe group , which is fighting Indian rule in Kashmir , has denied involvement .\tDT NN , WDT VBZ VBG JJ NN IN NNP , VBZ VBN NN .\nThe explosions on packed commuter trains in Mumbai prompted police raids on the city 's Muslim ghettos and the questioning of hundreds of people across the country .\tDT NNS IN VBN NN NNS IN NNP VBD NN NNS IN DT NN POS NNP NNS CC DT VBG IN NNS IN NNS IN DT NN .\nThe head of the Organization of the Islamic Conference has rejected calls by a Pakistani cleric for the murder of Danish cartoonists who drew depictions of the Muslim Prophet Muhammad .\tDT NN IN DT NNP IN DT NNP NNP VBZ VBN NNS IN DT JJ NN IN DT NN IN JJ NNS WP VBD NNS IN DT NNP NNP NNP .\nSecretary-General Ekmeleddin Ihsanoglu said in Pakistan Tuesday that the death treats and violent reaction against the cartoons are un-Islamic .\tJJ NNP NNP VBD IN NNP NNP IN DT NN NNS CC JJ NN IN DT NNS VBP JJ .\nMeanwhile , a United Nations spokesman says Secretary-General Kofi Annan has made a last-minute decision to visit the Middle East to try to calm Muslim anger .\tRB , DT NNP NNP NN VBZ NNP NNP NNP VBZ VBN DT JJ NN TO VB DT NNP NNP TO VB TO VB NNP NN .\nMr. Annan will speak at a previously-scheduled U.N.-sponsored meeting in Qatar Sunday on how to bring civilizations closer together .\tNNP NNP MD VB IN DT JJ JJ NN IN NNP NNP IN WRB TO VB NNS RBR RB .\nThe 12 cartoons first appeared in a Danish newspaper in September and have been reprinted in other European newspapers .\tDT CD NNS RB VBD IN DT JJ NN IN NNP CC VBP VBN VBN IN JJ JJ NNS .\nOne of the cartoons depicts Muhammad as a terrorist .\tCD IN DT NNS VBZ NNP IN DT NN .\nIslam forbids any depictions of the prophet .\tNNP VBZ DT NNS IN DT NN .\nThe U.S. ambassador to Venezuela says the United States could suspend flights by Venezuelan airlines if Caracas carries out a threat to ban or restrict U.S. carriers flying to the South American nation .\tDT NNP NN TO NNP VBZ DT NNP NNPS MD VB NNS IN JJ NNS IN NNP VBZ RP DT NN TO VB CC VB NNP NNS VBG TO DT NNP NNP NN .\nAmbassador William Brownfield made the remark Tuesday , saying that under that situation , neither Venezuela nor the United States wins .\tNNP NNP NNP VBD DT NN NNP , VBG IN IN DT NN , CC NNP CC DT NNP NNPS VBZ .\nLast month , the Venezuelan government said it would cut the number of airline flights by U.S. carriers , saying the U.S. has not complied with bilateral aviation accords between the two countries .\tJJ NN , DT JJ NN VBD PRP MD VB DT NN IN NN NNS IN NNP NNS , VBG DT NNP VBZ RB VBN IN JJ NN NNS IN DT CD NNS .\nThe U.S. put restrictions on flights from Venezuela 10 years ago because of security concerns .\tDT NNP VBD NNS IN NNS IN NNP CD NNS RB IN IN NN NNS .\nCaracas has been trying , unsuccessfully , to get those restrictions removed and threatens to limit U.S. flights as of March 30 .\tNNP VBZ VBN VBG , RB , TO VB DT NNS VBN CC VBZ TO VB NNP NNS IN IN NNP CD .\nThe Venezuelan ban would put an end to flights between the two countries by Continental Airlines and Delta Air Lines and restrict some by American Airlines .\tDT JJ NN MD VB DT NN TO NNS IN DT CD NNS IN NNP NNPS CC NNP NNP NNPS CC VB DT IN NNP NNPS .\nA prominent politician and a candidate in Kyrgyzstan 's upcoming presidential election has survived an attempt on his life .\tDT JJ NN CC DT NN IN NNP POS JJ JJ NN VBZ VBN DT NN IN PRP$ NN .\nWearing a bandage over his nose , Bayaman Erkinbayev told parliamentarians he was shot and wounded in the face in an assassination attempt late Thursday .\tVBG DT NN IN PRP$ NN , NNP NNP VBD NNS PRP VBD VBN CC VBN IN DT NN IN DT NN NN JJ NNP .\nHe said the shots were fired by assailants from a car in the capital , Bishkek .\tPRP VBD DT NNS VBD VBN IN NNS IN DT NN IN DT NN , NNP .\nMr. Erkinbayev said he believed that his candidacy was the reason for the attack , but a Kyrgyz police official said the shooting may not have been politically motivated .\tNNP NNP VBD PRP VBD IN PRP$ NN VBD DT NN IN DT NN , CC DT JJ NN NN VBD DT NN MD RB VB VBN RB JJ .\nA wealthy businessman from southern Kyrgyzstan , Mr. Erkinbayev and his supporters were the catalyst behind mass popular protests which forced former President Askar Akayev from office on March 24 .\tDT JJ NN IN JJ NNP , NNP NNP CC PRP$ NNS VBD DT NN IN JJ JJ NNS WDT VBD JJ NNP NNP NNP IN NN IN NNP CD .\nBishkek mayor and former security chief Felix Kulov and interim President Kurmanbek Bakiyev are considered the front-runners in the July presidential elections .\tNNP NN CC JJ NN NN NNP NNP CC JJ NNP NNP NNP VBP VBN DT NNS IN DT NNP JJ NNS .\nThe death toll from five days of fighting in Somalia rose to more than 120 on Thursday , as the United Nations said weapons are flowing into the country despite an arms embargo .\tDT NN NN IN CD NNS IN VBG IN NNP VBD TO JJR IN CD IN NNP , IN DT NNP NNP VBD NNS VBP VBG IN DT NN IN DT NNS NN .\nIslamic militias and an alliance of warlords have been fighting for control of parts of Mogadishu , mainly in the northern Sii-Sii neighborhood since Sunday .\tJJ NNS CC DT NN IN NNS VBP VBN VBG IN NN IN NNS IN NNP , RB IN DT JJ NNP NN IN NNP .\nWitnesses say most of the casualties have been civilians caught in the crossfire .\tNNS VBP JJS IN DT NNS VBP VBN NNS VBN IN DT NN .\nMeanwhile , the United Nations says it is investigating claims that an unnamed country is funneling weapons into Somalia in violation of an international embargo .\tRB , DT NNP NNP VBZ PRP VBZ VBG NNS IN DT JJ NN VBZ VBG NNS IN NNP IN NN IN DT JJ NN .\nSomalia has suffered 15 years of sporadic violence since the ouster of former dictator Mohamed Siad Barre in 1991 .\tNNP VBZ VBN CD NNS IN JJ NN IN DT NN IN JJ NN NNP NNP NNP IN CD .\nA California man has filed a lawsuit against Sean ' Diddy ' Combs , claiming the rap mogul punched and pushed him and his girlfriend in a Hollywood nightclub .\tDT NNP NN VBZ VBN DT NN IN NNP `` NNP `` NNP , VBG DT NN NN VBD CC VBD PRP CC PRP$ NN IN DT NNP NN .\nGerard Rechnitzer claims he and his girlfriend encountered Combs in Hollywood 's Roosevelt Hotel on February 25 .\tNNP NNP VBZ PRP CC PRP$ NN VBD NNP IN NNP POS NNP NNP IN NNP CD .\nThe lawsuit states Combs was speaking to Rechnitzer 's girlfriend .\tDT NN NNS NNP VBD VBG TO NNP POS NN .\nAs Rechnitzer approached , Combs yelled at him and pushed him into a parked car .\tIN NNP VBD , NNP VBD IN PRP CC VBD PRP IN DT JJ NN .\nThe March 2 lawsuit asks for unspecified damages .\tDT NNP CD NN VBZ IN JJ NNS .\nAn attorney for Combs called the suit ' completely baseless . '\tDT NN IN NNP VBD DT NN `` RB JJ . ``\nSri Lanka 's international financial backers have met with the country 's president to try to salvage the 2002 ceasefire between the government and Tamil Tiger rebels .\tNNP NNP POS JJ JJ NNS VBP VBN IN DT NN POS NN TO VB TO VB DT CD NN IN DT NN CC NNP NNP NNS .\nEnvoys from the United States , European Union , Norway and Japan met with President Mahinda Rajapakse Monday in Colombo to express their concern over the escalating violence that has claimed hundreds of lives this year .\tNNS IN DT NNP NNPS , NNP NNP , NNP CC NNP VBD IN NNP NNP NNP NNP IN NNP TO VB PRP$ NN IN DT VBG NN WDT VBZ VBN NNS IN NNS DT NN .\nThe diplomats discussed the need for an immediate halt to the bloodshed .\tDT NNS VBD DT NN IN DT JJ NN TO DT NN .\nThey also discussed the humanitarian crisis in the northern Jaffna peninsula , which is cut off from the rest of the country following battles between the two sides .\tPRP RB VBD DT JJ NN IN DT JJ NNP NN , WDT VBZ VBN RP IN DT NN IN DT NN VBG NNS IN DT CD NNS .\nMeanwhile , the foreign ceasefire monitoring mission says it is temporarily retreating to Colombo because neither the government nor the rebels are allowing its monitors access to the battlefield in northern Jaffna peninsula .\tRB , DT JJ NN VBG NN VBZ PRP VBZ RB VBG TO NNP IN CC DT NN CC DT NNS VBP VBG PRP$ NNS NN TO DT NN IN JJ NNP NN .\nA new public opinion poll finds President Bush 's approval rating sinking to an all-time low .\tDT JJ JJ NN NN VBZ NNP NNP POS NN NN NN TO DT JJ NN .\nOnly 39 percent of those surveyed in the Washington Post-ABC News poll said they approve of the president 's overall job performance .\tRB CD NN IN DT VBN IN DT NNP NNP NNP NN VBD PRP VBP IN DT NN POS JJ NN NN .\nThat figure is down from 42 percent in the Post-ABC poll last month , and down from 52 percent the week of Mr. Bush 's second inauguration in January .\tDT NN VBZ RB IN CD NN IN DT NNP NN JJ NN , CC RB IN CD NN DT NN IN NNP NNP POS JJ NN IN NNP .\nThe poll of 600 Americans was taken Friday and Saturday , after former top White House aide Lewis Libby was indicted on criminal charges related to the probe into who leaked the identity of a secret CIA operative .\tDT NN IN CD NNS VBD VBN NNP CC NNP , IN JJ JJ NNP NNP NN NNP NNP VBD VBN IN JJ NNS VBN TO DT NN IN WP VBD DT NN IN DT JJ NNP NN .\nThe poll found that 55 percent of Americans believe the Libby case indicates broader ethical problems in the White House .\tDT NN VBD IN CD NN IN NNS VBP DT NNP NN VBZ JJR JJ NNS IN DT NNP NNP .\nForty-one percent said the case was an ' isolated incident . '\tCD NN VBD DT NN VBD DT `` JJ NN . ``\nThe survey has a four-point margin of error .\tDT NN VBZ DT JJ NN IN NN .\nPakistani security officials say some 150 militants stormed five checkpoints in northwest Pakistan Friday in a coordinated attack that left 11 soldiers and 24 militants dead .\tJJ NN NNS VBP DT CD NNS VBD CD NNS IN JJ NNP NNP IN DT JJ NN WDT VBD CD NNS CC CD NNS JJ .\nThe clashes took place overnight in the Mohmand tribal region near the Afghan border .\tDT NNS VBD NN RB IN DT NNP JJ NN IN DT JJ NN .\nA Taliban spokesman disputed the casualty figures , claiming the militants killed about 12 soldiers .\tDT NNP NN VBD DT NN NNS , VBG DT NNS VBD IN CD NNS .\nU.S. officials say the region has become a base for Taliban and al-Qaida militants responsible for deadly attacks against coalition forces in Afghanistan .\tNNP NNS VBP DT NN VBZ VBN DT NN IN NNP CC NNP NNS JJ IN JJ NNS IN NN NNS IN NNP .\nA recent review of the U.S. strategy in Afghanistan and Pakistan called for greater cooperation with Pakistan , to deny safe havens to terrorists who operate in the border regions .\tDT JJ NN IN DT NNP NN IN NNP CC NNP VBD IN JJR NN IN NNP , TO VB JJ NNS TO NNS WP VBP IN DT NN NNS .\nIn the southwestern city of Quetta Friday , a bomb planted on a bicycle exploded killing a police officer and wounding several others .\tIN DT JJ NN IN NNP NNP , DT NN VBN IN DT NN VBD VBG DT NN NN CC VBG JJ NNS .\nOfficials say the bomb was detonated by remote control as a police vehicle passed by .\tNNS VBP DT NN VBD VBN IN JJ NN IN DT NN NN VBN IN .\nIndependent Senator and former Democratic vice-presidential nominee Joseph Lieberman is endorsing Republican Senator John McCain 's presidential bid .\tNNP NNP CC JJ JJ JJ NN NNP NNP VBZ VBG NNP NNP NNP NNP POS JJ NN .\nLieberman said his support for the Arizona Senator is based on McCain 's military career and legislative experience and their common view of U.S. foreign policy .\tNNP VBD PRP$ NN IN DT NNP NNP VBZ VBN IN NNP POS JJ NN CC JJ NN CC PRP$ JJ NN IN NNP JJ NN .\nBoth men backed the U.S. invasion of Iraq in 2003 and have supported the war ever since .\tDT NNS VBD DT NNP NN IN NNP IN CD CC VBP VBN DT NN RB IN .\nLieberman was former Vice President Al Gore 's running mate in the 2000 presidential election .\tNNP VBD JJ NNP NNP NNP NNP POS VBG NN IN DT CD JJ NN .\nIn the years since , the Connecticut senator distanced himself from the Democratic Party over the war in Iraq and became an independent , frequently voting with Republicans on foreign policy and national security issues .\tIN DT NNS IN , DT NNP NN VBD PRP IN DT JJ NN IN DT NN IN NNP CC VBD DT JJ , RB VBG IN NNS IN JJ NN CC JJ NN NNS .\nThe U.S. presidential campaign primary season is entering its final stage in the coming weeks , when voters in the states of Iowa and New Hampshire vote in early January for the candidates who will represent the Democratic and Republican parties in the November 2008 election .\tDT NNP JJ NN JJ NN VBZ VBG PRP$ JJ NN IN DT JJ NNS , WRB NNS IN DT NNS IN NNP CC NNP NNP NN IN JJ NNP IN DT NNS WP MD VB DT JJ CC JJ NNS IN DT NNP CD NN .\nTropical depression Gamma is expected to dissipate Monday after battering the coasts of Honduras and Belize , killing at least 14 people .\tJJ NN NNP VBZ VBN TO VB NNP IN VBG DT NNS IN NNP CC NNP , VBG IN JJS CD NNS .\nIn the storm 's wake , U.S. military helicopters have joined Honduran aircraft in flying aid to survivors along the Caribbean coast who have been cut off by flooding and mudslides .\tIN DT NN POS NN , NNP JJ NNS VBP VBN JJ NN IN VBG NN TO NNS IN DT NNP NN WP VBP VBN VBN RP IN NN CC NNS .\nAt least 11 people in Honduras have died and 13 others are missing .\tIN JJS CD NNS IN NNP VBP VBN CC CD NNS VBP VBG .\nThe bad weather is also blamed for a plane crash that killed the pilot and two passengers in Belize .\tDT JJ NN VBZ RB VBN IN DT NN NN WDT VBD DT NN CC CD NNS IN NNP .\nThe plane was heading towards a resort lodge owned by U.S. filmmaker Francis Ford Coppola .\tDT NN VBD VBG IN DT NN NN VBN IN NNP NN NNP NNP NNP .\nThe U.S. National Hurricane Center says the center of Gamma is about 135 kilometers northeast of Limon , Honduras , carrying maximum sustained winds of 55 kilometers an hour .\tDT NNP NNP NNP NNP VBZ DT NN IN NNP VBZ IN CD NNS RB IN NNP , NNP , VBG NN VBD NNS IN CD NNS DT NN .\nGamma is the 24th named storm of this year 's record-breaking Atlantic hurricane season .\tNNP VBZ DT JJ VBN NN IN DT NN POS JJ NNP NN NN .\nMembers of the party of Liberian presidential candidate George Weah have threatened to boycott parliament to protest alleged fraud in last week 's presidential run-off .\tNNS IN DT NN IN JJ JJ NN NNP NNP VBP VBN TO VB NN TO VB JJ NN IN JJ NN POS JJ NN .\nThe lawmakers-elect from the Congress for Democratic Change issued a statement Monday vowing not to take their 18 legislative seats if Mr. Weah 's complaints of fraud are not addressed .\tDT NN IN DT NNP IN JJ NNP VBD DT NN NNP VBG RB TO VB PRP$ CD JJ NNS IN NNP NNP POS NNS IN NN VBP RB VBN .\nThey won their seats in Liberia 's first post-war general elections last month .\tPRP VBD PRP$ NNS IN NNP POS JJ JJ JJ NNS JJ NN .\nThe National Election Commission says it will hear Mr. Weah 's complaints starting on Tuesday .\tDT NNP NNP NNP VBZ PRP MD VB NNP NNP POS NNS VBG IN NNP .\nHundreds of Mr. Weah 's supporters marched peacefully through the capital , Monrovia , Monday .\tNNS IN NNP NNP POS NNS VBD RB IN DT NN , NNP , NNP .\nFormer Liberian Finance Minister Ellen Johnson-Sirleaf won about 60 percent of the vote , to 40 percent for Mr. Weah , a former soccer ( football ) star .\tJJ JJ NNP NNP NNP NNP VBD IN CD NN IN DT NN , TO CD NN IN NNP NNP , DT JJ NN LRB NN RRB NN .\nInternational observers say there is no evidence of widespread fraud .\tJJ NNS VBP EX VBZ DT NN IN JJ NN .\nAnd leaders from several African countries praised the run-off as peaceful , transparent , free and fair .\tCC NNS IN JJ JJ NNS VBD DT NN IN JJ , JJ , JJ CC JJ .\nAuthorities in Kenya have filed charges against 150 people arrested in an ongoing crackdown against a militia in the western Mount Elgon region .\tNNS IN NNP VBP VBN NNS IN CD NNS VBN IN DT JJ NN IN DT NN IN DT JJ NNP NNP NN .\nJudicial sources said Tuesday that the suspects appeared before a court in Sirisia on Sunday and were charged with promoting ' war-like activities . '\tNNP NNS VBD NNP IN DT NNS VBD IN DT NN IN NNP IN NNP CC VBD VBN IN VBG `` JJ NNS . ``\nMost of the suspects are said to be under 30 years of age and are accused of supporting the Sabaot Land Defense Force , a militia that has been fighting the government over land disputes .\tJJS IN DT NNS VBP VBN TO VB IN CD NNS IN NN CC VBP VBN IN VBG DT NNP NNP NNP NNP , DT NN WDT VBZ VBN VBG DT NN IN NN NNS .\nThe government blames the militia for the deaths of more than 500 people over the past two years .\tDT NN VBZ DT NN IN DT NNS IN JJR IN CD NNS IN DT JJ CD NNS .\nSecurity forces backed by helicopters began attacking targets in Mount Elgon last week .\tNNP NNS VBN IN NNS VBD VBG NNS IN NNP NNP JJ NN .\nAt least eight people have been killed in the fighting .\tIN JJS CD NNS VBP VBN VBN IN DT NN .\nLocal officials have criticized the operation as being too heavy-handed .\tJJ NNS VBP VBN DT NN IN VBG RB JJ .\nThe head of the International Atomic Energy Agency says Iran is insisting that some of its uranium enrichment centrifuges be exempt from a freeze of its nuclear program .\tDT NN IN DT NNP NNP NNP NNP VBZ NNP VBZ VBG IN DT IN PRP$ NN NN VBZ VB JJ IN DT NN IN PRP$ JJ NN .\nMohamed ElBaradei told reporters in Vienna Thursday , that he would report to the IAEA board that Iran has frozen most of its uranium enrichment activity , except for 20 centrifuges .\tNNP NNP VBD NNS IN NNP NNP , IN PRP MD VB TO DT NNP NN IN NNP VBZ VBN JJS IN PRP$ NN NN NN , IN IN CD NNS .\nIran 's new request is partial reversal of a recent agreement with the European Union to suspend all enrichment activity .\tNNP POS JJ NN VBZ JJ NN IN DT JJ NN IN DT NNP NNP TO VB DT NN NN .\nThe IAEA chief says said he hopes the dispute will soon be resolved .\tDT NNP NN VBZ VBD PRP VBZ DT NN MD RB VB VBN .\nThe IAEA board is meeting to decide whether to refer Iran to the U.N. Security Council for possible sanctions over its nuclear program .\tDT NNP NN VBZ VBG TO VB IN TO VB NNP TO DT NNP NNP NNP IN JJ NNS IN PRP$ JJ NN .\nThe United States says Iran is secretly developing nuclear weapons - a charge Iran denies .\tDT NNP NNP VBZ NNP VBZ RB VBG JJ NNS IN DT NN NNP VBZ .\nPalestinian officials say Israeli troops have killed at least seven Palestinians and wounded 20 other people in the Gaza Strip .\tJJ NNS VBP JJ NNS VBP VBN IN JJS CD NNS CC VBN CD JJ NNS IN DT NNP NNP .\nSecurity officials say the violence erupted early Monday in the town of Beit Hanoun , in northern Gaza .\tNN NNS VBP DT NN VBD JJ NNP IN DT NN IN NNP NNP , IN JJ NNP .\nWitnesses say the Israelis appeared to be looking for a member of the militant Popular Resistance Committees .\tNNS VBP DT NNS VBD TO VB VBG IN DT NN IN DT JJ NNP NNP NNS .\nThe Israeli army said troops opened fire on Palestinian militants in the area attempting to launch rockets at southern Israel .\tDT JJ NN VBD NNS VBD NN IN JJ NNS IN DT NN VBG TO VB NNS IN JJ NNP .\nIn other news , the leader of a hard-line Israeli party says he has decided to join the government of Israeli Prime Minister Ehud Olmert .\tIN JJ NN , DT NN IN DT JJ JJ NN VBZ PRP VBZ VBN TO VB DT NN IN JJ NNP NNP NNP NNP .\nAvigdor Lieberman , head of the Yisrael Beitenu party , said he agreed to join the goverment , giving it 78 seats in the 120-member parliament .\tNNP NNP , NN IN DT NNP NNP NN , VBD PRP VBD TO VB DT NN , VBG PRP CD NNS IN DT JJ NN .\nTajikistan and the United Nations are appealing for $ 5.3 million in international aid following deadly floods and mudslides that killed at least 40 people .\tNNP CC DT NNP NNPS VBP VBG IN $ CD CD IN JJ NN VBG JJ NNS CC NNS WDT VBD IN JJS CD NNS .\nThe U.N. Resident Coordinator in Tajikistan , Michael Jones , launched the appeal Wednesday to provide relief to the thousands affected by the May 7 flash floods in the town of Kulyab and surrounding districts .\tDT NNP NNP NNP IN NNP , NNP NNP , VBD DT NN NNP TO VB NN TO DT NNS VBN IN DT NNP CD NN NNS IN DT NN IN NNP CC VBG NNS .\nThe floods , and resulting mudslides , displaced 4,500 people and destroyed homes , schools and roads .\tDT NNS , CC VBG NNS , VBD CD NNS CC VBN NNS , NNS CC NNS .\nAt least 33 people remain missing .\tIN JJS CD NNS VBP JJ .\nJones said Tajikistan was counting on the international community 's help to support those displaced and the affected communities .\tNNP VBD NNP VBD VBG IN DT JJ NN POS NN TO VB DT JJ CC DT JJ NNS .\nThe U.N. appeal includes projects aimed at providing food and basic social services to those living in tents .\tDT NNP NN VBZ NNS VBN IN VBG NN CC JJ JJ NNS TO DT VBG IN NNS .\nThe plan also intends to restore drinking water and sanitation in Kulyab and surrounding areas .\tDT NN RB VBZ TO VB NN NN CC NN IN NNP CC VBG NNS .\nThe mountainous country is impacted by mudslides every year as snow begins to thaw in the spring .\tDT JJ NN VBZ VBN IN NNS DT NN IN NN VBZ TO VB IN DT NN .\nThe U.S. unemployment rate increased to a four-year high in July .\tDT NNP NN NN VBD TO DT JJ NN IN NNP .\nA Labor Department report issued Friday shows 5.7 percent of the U.S. workforce is unemployed , a slight increase from June .\tDT NNP NNP NN VBN NNP VBZ CD NN IN DT NNP NN VBZ JJ , DT JJ NN IN NNP .\nMeanwhile the number of jobs fell by 51,000 , marking the seventh straight month of losses .\tRB DT NN IN NNS VBD IN CD , VBG DT JJ JJ NN IN NNS .\nWhite House spokeswoman Dana Perino said the administration is ' displeased ' with the report .\tNNP NNP NN NNP NNP VBD DT NN VBZ `` JJ `` IN DT NN .\nBut she said the economy remains resilient .\tCC PRP VBD DT NN VBZ JJ .\nThe manufacturing and construction industries cut the most jobs .\tDT NN CC NN NNS VBD DT JJS NNS .\nThe two sectors have been hit hard by a housing slump and credit crisis .\tDT CD NNS VBP VBN VBN RB IN DT NN NN CC NN NN .\nAnalysts say job cuts , combined with high energy costs , could impact consumer spending , which drives about two-thirds of the total economy .\tNNS VBP NN NNS , VBN IN JJ NN NNS , MD VB NN NN , WDT VBZ IN NNS IN DT JJ NN .\nA roadside explosion in southern Afghanistan has ripped through a coalition convoy , killing one Romanian soldier and wounding another .\tDT NN NN IN JJ NNP VBZ VBN IN DT NN NN , VBG CD JJ NN CC VBG DT .\nIt was not immediately clear if the explosion was from a recently planted device , or the vehicle ran over ordinance from a past conflict .\tPRP VBD RB RB JJ IN DT NN VBD IN DT RB VBN NN , CC DT NN VBD IN NN IN DT JJ NN .\nEarlier reports indicated the blast late Sunday near the city of Kandahar killed an Afghan soldier .\tRBR NNS VBD DT NN JJ NNP IN DT NN IN NNP VBD DT JJ NN .\nBut the U.S. military later confirmed the explosion hit a vehicle with Romanian soldiers inside .\tCC DT NNP NN RB VBD DT NN VBD DT NN IN JJ NNS IN .\nIn a separate incident Sunday , in the capital , Kabul , a car bomb exploded on a road near a crowded residential area , causing material damage but no injuries .\tIN DT JJ NN NNP , IN DT NN , NNP , DT NN NN VBD IN DT NN IN DT JJ JJ NN , VBG NN NN CC DT NNS .\nInterior Ministry spokesman , Lutfullah Mashal , told reporters at the scene , the explosion was the work of the enemies of peace and stability .\tNNP NNP NN , NNP NNP , VBD NNS IN DT NN , DT NN VBD DT NN IN DT NNS IN NN CC NN .\nThe inhabitants have traditionally earned their livelihood by fishing and by servicing fishing fleets operating off the coast of Newfoundland .\tDT NNS VBP RB VBN PRP$ NN IN NN CC IN VBG NN NNS VBG IN DT NN IN NNP .\nThe economy has been declining , however , because of disputes with Canada over fishing quotas and a steady decline in the number of ships stopping at Saint Pierre .\tDT NN VBZ VBN VBG , RB , IN IN NNS IN NNP IN NN NNS CC DT JJ NN IN DT NN IN NNS VBG IN NNP NNP .\nIn 1992 , an arbitration panel awarded the islands an exclusive economic zone of 12,348 sq km to settle a longstanding territorial dispute with Canada , although it represents only 25 % of what France had sought .\tIN CD , DT NN NN VBD DT NNS DT JJ JJ NN IN CD NN NN TO VB DT JJ JJ NN IN NNP , IN PRP VBZ RB CD NN IN WP NNP VBD VBN .\nFrance heavily subsidizes the islands to the great betterment of living standards .\tNNP RB VBZ DT NNS TO DT JJ NN IN VBG NNS .\nThe government hopes an expansion of tourism will boost economic prospects .\tDT NN VBZ DT NN IN NN MD VB JJ NNS .\nFish farming , crab fishing , and agriculture are being developed to diversify the local economy .\tNNP NN , NN NN , CC NN VBP VBG VBN TO VB DT JJ NN .\nRecent test drilling for oil may pave the way for development of the energy sector .\tJJ NN NN IN NN MD VB DT NN IN NN IN DT NN NN .\nOne of the poorest countries in the world , Guinea-Bissau 's legal economy depends mainly on farming and fishing , but trafficking narcotics is probably the most lucrative trade .\tCD IN DT JJS NNS IN DT NN , NNP POS JJ NN VBZ RB IN NN CC NN , CC VBG NNS VBZ RB DT RBS JJ NN .\nCashew crops have increased remarkably in recent years .\tNNP NNS VBP VBN RB IN JJ NNS .\nGuinea-Bissau exports fish and seafood along with small amounts of peanuts , palm kernels , and timber .\tNNP NNS NN CC NN IN IN JJ NNS IN NNS , NN NNS , CC NN .\nRice is the major crop and staple food .\tNN VBZ DT JJ NN CC NN NN .\nHowever , intermittent fighting between Senegalese-backed government troops and a military junta destroyed much of the country 's infrastructure and caused widespread damage to the economy in 1998 ; the civil war led to a 28 % drop in GDP that year , with partial recovery in 1999 - 2002 .\tRB , JJ NN IN JJ NN NNS CC DT JJ NN VBD NN IN DT NN POS NN CC VBD JJ NN TO DT NN IN CD ; DT JJ NN VBD TO DT CD NN NN IN NN IN NN , IN JJ NN IN CD : CD .\nIn December 2003 , the World Bank , IMF , and UNDP were forced to step in to provide emergency budgetary support in the amount of $ 107 million for 2004 , representing over 80 % of the total national budget .\tIN NNP CD , DT NNP NNP , NNP , CC NNP VBD VBN TO VB IN TO VB NN JJ NN IN DT NN IN $ CD CD IN CD , VBG IN CD NN IN DT JJ JJ NN .\nThe combination of limited economic prospects , a weak and faction-ridden government , and favorable geography have made this West African country a way station for drugs bound for Europe .\tDT NN IN JJ JJ NNS , DT JJ CC JJ NN , CC JJ NN VBP VBN DT JJ JJ NN DT NN NN IN NNS VBN IN NNP .\nPresent day Benin was the site of Dahomey , a prominent West African kingdom that rose in the 15th century .\tJJ NN NNP VBD DT NN IN NNP , DT JJ JJ JJ NN WDT VBD IN DT JJ NN .\nThe territory became a French Colony in 1872 and achieved independence on 1 August 1960 , as the Republic of Benin .\tDT NN VBD DT JJ NN IN CD CC VBD NN IN CD NNP CD , IN DT NNP IN NNP .\nA succession of military governments ended in 1972 with the rise to power of Mathieu KEREKOU and the establishment of a government based on Marxist-Leninist principles .\tDT NN IN JJ NNS VBN IN CD IN DT NN TO NN IN NNP NNP CC DT NN IN DT NN VBN IN JJ NNS .\nA move to representative government began in 1989 .\tDT NN TO JJ NN VBD IN CD .\nTwo years later , free elections ushered in former Prime Minister Nicephore SOGLO as president , marking the first successful transfer of power in Africa from a dictatorship to a democracy .\tCD NNS RB , JJ NNS VBD IN JJ NNP NNP NNP NNP IN NN , VBG DT JJ JJ NN IN NN IN NNP IN DT NN TO DT NN .\nKEREKOU was returned to power by elections held in 1996 and 2001 , though some irregularities were alleged .\tNNP VBD VBN TO NN IN NNS VBN IN CD CC CD , IN DT NNS VBD VBN .\nKEREKOU stepped down at the end of his second term in 2006 and was succeeded by Thomas YAYI Boni , a political outsider and independent .\tNNP VBD RB IN DT NN IN PRP$ JJ NN IN CD CC VBD VBN IN NNP NNP NNP , DT JJ NN CC JJ .\nYAYI has attempted to stem corruption and has strongly promoted accelerating Benin 's economic growth .\tNNP VBZ VBN TO VB NN CC VBZ RB VBN VBG NNP POS JJ NN .\nHungary has made the transition from a centrally planned to a market economy , with a per capita income nearly two-thirds that of the EU-25 average .\tNNP VBZ VBN DT NN IN DT RB VBN TO DT NN NN , IN DT IN NN NN RB NNS IN IN DT JJ NN .\nThe private sector accounts for more than 80 % of GDP .\tDT JJ NN NNS IN JJR IN CD NN IN NN .\nForeign ownership of and investment in Hungarian firms are widespread , with cumulative foreign direct investment worth more than $ 70 billion .\tJJ NN IN CC NN IN JJ NNS VBP JJ , IN JJ JJ JJ NN NN JJR IN $ CD CD .\nThe government 's austerity measures , imposed since late 2006 , have reduced the budget deficit from over 9 % of GDP in 2006 to 3.2 % in 2010 , with a target of less than 3 % in 2011 .\tDT NN POS NN NNS , VBN IN JJ CD , VBP VBN DT NN NN IN IN CD NN IN NN IN CD TO CD NN IN CD , IN DT NN IN JJR IN CD NN IN CD .\nHungary 's impending inability to service its short-term debt - brought on by the global financial crisis in late 2008 - led Budapest to obtain an IMF/EU/World Bank-arranged financial assistance package worth over $ 25 billion .\tNNP POS JJ NN TO VB PRP$ JJ NN IN VBN RP IN DT JJ JJ NN IN JJ CD : VBD NNP TO VB DT NNP JJ JJ NN NN NN IN $ CD CD .\nThe global economic downturn , declining exports , and low domestic consumption and fixed asset accumulation , dampened by government austerity measures , resulted in an economic contraction of 6.3 % in 2009 .\tDT JJ JJ NN , VBG NNS , CC JJ JJ NN CC JJ NN NN , VBN IN NN NN NNS , VBD IN DT JJ NN IN CD NN IN CD .\nIn 2010 the new government implemented a number of changes including cutting business and personal income taxes , but imposed ' crisis taxes ' on financial institutions , energy and telecom companies , and retailers .\tIN CD DT JJ NN VBD DT NN IN NNS VBG VBG NN CC JJ NN NNS , CC VBD `` NN NNS `` IN JJ NNS , NN CC NN NNS , CC NNS .\nThe economy rebounded in 2010 with a big boost from exports , especially to Germany , and growth of more than 2.5 % is expected in 2011 .\tDT NN VBD IN CD IN DT JJ NN IN NNS , RB TO NNP , CC NN IN JJR IN CD NN VBZ VBN IN CD .\nUnemployment remained high , at more than 10 % in 2010 .\tNN VBD JJ , IN JJR IN CD NN IN CD .\nThe economy was formerly based on agriculture , mainly sheep farming , but today fishing contributes the bulk of economic activity .\tDT NN VBD RB VBN IN NN , RB JJ NN , CC NN NN VBZ DT NN IN JJ NN .\nIn 1987 , the government began selling fishing licenses to foreign trawlers operating within the Falkland Islands ' exclusive fishing zone .\tIN CD , DT NN VBD VBG NN NNS TO JJ NNS VBG IN DT NNP NNP POS JJ NN NN .\nThese license fees total more than $ 40 million per year , which help support the island 's health , education , and welfare system .\tDT NN NNS VBP JJR IN $ CD CD IN NN , WDT VBP VB DT NN POS NN , NN , CC NN NN .\nSquid accounts for 75 % of the fish taken .\tJJ NNS IN CD NN IN DT NN VBN .\nDairy farming supports domestic consumption ; crops furnish winter fodder .\tNNP NN VBZ JJ NN ; NNS VBP NN NN .\nForeign exchange earnings come from shipments of high-grade wool to the UK and the sale of postage stamps and coins .\tJJ NN NNS VBP IN NNS IN JJ NN TO DT NNP CC DT NN IN JJ NNS CC NNS .\nThe islands are now self-financing except for defense .\tDT NNS VBP RB JJ IN IN NN .\nThe British Geological Survey announced a 200-mile oil exploration zone around the islands in 1993 , and early seismic surveys suggest substantial reserves capable of producing 5,00,000 barrels per day ; to date , no exploitable site has been identified .\tDT JJ NNP NNP VBD DT JJ NN NN NN IN DT NNS IN CD , CC RB JJ NNS VBP JJ NNS JJ IN VBG CD NNS IN NN ; TO NN , DT JJ NN VBZ VBN VBN .\nAn agreement between Argentina and the UK in 1995 seeks to defuse licensing and sovereignty conflicts that would dampen foreign interest in exploiting potential oil reserves .\tDT NN IN NNP CC DT NNP IN CD VBZ TO VB NN CC NN NNS WDT MD VB JJ NN IN VBG JJ NN NNS .\nPolitical tensions between the UK and Argentina rose in early 2010 after a UK company began oil drilling activities in the waters around the Falkland Islands but abated somewhat when the drilling operation failed to discover commercially exploitable oil reserves .\tJJ NNS IN DT NNP CC NNP VBD IN JJ CD IN DT NNP NN VBD NN NN NNS IN DT NNS IN DT NNP NNP CC VBD RB WRB DT NN NN VBD TO VB RB JJ NN NNS .\nTourism , especially eco-tourism , is increasing rapidly , with about 30,000 visitors in 2001 .\tNNP , RB NN , VBZ VBG RB , IN IN CD NNS IN CD .\nAnother large source of income is interest paid on money the government has in the bank .\tDT JJ NN IN NN VBZ NN VBN IN NN DT NN VBZ IN DT NN .\nThe British military presence also provides a sizeable economic boost .\tDT JJ JJ NN RB VBZ DT JJ JJ NN .\nAN EAGLE , flying down from his perch on a lofty rock , seized upon a lamb and carried him aloft in his talons .\tDT NNP , VBG RP IN PRP$ NN IN DT JJ NN , VBD IN DT NN CC VBD PRP RB IN PRP$ NNS .\nA Jackdaw , who witnessed the capture of the lamb , was stirred with envy and determined to emulate the strength and flight of the Eagle .\tDT NNP , WP VBD DT NN IN DT NN , VBD VBN IN NN CC VBN TO VB DT NN CC NN IN DT NNP .\nHe flew around with a great whir of his wings and settled upon a large ram , with the intention of carrying him off , but his claws became entangled in the ram 's fleece and he was not able to release himself , although he fluttered with his feathers as much as he could .\tPRP VBD RP IN DT JJ NN IN PRP$ NNS CC VBD IN DT JJ NN , IN DT NN IN VBG PRP RP , CC PRP$ NNS VBD VBN IN DT NN POS NN CC PRP VBD RB JJ TO VB PRP , IN PRP VBD IN PRP$ NNS RB RB IN PRP MD .\nThe shepherd , seeing what had happened , ran up and caught him .\tDT NN , VBG WP VBD VBN , VBD RB CC VBD PRP .\nHe at once clipped the Jackdaw 's wings , and taking him home at night , gave him to his children .\tPRP IN RB VBD DT NNP POS NNS , CC VBG PRP NN IN NN , VBD PRP TO PRP$ NNS .\nOn their saying , ' Father , what kind of bird is it ? ' he replied , ' To my certain knowledge he is a Daw ; but he would like you to think an Eagle . '\tIN PRP$ NN , `` NNP , WP NN IN NN VBZ PRP . `` PRP VBD , `` TO PRP$ JJ NN PRP VBZ DT NNP ; CC PRP MD VB PRP TO VB DT NNP . ``\nA LION demanded the daughter of a woodcutter in marriage .\tDT NN VBD DT NN IN DT NN IN NN .\nThe Father , unwilling to grant , and yet afraid to refuse his request , hit upon this expedient to rid himself of his importunities .\tDT NN , JJ TO VB , CC RB JJ TO VB PRP$ NN , VBD IN DT NN TO VB PRP IN PRP$ NNS .\nHe expressed his willingness to accept the Lion as the suitor of his daughter on one condition : that he should allow him to extract his teeth , and cut off his claws , as his daughter was fearfully afraid of both .\tPRP VBD PRP$ NN TO VB DT NN IN DT NN IN PRP$ NN IN CD NN IN IN PRP MD VB PRP TO VB PRP$ NNS , CC VB RP PRP$ NNS , IN PRP$ NN VBD RB JJ IN DT .\nThe Lion cheerfully assented to the proposal .\tDT NN RB VBD TO DT NN .\nBut when the toothless , clawless Lion returned to repeat his request , the Woodman , no longer afraid , set upon him with his club , and drove him away into the forest .\tCC WRB DT NN , JJ NN VBD TO VB PRP$ NN , DT NN , RB RBR JJ , VBN IN PRP IN PRP$ NN , CC VBD PRP RB IN DT NN .\nIt happened that a Countryman was sowing some hemp seeds in a field where a Swallow and some other birds were hopping about picking up their food .\tPRP VBD IN DT NN VBD VBG DT NN NNS IN DT NN WRB DT NN CC DT JJ NNS VBD VBG IN VBG RP PRP$ NN .\n' Beware of that man , ' quoth the Swallow .\t`` NN IN DT NN , `` VBZ DT NNP .\n' Why , what is he doing ? ' said the others .\t`` WRB , WP VBZ PRP VBG . `` VBD DT NNS .\n' That is hemp seed he is sowing ; be careful to pick up every one of the seeds , or else you will repent it . '\t`` DT VBZ JJ NN PRP VBZ VBG ; VB JJ TO VB RP DT CD IN DT NNS , CC RB PRP MD VB PRP . ``\nThe birds paid no heed to the Swallow 's words , and by and by the hemp grew up and was made into cord , and of the cords nets were made , and many a bird that had despised the Swallow 's advice was caught in nets made out of that very hemp .\tDT NNS VBD DT NN TO DT NNP POS NNS , CC IN CC IN DT NN VBD RB CC VBD VBN IN NN , CC IN DT NNS NNS VBD VBN , CC JJ DT NN WDT VBD VBN DT NNP POS NN VBD VBN IN NNS VBN IN IN DT RB JJ .\n' What did I tell you ? ' said the Swallow .\t`` WP VBD PRP VB PRP . `` VBD DT NNP .\nDestroy the seed of evil , or it will grow up to your ruin .\tNNP DT NN IN NN , CC PRP MD VB RP TO PRP$ NN .\nI had someone ask for an aisle seat on the plane so that their hair would n't get messed up by being near the window .\tPRP VBD DT VB IN DT JJ NN IN DT NN RB IN PRP$ NN MD RB VB VBN RP IN VBG IN DT NN .\nA senior Iranian cleric says Iran 's suspension of its nuclear program is temporary .\tDT JJ JJ NN VBZ NNP POS NN IN PRP$ JJ NN VBZ JJ .\nFormer Iranian President Akbar Hashemi Rafsanjani told worshippers during prayers Friday , Iran could resume enriching uranium within six months .\tJJ JJ NNP NNP NNP NNP VBD NNS IN NNS NNP , NNP MD VB VBG NN IN CD NNS .\nMr. Rafsanjani , the head of the Expediency Council , Iran 's final arbiter on legislation , said Iran has the right to enrich uranium at low levels to fuel nuclear power stations .\tNNP NNP , DT NN IN DT NNP NNP , NNP POS JJ NN IN NN , VBD NNP VBZ DT NN TO VB NN IN JJ NNS TO VB JJ NN NNS .\nEarlier this week , the International Atomic Energy Agency spared Iran the fate of being referred to the United Nations Security Council for possible sanctions after Tehran agreed to suspend its nuclear program .\tRBR DT NN , DT NNP NNP NNP NNP VBD NNP DT NN IN VBG VBN TO DT NNP NNP NNP NNP IN JJ NNS IN NNP VBD TO VB PRP$ JJ NN .\nThe United States has accused Iran of secretly seeking to develop nuclear weapons .\tDT NNP NNPS VBZ VBN NNP IN RB VBG TO VB JJ NNS .\nAn explosion at the home of a Hezbollah official in a small Lebanese village has killed at least two people .\tDT NN IN DT NN IN DT NNP NN IN DT JJ JJ NN VBZ VBN IN JJS CD NNS .\nOfficials say the blast happened Monday evening in Tayr Filsi , a village near the coastal city of Tyre .\tNNS VBP DT NN VBD NNP NN IN NNP NNP , DT NN IN DT JJ NN IN NNP .\nAuthorities are investigating the cause of the explosion and have not said whether the Hezbollah official was among the casualties .\tNNS VBP VBG DT NN IN DT NN CC VBP RB VBN IN DT NNP NN VBD IN DT NNS .\nIn July , an explosion at a suspected Hezbollah arms depot in southern Lebanon near the Israeli border raised concerns about the group 's weapons caches .\tIN NNP , DT NN IN DT JJ NNP NNS NN IN JJ NNP IN DT JJ NN VBD NNS IN DT NN POS NNS NNS .\nThe militant Hezbollah movement fought a 34-day war with Israel in 2006 that killed about 1,200 people in Lebanon and 160 in Israel .\tDT JJ NNP NN VBD DT JJ NN IN NNP IN CD WDT VBD IN CD NNS IN NNP CC CD IN NNP .\nMedics treating cases of Marburg fever in Angola say a hospital at the center of the outbreak should be closed to all non-emergency patients to stop the disease from spreading .\tNNS VBG NNS IN NNP NN IN NNP VBP DT NN IN DT NN IN DT NN MD VB VBN TO DT JJ NNS TO VB DT NN IN VBG .\nDoctors Without Borders , a global relief organization , recommends suspending non-emergency services at the hospital in Angola 's northwestern Uige province , where victims of the fatal virus are being held in isolation .\tNNS IN NNS , DT JJ NN NN , VBZ VBG JJ NNS IN DT NN IN NNP POS JJ NNP NN , WRB NNS IN DT JJ NN VBP VBG VBN IN NN .\nThe organization 's emergency coordinator in Uige says this step is necessary to reduce infection risks .\tDT NN POS NN NN IN NNP VBZ DT NN VBZ JJ TO VB NN NNS .\nSo far , Marburg fever has killed at least 192 of the more than 200 people known to be infected .\tRB RB , NNP NN VBZ VBN IN JJS CD IN DT JJR IN CD NNS VBN TO VB VBN .\nThe Ebola-like hemorrhagic fever spreads through contact with bodily fluids , and can kill rapidly .\tDT JJ JJ NN NNS IN NN IN RB NNS , CC MD VB RB .\nThe World Health Organization has sent in teams to remove bodies and trace contacts with infected patients .\tDT NNP NNP NNP VBZ VBN IN NNS TO VB NNS CC NN NNS IN JJ NNS .\nA private funeral for the late United States Chief Justice William Rehnquist will be held Wednesday at Arlington National Cemetery , near Washington D.C. Memorial observances began Tuesday for the conservative chief justice in the Great Hall of the Supreme Court building in Washington .\tDT JJ NN IN DT JJ NNP NNPS NNP NNP NNP NNP MD VB VBN NNP IN NNP NNP NNP , IN NNP NNP NNP NNS VBD NNP IN DT JJ NN NN IN DT NNP NNP IN DT NNP NNP NN IN NNP .\nPresident Bush paid his respects to the late chief justice , pausing for a moment of silence beside his flag-draped coffin .\tNNP NNP VBD PRP$ NNS TO DT JJ NN NN , VBG IN DT NN IN NN IN PRP$ JJ NN .\nThe public memorial continues until noon today .\tDT JJ NN VBZ IN NN NN .\nMr. Rehnquist died of cancer Saturday at the age of 80 .\tNNP NNP VBD IN NN NNP IN DT NN IN CD .\nHe was first appointed to the nine-member court by President Nixon in 1972 .\tPRP VBD RB VBN TO DT JJ NN IN NNP NNP IN CD .\nPresident Reagan appointed him chief justice 14 years later , in 1986 .\tNNP NNP VBD PRP JJ NN CD NNS RB , IN CD .\nPresident Bush has nominated federal appeals court judge John Roberts to be the next chief justice .\tNNP NNP VBZ VBN JJ NNS NN NN NNP NNP TO VB DT JJ NN NN .\nSenate confirmation hearings for Mr. Roberts are scheduled to begin Monday .\tNNP NN NNS IN NNP NNP VBP VBN TO VB NNP .\nHurricane Katrina has battered the southern part of the U.S. state of Florida with high winds and heavy rain , leaving four people dead as it crossed the state to move out over the Gulf of Mexico .\tNNP NNP VBZ VBN DT JJ NN IN DT NNP NN IN NNP IN JJ NNS CC JJ NN , VBG CD NNS JJ IN PRP VBD DT NN TO VB RP IN DT NNP IN NNP .\nForecasters say Katrina is now likely to get stronger and perhaps make a second landfall in the Florida Panhandle early next week as a major hurricane .\tNNS VBP NNP VBZ RB JJ TO VB JJR CC RB VB DT JJ NN IN DT NNP NNP RB JJ NN IN DT JJ NN .\nThe 11th named storm of this year 's Atlantic hurricane season came ashore Thursday between Hallandale Beach and North Miami Beach , packing 130 kilometer-per-hour winds .\tDT JJ VBN NN IN DT NN POS NNP NN NN VBD RB NNP IN NNP NNP CC NNP NNP NNP , VBG CD JJ NNS .\nIt knocked down trees , flooded streets and left more than one million people without power .\tPRP VBD RP NNS , VBN NNS CC VBD JJR IN CD CD NNS IN NN .\nThe U.S. Coast Guard is searching for a family of five who went out boating Thursday morning and never reached their destination Cape Coral on Florida 's southwest coast .\tDT NNP NNP NNP VBZ VBG IN DT NN IN CD WP VBD RP VBG NNP NN CC RB VBD PRP$ NN NNP NNP IN NNP POS JJS NN .\nA group of retired U.S. military officers is expressing ' deep concern ' about President Bush 's nominee to lead the U.S. Justice Department .\tDT NN IN JJ NNP JJ NNS VBZ VBG `` JJ NN `` IN NNP NNP POS NN TO VB DT NNP NNP NNP .\nThe officers want Attorney General nominee Alberto Gonzales to explain his views on torture , and his role in crafting Bush administration policy on the treatment of terror suspects .\tDT NNS VBP NNP NNP NN NNP NNP TO VB PRP$ NNS IN NN , CC PRP$ NN IN VBG NNP NN NN IN DT NN IN NN NNS .\nAs the White House legal counsel , Mr. Gonzales wrote a January 2002 memo advising Mr. Bush that prisoner of war protections in the Geneva Convention were ' rendered obsolete ' by the U.S.-led war on terror .\tIN DT NNP NNP JJ NN , NNP NNP VBD DT NNP CD NN VBG NNP NNP IN NN IN NN NNS IN DT NNP NNP VBD `` VBD JJ `` IN DT JJ NN IN NN .\nHe later approved a separate Justice Department memo suggesting some legal defenses U.S. officials could use to defend themselves against prosecution for torture .\tPRP RB VBD DT JJ NNP NNP NN VBG DT JJ NNS NNP NNS MD VB TO VB PRP IN NN IN NN .\nThe group of officers includes retired Army General John Shalikashvili , who was chairman of the military 's Joint Chiefs of Staff .\tDT NN IN NNS VBZ JJ NN NNP NNP NNP , WP VBD NN IN DT NN POS NNP NNPS IN NNP .\nMr. Gonzales faces a Senate confirmation hearing on Thursday .\tNNP NNP VBZ DT NNP NN NN IN NNP .\nIsraeli Prime Minister Ehud Olmert says countries without diplomatic relations with Israel should not participate in the U.N. peacekeeping force for Lebanon .\tJJ NNP NNP NNP NNP VBZ NNS IN JJ NNS IN NNP MD RB VB IN DT NNP NN NN IN NNP .\nThose countries include Bangladesh , Indonesia , and Malaysia - three Muslim nations that have already offered to send troops .\tDT NNS VBP NNP , NNP , CC NNP : CD NNP NNS WDT VBP RB VBN TO VB NNS .\nMeanwhile , Mr. Olmert says Italy may be ready to take a significant role in the U.N. peacekeeping force .\tRB , NNP NNP VBZ NNP MD VB JJ TO VB DT JJ NN IN DT NNP NN NN .\nHe spoke with Italian Prime Minister Romano Prodi by telephone Sunday .\tPRP VBD IN JJ NNP NNP NNP NNP IN NN NNP .\nItaly has already approved plans to send as many as 3,000 troops to Lebanon .\tNNP VBZ RB VBN NNS TO VB RB JJ IN CD NNS TO NNP .\nBut it is unclear if it will lead the force .\tCC PRP VBZ JJ IN PRP MD VB DT NN .\nThe United Nations plans to deploy up to 15,000 soldiers to boost a peacekeeping force already in southern Lebanon .\tDT NNP NNPS VBZ TO VB RP TO CD NNS TO VB DT NN NN RB IN JJ NNP .\nLebanon has also started deploying the first of 15,000 troops it plans to send to the area .\tNNP VBZ RB VBN VBG DT NN IN CD NNS PRP VBZ TO VB TO DT NN .\nIraq 's neighbors have called on all Iraqis to vote in the January 30 polls , saying they must determine their future through democratic means .\tNNP POS NNS VBP VBN IN DT NNS TO VB IN DT NNP CD NNS , VBG PRP MD VB PRP$ NN IN JJ NNS .\nThe joint statement was issued at the end of a day-long meeting Thursday in the Jordanian capital Amman .\tDT JJ NN VBD VBN IN DT NN IN DT JJ NN NNP IN DT JJ NN NNP .\nIt tacitly encouraged Iraq 's minority Sunni Muslims to vote , saying ' all segments ' of the Iraqi people must go to the polls .\tPRP RB VBD NNP POS NN NNP NNPS TO VB , VBG `` DT NNS `` IN DT JJ NNS MD VB TO DT NNS .\nSome Sunni groups have urged a boycott in the face of escalating violence .\tDT NNP NNS VBP VBN DT NN IN DT NN IN VBG NN .\nIraq 's neighbors also reaffirmed their respect for Iraq 's sovereignty and territorial integrity , and pledged not to interfere in Iraq 's internal affairs .\tNNP POS NNS RB VBD PRP$ NN IN NNP POS NN CC JJ NN , CC VBD RB TO VB IN NNP POS JJ NNS .\nWhen the participants convened earlier , Jordan 's foreign minister said the election is a ' golden opportunity ' for Iraqis to get their country on the right track .\tWRB DT NNS VBD RBR , NNP POS JJ NN VBD DT NN VBZ DT `` JJ NN `` IN NNS TO VB PRP$ NN IN DT JJ NN .\nPakistan 's ruling parties are deliberating the future of the coalition as a deadline looms for the reinstatement of deposed judges .\tNNP POS NN NNS VBP VBG DT NN IN DT NN IN DT NN VBZ IN DT NN IN VBN NNS .\nAides close to the Pakistan Muslim League ( N ) say party leaders will meet Monday to decide whether to stay in the coalition with the Pakistan People 's Party .\tNNS RB TO DT NNP NNP NNP LRB NNP RRB VBP NN NNS MD VB NNP TO VB IN TO VB IN DT NN IN DT NNP NNP POS NNP .\nFormer Prime Minister Nawaz Sharif , the head of the Pakistan Muslim League ( N ) , has indicated his party could join the opposition if the PPP does not agree by Monday to restore judges fired by former President Pervez Musharraf .\tJJ JJ NN NNP NNP , DT NN IN DT NNP NNP NNP LRB NNP RRB , VBZ VBN PRP$ NN MD VB DT NN IN DT NNP VBZ RB VB IN NNP TO VB NNS VBN IN JJ NNP NNP NNP .\nAnalysts say PPP leader Asif Ali Zardari is reluctant to reinstate the judges because of concerns they could reopen old corruption cases against him .\tNNS VBP NNP NN NNP NNP NNP VBZ JJ TO VB DT NNS IN IN NNS PRP MD VB JJ NN NNS IN PRP .\nZardari announced plans Saturday to run for president , after Mr. Musharraf stepped down to avoid impeachment charges this past week .\tNNP VBD NNS NNP TO VB IN NN , IN NNP NNP VBD RB TO VB NN NNS DT JJ NN .\nA smaller coalition partner , the Awami National Party , announced its support for Zardari today .\tDT JJR NN NN , DT NNP NNP NNP , VBD PRP$ NN IN NNP NN .\nFinal results from Sunday 's Ukrainian parliamentary elections show the pro-Russian party of former Prime Minister Viktor Yanukovych won the most votes followed by two reformist groups .\tJJ NNS IN NNP POS JJ JJ NNS VBP DT JJ NN IN JJ NNP NNP NNP NNP VBD DT JJS NNS VBN IN CD NN NNS .\nThe central election committee announced the results Thursday showing Mr. Yanukovych 's Party of Regions with more than 32 percent of the vote .\tDT JJ NN NN VBD DT NNS NNP VBG NNP NNP POS NN IN NNS IN JJR IN CD NN IN DT NN .\nThe liberal bloc of former Prime Minister Yulia Timoshenko won more than 22 percent , while supporters of President Viktor Yushchenko came in third with just under 14 percent .\tDT JJ NN IN JJ NNP NNP NNP NNP VBD JJR IN CD NN , IN NNS IN NNP NNP NNP VBD IN JJ IN RB IN CD NN .\nOnly two other parties , the Socialists and Communists , managed to clear the three percent barrier to gain parliamentary representation .\tRB CD JJ NNS , DT NNPS CC NNPS , VBD TO VB DT CD NN NN TO VB JJ NN .\nWednesday , Ms. Timoshenko urged Yushchenko allies to band together to keep the opposition from returning to power .\tNNP , NNP NNP VBD NNP NNS TO VB RB TO VB DT NN IN VBG TO NN .\nThe former prime minister , one of the leaders of the 2004 Orange Revolution that brought Mr. Yushchenko to power , called Sunday 's vote Ukraine 's first honest election in 15 years of independence .\tDT JJ JJ NN , CD IN DT NNS IN DT CD NNP NNP WDT VBD NNP NNP TO NN , VBD NNP POS NN NNP POS JJ JJ NN IN CD NNS IN NN .\nThe head of U.S. homeland security , Michael Chertoff , says officials remain vigilant for terrorist attacks after a plot to blow up airliners was uncovered last week .\tDT NN IN NNP NN NN , NNP NNP , VBZ NNS VBP NN IN JJ NNS IN DT NN TO VB RP NNS VBD VBN JJ NN .\nChertoff told Fox News Sunday U.S. officials are concerned that some people involved in the alleged plot may still be at large .\tNNP VBD NNP NNP NNP NNP NNS VBP VBN IN DT NNS VBN IN DT JJ NN MD RB VB IN JJ .\nHe says there also is concern that other groups may try to carry out attacks because they think U.S. officials are distracted by the situation .\tPRP VBZ EX RB VBZ NN IN JJ NNS MD VB TO VB RP NNS IN PRP VBP NNP NNS VBP VBN IN DT NN .\nChertoff added there is no evidence that planning or operational activities took place in the United States .\tNNP VBD EX VBZ DT NN IN NN CC JJ NNS VBD NN IN DT NNP NNPS .\nBritish authorities detained 23 people last week .\tJJ NNS VBD CD NNS JJ NN .\nU.S. officials raised the security alert level on flights from Britain to the United States after the plot was uncovered .\tNNP NNS VBD DT NN NN NN IN NNS IN NNP TO DT NNP NNPS IN DT NN VBD VBN .\nChertoff says officials planned to announce new security measures for flights today .\tNNP VBZ NNS VBD TO VB JJ NN NNS IN NNS NN .\nThe European Union has banned the import of live birds and feathers from Turkey because of the threat of bird flu .\tDT NNP NNP VBZ VBN DT NN IN JJ NNS CC NNS IN NNP IN IN DT NN IN NN NN .\nEU officials say the ban is needed after tests confirmed the presence of an avian virus in Turkey , where thousands of birds are being killed in an effort to prevent its spread .\tNNP NNS VBP DT NN VBZ VBN IN NNS VBD DT NN IN DT JJ NN IN NNP , WRB NNS IN NNS VBP VBG VBN IN DT NN TO VB PRP$ NN .\nThe officials say they still have not determined which strain of bird flu it is .\tDT NNS VBP PRP RB VBP RB VBN WDT NN IN NN NN PRP VBZ .\nBut Turkish officials say the outbreak is contained in a small area of the western province of Balikesir .\tCC JJ NNS VBP DT NN VBZ VBN IN DT JJ NN IN DT JJ NN IN NNP .\nThe European Union is also monitoring the situation in Romania , where tests are underway and more than 1,000 birds have been killed after a suspected outbreak of bird flu .\tDT NNP NNP VBZ RB VBG DT NN IN NNP , WRB NNS VBP JJ CC JJR IN CD NNS VBP VBN VBN IN DT JJ NN IN NN NN .\nBird flu has killed more than 60 people in Asia since 2003 .\tNN NN VBZ VBN JJR IN CD NNS IN NNP IN CD .\nA longtime donor for U.S. Democratic presidential contender Barack Obama went on trial Monday , accused of money laundering and extorting bribes .\tDT JJ NN IN NNP JJ JJ NN NNP NNP VBD IN NN NNP , VBN IN NN NN CC VBG NNS .\nProsecutors charge that Antoin ' Tony ' Rezko tried to extort millions of dollars in kickbacks from investment houses that wanted to do business with Illinois state boards .\tNNS VBP IN NNP `` NNP `` NNP VBD TO VB NNS IN NNS IN NNS IN NN NNS WDT VBD TO VB NN IN NNP NN NNS .\nJury selection started Monday .\tNN NN VBD NNP .\nAs Rezko sat in a Chicago courtroom , Illinois Senator Obama was campaigning in Texas and answering questions by reporters about his relationship with Rezko .\tIN NNP VBD IN DT NNP NN , NNP NNP NNP VBD VBG IN NNP CC VBG NNS IN NNS IN PRP$ NN IN NNP .\nObama said Rezko was a friend and supporter for many years , but that the charges facing him are not related to the senator .\tNNP VBD NNP VBD DT NN CC NN IN JJ NNS , CC IN DT NNS VBG PRP VBP RB VBN TO DT NN .\nObama allegedly received $ 10,000 from a Rezko associate , which the senator 's campaign team later gave to charity .\tNNP RB VBD $ CD IN DT NNP NN , WDT DT NN POS NN NN RB VBD TO NN .\nU.S. Secretary of State Condoleezza Rice has rejected the idea of holding talks with Iran and Syria about reducing violence in Iraq .\tNNP NNP IN NNP NNP NNP VBZ VBN DT NN IN VBG NNS IN NNP CC NNP IN VBG NN IN NNP .\nRice told the Washington Post newspaper she opposes the bipartisan Iraq Study Group 's recommendation to engage the two countries .\tNNP VBD DT NNP NNP NN PRP VBZ DT JJ NNP NNP NNP POS NN TO VB DT CD NNS .\nShe said she will not allow Syria to interfere in Lebanon or let Iran obtain a nuclear weapon as a price for their help in bringing peace to Iraq .\tPRP VBD PRP MD RB VB NNP TO VB IN NNP CC VB NNP VB DT JJ NN IN DT NN IN PRP$ NN IN VBG NN TO NNP .\nThe secretary said that if the two countries had an interest in stabilizing Iraq they would do it anyway .\tDT NN VBD IN IN DT CD NNS VBD DT NN IN VBG NNP PRP MD VB PRP RB .\nPresident Bush is to announce his decision on a new strategy for Iraq in early January .\tNNP NNP VBZ TO VB PRP$ NN IN DT JJ NN IN NNP IN JJ NNP .\nSyrian President Bashar al-Assad says he favors talks with the United States .\tJJ NNP NNP NNP VBZ PRP VBZ NNS IN DT NNP NNPS .\nHe told an Italian newspaper , La Repubblica , that Washington should hold talks with his country and Iran on stabilizing the Middle East .\tPRP VBD DT JJ NN , NNP NNP , IN NNP MD VB NNS IN PRP$ NN CC NNP IN VBG DT NNP NNP .\nAt least one person was killed in the Somali capital of Mogadishu Monday when unidentified attackers threw grenades at Ethiopian troops searching for weapons and insurgents .\tIN JJS CD NN VBD VBN IN DT JJ NN IN NNP NNP WRB JJ NNS VBD NNS IN JJ NNS VBG IN NNS CC NNS .\nSeveral other explosions were also heard in the city .\tJJ JJ NNS VBD RB VBN IN DT NN .\nGovernment and Ethiopian soldiers began the house-to-house search on Sunday in an effort to reduce attacks by Islamist insurgents .\tNN CC JJ NNS VBD DT NN NN IN NNP IN DT NN TO VB NNS IN NNP NNS .\nDozens of people are reported to have been detained .\tNNS IN NNS VBP VBN TO VB VBN VBN .\nEarlier Monday , soldiers searched the Horn-Afrik radio station in the middle of a news broadcast , but they did not interrupt any of the programs .\tRBR NNP , NNS VBD DT NNP NN NN IN DT NN IN DT NN NN , CC PRP VBD RB VB DT IN DT NNS .\nLast year the Islamic Courts Union took control of Mogadishu until troops supporting an interim government backed by Ethiopian forces kicked them out .\tJJ NN DT NNP NNP NNP VBD NN IN NNP IN NNS VBG DT JJ NN VBN IN JJ NNS VBD PRP RP .\nThe chaos in Somalia has been going on for 16 years .\tDT NN IN NNP VBZ VBN VBG IN IN CD NNS .\nThe violence started in 1991 when warlords overthrew dictator Mohammed Siad Barre .\tDT NN VBD IN CD WRB NNS VBP NN NNP NNP NNP .\nThe United Nations helped form a government in 2004 , but it has not been able to restore peace .\tDT NNP NNPS VBD VB DT NN IN CD , CC PRP VBZ RB VBN JJ TO VB NN .\nPresident Bush addressed the nation Tuesday evening in a major speech outlining his military and political strategy for winning the conflict in Iraq .\tNNP NNP VBD DT NN NNP NN IN DT JJ NN VBG PRP$ JJ CC JJ NN IN VBG DT NN IN NNP .\nHis speech marks the one-year anniversary of U.S. transfer of sovereignty to Iraq .\tPRP$ NN VBZ DT JJ NN IN NNP NN IN NN TO NNP .\nIt comes as a new poll Washington Post-ABC News released shows a majority of Americans ( 56 percent ) disapprove of Mr. Bush 's handling of the war .\tPRP VBZ IN DT JJ NN NNP NNP NNP VBN VBZ DT NN IN NNS LRB CD NN RRB VB IN NNP NNP POS NN IN DT NN .\nA clear majority , however , say they are willing to see U.S. forces remain in Iraq for an extended time until the country is stabilized .\tDT JJ NN , RB , VBP PRP VBP JJ TO VB NNP NNS VBP IN NNP IN DT JJ NN IN DT NN VBZ VBN .\nBefore his speech at a large military base in North Carolina , Mr. Bush is set to meet privately with some of the family members of the more than 1,700 U.S. service members who have died since the U.S.-led invasion in March 2003 .\tIN PRP$ NN IN DT JJ JJ NN IN NNP NNP , NNP NNP VBZ VBN TO VB RB IN DT IN DT NN NNS IN DT JJR IN CD NNP NN NNS WP VBP VBN IN DT JJ NN IN NNP CD .\nThe chariot of one of Egypt 's most famous ancient pharaohs is heading to New York City this week to join the Discovery Times Square Exposition exhibit of the boy ruler .\tDT NN IN CD IN NNP POS JJS JJ JJ NNS VBZ VBG TO NNP NNP NNP DT NN TO VB DT NNP NNP NNP NNP NN IN DT NN NN .\nEgyptian antiquities official , Zahi Hawass said Monday the trip will be the first time the chariot of King Tutankhamun has traveled outside of Egypt .\tJJ NNS NN , NNP NNP VBD NNP DT NN MD VB DT JJ NN DT NN IN NNP NNP VBZ VBN IN IN NNP .\nKing Tut 's chariot was found in his tomb when Howard Carter discovered it in 1922 .\tNNP NNP POS NN VBD VBN IN PRP$ NN WRB NNP NNP VBD PRP IN CD .\nOfficials say the chariot 's extremely worn wheels could indicate it was used for hunting .\tNNS VBP DT NN POS RB JJ NNS MD VB PRP VBD VBN IN NN .\nAn antiquities official suggests that King Tut may have fallen off this chariot during a hunting trip , in an accident that could ultimately have led to his early death .\tDT NNS NN VBZ IN NNP NNP MD VB VBN RP DT NN IN DT NN NN , IN DT NN WDT MD RB VB VBN TO PRP$ JJ NN .\nThe chariot was originally slated to join the exhibit in April but was delayed by travel complications .\tDT NN VBD RB VBN TO VB DT NN IN NNP CC VBD VBN IN NN NNS .\nPolice in Argentina have arrested at least 87 people after a mob of angry commuters rioted at a train station on the outskirts of Buenos Aires .\tNNS IN NNP VBP VBN IN JJS CD NNS IN DT NN IN JJ NNS VBD IN DT NN NN IN DT NNS IN NNP NNPS .\nCommuters were angered Tuesday morning when service was interrupted because of technical problems .\tNNS VBD VBN NNP NN WRB NN VBD VBN IN IN JJ NNS .\nDuring some five hours of violence , the rioters set fire to at least 15 rail cars and parts of the train station .\tIN DT CD NNS IN NN , DT NNS VBD NN TO IN JJS CD NN NNS CC NNS IN DT NN NN .\nThey also overturned at least one police car .\tPRP RB VBD IN JJS CD NN NN .\nRiot police fired rubber bullets to break up the crowds .\tNNP NN VBD NN NNS TO VB RP DT NNS .\nAt least 13 people , including policemen , were injured .\tIN JJS CD NNS , VBG NNS , VBD VBN .\nThe violence comes just days before the start of the 34-nation Summit of the Americas , to take place at Mar del Plata , some 370 kilometers south of Buenos Aires .\tDT NN VBZ RB NNS IN DT NN IN DT JJ NN IN DT NNPS , TO VB NN IN NNP NNP NNP , DT CD NNS RB IN NNP NNPS .\nThe head of the Arab League says Syria will ' soon ' take steps toward withdrawing its troops from Lebanon .\tDT NN IN DT NNP NNP VBZ NNP MD `` RB `` VB NNS IN VBG PRP$ NNS IN NNP .\nArab League chief Amr Mussa made his statement Monday after meeting with Syrian President Bashar al-Assad in Damascus .\tNNP NNP NN NNP NNP VBD PRP$ NN NNP IN VBG IN JJ NNP NNP NNP IN NNP .\nMr. Mussa said the Syrian leader stressed ' more than once ' his intention to implement the 1989 Taif agreement and withdraw the 14,000 troops .\tNNP NNP VBD DT JJ NN VBD `` JJR IN RB `` PRP$ NN TO VB DT CD NNP NN CC VB DT CD NNS .\nThe Taif agreement , which ended Lebanon 's civil war , committed Syria to move its troops to Lebanon 's Bekaa Valley ahead of later talks on a complete pullout .\tDT NNP NN , WDT VBD NNP POS JJ NN , VBN NNP TO VB PRP$ NNS TO NNP POS NNP NNP RB IN JJ NNS IN DT JJ NN .\nMr. Mussa spoke as thousands of protesters rallied in Beirut to demand the troops ' departure and the resignation of Lebanon 's pro-Syrian government .\tNNP NNP VBD IN NNS IN NNS VBD IN NNP TO VB DT NNS POS NN CC DT NN IN NNP POS JJ NN .\nThe demonstration came a week after the car bomb attack that killed former Lebanese Prime Minister Rafik Hariri and at least 14 others .\tDT NN VBD DT NN IN DT NN NN NN WDT VBD JJ JJ NNP NNP NNP NNP CC IN JJS CD NNS .\nLebanon 's opposition politicians blame Syria for the killing .\tNNP POS NN NNS VBP NNP IN DT NN .\nSyria insists it was not involved .\tNNP VBZ PRP VBD RB VBN .\nThe Beijing skyline has undergone massive transformation in preparation for the Olympics .\tDT NNP NN VBZ VBN JJ NN IN NN IN DT NNS .\nThe people who were evicted from their homes to make way for some of the new development are not happy , though , and were among the first to publicly protest this week , even before the games began .\tDT NNS WP VBD VBN IN PRP$ NNS TO VB NN IN DT IN DT JJ NN VBP RB JJ , RB , CC VBD IN DT JJ TO RB VB DT NN , RB IN DT NNS VBD .\nStephanie Ho reports from Beijing .\tNNP NNP VBZ IN NNP .\nChinese authorities say they have punished 31 officials and fired 12 others because of their poor handling of relief supplies and response to the country 's massive earthquake last month .\tJJ NNS VBP PRP VBP VBN CD NNS CC VBD CD NNS IN IN PRP$ JJ NN IN NN NNS CC NN TO DT NN POS JJ NN JJ NN .\nChina 's top anti-corruption official , Ma Wen , told reporters Monday that most of the demerits and firings were a response to complaints about misuse of tents and improper distribution of food and other goods .\tNNP POS JJ NN NN , NNP NNP , VBD NNS NNP IN JJS IN DT NNS CC NNS VBD DT NN TO NNS IN NN IN NNS CC JJ NN IN NN CC JJ NNS .\nChina 's May 12 quake killed nearly 70,000 people and left millions homeless .\tNNP POS NNP CD NN VBD RB CD NNS CC VBD NNS JJ .\nThe government has previously warned that it would come down hard on those who misused aid funds or relief supplies .\tDT NN VBZ RB VBN IN PRP MD VB RP RB IN DT WP VBD NN NNS CC NN NNS .\nCorruption is rampant across China , and there is concern about the use and destination of donations .\tNN VBZ JJ IN NNP , CC EX VBZ NN IN DT NN CC NN IN NNS .\nDuring Monday 's briefing for correspondents in Beijing , a top finance official reminded government departments to cut spending by five percent this year to help with the quake relief effort .\tIN NNP POS NN IN NNS IN NNP , DT JJ NN NN VBD NN NNS TO VB NN IN CD NN DT NN TO VB IN DT NN NN NN .\nRights group Amnesty International has accused China and Russia of breaching a United Nations arms embargo by letting weapons into Sudan that were then used in the Darfur region .\tNNP NN NNP NNP VBZ VBN NNP CC NNP IN VBG DT NNP NNP NNS NN IN VBG NNS IN NNP WDT VBD RB VBN IN DT NNP NN .\nAn Amnesty report published Tuesday expresses dismay that two permanent members of the U.N. Security Council were allowing weapons to flow into Sudan .\tDT JJ NN VBN NNP VBZ NN IN CD JJ NNS IN DT NNP NNP NNP VBD VBG NNS TO VB IN NNP .\nRussia and China have dismissed the allegation .\tNNP CC NNP VBP VBN DT NN .\nAmnesty International urged the U.N. to strengthen the existing arms embargo on Darfur .\tNNP NNP VBD DT NNP TO VB DT VBG NNS NN IN NNP .\nThe Amnesty report also accuses the Sudanese air force of operating airplanes and helicopters painted white to resemble U.N. aircraft .\tDT NNP NN RB VBZ DT JJ NN NN IN VBG NNS CC NNS VBD JJ TO VB NNP NN .\nA U.N. report that was leaked to the media last month found that Sudan was using disguised airplanes to carry out bombing raids in Darfur .\tDT NNP NN WDT VBD VBN TO DT NNS JJ NN VBD IN NNP VBD VBG JJ NNS TO VB RP VBG NNS IN NNP .\nSudan rejected the charge .\tNNP VBD DT NN .\nMore than 2,00,000 people have been killed in Darfur since rebels began an uprising against Sudan 's central government in early 2003 .\tJJR IN CD NNS VBP VBN VBN IN NNP IN NNS VBD DT NN IN NNP POS JJ NN IN JJ CD .\nFour-time champion Argentina has defeated Colombia , 02-Jan , while Nigeria blanked Ukraine , 1-0 , to reach the quarterfinals of the World Youth football ( soccer ) championships in the Netherlands .\tJJ NN NNP VBZ VBN NNP , CD , IN NNP VBD NNP , CD , TO VB DT NNS IN DT NNP NNP NN LRB NN RRB NNS IN DT NNP .\nIn Emmen , Julio Barroso 's goal in injury time gave the under-age-20 Argentines the win after his team came back from a 1-0 deficit .\tIN NNP , NNP NNP POS NN IN NN NN VBD DT JJ NNS DT NN IN PRP$ NN VBD RB IN DT CD NN .\nColombia 's Harrison Otalvaro had opened the scoring in the 52nd minute .\tNNP POS NNP NNP VBD VBN DT VBG IN DT JJ NN .\nArgentina 's Lionel Messi tied the match six minutes later .\tNNP POS NNP NNP VBD DT NN CD NNS RB .\nArgentina takes on Spain , which scored a 3-0 win over Turkey .\tNNP VBZ IN NNP , WDT VBD DT CD NN IN NNP .\nMeanwhile in Doetinchem , Nigeria defeated Ukraine , 1-0 , on Taye Taiwo 's 80th-minute goal .\tRB IN NNP , NNP VBD NNP , CD , IN NNP NNP POS JJ NN .\nIn the final eight , Nigeria faces the host country , which beat Chile , 3-0 .\tIN DT JJ CD , NNP VBZ DT NN NN , WDT VBD NNP , CD .\nThe other quarterfinals have Germany playing Brazil and Morocco taking on Italy .\tDT JJ NNS VBP NNP VBG NNP CC NNP VBG IN NNP .\nA top Russian prosecutor says he will not open a criminal investigation against security forces involved in last year 's deadly hostage crisis at a school in the southern city of Beslan .\tDT JJ JJ NN VBZ PRP MD RB VB DT JJ NN IN NN NNS VBN IN JJ NN POS JJ NN NN IN DT NN IN DT JJ NN IN NNP .\nDeputy Prosecutor General Vladimir Kolesnikov Thursday rejected arguments made by relatives of the victims .\tNNP NNP NNP NNP NNP NNP VBD NNS VBN IN NNS IN DT NNS .\nRelatives blamed security forces for using flame-throwers and starting a fire that caused the roof to collapse as they moved on the school , seized by Chechen militants .\tNNS VBD NN NNS IN VBG NNS CC VBG DT NN WDT VBD DT NN TO VB IN PRP VBD IN DT NN , VBN IN JJ NNS .\nThey said the rescue attempt was chaotic and caused many of the 331 deaths , most of them children .\tPRP VBD DT NN NN VBD JJ CC VBD NN IN DT CD NNS , JJS IN PRP NNS .\nChildren and teachers were held for three days as hostage takers demanded Russian forces leave Chechnya .\tNNS CC NNS VBD VBN IN CD NNS IN NN NNS VBD JJ NNS VBP NNP .\nAustralia and Indonesia have agreed to negotiate a new security pact to replace one that was scrapped in 1999 .\tNNP CC NNP VBP VBN TO VB DT JJ NN NN TO VB CD WDT VBD VBN IN CD .\nThe proposed treaty will cover a wide area including defense , police cooperation , counter-terrorism , and the territorial integrity of the two countries .\tDT VBN NN MD VB DT JJ NN VBG NN , NN NN , NN , CC DT JJ NN IN DT CD NNS .\nForeign ministers Hassan Wirajuda of Indonesia and Alexander Downer of Australia announced the proposal Friday at the end of a bilateral ministerial forum in Canberra .\tJJ NNS NNP NNP IN NNP CC NNP NNP IN NNP VBD DT NN NNP IN DT NN IN DT JJ JJ NN IN NNP .\nMr. Downer says the treaty could be concluded within months .\tNNP NNP VBZ DT NN MD VB VBN IN NNS .\nThe two countries forged a treaty in 1995 , but Indonesia abandoned it in 1999 in retaliation for Australia leading a U.N. peacekeeping force into what was then the Indonesian province of East Timor following violence surrounding its vote for independence .\tDT CD NNS VBD DT NN IN CD , CC NNP VBD PRP IN CD IN NN IN NNP VBG DT NNP NN NN IN WP VBD RB DT JJ NN IN NNP NNP VBG NN VBG PRP$ NN IN NN .\nA former bodyguard for Osama bin Laden says he is boycotting legal proceedings against him at the Guantanamo Bay naval base in Cuba .\tDT JJ NN IN NNP NNP NNP VBZ PRP VBZ VBG JJ NNS IN PRP IN DT NNP NNP JJ NN IN NNP .\nYemeni national Ali Hamza Ahmad al-Bahlul is accused of conspiracy to commit terrorism .\tJJ NN NNP NNP NNP NNP VBZ VBN IN NN TO VB NN .\nHe admitted during a previous hearing that he was a member of bin Laden 's al Qaida .\tPRP VBD IN DT JJ NN IN PRP VBD DT NN IN NNP NNP POS NNP NNP .\nAl-Bahlul announced he was boycotting Wednesday 's hearing because he is not being allowed to defend himself .\tNNP VBD PRP VBD VBG NNP POS NN IN PRP VBZ RB VBG VBN TO VB PRP .\nAlso Wednesday , a separate panel at the Guantanamo tribunal will hear the case of a Canadian-born teenager accused of killing a U.S. military medic with a hand grenade in Afghanistan four years ago .\tRB NNP , DT JJ NN IN DT NNP NN MD VB DT NN IN DT JJ NN VBN IN VBG DT NNP JJ NN IN DT NN NN IN NNP CD NNS RB .\nMeanwhile , a former Guantanamo Bay prisoner who was handed over to France a year-and-a-half ago , Nizar Sassi , has been released from custody in Paris .\tRB , DT JJ NNP NNP NN WP VBD VBN RP TO NNP DT NN RB , NNP NNP , VBZ VBN VBN IN NN IN NNP .\nThe price of crude oil declined after the U.S. government reported an increase in U.S. inventories of oil and gasoline .\tDT NN IN JJ NN VBD IN DT NNP NN VBD DT NN IN NNP NNS IN NN CC NN .\nWednesday 's report from the Department of Energy says crude oil reserves rose by 1.7 million barrels to nearly 347 million barrels last week .\tNNP POS NN IN DT NNP IN NNP VBZ JJ NN NNS VBD IN CD CD NNS TO RB CD CD NNS JJ NN .\nGasoline reserves rose more than two million barrels to 202.7 million .\tNN NNS VBD JJR IN CD CD NNS TO CD CD .\nThe larger inventories may ease concerns that U.S. fuel supplies might fall short during June , July and August when many Americans drive long distances on vacation .\tDT JJR NNS MD VB NNS IN NNP NN NNS MD VB JJ IN NNP , NNP CC NNP WRB JJ NNS VBP JJ NNS IN NN .\nThe price of crude oil for June delivery declined nearly $ 1 to $ 73.85 a barrel in New York trading .\tDT NN IN JJ NN IN NNP NN VBD RB $ CD TO $ CD DT NN IN NNP NNP NN .\nOil prices have surged 21 percent this year .\tNN NNS VBP VBN CD NN DT NN .\nOne factor is concern about the dispute about Iran 's nuclear program .\tCD NN VBZ NN IN DT NN IN NNP POS JJ NN .\nIran is the world 's fourth-largest oil exporter .\tNNP VBZ DT NN POS JJ NN NN .\nGerman lawmakers reflected on the pains of the holocaust Friday and urged the world to learn from the past on this first international Holocaust Remembrance Day .\tJJ NNS VBD IN DT NNS IN DT NN NNP CC VBD DT NN TO VB IN DT NN IN DT JJ JJ NNP NNP NNP .\nGerman Parliament Speaker Norbert Lammert said recent statements by Iran 's president describing the Holocaust as a ' myth ' show the need for this day of remembrance .\tJJ NNP NNP NNP NNP VBD JJ NNS IN NNP POS NN VBG DT NNP IN DT `` NN `` VBP DT NN IN DT NN IN NN .\nHe said time will never diminish the need to commemorate the millions of Jews and others who died at the hands of the Nazis .\tPRP VBD NN MD RB VB DT NN TO VB DT NNS IN NNPS CC NNS WP VBD IN DT NNS IN DT NNPS .\nIn Poland , leaders also participated in ceremonies to mark this day , 61 years ago , when Soviet troops liberated the Auschwitz concentration camp .\tIN NNP , NNS RB VBD IN NNS TO VB DT NN , CD NNS RB , WRB JJ NNS VBD DT NNP NN NN .\nIn November , the United Nations declared January 27 the International Day of Commemoration .\tIN NNP , DT NNP NNP VBD NNP CD DT NNP NNP IN NNP .\nU.N. Secretary General Kofi Annan has called those who deny the Holocaust ' bigots . '\tNNP NNP NNP NNP NNP VBZ VBN DT WP VBP DT NNP `` NNS . ``\nHe said the Holocaust must always be remembered with shame and horror .\tPRP VBD DT NNP MD RB VB VBN IN NN CC NN .\nVenezuela has freed 11 Colombian soldiers who had been detained after entering Venezuelan territory without authorization .\tNNP VBZ VBN CD JJ NNS WP VBD VBN VBN IN VBG JJ NN IN NN .\nColombia 's government says the soldiers were turned over to consular officers Thursday at a military base in Venezuela 's Apure state .\tNNP POS NN VBZ DT NNS VBD VBN RP TO JJ NNS NNP IN DT JJ NN IN NNP POS NNP NN .\nThe soldiers were taken into custody Sunday while entering Venezuela in a taxi .\tDT NNS VBD VBN IN NN NNP IN VBG NNP IN DT NN .\nColombia says the soldiers were using Venezuelan territory as a safe travel corridor to avoid leftist rebels on the Colombian side of the 2,200-kilometer border .\tNNP VBZ DT NNS VBD VBG JJ NN IN DT JJ NN NN TO VB JJ NNS IN DT JJ NN IN DT JJ NN .\nColombia 's ambassador to Venezuela , Enrique Vargas Ramirez , thanked Caracas for the soldiers ' release , saying it showed the advances that the two governments have made in security efforts .\tNNP POS NN TO NNP , NNP NNP NNP , VBD NNP IN DT NNS POS NN , VBG PRP VBD DT NNS IN DT CD NNS VBP VBN IN NN NNS .\nThe two countries recently resolved a dispute sparked by Bogota 's admission it paid bounty hunters to seize a Colombian rebel in Caracas and return him to Colombia .\tDT CD NNS RB VBD DT NN VBN IN NNP POS NN PRP VBD NN NNS TO VB DT JJ NN IN NNP CC VB PRP TO NNP .\nA new report shows consumer spending in the United States dropped for a record sixth consecutive month in December - another sign the economy is deteriorating .\tDT JJ NN VBZ NN NN IN DT NNP NNPS VBD IN DT NN JJ JJ NN IN NNP IN DT NN DT NN VBZ VBG .\nThe report from the Commerce Department says spending fell one percent in the month .\tDT NN IN DT NNP NNP VBZ NN VBD CD NN IN DT NN .\nThe drop is significant because consumer spending is the major force behind the U.S. economy .\tDT NN VBZ JJ IN NN NN VBZ DT JJ NN IN DT NNP NN .\nFalling consumer demand has forced American companies to cut workers in an effort to save costs .\tVBG NN NN VBZ VBN JJ NNS TO VB NNS IN DT NN TO VB NNS .\nThe rising wave of unemployment has put pressure on American households to spend less money .\tDT VBG NN IN NN VBZ VBN NN IN JJ NNS TO VB JJR NN .\nThe report also shows Americans are saving more money , as they brace for the possibility of further job cuts .\tDT NN RB VBZ NNS VBP VBG JJR NN , IN PRP VBP IN DT NN IN JJ NN NNS .\nBritish police have released pictures of the four London suicide bombers in the hope of gathering new information about their final movements before the attacks .\tJJ NNS VBP VBN NNS IN DT CD NNP NN NNS IN DT NN IN VBG JJ NN IN PRP$ JJ NNS IN DT NNS .\nBritish media Sunday have been showing surveillance camera footage of the four bombers with backpacks as they enter a train station ( Luton ) north of London the morning of the attacks .\tJJ NNS NNP VBP VBN VBG NN NN NN IN DT CD NNS IN NNS IN PRP VBP DT NN NN LRB NNP RRB NN IN NNP DT NN IN DT NNS .\nPolice believe the men rode the train to London ( King 's Cross station ) , then split up to carry out the bombings on three subway trains and one bus .\tNNS VBP DT NNS VBD DT NN TO NNP LRB NNP POS NNP NN RRB , RB VBD RB TO VB RP DT NNS IN CD NN NNS CC CD NN .\nAuthorities on Saturday confirmed the identities of all four bombers as investigators in Britain , Egypt and Pakistan pursued leads in the case .\tNNS IN NNP VBD DT NNS IN DT CD NNS IN NNS IN NNP , NNP CC NNP VBD NNS IN DT NN .\nMeanwhile , British Prime Minister Tony Blair called on the world to confront what he called the ' evil ideology ' of Islamic extremism .\tRB , NNP NNP NNP NNP NNP VBD IN DT NN TO VB WP PRP VBD DT `` JJ NN `` IN NNP NN .\nThe death toll from the terrorist attacks stands at 55 , and is expected to rise .\tDT NN NN IN DT JJ NNS VBZ IN CD , CC VBZ VBN TO VB .\nThe company that owns the Chilean mine 33 men were trapped in for more than two months has agreed to sell its assets to avoid bankruptcy .\tDT NN WDT VBZ DT JJ NN CD NNS VBD VBN IN IN JJR IN CD NNS VBZ VBN TO VB PRP$ NNS TO VB NN .\nJudge Rocio Perez said Thursday creditors have given the San Esteban mining company 15 months to repay its debts .\tNNP NNP NNP VBD NNP NNS VBP VBN DT NNP NNP NN NN CD NNS TO VB PRP$ NNS .\nThirty-three of the company 's miners were rescued last month from a mine in northern Chile after a tunnel collapse on August 5 left them trapped for 69 days .\tCD IN DT NN POS NNS VBD VBN JJ NN IN DT NN IN JJ NNP IN DT NN NN IN NNP CD VBD PRP VBN IN CD NNS .\nChile 's Radio Cooperativa reports some of the money will be used as severance pay for the 300 miners of the San Jose mine who lost their jobs after the collapse .\tNNP POS NNP NNP VBZ DT IN DT NN MD VB VBN IN JJ NN IN DT CD NNS IN DT NNP NNP NN WP VBD PRP$ NNS IN DT NN .\nThe mining company also owes the Chilean government between $ 10 and $ 20 million for the rescue operation .\tDT NN NN RB VBZ DT JJ NN IN $ CD CC $ CD CD IN DT NN NN .\nChilean courts are holding the company 's total wealth , which amounts to about $ 10 million .\tJJ NNS VBP VBG DT NN POS JJ NN , WDT VBZ TO IN $ CD CD .\nPhilippine military soldiers have clashed with Islamic extremists Tuesday , killing at least one and wounding a senior leader of the al-Qaida-linked Abu Sayyaf group .\tJJ JJ NNS VBP VBN IN JJ NNS NNP , VBG IN JJS CD CC VBG DT JJ NN IN DT JJ NNP NNP NN .\nMilitary officials say they believe that Abu Solaiman , a wanted Abu Sayyaf leader , was injured during the fighting .\tJJ NNS VBP PRP VBP IN NNP NNP , DT JJ NNP NNP NN , VBD VBN IN DT NN .\nSolaiman is wanted by the United States for his alleged role in kidnappings and terror attacks .\tNNP VBZ VBN IN DT NNP NNPS IN PRP$ JJ NN IN NNS CC NN NNS .\nThe U.S. government is offering a $ 5 million reward for his capture .\tDT NNP NN VBZ VBG DT $ CD CD NN IN PRP$ NN .\nArmy soldiers clashed with 60 Abu Sayyaf extremists in a mountainous town on the southwestern Philippine island of Jolo .\tNNP NNS VBD IN CD NNP NNP NNS IN DT JJ NN IN DT JJ JJ NN IN NNP .\nOfficials say they found bomb-making materials at the camp after members of the group fled .\tNNS VBP PRP VBD JJ NNS IN DT NN IN NNS IN DT NN VBD .\nU.S. Secretary of State Condoleezza Rice has arrived in Haiti for a one-day visit aimed at showing U.S. support for elections scheduled there for November .\tNNP NNP IN NNP NNP NNP VBZ VBN IN NNP IN DT JJ NN VBN IN VBG NNP NN IN NNS VBN RB IN NNP .\nMs. Rice is to meet Tuesday with U.N. peacekeepers and leaders of the interim government , including President Boniface Alexandre and Prime Minister Gerard Latortue .\tNNP NNP VBZ TO VB NNP IN NNP NNS CC NNS IN DT JJ NN , VBG NNP NNP NNP CC NNP NNP NNP NNP .\nThe elections in Haiti will be the first since a political crisis in 2004 drove then-President Jean-Bertrand Aristide from office .\tDT NNS IN NNP MD VB DT JJ IN DT JJ NN IN CD VBD JJ JJ NN IN NN .\nHaiti has been torn by gang warfare and political violence since Mr. Aristide 's departure .\tNNP VBZ VBN VBN IN NN NN CC JJ NN IN NNP NNP POS NN .\nThe United Nations , which has 7,000 peacekeepers in Haiti , and the 15-member Caribbean community have offered to help ensure the balloting is free and fair .\tDT NNP NNPS , WDT VBZ CD NNS IN NNP , CC DT JJ JJ NN VBP VBN TO VB VB DT NN VBZ JJ CC JJ .\nIndian Prime Minister Manmohan Singh is in Kashmir , hours after soldiers killed two suspected separatists near the stadium where the Indian leader plans to deliver a speech Wednesday .\tJJ NNP NNP NNP NNP VBZ IN NNP , NNS IN NNS VBD CD JJ NNS IN DT NN WRB DT JJ NN VBZ TO VB DT NN NNP .\nThe rebels were killed in a gunbattle that broke out in Kashmir 's summer capital , Srinagar , after troops surrounded a building where authorities had learned the militants had taken up positions .\tDT NNS VBD VBN IN DT NN WDT VBD RP IN NNP POS NN NN , NNP , IN NNS VBN DT NN WRB NNS VBD VBN DT NNS VBD VBN RP NNS .\nAfter arriving in Kashmir under heavy security for a two-day visit , Mr. Singh visited a Muslim holy site and spoke to students at a medical college .\tIN VBG IN NNP IN JJ NN IN DT JJ NN , NNP NNP VBD DT NNP JJ NN CC VBD TO NNS IN DT JJ NN .\nHe repeated his offer to hold talks with all Kashmiri separatist groups in an effort to resolve their decades-old dispute .\tPRP VBD PRP$ NN TO VB NNS IN DT JJ NN NNS IN DT NN TO VB PRP$ JJ NN .\nEarlier , Indian troops began pulling out of Kashmir in the first phase of a gradual withdrawal of half the soldiers stationed there .\tRB , JJ NNS VBD VBG IN IN NNP IN DT JJ NN IN DT JJ NN IN PDT DT NNS VBN RB .\nHundreds of Afghans have marched through the northern city of Mazar-e-Sharif to protest the killing of a candidate in the country 's recent legislative elections .\tNNS IN NNS VBP VBN IN DT JJ NN IN NNP TO VB DT NN IN DT NN IN DT NN POS JJ JJ NNS .\nThe protesters were demanding the arrest and trial of those responsible .\tDT NNS VBD VBG DT NN CC NN IN DT JJ .\nNational Assembly candidate Mohammad Ashraf Ramazan and his bodyguard were gunned down last week by unidentified attackers .\tNNP NNP NN NNP NNP NNP CC PRP$ NN VBD VBN RB JJ NN IN JJ NNS .\nAlthough the Taleban claimed responsibility for the killings , the protesters blamed the local administration .\tIN DT NNP VBD NN IN DT NNS , DT NNS VBD DT JJ NN .\nMr. Ramazan was the first candidate killed since the September 18 parliamentary polls .\tNNP NNP VBD DT JJ NN VBN IN DT NNP CD JJ NNS .\nMeanwhile , the chairman of the joint U.N.-Afghan election body says ballot boxes from about four percent of 26,000 polling stations were being checked for reported irregularities .\tRB , DT NN IN DT JJ JJ NN NN VBZ NN NNS IN IN CD NN IN CD NN NNS VBD VBG VBN IN VBN NNS .\nBut Peter Erben said the cases of fraud are localized rather than widespread , and will not affect the overall integrity of the landmark vote .\tCC NNP NNP VBD DT NNS IN NN VBP VBN RB IN JJ , CC MD RB VB DT JJ NN IN DT NN NN .\nA U.S. diplomatic cable released by WikiLeaks on Wednesday says Israel 's blockade of Gaza aimed to ' keep Gaza 's economy on the brink of collapse . '\tDT NNP JJ NN VBN IN NNS IN NNP VBZ NNP POS NN IN NNP VBD TO `` VB NNP POS NN IN DT NN IN NN . ``\nThe document says Israeli officials repeatedly confirmed the embargo 's goal was to keep Gaza 's economy functioning ' at its lowest possible level without getting a humanitarian crisis . '\tDT NN VBZ JJ NNS RB VBD DT NN POS NN VBD TO VB NNP POS NN VBG `` IN PRP$ JJS JJ NN IN VBG DT JJ NN . ``\nThe newly released cable was published by Norway 's Aftenposten newspaper .\tDT RB VBN NN VBD VBN IN NNP POS JJ NN .\nThe document was dated November 3 , 2008 , just weeks before Israel launched an offensive in the Gaza Strip to stop Hamas militants from firing rockets on Israeli towns .\tDT NN VBD VBN NNP CD , CD , RB NNS IN NNP VBD DT NN IN DT NNP NNP TO VB NNP NNS IN VBG NNS IN JJ NNS .\nIsrael says the blockade seeks to weaken Hamas .\tNNP VBZ DT NN VBZ TO VB NNP .\nHumanitarian groups argue the embargo is taking the heaviest toll on civilians , while Hamas militants continue to smuggle in building materials , weapons and cash through tunnels under the border with Egypt .\tJJ NNS VBP DT NN VBZ VBG DT JJS NN IN NNS , IN NNP NNS VBP TO VB IN NN NNS , NNS CC NN IN NNS IN DT NN IN NNP .\nAttorneys have said U.S. authorities will deport a former Florida professor and Palestinian rights activist who was acquitted on terrorism charges in December .\tNNS VBP VBN NNP NNS MD VB DT JJ NNP NN CC NN NNS NN WP VBD VBN IN NN NNS IN NNP .\nAttorneys involved in the case of Sami al-Arian say he has reached an agreement with prosecutors to plead guilty to a terrorism-related charge .\tNNS VBN IN DT NN IN NNP NNP NN PRP VBZ VBN DT NN IN NNS TO VB JJ TO DT JJ NN .\nA jury in Florida found him not guilty last year on eight counts , including conspiracy to murder people overseas .\tDT NN IN NNP VBD PRP RB JJ JJ NN IN CD NNS , VBG NN TO NN NNS RB .\nThe jury deadlocked on nine other charges .\tDT NN VBD IN CD JJ NNS .\nAl-Arian had been accused of helping to finance the activities of Islamic Jihad , a militant group blamed for terrorist attacks in Israel .\tNNP VBD VBN VBN IN VBG TO VB DT NNS IN NNP NNP , DT JJ NN VBN IN JJ NNS IN NNP .\nThe University of South Florida fired al-Arian from his position as a computer science professor after he was indicted in 2003 , saying he used his academic position for noneducational , improper purposes .\tDT NNP IN NNP NNP VBD NNP IN PRP$ NN IN DT NN NN NN IN PRP VBD VBN IN CD , VBG PRP VBD PRP$ JJ NN IN JJ , JJ NNS .\nHe has been in jail since the indictment .\tPRP VBZ VBN IN NN IN DT NN .\nA suicide bomber disguised as a soldier has blown himself up in front of police headquarters in Afghanistan 's southern Helmand province , killing himself and four policemen .\tDT NN NN VBN IN DT NN VBZ VBN PRP RP IN NN IN NN NN IN NNP POS JJ NNP NN , VBG PRP CC CD NNS .\nA police chief in Helmand says the bomber dressed in an Afghan army uniform detonated his explosives after police stopped him as he tried to enter the station in Lashkar Gah , the province capital .\tDT NN NN IN NNP VBZ DT NN VBN IN DT JJ NN NN VBD PRP$ NNS IN NNS VBD PRP IN PRP VBD TO VB DT NN IN NNP NNP , DT NN NN .\nAt least one other policeman was injured .\tIN JJS CD JJ NN VBD VBN .\nNATO forces have launched a major offensive in Helmand , Afghanistan 's top opium producing region where Taleban militants have staged attacks .\tNNP NNS VBP VBN DT JJ NN IN NNP , NNP POS JJ NN VBG NN WRB NNP NNS VBP VBN NNS .\nNATO and Afghan forces say they have killed dozens of Taleban fighters in recent days .\tNNP CC JJ NNS VBP PRP VBP VBN NNS IN NNP NNS IN JJ NNS .\nIn other news , U.S.-led coalition forces and Afghan troops arrested four men and seized weapons in a raid on a compound in Jalalabad in the eastern province of Nangarhar .\tIN JJ NN , JJ NN NNS CC JJ NNS VBN CD NNS CC VBD NNS IN DT NN IN DT NN IN NNP IN DT JJ NN IN NNP .\nU.S. President Barack Obama has urged Israeli Prime Minister Benjamin Netanyahu to find out all the facts of the deadly raid on a Gaza-bound international aid flotilla .\tNNP NNP NNP NNP VBZ VBN JJ NNP NNP NNP NNP TO VB RP PDT DT NNS IN DT JJ NN IN DT JJ JJ NN NN .\nThe two leaders spoke by telephone Monday shortly after Mr. Netanyahu canceled his visit to Washington because of the raid .\tDT CD NNS VBD IN NN NNP RB IN NNP NNP VBD PRP$ NN TO NNP IN IN DT NN .\nThey had been scheduled to meet Tuesday at the White House .\tPRP VBD VBN VBN TO VB NNP IN DT NNP NNP .\nThe White House said Mr. Obama expressed deep regret at the loss life in the raid and said it was important to learn all the circumstances surrounding the event .\tDT NNP NNP VBD NNP NNP VBD JJ NN IN DT NN NN IN DT NN CC VBD PRP VBD JJ TO VB PDT DT NNS VBG DT NN .\nMr. Obama said he understood Mr. Netanyahu 's decision to return to Israel immediately .\tNNP NNP VBD PRP VBD NNP NNP POS NN TO VB TO NNP RB .\nThe two agreed to reschedule their meeting at ' the first opportunity ' .\tDT CD VBD TO VB PRP$ NN IN `` DT JJ NN `` .\nThe United States has acted against two Iranian companies suspected of helping to proliferate weapons of mass destruction through involvement in Iran 's nuclear program .\tDT NNP NNPS VBZ VBN IN CD JJ NNS VBN IN VBG TO VB NNS IN NN NN IN NN IN NNP POS JJ NN .\nThe U.S. Treasury Department Wednesday ordered American banks to freeze any accounts or other financial assets in the United States belonging to the Novin Energy company and Mesbah Energy company .\tDT NNP NNP NNP NNP VBD JJ NNS TO VB DT NNS CC JJ JJ NNS IN DT NNP NNPS VBG TO DT NNP NNP NN CC NNP NNP NN .\nOfficials also are prohibiting Americans from doing business with the two companies .\tNNS RB VBP VBG NNS IN VBG NN IN DT CD NNS .\nThe Treasury Department said the Novin Energy company has transferred millions of dollars on behalf of Iran 's atomic energy agency to entities linked to the country 's nuclear program .\tDT NNP NNP VBD DT NNP NNP NN VBZ VBN NNS IN NNS IN NN IN NNP POS JJ NN NN TO NNS VBN TO DT NN POS JJ NN .\nThe department said the Mesbah Energy company is a state-owned entity that has been used to obtain products for Iran 's heavy water project .\tDT NN VBD DT NNP NNP NN VBZ DT JJ NN WDT VBZ VBN VBN TO VB NNS IN NNP POS JJ NN NN .\nA heavy water reactor has the potential to produce high-quality plutonium , a key component for a nuclear weapon .\tDT JJ NN NN VBZ DT NN TO VB JJ NN , DT JJ NN IN DT JJ NN .\nOfficials in Afghanistan say U.S. and Afghan troops have killed eight suspected Taleban fighters and captured 16 others in a firefight in a mountain area south of the capital .\tNNS IN NNP VBP NNP CC JJ NNS VBP VBN CD JJ NNP NNS CC VBD CD NNS IN DT NN IN DT NN NN NN IN DT NN .\nAn Afghan Defense Ministry spokesman said Tuesday the fighting occurred in the Dai Chopan district of southern Zabul province .\tDT JJ NNP NNP NN VBD NNP DT NN VBD IN DT NNP NNP NN IN JJ NNP NN .\nIndependent confirmation of the details of the fighting in the remote area was not immediately available .\tJJ NN IN DT NNS IN DT NN IN DT JJ NN VBD RB RB JJ .\nThe U.S. military had no immediate comment .\tDT NNP NN VBD DT JJ NN .\nGuerrilla activity in Afghanistan has increased after a winter lull , but activity is down compared to past years .\tNN NN IN NNP VBZ VBN IN DT NN NN , CC NN VBZ RB VBN TO JJ NNS .\nU.S.-led forces overthrew the Taleban after they refused to hand over al-Qaida leader Osama bin Laden , the architect of the September 11 attacks on U.S. cities .\tJJ NNS VBP DT NNP IN PRP VBD TO VB RP NNP NN NNP NNP NNP , DT NN IN DT NNP CD NNS IN NNP NNS .\nElection officials predict a large turnout Sunday as Thailand 's 44 million eligible voters deliver what is being seen as a judgment on the policies of Prime Minister Thaksin Shinawatra .\tNN NNS VBP DT JJ NN NNP IN NNP POS CD CD JJ NNS VBP WP VBZ VBG VBN IN DT NN IN DT NNS IN NNP NNP NNP NNP .\nAt one final campaign rally , Mr. Thaksin urged the crowd to give him a strong mandate so that his Thai Rak Thai party can govern without coalition partners .\tIN CD JJ NN NN , NNP NNP VBD DT NN TO VB PRP DT JJ NN IN IN PRP$ JJ NNP JJ NN MD VB IN NN NNS .\nOpinion polls give Mr. Thaksin a commanding lead and the opposition is appealing for at least two hundred of the five hundred seats in the national assembly .\tNN NNS VBP NNP NNP DT JJ NN CC DT NN VBZ VBG IN IN JJS CD CD IN DT CD CD NNS IN DT JJ NN .\nThey say this will allow them to maintain checks and balances in government .\tPRP VBP DT MD VB PRP TO VB NNS CC NNS IN NN .\nOfficial results are expected within 30 days but a preliminary tally has been promised by Monday .\tJJ NNS VBP VBN IN CD NNS CC DT JJ NN VBZ VBN VBN IN NNP .\nFighting continues in the eastern Democratic Republic of Congo , where a joint force of United Nations and Congolese troops is trying to subdue Ugandan rebels .\tVBG VBZ IN DT JJ JJ NNP IN NNP , WRB DT JJ NN IN NNP NNPS CC JJ NNS VBZ VBG TO VB JJ NNS .\nReports of new clashes Monday follow a battle in North Kivu province Sunday .\tNNS IN JJ NNS NNP VB DT NN IN NNP NNP NN NNP .\nThe United Nations says at least 35 rebels were killed , along with three Congolese government troops and an Indian U.N. peacekeeper .\tDT NNP NNP VBZ IN JJS CD NNS VBD VBN , IN IN CD JJ NN NNS CC DT JJ NNP NN .\nA U.N. spokesman , Major Hans-Jakob Reichenm , says about 3,500 Congolese troops and 600 U.N. peacekeepers are battling an estimated 1,000 Ugandan rebels .\tDT NNP NN , NNP NNP NNP , VBZ IN CD JJ NNS CC CD NNP NNS VBP VBG DT VBN CD JJ NNS .\nU.N. and Congolese forces are trying to assert government control in North Kivu and other areas dominated by local militias and foreign rebels using eastern Congo as a base .\tNNP CC JJ NNS VBP VBG TO VB NN NN IN NNP NNP CC JJ NNS VBN IN JJ NNS CC JJ NNS VBG JJ NNP IN DT NN .\nThe offensives were launched after Congo 's constitutional referendum last week .\tDT NNS VBD VBN IN NNP POS JJ NN JJ NN .\nPartial results from the vote show the new constitution heading toward overwhelming approval .\tJJ NNS IN DT NN VBP DT JJ NN VBG IN JJ NN .\nTurkish leaders , concerned that new political power for Iraqi Kurds could lead to their control of the oil-rich province of Kirkuk , have received reassurance from a visiting U.S. official that Kirkuk is a matter for all Iraqis to decide .\tJJ NNS , VBN IN JJ JJ NN IN JJ NNPS MD VB TO PRP$ NN IN DT JJ NN IN NNP , VBP VBN NN IN DT VBG NNP NN IN NNP VBZ DT NN IN DT NNS TO VB .\nThe Pentagon 's Douglas Feith told Turkish Foreign Minister Abdullah Gul Monday the United States is committed to preserving Iraq 's territorial integrity .\tDT NNP POS NNP NNP VBD NNP NNP NNP NNP NNP NNP DT NNP NNPS VBZ VBN TO VBG NNP POS JJ NN .\nThe defense policy official said the issue of Kirkuk is not a matter for one group to decide , but for the Iraqi people in general .\tDT NN NN NN VBD DT NN IN NNP VBZ RB DT NN IN CD NN TO VB , CC IN DT JJ NNS IN JJ .\nTurkey is worried that Kurds in northern Iraq might use their increased influence to press for independence , and that could inspire Kurdish separatists living in southeastern Turkey .\tNNP VBZ VBN IN NNS IN JJ NNP MD VB PRP$ VBN NN TO VB IN NN , CC DT MD VB NNP NNS VBG IN JJ NNP .\nOn Monday , Mr. Gul said if ethnic unrest were to erupt in Kirkuk , the Turkish public would pressure the government to respond .\tIN NNP , NNP NNP VBD IN JJ NN VBD TO VB IN NNP , DT JJ NN MD VB DT NN TO VB .\nSome infomation for this report provided by AP and AFP .\tDT NN IN DT NN VBN IN NNP CC NNP .\nThe Israeli newspaper Haaretz says the number of Jewish settlers in the West Bank has topped 3,00,000 .\tDT JJ NN NNP VBZ DT NN IN JJ NNS IN DT NNP NNP VBZ VBN CD .\nIn a report Monday , Haaretz said as of June 30 , there were 3,04,569 settlers living in the Palestinian territory , an increase of 2.3 percent since January .\tIN DT NN NNP , NNP VBD IN IN NNP CD , EX VBD CD NNS VBG IN DT JJ NN , DT NN IN CD NN IN NNP .\nThe paper said the figures came from an Israeli government report .\tDT NN VBD DT NNS VBD IN DT JJ NN NN .\nThe settlement issue is one of the main obstacles in the stalled Israeli-Palestinian peace process .\tDT NN NN VBZ CD IN DT JJ NNS IN DT VBN JJ NN NN .\nThe administration of U.S. President Barack Obama has repeatedly called on Israel to halt all settlement activity as part of efforts to revive the peace process .\tDT NN IN NNP NNP NNP NNP VBZ RB VBN IN NNP TO VB DT NN NN IN NN IN NNS TO VB DT NN NN .\nThree top U.S. officials , U.S. special envoy to the Middle East George Mitchell , Defense Secretary Robert Gates and National Security Advisor James Jones , are holding talks in Israel this week and are pushing for a settlement freeze .\tCD JJ NNP NNS , NNP JJ NN TO DT NNP NNP NNP NNP , NNP NNP NNP NNP CC NNP NNP NNP NNP NNP , VBP VBG NNS IN NNP DT NN CC VBP VBG IN DT NN NN .\nIsraeli Prime Minister Benjamin Netanyahu has so far refused the demand , creating tensions with Washington .\tJJ NNP NNP NNP NNP VBZ RB RB VBD DT NN , VBG NNS IN NNP .\nAfghan officials say a suicide bombing outside a northern police station has killed one civilian and wounded at least 27 others .\tJJ NNS VBP DT NN VBG IN DT JJ NN NN VBZ VBN CD JJ CC VBN IN JJS CD NNS .\nNo one claimed responsibility for the attack that took place Thursday in the town of Faizabad , in northern Badakshan province .\tDT NN VBD NN IN DT NN WDT VBD NN NNP IN DT NN IN NNP , IN JJ NNP NN .\nSeparately , Afghan officials say armed men kidnapped two Germans and at least two of their Afghan colleagues Wednesday in central Afghanistan .\tRB , JJ NNS VBP JJ NNS VBD CD NNS CC IN JJS CD IN PRP$ JJ NNS NNP IN JJ NNP .\nIt is unclear who was behind the abductions .\tPRP VBZ JJ WP VBD IN DT NNS .\nAuthorities in Afghanistan say they are investigating .\tNNS IN NNP VBP PRP VBP VBG .\nIn late June , a German national and his Afghan translator were abducted in southern Afghanistan .\tIN JJ NNP , DT JJ NN CC PRP$ JJ NN VBD VBN IN JJ NNP .\nThey were freed a week later .\tPRP VBD VBN DT NN RB .\nA strong , 7.5 magnitude earthquake has struck near India 's Nicobar Islands , initially triggering a tsunami watch for all areas of the Indian Ocean .\tDT JJ , CD NN NN VBZ VBN IN NNP POS NNP NNP , RB VBG DT NN NN IN DT NNS IN DT NNP NNP .\nThere were no immediate reports of damage or injury , and the tsunami warning was eventually lifted .\tEX VBD DT JJ NNS IN NN CC NN , CC DT NN NN VBD RB VBN .\nThe quake , which struck early Sunday , was centered 150 kilometers west of Mohean on the Nicobar Islands at a depth of 35 kilometers .\tDT NN , WDT VBD JJ NNP , VBD VBN CD NNS JJS IN NNP IN DT NNP NNP IN DT NN IN CD NNS .\nThe Nicobar Islands make up a small chain that runs across the Andaman Sea near southern Thailand .\tDT NNP NNP VB RP DT JJ NN WDT VBZ IN DT NNP NNP IN JJ NNP .\nElsewhere on the globe , earthquakes took place in Japan and California Sunday , but no injuries or building damage were reported in either location .\tRB IN DT NN , NNS VBD NN IN NNP CC NNP NNP , CC DT NNS CC NN NN VBD VBN IN DT NN .\nA 6.1 magnitude quake jolted northern Japan , while a 4.4 earthquake was felt in the southwestern U.S. city of San Diego .\tDT CD NN NN VBD JJ NNP , IN DT CD NN VBD VBN IN DT JJ NNP NN IN NNP NNP .\nThe outgoing president of Georgia 's Abkhazia region , Vladislav Ardzinba , has fired his chosen successor and warned of a possible civil war in the breakaway area .\tDT JJ NN IN NNP POS NNP NN , NNP NNP , VBZ VBN PRP$ JJ NN CC VBN IN DT JJ JJ NN IN DT JJ NN .\nMr. Ardzinba removed Prime Minister Raul Khadjimba from his post Wednesday and replaced him with a former Russian emergency ministries official , Nodar Khashba .\tNNP NNP VBD NNP NNP NNP NNP IN PRP$ NN NNP CC VBD PRP IN DT JJ JJ NN NNS NN , NNP NNP .\nHe also blamed opposition candidate Sergei Bagapsh for the region 's current political problems that began after Sunday 's presidential elections .\tPRP RB VBD NN NN NNP NNP IN DT NN POS JJ JJ NNS WDT VBD IN NNP POS JJ NNS .\nMr. Bagapsh has already claimed victory against Mr. Khadjimba .\tNNP NNP VBZ RB VBN NN IN NNP NNP .\nElection officials say latest returns put Mr. Bagapsh in the lead .\tNN NNS VBP JJS NNS VBD NNP NNP IN DT NN .\nMr. Khadjimba wanted the election voided because of alleged fraud .\tNNP NNP VBD DT NN VBD IN IN JJ NN .\nElectoral officials say the southern Gali district will hold a re-vote on October 17 because of voting problems .\tNNP NNS VBP DT JJ NNP NN MD VB DT NN IN NNP CD IN IN NN NNS .\nThe contest was the first open presidential election in Abkhazia since the area declared independence from Georgia in 1993 .\tDT NN VBD DT JJ JJ JJ NN IN NNP IN DT NN VBD NN IN NNP IN CD .\nGeorgian officials say the vote was illegal .\tJJ NNS VBP DT NN VBD JJ .\nIndia says its security forces have killed 11 suspected Islamic militants who infiltrated into Indian-controlled Kashmir from the Pakistani part of Kashmir .\tNNP VBZ PRP$ NN NNS VBP VBN CD JJ JJ NNS WP VBD IN JJ NNP IN DT JJ NN IN NNP .\nMilitary officials say the 11 were killed during a gunbattle early Friday .\tJJ NNS VBP DT CD VBD VBN IN DT NN JJ NNP .\nOfficials say the militants opened fire after Indian troops ordered them to surrender .\tNNS VBP DT NNS VBD NN IN JJ NNS VBD PRP TO VB .\nIndia accuses Pakistan of arming and funding Kashmiri rebels , a charge Islamabad denies .\tNNP VBZ NNP IN VBG CC VBG JJ NNS , DT NN NNP VBZ .\nBoth nations claim all of Kashmir and have fought two of their three wars over the Himalayan region .\tDT NNS VBP DT IN NNP CC VBP VBN CD IN PRP$ CD NNS IN DT JJ NN .\nThe two sides have been engaged in a peace process since January 2004 to resolve all of their disputes , including Kashmir .\tDT CD NNS VBP VBN VBN IN DT NN NN IN NNP CD TO VB DT IN PRP$ NNS , VBG NNP .\nSaudi Arabian security forces have arrested 17 suspected militants with ties to al-Qaida .\tJJ JJ NN NNS VBP VBN CD JJ NNS IN NNS TO NNP .\nAn interior ministry statement carried Saturday by Saudi media said the group was arrested during simultaneous early morning raids of 12 homes in the capital , Riyadh , and two nearby districts , Kharj and Majmaah .\tDT JJ NN NN VBN NNP IN NNP NNS VBD DT NN VBD VBN IN JJ JJ NN NNS IN CD NNS IN DT NN , NNP , CC CD JJ NNS , NNP CC NNP .\nAll of the suspected militants are Saudi nationals .\tDT IN DT JJ NNS VBP JJ NNS .\nIn addition to the arrests , security forces seized weapons , ammunition , electronic equipment and assorted militant literature and documents .\tIN NN TO DT NNS , NN NNS VBN NNS , NN , JJ NN CC JJ JJ NN CC NNS .\nThe oil-rich kingdom has been battling supporters and sympathizers of al-Qaida leader Osama bin Laden for the last two years .\tDT JJ NN VBZ VBN VBG NNS CC NNS IN NNP NN NNP NNP NNP IN DT JJ CD NNS .\nIt has been nearly a year since the last terror attack on Saudi soil .\tPRP VBZ VBN RB DT NN IN DT JJ NN NN IN JJ NN .\nSince then , security forces have made significant progress , arresting and killing dozens of suspected militants .\tIN RB , NN NNS VBP VBN JJ NN , VBG CC VBG NNS IN JJ NNS .\nNorth Korea has lashed out at Japan 's new defense guidelines .\tNNP NNP VBZ VBN RP IN NNP POS JJ NN NNS .\nAn editorial in the official Rodon Sinmun newspaper Sunday says Japan has adopted the so-called ' U.S. vicious hostile policy ' toward North Korea , and is joining in U.S. efforts to ' stifle ' the Pyongyang government .\tDT NN IN DT JJ NNP NNP NN NNP VBZ NNP VBZ VBN DT JJ `` NNP JJ NN NN `` IN NNP NNP , CC VBZ VBG IN NNP NNS TO `` VB `` DT NNP NN .\nJapan 's new defense plan , adopted in December , eased a ban on weapons exports , allowing the country to pursue a missile defense program with Washington .\tNNP POS JJ NN NN , VBN IN NNP , VBD DT NN IN NNS NNS , VBG DT NN TO VB DT NN NN NN IN NNP .\nThe plan also singled out the threats posed by North Korean missiles .\tDT NN RB VBD RP DT NNS VBN IN JJ JJ NNS .\nThe North Korean comments follow a meeting in Washington Saturday top diplomatic and defense officials from both the United States and Japan .\tDT JJ JJ NNS VBP DT NN IN NNP NNP JJ JJ CC NN NNS IN DT DT NNP NNPS CC NNP .\nThe two sides issued a joint statement saying North Korea 's nuclear program poses a serious challenge to the international Nuclear Non-Proliferation Treaty .\tDT CD NNS VBD DT JJ NN VBG NNP NNP POS JJ NN VBZ DT JJ NN TO DT JJ NNP NNP NNP .\nSomaliland 's interior minister has ordered foreign Islamic clerics and other non-natives to leave the breakaway region immediately , following the arrest of several alleged al-Qaida operatives .\tNNP POS JJ NN VBZ VBN JJ NNP NNS CC JJ NNS TO VB DT JJ NN RB , VBG DT NN IN JJ JJ NNP NNS .\nIsmail Osman Aden says his order was prompted by security concerns .\tNNP NNP NNP VBZ PRP$ NN VBD VBN IN NN NNS .\nPolice detained at least one al-Qaida suspect in an overnight raid in the region 's capital , Hargeisa , bringing to at least seven the number arrested over the previous two days .\tNNS VBD IN JJS CD NNP NN IN DT JJ NN IN DT NN POS NN , NNP , VBG TO IN JJS CD DT NN VBN IN DT JJ CD NNS .\nMr. Aden says the suspects had traveled from the Somali capital , Mogadishu , and were planning attacks against senior officials and foreign workers in an effort to disrupt next week 's elections in Somaliland .\tNNP NNP VBZ DT NNS VBD VBN IN DT JJ NN , NNP , CC VBD VBG NNS IN JJ NNS CC JJ NNS IN DT NN TO VB JJ NN POS NNS IN NNP .\nThe breakaway region , which is not internationally recognized , split from Somalia after the country descended into anarchy following the overthrow of Mohamed Siad Barre in 1991 .\tDT NN NN , WDT VBZ RB RB VBN , VBD IN NNP IN DT NN VBD IN NN VBG DT NN IN NNP NNP NNP IN CD .\nThe United States and other western intelligence agencies see Somalia as a potential safe haven for terrorists .\tDT NNP NNPS CC JJ JJ NN NNS VBP NNP IN DT JJ JJ NN IN NNS .\nHamas ordered all smuggling tunnels along the Gaza border with Egypt to be immediately closed , cutting the flow of critical goods into the Gaza strip .\tNNP VBD DT VBG NNS IN DT NNP NN IN NNP TO VB RB VBD , VBG DT NN IN JJ NNS IN DT NNP NN .\nHamas , which controls Gaza , temporarily shut the tunnels at Egypt 's urging , after Israel warned tourists in the Sinai peninsula to immediately leave because of a terrorist plot to kidnap Israelis .\tNNP , WDT VBZ NNP , RB VBD DT NNS IN NNP POS VBG , IN NNP VBD NNS IN DT NNP NN TO RB VB IN IN DT JJ NN TO VB NNS .\nSecurity officials say Israel warned that the tunnels could be used in the kidnapping plot .\tNN NNS VBP NNP VBD IN DT NNS MD VB VBN IN DT NN NN .\nThe Associated Press quoted a Hamas official who said Gaza leaders feared Israel could launch new airstrikes on the tunnels .\tDT NNP NNP VBD DT NNP NN WP VBD NNP NNS VBD NNP MD VB JJ NNS IN DT NNS .\nIsrael and Egypt sealed their borders with the Gaza Strip in 2007 to prevent Hamas militants from getting weapons .\tNNP CC NNP VBD PRP$ NNS IN DT NNP NNP IN CD TO VB NNP NNS IN VBG NNS .\nBut the blockades also have slowed efforts to rebuild Gaza and prevented Palestinians from accessing basic necessities .\tCC DT NNS RB VBP VBN NNS TO VB NNP CC VBN NNS IN VBG JJ NNS .\nSmugglers have skirted the blockade by bringing in goods through the tunnels .\tNNS VBP VBN DT NN IN VBG IN NNS IN DT NNS .\nOfficials in Niger report a new outbreak of the deadly H5N1 strain of bird flu .\tNNS IN NNP VBP DT JJ NN IN DT JJ NNP NN IN NN NN .\nGovernment officials Friday said tests have confirmed the presence of H5N1 in the village of Boko Maigao , in southern Niger .\tNN NNS NNP VBD NNS VBP VBN DT NN IN NNP IN DT NN IN NNP NNP , IN JJ NNP .\nThousands of birds were slaughtered after scientists detected H5N1 in two other parts of southern Niger back in February .\tNNS IN NNS VBD VBN IN NNS VBD NNP IN CD JJ NNS IN JJ NNP RB IN NNP .\nSeveral west African countries are grappling with outbreaks of the disease , including Niger 's neighbors Nigeria and Burkina Faso .\tJJ JJ JJ NNS VBP VBG IN NNS IN DT NN , VBG NNP POS NNS NNP CC NNP NNP .\nNo human cases have been detected in the area , though the disease is believed to have killed at least 124 people around the world since 2003 .\tDT JJ NNS VBP VBN VBN IN DT NN , IN DT NN VBZ VBN TO VB VBN IN JJS CD NNS IN DT NN IN CD .\nA public opinion poll released in Paksitan on June 20th shows that 58 percent of Pakistanis support talks with the tribal militants , and that anti-U.S. sentiments remain negative .\tDT JJ NN NN VBN IN NNP IN NNP JJ VBZ IN CD NN IN NNS VBP NNS IN DT JJ NNS , CC IN JJ NNS VBP JJ .\nThe pollsters found more than half of the respondents blame the U.S. for the violence occurring in Pakistan while few hold al-Qaida responsible , but that the U.S. has an opportunity to turn public opinion in its favor .\tDT NNS VBD JJR IN NN IN DT NNS VBP DT NNP IN DT NN VBG IN NNP IN JJ NN NNP JJ , CC IN DT NNP VBZ DT NN TO VB JJ NN IN PRP$ NN .\nThe survey was conducted in Pakistan by two Washington-based not profit organizations :\tDT NN VBD VBN IN NNP IN CD JJ RB NN NNS :\nTerror Free Tomorrow and a think tank , the New America Foundation .\tNNP NNP NNP CC DT NN NN , DT NNP NNP NNP .\nVOA 's Ravi Khanna has more .\tNNP POS NNP NNP VBZ RBR .\nThe U.N. Security Council is considering a draft statement condemning North Korea 's long-range rocket launch earlier this month .\tDT NNP NNP NNP VBZ VBG DT NN NN VBG NNP NNP POS JJ NN NN RBR DT NN .\nThe Council 's five permanent members and Japan reached an agreement on a draft statement Saturday and presented it to the full Council within hours .\tDT NNP POS CD JJ NNS CC NNP VBD DT NN IN DT NN NN NNP CC VBD PRP TO DT JJ NN IN NNS .\nThe draft ' condemns ' the April 5 launch and says North Korea must comply fully with Security Council Resolution 1718 , which banned such launches .\tDT NN `` VBZ `` DT NNP CD NN CC VBZ NNP NNP MD VB RB IN NNP NNP NNP CD , WDT VBD JJ NNS .\nIt also says the Security Council will demand North Korea not conduct any further launches .\tPRP RB VBZ DT NNP NNP MD VB NNP NNP RB VB DT JJ NNS .\nAnd it calls for an early resumption of six-party disarmament talks with Pyongyang .\tCC PRP VBZ IN DT JJ NN IN JJ NN NNS IN NNP .\nJapan had been seeking a Security Council resolution -- a measure seen as a stronger response .\tNNP VBD VBN VBG DT NNP NNP NN IN DT NN VBN IN DT JJR NN .\nBut Tokyo now says it would consider a Council presidential statement instead .\tCC NNP RB VBZ PRP MD VB DT NNP JJ NN RB .\nThe Security Council had been deadlocked for almost a week over how it should respond to the North Korean launch .\tDT NNP NNP VBD VBN VBN IN RB DT NN IN WRB PRP MD VB TO DT JJ JJ NN .\nThe South Asia Free Trade Agreement , or SAFTA , came into effect Sunday , paving the way for free trade of goods among the member nations .\tDT NNP NNP NNP NNP NNP , CC NNP , VBD IN NN NNP , VBG DT NN IN JJ NN IN NNS IN DT NN NNS .\nIndia 's Commerce Minister Kamal Nath said implementation of the accord will benefit the entire region - a home to 1.5 billion people .\tNNP POS NNP NNP NNP NNP VBD NN IN DT NN MD VB DT JJ NN IN DT NN TO CD CD NNS .\nUnder the agreement , the more developed member countries - India , Pakistan and Sri Lanka - will reduce their customs duties to between zero and five percent by the year 2013 .\tIN DT NN , DT RBR JJ NN NNS IN NNP , NNP CC NNP NNP : MD VB PRP$ NNS NNS TO IN CD CC CD NN IN DT NN CD .\nLess developed Bangladesh , Bhutan , the Maldives and Nepal have until 2018 to do the same .\tRBR JJ NNP , NNP , DT NNP CC NNP VBP IN CD TO VB DT NN .\nLeaders of the South Asian Association for Regional Cooperation , or SAARC , agreed to forge ahead with the free trade zone at their summit in Pakistan in 2004 .\tNNS IN DT NNP NNP NNP IN NNP NNP , CC NNP , VBD TO VB RB IN DT JJ NN NN IN PRP$ NN IN NNP IN CD .\nLebanese officials say a suspect in the assassination of former Prime Minister Rafik Hariri has been taken to a Beirut hospital .\tJJ NNS VBP DT NN IN DT NN IN JJ NNP NNP NNP NNP VBZ VBN VBN TO DT NNP NN .\nFormer Lebanese intelligence chief Raymond Azar , who was arrested in August , was moved from his prison cell to a hospital intensive care unit .\tJJ JJ NN NN NNP NNP , WP VBD VBN IN NNP , VBD VBN IN PRP$ NN NN TO DT NN JJ NN NN .\nOfficials say he is suffering from a heart problem .\tNNS VBP PRP VBZ VBG IN DT NN NN .\nHis arrest , along with three other Lebanese generals , was on the recommendation of the United Nations commission investigating Mr. Hariri 's killing .\tPRP$ NN , IN IN CD JJ JJ NNS , VBD IN DT NN IN DT NNP NNPS NN VBG NNP NNP POS NN .\nThe head of that commission , German prosecutor Detlev Mehlis , had been expected to interview five Syrian officials Tuesday in Vienna .\tDT NN IN DT NN , JJ NN NNP NNP , VBD VBN VBN TO VB CD JJ NNS NNP IN NNP .\nBut a U.N. diplomat says they are likely to be questioned next week .\tCC DT NNP NN VBZ PRP VBP JJ TO VB VBN JJ NN .\nLast month , Mr. Mehlis issued a report implicating top Syrian officials in the February assassination .\tJJ NN , NNP NNP VBD DT NN VBG JJ JJ NNS IN DT NNP NN .\nSyria has repeatedly denied any role , and has pledged to cooperate with the U.N. investigation .\tNNP VBZ RB VBN DT NN , CC VBZ VBN TO VB IN DT NNP NN .\nUkrainian President Viktor Yushchenko says his country must strengthen its military defenses and step up efforts to gain membership in the NATO military alliance .\tJJ NNP NNP NNP VBZ PRP$ NN MD VB PRP$ JJ NNS CC VB RP NNS TO VB NN IN DT NNP JJ NN .\nMr. Yushchenko spoke Sunday in Kyiv , in an address marking Ukraine 's 17th anniversary of independence from the former Soviet Union .\tNNP NNP VBD NNP IN NNP , IN DT NN VBG NNP POS JJ NN IN NN IN DT JJ NNP NNP .\nHe spoke as Russia , which strenuously opposes the NATO aspirations of both Ukraine and Georgia , continued its occupation of Georgian territory .\tPRP VBD IN NNP , WDT RB VBZ DT NNP NNS IN DT NNP CC NNP , VBD PRP$ NN IN JJ NN .\nMr. Yushchenko condemned what he called the ' aggression ' of Russian forces in Georgia , while pledging that Ukraine will not become Moscow 's next target .\tNNP NNP VBD WP PRP VBD DT `` NN `` IN JJ NNS IN NNP , IN VBG DT NNP MD RB VB NNP POS JJ NN .\nThe Yushchenko address was followed by a rare parade of Ukraine military hardware , including tanks , armored personnel carriers and missile launchers .\tDT NNP NN VBD VBN IN DT JJ NN IN NNP JJ NN , VBG NNS , VBD NNS NNS CC NN NNS .\nMilitary jets flew overhead in formation .\tJJ NNS VBD RB IN NN .\nIn Moscow , Russian President Dmitri Medvedev and Prime Minister Vladimir Putin marked the Ukrainian anniversary with statements calling for closer bilateral relations .\tIN NNP , JJ NNP NNP NNP CC NNP NNP NNP NNP VBD DT JJ NN IN NNS VBG IN JJR JJ NNS .\nThe head of the U.S. central bank is warning Americans not to assume that recent soaring home values will continue forever .\tDT NN IN DT NNP JJ NN VBZ VBG NNS RB TO VB IN JJ VBG NN NNS MD VB RB .\nOn Friday , Federal Reserve Chairman Alan Greenspan told economists gathered at a resort in Wyoming that increased buying power fueled by higher home prices could disappear if investors turn cautious .\tIN NNP , NNP NNP NNP NNP NNP VBD NNS VBN IN DT NN IN NNP IN JJ VBG NN VBN IN JJR NN NNS MD VB IN NNS VBP JJ .\nHuge numbers of U.S. homeowners have taken out loans against the increased value of their homes to pay for renovations and other purchases , fueling much of the recent growth in the economy .\tJJ NNS IN NNP NNS VBP VBN RP NNS IN DT JJ NN IN PRP$ NNS TO VB IN NNS CC JJ NNS , VBG NN IN DT JJ NN IN DT NN .\nMr. Greenspan also warned that growing trade protectionism and bloated government budget deficits will make it more difficult for the U.S. economy to weather the kind of problems that would follow an abrupt fall in asset prices or other economic shocks .\tNNP NNP RB VBD IN VBG NN NN CC JJ NN NN NNS MD VB PRP RBR JJ IN DT NNP NN TO VB DT NN IN NNS WDT MD VB DT JJ NN IN NN NNS CC JJ JJ NNS .\nPresident Bush has repeated his vow to work together with the new Democrat-controlled Congress on spending measures and education .\tNNP NNP VBZ VBN PRP$ NN TO VB RB IN DT JJ JJ NNP IN NN NNS CC NN .\nMr. Bush said in his weekly radio address Saturday some Democrats agree with him that balancing the budget is a top priority .\tNNP NNP VBD IN PRP$ JJ NN NN NNP DT NNS VBP IN PRP IN VBG DT NN VBZ DT JJ NN .\nHe also called on Congress to reauthorize his ' No Child Left Behind ' Act , which establishes testing and benchmarks for measuring a student 's progress .\tPRP RB VBD IN NNP TO VB PRP$ `` DT NN VBN NNP `` NNP , WDT VBZ NN CC NNS IN VBG DT NN POS NN .\nDemocrats say the former Republican-controlled Congress has not authorized the money needed to fully fund the law .\tNNS VBP DT JJ JJ NNP VBZ RB VBN DT NN VBN TO RB VB DT NN .\nMeanwhile , in the Democrats ' weekly response , Senate Majority Leader Harry Reid of the southwestern state of Nevada spoke out against troop increases in Iraq that Mr. Bush is expected to announce in the coming week .\tRB , IN DT NNPS POS JJ NN , NNP NNP NNP NNP NNP IN DT JJ NN IN NNP VBD RP IN NN NNS IN NNP IN NNP NNP VBZ VBN TO VB IN DT JJ NN .\nReid called any such increases ' a serious mistake . '\tNNP VBD DT JJ NNS `` DT JJ NN . ``\nHe called instead for phased redeployment of U.S. troops from Iraq in the next four to six months .\tPRP VBD RB IN VBN NN IN NNP NNS IN NNP IN DT JJ CD CC CD NNS .\nA presidential commission says U.S. intelligence agencies were completely wrong in most of their pre-war judgments about Iraq 's weapons of mass destruction .\tDT JJ NN VBZ NNP NN NNS VBD RB JJ IN JJS IN PRP$ JJ NNS IN NNP POS NNS IN NN NN .\nThe commission report being released Thursday makes scores of recommendations for improving the U.S. intelligence community 's performance .\tDT NN NN VBG VBN NNP VBZ NNS IN NNS IN VBG DT NNP NN NN POS NN .\nProposals include creation of a separate national counter-proliferation center to fight the spread of chemical , nuclear , and biological weapons .\tNNS VBP NN IN DT JJ JJ NN NN TO VB DT NN IN NN , JJ , CC JJ NNS .\nThe report blames the failures in Iraq on an inability to collect good information , errors in analysis , and a failure to make clear how much of that analysis was based on assumptions rather than evidence .\tDT NN VBZ DT NNS IN NNP IN DT NN TO VB JJ NN , NNS IN NN , CC DT NN TO VB JJ WRB RB IN DT NN VBD VBN IN NNS RB IN NN .\nIt also says U.S. intelligence still knows ' disturbingly little ' about the nuclear programs of what it calls the world 's most dangerous countries .\tPRP RB VBZ NNP NN RB VBZ `` RB JJ `` IN DT JJ NNS IN WP PRP VBZ DT NN POS RBS JJ NNS .\nPresident Bush is due to make a statement on the report after meeting with the commission today .\tNNP NNP VBZ JJ TO VB DT NN IN DT NN IN VBG IN DT NN NN .\nPalestinian medical officials say one militant has been killed and at least 14 other Palestinians have been wounded during an overnight incursion by Israeli forces in the southern Gaza Strip .\tJJ JJ NNS VBP CD NN VBZ VBN VBN CC IN JJS CD JJ NNS VBP VBN VBN IN DT JJ NN IN JJ NNS IN DT JJ NNP NNP .\nWitnesses say the Palestinians were wounded after troops backed by at least 25 tanks and armed bulldozers and aircraft entered an area east of the town of Khan Younis .\tNNS VBP DT NNS VBD VBN IN NNS VBN IN IN JJS CD NNS CC JJ NNS CC NN VBD DT NN NN IN DT NN IN NNP NNP .\nThey say the militant , from the Islamic Jihad movement , was killed in an Israeli air strike targeting a house where several Palestinians were meeting .\tPRP VBP DT NN , IN DT NNP NNP NN , VBD VBN IN DT JJ NN NN VBG DT NN WRB JJ NNS VBD NN .\nWitnesses say the Israeli air force carried out at least two air strikes on the area .\tNNS VBP DT JJ NN NN VBD RP IN JJS CD NN NNS IN DT NN .\nIsraeli forces regularly raid the Hamas-ruled Gaza Strip to stop Palestinian militants from firing rockets into southern Israel .\tJJ NNS RB VBD DT JJ NNP NNP TO VB JJ NNS IN VBG NNS IN JJ NNP .\nIndonesia has received permission from Swiss drug giant Roche to locally produce Tamiflu , the drug thought to be most effective in treating bird flu in humans .\tNNP VBZ VBN NN IN JJ NN NN NNP TO RB VB NNP , DT NN VBN TO VB RBS JJ IN VBG NN NN IN NNS .\nIndonesian Health Minister Siti Fadillah Supari made the announcement Friday , in Jakarta .\tJJ NN NN NNP NNP NNP VBD DT NN NNP , IN NNP .\nIndonesia is the second country to get the go-ahead to produce the anti-flu medicine , along with Vietnam .\tNNP VBZ DT JJ NN TO VB DT NN TO VB DT JJ NN , IN IN NNP .\nThursday , Indonesian agriculture officials said hundreds of chickens infected with the deadly H5N1 strain of the virus died in Aceh province .\tNNP , JJ NN NNS VBD NNS IN NNS VBN IN DT JJ NNP NN IN DT NN VBD IN NNP NN .\nAnd in Vietnam , public health officials said a 15-year-old boy from the northern port city of Haiphong tested positive for the same H5N1 strain .\tCC IN NNP , JJ NN NNS VBD DT JJ NN IN DT JJ JJ NN IN NNP VBD JJ IN DT JJ NNP NN .\nThe findings have not yet been confirmed by the World Health Organization .\tDT NNS VBP RB RB VBN VBN IN DT NNP NNP NNP .\nElsewhere , China also reported a new outbreak of the deadly strain in poultry in the northwestern region of Xinjiang .\tRB , NNP RB VBD DT JJ NN IN DT JJ NN IN NN IN DT JJ NN IN NNP .\nMore than 60 people have died from bird flu in Asia since 2003 .\tJJR IN CD NNS VBP VBN IN NN NN IN NNP IN CD .\nThe International Olympic Committee has announced it will review its procedures for the Olympic torch relay after a series of protests marred the Beijing flame 's worldwide journey .\tDT NNP NNP NNP VBZ VBN PRP MD VB PRP$ NNS IN DT NNP NN NN IN DT NN IN NNS VBD DT NNP NN POS JJ NN .\nIOC president Jacques Rogge said Tuesday the tradition of lighting the Olympic flame in Ancient Olympia and starting the torch relay in Greece will continue .\tNNP NN NNP NNP VBD NNP DT NN IN VBG DT NNP NN IN NNP NNP CC VBG DT NN NN IN NNP MD VB .\nBut he said the IOC 's executive board could limit future torch relays to within the borders of the Olympic host nation .\tCC PRP VBD DT NNP POS JJ NN MD VB JJ NN VBZ TO IN DT NNS IN DT NNP NN NN .\nAngry and sometimes violent protests of China 's human rights record took place as the flame traveled through San Francisco , London and Paris .\tNNP CC RB JJ NNS IN NNP POS JJ NNS NN VBD NN IN DT NN VBD IN NNP NNP , NNP CC NNP .\nIn his opening speech at the three-day IOC session on the eve of the Beijing Games , Rogge said that his organization respect protests and freedom of expression , but violence is against the Olympic spirit .\tIN PRP$ NN NN IN DT JJ NNP NN IN DT NN IN DT NNP NNPS , NNP VBD IN PRP$ NN NN NNS CC NN IN NN , CC NN VBZ IN DT NNP NN .\nU.S. Secretary of State Condoleezza Rice says she welcomes the invitation by Iraq 's independent electoral commission to international monitors to review complaints of fraud in this month 's parliamentary vote .\tNNP NN IN NN NNP NNP VBZ PRP VBZ DT NN IN NNP POS JJ JJ NN TO JJ NNS TO VB NNS IN NN IN DT NN POS JJ NN .\nMs. Rice said Thursday that the panel has ' again demonstrated its commitment to fair and credible elections that meet international standards . '\tNNP NNP VBD NNP IN DT NN VBZ `` RB VBN PRP$ NN TO JJ CC JJ NNS WDT VBP JJ NNS . ``\nShe says the United States strongly backs the review process and looks forward to final results that she says reflect the will of the Iraqi people .\tPRP VBZ DT NNP NNPS RB VBZ DT NN NN CC VBZ RB TO JJ NNS IN PRP VBZ VBP DT NN IN DT JJ NNS .\nSunni Arab and secular Shi'ite political factions have alleged widespread fraud in the December 15 election .\tNNP NNP CC JJ NNP JJ NNS VBP VBN JJ NN IN DT NNP CD NN .\nInitial results show that Shi'ite candidates won 130 seats in the 275-seat parliament .\tJJ NNS VBP IN NNP NNS VBD CD NNS IN DT JJ NN .\nMany Sunnis have held street protests demanding a re-vote .\tJJ NNPS VBP VBN NN NNS VBG DT NN .\nThe U.N. representative to Iraq 's election commission has said the parliamentary elections were transparent with relatively few instances of fraud .\tDT NNP NN TO NNP POS NN NN VBZ VBN DT JJ NNS VBD JJ IN RB JJ NNS IN NN .\nBulgaria 's center-left government has survived a no-confidence vote prompted by a suspension of European Union subsidies .\tNNP POS JJ NN VBZ VBN DT JJ NN VBN IN DT NN IN NNP NNP NNS .\nAll 150 representatives of the three-party ruling coalition voted against the motion , which won the backing of 84 deputies .\tDT CD NNS IN DT JJ NN NN VBD IN DT NN , WDT VBD DT NN IN CD NNS .\nThe European Commission , last week , suspended nearly $ 800 million in aid to the government .\tDT JJ NNP , JJ NN , VBD RB $ CD CD IN NN TO DT NN .\nEU officials said Bulgaria 's push against corruption and criminal gangs is not producing needed results .\tNNP NNS VBD NNP POS NN IN NN CC JJ NNS VBZ RB VBG VBN NNS .\nPrime Minister Stanishev acknowledged what he called ' serious problems ' in many Bulgarian institutions .\tNNP NNP NNP VBD WP PRP VBD `` JJ NNS `` IN JJ JJ NNS .\nBut he also cited ' positive steps ' in recent months , including new laws on conflict of interest .\tCC PRP RB VBD `` JJ NNS `` IN JJ NNS , VBG JJ NNS IN NN IN NN .\nThe no-confidence motion was the sixth against Mr. Stanishev , since he took office in 2005 .\tDT JJ NN VBD DT NN IN NNP NNP , IN PRP VBD NN IN CD .\nRussia says it again has presented to Iran a proposal for reprocessing uranium in Russia from Iran 's nuclear plants .\tNNP VBZ PRP RB VBZ VBN TO NNP DT NN IN VBG NN IN NNP IN NNP POS JJ NNS .\nThe Foreign Ministry , in a statement , said its embassy in Tehran Saturday presented Iranian authorities with a note saying that its offer for setting up a joint Russian-Iranian uranium enrichment facility remains valid .\tDT NNP NNP , IN DT NN , VBD PRP$ NN IN NNP NNP VBD JJ NNS IN DT NN VBG IN PRP$ NN IN VBG RP DT JJ JJ NN NN NN VBZ JJ .\nIran has turned down previous Russian suggestions , insisting it has the right to enrich uranium and produce nuclear fuel domestically despite international efforts to curb its nuclear program .\tNNP VBZ VBN RP JJ JJ NNS , VBG PRP VBZ DT NN TO VB NN CC VB JJ NN RB IN JJ NNS TO VB PRP$ JJ NN .\nThe United States and the European Union have expressed grave concerns that Tehran will use its nuclear program as a cover for developing atomic weapons .\tDT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS IN NNP MD VB PRP$ JJ NN IN DT NN IN VBG JJ NNS .\nUnder a deal signed earlier this year , Moscow agreed to supply enriched uranium fuel for Iran 's Bushehr reactor .\tIN DT NN VBN RBR DT NN , NNP VBD TO VB VBN NN NN IN NNP POS NNP NN .\nBut it also demanded the return of spent fuel , to prevent Tehran from reprocessing it into bomb-grade material .\tCC PRP RB VBD DT NN IN JJ NN , TO VB NNP IN VBG PRP IN JJ NN .\nA retired U.S. Army general and former director of the National Security Agency has called on President Bush to sign a war funding bill passed by Congress this week that would authorize the withdrawal of U.S. troops from Iraq .\tDT JJ NNP NNP JJ CC JJ NN IN DT NNP NNP NNP VBZ VBN IN NNP NNP TO VB DT NN NN NN VBN IN NNP DT NN WDT MD VB DT NN IN NNP NNS IN NNP .\nIn the Democratic Party 's weekly radio address Saturday , former lieutenant general William Odom said he generally does not favor congressional involvement in foreign and military policy .\tIN DT NNP NNP POS JJ NN NN NNP , JJ NN NN NNP NNP VBD PRP RB VBZ RB VB JJ NN IN JJ CC JJ NN .\nBut he said Mr. Bush has allowed the United States to squander its influence , money and blood in the Iraq war .\tCC PRP VBD NNP NNP VBZ VBN DT NNP NNPS TO VB PRP$ NN , NN CC NN IN DT NNP NN .\nOdom said the challenge now is not how to win in Iraq , but how to recover from the mistake of invading Iraq in the first place .\tNNP VBD DT NN RB VBZ RB WRB TO VB IN NNP , CC WRB TO VB IN DT NN IN VBG NNP IN DT JJ NN .\nPresident Bush has promised to veto the funding bill , which requires the U.S. to begin withdrawing troops from Iraq by October 1 .\tNNP NNP VBZ VBN TO VB DT NN NN , WDT VBZ DT NNP TO VB VBG NNS IN NNP IN NNP CD .\nSub-freezing temperatures have killed scores of people throughout eastern and central Europe in the past week , as natural gas shortages compounded the bitter chill in several countries .\tJJ NNS VBP VBN NNS IN NNS IN JJ CC JJ NNP IN DT JJ NN , IN JJ NN NNS VBD DT JJ NN IN JJ NNS .\nUkraine 's health ministry Thursday said the Arctic cold has claimed at least 181 lives and led to more than 2000 hospitalizations since Saturday .\tNNP POS NN NN NNP VBD DT NNP NN VBZ VBN IN JJS CD NNS CC VBN TO JJR IN CD NNS IN NNP .\nWeather-related deaths also have been reported in Russia , Croatia , Romania , Bulgaria , Serbia , Poland and the Baltic countries among others .\tJJ NNS RB VBP VBN VBN IN NNP , NNP , NNP , NNP , NNP , NNP CC DT JJ NNS IN NNS .\nThe situation remains critical in Georgia , where gas shortages and power outages compounded the bitter cold .\tDT NN VBZ JJ IN NNP , WRB NN NNS CC NN NNS VBD DT JJ NN .\nIn a statement Thursday , Russian oil giant Gazprom accused Ukraine of diverting gas meant for the rest of Europe .\tIN DT NN NNP , JJ NN NN NNP VBD NNP IN VBG NN VBN IN DT NN IN NNP .\nWhen faced with similar allegations earlier this week , Ukraine said it was meeting all transit requirements .\tWRB VBN IN JJ NNS RBR DT NN , NNP VBD PRP VBD VBG DT NN NNS .\nIn hopeful news , the icy temperatures that have gripped much of Eastern Europe for the past week have begun to ease up Thursday .\tIN JJ NN , DT NN NNS WDT VBP VBN NN IN NNP NNP IN DT JJ NN VBP VBN TO VB RP NNP .\nThe White House has released new details of President Bush 's planned May trip commemorating the end of World War II in Europe with stops in Russia and three other countries .\tDT NNP NNP VBZ VBN JJ NNS IN NNP NNP POS JJ NNP NN VBG DT NN IN NNP NNP NNP IN NNP IN NNS IN NNP CC CD JJ NNS .\nA White House statement released Thursday , said President Bush will meet the presidents of Latvia , Estonia and Lithuania in Riga , Latvia May 6 .\tDT NNP NNP NN VBN NNP , VBD NNP NNP MD VB DT NNS IN NNP , NNP CC NNP IN NNP , NNP NNP CD .\nIn the Netherlands President Bush is is expected to take part in commemorations of the end of World War II in Europe on May 8 .\tIN DT NNP NNP NNP VBZ VBZ VBN TO VB NN IN NNS IN DT NN IN NNP NNP NNP IN NNP IN NNP CD .\nHe will then travel to Russia , which commemorates the end of the war on May 9 , and meet President Vladimir Putin .\tPRP MD RB VB TO NNP , WDT VBZ DT NN IN DT NN IN NNP CD , CC VB NNP NNP NNP .\nMr. Bush will conclude his visit in Tbilisi , Georgia , where the White House says he plans to ' underscore his support for democracy . '\tNNP NNP MD VB PRP$ NN IN NNP , NNP , WRB DT NNP NNP VBZ PRP VBZ TO `` VB PRP$ NN IN NN . ``\nCuban President Raul Castro says he is open to direct talks with the incoming U.S. president , saying he believes Barack Obama is an honest and sincere man who could improve relations between the two countries .\tJJ NNP NNP NNP VBZ PRP VBZ JJ TO JJ NNS IN DT JJ NNP NN , VBG PRP VBZ NNP NNP VBZ DT JJ CC JJ NN WP MD VB NNS IN DT CD NNS .\nHowever , Mr. Castro says he is in no hurry , and is not sure Mr. Obama can change what the Cuban leader called the ' overall hostile U.S. policy ' towards Cuba .\tRB , NNP NNP VBZ PRP VBZ IN DT NN , CC VBZ RB JJ NNP NNP MD VB WP DT JJ NN VBD DT `` JJ JJ NNP NN `` IN NNP .\nPresident-elect Obama has said he would be willing to speak with Cuba 's leaders .\tNNP NNP VBZ VBN PRP MD VB JJ TO VB IN NNP POS NNS .\nBut he also says he will keep the long-standing economic embargo as a way to push for democratic change .\tCC PRP RB VBZ PRP MD VB DT JJ JJ NN IN DT NN TO VB IN JJ NN .\nMr. Castro 's comments , aired Friday on state television , came the day after Cuba marked the 50th anniversary of the revolution that brought his brother Fidel Castro to power .\tNNP NNP POS NNS , VBD NNP IN NN NN , VBD DT NN IN NNP VBD DT JJ NN IN DT NN WDT VBD PRP$ NN NNP NNP TO NN .\nPresident Bush has rejected calls for withdrawing U.S. troops from Iraq , saying it would be a ' huge mistake ' at this point .\tNNP NNP VBZ VBN NNS IN VBG NNP NNS IN NNP , VBG PRP MD VB DT `` JJ NN `` IN DT NN .\nAt a news conference Monday , Mr. Bush said that leaving the country now would send the wrong message to reformers in the Middle East , and embolden Iran and extremists .\tIN DT NN NN NNP , NNP NNP VBD IN VBG DT NN RB MD VB DT JJ NN TO NNS IN DT NNP NNP , CC VB NNP CC NNS .\nHe added he is committed to securing peace in Iraq and strengthening its government , saying a failure in Iraq would threaten the security of the United States .\tPRP VBD PRP VBZ VBN TO VBG NN IN NNP CC VBG PRP$ NN , VBG DT NN IN NNP MD VB DT NN IN DT NNP NNPS .\nThe president said U.S. military commanders are continuing to adjust their tactics to prevent attacks by terrorist groups and end violence among sectarian groups .\tDT NN VBD NNP JJ NNS VBP VBG TO VB PRP$ NNS TO VB NNS IN JJ NNS CC NN NN IN JJ NNS .\nSome U.S. lawmakers have been calling on the president to set a date for withdrawing U.S. troops from Iraq .\tDT NNP NNS VBP VBN VBG IN DT NN TO VB DT NN IN VBG NNP NNS IN NNP .\nIn Baghdad , U.S. military officials said a service member died in a roadside bomb attack Monday .\tIN NNP , NNP JJ NNS VBD DT NN NN VBD IN DT NN NN NN NNP .\nHuman Rights Watch is urging the United States to use its Security Council presidency to create a new U.N. force in Sudan 's troubled Darfur region .\tNNP NNP NNP VBZ VBG DT NNP NNPS TO VB PRP$ NNP NNP NN TO VB DT JJ NNP NN IN NNP POS JJ NNP NN .\nThe New York-based group says such a mission should have a strong mandate to protect civilians .\tDT NNP JJ NN VBZ PDT DT NN MD VB DT JJ NN TO VB NNS .\nThe rights group says the African Union troops now in Darfur have acted with great resolve and courage , but lack manpower and resources .\tDT NNS NN VBZ DT NNP NNP NNS RB IN NNP VBP VBN IN JJ NN CC NN , CC VBZ NN CC NNS .\nIt says the deteriorating situation in Darfur demands a major new international effort to save lives there .\tPRP VBZ DT VBG NN IN NNP VBZ DT JJ JJ JJ NN TO VB NNS RB .\nHuman Rights Watch says the United States should use its presidency of the Security Council in February to jump-start this effort .\tNNP NNP NNP VBZ DT NNP NNPS MD VB PRP$ NN IN DT NNP NNP IN NNP TO VB DT NN .\nViolence against civilians in Darfur has surged in the last three months .\tNN IN NNS IN NNP VBZ VBN IN DT JJ CD NNS .\nHuman Rights Watch blames militias sponsored by Sudan 's government .\tNNP NNP NNP VBZ NNS VBN IN NNP POS NN .\nNews reports said a small aircraft that crashed in northeast China may have been a North Korean fighter jet .\tNNP NNS VBD DT JJ NN WDT VBD IN NN NNP MD VB VBN DT JJ JJ NN NN .\nBeijing 's official Xinhua news agency said the aircraft went down Tuesday in Fushun County , located in Liaoning province .\tNNP POS JJ NNP NN NN VBD DT NN VBD RB NNP IN NNP NNP , VBN IN VBG NN .\nAn unnamed government source told Xinhua the jet ' might be ' a North Korean plane .\tDT JJ NN NN VBD NNP DT NN `` MD VB `` DT JJ JJ NN .\nXinhua did not identify the pilot or the aircraft .\tNNP VBD RB VB DT NN CC DT NN .\nSouth Korea 's Yonhap news agency said intelligence sources believe the aircraft appeared to be a Soviet-era jet fighter , after earlier reporting said it may have been a helicopter .\tNNP NNP POS NNP NN NN VBD NN NNS VBP DT NN VBD TO VB DT JJ NN NN , IN RBR VBG VBD PRP MD VB VBN DT NN .\nThe anonymous sources said the pilot could have lost his way while flying to Russia .\tDT JJ NNS VBD DT NN MD VB VBN PRP$ NN IN VBG TO NNP .\nYonhap said the pilot , who was the only person on board the aircraft , was killed .\tNNP VBD DT NN , WP VBD DT JJ NN IN NN DT NN , VBD VBN .\nFushun is located about 150 kilometers from the North Korean city of Sinuiju , where a military airbase is located .\tNNP VBZ VBN IN CD NNS IN DT JJ JJ NN IN NNP , WRB DT JJ NN VBZ VBN .\nHundreds of protesters marched through the streets of Guatemala City Friday to voice opposition to the Central American Free Trade Agreement with the United States .\tNNS IN NNS VBD IN DT NNS IN NNP NNP NNP TO VB NN TO DT NNP NNP NNP NNP NNP IN DT NNP NNPS .\nThe protesters said the pact , known as CAFTA , will benefit only large companies and harm the poor .\tDT NNS VBD DT NN , VBN IN NNP , MD VB RB JJ NNS CC VB DT NN .\nSupporters say the deal will help lift the region out of poverty .\tNNS VBP DT NN MD VB VB DT NN IN IN NN .\nThe trade agreement was supposed to take effect on January 1 , but was delayed .\tDT NN NN VBD VBN TO VB NN IN NNP CD , CC VBD VBN .\nU.S. Trade Representative Rob Portman , however , recommended Friday that the accord with El Salvador take effect on March 1 .\tNNP NNP NNP NNP NNP , RB , VBD NNP IN DT NN IN NNP NNP VBP NN IN NNP CD .\nThe other countries that make up CAFTA have not yet met rules proposed by the United States .\tDT JJ NNS WDT VBP RP NNP VBP RB RB VBN NNS VBN IN DT NNP NNPS .\nCAFTA also comprises Costa Rica , Honduras , Nicaragua and the Dominican Republic .\tNNP RB VBZ NNP NNP , NNP , NNP CC DT NNP NNP .\nCosta Rica is the only country within CAFTA that has not yet ratified the agreement .\tNNP NNP VBZ DT JJ NN IN NNP WDT VBZ RB RB VBN DT NN .\nPresident Bush has congratulated the Congolese people for what he called ' their deep desire to embrace democracy ' - because of the country 's constitutional referendum .\tNNP NNP VBZ VBN DT JJ NNS IN WP PRP VBD `` PRP$ JJ NN TO VB NN `` : IN IN DT NN POS JJ NN .\nA White House spokesman , in a statement , said the referendum represents an important step in the democratic process in the Democratic Republic of Congo .\tDT NNP NNP NN , IN DT NN , VBD DT NN VBZ DT JJ NN IN DT JJ NN IN DT JJ NNP IN NNP .\nPolls closed Monday after a second day of voting on a new constitution designed to end years of war and chaos .\tNNS VBD NNP IN DT JJ NN IN VBG IN DT JJ NN VBN TO VB NNS IN NN CC NN .\nOfficials say turnout was high for the referendum .\tNNS VBP NN VBD JJ IN DT NN .\nFinal results are not expected for several days .\tJJ NNS VBP RB VBN IN JJ NNS .\nIf approved , the constitution would pave the way for Congolese elections next year .\tIN VBN , DT NN MD VB DT NN IN JJ NNS JJ NN .\nThe DRC is struggling to emerge from decades of political instability and violence .\tDT NNP VBZ VBG TO VB IN NNS IN JJ NN CC NN .\nThe country 's most recent conflict , which ended in 2003 , drew in armies from six neighboring states and left nearly four million people dead .\tDT NN POS RBS JJ NN , WDT VBD IN CD , VBD IN NNS IN CD JJ NNS CC VBD RB CD CD NNS JJ .\nOne of the world 's top think-tanks says the Middle East is more secure than a year ago , in part because of U.S. policies promoting democracy in the region .\tCD IN DT NN POS JJ NNS VBZ DT NNP NNP VBZ RBR JJ IN DT NN RB , IN NN IN IN NNP NNS VBG NN IN DT NN .\nBut the London-based International Institute for Strategic Studies also says that al-Qaida terrorists continue to use the U.S. presence in Iraq as a recruitment tool across much of the Muslim world .\tCC DT JJ NNP NNP IN NNP NNP RB VBZ IN NNP NNS VBP TO VB DT NNP NN IN NNP IN DT NN NN IN NN IN DT NNP NN .\nIn its annual survey , the IISS hails progress in the Israeli-Palestinian conflict , the promise of multi-party elections in Egypt , and the popular uprising against Syria in Lebanon .\tIN PRP$ JJ NN , DT NNP VBZ NN IN DT JJ NN , DT NN IN JJ NNS IN NNP , CC DT JJ NN IN NNP IN NNP .\nIt calls U.S. policy ' fairly effective ' in encouraging political reforms throughout the region .\tPRP VBZ NNP NN `` RB JJ `` IN VBG JJ NNS IN DT NN .\nThe report calls the November , 2004 death of Palestinian leader Yasser Arafat the tipping point in the push to end the Israel-Palestinian conflict .\tDT NN VBZ DT NNP , CD NN IN JJ NN NNP NNP DT NN NN IN DT NN TO VB DT JJ NN .\nIt also notes President Bush 's use of U.S. influence to bring the two sides together .\tPRP RB VBZ NNP NNP POS NN IN NNP NN TO VB DT CD NNS RB .\nIndian police say a bus and van collision has killed 34 people , including the bus driver , and injured more than two dozen other people .\tJJ NNS VBP DT NN CC NN NN VBZ VBN CD NNS , VBG DT NN NN , CC VBD JJR IN CD NN JJ NNS .\nInvestigators say the van was returning from a funeral with mourners Saturday when the crash occurred near Badaun , in Uttar Pradesh state .\tNNS VBP DT NN VBD VBG IN DT NN IN NNS NNP WRB DT NN VBD IN NNP , IN NNP NNP NN .\nThe World Health Organiation says India has the highest number of road fatalities in the world .\tDT NNP NNP NNP VBZ NNP VBZ DT JJS NN IN NN NNS IN DT NN .\nAuthorities say more than 1,10,000 people die each year on India 's roads , due mainly to speeding , bad roads and poorly maintained vehicles .\tNNS VBP JJR IN CD NNS VBP DT NN IN NNP POS NNS , JJ RB TO NN , JJ NNS CC RB VBN NNS .\nIraqi police say insurgents have carried out at least four more car bomb attacks in Baghdad and the northern city of Mosul , killing nine people and wounding nearly 30 others .\tJJ NNS VBP NNS VBP VBN RP IN JJS CD JJR NN NN NNS IN NNP CC DT JJ NN IN NNP , VBG CD NNS CC VBG RB CD NNS .\nThe attacks are part of a sharp upsurge in bombings since Baghdad 's new government was announced last week .\tDT NNS VBP NN IN DT JJ NN IN NNS IN NNP POS JJ NN VBD VBN JJ NN .\nMore than 100 people , most of them civilians , have been killed since Friday .\tJJR IN CD NNS , JJS IN PRP NNS , VBP VBN VBN IN NNP .\nIn Monday 's deadliest attack , a car bomb exploded in a south Baghdad market area , killing six pedestrians .\tIN NNP POS JJS NN , DT NN NN VBD IN DT JJ NNP NN NN , VBG CD NNS .\nAt least two other people were killed in a second attack in the capital .\tIN JJS CD JJ NNS VBD VBN IN DT JJ NN IN DT NN .\nTo the north , U.S. officials say two suicide bombers in Mosul blew themselves up , killing a child and wounding 15 others .\tTO DT NN , NNP NNS VBP CD NN NNS IN NNP VBD PRP RP , VBG DT NN CC VBG CD NNS .\nSunday , bombings killed more than 30 people , including 25 Kurds attending the funeral of a slain local Kurdish official in the northern town of Tall Afar .\tNNP , NNS VBD JJR IN CD NNS , VBG CD NNPS VBG DT NN IN DT NN JJ NNP NN IN DT JJ NN IN NNP NNP .\nA Pakistani immigrant accused of plotting to bomb a subway station in New York City took the stand in his own defense Monday .\tDT JJ NN VBN IN VBG TO VB DT NN NN IN NNP NNP NNP VBD DT NN IN PRP$ JJ NN NNP .\nShahawar Matin Siraj told a Brooklyn , New York courtroom that he planned the attack only after a police informer stoked his anger against the United States .\tNNP NNP NNP VBD DT NNP , NNP NNP NN IN PRP VBD DT NN RB IN DT NN NN VBD PRP$ NN IN DT NNP NNPS .\nThe 23-year-old defendant said he came up with the plot to bomb the busy Herald Square subway station in 2004 to impress the informer , Osama Eldawoody .\tDT JJ NN VBD PRP VBD RP IN DT NN TO VB DT JJ NNP NNP NN NN IN CD TO VB DT NN , NNP NNP .\nSiraj says he viewed Eldawoody as a brother figure , and maintains Eldawoody was the leader of the bombing conspiracy .\tNNP VBZ PRP VBD NNP IN DT NN NN , CC VBZ NNP VBD DT NN IN DT VBG NN .\nThe defendant said he backed out of the plot when he realized civilians could be hurt .\tDT NN VBD PRP VBD IN IN DT NN WRB PRP VBD NNS MD VB VBN .\nManhattan 's Herald Square is a central shopping district , and includes department store Macy 's famed flagship store .\tNNP POS NNP NNP VBZ DT JJ NN NN , CC VBZ NN NN NNP POS JJ NN NN .\nPresident Bush has welcomed congressional approval of a plan to allow the United States to ship civilian nuclear fuel and technology to India .\tNNP NNP VBZ VBN JJ NN IN DT NN TO VB DT NNP NNPS TO VB JJ JJ NN CC NN TO NNP .\nIn a statement issued Saturday , the president said the deal will help both nations meet their energy needs without increasing air pollution and greenhouse gases .\tIN DT NN VBN NNP , DT NN VBD DT NN MD VB DT NNS VBP PRP$ NN NNS IN VBG NN NN CC NN NNS .\nHe said it also promotes clean development and non-proliferation .\tPRP VBD PRP RB VBZ JJ NN CC NN .\nU.S. lawmakers voted overnight Saturday to approve the measure , which requires India to open its civilian nuclear facilities to international inspection .\tNNP NNS VBD JJ NNP TO VB DT NN , WDT VBZ NNP TO VB PRP$ JJ JJ NNS TO JJ NN .\nIndia 's government welcomed the agreement .\tNNP POS NN VBD DT NN .\nBut the foreign ministry expressed concern about terms of the U.S. law that call on India to oppose Iran 's nuclear ambitions .\tCC DT JJ NN VBD NN IN NNS IN DT NNP NN WDT VBP IN NNP TO VB NNP POS JJ NNS .\nMinistry officials said India 's foreign policy will be determined only by national interests .\tNNP NNS VBD NNP POS JJ NN MD VB VBN RB IN JJ NNS .\nPro-democracy supporters protested across Egypt Wednesday to demand political reforms and an end to President Hosni Mubarak 's decades-long rule .\tJJ NNS VBD IN NNP NNP TO VB JJ NNS CC DT NN TO NNP NNP NNP POS JJ NN .\nProtesters are demanding multi-party elections and restrictions on the number of terms any candidate can run .\tNNS VBP VBG JJ NNS CC NNS IN DT NN IN NNS DT NN MD VB .\nMr. Mubarak , who has already served four terms , said in an interview Tuesday that he has not yet decided whether to run in elections expected in September .\tNNP NNP , WP VBZ RB VBN CD NNS , VBD IN DT NN NNP IN PRP VBZ RB RB VBN IN TO VB IN NNS VBN IN NNP .\nWitnesses and protest organizers in Cairo , Suez and several other towns say police detained dozens of demonstrators carrying the banner of the Kifaya Movement .\tNNS CC NN NNS IN NNP , NNP CC JJ JJ NNS VBP NNS VBD NNS IN NNS VBG DT NN IN DT NNP NNP .\nIn March , Mr. Mubarak 's 41-year-old son , Gamal , ruled out running for the presidency , and denied his father ordered multi-party amendments to the constitution so the son could run .\tIN NNP , NNP NNP POS JJ NN , NNP , VBD RP VBG IN DT NN , CC VBD PRP$ NN VBD JJ NNS TO DT NN IN DT NN MD VB .\nA college professor and his wife in Florida have been accused of spying for Cuba for decades .\tDT NN NN CC PRP$ NN IN NNP VBP VBN VBN IN VBG IN NNP IN NNS .\nIn an indictment made public Monday in Miami , prosecutors said 61 year-old Carlos Alvarez and his 55 year-old wife Elsa had been sending to Cuba information on U.S. government officials and anti-Castro exile groups .\tIN DT NN VBN JJ NNP IN NNP , NNS VBD CD JJ NNP NNP CC PRP$ CD JJ NN NNP VBD VBN VBG TO NNP NN IN NNP NN NNS CC JJ NN NNS .\nProsecutor Brian Frazier said Carlos began spying for Cuba in 1977 , and Elsa began in 1982 .\tNNP NNP NNP VBD NNP VBD VBG IN NNP IN CD , CC NNP VBD IN CD .\nFrazier said the couple used short wave radio and encryption equipment to send messages to Cuba .\tNNP VBD DT NN VBD JJ NN NN CC NN NN TO VB NNS TO NNP .\nAn agent for the Federal Bureau of Investigation said there was no evidence they provided classified or military information to Cuba .\tDT NN IN DT NNP NNP IN NNP VBD EX VBD DT NN PRP VBD JJ CC JJ NN TO NNP .\nThe couple was employed at Florida International University .\tDT NN VBD VBN IN NNP NNP NNP .\nThe judge in the case ordered them held without bail and scheduled another hearing for January 19 .\tDT NN IN DT NN VBD PRP VBN IN NN CC VBN DT NN IN NNP CD .\nPresident Bush has extended his greetings to Muslims observing Ramadan in America and around the world .\tNNP NNP VBZ VBN PRP$ NNS TO NNP VBG NNP IN NNP CC IN DT NN .\nIn a White House statement released Friday , Mr. Bush said Ramadan is the holiest time of the Muslim year and an important holiday .\tIN DT NNP NNP NN VBN NNP , NNP NNP VBD NNP VBZ DT JJS NN IN DT NNP NN CC DT JJ NN .\nHe said Ramadan observes the delivery of God 's word , in the form of the Qur'an , to the prophet Muhammad .\tPRP VBD NNP VBZ DT NN IN NNP POS NN , IN DT NN IN DT NNP , TO DT NN NNP .\nThe president also said the holiday is an opportunity to gather with friends and family and to show thanks for God 's blessings through works of charity .\tDT NN RB VBD DT NN VBZ DT NN TO VB IN NNS CC NN CC TO VB NNS IN NNP POS NNS IN NNS IN NN .\nMr. Bush said Ramadan and the upcoming holiday seasons are good times to remember common values that bind all people together .\tNNP NNP VBD NNP CC DT JJ NN NNS VBP JJ NNS TO VB JJ NNS WDT VBP DT NNS RB .\nHe added that Muslim Americans enrich U.S. society .\tPRP VBD IN NNP NNS VBP NNP NN .\nIsrael says Syria has test-fired three Scud missiles - the first such tests since 2001 .\tNNP VBZ NNP VBZ VBN CD NNP NNS IN DT JJ JJ NNS IN CD .\nIsraeli military officials said their air defense systems detected the missile launches from northern Syria last Friday .\tJJ NN NNS VBD PRP$ NN NN NNS VBD DT NN NNS IN JJ NNP JJ NNP .\nThey said one missile broke up over Turkey , showering debris on two towns .\tPRP VBD CD NN VBD RP IN NNP , VBG NN IN CD NNS .\nTurkish officials say Syria has informed them that the incident was an accident that happened during a military exercise .\tJJ NNS VBP NNP VBZ VBN PRP IN DT NN VBD DT NN WDT VBD IN DT JJ NN .\nTurkish authorities say no injuries were reported .\tJJ NNS VBP DT NNS VBD VBN .\nThere has been no public comment from Syria .\tEX VBZ VBN DT JJ NN IN NNP .\nIsrael 's military described the tests as an act of defiance toward the United States and the United Nations , which pushed Syria to withdraw its troops from Lebanon this year .\tNNP POS JJ VBD DT NNS IN DT NN IN NN IN DT NNP NNPS CC DT NNP NNPS , WDT VBD NNP TO VB PRP$ NNS IN NNP DT NN .\nIsraeli officials also expressed concern that the missiles could carry chemical weapons capable of hitting Israeli targets .\tJJ NNS RB VBD NN IN DT NNS MD VB NN NNS JJ IN VBG JJ NNS .\nNigerian police say four people have been detained for allegedly stealing election machines at the Lagos airport .\tJJ NNS VBP CD NNS VBP VBN VBN IN RB VBG NN NNS IN DT NNP NN .\nPolice say the suspects were taken into custody overnight Friday .\tNNS VBP DT NNS VBD VBN IN NN JJ NNP .\nThey allegedly stole 20 of what are known as ' direct data capture machines ' after being unloaded at the airport Monday .\tPRP RB VBP CD IN WP VBP VBN IN `` JJ NN NN NNS `` IN VBG VBN IN DT NN NNP .\nAuthorities say 16 of the machines have been recovered .\tNNS VBP CD IN DT NNS VBP VBN VBN .\nPolice are investigating whether others may have been involved in the heist .\tNNS VBP VBG IN NNS MD VB VBN VBN IN DT NN .\nOfficials say the thefts will not impact voter registration set for January 15 and lasting two weeks .\tNNS VBP DT NNS MD RB VB NN NN VBN IN NNP CD CC JJ CD NNS .\nNigeria will hold elections for president , parliament and state level races in April .\tNNP MD VB NNS IN NN , NN CC NN NN NNS IN NNP .\nA leading international human rights group says Russia 's new law restricting non-governmental groups is repressive and it is asking the Group of Eight industrialized nations to make it a key issue on the agendas of future meetings .\tDT VBG JJ JJ NNS NN VBZ NNP POS JJ NN VBG JJ NNS VBZ JJ CC PRP VBZ VBG DT NNP IN CD JJ NNS TO VB PRP DT JJ NN IN DT NNS IN JJ NNS .\nMoscow takes over the rotating leadership of the G-8 , the world 's seven leading industrialized nation plus Russia , on January 1 and President Vladimir Putin is expected to sign the bill into law before the end of this year .\tNNP VBZ RP DT VBG NN IN DT NNP , DT NN POS CD VBG JJ NN IN NNP , IN NNP CD CC NNP NNP NNP VBZ VBN TO VB DT NN IN NN IN DT NN IN DT NN .\nNew York-based Human Rights Watch says the legislation is broad and ambiguous , giving Russian government offices an unprecedented level of discretion in regulating non-governmental organizations .\tNNP JJ NNP NNP NNP VBZ DT NN VBZ JJ CC JJ , VBG JJ NN NNS DT JJ NN IN NN IN VBG JJ NNS .\nIt notes that Russian leaders insist the limitations are necessary for Russia 's security .\tPRP VBZ IN JJ NNS VBP DT NNS VBP JJ IN NNP POS NN .\nHowever , the organization says enactment of the law will not only severely restrict NGOs , but will also undermine the rights of all Russians .\tRB , DT NN VBZ NN IN DT NN MD RB RB RB VB NNS , CC MD RB VB DT NNS IN DT NNS .\nThe international agency that suspended millions of dollars in AIDS grants to Uganda last week says it likely will resume funding by October .\tDT JJ NN WDT VBD NNS IN NNS IN NNP NNS TO NNP JJ NN VBZ PRP RB MD VB NN IN NNP .\nA spokesman for the Global Fund to Fight AIDS , Tuberculosis and Malaria , Bradford Herbert , said Wednesday that Uganda has taken quick steps to resolve concerns about the mismanagement of agency funding .\tDT NN IN DT NNP NNP TO VB NNP , NNP CC NNP , NNP NNP , VBD NNP IN NNP VBZ VBN JJ NNS TO VB NNS IN DT NN IN NN NN .\nHe told reporters in Kampala the suspension will be lifted as long as progress continues .\tPRP VBD NNS IN NNP DT NN MD VB VBN RB RB IN NN VBZ .\nJust days after grants to Uganda were suspended , the government appointed an international auditing firm to oversee its AIDS programs .\tRB NNS IN NNS TO NNP VBD VBN , DT NN VBD DT JJ NN NN TO VB PRP$ NNP NNS .\nErnst and Young will run Uganda 's Project Management Unit - which disburses grants .\tNNP CC NNP MD VB NNP POS NNP NNP NNP : WDT VBZ NNS .\nMr. Herbert said three Global Fund staffers will stay in Uganda to monitor the project and make sure that life-saving drugs are distributed .\tNNP NNP VBD CD NNP NNP NNS MD VB IN NNP TO VB DT NN CC VB JJ IN JJ NNS VBP VBN .\nA top Ugandan finance ministry official , Chris Kasami , said the government is committed to recovering any money that may have been stolen .\tDT JJ JJ NN NN NN , NNP NNP , VBD DT NN VBZ VBN TO VBG DT NN WDT MD VB VBN VBN .\nIndian families have begun to bury relatives killed by a series of bomb blasts in the western part of the country , as security forces patrol to avoid further violence .\tJJ NNS VBP VBN TO VB NNS VBN IN DT NN IN NN NNS IN DT JJ NN IN DT NN , IN NN NNS VBP TO VB JJ NN .\nSeveral funerals were held overnight in the city of Malegaon , as Muslims celebrated a religious festival called Shab-e-Barat .\tJJ NNS VBD VBN RB IN DT NN IN NNP , IN NNPS VBD DT JJ NN VBD NNP .\nOfficials said at least 31 people were killed and 100 others were wounded in the attacks Friday near a burial ground , a mosque and the town square .\tNNS VBD IN JJS CD NNS VBD VBN CC CD NNS VBD VBN IN DT NNS NNP IN DT JJ NN , DT NN CC DT NN NN .\nThe head of India 's ruling Congress Party , Sonia Gandhi , arrived in the town to visit with the wounded and relatives of the dead .\tDT NN IN NNP POS VBG NNP NNP , NNP NNP , VBD IN DT NN TO VB IN DT VBN CC NNS IN DT NN .\nAuthorities imposed a curfew on Malegaon , amid concern that the blasts might spark clashes between the local Muslim and Hindu communities .\tNNS VBD DT NN IN NNP , IN NN IN DT NNS MD VB NNS IN DT JJ NN CC NNP NNS .\nThere have been no claims of responsibility for the attacks .\tEX VBP VBN DT NNS IN NN IN DT NNS .\nRussia 's Defense Minister Sergei Ivanov says the Russian military plans to deploy a new intercontinental ballistic missile system .\tNNP POS NNP NNP NNP NNP VBZ DT JJ NN VBZ TO VB DT JJ JJ JJ NN NN .\nA successful test launch of the system was conducted Friday .\tDT JJ NN NN IN DT NN VBD VBN NNP .\nMr. Ivanov said the military expects to begin buying the new mobile Topol-M missiles in 2005 , and to put them in service by January , 2006 .\tNNP NNP VBD DT NN VBZ TO VB VBG DT JJ JJ JJ NNS IN CD , CC TO VB PRP IN NN IN NNP , CD .\nMr. Ivanov said this latest test was the final one for the new weapon , which he said was easier to fire and had greater accuracy and range than the current model .\tNNP NNP VBD DT JJS NN VBD DT JJ NN IN DT JJ NN , WDT PRP VBD VBD JJR TO VB CC VBD JJR NN CC NN IN DT JJ NN .\nMr. Ivanov added that Russia will keep its nuclear capability equal to that of the United States and other nuclear powers in technological sophistication , but not in the actual numbers of weapons .\tNNP NNP VBD IN NNP MD VB PRP$ JJ NN JJ TO DT IN DT NNP NNPS CC JJ JJ NNS IN JJ NN , CC RB IN DT JJ NNS IN NNS .\nThe U.S. Consumer Product Safety Commission [ CPSC ] has launched a new program to screen toys and other imports for potential safety hazards .\tDT NNP NNP NNP NNP NNP LRB NNP RRB VBZ VBN DT JJ NN TO VB NNS CC JJ NNS IN JJ NN NNS .\nWorking with U.S. Customs agents , the new import surveillance program plans to test selected products at various ports in the United States to make sure the products are safe before they enter the U.S. market .\tVBG IN NNP NNP NNS , DT JJ NN NN NN VBZ TO VB JJ NNS IN JJ NNS IN DT NNP NNPS TO VB JJ DT NNS VBP JJ IN PRP VBP DT NNP NN .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nA strong winter storm has caused trouble for travelers , downed power lines to thousands of homes and caused deadly accidents in the midwestern United States .\tDT JJ NN NN VBZ VBN NN IN NNS , VBN NN NNS TO NNS IN NNS CC VBN JJ NNS IN DT JJ NNP NNPS .\nIn Dallas , Texas , icy conditions on Sunday prompted the cancellation of about 300 airline flights .\tIN NNP , NNP , NN NNS IN NNP VBD DT NN IN IN CD NN NNS .\nThe storm also prompted the governors of Missouri and Oklahoma to declare a state of emergency .\tDT NN RB VBD DT NNS IN NNP CC NNP TO VB DT NN IN NN .\nPolice in Oklahoma say icy roads were to blame for a head-on crash between a minivan and a tractor trailer truck that killed seven occupants of the van .\tNNS IN NNP VBP NN NNS VBD TO VB IN DT JJ NN IN DT NN CC DT NN NN NN WDT VBD CD NNS IN DT NN .\nThe seven were Mexican nationals .\tDT CD VBD JJ NNS .\nFive other occupants of the van were taken to the hospital .\tCD JJ NNS IN DT NN VBD VBN TO DT NN .\nInvestigators said the minivan was hit after it skidded across the median of the divided highway Sunday morning about 180 kilometers west of Oklahoma City .\tNNS VBD DT NN VBD VBN IN PRP VBD IN DT NN IN DT VBN NN NNP NN IN CD NNS JJS IN NNP NNP .\nSpain says it will lift immigration restrictions for workers from the European Union 's new Eastern European member states .\tNNP VBZ PRP MD VB NN NNS IN NNS IN DT NNP NNP POS JJ JJ JJ NN NNS .\nPrime Minister Jose Luis Rodriguez Zapatero said Thursday that beginning May 1 , the government will open the Spanish labor market to workers from Poland , the Czech Republic , Latvia , Lithuania , Estonia , Hungary , Slovakia and Slovenia .\tNNP NNP NNP NNP NNP NNP VBD NNP IN VBG NNP CD , DT NN MD VB DT JJ NN NN TO NNS IN NNP , DT JJ NNP , NNP , NNP , NNP , NNP , NNP CC NNP .\nWorkers from the two other new EU members , Cyprus and Malta , already have free access to Spain .\tNNS IN DT CD JJ JJ NNP NNS , NNP CC NNP , RB VBP JJ NN TO NNP .\nThe decision brings Spain into line with some EU countries such as Britain , Ireland and Sweden , which have no restrictions on workers from Eastern Europe .\tDT NN VBZ NNP IN NN IN DT NNP NNS JJ IN NNP , NNP CC NNP , WDT VBP DT NNS IN NNS IN NNP NNP .\nSpain 's move follows an immigration amnesty begun last year that granted nearly 8,00,000 new residence permits and moved thousands of undocumented workers out of the country 's underground economy .\tNNP POS NN VBZ DT NN NN VBN JJ NN WDT VBD RB CD JJ NN NNS CC VBD NNS IN JJ NNS IN IN DT NN POS JJ NN .\nA tribal chieftain in Sudan 's Darfur region says at least 55 people have been killed and more than 80 others wounded in fighting between the south Sudan army and Darfuri Arab tribes .\tDT JJ NN IN NNP POS NNP NN VBZ IN JJS CD NNS VBP VBN VBN CC JJR IN CD NNS VBN IN VBG IN DT JJ NNP NN CC NNP NNP NNS .\nRizeigat tribal leader Mohamed Eissa Aliu said the fighting occurred Friday .\tNNP JJ NN NNP NNP NNP VBD DT NN VBD NNP .\nHe said reinforcements from both sides are converging on the area near the border of the southern state of Western Bahr al-Ghazal .\tPRP VBD NNS IN DT NNS VBP VBG IN DT NN IN DT NN IN DT JJ NN IN NNP NNP NNP .\nAliu 's account to Western reporters has not been confirmed .\tNNP POS NN TO JJ NNS VBZ RB VBN VBN .\nThe south Sudan army confirmed Saturday it had come under attack , but it said the assault came from the northern-based central government army and not Rizeigat tribesmen .\tDT JJ NNP NN VBD NNP PRP VBD VBN IN NN , CC PRP VBD DT NN VBD IN DT JJ JJ NN NN CC RB NNP NNS .\nTensions in Sudan remain high following the country 's first multi-party elections in 24 years .\tNNS IN NNP VBP JJ VBG DT NN POS JJ JJ NNS IN CD NNS .\nThe polls earlier this month were boycotted by several opposition parties and marred by a series of technical and logistical problems .\tDT NNS RBR DT NN VBD VBN IN JJ NN NNS CC VBN IN DT NN IN JJ CC JJ NNS .\nPakistani Prime Minister Shaukat Aziz says progress in peace talks with India hinges on progress in resolving the Kashmir dispute .\tJJ NNP NNP NNP NNP VBZ NN IN NN NNS IN NNP VBZ IN NN IN VBG DT NNP NN .\nMr. Aziz spoke to reporters after talks with his Indian counterpart , Manmohan Singh , in New Delhi Wednesday .\tNNP NNP VBD TO NNS IN NNS IN PRP$ JJ NN , NNP NNP , IN NNP NNP NNP .\nMr. Aziz said Pakistan believes the ' core issue of Kashmir ' needs to be addressed , and progress on other issues will be made in tandem .\tNNP NNP VBD NNP VBZ DT `` JJ NN IN NNP `` VBZ TO VB VBN , CC NN IN JJ NNS MD VB VBN IN NN .\nNew Delhi says further improvements in relations between the two nuclear-armed neighbors should not be held hostage to their decades-old dispute over Kashmir .\tNNP NNP VBZ JJ NNS IN NNS IN DT CD JJ NNS MD RB VB VBN NN TO PRP$ JJ NN IN NNP .\nMr. Aziz , who arrived in New Delhi Tuesday , has had separate meetings with Indian Foreign Minister Natwar Singh and Muslim separatist leaders of Indian Kashmir .\tNNP NNP , WP VBD IN NNP NNP NNP , VBZ VBN JJ NNS IN JJ NNP NNP NNP NNP CC NNP JJ NNS IN JJ NNP .\nThe Pakistani prime minister is in India as part of a South Asia tour as the outgoing chairman of a regional grouping - the South Asian Association for Regional Cooperation , or SAARC .\tDT JJ JJ NN VBZ IN NNP IN NN IN DT NNP NNP NN IN DT JJ NN IN DT JJ NN IN DT NNP NNP NNP IN NNP NNP , CC NNP .\nAn explosion during a parade of the militant Palestinian group Hamas has killed 15 people and wounded 80 others , including children , in the Gaza Strip .\tDT NN IN DT NN IN DT JJ JJ NN NNP VBZ VBN CD NNS CC VBD CD NNS , VBG NNS , IN DT NNP NNP .\nPalestinian President Mahmoud Abbas 's Fatah faction blamed Hamas for the casualties for holding a military parade in the densely populated Jebaliya refugee camp .\tJJ NNP NNP NNP POS NNP NN VBD NNP IN DT NNS IN VBG DT JJ NN IN DT RB JJ NNP NN NN .\nWitnesses say a truck carrying homemade weapons accidentally exploded .\tNNS VBP DT NN VBG JJ NNS RB VBD .\nBut Hamas blamed Israel , saying a drone flying over the area fired a missile at the vehicle .\tCC NNP VBD NNP , VBG DT NN VBG IN DT NN VBD DT NN IN DT NN .\nIsrael quickly denied any involvement .\tNNP RB VBD DT NN .\nEarlier Friday , an Israeli raid in the West Bank town of Tulkarem turned violent and three Islamic Jihad members were killed .\tRBR NNP , DT JJ NN IN DT NNP NNP NN IN NNP VBD JJ CC CD NNP NNP NNS VBD VBN .\nIslamic Jihad retaliated , firing several rockets into Israel that did not cause casualties or damage .\tNNP NNP VBD , VBG JJ NNS IN NNP WDT VBD RB VB NNS CC NN .\nPalestinian chief negotiator Saeb Erekat condemned the Israeli raid and urged calm on all sides .\tJJ NN NN NNP NNP VBD DT JJ NN CC VBD NN IN DT NNS .\nA new constitution took effect in Kyrgyzstan Friday , as officials announced the final results from the country 's referendum .\tDT JJ NN VBD NN IN NNP NNP , IN NNS VBD DT JJ NNS IN DT NN POS NN .\nCentral Election Commission official Akylbek Sariyev said over 90 percent of voters on Sunday backed the new charter , which establishes Kyrgyzstan as a parliamentary republic .\tNNP NNP NNP NN NNP NNP VBD IN CD NN IN NNS IN NNP VBD DT JJ NN , WDT VBZ NNP IN DT JJ NN .\nSariyev said interim leader Roza Otunbayeva was officially approved as interim president until the end of 2011 .\tNNP VBD JJ NN NNP NNP VBD RB VBN IN JJ NN IN DT NN IN CD .\nShe is expected to be sworn in during an inauguration ceremony on Saturday and parliamentary elections are set for October 10 .\tPRP VBZ VBN TO VB VBN IN IN DT NN NN IN NNP CC JJ NNS VBP VBN IN NNP CD .\nKyrgyzstan 's interim government has struggled to impose order since it took power following the April 7 deadly uprising that ousted President Kurmanbek Bakiyev .\tNNP POS JJ NN VBZ VBN TO VB NN IN PRP VBD NN VBG DT NNP CD JJ NN WDT VBD NNP NNP NNP .\nAn estimated 2,000 people were killed during ethnic clashes between Kyrgyz and Uzbeks that erupted in June in the southern cities of Osh and Jalalabad .\tDT VBN CD NNS VBD VBN IN JJ NNS IN NNS CC NNS WDT VBD IN NNP IN DT JJ NNS IN NNP CC NNP .\nPopulated for centuries by aboriginal peoples , the island was claimed by the Spanish Crown in 1493 following COLUMBUS ' second voyage to the Americas .\tVBN IN NNS IN JJ NNS , DT NN VBD VBN IN DT JJ NNP IN CD VBG NNS POS JJ NN TO DT NNPS .\nIn 1898 , after 400 years of colonial rule that saw the indigenous population nearly exterminated and African slave labor introduced , Puerto Rico was ceded to the US as a result of the Spanish-American War .\tIN CD , IN CD NNS IN NN NN WDT VBD DT JJ NN RB VBD CC JJ NN NN VBN , NNP NNP VBD VBN TO DT NNP IN DT NN IN DT NNP NNP .\nPuerto Ricans were granted US citizenship in 1917 .\tNNP NNPS VBD VBN NNP NN IN CD .\nPopularly-elected governors have served since 1948 .\tJJ NNS VBP VBN IN CD .\nIn 1952 , a constitution was enacted providing for internal self government .\tIN CD , DT NN VBD VBN VBG IN JJ JJ NN .\nIn plebiscites held in 1967 , 1993 , and 1998 , voters chose not to alter the existing political status .\tIN NNS VBN IN CD , CD , CC CD , NNS VBD RB TO VB DT VBG JJ NN .\nClose ties to France since independence in 1960 , the development of cocoa production for export , and foreign investment made Cote d'Ivoire one of the most prosperous of the West African states , but did not protect it from political turmoil .\tJJ NNS TO NNP IN NN IN CD , DT NN IN NN NN IN NN , CC JJ NN VBD NNP NNP CD IN DT RBS JJ IN DT JJ JJ NNS , CC VBD RB VB PRP IN JJ NN .\nIn December 1999 , a military coup - the first ever in Cote d'Ivoire 's history - overthrew the government .\tIN NNP CD , DT JJ NN IN DT JJ RB IN NNP NNP POS NN : VBD DT NN .\nJunta leader Robert GUEI blatantly rigged elections held in late 2000 and declared himself the winner .\tNNP NN NNP NNP RB VBD NNS VBN IN JJ CD CC VBD PRP DT NN .\nPopular protest forced him to step aside and brought Laurent GBAGBO into power .\tJJ NN VBD PRP TO VB RB CC VBD NNP NNP IN NN .\nIvorian dissidents and disaffected members of the military launched a failed coup attempt in September 2002 .\tJJ NNS CC JJ NNS IN DT NN VBD DT VBN NN NN IN NNP CD .\nRebel forces claimed the northern half of the country , and in January 2003 were granted ministerial positions in a unity government under the auspices of the Linas-Marcoussis Peace Accord .\tNN NNS VBD DT JJ NN IN DT NN , CC IN NNP CD VBD VBN JJ NNS IN DT NN NN IN DT NNS IN DT NNP NNP NNP .\nPresident GBAGBO and rebel forces resumed implementation of the peace accord in December 2003 after a three-month stalemate , but issues that sparked the civil war , such as land reform and grounds for citizenship , remained unresolved .\tNNP NNP CC JJ NNS VBD NN IN DT NN NN IN NNP CD IN DT JJ NN , CC NNS WDT VBD DT JJ NN , JJ IN NN NN CC NNS IN NN , VBD JJ .\nIn March 2007 President GBAGBO and former New Force rebel leader Guillaume SORO signed the Ouagadougou Political Agreement .\tIN NNP CD NNP NNP CC JJ NNP NNP NN NN NNP NNP VBD DT NNP NNP NNP .\nAs a result of the agreement , SORO joined GBAGBO 's government as Prime Minister and the two agreed to reunite the country by dismantling the zone of confidence separating North from South , integrate rebel forces into the national armed forces , and hold elections .\tIN DT NN IN DT NN , NNP VBD NNP POS NN IN NNP NNP CC DT CD VBD TO VB DT NN IN VBG DT NN IN NN VBG NNP IN NNP , VB JJ NNS IN DT JJ JJ NNS , CC VB NNS .\nDisarmament , demobilization , and reintegration of rebel forces have been problematic as rebels seek to enter the armed forces .\tNN , NN , CC NN IN JJ NNS VBP VBN JJ IN NNS VBP TO VB DT JJ NNS .\nCitizen identification and voter registration pose election difficulties , and balloting planned for November 2009 was postponed to 2010 .\tNNP NN CC NN NN VBP NN NNS , CC NN VBN IN NNP CD VBD VBN TO CD .\nOn 28 November 2010 , Alassane Dramane OUATTARA won the presidential election , defeating then President Laurent GBAGBO .\tIN CD NNP CD , NNP NNP NNP VBD DT JJ NN , VBG RB NNP NNP NNP .\nGBAGBO refused to hand over power , resulting in a 6-month stand-off .\tNNP VBD TO VB IN NN , VBG IN DT JJ NN .\nIn April 2011 , after widespread fighting , GBAGBO was formally forced from office by OUATTARA supporters with the support of UN and French forces .\tIN NNP CD , IN JJ NN , NNP VBD RB VBN IN NN IN NNP NNS IN DT NN IN NNP CC JJ NNS .\nSeveral thousand UN troops and several hundred French remain in Cote d'Ivoire to support the transition process .\tJJ CD NNP NNS CC JJ CD NNS VBP IN NNP NNP TO VB DT NN NN .\nMonaco , bordering France on the Mediterranean coast , is a popular resort , attracting tourists to its casino and pleasant climate .\tNNP , VBG NNP IN DT NNP NN , VBZ DT JJ NN , VBG NNS TO PRP$ NN CC JJ NN .\nThe principality also is a major banking center and has successfully sought to diversify into services and small , high-value-added , nonpolluting industries .\tDT NN RB VBZ DT JJ NN NN CC VBZ RB VBN TO VB IN NNS CC JJ , JJ , JJ NNS .\nThe state has no income tax and low business taxes and thrives as a tax haven both for individuals who have established residence and for foreign companies that have set up businesses and offices .\tDT NN VBZ DT NN NN CC JJ NN NNS CC NNS IN DT NN NN DT IN NNS WP VBP VBN NN CC IN JJ NNS WDT VBP VBN RP NNS CC NNS .\nMonaco , however , is not a tax-free shelter ; it charges nearly 20 % value-added tax , collects stamp duties , and companies face a 33 % tax on profits unless they can show that three-quarters of profits are generated within the principality .\tNNP , RB , VBZ RB DT JJ NN ; PRP VBZ RB CD NN JJ NN , VBZ NN NNS , CC NNS VBP DT CD NN NN IN NNS IN PRP MD VB IN NNS IN NNS VBP VBN IN DT NN .\nMonaco was formally removed from the OECD 's ' grey list ' of uncooperative tax jurisdictions in late 2009 , but continues to face international pressure to abandon its banking secrecy laws and help combat tax evasion .\tNNP VBD RB VBN IN DT NNP POS `` NN NN `` IN JJ NN NNS IN JJ CD , CC VBZ TO VB JJ NN TO VB PRP$ NN NN NNS CC VB VB NN NN .\nThe state retains monopolies in a number of sectors , including tobacco , the telephone network , and the postal service .\tDT NN VBZ NNS IN DT NN IN NNS , VBG NN , DT NN NN , CC DT JJ NN .\nLiving standards are high , roughly comparable to those in prosperous French metropolitan areas .\tVBG NNS VBP JJ , RB JJ TO DT IN JJ JJ JJ NNS .\nEconomic activity is limited to providing services to the military and their families located in Akrotiri .\tJJ NN VBZ VBN IN VBG NNS TO DT NN CC PRP$ NNS VBN IN NNP .\nAll food and manufactured goods must be imported .\tDT NN CC JJ NNS MD VB VBN .\nColombia was one of the three countries that emerged from the collapse of Gran Colombia in 1830 ( the others are Ecuador and Venezuela ) .\tNNP VBD CD IN DT CD NNS WDT VBD IN DT NN IN NNP NNP IN CD LRB DT NNS VBP NNP CC NNP RRB .\nA four-decade long conflict between government forces and anti-government insurgent groups , principally the Revolutionary Armed Forces of Colombia ( FARC ) heavily funded by the drug trade , escalated during the 1990s .\tDT JJ JJ NN IN NN NNS CC JJ JJ NNS , RB DT JJ JJ NNS IN NNP LRB NNP RRB RB VBN IN DT NN NN , VBN IN DT NNS .\nThe insurgents lack the military or popular support necessary to overthrow the government , and violence has been decreasing since about 2002 .\tDT NNS VBP DT JJ CC JJ NN JJ TO VB DT NN , CC NN VBZ VBN VBG IN IN CD .\nHowever , insurgents continue attacks against civilians and large areas of the countryside are under guerrilla influence or are contested by security forces .\tRB , NNS VBP NNS IN NNS CC JJ NNS IN DT NN VBP IN NN NN CC VBP VBN IN NN NNS .\nMore than 31,000 former paramilitaries had demobilized by the end of 2006 and the United Self Defense Forces of Colombia ( AUC ) as a formal organization had ceased to function .\tJJR IN CD JJ NNS VBD VBN IN DT NN IN CD CC DT NNP NNP NNP NNP IN NNP LRB NNP RRB IN DT JJ NN VBD VBN TO VB .\nIn the wake of the paramilitary demobilization , emerging criminal groups arose , whose members include some former paramilitaries .\tIN DT NN IN DT JJ NN , VBG JJ NNS VBD , WP$ NNS VBP DT JJ NNS .\nThe Colombian Government has stepped up efforts to reassert government control throughout the country , and now has a presence in every one of its administrative departments .\tDT JJ NN VBZ VBN RP NNS TO VB NN NN IN DT NN , CC RB VBZ DT NN IN DT CD IN PRP$ JJ NNS .\nHowever , neighboring countries worry about the violence spilling over their borders .\tRB , VBG NNS VBP IN DT NN NN IN PRP$ NNS .\nIn January 2011 , Colombia assumed a nonpermanent seat on the UN Security Council for the 2011 - 12 term .\tIN NNP CD , NNP VBD DT JJ NN IN DT NNP NNP NNP IN DT CD : CD NN .\nDURING the Civil War a Patriot was passing through the State of Maryland with a pass from the President to join Grant 's army and see the fighting .\tIN DT NNP NNP DT NN VBD VBG IN DT NN IN NNP IN DT NN IN DT NN TO VB NNP POS NN CC VB DT NN .\nStopping a day at Annapolis , he visited the shop of a well-known optician and ordered seven powerful telescopes , one for every day in the week .\tVBG DT NN IN NNP , PRP VBD DT NN IN DT JJ NN CC VBD CD JJ NNS , CD IN DT NN IN DT NN .\nIn recognition of this munificent patronage of the State 's languishing industries , the Governor commissioned him a colonel .\tIN NN IN DT JJ NN IN DT NNP POS NN NNS , DT NN VBD PRP DT NN .\nA KANGAROO hopping awkwardly along with some bulky object concealed in her pouch met a Zebra , and desirous of keeping his attention upon himself , said :\tDT NN VBG RB IN IN DT JJ NN VBN IN PRP$ NN VBD DT NN , CC NN IN VBG PRP$ NN IN PRP , VBD :\n' Your costume looks as if you might have come out of the penitentiary . '\t`` PRP$ NN VBZ IN IN PRP MD VB VBN IN IN DT JJ . ``\n' Appearances are deceitful , ' replied the Zebra , smiling in the consciousness of a more insupportable wit , ' or I should have to think that you had come out of the Legislature . '\t`` NNS VBP JJ , `` VBD DT NN , VBG IN DT NN IN DT RBR JJ NN , `` CC PRP MD VB TO VB IN PRP VBD VBN IN IN DT NN . ``\nTHE Dog , as created , had a rigid tail , but after some centuries of a cheerless existence , unappreciated by Man , who made him work for his living , he implored the Creator to endow him with a wag .\tDT NN , IN VBN , VBD DT JJ NN , CC IN DT NNS IN DT JJ NN , JJ IN NN , WP VBD PRP VB IN PRP$ NN , PRP VBD DT NN TO VB PRP IN DT NN .\nThis being done he was able to dissemble his resentment with a sign of affection , and the earth was his and the fulness thereof .\tDT VBG VBN PRP VBD JJ TO VB PRP$ NN IN DT NN IN NN , CC DT NN VBD PRP$ CC DT NN RB .\nObserving this , the Politician ( an animal created later ) petitioned that a wag might be given him too .\tVBG DT , DT NN LRB DT NN VBN RB RRB VBD IN DT NN MD VB VBN PRP RB .\nAs he was incaudate it was conferred upon his chin , which he now wags with great profit and gratification except when he is at his meals .\tIN PRP VBD JJ PRP VBD VBN IN PRP$ NN , WDT PRP RB VBZ IN JJ NN CC NN IN WRB PRP VBZ IN PRP$ NNS .\nThe U.S. space agency is making final preparations to launch the first direct space probe to the distant planet of Pluto .\tDT NNP NN NN VBZ VBG JJ NNS TO VB DT JJ JJ NN NN TO DT JJ NN IN NNP .\nNASA 's New Horizons probe is scheduled to blast off from Cape Canaveral , Florida , early in the New Year .\tNNP POS NNP NNP NN VBZ VBN TO VB RP IN NNP NNP , NNP , RB IN DT NNP NNP .\nIf all goes well , the spacecraft - the size of a grand piano and weighing about half a ton ( 454 kilograms ) - will reach Pluto in 10 to 15 years .\tIN DT VBZ RB , DT NN IN DT NN IN DT JJ NN CC VBG IN PDT DT NN LRB CD NNS RRB : MD VB NNP IN CD CC CD NNS .\nThe $ 650-million mission calls for an extensive study of Pluto and its primary moon , Charon .\tDT $ JJ NN VBZ IN DT JJ NN IN NNP CC PRP$ JJ NN , NNP .\nThe New Horizons probe will photograph Pluto and gather data about its atmosphere , surface geology and temperature .\tDT NNP NNP NN MD VB NNP CC VB NNS IN PRP$ NN , NN NN CC NN .\nAfter flying past the frozen planet , the spacecraft is to explore a distant part of the solar system known as the Kuiper Belt , an area where scores of Pluto-like objects have been discovered in recent months and years .\tIN VBG IN DT JJ NN , DT NN VBZ TO VB DT JJ NN IN DT JJ NN VBN IN DT NNP NNP , DT NN WRB NNS IN JJ NNS VBP VBN VBN IN JJ NNS CC NNS .\nU.S. and Afghan forces have killed a suspected Taleban commander and three of his fighters in southern Afghanistan .\tNNP CC JJ NNS VBP VBN DT JJ NNP NN CC CD IN PRP$ NNS IN JJ NNP .\nA U.S. military spokesman says Payenda Mohammed , who was thought to have led about 150 rebels , was killed in a battle in Kandahar province Wednesday .\tDT NNP JJ NN VBZ NNP NNP , WP VBD VBN TO VB VBN IN CD NNS , VBD VBN IN DT NN IN NNP NN NNP .\nHe was believed responsible for numerous rocket attacks , ambushes and other guerrilla-style assaults .\tPRP VBD VBN JJ IN JJ NN NNS , NNS CC JJ JJ NNS .\nAt least three other militants were killed and 15 wounded as U.S. warplanes and helicopters rocketed caves along a ridge where they were hiding .\tIN JJS CD JJ NNS VBD VBN CC CD VBN IN NNP NNS CC NNS VBD NNS IN DT NN WRB PRP VBD VBG .\nAfghan and U.S. forces have stepped up attacks in recent months to flush out militants and boost security to prevent the Taleban from carrying out threats of subverting next month 's parliamentary polls .\tJJ CC NNP NNS VBP VBN RP NNS IN JJ NNS TO VB RP NNS CC VB NN TO VB DT NNP IN VBG RP NNS IN VBG JJ NN POS JJ NNS .\nFinal results show the president of Niger , Tandja Mamadou , has won a second five-year term in office .\tJJ NNS VBP DT NN IN NNP , NNP NNP , VBZ VBN DT JJ JJ NN IN NN .\nNiger 's electoral commission said Tuesday that President Tandja won 65.5 percent of the vote in the run-off balloting on Saturday .\tNNP POS JJ NN VBD NNP IN NNP NNP VBD CD NN IN DT NN IN DT JJ NN IN NNP .\nIt says opposition candidate Mahamadou Issoufou received 34.5 percent of the vote .\tPRP VBZ NN NN NNP NNP VBD CD NN IN DT NN .\nPresident Tandja had been heavily favored to win a new term after four opponents who lost in the first round decided to back him .\tNNP NNP VBD VBN RB VBN TO VB DT JJ NN IN CD NNS WP VBD IN DT JJ NN VBD TO VB PRP .\nThe president is the first elected leader of Niger to complete a five-year term without being assassinated or deposed in a coup .\tDT NN VBZ DT JJ JJ NN IN NNP TO VB DT JJ NN IN VBG VBN CC VBN IN DT NN .\nResults from the Niger 's parliamentary elections , also held Sarturday , have not been announced .\tNNS IN DT NNP POS JJ NNS , RB VBD NNP , VBP RB VBN VBN .\nThe U.S.-led coalition in Afghanistan says its forces have killed at least 24 militants during two separate battles .\tDT JJ NN IN NNP VBZ PRP$ NNS VBP VBN IN JJS CD NNS IN CD JJ NNS .\nIn a statement Friday , the coalition says Afghan and U.S. forces killed at least 12 militants , after an attack on a coalition base in the Shahidi Hassas district of southern Uruzgan province on Thursday .\tIN DT NN NNP , DT NN VBZ JJ CC NNP NNS VBD IN JJS CD NNS , IN DT NN IN DT NN NN IN DT NNP NNP NN IN JJ NNP NN IN NNP .\nAlso Thursday , the coalition says its forces killed another 12 militants while on patrol in eastern Paktika province .\tRB NNP , DT NN VBZ PRP$ NNS VBD DT CD NNS IN IN NN IN JJ NNP NN .\nU.S. officials say troops came under attack , while looking for militants who were transporting foreign fighters between the two countries .\tNNP NNS VBP NNS VBD IN NN , IN VBG IN NNS WP VBD VBG JJ NNS IN DT CD NNS .\nOn Thursday , the U.S.-led coalition said its troops killed more than 100 militants during four days of fighting in southern Afghanistan .\tIN NNP , DT JJ NN VBD PRP$ NNS VBD JJR IN CD NNS IN CD NNS IN VBG IN JJ NNP .\nAlso , officials say three civilians - a woman and two children - were killed late Thursday after German and Afghan forces fired at a car that failed to stop at a checkpoint in the northern province of Kunduz .\tRB , NNS VBP CD NNS IN DT NN CC CD NNS : VBD VBN JJ NNP IN JJ CC JJ NNS VBD IN DT NN WDT VBD TO VB IN DT NN IN DT JJ NN IN NNP .\nPolice in Pakistan say a suicide car bomber attacked an army checkpost in the country 's northwest , killing four soldiers .\tNNS IN NNP VBP DT NN NN NN VBD DT NN NN IN DT NN POS JJS , VBG CD NNS .\nThe attack took place Monday in the Khawaza Khela area of the restive Swat Valley .\tDT NN VBD NN NNP IN DT NNP NNP NN IN DT JJ NNP NNP .\nOfficials say at least three other people were also wounded in the blast .\tNNS VBP IN JJS CD JJ NNS VBD RB VBN IN DT NN .\nMilitants control large parts of the Swat valley region .\tNNS VBP JJ NNS IN DT NNP NN NN .\nGovernment officials signed a peace agreement in May with militants in Swat to try to end months of fighting that began in late 2007 .\tNN NNS VBD DT NN NN IN NNP IN NNS IN NNP TO VB TO VB NNS IN VBG DT VBD IN JJ CD .\nSoon after it was signed , militants resumed burning schools and blowing up barbershops , and the government stepped up anti-insurgent operations .\tRB IN PRP VBD VBN , NNS VBD VBG NNS CC VBG RP NNS , CC DT NN VBD RP JJ NNS .\nPakistani security forces are said to have killed up to 2,000 militants since early August in the Swat district and the Bajaur tribal region on the Afghan border .\tJJ NN NNS VBP VBN TO VB VBN RP TO CD NNS IN JJ NNP IN DT NNP NN CC DT NNP JJ NN IN DT JJ NN .\nSyria has expressed ' deep regret ' over an Iraqi statement that Damascus is not taking serious steps to prevent insurgents from crossing into Iraqi territory .\tNNP VBZ VBN `` JJ NN `` IN DT JJ NN IN NNP VBZ RB VBG JJ NNS TO VB NNS IN VBG IN JJ NN .\nIraqi Interior Minister Bayan Jabr Iraqi Interior Minister Bayan Jabr told the Associated Press Sunday that he was not optimistic Damascus would crack down on the insurgents .\tJJ NNP NNP NNP NNP JJ NNP NNP NNP NNP VBD DT NNP NNP NNP IN PRP VBD RB JJ NNP MD VB RP IN DT NNS .\nHe said he has photographs and addresses of insurgent leaders in Syria but indicated they had not yet been captured .\tPRP VBD PRP VBZ NNS CC NNS IN JJ NNS IN NNP CC VBD PRP VBD RB RB VBN VBN .\nSyria 's state-run SANA news agency quotes an unidentified foreign ministry official as saying Mr. Jabr 's interview ' contradicts ' previous agreements with Baghdad .\tNNP POS JJ NNP NN NN VBZ DT JJ JJ NN NN IN VBG NNP NNP POS NN `` VBZ `` JJ NNS IN NNP .\nThe official added that Syria is committed to good relations with Iraq and to helping stop violence in that country .\tDT NN VBD IN NNP VBZ VBN TO JJ NNS IN NNP CC TO VBG VB NN IN DT NN .\nThe official was also quoted as saying Syria has deployed what he described as a ' great number ' of soldiers to the border and increased the number of checkpoints .\tDT NN VBD RB VBN IN VBG NNP VBZ VBN WP PRP VBD IN DT `` JJ NN `` IN NNS TO DT NN CC VBN DT NN IN NNS .\nA senior Palestinian negotiator says Israel plans to hand over the first of five occupied West Bank cities this week , after the resumption of stalled talks on security .\tDT JJ JJ NN VBZ NNP VBZ TO VB IN DT NN IN CD JJ NNP NNP NNS DT NN , IN DT NN IN VBN NNS IN NN .\nThose talks resumed Sunday with generals from each side meeting to discuss Israel 's conditions for handing over the cities .\tDT NNS VBD NNP IN NNS IN DT NN NN TO VB NNP POS NNS IN VBG IN DT NNS .\nPalestinian West Bank commander Hajj Ismail Jabber later said they agreed to hand over Tulkarem to Palestinian control this week .\tJJ NNP NNP NN NNP NNP NNP RB VBD PRP VBD TO VB IN NN TO JJ NN DT NN .\nThe Israeli side confirmed that Tulkarem will be the first to be turned over , but officials did not say when they expect that to happen .\tDT JJ NN VBD IN NNP MD VB DT JJ TO VB VBN RP , CC NNS VBD RB VB WRB PRP VBP IN TO VB .\nThese withdrawals are part of pledges made by Israel during an Israeli-Palestinian summit early last month .\tDT NNS VBP NN IN NNS VBN IN NNP IN DT JJ NN RB JJ NN .\nThe two sides resumed talks that were suspended in the wake of a Palestinian suicide bombing that killed five Israelis in Tel Aviv two weeks ago .\tDT CD NNS VBD NNS WDT VBD VBN IN DT NN IN DT JJ NN NN WDT VBD CD NNS IN NNP NNP CD NNS RB .\nIndian police say they have arrested a key suspect in the July train bombings that killed nearly 200 people and wounded more than 800 others in Mumbai , formerly known as Bombay .\tJJ NNS VBP PRP VBP VBN DT JJ NN IN DT NNP NN NNS WDT VBD RB CD NNS CC VBD JJR IN CD NNS IN NNP , RB VBN IN NNP .\nPolice say they arrested Asif Khan , who used the alias Junaid , in the Indian city of Belgaum in Karnataka state Tuesday .\tNNS VBP PRP VBD NNP NNP , WP VBD DT NN NNP , IN DT JJ NN IN NNP IN NNP NN NNP .\nThey say he is one of the organizers of the attack .\tPRP VBP PRP VBZ CD IN DT NNS IN DT NN .\nHe is the 16th person to be arrested in connection with the Mumbai blasts , and was scheduled to appear in court Wednesday .\tPRP VBZ DT JJ NN TO VB VBN IN NN IN DT NNP NNS , CC VBD VBN TO VB IN NN NNP .\nIndian Prime Minister Manmohan Singh says Saturday 's bombings in New Delhi are linked to foreign elements .\tJJ JJ NN NNP NNP VBZ NNP POS NNS IN NNP NNP VBP VBN TO JJ NNS .\nDuring a phone conversation Monday with Pakistan 's President Pervez Musharraf , he urged Mr. Musharraf to act against terrorism directed at India .\tIN DT NN NN NNP IN NNP POS NNP NNP NNP , PRP VBD NNP NNP TO VB IN NN VBN IN NNP .\nMr. Musharraf said Pakistan stands with India against what he called a ' dastardly terrorist attack . '\tNNP NNP VBD NNP VBZ IN NNP IN WP PRP VBD DT `` RB JJ NN . ``\nThe bombings killed almost 60 people and wounded more than 150 others as Hindus prepared for the Diwali festival .\tDT NNS VBD RB CD NNS CC VBD JJR IN CD NNS IN NNS VBD IN DT NNP NN .\nTuesday , marks the height of Diwali , also known as the festival of lights .\tNNP , VBZ DT NN IN NNP , RB VBN IN DT NN IN NNS .\nResponsibilty for the attacks has been claimed by the little-known Islamic Revolutionary Front .\tNN IN DT NNS VBZ VBN VBN IN DT JJ NNP NNP NNP .\nIndian officials say it has ties to a Kashmiri separatist group outlawed in Pakistan .\tJJ NNS VBP PRP VBZ NNS TO DT JJ NN NN VBN IN NNP .\nPakistani officials say they have no evidence that Pakistani groups were involved in the attack .\tJJ NNS VBP PRP VBP DT NN IN JJ NNS VBD VBN IN DT NN .\nU.S. Secretary of State Condoleezza Rice has criticized Russia 's behavior towards Georgia , saying it is adding to tensions in the area .\tNNP NNP IN NNP NNP NNP VBZ VBN NNP POS NN IN NNP , VBG PRP VBZ VBG TO NNS IN DT NN .\nAs she arrived in Prague Tuesday , Rice noted that the former Soviet republic of Georgia is an independent state , and called on both Russia and Georgia to avoid ' provocative ' actions .\tIN PRP VBD IN NNP NNP , NNP VBD IN DT JJ JJ NN IN NNP VBZ DT JJ NN , CC VBN IN DT NNP CC NNP TO VB `` JJ `` NNS .\nU.S. officials have been dismayed by a series of Russian actions involving Georgia 's breakaway regions of Abkhazia and South Ossetia .\tNNP NNS VBP VBN VBN IN DT NN IN JJ NNS VBG NNP POS JJ NNS IN NNP CC NNP NNP .\nMeanwhile , Georgian Defense Ministry officials say four Georgian servicemen detained by South Ossetian authorities near the administrative border of the breakaway area earlier Tuesday have been released .\tRB , JJ NNP NNP NNS VBP CD JJ NNS VBN IN NNP NNP NNS IN DT JJ NN IN DT NN NN JJR NNP VBP VBN VBN .\nGeorgian President Mikhail Saakashvili had threatened action unless they were freed .\tJJ NNP NNP NNP VBD VBN NN IN PRP VBD VBN .\nAbkhazia and South Ossetia declared independence from Georgia in the early 1990s , sparking fighting and the dispatch of Russian peacekeepers to the region .\tNNP CC NNP NNP VBD NN IN NNP IN DT JJ NNS , VBG NN CC DT NN IN JJ NNS TO DT NN .\nGeorgia has vowed to bring the territories back under central government control .\tNNP VBZ VBN TO VB DT NNS RB IN JJ NN NN .\nNorth Korea says the United States has conducted some 200 spy flights over the country this month .\tNNP NNP VBZ DT NNP NNPS VBZ VBN DT CD NN NNS IN DT NN DT NN .\nThe official Korean Central News Agency said Tuesday the alleged spying shows the U.S. is scared by Pyongyang 's recent nuclear test .\tDT JJ JJ NNP NNP NNP VBD NNP DT JJ NN VBZ DT NNP VBZ VBN IN NNP POS JJ JJ NN .\nKCNA said the U.S. has conducted 20 more spy flights this month than in October last year .\tNNP VBD DT NNP VBZ VBN CD JJR NN NNS DT NN IN IN NNP JJ NN .\nNorth Korea shocked the world October 9 by detonating an underground nuclear device .\tNNP NNP VBD DT NN NNP CD IN VBG DT JJ JJ NN .\nThe country said it had to test the weapon to strengthen its defenses against what it considers U.S. aggression .\tDT NN VBD PRP VBD TO VB DT NN TO VB PRP$ NNS IN WP PRP VBZ NNP NN .\nKCNA quotes a military official as saying the spy flights further underscore the need for North Korea to bolster its war deterrent .\tNNP VBZ DT JJ NN IN VBG DT NN NNS RB VBP DT NN IN NNP NNP TO VB PRP$ NN NN .\nThe U.S. has not yet commented on the report .\tDT NNP VBZ RB RB VBN IN DT NN .\nWashington has repeatedly said it has no intention of attacking North Korea and is urging a resumption of stalled multilateral talks aimed at disarming Pyongyang 's nuclear program .\tNNP VBZ RB VBN PRP VBZ DT NN IN VBG NNP NNP CC VBZ VBG DT NN IN VBN JJ NNS VBN IN VBG NNP POS JJ NN .\nOutgoing Nigerian President Olusegun Obasanjo has bid farewell to the nation he led for eight years .\tVBG JJ NNP NNP NNP VBZ VBN JJ TO DT NN PRP VBD IN CD NNS .\nIn a nationally televised address Monday , Mr. Obasanjo gave himself high marks as a civilian ruler , saying that under his leadership , Nigeria became stronger and more united .\tIN DT RB VBN NN NNP , NNP NNP VBD PRP JJ NNS IN DT JJ NN , VBG IN IN PRP$ NN , NNP VBD JJR CC JJR JJ .\nHe praised his successor , Umaru Yar'Adua , a little-known governor from the far northern state of Katsina , who is set to assume office on Tuesday .\tPRP VBD PRP$ NN , NNP NNP , DT JJ NN IN DT RB JJ NN IN NNP , WP VBZ VBN TO VB NN IN NNP .\nYar'Adua scored a landslide victory in last month 's disputed presidential elections .\tNNP VBD DT NN NN IN JJ NN POS JJ JJ NNS .\nInternational observers said the polls were not credible .\tJJ NNS VBD DT NNS VBD RB JJ .\nMonitors reported many instances of vote-rigging and violence .\tNNS VBD JJ NNS IN NN CC NN .\nLast week , the opposition filed a lawsuit seeking a court annulment of the polls .\tJJ NN , DT NN VBD DT NN VBG DT NN NN IN DT NNS .\nTuesday 's handover is the first from one civilian administration to another since Nigeria 's independence in 1960 .\tNNP POS NN VBZ DT JJ IN CD JJ NN TO DT IN NNP POS NN IN CD .\nFourteen Muslim men went on trial in the Netherlands Monday , accused of plotting the murder of Dutch politicians .\tCD NNP NNS VBD IN NN IN DT NNP NNP , VBN IN VBG DT NN IN JJ NNS .\nDutch police arrested the men after the murder of filmmaker Theo van Gogh in November of 2004 by Mohammed Bouyeri .\tJJ NN VBN DT NNS IN DT NN IN NN NNP NNP NNP IN NNP IN CD IN NNP NNP .\nBouyeri was sentenced to life in prison earlier this year .\tNNP VBD VBN TO NN IN NN RBR DT NN .\nHe and most of the other defendants are Dutch-born offspring of North African immigrants .\tPRP CC JJS IN DT JJ NNS VBP JJ NN IN JJ JJ NNS .\nAfter acquittals in other prominent cases , the trial will be a test for new Dutch laws that supporters say should make it easier to convict extremists .\tIN NNS IN JJ JJ NNS , DT NN MD VB DT NN IN JJ JJ NNS IN NNS VBP MD VB PRP JJR TO VB NNS .\nThe first witness , a woman identified as the former wife of one of the accused , refused to speak in court , but a statement she had given to police earlier was read out .\tDT JJ NN , DT NN VBN IN DT JJ NN IN CD IN DT VBN , VBD TO VB IN NN , CC DT NN PRP VBD VBN TO NNS RBR VBD VBN RP .\nThe court is also scheduled to hear testimony Monday from an expert on Islamic fundamentalism .\tDT NN VBZ RB VBN TO VB NN NNP IN DT NN IN NNP NN .\nEnergy officials from India , Iran and Pakistan have failed to reach an agreement on a gas pricing formula for a multi-billion dollar joint pipeline project under consideration .\tNN NNS IN NNP , NNP CC NNP VBP VBN TO VB DT NN IN DT NN NN NN IN DT JJ NN JJ NN NN IN NN .\nThey met for two days in Islamabad and have agreed to meet again in July in New Delhi .\tPRP VBD IN CD NNS IN NNP CC VBP VBN TO VB RB IN NNP IN NNP NNP .\nIran first proposed the $ 7-billion project in 1996 , but hostilities between India and Pakistan kept it dormant .\tNNP RB VBD DT $ CD NN IN CD , CC NNS IN NNP CC NNP VBD PRP JJ .\nTalks have revived as warming relations between the two countries in recent years have reduced India 's fears about the 3,000 - kilometer pipeline 's security in Pakistan .\tNNS VBP VBN IN NN NNS IN DT CD NNS IN JJ NNS VBP VBN NNP POS NNS IN DT CD IN NN NN POS NN IN NNP .\nThe United States has long opposed the pipeline because its differences with Iran over that country 's nuclear ambitions .\tDT NNP NNPS VBZ RB VBN DT NN IN PRP$ NNS IN NNP IN DT NN POS JJ NNS .\nThe Ford Motor Company says sales of its products in China are booming .\tDT NNP NNP NNP VBZ NNS IN PRP$ NNS IN NNP VBP JJ .\nIn a statement Monday Ford says sales rose 46 percent last year to more than 82,000 vehicles - a record .\tIN DT NN NNP NNP VBZ NNS VBD CD NN JJ NN TO JJR IN CD NNS IN DT NN .\nIf Ford 's affiliated brands - like Mazda - are added to the total , the company sold 2,20,000 vehicles in China last year .\tIN NNP POS JJ NNS : IN NNP : VBP VBN TO DT NN , DT NN VBD CD NNS IN NNP JJ NN .\nFord is the second largest U.S. automaker , and number three in the world after General Motors and Toyota .\tNNP VBZ DT JJ JJS NNP NN , CC NN CD IN DT NN IN NNP NNPS CC NNP .\nIn China , Ford is outsold by both GM and Volkswagen .\tIN NNP , NNP VBZ VBN IN DT NNP CC NNP .\nOfficials say four policemen were killed and three seriously injured Monday when their vehicle hit a landmine near Agadez , in northern Niger .\tNNS VBP CD NNS VBD VBN CC CD RB VBN NNP WRB PRP$ NN VBD DT NN IN NNP , IN JJ NNP .\nOfficials say the landmine was planted by the ethnic Tuareg rebel group , the Niger Movement for Justice .\tNNS VBP DT NN VBD VBN IN DT JJ NNP NN NN , DT NNP NNP IN NNP .\nThe Niger Movement for Justice , known by its French initials MNJ , came to international attention earlier this year after the rebels launched a number of attacks against government and foreign interests in northern Niger .\tDT NNP NNP IN NNP , VBN IN PRP$ JJ NNS NNP , VBD TO JJ NN RBR DT NN IN DT NNS VBD DT NN IN NNS IN NN CC JJ NNS IN JJ NNP .\nA previous Tuareg rebellion broke out in Niger in the early 1990s .\tDT JJ NNP NN VBD RP IN NNP IN DT JJ NNS .\nThe rebel group contends that Niger 's government has failed to live up to a 1995 peace deal that promised a degree of autonomy for the group .\tDT NN NN VBZ IN NNP POS NN VBZ VBN TO VB RP TO DT CD NN NN WDT VBD DT NN IN NN IN DT NN .\nAt least 11 members of the military police have died in similar attacks in the last two months .\tIN JJS CD NNS IN DT JJ NNS VBP VBN IN JJ NNS IN DT JJ CD NNS .\nThe National Guard is dropping hay bales from helicopters over the western U.S. state of Colorado to feed stranded cattle , while officials in surrounding states work to restore power after two powerful snowstorms hit the region in two weeks .\tDT NNP NNP VBZ VBG JJ NNS IN NNS IN DT JJ NNP NN IN NNP TO VB JJ NNS , IN NNS IN VBG NNS VBP TO VB NN IN CD JJ NNS VBD DT NN IN CD NNS .\nGuard members began this week to drop hay over snow-crusted pastures where cattle are immobilized in deep drifts .\tNNP NNS VBD DT NN TO VB NN IN JJ NNS WRB NNS VBP VBN IN JJ NNS .\nAuthorities say they could soon die of starvation or dehydration if not fed .\tNNS VBP PRP MD RB VB IN NN CC NN IN RB VBN .\nThat would deeply hurt the state 's economy .\tDT MD RB VB DT NN POS NN .\nThe operation is hampered by the fact that many of the Guard 's larger helicopters are in use in Iraq .\tDT NN VBZ VBN IN DT NN IN NN IN DT NNP POS JJR NNS VBP IN NN IN NNP .\nMeanwhile , officials in Colorado , Nebraska , Kansas and Oklahoma are working to restore electricity to tens of thousands of homes and businesses .\tRB , NNS IN NNP , NNP , NNP CC NNP VBP VBG TO VB NN TO NNS IN NNS IN NNS CC NNS .\nEmergency workers are searching for people trapped in their homes without food or power .\tNN NNS VBP VBG IN NNS VBN IN PRP$ NNS IN NN CC NN .\nMany residents are staying in emergency shelters to keep warm .\tJJ NNS VBP VBG IN NN NNS TO VB JJ .\nNew U.S. Supreme Court Justice Samuel Alito has cast his first decision on the nation 's highest court , refusing to let the state of Missouri execute a death-row inmate contesting lethal injection .\tJJ NNP NNP NNP NNP NNP NNP VBZ VBN PRP$ JJ NN IN DT NN POS JJS NN , VBG TO VB DT NN IN NNP VBP DT NN NN VBG JJ NN .\nAlito broke ranks with the court 's conservatives late Wednesday , siding with the majority in a six-to-three vote rejecting a last-minute request to allow Missouri to execute Michael Taylor .\tNNP VBD NNS IN DT NN POS NNS JJ NNP , VBG IN DT NN IN DT JJ NN VBG DT JJ NN TO VB NNP TO VB NNP NNP .\nChief Justice John Roberts and Justices Antonin Scalia and Clarence Thomas supported allowing the execution to proceed .\tNNP NNP NNP NNP CC NNS NNP NNP CC NNP NNP VBD VBG DT NN TO VB .\nTaylor pleaded guilty to kidnapping , raping and murdering a 15-year-old girl in 1989 .\tNNP VBD JJ TO NN , VBG CC VBG DT JJ NN IN CD .\nHe has challenged his death sentence by lethal injection as cruel and unusual punishment .\tPRP VBZ VBN PRP$ NN NN IN JJ NN IN JJ CC JJ NN .\nThe Philippine military has placed the country 's troubled south under ' extreme alert ' after a string of deadly bombings .\tDT JJ NN VBZ VBN DT NN POS JJ NN IN `` JJ NN `` IN DT NN IN JJ NNS .\nMilitary chief General Hermogenes Esperon said Thursday , government troops and police have intensified security patrols because of the possibility of more terrorist attacks .\tNNP NN NNP NNP NNP VBD NNP , NN NNS CC NNS VBP VBN NN NNS IN IN DT NN IN JJR JJ NNS .\nHe noted specific concerns about operations by the local militant group Abu Sayyaf and Jemaah Islamiyah , a Southeast Asian terrorist network linked to al-Qaida .\tPRP VBD JJ NNS IN NNS IN DT JJ JJ NN NNP NNP CC NNP NNP , DT JJ JJ JJ NN VBN TO NNP .\nThree bombs ripped through the southern island of Mindanao Tuesday and Wednesday , killing at least six people and wounding 29 .\tCD NNS VBN IN DT JJ NN IN NNP NNP CC NNP , VBG IN JJS CD NNS CC VBG CD .\nPhilippine forces have been fighting Abu Sayyaf on the southern island of Jolo .\tJJ NNS VBP VBN VBG NNP NNP IN DT JJ NN IN NNP .\nThe militants are believed to be aiding Dulmatin and Umar Patek , two key members of Jemaah Islamiyah wanted in connection with the 2002 bombings in Bali , Indonesia .\tDT NNS VBP VBN TO VB VBG NNP CC NNP NNP , CD JJ NNS IN NNP NNP VBN IN NN IN DT CD NNS IN NNP , NNP .\nBrazil says it is sending a team of investigators to Britain next week to look into the killing of a Brazilian man who was fatally shot in the London subway last month after being mistaken for a terrorist .\tNNP VBZ PRP VBZ VBG DT NN IN NNS TO NNP JJ NN TO VB IN DT NN IN DT JJ NN WP VBD RB VBN IN DT NNP NN JJ NN IN VBG VBN IN DT JJ .\nThe announcement Friday came some 24 hours after the head of the independent British panel investigating the death of Jean-Charles de Menezes said London Police Commissioner Ian Blair tried to stop the probe .\tDT NN NNP VBD DT CD NNS IN DT NN IN DT JJ JJ NN VBG DT NN IN NNP NNP NNP VBD NNP NNP NNP NNP NNP VBD TO VB DT NN .\nPolice shot and killed Mr. de Menezes on a London subway July 22 saying he was acting suspiciously and ignored orders to stop running .\tNNS VBD CC VBD NNP NNP NNP IN DT NNP NN NNP CD VBG PRP VBD VBG RB CC VBD NNS TO VB VBG .\nBut Britain 's ITV television , citing security video and witnesses , said Mr. de Menezes was behaving normally .\tCC NNP POS NNP NN , VBG NN NN CC NNS , VBD NNP NNP NNP VBD VBG RB .\nCommissioner Blair has rejected calls by Mr. de Menezes ' lawyers and family for his resignation and denied allegations of a cover-up .\tNN NNP VBZ VBN NNS IN NNP NNP NNP POS NNS CC NN IN PRP$ NN CC VBD NNS IN DT NN .\nPolice in Nepal have detained some 185 Tibetan exiles who demonstrated outside the Chinese embassy in the capital , Kathmandu .\tNNS IN NNP VBP VBN DT CD JJ NNS WP VBD IN DT JJ NN IN DT NN , NNP .\nSunday 's arrests come after Saturday 's detention of 450 Tibetans who held a similar demonstration .\tNNP POS NNS VBP IN NNP POS NN IN CD NNS WP VBD DT JJ NN .\nThe protests are the latest in the almost-daily demonstrations by Tibetan exiles in Kathmandu since March , when deadly clashes broke out between protesters and Chinese authorities in their homeland , Tibet .\tDT NNS VBP DT JJS IN DT JJ NNS IN JJ NNS IN NNP IN NNP , WRB JJ NNS VBD RP IN NNS CC JJ NNS IN PRP$ NN , NNP .\nThey temporarily suspended demonstrations in Nepal after the earthquake in China , but recently have restarted protests .\tPRP RB VBD NNS IN NNP IN DT NN IN NNP , CC RB VBP VBN NNS .\nNepal , which regards Tibet as part of China , is home to some 20,000 Tibetan refugees .\tNNP , WDT VBZ NNP IN NN IN NNP , VBZ NN TO DT CD JJ NNS .\nChina and Japan say the six-nation North Korean nuclear disarmament talks will resume next week in Beijing as scheduled .\tNNP CC NNP VBP DT JJ JJ JJ JJ NN NNS MD VB JJ NN IN NNP IN VBN .\nChina 's chief negotiator , Vice Foreign Minister Wu Dawei , met with his Japanese counterpart Kenichiro Sasae Wednesday , in Tokyo .\tNNP POS NN NN , NNP NNP NNP NNP NNP , VBD IN PRP$ JJ NN NNP NNP NNP , IN NNP .\nThe diplomats discussed Pyongyang 's nuclear weapons program and North Korea 's relations with Japan .\tDT NNS VBD NNP POS JJ NNS NN CC NNP NNP POS NNS IN NNP .\nTokyo says it wants to include the issue of the kidnapping of several Japanese citizens by North Korea in 1970s and `80s within the framework of the nuclear talks .\tNNP VBZ PRP VBZ TO VB DT NN IN DT NN IN JJ JJ NNS IN NNP NNP IN NNS CC CD IN DT NN IN DT JJ NNS .\nPyongyang returned to the negotiations earlier this month after a one-year boycott .\tNNP VBD TO DT NNS RBR DT NN IN DT JJ NN .\nThe talks were recessed earlier this month after disagreements surfaced over North Korea 's insistence to retain a civilian nuclear program .\tDT NNS VBD VBN RBR DT NN IN NNS VBD IN NNP NNP POS NN TO VB DT JJ JJ NN .\nThe chief U.S. negotiator in the talks Christopher Hill , says the issue is not a ' show stopper ' that could potentially derail the talks .\tDT JJ NNP NN IN DT NNS NNP NNP , VBZ DT NN VBZ RB DT `` NN NN `` WDT MD RB VB DT NNS .\nMedia reports from Tehran quote Iranian officials as saying Iranian-American journalist Roxana Saberi will be released within days .\tNNS NNS IN NNP VBP JJ NNS IN VBG JJ NN NNP NNP MD VB VBN IN NNS .\nThe reports indicate that Iranian officials have completed their investigation into her case .\tDT NNS VBP IN JJ NNS VBP VBN PRP$ NN IN PRP$ NN .\nSaberi 's family in the U.S. alerted media to her detention last week .\tNNP POS NN IN DT NNP VBD NNS TO PRP$ NN JJ NN .\nIranian officials then confirmed the 31-year-old journalist is being held in Tehran 's infamous Evin prison , saying that she worked illegally in the country after her press credentials had been revoked .\tJJ NNS RB VBD DT JJ NN VBZ VBG VBN IN NNP POS JJ NNP NN , VBG IN PRP VBD RB IN DT NN IN PRP$ NN NNS VBD VBN VBN .\nU.S. Secretary of State Hillary Clinton Thursday called on Iran to release Saberi , who has been in prison for the past month .\tNNP NNP IN NNP NNP NNP NNP VBD IN NNP TO VB NNP , WP VBZ VBN IN NN IN DT JJ NN .\nClinton added that the United States is working through Swiss officials to request information on the journalist .\tNNP VBD IN DT NNP NNPS VBZ VBG IN JJ NNS TO VB NN IN DT NN .\nThe French parliament has thrown out a bill that would have allowed farmers to grow genetically modified crops .\tDT JJ NN VBZ VBN RP DT NN WDT MD VB VBN NNS TO VB RB VBN NNS .\nLawmakers narrowly rejected the bill Tuesday 136 to 135 .\tNNS RB VBD DT NN NNP CD TO CD .\nProtesters against the bill , some wearing hats shaped like corn cobs , cheered when the results were announced .\tNNS IN DT NN , DT VBG NNS VBD IN NN NNS , VBD WRB DT NNS VBD VBN .\nFrench Prime Minister Francois Fillon says he plans to submit a new bill to parliament .\tJJ JJ NN NNP NNP VBZ PRP VBZ TO VB DT JJ NN TO NN .\nGenetically modified crops have had their DNA engineered to make them resistant to disease and pests .\tRB VBN NNS VBP VBN PRP$ NN VBN TO VB PRP JJ TO NN CC NNS .\nSurveys show many French oppose such foods , saying their safety is still not assured .\tNNS VBP JJ NNS VBP JJ NNS , VBG PRP$ NN VBZ RB RB VBN .\nIn February , France imposed a temporary ban on genetically modified corn approved for sale by the European Union .\tIN NNP , NNP VBD DT JJ NN IN RB VBN NN VBN IN NN IN DT NNP NNP .\nThe corn is produced by the U.S. company Monsanto .\tDT NN VBZ VBN IN DT NNP NN NNP .\nThe European Union 's top security official says erecting new walls will not hold back the flood of African immigrants seeking to enter EU countries .\tDT NNP NNP POS JJ NN NN VBZ VBG JJ NNS MD RB VB RP DT NN IN JJ NNS VBG TO VB NNP NNS .\nEU Security Commissioner Franco Frattini told EU Justice and interior ministers meeting in Luxembourg that 30,000 would-be migrants are waiting in Algeria and Morocco to enter their countries .\tNNP NNP NNP NNP NNP VBD NNP NNP CC JJ NNS NN IN NNP IN CD JJ NNS VBP VBG IN NNP CC NNP TO VB PRP$ NNS .\nHe was referring to Spain 's North African enclaves of Melilla and Ceuta , where more than one thousand migrants have scaled razor-wire fences to enter Europe since August .\tPRP VBD VBG TO NNP POS JJ JJ NNS IN NNP CC NNP , WRB JJR IN CD CD NNS VBP VBN JJ NNS TO VB NNP IN NNP .\nAt least 14 have died during the attempts .\tIN JJS CD VBP VBN IN DT NNS .\nParticipants at the talks called for debt relief and economic support , as well as closer cooperation with Sub-Saharan African states to address the immigrant issue .\tNNS IN DT NNS VBD IN NN NN CC JJ NN , RB RB IN JJR NN IN JJ JJ NNS TO VB DT JJ NN .\nAfrican Union President Alpha Oumar Konare , who attended the meeting , called for closer coordination in efforts to deal with the crisis .\tNNP NNP NNP NNP NNP NNP , WP VBD DT NN , VBN IN JJR NN IN NNS TO VB IN DT NN .\nU.S. Homeland Security Secretary Michael Chertoff has rejected charges that he was ' detached ' from the disastrous flooding of Hurricane Katrina .\tNNP NNP NNP NNP NNP NNP VBZ VBN NNS IN PRP VBD `` VBN `` IN DT JJ NN IN NNP NNP .\nChertoff told a Senate panel Wednesday that officials were aware of the danger ahead of time , but said his department was simply overwhelmed by the catastrophe .\tNNP VBD DT NNP NN NNP IN NNS VBD JJ IN DT NN RB IN NN , CC VBD PRP$ NN VBD RB VBN IN DT NN .\nThe committee chairwoman , Republican Senator Susan Colllins , said Chertoff seemed strangely detached in the aftermath of the storm that devastated New Orleans and other areas of the U.S. Gulf Coast last August .\tDT NN NN , NNP NNP NNP NNP , VBD NNP VBD RB VBN IN DT NN IN DT NN WDT VBD NNP NNP CC JJ NNS IN DT NNP NNP NNP JJ NNP .\nA congressional report due out later today strongly criticizes the Bush administration 's response to Hurricane Katrina .\tDT JJ NN RB RB RB NN RB VBZ DT NNP NN POS NN TO NNP NNP .\nExcerpts say the government had a clear indication of how bad the damage to New Orleans would be , but failed to act .\tNNS VBP DT NN VBD DT JJ NN IN WRB JJ DT NN TO NNP NNP MD VB , CC VBD TO VB .\nThe report says Chertoff enacted emergency response programs late or ineffectively , and President Bush failed to use his power to cut through government bureaucracy .\tDT NN VBZ NNP VBD NN NN NNS JJ CC RB , CC NNP NNP VBD TO VB PRP$ NN TO VB IN NN NN .\nThe U.S. government has chartered three of Carnival Cruise lines ships for the next six months to provide temporary housing for victims of Hurricane Katrina .\tDT NNP NN VBZ VBN CD IN NNP NNP NNS NNS IN DT JJ CD NNS TO VB JJ NN IN NNS IN NNP NNP .\nCarnival officials say the ships will be able to provide shelter for as many as 7,000 people displaced by Katrina .\tNNP NNS VBP DT NNS MD VB JJ TO VB NN IN RB JJ IN CD NNS VBN IN NNP .\nTwo of the cruise liners will be based in Galveston , Texas and the other will likely be docked in Mobile , Alabama .\tCD IN DT NN NNS MD VB VBN IN NNP , NNP CC DT NN MD RB VB VBN IN NNP , NNP .\nIndian officials say a bomb blast killed eight people and wounded at least 12 others Sunday , a day after the device was discovered in the eastern state of Bihar .\tJJ NNS VBP DT NN NN VBD CD NNS CC VBD IN JJS CD NNS NNP , DT NN IN DT NN VBD VBN IN DT JJ NN IN NNP .\nPolice in the Aurangabad district say the bomb was found Saturday but could not be immediately defused .\tNNS IN DT NNP NN VBP DT NN VBD VBN NNP CC MD RB VB RB VBN .\nLocal officials believe the bomb was planted by Maoist rebels who had called for a boycott of Saturday 's state legislative elections .\tJJ NNS VBP DT NN VBD VBN IN NNP NNS WP VBD VBN IN DT NN IN NNP POS NN JJ NNS .\nA Mexican police chief has been ambushed and shot dead in the border city of Nuevo Laredo .\tDT JJ NN NN VBZ VBN VBN CC VBN JJ IN DT NN NN IN NNP NNP .\nAuthorities say Commander Victor Berrones died Tuesday when gunmen attacked the vehicle in which he was traveling .\tNNS VBP NNP NNP NNP VBD NNP WRB NNS VBD DT NN IN WDT PRP VBD VBG .\nAnother officer with him was also killed , along with at least one of the suspected assailants .\tDT NN IN PRP VBD RB VBN , IN IN IN JJS CD IN DT JJ NNS .\nThe incident took place on a highway leading to the airport in Nuevo Laredo .\tDT NN VBD NN IN DT NN VBG TO DT NN IN NNP NNP .\nAuthorities recovered at least 100 bullet casings as well as rifles at the scene .\tNNS VBD IN JJS CD NN NNS RB RB IN NNS IN DT NN .\nNuevo Laredo has been plagued for years by violence between gangs fighting for control of lucrative drug smuggling routes into the U.S.\tNNP NNP VBZ VBN VBN IN NNS IN NN IN NNS VBG IN NN IN JJ NN VBG NNS IN DT NNP\nThai police say a Lao couple has been found beheaded in southern Thailand , the latest victims of suspected Muslim separatist violence .\tJJ NNS VBP DT JJ NN VBZ VBN VBN JJ IN JJ NNP , DT JJS NNS IN JJ NNP NN NN .\nThe bodies of the young migrant workers were found Saturday in Pattani province , one of the three Muslim-dominated southern provinces where more than 700 people have died in violence since January of 2004 .\tDT NNS IN DT JJ JJ NNS VBD VBN NNP IN NNP NN , CD IN DT CD JJ JJ NNS WRB JJR IN CD NNS VBP VBN IN NN IN NNP IN CD .\nThe couple left Laos about two months ago to work on a Thai chicken farm .\tDT NN VBD NNP IN CD NNS RB TO VB IN DT JJ NN NN .\nMuslim militants have carried out almost daily bombings , murders and arson in the provinces of Yala , Pattani and Narathiwat .\tNNP NNS VBP VBN RP RB JJ NNS , NNS CC NN IN DT NNS IN NNP , NNP CC NNP .\nSouthern Thai Muslims have complained for years of discrimination by the central government , particularly in jobs and education .\tNNP JJ NNPS VBP VBN IN NNS IN NN IN DT JJ NN , RB IN NNS CC NN .\nChina says a gas explosion in an illegal coal mine in the country 's north has killed 20 people .\tNNP VBZ DT NN NN IN DT JJ NN NN IN DT NN POS NN VBZ VBN CD NNS .\nThe official Xinhua news agency said Monday that the blast occurred Sunday evening in Shanxi province , while miners were trying to mine coal secretly .\tDT JJ NNP NN NN VBD NNP IN DT NN VBD NNP NN IN NNP NN , IN NNS VBD VBG TO VB NN RB .\nXinhua gave no further details .\tNNP VBD DT JJ NNS .\nChina 's mining industry is the most dangerous in the world , with numerous fires , floods and other disasters every year , despite repeated government promises to improve safety .\tNNP POS NN NN VBZ DT RBS JJ IN DT NN , IN JJ NNS , NNS CC JJ NNS DT NN , IN JJ NN NNS TO VB NN .\nMany of the accidents are in small , illegal mines , where safety procedures are often ignored .\tNN IN DT NNS VBP IN JJ , JJ NNS , WRB NN NNS VBP RB VBN .\nAn average of 13 Chinese workers die every day in mining accidents .\tDT NN IN CD JJ NNS VBP DT NN IN NN NNS .\nPope Benedict XVI returned to Rome Monday , after his six-day trip to the United States .\tNNP NNP NNP VBD TO NNP NNP , IN PRP$ JJ NN TO DT NNP NNPS .\nThe pope 's U.S. visit included a meeting with President Bush , outdoor Masses , and a visit to one of the sites attacked on September 11 , 2001 .\tDT NN POS NNP NN VBD DT NN IN NNP NNP , JJ NNS , CC DT NN TO CD IN DT NNS VBN IN NNP CD , CD .\nDuring his trip , the pope repeatedly referred to the sexual abuse scandal that has wracked the U.S. church .\tIN PRP$ NN , DT NN RB VBD TO DT JJ NN NN WDT VBZ VBN DT NNP NN .\nHe had an unprecedented meeting with victims of abusive priests .\tPRP VBD DT JJ NN IN NNS IN JJ NNS .\nBenedict celebrated Mass Sunday at a New York City baseball stadium packed with 57,000 worshippers .\tNNP VBD NNP NNP IN DT NNP NNP NNP NN NN VBN IN CD NNS .\nThe pope was met with loud cheers when he arrived at Yankee Stadium .\tDT NN VBD VBN IN JJ NNS WRB PRP VBD IN NNP NNP .\nSome in the crowd waved handkerchiefs in the Vatican 's colors - white and yellow .\tDT IN DT NN VBD NNS IN DT NNP POS NNS IN NN CC NN .\nA Hungarian government spokesman says the deadly strain of bird flu virus has been found in the southern part of Hungary .\tDT JJ NN NN VBZ DT JJ NN IN NN NN NN VBZ VBN VBN IN DT JJ NN IN NNP .\nSpokesman Andras Batiz said Tuesday three wild swans found last week have tested positive for the H5N1 virus .\tNN NNP NNP VBD NNP CD JJ NNS VBN JJ NN VBP VBN JJ IN DT NNP NN .\nGerman veterinary officials Tuesday confirmed 22 new cases of flu in birds on the island of Ruegen , bringing the total in the country to 103 .\tJJ JJ NNS NNP VBD CD JJ NNS IN NN IN NNS IN DT NN IN NNP , VBG DT NN IN DT NN TO CD .\nCroatia has confirmed the H5N1 virus in a wild swan found dead last week .\tNNP VBZ VBN DT NNP NN IN DT JJ NN VBN JJ JJ NN .\nTuesday , France and the Netherlands petitioned European Union animal health experts to allow them to vaccinate their poultry .\tNNP , NNP CC DT NNP JJ NNP NNP NN NN NNS TO VB PRP TO VB PRP$ NN .\nHowever , after a day of debate , the experts failed to reach agreement but decided to continue the discussion Wednesday .\tRB , IN DT NN IN NN , DT NNS VBD TO VB NN CC VBD TO VB DT NN NNP .\nBird flu has killed more than 90 people since 2003 in Asia .\tNN NN VBZ VBN JJR IN CD NNS IN CD IN NNP .\nLong before the Olympic games in Beijing dazzled the world , China had generated interest among filmmakers .\tRB IN DT NNP NNS IN NNP VBD DT NN , NNP VBD VBN NN IN NNS .\nOne of those filmmakers is Sue Williams , who has produced a number of documentaries about China in the last two decades .\tCD IN DT NNS VBZ NNP NNP , WP VBZ VBN DT NN IN NNS IN NNP IN DT JJ CD NNS .\nHer latest work ' Young & Restless in China ' has been broadcast on Frontline , a program which airs on PBS , an American television network .\tPRP$ JJS NN `` NNP CC NNP IN NNP `` VBZ VBN VBN IN NNP , DT NN WDT VBZ IN NNP , DT JJ NN NN .\nVOA 's Yi Suli talked recently with Sue Williams about her interest in China .\tNNP POS NNP NNP VBD RB IN NNP NNP IN PRP$ NN IN NNP .\nElaine Lu narrates .\tNNP NNP VBZ .\nThe Lebanese army says it is closing in on militants inside a Palestinian refugee camp in northern Lebanon .\tDT JJ NN VBZ PRP VBZ VBG RP IN NNS IN DT JJ NN NN IN JJ NNP .\nLebanese troops bombarded Islamic militant positions Saturday and the Fatah al-Islam militants responded with artillery and rocket fire .\tJJ NNS VBD JJ JJ NNS NNP CC DT NNP NNP NNS VBD IN NN CC NN NN .\nMilitary sources say militants launched eight Katyusha rockets at positions outside the Nahr el-Bared camp , near the city of Tripoli .\tJJ NNS VBP NNS VBD CD NNP NNS IN NNS IN DT NNP JJ NN , IN DT NN IN NNP .\nNo military casualties were confirmed from today 's violence .\tDT JJ NNS VBD VBN IN NN POS NN .\nBut military officials say a soldier who was wounded in clashes Friday died today .\tCC JJ NNS VBP DT NN WP VBD VBN IN NNS NNP VBD NN .\nAt least 11 soldiers have been killed in fighting since Thursday .\tIN JJS CD NNS VBP VBN VBN IN VBG IN NNP .\nMore than 170 people , including at least 96 Lebanese soldiers , have been killed since the standoff began May 20 .\tJJR IN CD NNS , VBG IN JJS CD JJ NNS , VBP VBN VBN IN DT NN VBD NNP CD .\nNearly all of the Palestinian refugees living in the camp have fled .\tRB DT IN DT JJ NNS VBG IN DT NN VBP VBN .\nLast month , Lebanese officials claimed victory in the fighting , but daily firefights have continued since then .\tJJ NN , JJ NNS VBD NN IN DT NN , CC JJ NNS VBP VBN IN RB .\nAn Indian army spokesman says troops have shot dead a top rebel leader in Kashmir .\tDT JJ NN NN VBZ NNS VBP VBN RB DT JJ NN NN IN NNP .\nThe spokesman said Saturday the militant , identified simply as Saad , was a local administrator and financial controller of the Lashkar-e-Toiba group .\tDT NN VBD NNP DT NN , VBN RB IN NNP , VBD DT JJ NN CC JJ NN IN DT NNP NN .\nLashkar has not commented on the army statement .\tNNP VBZ RB VBN IN DT NN NN .\nIndian authorities have blamed the Pakistan-based group for a series of attacks in the mountainous region .\tJJ NNS VBP VBN DT JJ NN IN DT NN IN NNS IN DT JJ NN .\nBoth India and Pakistan claim ownership of Kashmir .\tDT NNP CC NNP VBP NN IN NNP .\nThe region is suffering from a 17-year insurgency that has taken more than 45,000 lives .\tDT NN VBZ VBG IN DT JJ NN WDT VBZ VBN JJR IN CD NNS .\nVarious rebel groups are fighting for independence from New Delhi 's control or a merger with Pakistan .\tJJ NN NNS VBP VBG IN NN IN NNP NNP POS NN CC DT NN IN NNP .\nThe former chief of Russia 's giant Yukos oil company says he has transferred his majority stake in the Group Menatep holding company to a fellow shareholder .\tDT JJ NN IN NNP POS JJ NNP NN NN VBZ PRP VBZ VBN PRP$ NN NN IN DT NNP NNP VBG NN TO DT JJ NN .\nThe lawyer for Mikhail Khodorkovsky says the transaction was made after December 's government-ordered auction of the main Yukos production unit Yuganskneftegaz .\tDT NN IN NNP NNP VBZ DT NN VBD VBN IN NNP POS JJ NN IN DT JJ NNP NN NN NNP .\nMr. Khodorkovsky transferred the 60 percent stake in Group Menatep to Leonid Nevzlin , who is wanted in Russia on charges of a role in several murders .\tNNP NNP VBD DT CD NN NN IN NNP NNP TO NNP NNP , WP VBZ VBN IN NNP IN NNS IN DT NN IN JJ NNS .\nHe is said to be living in exile in Israel .\tPRP VBZ VBN TO VB VBG IN NN IN NNP .\nYukos has been the focus of an extensive government investigation .\tNNP VBZ VBN DT NN IN DT JJ NN NN .\nRussian officials say the company owes billions of dollars in back taxes .\tJJ NNS VBP DT NN VBZ NNS IN NNS IN JJ NNS .\nMr. Khodorkovsky is in jail on trial for tax evasion and fraud .\tNNP NNP VBZ IN NN IN NN IN NN NN CC NN .\nCritics say the actions against him and his former company are retaliation for his support for the political opposition .\tNNS VBP DT NNS IN PRP CC PRP$ JJ NN VBP NN IN PRP$ NN IN DT JJ NN .\nKremlin officials deny this\tNNP NNS VBP DT\nIsraeli forces have handed over control of some checkpoints around the town of Jericho to Palestinian security forces , but a last-minute legal hitch apparently has stalled the formal transfer .\tJJ NNS VBP VBN RP NN IN DT NNS IN DT NN IN NNP TO JJ NN NNS , CC DT JJ JJ NN RB VBZ VBN DT JJ NN .\nOfficials at the handover said a dispute arose Wednesday over several documents that needed to be signed .\tNNS IN DT NN VBD DT NN VBD NNP IN JJ NNS WDT VBD TO VB VBN .\nIt is not clear when that situation will be resolved .\tPRP VBZ RB JJ WRB DT NN MD VB VBN .\nIsraeli forces have dismantled one roadblock and Palestinian forces have taken up positions inside the town .\tJJ NNS VBP VBN CD NN CC JJ NNS VBP VBN RP NNS IN DT NN .\nTwo other checkpoints will remain in place for a one-month trial period to test the Palestinians ' ability to ensure calm .\tCD JJ NNS MD VB IN NN IN DT JJ NN NN TO VB DT NNS POS NN TO VB NN .\nJericho is the first of five towns - Tulkarem , Qalqiliya , Ramallah , Bethlehem - that Israel plans to turn over to Palestinian control .\tNNP VBZ DT NN IN CD NNS IN NNP , NNP , NNP , NNP : IN NNP VBZ TO VB RP TO JJ NN .\nMeanwhile , in Cairo , Egyptian and Palestinian officials and Palestinian militant leaders are discussing a proposed one-year halt to Palestinian attacks on Israeli targets .\tRB , IN NNP , JJ CC JJ NNS CC JJ JJ NNS VBP VBG DT VBN JJ NN TO JJ NNS IN JJ NNS .\nIran 's chief nuclear negotiator says Russia 's proposal to carry out sensitive nuclear fuel work outside Iran is not sufficient for the Islamic country 's energy needs .\tNNP POS JJ JJ NN VBZ NNP POS NN TO VB RP JJ JJ NN NN IN NNP VBZ RB JJ IN DT NNP NN POS NN NNS .\nAli Larijani , secretary of Iran 's Supreme National Security Council , told reporters Friday in Tehran the plan can be considered as part of a package , but that alone it is insufficient .\tNNP NNP , NN IN NNP POS NNP NNP NNP NNP , VBD NNS NNP IN NNP DT NN MD VB VBN IN NN IN DT NN , CC IN RB PRP VBZ JJ .\nMoscow 's idea to have Iran enrich uranium in facilities in Russia , where the work can be closely monitored , is seen as a way out of a growing crisis over Tehran 's nuclear ambitions .\tNNP POS NN TO VB NNP NNP NN IN NNS IN NNP , WRB DT NN MD VB RB VBN , VBZ VBN IN DT NN IN IN DT VBG NN IN NNP POS JJ NNS .\nIt has been backed by the United States , China and the European Union .\tPRP VBZ VBN VBN IN DT NNP NNPS , NNP CC DT NNP NNP .\nWhite House spokesman Scott McClellan said Friday Iran ' appears to be playing more games with the international community ' in its shifting positions on the Russian proposal .\tNNP NNP NN NNP NNP VBD NNP NNP `` VBZ TO VB VBG JJR NNS IN DT JJ NN `` IN PRP$ VBG NNS IN DT JJ NN .\nIsrael 's Likud Party chairman Benjamin Netanyahu says his party 's remaining Cabinet ministers will resign from Prime Minister Ariel Sharon 's government on Sunday .\tNNP POS NNP NNP NN NNP NNP VBZ PRP$ NN POS VBG NNP NNS MD VB IN NNP NNP NNP NNP POS NN IN NNP .\nMr. Netanyahu announced Tuesday morning that Foreign Minister Silvan Shalom and three other Likud ministers will quit the government at the next weekly Cabinet meeting .\tNNP NNP VBD NNP NN IN NNP NNP NNP NNP CC CD JJ NNP NNS MD VB DT NN IN DT JJ JJ NNP NN .\nDespite Likud 's departure , Mr. Sharon 's caretaker government is expected to remain in office until elections later this year .\tIN NNP POS NN , NNP NNP POS NN NN VBZ VBN TO VB IN NN IN NNS RB DT NN .\nMr. Netanyahu was elected to lead Likud last month , after Mr. Sharon left the party .\tNNP NNP VBD VBN TO VB NNP JJ NN , IN NNP NNP VBD DT NN .\nThe prime minister has faced strong opposition from right-wing Likud members over his decision to withdraw from the Gaza Strip last year .\tDT JJ NN VBZ VBN JJ NN IN JJ NNP NNS IN PRP$ NN TO VB IN DT NNP NNP JJ NN .\nShortly before the party leadership election , Mr. Netanyahu had pledged all Likud ministers would leave the Sharon government as quickly as possible .\tRB IN DT NN NN NN , NNP NNP VBD VBN DT NNP NNS MD VB DT NNP NN RB RB IN JJ .\nMr. Sharon has formed a new party , Kadima , to contest the elections on March 28 .\tNNP NNP VBZ VBN DT JJ NN , NNP , TO NN DT NNS IN NNP CD .\nThe United Nations says peacekeepers have launched a major military operation in eastern Congo , where militiamen killed nine peacekeepers last month .\tDT NNP NNP VBZ NNS VBP VBN DT JJ JJ NN IN JJ NNP , WRB NNS VBD CD NNS JJ NN .\nU.N. officials said Friday at least 500 peacekeepers are involved in the operation in Congo 's troubled northeastern Ituri region .\tNNP NNS VBD NNP IN JJS CD NNS VBP VBN IN DT NN IN NNP POS JJ JJ NNP NN .\nA U.N. military source told Reuters news agency the troops are trying to catch the militiamen , believed to be ethnic Lendu fighters , who are suspected of ambushing the Bangladeshi peacekeepers .\tDT NNP JJ NN VBD NNP NN NN DT NNS VBP VBG TO VB DT NNS , VBN TO VB JJ NNP NNS , WP VBP VBN IN VBG DT JJ NNS .\nEarlier this month , U.N. soldiers killed at least 50 militiamen in Ituri province .\tRBR DT NN , NNP NNS VBD IN JJS CD NNS IN NNP NN .\nThat battle was the most serious involving the U.N. Congo mission since it began deploying in 1999 .\tDT NN VBD DT RBS JJ VBG DT NNP NNP NN IN PRP VBD VBG IN CD .\nThe United Nations has been under fire for failing to stop ongoing ethnic violence in Ituri .\tDT NNP NNP VBZ VBN IN NN IN VBG TO VB JJ JJ NN IN NNP .\nThis month , the mission pledged to step up its operations .\tDT NN , DT NN VBD TO VB RP PRP$ NNS .\nA strong earthquake rocked Indonesia Friday , even as recovery efforts continued from last month 's devastating quake there .\tDT JJ NN VBD NNP NNP , RB IN NN NNS VBD IN JJ NN POS JJ NN RB .\nThe earthquake made buildings sway in the capital Jakarta and caused panic in some villages , but there were no immediate reports of injuries .\tDT NN VBD NNS VB IN DT NN NNP CC VBD NN IN DT NNS , CC EX VBD DT JJ NNS IN NNS .\nOfficials said the 6.4 magnitude quake struck in the Sunda Strait , off the western coast of Java island .\tNNS VBD DT CD NN NN VBD IN DT NNP NNP , IN DT JJ NN IN NNP NN .\nA 7.6 magnitude earthquake struck West Sumatra September 30 - killing at least 1,000 people , collapsing buildings and triggering landslides .\tDT CD NN NN VBD NNP NNP NNP CD : VBG IN JJS CD NNS , VBG NNS CC VBG NNS .\nIndonesia frequently experiences earthquakes because it sits on an arc of volcanos and fault lines encircling the Pacific Basin .\tNNP RB VBZ NNS IN PRP VBZ IN DT NN IN NNS CC NN NNS VBG DT NNP NNP .\nThe family of former French prime minister and prominent economist Raymond Barre says he has died at the age of 83 .\tDT NN IN JJ JJ JJ NN CC JJ NN NNP NNP VBZ PRP VBZ VBN IN DT NN IN CD .\nRelatives said Barre died Saturday at the Val-de-Grace hospital in Paris , where he had been hospitalized since April with heart problems .\tNNS VBD NNP VBD NNP IN DT NNP NN IN NNP , WRB PRP VBD VBN VBN IN NNP IN NN NNS .\nMr. Barre served in the Industry Ministry from 1959 through 1962 during President Charles de Gaule 's administration .\tNNP NNP VBD IN DT NNP NNP IN CD IN CD IN NNP NNP NNP NNP POS NN .\nHe was prime minister of France from 1976 through 1981 , and also held the posts of vice president of the European Union , French economics minister and mayor of Lyon .\tPRP VBD JJ NN IN NNP IN CD IN CD , CC RB VBD DT NNS IN NN NN IN DT NNP NNP , JJ NNS NN CC NN IN NNP .\nHe retired from politics in 2002 .\tPRP VBD IN NNS IN CD .\nIraq 's prime minister says he is prepared to present his national reconciliation plan to the Iraqi parliament as violence continues elsewhere in the country .\tNNP POS JJ NN VBZ PRP VBZ VBN TO VB PRP$ JJ NN NN TO DT JJ NN IN NN VBZ RB IN DT NN .\nIraqi police said a roadside bomb killed a local intelligence chief and his two guards in the northern city of Kirkuk Saturday .\tJJ NNS VBD DT NN NN VBD DT JJ NN NN CC PRP$ CD NNS IN DT JJ NN IN NNP NNP .\nIn another development , the U.S. military says an American soldier was killed Saturday in a bomb attack in central Baghdad .\tIN DT NN , DT NNP NN VBZ DT JJ NN VBD VBN NNP IN DT NN NN IN JJ NNP .\nNorth of the capital , in Tikrit , protests erupted after U.S. forces detained a top Sunni religious leader and at least two of his sons .\tNNP IN DT NN , IN NNP , NNS VBD IN NNP NNS VBD DT JJ NNP JJ NN CC IN JJS CD IN PRP$ NNS .\nSheikh Jamal Abdel Karim al-Dabaan and his sons were released several hours later .\tNNP NNP NNP NNP NNP CC PRP$ NNS VBD VBN JJ NNS RB .\nMeanwhile , political sources say Iraqi Prime Minister Nuri al-Maliki will announce his national reconciliation plan to parliament Sunday .\tRB , JJ NNS VBP JJ NNP NNP NNP NNP MD VB PRP$ JJ NN NN TO NN NNP .\nMr. al-Maliki 's office said the 28-point plan will offer some insurgents amnesty in an attempt to bring militant groups to the negotiating table .\tNNP NNP POS NN VBD DT JJ NN MD VB DT NNS NN IN DT NN TO VB JJ NNS TO DT NN NN .\nLebanese officials say Israeli warplanes have again violated Lebanon 's airspace .\tJJ NNS VBP JJ NNS VBP RB VBN NNP POS NN .\nSecurity officials said Thursday , that Israeli fighter jets flew over the southern town of Naqoura and the eastern city of Baalbek .\tNNP NNS VBD NNP , IN JJ NN NNS VBD IN DT JJ NN IN NNP CC DT JJ NN IN NNP .\nA large United Nations peacekeeping base is in Naqoura .\tDT JJ NNP NNP NN NN VBZ IN NNP .\nThe international community has criticized Israel for such overflights .\tDT JJ NN VBZ VBN NNP IN JJ NNS .\nIt says they violate the ceasefire agreement that ended a month-long war between Israel and Hezbollah guerrillas in Lebanon .\tPRP VBZ PRP VBP DT JJ NN WDT VBD DT JJ NN IN NNP CC NNP NNS IN NNP .\nEarlier , the French Foreign Ministry summoned Israel 's ambassador over a similar incident .\tRB , DT NNP NNP NNP VBD NNP POS NN IN DT JJ NN .\nFrench officials say Israeli warplanes aggressively dove toward French peacekeepers in southern Lebanon .\tJJ NNS VBP JJ NNS RB VBP IN JJ NNS IN JJ NNP .\nA spokeswoman for the Israeli embassy in France said the overflights must continue to prevent arms from being smuggled to Hezbollah .\tDT NN IN DT JJ NN IN NNP VBD DT NNS MD VB TO VB NNS IN VBG VBN TO NNP .\nFrench Defense Minister Michele Alliot-Marie said Wednesday the incident nearly caused a catastrophe .\tJJ NNP NNP NNP NNP VBD NNP DT NN RB VBD DT NN .\nShe said French troops were seconds away from firing anti-aircraft missiles at the warplanes .\tPRP VBD JJ NNS VBD NNS RB IN VBG JJ NNS IN DT NNS .\nUgandan President Yoweri Museveni will extend his 20-year hold on power with an inauguration ceremony Friday .\tJJ NNP NNP NNP MD VB PRP$ JJ NN IN NN IN DT NN NN NNP .\nAfrican heads of state gathered in the capital Kampala for the swearing-in , as Mr. Museveni begins a new five-year term in office .\tJJ NNS IN NN VBN IN DT NN NNP IN DT NN , IN NNP NNP VBZ DT JJ JJ NN IN NN .\nMr. Museveni was declared the winner of disputed February elections - the African country 's first multiparty elections in 25 years .\tNNP NNP VBD VBN DT NN IN JJ NNP NNS IN DT JJ NN POS JJ JJ NNS IN CD NNS .\nMr. Museveni garnered 59 percent of the vote , compared to 37 percent for opposition leader Kizza Besigye .\tNNP NNP VBD CD NN IN DT NN , VBN TO CD NN IN NN NN NNP NNP .\nThe opposition party had asked the high court to overturn the results , charging they were distorted by bribery and government intimidation .\tDT NN NN VBD VBN DT JJ NN TO VB DT NNS , VBG PRP VBD VBN IN NN CC NN NN .\nOfficials in Iraq say two bomb attacks in the country have killed at least seven people and wounded about 20 others .\tNNS IN NNP VBP CD NN NNS IN DT NN VBP VBN IN JJS CD NNS CC VBN IN CD NNS .\nIn the deadliest attack Sunday , a bomb exploded in a market in the eastern town of Khalis in Diyala province , killing four people .\tIN DT JJS NN NNP , DT NN VBD IN DT NN IN DT JJ NN IN NNP IN NNP NN , VBG CD NNS .\nOfficials say the bomb targeted the town 's mayor , whose condition was unclear .\tNNS VBP DT NN VBD DT NN POS NN , WP$ NN VBD JJ .\nDiyala province still sees frequent insurgent attacks despite significant drops in violence elsewhere in Iraq .\tNNP NN RB VBZ JJ JJ NNS IN JJ NNS IN NN RB IN NNP .\nIn the other incident , a female suicide bomber blew herself up at a hospital near the western town of Fallujah in Anbar province , killing three people .\tIN DT JJ NN , DT JJ NN NN VBD PRP RP IN DT NN IN DT JJ NN IN NNP IN NNP NN , VBG CD NNS .\nAnbar is a former stronghold of al-Qaida insurgents .\tNNP VBZ DT JJ NN IN NNP NNS .\nU.S. forces handed over security control of the province to Iraqi forces two months ago .\tNNP NNS VBD IN NN NN IN DT NN TO JJ NNS CD NNS RB .\nThe White House has expressed concern about reports that the U.S. military paid Iraqi newspapers to run pro-American stories about the war and rebuilding effort .\tDT NNP NNP VBZ VBN NN IN NNS IN DT NNP NN VBD JJ NNS TO VB JJ NNS IN DT NN CC NN NN .\nSpokesman Scott McClellan Thursday said the White House is seeking more information from the Defense Department .\tNNP NNP NNP NNP VBD DT NNP NNP VBZ VBG JJR NN IN DT NNP NNP .\nThe Los Angeles Times on Wednesday first reported the program to plant articles in Iraqi media .\tDT NNP NNP NNP IN NNP RB VBD DT NN TO NN NNS IN JJ NNS .\nIt reported that American soldiers wrote the articles and presented them to Iraqi media as unbiased accounts from independent journalists .\tPRP VBD IN JJ NNS VBD DT NNS CC VBD PRP TO JJ NNS IN JJ NNS IN JJ NNS .\nThe Defense Department said it is looking into the matter .\tDT NNP NNP VBD PRP VBZ VBG IN DT NN .\nPentagon spokesman Bryan Whitman said he sent inquiries to military officials in Iraq about the alleged activity .\tNNP NN NNP NNP VBD PRP VBD NNS TO JJ NNS IN NNP IN DT JJ NN .\nHe added that , if TRUE , some of the activities are troubling .\tPRP VBD IN , IN JJ , DT IN DT NNS VBP JJ .\nThe United States and South Korea have signed a new cost-sharing agreement for funding the American military presence on the peninsula .\tDT NNP NNPS CC NNP NNP VBP VBN DT JJ JJ NN IN VBG DT JJ JJ NN IN DT NN .\nAnd for the first time , Seoul 's share of the expense has been cut .\tCC IN DT JJ NN , NNP POS NN IN DT NN VBZ VBN VBN .\nUnder the deal signed Thursday , South Korea will pay about $ 676 million - nearly 9-percent less than last year - to help finance the U.S. military presence for 2005 and 2006 .\tIN DT NN VBD NNP , NNP NNP MD VB IN $ CD CD : RB JJ JJR IN JJ NN : TO VB VB DT NNP JJ NN IN CD CC CD .\nSome 32,500 U.S. troops are stationed in South Korea but that number is set to decline as part of Washington 's worldwide redeployment of forces .\tDT CD NNP NNS VBP VBN IN NNP NNP CC DT NN VBZ VBN TO VB IN NN IN NNP POS JJ NN IN NNS .\nThe United States has maintained a military presence in South Korea since the 1950 - 1953 Korean War , which ended in a cease-fire , leaving the two Koreas technically still at war .\tDT NNP NNPS VBZ VBN DT JJ NN IN NNP NNP IN DT CD : CD NNP NNP , WDT VBD IN DT NN , VBG DT CD NNS RB RB IN NN .\nLeaders of the African Union have begun a three-day summit during which they are expected to address the situation in Darfur and the issue of African unity .\tNNS IN DT NNP NNP VBP VBN DT JJ NN IN WDT PRP VBP VBN TO VB DT NN IN NNP CC DT NN IN JJ NN .\nPolice monitored the streets of Accra , Ghana , as more than 30 heads of state gathered for the summit .\tNNP VBD DT NNS IN NNP , NNP , IN JJR IN CD NNS IN NN VBD IN DT NN .\nThe agenda includes discussion of the idea of a United States of Africa .\tDT NN VBZ NN IN DT NN IN DT NNP NNP IN NNP .\nProponents of the plan argue a federation of African nations could exercise more influence and better address problems facing the world 's poorest continent .\tNNS IN DT NN VBP DT NN IN JJ NNS MD VB JJR NN CC JJR NN NNS VBG DT NN POS JJS NN .\nBut regional powers like South Africa favor a more gradual consolidation of regional economic groups .\tCC JJ NNS IN NNP NNP VBP DT JJR JJ NN IN JJ JJ NNS .\nThe idea of a united Africa was conceived four decades ago by Ghana 's first president , Kwame Nkrumah .\tDT NN IN DT JJ NNP VBD VBN CD NNS RB IN NNP POS JJ NN , NNP NNP .\nAfghan authorities say security forces are hunting for an Indian telecommunications worker kidnapped by Taleban insurgents .\tJJ NNS VBP NN NNS VBP VBG IN DT JJ NN NN VBN IN NNP NNS .\nOfficials say the Indian contractor , who was working for the Afghan telecommunications company Roshan , was kidnapped Friday on a main road in the southern province of Zabul .\tNNS VBP DT JJ NN , WP VBD VBG IN DT JJ NNS NN NNP , VBD VBN NNP IN DT JJ NN IN DT JJ NN IN NNP .\nA Taleban spokesman said the Indian was healthy and that higher authorities within the Taleban would soon decide on the captive 's fate .\tDT NNP NN VBD DT NN VBD JJ CC IN JJR NNS IN DT NNP MD RB VB IN DT NN POS NN .\nAfghan security forces clashed Saturday with Taleban militants hiding in a cave complex in southern Helmand province , killing two of them and seizing weapons .\tJJ NN NNS VBD NNP IN NNP NNS VBG IN DT NN NN IN JJ NNP NN , VBG CD IN PRP CC VBG NNS .\nU.S. and Afghan opposition forces drove the Taleban from power in late 2001 after the extremist Islamic government refused to hand over Osama bin Laden .\tNNP CC JJ NN NNS VBD DT NNP IN NN IN JJ CD IN DT NN JJ NN VBD TO VB IN NNP NNP NNP .\nRussia 's lower house of parliament , the Duma , on Friday gave preliminary approval to a historic nuclear weapons reduction pact with the U.S. Final ratification is not expected until next year .\tNNP POS JJR NN IN NN , DT NNP , IN NNP VBD JJ NN TO DT JJ JJ NNS NN NN IN DT NNP JJ NN VBZ RB VBN IN JJ NN .\nLawmakers voted 350-58 in favor of the New Strategic Arms Reduction Treaty in the first of three required readings of the accord .\tNNS VBD CD IN NN IN DT NNP NNP NNP NNP NNP IN DT NN IN CD VBN NNS IN DT NN .\nThe two additional readings are not expected to happen until January 2011 .\tDT CD JJ NNS VBP RB VBN TO VB IN NNP CD .\nSenior lawmaker Konstantin Kosachev , says further work on the treaty will continue once the Duma resumes meeting in January .\tJJ NN NNP NNP , VBZ JJ NN IN DT NN MD VB RB DT NNP VBZ NN IN NNP .\nHe has been quoted as saying START as it was voted for by the U.S. Senate this week contains a large number of interpretations that require study and response from the Russian lawmakers .\tPRP VBZ VBN VBN IN VBG NNP IN PRP VBD VBN IN IN DT NNP NNP DT NN VBZ DT JJ NN IN NNS WDT VBP NN CC NN IN DT JJ NNS .\nThe U.S. Senate voted 71-26 in favor of the accord .\tDT NNP NNP VBD CD IN NN IN DT NN .\nPepsiCo , the U.S. company that markets Pepsi and other beverages , has selected a woman born in India to be its next chief executive officer .\tNNP , DT NNP NN WDT VBZ NNP CC JJ NNS , VBZ VBN DT NN VBN IN NNP TO VB PRP$ JJ JJ NN NN .\nIndra Nooyi will assume control of the company on Oct. 1 , PepsiCo announced Monday .\tNNP NNP MD VB NN IN DT NN IN NNP CD , NNP VBD NNP .\nNooyi was born in Madras and earned her undergraduate and master 's degrees in India .\tNNP VBD VBN IN NNP CC VBD PRP$ NN CC NN POS NNS IN NNP .\nShe is also a graduate of the Yale School of Management in the United States .\tPRP VBZ RB DT NN IN DT NNP NNP IN NNP IN DT NNP NNPS .\nThe business magazine Forbes included Nooyi in a list of the 100 most powerful women in the United States last year .\tDT NN NN NNP VBD NNP IN DT NN IN DT CD RBS JJ NNS IN DT NNP NNPS JJ NN .\nShe has worked for PepsiCo for the past 12 years , most recently as the company 's chief financial officer .\tPRP VBZ VBN IN NNP IN DT JJ CD NNS , RBS RB IN DT NN POS JJ JJ NN .\nThe value of the company 's stock rose slightly after her promotion was announced .\tDT NN IN DT NN POS NN VBD RB IN PRP$ NN VBD VBN .\nNew data show the U.S. trade deficit grew slightly in June as imports rose for the first time in 11 months .\tNNP NNS VBP DT NNP NN NN VBD RB IN NNP IN NNS VBD IN DT JJ NN IN CD NNS .\nThe U.S. Commerce Department says the deficit reached $ 27 billion in June , up from $ 26 billion in May .\tDT NNP NNP NNP VBZ DT NN VBD $ CD CD IN NNP , RB IN $ CD CD IN NNP .\nThe increase reflects a 2.3 percent jump in U.S. imports of goods and services in June - the biggest increase this year .\tDT NN VBZ DT CD NN NN IN NNP NNS IN NNS CC NNS IN NNP IN DT JJS NN DT NN .\nU.S. exports rose 2 percent in the same month .\tNNP NNS VBD CD NN IN DT JJ NN .\nA trade deficit occurs when a country imports more than it exports .\tDT NN NN VBZ WRB DT NN NNS RBR IN PRP VBZ .\nThe widening U.S. deficit indicates increased demand by American consumers - a sign the recession is starting to ease .\tDT VBG NNP NN VBZ VBN NN IN JJ NNS IN DT NN DT NN VBZ VBG TO VB .\nThe U.S. central bank , known as the Federal Reserve , is wrapping up a two-day meeting on the economic situation .\tDT NNP JJ NN , VBN IN DT NNP NNP , VBZ VBG RP DT JJ NN IN DT JJ NN .\nOfficials are scheduled to publish their closely-watched economic assessment Wednesday afternoon , Washington time .\tNNS VBP VBN TO VB PRP$ JJ JJ NN NNP NN , NNP NN .\nIranian President Mahmoud Ahmadinejad says his recent comments that Israel should be ' wiped off the map ' reflect Iran 's long-standing policy and do not mark a change in its position .\tJJ NNP NNP NNP VBZ PRP$ JJ NNS IN NNP MD VB `` VBN RP DT NN `` VBP NNP POS JJ NN CC VBP RB VB DT NN IN PRP$ NN .\nSpeaking Sunday in Tehran , Mr. Ahmadinejad said his words were the same ones used by the late Ayatollah Ruhollah Khomeini nearly 27 years ago .\tVBG NNP IN NNP , NNP NNP VBD PRP$ NNS VBD DT JJ NNS VBN IN DT JJ NNP NNP NNP RB CD NNS RB .\nThe president 's latest comments , reported by Iran 's news agency , follow a string of international condemnations of his remarks against Israel .\tDT NN POS JJS NNS , VBN IN NNP POS NN NN , VB DT NN IN JJ NNS IN PRP$ NNS IN NNP .\nOn Friday , the United Nations Security Council backed a statement from Secretary-General Kofi Annan warning Iran that threats against another country violate the U.N. charter .\tIN NNP , DT NNP NNP NNP NNP VBD DT NN IN NNP NNP NNP NN NNP IN NNS IN DT NN VBP DT NNP NN .\nThe United States and the European Union said Mr. Ahmadinejad 's comments on Israel added to Western fears about what they believe is Iran 's quest to develop nuclear weapons .\tDT NNP NNPS CC DT NNP NNP VBD NNP NNP POS NNS IN NNP VBD TO JJ NNS IN WP PRP VBP VBZ NNP POS NN TO VB JJ NNS .\nThe man who guided the world 's largest economy for the past 18 years today presides over his last meeting of the committee that sets the key U.S. interest rate .\tDT NN WP VBD DT NN POS JJS NN IN DT JJ CD NNS NN VBZ IN PRP$ JJ NN IN DT NN WDT VBZ DT JJ NNP NN NN .\nEconomists and politicians say 79-year-old Federal Reserve Chairman Alan Greenspan is world 's most influential economic figure .\tNNS CC NNS VBP JJ NNP NNP NNP NNP NNP VBZ NN POS RBS JJ JJ NN .\nGreenspan was first appointed to head the U.S. central bank in 1987 by President Ronald Reagan .\tNNP VBD JJ VBN TO VB DT NNP JJ NN IN CD IN NNP NNP NNP .\nSince then he has built a reputation for skillfully fighting inflation and helping the U.S. economy weather stock market declines , terror attacks and recession .\tIN RB PRP VBZ VBN DT NN IN RB VBG NN CC VBG DT NNP NN NN NN NN NNS , NN NNS CC NN .\nMost economists say Greenspan and his colleagues will probably raise U.S. interest rates again Tuesday as they near the end of a campaign of boosting rates to fight inflation .\tJJS NNS VBP NNP CC PRP$ NNS MD RB VB NNP NN NNS RB NNP IN PRP IN DT NN IN DT NN IN VBG NNS TO VB NN .\nFormer White House economic advisor Ben Bernanke is set to be confirmed as Greenspan 's successor .\tJJ NNP NNP JJ NN NNP NNP VBZ VBN TO VB VBN IN NNP POS NN .\nDefense lawyers for former Iraqi President Saddam Hussein say an unidentified man attacked the ousted leader during his appearance at a court hearing in Baghdad Thursday .\tNN NNS IN JJ JJ NNP NNP NNP VBP DT JJ NN VBD DT JJ NN IN PRP$ NN IN DT NN NN IN NNP NNP .\nThe Jordan-based legal team said in a statement Saturday the man attacked Saddam as he stood to leave the courtroom , and the two exchanged blows .\tDT JJ JJ NN VBD IN DT NN NNP DT NN VBD NNP IN PRP VBD TO VB DT NN , CC DT CD VBN NNS .\nThe lawyers did not say if Saddam was hurt .\tDT NNS VBD RB VB IN NNP VBD VBN .\nThe statement says the head of the tribunal did nothing to stop the assault .\tDT NN VBZ DT NN IN DT JJ VBD DT TO VB DT NN .\nSaddam appeared in court to answer question about the repression of a Shi'ite uprising in 1991 .\tNNP VBD IN NN TO VB NN IN DT NN IN DT NNP NN IN CD .\nEarlier this month , he was formally charged with the killings of Shi'ite Muslims in the village of Dujail in 1982 , but no date has been set for his trial .\tRBR DT NN , PRP VBD RB VBN IN DT NNS IN NNP NNPS IN DT NN IN NNP IN CD , CC DT NN VBZ VBN VBN IN PRP$ NN .\nThe U.S. Embassy in Beijing has issued a warning of a possible terrorist threat against U.S. interests in China .\tDT NNP NNP IN NNP VBZ VBN DT NN IN DT JJ JJ NN IN NNP NNS IN NNP .\nAn embassy statement Friday says the U.S. government has received unconfirmed information of possible threats , especially in the cities of Beijing , Shanghai and Guangzhou .\tDT JJ NN NNP VBZ DT NNP NN VBZ VBN JJ NN IN JJ NNS , RB IN DT NNS IN NNP , NNP CC NNP .\nThe embassy says the threat may exist in places where Americans congregate such as clubs , restaurants , schools or outdoor recreation events .\tDT NN VBZ DT NN MD VB IN NNS WRB NNS VBP JJ IN NNS , NNS , NNS CC JJ NN NNS .\nThe warning advises U.S. citizens in China to be aware of their surroundings and remain alert to possible threats .\tDT NN VBZ NNP NNS IN NNP TO VB JJ IN PRP$ NNS CC VBP JJ TO JJ NNS .\nCitizens living or traveling in China are advised to register with the U.S. Embassy or nearest consulate through the State Department Web site .\tNNPS VBG CC VBG IN NNP VBP VBN TO VB IN DT NNP NNP CC JJS VBP IN DT NNP NNP NNP NN .\nThe registration will make them easier to contact in case of emergency .\tDT NN MD VB PRP JJR TO VB IN NN IN NN .\nA suicide bomber wearing an Iraqi army uniform killed 26 Iraqi soldiers Wednesday at an army dining hall north of Baghdad .\tDT NN NN VBG DT JJ NN NN VBD CD JJ NNS NNP IN DT NN VBG NN NN IN NNP .\nMilitary authorities say the bomber waited until lunchtime at the base in Khalis before entering the dining hall and blowing himself up .\tJJ NNS VBP DT NN VBD IN NN IN DT NN IN NNP IN VBG DT NN NN CC VBG PRP RP .\nIn Baghdad , a suicide bomber killed 10 people , mostly police , when he attacked a police patrol .\tIN NNP , DT NN NN VBD CD NNS , RB NN , WRB PRP VBD DT NN NN .\nTo the north , near Kirkuk , gunmen killed two senior anti-terrorism police .\tTO DT NN , IN NNP , NNS VBD CD JJ JJ NN .\nAnd mortar attacks killed five Iraqis outside Baghdad .\tCC NN NNS VBD CD NNS IN NNP .\nIn other developments , Iraqi and U.S. troops found and freed an Australian hostage , six weeks after his abduction in Baghdad .\tIN JJ NNS , JJ CC NNP NNS VBD CC VBD DT JJ NN , CD NNS IN PRP$ NN IN NNP .\nThe U.S. military says troops discovered Douglas Wood and an Iraqi hostage during a routine search operation in Baghdad .\tDT NNP NN VBZ NNS VBD NNP NNP CC DT JJ NN IN DT JJ NN NN IN NNP .\nThree people were detained .\tCD NNS VBD VBN .\nMr. Wood , a 63-year-old engineer , later issued a statement thanking his rescuers .\tNNP NNP , DT JJ NN , RB VBD DT NN VBG PRP$ NNS .\nAfghan authorities say security forces in southern Helmand province have shot and killed four suspected Taleban insurgents planting land mines intended for counter-narcotics forces .\tJJ NNS VBP NN NNS IN JJ NNP NN VBP VBN CC VBN CD JJ NNP NNS VBG NN NNS VBN IN NNS NNS .\nHelmand is Afghanistan 's largest grower of opium poppies and a hotbed of insurgent activity .\tNNP VBZ NNP POS JJS NN IN NN NNS CC DT NN IN JJ NN .\nIn other violence Tuesday , in neighboring Nimroz province , unidentified gunmen shot dead a district intelligence officer as he was driving in his car .\tIN JJ NN NNP , IN JJ NNP NN , JJ NNS VBD RB DT NN NN NN IN PRP VBD VBG IN PRP$ NN .\nMeanwhile , U.S.-led coalition forces in Afghanistan say they are investigating whether an American and a Canadian soldier killed in a battle against Taleban rebels last week were victims of friendly fire .\tRB , JJ NN NNS IN NNP VBP PRP VBP VBG IN DT JJ CC DT JJ NN VBN IN DT NN IN NNP NNS JJ NN VBD NNS IN JJ NN .\nFive coalition troops , an American , three Canadians and one Afghan , also were wounded in the battle in Helmand province .\tCD NN NNS , DT NN , CD NNS CC CD NN , RB VBD VBN IN DT NN IN NNP NN .\nThe U.S. military says coalition troops killed 32 Taleban insurgents in the operation .\tDT NNP NN VBZ NN NNS VBD CD NNP NNS IN DT NN .\nUzbekistan has canceled the accreditation of German broadcaster Deutsche Welle 's correspondents in the Central Asian state , the latest foreign reporters to have their credentials revoked .\tNNP VBZ VBN DT NN IN JJ NN NNP NNP POS NNS IN DT JJ JJ NN , DT JJS JJ NNS TO VB PRP$ NNS VBN .\nThe country has taken an increasingly tough line with foreign media since they reported eyewitness accounts of troops shooting on a crowd in the town of Andijan last year and killing hundreds of civilians .\tDT NN VBZ VBN DT RB JJ NN IN JJ NNS IN PRP VBD NN NNS IN NNS VBG IN DT NN IN DT NN IN NNP JJ NN CC VBG NNS IN NNS .\nUnder a new media law introduced this month , it is illegal to work as a reporter in Uzbekistan without accreditation from the Foreign Ministry .\tIN DT JJ NNS NN VBN DT NN , PRP VBZ JJ TO VB IN DT NN IN NNP IN NN IN DT NNP NNP .\nThe law says accreditation can be revoked for a range of reasons including interfering in the country 's internal affairs .\tDT NN VBZ NN MD VB VBN IN DT NN IN NNS VBG VBG IN DT NN POS JJ NNS .\nEarlier , the Uzbek government shut down local offices of the BBC and U.S.-funded Radio Free Europe / Radio Liberty .\tRB , DT JJ NN VBD RP JJ NNS IN DT NNP CC JJ NNP NNP NNP NNP NNP NNP .\nThe moves followed the bloodshed in Andijan , which led to European Union sanctions against Uzbekistan and criticism from former ally Washington .\tDT NNS VBD DT NN IN NNP , WDT VBD TO NNP NNP NNS IN NNP CC NN IN JJ NN NNP .\nHealth officials in Thailand say they have confirmed that a woman outside Bangkok is the 20th person in the country to contract bird flu since it hit Thailand two years ago .\tNNP NNS IN NNP VBP PRP VBP VBN IN DT NN IN NNP VBZ DT JJ NN IN DT NN TO NN NN NN IN PRP VBD NNP CD NNS RB .\nOfficials say the 50-year-old woman was hospitalized with the deadly H5N1 flu virus on Saturday after cleaning up chicken excrement .\tNNS VBP DT JJ NN VBD VBN IN DT JJ NNP NN NN IN NNP IN VBG RP NN NN .\nElsewhere , Vietnamese officials are calling for more international assistance to help fight avian influenza .\tRB , JJ NNS VBP VBG IN JJR JJ NN TO VB VB JJ NN .\nThey made the appeal at a meeting of health and disaster officials from the Asia-Pacific Economic Cooperation forum in Brisbane , Australia .\tPRP VBD DT NN IN DT NN IN NN CC NN NNS IN DT NNP NNP NNP NN IN NNP , NNP .\nMeanwhile , health officials from African nations are meeting in Kigali , Rwanda Monday to discuss ways of dealing with migratory birds that may carry the virus to the continent .\tRB , NN NNS IN JJ NNS VBP VBG IN NNP , NNP NNP TO VB NNS IN VBG IN JJ NNS WDT MD VB DT NN TO DT NN .\nSunni Muslim mosques in the Iraqi capital are closed Saturday , to protest sectarian violence .\tNNP NNP NNS IN DT JJ NN VBP VBN NNP , TO VB JJ NN .\nSunni clerics ordered the three-day closure to protest what they call deliberate killings of some of their preachers by members of a Shi'ite militia .\tNNP NNS VBD DT JJ NN TO VB WP PRP VBP JJ NNS IN DT IN PRP$ NNS IN NNS IN DT NNP NN .\nThe militia has denied the charge .\tDT NN VBZ VBN DT NN .\nMeanwhile , Iraqi Prime Minister Ibrahim al-Jaafari wrapped up a visit to neighboring Turkey .\tRB , JJ NNP NNP NNP NNP VBD RP DT NN TO JJ NNP .\nMr. al-Jaafari discussed a wide range of topics with Prime Minister Recep Tayyip Erdogan and other officials .\tNNP NNP VBD DT JJ NN IN NNS IN NNP NNP NNP NNP NNP CC JJ NNS .\nTurkey is especially concerned about Kurdish separatists in northern Iraq , and Mr. al-Jaafari pledged that Iraq will not allow ' any group to harm ' Turkey .\tNNP VBZ RB JJ IN NNP NNS IN JJ NNP , CC NNP NNP VBD IN NNP MD RB VB `` DT NN TO VB `` NNP .\nHe also said Kirkuk will continue to reflect Iraq 's diverse demographic makeup and will remain a part of a united Iraq .\tPRP RB VBD NNP MD VB TO VB NNP POS JJ JJ NN CC MD VB DT NN IN DT JJ NNP .\nFor his part , Mr. Erdogan said Turkey seeks to end the use of Iraq as what he called a ' virtual terrorism training ground . '\tIN PRP$ NN , NNP NNP VBD NNP VBZ TO VB DT NN IN NNP IN WP PRP VBD DT `` JJ NN NN NN . ``\nPakistani authorities say at least 30 people were killed and more than 50 others injured in a suspected suicide bombing near a Shi'ite mosque in central Pakistan Thursday .\tJJ NNS VBP IN JJS CD NNS VBD VBN CC JJR IN CD NNS VBN IN DT JJ NN VBG IN DT NNP NN IN JJ NNP NNP .\nPolice say the blast in the city of Dera Ghazi Khan occurred as a religious procession was passing the mosque .\tNNS VBP DT NN IN DT NN IN NNP NNP NNP VBD IN DT JJ NN VBD VBG DT NN .\nThere was no immediate claim of responsibility , and the motivation for the attack is not clear .\tEX VBD DT JJ NN IN NN , CC DT NN IN DT NN VBZ RB JJ .\nMost Pakistanis are Sunni Muslim , while Shi'ites make up about 20 percent of the country 's population .\tJJS NNS VBP NNP NNP , IN NNS VBP RP IN CD NN IN DT NN POS NN .\nAlso Thursday , Poland 's Foreign Ministry said Pakistani Taliban militants who kidnapped a Polish geologist last year have extended a deadline for the Pakistani government to meet their demands .\tRB NNP , NNP POS NNP NNP VBD JJ NNP NNS WP VBD DT JJ NN JJ NN VBP VBN DT NN IN DT JJ NN TO VB PRP$ NNS .\nThe ministry did not provide further details .\tDT NN VBD RB VB JJ NNS .\nPiotr Stanczak , who works for Geofizyka Krakow , was abducted in Punjab province on September 28 .\tNNP NNP , WP VBZ IN NNP NNP , VBD VBN IN NNP NN IN NNP CD .\nThree Pakistanis were killed during the kidnapping .\tCD NNS VBD VBN IN DT NN .\nA French investment banker , who invested with disgraced financier Bernard Madoff , took his own life in New York this week .\tDT JJ NN NN , WP VBD IN JJ NN NNP NNP , VBD PRP$ JJ NN IN NNP NNP DT NN .\nVOA 's Barry Wood reports that the alleged 50 billion dollar Madoff fraud is only the latest in a string of pyramid schemes that have robbed millions of people of their savings .\tNNP POS NNP NNP VBZ IN DT JJ CD CD NN NNP NN VBZ RB DT JJS IN DT NN IN JJ NNS WDT VBP VBN NNS IN NNS IN PRP$ NNS .\nThe schemes pay old investors with the funds of new contributors .\tDT NNS VBP JJ NNS IN DT NNS IN JJ NNS .\nThey collapse when investors rush to get their money out , as happened in the latest New York scandal .\tPRP VBP WRB NNS VBP TO VB PRP$ NN RB , IN VBN IN DT JJS NNP NNP NN .\nRevelers in Brazil have gathered to celebrate the last day of Carnival celebrations , before the start of Lent .\tNNS IN NNP VBP VBN TO VB DT JJ NN IN NNP NNS , IN DT NN IN NNP .\nAuthorities in Rio de Janeiro say more than 7,00,000 tourists have come to the city for the celebrations , which kicked off over the weekend .\tNNS IN NNP IN NNP VBP JJR IN CD NNS VBP VBN TO DT NN IN DT NNS , WDT VBD RP IN DT NN .\nThe largest parades took place Sunday and Monday nights in Rio 's Sambadrome where the city 's top samba groups , dressed in elaborate costumes , competed against each other to put on the best show .\tDT JJS NNS VBD NN NNP CC NNP NNS IN NNP POS NNP WRB DT NN POS JJ NN NNS , VBN IN JJ NNS , VBN IN DT NN TO VB IN DT JJS NN .\nOrganized into samba schools , the groups spend all year preparing and rehearsing for Carnival .\tVBN IN NN NNS , DT NNS VBP DT NN VBG CC VBG IN NNP .\nAfter two nights of carnival parades , celebrations in Rio de Janeiro returned to the streets Tuesday for one last day of revelry .\tIN CD NNS IN JJ NNS , NNS IN NNP IN NNP VBD TO DT NNS NNP IN CD JJ NN IN NN .\nCelebrations are also taking place in other Brazilian cities .\tNNS VBP RB VBG NN IN JJ JJ NNS .\nAsh Wednesday is the start of Lent , which for Roman Catholics opens the 40-day period of penitence , sacrifice and reflection .\tNNP NNP VBZ DT NN IN NNP , WDT IN NNP NNPS VBZ DT JJ NN IN NN , NN CC NN .\nU.S. Secretary of State Condoleezza Rice waves as she is escorted by Palestinian Foreign Minister Nasser Al Kidwa , second left as she arrives at the office of Palestinian Prime Minister Ahmed Qureia in Ramallah\tNNP NNP IN NNP NNP NNP VBZ IN PRP VBZ VBN IN JJ NNP NNP NNP NNP NNP , JJ NN IN PRP VBZ IN DT NN IN JJ NNP NNP NNP NNP IN NNP\nU.S. Secretary of State Condoleezza Rice has launched a Middle East visit to help Israeli and Palestinian leaders prepare for Israel 's planned withdrawal from the Gaza Strip .\tNNP NNP IN NNP NNP NNP VBZ VBN DT NNP NNP NN TO VB JJ CC JJ NNS VBP IN NNP POS VBN NN IN DT NNP NNP .\nMs. Rice met Saturday with Palestinian Prime Minister Ahmed Qureia in Ramallah , ahead of talks with President Mahmoud Abbas .\tNNP NNP VBD NNP IN JJ NNP NNP NNP NNP IN NNP , RB IN NNS IN NNP NNP NNP .\nSunday , she is to meet Israeli Prime Minister Ariel Sharon in Jerusalem .\tNNP , PRP VBZ TO VB JJ NNP NNP NNP NNP IN NNP .\nBefore arriving , she told reporters that Palestinians must work to ensure security ahead of the Israeli withdrawal , set for August .\tIN VBG , PRP VBD NNS IN NNS MD VB TO VB NN RB IN DT JJ NN , VBN IN NNP .\nShe also expressed concern over Israeli plans to expand settlements in the West Bank .\tPRP RB VBD NN IN JJ NNS TO VB NNS IN DT NNP NNP .\nMeantime , the militant group Islamic Jihad says one of its fighters was killed in a clash with Israeli forces in southern Gaza .\tRB , DT JJ NN NNP NNP VBZ CD IN PRP$ NNS VBD VBN IN DT NN IN JJ NNS IN JJ NNP .\nIraqi political leaders representing the country 's different ethnic and religious groups held more separate consultations Thursday to work out key points of a new constitution .\tJJ JJ NNS VBG DT NN POS JJ JJ CC JJ NNS VBD RBR JJ NNS NNP TO VB RP JJ NNS IN DT JJ NN .\nA draft of the document is due on Monday , but several issues are still not resolved .\tDT NN IN DT NN VBZ JJ IN NNP , CC JJ NNS VBP RB RB VBN .\nOne of those is federalism , which the Kurds want to protect their self-rule in northern Iraq .\tCD IN DT VBZ NN , WDT DT NNPS VBP TO VB PRP$ NN IN JJ NNP .\nThe Shi'ites are divided , while Sunni Arabs are strongly against federalism .\tDT NNS VBP VBN , IN NNP NNS VBP RB IN NN .\nMeanwhile , the United Nations Security Council renewed for another year its Assistance Mission for Iraq ( UNAMI ) .\tRB , DT NNP NNP NNP NNP VBN IN DT NN PRP$ NNP NNP IN NNP LRB NNP RRB .\nThat mission helps Iraqis draft the constitution and organize elections .\tDT NN VBZ NNS VB DT NN CC NN NNS .\nIn the northern city of Mosul , the U.S. military says one of its unmanned aerial vehicles crashed without harming anyone on the ground .\tIN DT JJ NN IN NNP , DT NNP NN VBZ CD IN PRP$ JJ JJ NNS VBD IN VBG DT IN DT NN .\nBut it says the vehicle has not been recovered because people on the ground carried it away after it crashed .\tCC PRP VBZ DT NN VBZ RB VBN VBN IN NNS IN DT NN VBD PRP RB IN PRP VBD .\nA Kenyan High Court judge has formally dropped murder charges against a prominent white rancher accused of killing a game warden .\tDT JJ NNP NNP NN VBZ RB VBN NN NNS IN DT JJ JJ NN VBN IN VBG DT NN NN .\nJudge Muga Apondi Wednesday approved a request by the attorney general to drop the case against Thomas Cholmondeley , the grandson of one of Kenya 's original British settlers , Lord Delamere .\tNNP NNP NNP NNP VBD DT NN IN DT NN NN TO VB DT NN IN NNP NNP , DT NN IN CD IN NNP POS JJ JJ NNS , NNP NNP .\nMr. Cholmondeley was charged with killing a plainclothes Kenyan game warden who was investigating allegations his ranch harbored illegal trade in game meat .\tNNP NNP VBD VBN IN VBG DT NNS JJ NN NN WP VBD VBG NNS PRP$ NN VBD JJ NN IN NN NN .\nThe rancher said he thought the game warden was an armed robber .\tDT NN VBD PRP VBD DT NN NN VBD DT JJ NN .\nJudge Apondi said the court was sympathetic to the pain of the deceased man 's family but asked them to be patient and wait for the inquest into the killing .\tNNP NNP VBD DT NN VBD JJ TO DT NN IN DT JJ NN POS NN CC VBD PRP TO VB JJ CC VB IN DT NN IN DT NN .\nMr. Cholmondeley 's ranch in the central Rift Valley is one of the biggest in Kenya .\tNNP NNP POS NN IN DT JJ NNP NNP VBZ CD IN DT JJS IN NNP .\nThe U.S. military says American and Iraqi forces fighting insurgents in western Iraq have encountered strong resistance as they battle to secure the border region and prevent terrorist infiltrations from Syria .\tDT NNP NN VBZ NNP CC JJ NNS VBG NNS IN JJ NNP VBP VBN JJ NN IN PRP VBP TO VB DT NN NN CC VB JJ NNS IN NNP .\nThe military says coalition forces have encountered some of the heaviest fighting in the city of Ubaydi since Operation Steel Curtain began 10 days ago .\tDT JJ VBZ NN NNS VBP VBN DT IN DT JJS NN IN DT NN IN NNP IN NNP NNP NNP VBD CD NNS RB .\nThree Marines and 80 insurgents have been killed since coalition forces entered the city on Monday .\tCD NNS CC CD NNS VBP VBN VBN IN NN NNS VBD DT NN IN NNP .\nThey have found houses rigged with explosives , more than 100 explosive devices and mines , as well as 36 weapons caches .\tPRP VBP VBN NNS VBN IN NNS , JJR IN CD JJ NNS CC NNS , RB RB IN CD NNS NNS .\nThe operation is intended to restore security along the Euphrates River Valley ahead of next month 's parliamentary elections .\tDT NN VBZ VBN TO VB NN IN DT NNP NNP NNP RB IN JJ NN POS JJ NNS .\nMeanwhile , attacks in Baghdad and Kirkuk killed eight policemen Tuesday .\tRB , NNS IN NNP CC NNP VBD CD NNS NNP .\nAnd coalition forces say they captured a high level Baath Party leader Hamid Sharki Shadid in Diyala province .\tCC NN NNS VBP PRP VBD DT JJ NN NNP NNP NN NNP NNP NNP IN NNP NN .\nDespite the global financial crisis , Qatar has prospered in the last several years - in 2010 Qatar had the world 's highest growth rate .\tIN DT JJ JJ NN , NNP VBZ VBN IN DT JJ JJ NNS : IN CD NNP VBD DT NN POS JJS NN NN .\nQatari authorities throughout the crisis sought to protect the local banking sector with direct investments into domestic banks .\tNNP NNS IN DT NN VBD TO VB DT JJ NN NN IN JJ NNS IN JJ NNS .\nGDP rebounded in 2010 largely due to the increase in oil prices .\tNN VBD IN CD RB JJ TO DT NN IN NN NNS .\nEconomic policy is focused on developing Qatar 's nonassociated natural gas reserves and increasing private and foreign investment in non-energy sectors , but oil and gas still account for more than 50 % of GDP , roughly 85 % of export earnings , and 70 % of government revenues .\tJJ NN VBZ VBN IN VBG NNP POS JJ JJ NN NNS CC VBG JJ CC JJ NN IN JJ NNS , CC NN CC NN RB VBP IN JJR IN CD NN IN NN , RB CD NN IN NN NNS , CC CD NN IN NN NNS .\nOil and gas likely have made Qatar the highest per-capita income country - ahead of Liechtenstein - and the country with the lowest unemployment .\tNN CC NN RB VBP VBN NNP DT JJS JJ NN NN : RB IN NNP : CC DT NN IN DT JJS NN .\nProved oil reserves of 25 billion barrels should enable continued output at current levels for 57 years .\tNNP NN NNS IN CD CD NNS MD VB JJ NN IN JJ NNS IN CD NNS .\nQatar 's proved reserves of natural gas exceed 25 trillion cubic meters , about 14 % of the world total and third largest in the world .\tNNP POS JJ NNS IN JJ NN VBP CD CD JJ NNS , IN CD NN IN DT NN JJ CC JJ JJS IN DT NN .\nQatar 's successful 2022 world cup bid will likely accelerate large-scale infrastructure projects such as Qatar 's metro system and the Qatar-Bahrain causeway .\tNNP POS JJ CD NN NN NN MD RB VB JJ NN NNS JJ IN NNP POS NN NN CC DT JJ NN .\nOnce the seat of Viking raiders and later a major north European power , Denmark has evolved into a modern , prosperous nation that is participating in the general political and economic integration of Europe .\tRB DT NN IN VBG NNS CC RB DT JJ JJ JJ NN , NNP VBZ VBN IN DT JJ , JJ NN WDT VBZ VBG IN DT JJ JJ CC JJ NN IN NNP .\nIt joined NATO in 1949 and the EEC ( now the EU ) in 1973 .\tPRP VBD NNP IN CD CC DT NNP LRB RB DT NNP RRB IN CD .\nHowever , the country has opted out of certain elements of the European Union 's Maastricht Treaty , including the European Economic and Monetary Union ( EMU ) , European defense cooperation , and issues concerning certain justice and home affairs .\tRB , DT NN VBZ VBN IN IN JJ NNS IN DT NNP NNP POS NNP NNP , VBG DT JJ NNP CC NNP NNP LRB NNP RRB , JJ NN NN , CC NNS VBG JJ NN CC NN NNS .\nThe native Taino Amerindians - who inhabited the island of Hispaniola when it was discovered by COLUMBUS in 1492 - were virtually annihilated by Spanish settlers within 25 years .\tDT JJ NNP NNPS : WP VBD DT NN IN NNP WRB PRP VBD VBN IN NNP IN CD : VBD RB VBN IN JJ NNS IN CD NNS .\nIn the early 17th century , the French established a presence on Hispaniola .\tIN DT JJ JJ NN , DT NNS VBD DT NN IN NNP .\nIn 1697 , Spain ceded to the French the western third of the island , which later became Haiti .\tIN CD , NNP VBD TO DT JJ DT JJ NN IN DT NN , WDT RB VBD NNP .\nThe French colony , based on forestry and sugar-related industries , became one of the wealthiest in the Caribbean but only through the heavy importation of African slaves and considerable environmental degradation .\tDT JJ NN , VBN IN NN CC JJ NNS , VBD CD IN DT JJS IN DT NNP CC RB IN DT JJ NN IN JJ NNS CC JJ JJ NN .\nIn the late 18th century , Haiti 's nearly half million slaves revolted under Toussaint L'OUVERTURE .\tIN DT JJ JJ NN , NNP POS RB JJ CD NNS VBN IN NNP NNP .\nAfter a prolonged struggle , Haiti became the first black republic to declare independence in 1804 .\tIN DT JJ NN , NNP VBD DT JJ JJ NN TO VB NN IN CD .\nThe poorest country in the Western Hemisphere , Haiti has been plagued by political violence for most of its history .\tDT JJS NN IN DT NNP NNP , NNP VBZ VBN VBN IN JJ NN IN JJS IN PRP$ NN .\nAfter an armed rebellion led to the forced resignation and exile of President Jean-Bertrand ARISTIDE in February 2004 , an interim government took office to organize new elections under the auspices of the United Nations Stabilization Mission in Haiti ( MINUSTAH ) .\tIN DT JJ NN VBD TO DT JJ NN CC NN IN NNP NNP NNP IN NNP CD , DT JJ NN VBD NN TO VB JJ NNS IN DT NNS IN DT NNP NNPS NNP NNP IN NNP LRB NNP RRB .\nContinued violence and technical delays prompted repeated postponements , but Haiti finally did inaugurate a democratically elected president and parliament in May of 2006 .\tJJ NN CC JJ NNS VBD VBN NNS , CC NNP RB VBD VB DT RB VBN NN CC NN IN NNP IN CD .\nA massive magnitude 7 earthquake struck Haiti in January 2010 with an epicenter about 15 km southwest of the capital , Port-au-Prince .\tDT JJ NN CD NN VBD NNP IN NNP CD IN DT NN IN CD NN NN IN DT NN , NNP .\nAn estimated 2 million people lived within the zone of heavy to moderate structural damage .\tDT VBN CD CD NNS VBD IN DT NN IN JJ TO JJ JJ NN .\nThe earthquake was assessed as the worst in this region over the last 200 years and massive international assistance will be required to help the country recover .\tDT NN VBD VBN IN DT JJS IN DT NN IN DT JJ CD NNS CC JJ JJ NN MD VB VBN TO VB DT NN VB .\nTwo neighbours came before Jupiter and prayed him to grant their hearts ' desire .\tCD NNS VBD IN NNP CC VBD PRP TO VB PRP$ NNS POS NN .\nNow the one was full of avarice , and the other eaten up with envy .\tRB DT CD VBD JJ IN NN , CC DT JJ JJ RP IN NN .\nSo to punish them both , Jupiter granted that each might have whatever he wished for himself , but only on condition that his neighbour had twice as much .\tRB TO VB PRP DT , NNP VBD IN DT MD VB WDT PRP VBD IN PRP , CC RB IN NN IN PRP$ NN VBD RB RB JJ .\nThe Avaricious man prayed to have a room full of gold .\tDT JJ NN VBN TO VB DT NN JJ IN NN .\nNo sooner said than done ; but all his joy was turned to grief when he found that his neighbour had two rooms full of the precious metal .\tDT RBR VBD IN VBN ; CC DT PRP$ NN VBD VBN TO NN WRB PRP VBD IN PRP$ NN VBD CD NNS JJ IN DT JJ NN .\nThen came the turn of the Envious man , who could not bear to think that his neighbour had any joy at all .\tRB VBD DT NN IN DT JJ NN , WP MD RB VB TO VB IN PRP$ NN VBD DT NN IN DT .\nSo he prayed that he might have one of his own eyes put out , by which means his companion would become totally blind .\tRB PRP VBD IN PRP MD VB CD IN PRP$ JJ NNS VBP RP , IN WDT VBZ PRP$ NN MD VB RB JJ .\nVices are their own punishment .\tNNS VBP PRP$ JJ NN .\nA LION entered a farmyard .\tDT NN VBD DT NN .\nThe Farmer , wishing to catch him , shut the gate .\tDT NN , VBG TO VB PRP , VBD DT NN .\nWhen the Lion found that he could not escape , he flew upon the sheep and killed them , and then attacked the oxen .\tWRB DT NN VBD IN PRP MD RB VB , PRP VBD IN DT NNS CC VBD PRP , CC RB VBD DT NNS .\nThe Farmer , beginning to be alarmed for his own safety , opened the gate and released the Lion .\tDT NN , VBG TO VB VBN IN PRP$ JJ NN , VBD DT NN CC VBD DT NN .\nOn his departure the Farmer grievously lamented the destruction of his sheep and oxen , but his wife , who had been a spectator to all that took place , said , ' On my word , you are rightly served , for how could you for a moment think of shutting up a Lion along with you in your farmyard when you know that you shake in your shoes if you only hear his roar at a distance ? '\tIN PRP$ NN DT NN RB VBD DT NN IN PRP$ NNS CC NNS , CC PRP$ NN , WP VBD VBN DT NN TO DT IN VBD NN , VBD , `` IN PRP$ NN , PRP VBP RB VBN , IN WRB MD PRP IN DT NN VB IN VBG RP DT NN IN IN PRP IN PRP$ NN WRB PRP VBP IN PRP VBP IN PRP$ NNS IN PRP RB VB PRP$ NN IN DT NN . ``\nSOME Pigeons exposed to the attacks of a Kite asked a Hawk to defend them .\tDT NNS VBN TO DT NNS IN DT NN VBD DT NN TO VB PRP .\nHe consented , and being admitted into the cote waited for the Kite , whom he fell upon and devoured .\tPRP VBD , CC VBG VBN IN DT NN VBD IN DT NN , WP PRP VBD IN CC VBD .\nWhen he was so surfeited that he could scarcely move , the grateful Pigeons scratched out his eyes .\tWRB PRP VBD RB VBN IN PRP MD RB VB , DT JJ NNS VBD RP PRP$ NNS .\nIt is well documented that for every mile that you jog , you add one minute to your life .\tPRP VBZ RB VBN IN IN DT NN IN PRP VBP , PRP VBP CD NN TO PRP$ NN .\nThis enables you at 85 years old to spend an additional 5 months in a nursing home at $ 5000 per month .\tDT VBZ PRP IN CD NNS JJ TO VB DT JJ CD NNS IN DT NN NN IN $ CD IN NN .\nThe International Olympic Committee says several top athletes are considering a boycott of this year 's Beijing Olympics as a protest against China 's crackdown on activists in Tibet .\tDT NNP NNP NNP VBZ JJ JJ NNS VBP VBG DT NN IN DT NN POS NNP NNPS IN DT NN IN NNP POS NN IN NNS IN NNP .\nHowever , IOC members and senior government officials in several European countries said Sunday that they oppose any boycott of the games beginning this August .\tRB , NNP NNS CC JJ NN NNS IN JJ JJ NNS VBD NNP IN PRP VBP DT NN IN DT NNS VBG DT NNP .\nFrance 's Foreign Ministry expressed concern Sunday over recent events in Tibet and asked Chinese authorities to recognize the importance of protecting human rights in advance of the Olympics .\tNNP POS NNP NNP VBD NN NNP IN JJ NNS IN NNP CC VBD JJ NNS TO VB DT NN IN VBG JJ NNS IN NN IN DT NNPS .\nHundreds of pro-Tibet activists in The Hague and Paris clashed with police Sunday outside China 's embassies in those countries .\tNNS IN JJ NNS IN DT NNP CC NNP VBD IN NN NNP IN NNP POS NNS IN DT NNS .\nThe protesters managed to pull down the embassies ' Chinese flags and raise Tibetan banners .\tDT NNS VBD TO VB RP DT NNS POS JJ NNS CC VB JJ NNS .\nTibetan exiles and their supporters in other European cities and around the world organized another day of protests Sunday .\tJJ NNS CC PRP$ NNS IN JJ JJ NNS CC IN DT NN VBN DT NN IN NNS NNP .\nSome called for a boycott of this year 's Olympics , but Tibet 's exiled spiritual leader , the Dalai Lama , says he does not oppose Beijing 's role as host of the summer games .\tDT VBN IN DT NN IN DT NN POS NNS , CC NNP POS JJ JJ NN , DT NNP NNP , VBZ PRP VBZ RB VB NNP POS NN IN NN IN DT NN NNS .\nChinese Olympic Committee officials said Sunday that the unrest in Tibet will not affect their plans to bring the Olympic torch through Tibet and up to the summit of Mount Everest during May .\tJJ NNP NNP NNS VBD NNP IN DT NN IN NNP MD RB VB PRP$ NNS TO VB DT NNP NN IN NNP CC RB TO DT NN IN NNP NNP IN NNP .\nDuring the past week , many world leaders have called on China to exercise restraint in dealing with Tibetan protesters .\tIN DT JJ NN , JJ NN NNS VBP VBN IN NNP TO VB NN IN VBG IN JJ NNS .\nU.S. Secretary of State Condoleezza Rice has called on Chinese authorities to release detained demonstrators and hold talks with the Dalai Lama .\tNNP NNP IN NNP NNP NNP VBZ VBN IN JJ NNS TO VB JJ NNS CC VB NNS IN DT NNP NNP .\nThe head of Russia 's state arms trading agency says Russia has signed contracts to sell Venezuela 24 jet fighter planes and 53 military helicopters .\tDT NN IN NNP POS NN NNS VBG NN VBZ NNP VBZ VBN NNS TO VB NNP CD NN NN NNS CC CD JJ NNS .\nDetails of the deal were not immediately clear .\tNNS IN DT NN VBD RB RB JJ .\nBut the head of Russia 's arms export agency said the two countries have signed contracts for Venezuelan purchase of some $ 3 billion worth of military equipment over the last 18 months .\tCC DT NN IN NNP POS NNS NN NN VBD DT CD NNS VBP VBN NNS IN JJ NN IN DT $ CD CD NN IN JJ NN IN DT JJ CD NNS .\nHis comments came as Russian President Vladimir Putin and Venezuelan leader Hugo Chavez met in Moscow .\tPRP$ NNS VBD IN JJ NNP NNP NNP CC JJ NN NNP NNP VBD IN NNP .\nThe newly acquired Russian fighter planes are expected to replace a fleet of U.S.-made F-16 fighter jets .\tDT RB VBN JJ NN NNS VBP VBN TO VB DT NN IN JJ NN NN NNS .\nVenezuelan authorities say they have not been able to buy spare parts for the F-16s since Washington imposed an arms embargo on Venezuela earlier this year .\tJJ NNS VBP PRP VBP RB VBN JJ TO VB JJ NNS IN DT NNS IN NNP VBD DT NNS NN IN NNP RBR DT NN .\nMr. Putin said Thursday the contracts are not directed against other states .\tNNP NNP VBD NNP DT NNS VBP RB VBN IN JJ NNS .\nHe said they are aimed at developing the economies of the two countries .\tPRP VBD PRP VBP VBN IN VBG DT NNS IN DT CD NNS .\nContinuing concerns about European economies sent gold prices up and pushed stock and oil prices down sharply on Friday .\tVBG NNS IN JJ NNS VBD NN NNS RB CC VBN NN CC NN NNS RB RB IN NNP .\nThe euro currency also dropped sharply .\tDT NN NN RB VBD RB .\nDebt problems in Greece and other nations have prompted governments to slash spending , which could slow economic growth .\tNN NNS IN NNP CC JJ NNS VBP VBN NNS TO VB NN , WDT MD VB JJ NN .\nWorried investors sold euros and sought the perceived safety of gold investments .\tJJ NNS VBD NNS CC VBD DT VBN NN IN JJ NNS .\nThe precious metal rose to a new record high of nearly $ 1,250 before declining .\tDT JJ NN VBD TO DT JJ NN NN IN RB $ CD IN VBG .\nOil prices fell as traders calculated that slower economic growth would cut energy demand .\tNN NNS VBD IN NNS VBD IN JJR JJ NN MD VB NN NN .\nThose same concerns pushed the major French stock index down more than four percent and slashed Spanish stocks more than six percent .\tDT JJ NNS VBD DT JJ JJ NN NN RB RBR IN CD NN CC VBD JJ NNS RBR IN CD NN .\nIsraeli and Palestinian officials met Friday to discuss the agenda of an upcoming summit between Israeli Prime Minister Ariel Sharon and Palestinian leader Mahmoud Abbas .\tJJ CC JJ NNS VBD NNP TO VB DT NN IN DT JJ NN IN JJ NNP NNP NNP NNP CC JJ NN NNP NNP .\nOfficials on both sides characterized the talks in Tel Aviv as ' positive , ' and said a second preparatory session is planned , possibly for Sunday .\tNNS IN DT NNS VBD DT NNS IN NNP NNP IN `` JJ , `` CC VBD DT JJ JJ NN VBZ VBN , RB IN NNP .\nKing Abdullah of Jordan said this week that Mr. Abbas and Mr. Sharon would meet next Tuesday , but Israeli and Palestinian officials say that is only likely if an agreement can be reached on the meeting 's agenda .\tNNP NNP IN NNP VBD DT NN IN NNP NNP CC NNP NNP MD VB JJ NNP , CC JJ CC JJ NNS VBP DT VBZ RB JJ IN DT NN MD VB VBN IN DT NN POS NN .\nPalestinian officials say they will use the summit to ask Israel to release Palestinian prisoners , ease roadblocks and withdraw troops from West Bank towns .\tJJ NNS VBP PRP MD VB DT NN TO VB NNP TO VB JJ NNS , VB NNS CC VB NNS IN NNP NNP NNS .\nIsrael wants the Palestinian Authority to disarm militants .\tNNP VBZ DT JJ NNP TO VB NNS .\nThe two leaders were originally scheduled to meet this past Sunday .\tDT CD NNS VBD RB VBN TO VB DT JJ NNP .\nBut the summit was canceled in the wake of renewed violence .\tCC DT NN VBD VBN IN DT NN IN VBN NN .\nU.N. special envoy Terje Roed-Larsen has met with Syrian President Bashar al-Assad to press international demands for a full and rapid withdrawal of all Syrian troops from Lebanon .\tNNP JJ NN NNP NNP VBZ VBN IN JJ NNP NNP NNP TO VB JJ NNS IN DT JJ CC JJ NN IN DT JJ NNS IN NNP .\nA spokesman for the U.N. envoy said Mr. Roed-Larsen and Mr. Assad have been meeting Saturday in the northern city of Aleppo .\tDT NN IN DT NNP NN VBD NNP NNP CC NNP NNP VBP VBN VBG NNP IN DT JJ NN IN NNP .\nThe spokesman gave no details of the discussions .\tDT NN VBD DT NNS IN DT NNS .\nMr. Roed-Larsen was expected to tell the Syrian president his country faces political and economic isolation if he does not quickly withdraw all Syrian troops .\tNNP NNP VBD VBN TO VB DT JJ NN PRP$ NN VBZ JJ CC JJ NN IN PRP VBZ RB RB VB DT JJ NNS .\nThe meeting came after a large convoy of Syrian forces returned home Saturday from positions in northern Lebanon .\tDT NN VBD IN DT JJ NN IN JJ NNS VBD NN NNP IN NNS IN JJ NNP .\nHowever , thousands of Syrian troops are still located elsewhere in the country .\tRB , NNS IN JJ NNS VBP RB VBN RB IN DT NN .\nAfghan police say a roadside bomb exploded near a military convoy in western Afghanistan Sunday , killing two civilians .\tJJ NNS VBP DT NN NN VBD IN DT JJ NN IN JJ NNP NNP , VBG CD NNS .\nAuthorities say the blast took place as the two men were passing a Western military convoy in Herat province .\tNNS VBP DT NN VBD NN IN DT CD NNS VBD VBG DT JJ JJ NN IN NNP NN .\nThere were no reports of anyone injured in the convoy .\tEX VBD DT NNS IN DT VBN IN DT NN .\nOn Saturday , Afghani Pajhwok news agency said an Italian photojournalist had been kidnapped by the Taleban in southern Afghanistan .\tIN NNP , NNP NNP NN NN VBD DT JJ NN VBD VBN VBN IN DT NNP IN JJ NNP .\nThe news agency identified the journalist as Gabriele Torsello and said a call to his mobile phone Saturday had been answered by someone who said the Taleban abducted the foreigner on charges of spying .\tDT NN NN VBD DT NN IN NNP NNP CC VBD DT NN TO PRP$ JJ NN NNP VBD VBN VBN IN DT WP VBD DT NNP VBD DT NN IN NNS IN VBG .\nAlso Saturday , in neighboring Kandahar province , two NATO soldiers from Canada were killed and three others wounded when militants ambushed their unit .\tRB NNP , IN JJ NNP NN , CD NNP NNS IN NNP VBD VBN CC CD NNS VBD WRB NNS VBD PRP$ NN .\nHaitian Prime Minister Gerard Latortue has unveiled some new initiatives in memory of Jacques Roche , a local journalist who was kidnapped and murdered in Port-au-Prince last week .\tJJ NNP NNP NNP NNP VBZ VBN DT JJ NNS IN NN IN NNP NNP , DT JJ NN WP VBD VBN CC VBN IN NN JJ NN .\nIn an interview with VOA 's Creole Service , Mr. Latortue said he will consult with Minister of Interior Paul Magloire on an initiative to name the street where the journalist 's body was found after Mr. Roche .\tIN DT NN IN NNP POS NNP NNP , NNP NNP VBD PRP MD VB IN NNP IN NNP NNP NNP IN DT NN TO VB DT NN WRB DT NN POS NN VBD VBN IN NNP NNP .\nHe also said the country will observe a day of mourning on July 21 , the day of Mr. Roche 's funeral .\tPRP RB VBD DT NN MD VB DT NN IN VBG IN NNP CD , DT NN IN NNP NNP POS NN .\nHaitian authorities discovered Mr. Roche 's body last Thursday , four days after armed gunmen abducted him .\tJJ NNS VBD NNP NNP POS NN JJ NNP , CD NNS IN JJ NNS VBD PRP .\nOn other issues , Mr. Latortue said there is no doubt a presidential election will be held later this year despite on-going violence .\tIN JJ NNS , NNP NNP VBD EX VBZ DT NN DT JJ NN MD VB VBN RBR DT NN IN JJ NN .\nHaiti has seen a mounting wave of violence ahead of the election .\tNNP VBZ VBN DT JJ NN IN NN RB IN DT NN .\nHundreds of people have been killed since September .\tNNS IN NNS VBP VBN VBN IN NNP .\nFormer U.S. president Jimmy Carter has left a Cleveland , Ohio hospital , where he had been treated for a stomach ailment .\tJJ NNP NN NNP NNP VBZ VBN DT NNP , NNP NN , WRB PRP VBD VBN VBN IN DT NN NN .\nA statement from the medical center in Cleveland says Mr. Carter left the hospital after midday Thursday .\tDT NN IN DT JJ NN IN NNP VBZ NNP NNP VBD DT NN IN NN NNP .\nThe statement says he thanked his medical team for the care and treatment he received during his stay .\tDT NN VBZ PRP VBD PRP$ JJ NN IN DT NN CC NN PRP VBD IN PRP$ NN .\nThe 85-year-old former president had been admitted to the hospital Tuesday after developing an upset stomach during a flight to Cleveland .\tDT JJ JJ NN VBD VBN VBN TO DT NN NNP IN VBG DT JJ NN IN DT NN TO NNP .\nDoctors had determined he had been suffering from a viral infection and kept him in the hospital for two nights to monitor his health .\tNNS VBD VBN PRP VBD VBN VBG IN DT JJ NN CC VBD PRP IN DT NN IN CD NNS TO VB PRP$ NN .\nMr. Carter has been traveling across the country to promote his new book , White House Diary .\tNNP NNP VBZ VBN VBG IN DT NN TO VB PRP$ JJ NN , NNP NNP NNP .\nThe hospital says he will resume his schedule with a meeting in Washington .\tDT NN VBZ PRP MD VB PRP$ NN IN DT NN IN NNP .\nMr. Carter served as U.S. president from 1977 to 1981 .\tNNP NNP VBD IN NNP NN IN CD TO CD .\nGeorgia 's defense minister says his country will reduce its military presence in Iraq to 300 soldiers by next summer .\tNNP POS NN NN VBZ PRP$ NN MD VB PRP$ JJ NN IN NNP TO CD NNS IN JJ NN .\nDavit Kezerashvili told reporters Friday the planned cut is part of a previous agreement with the United States .\tNNP NNP VBD NNS NNP DT JJ NN VBZ NN IN DT JJ NN IN DT NNP NNPS .\nKezerashvili says no reduction is expected before mid-2008 .\tNNP VBZ DT NN VBZ VBN IN NN .\nGeorgia currently has 2,000 soldiers in Iraq .\tNNP RB VBZ CD NNS IN NNP .\nThe number was increased from 850 in July after Georgia 's parliament approved a proposal by President Mikhail Saakashvili .\tDT NN VBD VBN IN CD IN NNP IN NNP POS NN VBD DT NN IN NNP NNP NNP .\nThe Georgian president and the ruling party have been working to build closer ties with the United States and other western nations in a bid to gain NATO membership .\tDT JJ NN CC DT NN NN VBP VBN VBG TO VB JJR NNS IN DT NNP NNPS CC JJ JJ NNS IN DT NN TO VB NNP NN .\nPakistani officials say 40 people were killed and at least 40 others wounded in fierce sectarian clashes in a remote northwestern town .\tJJ NNS VBP CD NNS VBD VBN CC IN JJS CD NNS VBN IN JJ JJ NNS IN DT JJ JJ NN .\nA military-imposed curfew is in place in Parachinar , in the semi-autonomous Kurram region , after gunbattles erupted Friday between Sunni and Shi'ite Muslims .\tDT JJ NN VBZ IN NN IN NNP , IN DT JJ NNP NN , IN NNS VBD NNP IN NNP CC NNP NNPS .\nThe cause of the violence has not been independently confirmed .\tDT NN IN DT NN VBZ RB VBN RB VBN .\nBut residents have said the trouble began when one group held a demonstration denouncing the other sect .\tCC NNS VBP VBN DT NN VBD WRB CD NN VBD DT NN VBG DT JJ NN .\nAn official in the tribal region , Sahibzada Mohammad Anis , Saturday told reporters that army helicopters are patrolling the area .\tDT NN IN DT JJ NN , NNP NNP NNP , NNP VBD NNS IN NN NNS VBP VBG DT NN .\nAuthorities say soldiers have been given shoot-on-sight orders .\tNNS VBP NNS VBP VBN VBN JJ NNS .\nThe town of Parachinar is located about 250 kilometers southwest of Peshawar , the capital of North West Frontier province .\tDT NN IN NNP VBZ VBN IN CD NNS JJS IN NNP , DT NN IN NNP NNP NNP NN .\nThousands of people have been killed in sectarian violence between Sunnis and Shi'ites in Pakistan since the 1980s .\tNNS IN NNS VBP VBN VBN IN JJ NN IN NNP CC NNP IN NNP IN DT NNS .\nMore than 100 people have died in the central Democratic Republic of Congo , in what health officials suspect is an outbreak of hemorrhagic fever .\tJJR IN CD NNS VBP VBN IN DT JJ NNP NNP IN NNP , IN WP NN NNS VBP VBZ DT NN IN JJ NN .\nThe chief health official for Kasai Occidental Province , Jean-Constatin Kanow , says a total of 217 people in four villages have come down with the illness .\tDT JJ NN NN IN NNP NNP NNP , NNP NNP , VBZ DT NN IN CD NNS IN CD NNS VBP VBN RP IN DT NN .\nKanow says the outbreak appears related to the funerals of two village chiefs in early June .\tNNP VBZ DT NN VBZ VBN TO DT NNS IN CD NN NNS IN JJ NNP .\nThe U.N.-funded IRIN news service quotes him as saying all the people who assisted with those burials have died .\tDT JJ NNP NN NN VBZ PRP IN VBG PDT DT NNS WP VBD IN DT NNS VBP VBN .\nMedical teams dispatched the region plan to take blood samples to better identify the illness .\tJJ NNS VBD DT NN NN TO VB NN NNS TO JJR VB DT NN .\nIn the past , the Democratic Republic of Congo has endured outbreaks of both Marburg and Ebola , two types of hemorrhagic fever caused by viruses that can attack the central nervous system and cause bleeding from the eyes , ears , and other parts of the body .\tIN DT NN , DT JJ NNP IN NNP VBZ VBN NNS IN DT NNP CC NNP , CD NNS IN JJ NN VBN IN NNS WDT MD VB DT JJ JJ NN CC NN NN IN DT NNS , NNS , CC JJ NNS IN DT NN .\nThe Russian men 's ice hockey team has stormed into the Olympic tournament quarterfinals in Turin , Italy with a dominating 09-Feb victory over Latvia .\tDT JJ NNS POS NN NN NN VBZ VBN IN DT NNP NN NNS IN NNP , NNP IN DT NN CD NN IN NNP .\nAfter dropping the opener to Slovakia , 05-Mar , Russia has won three straight games by a combined score of 15-Feb .\tIN VBG DT NN TO NNP , CD , NNP VBZ VBN CD JJ NNS IN DT JJ NN IN CD .\nIlya Kovalchuk scored four goals Sunday with two in each of the first two periods .\tNNP NNP VBD CD NNS NNP IN CD IN DT IN DT JJ CD NNS .\nRussian goaltender Evgeni Nabokov posted consecutive shutout victories over Sweden and Kazakhstan with 48 saves .\tJJ NN NNP NNP VBD JJ NN NNS IN NNP CC NNP IN CD NNS .\nAlthough he allowed one goal by Latvia , he faced only seven shots in two periods before being replaced by his back-up .\tIN PRP VBD CD NN IN NNP , PRP VBD RB CD NNS IN CD NNS IN VBG VBN IN PRP$ NN .\nRussia 's victory put the eight-time Olympic champions into the quarterfinals and also clinched a spot for Sweden .\tNNP POS NN VBD DT JJ NNP NNS IN DT NNS CC RB VBD DT NN IN NNP .\nSlovakia advanced with a win over the United States ( 02-Jan ) on Saturday , leaving one remaining spot from Group-B .\tNNP VBD IN DT NN IN DT NNP NNPS LRB CD RRB IN NNP , VBG CD VBG NN IN NNP .\nChina has announced its sixth human bird flu death .\tNNP VBZ VBN PRP$ JJ NN NN NN NN .\nChinese health officials said Wednesday a 35-year-old woman from Sichuan province died last week from the H5N1 strain .\tJJ NN NNS VBD NNP DT JJ NN IN NNP NN VBD JJ NN IN DT NNP NN .\nMeanwhile , Turkish officials say bird flu killed an 11-year-old girl on her way to a hospital Wednesday .\tRB , JJ NNS VBP NN NN VBD DT JJ NN IN PRP$ NN TO DT NN NNP .\nAnd Iraqi health officials have sent samples to a lab , suspecting bird flu in the death of 14-year-old girl in the Kurdish city of Suleimaniya .\tCC JJ NN NNS VBP VBN NNS TO DT NN , VBG NN NN IN DT NN IN JJ NN IN DT JJ NN IN NNP .\nThe news of the deaths came as international donors pledged nearly two billion dollars at a bird flu conference in Beijing , exceeding expectations .\tDT NN IN DT NNS VBD IN JJ NNS VBD RB CD CD NNS IN DT NN NN NN IN NNP , VBG NNS .\nThe money will be used by poor countries to set up prevention programs .\tDT NN MD VB VBN IN JJ NNS TO VB RP NN NNS .\nU.N. officials say the virus - which has spread from southeast Asia and China into Turkey - could soon move into Africa and Europe with devastating effects .\tNNP NNS VBP DT NN : WDT VBZ VBN IN JJ NNP CC NNP IN NNP : MD RB VB IN NNP CC NNP IN JJ NNS .\nBird flu has killed more than 80 people since 2003 .\tNN NN VBZ VBN JJR IN CD NNS IN CD .\nLawmakers in Chad have voted to relax controls on the use of the country 's oil revenue despite objections from the World Bank .\tNNS IN NNP VBP VBN TO VB NNS IN DT NN IN DT NN POS NN NN IN NNS IN DT NNP NNP .\nThe new legislation abolishes a fund that reserved 10 percent of oil revenue for future generations .\tDT JJ NN VBZ DT NN WDT VBD CD NN IN NN NN IN JJ NNS .\nIt also doubles the share of revenues to be made available to the public treasury and makes security one of the priority sectors where the money can be spent .\tPRP RB VBZ DT NN IN NNS TO VB VBN JJ TO DT JJ NN CC VBZ NN NN IN DT NN NNS WRB DT NN MD VB VBN .\nWorld Bank President Paul Wolfowitz said in a statement Thursday the legislation is a material breach of the original agreement the bank made with Chad .\tNNP NNP NNP NNP NNP VBD IN DT NN NNP DT NN VBZ DT NN NN IN DT JJ NN DT NN VBD IN NNP .\nHe says it harms the well-being of Chad 's poorest and most vulnerable citizens .\tPRP VBZ PRP VBZ DT NN IN NNP POS JJS CC RBS JJ NNS .\nThe bank provided money for Chad 's oil industry with the condition that the central African nation use the profits to reduce poverty .\tDT NN VBD NN IN NNP POS NN NN IN DT NN IN DT JJ JJ NN VBP DT NNS TO VB NN .\nBurma is rejecting the latest U.S. report on human trafficking , which blacklisted the country as one of the world 's worst offenders for a seventh consecutive year .\tNNP VBZ VBG DT JJS NNP NN IN JJ NN , WDT VBD DT NN IN CD IN DT NN POS JJS NNS IN DT JJ JJ NN .\nBurma 's state-run New Light of Myanmar newspaper quoted a foreign ministry official as saying the annual report lacks objectivity and does not fully reflect Burma 's efforts against human trafficking .\tNNP POS JJ NNP NNP IN NNP NN VBD DT JJ NN NN IN VBG DT JJ NN VBZ NN CC VBZ RB RB VB NNP POS NNS IN JJ NN .\nThe U.S. State Department 's ' Trafficking in Persons Report ' listed Burma in tier three , meaning it is one of the world 's worst offenders , along with North Korea and Sudan .\tDT NNP NNP NNP POS `` VBG IN NNP NNP `` VBN NNP IN JJR CD , VBG PRP VBZ CD IN DT NN POS JJS NNS , IN IN NNP NNP CC NNP .\nBurma 's foreign ministry , however , said that it had taken action against around 400 traffickers in 2006 .\tNNP POS JJ NN , RB , VBD IN PRP VBD VBN NN IN IN CD NNS IN CD .\nThe United States and the European Union have imposed economic sanctions on Burma to protests human rights abuses and the lack of democratic progress in the military-run country .\tDT NNP NNPS CC DT NNP NNP VBP VBN JJ NNS IN NNP TO NNS JJ NNS NNS CC DT NN IN JJ NN IN DT JJ NN .\nIran has tested new Russian-built air defenses , as part of two-day war games off the Persian Gulf and Sea of Oman .\tNNP VBZ VBN JJ JJ NN NNS , IN NN IN JJ NN NNS IN DT NNP NNP CC NNP IN NNP .\nIran 's Revolutionary Guard commander , Brigadier General Hossein Salami , told state-run media that the military and air force are ' enhancing the defensive capabilities . '\tNNP POS NNP NNP NN , NNP NNP NNP NNP , VBD JJ NNS IN DT NN CC NN NN VBP `` VBG DT JJ NNS . ``\nHe said they test-fired their new Russian defense missile system called TOR-M1 .\tPRP VBD PRP VBD PRP$ JJ JJ NN NN NN VBD NNP .\nRussia completed delivery of the system last month .\tNNP VBD NN IN DT NN JJ NN .\nWednesday 's test comes as the United States moves a second aircraft carrier to the Gulf .\tNNP POS NN VBZ IN DT NNP NNPS VBZ DT JJ NN NN TO DT NNP .\nU.S. Defense Secretary Robert Gates said Friday the Bush administration is not planning to go to war with Iran .\tNNP NNP NNP NNP NNP VBD NNP DT NNP NN VBZ RB VBG TO VB TO NN IN NNP .\nThe United States and other Western nations accuse Tehran of seeking nuclear weapons .\tDT NNP NNPS CC JJ JJ NNS VBP NNP IN VBG JJ NNS .\nBut Iran maintains its nuclear program is solely for peaceful purposes .\tCC NNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS .\nHundreds of student supporters of the militant group Hamas have clashed with those backing the ruling Fatah party of Palestinian leader Mahmoud Abbas .\tNNS IN NN NNS IN DT JJ NN NNP VBP VBN IN DT VBG DT NN NNP NN IN JJ NN NNP NNP .\nWitnesses say the massive brawl erupted Sunday when several hundred Fatah backers at the West Bank 's Hebron University started shouting their own party 's slogans in the midst of a large Hamas campaign rally for student council elections .\tNNS VBP DT JJ NN VBD NNP WRB JJ CD NNP NNS IN DT NNP NNP POS NNP NNP VBD VBG PRP$ JJ NN POS NNS IN DT NN IN DT JJ NNP NN NN IN NN NN NNS .\nHospital officials say at least eight people were injured .\tNN NNS VBP IN JJS CD NNS VBD VBN .\nHamas , the largest and most powerful Palestinian militant group , has emerged as a key player in Palestinian politics .\tNNP , DT JJS CC RBS JJ JJ JJ NN , VBZ VBN IN DT JJ NN IN JJ NNS .\nOn Saturday , the Islamic group announced it will end a nearly decade-long boycott and take part in Palestinian parliamentary elections in July .\tIN NNP , DT NNP NN VBD PRP MD VB DT RB JJ NN CC VB NN IN JJ JJ NNS IN NNP .\nVenezuelan President Hugo Chavez says he plans to raise taxes on foreign oil companies in Venezuela .\tJJ NNP NNP NNP VBZ PRP VBZ TO VB NNS IN JJ NN NNS IN NNP .\nMr. Chavez Sunday described the move as a ' tax on extraction , ' saying it would create one billion dollars in new state revenue .\tNNP NNP NNP VBD DT NN IN DT `` NN IN NN , `` VBG PRP MD VB CD CD NNS IN JJ NN NN .\nHe made the announcement Sunday during his weekly television and radio program .\tPRP VBD DT NN NNP IN PRP$ JJ NN CC NN NN .\nThe new tax will be 33 percent - up from 16.7 percent .\tDT JJ NN MD VB CD NN IN RB IN CD NN .\nMr. Chavez has accused foreign oil companies of exploiting his country 's vast petroleum reserves without paying sufficient taxes , and has taken steps to increase revenue from the industry .\tNNP NNP VBZ VBN JJ NN NNS IN VBG PRP$ NN POS JJ NN NNS IN VBG JJ NNS , CC VBZ VBN NNS TO VB NN IN DT NN .\nAmerican skier Bode Miller has captured the Vancouver Olympic gold medal in the men 's super-combined event , which combines one downhill run with one slalom run .\tJJ NN NNP NNP VBZ VBN DT NNP NNP NN NN IN DT NNS POS JJ NN , WDT VBZ CD NN NN IN CD NN NN .\nAfter finishing seventh in the opening downhill run in Whistler , British Columbia Sunday , the 32-year-old Miller skied one of the fastest slalom .\tIN VBG JJ IN DT NN NN NN IN NNP , NNP NNP NNP , DT JJ NNP VBD CD IN DT JJS NN .\nHe finished with a two-run combined time of two minutes and 44.92 seconds .\tPRP VBD IN DT JJ JJ NN IN CD NNS CC CD NNS .\nIvica Kostelic of Croatia took the silver medal , 33/100ths of a second back , while Silvan Zurbriggen of Switzerland took the bronze , another 7/100ths behind .\tNNP NNP IN NNP VBD DT NN NN , NNS IN DT JJ NN , IN NNP NNP IN NNP VBD DT NN , DT CD NN .\nWith the win , Miller now has three medals in Vancouver - the super-combined gold , a silver in the super-G and the downhill bronze .\tIN DT NN , NNP RB VBZ CD NNS IN NNP IN DT JJ NN , DT NN IN DT NN CC DT NN NN .\nSouth Africa is sending a representative to next week 's Middle East peace conference in the U.S. city of Annapolis , Maryland near Washington .\tNNP NNP VBZ VBG DT NN TO JJ NN POS NNP NNP NN NN IN DT NNP NN IN NNP , NNP IN NNP .\nIn a statement Saturday the South African government says Foreign Affairs Minister Nkosazana Dlamini-Zuma will participate in the summit designed to find a peaceful resolution to the Israeli-Palestinian conflict .\tIN DT NN NNP DT JJ JJ NN VBZ NNP NNP NNP NNP NNP MD VB IN DT NN VBN TO VB DT JJ NN TO DT JJ NN .\nThe Foreign Affairs Ministry says South Africa hopes to share its experience transitioning from apartheid to democracy as part of the international effort to achieve peace in the Middle East .\tDT NNP NNP NNP VBZ NNP NNP VBZ TO VB PRP$ NN VBG IN NN TO NN IN NN IN DT JJ NN TO VB NN IN DT NNP NNP .\nIsraeli Prime Minister Ehud Olmert and Palestinian President Mahmoud Abbas are scheduled to attend the peace summit .\tJJ NNP NNP NNP NNP CC JJ NNP NNP NNP VBP VBN TO VB DT NN NN .\nSaudi Arabia which has no diplomatic ties with Israel will also be in attendance .\tNNP NNP WDT VBZ DT JJ NNS IN NNP MD RB VB IN NN .\nThe U.S. State Department says Washington has invited some 50 nations and entities to the conference to be held Tuesday .\tDT NNP NNP NNP VBZ NNP VBZ VBN DT CD NNS CC NNS TO DT NN TO VB VBN NNP .\nA top Spanish court has announced that it will no longer handle fast-track extraditions for Germany after that country refused to hand over a suspected al-Qaida member to Madrid .\tDT JJ JJ NN VBZ VBN IN PRP MD RB RB VB JJ NNS IN NNP IN DT NN VBD TO VB IN DT JJ NNP NN TO NNP .\nThe court , in Madrid , announced the policy change Wednesday , saying it will now revert to the the old , much slower way of processing extradition to Germany .\tDT NN , IN NNP , VBD DT NN NN NNP , VBG PRP MD RB VB TO DT DT JJ , RB JJR NN IN VBG NN TO NNP .\nSpain 's move comes after Germany 's top court in July ordered the release of Mamoun Darkazanli , a dual German-Syrian citizen indicted in Spain as an al-Qaida suspect .\tNNP POS NN VBZ IN NNP POS JJ NN IN NNP VBD DT NN IN NNP NNP , DT JJ JJ NN VBN IN NNP IN DT NNP NN .\nGermany 's Federal Constitutional court said the EU arrest warrant for Mr. Darkazanli violated the country 's constitution .\tNNP POS NNP NNP NN VBD DT NNP NN NN IN NNP NNP VBD DT NN POS NN .\nSpain is holding 50 suspects wanted by Germany on charges such as fraud , drug trafficking and robbery .\tNNP VBZ VBG CD NNS VBN IN NNP IN NNS JJ IN NN , NN NN CC NN .\nThe Spanish court says it will give German authorities 40 days to present standard extradition documents .\tDT JJ NN VBZ PRP MD VB JJ NNS CD NNS TO JJ JJ NN NNS .\nIf Germany fails to do so , Spain will release the suspects .\tIN NNP VBZ TO VB RB , NNP MD VB DT NNS .\nRussian Defense Minister Sergei Ivanov says his government would be worried by any U.S. and NATO attempts to further expand their influence into the former Soviet sphere .\tJJ NNP NNP NNP NNP VBZ PRP$ NN MD VB VBN IN DT NNP CC NNP NNS TO RBR VB PRP$ NN IN DT JJ JJ NN .\nAt a speech to the American Council for International Relations in New York Thursday , Mr. Ivanov said Russia sees no sense in further NATO enlargement .\tIN DT NN TO DT NNP NNP IN NNP NNPS IN NNP NNP NNP , NNP NNP VBD NNP VBZ DT NN IN JJ NNP NN .\nThe 26-member organization added seven European countries last year .\tDT JJ NN VBD CD JJ NNS JJ NN .\nHe also said Russia is concerned about American military presence in Georgia , a former Soviet republic where a pro-U.S. president came to power last year following a popular uprising .\tPRP RB VBD NNP VBZ VBN IN JJ JJ NN IN NNP , DT JJ JJ NN WRB DT JJ NN VBD TO NN JJ NN VBG DT JJ NN .\nMr. Ivanov stressed that Russia is not opposed to U.S. training of Georgian peacekeepers for overseas missions .\tNNP NNP VBD IN NNP VBZ RB VBN TO NNP NN IN JJ NNS IN JJ NNS .\nBut he says Moscow would not like Georgian peacekeepers to get involved in conflicts in the Caucasus .\tCC PRP VBZ NNP MD RB VB JJ NNS TO VB VBN IN NNS IN DT NNP .\nA top World Health Organization official says the H1N1 swine flu virus is ' unstoppable ' and says every country needs the vaccine .\tDT JJ NNP NNP NNP NN VBZ DT NNP NN NN NN VBZ `` JJ `` CC VBZ DT NN VBZ DT NN .\nWHO vaccine research chief Marie-Paule Kieny said Monday that health care workers should get immunized first because they are needed during an outbreak .\tNNP NN NN NN NNP NNP VBD NNP IN NN NN NNS MD VB VBN RB IN PRP VBP VBN IN DT NN .\nShe said authorities must then decide who gets shots next .\tPRP VBD NNS MD RB VB WP VBZ NNS JJ .\nSwine flu is mild in healthy people and most victims do not need hospitalization .\tNNP NN VBZ JJ IN JJ NNS CC JJS NNS VBP RB VB NN .\nBut the virus can be severe and even deadly in those with other serious health concerns , including asthma and pregnancy .\tCC DT NN MD VB JJ CC RB JJ IN DT IN JJ JJ NN NNS , VBG NN CC NN .\nResearchers also say that extreme obesity is now considered a risk factor for a severe reaction .\tNNS RB VBP IN JJ NN VBZ RB VBN DT NN NN IN DT JJ NN .\nMeanwhile , officials in Britain , Thailand , and the Philippines all reported new swine flu deaths Monday .\tRB , NNS IN NNP , NNP , CC DT NNPS DT VBD JJ JJ NN NNS NNP .\nThe latest WHO report confirms nearly 95,000 swine flu cases around the world , with 429 deaths .\tDT JJS NNP NN VBZ RB CD JJ NN NNS IN DT NN , IN CD NNS .\nPakistan 's Prime Minister Shaukat Aziz Pakistani Prime Minister says Pakistan wants the peaceful settlement of its dispute with India over Kashmir but will never accept the ceasefire Line of Control as a permanent border .\tNNP POS NNP NNP NNP NNP JJ NNP NNP VBZ NNP VBZ DT JJ NN IN PRP$ NN IN NNP IN NNP CC MD RB VB DT JJ NN IN NNP IN DT JJ NN .\nThe dispute over the Himalayan region is at the heart of decades of tension between South Asia 's nuclear-armed rivals .\tDT NN IN DT JJ NN VBZ IN DT NN IN NNS IN NN IN NNP NNP POS JJ NNS .\nSpeaking to legislators of Pakistani-ruled Kashmir in Muzaffarabad Thursday , Mr. Aziz said Pakistan has always emphasized that differences with India should be resolved through ' meaningful and constructive ' dialogue .\tVBG TO NNS IN JJ NNP IN NNP NNP , NNP NNP VBD NNP VBZ RB VBN IN NNS IN NNP MD VB VBN IN `` JJ CC JJ `` NN .\nBut he said Pakistan can not agree to any proposal that aims at converting the existing Line of Control into a permanent border .\tCC PRP VBD NNP MD RB VB TO DT NN WDT VBZ IN VBG DT VBG NN IN NNP IN DT JJ NN .\nHe also said the ongoing peace process between the two rivals is irreversible and they will have to show courage and flexibility to continue the dialogue .\tPRP RB VBD DT JJ NN NN IN DT CD NNS VBZ JJ CC PRP MD VB TO VB NN CC NN TO VB DT NN .\nThe billionaire founder of Facebook , and 16 other extremely wealthy individuals and families in the United States have agreed to give most of their fortunes to charity .\tDT NN NN IN NNP , CC CD JJ RB JJ NNS CC NNS IN DT NNP NNPS VBP VBN TO VB JJS IN PRP$ NNS TO NN .\nMark Zuckerberg 's social media empire is estimated to have earned him $ 6.9 billion .\tNNP NNP POS JJ NNS NN VBZ VBN TO VB VBN PRP $ CD CD .\nThe 26-year old entrepreneur says some wealthy people wait until late in their lives to give back .\tDT JJ JJ NN VBZ DT JJ NNS VB IN JJ IN PRP$ NNS TO VB RP .\nHe says it is a mistake to wait ' when there is so much to be done . '\tPRP VBZ PRP VBZ DT NN TO VB `` WRB EX VBZ RB RB TO VB VBN . ``\nThe new donors have joined a charitable project called the ' Giving Pledge ' started by billionaires Warren Buffett and Bill Gates .\tDT JJ NNS VBP VBN DT JJ NN VBD DT `` VBG NNP `` VBN IN NNS NNP NNP CC NNP NNP .\nThe group now has 57 members and is looking for new recruits outside the United States .\tDT NN RB VBZ CD NNS CC VBZ VBG IN JJ NNS IN DT NNP NNPS .\nThe pledges come at a time when the economic crisis has increased the need for social services and decreased overall charitable donations .\tDT NNS VBP IN DT NN WRB DT JJ NN VBZ VBN DT NN IN JJ NNS CC VBN JJ JJ NNS .\nThe cholera epidemic ravaging Zimbabwe has commanded the attention of public authorities and international relief organizations , but meanwhile a less-visible tragedy is unfolding among those living with - and dying in large numbers from - HIV / AIDS .\tDT NN NN VBG NNP VBZ VBN DT NN IN JJ NNS CC JJ NN NNS , CC RB DT JJ NN VBZ VBG IN DT VBG IN ; CC JJ IN JJ NNS IN ; NNP NNP NNP .\nHIV / AIDS advocates say resources have been concentrated on fighting the cholera epidemic , draining funds away from programs supporting those living with HIV / AIDS , who are highly vulnerable to the cholera bacterium which is almost ubiquitous in the country .\tNNP NNP NNP NNS VBP NNS VBP VBN VBN IN VBG DT NN NN , VBG NNS RB IN NNS VBG DT VBG IN NNP NNP NNP , WP VBP RB JJ TO DT NN NN WDT VBZ RB JJ IN DT NN .\nResearch suggests about 15 % of Zimbabwe 's population is HIV-positive .\tNNP VBZ IN CD NN IN NNP POS NN VBZ JJ .\nFrenk Guni , technical director for HIV-AIDS with Management Systems International in Washington , told reporter Patience Rusere of VOA 's Studio 7 for Zimbabwe that someone is dying from HIV / AIDS every three minutes in Zimbabwe .\tNNP NNP , JJ NN IN NNS IN NNP NNP NNP IN NNP , VBD NN NNP NNP IN NNP POS NNP CD IN NNP IN DT VBZ VBG IN NNP NNP NNP DT CD NNS IN NNP .\nMore reports from VOA 's Studio 7 for Zimbabwe ...\tJJR NNS IN NNP POS NNP CD IN NNP :\nEuropean Union foreign ministers have renewed sanctions against Burma 's military rulers for another year .\tNNP NNP JJ NNS VBP VBN NNS IN NNP POS JJ NNS IN DT NN .\nUnder the sanctions , members of the ruling military junta and their families are barred from entering the EU .\tIN DT NNS , NNS IN DT NN JJ NN CC PRP$ NNS VBP VBN IN VBG DT NNP .\nThe measures also ban EU companies and organizations from doing business in Burma .\tDT NNS RB VBP NNP NNS CC NNS IN VBG NN IN NNP .\nThe 25-member bloc initially imposed the sanctions in 1996 after Rangoon failed to meet EU demands for democratic reforms .\tDT JJ NN RB VBD DT NNS IN CD IN NNP VBD TO VB NNP NNS IN JJ NNS .\nThe EU also wants pro-democracy leader Aung San Suu Kyi to be released from house arrest .\tDT NNP RB VBZ JJ NN NNP NNP NNP NNP TO VB VBN IN NN NN .\nBurma 's military rulers are coming under increasing pressure to implement democratic reforms .\tNNP POS JJ NNS VBP VBG IN VBG NN TO VB JJ NNS .\nThere are calls to deny Burma its scheduled chairmanship of the Association of Southeast Asian Nations ( ASEAN ) in 2006 .\tEX VBP NNS TO VB NNP PRP$ JJ NN IN DT NNP IN NNP NNP NNP LRB NNP RRB IN CD .\nCenter-left candidate Alvaro Colom is holding the lead as official return are counted from Guatemala 's run-off presidential election .\tJJ NN NNP NNP VBZ VBG DT NN IN JJ NN VBP VBN IN NNP POS JJ JJ NN .\nWith ballots from 68 percent of the nation 's polling stations counted Sunday night , Colom had 51.4 percent of the vote , to 41.6 percent for retired General Otto Perez Molina .\tIN NNS IN CD NN IN DT NN POS NN NNS VBN NNP NN , NNP VBD CD NN IN DT NN , TO CD NN IN JJ NNP NNP NNP NNP .\nColom and Perez were the top two finishers in the first-round presidential election , in September .\tNNP CC NNP VBD DT JJ CD NNS IN DT JJ JJ NN , IN NNP .\nPerez based his campaign on pledges to fight crime and combat drug trafficking .\tNNP VBD PRP$ NN IN NNS TO VB NN CC NN NN NN .\nColom 's platform focused on poverty issues .\tNNP POS NN VBD IN NN NNS .\nAbout 50 people died in election-related violence before September 's vote , making it the deadliest political campaign since Guatemala 's 36-year civil war ended in 1996 .\tIN CD NNS VBD IN JJ NN IN NNP POS NN , VBG PRP DT JJS JJ NN IN NNP POS JJ JJ NN VBN IN CD .\nGunmen in Guatemala City killed a Perez aide last month .\tNNS IN NNP NNP VBD DT NNP NN JJ NN .\nThe retired general has linked the killing to his vow to crack down on drug trafficking .\tDT JJ NN VBZ VBN DT NN TO PRP$ NN TO VB RP IN NN NN .\nThe best-known U.S. stock market index , the Dow Jones Industrial Average , rose higher than ever before Wednesday , passing the 13,000 mark for the first time .\tDT JJ NNP NN NN NN , DT NNP NNP NNP NNP , VBD JJR IN RB IN NNP , VBG DT CD NN IN DT JJ NN .\nThe Dow rose as high as 13,107 during trading , before easing slightly to 13,090 at the close .\tDT NNP VBD RB JJ IN CD IN NN , IN VBG RB TO CD IN DT NN .\nMajor companies like Amazon and Boeing reported stronger earnings than investors expected , giving them hope these corporations will continue to prosper even though the U.S. economy is slowing down .\tJJ NNS IN NNP CC NNP VBD JJR NNS IN NNS VBN , VBG PRP VBP DT NNS MD VB TO VB RB IN DT NNP NN VBZ VBG RP .\nThe Dow also gained after Alcoa said it might sell parts of its business , and economic reports showed rising orders for manufactured goods and rising sales for new homes .\tDT NNP RB VBD IN NNP VBD PRP MD VB NNS IN PRP$ NN , CC JJ NNS VBD VBG NNS IN JJ NNS CC VBG NNS IN JJ NNS .\nThe Dow Jones Industrial Average is a composite measure of what are called ' blue-chip ' stocks from the biggest U.S. companies in a variety of industries .\tDT NNP NNP NNP NNP VBZ DT JJ NN IN WP VBP VBN `` JJ `` NNS IN DT JJS NNP NNS IN DT NN IN NNS .\nColombian officials say 552 right-wing paramilitary fighters have turned over their weapons as part of an on-going peace agreement with the government .\tJJ NNS VBP CD JJ JJ NNS VBP VBN RP PRP$ NNS IN NN IN DT JJ NN NN IN DT NN .\nColombia 's Peace Commission says the weapons were turned in at a ceremony Thursday in Santuario , nearly 300 kilometers west of the capital , Bogota .\tNNP POS NNP NNP VBZ DT NNS VBD VBN RP IN DT NN NNP IN NNP , RB CD NNS JJS IN DT NN , NNP .\nThe militia men were from a group known as the Heroes and Martyrs of Guatica , a faction of the United Self-Defense Forces of Colombia .\tDT NN NNS VBD IN DT NN VBN IN DT NNP CC NNP IN NNP , DT NN IN DT NNP NNP NNS IN NNP .\nPeace Commissioner Luis Carlos Restrepo attended the ceremony , along with other officials .\tNNP NNP NNP NNP NNP VBD DT NN , IN IN JJ NNS .\nThe commission says more than 13,000 paramilitary fighters have now turned over their weapons and will take part in programs designed to reintegrate the fighters into society .\tDT NN VBZ JJR IN CD JJ NNS VBP RB VBN RP PRP$ NNS CC MD VB NN IN NNS VBN TO VB DT NNS IN NN .\nColombia has been mired in a nearly 40-year conflict between leftist rebels , rightist paramilitaries and the government .\tNNP VBZ VBN VBN IN DT RB JJ NN IN JJ NNS , JJ NNS CC DT NN .\nThe conflict leaves thousands of people dead each year .\tDT NN VBZ NNS IN NNS JJ DT NN .\nCrude oil prices fell after some downbeat economic reports pointed to a deeper recession in the United States , which would push energy demand down .\tJJ NN NNS VBD IN DT JJ JJ NNS VBD TO DT JJR NN IN DT NNP NNPS , WDT MD VB NN NN RB .\nTraders also expect a U.S. government report to show continued growth of oil inventories in the world 's biggest energy market .\tNNS RB VBP DT NNP NN NN TO VB JJ NN IN NN NNS IN DT NN POS JJS NN NN .\nThe price of a barrel of oil for future delivery fell more than $ 4 to hit $ 41.67 at the close of trading in New York .\tDT NN IN DT NN IN NN IN JJ NN VBD JJR IN $ CD TO VB $ CD IN DT NN IN NN IN NNP NNP .\nOil has fallen as low as $ 33 a barrel recently , and hit an all-time high above $ 147 a barrel last July .\tNNP VBZ VBN RB JJ IN $ CD DT NN RB , CC VBD DT JJ NN IN $ CD DT NN JJ NNP .\nAIDS activists in South Africa are expressing outrage over testimony by former Deputy President Jacob Zuma at his trial on rape charges .\tNNP NNS IN NNP NNP VBP VBG NN IN NN IN JJ NNP NNP NNP NNP IN PRP$ NN IN NN NNS .\nIn court Wednesday , Zuma said he showered after having unprotected sex with his accuser in order to minimize the chance of acquiring AIDS .\tIN NN NNP , NNP VBD PRP VBD IN VBG JJ NN IN PRP$ NN IN NN TO VB DT NN IN VBG NNP .\nZuma 's 31-year-old accuser has HIV , the virus that causes AIDS .\tNNP POS JJ NN VBZ NNP , DT NN WDT VBZ NNP .\nZuma is not infected .\tNNP VBZ RB JJ .\nHe says the sexual contact was consensual .\tPRP VBZ DT JJ NN VBD JJ .\nAIDS activists say Zuma 's testimony undermines the nation 's prevention campaign .\tNNP NNS VBP NNP POS NN VBZ DT NN POS NN NN .\nThey say it gives the impression that men who do not use a condom during intercourse with HIV-positive women are not at risk .\tPRP VBP PRP VBZ DT NN IN NNS WP VBP RB VB DT NN IN NN IN JJ NNS VBP RB IN NN .\nSome five million people in South Africa suffer from AIDS , the greatest number of any country in the world .\tDT CD CD NNS IN NNP NNP VBP IN NNP , DT JJS NN IN DT NN IN DT NN .\nZuma is the former head of South Africa 's AIDS Council .\tNNP VBZ DT JJ NN IN NNP NNP POS NNP NNP .\nSouth Africa 's government is often accused of not taking AIDS seriously .\tNNP NNP POS NN VBZ RB VBN IN RB VBG NNP RB .\nAuthorities in Japan say they have detected signs of bird flu at a farm north of Tokyo .\tNNS IN NNP VBP PRP VBP VBN NNS IN NN NN IN DT NN NN IN NNP .\nJapan 's Kyodo news agency said Monday officials plan to kill 82,000 chickens at the farm .\tNNP POS NNP NN NN VBD NNP NNS VBP TO VB CD NNS IN DT NN .\nThe farm is in a quarantined area of Ibaraki prefecture , where media reports say approximately 1.5 million birds have already been culled because of past bird-flu outbreaks .\tDT NN VBZ IN DT JJ NN IN NNP NN , WRB NNS NNS VBP RB CD CD NNS VBP RB VBN VBN IN IN JJ NN NNS .\nIt was not clear if the bird flu detected in Japan was the H5N1 strain of the virus that has killed more than 60 people in Asia over the past two years .\tPRP VBD RB JJ IN DT NN NN VBN IN NNP VBD DT NNP NN IN DT NN WDT VBZ VBN JJR IN CD NNS IN NNP IN DT JJ CD NNS .\nMeanwhile , Vietnam is calling for more international assistance to help it fight avian influenza .\tRB , NNP VBZ VBG IN JJR JJ NN TO VB PRP VB JJ NN .\nA Vietnamese official asked for help at a meeting of health and disaster officials from the Asia-Pacific Economic Cooperation forum in Brisbane , Australia .\tDT JJ NN VBD IN NN IN DT NN IN NN CC NN NNS IN DT NNP NNP NNP NN IN NNP , NNP .\nThe APEC officials are discussing contingency plans in case H5N1 strain of the bird-flu virus begins spreading between humans .\tDT NNP NNS VBP VBG NN NNS IN NN NNP NN IN DT NN NN VBZ VBG IN NNS .\nIraqi officials say they have a fugitive half-brother and former adviser to ousted president Saddam Hussein in custody .\tJJ NNS VBP PRP VBP DT JJ NN CC JJ NN TO JJ NN NNP NNP IN NN .\nAuthorities have not released details of the arrest of Sabawi Ibrahim al-Hasan .\tNNS VBP RB VBN NNS IN DT NN IN NNP NNP NNP .\nBut there are reports that Syria was involved in the capture .\tCC EX VBP NNS IN NNP VBD VBN IN DT NN .\nThe Associated Press says Damascus handed over the former intelligence chief early Sunday as a goodwill gesture .\tDT NNP NNP VBZ NNP VBD IN DT JJ NN NN JJ NNP IN DT NN NN .\nSabawi Ibrahim al-Hasan was number 36 on a U.S. list of the most wanted people in Iraq .\tNNP NNP NNP VBD NN CD IN DT NNP NN IN DT RBS JJ NNS IN NNP .\nHe had a bounty on his head of one million dollars .\tPRP VBD DT NN IN PRP$ NN IN CD CD NNS .\nIn other developments , a bombing at a police station killed at least five Iraqis Sunday near the northern city of Mosul .\tIN JJ NNS , DT NN IN DT NN NN VBD IN JJS CD NNS NNP IN DT JJ NN IN NNP .\nBritish media report that two British hostages kidnapped in Iraq two years ago are believed to be dead .\tJJ NNS NN IN CD JJ NNS VBN IN NNP CD NNS RB VBP VBN TO VB JJ .\nReports say the British Foreign Office told the families of the two last week that it believed the men were dead .\tNNS VBP DT NNP NNP NNP VBD DT NNS IN DT CD JJ NN IN PRP VBD DT NNS VBD JJ .\nThe two were among a group of five Britons who were seized from an Iraqi Finance Ministry building in Baghdad by men disguised as Iraqi police in 2007 .\tDT CD VBD IN DT NN IN CD NNS WP VBD VBN IN DT JJ NNP NNP NN IN NNP IN NNS VBN IN JJ NN IN CD .\nThe bodies of two of the other hostages were handed over to British authorities last month .\tDT NNS IN CD IN DT JJ NNS VBD VBN IN TO JJ NNS JJ NN .\nThe fate of the fifth hostage remains unclear and the Foreign Office says all efforts are being made to secure his release .\tDT NN IN DT JJ NN VBZ JJ CC DT NNP NNP VBZ DT NNS VBP VBG VBN TO VB PRP$ NN .\nA group calling itself the Islamic Shi'ite Resistance in Iraq says it is behind the abductions .\tDT NN VBG PRP DT NNP NNP NNP IN NNP VBZ PRP VBZ IN DT NNS .\nThe main Marxist ally of Sri Lanka 's ruling coalition government has quit in protest over a plan to share the distribution of tsunami aid with the Tamil Tiger rebels .\tDT JJ JJ NN IN NNP NNP POS NN NN NN VBZ VBN IN NN IN DT NN TO VB DT NN IN NN NN IN DT NNP NNP NNS .\nThe People 's Liberation Front , popularly known as the JVP , has 39 seats in the 225-seat parliament in which President Chandrika Kumaratunga has only a five-seat majority .\tDT NNS POS NNP NNP , RB VBN IN DT NNP , VBZ CD NNS IN DT JJ NN IN WDT NNP NNP NNP VBZ RB DT JJ NN .\nPresident Kumaratunga wants to share the distribution of tsunami aid with the Tamil Tigers as an opportunity to forge peace with them .\tNNP NNP VBZ TO VB DT NN IN NN NN IN DT NNP NNP IN DT NN TO VB NN IN PRP .\nThe donors also have insisted on a joint aid-distribution mechanism .\tDT NNS RB VBP VBN IN DT JJ NN NN .\nBut the JVP and the country 's influential Buddhist monks have opposed the move , saying such an agreement would help the rebels ' cause for a separate state .\tCC DT NNP CC DT NN POS JJ NN NNS VBP VBN DT NN , VBG JJ DT NN MD VB DT NNS POS NN IN DT JJ NN .\nReports from Colombo say the pullout may not bring the government down because the president has secured support of some of the opposition lawmakers in parliament .\tNNS IN NNP VBP DT NN MD RB VB DT NN RB IN DT NN VBZ VBN NN IN DT IN DT NN NNS IN NN .\nPolls are open in all four of the U.S. states holding primary elections today Tuesday as U.S. Senators Hillary Clinton and Barack Obama battle for support for the Democratic Party nomination .\tNNS VBP JJ IN DT CD IN DT NNP NNS VBG JJ NNS NN NNP IN NNP NNP NNP NNP CC NNP NNP NN IN NN IN DT JJ NNP NN .\nTexas and Ohio are the two key states in Tuesday 's balloting , because they have many more delegates than the small northeastern states of Vermont and Rhode Island .\tNNP CC NNP VBP DT CD JJ NNS IN NNP POS NN , IN PRP VBP JJ JJR NNS IN DT JJ JJ NNS IN NNP CC NNP NNP .\nDelegates choose the party 's nominee for the presidential race .\tNNS VBP DT NN POS NN IN DT JJ NN .\nClinton lags behind Obama , with 11 straight losses in primaries and caucuses .\tNNP VBZ IN NNP , IN CD JJ NNS IN NNS CC NNS .\nFormer U.S. President Bill Clinton has said his wife needs to win both Texas and Ohio to keep her campaign alive .\tJJ NNP NNP NNP NNP VBZ VBN PRP$ NN VBZ TO VB DT NNP CC NNP TO VB PRP$ NN JJ .\nOn the Republican side , Senator John McCain seems on the verge of clinching his party 's nomination .\tIN DT JJ NN , NNP NNP NNP VBZ IN DT NN IN VBG PRP$ NN POS NN .\nSenator McCain could secure the Republican Party nomination with victories Tuesday .\tNNP NNP MD VB DT NNP NNP NN IN NNS NNP .\nHe has a commanding lead over former Arkansas Governor Mike Huckabee .\tPRP VBZ DT JJ NN IN JJ NNP NNP NNP NNP .\nEgypt 's top cleric has angrily condemned those responsible for last week 's terrorist bombings in Sharm el-Sheikh .\tNNP POS JJ NN VBZ RB VBN DT JJ IN JJ NN POS JJ NNS IN NNP NNP .\nSpeaking in that Red Sea resort town , the grand imam of the Al-Azhar mosque , Mohammed Sayyed Tantawi , rejected terrorist attacks in the name of Islam .\tVBG IN DT NNP NNP NN NN , DT JJ NN IN DT NNP NN , NNP NNP NNP , VBD JJ NNS IN DT NN IN NNP .\nHe said the bombers will be cursed by God .\tPRP VBD DT NNS MD VB VBN IN NNP .\nEgyptian officials say 64 people died in the blasts , but local doctors say the death toll is nearly 90 .\tJJ NNS VBP CD NNS VBD IN DT NNS , CC JJ NNS VBP DT NN NN VBZ RB CD .\nThe grand imam called on Egyptians to help find those responsible for the attacks .\tDT JJ NN VBN IN NNS TO VB VB DT JJ IN DT NNS .\nEgypt 's President Hosni Mubarak has called for an Arab summit next month in Sharm el-Sheikh to discuss terrorism and other concerns .\tNNP POS NNP NNP NNP VBZ VBN IN DT JJ NN JJ NN IN NNP NNP TO VB NN CC JJ NNS .\nThousands of military personnel from several countries have been deployed to hard-hit areas of the Indian Ocean tsunami .\tNNS IN JJ NNS IN JJ NNS VBP VBN VBN TO JJ NNS IN DT NNP NNP NN .\nWorldwide public and private aid pledges now top $ 5 billion , but those contributions do not include the cost of the military personnel that relief workers say are urgently needed to deliver aid to remote areas .\tRB JJ CC JJ NN NNS RB VBP $ CD CD , CC DT NNS VBP RB VB DT NN IN DT JJ NNS IN NN NNS VBP VBP RB VBN TO VB NN TO VB NNS .\nThe United Nations-coordinated effort includes 16,000 U.S. forces , 16,000 Indian troops and 350 Australian military personnel .\tDT NNP NNP NN VBZ CD NNP NNS , CD JJ NNS CC CD JJ JJ NNS .\nPakistan and Spain each plan to deploy some 500 military personnel .\tNNP CC NNP DT NN TO VB DT CD JJ NNS .\nJapan expects to send about 1,000 troops .\tNNP VBZ TO VB RB CD NNS .\nCountries as far away as Switzerland , Germany and Russia have contributed aircraft , ships and tons of supplies for the relief effort .\tNNS IN RB RB IN NNP , NNP CC NNP VBP VBN NN , NNS CC NNS IN NNS IN DT NN NN .\nLarge so-called ' floating hospitals , ' capable of purifying water and accommodating hundreds of victims , also have been deployed to the region .\tJJ JJ `` VBG NNS , `` JJ IN VBG NN CC VBG NNS IN NNS , RB VBP VBN VBN TO DT NN .\nPolice in the Iraqi city of Najaf say at least three civilians have been killed in a car bombing Saturday , less than a week after an attack there killed 52 people .\tNNS IN DT JJ NN IN NNP VBP IN JJS CD NNS VBP VBN VBN IN DT NN VBG NNP , JJR IN DT NN IN DT NN RB VBD CD NNS .\nInitial details are sketchy , but police say the incident occurred on the highway between the Shi'ite holy cities of Najaf and Karbala and appeared to have targeted a U.S. military convoy .\tJJ NNS VBP JJ , CC NNS VBP DT NN VBD IN DT NN IN DT NNP JJ NNS IN NNP CC NNP CC VBD TO VB VBN DT NNP JJ NN .\nThere was no word on whether there were U.S. casualties .\tEX VBD DT NN IN IN EX VBD NNP NNS .\nMeanwhile , Najaf 's governor says police have arrested a group of men suspected of having organized last Sunday 's attack and an announcement would be made in Baghdad next week .\tRB , NNP POS NN VBZ NNS VBP VBN DT NN IN NNS VBN IN VBG VBN JJ NNP POS NN CC DT NN MD VB VBN IN NNP JJ NN .\nIn Baghdad , it was a bleak Christmas for the city 's small Christian community .\tIN NNP , PRP VBD DT JJ NNP IN DT NN POS JJ JJ NN .\nFurther unnerved by an apparent suicide attack Christmas Eve that killed nine people , the city 's churches were mostly empty today .\tRB VBN IN DT JJ NN NN NNP NNP WDT VBD CD NNS , DT NN POS NNS VBD RB JJ NN .\nPakistan has condemned India 's remarks on the escalating violence in Baluchistan province , warning that such statements are unhelpful and will not improve bilateral relations .\tNNP VBZ VBN NNP POS NNS IN DT VBG NN IN NNP NN , VBG IN JJ NNS VBP JJ CC MD RB VB JJ NNS .\nIndia 's Foreign Ministry spokesman Navtej Sarna last week expressed concern over what he called the ' spiraling violence ' between Pakistani security forces and restive tribesmen in Baluchistan province .\tNNP POS NNP NNP NN NNP NNP JJ NN VBD NN IN WP PRP VBD DT `` VBG NN `` IN JJ NN NNS CC JJ NNS IN NNP NN .\nPakistan 's Foreign Ministry spokeswoman Tasnim Aslam told reporters in Islamabad that India should mind its own business .\tNNP POS NNP NNP NN NNP NNP VBD NNS IN NNP IN NNP MD VB PRP$ JJ NN .\nIn recent weeks , Pakistani army helicopters and ground troops have overrun suspected training bases in Baluchistan thought to be used by militants for attacks on government installations .\tIN JJ NNS , JJ NN NNS CC NN NNS VBP VBN JJ NN NNS IN NNP VBN TO VB VBN IN NNS IN NNS IN NN NNS .\nBaluch tribesmen have been launching attacks to press their demands for an increase in royalties for resources extracted in their areas .\tNNP NNS VBP VBN VBG NNS TO VB PRP$ NNS IN DT NN IN NNS IN NNS VBN IN PRP$ NNS .\nMs. Aslam warned that such Indian criticism could weaken attempts by the neighboring countries to resolve bilateral issues , including the long-standing dispute over Kashmir .\tNNP NNP VBD IN JJ JJ NN MD VB NNS IN DT JJ NNS TO VB JJ NNS , VBG DT JJ NN IN NNP .\nPakistani authorities say gunmen on a motorcycle have killed three Chinese engineers and their Pakistani driver in the troubled southwestern Baluchistan province .\tJJ NNS VBP NNS IN DT NN VBP VBN CD JJ NNS CC PRP$ JJ NN IN DT JJ JJ NNP NN .\nLocal police say the drive-by shooting occurred Wednesday in a remote town southeast of the provincial capital , Quetta .\tJJ NNS VBP DT JJ NN VBD NNP IN DT JJ NN NN IN DT JJ NN , NNP .\nThe Associated Press says a tribal militant group , the Baluchistan Liberation Army , claimed responsibility for the attack .\tDT NNP NNP VBZ DT JJ JJ NN , DT NNP NNP NNP , VBD NN IN DT NN .\nIn a separate development , in the North Waziristan tribal region bordering Afghanistan , Pakistani security forces arrested two men late Tuesday on suspicion of links with al-Qaida .\tIN DT JJ NN , IN DT NNP NNP JJ NN VBG NNP , JJ NN NNS VBN CD NNS JJ NNP IN NN IN NNS IN NNP .\nPakistan 's army has conducted a series of counter-terrorism operations in North and South Waziristan in the past three years , aimed at trapping Arab , Afghan and Central Asian militants with links to the Taliban and al-Qaida .\tNNP POS NN VBZ VBN DT NN IN NN NNS IN NNP CC NNP NNP IN DT JJ CD NNS , VBN IN VBG NNP , JJ CC NNP NNP NNS IN NNS TO DT NNP CC NNP .\nCuba has placed two large billboards with pictures of U.S. soldiers abusing Iraqi prisoners near the U.S. mission in Havana -- in apparent retaliation for a dispute over the mission 's Christmas decorations .\tNNP VBZ VBN CD JJ NNS IN NNS IN NNP NNS VBG JJ NNS IN DT NNP NN IN NNP : IN JJ NN IN DT NN IN DT NN POS NNP NNS .\nThe billboards contain photographs of hooded Iraqi detainees from Baghdad 's notorious Abu Ghraib prison , as well as an image of a swastika and the word ' fascists . '\tDT NNS VBP NNS IN JJ JJ NNS IN NNP POS JJ NNP NNP NN , RB RB IN DT NN IN DT NN CC DT NN `` NNS . ``\nThere was no immediate reaction from the United States .\tEX VBD DT JJ NN IN DT NNP NNPS .\nThe large signs went up Friday , three days after the Cuban government threatened consequences for Christmas decorations displayed outside the offices of the U.S. special interest section .\tDT JJ NNS VBD RB NNP , CD NNS IN DT JJ NN VBD NNS IN NNP NNS VBD IN DT NNS IN DT NNP JJ NN NN .\nA U.S. official said Cuba was upset because the decorations include a neon sign with the number ' 75 ' on it -- a reference to the 75 political dissidents imprisoned in Cuba last year .\tDT NNP NN VBD NNP VBD VBN IN DT NNS VBP DT NN NN IN DT NN `` CD `` IN PRP IN DT NN TO DT CD JJ NNS VBN IN NNP JJ NN .\nCuba and the United States do not have diplomatic relations .\tNNP CC DT NNP NNPS VBP RB VB JJ NNS .\nThe full U.S. Senate begins debate Monday on the nomination of John Roberts as chief justice of the United States .\tDT JJ NNP NNP VBZ NN NNP IN DT NN IN NNP NNP IN JJ NN IN DT NNP NNPS .\nMr. Roberts appears to have more than enough votes to be confirmed in the Republican-controlled Senate .\tNNP NNP VBZ TO VB JJR IN JJ NNS TO VB VBN IN DT JJ NNP .\nAt least nine Democrats have pledged their support for the conservative judge , along with all 55 Republican senators .\tIN JJS CD NNS VBP VBN PRP$ NN IN DT JJ NN , IN IN DT CD NNP NNS .\nConfirmation requires a simple majority of the 100 senators .\tNNP VBZ DT JJ NN IN DT CD NNS .\nA final vote is expected to take place Thursday .\tDT JJ NN VBZ VBN TO VB NN NNP .\nWith Mr. Roberts ' confirmation virtually assured , many lawmakers are turning their attention to President Bush 's next nomination to the Supreme Court .\tIN NNP NNP POS NN RB VBN , JJ NNS VBP VBG PRP$ NN TO NNP NNP POS JJ NN TO DT NNP NNP .\nMany senators are urging Mr. Bush to pick a moderate candidate to succeed Justice Sandra Day O'Connor , who announced her retirement in July .\tJJ NNS VBP VBG NNP NNP TO VB DT JJ NN TO VB NNP NNP NNP NNP , WP VBD PRP$ NN IN NNP .\nCrude oil prices have again hit record highs .\tJJ NN NNS VBP RB VBN NN NNS .\nThe spike in prices Wednesday came after a U.S. government report said inventories of crude oil and gasoline declined last week .\tDT NN IN NNS NNP VBD IN DT NNP NN NN VBD NNS IN JJ NN CC NN VBD JJ NN .\nThe Bloomberg financial news service says U.S. crude oil briefly jumped to $ 71.79 a barrel before easing slightly .\tDT NNP JJ NN NN VBZ NNP JJ NN RB VBD TO $ CD DT NN IN VBG RB .\nIn Britain , Brent crude rose to equal Tuesday 's record high of $ 72.64 .\tIN NNP , NNP NN VBD TO VB NNP POS NN NN IN $ CD .\nAnalysts say prices are being pushed up by worries that oil supplies from Iran and Nigeria might be disrupted by political disputes .\tNNS VBP NNS VBP VBG VBN RP IN NNS IN NN NNS IN NNP CC NNP MD VB VBN IN JJ NNS .\nThese concerns come at a time of strong demand for oil in the United States , China , and other big nations .\tDT NNS VBP IN DT NN IN JJ NN IN NN IN DT NNP NNPS , NNP , CC JJ JJ NNS .\nDemocratic U.S. Senator Edward Kennedy has urged the government to spend more money on education as millions of students return to school for a new academic year .\tJJ NNP NNP NNP NNP VBZ VBN DT NN TO VB JJR NN IN NN IN NNS IN NNS VBP IN NN IN DT JJ JJ NN .\nSenator Kennedy delivered the Democrats ' weekly radio address Saturday .\tNNP NNP VBD DT NNPS POS JJ NN NN NNP .\nHe said Democrats want more money for teacher training , small class sizes , early childhood education and college aid .\tPRP VBD NNPS VBP JJR NN IN NN NN , JJ NN NNS , JJ NN NN CC NN NN .\nMr. Kennedy accused the Bush administration and Republican leaders in Congress of underfunding an education law passed in 2001 called the No Child Left Behind Act .\tNNP NNP VBD DT NNP NN CC JJ NNS IN NNP IN VBG DT NN NN VBN IN CD VBD DT NNP NNP NNP NNP NNP .\nHe said without more money spent on education , America 's national security and competitive standing in the world are at risk .\tPRP VBD IN JJR NN VBN IN NN , NNP POS JJ NN CC JJ NN IN DT NN VBP IN NN .\nThe senator from Massachusetts is the senior Democrat on the Senate committee that oversees education .\tDT NN IN NNP VBZ DT JJ NNP IN DT NNP NN WDT VBZ NN .\nSpain 's top anti-terrorism judge has indicted eight Islamic militants for allegedly helping a suspected mastermind of the September 11 attacks on the United States .\tNNP POS JJ NN NN VBZ VBN CD JJ NNS IN RB VBG DT JJ NN IN DT NNP CD NNS IN DT NNP NNPS .\nJudge Baltasar Garzon Monday formally charged the eight with providing fake identity papers and other documents to Ramzi Binalshibh .\tNNP NNP NNP NNP RB VBD DT CD IN VBG JJ NN NNS CC JJ NNS TO NNP NNP .\nHe is in U.S. custody , suspected of being the contact between al-Qaida and the September 11 hijackers .\tPRP VBZ IN NNP NN , VBN IN VBG DT NN IN NNP CC DT NNP CD NNS .\nOne of the suspects charged Monday - Tahar Ezirouali - is still at large and was indicted in absentia .\tCD IN DT NNS VBN NNP IN NNP NNP : VBZ RB IN JJ CC VBD VBN IN NN .\nThe International Olympic Committee says a Ukrainian heptathlon silver medalist is under investigation for a positive drug test at the Beijing Olympics .\tDT NNP NNP NNP VBZ DT JJ NN NN NN VBZ IN NN IN DT JJ NN NN IN DT NNP NNPS .\nThe IOC said Wednesday it has opened a probe into Lyudmila Blonska , who finished second behind Ukrainian Natalia Dobrynska last Saturday .\tDT NNP VBD NNP PRP VBZ VBN DT NN IN NNP NNP , WP VBD JJ IN JJ NNP NNP JJ NNP .\nThe IOC 's disciplinary commission and executive board are expected to rule on the case Thursday .\tDT NNP POS JJ NN CC JJ NN VBP VBN TO VB IN DT NN NNP .\nIf found guilty , Blonska would be stripped of her medal and could be subjected to a lifetime ban .\tIN VBN JJ , NNP MD VB VBN IN PRP$ NN CC MD VB VBN TO DT NN NN .\nBlonska served a separate doping suspension earlier this decade .\tNNP VBD DT JJ NN NN RBR DT NN .\nIraqi police guard site where head of Diyala provincial council Hussein Alwan al-Tamimi was killed in Baquoba A series of suicide car bombings and two-bomb rigged motorcycles killed at least 33 people across northern Iraq Thursday .\tJJ NN NN NN WRB NN IN NNP JJ NN NNP NNP NNP VBD VBN IN NNP NNP NN IN NN NN NNS CC JJ JJ NNS VBN IN JJS CD NNS IN JJ NNP NNP .\nThe worst attack was on a restaurant in the town of Tuz Khurmatu , where bodyguards of Deputy Prime Minster Rowsch Nouri Shaways were eating .\tDT JJS NN VBD IN DT NN IN DT NN IN NNP NNP , WRB NNS IN NNP NNP NNP NNP NNP NNPS VBD JJ .\nTwelve people were killed .\tCD NNS VBD VBN .\nMr. Shaways was not present .\tNNP NNP VBD RB JJ .\nBombers also struck the gates of a state-run oil firm in Kirkuk and a government convoy in Baquba .\tNNS RB VBD DT NNS IN DT JJ NN NN IN NNP CC DT NN NN IN NNP .\nTwo parked motorcycles rigged with bombs also exploded outside a cafe in Mosul , killing five people .\tCD JJ NNS VBN IN NNS RB VBD IN DT NN IN NNP , VBG CD NNS .\nMeanwhile , Iraq 's Interior Ministry says 700 terror suspects have been arrested and a huge number of weapons seized so far in a massive security sweep in Baghdad that began Sunday .\tRB , NNP POS NNP NNP VBZ CD NN NNS VBP VBN VBN CC DT JJ NN IN NNS VBN RB RB IN DT JJ NN NN IN NNP WDT VBD NNP .\nOperation Lightning is aimed against Iraqi insurgents .\tNNP NNP VBZ VBN IN JJ NNS .\nU.S. crude oil prices have risen to another record high , passing $ 78 a barrel , as violence in the Middle East and Nigeria threatened supplies .\tNNP JJ NN NNS VBP VBN TO DT NN NN , VBG $ CD DT NN , IN NN IN DT NNP NNP CC NNP VBD NNS .\nCrude oil for August delivery closed at a record $ 76.7 in New York Thursday .\tJJ NN IN NNP NN VBD IN DT NN $ CD IN NNP NNP NNP .\nThe price continued to rise in after-hours trading , hitting $ 78.4 .\tDT NN VBD TO VB IN JJ NN , VBG $ CD .\nThat is the highest price for oil since the New York Mercantile Exchange began the contract in 1983 .\tDT VBZ DT JJS NN IN NN IN DT NNP NNP NNP NNP VBD DT NN IN CD .\nIn early Asian trading Friday crude oil was at $ 77.95 a barrel .\tIN JJ JJ NN NNP JJ NN VBD IN $ CD DT NN .\nStrong demand for oil leaves little unused oil production capacity anywhere in the world .\tJJ NN IN NN NNS RB JJ NN NN NN RB IN DT NN .\nThe tight balance between supply and demand means any disruption in oil supplies could cause prices to soar .\tDT JJ NN IN NN CC NN VBZ DT NN IN NN NNS MD VB NNS TO VB .\nChad 's government has acknowledged that its forces crossed into Sudanese territory Monday and clashed with Sudanese troops .\tNNP POS NN VBZ VBN IN PRP$ NNS VBD IN JJ NN NNP CC VBN IN JJ NNS .\nReversing a previous denial of the incident , Chad 's Information Minister Hourmadji Moussa Doumgor said Tuesday that Chadian troops had crossed the border to pursue rebels they had been fighting in eastern Chad .\tVBG DT JJ NN IN DT NN , NNP POS NNP NNP NNP NNP NNP VBD NNP IN JJ NNS VBD VBN DT NN TO VB NNS PRP VBD VBN VBG IN JJ NNP .\nHe said the clash occurred when Chad 's troops made contact with Sudan 's forces , whom he said had been deployed to protect the rebels ' retreat .\tPRP VBD DT NN VBD WRB NNP POS NNS VBD NN IN NNP POS NNS , WP PRP VBD VBD VBN VBN TO VB DT NNS POS NN .\nSudan 's military says 17 of its soldiers were killed in the clash , and that its troops forced the Chadians back across the border .\tNNP POS JJ VBZ CD IN PRP$ NNS VBD VBN IN DT NN , CC IN PRP$ NNS VBD DT NNS RB IN DT NN .\nChad and Sudan have repeatedly accused each other of supporting the other country 's rebel movements .\tNNP CC NNP VBP RB VBN DT NN IN VBG DT JJ NN POS NN NNS .\nCross-border raids and incidents have continued despite mediation efforts by Libyan leader Moammar Gadhafi .\tNN NNS CC NNS VBP VBN IN NN NNS IN JJ NN NNP NNP .\nBoth countries have refused the deployment of international peacekeepers on their border .\tDT NNS VBP VBN DT NN IN JJ NNS IN PRP$ NN .\nThe International Committee of the Red Cross says 15 people have died in ethnic clashes around the western Ivory Coast town of Duekoue .\tDT NNP NNP IN DT NNP NNP VBZ CD NNS VBP VBN IN JJ NNS IN DT JJ NNP NNP NN IN NNP .\nThe agency says at least 6,000 people have fled last week 's violence between between indigenous tribes and migrant farm workers .\tDT NN VBZ IN JJS CD NNS VBP VBN JJ NN POS NN IN IN JJ NNS CC JJ NN NNS .\nThe mayor of Duekoue told Reuters news agency that U.N. soldiers are patrolling the town and surrounding villages .\tDT NN IN NNP VBD NNP NN NN IN NNP NNS VBP VBG DT NN CC VBG NNS .\nHe said shops have reopened and public transportation is resuming .\tPRP VBD NNS VBP VBN CC JJ NN VBZ VBG .\nEthnic tension is common in the region , but it has been exacerbated by Ivory Coast 's civil war which started in 2002 .\tNNP NN VBZ JJ IN DT NN , CC PRP VBZ VBN VBN IN NNP NNP POS JJ NN WDT VBD IN CD .\nThe country remains divided between the rebel-held north , and the government-controlled south .\tDT NN VBZ VBN IN DT JJ NN , CC DT JJ NN .\nBangladesh 's government has brought new corruption charges against detained former Prime Minister Khaleda Zia .\tNNP POS NN VBZ VBN JJ NN NNS IN JJ JJ NNP NNP NNP NNP .\nThe country 's Anti-Corruption Commission Thursday accused Ms. Zia , her son , Tarique Rahman and five others of embezzling more than $ 3,00,000 ( 21 million taka ) from a trust meant for orphans .\tDT NN POS JJ NNP NNP VBD NNP NNP , PRP$ NN , NNP NNP CC CD NNS IN VBG JJR IN $ CD LRB CD CD NN RRB IN DT NN VBN IN NNS .\nShe and her two sons already are being held on other corruption charges .\tPRP CC PRP$ CD NNS RB VBP VBG VBN IN JJ NN NNS .\nThey were among 170 politicians and business people arrested last year during an anti-graft sweep by Bangladesh 's military-backed caretaker government .\tPRP VBD IN CD NNS CC NN NNS VBN JJ NN IN DT JJ NN IN NNP POS JJ NN NN .\nFormer Prime Minister Sheikh Hasina also was detained in the crackdown .\tJJ JJ NN NNP NNP RB VBD VBN IN DT NN .\nShe was recently released on parole to receive medical treatment in the U.S.\tPRP VBD RB VBN IN NN TO VB JJ NN IN DT NNP\nMs. Zia 's Bangladesh Nationalist Party has vowed to boycott the country 's parliamentary elections , set for December , unless the former prime minister is released from detention .\tNNP NNP POS NNP NNP NNP VBZ VBN TO VB DT NN POS JJ NNS , VBN IN NNP , IN DT JJ JJ NN VBZ VBN IN NN .\nChina says a fourth person is ill with bird flu .\tNNP VBZ DT JJ NN VBZ JJ IN NN NN .\nThe official Xinhua news agency reports the ministry of health has confirmed that a 10-year-old girl in China 's southern Guangxi Zhuang Autonomous Region has the potentially deadly H5N1 virus .\tDT JJ NNP NN NN VBZ DT NN IN NN VBZ VBN IN DT JJ NN IN NNP POS JJ NNP NNP NNP NNP VBZ DT RB JJ NNP NN .\nMeanwhile , Ukraine has declared a state of emergency to help combat a bird flu outbreak in Crimea .\tRB , NNP VBZ VBN DT NN IN NN TO VB VB DT NN NN NN IN NNP .\nMore than 22,000 birds have been seized from villages in the affected area .\tJJR IN CD NNS VBP VBN VBN IN NNS IN DT JJ NN .\nAlso Tuesday , President Bush met with the director-general of the World Health Organization ( WHO ) to discuss the global strategy against a possible bird flu pandemic .\tRB NNP , NNP NNP VBD IN DT NN IN DT NNP NNP NNP LRB NNP RRB TO VB DT JJ NN IN DT JJ NN NN NN .\nMr. Bush called the strategy a remarkable collaborative effort .\tNNP NNP VBD DT NN DT JJ JJ NN .\nEarlier , Burma said it is on the alert for bird flu and will cooperate with international organizations in tracking outbreaks of the disease .\tRB , NNP VBD PRP VBZ IN DT NN IN NN NN CC MD VB IN JJ NNS IN VBG NNS IN DT NN .\nVenezuela 's government has promised new measures to combat the country 's inflation rate , which is the highest in the region .\tNNP POS NN VBZ VBN JJ NNS TO VB DT NN POS NN NN , WDT VBZ DT JJS IN DT NN .\nFinance Minister Rodrigo Cabezas said Wednesday that his country 's inflation rate of 22.5 percent is ' unsatisfactory . '\tNNP NNP NNP NNP VBD NNP IN PRP$ NN POS NN NN IN CD NN VBZ `` JJ . ``\nHe promised new anti-inflationary measures but did not disclose any details .\tPRP VBD JJ JJ NNS CC VBD RB VB DT NNS .\nMeanwhile , Venezuela has begun using a new currency system in an effort to slow the inflation rate .\tRB , NNP VBZ VBN VBG DT JJ NN NN IN DT NN TO VB DT NN NN .\nThe ' strong bolivar ' entered circulation on Tuesday .\tDT `` JJ NN `` VBD NN IN NNP .\nIt was created by taking three trailing zeros off the value of the former currency , the bolivar .\tPRP VBD VBN IN VBG CD VBG NNS IN DT NN IN DT JJ NN , DT NN .\nOfficials say the new currency also will simplify transactions .\tNNS VBP DT JJ NN RB MD VB NNS .\nBut critics say they doubt it will stabilize rising prices .\tCC NNS VBP PRP VBP PRP MD VB VBG NNS .\nA prominent Russian newspaper says investigators have identified a teenager as one of two suicide bombers responsible for Monday 's attacks that killed 39 people in two Moscow subway stations .\tDT JJ JJ NN VBZ NNS VBP VBN DT NN IN CD IN CD NN NNS JJ IN NNP POS NNS WDT VBD CD NNS IN CD NNP NN NNS .\nKommersant said Friday 17-year-old Dzhennet Abdurakhmanova , the widow of a slain Caucasus militant , was one of the bombers .\tNNP VBD NNP JJ NNP NNP , DT NN IN DT NN NN NN , VBD CD IN DT NNS .\nThe newspaper published a photograph of the young woman in a Muslim headscarf with her late husband Umalat Magomedov .\tDT NN VBD DT NN IN DT JJ NN IN DT NN NN IN PRP$ JJ NN NNP NNP .\nThe Kommersant reports authorities have not yet officially identified the second bomber , but she is believed to be 20-year-old Markha Ustarkhanova from Chechnya .\tDT NN VBZ NNS VBP RB RB RB VBN DT JJ NN , CC PRP VBZ VBN TO VB JJ NNP NNP IN NNP .\nUstarkhanova is the widow of a Chechen militant who was killed last year while allegedly preparing for an assassination attempt on Chechen leader Ramzan Kadyrov .\tNNP VBZ DT NN IN DT JJ NN WP VBD VBN JJ NN IN RB VBG IN DT NN NN IN JJ NN NNP NNP .\nElection results from Colombia show the ruling coalition of President Alvaro Uribe has won a strong majority in the country 's Congress .\tNN NNS IN NNP VBP DT NN NN IN NNP NNP NNP VBZ VBN DT JJ NN IN DT NN POS NNP .\nWith most of the ballots counted from Sunday 's vote , parties loyal to Mr. Uribe are projected to win more than 60 Senate seats in the 102-member upper house .\tIN JJS IN DT NNS VBN IN NNP POS NN , NNS JJ TO NNP NNP VBP VBN TO VB JJR IN CD NNP NNS IN DT JJ JJ NN .\nColombian voters also selected 166 members of the lower house of Congress .\tJJ NNS RB VBD CD NNS IN DT JJR NN IN NNP .\nMr. Uribe 's coalition fared much better than pollsters had expected , and the results could give a boost to his campaign for re-election in May .\tNNP NNP POS NN VBD RB JJR IN NNS VBD VBN , CC DT NNS MD VB DT NN TO PRP$ NN IN NN IN NNP .\nMr. Uribe is seeking a second four-year term as president to continue the struggle against the leftist guerilla group FARC ( the Revolutionary Armed Forces of Colombia ) .\tNNP NNP VBZ VBG DT JJ JJ NN IN NN TO VB DT NN IN DT JJ NN NN NNP LRB DT NNP NNP NNS IN NNP RRB .\nHe called on the FARC to abandon its four-decade old insurgency and resume the stalled peace process .\tPRP VBD IN DT NNP TO VB PRP$ JJ JJ NN CC VB DT VBN NN NN .\nSunday 's congressional elections were largely peaceful , and polling stations were protected by a large security force of 2,00,000 troops .\tNNP POS JJ NNS VBD RB JJ , CC VBG NNS VBD VBN IN DT JJ NN NN IN CD NNS .\nThe U.S. military is fighting efforts to release more photos and videotapes that document the abuse of detainees at Iraq 's Abu Ghraib prison .\tDT NNP NN VBZ VBG NNS TO VB JJR NNS CC NNS IN NN DT NN IN NNS IN NNP POS NNP NNP NN .\nGeneral Richard Myers , chairman of the Joint Chiefs of Staff , warns that releasing the images would inflame Arab opinion and put U.S. troops at risk .\tNNP NNP NNP , NN IN DT NNP NNP IN NNP , VBZ IN VBG DT NNS MD VB JJ NN CC VB NNP NNS IN NN .\nHe also argues that al-Qaida and other groups would use the photos for propaganda .\tPRP RB VBZ IN NNP CC JJ NNS MD VB DT NNS IN NN .\nGeneral Myers ' statements were contained in recently-unsealed court papers filed in U.S. district court in New York City .\tNNP NNPS POS NNS VBD VBN IN JJ NN NNS VBN IN NNP NN NN IN NNP NNP NNP .\nThe American Civil Liberties Union has sued the government for the release of 87 photos and four videotapes taken at the U.S.-run Abu Ghraib prison .\tDT NNP NNP NNP NNP VBZ VBN DT NN IN DT NN IN CD NNS CC CD NNS VBN IN DT JJ NNP NNP NN .\nThe group says release of the images will lead to a public examination of Army interrogation policies .\tDT NN VBZ NN IN DT NNS MD VB TO DT JJ NN IN NNP NN NNS .\nPhotos from Abu Ghraib released last year showed Iraqi detainees with leashes around their necks and in other humiliating positions .\tNNS IN NNP NNP VBN JJ NN VBD JJ NNS IN NNS IN PRP$ NNS CC IN JJ JJ NNS .\nU.S.-led forces in Afghanistan say they killed 15 militants during an overnight operation in the east , while local officials says those killed were civilians .\tJJ NNS IN NNP VBP PRP VBD CD NNS IN DT JJ NN IN DT NN , IN JJ NNS VBZ DT VBN VBD NNS .\nIn a statement Saturday , coalition forces say their troops were targeting Taliban militants in Laghman province when they came under attack .\tIN DT NN NNP , NN NNS VBP PRP$ NNS VBD VBG NNP NNS IN NNP NN WRB PRP VBD IN NN .\nIt says the troops returned fire , killing 15 militants , including a woman carrying a rocket-propelled grenade .\tPRP VBZ DT NNS VBD NN , VBG CD NNS , VBG DT NN VBG DT JJ NN .\nLocal officials dispute the account and say as many as 22 civilians were killed .\tJJ NNS VBP DT NN CC VB RB JJ IN CD NNS VBD VBN .\nIndia and Pakistan have opened a third crossing at the Line of Control that divides Kashmir to provide aid to victims of last month 's devastating earthquake .\tNNP CC NNP VBP VBN DT JJ VBG IN DT NN IN NNP WDT VBZ NNP TO VB NN TO NNS IN JJ NN POS JJ NN .\nOfficials from the two countries opened the river crossing Saturday to allow passage of relief goods in both directions .\tNNS IN DT CD NNS VBD DT NN VBG NNP TO VB NN IN NN NNS IN DT NNS .\nEarlier this week India delayed opening the third crossing because it said the Pakistani army had not completed work on a border bridge .\tRBR DT NN NNP VBD VBG DT NN VBG IN PRP VBD DT JJ NN VBD RB VBN NN IN DT NN NN .\nBut Pakistani spokesman disputed the claim , saying his side was ready to open .\tCC JJ NN VBD DT NN , VBG PRP$ NN VBD JJ TO VB .\nThe two nations agreed last month to open five border crossings in Kashmir to facilitate aid flow and to allow quake survivors to reunite with family members on the other side .\tDT CD NNS VBD JJ NN TO VB CD NN NNS IN NNP TO VB NN NN CC TO VB NN NNS TO VB IN NN NNS IN DT JJ NN .\nPro-Taleban militants have captured 24 soldiers from a military checkpoint in northwestern Pakistan .\tJJ NNS VBP VBN CD NNS IN DT JJ NN IN JJ NNP .\nPolice say more than 150 militants attacked the post Monday night near the town of Bannu , in the restive North Waziristan region .\tNNS VBP JJR IN CD NNS VBD DT NN NNP NN IN DT NN IN NNP , IN DT JJ NNP NNP NN .\nOfficials say the militants captured the soldiers after heavy gunfire .\tNNS VBP DT NNS VBD DT NNS IN JJ NN .\nLast month , officials said pro-Taleban militants released at least 25 of nearly 250 Pakistani soldiers held captive near the Afghan border since late August .\tJJ NN , NNS VBD JJ NNS VBN IN JJS CD IN RB CD JJ NNS VBD JJ IN DT JJ NN IN JJ NNP .\nPakistan is struggling to contain a recent upsurge in violence in its northwestern region following the collapse of a peace deal in July between the government and pro-Taleban tribesmen .\tNNP VBZ VBG TO VB DT JJ NN IN NN IN PRP$ JJ NN VBG DT NN IN DT NN NN IN NNP IN DT NN CC JJ NNS .\nTidal waves caused by the massive Asian earthquake have killed at least 10 people on Africa 's east coast with a number of other tourists and residents reported missing .\tJJ NNS VBN IN DT JJ JJ NN VBP VBN IN JJS CD NNS IN NNP POS JJ NN IN DT NN IN JJ NNS CC NNS VBD VBG .\nAuthorities from Somalia to South Africa and the Indian Ocean islands have urged people to move inland .\tNNS IN NNP TO NNP NNP CC DT NNP NNP NNS VBP VBN NNS TO VB RB .\nAt least one death is reported in Kenya while the Associated Press reports nine drowned in Somalia .\tIN JJS CD NN VBZ VBN IN NNP IN DT NNP NNP VBZ CD VBN IN NNP .\nHigh waves have also smashed a number of fishing boats and left parts of the island of Rodrigues under water .\tJJ NNS VBP RB VBN DT NN IN NN NNS CC VBD NNS IN DT NN IN NNS IN NN .\nEgypt has freed a blogger who served a four-year prison term on a conviction of insulting Islam and Egyptian President Hosni Mubarak .\tNNP VBZ VBN DT NN WP VBD DT JJ NN NN IN DT NN IN VBG NNP CC JJ NNP NNP NNP .\nHuman rights groups and a relative said Wednesday that Egyptian security officials freed Abdel Kareem Nabil earlier this week .\tJJ NNS NNS CC DT NN VBD NNP IN JJ NN NNS VBD NNP NNP NNP RBR DT NN .\nThe Cairo-based Arabic Network for Human Rights and Information says he was beaten while in detention .\tDT JJ NNP NNP IN NNP NNP CC NNP VBZ PRP VBD VBN IN IN NN .\nNabil , who is also known as Kareem Amer , was attending a university before authorities convicted him in 2006 .\tNNP , WP VBZ RB VBN IN NNP NNP , VBD VBG DT NN IN NNS VBD PRP IN CD .\nHe was the first blogger in Egypt to be sentenced specifically for his writings .\tPRP VBD DT JJ NN IN NNP TO VB VBN RB IN PRP$ NNS .\nLast week , human rights groups called for his release , saying he had been held beyond his four-year prison sentence .\tJJ NN , JJ NNS NNS VBN IN PRP$ NN , VBG PRP VBD VBN VBN IN PRP$ JJ NN NN .\nEgyptian officials have not explained why he remained imprisoned about a week-and-a-half beyond his term .\tJJ NNS VBP RB VBN WRB PRP VBD VBN IN DT JJ IN PRP$ NN .\nThe Reporters Without Borders rights group says Amer was subjected to ' appalling conditions ' while in detention and that he has described being tortured .\tDT NNS IN NNS NNS NN VBZ NNP VBD VBN TO `` VBG NNS `` IN IN NN CC IN PRP VBZ VBN VBG VBN .\nRussian President Vladimir Putin has arrived in Beijing to begin a two-day state visit likely to focus on China 's energy needs and bilateral investments .\tJJ NNP NNP NNP VBZ VBN IN NNP TO VB DT JJ NN NN JJ TO VB IN NNP POS NN NNS CC JJ NNS .\nMr. Putin , at the head of a large delegation of business leaders and top officials , landed at Beijing International Airport Tuesday and was expected to meet with Chinese President Hu Jintao later in the day .\tNNP NNP , IN DT NN IN DT JJ NN IN NN NNS CC JJ NNS , VBD IN NNP NNP NNP NNP CC VBD VBN TO VB IN JJ NNP NNP NNP RB IN DT NN .\nIn addition to energy and other industrial issues , the two leaders are expected to discuss disputes over the Iranian and North Korean nuclear programs .\tIN NN TO NN CC JJ JJ NNS , DT CD NNS VBP VBN TO VB NNS IN DT JJ CC JJ JJ JJ NNS .\nAs permanent members of the U.N. Security Council , both Russia and China are playing a key role in the current diplomatic efforts to resolve the dispute over Tehran 's nuclear ambitions .\tIN JJ NNS IN DT NNP NNP NNP , DT NNP CC NNP VBP VBG DT JJ NN IN DT JJ JJ NNS TO VB DT NN IN NNP POS JJ NNS .\nThe two countries also participate in six-nation disarmament talks on North Korea 's nuclear program , along with the United States , the two Koreas and Japan .\tDT CD NNS RB VBP IN JJ NN NNS IN NNP NNP POS JJ NN , IN IN DT NNP NNPS , DT CD NNP CC NNP .\nIraq 's national assembly met Tuesday for only the second time since its election in January , but the session ended in chaos when lawmakers failed to agree on a parliament speaker .\tNNP POS JJ NN VBD NNP IN RB DT JJ NN IN PRP$ NN IN NNP , CC DT NN VBD IN NN WRB NNS VBD TO VB IN DT NN NN .\nThe meeting began nearly three hours late , with the chairman 's announcement that Sunni Muslim deputies had failed to nominate a speaker from among their ranks .\tDT NN VBD RB CD NNS RB , IN DT NN POS NN IN NNP NNP NNS VBD VBN TO VB DT NN IN IN PRP$ NNS .\nHe then declared the session over and said a vote would not take place before Sunday .\tPRP RB VBD DT NN IN CC VBD DT NN MD RB VB NN IN NNP .\nSeveral of the assembly 's 275-members immediately called for an explanation , with one legislator asking , ' what shall we tell the voters ? ' Outgoing interim Prime Minister Iyad Allawi stormed out in frustration , and the media were expelled .\tNN IN DT NN POS NNS RB VBD IN DT NN , IN CD NN NN , `` WP MD PRP VB DT NNS . `` VBG JJ NNP NNP NNP NNP VBD RP IN NN , CC DT NNS VBD VBN .\nMeanwhile , in the northern city of Kirkuk , a car bomb explosion killed one person and injured at least a dozen others .\tRB , IN DT JJ NN IN NNP , DT NN NN NN VBD CD NN CC NN IN JJS DT NN NNS .\nSeparately , three Romanian journalists were reported kidnapped .\tRB , CD JJ NNS VBD VBN VBN .\nPakistan 's chief justice has formally resumed his post , two years after his controversial dismissal threw the country into political turmoil .\tNNP POS NN NN VBZ RB VBN PRP$ NN , CD NNS IN PRP$ JJ NN VBD DT NN IN JJ NN .\nThe Supreme Court says Iftikhar Mohammed Chaudhry was reinstated at midnight ( Saturday ) and immediately began work Sunday morning .\tDT NNP NNP VBZ NNP NNP NNP VBD VBN IN NN LRB NNP RRB CC RB VBD NN NNP NN .\nThe independent-minded judge was fired in 2007 by then-President Pervez Musharraf , after pursuing a case challenging the president 's rule .\tDT JJ NN VBD VBN IN CD IN JJ NNP NNP , IN VBG DT NN VBG DT NN POS NN .\nChaudhry 's dismissal sparked widespread protests that helped force Mr. Musharraf to resign last year .\tNNP POS NN VBD JJ NNS WDT VBD VB NNP NNP TO VB JJ NN .\nMr. Musharraf 's successor , Asif Ali Zardari , faced a new wave of protests after he delayed Chaudhry 's reinstatement .\tNNP NNP POS NN , NNP NNP NNP , VBD DT JJ NN IN NNS IN PRP VBD NNP POS NN .\nPakistan 's government relented to activists ' demands last week , however , reappointing Chaudhry in an effort to end a volatile political stand-off with the opposition .\tNNP POS NN VBD TO NNS POS NNS JJ NN , RB , VBG NNP IN DT NN TO VB DT JJ JJ NN IN DT NN .\nPrime Minister Yousuf Raza Gilani traveled to the Lahore area Sunday to meet opposition leader Nawaz Sharif in a further attempt at political reconciliation .\tNNP NNP NNP NNP NNP VBD TO DT NNP NN NNP TO VB NN NN NNP NNP IN DT JJ NN IN JJ NN .\nThe Iraqi government has ordered the pan-Arab satellite network Al-Arabiya to close its bureau in Baghdad for one month .\tDT JJ NN VBZ VBN DT JJ NN NN NNP TO VB PRP$ NN IN NNP IN CD NN .\nIraqi officials are quoted as saying the ban is because of what they have described as the network 's uneven reporting and unprofessional conduct in covering events in Iraq .\tJJ NNS VBP VBN IN VBG DT NN VBZ IN IN WP PRP VBP VBN IN DT NN POS JJ NN CC JJ NN IN VBG NNS IN NNP .\nDubai-based Al-Arabiya was briefly banned in November 2003 after airing an audiotape from Saddam Hussein .\tJJ NNP VBD RB VBN IN NNP CD IN VBG DT NN IN NNP NNP .\nThe U.S.-backed interim Iraqi government banned the Arabic satellite network Al-Jazeera in 2004 for allegedly inciting violence .\tDT JJ JJ JJ NN VBD DT JJ NN NN NNP IN CD IN RB VBG NN .\nTropical Storm Epsilon has been upgraded to a hurricane , a record 14th for this year .\tNNP NNP NNP VBZ VBN VBN TO DT NN , DT NN NN IN DT NN .\nForecasters said Friday that Epsilon is east of Bermuda and is not expected to hit land .\tNNS VBD NNP IN NNP VBZ JJ IN NNP CC VBZ RB VBN TO VB NN .\nThe six-month hurricane season officially ended November 30 , the busiest period on record .\tDT JJ NN NN RB VBD NNP CD , DT JJS NN IN NN .\nWith 26 named storms , forecasters used up their list of designated names and resorted to marking the storms with letters of the Greek alphabet .\tIN CD VBN NNS , NNS VBD RP PRP$ NN IN VBN NNS CC VBD TO VBG DT NNS IN NNS IN DT JJ NN .\nThe season was also unusually intense .\tDT NN VBD RB RB JJ .\nThree hurricanes briefly reached the most violent Category Five status , with Katrina devastating New Orleans and other parts of the U.S. Gulf coast .\tCD NNS RB VBD DT RBS JJ NNP CD NN , IN NNP JJ NNP NNP CC JJ NNS IN DT NNP NNP NN .\nSome experts believe the intensity marks the beginning of a cycle expected to last more than a decade .\tDT NNS VBP DT NN VBZ DT NN IN DT NN VBN TO VB JJR IN DT NN .\nExperts say the mass exodus of people from the devastated Gulf Coast region is unprecedented in American history .\tNNS VBP DT NN NN IN NNS IN DT JJ NNP NNP NN VBZ JJ IN JJ NN .\nFederal officials say up to one million people , mostly from New Orleans , have been displaced in the aftermath of Hurricane Katrina .\tNNP NNS VBP RP TO CD CD NNS , RB IN NNP NNP , VBP VBN VBN IN DT NN IN NNP NNP .\nMore than 2,00,000 victims have taken refuge in nearby Texas , while others are scattered in cities and towns from California to New York City .\tJJR IN CD NNS VBP VBN NN IN JJ NNP , IN NNS VBP VBN IN NNS CC NNS IN NNP TO NNP NNP NNP .\nWar , economic disaster , religious and social persecution and natural catastrophes have forced large populations to relocate many times in American history .\tNNP , JJ NN , JJ CC JJ NN CC JJ NNS VBP VBN JJ NNS TO VB JJ NNS IN JJ NN .\nExperts say this time , however , the migration of hundreds of thousands from New Orleans and the U.S. Gulf Coast is completely different - as the newly homeless are coming from one of America 's most unique and diverse cities , and it is happening over a much shorter period of time .\tNNS VBP DT NN , RB , DT NN IN NNS IN NNS IN NNP NNP CC DT NNP NNP NNP VBZ RB JJ : IN DT RB JJ VBP VBG IN CD IN NNP POS RBS JJ CC JJ NNS , CC PRP VBZ VBG IN DT JJ JJR NN IN NN .\nIraqi authorities say car bombs in Baghdad and the northern city of Kirkuk killed 62 people Sunday .\tJJ NNS VBP NN NNS IN NNP CC DT JJ NN IN NNP VBD CD NNS NNP .\nThey say the deadliest blast occurred in Baghdad 's Sadr City neighborhood when a bomb killed 34 near a busy market .\tPRP VBP DT JJS NN VBD IN NNP POS NNP NNP NN WRB DT NN VBD CD IN DT JJ NN .\nA short time later , another blast killed eight more people outside a municipal building .\tDT JJ NN RB , DT NN VBD CD JJR NNS IN DT JJ NN .\nThe bombings came hours after U.S. and Iraqi government forces raided the district and clashed with militiamen loyal to radical Shi'ite cleric Moqtada al-Sadr .\tDT NNS VBD NNS IN NNP CC JJ NN NNS VBD DT NN CC VBN IN NNS JJ TO JJ NNP NN NNP NNP .\nTo the north , a car bomb killed 20 people and wounded 50 others near a courthouse in Kirkuk Sunday .\tTO DT NN , DT NN NN VBD CD NNS CC VBD CD NNS IN DT NN IN NNP NNP .\nOn Saturday , Iraqi political and religious leaders met to discuss Prime Minister Nouri al-Maliki 's national reconciliation plan to end sectarian violence .\tIN NNP , JJ JJ CC JJ NNS VBD TO VB NNP NNP NNP NNP POS JJ NN NN TO VB JJ NN .\nAfter the meeting , Mr. Maliki said insurgents guilty of bloodshed should not be included in his proposed amnesty .\tIN DT NN , NNP NNP VBD NNS JJ IN NN MD RB VB VBN IN PRP$ JJ NN .\nMr. Maliki will visit Washington Tuesday for talks with President Bush .\tNNP NNP MD VB NNP NNP IN NNS IN NNP NNP .\nThe U.S. military has drafted a document that calls for nuclear strikes against nations or terrorist groups to prevent them from using weapons of mass destruction against the United States or its allies .\tDT NNP NN VBZ VBN DT NN WDT VBZ IN JJ NNS IN NNS CC JJ NNS TO VB PRP IN VBG NNS IN NN NN IN DT NNP NNPS CC PRP$ NNS .\nThe document ( ' Doctrine for Joint Nuclear Operations ' ) was drafted in March .\tDT NN LRB `` NNP IN NNP NNP NNP `` RRB VBD VBN IN NNP .\nIt updates a 1995 version from the Clinton administration to reflect President Bush 's doctrine of pre-emptive military strikes against nations or groups posing a threat to the United States .\tPRP VBZ DT CD NN IN DT NNP NN TO VB NNP NNP POS NN IN JJ JJ NNS IN NNS CC NNS VBG DT NN TO DT NNP NNPS .\nThe document outlines a number of scenarios for the use of nuclear weapons , which would require the approval of the president .\tDT NN VBZ DT NN IN NNS IN DT NN IN JJ NNS , WDT MD VB DT NN IN DT NN .\nThe revised draft has yet to become official policy .\tDT JJ NN VBZ RB TO VB JJ NN .\nThe document envisions the use of earth-penetrating nuclear weapons to destroy deeply buried weapons .\tDT NN VBZ DT NN IN JJ JJ NNS TO VB RB VBN NNS .\nThe Bush administration has been looking to develop the so-called ' bunker-busters , ' but U.S. Congress stopped funding the program last year .\tDT NNP NN VBZ VBN VBG TO VB DT JJ `` NNS , `` CC NNP NNP VBD VBG DT NN JJ NN .\nThe Organization of American States has rejected Colombia 's recent raid against a rebel camp in Ecuador , saying the cross-border incursion was a clear violation of the OAS charter .\tDT NNP IN NNP NNP VBZ VBN NNP POS JJ NN IN DT NN NN IN NNP , VBG DT JJ NN VBD DT JJ NN IN DT NNP NN .\nIn a resolution after a meeting of foreign ministers and ambassadors that began Monday , the OAS also took note of Colombia 's apology for the incursion and its pledge to not carry out another raid .\tIN DT NN IN DT NN IN JJ NNS CC NNS WDT VBD NNP , DT NNP RB VBD NN IN NNP POS NN IN DT NN CC PRP$ NN TO RB VB RP DT NN .\nVenezuela and Ecuador responded to the March 1 incursion by taking diplomatic action against Colombia and sending troops to the border with Colombia .\tNNP CC NNP VBD TO DT NNP CD NN IN VBG JJ NN IN NNP CC VBG NNS TO DT NN IN NNP .\nThe leaders of all three countries have since said they have settled the crisis .\tDT NNS IN DT CD NNS VBP IN VBN PRP VBP VBN DT NN .\nThe raid killed more than 20 rebels with the Revolutionary Armed Forces of Colombia , including a top rebel leader .\tDT NN VBD JJR IN CD NNS IN DT JJ JJ NNS IN NNP , VBG DT JJ NN NN .\nA Vatican delegation is meeting with officials in Iran this week to discuss ways of strengthening interfaith ties .\tDT NNP NN VBZ VBG IN NNS IN NNP DT NN TO VB NNS IN VBG JJ NNS .\nThe visit , led by Cardinal Jean-Louis Tauran , is part of an ongoing attempt by the Vatican to reach out to the largely Muslim Islamic Republic .\tDT NN , VBN IN NNP NNP NNP , VBZ NN IN DT JJ NN IN DT NNP TO VB RP TO DT RB NNP NNP NNP .\nPope Benedict met last year with a delegation of Catholic bishops from Iran and said he wanted to improve relations with the Islamic Republic .\tNNP NNP VBD JJ NN IN DT NN IN JJ NNS IN NNP CC VBD PRP VBD TO VB NNS IN DT NNP NNP .\nTauran met with Iranian President Mahmoud Ahmadinejad on Tuesday .\tNNP VBD IN JJ NNP NNP NNP IN NNP .\nVatican delegation members will also visit the city of Qom , a Shi'ite spiritual center in Iran , before wrapping up their trip Wednesday .\tNNP NN NNS MD RB VB DT NN IN NNP , DT NNP JJ NN IN NNP , IN VBG RP PRP$ NN NNP .\nThe Zaragoza airport in northern Spain was evacuated Wednesday morning after it received threats made in the name of the Basque separatist group ETA .\tDT NNP NN IN JJ NNP VBD VBN NNP NN IN PRP VBD NNS VBN IN DT NN IN DT NNP NN NN NNP .\nOfficials say they received word that a rocket launcher had been set up to carry out an attack during a two-hour period at midday ( 800 to 1000 GMT ) .\tNNS VBP PRP VBD NN IN DT NN NN VBD VBN VBN RP TO VB RP DT NN IN DT JJ NN IN NN LRB CD TO CD NNP RRB .\nETA staged a rocket attack on the Zaragoza airport back in June , but no one was hurt .\tNNP VBD DT NN NN IN DT NNP NN RB IN NNP , CC DT NN VBD VBN .\nETA has been blamed for more than 800 deaths since the 1960s when it began its armed campaign for an independent Basque state in northern Spain and southwestern France .\tNNP VBZ VBN VBN IN JJR IN CD NNS IN DT NNS WRB PRP VBD PRP$ JJ NN IN DT JJ JJ NN IN JJ NNP CC JJ NNP .\nRussia is promising to follow through on a pledge to forgive $ 2.2 billion in debt owed by African nations .\tNNP VBZ VBG TO VB IN IN DT NN TO VB $ CD CD IN NN VBN IN JJ NNS .\nRussia 's ambassador to the United Nations , Andrey Denisov , told a U.N. ministerial meeting focusing on the fight against poverty Tuesday that Moscow wants to underline its general support to the Group of Eight industrial nations .\tNNP POS NN TO DT NNP NNPS , NNP NNP , VBD DT NNP JJ NN VBG IN DT NN IN NN NNP IN NNP VBZ TO VB PRP$ JJ NN TO DT NNP IN CD JJ NNS .\nThe group 's finance ministers decided to cancel more than $ 40 billion in debt owed by 18 mostly African nations at a meeting in London earlier this month .\tDT NN POS NN NNS VBD TO VB JJR IN $ CD CD IN NN VBN IN CD RB JJ NNS IN DT NN IN NNP RBR DT NN .\nUnder the agreement , the 18 countries would receive immediate relief on debt they owe to the World Bank , the International Monetary Fund and other lenders .\tIN DT NN , DT CD NNS MD VB JJ NN IN NN PRP VBP TO DT NNP NNP , DT NNP NNP NNP CC JJ NNS .\nNine other African nations are likely to qualify for debt relief soon .\tCD JJ JJ NNS VBP JJ TO VB IN NN NN RB .\nNepalese army officials say the kingdom 's Maoist rebels killed four people and injured at least 11 in two separate attacks Monday .\tJJ NN NNS VBP DT NN POS NN NNS VBD CD NNS CC VBN IN JJS CD IN CD JJ NNS NNP .\nOfficials say three soldiers and one civilian died in a clash at an army checkpoint about 30 kilometers from the capital , Kathmandu .\tNNS VBP CD NNS CC CD JJ VBD IN DT NN IN DT NN NN IN CD NNS IN DT NN , NNP .\nPolice said at least 11 people were injured when a bomb exploded in a market in Pokhara , about 200 kilometers west of the capital .\tNNS VBD IN JJS CD NNS VBD VBN WRB DT NN VBD IN DT NN IN NNP , IN CD NNS NN IN DT NN .\nOn Sunday , government troops killed at least 16 Maoists following a rebel assault on a security patrol in western Nepal .\tIN NNP , NN NNS VBD IN JJS CD NNS VBG DT JJ NN IN DT NN NN IN JJ NNP .\nAt least five soldiers were wounded .\tIN JJS CD NNS VBD VBN .\nRebel attacks have increased since The Maoists broke a ceasefire last month .\tNN NNS VBP VBN IN DT NNS VBD DT NN JJ NN .\nThey are fighting to establish a single party communist republic .\tPRP VBP VBG TO VB DT JJ NN NN NN .\nAbout 13,000 people have been killed in the fighting .\tIN CD NNS VBP VBN VBN IN DT NN .\nFrance 's lower house of parliament has approved a new anti-terrorism bill that includes increasing the use of video surveillance .\tNNP POS JJR NN IN NN VBZ VBN DT JJ JJ NN WDT VBZ VBG DT NN IN NN NN .\nThe National Assembly voted 373 to 27 in favor of the legislation .\tDT NNP NNP VBD CD TO CD IN NN IN DT NN .\nThe bill now requires approval by the Senate , which begins debate in January .\tDT NN RB VBZ NN IN DT NNP , WDT VBZ NN IN NNP .\nThe draft law extends the detention period without charges for terrorism suspects from four days to six days .\tDT NN NN VBZ DT NN NN IN NNS IN NN NNS IN CD NNS TO CD NNS .\nIt also provides for an increase of video surveillance in French subways , airports and train stations , and requires Internet cafes to keep more detailed information about their clients .\tPRP RB VBZ IN DT NN IN NN NN IN JJ NNS , NNS CC NN NNS , CC VBZ NNP NNS TO VB RBR JJ NN IN PRP$ NNS .\nCritics of the bill say it will erode basic civil liberties .\tNNS IN DT NN VBP PRP MD VB JJ JJ NNS .\nInsurgents in Iraq have intensified their campaign of pre-election violence , killing two aides to the country 's highest Shi'ite authority , Grand Ayatollah Ali al-Sistani .\tNNS IN NNP VBP VBN PRP$ NN IN JJ NN , VBG CD NNS TO DT NN POS JJS JJ NN , NNP NNP NNP NNP .\nSheikh Mahmoud al-Madai'ni , his son and four bodyguards , were gunned down Wednesday as they left evening prayers south of Baghdad in Salman Pak .\tNNP NNP NNP , PRP$ NN CC CD NNS , VBD VBN RB NNP IN PRP VBD NN NNS RB IN NNP IN NNP NNP .\nAnother aide was found dead in the ayatollah 's office in Najaf .\tDT NN VBD VBN JJ IN DT NN POS NN IN NNP .\nAyatollah al-Sistani is not a candidate in the January 30 polls , but he supports the United Iraqi Alliance , a mainly Shi'ite coalition that is likely to win a large number of seats in the national assembly .\tNNP NNP VBZ RB DT NN IN DT NNP CD NNS , CC PRP VBZ DT NNP JJ NNP , DT RB JJ NN WDT VBZ JJ TO VB DT JJ NN IN NNS IN DT JJ NN .\nMeanwhile , gunmen opened fire on a minibus outside a Baghdad hotel Thursday , killing six people and kidnapping a Turkish businessman .\tRB , NNS VBD NN IN DT NN IN DT NNP NN NNP , VBG CD NNS CC VBG DT JJ NN .\nAnd near the town of Baquba , police say three people were killed and at least 13 others were hurt in a car bombing outside a Shi'ite mosque .\tCC IN DT NN IN NNP , NNS VBP CD NNS VBD VBN CC IN JJS CD NNS VBD VBN IN DT NN VBG IN DT NNP NN .\nVenezuela and Mexico are recalling each others ambassadors , amid an escalating dispute between the countries ' presidents .\tNNP CC NNP VBP VBG DT NNS NNS , IN DT VBG NN IN DT NNS POS NNS .\nVenezuela has ordered the withdrawal of its ambassador to Mexico .\tNNP VBZ VBN DT NN IN PRP$ NN TO NNP .\nMexican President Vicente Fox said on U.S. television ( CNN ) Monday that his country would also recall its ambassador .\tJJ NNP NNP NNP VBD IN NNP NN LRB NNP RRB NNP IN PRP$ NN MD RB VB PRP$ NN .\nMr. Fox said he will not accept verbal attacks made on him by Venezuelan President Hugo Chavez .\tNNP NNP VBD PRP MD RB VB JJ NNS VBN IN PRP IN JJ NNP NNP NNP .\nMr. Chavez used his Sunday radio and television show to criticize Mr. Fox after last week 's Summit of the Americas , saying Mr. Fox was the U.S. government 's ' cub ' for supporting a U.S.-proposed Western Hemisphere free trade zone .\tNNP NNP VBD PRP$ NNP NN CC NN NN TO VB NNP NNP IN JJ NN POS NN IN DT NNPS , VBG NNP NNP VBD DT NNP NN POS `` NN `` IN VBG DT JJ JJ NNP JJ NN NN .\nToday , Venezuela 's Foreign Minister Ali Rodriguez rejected Mexico 's demand that Venezuela apologize for the comments .\tNN , NNP POS NNP NNP NNP NNP VBD NNP POS NN IN NNP VB IN DT NNS .\nPakistani officials say troops backed by fighter aircraft pounded three militant hideouts Sunday in northwestern Pakistan , killing at least 10 suspected insurgents in the troubled Orakzai tribal district .\tJJ NNS VBP NNS VBN IN NN NN VBD CD JJ NNS NNP IN JJ NNP , VBG IN JJS CD JJ NNS IN DT JJ NNP NN NN .\nThe assault came a day after fighter jets bombed a militant stronghold in the neighboring Khyber tribal region on the Afghan border , killing 45 people .\tDT NN VBD DT NN IN NN NNS VBD DT JJ NN IN DT JJ NNP JJ NN IN DT JJ NN , VBG CD NNS .\nPakistani officials said Saturday 's strike took place in the valley of Tirah .\tJJ NNS VBD NNP POS NN VBD NN IN DT NN IN NNP .\nKhyber is the main supply route for NATO troops through Pakistan into Afghanistan .\tNNP VBZ DT JJ NN NN IN NNP NNS IN NNP IN NNP .\nMilitants are blamed for frequent attacks on NATO convoys traveling through the region .\tNNS VBP VBN IN JJ NNS IN NNP NNS VBG IN DT NN .\nPakistan 's military has recently stepped up offensives in Khyber and Orakzai .\tNNP POS NN VBZ RB VBN RP NNS IN NNP CC NNP .\nOfficials say more than 300 militants have been killed so far in the fighting .\tNNS VBP JJR IN CD NNS VBP VBN VBN RB RB IN DT NN .\nAfghanistan 's election officials have again postponed the announcement of final results of the September 18 parliamentary elections .\tNNP POS NN NNS VBP RB VBN DT NN IN JJ NNS IN DT NNP CD JJ NNS .\nThe Joint Electoral Management Body says claims of widespread fraud in southern Afghanistan are delaying the results that were expected Wednesday , but now will be announced ' in the next few days . '\tDT NNP NNP NNP NNP VBZ NNS IN JJ NN IN JJ NNP VBP VBG DT NNS WDT VBD VBN NNP , CC RB MD VB VBN `` IN DT JJ JJ NNS . ``\nBased on provisional results declared last month , the 249-seat Lower House will be dominated by former warlords and Mujahedin fighters .\tVBN IN JJ NNS VBN JJ NN , DT JJ NNP NNP MD VB VBN IN JJ NNS CC NNP NNS .\nThe country 's first parliament in decades will also have several members of the ousted Taleban regime as well as more than 60 women legislators , who were declared provisional winners .\tDT NN POS JJ NN IN NNS MD RB VB JJ NNS IN DT JJ NNP NN RB RB IN JJR IN CD NNS NNS , WP VBD VBN JJ NNS .\nMeanwhile , a roadside bomb exploded near a U.N. convoy in southern Kandahar province , damaging an armored vehicle but causing no injuries .\tRB , DT NN NN VBD IN DT NNP NN IN JJ NNP NN , VBG DT JJ NN CC VBG DT NNS .\nTwo suspects have been arrested .\tCD NNS VBP VBN VBN .\nU.S.-led coalition forces prevented another attack by discovering a bomb near the eastern city of Jalalabad .\tJJ NN NNS VBD DT NN IN VBG DT NN IN DT JJ NN IN NNP .\nThe press freedom group Reporters Without Borders has condemned the decision by Venezuelan President Hugh Chavez to shut down one of the country 's oldest television stations The group issued a statement Friday calling the move ' a serious attack against editorial pluralism . '\tDT NN NN NN VBZ IN NNS VBZ VBN DT NN IN JJ NNP NNP NNP TO VB RP CD IN DT NN POS JJS NN NNS DT NN VBD DT NN NNP VBG DT NN `` DT JJ NN IN JJ NN . ``\nMr. Chavez announced Thursday that his government will not renew the broadcast license for Radio Caracas Television , or RCTV .\tNNP NNP VBD NNP IN PRP$ NN MD RB VB DT NN NN IN NNP NNP NNP , CC NNP .\nThe station is one of Venezuela 's main private stations and has been critical of the president .\tDT NN VBZ CD IN NNP POS JJ JJ NNS CC VBZ VBN JJ IN DT NN .\nMr. Chavez accused RCTV of plotting against him .\tNNP NNP VBD NNP IN VBG IN PRP .\nHe also said he will not tolerate any media outlets that support efforts to remove him from power .\tPRP RB VBD PRP MD RB VB DT NNS NNS WDT VBP NNS TO VB PRP IN NN .\nThe license for RCTV expires in March .\tDT NN IN NNP VBZ IN NNP .\nReporters Without Borders urged Venezuela 's government to reconsider its stance and guarantee an independent system of granting and renewing broadcast rights .\tNNS IN NNS VBD NNP POS NN TO VB PRP$ NN CC VB DT JJ NN IN VBG CC VBG NN NNS .\nAfghan President Hamid Karzai is considering holding presidential elections in April , four months earlier than an election date set by the country 's Independent Election Commission .\tJJ NNP NNP NNP VBZ VBG VBG JJ NNS IN NNP , CD NNS JJR IN DT NN NN VBN IN DT NN POS NNP NNP NNP .\nAfghanistan 's constitution requires that the presidential election be held by April 21 , one month before Mr. Karzai 's five-year term expires .\tNNP POS NN VBZ IN DT JJ NN VB VBN IN NNP CD , CD NN IN NNP NNP POS JJ NN VBZ .\nLast month , Afghan election chief , Azizullah Lodin , said the commission decided to reschedule the vote for August to give incoming U.S. forces time to stabilize the country .\tJJ NN , JJ NN NN , NNP NNP , VBD DT NN VBD TO VB DT NN IN NNP TO VB JJ NNP NNS NN TO VB DT NN .\nBut opposition leaders have insisted that Mr. Karzai step down when his term expires in May and install a caretaker government .\tCC NN NNS VBP VBN IN NNP NNP VB RP WRB PRP$ NN VBZ IN NNP CC VB DT NN NN .\nU.S. support for the embattled president came into question after the Obama administration openly accused Mr. Karzai of failing to crack down on government corruption .\tNNP NN IN DT JJ NN VBD IN NN IN DT NNP NN RB VBD NNP NNP IN VBG TO VB RP IN NN NN .\nDemocratic U.S. Senator Joseph Biden of Delaware has announced he is seeking his party 's 2008 presidential nomination .\tJJ NNP NNP NNP NNP IN NNP VBZ VBN PRP VBZ VBG PRP$ NN POS CD JJ NN .\nBiden announced his intention to enter the race on American television Wednesday .\tNNP VBD PRP$ NN TO VB DT NN IN JJ NN NNP .\nBiden is currently the chairman of the Senate Foreign Relations Committee and is a prominent critic of President Bush 's Iraq war strategy .\tNNP VBZ RB DT NN IN DT NNP NNP NNP NNP CC VBZ DT JJ NN IN NNP NNP POS NNP NN NN .\nOn his campaign web site , the senator highlights his plan for Iraq , which calls for most U.S. troops to withdraw by the end of 2007 .\tIN PRP$ NN NN NN , DT NN VBZ PRP$ NN IN NNP , WDT VBZ IN JJS NNP NNS TO VB IN DT NN IN CD .\nBiden has served in the U.S. Senate for more than 30 years .\tNNP VBZ VBN IN DT NNP NNP IN JJR IN CD NNS .\nHe lost a previous bid for the Democratic nomination in 1988 .\tPRP VBD DT JJ NN IN DT JJ NN IN CD .\nMore candidates are expected to join the race to be the Democratic Party 's nominee , a field that has been dominated so far by popular senators Hillary Clinton and Barack Obama .\tJJR NNS VBP VBN TO VB DT NN TO VB DT NNP NNP POS NN , DT NN WDT VBZ VBN VBN RB RB IN JJ NNS NNP NNP CC NNP NNP .\nDozens of U.S. Christian missionaries have left their posts in Venezuela 's jungle ahead of a government order to leave the area .\tNNS IN NNP NNP NNS VBP VBN PRP$ NNS IN NNP POS NN RB IN DT NN NN TO VB DT NN .\nThe New Tribes Mission said it had withdrawn all of its missionaries from Venezuelan tribal areas , where the evangelical group had been active for decades .\tDT NNP NNP NNP VBD PRP VBD VBN DT IN PRP$ NNS IN JJ JJ NNS , WRB DT JJ NN VBD VBN JJ IN NNS .\nA spokeswoman for the group , Nita Zelenak , told VOA news Sunday that 35 adults and 19 children have left the tribal areas .\tDT NN IN DT NN , NNP NNP , VBD NNP NN NNP IN CD NNS CC CD NNS VBP VBN DT JJ NNS .\nSome returned to the United States and others have moved to other locations in Venezuela .\tDT VBD TO DT NNP NNPS CC NNS VBP VBN TO JJ NNS IN NNP .\nIn November , Venezuelan President Hugo Chavez gave the group a February 12 deadline to leave .\tIN NNP , JJ NNP NNP NNP VBD DT NN DT NNP CD NN TO VB .\nHe accused the missionaries of having links to the CIA and abusing indigenous groups .\tPRP VBD DT NNS IN VBG NNS TO DT NNP CC VBG JJ NNS .\nThe New Tribes Mission denies the accusations .\tDT NNP NNP NNP VBZ DT NNS .\nThe group has filed a legal challenge to the expulsion order .\tDT NN VBZ VBN DT JJ NN TO DT NN NN .\nU.S. and European naval officials say pirates have hijacked two European-owned tanker ships off the coast of Somalia .\tNNP CC JJ JJ NNS VBP NNS VBP VBN CD JJ NN NNS IN DT NN IN NNP .\nThe officials say a Greek-owned chemical tanker , the MV Nipayia , was seized late Wednesday with 19 crew members on board .\tDT NNS VBP DT JJ NN NN , DT NNP NNP , VBD VBN JJ NNP IN CD NN NNS IN NN .\nThey say pirates seized the Norwegian-owned MV Bow Asir on Thursday .\tPRP VBP NNS VBD DT JJ NNP NNP NNP IN NNP .\nThat ship is said to have a crew of at least 23 .\tDT NN VBZ VBN TO VB DT NN IN IN JJS CD .\nBoth hijackings occurred off Somalia 's eastern coast , in the Indian Ocean .\tDT NNS VBD RP NNP POS JJ NN , IN DT NNP NNP .\nSomali pirates seized more than 40 ships during 2008 and received millions of dollars in ransom payments in a hijacking spree .\tJJ NNS VBD JJR IN CD NNS IN CD CC VBD NNS IN NNS IN NN NNS IN DT NN NN .\nThe hijackings have become less frequent since the United States , China , Russia and other nations began conducting anti-piracy patrols in the waters near Somalia .\tDT NNS VBP VBN RBR JJ IN DT NNP NNPS , NNP , NNP CC JJ NNS VBD VBG JJ NNS IN DT NNS IN NNP .\nVenezuelan President Hugo Chavez and Iranian President Mohammad Khatami took turns attacking the United States Friday in Caracas during a state visit by the Iranian leader .\tJJ NNP NNP NNP CC JJ NNP NNP NNP VBD NNS VBG DT NNP NNPS NNP IN NNP IN DT NN NN IN DT JJ NN .\nIn a speech to Venezuela 's National Assembly , Mr. Chavez declared that Iran has every right to develop atomic energy , and promised to oppose any U.S. efforts to stop Iran .\tIN DT NN TO NNP POS NNP NNP , NNP NNP VBD DT NNP VBZ DT NN TO VB JJ NN , CC VBD TO VB DT NNP NNS TO VB NNP .\nWashington accuses Iran of secretly developing nuclear weapons .\tNNP VBZ NNP IN RB VBG JJ NNS .\nIn Mr. Khatami 's speech to the lawmakers , he denounced terrorism while condemning what he called ' crimes of liberty , ' specifically citing the U.S. Abu Ghraib prison scandal in Iraq and ongoing detentions at the U.S. naval base in Guantanamo , Cuba .\tIN NNP NNP POS NN TO DT NNS , PRP VBD NN IN VBG WP PRP VBD `` NNS IN NN , `` RB VBG DT NNP NNP NNP NN NN IN NNP CC JJ NNS IN DT NNP JJ NN IN NNP , NNP .\nOn other issues , the presidents of two oil producing countries signed a number of cooperation agreements relating to oil , taxes , commerce and construction .\tIN JJ NNS , DT NNS IN CD NN VBG NNS VBD DT NN IN NN NNS VBG TO NN , NNS , NN CC NN .\nIraqi security officials say an explosives-packed motorcycle blew up in Baghdad\tJJ NN NNS VBP DT JJ NN VBD RP IN NNP\nThursday , killing at least four people and wounding nearly 20 others .\tNNP , VBG IN JJS CD NNS CC VBG RB CD NNS .\nPolice say the blast occurred in the Shorja market area of central Baghdad .\tNNS VBP DT NN VBD IN DT NNP NN NN IN JJ NNP .\nOn Wednesday , the U.S. military said Iraqi and American troops killed at least 30 insurgents and detained 27 suspects during fierce fighting in city 's the Haifa Street region , known as a Sunni Arab stronghold In another operation in Baghdad , the U.S. military says troops detained 10 terrorists after witnesses reported seeing men loading weapons into a car .\tIN NNP , DT NNP NN VBD JJ CC JJ NNS VBD IN JJS CD NNS CC VBD CD NNS IN JJ NN IN NN POS DT NNP NNP NN , VBN IN DT NNP NNP NN IN DT NN IN NNP , DT NNP NN VBZ NNS VBD CD NNS IN NNS VBD VBG NNS VBG NNS IN DT NN .\nThey also seized four weapons caches .\tPRP RB VBD CD NNS NNS .\nAnd the U.S. military says an American soldier was killed in a Baghdad operation Wednesday .\tCC DT NNP NN VBZ DT JJ NN VBD VBN IN DT NNP NN NNP .\nSeparately , the U.S. military announced the deaths of two Marines killed Tuesday in combat operations in al-Anbar province , west of the capital .\tRB , DT NNP NN VBD DT NNS IN CD NNS VBD NNP IN NN NNS IN NNP NN , NN IN DT NN .\nLebanese forces have unearthed a mass grave in an eastern town that was the headquarters of Syrian intelligence in Lebanon for nearly three decades .\tJJ NNS VBP VBN DT NN NN IN DT JJ NN WDT VBD DT NN IN JJ NN IN NNP IN RB CD NNS .\nThe remains of at least 20 people were exhumed Saturday in the Bekaa Valley town of Anjar .\tDT NNS IN IN JJS CD NNS VBD VBN NNP IN DT NNP NNP NN IN NNP .\nOfficials said the bodies had been buried for years and that the remains - mostly bones - would be sent for DNA testing in an effort to identify them .\tNNS VBD DT NNS VBD VBN VBN IN NNS CC IN DT VBZ : RB NNS : MD VB VBN IN NNP NN IN DT NN TO VB PRP .\nResidents in the town discovered the grave and informed Lebanese authorities .\tNNS IN DT NN VBD DT JJ CC JJ JJ NNS .\nSyria was the main power broker in Lebanon until April , when it withdrew its remaining 15,000 troops under intense international pressure after the assassination of former Lebanese Prime Minister Rafik Hariri .\tNNP VBD DT JJ NN NN IN NNP IN NNP , WRB PRP VBD PRP$ VBG CD NNS IN JJ JJ NN IN DT NN IN JJ JJ NNP NNP NNP NNP .\nAn ongoing U.N. investigation has implicated top Syrian officials in the murder , but Damascus has denied any role .\tDT JJ NNP NN VBZ VBN JJ JJ NNS IN DT NN , CC NNP VBZ VBN DT NN .\nThe United States and the European Union have urged Ethiopians to reduce tensions and follow political processes to resolve an election crisis .\tDT NNP NNPS CC DT NNP NNP VBP VBN NNS TO VB NNS CC VB JJ NNS TO VB DT NN NN .\nA joint U.S. and EU statement Wednesday commended the Ethiopian people for the peaceful May 15 vote , but warned all parties to renounce violence and refrain from inflaming ethnic tensions .\tDT JJ NNP CC NNP NN NNP VBD DT JJ NNS IN DT JJ NNP CD NN , CC VBD DT NNS TO VB NN CC NN IN VBG JJ NNS .\nThe election outcome remains undecided , and charges of electoral fraud sparked anti-government protests last month in which 36 people were killed .\tDT NN NN VBZ JJ , CC NNS IN JJ NN VBD JJ NNS JJ NN IN WDT CD NNS VBD VBN .\nThe statement urged full participation in the official inquiry into the allegations of fraud in 140 constituencies .\tDT NN VBD JJ NN IN DT JJ NN IN DT NNS IN NN IN CD NNS .\nWednesday 's statement also called on all Ethiopian political parties , including the Ethiopian People 's Democratic Front ( EPRDF ) , the Coalition for Unity and Democracy ( CUD ) and the United Ethiopian Democratic Forces ( UEDF ) , to respect the National Election Board and to continue working for democracy .\tNNP POS NN RB VBD IN DT JJ JJ NNS , VBG DT NNP NNP POS JJ NNP LRB NNP RRB , DT NN IN NNP CC NNP LRB NNP RRB CC DT NNP NNP NNP NNP LRB NNP RRB , TO VB DT NNP NNP NNP CC TO VB VBG IN NN .\nAuthorities in Afghanistan say they have arrested four foreigners suspected of plotting terrorist attacks .\tNNS IN NNP VBP PRP VBP VBN CD NNS VBN IN VBG JJ NNS .\nGovernment officials say the four men - one from Iran and three from Pakistan - were picked up after they crossed illegally into Afghanistan 's Nimroz province from neighboring Iran this week .\tNN NNS VBP DT CD NNS IN CD IN NNP CC CD IN NNP : VBD VBN RP IN PRP VBD RB IN NNP POS NNP NN IN VBG NNP DT NN .\nAt least one of the suspects was believed to be headed to Kandahar province in southern Afghanistan .\tIN JJS CD IN DT NNS VBD VBN TO VB VBN TO NNP NN IN JJ NNP .\nOfficials in Kabul and Kandahar say the four men are suspected terrorists , but gave no details about their targets or methods .\tNNS IN NNP CC NNP VBP DT CD NNS VBP VBN NNS , CC VBD DT NNS IN PRP$ NNS CC NNS .\nAttacks by militants have increased in Afghanistan in recent months , primarily in southern and eastern regions where U.S.-led coalition forces are hunting remnants of the Taleban and al-Qaida fighters .\tNNS IN NNS VBP VBN IN NNP IN JJ NNS , RB IN JJ CC JJ NNS WRB JJ NN NNS VBP VBG NNS IN DT NNP CC NNP NNS .\nAfghan authorities have blamed the increase in suicide attacks and car-bomb explosions on foreign insurgents .\tJJ NNS VBP VBN DT NN IN NN NNS CC JJ NNS IN JJ NNS .\nA team of Dutch researchers says vaccinating chickens against bird flu can prevent a major outbreak of the disease by preventing transmission from bird to bird .\tDT NN IN JJ NNS VBZ VBG NNS IN NN NN MD VB DT JJ NN IN DT NN IN VBG NN IN NN TO NN .\nThe finding was published in the American scientific journal , Proceedings of the National Academy of Sciences .\tDT NN VBD VBN IN DT JJ JJ NN , NNS IN DT NNP NNP IN NNPS .\nScientist Jeanet Van der Goot said the study showed vaccination reduced the infectiousness of chickens with avian flu as well as reducing the susceptibility of healthy chickens .\tNN NNP NNP NN NNP VBD DT NN VBD NN VBD DT NN IN NNS IN JJ NN RB RB IN VBG DT NN IN JJ NNS .\nThe study concludes that vaccination can be an attractive tool to prevent outbreaks of bird flu in poultry , thereby eliminating a source of human infections .\tDT NN VBZ IN NN MD VB DT JJ NN TO VB NNS IN NN NN IN NN , RB VBG DT NN IN JJ NNS .\nThe Dutch study was conducted using a strain of the virus different from the H5N1 strain that has caused human fatalities .\tDT JJ NN VBD VBN VBG DT NN IN DT NN JJ IN DT NNP NN WDT VBZ VBN JJ NNS .\nThe study says it takes about two weeks from the date of inoculation for a vaccine to protect a flock .\tDT NN VBZ PRP VBZ IN CD NNS IN DT NN IN NN IN DT NN TO VB DT NN .\nPart of the Norwegian Kingdom of the Hebrides until the 13th century when it was ceded to Scotland , the isle came under the British crown in 1765 .\tNN IN DT JJ NNP IN DT NNS IN DT JJ NN WRB PRP VBD VBN TO NNP , DT NN VBD IN DT JJ NN IN CD .\nCurrent concerns include reviving the almost extinct Manx Gaelic language .\tJJ NNS VBP VBG DT RB JJ NNP NNP NN .\nIsle of Man is a British crown dependency but is not part of the UK or of the European Union .\tNNP IN NNP VBZ DT JJ NN NN CC VBZ RB NN IN DT NNP CC IN DT NNP NNP .\nHowever , the UK Government remains constitutionally responsible for its defense and international representation .\tRB , DT NNP NNP VBZ RB JJ IN PRP$ NN CC JJ NN .\nThe colonial boundaries created by Britain to delimit Uganda grouped together a wide range of ethnic groups with different political systems and cultures .\tDT NN NNS VBN IN NNP TO VB NNP VBD RB DT JJ NN IN JJ NNS IN JJ JJ NNS CC NNS .\nThese differences prevented the establishment of a working political community after independence was achieved in 1962 .\tDT NNS VBD DT NN IN DT VBG JJ NN IN NN VBD VBN IN CD .\nThe dictatorial regime of Idi AMIN ( 1971 - 79 ) was responsible for the deaths of some 3,00,000 opponents ; guerrilla war and human rights abuses under Milton OBOTE ( 1980 - 85 ) claimed at least another 1,00,000 lives .\tDT JJ NN IN NNP NNP LRB CD IN CD RRB VBD JJ IN DT NNS IN DT CD NNS ; NN NN CC JJ NNS NNS IN NNP NNP LRB CD IN CD RRB VBD IN JJS DT CD NNS .\nThe rule of Yoweri MUSEVENI since 1986 has brought relative stability and economic growth to Uganda .\tDT NN IN NNP NNP IN CD VBZ VBN JJ NN CC JJ NN TO NNP .\nDuring the 1990s , the government promulgated non-party presidential and legislative elections .\tIN DT NNS , DT NN VBD JJ JJ CC JJ NNS .\nTanzania is one of the world 's poorest economies in terms of per capita income , however , Tanzania average 7 % GDP growth per year between 2000 and 2008 on strong gold production and tourism .\tNNP VBZ CD IN DT NN POS JJS NNS IN NNS IN IN NN NN , RB , NNP JJ CD NN NN NN IN NN IN CD CC CD IN JJ NN NN CC NN .\nThe economy depends heavily on agriculture , which accounts for more than 40 % of GDP , provides 85 % of exports , and employs about 80 % of the work force .\tDT NN VBZ RB IN NN , WDT VBZ IN JJR IN CD NN IN NN , VBZ CD NN IN NNS , CC VBZ IN CD NN IN DT NN NN .\nThe World Bank , the IMF , and bilateral donors have provided funds to rehabilitate Tanzania 's aging economic infrastructure , including rail and port infrastructure that are important trade links for inland countries .\tDT NNP NNP , DT NNP , CC JJ NNS VBP VBN NNS TO VB NNP POS VBG JJ NN , VBG NN CC NN NN WDT VBP JJ NN NNS IN JJ NNS .\nRecent banking reforms have helped increase private-sector growth and investment , and the government has increased spending on agriculture to 7 % of its budget .\tJJ NN NNS VBP VBN VB JJ NN CC NN , CC DT NN VBZ VBN NN IN NN TO CD NN IN PRP$ NN .\nContinued donor assistance and solid macroeconomic policies supported a positive growth rate , despite the world recession .\tJJ NN NN CC JJ JJ NNS VBD DT JJ NN NN , IN DT NN NN .\nIn 2008 , Tanzania received the world 's largest Millennium Challenge Compact grant , worth $ 698 million .\tIN CD , NNP VBD DT NN POS JJS NNP NNP NNP NN , JJ $ CD CD .\nDar es Salaam used fiscal stimulus and loosened monetary policy to ease the impact of the global recession .\tNNP NNP NNP VBD JJ NN CC JJ JJ NN TO VB DT NN IN DT JJ NN .\nGDP growth in 2009 - 10 was a respectable 6 % per year due to high gold prices and increased production .\tNN NN IN CD : CD VBD DT JJ CD NN IN NN JJ TO JJ NN NNS CC VBN NN .\nFormerly an independent kingdom , Madagascar became a French colony in 1896 but regained independence in 1960 .\tRB DT JJ NN , NNP VBD DT JJ NN IN CD CC VBD NN IN CD .\nDuring 1992 - 93 , free presidential and National Assembly elections were held ending 17 years of single-party rule .\tIN CD IN CD , JJ JJ CC NNP NNP NNS VBD VBN VBG CD NNS IN JJ NN .\nIn 1997 , in the second presidential race , Didier RATSIRAKA , the leader during the 1970s and 1980s , was returned to the presidency .\tIN CD , IN DT JJ JJ NN , NNP NNP , DT NN IN DT NNS CC NNS , VBD VBN TO DT NN .\nThe 2001 presidential election was contested between the followers of Didier RATSIRAKA and Marc RAVALOMANANA , nearly causing secession of half of the country .\tDT CD JJ NN VBD VBN IN DT NNS IN NNP NNP CC NNP NNP , RB VBG NN IN NN IN DT NN .\nIn April 2002 , the High Constitutional Court announced RAVALOMANANA the winner .\tIN NNP CD , DT NNP NNP NNP VBD NNP DT NN .\nRAVALOMANANA achieved a second term following a landslide victory in the generally free and fair presidential elections of 2006 .\tNNP VBD DT JJ NN VBG DT NN NN IN DT RB JJ CC JJ JJ NNS IN CD .\nIn early 2009 , protests over increasing restrictions on opposition press and activities resulted in RAVALOMANANA stepping down and the presidency was conferred to the mayor of Antananarivo , Andry RAJOELINA .\tIN JJ CD , NNS IN VBG NNS IN NN NN CC NNS VBD IN NNP VBG RB CC DT NN VBD VBN TO DT NN IN NNP , NNP NNP .\nFollowing negotiations in July and August of 2009 , a power-sharing agreement with a 15-month transitional period was established , but has not yet been implemented .\tVBG NNS IN NNP CC NNP IN CD , DT JJ NN IN DT JJ JJ NN VBD VBN , CC VBZ RB RB VBN VBN .\nTunisia has a diverse economy , with important agricultural , mining , tourism , and manufacturing sectors .\tNNP VBZ DT JJ NN , IN JJ JJ , NN , NN , CC VBG NNS .\nGovernmental control of economic affairs while still heavy has gradually lessened over the past decade with increasing privatization , simplification of the tax structure , and a prudent approach to debt .\tJJ NN IN JJ NNS IN RB JJ VBZ RB VBN IN DT JJ NN IN VBG NN , NN IN DT NN NN , CC DT JJ NN TO NN .\nProgressive social policies also have helped raise living conditions in Tunisia relative to the region .\tNNP JJ NNS RB VBP VBN VB VBG NNS IN NNP JJ TO DT NN .\nReal growth , which averaged almost 5 % over the past decade , declined to 4.6 % in 2008 and to 03-Apr % in 2009 - 10 because of economic contraction and slowing of import demand in Europe - Tunisia 's largest export market .\tJJ NN , WDT VBD RB CD NN IN DT JJ NN , VBD TO CD NN IN CD CC TO CD NN IN CD IN CD IN IN JJ NN CC NN IN NN NN IN NNP IN NNP POS JJS NN NN .\nHowever , development of non-textile manufacturing , a recovery in agricultural production , and strong growth in the services sector somewhat mitigated the economic effect of slowing exports .\tRB , NN IN JJ NN , DT NN IN JJ NN , CC JJ NN IN DT NNS NN RB VBD DT JJ NN IN VBG NNS .\nTunisia will need to reach even higher growth levels to create sufficient employment opportunities for an already large number of unemployed as well as the growing population of university graduates .\tNNP MD VB TO VB RB JJR NN NNS TO VB JJ NN NNS IN DT RB JJ NN IN JJ RB RB IN DT VBG NN IN NN NNS .\nThe challenges ahead include : privatizing industry , liberalizing the investment code to increase foreign investment , improving government efficiency , reducing the trade deficit , and reducing socioeconomic disparities in the impoverished south and west .\tDT NNS RB VBP IN VBG NN , VBG DT NN NN TO VB JJ NN , VBG NN NN , VBG DT NN NN , CC VBG JJ NNS IN DT JJ NN CC NN .\nA FATHER , being on the point of death , wished to be sure that his sons would give the same attention to his farm as he himself had given it .\tDT NN , VBG IN DT NN IN NN , VBD TO VB JJ IN PRP$ NNS MD VB DT JJ NN TO PRP$ NN IN PRP PRP VBD VBN PRP .\nHe called them to his bedside and said , ' My sons , there is a great treasure hid in one of my vineyards . '\tPRP VBD PRP TO PRP$ NN CC VBD , `` PRP$ NNS , EX VBZ DT JJ NN NN IN CD IN PRP$ NNS . ``\nThe sons , after his death , took their spades and mattocks and carefully dug over every portion of their land .\tDT NNS , IN PRP$ NN , VBD PRP$ NNS CC NNS CC RB VBD IN DT NN IN PRP$ NN .\nThey found no treasure , but the vines repaid their labor by an extraordinary and superabundant crop .\tPRP VBD DT NN , CC DT NNS VBD PRP$ NN IN DT JJ CC JJ NN .\nA CERTAIN rich man bought in the market a Goose and a Swan .\tDT JJ JJ NN VBN IN DT NN DT NN CC DT NN .\nHe fed the one for his table and kept the other for the sake of its song .\tPRP VBD DT CD IN PRP$ NN CC VBD DT JJ IN DT NN IN PRP$ NN .\nWhen the time came for killing the Goose , the cook went to get him at night , when it was dark , and he was not able to distinguish one bird from the other .\tWRB DT NN VBD IN VBG DT NN , DT NN VBD TO VB PRP IN NN , WRB PRP VBD JJ , CC PRP VBD RB JJ TO VB CD NN IN DT JJ .\nBy mistake he caught the Swan instead of the Goose .\tIN NN PRP VBD DT NN RB IN DT NN .\nThe Swan , threatened with death , burst forth into song and thus made himself known by his voice , and preserved his life by his melody .\tDT NN , VBN IN NN , VBD RB IN NN CC RB VBD PRP VBN IN PRP$ NN , CC VBD PRP$ NN IN PRP$ NN .\nAN EAGLE stayed his flight and entreated a Lion to make an alliance with him to their mutual advantage .\tDT NN VBD PRP$ NN CC VBD DT NN TO VB DT NN IN PRP TO PRP$ JJ NN .\nThe Lion replied , ' I have no objection , but you must excuse me for requiring you to find surety for your good faith , for how can I trust anyone as a friend who is able to fly away from his bargain whenever he pleases ? '\tDT NN VBD , `` PRP VBP DT NN , CC PRP MD VB PRP IN VBG PRP TO VB NN IN PRP$ JJ NN , IN WRB MD PRP VB DT IN DT NN WP VBZ JJ TO VB RB IN PRP$ NN WRB PRP VBZ . ``\nTry before you trust .\tVB IN PRP NN .\nA D.C. federal judge has ruled that begging is a form of free speech protected by the Constitution .\tDT NNP JJ NN VBZ VBN IN VBG VBZ DT NN IN JJ NN VBN IN DT NNP .\nThe U.S. government says it 's a crime to give FALSE weather reports .\tDT NNP NN VBZ PRP VBZ DT NN TO VB JJ NN NNS .\nIn Washington D.C. it is illegal to post a notice in public which calls another person a ' coward ' for refusing to accept a challenge to duel .\tIN NNP NNP PRP VBZ JJ TO VB DT NN IN JJ WDT VBZ DT NN DT `` NN `` IN VBG TO VB DT NN TO NN .\nWilliam Joy ( 37 ) , of Cookstown , Co. Tyrone , is paralysed from the waist down and confined to a wheelchair as a result of a fall from a bar stool in 1989 .\tNNP NNP LRB CD RRB , IN NNP , NNP NNP , VBZ VBN IN DT NN RB CC VBN TO DT NN IN DT NN IN DT NN IN DT NN NN IN CD .\nThe High Court in Belfast heard during the week that Mr. Joy is suing Michael Newell , the man who owned the bar in which the accident occurred , for damages .\tDT NNP NNP IN NNP VBD IN DT NN IN NNP NNP VBZ VBG NNP NNP , DT NN WP VBD DT NN IN WDT DT NN VBD , IN NNS .\nHe claims that Mr. Newell was negligent for allowing him to sit on a 3 foot high stool while drunk .\tPRP VBZ IN NNP NNP VBD JJ IN VBG PRP TO VB IN DT CD NN JJ NN IN NN .\nTwo new studies offer good news to those with high blood pressure .\tCD JJ NNS VBP JJ NN IN DT IN JJ NN NN .\nThe best part is the drugs are already available .\tDT JJS NN VBZ DT NNS VBP RB JJ .\nVOA 's Carol Pearson has more .\tNNP POS NNP NNP VBZ RBR .\nU.S. federal prosecutors are conducting a criminal investigation into the levee failures that led to widespread flooding in New Orleans after Hurricane Katrina .\tNNP JJ NNS VBP VBG DT JJ NN IN DT NN NNS WDT VBD TO JJ NN IN NNP NNP IN NNP NNP .\nThe office of U.S. Attorney Jim Letten says it is examining possible corruption in the flood barriers ' design , construction and maintenance .\tDT NN IN NNP NNP NNP NNP VBZ PRP VBZ VBG JJ NN IN DT NN NNS POS NN , NN CC NN .\nMr. Letten said Wednesday that some public officials were found to have ' undisclosed conflicts of interest , ' and that his office is ' extremely concerned about those . '\tNNP NNP VBD NNP IN DT JJ NNS VBD VBN TO VB `` JJ NNS IN NN , `` CC IN PRP$ NN VBZ `` RB JJ IN DT . ``\nNew Orleans FBI agent James Bernazzani said federal agents have received numerous tips about possible misconduct related to the levees .\tNNP NNP NNP NN NNP NNP VBD JJ NNS VBP VBN JJ NNS IN JJ NN VBN TO DT NNS .\nLouisiana state and local officials are also investigating the levee failures .\tNNP NN CC JJ NNS VBP RB VBG DT NN NNS .\nAt the peak of the flooding , some 80 percent of New Orleans was underwater .\tIN DT NN IN DT NN , DT CD NN IN NNP NNP VBD NN .\nIt took engineers several weeks to dry out the city , most of which sits below sea level .\tPRP VBD NNS JJ NNS TO VB RP DT NN , JJS IN WDT VBZ IN NN NN .\nNATO officials say alliance troops Friday raided the home of Mladjen Kenjic , a suspected backer of fugitive wartime Bosnian Serb military commander General Ratko Mladic .\tNNP NNS VBP NN NNS NNP VBD DT NN IN NNP NNP , DT JJ NN IN JJ NN JJ JJ JJ NN NNP NNP NNP .\nA NATO spokesman says troops searched his home in the village of Vojkovici , just outside Sarajevo .\tDT NNP NN VBZ NNS VBD PRP$ NN IN DT NN IN NNP , RB IN NNP .\nNews reports identify Mr. Kenjic as a former member of General Mladic 's personal security team .\tNNP NNS VBP NNP NNP IN DT JJ NN IN NNP NNP POS JJ NN NN .\nThe Hague tribunal indicted General Mladic on genocide and other charges for attacks against civilians during the 1990 's conflict in Bosnia-Herzegovina .\tDT NNP NN VBD NNP NNP IN NN CC JJ NNS IN NNS IN NNS IN DT CD POS NN IN NNP .\nKosovo police say an explosion during a protest by ethnic Serbs has wounded about a dozen people in an ethnically divided town .\tNNP NNS VBP DT NN IN DT NN IN JJ NNS VBZ VBN IN DT NN NNS IN DT RB VBN NN .\nThe cause of the blast was not immediately clear .\tDT NN IN DT NN VBD RB RB JJ .\nOfficials say Friday 's demonstration was called to protest the opening of a Kosovo government office in Mitrovica .\tNNS VBP NNP POS NN VBD VBN TO VB DT NN IN DT NNP NN NN IN NNP .\nThe town remains deeply spit and is fraught with tension between Serbs and ethnic Albanians , more than two years after Kosovo declared independence from Serbia .\tDT NN VBZ RB JJ CC VBZ JJ IN NN IN NNS CC JJ NNS , JJR IN CD NNS IN NNP VBD NN IN NNP .\nThe United States is a key supporter of Kosovo 's independence , and has maintained a peacekeeping force of more than 1,400 troops there since the country 's declaration of independence .\tDT NNP NNPS VBZ DT JJ NN IN NNP POS NN , CC VBZ VBN DT NN NN IN JJR IN CD NNS RB IN DT NN POS NN IN NN .\nThe U.S. detachment is part of a 10,000-strong NATO-EU force that along with some 2,000 police , judges and prosecutors are deployed in Kosovo to help the country develop democratic institutions .\tDT NNP NN VBZ NN IN DT JJ NNP NN IN IN IN DT CD NNS , NNS CC NNS VBP VBN IN NNP TO VB DT NN VB JJ NNS .\nThe U.S. embassy in Nairobi has warned that Somali-based militants may attempt to kidnap Americans and other Westerners from Kenya 's tourist beaches .\tDT NNP NN IN NNP VBZ VBN IN JJ NNS MD VB TO VB NNS CC JJ NNS IN NNP POS NN NNS .\nAn embassy statement Friday said there were indications that extremists might target Westerners at Kiwayu Island and other popular resorts along Kenya 's northeastern coast , near the Somali border .\tDT JJ NN NNP VBD EX VBD NNS IN NNS MD VB NNS IN NNP NNP CC JJ JJ NNS IN NNP POS JJ NN , IN DT JJ NN .\nThe warning is based on a tip Kenyan police passed along to embassy officials .\tDT NN VBZ VBN IN DT NN JJ NN VBD IN TO JJ NNS .\nKenya closed its border with Somalia in January during fighting that pitted Islamic militia against Somali government troops and their Ethiopian allies .\tNNP VBD PRP$ NN IN NNP IN NNP IN VBG IN VBD JJ NN IN JJ NN NNS CC PRP$ JJ NNS .\nThe U.S. blames the al-Qaida terrorist network for the 1998 attack that destroyed its embassy in Nairobi and for a 2002 car bombing of a beachfront hotel in southeastern Kenya .\tDT NNP VBZ DT NNP JJ NN IN DT CD NN WDT VBD PRP$ NN IN NNP CC IN DT CD NN NN IN DT NN NN IN JJ NNP .\nThe U.S. military launched strikes on suspected al-Qaida targets in Somalia earlier this year .\tDT NNP NN VBD NNS IN JJ NNP NNS IN NNP RBR DT NN .\nCambodia 's military court has laid more charges against two former Khmer Rouge leaders awaiting trial for genocide .\tNNP POS JJ NN VBZ VBN JJR NNS IN CD JJ NNP NNP NNS VBG NN IN NN .\nMilitary chief Ta Mok , and the head of the Tuol Sleng interrogation center , Duch , have been charged with genocide and crimes against humanity .\tJJ NN NNP NNP , CC DT NN IN DT NNP NNP NN NN , NNP , VBP VBN VBN IN NN CC NNS IN NN .\nThe new charges allow the two to be held for another three years without trial .\tDT JJ NNS VBP DT CD TO VB VBN IN DT CD NNS IN NN .\nBoth men were originally jailed in 1999 and charged with genocide , which meant they could be held for three years without trial .\tDT NNS VBD RB VBN IN CD CC VBN IN NN , WDT VBD PRP MD VB VBN IN CD NNS IN NN .\nIn 2002 , they were charged with crimes against humanity to prevent their release .\tIN CD , PRP VBD VBN IN NNS IN NN TO VB PRP$ NN .\nThe United Nations is trying to raise $ 56 million to fund a genocide tribunal .\tDT NNP NNP VBZ VBG TO VB $ CD CD TO VB DT NN NN .\nNone of the leaders of the Khmer Rouge has ever been brought to trial .\tNN IN DT NNS IN DT NNP NNP VBZ RB VBN VBN TO NN .\nA Mexican court has reduced the prison sentences of two brothers who were convicted of heading a drug cartel that smuggled tons of methamphetamine into the United States .\tDT JJ NN VBZ VBN DT NN NNS IN CD NNS WP VBD VBN IN VBG DT NN NN WDT VBD NNS IN NN IN DT NNP NNPS .\nJose de Jesus Amezcua Thursday had a 53-year prison sentence reduced to 28 years .\tNNP NNP NNP NNP NNP VBD DT JJ NN NN VBN TO CD NNS .\nHis brother , Adan , had his sentence cut from 22 years to nine-and-a-half years .\tPRP$ NN , NNP , VBD PRP$ NN VBN IN CD NNS TO JJ NNS .\nNo reason was given for the reduction in sentences .\tDT NN VBD VBN IN DT NN IN NNS .\nThe original sentences were handed down in September of last year .\tDT JJ NNS VBD VBN RP IN NNP IN JJ NN .\nAuthorities say the brothers , dubbed the ' methamphetamine kings , ' led a drug ring that imported chemical ingredients from Europe , India and Pakistan , and manufactured the stimulant for export to the United States .\tNNS VBP DT NNS , VBD DT `` NN NNS , `` VBD DT NN NN WDT VBD NN NNS IN NNP , NNP CC NNP , CC VBD DT NN IN NN TO DT NNP NNPS .\nA court in the U.S. state of California has indicted Jose de Jesus Amezcua and another brother , Luis , on drug charges .\tDT NN IN DT NNP NN IN NNP VBZ VBN NNP NNP NNP NNP CC DT NN , NNP , IN NN NNS .\nMexican authorities have refused to extradite the brothers .\tJJ NNS VBP VBN TO VB DT NNS .\nExit polling shows the economy to be the most pressing concern on U.S. voters ' minds .\tNN NN VBZ DT NN TO VB DT RBS JJ NN IN NNP NNS POS NNS .\nSome 60 percent of voters Tuesday named the troubled economy as the most important issue facing the nation .\tDT CD NN IN NNS NNP VBD DT JJ NN IN DT RBS JJ NN VBG DT NN .\nThat finding was mirrored in two separate surveys of voters who had cast their ballots , conducted by CNN and the Associated Press .\tDT NN VBD VBN IN CD JJ NNS IN NNS WP VBD VBN PRP$ NNS , VBN IN NNP CC DT NNP NNP .\nNo other issue was named the most important by more than one in 10 Americans .\tDT JJ NN VBD VBN DT RBS JJ IN JJR IN CD IN CD NNS .\nIn CNN 's polling , 10 percent named Iraq as the top issue , while terrorism and health care were the most important for nine percent .\tIN NNP POS NN , CD NN VBD NNP IN DT JJ NN , IN NN CC NN NN VBD DT RBS JJ IN CD NN .\nExit polling on voters ' preferences for president will not be released until voting stations begin to close .\tNN NN IN NNS POS NNS IN NN MD RB VB VBN IN NN NNS VBP TO VB .\nColombian President Alvaro Uribe says he is willing to send officials to a neutral area to negotiate the swap of government-held rebels for rebel-held hostages .\tJJ NNP NNP NNP VBZ PRP VBZ JJ TO VB NNS TO DT JJ NN TO VB DT NN IN JJ NNS IN JJ NNS .\nDuring a speech Friday in Bogota , Mr. Uribe said international observers should go to the yet-to-be-announced meeting zone , an area he said should be free of weapons .\tIN DT NN NNP IN NNP , NNP NNP VBD JJ NNS MD VB TO DT JJ NN NN , DT NN PRP VBD MD VB JJ IN NNS .\nWednesday , French President Nicolas Sarkozy appealed to the leftist FARC rebels to release some 45 hostages , including French-Colombian politician Ingrid Betancourt and three Americans .\tNNP , JJ NNP NNP NNP VBD TO DT JJ NNP NNS TO VB DT CD NNS , VBG JJ NN NNP NNP CC CD NNS .\nTalks between the Colombian government and the rebels had been stalled over proposals to swap the hostages for about 500 FARC prisoners being held in Colombian jails .\tNNS IN DT JJ NN CC DT NNS VBD VBN VBN IN NNS TO VB DT NNS IN IN CD NNP NNS VBG VBN IN JJ NNS .\nPresident Sarkozy 's appeal this week was apparently prompted by a recent videotape of the hostages which showed Betancourt looking extremely gaunt and despondent .\tNNP NNP POS NN DT NN VBD RB VBN IN DT JJ NN IN DT NNS WDT VBD NNP VBG RB JJ CC JJ .\nA former Colombian presidential candidate , Betancourt was kidnapped in February 2002 .\tDT JJ JJ JJ NN , NNP VBD VBN IN NNP CD .\nTaiwan President Chen Shui-bian says he plans to join a rally Saturday in Taipei to protest China 's threat to use force against the island if it formally declares independence .\tNNP NNP NNP NNP VBZ PRP VBZ TO VB DT NN NNP IN NNP TO VB NNP POS NN TO VB NN IN DT NN IN PRP RB VBZ NN .\nThe protest is being held amid this week 's one-year anniversary of China 's approval of an anti-secession law .\tDT NN VBZ VBG VBN IN DT NN POS JJ NN IN NNP POS NN IN DT JJ NN .\nThe law says China will employ ' non-peaceful means ' to prevent Taiwan 's independence if efforts at peaceful reunification fail .\tDT NN VBZ NNP MD VB `` JJ NNS `` TO VB NNP POS NN IN NNS IN JJ NN VBP .\nChina and Taiwan split in 1949 after a civil war , but Beijing considers Taiwan a renegade province .\tNNP CC NNP NN IN CD IN DT JJ NN , CC NNP VBZ NNP DT NN NN .\nMr. Chen angered Beijing last month when he decided to stop funding a unification council and scrap guidelines for reunification with China .\tNNP NNP VBD NNP JJ NN WRB PRP VBD TO VB VBG DT NN NN CC NN NNS IN NN IN NNP .\nHobart Boulevard Elementary School is located in a poor Los Angeles neighborhood , infested with gangs and drugs .\tNNP NNP NNP NNP VBZ VBN IN DT JJ NNP NNP NN , VBN IN NNS CC NNS .\nYet in a fifth grade classroom , children of immigrants , many who speak English as a second language , are learning important life lessons thanks to one teacher and the works of William Shakespeare .\tRB IN DT JJ NN NN , NNS IN NNS , NN WP VBP NNP IN DT JJ NN , VBP VBG JJ NN NNS NNS TO CD NN CC DT NNS IN NNP NNP .\nVOA 's Yi Suli introduces us to a group of young thespians who are known around the world as the ' Hobart Shakespeareans . '\tNNP POS NNP NNP VBZ PRP TO DT NN IN JJ NNS WP VBP VBN IN DT NN IN DT `` NNP NNPS . ``\nIn Afghanistan , a suicide bomber dressed in a military uniform has blown himself up outside an army training center in Kabul killing 10 people , including himself , and wounding at least 28 others .\tIN NNP , DT NN NN VBN IN DT JJ NN VBZ VBN PRP RP IN DT NN NN NN IN NNP VBG CD NNS , VBG PRP , CC VBG IN JJS CD NNS .\nAn Afghan Defense Ministry spokesman , Mohammed Zaher Azimi , said the blast came as officers and soldiers were leaving the training center at the end of the day and were waiting for buses to take them home .\tDT JJ NNP NNP NN , NNP NNP NNP , VBD DT NN VBD IN NNS CC NNS VBD VBG DT NN NN IN DT NN IN DT NN CC VBD VBG IN NNS TO VB PRP NN .\nA purported Taleban spokesman , Abdul Latif Hakimi , claimed responsibility for the deadly attack .\tDT JJ NNP NN , NNP NNP NNP , VBD NN IN DT JJ NN .\nHe identified the bomber as Kabul resident Sardar Mohammad .\tPRP VBD DT NN IN NNP NN NNP NNP .\nPresident Hamid Karzai condemned the attack in ' the strongest terms ' and ordered an immediate investigation .\tNNP NNP NNP VBD DT NN IN `` DT JJS NNS `` CC VBD DT JJ NN .\nAlso Wednesday , three people were killed and at least four others wounded in a landmine blast in Kunar province bordering Pakistan .\tRB NNP , CD NNS VBD VBN CC IN JJS CD NNS VBN IN DT NN NN IN NNP NN VBG NNP .\nPeople in Georgia are voting Thursday to choose more than 1,700 members of municipal and regional councils .\tNNS IN NNP VBP VBG NNP TO VB JJR IN CD NNS IN JJ CC JJ NNS .\nThe local elections are seen as a test of support for President Mikhail Saakashvili 's National Movement and its pro-Western stance .\tDT JJ NNS VBP VBN IN DT NN IN NN IN NNP NNP NNP POS NNP NNP CC PRP$ JJ NN .\nThe election originally focused on local issues , but may now be seen as a barometer of Mr. Saakashvili 's performance in his standoff with Russia following last week 's arrest of four Russian officers accused of spying .\tDT NN RB VBD IN JJ NNS , CC MD RB VB VBN IN DT NN IN NNP NNP POS NN IN PRP$ NN IN NNP VBG JJ NN POS NN IN CD JJ NNS VBN IN VBG .\nThe Russian government has severed transport and postal links with Tbilisi , cutting an economic lifeline for hundreds of thousands of Georgians dependent on relatives living in Russia .\tDT JJ NN VBZ VBN NN CC JJ NNS IN NNP , VBG DT JJ NN IN NNS IN NNS IN NNS JJ IN NNS VBG IN NNP .\nSince coming to power in the 2003 Rose Revolution , Mr. Saakashvili has sought to forge closer ties with the European Union and United States .\tIN VBG TO NN IN DT CD NNP NNP , NNP NNP VBZ VBN TO VB JJR NNS IN DT NNP NNP CC NNP NNPS .\nAdditionally , Georgia has long accused Russia of interfering in its internal affairs by backing separatists in two breakaway areas of the country - Abkhazia and South Ossetia .\tRB , NNP VBZ RB VBN NNP IN VBG IN PRP$ JJ NNS IN VBG NNS IN CD JJ NNS IN DT NN IN NNP CC NNP NNP .\nAn advisory panel for a U.S. government health agency recommends greatly increasing the number of American children who receive the influenza immunization each year .\tDT JJ NN IN DT NNP NN NN NN VBZ RB VBG DT NN IN JJ NNS WP VBP DT NN NN DT NN .\nThe panel suggests every child from age six months to 18 years receive a flu shot .\tDT NN VBZ DT NN IN NN CD NNS TO CD NNS VBP DT NN NN .\nThe new guideline would expand by some 30 million the number of young people who should be vaccinated .\tDT JJ NN MD VB IN DT CD CD DT NN IN JJ NNS WP MD VB VBN .\nLeta Hong Fincher has more .\tNNP NNP NNP VBZ RBR .\nPhilippine communist guerrillas say they will not observe the usual Christmas ceasefire with the government .\tJJ NN NNS VBP PRP MD RB VB DT JJ NNP NN IN DT NN .\nSpokesman Gregorio Rosal for two communist groups ( the New People 's Army and the Communist Party of the Philippines ) said Thursday there is no point in a truce , and accused government forces of murdering allied leftists .\tNNP NNP NNP IN CD JJ NNS LRB DT NNP NNP POS NNP CC DT NNP NNP IN DT NNPS RRB VBD NNP EX VBZ DT NN IN DT NN , CC VBN NN NNS IN VBG JJ NNS .\nThe Philippine military had recommended a unilateral ceasefire for Christmas Day ( December 25 ) and New Year 's Day , pending approval by President Gloria Arroyo .\tDT JJ NN VBD VBN DT JJ NN IN NNP NNP LRB NNP CD RRB CC NNP NNP POS NN , VBG NN IN NNP NNP NNP .\nThe government and communist rebels have been engaged in armed conflict for more than 40 years .\tDT NN CC JJ NNS VBP VBN VBN IN JJ NN IN JJR IN CD NNS .\nMedia reports in the United States say the Central Intelligence Agency has closed a unit that was devoted to tracking international terrorist leader Osama bin Laden and his top lieutenants .\tNNS NNS IN DT NNP NNPS VBP DT NNP NNP NNP VBZ VBN DT NN WDT VBD VBN TO VBG JJ JJ NN NNP NNP NNP CC PRP$ JJ NNS .\nThe New York Times Tuesday published a report quoting officials who confirmed that the unit was disbanded last year , and that its analysts were reassigned within the agency 's counterterrorism center .\tDT NNP NNP NNP NNP VBD DT NN VBG NNS WP VBD IN DT NN VBD VBN JJ NN , CC IN PRP$ NNS VBD VBN IN DT NN POS NN NN .\nInitial news of the unit 's closure was reported on National Public Radio Monday .\tJJ NN IN DT NN POS NN VBD VBN IN NNP NNP NNP NNP .\nThe Times quotes a CIA spokeswoman , Jennifer Millerwise Dyck , as saying bin Laden 's capture remains a high priority .\tDT NNP VBZ DT NNP NN , NNP NNP NNP , IN VBG NNP NNP POS NN VBZ DT JJ NN .\nIntelligence officials say the unit closure reflects a view that al-Qaida is not as hierarchical as it once was , and that terrorists may be carrying out attacks independent of bin Laden .\tNN NNS VBP DT NN NN VBZ DT NN IN NNP VBZ RB RB JJ IN PRP RB VBD , CC IN NNS MD VB VBG RP NNS JJ IN NNP NNP .\nThe Times reports that the disbanded unit , known as Alec Station , operated for a decade just outside Washington , and was staffed by 24 people .\tDT NNP VBZ IN DT JJ NN , VBN IN NNP NNP , VBD IN DT NN RB IN NNP , CC VBD VBN IN CD NNS .\nRussian officials say jailed oil tycoon Mikhail Khodorkovsky has been sent to a prison colony in eastern Siberia to serve out the rest of his eight-year sentence for financial crimes .\tJJ NNS VBP VBN NN NN NNP NNP VBZ VBN VBN TO DT NN NN IN JJ NNP TO VB RP DT NN IN PRP$ JJ NN IN JJ NNS .\nThe head of the local prison administration Alexander Pleshkov told the Interfax news agency Thursday Khodorkovsky had been sent to a colony in the Krasnokamensk district of Chita province , close to the Chinese border .\tDT NN IN DT JJ NN NN NNP NNP VBD DT NNP NN NN NNP NNP VBD VBN VBN TO DT NN IN DT NNP NN IN NNP NN , RB TO DT JJ NN .\nKhodorkovsky was convicted on May 31 on charges of embezzlement , fraud and tax evasion relating to his business activities in the 1990s .\tNNP VBD VBN IN NNP CD IN NNS IN NN , NN CC NN NN VBG TO PRP$ NN NNS IN DT NNS .\nSupporters of Khodorkovsky say the state 's legal action against him and the Yukos oil firm was a Kremlin-driven reprisal for the tycoon 's forays into politics in opposition to President Vladimir Putin .\tNNS IN NNP VBP DT NN POS JJ NN IN PRP CC DT NNP NN NN VBD DT JJ NN IN DT NN POS NNS IN NNS IN NN TO NNP NNP NNP .\nRussian officials deny this and say he is a common criminal .\tJJ NNS VBP DT CC VB PRP VBZ DT JJ NN .\nA former Serb leader of the Yugoslav Army has surrendered to the U.N. war crimes tribunal in The Hague .\tDT JJ JJ NN IN DT JJ NNP VBZ VBN TO DT NNP NN NNS JJ IN DT NNP .\nGeneral Momcilo Perisic is the fourth high-ranking Serb suspect to turn himself in this year for alleged crimes during the 1990s Balkan wars .\tNNP NNP NNP VBZ DT JJ JJ JJ NN TO VB PRP IN DT NN IN JJ NNS IN DT NNS NNP NNS .\nThe International Criminal Tribunal for the former Yugoslavia made public Monday eight counts of crimes against humanity and five counts of war crimes against General Perisic for his role as Chief of the General Staff of the Yugoslav Army .\tDT NNP NNP NNP IN DT JJ NNP VBD JJ NNP CD NNS IN NNS IN NN CC CD NNS IN NN NNS IN NNP NNP IN PRP$ NN IN NNP IN DT NNP NNP IN DT JJ NNP .\nThe tribunal states the charges cover his actions in Sarajevo , Zagreb and Srebrenica .\tDT NN VBZ DT NNS VBP PRP$ NNS IN NNP , NNP CC NNP .\nThe former general said last week that appearing before the tribunal was the best way to defend his honor and the reputation of the army .\tDT JJ NN VBD JJ NN IN VBG IN DT NN VBD DT JJS NN TO VB PRP$ NN CC DT NN IN DT NN .\nThe UN Food and Agriculture Organization says migratory birds from Africa could help spread Avian Flu in the coming months .\tDT NNP NNP CC NNP NNP VBZ JJ NNS IN NNP MD VB VB NNP NNP IN DT JJ NNS .\nAt the bird flu conference in Beijing , FAO Deputy Director-General David Harcharik says Avian Flu could become ' entrenched ' in the Black Sea , the Caucasus and Near East regions through trade and travel .\tIN DT NN NN NN IN NNP , NNP NNP NNP NNP NNP VBZ NNP NNP MD VB `` VBN `` IN DT NNP NNP , DT NNP CC NNP NNP NNS IN NN CC NN .\nBut he says migratory birds coming from Africa in the spring could spread it further .\tCC PRP VBZ JJ NNS VBG IN NNP IN DT NN MD VB PRP RBR .\nThe FAO official says countries in Africa deserve special attention .\tDT NNP NN VBZ NNS IN NNP VBP JJ NN .\nHe says if bird flu were to become ' rooted in the African countryside , the consequences of a continent already devastated by hunger and poverty could be truly catastrophic . '\tPRP VBZ IN NN NN VBD TO VB `` JJ IN DT JJ NN , DT NNS IN DT NN RB VBN IN NN CC NN MD VB RB JJ . ``\nPalestinian officials say Palestinian Authority President Mahmoud Abbas has undergone a heart procedure at a hospital in Jordan .\tJJ NNS VBP JJ NNP NNP NNP NNP VBZ VBN DT NN NN IN DT NN IN NNP .\nOfficials said Wednesday Mr. Abbas would only remain briefly at the hospital .\tNNS VBD NNP NNP NNP MD RB VB RB IN DT NN .\nReports say the Palestinian leader underwent an angioplasty , or procedure aimed at opening clogged heart arteries to increase the blood flow to his heart .\tNNS VBP DT JJ NN VBD DT NN , CC NN VBN IN VBG JJ NN NNS TO VB DT NN NN TO PRP$ NN .\nHe is expected to return to the Palestinian territories Thursday .\tPRP VBZ VBN TO VB TO DT JJ NNS NNP .\nMr. Abbas met last week at the White House with President Bush , who reaffirmed his support for the creation of a Palestinian state .\tNNP NNP VBD JJ NN IN DT NNP NNP IN NNP NNP , WP VBD PRP$ NN IN DT NN IN DT JJ NN .\nMr. Bush also offered 50 million dollars for housing and construction in the Gaza Strip after Israel pulls out in August .\tNNP NNP RB VBD CD CD NNS IN NN CC NN IN DT NNP NNP IN NNP VBZ RP IN NNP .\nPakistani officials say at least 90 people have been killed in the worst flooding in Pakistan 's northwest in almost 100 years .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN IN DT JJS NN IN NNP POS JJS IN RB CD NNS .\nHeavy monsoon rains continued to flood Khyber-Pakhtunkhwa province Thursday , leaving towns in the Swat Valley badly affected .\tNNP NN NNS VBD TO VB NNP NN NNP , VBG NNS IN DT NNP NNP RB VBD .\nSeveral thousand people have been displaced .\tJJ CD NNS VBP VBN VBN .\nAid workers say the heavy rains are impeding the ability to reach affected areas by helicopter .\tJJ NNS VBP DT JJ NNS VBP VBG DT NN TO VB VBN NNS IN NN .\nJust across the border in Afghanistan , NATO says the Afghan National Army rescued more than 200 Afghan civilians stranded by flash floods in Nangarhar province .\tRB IN DT NN IN NNP , NNP VBZ DT JJ NNP NNP VBD JJR IN CD JJ NNS VBN IN NN NNS IN NNP NN .\nAnother 50 people have been killed in southern Pakistan since storms began earlier this month .\tDT CD NNS VBP VBN VBN IN JJ NNP IN NNS VBD RBR DT NN .\nRescue workers say more than 50,000 people have been impacted in the worst-hit areas of Baluchistan province .\tNN NNS VBP JJR IN CD NNS VBP VBN VBN IN DT JJ NNS IN NNP NN .\nBad weather also was said to be a factor in the crash of a passenger plane Wednesday in the capital , Islamabad .\tJJ NN RB VBD VBN TO VB DT NN IN DT NN IN DT NN NN NNP IN DT NN , NNP .\nIraqi officials say a car bomb explosion has killed at least 20 people in northern Baghdad .\tJJ NNS VBP DT NN NN NN VBZ VBN IN JJS CD NNS IN JJ NNP .\nThe blast Thursday ripped through a crowd near a busy shopping area in the mainly Shi'ite neighborhood of Shaab .\tDT NN NNP VBD IN DT NN IN DT JJ NN NN IN DT RB JJ NN IN NNP .\nIraqi officials say at least four children and three women are among the dead .\tJJ NNS VBP IN JJS CD NNS CC CD NNS VBP IN DT NN .\nAt least 35 others were wounded .\tIN JJS CD NNS VBD VBN .\nOn Wednesday , U.S. and Iraqi security officials said the number of insurgent attacks in Iraq has fallen to the lowest level in nearly six years .\tIN NNP , NNP CC JJ NN NNS VBD DT NN IN JJ NNS IN NNP VBZ VBN TO DT JJS NN IN RB CD NNS .\nOfficials acknowledged that daily attacks continue in some areas , but military spokesman Major General David Perkins said the number of insurgent attacks has declined 90 percent since mid-2007 , when the unrest was at its height .\tNNS VBD IN JJ NNS VBP IN DT NNS , CC JJ NN NNP NNP NNP NNP VBD DT NN IN JJ NNS VBZ VBN CD NN IN CD , WRB DT NN VBD IN PRP$ NN .\nIraqi police said a roadside bombing in the northern city of Mosul Wednesday killed three children on their way home from school .\tJJ NNS VBD DT NN VBG IN DT JJ NN IN NNP NNP VBD CD NNS IN PRP$ NN NN IN NN .\nThe attack is believed to have targeted a nearby U.S. military patrol .\tDT NN VBZ VBN TO VB VBN DT JJ NNP JJ NN .\nUniformed gunmen have kidnapped the chief of Iraq 's Olympic Committee along with some 30 other sports officials and bodyguards .\tJJ NNS VBP VBN DT NN IN NNP POS NNP NNP IN IN DT CD JJ NNS NNS CC NNS .\nAhmed al-Hadjiya and the others were kidnapped Saturday afternoon from a conference center in Baghdad where they were holding a meeting .\tNNP NNP CC DT NNS VBD VBN NNP NN IN DT NN NN IN NNP WRB PRP VBD VBG DT NN .\nGunmen stormed the building , blindfolded and handcuffed the hostages , then drove them away in a convoy of vehicles .\tNNS VBD DT NN , VBD CC VBD DT NNS , RB VBD PRP RB IN DT NN IN NNS .\nThe bodies of two bodyguards were found later dumped along a street .\tDT NNS IN CD NNS VBD VBN RB VBN IN DT NN .\nThe International Olympic Committee in Geneva condemned the kidnappings and called for the immediate release of the sports officials .\tDT NNP NNP NNP IN NNP VBD DT NNS CC VBN IN DT JJ NN IN DT NNS NNS .\nThe kidnappings came after Iraq 's parliament voted to extend a state of emergency for 30 days in an effort to quell sectarian violence and insurgent attacks .\tDT NNS VBD IN NNP POS NN VBD TO VB DT NN IN NN IN CD NNS IN DT NN TO VB JJ NN CC JJ NNS .\nElsewhere , fifteen people died in clashes and bombings , including two American soldiers .\tRB , CD NNS VBD IN NNS CC NNS , VBG CD JJ NNS .\nArmy officials in the Democratic Republic of Congo say several days of skirmishes with rebel militias have killed at least 23 fighters , mostly among the militias .\tNNP NNS IN DT JJ NNP IN NNP VBP JJ NNS IN NNS IN JJ NNS VBP VBN IN JJS CD NNS , RB IN DT NNS .\nThe fighting was in North Kivu province , near the DRC 's eastern border with Rwanda and Uganda .\tDT NN VBD IN NNP NNP NN , IN DT NNP POS JJ NN IN NNP CC NNP .\nDespite the presence of 17,000 U.N. peacekeeping soldiers , bands of foreign and domestic militia fighters still terrorize the country 's east .\tIN DT NN IN CD NNP NN NNS , NNS IN JJ CC JJ NN NNS RB VBP DT NN POS NN .\nThe Rwandan Hutu militia , the Democratic Forces for the Liberation of Rwanda or FLDR , has operated in eastern DRC since fleeing Rwanda in 1994 , when many of them took part in the slaughter of some 8,00,000 people .\tDT JJ NNP NN , DT JJ NNS IN DT NN IN NNP CC NNP , VBZ VBN IN JJ NNP IN VBG NNP IN CD , WRB NN IN PRP VBD NN IN DT NN IN DT CD NNS .\nThe DRC is struggling to rebuild after a civil war from 1998 to 2002 , when approximately four million died , mostly from hunger and disease .\tDT NNP VBZ VBG TO VB IN DT JJ NN IN CD TO CD , WRB RB CD CD VBD , RB IN NN CC NN .\nHowever , violence continues in the country 's east , despite a peace deal in 2003 .\tRB , NN VBZ IN DT NN POS JJ , IN DT NN NN IN CD .\nU.S. Army dog handler Sergeant Michael Smith has admitted to using his canine to scare Iraqi detainees into soiling themselves , according to witness testimony Tuesday .\tNNP NNP NN NN NN NNP NNP VBZ VBN TO VBG PRP$ NN TO VB JJ NNS IN VBG PRP , VBG TO NN NN NNP .\nThe 24-year-old Smith is charged with 13 counts of abuse during his time at Abu Ghraib prison , located just outside Baghdad .\tDT JJ NNP VBZ VBN IN CD NNS IN NN IN PRP$ NN IN NNP NNP NN , VBN RB IN NNP .\nIf convicted on all counts , he faces 24.5 years in prison .\tIN VBN IN DT NNS , PRP VBZ CD NNS IN NN .\nWitness John Ketzer also worked at Abu Ghraib , and says the two had a contest to see if they could force the prisoners to soil themselves .\tNN NNP NNP RB VBD IN NNP NNP , CC VBZ DT CD VBD DT NN TO VB IN PRP MD VB DT NNS TO VB PRP .\nAbu Ghraib came to the public 's attention after a 2004 investigation revealed numerous cases of prisoner abuse by American soldiers .\tNNP NNP VBD TO DT NN POS NN IN DT CD NN VBD JJ NNS IN NN NN IN JJ NNS .\nGraphic photographs showing military personnel in the act of abusing prisoners were widely circulated and led to the discharge of more than a dozen U.S. soldiers .\tJJ NNS VBG JJ NNS IN DT NN IN VBG NNS VBD RB VBN CC VBN TO DT NN IN JJR IN DT NN NNP NNS .\nA North Korean official says the country has built nuclear weapons to cope with what it calls the ' U.S. nuclear threat ' and says the nation is prepared to counter any U.S. pre-emptive strike .\tDT JJ JJ NN VBZ DT NN VBZ VBN JJ NNS TO VB IN WP PRP VBZ DT `` NNP JJ NN `` CC VBZ DT NN VBZ VBN TO VB DT NNP JJ NN .\nThe state-run Korean Central News Service Tuesday quotes an unnamed North Korean Foreign Ministry spokesman as saying the United States should seek cooperation with North Korea rather than pressing it to abandon its nuclear program .\tDT JJ JJ NNP NNP NNP NNP VBZ DT JJ JJ JJ NNP NNP NN IN VBG DT NNP NNPS MD VB NN IN NNP NNP RB IN VBG PRP TO VB PRP$ JJ NN .\nThe spokesman made the comments in response to the U.S. National Security Strategy released last week , which says the United States will act pre-emptively to prevent hostile acts .\tDT NN VBD DT NNS IN NN TO DT NNP NNP NNP NNP VBN JJ NN , WDT VBZ DT NNP NNPS MD VB RB TO VB JJ NNS .\nSix-nation talks over North Korea 's nuclear program have been stalled since November .\tJJ NNS IN NNP NNP POS JJ NN VBP VBN VBN IN NNP .\nNorth Korea is demanding that U.S. economic sanctions against Pyongyang be lifted .\tNNP NNP VBZ VBG IN NNP JJ NNS IN NNP VB VBN .\nWashington has rejected the demand , saying the sanctions are not related to the talks .\tNNP VBZ VBN DT NN , VBG DT NNS VBP RB VBN TO DT NNS .\nThe African Union says it is making a symbolic contribution of $ 1,00,000 to areas affected by the Asian tsunami .\tDT NNP NNP VBZ PRP VBZ VBG DT JJ NN IN $ CD TO NNS VBN IN DT JJ NN .\nIn announcing the donation , the African Union expressed its solidarity with victims from southeast Asia to the Indian Ocean coast of Africa .\tIN VBG DT NN , DT NNP NNP VBD PRP$ NN IN NNS IN NN NNP TO DT NNP NNP NN IN NNP .\nThe chairman of the African Union Commission , Alpha Oumar Konare , also expressed his solidarity and sympathy to everyone affected by the disaster .\tDT NN IN DT NNP NNP NNP , NNP NNP NNP , RB VBD PRP$ NN CC NN TO DT VBN IN DT NN .\nHe commended efforts by nations that are working to alleviate suffering , and called on African Union member states to provide assistance .\tPRP VBD NNS IN NNS WDT VBP VBG TO VB NN , CC VBN IN NNP NNP NN NNS TO VB NN .\nThe tsunami devastated coastal areas from Malaysia to East Africa .\tDT NN VBD JJ NNS IN NNP TO NNP NNP .\nAt least 200 people died in the northern Somali fishing community of Halfun .\tIN JJS CD NNS VBD IN DT JJ JJ NN NN IN NNP .\nThe ocean surge also took lives in Tanzania , the Seychelles , and Kenya .\tDT NN NN RB VBD NNS IN NNP , DT NNP , CC NNP .\nThirty-two Cuban migrants have landed on a small island in the Florida Keys .\tCD JJ NNS VBP VBN IN DT JJ NN IN DT NNP NNPS .\nCoast Guard spokeswoman Sandra Bartlett said Friday the migrants were found on an uninhabited strip of land .\tNNP NNP NN NNP NNP VBD NNP DT NNS VBD VBN IN DT JJ NN IN NN .\nShe said the Coast Guard picked up the Cubans and handed them over to the U.S. Customs and Border Protection agency .\tPRP VBD DT NNP NNP VBD RP DT NNS CC VBD PRP RP TO DT NNP NNP CC NNP NNP NN .\nA border protection spokesman said Friday the 32 were in good health .\tDT NN NN NN VBD NNP DT CD VBD IN JJ NN .\nHe said the migrants told him they left Cuba Monday and arrived on the island Thursday night .\tPRP VBD DT NNS VBD PRP PRP VBD NNP NNP CC VBD IN DT NN NNP NN .\nNearly 1,500 Cubans were caught trying to reach the United States last year .\tRB CD NNS VBD VBN VBG TO VB DT NNP NNPS JJ NN .\nCubans who set foot on U.S. territory are usually allowed to stay , while those intercepted at sea generally are sent home .\tNNS WP VBD NN IN NNP NN VBP RB VBN TO VB , IN DT VBN IN NN RB VBP VBN NN .\nCrude oil and gasoline prices eased Friday after Rita was downgraded to a category 4 Hurricane .\tJJ NN CC NN NNS VBD NNP IN NNP VBD VBN TO DT NN CD NNP .\nPrices also declined when the storm 's predicted path shifted slightly away from the center of the U.S. oil refining industry to a less populated part of the Gulf Coast .\tNNS RB VBD WRB DT NN POS VBN NN VBD RB RB IN DT NN IN DT NNP NN NN NN TO DT RBR JJ NN IN DT NNP NNP .\nBut investors remain on watch because hurricanes are unpredictable , and the ' weaker ' storm is still just as strong as Hurricane Katrina , which devastated nearby New Orleans , killed more than 1,000 people , and damaged key parts of the U.S. energy industry .\tCC NNS VBP IN NN IN NNS VBP JJ , CC DT `` JJR `` NN VBZ RB RB RB JJ IN NNP NNP , WDT VBD JJ NNP NNP , VBD JJR IN CD NNS , CC VBN JJ NNS IN DT NNP NN NN .\nIn the wake of Hurricane Katrina , world oil prices and gasoline prices spiked to all-time highs .\tIN DT NN IN NNP NNP , NN NN NNS CC NN NNS VBD TO JJ NNS .\nConsumers and analysts say they are worried that serious damage from Hurricane Rita could drive prices to new record highs , damaging economic growth .\tNNS CC NNS VBP PRP VBP VBN IN JJ NN IN NNP NNP MD VB NNS TO JJ NN NNS , VBG JJ NN .\nThree more concerts have been planned for the Live 8 charity event - in Japan , Canada and South Africa .\tCD JJR NNS VBP VBN VBN IN DT NNP CD NN NN : IN NNP , NNP CC NNP NNP .\nRock star Bob Geldof , who is organizing the events , says the concerts in Tokyo and Toronto were arranged to put pressure on the Japanese and Canadian governments to increase aid to Africa .\tNNP NN NNP NNP , WP VBZ VBG DT NNS , VBZ DT NNS IN NNP CC NNP VBD VBN TO VB NN IN DT JJ CC JJ NNS TO VB NN TO NNP .\nHe said now that Europe has agreed to double its aid to Africa , the Americans , Japanese and Canadians have a chance to do so as well .\tPRP VBD RB IN NNP VBZ VBN TO VB PRP$ NN TO NNP , DT NNS , NNS CC NNS VBP DT NN TO VB RB RB RB .\nFor the concert in Johannesburg , Geldof said former president Nelson Mandela will open the event , as long as he is healthy enough .\tIN DT NN IN NNP , NNP VBD JJ NN NNP NNP MD VB DT NN , RB RB IN PRP VBZ JJ RB .\nConcerts also are planned in London , Paris , Rome , Berlin and Philadelphia - all on July 2 .\tNNS RB VBP VBN IN NNP , NNP , NNP , NNP CC NNP : DT IN NNP CD .\nThe goal is to persuade world leaders to increase assistance to Africa .\tDT NN VBZ TO VB NN NNS TO VB NN TO NNP .\nIran has denied allegations by an exiled opposition group that said Tehran has a secret nuclear weapons facility .\tNNP VBZ VBN NNS IN DT JJ NN NN WDT VBD NNP VBZ DT JJ JJ NNS NN .\nA top Iranian diplomat for nuclear affairs told reporters Thursday the site in question has nothing to do with nuclear activities .\tDT JJ JJ NN IN JJ NNS VBD NNS NNP DT NN IN NN VBZ DT TO VB IN JJ NNS .\nHe said Iran has no undeclared nuclear facilities .\tPRP VBD NNP VBZ DT JJ JJ NNS .\nOn Wednesday , the opposition National Council of Resistance of Iran alleged that Tehran has a secret uranium enrichment facility and has imported weapons-grade uranium and blueprints for a nuclear bomb .\tIN NNP , DT NN NNP NNP IN NNP IN NNP VBD IN NNP VBZ DT JJ NN NN NN CC VBZ VBN JJ NN CC NNS IN DT JJ NN .\nBut Tehran says its nuclear programs are strictly for electricity generation .\tCC NNP VBZ PRP$ JJ NNS VBP RB IN NN NN .\nA recent International Atomic Energy Agency report said Iran has not diverted nuclear materials to a weapons program , although it did not rule out the possibility of secret atomic activities .\tDT JJ NNP NNP NNP NNP NN VBD NNP VBZ RB VBN JJ NNS TO DT NNS NN , IN PRP VBD RB VB RP DT NN IN JJ JJ NNS .\nUkrainian authorities say Saturday 's scheduled signing of a controversial natural gas deal with Russia has been postponed until Wednesday , to allow officials to complete work on documents .\tJJ NNS VBP NNP POS VBN NN IN DT JJ JJ NN NN IN NNP VBZ VBN VBN IN NNP , TO VB NNS TO VB NN IN NNS .\nUnder the deal reached earlier this month after a three-day Russian suspension of deliveries , Ukraine agreed to buy gas from Russia at a rate of $ 95 per 1000 cubic meters , up from the previous rate of $ 50 .\tIN DT NN VBN RBR DT NN IN DT JJ JJ NN IN NNS , NNP VBD TO VB NN IN NNP IN DT NN IN $ CD IN CD JJ NNS , RB IN DT JJ NN IN $ CD .\nBut the agreement triggered a political crisis , and Ukraine 's parliament voted to dismiss the government of Prime Minister Yuriy Yekhanurov .\tCC DT NN VBD DT JJ NN , CC NNP POS NN VBD TO VB DT NN IN NNP NNP NNP NNP .\nLawmakers Thursday also endorsed the dismissal of Justice Minister Serhiy Holovaty and Fuel and Energy Minister Ivan Plachkov .\tNNS NNP RB VBD DT NN IN NNP NNP NNP NNP CC NNP CC NNP NNP NNP NNP .\nNews reports from Kiev say Mr. Plachkov may travel to Moscow Sunday for talks on gas supplies .\tNN NNS IN NNP VBP NNP NNP MD VB TO NNP NNP IN NNS IN NN NNS .\nTurkmen President Saparmurat Niyazov , whose country is also a leading supplier of natural gas to Ukraine , will also be in Moscow Sunday .\tJJ NNP NNP NNP , WP$ NN VBZ RB DT VBG NN IN JJ NN TO NNP , MD RB VB IN NNP NNP .\nIt is an anxious time for the families of several Western hostages being held in Iraq - they are awaiting news on the fate of their loved ones .\tPRP VBZ DT JJ NN IN DT NNS IN JJ JJ NNS VBG VBN IN NNP IN PRP VBP VBG NN IN DT NN IN PRP$ VBN NNS .\nOn Thursday , the Islamic Army in Iraq said it killed American security consultant Ronald Schulz .\tIN NNP , DT NNP NNP IN NNP VBD PRP VBD JJ NN NN NNP NNP .\nThe group promised to release photos of his murder , but there has been no evidence to corroborate its claim .\tDT NN VBD TO VB NNS IN PRP$ NN , CC EX VBZ VBN DT NN TO VB PRP$ NN .\nMeanwhile , the families of another American , a Briton and two Canadians continue to fear for their loved ones , as a Saturday deadline for their execution draws closer .\tRB , DT NNS IN DT NN , DT NN CC CD NNS VBP TO VB IN PRP$ VBN NNS , IN DT NNP NN IN PRP$ NN VBZ RBR .\nTheir captors have threatened to kill them unless all Iraqi prisoners are freed .\tPRP$ NNS VBP VBN TO VB PRP IN DT JJ NNS VBP VBN .\nAgainst this backdrop , Iraq is preparing for Thursday 's parliamentary election .\tIN DT NN , NNP VBZ VBG IN NNP POS JJ NN .\nVoters will choose a new 275-member national assembly to sit for a four-year term .\tNNS MD VB DT JJ JJ JJ NN TO VB IN DT JJ NN .\nNew fighting in the Somali capital , Mogadishu , has killed at least 11 people .\tJJ NN IN DT JJ NN , NNP , VBZ VBN IN JJS CD NNS .\nIn one incident , Islamist insurgents fired mortars at an African Union peacekeepers ' base Wednesday , prompting soldiers to respond .\tIN CD NN , NNP NNS VBD NNS IN DT NNP NNP NNS POS NN NNP , VBG NNS TO VB .\nWitnesses say at least seven civilians were killed and several others injured .\tNNS VBP IN JJS CD NNS VBD VBN CC JJ NNS VBN .\nIn another incident , a clash between police and government soldiers at the Mogadishu police academy killed at least four people , including three soldiers and one policeman .\tIN DT NN , DT NN IN NNS CC NN NNS IN DT NNP NN NN VBD IN JJS CD NNS , VBG CD NNS CC CD NN .\nReports say the clash began when police tried to take a gun from a solider .\tNNS VBP DT NN VBD WRB NNS VBD TO VB DT NN IN DT NN .\nMogadishu has endured years of violence since the fall of Somalia 's last stable government in 1991 .\tNNP VBZ VBN NNS IN NN IN DT NN IN NNP POS JJ JJ NN IN CD .\nThousands of residents have fled the city this week , ahead of an expected new round of fighting between the transitional government and the insurgents .\tNNS IN NNS VBP VBN DT NN DT NN , RB IN DT VBN JJ NN IN VBG IN DT JJ NN CC DT NNS .\nThe government has promised an offensive against the Islamists , who control large portions of the capital .\tDT NN VBZ VBN DT NN IN DT NNS , WP VBP JJ NNS IN DT NN .\nFrance has summoned the Israeli ambassador in Paris to demand an immediate end to the construction of Jewish settlements .\tNNP VBZ VBN DT JJ NN IN NNP TO VB DT JJ NN TO DT NN IN JJ NNS .\nA French Foreign Ministry spokesman , Eric Chevallier , says the ministry 's political director met with Israeli Ambassador Daniel Shek on Thursday and called for a halt to settlement building , including in east Jerusalem .\tDT JJ NNP NNP NN , NNP NNP , VBZ DT NN POS JJ NN VBD IN JJ NNP NNP NNP IN NNP CC VBD IN DT NN TO NN NN , VBG IN JJ NNP .\nEarlier this week , both the European Union and Russia called on Israel to halt plans to build some 20 new apartments in east Jerusalem 's Sheikh Jarrah neighborhood .\tRBR DT NN , CC DT NNP NNP CC NNP VBD IN NNP TO VB NNS TO VB DT CD JJ NNS IN JJ NNP POS NNP NNP NN .\nIsraeli Deputy Foreign Minister Danny Ayalon said Tuesday that Israel has the right to build anywhere in Jerusalem .\tJJ NNP NNP NNP NNP NNP VBD NNP IN NNP VBZ DT NN TO VB RB IN NNP .\nThe French Foreign Ministry on Thursday also urged Israel to reopen border crossings in the Gaza Strip , to allow reconstruction of the Palestinian territory following Israel 's offensive that ended in January .\tDT NNP NNP NNP IN NNP RB VBD NNP TO VB NN NNS IN DT NNP NNP , TO VB NN IN DT JJ NN VBG NNP POS NN WDT VBD IN NNP .\nFrench officials expressed concern about restrictions on the movements of French diplomats in the Palestinian territories due to Israeli security measures .\tJJ NNS VBD NN IN NNS IN DT NNS IN JJ NNS IN DT JJ NNS JJ TO JJ NN NNS .\nLeaders from the African Union are gathering in Sirte , Libya , for a two-day summit to focus on fighting poverty , disease and war on the continent .\tNNS IN DT NNP NNP VBP VBG IN NNP , NNP , IN DT JJ NN TO VB IN VBG NN , NN CC NN IN DT NN .\nThe leaders are expected to use the summit , which opens Monday , to pressure rich countries for more engagement in Africa .\tDT NNS VBP VBN TO VB DT NN , WDT VBZ NNP , TO VB JJ NNS IN JJR NN IN NNP .\nThis includes calls for debt cancellation as well as increased funding for AU peacekeeping missions .\tDT VBZ NNS IN NN NN RB RB IN VBN NN IN NNP VBG NNS .\nU.S. and European leaders say they hope the African summit will also include a strongly worded statement about Zimbabwe 's recent clampdown on shantytowns - a move that has left millions homeless .\tNNP CC JJ NNS VBP PRP VBP DT JJ NN MD RB VB DT RB VBN NN IN NNP POS JJ NN IN NNS IN DT NN WDT VBZ VBN NNS JJ .\nOn Saturday , AU foreign ministers proposed a reform plan that would give the continent two permanent seats on the United Nations Security Council , along with three non-permanent seats .\tIN NNP , NNP JJ NNS VBD DT NN NN WDT MD VB DT NN CD JJ NNS IN DT NNP NNP NNP NNP , IN IN CD JJ NNS .\nThe 15-member Security Council now has five permanent members -- a status that includes veto power ( for the United States , Britain , France , Russia and China ) .\tDT JJ NNP NNP RB VBZ CD JJ NNS IN DT NN WDT VBZ NN NN LRB IN DT NNP NNPS , NNP , NNP , NNP CC NNP RRB .\nTwo NATO soldiers have died in an explosion in southern Afghanistan .\tCD NNP NNS VBP VBN IN DT NN IN JJ NNP .\nNATO 's International Security Assistance Force released a statement Wednesday saying the soldiers were killed by an improvised explosive device .\tNNP POS NNP NNP NNP NNP VBD DT NN NNP VBG DT NNS VBD VBN IN DT JJ JJ NN .\nOfficials did not disclose the soldiers ' nationalities .\tNNS VBD RB VB DT NNS POS NNS .\nSeparately , NATO says coalition forces captured a Taliban sub-commander late Tuesday while searching a compound in Nangarhar province , east of Kabul .\tRB , NNP VBZ NN NNS VBD DT NNP NN RB NNP IN VBG DT NN IN NNP NN , NN IN NNP .\nAn ISAF statement says the unidentified sub-commander was involved in kidnappings , weapons purchases and spying on coalition forces .\tDT NNP NN VBZ DT JJ NN VBD VBN IN NNS , NNS NNS CC VBG IN NN NNS .\nISAF also says allied forces captured several other suspected militants in Helmand province late Tuesday .\tNNP RB VBZ JJ NNS VBN JJ JJ JJ NNS IN NNP NN RB NNP .\nPalestinian leader Mahmoud Abbas says he might resign if extremists block his program of peace negotiations with Israel after next week 's Palestinian parliamentary elections .\tJJ NN NNP NNP VBZ PRP MD VB IN NNS VBP PRP$ NN IN NN NNS IN NNP IN JJ NN POS JJ JJ NNS .\nSpeaking to reporters in the West Bank town of Ramallah Wednesday , Mr. Abbas also defended the inclusion in the election of the militant faction Hamas , which refuses to disarm and opposes peace talks with Israel .\tVBG TO NNS IN DT NNP NNP NN IN NNP NNP , NNP NNP RB VBD DT NN IN DT NN IN DT JJ NN NNP , WDT VBZ TO VB CC VBZ NN NNS IN NNP .\nHe expressed hope Hamas would moderate its views .\tPRP VBD NN NNP MD VB PRP$ NNS .\nMr. Abbas said he remains committed to peace talks , which he described as a ' political program , ' and that he would step down if unable to carry out the program .\tNNP NNP VBD PRP VBZ JJ TO NN NNS , WDT PRP VBD IN DT `` JJ NN , `` CC IN PRP MD VB RB IN JJ TO VB RP DT NN .\nHamas is expected to do well in the election .\tNNP VBZ VBN TO VB RB IN DT NN .\nIsrael says Palestinian gunmen must be disarmed before resumption of peace talks .\tNNP VBZ JJ NNS MD VB VBN IN NN IN NN NNS .\nBrazilian President Luiz Inacio Lula da Silva and his Venezuelan counterpart , Hugo Chavez , have signed a series of agreements in what they called a strategic alliance .\tJJ NNP NNP NNP NNP NNP NNP CC PRP$ JJ NN , NNP NNP , VBP VBN DT NN IN NNS IN WP PRP VBD DT JJ NN .\nThe two presidents met Monday in Caracas .\tDT CD NNS VBD NNP IN NNP .\nThey signed accords on cooperation in the areas of oil , construction , science and the military .\tPRP VBD NNS IN NN IN DT NNS IN NN , NN , NN CC DT NN .\nThe Associated Press quotes President Chavez as saying the meeting was a critical development for the countries ' integration .\tDT NNP NNP VBZ NNP NNP IN VBG DT NN VBD DT JJ NN IN DT NNS POS NN .\nDuring their meeting , the leaders were also to discuss the selling of Brazilian aircraft to Venezuela 's military .\tIN PRP$ NN , DT NNS VBD RB TO VB DT NN IN JJ NN TO NNP POS JJ .\nIs the leader of Coldplay icy to the press ? A Brazilian journalist claims Chris Martin is so rude that he feels sorry for his wife , actress Gwyneth Paltrow .\tVBZ DT NN IN NNP NN TO DT NN . DT JJ NN VBZ NNP NNP VBZ RB JJ IN PRP VBZ RB IN PRP$ NN , NN NNP NNP .\nA writer from Folha de Sao Paolo opined ' Gwyneth Paltrow must suffer .\tDT NN IN NNP NNP NNP NNP VBD `` NNP NNP MD VB .\nChris Martin , her husband , is n't one of the nicest persons on earth .\tNNP NNP , PRP$ NN , VBZ RB CD IN DT JJS NNS IN NN .\nAt least that 's what it seemed on the 20-minute press conference . '\tIN JJS DT VBZ WP PRP VBD IN DT JJ NN NN . ``\nWhile in Brazil , Chris Martin became testy when a reporter asked him if he were planning a duet with Gwyneth .\tIN IN NNP , NNP NNP VBD NN WRB DT NN VBD PRP IN PRP VBD VBG DT NN IN NNP .\nHe also complained that all that matters in today 's pop market is that one 's song becomes a ringtone .\tPRP RB VBD IN DT IN NNS IN NN POS NN NN VBZ IN NN POS NN VBZ DT NN .\nSweden 's Anja Paerson has won her second career World Cup downhill ski race by edging home favorite Michaela Dorfmeister by 0.04 seconds in Bad Kleinkirchheim , Austria ( 0.068171296 to 0.068217593 ) .\tNNP POS NNP NNP VBZ VBN PRP$ JJ NN NNP NNP NN NN NN IN VBG NN NN NNP NNP IN CD NNS IN NNP NNP , NNP LRB CD TO CD RRB .\nFraenzi Aufdenblatten of Sweden was a close third , only 0.08 seconds off the pace ( 0.068263889 ) .\tNNP NNP IN NNP VBD DT JJ NN , RB CD NNS IN DT NN LRB CD RRB .\nCroatian Janica Kostelic , the World Cup overall leader , missed the podium by a mere 0.01 seconds ( 0.068275463 ) .\tJJ NNP NNP , DT NNP NNP JJ NN , VBD DT NN IN DT JJ CD NNS LRB CD RRB .\nShe finished less than 0.1 seconds behind Paerson , her main rival for the World Cup overall title .\tPRP VBD JJR IN CD NNS IN NNP , PRP$ JJ NN IN DT NNP NNP JJ NN .\nLast season , Kostelic was second to Paerson overall by just three points .\tJJ NN , NNP VBD JJ TO NNP JJ IN RB CD NNS .\nSo far this season the Croatian skier has 782 points to the Swede 's 685 .\tRB RB DT NN DT JJ NN VBZ CD NNS TO DT NNP POS CD .\nAnother women 's downhill will be held Saturday at the same site , followed by a Super G on Sunday at the redesigned Franz Klammer slope , where the first World Cup is being staged since 1997 .\tDT NNS POS NN MD VB VBN NNP IN DT JJ NN , VBN IN DT NNP NNP IN NNP IN DT VBN NNP NNP NN , WRB DT JJ NNP NNP VBZ VBG VBN IN CD .\nThousands of fans waiting in line to enter a concert in South Korea have caused a stampede that killed 11 people and injured at least 60 .\tNNS IN NNS VBG IN NN TO VB DT NN IN NNP NNP VBP VBN DT NN WDT VBD CD NNS CC VBN IN JJS CD .\nThe victims were trampled Monday when a near-capacity crowd surged toward a gate at a stadium in the city of Sangju , 270 kilometers south of Seoul .\tDT NNS VBD VBN NNP WRB DT NN NN VBD IN DT NN IN DT NN IN DT NN IN NNP , CD NNS RB IN NNP .\nAmong the dead were several young boys and elderly women .\tIN DT NN VBD JJ JJ NNS CC JJ NNS .\nOfficials later canceled the concert of South Korean singers popular with older audiences .\tNNS RB VBD DT NN IN JJ JJ NNS JJ IN JJR NNS .\nIt was part of festivities for Korea 's National Founding Day , marking the legendary date of the country 's founding some 4000 years ago .\tPRP VBD NN IN NNS IN NNP POS NNP NNP NNP , VBG DT JJ NN IN DT NN POS NN DT CD NNS RB .\nLeftist former Mexico City Mayor Andres Manuel Lopez Obrador has kicked off his campaign for next year 's presidential election .\tJJ JJ NNP NNP NNP NNP NNP NNP NNP VBZ VBN RP PRP$ NN IN JJ NN POS JJ NN .\nMr. Lopez Obrador opened his campaign Thursday in the northern Baja , California city of La Paz .\tNNP NNP NNP VBD PRP$ NN NNP IN DT JJ NNP , NNP NN IN NNP NNP .\nHe pledged to spur the economy and fight poverty by closing the gap between the rich and poor .\tPRP VBD TO VB DT NN CC VB NN IN VBG DT NN IN DT JJ CC JJ .\nThe candidate also planned campaign stop in the northern border cities of Tijuana and Mexicali .\tDT NN RB VBD NN NN IN DT JJ NN NNS IN NNP CC NNP .\nThe popular 51-year-old leads public opinion polls ahead of the July , 2006 presidential race .\tDT JJ JJ NNS JJ NN NNS RB IN DT NNP , CD JJ NN .\nMuch of his popularity is in the capital , where he resigned as mayor two weeks ago to pursue the presidency .\tNN IN PRP$ NN VBZ IN DT NN , WRB PRP VBD IN NN CD NNS RB TO VB DT NN .\nPresident Vicente Fox is prevented from running for office again by Mexico 's constitution , which limits the presidency to a single six-year term .\tNNP NNP NNP VBZ VBN IN VBG IN NN RB IN NNP POS NN , WDT VBZ DT NN TO DT JJ JJ NN .\nAn outbreak of the deadly H5N1 strain of bird flu has killed at least four peacocks and one goose in the Pakistani capital , Islamabad .\tDT NN IN DT JJ NNP NN IN NN NN VBZ VBN IN JJS CD NNS CC CD NN IN DT JJ NN , NNP .\nA livestock official from the ministry of Food and Agriculture said test results confirmed the presence of H5N1 and that affected birds are being destroyed .\tDT NN NN IN DT NN IN NNP CC NNP VBD NN NNS VBD DT NN IN NNP CC IN JJ NNS VBP VBG VBN .\nOfficials have closed Islamabad 's Marghzar zoo where the outbreak occurred .\tNNS VBP VBN NNP POS NNP NN WRB DT NN VBD .\nThis is the fourth case of deadly bird flu detected in Pakistan .\tDT VBZ DT JJ NN IN JJ NN NN VBN IN NNP .\nNo human cases have been recorded .\tDT JJ NNS VBP VBN VBN .\nThe United Nations Food and Agriculture Organization ( FAO ) is warning the global fight against bird flu remains underfunded .\tDT NNP NNPS NNP CC NNP NNP LRB NNP RRB VBZ VBG DT JJ NN IN JJ NN VBZ JJ .\nFAO officials say some nations have made essential contributions , but tens of millions of dollars more than the nearly $ 20 million already given is urgently needed to prevent the spread of the virus .\tNNP NNS VBP DT NNS VBP VBN JJ NNS , CC NNS IN NNS IN NNS RBR IN DT RB $ CD CD RB VBN VBZ RB VBN TO VB DT NN IN DT NN .\nAustralia Monday says it will donate an additional 40,000 courses of the anti-viral medication Tamiflu to Indonesia .\tNNP NNP VBZ PRP MD VB DT JJ CD NNS IN DT JJ NN NNP TO NNP .\nAustralia 's foreign minister Alexander Downer said Indonesian authorities had been somewhat unprepared for the spread of bird flu , but they are getting better organized .\tNNP POS JJ NN NNP NNP VBD JJ NNS VBD VBN RB JJ IN DT NN IN NN NN , CC PRP VBP VBG RBR VBN .\nMeanwhile , doctors in Jakarta today said initial tests suggest a 27-year-old Indonesian woman has died of bird flu .\tRB , NNS IN NNP NN VBD JJ NNS VBP DT JJ JJ NN VBZ VBN IN NN NN .\nBird flu has killed more than 60 people in Southeast Asia since 2003 .\tNN NN VBZ VBN JJR IN CD NNS IN NNP NNP IN CD .\nSecurity officials in Iraq say at least three Iraqi policemen have been killed and seven others wounded in a roadside bomb attack in the northern city of Kirkuk .\tNN NNS IN NNP VBP IN JJS CD JJ NNS VBP VBN VBN CC CD NNS VBN IN DT NN NN NN IN DT JJ NN IN NNP .\nAuthorities say the attack occurred Saturday as police took part in a funeral procession for a comrade killed by insurgents on Friday .\tNNS VBP DT NN VBD NNP IN NNS VBD NN IN DT JJ NN IN DT NN VBN IN NNS IN NNP .\nInsurgents have killed hundreds of policemen in a bloody campaign to topple Iraq 's U.S.-backed government .\tNNS VBP VBN NNS IN NNS IN DT JJ NN TO VB NNP POS JJ NN .\nSaturday 's attack came on the second anniversary of the beginning of the war in Iraq .\tNNP POS NN VBD IN DT JJ NN IN DT NN IN DT NN IN NNP .\nU.S. Defense Secretary Donald Rumsfeld told Pentagon workers Friday that Iraq has made remarkable changes since U.S.-led forces invaded the country to topple Saddam Hussein .\tNNP NNP NNP NNP NNP VBD NNP NNS NNP IN NNP VBZ VBN JJ NNS IN JJ NNS VBD DT NN TO VB NNP NNP .\nSome infromation for this report provided by AP , AFP and Reuters .\tDT NN IN DT NN VBN IN NNP , NNP CC NNP .\nAt least 16 people were killed and an unknown number are still trapped in a residential building that collapsed in Lagos , Nigerla late Tuesday .\tIN JJS CD NNS VBD VBN CC DT JJ NN VBP RB VBN IN DT JJ NN WDT VBD IN NNP , NNP JJ NNP .\nThe four-story apartment building collapsed in the evening after many occupants had returned home from work .\tDT JJ NN NN VBD IN DT NN IN JJ NNS VBD VBN NN IN NN .\nRescuers saved at least 36 people from the rubble , many of them injured .\tNNS VBD IN JJS CD NNS IN DT NN , NN IN PRP VBN .\nThe Associated Press says authorities are blaming poor construction as the likely cause of the collapse .\tDT NNP NNP VBZ NNS VBP VBG JJ NN IN DT JJ NN IN DT NN .\nPoor construction has been blamed for previous collapses in Lagos , including the fall of an 18-story building in March that killed two people and injured 24 .\tJJ NN VBZ VBN VBN IN JJ NNS IN NNP , VBG DT NN IN DT JJ NN IN NNP WDT VBD CD NNS CC VBN CD .\nInitial sales reports from U.S. retailers have been mixed at the beginning of the important Christmas holiday shopping season .\tJJ NNS NNS IN NNP NNS VBP VBN VBN IN DT NN IN DT JJ NNP NN NN NN .\nA national shopping research group , ShopperTrak RCT corp. , reported Friday 's total sales at $ 8 billion , down about 0.9 percent from last year .\tDT JJ NN NN NN , NNP NNP NNP , VBD NNP POS JJ NNS IN $ CD CD , RB IN CD NN IN JJ NN .\nSales had been projected to rise by about four percent .\tNNS VBD VBN VBN TO VB IN IN CD NN .\nRetailers rely on the first few days after the Thanksgiving holiday as a key time to boost overall sales for the year .\tNNS VBP IN DT JJ JJ NNS IN DT NNP NN IN DT JJ NN TO VB JJ NNS IN DT NN .\nThey offer deep discounts and special deals to draw consumers shopping for presents for the annual gift-giving season .\tPRP VBP JJ NNS CC JJ NNS TO VB NNS NN IN NNS IN DT JJ NN NN .\nSales figures were not down for all U.S. retailers .\tNNS NNS VBD RB RB IN DT NNP NNS .\nDiscount store chain Wal-Mart reported sales for the month of November were up 4.3 percent from last year .\tNNP NN NN NNP VBD NNS IN DT NN IN NNP VBD IN CD NN IN JJ NN .\nAnalysts examine store receipts at this time of year for clues about the overall strength of the US economy .\tNNS VB NN NNS IN DT NN IN NN IN NNS IN DT JJ NN IN DT NNP NN .\nPolice in Istanbul , Turkey have arrested four men suspected of having links to al-Qaida .\tNNS IN NNP , NNP VBP VBN CD NNS VBN IN VBG NNS TO NNP .\nPolice say they made the arrests in a low income area of the city and found small arms and documents on bomb-making in the men 's homes .\tNNS VBP PRP VBD DT NNS IN DT JJ NN NN IN DT NN CC VBD JJ NNS CC NNS IN NN IN DT NNS POS NNS .\nPolice say the men may have been planning bomb attacks .\tNNS VBP DT NNS MD VB VBN VBG NN NNS .\nSecurity sources say the men were first spotted chanting slogans and hanging banners in support of al-Qaida in Iraq chief Abu Musab al-Zarqawi , shortly after U.S. forces killed him in June .\tNN NNS VBP DT NNS VBD JJ JJ NN NNS CC VBG NNS IN NN IN NNP IN NNP NN NNP NNP NNP , RB IN NNP NNS VBD PRP IN NNP .\nThe International Atomic Energy Agency says Iran has failed to meet a United Nations Security Council deadline for suspending uranium enrichment .\tDT NNP NNP NNP NNP VBZ NNP VBZ VBN TO VB DT NNP NNP NNP NNP NN IN VBG NN NN .\nThat assessment came in an IAEA report delivered to the U.N. Security Council Friday .\tDT NN VBD IN DT NNP NN VBN TO DT NNP NNP NNP NNP .\nOn Thursday , U.S. Ambassador John Bolton said the United States is seeking a legally binding U.N. resolution to demand that Iran halt the enrichment .\tIN NNP , NNP NNP NNP NNP VBD DT NNP NNPS VBZ VBG DT RB JJ NNP NN TO VB IN NNP VBP DT NN .\nThe so-called Chapter Seven resolution would clear the way for possible penalties against Iran , and would leave the door open to possible future military action .\tDT JJ NN CD NN MD VB DT NN IN JJ NNS IN NNP , CC MD VB DT NN JJ TO JJ JJ JJ NN .\nBut China and Russia , who also are veto-wielding members of the Security Council , oppose sanctions against Iran .\tCC NNP CC NNP , WP RB VBP JJ NNS IN DT NNP NNP , VBP NNS IN NNP .\nDespite the international pressure , Iran remains defiant about its nuclear program , which it says is for peaceful purposes .\tIN DT JJ NN , NNP VBZ JJ IN PRP$ JJ NN , WDT PRP VBZ VBZ IN JJ NNS .\nThe United States accuses Tehran of seeking nuclear weapons .\tDT NNP NNPS VBZ NNP IN VBG JJ NNS .\nIranian President Mahmoud Ahmadinejad was quoted as saying Iran does not ' give a damn ' about Security Council resolutions .\tJJ NNP NNP NNP VBD VBN IN VBG NNP VBZ RB `` VB DT NN `` IN NNP NNP NNS .\nThe United Nations children 's fund , UNICEF , has appealed for an initial $ 20 million to provide emergency relief to children and families affected by the Pakistan earthquake .\tDT NNP NNP NNS POS NN , NNP , VBZ VBN IN DT JJ $ CD CD TO VB NN NN TO NNS CC NNS VBN IN DT NNP NN .\nThe agency says that almost one in every five people in the affected area is a child under the age five , and nearly half are younger than 18 .\tDT NN VBZ IN RB CD IN DT CD NNS IN DT JJ NN VBZ DT NN IN DT NN CD , CC RB NN VBP JJR IN CD .\nMany of the victims were schoolchildren just starting the day 's lessons when the quake struck .\tNN IN DT NNS VBD VBN RB VBG DT NN POS NNS WRB DT NN VBD .\nUNICEF 's Executive Director Ann M. Veneman says the appeal means immediate action to save children 's lives .\tNNP POS NNP NNP NNP NNP NNP VBZ DT NN VBZ JJ NN TO VB NNS POS NNS .\nShe said needed assistance includes medical care , clean water , nutritional food for infants , clothing and shelter .\tPRP VBD JJ NN VBZ JJ NN , JJ NN , JJ NN IN NNS , NN CC NN .\nUNICEF says it has begun moving additional staff and supplies into Pakistan from its regional offices .\tNNP VBZ PRP VBZ VBN VBG JJ NN CC NNS IN NNP IN PRP$ JJ NNS .\nIt says that , in addition , it is providing logistics and supplies for the frontline Pakistani surgical teams being dropped by helicopters into the most remote areas .\tPRP VBZ IN , IN NN , PRP VBZ VBG NNS CC NNS IN DT NN JJ JJ NNS VBG VBN IN NNS IN DT RBS JJ NNS .\nTurkish police say one person was killed in a marketplace blast Saturday in the western port city of Izmir .\tJJ NNS VBP CD NN VBD VBN IN DT NN NN NNP IN DT JJ JJ NN IN NNP .\nOfficials say 14 others were wounded in the early morning blast .\tNNS VBP CD NNS VBD VBN IN DT JJ NN NN .\nAuthorities say the homemade bomb was in a bag on a bicycle , and exploded as vendors were preparing their stalls for the day .\tNNS VBP DT JJ NN VBD IN DT NN IN DT NN , CC VBD IN NNS VBD VBG PRP$ NNS IN DT NN .\nThe blast comes one day before a planned massive demonstration in Izmir to support Turkey 's secular system .\tDT NN VBZ CD NN IN DT JJ JJ NN IN NNP TO VB NNP POS JJ NN .\nSecularists say the government wants to undermine the country 's strict separation of state and religion .\tNNS VBP DT NN VBZ TO VB DT NN POS JJ NN IN NN CC NN .\nIt is not clear who was responsible for the blast , which shattered windows in homes and cars .\tPRP VBZ RB JJ WP VBD JJ IN DT NN , WDT VBD NNS IN NNS CC NNS .\nKurdish militants , leftists and radical Islamic groups have carried out bombings in Turkey in the past .\tNNP NNS , NNS CC JJ JJ NNS VBP VBN RP NNS IN NNP IN DT NN .\nSomali gunmen who hijacked a ship carrying food aid for tsunami victims have let it dock near the capital , Mogadishu , two months after the vessel 's capture .\tJJ NNS WP VBD DT NN VBG NN NN IN NN NNS VBP VBN PRP NN IN DT NN , NNP , CD NNS IN DT NN POS NN .\nA U.N. World Food Program spokeswoman confirmed Monday that the U.N.-chartered ship had arrived at El-Maan .\tDT NNP NNP NNP NNP NN VBD NNP IN DT JJ NN VBD VBN IN NNP .\nThe WFP had negotiated with El-Maan port authorities to ensure a free passage of the food aid to Somalia 's transitional government for distribution .\tDT NNP VBD VBN IN JJ NN NNS TO VB DT JJ NN IN DT NN NN TO NNP POS JJ NN IN NN .\nHowever some reports cast doubt over whether the gunmen , who are still aboard the ship , will allow the cargo to be handed over to Somali officials .\tRB DT NNS VBD NN IN IN DT NNS , WP VBP RB IN DT NN , MD VB DT NN TO VB VBN IN TO JJ NNS .\nThe ship and its 10-member crew were hijacked as it sailed from Kenya to Somalia in June .\tDT NN CC PRP$ JJ NN VBD VBN IN PRP VBD IN NNP TO NNP IN NNP .\nThe WFP had hired the Kenyan vessel to carry 850 metric tons of rice donated by Japan and Germany .\tDT NNP VBD VBN DT JJ NN TO VB CD JJ NNS IN NN VBN IN NNP CC NNP .\nA private Afghan television station has aired a video of an Italian aid worker kidnapped two weeks ago in Kabul .\tDT JJ JJ NN NN VBZ VBN DT NN IN DT JJ NN NN VBN CD NNS RB IN NNP .\nThe video footage , first aired by Tolo TV station Sunday , shows Clementina Cantoni wrapped in a blanket , sitting between two men pointing assault rifles at her head .\tDT NN NN , RB VBN IN NNP NNP NN NNP , VBZ NNP NNP VBN IN DT NN , VBG IN CD NNS VBG NN NNS IN PRP$ NN .\nMs. Cantoni , who works for CARE International , spoke quietly on the recording and looked nervous .\tNNP NNP , WP VBZ IN NNP NNP , VBD RB IN DT NN CC VBD JJ .\nThe TV station did not say how it had obtained the tape .\tDT NN NN VBD RB VB WRB PRP VBD VBN DT NN .\nThe Italian government called the video reassuring because it shows that Ms. Cantoni is in good health .\tDT JJ NN VBD DT NN NN IN PRP VBZ IN NNP NNP VBZ IN JJ NN .\nWithout elaborating , a spokesman said ' contacts are continuing . '\tIN VBG , DT NN VBD `` NNS VBP VBG . ``\nOn Friday , Afghan religious leaders issued a fatwa , or religious decree , pledging death to anyone killing a foreigner who is in the country legally .\tIN NNP , JJ JJ NNS VBD DT NN , CC JJ NN , VBG NN TO DT VBG DT NN WP VBZ IN DT NN RB .\nAfghan officials say a clash between security forces and suspected Taleban militants in eastern Nangarhar province bordering Pakistan has left two militants and one woman dead .\tJJ NNS VBP DT NN IN NN NNS CC VBN NNP NNS IN JJ NNP NN VBG NNP VBZ VBN CD NNS CC CD NN NN .\nThe officials say heavy fighting between the troops and the insurgents hiding in a building in the province 's Chaparhar district began late Wednesday and lasted for hours .\tDT NNS VBP JJ NN IN DT NNS CC DT NNS VBG IN DT NN IN DT NN POS NNP NN VBD JJ NNP CC VBD IN NNS .\nSeveral suspected Taleban appeared to have fled .\tJJ JJ NNP VBD TO VB VBN .\nAuthorities say U.S. troops supported local forces .\tNNS VBP NNP NNS VBD JJ NNS .\nBut U.S. military officials could not confirm the incident .\tCC NNP JJ NNS MD RB VB DT NN .\nThe clash is the latest rebel violence to hit southern and eastern provinces .\tDT NN VBZ DT JJS NN NN TO VB JJ CC JJ NNS .\nU.S.-led forces ousted the Taleban from power in late 2001 , after they refused to hand over al-Qaida leader Osama bin Laden following the September 11 attacks on the United States .\tJJ NNS VBD DT NNP IN NN IN JJ CD , IN PRP VBD TO VB RP NNP NN NNP NNP NNP VBG DT NNP CD NNS IN DT NNP NNPS .\nIran says it has allowed U.N. nuclear inspectors to visit a high-security military site to counter U.S. accusations it is secretly developing nuclear weapons .\tNNP VBZ PRP VBZ VBN NNP JJ NNS TO VB DT JJ JJ NN TO VB NNP NNS PRP VBZ RB VBG JJ NNS .\nForeign Ministry spokesman Hamid Reza Asefi told reporters Sunday that International Atomic Energy Agency ( IAEA ) inspectors were recently given access to the Parchin military complex , 30 kilometers southeast of Tehran .\tNNP NNP NN NNP NNP NNP VBD NNS NNP IN NNP NNP NNP NNP LRB NNP RRB NNS VBD RB VBN NN TO DT NNP JJ NN , CD NNS NN IN NNP .\nThe inspectors arrived in Iran on October 28 for a weeklong visit .\tDT NNS VBD IN NNP IN NNP CD IN DT JJ NN .\nThe inspection followed repeated IAEA efforts to return to Parchin to again check for radioactivity in buildings and other areas within the sprawling military complex .\tDT NN VBD VBN NNP NNS TO VB TO VB TO RB VB IN NN IN NNS CC JJ NNS IN DT VBG JJ NN .\nA previous inspection was conducted last January .\tDT JJ NN VBD VBN JJ NNP .\nMeanwhile , Iranian officials said Tehran was in talks with Russia about joint production of nuclear fuel in Iran .\tRB , JJ NNS VBD NNP VBD IN NNS IN NNP IN JJ NN IN JJ NN IN NNP .\nThe officials said allowing foreign partners would help assure the international community of the peaceful nature of Iran 's nuclear program .\tDT NNS VBD VBG JJ NNS MD VB VB DT JJ NN IN DT JJ NN IN NNP POS JJ NN .\nThree U.S. companies are being sued for selling material to the former Iraqi government of Saddam Hussein used in his chemical weapon attacks against Iraqi Kurds .\tCD NNP NNS VBP VBG VBN IN VBG NN TO DT JJ JJ NN IN NNP NNP VBD IN PRP$ NN NN NNS IN JJ NNPS .\nFive Iraqi expatriates filed a class action lawsuit this week in the U.S. state of Maryland , accusing the companies of violating the Geneva Conventions in connection with the attacks .\tCD JJ NNS VBD DT NN NN NN DT NN IN DT NNP NN IN NNP , VBG DT NNS IN VBG DT NNP NNS IN NN IN DT NNS .\nThe Republic of Iraq is also named in the suit .\tDT NNP IN NNP VBZ RB VBN IN DT NN .\nSaddam 's government used various chemical weapons in the anti-Kurd Anfal campaign in the late 1980s .\tNNP POS NN VBD JJ NN NNS IN DT JJ NNP NN IN DT JJ NNS .\nAt a ceremony last month honoring victims in Halabja , one of the most infamous attacks , Iraq 's environment minister Narim Osman told VOA Kurdish Service foreign companies should be put on trial for their role in the killings .\tIN DT NN JJ NN VBG NNS IN NNP , CD IN DT RBS JJ NNS , NNP POS NN NN NNP NNP VBD NNP NNP NNP JJ NNS MD VB VBN IN NN IN PRP$ NN IN DT NNS .\nThe companies being sued are Alcolac , VWR International , and Thermo Fisher Scientific .\tDT NNS VBG VBN VBP NNP , NNP NNP , CC NNP NNP NNP .\nChina 's official news agency reports that rescuers in the southeast of the country have recovered 50 bodies from a police academy hit by a typhoon-triggered landslide .\tNNP POS JJ NN NN VBZ IN NNS IN DT NN IN DT NN VBP VBN CD NNS IN DT NN NN VBN IN DT JJ NN .\nXinhua says some 7,000 soldiers are still searching for 36 people who remain missing .\tNNP VBZ DT CD NNS VBP RB VBG IN CD NNS WP VBP JJ .\nOfficials said heavy rains from Typhoon Longwang on Sunday caused flooding and landslides in the Fujian province capital city , washing away two training school barracks that housed police recruits .\tNNS VBD JJ NNS IN NNP NNP IN NNP VBD NN CC NNS IN DT JJ NN NN NN , VBG RB CD NN NN NNS WDT VBD NN NNS .\nIn a separate development , Xinhua says authorities have evacuated about 13,000 people from their homes in central China along a tributary of the Yangtze River .\tIN DT JJ NN , NNP VBZ NNS VBP VBN IN CD NNS IN PRP$ NNS IN JJ NNP IN DT NN IN DT NNP NNP .\nIt says heavy rains in Hubei province have cut off several roads , and more rain is expected in the next two days .\tPRP VBZ JJ NNS IN NNP NN VBP VBN RP JJ NNS , CC JJR NN VBZ VBN IN DT JJ CD NNS .\nCrude oil prices surged above $ 50 a barrel in New York on Tuesday , amid cold weather , a falling dollar , and uncertainty about oil supplies .\tJJ NN NNS VBD IN $ CD DT NN IN NNP NNP IN NNP , IN JJ NN , DT VBG NN , CC NN IN NN NNS .\nThe Bloomberg financial news service says crude oil for March delivery rose nearly $ 2 to hit $ 50.05 a barrel in late morning trading .\tDT NNP JJ NN NN VBZ JJ NN IN NNP NN VBD RB $ CD TO VB $ CD DT NN IN JJ NN NN .\nAnalysts said colder-than-normal weather in key heating oil markets in Europe and the United States was one factor in boosting both demand and prices .\tNNS VBD JJ NN IN JJ NN NN NNS IN NNP CC DT NNP NNPS VBD CD NN IN VBG DT NN CC NNS .\nThey also said traders are concerned that the Organization of Petroleum Exporting Countries might cut production quotas further at a meeting next month .\tPRP RB VBD NNS VBP VBN IN DT NNP IN NNP NNP NNPS MD VB NN NNS RB IN DT NN JJ NN .\nThe declining value of the U.S. dollar also played a role in boosting prices because international oil transactions are generally priced in dollars .\tDT VBG NN IN DT NNP NN RB VBD DT NN IN VBG NNS IN JJ NN NNS VBP RB VBN IN NNS .\nJordan 's national security advisor and 10 other top officials have resigned , following last week 's suicide bombings at three hotels in Amman .\tNNP POS JJ NN NN CC CD JJ JJ NNS VBP VBN , VBG JJ NN POS NN NNS IN CD NNS IN NNP .\nState media reported Tuesday that Jordan 's ambassador to Israel , Maruf Bakhit , would replace Saad Kheir as the security chief .\tNNP NNS VBD NNP IN NNP POS NN TO NNP , NNP NNP , MD VB NNP NNP IN DT NN NN .\nRoyal Court chief Faisal Fayez also stepped down , and officials said Salim al-Turk would replace him .\tNNP NNP NN NNP NNP RB VBD RB , CC NNS VBD NNP NNP MD VB PRP .\nNo reasons were given for the resignations .\tDT NNS VBD VBN IN DT NNS .\nAlso Tuesday , officials reported that a fourth American died from injuries suffered in the attacks , raising the death toll to 58 people .\tRB NNP , NNS VBD IN DT JJ NNP VBD IN NNS VBN IN DT NNS , VBG DT NN NN TO CD NNS .\nJordan 's Interior Ministry says it is pressing for quick approval of tougher anti-terrorism laws to prevent future attacks .\tNNP POS NNP NNP VBZ PRP VBZ VBG IN JJ NN IN JJR NN NNS TO VB JJ NNS .\nAl-Qaida in Iraq has claimed responsibility for the blasts carried out by three bombers .\tNNP IN NNP VBZ VBN NN IN DT NNS VBN RP IN CD NNS .\nOfficials have arrested an Iraqi woman whose suicide vest failed to detonate in the attacks .\tNNS VBP VBN DT JJ NN WP$ NN NN VBD TO VB IN DT NNS .\nThe European Union Naval Force says Somali pirates have hijacked a Panamanian-flagged cargo ship in the Gulf of Aden .\tDT NNP NNP NNP NNP VBZ JJ NNS VBP VBN DT JJ NN NN IN DT NNP IN NNP .\nThe European Union 's anti-piracy force said the MV Suez vessel was captured early Monday .\tDT NNP NNP POS JJ NN VBD DT NNP NNP NN VBD VBN RB NNP .\nThe ship has a 23-member crew from Egypt , Pakistan , Sri Lanka and India .\tDT NN VBZ DT JJ NN IN NNP , NNP , NNP NNP CC NNP .\nThe EU force said the ship 's crew called for help when the vessel came under attack by gunfire , but by the time a naval helicopter arrived , the pirates had seized control .\tDT NNP NN VBD DT NN POS NN VBD IN NN WRB DT NN VBD IN NN IN NN , CC IN DT NN DT JJ NN VBD , DT NNS VBD VBN NN .\nPirates have hijacked dozens of ships over the last few years , taking in tens of millions of dollars in ransom payments from ship owners .\tNNS VBP VBN NNS IN NNS IN DT JJ JJ NNS , VBG IN NNS IN NNS IN NNS IN NN NNS IN NN NNS .\nHijackings have continued this year despite patrols off Somalia 's coast by warships from the United States , European Union , NATO and China .\tNNS VBP VBN DT NN IN NNS IN NNP POS NN IN NNS IN DT NNP NNPS , NNP NNP , NNP CC NNP .\nSomalia 's central government , fighting an Islamist insurgency , lacks the power and resources to combat piracy .\tNNP POS JJ NN , VBG DT NN NN , VBZ DT NN CC NNS TO VB NN .\nPakistani officials say a bomb explosion ripped through a mosque in northwest Pakistan killing 11 people as they gathered for Friday prayers .\tJJ NNS VBP DT NN NN VBD IN DT NN IN JJ NNP VBG CD NNS IN PRP VBD IN NNP NNS .\nThe blast targeted a mosque located next to local police headquarters in the Lower Dir region .\tDT NN VBD DT NN VBN JJ TO JJ NN NN IN DT NNP NNP NN .\nHospital officials say at least 28 people were wounded in the bombing , including several children .\tNN NNS VBP IN JJS CD NNS VBD VBN IN DT NN , VBG JJ NNS .\nLower Dir lies next to Swat Valley , the site of a fierce military offensive earlier this year to the oust the Taliban .\tNNP NNP VBZ JJ TO NNP NNP , DT NN IN DT JJ JJ NN RBR DT NN TO DT VB DT NNP .\nMilitants have since retaliated with a series of attacks targeting security forces in the area .\tNNS VBP IN VBN IN DT NN IN NNS VBG NN NNS IN DT NN .\nIn other violence , Pakistani intelligence officials say a suspected U.S. drone attack has killed three militants in the country 's northwest .\tIN JJ NN , JJ NN NNS VBP DT JJ NNP NN NN VBZ VBN CD NNS IN DT NN POS NN .\nOfficials say the drone fired missiles at a house in North Waziristan Friday , killing three militants and wounding two others .\tNNS VBP DT NN VBD NNS IN DT NN IN NNP NNP NNP , VBG CD NNS CC VBG CD NNS .\nThe attack , was the third by a suspected U.S. drone since Thursday .\tDT NN , VBD DT JJ IN DT JJ NNP NN IN NNP .\nAn Iranian exile group says Iran has built an extensive underground tunnel network to hide a secret nuclear weapons program .\tDT JJ NN NN VBZ NNP VBZ VBN DT JJ JJ NN NN TO VB DT JJ JJ NNS NN .\nThe National Council of Resistance of Iran ( NCRI ) says 14 tunnels house nuclear equipment , research workshops , and command centers across Iran .\tDT NNP NNP IN NNP IN NNP LRB NNP RRB VBZ CD NNS NN JJ NN , NN NNS , CC NN NNS IN NNP .\nThe group , which the United States has designated a terrorist organization , urged the International Atomic Energy Agency ( IAEA ) to take action .\tDT NN , WDT DT NNP NNPS VBZ VBN DT JJ NN , VBD DT NNP NNP NNP NNP LRB NNP RRB TO VB NN .\nNCRI officials spoke to reporters in London about the tunnels Tuesday , one day before Britain , France and Germany hold new talks with Iran on its nuclear program .\tNNP NNS VBD TO NNS IN NNP IN DT NNS NNP , CD NN IN NNP , NNP CC NNP VBP JJ NNS IN NNP IN PRP$ JJ NN .\nEuropean officials say the talks in Vienna will be ' talks about the talks . '\tJJ NNS VBP DT NNS IN NNP MD VB `` NNS IN DT NNS . ``\nEuropean nations have been pressing Iran to abandon its nuclear-fuel program .\tJJ NNS VBP VBN VBG NNP TO VB PRP$ JJ NN .\nThe United States accuses Iran of secretly trying to develop a nuclear bomb , charges Tehran denies .\tDT NNP NNPS VBZ NNP IN RB VBG TO VB DT JJ NN , NNS NNP VBZ .\nEgypt 's Health Ministry says an 18-month-old boy has contracted the bird flu virus - the 55th such case since the first outbreak of the disease in the country in 2006 .\tNNP POS NNP NNP VBZ DT JJ NN VBZ VBN DT NN NN NN IN DT JJ JJ NN IN DT JJ NN IN DT NN IN DT NN IN CD .\nEgyptian media say the boy , from the central province of Minia , first showed symptoms on Friday after coming into contact with dead birds .\tJJ NNS VBP DT NN , IN DT JJ NN IN NNP , RB VBD NNS IN NNP IN VBG IN NN IN JJ NNS .\nHe was taken to a hospital on Saturday and is in stable condition .\tPRP VBD VBN TO DT NN IN NNP CC VBZ IN JJ NN .\nThe avian virus normally passes from bird to bird and occasionally to humans .\tDT JJ NN RB VBZ IN NN TO NN CC RB TO NNS .\nBut experts fear a mutation of the virus could begin spreading from one human to another and start a pandemic that could kill millions .\tCC NNS VBP DT NN IN DT NN MD VB VBG IN CD JJ TO DT CC VB DT NN WDT MD VB NNS .\nThe World Health Organization says the H5N1 strain of the virus has killed 248 people since it resurfaced in Asia in 2003 .\tDT NNP NNP NNP VBZ DT NNP NN IN DT NN VBZ VBN CD NNS IN PRP VBD IN NNP IN CD .\nA group of about 150 South Koreans has arrived in the North Korean capital of Pyongyang to take part in a half marathon race aimed at promoting reconciliation between the two Koreas .\tDT NN IN IN CD NNP NNS VBZ VBN IN DT JJ JJ NN IN NNP TO VB NN IN DT NN NN NN VBN IN VBG NN IN DT CD NNS .\nThe South Korean runners arrived Wednesday and will join North Korean runners for Thursday 's 22-kilometer race through Pyongyang .\tDT JJ JJ NNS VBD NNP CC MD VB JJ JJ NNS IN NNP POS JJ NN IN NNP .\nThis first-ever jointly organized half marathon is being held to commemorate the 60th anniversary of Korea 's liberation from Japan .\tDT JJ RB JJ NN NN VBZ VBG VBN TO VB DT JJ NN IN NNP POS NN IN NNP .\nAfter the race , the South Korean runners will take a two-day tour of historical sights and other attractions in Pyongyang .\tIN DT NN , DT JJ JJ NNS MD VB DT JJ NN IN JJ NNS CC JJ NNS IN NNP .\nThey will return home on Saturday .\tPRP MD VB NN IN NNP .\nThe event is the latest in a series of social , sports and cultural exchanges between the two Koreas since 2000 .\tDT NN VBZ DT JJS IN DT NN IN JJ , NNS CC JJ NNS IN DT CD NNP IN CD .\nMembers of the U.S. Congress have questioned top oil company executives about record-high oil and gasoline prices , record-high profits , and billions of dollars in tax breaks that help the companies .\tNNS IN DT NNP NNP VBP VBN JJ NN NN NNS IN JJ NN CC NN NNS , JJ NNS , CC NNS IN NNS IN NN NNS WDT VBP DT NNS .\nThe hearing before the House Select Committee on Energy Independence and Global Warming convened Tuesday as gasoline prices hit an average price of 86 cents a liter ( $ 3.29 a gallon ) across the United States .\tDT NN IN DT NNP NNP NNP IN NNP NNP CC NNP NNP VBD NNP IN NN NNS VBD DT JJ NN IN CD NNS DT NN LRB $ CD DT NN RRB IN DT NNP NNPS .\nThe top companies together cleared $ 123 billion in profits last year , with Exxon reaping about one-third of that .\tDT JJ NNS RB VBD $ CD CD IN NNS JJ NN , IN NNP VBG IN NN IN DT .\nMajority Democrats asked why such profitable companies need $ 18 billion in tax breaks , and why they do not invest more money in renewable energy sources , such as wind or solar .\tNNP NNPS VBD WRB JJ JJ NNS VBP $ CD CD IN NN NNS , CC WRB PRP VBP RB VB JJR NN IN JJ NN NNS , JJ IN NN CC JJ .\nThe executives say their profits are reasonable considering the huge size of their companies .\tDT NNS VBP PRP$ NNS VBP JJ VBG DT JJ NN IN PRP$ NNS .\nThey also argue that ending tax breaks will just make soaring oil costs hit consumers even harder .\tPRP RB VBP IN VBG NN NNS MD RB VB VBG NN NNS VBD NNS RB RBR .\nA group of American civil rights lawyers and four Iraqi citizens have filed a criminal complaint in Germany calling for an investigation into top U.S. officials over the Iraqi prisoner abuse scandal .\tDT NN IN JJ JJ NNS NNS CC CD JJ NNS VBP VBN DT JJ NN IN NNP VBG IN DT NN IN JJ NNP NNS IN DT JJ NN NN NN .\nThe Center for Constitutional Rights filed the complaint Tuesday with the German Federal Prosecutor 's office , under the doctrine of ' universal jurisdiction ' of alleged war criminals .\tDT NNP IN NNP NNP VBD DT NN NNP IN DT JJ NNP NNP POS NN , IN DT NN IN `` JJ NN `` IN JJ NN NNS .\nA statement from the group asks the German prosecutor to meet ' obligations ' under law to investigate allegations of torture and war crimes .\tDT NN IN DT NN VBZ DT JJ NN TO VB `` NNS `` IN NN TO VB NNS IN NN CC NN NNS .\nThe statement alleges the four Iraqis were subject to beatings and sexual abuse while in U.S. detention at Baghdad 's Abu Ghraib prison .\tDT NN VBZ DT CD NNS VBD JJ TO NNS CC JJ NN IN IN NNP NN IN NNP POS NNP NNP NN .\nThe complaint calls for an investigation into top U.S. officials , including Defense Secretary Donald Rumsfeld , former CIA Director George Tenet and the former commander of U.S. forces in Iraq , Lieutenant General Ricardo Sanchez .\tDT NN VBZ IN DT NN IN JJ NNP NNS , VBG NNP NNP NNP NNP , JJ NNP NNP NNP NNP CC DT JJ NN IN NNP NNS IN NNP , NNP NNP NNP NNP .\nThe attorneys say U.S. investigations into the abuse have not gone far enough .\tDT NNS VBP NNP NNS IN DT NN VBP RB VBN RB RB .\nThe U.S. Secret Service has begun protecting Democratic Senator and presidential candidate Barack Obama - a full 18 months before the country 's next presidential election .\tDT NNP NNP NNP VBZ VBN VBG JJ NNP CC JJ NN NNP NNP IN DT JJ CD NNS IN DT NN POS JJ JJ NN .\nThe Department of Homeland Security says Obama requested the protection .\tDT NN IN NNP NNP VBZ NNP VBD DT NN .\nHis fellow senator from Illinois , Richard Durban , tells reporters he got information that made him concerned for Obama 's safety , including some racist remarks on the Internet .\tPRP$ JJ NN IN NNP , NNP NNP , VBZ NNS PRP VBD NN WDT VBD PRP JJ IN NNP POS NN , VBG DT JJ NNS IN DT NN .\nObama is seeking to become the first African-American U.S. president .\tNNP VBZ VBG TO VB DT JJ JJ NNP NN .\nNormally , protection for U.S. presidential candidates is not provided until the election year .\tRB , NN IN NNP JJ NNS VBZ RB VBN IN DT NN NN .\nSenator Durbin says he also was concerned about the large crowds that Obama draws at campaign events .\tNNP NNP VBZ PRP RB VBD VBN IN DT JJ NNS IN NNP VBZ IN NN NNS .\nNew York Senator and presidential candidate Hillary Clinton has Secret Service protection , but hers is linked to her status as a former first lady .\tNNP NNP NNP CC JJ NN NNP NNP VBZ NNP NNP NN , CC PRP$ VBZ VBN TO PRP$ NN IN DT JJ JJ NN .\nTwo roadside bombings in the Iraqi capital Tuesday killed four people and wounded at least 15 others .\tCD NN NNS IN DT JJ NN NNP VBD CD NNS CC VBD IN JJS CD NNS .\nIraqi officials say the attacks were aimed at police patrols in Baghdad .\tJJ NNS VBP DT NNS VBD VBN IN NN NNS IN NNP .\nAuthorities say in one case , a roadside bomb exploded near a hospital in central Baghdad , killing a police officer and a civilian .\tNNS VBP IN CD NN , DT NN NN VBD IN DT NN IN JJ NNP , VBG DT NN NN CC DT JJ .\nThe second roadside attack happened in western Baghdad , killing two people .\tDT JJ NN NN VBD IN JJ NNP , VBG CD NNS .\nThe music of jazz musician Miles Davis remains popular more than 16 years after his death .\tDT NN IN NN NN NNP NNP VBZ JJ JJR IN CD NNS IN PRP$ NN .\nHis music is being sampled by hip-hop artists , actor Don Cheadle is set to portray him in a movie and a new CD has been released with remixed and updated versions of his music .\tPRP$ NN VBZ VBG VBN IN NN NNS , NN NNP NNP VBZ VBN TO VB PRP IN DT NN CC DT JJ NN VBZ VBN VBN IN VBN CC VBN NNS IN PRP$ NN .\nVOA Persian Service 's Benham Natagehi sat down with Davis ' son Erin to discuss his father 's music .\tNNP NNP NNP POS NNP NNP VBD RP IN NNP POS NN NNP TO VB PRP$ NN POS NN .\nRuth Reader narrates .\tNNP NNP VBZ .\nThe International Security Assistance Force in Afghanistan says its paratroopers and Afghan National Army soldiers have advanced deep into the Taliban 's heartland in Helmand province .\tDT NNP NNP NNP NNP IN NNP VBZ PRP$ NNS CC JJ NNP NNP NNS VBP VBN RB IN DT NNP POS NN IN NNP NN .\nA NATO statement Monday says the excursion marks the first time Afghan and ISAF forces ' have driven this deep ' into the area .\tDT NNP NN NNP VBZ DT NN VBZ DT JJ NN JJ CC NNP NNS `` VBP VBN DT JJ `` IN DT NN .\nNATO said as the Afghan Army arrived in large numbers , the insurgents were not able to sustain the fight and retreated .\tNNP VBD IN DT JJ NNP VBD IN JJ NNS , DT NNS VBD RB JJ TO VB DT NN CC VBD .\nAlso , several suspects have been arrested after a suicide attack killed six American troops when an explosives-packed minibus blew up at the entrance of a joint NATO-Afghan base in southern Afghanistan , officials said Monday .\tRB , JJ NNS VBP VBN VBN IN DT NN NN VBD CD JJ NNS WRB DT JJ NN VBD RP IN DT NN IN DT JJ JJ NN IN JJ NNP , NNS VBD NNP .\nThe assault came days ahead of a major White House review of its Afghan strategy following President Barack Obama 's decision last year to send 30,000 American reinforcements in a bid to reverse gains by the Taliban since they were ousted from power in the 2001 U.S.-led invasion .\tDT NN VBD NNS RB IN DT JJ NNP NNP NN IN PRP$ JJ NN VBG NNP NNP NNP POS NN JJ NN TO VB CD JJ NNS IN DT NN TO VB NNS IN DT NNP IN PRP VBD VBN IN NN IN DT CD JJ NN .\nThe United Nations War Crimes Tribunal in The Hague will hold the first of a series of hearings Thursday on whether to transfer cases against 18 suspects to national courts in the Balkans .\tDT NNP NNP NNP NNP NNP IN DT NNP MD VB DT NN IN DT NN IN NNS NNP IN IN TO VB NNS IN CD NNS TO JJ NNS IN DT NNPS .\nCourt spokesman Jim Landale told VOA the tribunal will consider a prosecution motion to transfer the cases against war crimes suspects Mirko Norac and Rahim Ademi to courts in Croatia .\tNNP NN NNP NNP VBD NNP DT NN MD VB DT NN NN TO VB DT NNS IN NN NNS VBZ NNP NNP CC NNP NNP TO NNS IN NNP .\nThe two , both Croatian army officers , are accused of killing Serb civilians in Croatia 's Medak pocket in 1993 .\tDT CD , DT JJ NN NNS , VBP VBN IN VBG JJ NNS IN NNP POS NNP NN IN CD .\nHe said the court will hold several more hearings against other suspects in coming months .\tPRP VBD DT NN MD VB JJ JJR NNS IN JJ NNS IN VBG NNS .\nThe Hague court is scheduled to complete all its activities by 2010 .\tDT NNP NN VBZ VBN TO VB DT PRP$ NNS IN CD .\nThe prosecution calls the nine cases a ' first batch ' and says other cases may be moved to the Balkans later to allow The Hague tribunal to deal with more important trials .\tDT NN VBZ DT CD NNS DT `` JJ NN `` CC VBZ JJ NNS MD VB VBN TO DT NNPS RB TO VB DT NNP NN TO VB IN RBR JJ NNS .\nFrench Prime Minister Jean-Pierre Raffarin has successfully undergone gall bladder surgery .\tNNP NNP NNP NNP NNP VBZ RB VBN NN NN NN .\nDefense ministry officials say the surgery Saturday went well and they indicate that Mr. Raffarin will remain in the hospital for several days .\tNNP NN NNS VBP DT NN NNP VBD RB CC PRP VBP IN NNP NNP MD VB IN DT NN IN JJ NNS .\nEarlier Saturday , Mr. Raffarin abruptly canceled plans to travel to World War II anniversary ceremonies in the city of Reims .\tRBR NNP , NNP NNP RB VBD NNS TO VB TO NNP NNP NNP NN NNS IN DT NN IN NNP .\nInstead , he entered the Paris Val De Grace military hospital .\tRB , PRP VBD DT NNP NNP NNP NNP JJ NN .\nThe 56-year-old Mr. Raffarin assumed the post of prime minister three years ago .\tDT JJ NNP NNP VBD DT NN IN JJ NN CD NNS RB .\nIraqi security forces say a car bomb exploded at a market in northern Diyala province Friday , killing at least 23 people .\tJJ NN NNS VBP DT NN NN VBD IN DT NN IN JJ NNP NN NNP , VBG IN JJS CD NNS .\nOfficials say the blast occurred in the town of Khalis and injured more than 50 people .\tNNS VBP DT NN VBD IN DT NN IN NNP CC VBD JJR IN CD NNS .\nIn late March , at least 42 people were killed in twin bombings near a restaurant in Khalis .\tIN JJ NNP , IN JJS CD NNS VBD VBN IN JJ NNS IN DT NN IN NNP .\nThe explosions occurred shortly before Iraqi officials announced full preliminary results from the March 7 parliamentary election .\tDT NNS VBD RB IN JJ NNS VBD JJ JJ NNS IN DT NNP CD JJ NN .\nElection officials say former Prime Minister Ayad Allawi 's bloc won 91 seats , the most of any political group .\tNN NNS VBP JJ JJ NN NNP NNP POS NN VBD CD NNS , DT JJS IN DT JJ NN .\nPrime Minister Nouri al-Maliki 's coalition won 89 .\tJJ NN NNP NNP POS NN VBD CD .\nNeither party had the majority needed to form a government .\tDT NN VBD DT NN VBN TO VB DT NN .\nResidents of a Kurdish area in northeastern Iraq are alleging that Iran has fired artillery shells across the border into two villages in Iraq .\tNNS IN DT JJ NN IN JJ NNP VBP VBG IN NNP VBZ VBN NN NNS IN DT NN IN CD NNS IN NNP .\nResidents say farmland was damaged in the alleged shelling in Penjwin , which is east of Sulaimaniya .\tNNS VBP NN VBD VBN IN DT JJ NN IN NNP , WDT VBZ NN IN NNP .\nNo injuries were reported .\tDT NNS VBD VBN .\nEarlier this week , Kurdish leaders said two other villages in northeastern Iraq had been the target of Iranian shelling , prompting frightened residents to flee their homes .\tRBR DT NN , NNP NNS VBD CD JJ NNS IN JJ NNP VBD VBN DT NN IN JJ NN , VBG JJ NNS TO VB PRP$ NNS .\nIn recent months , Iranian forces have clashed with Kurdish rebels in northwestern Iran .\tIN JJ NNS , JJ NNS VBP VBN IN JJ NNS IN JJ NNP .\nThe insurgents are believed to be linked to Turkey 's separatist Kurdistan Workers Party , or PKK .\tDT NNS VBP VBN TO VB VBN TO NNP POS JJ NNP NNP NNP , CC NNP .\nOpponents of Venezuelan President Hugo Chavez marched through the streets of Caracas Saturday to demand a fair and legitimate vote during next Sunday 's local elections .\tNNS IN JJ NNP NNP NNP VBD IN DT NNS IN NNP NNP TO VB DT JJ CC JJ NN IN JJ NNP POS JJ NNS .\nThe protesters say they are concerned the August 7 vote will be plagued by irregularities favoring Mr. Chavez 's ruling party .\tDT NNS VBP PRP VBP VBN DT NNP CD NN MD VB VBN IN NNS VBG NNP NNP POS VBG NN .\nThe protesters are demanding anti-fraud measures be put in place , including an independent audit of the vote .\tDT NNS VBP VBG JJ NNS VB VBN IN NN , VBG DT JJ NN IN DT NN .\nSome supporters of the president threw rocks and bottles at the marchers .\tDT NNS IN DT NN VBD NNS CC NNS IN DT NNS .\nPolice blocked the crowd of at least 1,000 protesters from reaching the electoral council 's office where they had planned to hand over a list of demands .\tNNP VBD DT NN IN IN JJS CD NNS IN VBG DT JJ NN POS NN WRB PRP VBD VBN TO VB IN DT NN IN NNS .\nMr. Chavez 's opponents say he is ruling Venezuela like a dictator , and have accused him of rigging last year 's referendum of his rule , although international observers endorsed results of the vote .\tNNP NNP POS NNS VBP PRP VBZ VBG NNP IN DT NN , CC VBP VBN PRP IN VBG JJ NN POS NN IN PRP$ NN , IN JJ NNS VBD NNS IN DT NN .\nPresident Bush says he supports a criminal investigation into the destruction of CIA videotapes showing interrogations of terror suspects .\tNNP NNP VBZ PRP VBZ DT JJ NN IN DT NN IN NNP NNS VBG NNS IN NN NNS .\nMr. Bush made the comment Thursday in an interview with Reuters new agency .\tNNP NNP VBD DT NN NNP IN DT NN IN NNP JJ NN .\nEarlier today , White House spokeswoman Dana Perino said Mr. Bush will cooperate with U.S. Attorney General Michael Mukasey in the investigation .\tRBR NN , NNP NNP NN NNP NNP VBD NNP NNP MD VB IN NNP NNP NNP NNP NNP IN DT NN .\nShe said Mr. Bush has full confidence in both Mukasey and the head of the Central Intelligence Agency , Michael Hayden .\tPRP VBD NNP NNP VBZ JJ NN IN DT NNP CC DT NN IN DT NNP NNP NNP , NNP NNP .\nMukasey announced the Justice Department investigation Wednesday , appointing federal prosecutor John Durham to lead the inquiry .\tNNP VBD DT NNP NNP NN NNP , VBG JJ NN NNP NNP TO VB DT NN .\nThe CIA said last month that some videotapes of al-Qaida suspect interrogations , made in 2002 , had been destroyed in 2005 to protect the identities of the interrogators .\tDT NNP VBD JJ NN IN DT NNS IN NNP NN NNS , VBN IN CD , VBD VBN VBN IN CD TO VB DT NNS IN DT NNS .\nCritics of the move accuse the CIA of destroying evidence of torture .\tNNS IN DT NN VBP DT NNP IN VBG NN IN NN .\nPresident Bush has said the United States does not use torture as a method of interrogation .\tNNP NNP VBZ VBN DT NNP NNPS VBZ RB VB NN IN DT NN IN NN .\nThe U.S. military in Afghanistan says it is spending $ 83 million to upgrade its two main air bases at Bagram and Kandahar .\tDT NNP NN IN NNP VBZ PRP VBZ VBG $ CD CD TO VB PRP$ CD JJ NN NNS IN NNP CC NNP .\nThe commander of U.S. air forces in the war-torn country , Brigadier General James Hunt , told a news conference in Kabul Monday the money will be spent to improve vital facilities at the two bases .\tDT NN IN NNP NN NNS IN DT JJ NN , NNP NNP NNP NNP , VBD DT NN NN IN NNP NNP DT NN MD VB VBN TO VB JJ NNS IN DT CD NNS .\nHe said the military has been continuously improving runways , taxiways , navigation aids , airfield lighting , and other facilities .\tPRP VBD DT NN VBZ VBN RB VBG NNS , NNS , NN NNS , NN NN , CC JJ NNS .\nThe U.S.-led coalition has more than 17,000 troops in Afghanistan , mostly in the south and southeast , where the remnants of the ousted Taleban regime are most active .\tDT JJ NN VBZ JJR IN CD NNS IN NNP , RB IN DT NN CC NN , WRB DT NNS IN DT JJ NNP NN VBP RBS JJ .\nAfghan leaders say they want a long-term strategic partnership with the United States , and Washington has expressed interest in having permanent bases in Afghanistan .\tJJ NNS VBP PRP VBP DT JJ JJ NN IN DT NNP NNPS , CC NNP VBZ VBN NN IN VBG JJ NNS IN NNP .\nSomalia 's transitional government has ordered the closure of four major news outlets in the capital , Mogadishu .\tNNP POS JJ NN VBZ VBN DT NN IN CD JJ NN NNS IN DT NN , NNP .\nOfficials issued a letter Monday ordering the al-Jazeera network and three local private radio stations - Shabelle , Holy Koran , and HornAfrik - to shut down their operations immediately .\tNNS VBD DT NN NNP VBG DT NNP NN CC CD JJ JJ NN NNS IN NNP , NNP NNP , CC NNP : TO VB RP PRP$ NNS RB .\nA government spokesman , Abdirahman Dinari , said that now there is a government in place , the media outlets need to get a license , and , in his words , ' avoid causing unrest by airing unconfirmed reports . '\tDT NN NN , NNP NNP , VBD IN RB EX VBZ DT NN IN NN , DT NNS NNS VBP TO VB DT NN , CC , IN PRP$ NNS , `` VB VBG NN IN VBG JJ NNS . ``\nThe U.N.-backed Somali interim government declared three months of martial law on Saturday .\tDT JJ JJ JJ NN VBD CD NNS IN JJ NN IN NNP .\nU.N. Secretary-General Kofi Annan has asked the Security Council to move faster to help end violence in Sudan 's western Darfur region .\tNNP NNP NNP NNP VBZ VBN DT NNP NNP TO VB RBR TO VB VB NN IN NNP POS JJ NNP NN .\nMr. Annan met with council members Monday after new reports that people are being killed and raped , and villages continue to be burned in Darfur .\tNNP NNP VBD IN NN NNS NNP IN JJ NNS IN NNS VBP VBG VBN CC VBN , CC NNS VBP TO VB VBN IN NNP .\nHe says council members promised to introduce a new resolution on Darfur this week , which will include measures for holding accountable those accused of crimes .\tPRP VBZ NN NNS VBD TO VB DT JJ NN IN NNP DT NN , WDT MD VB NNS IN VBG JJ DT VBN IN NNS .\nSecurity Council members are also considering sending peacekeepers or imposing sanctions on Sudan 's government .\tNNP NNP NNS VBP RB VBG VBG NNS CC VBG NNS IN NNP POS NN .\nMr. Annan says U.N. members should back an African Union team monitoring a cease-fire between pro-government forces and Darfur rebels .\tNNP NNP VBZ NNP NNS MD VB DT NNP NNP NN VBG DT NN IN JJ NNS CC NNP NNS .\nMeantime , the top U.N. humanitarian official , Jan Egeland , says humanitarian conditions have improved in Darfur , despite continued fighting .\tRB , DT JJ NNP JJ NN , NNP NNP , VBZ JJ NNS VBP VBN IN NNP , IN JJ NN .\nThe United Nations tribunal in The Hague has given Serbian General Sreten Lukic 30 days to enter a plea to charges of war crimes in Kosovo .\tDT NNP NNP NN IN DT NNP VBZ VBN JJ NNP NNP NNP CD NNS TO VB DT NN TO NNS IN NN NNS IN NNP .\nGeneral Lukic , who arrived in The Hague Monday , sought the extra time to permit a medical examination following vascular surgery last week .\tNNP NNP , WP VBD IN DT NNP NNP , VBD DT JJ NN TO VB DT JJ NN VBG JJ NN JJ NN .\nThe tribunal has indicted General Lukic and three other Serbian generals on charges of war crimes and crimes against humanity against Kosovo Albanians in 1999 .\tDT NN VBZ VBN NNP NNP CC CD JJ JJ NNS IN NNS IN NN NNS CC NNS IN NN IN NNP NNS IN CD .\nOne of the three has surrendered voluntarily , the two others are in hiding .\tCD IN DT CD VBZ VBN RB , DT CD NNS VBP IN NN .\nMeanwhile , in Belgrade , Serbia 's extreme nationalist Radical Party has filed a motion of no-confidence in the government of Prime Minister Vojislav Kostunica to protest the extradition of 11 suspects to the court since October .\tRB , IN NNP , NNP POS JJ NN NNP NNP VBZ VBN DT NN IN NN IN DT NN IN NNP NNP NNP NNP TO VB DT NN IN CD NNS TO DT NN IN NNP .\nThe Serbian government says it has encouraged war crimes suspects to surrender to the tribunal .\tDT JJ NN VBZ PRP VBZ VBN NN NNS VBZ TO VB TO DT NN .\nMontevideo , founded by the Spanish in 1726 as a military stronghold , soon took advantage of its natural harbor to become an important commercial center .\tNNP , VBN IN DT JJ IN CD IN DT JJ NN , RB VBD NN IN PRP$ JJ NN TO VB DT JJ JJ NN .\nClaimed by Argentina but annexed by Brazil in 1821 , Uruguay declared its independence four years later and secured its freedom in 1828 after a three-year struggle .\tVBN IN NNP CC VBN IN NNP IN CD , NNP VBD PRP$ NN CD NNS RB CC VBN PRP$ NN IN CD IN DT JJ NN .\nThe administrations of President Jose BATLLE in the early 20th century established widespread political , social , and economic reforms that established a statist tradition .\tDT NNS IN NNP NNP NNP IN DT JJ JJ NN VBD JJ JJ , JJ , CC JJ NNS WDT VBD DT JJ NN .\nA violent Marxist urban guerrilla movement named the Tupamaros , launched in the late 1960s , led Uruguay 's president to cede control of the government to the military in 1973 .\tDT JJ JJ JJ NN NN VBD DT NNPS , VBN IN DT JJ NNS , VBD NNP POS NN TO VB NN IN DT NN TO DT NN IN CD .\nBy yearend , the rebels had been crushed , but the military continued to expand its hold over the government .\tIN NN , DT NNS VBD VBN VBN , CC DT NN VBD TO VB PRP$ NN IN DT NN .\nCivilian rule was not restored until 1985 .\tJJ NN VBD RB VBN IN CD .\nIn 2004 , the left-of-center Frente Amplio Coalition won national elections that effectively ended 170 years of political control previously held by the Colorado and Blanco parties .\tIN CD , DT NN NNP NNP NNP VBD JJ NNS IN RB VBN CD NNS IN JJ NN RB VBN IN DT NNP CC NNP NNS .\nUruguay 's political and labor conditions are among the freest on the continent .\tNNP POS JJ CC NN NNS VBP IN DT JJS IN DT NN .\nThe Cayman Islands were colonized from Jamaica by the British during the 18th and 19th centuries and were administered by Jamaica after 1863 .\tDT NNP NNP VBD VBN IN NNP IN DT JJ IN DT JJ CC JJ NNS CC VBD VBN IN NNP IN CD .\nIn 1959 , the islands became a territory within the Federation of the West Indies .\tIN CD , DT NNS VBD DT NN IN DT NNP IN DT NNP NNPS .\nWhen the Federation dissolved in 1962 , the Cayman Islands chose to remain a British dependency .\tWRB DT NNP VBD IN CD , DT NNP NNP VBD TO VB DT JJ NN .\nThe West Bank - the larger of the two areas comprising the Palestinian territories - experienced a high single-digit economic growth rate in 2010 as a result of inflows of donor aid , the Palestinian Authority 's ( PA ) implementation of economic and security reforms , and the easing of some movement and access restrictions by the Israeli Government .\tDT NNP NNP IN DT JJR IN DT CD NNS VBG DT JJ NNS : VBD DT JJ JJ JJ NN NN IN CD IN DT NN IN NNS IN NN NN , DT JJ NNP POS LRB NNP RRB NN IN JJ CC NN NNS , CC DT NN IN DT NN CC NN NNS IN DT JJ NN .\nNevertheless , overall standard-of-living measures remain near levels seen prior to the start of the second intifada in 2000 .\tRB , JJ JJ NNS VBP JJ NNS VBN RB TO DT NN IN DT JJ NN IN CD .\nThe almost decade-long downturn largely has been a result of Israeli closure policies - a steady increase in movement and access restrictions across the West Bank in response to Israeli security concerns which have disrupted labor and trade flows , industrial capacity , and basic commerce , both external and internal .\tDT RB JJ NN RB VBZ VBN DT NN IN JJ NN NNS IN DT JJ NN IN NN CC NN NNS IN DT NNP NNP IN NN TO JJ NN NNS WDT VBP VBN NN CC NN NNS , JJ NN , CC JJ NN , DT JJ CC JJ .\nSince 2008 , the PA under President Mahmoud ABBAS and Prime Minister Salam FAYYAD has implemented a largely successful campaign of institutional reforms that has contributed to increased security and economic performance , supported by more than $ 3 billion in direct foreign donor assistance to the PA 's budget since 2007 .\tIN CD , DT NNP IN NNP NNP NNP CC NNP NNP NNP NNP VBZ VBN DT RB JJ NN IN JJ NNS WDT VBZ VBN TO VBN NN CC JJ NN , VBN IN JJR IN $ CD CD IN JJ JJ NN NN TO DT NNP POS NN IN CD .\nAn easing of some Israeli restrictions on West Bank movement and access since 2008 also has contributed to an uptick in retail activity in larger cities .\tDT NN IN DT JJ NNS IN NNP NNP NN CC NN IN CD RB VBZ VBN TO DT NN IN JJ NN IN JJR NNS .\nThe biggest impediments to economic improvements in the West Bank remain Palestinians ' lack of access to land and resources in Israeli-controlled areas , import and export restrictions , and a high-cost capital structure .\tDT JJS NNS TO JJ NNS IN DT NNP NNP VBP NNS POS NN IN NN TO NN CC NNS IN JJ NNS , NN CC NN NNS , CC DT JJ NN NN .\nAbsent robust private sector growth , the PA will continue to rely heavily on donor aid for its budgetary needs .\tNNP JJ JJ NN NN , DT NNP MD VB TO VB RB IN NN NN IN PRP$ JJ NNS .\nThe Indian Ocean is the third largest of the world 's five oceans ( after the Pacific Ocean and Atlantic Ocean , but larger than the Southern Ocean and Arctic Ocean ) .\tDT NNP NNP VBZ DT JJ JJS IN DT NN POS CD NNS LRB IN DT NNP NNP CC NNP NNP , CC JJR IN DT NNP NNP CC NNP NNP RRB .\nFour critically important access waterways are the Suez Canal ( Egypt ) , Bab el Mandeb ( Djibouti-Yemen ) , Strait of Hormuz ( Iran-Oman ) , and Strait of Malacca ( Indonesia-Malaysia ) .\tCD RB JJ NN NNS VBP DT NNP NNP LRB NNP RRB , NNP NNP NNP LRB NNP RRB , NNP IN NNP LRB NNP RRB , CC NNP IN NNP LRB NNP RRB .\nThe decision by the International Hydrographic Organization in the spring of 2000 to delimit a fifth ocean , the Southern Ocean , removed the portion of the Indian Ocean south of 60 degrees south latitude .\tDT NN IN DT NNP NNP NNP IN DT NN IN CD TO VB DT JJ NN , DT NNP NNP , VBD DT NN IN DT NNP NNP NN IN CD NNS JJ NN .\nSOME CRANES made their feeding grounds on some plowlands newly sown with wheat .\tDT NNS VBD PRP$ NN NNS IN DT NNS RB VBN IN NN .\nFor a long time the Farmer , brandishing an empty sling , chased them away by the terror he inspired ; but when the birds found that the sling was only swung in the air , they ceased to take any notice of it and would not move .\tIN DT JJ NN DT NNP , VBG DT JJ NN , VBD PRP RP IN DT NN PRP VBD ; CC WRB DT NNS VBD IN DT NN VBD RB VBN IN DT NN , PRP VBD TO VB DT NN IN PRP CC MD RB VB .\nThe Farmer , on seeing this , charged his sling with stones , and killed a great number .\tDT NNP , IN VBG DT , VBD PRP$ VBG IN NNS , CC VBD DT JJ NN .\nThe remaining birds at once forsook his fields , crying to each other , ' It is time for us to be off to Liliput : for this man is no longer content to scare us , but begins to show us in earnest what he can do . '\tDT VBG NNS IN RB VB PRP$ NNS , VBG TO DT NN , `` PRP VBZ NN IN PRP TO VB RB TO NNP IN IN DT NN VBZ RB RB JJ TO VB PRP , CC VBZ TO VB PRP IN JJ WP PRP MD VB . ``\nIf words suffice not , blows must follow .\tIN NNS VBP RB , NNS MD VB .\nA VERY HUNGRY FOX , seeing some bread and meat left by shepherds in the hollow of an oak , crept into the hole and made a hearty meal .\tDT RB JJ NN , VBG DT NN CC NN VBN IN NNS IN DT NN IN DT NN , VBD IN DT NN CC VBD DT JJ NN .\nWhen he finished , he was so full that he was not able to get out , and began to groan and lament his fate .\tWRB PRP VBD , PRP VBD RB JJ IN PRP VBD RB JJ TO VB RP , CC VBD TO VB CC VB PRP$ NN .\nAnother Fox passing by heard his cries , and coming up , inquired the cause of his complaining .\tDT NN VBG IN VBD PRP$ NNS , CC VBG RB , VBD DT NN IN PRP$ VBG .\nOn learning what had happened , he said to him , ' Ah , you will have to remain there , my friend , until you become such as you were when you crept in , and then you will easily get out . '\tIN VBG WP VBD VBN , PRP VBD TO PRP , `` UH , PRP MD VB TO VB RB , PRP$ NN , IN PRP VBP JJ IN PRP VBD WRB PRP VBP IN , CC RB PRP MD RB VB RP . ``\nAN Orator afflicted with atrophy of the organ of common-sense rose in his place in the halls of legislation and pointed with pride to his Unblotted Escutcheon .\tDT NN VBD IN NN IN DT NN IN NN VBD IN PRP$ NN IN DT NNS IN NN CC VBD IN NN TO PRP$ JJ NN .\nSeeing what it supposed to be the finger of scorn pointed at it , the Unblotted Escutcheon turned black with rage .\tVBG WP PRP VBD TO VB DT NN IN NN VBD IN PRP , DT JJ NN VBD JJ IN NN .\nSeeing the Unblotted Escutcheon turning black with what he supposed to be the record of his own misdeeds showing through the whitewash , the Orator fell dead of mortification .\tVBG DT JJ NN VBG JJ IN WP PRP VBD TO VB DT NN IN PRP$ JJ NNS VBG IN DT NN , DT NN VBD NN IN NN .\nSeeing the Orator fall dead of what they supposed to be atrophy of the organ of common-sense , his colleagues resolved that whenever they should adjourn because they were tired , it should be out of respect to the memory of him who had so frequently made them so .\tVBG DT NN VB NN IN WP PRP VBD TO VB NN IN DT NN IN NN , PRP$ NNS VBD IN WRB PRP MD VB IN PRP VBD JJ , PRP MD VB IN IN NN TO DT NN IN PRP WP VBD RB RB VBN PRP RB .\nU.S. President George Bush has commented on his meeting this week with Iraqi Prime Minister Nouri al-Maliki , saying Mr. Maliki made it clear that the Iraqi people do not want the country partitioned .\tNNP NNP NNP NNP VBZ VBN IN PRP$ NN DT NN IN JJ NNP NNP NNP NNP , VBG NNP NNP VBD PRP JJ IN DT JJ NNS VBP RB VB DT NN VBN .\nMr. Bush said in his Saturday radio address Saturday that Mr. Maliki told him partitioning the country would lead to more sectarian violence .\tNNP NNP VBD IN PRP$ NNP NN NN NNP IN NNP NNP VBD PRP VBG DT NN MD VB TO RBR JJ NN .\nMr. Bush said the success of the Iraqi government depends on the success of Iraqi security forces .\tNNP NNP VBD DT NN IN DT JJ NN VBZ IN DT NN IN JJ NN NNS .\nHe added that he and Mr. Maliki agree that training of Iraqi security forces needs to be done faster and on a broader scale .\tPRP VBD IN PRP CC NNP NNP VBP IN NN IN JJ NN NNS VBZ TO VB VBN RBR CC IN DT JJR NN .\nPresident Bush said he recognizes that recent violence in Iraq has been unsettling .\tNNP NNP VBD PRP VBZ IN JJ NN IN NNP VBZ VBN JJ .\nAnd he pledged to work with U.S. leaders in both political parties to find consensus on the best path forward .\tCC PRP VBD TO VB IN NNP NNS IN DT JJ NNS TO VB NN IN DT JJS NN RB .\nLouisiana 's governor has announced a long-awaited rebuilding proposal , almost six months after Hurricane Katrina and Hurricane Rita ravaged the U.S. state .\tNNP POS NN VBZ VBN DT JJ NN NN , RB CD NNS IN NNP NNP CC NNP NNP VBD DT NNP NN .\nGovernor Kathleen Blanco Monday said the state 's $ 7.5 billion plan offers up to $ 1,50,000 to homeowners to repair , rebuild or relocate to a designated area .\tNNP NNP NNP NNP VBD DT NN POS $ CD CD NN VBZ RP TO $ CD TO NNS TO VB , VB CC VB TO DT VBN NN .\nHomeowners could also accept a buyout of 60 percent of the pre-storm value of their houses , not to exceed $ 1,50,000 .\tNNS MD RB VB DT NN IN CD NN IN DT JJ NN IN PRP$ NNS , RB TO VB $ CD .\nOfficials say some 3,30,000 homes suffered damage , including more than 1,00,000 that were significantly damaged or destroyed .\tNNS VBP DT CD NNS VBD NN , VBG JJR IN CD WDT VBD RB VBN CC VBN .\nUninsured homeowners would also be covered under the plan , but would be subject to a 30 percent penalty .\tJJ NNS MD RB VB VBN IN DT NN , CC MD VB JJ TO DT CD NN NN .\nRegistration for the program would begin in March , but the proposal is dependent upon congressional approval of the funds .\tNN IN DT NN MD VB IN NNP , CC DT NN VBZ JJ IN JJ NN IN DT NNS .\nLast week , the White House requested $ 4.2 billion in funding for Louisiana .\tJJ NN , DT NNP NNP VBD $ CD CD IN NN IN NNP .\nAt least 18 people have been slain in attacks central Nigeria , in the latest breakout of inter-religious violence that has killed thousands over the past decade .\tIN JJS CD NNS VBP VBN VBN IN NNS JJ NNP , IN DT JJS NN IN JJ NN WDT VBZ VBN NNS IN DT JJ NN .\nAuthorities in Plateau State said people with machetes on Tuesday killed 13 people , including women and children .\tNNS IN NNP NNP VBD NNS IN NNS IN NNP VBD CD NNS , VBG NNS CC NNS .\nThe attack took place before dawn in the majority Christian village of Kuru Wareng .\tDT NN VBD NN IN NN IN DT NN JJ NN IN NNP NNP .\nFive other people were killed in a separate attack Tuesday in the nearby area of Barakin Ladi .\tCD JJ NNS VBD VBN IN DT JJ NN NNP IN DT JJ NN IN NNP NNP .\nThe two sites are located in Nigeria 's volatile Middle Belt , where the mostly Muslim north meets the mainly Christian south .\tDT CD NNS VBP VBN IN NNP POS JJ NN NNP , WRB DT RB JJ NN VBZ DT RB JJ NN .\nNearby is the city of Jos , where at least 80 people died in a wave of Christmas Eve bombings claimed by the radical Islamist group Boko Haram .\tRB VBZ DT NN IN NNP , WRB IN JJS CD NNS VBD IN DT NN IN NNP NNP NNS VBN IN DT JJ NN NN NNP NNP .\nNigerian authorities say the attacks were intended to inflame tensions between Muslims and Christians before April 's scheduled presidential election .\tJJ NNS VBP DT NNS VBD VBN TO VB NNS IN NNPS CC NNPS IN NNP POS JJ JJ NN .\nThe Arab television station al-Jazeera has aired a new videotape in which the deputy leader of the al-Qaida 's terror network denounces U.S. calls for reform in the Middle East and rejects the possibility of peaceful change .\tDT JJ NN NN NNP VBZ VBN DT JJ NN IN WDT DT NN NN IN DT NNP POS NN NN VBZ NNP NNS IN NN IN DT NNP NNP CC VBZ DT NN IN JJ NN .\nThe tape , broadcast Friday , carries a message from Ayman al-Zawahiri in which he says expelling the ' invading Crusaders and Jewish ' forces from the Middle East will not be accomplished through demonstrations .\tDT NN , NN NNP , VBZ DT NN IN NNP NNP IN WDT PRP VBZ VBG DT `` VBG NNPS CC JJ `` NNS IN DT NNP NNP MD RB VB VBN IN NNS .\nHe said reform is possible only through fighting for the sake of God .\tPRP VBD NN VBZ JJ RB IN VBG IN DT NN IN NNP .\nAyman al-Zawahiri , speaking with a rifle beside him , also criticized the Pakistani , Saudi and Egyptian governments .\tNNP NNP , VBG IN DT NN IN PRP , RB VBD DT JJ , NNP CC JJ NNS .\nU.S. officials say they believe Osama bin Laden and his former deputy may be hiding in the rugged mountains along the Pakistan-Afghanistan border .\tNNP NNS VBP PRP VBP NNP NNP NNP CC PRP$ JJ NN MD VB VBG IN DT JJ NNS IN DT JJ NN .\nA Pakistani court has sentenced an al-Qaida-linked militant to death for plotting a suicide attack that killed a U.S. diplomat in Karachi two years ago .\tDT JJ NN VBZ VBN DT JJ NN TO NN IN VBG DT NN NN WDT VBD DT NNP NN IN NNP CD NNS RB .\nThe anti-terrorism court in Karachi convicted Anwarul Haq Wednesday of murder and terrorism in connection with the bombing .\tDT JJ NN IN NNP VBD NNP NNP NNP IN NN CC NN IN NN IN DT NN .\nIn the March 2006 attack , a suicide bomber rammed his car into a vehicle carrying U.S. diplomat David Foy near the American consulate in Karachi .\tIN DT NNP CD NN , DT NN NN VBD PRP$ NN IN DT NN VBG NNP NN NNP NNP IN DT JJ NN IN NNP .\nThe explosion killed Foy and three Pakistanis , one day before President Bush began an official visit to Pakistan .\tDT NN VBD NNP CC CD NNS , CD NN IN NNP NNP VBD DT JJ NN TO NNP .\nPakistani authorities arrested Haq and another suspect , Usman Ghani , several months later and accused both of links to al-Qaida .\tJJ NNS VBN NNP CC DT NN , NNP NNP , JJ NNS RB CC VBN DT IN NNS TO NNP .\nThe Karachi court acquitted Ghani for lack of evidence .\tDT NNP NN VBN NNP IN NN IN NN .\nThe Associated Press quotes a defense lawyer Mohammed Farooq as saying Haq will appeal his conviction .\tDT NNP NNP VBZ DT NN NN NNP NNP IN VBG NNP MD VB PRP$ NN .\nThe lawyer also accused police of producing ' fake ' witnesses against his client .\tDT NN RB VBD NNS IN VBG `` JJ `` NNS IN PRP$ NN .\nThe ruling party of Egyptian President Hosni Mubarak looks set to retain its two-thirds majority in the 454-seat parliament , following Thursday 's final round of legislative voting .\tDT VBG NN IN JJ NNP NNP NNP VBZ VBN TO VB PRP$ NNS NN IN DT JJ NN , VBG NNP POS JJ NN IN JJ NN .\nPreliminary results Friday indicate the National Democratic Party won at least 120 seats in the first two rounds and at least four seats Thursday .\tJJ NNS NNP VBP DT NNP NNP NNP VBD IN JJS CD NNS IN DT JJ CD NNS CC IN JJS CD NNS NNP .\nIt will have about 125 candidates competing in next week 's run-off .\tPRP MD VB RB CD NNS VBG IN JJ NN POS NN .\nThat run-off will be held in districts where no candidate won more than 50 percent of the vote .\tDT NN MD VB VBN IN NNS WRB DT NN VBD JJR IN CD NN IN DT NN .\nEgypt 's main opposition group , the Muslim Brotherhood , won 76 seats in the first two phases , but none on Thursday .\tNNP POS JJ NN NN , DT NNP NNP , VBD CD NNS IN DT JJ CD NNS , CC NN IN NNP .\nHowever , 35 of the candidates it endorsed qualified to compete in the run-off .\tRB , CD IN DT NNS PRP VBD VBD TO VB IN DT NN .\nBrotherhood officials accuse authorities of manipulating the vote .\tNNP NNS VBP NNS IN VBG DT NN .\nThey point to widespread reports of police interference at polling centers in opposition strongholds , and to the arrest of hundreds of Brotherhood supporters .\tPRP VBP TO JJ NNS IN NN NN IN VBG NNS IN NN NNS , CC TO DT NN IN NNS IN NNP NNS .\nAn opposition leader in Belarus has been released after being detained trying to enter a political convention in Minsk .\tDT NN NN IN NNP VBZ VBN VBN IN VBG VBN VBG TO VB DT JJ NN IN NNP .\nPolice officials say presidential hopeful Alexander Kozulin was detained while trying to register to attend a political gathering .\tNN NNS VBP JJ JJ NNP NNP VBD VBN IN VBG TO VB TO VB DT JJ NN .\nWitnesses say Mr. Kozulin was beaten and driven to a police station where he was detained .\tNNS VBP NNP NNP VBD VBN CC VBN TO DT NN NN WRB PRP VBD VBN .\nHe was later released , but prosecutors say he may face charges of hooliganism for allegedly shoving a police officer and damaging a picture of President Alexander Lukashenko .\tPRP VBD RB VBN , CC NNS VBP PRP MD VB NNS IN NN IN RB VBG DT NN NN CC VBG DT NN IN NNP NNP NNP .\nMr. Kozulin is one of three people challenging Mr. Lukashenko in elections scheduled for March 19 .\tNNP NNP VBZ CD IN CD NNS VBG NNP NNP IN NNS VBN IN NNP CD .\nThe United States has criticized Mr. Lukashenko , calling him Europe 's last dictator .\tDT NNP NNPS VBZ VBN NNP NNP , VBG PRP NNP POS JJ NN .\nThe Belarusian leader has , in turn , railed against what he called Western attempts to destabilize his administration .\tDT JJ NN VBZ , IN NN , VBN IN WP PRP VBD JJ NNS TO VB PRP$ NN .\nThe United States and Russia say they hope to sign a formal agreement next week that paves the way for Russia to join the World Trade Organization .\tDT NNP NNPS CC NNP VBP PRP VBP TO VB DT JJ NN JJ NN WDT VBZ DT NN IN NNP TO VB DT NNP NNP NNP .\nThe two sides announced an agreement in principle Friday that covers tariffs on agricultural and industrial goods , access to Russian financial markets , and Moscow 's protection of intellectual property rights .\tDT CD NNS VBD DT NN IN NN NNP WDT VBZ NNS IN JJ CC JJ NNS , NN TO JJ JJ NNS , CC NNP POS NN IN JJ NN NNS .\nTerms of the agreement were not released .\tNNS IN DT NN VBD RB VBN .\nU.S. Trade Representative Susan Schwab said the two countries are still finalizing the details but hope to sign a formal document at the Asia-Pacific Economic Cooperation summit in Hanoi next week .\tNNP NNP NNP NNP NNP VBD DT CD NNS VBP RB VBG DT NNS CC VBP TO VB DT JJ NN IN DT NNP NNP NNP NN IN NNP JJ NN .\nThe United States has been the last W.T.O . member to reach an bilateral pact with Russia .\tDT NNP NNPS VBZ VBN DT JJ NNP . NN TO VB DT JJ NN IN NNP .\nMoscow would then enter into membership negotiations with the entire trade organization .\tNNP MD RB VB IN NN NNS IN DT JJ NN NN .\nThe World Health Organization is warning of the danger of small , undetected bird flu outbreaks in China , following the country 's third confirmed human fatality from the virus .\tDT NNP NNP NNP VBZ VBG IN DT NN IN JJ , JJ NN NN NNS IN NNP , VBG DT NN POS NN VBD JJ NN IN DT NN .\nChina announced on Thursday the latest bird flu victim was a 41-year-old woman in Fujian province who had died last week .\tNNP VBD IN NNP DT JJS NN NN NN VBD DT JJ NN IN JJ NN WP VBD VBN JJ NN .\nNo outbreaks were reported in the area where she lived , and authorities are unsure how she contracted the virus .\tDT NNS VBD VBN IN DT NN WRB PRP VBD , CC NNS VBP JJ WRB PRP VBD DT NN .\nThe WHO 's spokesman in Beijing , Roy Wadia , said Friday many bird flu outbreaks among wild birds and poultry in China are small and hard to detect .\tDT NNP POS NN IN NNP , NNP NNP , VBD NNP JJ NN NN NNS IN JJ NNS CC NN IN NNP VBP JJ CC JJ TO VB .\nHe said it is hard for China to alert the public when infected birds die in small numbers .\tPRP VBD PRP VBZ JJ IN NNP TO VB DT NN WRB JJ NNS VBP IN JJ NNS .\nPolice in Indian Kashmir say a Muslim woman has died when a bomb she was carrying exploded .\tNNS IN JJ NNP VBP DT NNP NN VBZ VBN WRB DT NN PRP VBD VBG VBN .\nA militant group claimed she was a suicide bomber who killed or injured five soldiers , but police denied there were any casualties .\tDT JJ NN VBD PRP VBD DT NN NN WP VBD CC VBD CD NNS , CC NNS VBD EX VBD DT NNS .\nThe separatist group , Jaish-e-Mohammad , called the Srinagar-based Current News Service Thursday to say she blew up an army vehicle , killing five soldiers .\tDT JJ NN , NNP , VBD DT JJ NNP NNP NNP NNP TO VB PRP VBD RP DT NN NN , VBG CD NNS .\nA spokesman identified the attacker as Hafsa , a member of the women 's wing of the group .\tDT NN VBD DT NN IN NNP , DT NN IN DT NNS POS NN IN DT NN .\nWhile Kashmiri militants use women members for transporting arms and explosives , they have never used them as suicide bombers .\tIN JJ NNS VBP NNS NNS IN VBG NNS CC NNS , PRP VBP RB VBN PRP IN NN NNS .\nMuslim separatists in Indian Kashmir are fighting for an independent Kashmir or its merger with neighboring Pakistan .\tNNP NNS IN JJ NNP VBP VBG IN DT JJ NNP CC PRP$ NN IN JJ NNP .\nThe fight against Indian rule has killed tens of thousands of people since it began in 1989 .\tDT NN IN JJ NN VBZ VBN NNS IN NNS IN NNS IN PRP VBD IN CD .\nWorld oil prices rose to another record high after a government report showed a decline in U.S. stocks of gasoline Wednesday .\tNNP NN NNS VBD TO DT NN NN IN DT NN NN VBD DT NN IN NNP NNS IN NN NNP .\nThe price of crude oil for future delivery hit $ 64.35 cents a barrel after the U.S. Energy Department reported the sixth-straight week of falling gasoline stocks .\tDT NN IN JJ NN IN JJ NN VBD $ CD NNS DT NN IN DT NNP NNP NNP VBD DT JJ NN IN VBG NN NNS .\nThe report showed gasoline supplies falling last week by just over two million barrels to a total of 203.1 million barrels .\tDT NN VBD NN NNS VBG JJ NN IN RB IN CD CD NNS TO DT NN IN CD CD NNS .\nThe closely watched report also showed an unexpected increase in crude oil supplies , prompting an initial decline in oil prices .\tDT RB VBN NN RB VBD DT JJ NN IN JJ NN NNS , VBG DT JJ NN IN NN NNS .\nOil prices are about 42 percent higher than they were a year ago .\tNN NNS VBP IN CD NN JJR IN PRP VBD DT NN RB .\nAnalysts say strong demand and worries about possible disruptions in supplies are key reasons for the higher prices .\tNNS VBP JJ NN CC NNS IN JJ NNS IN NNS VBP JJ NNS IN DT JJR NNS .\nThe new head of the U.S. Federal Reserve , Ben Bernanke , was formally sworn in to office Wednesday morning in Washington .\tDT JJ NN IN DT NNP NNP NNP , NNP NNP , VBD RB VBN IN TO NN NNP NN IN NNP .\nBernanke succeeds Alan Greenspan and is expected to continue his fight to contain inflation .\tNNP VBZ NNP NNP CC VBZ VBN TO VB PRP$ NN TO VB NN .\nBernanke heads the committee that sets the key U.S. interest rate .\tNNP VBZ DT NN WDT VBZ DT JJ NNP NN NN .\nTuesday , on Greenspan 's last day as chairman , the committee hiked interest rates one quarter of a percent in an effort to cool the economy and fend off inflation .\tNNP , IN NNP POS JJ NN IN NN , DT NN VBD NN NNS CD NN IN DT NN IN DT NN TO VB DT NN CC VB RP NN .\nFed officials said they remain concerned about high energy prices and worry that busier factories and low unemployment could raise production costs and increase inflation .\tNNP NNS VBD PRP VBP JJ IN JJ NN NNS CC VBP IN JJR NNS CC JJ NN MD VB NN NNS CC VB NN .\nMost analysts expect Bernanke and his colleagues to raise interest rates at least one more time at their next meeting on March 28 .\tJJS NNS VBP NNP CC PRP$ NNS TO VB NN NNS IN JJS CD JJR NN IN PRP$ JJ NN IN NNP CD .\nA prison riot in Venezuela has killed seven inmates and wounded 11 more .\tDT NN NN IN NNP VBZ VBN CD NNS CC VBD CD JJR .\nPrison officials said the riot broke out late Monday , as inmates battled for control of cell blocks inside the prison west of Caracas .\tNN NNS VBD DT NN VBD IN JJ NNP , IN NNS VBD IN NN IN NN NNS IN DT NN NN IN NNP .\nIt is unclear whether prison authorities have quelled the riot .\tPRP VBZ JJ IN NN NNS VBP VBN DT NN .\nViolence is common in Venezuela 's overcrowded prisons , where about 20,000 inmates live in facilities built to hold 15,000 people .\tNN VBZ JJ IN NNP POS JJ NNS , WRB IN CD NNS VBP IN NNS VBN TO VB CD NNS .\nIraqi police have detained a Saudi militant found crossing the border into Iraq .\tJJ NNS VBP VBN DT JJ NN VBN VBG DT NN IN NNP .\nPolice said Abdullah Saleh al-Harbi is one of a group of militants that attacked a Saudi oil facility last week .\tNNS VBD NNP NNP NNP VBZ CD IN DT NN IN NNS WDT VBD DT JJ NN NN JJ NN .\nThey say al-Harbi claimed to be on his way to the northern Iraqi city of Mosul , where he was to meet al-Qaida contacts .\tPRP VBP NNP VBD TO VB IN PRP$ NN TO DT JJ JJ NN IN NNP , WRB PRP VBD TO VB NNP NNS .\nIraqi authorities say al-Harbi will be taken to Baghdad for interrogation .\tJJ NNS VBP NNP MD VB VBN IN NNP IN NN .\nHowever , Saudi officials have said the kingdom has no information about al-Harbi being a wanted militant .\tRB , NNP NNS VBP VBN DT NN VBZ DT NN IN NNP VBG DT JJ NN .\nThe arrest comes days after Saudi officials reported killing the leader of al-Qaida forces operating in the kingdom in a firefight .\tDT NN VBZ NNS IN NNP NNS VBD VBG DT NN IN NNP NNS VBG IN DT NN IN DT NN .\nAl-Qaida 's Saudi branch has claimed responsibility for last week 's failed attack on the oil facility and has vowed to hit other Saudi oil installations .\tNNP POS JJ NN VBZ VBN NN IN JJ NN POS JJ NN IN DT NN NN CC VBZ VBN TO VB JJ JJ NN NNS .\nExperts and policy makers from around the world have gathered in Cameroon to discuss new ways to battle malaria , which remains one of Africa 's main killers .\tNNS CC NN NNS IN IN DT NN VBP VBN IN NNP TO VB JJ NNS TO VB NN , WDT VBZ CD IN NNP POS JJ NNS .\nAbout 1,500 doctors , scientists and health workers are expected to attend the week-long Pan-Africa malaria conference in Cameroon 's capital , Yaounde .\tIN CD NNS , NNS CC NN NNS VBP VBN TO VB DT JJ NN NN NN IN NNP POS NN , NNP .\nThe event was organized by the Multilateral Initiative on Malaria , a global alliance of organizations .\tDT NN VBD VBN IN DT NNP NNP IN NNP , DT JJ NN IN NNS .\nTopics to be covered include new drug treatment methods , prevention techniques , and the development of a malaria vaccine .\tNNS TO VB VBN VBP JJ NN NN NNS , NN NNS , CC DT NN IN DT NN NN .\nThe deputy director of the London-based Gates Malaria Partnership , created four years ago by U.S. computer magnate Bill Gates , says the foundation recently approved grants to fund more malaria programs in Africa .\tDT NN NN IN DT JJ NNP NNP NNP , VBN CD NNS RB IN NNP NN NN NNP NNP , VBZ DT NN RB VBD NNS TO VB JJR NN NNS IN NNP .\nThe Multilateral Initiative on Malaria estimates that an African child dies from malaria every 30 seconds .\tDT NNP NNP IN NNP VBZ IN DT JJ NN VBZ IN NN DT CD NNS .\nU.S. National Security Advisor Stephen Hadley says he can not confirm reports that terror leader Musab al-Zarqawi has been seriously wounded in Iraq .\tNNP NNP NNP NNP NNP NNP VBZ PRP MD RB VB NNS IN NN NN NNP NNP VBZ VBN RB VBN IN NNP .\nBut Mr. Hadley told U.S. television that Zarqawi heads a lethal network and his death would lead to a significant difference in the level of violence in Iraqi .\tCC NNP NNP VBD NNP NN IN NNP VBZ DT JJ NN CC PRP$ NN MD VB TO DT JJ NN IN DT NN IN NN IN JJ .\nHis comments came after London 's Sunday Times quoted an Iraqi doctor who says he treated Zarqawi at a hospital in Ramadi on Wednesday .\tPRP$ NNS VBD IN NNP POS NNP NNP VBD DT JJ NN WP VBZ PRP VBD NNP IN DT NN IN NNP IN NNP .\nThe Times report says the doctor was debriefed by U.S. authorities on Friday .\tDT NNP NN VBZ DT NN VBD VBN IN NNP NNS IN NNP .\nThe doctor said the terrorist was bleeding heavily when treated and left despite recommendations that he remain under hospital care .\tDT NN VBD DT JJ VBD VBG RB WRB VBN CC VBN IN NNS IN PRP VBP IN NN NN .\nSaturday , the U.S. military ended a week-long offensive against insurgents holed up near the border town of al-Qaim .\tNNP , DT NNP NN VBD DT JJ NN IN NNS VBN RP IN DT NN NN IN NNP .\nAuthorities said nine Marines and 125 insurgents were killed in the fighting .\tNNS VBD CD NNS CC CD NNS VBD VBN IN DT NN .\nAfghan President Hamid Karzai has marked the Muslim holiday of Eid al-Fitr with a call for peace .\tJJ NNP NNP NNP VBZ VBN DT NNP NN IN NNP NNP IN DT NN IN NN .\nMr. Karzai called on Taliban militants Sunday to renounce violence and join the peace process .\tNNP NNP VBD IN NNP NNS NNP TO VB NN CC VB DT NN NN .\nHe says insurgents can lay down their arms and help rebuild their war-torn country .\tPRP VBZ NNS MD VB RP PRP$ NNS CC VB VB PRP$ JJ NN .\nMeanwhile , the Taliban 's leader has made his own statement for the festival of Eid .\tRB , DT NNP POS NN VBZ VBN PRP$ JJ NN IN DT NN IN NNP .\nMullah Omar warns that U.S. and NATO forces will face defeat in Afghanistan .\tNNP NNP VBZ IN NNP CC NNP NNS MD VB NN IN NNP .\nIn a statement Saturday , Omar said Westerners need only study Afghanistan 's history to see that they will fail .\tIN DT NN NNP , NNP VBD NNS VBP RB VB NNP POS NN TO VB IN PRP MD VB .\nThe Taliban leader is thought to be in Pakistan but has not been seen in public for years .\tDT NNP NN VBZ VBN TO VB IN NNP CC VBZ RB VBN VBN IN JJ IN NNS .\nAn Israeli newspaper reports that Prime Minister Ehud Olmert is urging the United States to impose a naval blockade on Iran in an effort to curb its controversial nuclear program .\tDT JJ NN NNS IN NNP NNP NNP NNP VBZ VBG DT NNP NNPS TO VB DT JJ NN IN NNP IN DT NN TO VB PRP$ JJ JJ NN .\nIsrael 's Haaretz newspaper says Wednesday that Mr. Olmert raised the issue during a meeting Monday with U.S. House of Representatives speaker Nancy Pelosi .\tNNP POS NNP NN VBZ NNP IN NNP NNP VBD DT NN IN DT NN NNP IN NNP NNP IN NNP NN NNP NNP .\nThe report says Mr. Olmert told Pelosi that the present economic sanctions on Iran have exhausted themselves , and that aggressive action could be taken that is not violent .\tDT NN VBZ NNP NNP VBD NNP IN DT JJ JJ NNS IN NNP VBP VBN PRP , CC IN JJ NN MD VB VBN DT VBZ RB JJ .\nAccording to the article , Mr. Olmert says international restrictions also should be placed on Iranian aircraft , business executives and senior officials .\tVBG TO DT NN , NNP NNP VBZ JJ NNS RB MD VB VBN IN JJ NN , NN NNS CC JJ NNS .\nIsraeli government spokesman Mark Regev would not confirm the information .\tJJ NN NN NNP NNP MD RB VB DT NN .\nThe United States , Israel and other countries accuse Iran of trying to develop nuclear weapons under cover of a civilian energy program .\tDT NNP NNPS , NNP CC JJ NNS VBP NNP IN VBG TO VB JJ NNS IN NN IN DT JJ NN NN .\nIran denies the charges .\tNNP VBZ DT NNS .\nIsraeli troops have killed two Islamic Jihad militants in a clash near the West Bank town of Jenin .\tJJ NNS VBP VBN CD NNP NNP NNS IN DT NN IN DT NNP NNP NN IN NNP .\nIslamic Jihad says one of the two militants who died in the gun battle was a top leader of the group , Nidal Abu Saada .\tNNP NNP VBZ CD IN DT CD NNS WP VBD IN DT NN NN VBD DT JJ NN IN DT NN , NNP NNP NNP .\nIsraeli and Palestinian officials said Israeli troops had surrounded a house near Jenin in order to arrest the militants when gunfire broke out .\tJJ CC JJ NNS VBD JJ NNS VBD VBN DT NN IN NNP IN NN TO VB DT NNS WRB NN VBD RP .\nIslamic Jihad has carried out a string of recent suicide attacks in Israel .\tNNP NNP VBZ VBN RP DT NN IN JJ NN NNS IN NNP .\nElsewhere in the West Bank , Israeli soldiers prepared to evict Jewish settlers and activists from a hilltop settlement , a section of Amona , near Ramallah .\tRB IN DT NNP NNP , JJ NNS VBD TO VB JJ NNS CC NNS IN DT NN NN , DT NN IN NNP , IN NNP .\nHundreds of settler activists entered the area Tuesday in an attempt to resist the eviction , planned for Wednesday .\tNNS IN NN NNS VBD DT NN NNP IN DT NN TO VB DT NN , VBN IN NNP .\nA British newspaper quotes Britain 's top military commander in Baghdad as saying the first pull-out of British troops from Iraq could begin in a matter of months , with a final withdrawal by mid-2008 .\tDT JJ NN VBZ NNP POS JJ JJ NN IN NNP IN VBG DT JJ NN IN JJ NNS IN NNP MD VB IN DT NN IN NNS , IN DT JJ NN IN NN .\nThe Daily Telegraph quotes General Nick Houghton as saying a withdrawal plan is under consideration .\tDT NNP NNP VBZ NNP NNP NNP IN VBG DT NN NN VBZ IN NN .\nThe Telegraph Tuesday quotes General Houghton as saying a pull-out over two years would prevent Britain 's 8,000 troops from ' overstaying our welcome ' , while allowing time for Iraqi security forces to consolidate .\tDT NNP NNP VBZ NNP NNP IN VBG DT NN IN CD NNS MD VB NNP POS CD NNS IN `` VBG PRP$ JJ `` , IN VBG NN IN JJ NN NNS TO VB .\nBritain 's Defense Ministry says the general 's plan depends on conditions in Iraq .\tNNP POS NNP NNP VBZ DT NN POS NN VBZ IN NNS IN NNP .\nAnd the chairman of the U.S. Joint Chiefs of Staff General Peter Pace Sunday flatly denied recent media reports of a scheduled withdrawal of American and British forces .\tCC DT NN IN DT NNP NNP NNP IN NNP NNP NNP NNP NNP RB VBD JJ NNS NNS IN DT VBN NN IN NNP CC JJ NNS .\nBritish and U.S. officials have repeatedly stressed that coalition commanders would assess conditions on the ground and adjust troop levels as necessary .\tJJ CC NNP NNS VBP RB VBN IN NN NNS MD VB NNS IN DT NN CC VB NN NNS IN JJ .\nThe great-granddaughter of South Africa 's anti-apartheid leader Nelson Mandela has been killed in a car crash as she traveled home from the concert kick-off for the 2010 soccer World Cup .\tDT NN IN NNP NNP POS JJ NN NNP NNP VBZ VBN VBN IN DT NN NN IN PRP VBD NN IN DT NN NN IN DT CD NN NNP NNP .\nThe Nelson Mandela Foundation said Zenani Mandela died in the one-car accident on a Johannesburg highway .\tDT NNP NNP NNP VBD NNP NNP VBD IN DT JJ NN IN DT NNP NN .\nIt said no one else was injured in the crash .\tPRP VBD DT NN RB VBD VBN IN DT NN .\nPolice in Johannesburg have charged the driver with drunk driving and say they are considering ' culpable homicide ' charges as well .\tNNS IN NNP VBP VBN DT NN IN JJ NN CC VBP PRP VBP VBG `` JJ NN `` NNS RB RB .\nZenani had celebrated her 13th birthday only two days earlier .\tNNP VBD VBN PRP$ JJ NN RB CD NNS RBR .\nShe is one of nine great-grandchildren of Mr. Mandela , who was South Africa 's first black president .\tPRP VBZ CD IN CD NNS IN NNP NNP , WP VBD NNP NNP POS JJ JJ NN .\nThe foundation said the Mandela family asked for privacy as they mourned their loss .\tDT NN VBD DT NNP NN VBD IN NN IN PRP VBD PRP$ NN .\nThe World Cup soccer championship officially begins Friday , with a match-up between South Africa and Mexico in Johannesburg .\tDT NNP NNP NN NN RB VBZ NNP , IN DT NN IN NNP NNP CC NNP IN NNP .\nIraqi authorities have freed more prisoners under a national reconciliation plan announced last week by Prime Minister Nouri al-Maliki .\tJJ NNS VBP VBN RBR NNS IN DT JJ NN NN VBN JJ NN IN NNP NNP NNP NNP .\nSeveral hundred detainees were released Thursday from the U.S.-run Abu Ghraib prison , west of Baghdad , and other facilities across the country .\tJJ CD NNS VBD VBN NNP IN DT JJ NNP NNP NN , NN IN NNP , CC JJ NNS IN DT NN .\nU.S. officials say more prisoners will be freed Friday .\tNNP NNS VBP JJR NNS MD VB VBN NNP .\nSome 600 prisoners were released last week .\tDT CD NNS VBD VBN JJ NN .\nMr. Maliki has promised to free 2,500 prisoners by the end of the month to foster ' reconciliation and national dialogue . '\tNNP NNP VBZ VBN TO VB CD NNS IN DT NN IN DT NN TO VB `` NN CC JJ NN . ``\nAuthorities say those being freed are not involved in violent crimes or had been detained by mistake .\tNNS VBP DT VBG VBN VBP RB VBN IN JJ NNS CC VBD VBN VBN IN NN .\nNew computing device will have web browsing , video-conferencing capabilities , ability to run on solar power , says HRD Minister Sibal India has created a prototype for a $ 35 touch-screen laptop that it hopes to make available to thousands of students .\tJJ NN NN MD VB JJ NN , JJ NNS , NN TO VB IN JJ NN , VBZ NNP NNP NNP NNP VBZ VBN DT NN IN DT $ CD JJ NN IN PRP VBZ TO VB JJ TO NNS IN NNS .\nIndia 's Human Resource Development Minister Kapil Sibal says the computing device will have web browsing and video-conferencing capabilities .\tNNP POS NNP NNP NNP NNP NNP NNP VBZ DT NN NN MD VB JJ NN CC NN NNS .\nThe iPad-like gadget will also have the ability to run on solar power .\tDT JJ NN MD RB VB DT NN TO VB IN JJ NN .\nThe Linux-based computer , introduced by the Indian Institute of Technology and the Indian Institute of Science , should be available by 2011 .\tDT JJ NN , VBN IN DT JJ NNP IN NNP CC DT JJ NNP IN NNP , MD VB JJ IN CD .\nSibal says there are plans for the device to become even cheaper , with the price dropping to $ 20 and eventually $ 10 .\tNNP VBZ EX VBP NNS IN DT NN TO VB RB JJR , IN DT NN VBG TO $ CD CC RB $ CD .\nThe inexpensive laptop is part of a nationwide Indian education initiative that also includes installing broadband capabilities on the nation 's more than 22,000 college campuses .\tDT JJ NN VBZ NN IN DT JJ JJ NN NN WDT RB VBZ VBG NN NNS IN DT NN POS JJR IN CD NN NNS .\nEvery two to four years , the Perito Moreno Glacier in Los Glacieres National Park , Argentina breaks apart .\tDT CD CC CD NNS , DT NNP NNP NNP IN NNP NNP NNP NNP , NNP VBZ RB .\nIt 's a spectacular sight that attracts thousands .\tPRP VBZ DT JJ NN WDT VBZ NNS .\nThis year , for the first time in memory , the breakup took place during the southern hemisphere 's winter .\tDT NN , IN DT JJ NN IN NN , DT NN VBD NN IN DT JJ NN POS NN .\nVOA 's Paul Sisco has more .\tNNP POS NNP NNP VBZ RBR .\nBolivian President Evo Morales says he will not agree to a U.S. request to return weapons and equipment in an ongoing disagreement over the naming of a new commander for Bolivia 's counterterrorism unit .\tJJ NNP NNP NNP VBZ PRP MD RB VB TO DT NNP NN TO VB NNS CC NN IN DT JJ NN IN DT NN IN DT JJ NN IN NNP POS NN NN .\nMr. Morales responded Tuesday to a written request by the U.S. Embassy that objected to the new unit commander .\tNNP NNP VBD NNP TO DT VBN NN IN DT NNP NNP WDT VBD TO DT JJ NN NN .\nMr. Morales has called the U.S. request blackmail .\tNNP NNP VBZ VBN DT NNP NN NN .\nU.S. officials have confirmed that Washington will cancel its counterterrorism programs in Bolivia after its decision last week to drop the country from its list of anti-terrorism partners .\tNNP NNS VBP VBN IN NNP MD VB PRP$ NN NNS IN NNP IN PRP$ NN JJ NN TO VB DT NN IN PRP$ NN IN JJ NNS .\nThe lawyer for jailed Iranian-American journalist Roxana Saberi says an Iranian court will hear the appeal against her jail sentence on Sunday .\tDT NN IN JJ JJ NN NNP NNP VBZ DT JJ NN MD VB DT NN IN PRP$ NN NN IN NNP .\nLawyer Abdolsamad Khorramshahi made the announcement Saturday .\tNNP NNP NNP VBD DT NN NNP .\nIt is not clear how long it will take the court to render a verdict in the case of Saberi , who was sentenced to eight years in prison last month on espionage charges .\tPRP VBZ RB JJ WRB RB PRP MD VB DT NN TO VB DT NN IN DT NN IN NNP , WP VBD VBN TO CD NNS IN NN JJ NN IN NN NNS .\nHer family and the U.S. government say the charges against her are baseless .\tPRP$ NN CC DT NNP NN VBP DT NNS IN PRP VBP JJ .\nSaberi 's father , Reza Saberi , says the 32-year-old freelance journalist ended a hunger strike Monday after refusing to eat for nearly two weeks .\tNNP POS NN , NNP NNP , VBZ DT JJ NN NN VBD DT NN NN NNP IN VBG TO VB IN RB CD NNS .\nIran has criticized international involvement in the case , saying the judiciary is independent and outside interference contradicts international norms .\tNNP VBZ VBN JJ NN IN DT NN , VBG DT NN VBZ JJ CC JJ NN VBZ JJ NNS .\nThe former head of a self-proclaimed Serb republic in Croatia has gone on trial before The Hague tribunal on charges of war crimes and violating the laws and customs of war .\tDT JJ NN IN DT JJ JJ NN IN NNP VBZ VBN IN NN IN DT NNP NN IN NNS IN NN NNS CC VBG DT NNS CC NNS IN NN .\nMilan Martic is accused of murder , torture and ethnic cleansing of Croats and Muslims in Croatia and Bosnia-Herzegovina .\tNNP NNP VBZ VBN IN NN , NN CC JJ NN IN NNS CC NNS IN NNP CC NNP .\nHe is accused of actively supporting a criminal enterprise aimed at expelling Croats and Muslims from certain areas of the two countries with the goal of eventually including the regions in a future greater Serbia .\tPRP VBZ VBN IN RB VBG DT JJ NN VBN IN VBG NNS CC NNS IN JJ NNS IN DT CD NNS IN DT NN IN RB VBG DT NNS IN DT JJ JJR NNP .\nThe indictment mentions that in 1995 , Mr. Martic ordered the bombardment by Serb artillery of downtown Zagreb , the Croatian capital .\tDT NN VBZ IN IN CD , NNP NNP VBD DT NN IN JJ NN IN NN NNP , DT JJ NN .\nThe attacks caused seven deaths and numerous injuries .\tDT NNS VBD CD NNS CC JJ NNS .\nAt the time of the attacks , Mr. Martic was head of the self-proclaimed Republic of Serbian Krajina , a Serb entity opposing Croatia 's independence from Yugoslavia .\tIN DT NN IN DT NNS , NNP NNP VBD NN IN DT JJ NNP IN JJ NNP , DT JJ NN VBG NNP POS NN IN NNP .\nIranian media is reporting that the country 's armed forces have staged a mock interception of six foreign planes since the start of a series of military exercises Tuesday .\tJJ NNS VBZ VBG IN DT NN POS JJ NNS VBP VBN DT JJ NN IN CD JJ NNS IN DT NN IN DT NN IN JJ NNS NNP .\nThe reports Wednesday quote a military exercise spokesman , General Hamid Arjangi , as saying ' hypothetical enemy planes ' crossed into Iranian air space but were turned back by Iranian fighter jets and artillery systems .\tDT NNS NNP VBP DT JJ NN NN , NNP NNP NNP , IN VBG `` JJ NN NNS `` VBD IN JJ NN NN CC VBD VBN RB IN JJ NN NNS CC NN NNS .\nOfficial Iranian media blasted foreign press agencies that quoted state officials Wednesday as saying unknown foreign aircraft violated Iranian airspace .\tNNP JJ NNS VBD JJ NN NNS WDT VBD NN NNS NNP IN VBG JJ JJ NN VBD JJ NN .\nIran is in its second day of the its air force 's five-day military exercise to test the country 's ability to deter air strikes .\tNNP VBZ IN PRP$ JJ NN IN DT PRP$ NN NN POS JJ JJ NN TO VB DT NN POS NN TO VB NN NNS .\nThe war games are being held near nuclear facilities .\tDT NN NNS VBP VBG VBN IN JJ NNS .\nIran says the exercises include tests of long-range missiles .\tNNP VBZ DT NNS VBP NNS IN JJ NNS .\nTehran says it is the biggest exercise of its kind in the country .\tNNP VBZ PRP VBZ DT JJS NN IN PRP$ NN IN DT NN .\nTehran conducts war games several times a year , often showcasing new military systems .\tNNP VBZ NN NNS JJ NNS DT NN , RB VBG JJ JJ NNS .\nAt least 10 people are dead after Typhoon Conson struck the main Philippine island Luzon Wednesday .\tIN JJS CD NNS VBP JJ IN NNP NNP VBD DT JJ JJ NN NNP NNP .\nThe typhoon struck the capital city Manila and surrounding areas Wednesday morning , carrying maximum wind gusts of 120 kilometers an hour .\tDT NN VBD DT NN NN NNP CC VBG NNS NNP NN , VBG JJ NN NNS IN CD NNS DT NN .\nElectricity was knocked out throughout Luzon , with tree branches and other debris left scattered across rain-swept streets .\tNN VBD VBN RP IN NNP , IN NN NNS CC JJ NN VBN VBN IN JJ NNS .\nThe dead include four people who drowned and two others killed by falling trees .\tDT JJ VBP CD NNS WP VBD CC CD NNS VBN IN VBG NNS .\nAt least 40 people are missing , including 11 fishermen last spotted off the coast of the central island Catandunes .\tIN JJS CD NNS VBP VBG , VBG CD NNS JJ JJ IN DT NN IN DT JJ NN NNS .\nTyphoon Conson headed out over the South China Sea after striking Luzon .\tNN NNP VBD RP IN DT NNP NNP NNP IN VBG NNP .\nDuring a meeting of the government 's National Disaster Coordinating Council Wednesday , new Philippine President Benigno Aquino scolded the government 's weather bureau for failing to predict the storm would hit Manila .\tIN DT NN IN DT NN POS NNP NNP NNP NNP NNP , JJ JJ NNP NNP NNP VBD DT NN POS NN NN IN VBG TO VB DT NN MD VB NNP .\nExperts studying the flooding of New Orleans after Hurricane Katrina say the breach of key floodwalls might have been caused by soft soil under the walls , a problem the Army Corps of Engineers had been warned about .\tNNS VBG DT NN IN NNP NNP IN NNP NNP VBP DT NN IN JJ NNS MD VB VBN VBN IN JJ NN IN DT NNS , DT NN DT NNP NNP IN NNPS VBD VBN VBN IN .\nEngineers from the American Society of Civil Engineers and the University of California at Berkeley said Friday there was no evidence that the floodwaters surged over the tops of the floodwalls at 17th Street or London Avenue Canals , as previously thought .\tNNS IN DT NNP NNP IN NNP NNPS CC DT NNP IN NNP IN NNP VBD NNP EX VBD DT NN IN DT NNS VBD IN DT NNS IN DT NNS IN CD NNP CC NNP NNP NNP , IN RB VBN .\nInstead , they said , soft soil may have given way underneath the walls - a danger a contracting company pointed out to the Army Corps of Engineers in the early 1990s .\tRB , PRP VBD , JJ NN MD VB VBN NN IN DT NNS IN DT NN DT NN NN VBD RP TO DT NNP NNP IN NNPS IN DT JJ NNS .\nIn one section of the 17th Street canal , a levee embankment had moved more than 10 meters from its original spot .\tIN CD NN IN DT JJ NNP NN , DT NN NN VBD VBN RBR IN CD NNS IN PRP$ JJ NN .\nThe experts also said they found at least 10 breaches and possibly more in the walls .\tDT NNS RB VBD PRP VBD IN JJS CD NNS CC RB RBR IN DT NNS .\nNorway says it will allow hunters to kill more than one thousand whales next year - the highest number allowed since the country resumed commercial whaling more than a decade ago .\tNNP VBZ PRP MD VB NNS TO VB JJR IN CD CD NNS JJ NN IN DT JJS NN VBN IN DT NN VBD JJ VBG JJR IN DT NN RB .\nNorway 's Fisheries Ministry said Wednesday it will raise the quota of minke whales that can be culled by 30 percent , to 1 , 52 whales .\tNNP POS NNP NNP VBD NNP PRP MD VB DT NN IN JJ NNS WDT MD VB VBN IN CD NN , TO CD , CD NNS .\nThe Norwegian parliament approved the higher quota in a unanimous vote .\tDT JJ NN VBD DT JJR NN IN DT JJ NN .\nNorway has said there are more than enough minke whales in the North Atlantic to sustain increased hunting .\tNNP VBZ VBN EX VBP JJR IN RB JJ NNS IN DT NNP NNP TO VB VBN NN .\nBut for the past two years , Norwegian whale hunters have fallen short of the quotas .\tCC IN DT JJ CD NNS , JJ NN NNS VBP VBN JJ IN DT NNS .\nNorway is the only country that allows commercial whaling , in defiance of a global ban imposed by the International Whaling Commission in 1986 .\tNNP VBZ DT JJ NN WDT VBZ JJ NN , IN NN IN DT JJ NN VBN IN DT NNP NNP NNP IN CD .\nAl-Qaida leader Osama bin Laden has warned the European Union that there will be a strong reaction against cartoons of the Prophet Mohammed published in European newspapers .\tNNP NN NNP NNP NNP VBZ VBN DT NNP NNP IN EX MD VB DT JJ NN IN NNS IN DT NNP NNP VBN IN JJ NNS .\nIn an audio recording posted to an al-Qaida-affiliated Web site late Wednesday , a voice said to be bin-Laden 's described the publishing of the cartoons as part of a new crusade against Islam that involved Pope Benedict - head of the Catholic Church .\tIN DT NN NN VBN TO DT JJ NN NN JJ NNP , DT NN VBN TO VB NNP POS VBD DT NN IN DT NNS IN NN IN DT JJ NN IN NNP WDT VBD NNP NNP : NN IN DT NNP NNP .\nSatirical cartoons featuring Islam 's Prophet Mohammed were published in Danish newspapers in 2006 , sparking mass riots in Islamic nations worldwide .\tJJ NNS VBG NNP POS NNP NNP VBD VBN IN JJ NNS IN CD , VBG NN NNS IN JJ NNS NN .\nBin-Laden 's latest recorded statement , entitled ' The response will be what you see , not what you hear ' comes on the fifth anniversary of the U.S.-led invasion of Iraq .\tNNP POS JJS JJ NN , VBN `` DT NN MD VB WP PRP VBP , RB WP PRP VBP `` VBZ IN DT JJ NN IN DT JJ NN IN NNP .\nThe message is bin Laden 's first public statement since late last year .\tDT NN VBZ NNP NNP POS JJ JJ NN IN JJ JJ NN .\nUnited Nations agencies say it will cost up to $ 50 million to clean up an oil spill caused by Israel 's bombing of a Lebanese power plant last month .\tNNP NNPS NNS VBP PRP MD VB RP TO $ CD CD TO VB RP DT NN NN VBN IN NNP POS NN IN DT JJ NN NN JJ NN .\nU.N. officials met experts from Lebanon , Greece , Syria , Turkey and the European Union Thursday in Athens to discuss the 15,000-ton oil slick .\tNNP NNS VBD NNS IN NNP , NNP , NNP , NNP CC DT NNP NNP NNP IN NNP TO VB DT JJ NN NN .\nAuthorities say four weeks of fighting following the spill kept them from assessing the damage , but they say this week 's cease-fire makes it possible to deal with it .\tNNS VBP CD NNS IN VBG VBG DT NN VBD PRP IN VBG DT NN , CC PRP VBP DT NN POS NN VBZ PRP JJ TO VB IN PRP .\nOfficials warn the spill has already caused severe damage to the coastline and may also have badly affected the region 's marine life .\tNNS VBP DT NN VBZ RB VBN JJ NN TO DT NN CC MD RB VB RB VBN DT NN POS JJ NN .\nDubai Ports World says it will take months to sell its holdings in the United States , and these assets are worth ' hundreds of millions ' of dollars .\tNNP NNP NNP VBZ PRP MD VB NNS TO VB PRP$ NNS IN DT NNP NNPS , CC DT NNS VBP JJ `` NNS IN NNS `` IN NNS .\nDP World was in the middle of a recent political storm in the U.S. after the company , based in the United Arab Emirates , purchased facilities in ports around the world , including some U.S. container and passenger terminals .\tNNP NNP VBD IN DT NN IN DT JJ JJ NN IN DT NNP IN DT NN , VBN IN DT NNP NNP NNPS , VBN NNS IN NNS IN DT NN , VBG DT NNP NN CC NN NNS .\nMembers of the U.S. Congress and others expressed concern that DP World would not do enough to protect U.S. ports from terror attack .\tNNS IN DT NNP NNP CC NNS VBD NN IN NNP NNP MD RB VB RB TO VB NNP NNS IN NN NN .\nDP World said last week that it would ' transfer ' its U.S. holdings to a U.S. entity , but gave few details .\tNNP NNP VBD JJ NN IN PRP MD `` VB `` PRP$ NNP NNS TO DT NNP NN , CC VBD JJ NNS .\nIsraeli Prime Minister Ariel Sharon has been rushed to a Jerusalem hospital after suffering his second stroke in less than three weeks .\tJJ NNP NNP NNP NNP VBZ VBN VBN TO DT NNP NN IN VBG PRP$ JJ NN IN JJR IN CD NNS .\nDoctors at Hadassah Hospital said the stroke Wednesday was ' significant , ' and that Mr. Sharon was given anesthetic after being admitted to the clinic .\tNNS IN NNP NNP VBD DT NN NNP VBD `` JJ , `` CC IN NNP NNP VBD VBN JJ IN VBG VBN TO DT NN .\nThe prime minister 's office said that while Mr. Sharon was under anesthetic , his duties were transferred to his deputy , Ehud Olmert .\tDT JJ NN POS NN VBD IN IN NNP NNP VBD IN JJ , PRP$ NNS VBD VBN TO PRP$ NN , NNP NNP .\nEarlier , his office said the 77-year-old was being accompanied by his personal physician as he was taken to the hospital from his ranch in southern Israel .\tRB , PRP$ NN VBD DT JJ VBD VBG VBN IN PRP$ JJ NN IN PRP VBD VBN TO DT NN IN PRP$ NN IN JJ NNP .\nMr. Sharon was admitted to the same hospital where he was to undergo a procedure Thursday to correct a defect in his heart .\tNNP NNP VBD VBN TO DT JJ NN WRB PRP VBD TO VB DT NN NNP TO VB DT NN IN PRP$ NN .\nThat procedure was ordered after Mr. Sharon suffered a mild stroke last month .\tDT NN VBD VBN IN NNP NNP VBD DT JJ NN JJ NN .\nA group of Indian left wing activists has protested the planned entry of U.S. retailer Wal-Mart into India 's retail market .\tDT NN IN NNP VBD VBG NNS VBZ VBN DT JJ NN IN NNP NN NNP IN NNP POS JJ NN .\nAbout 100 demonstrators rallied outside Indian government offices in the capital , New Delhi , Thursday demanding Wal-Mart stay out of the country .\tIN CD NNS VBD JJ JJ NN NNS IN DT NN , NNP NNP , NNP VBG JJ NN IN IN DT NN .\nThe world 's largest retailer is planning to set up a chain of stores in India as part of a joint venture with India 's Bharti Retail .\tDT NN POS JJS NN VBZ VBG TO VB RP DT NN IN NNS IN NNP IN NN IN DT JJ NN IN NNP POS NNP NNP .\nWal-Mart 's vice chairman , Michael Duke , visited shopping malls in Mumbai today to learn more about the Indian retail sector .\tNNP POS NN NN , NNP NNP , VBD NN NNS IN NNP NN TO VB RBR IN DT JJ JJ NN .\nHe is to have talks on the joint venture with Bharti officials in New Delhi Friday .\tPRP VBZ TO VB NNS IN DT JJ NN IN NNP NNS IN NNP NNP NNP .\nIndia 's retail industry is dominated by small shopkeepers who fear that the entry of large retailers could put many of them out of business .\tNNP POS JJ NN VBZ VBN IN JJ NNS WP VBP IN DT NN IN JJ NNS MD VB NN IN PRP IN IN NN .\nA Republican-led U.S. Senate committee has rejected a proposed investigation of the Bush administration 's domestic surveillance program .\tDT JJ NNP NNP NN VBZ VBN DT JJ NN IN DT NNP NN POS JJ NN NN .\nThe Senate Intelligence Committee voted along party lines Tuesday to reject the proposal by Senator Jay Rockefeller , a Democrat .\tDT NNP NNP NNP VBD IN NN NNS NNP TO VB DT NN IN NNP NNP NNP , DT NNP .\nChairman Pat Roberts said the committee agreed to create a subcommittee for ' enhanced oversight ' of the program , in which the government monitors phone conversations and e-mails between people in the United States and suspected terrorists abroad without court approval .\tNN NNP NNP VBD DT NN VBD TO VB DT NN IN `` JJ NN `` IN DT NN , IN WDT DT NN VBZ NN NNS CC NNS IN NNS IN DT NNP NNPS CC VBN NNS RB IN NN NN .\nAlso Tuesday , the U.S. House of Representatives passed a bill extending the anti-terrorism law known as the U.S.A .\tRB NNP , DT NNP NNP IN NNPS VBD DT NN VBG DT JJ NN VBN IN DT NN .\nPatriot Act , which was first enacted after the September 11 , 2001 attacks in the United States .\tNNP NNP , WDT VBD JJ VBN IN DT NNP CD , CD NNS IN DT NNP NNPS .\nThe Patriot Act expands the government 's power to obtain private records , conduct wiretaps and share information between agencies .\tDT NNP NNP VBZ DT NN POS NN TO VB JJ NNS , VB NNS CC VB NN IN NNS .\nCritics say it threatens civil liberties .\tNNS VBP PRP VBZ JJ NNS .\nCuba says it has restored formal relations with Spain , a year after the European Union imposed diplomatic sanctions on the communist island .\tNNP VBZ PRP VBZ VBN JJ NNS IN NNP , DT NN IN DT NNP NNP VBD JJ NNS IN DT JJ NN .\nCuban Foreign Minister Felipe Perez Roque announced the decision Thursday , shortly before a meeting in Havana with new Spanish Ambassador Carlos Zaldivar .\tJJ NNP NNP NNP NNP NNP VBD DT NN NNP , RB IN DT NN IN NNP IN JJ JJ NNP NNP NNP .\nThe European Union imposed the sanctions after Cuba 's 2003 detainment of 75 dissidents , and the execution of three men who tried to hijack a ferry to the United States .\tDT NNP NNP VBD DT NNS IN NNP POS CD NN IN CD NNS , CC DT NN IN CD NNS WP VBD TO VB DT NN TO DT NNP NNPS .\nNo additional information has been given by either government .\tDT JJ NN VBZ VBN VBN IN DT NN .\nSnow , freezing rain , gusting winds and record low temperatures in Europe are claiming lives and making for treacherous travel across the continent .\tNN , VBG NN , VBG NNS CC NN JJ NNS IN NNP VBP VBG NNS CC VBG IN JJ NN IN DT NN .\nAs many as 25 deaths have been reported .\tRB JJ IN CD NNS VBP VBN VBN .\nAuthorities say many of the victims are homeless people who died as a result of exposure to the brutal winter elements .\tNNS VBP NN IN DT NNS VBP JJ NNS WP VBD IN DT NN IN NN TO DT JJ NN NNS .\nVehicle accidents on ice-covered roads have caused many injuries and closed highways .\tNN NNS IN JJ NNS VBP VBN JJ NNS CC JJ NNS .\nThe M-1 motorway connecting Budapest with Vienna was closed Friday after a multi-car pile-up that killed a boy .\tDT NNP NN VBG NNP IN NNP VBD VBN NNP IN DT JJ NN WDT VBD DT NN .\nIn Slovakia , the Bratislava-Trnava highway was closed after a 40-car accident killed at least one person and injured 20 others .\tIN NNP , DT NNP NN VBD VBN IN DT JJ NN VBN IN JJS CD NN CC VBD CD NNS .\nThe storms disrupted rail , road and air transport across the region .\tDT NNS VBD NN , NN CC NN NN IN DT NN .\nElectricity outages were reported Friday in Austria and Sweden .\tNN NNS VBD VBN NNP IN NNP CC NNP .\nNew Year 's revelers across Europe are being advised to take measures to protect themselves against the extreme weather conditions .\tNNP NNP POS NNS IN NNP VBP VBG VBN TO VB NNS TO VB PRP IN DT JJ NN NNS .\nThousands of French workers have marched through Paris and other cities protesting planned government pension reforms as fishermen continued protests against soaring fuel costs .\tNNS IN JJ NNS VBP VBN IN NNP CC JJ NNS VBG JJ NN NN NNS IN NNS VBD NNS IN VBG NN NNS .\nPolice say about 30,000 protesters marched in the French capital and tens of thousands in other cities protesting changes that will require them to work 41 years to get a pension , an increase of one year .\tNNS VBP IN CD NNS VBD IN DT JJ NN CC NNS IN NNS IN JJ NNS VBG NNS WDT MD VB PRP TO VB CD NNS TO VB DT NN , DT NN IN CD NN .\nTrade union officials put the number of protesters nationwide at 7,00,000 .\tNN NN NNS VBD DT NN IN NNS JJ IN CD .\nThe protests hobbled train traffic .\tDT NNS VBD NN NN .\nBut subway service in Paris has been largely unaffected .\tCC NN NN IN NNP VBZ VBN RB JJ .\nMeanwhile , fishermen rejected as inadequate a new government package aimed at compensating them for soaring fuel prices and continued blocking entry to some ports .\tRB , NNS VBD IN JJ DT JJ NN NN VBN IN VBG PRP IN VBG NN NNS CC VBD VBG NN TO DT NNS .\nA nine-day strike by transportation workers last November cost the French economy an estimated $ 400 million a day .\tDT JJ NN IN NN NNS JJ NNP VBD DT JJ NN DT VBN $ CD CD DT NN .\nStrikes in 1995 forced then-President Jacques Chirac to back down from reform plans .\tNNS IN CD VBD JJ NNP NNP TO VB RP IN NN NNS .\nItalian soldiers have begun arriving in western Afghanistan , under plans by NATO to expand its peacekeeping mission in the country .\tJJ NNS VBP VBN VBG IN JJ NNP , IN NNS IN NNP TO VB PRP$ NN NN IN DT NN .\nThe Turkish commander of the International Security Assistance Force in Afghanistan , Lieutenant General Ethem Erdagi , said an initial deployment of Italian troops started to arrive today in the main western city of Herat .\tDT JJ NN IN DT NNP NNP NNP NNP IN NNP , NNP NNP NNP NNP , VBD DT JJ NN IN JJ NNS VBD TO VB NN IN DT JJ JJ NN IN NNP .\nSoldiers from Spain , Greece and Lithuania are due in the region later .\tNNS IN NNP , NNP CC NNP VBP JJ IN DT NN RB .\nNATO took command of ISAF in 2003 .\tNNP VBD NN IN NNP IN CD .\nUntil now , its peacekeeping troops have only been deployed in the Afghan capital Kabul and the north of the country .\tIN RB , PRP$ NN NNS VBP RB VBN VBN IN DT JJ NN NNP CC DT NN IN DT NN .\nNATO defense ministers meeting in France last month approved plans to expand the peacekeeping mission .\tNNP NN NNS VBG IN NNP JJ NN VBD NNS TO VB DT NN NN .\nThe United States has been pressing for the expansion to relieve pressure on stretched American forces .\tDT NNP NNPS VBZ VBN VBG IN DT NN TO VB NN IN JJ JJ NNS .\nPolice on horseback charged into crowds of angry British students demonstrating in central London on Thursday to protest university tuition hikes .\tNNS IN NN VBN IN NNS IN JJ JJ NNS VBG IN JJ NNP IN NNP TO VB NN NN NNS .\nLawmakers inside Parliament voted in favor of a controversial bill raising university fees in England , part of the government 's larger austerity plan .\tNNS IN NNP VBD IN NN IN DT JJ NN VBG NN NNS IN NNP , NN IN DT NN POS JJR NN NN .\nGovernment officials have said the increases , which triple the current fees , are necessary to maintain the high quality of education in universities .\tNN NNS VBP VBN DT NNS , WDT RB DT JJ NNS , VBP JJ TO VB DT JJ NN IN NN IN NNS .\nRiot police wielding batons scuffled with some students in front of London 's Houses of Parliament as they pushed up against a police barricade .\tNN NNS VBG NNS VBN IN DT NNS IN NN IN NNP POS NNS IN NNP IN PRP VBD RP IN DT NN NN .\nStudents threw sticks at police and set off smoke bombs in front of the horses .\tNNS VBD NNS IN NN CC VBD RP NN NNS IN NN IN DT NNS .\nTelevision coverage showed at least one demonstrator being handcuffed , and one police officer on the ground .\tNN NN VBD IN JJS CD NN VBG VBN , CC CD NN NN IN DT NN .\nIt was the latest in a series of student protests against the fee hike , which would raise the yearly bill to about $ 14,000 .\tPRP VBD DT JJS IN DT NN IN NN NNS IN DT NN NN , WDT MD VB DT JJ NN TO IN $ CD .\nChinese Premier Wen Jiabao is ruling out plans to allow more democracy in China 's near future because he says the country must focus first on economic development .\tJJ NNP NNP NNP VBZ VBG RP NNS TO VB JJR NN IN NNP POS JJ NN IN PRP VBZ DT NN MD VB RB IN JJ NN .\nIn a speech published by China 's state-run media Tuesday , Mr. Wen said that China will remain in the primary state of socialism for a long time .\tIN DT NN VBN IN NNP POS JJ NNS NNP , NNP NNP VBD IN NNP MD VB IN DT JJ NN IN NN IN DT JJ NN .\nMr. Wen did say , however , that China would develop its own democratic policies , and that a socialist system is not contradictory to those policies .\tNNP NNP VBD VB , RB , IN NNP MD VB PRP$ JJ JJ NNS , CC IN DT JJ NN VBZ RB JJ TO DT NNS .\nChina 's annual parliamentary session is to open next week , with economic reform and social issues expected to be a core focus .\tNNP POS JJ JJ NN VBZ TO VB JJ NN , IN JJ NN CC JJ NNS VBD TO VB DT NN NN .\nChina 's economy has grown tremendously in recent years .\tNNP POS NN VBZ VBN RB IN JJ NNS .\nBut leaders of China 's one-party system have carried out only limited democratic and political reforms .\tCC NNS IN NNP POS JJ NN VBP VBN RP RB JJ JJ CC JJ NNS .\nThe leader of Northern Ireland 's leading Protestant party is warning that the peace process in the British province is at risk unless the Irish Republican Army takes immediate steps toward disarming .\tDT NN IN NNP NNP POS VBG JJ NN VBZ VBG IN DT NN NN IN DT JJ NN VBZ IN NN IN DT JJ NNP NNP VBZ JJ NNS IN VBG .\nDemocratic Unionist Party leader Ian Paisley said he is amazed that with only days ahead of the British and Irish government deadline for agreement , the Catholic IRA has not contacted monitors who are to oversee the group 's disarmament .\tJJ NNP NNP NN NNP NNP VBD PRP VBZ VBN IN IN JJ NNS RB IN DT JJ CC JJ NN NN IN NN , DT NNP NNP VBZ RB VBN NNS WP VBP TO VB DT NN POS NN .\nHe spoke after talks in Belfast with the monitors .\tPRP VBD IN NNS IN NNP IN DT NNS .\nMr. Paisley said any progress on restoring Northern Ireland 's power-sharing government requires proof of IRA action instead of continued deception .\tNNP NNP VBD DT NN IN VBG NNP NNP POS JJ NN VBZ NN IN NNP NN IN IN JJ NN .\nMeanwhile , Jerry Adams , the leader of the IRA 's political arm , Sinn Fein , expressed doubt whether Mr. Paisley is ready for agreement .\tRB , NNP NNP , DT NN IN DT NNP POS JJ NN , NNP NNP , VBD NN IN NNP NNP VBZ JJ IN NN .\nBritain suspended Northern Ireland 's power sharing government in 2002 amid charges of IRA spying on provincial officials .\tNNP VBD NNP NNP POS NN NN NN IN CD IN NNS IN NNP VBG IN JJ NNS .\nU.S. officials are downplaying media reports that Washington is investigating possible Iranian involvement in an attack in Iraq that killed five U.S. soldiers .\tNNP NNS VBP VBG NNS NNS IN NNP VBZ VBG JJ JJ NN IN DT NN IN NNP WDT VBD CD NNP NNS .\nAt the State Department , a senior U.S. official said he does not know anything to substantiate the conclusion that Iran was involved , and called the idea a ' supposition . '\tIN DT NNP NNP , DT JJ NNP NN VBD PRP VBZ RB VB DT TO VB DT NN IN NNP VBD VBN , CC VBD DT NN DT `` NN . ``\nWhite House spokesman Tony Snow said he would not comment on what it called ' speculation ' about Iranian involvement in the attack last Saturday in Karbala .\tNNP NNP NN NNP NNP VBD PRP MD RB VB IN WP PRP VBD `` NN `` IN JJ NN IN DT NN JJ NNP IN NNP .\nThe New York Times and CNN had reported that the Defense Department is trying to determine whether Iranians or Iranian-trained operatives carried out the attack .\tDT NNP NNP NNP CC NNP VBD VBN IN DT NNP NNP VBZ VBG TO VB IN NNS CC JJ NNS VBD IN DT NN .\nThe U.S. military has said the attack was well coordinated , with assailants dressed in U.S. military-style uniforms and driving vehicles similar to those used by U.S. troops .\tDT NNP NN VBZ VBN DT NN VBD RB VBN , IN NNS VBN IN NNP JJ NNS CC VBG NNS JJ TO DT VBN IN NNP NNS .\nThe United States is recalling to active duty several thousand Marines to bolster American military units in Iraq and Afghanistan .\tDT NNP NNPS VBZ VBG TO JJ NN JJ CD NNS TO VB JJ JJ NNS IN NNP CC NNP .\nA military spokesman says the reservists are men and women who returned to civilian life after previous active-duty service .\tDT JJ NN VBZ DT NNS VBP NNS CC NNS WP VBD TO JJ NN IN JJ JJ NN .\nThey will fill critical shortages among military-police units , intelligence and communications specialists .\tPRP MD VB JJ NNS IN JJ NNS , NN CC NNS NNS .\nPresident Bush issued an order authorizing the involuntary callup .\tNNP NNP VBD DT NN VBG DT JJ NN .\nThe Marines Corps has 35,000 reserve troops with time remaining on eight-year commitments made when they enlisted .\tDT NNP NNP VBZ CD NN NNS IN NN VBG IN JJ NNS VBN WRB PRP VBD .\nMr. Bush 's order limits the number of those who can be recalled to 2,500 at a time .\tNNP NNP POS NN VBZ DT NN IN DT WP MD VB VBN TO CD IN DT NN .\nMeanwhile , in Iraq , U.S. military officials report a declining trend in violence this month in Baghdad .\tRB , IN NNP , NNP JJ NNS VBP DT VBG NN IN NN DT NN IN NNP .\nBut insurgents carried out more attacks Wednesday , including a suicide bombing in Mosul that killed a woman and wounded eight policemen .\tCC NNS VBD RP JJR NNS NNP , VBG DT NN VBG IN NNP WDT VBD DT NN CC VBD CD NNS .\nMalawi 's President , Bingu wa Mutharika , says a motion in parliament to impeach him will not stop his campaign against corruption .\tNNP POS NNP , NNP NNP NNP , VBZ DT NN IN NN TO VB PRP MD RB VB PRP$ NN IN NN .\nAddressing a church service Sunday , Mr. wa Mutharika said there are those in parliament who want to remove him from office because of his anti-corruption campaign .\tVBG DT NN NN NNP , NNP NNP NNP VBD EX VBP DT IN NN WP VBP TO VB PRP IN NN IN IN PRP$ JJ NN .\nBut he said no threat of impeachment would stop his so-called ' zero tolerance ' policy .\tCC PRP VBD DT NN IN NN MD VB PRP$ JJ `` CD NN `` NN .\nOn Friday , the speaker of parliament , Louis Chimango , introduced an impeachment motion charging him with ignoring the constitution in setting up his own party and with misuse of public funds .\tIN NNP , DT NN IN NN , NNP NNP , VBD DT NN NN VBG PRP IN VBG DT NN IN VBG RP PRP$ JJ NN CC IN NN IN JJ NNS .\nMr. wa Mutharika , a former economist , has won praise from donor nations and aid agencies for his efforts to adopt economic reforms and stamp out corruption .\tNNP NNP NNP , DT JJ NN , VBZ VBN NN IN NN NNS CC NN NNS IN PRP$ NNS TO VB JJ NNS CC VB RP NN .\nEngland 's bowlers have picked apart Sri Lanka 's lineup , with the host nation dismissed for only 188 runs on the first day of their first test match at Asgiriya Stadium in Kandy , Sri Lanka .\tNNP POS NNS VBP VBN RP NNP NNP POS NN , IN DT NN NN VBD IN RB CD NNS IN DT JJ NN IN PRP$ JJ NN NN IN NNP NNP IN NNP , NNP NNP .\nEngland lost the toss , but seam bowler Matthew Hoggard and spinner Monty Panesar took a total of seven wickets .\tNNP VBD DT NN , CC JJ NN NNP NNP CC NN NNP NNP VBD DT NN IN CD NNS .\nHoggard finished at Apr-29 while Panesar was Mar-46 .\tNNP VBD IN CD IN NNP VBD CD .\nKumar Sangakkara top scored for Sri Lanka with 92 runs , including 13 fours before being caught out by Paul Collingwood .\tNNP NNP NN VBD IN NNP NNP IN CD NNS , VBG CD NNS IN VBG VBN RP IN NNP NNP .\nPrasanna Jayawardene added another 51 runs but he was caught out by Alastair Cook on a ball bowled by Panesar .\tNNP NNP VBD DT CD NNS CC PRP VBD VBN RP IN NNP NNP IN DT NN VBN IN NNP .\nThe second test at the Sinhalese Sports Club in Colombo starts December ninth .\tDT JJ NN IN DT NNP NNP NNP IN NNP VBZ NNP NN .\nThe third test is scheduled for Galle International Stadium beginning December 18th .\tDT JJ NN VBZ VBN IN NNP NNP NNP VBG NNP CD .\nEngland won the five-match , one-day series , 03-Feb .\tNNP VBD DT JJ , JJ NN , CD .\nPresident Barack Obama has reaffirmed his belief in a woman 's right to choose whether to have an abortion as tens of thousands of abortion opponents held their annual rally in Washington .\tNNP NNP NNP VBZ VBN PRP$ NN IN DT NN POS NN TO VB IN TO VB DT NN IN NNS IN NNS IN NN NNS VBD PRP$ JJ NN IN NNP .\nPresident Obama issued a statement Thursday calling abortion a sensitive and divisive issue .\tNNP NNP VBD DT NN NNP VBG NN DT JJ CC JJ NN .\nWhile he said the government must not intrude in private family matters , the country is united on the need to prevent unintended pregnancies .\tIN PRP VBD DT NN MD RB VB IN JJ NN NNS , DT NN VBZ VBN IN DT NN TO VB JJ NNS .\nThursday 's annual gathering , which supporters call the Right to Life March , came on the 36th anniversary of Roe versus Wade - the U.S. Supreme Court decision legalizing abortion .\tNNP POS JJ NN , WDT NNS VBP DT NNP TO NNP NNP , VBD IN DT JJ NN IN NNP IN NNP IN DT NNP NNP NNP NN VBG NN .\nSupporters of the landmark decision say it protects women 's lives and makes the right to choose to have a safe and legal abortion sacred .\tNNS IN DT NN NN VBP PRP VBZ NNS POS NNS CC VBZ DT NN TO VB TO VB DT JJ CC JJ NN VBN .\nAbortion opponents say life starts at conception and liken abortion to genocide .\tNN NNS VBP NN NNS IN NN CC JJ NN TO VB .\nThey urge women with unwanted pregnancies to carry their babies to term and give them up for adoption .\tPRP VBP NNS IN JJ NNS TO VB PRP$ NNS TO NN CC VB PRP RP IN NN .\nThe party of Liberian presidential candidate George Weah has called for a re-run of Tuesday 's run-off vote , charging electoral fraud .\tDT NN IN JJ JJ NN NNP NNP VBZ VBN IN DT NN IN NNP POS NN NN , VBG JJ NN .\nThe call comes as Liberians await official confirmation of former Finance Minister Ellen Johnson-Sirleaf 's apparent victory .\tDT NN VBZ IN NNS VBP JJ NN IN JJ NNP NNP NNP NNP POS JJ NN .\nWith 99 percent of the votes counted , Mrs. Johnson-Sirleaf has won about 60 percent of the vote to 40 percent for Mr. Weah , a former football ( soccer ) star .\tIN CD NN IN DT NNS VBN , NNP NNP VBZ VBN IN CD NN IN DT NN TO CD NN IN NNP NNP , DT JJ NN LRB NN RRB NN .\nFinal results are expected on Tuesday .\tJJ NNS VBP VBN IN NNP .\nThe National Election Commission says it will hear Mr. Weah 's complaints of election irregularities on Wednesday .\tDT NNP NNP NNP VBZ PRP MD VB NNP NNP POS NNS IN NN NNS IN NNP .\nInternational observers say there is no evidence of widespread fraud in the run-off .\tNNP NNS VBP EX VBZ DT NN IN JJ NN IN DT NN .\nSaturday in the capital , Monrovia , hundreds of Mr. Weah 's supporters gathered in front of United Nations headquarters to demand a new election .\tNNP IN DT NN , NNP , NNS IN NNP NNP POS NNS VBD IN NN IN NNP NNP NN TO VB DT JJ NN .\nU.N. peacekeepers dispersed the crowd peacefully .\tNNP NNS VBD DT NN RB .\nThe Afghan Islamic Press says the Taleban has rejected a U.S. appeal for its fighters to surrender under a government offer of amnesty .\tDT JJ NNP NNP VBZ DT NNP VBZ VBN DT NNP NN IN PRP$ NNS TO VB IN DT NN NN IN NN .\nThe Pakistan-based news organization quoted Taleban spokesman Latifullah Hakimi Friday as saying the group considers the U.S. offer an attempt to divide it .\tDT JJ NN NN VBN NNP NN NNP NNP NNP IN VBG DT NN VBZ DT NNP NN DT NN TO NN PRP .\nThe Afghan Islamic Press also quotes Mr. Hakimi as saying the Taleban will never stop fighting as long as U.S. troops remain in Afghanistan .\tDT JJ NNP NNP RB VBZ NNP NNP IN VBG DT NNP MD RB VB VBG RB RB IN NNP NNS VBP IN NNP .\nThursday , U.S. Ambassador to Afghanistan Zalmay Khalilzad urged Taleban fighters to lay down their arms under an Afghan government offer of amnesty .\tNNP , NNP NNP TO NNP NNP NNP VBD NNP NNS TO VB RP PRP$ NNS IN DT JJ NN NN IN NN .\nAmbassador Khalilzad said U.S. forces will cooperate with the the amnesty , which he said will not apply to those who , have committed ' crimes against the Afghan people . '\tNNP NNP VBD NNP NNS MD VB IN DT DT NN , WDT PRP VBD MD RB VB TO DT WP , VBP VBN `` NNS IN DT JJ NNS . ``\nOfficials in Afghanistan say multiple suicide bombers attacked the governor 's compound in the southern Afghan city of Kandahar Saturday , killing five policemen .\tNNS IN NNP VBP JJ NN NNS VBD DT NN POS NN IN DT JJ JJ NN IN NNP NNP , VBG CD NNS .\nProvincial official Ahmad Wali Karzai , who is the president 's brother , says three suicide bombers were involved in the attack .\tNNP JJ NNP NNP NNP , WP VBZ DT NN POS NN , VBZ CD NN NNS VBD VBN IN DT NN .\nThere are reports that at least one of the bombers detonated his explosives outside the compound , while the others may have been inside the compound .\tEX VBP NNS IN IN JJS CD IN DT NNS VBD PRP$ NNS IN DT NN , IN DT NNS MD VB VBN IN DT NN .\nThe Taliban has claimed responsibility for the attack .\tDT NNP VBZ VBN NN IN DT NN .\nEarlier this month , four suicide bombers struck a provincial council office in Kandahar , killing 13 people .\tRBR DT NN , CD NN NNS VBD DT JJ NN NN IN NNP , VBG CD NNS .\nTaliban militants also claimed responsibility for that attack .\tNNP NNS RB VBD NN IN DT NN .\nChina 's ambassador to the United Nations in Geneva says the United States should ' shut up ' about his country 's military spending .\tNNP POS NN TO DT NNP NNPS IN NNP VBZ DT NNP NNPS MD `` VB RP `` IN PRP$ NN POS JJ NN .\nSha Zukang was responding Thursday to a BBC interviewer .\tNNP NNP VBD VBG NNP TO DT NNP NN .\nThe interviewer had asked him about U.S. Defense Secretary Donald Rumsfeld 's assertion that much of China 's military spending is concealed .\tDT NN VBD VBN PRP IN NNP NNP NNP NNP NNP POS NN IN NN IN NNP POS JJ NN VBZ VBN .\nSha said the United States should keep quiet and not dictate policy to China .\tNNP VBD DT NNP NNPS MD VB JJ CC RB VB NN TO NNP .\nHe said the United States itself accounts for half of the world 's military spending .\tPRP VBD DT NNP NNPS PRP VBZ IN NN IN DT NN POS JJ NN .\nHe also said China would sacrifice lives if Taiwan declares independence .\tPRP RB VBD NNP MD VB NNS IN NNP VBZ NN .\nHe said for China , one inch of territory is more valuable than the lives of its people .\tPRP VBD IN NNP , CD NN IN NN VBZ RBR JJ IN DT NNS IN PRP$ NNS .\nHe added China has a sacred duty to defend its state sovereignty .\tPRP VBD NNP VBZ DT JJ NN TO VB PRP$ NN NN .\nEthiopia 's main opposition coalition has reaffirmed its commitment to a non-violence pact with the government - a deal aimed at ending post-election violence in the country .\tNNP POS JJ NN NN VBZ VBN PRP$ NN TO DT JJ NN IN DT NN IN DT NN VBN IN VBG JJ NN IN DT NN .\nThe Coalition for Unity and Democracy , or CUD , Sunday said it ' unequivocally ' accepts the terms of Friday 's deal with Ethiopia 's ruling party .\tDT NN IN NNP CC NNP , CC NNP , NNP VBD PRP `` RB `` VBZ DT NNS IN NNP POS NN IN NNP POS VBG NN .\nThe pact was negotiated in an effort to stop recent violence sparked by last month 's election results .\tDT NN VBD VBN IN DT NN TO VB JJ NN VBN IN JJ NN POS NN NNS .\nAt least 29 people were killed in a protest last week , when police opened fire on crowds alleging fraud during the vote .\tIN JJS CD NNS VBD VBN IN DT NN JJ NN , WRB NNS VBD NN IN NNS VBG NN IN DT NN .\nEthiopia 's government has accused the opposition of engineering the protests and breaking the non-violence pact .\tNNP POS NN VBZ VBN DT NN IN VBG DT NNS CC VBG DT JJ NN .\nMeanwhile , opposition officials say CUD leader , Hailu Shawel , remains under house arrest for a second day .\tRB , NN NNS VBP NNP NN , NNP NNP , VBZ IN NN NN IN DT JJ NN .\nOfficials say attempts to contact Mr. Hailu have failed because his telephone is not working .\tNNS VBP NNS TO VB NNP NNP VBP VBN IN PRP$ NN VBZ RB VBG .\nSaudi authorities say they have arrested five suspected terrorists linked to a February attack on the world 's largest oil facility , located in the eastern part of the kingdom .\tJJ NNS VBP PRP VBP VBN CD JJ NNS VBN TO DT NNP NN IN DT NN POS JJS NN NN , VBN IN DT JJ NN IN DT NN .\nA Saudi Interior Ministry statement said the militants are linked to the foiled assault on the Abqaiq compound February 24 .\tDT JJ NNP NNP NN VBD DT NNS VBP VBN TO DT VBN NN IN DT NNP NN NNP CD .\nPolice said militants tried to drive two vehicles loaded with explosives past barricades and into the oil facility , which handles about two-thirds of the country 's crude .\tNNP VBD NNS VBD TO VB CD NNS VBN IN NNS JJ NNS CC IN DT NN NN , WDT VBZ IN NNS IN DT NN POS NN .\nAuthorities said the attack failed when two guards opened fire and the attack vehicles exploded .\tNNS VBD DT NN VBD WRB CD NNS VBD NN CC DT NN NNS VBD .\nTwo guards and two militants were killed .\tCD NNS CC CD NNS VBD VBN .\nThe Al-Qaida terror network claimed responsibility for that attack .\tDT NNP NN NN VBD NN IN DT NN .\nIn late March , Saudi Arabia said it had arrested 40 suspected militants , including eight allegedly linked to the February attack .\tIN JJ NNP , NNP NNP VBD PRP VBD VBN CD JJ NNS , VBG CD RB VBN TO DT NNP NN .\nThe Hubble Space Telescope has captured a mosaic of images to reveal the most complete picture of the early universe , with thousands of galaxies in ' various stages of assembly . '\tDT NNP NNP NNP VBZ VBN DT NN IN NNS TO VB DT RBS JJ NN IN DT JJ NN , IN NNS IN NNS IN `` JJ NNS IN NN . ``\nThe U.S. space agency NASA said Tuesday that the farthest galaxies in the snapshot are seen as they appeared more than 13 billion years ago , or roughly 650 million years after the Big Bang - the massive explosion that many scientists believe formed our universe .\tDT NNP NN NN NNP VBD NNP IN DT JJS NNS IN DT NN VBP VBN IN PRP VBD JJR IN CD CD NNS RB , CC RB CD CD NNS IN DT NNP NNP IN DT JJ NN IN JJ NNS VBP VBN PRP$ NN .\nThe Hubble picture displays the older , smaller galaxies together with closer , newer and more mature ones .\tDT NNP NN VBZ DT JJR , JJR NNS RB IN JJR , JJR CC RBR JJ NNS .\nThe result is a galactic family photo of sorts that portrays galaxies in various stages of evolution .\tDT NN VBZ DT JJ NN NN IN NNS WDT VBZ NNS IN JJ NNS IN NN .\nNASA says this is the most detailed picture of the universe yet in terms of clarity , accuracy and depth .\tNNP VBZ DT VBZ DT RBS JJ NN IN DT NN RB IN NNS IN NN , NN CC NN .\nThe Hubble Space Telescope is a joint project between NASA and the European Space Agency .\tDT NNP NNP NNP VBZ DT JJ NN IN NNP CC DT NNP NNP NNP .\nYasser Arafat has been buried at his West Bank compound , as a sea of Palestinian mourners chanted ' With our soul , with our blood , we will support you Abu Ammar . '\tNNP NNP VBZ VBN VBN IN PRP$ NNP NNP NN , IN DT NN IN JJ NNS VBD `` IN PRP$ NN , IN PRP$ NN , PRP MD VB PRP NNP NNP . ``\nThe 75-year-old leader , also known by his nom de guerre ' Abu Ammar , ' was laid to rest at the compound where he spent the last three-and-a-half years of his life as a virtual prisoner of Israel .\tDT JJ NN , RB VBN IN PRP$ NN IN NN `` NNP NNP , `` VBD VBN TO VB IN DT NN WRB PRP VBD DT JJ JJ NNS IN PRP$ NN IN DT JJ NN IN NNP .\nPalestinian masons worked through the night at the Muqataa compound to prepare his grave .\tJJ NNS VBD IN DT NN IN DT NNP NN TO VB PRP$ NN .\nTens of thousands of mourners waving Palestinian flags , and photos of their leader greeted the military helicopter as it brought his flag-draped coffin from a funeral in Cairo .\tNNS IN NNS IN NNS VBG JJ NNS , CC NNS IN PRP$ NN VBD DT JJ NN IN PRP VBD PRP$ JJ NN IN DT NN IN NNP .\nArab royalty and heads-of-state , joined by European , American and other international officials , gathered for the service at a mosque near Cairo 's airport .\tJJ NN CC NN , VBN IN NNP , NNP CC JJ JJ NNS , VBD IN DT NN IN DT NN IN NNP POS NN .\nMr. Arafat died early Thursday in a Paris hospital after a brief but undisclosed illness .\tNNP NNP VBD JJ NNP IN DT NNP NN IN DT JJ CC JJ NN .\nThe Sri Lankan military says six soldiers have been killed and another one wounded by a land mine explosion in the country 's volatile north .\tDT NNP NNP NN VBZ CD NNS VBP VBN VBN CC DT CD VBN IN DT NN NN NN IN DT NN POS JJ NN .\nThe military says the blast , blamed on Tamil Tiger rebels , hit the soldiers Sunday as they were transporting meals to their colleagues in Jaffna , some 400 kilometers north of Colombo .\tDT JJ VBZ DT NN , VBN IN NNP NNP NNS , VBD DT NNS NNP IN PRP VBD VBG NNS TO PRP$ NNS IN NNP , DT CD NNS RB IN NNP .\nThe attack prompted Scandinavian monitors overseeing Sri Lanka 's truce with Tamil Tiger rebels to warn of ' irreparable deterioration ' of security in the island nation .\tDT NN VBD JJ NNS VBG NNP NNP POS NN IN NNP NNP NNS TO VB IN `` JJ NN `` IN NN IN DT NN NN .\nThe monitoring mission appealed to all sides to calm the situation before it escalates further .\tDT NN NN VBD TO DT NNS TO VB DT NN IN PRP VBZ RBR .\nTension has been mounting in Sri Lanka since Tamil Tiger leader V. Prabhakaran warned that the rebels will intensify their struggle for a Tamil homeland next year if grievances with the government are not resolved .\tNNP VBZ VBN VBG IN NNP NNP IN NNP NNP NN NNP NNP VBD IN DT NNS MD VB PRP$ NN IN DT NNP NN IN NN IN NNS IN DT NN VBP RB VBN .\nA religious festival that drew millions of Shi'ite pilgrims to Iraq 's holy city of Karbala has ended without major incident .\tDT JJ NN WDT VBD NNS IN NNP NNS TO NNP POS JJ NN IN NNP VBZ VBN IN JJ NN .\nHeavy security was in place Saturday for the festival of Shaaban .\tJJ NN VBD IN NN NNP IN DT NN IN NNP .\nIt commemorates the birth of ninth-century Imam al-Mahdi al-Muntadar .\tPRP VBZ DT NN IN JJ NNP NNP NNP .\nViolence elsewhere in Iraq killed at least 12 people .\tNN RB IN NNP VBD IN JJS CD NNS .\nBomb attacks in Baghdad left at least two people dead .\tNN NNS IN NNP VBD IN JJS CD NNS JJ .\nAnd a gunman killed an employee of Iraq 's government-run newspaper in the capital .\tCC DT NN VBD DT NN IN NNP POS JJ NN IN DT NN .\nOn Friday , insurgents firing mortar rounds killed at least three Shi'ite pilgrims in a procession near Karbala .\tIN NNP , NNS VBG NN NNS VBD IN JJS CD NNP NNS IN DT NN IN NNP .\nThe United States is warning that it would be a major international concern if North Korea launched a long-range ballistic missile .\tDT NNP NNPS VBZ VBG IN PRP MD VB DT JJ JJ NN IN NNP NNP VBD DT JJ JJ NN .\nReports by Japanese media say North Korea may be preparing to test-fire such a weapon .\tNNS IN JJ NNS VBP NNP NNP MD VB VBG TO VB PDT DT NN .\nA U.S. State Department spokesman said Friday that a missile launch would also violate an agreement reached in September at the last round of six-party talks on North Korea 's nuclear program .\tDT NNP NNP NNP NN VBD NNP IN DT NN NN MD RB VB DT NN VBN IN NNP IN DT JJ NN IN JJ NNS IN NNP NNP POS JJ NN .\nOn Friday Japanese broadcaster NHK quoted unidentified South Korean government officials as saying that satellite pictures show signs of activity at a launch site in northeastern North Korea .\tIN NNP NNS NN NNP VBD JJ JJ JJ NN NNS IN VBG IN NN NNS VBP NNS IN NN IN DT NN NN IN JJ NNP NNP .\nJapan 's Defense Agency quickly responded , saying that Tokyo does not believe a launch is imminent .\tNNP POS NNP NNP RB VBD , VBG IN NNP VBZ RB VB DT NN VBZ JJ .\nHowever , Japanese Foreign Minister Taro Aso told a parliamentary committee that a launch would be no surprise .\tRB , JJ NNP NNP NNP NNP VBD DT JJ NN IN DT NN MD VB DT NN .\nIn 1998 , North Korea surprised Japan and governments around the world by firing a long-range missile over Japan into the Pacific Ocean .\tIN CD , NNP NNP VBD NNP CC NNS IN DT NN IN VBG DT JJ NN IN NNP IN DT NNP NNP .\nEvery year on the last Friday in April Americans observe National Arbor Day .\tDT NN IN DT JJ NNP IN NNP NNS VBP NNP NNP NNP .\nTree plantings and other events are held all across the United States to focus attention on the importance of trees in our communities and on our planet .\tNNP NNS CC JJ NNS VBP VBN DT IN DT NNP NNPS TO VB NN IN DT NN IN NNS IN PRP$ NNS CC IN PRP$ NN .\nSponsored by the National Arbor Day Foundation , a non-profit group founded in 1872 , Arbor Day somewhat overshadows another of the Foundation 's national projects .\tVBN IN DT NNP NNP NNP NNP , DT JJ NN VBN IN CD , NNP NNP RB VBZ DT IN DT NNP POS JJ NNS .\nIt is called the ' Tree City USA ' program , and it recognizes communities that preserve , protect , and defend their trees every day of the year .\tPRP VBZ VBN DT `` NNP NNP NNP `` NN , CC PRP VBZ NNS WDT VB , VB , CC VB PRP$ NNS DT NN IN DT NN .\nVOA 's George Dwyer recently visited a ' tree city ' just outside Washington .\tNNP POS NNP NNP RB VBD DT `` NN NN `` RB IN NNP .\nThe White House says President Bush will hold a news conference shortly .\tDT NNP NNP VBZ NNP NNP MD VB DT NN NN RB .\nA spokeswoman did not say what topics the president plans to address in the meeting with reporters , which is scheduled to take place in the Rose Garden of the White House .\tDT NN VBD RB VB WP NNS DT NN VBZ TO VB IN DT NN IN NNS , WDT VBZ VBN TO VB NN IN DT NNP NNP IN DT NNP NNP .\nThe announcement comes one day after the president nominated White House Counsel Harriet Miers to replace retiring Justice Sandra Day O'Connor on the Supreme Court .\tDT NN VBZ CD NN IN DT NN VBD NNP NNP NNP NNP NNP TO VB VBG NNP NNP NNP NNP IN DT NNP NNP .\nAt least three car bombs have exploded in Baghdad , wounding at least six people .\tIN JJS CD NN NNS VBP VBN IN NNP , VBG IN JJS CD NNS .\nIraqi police say the bombs went off almost simultaneously near a market in the southern part of the city .\tJJ NNS VBP DT NNS VBD RP RB RB IN DT NN IN DT JJ NN IN DT NN .\nThe violence occurred as Iraqi politicians continued in their efforts to form a new government .\tDT NN VBD IN JJ NNS VBD IN PRP$ NNS TO VB DT JJ NN .\nShi'ite , Sunni and Kurdish politicians have been unable to agree on a cabinet .\tNNP , NNP CC NNP NNS VBP VBN JJ TO VB IN DT NN .\nPressure has been mounting on Prime Minister Ibrahim al-Jaafari , a Shi'ite , to give up his post .\tNN VBZ VBN VBG IN NNP NNP NNP NNP , DT NNP , TO VB RP PRP$ NN .\nSunni politicians say Mr. al-Jaafari is a divisive and ineffective leader .\tNNP NNS VBP NNP NNP VBZ DT JJ CC JJ NN .\nThe United States has been pressuring Iraqi politicians to form a new government , which Washington believes will help stem the violence .\tDT NNP NNPS VBZ VBN VBG JJ NNS TO VB DT JJ NN , WDT NNP VBZ MD VB VB DT NN .\nSpeaking Friday in northern England , U.S. Secretary of State Condoleezza Rice said the United States had probably made thousands of errors in Iraq , but she defended the decision to overthrow Saddam Hussein .\tVBG NNP IN JJ NNP , NNP NNP IN NNP NNP NNP VBD DT NNP NNPS VBD RB VBN NNS IN NNS IN NNP , CC PRP VBD DT NN TO VB NNP NNP .\nPresident Bush has urged recipients of Medicare , the national health care program for seniors , to sign up for a new prescription drug program .\tNNP NNP VBZ VBN NNS IN NNP , DT JJ NN NN NN IN NNS , TO VB RP IN DT JJ NN NN NN .\nIn a broadcast on U.S. radio Saturday , Mr. Bush said the prescription drug program is the greatest advance in health care for U.S. seniors since the introduction of Medicare itself 40 years ago .\tIN DT NN IN NNP NN NNP , NNP NNP VBD DT NN NN NN VBZ DT JJS NN IN NN NN IN NNP NNS IN DT NN IN NNP PRP CD NNS RB .\nHe said the new benefit will help pay for preventative medication that costs far less than the price of treating a serious illness .\tPRP VBD DT JJ NN MD VB VB IN JJ NN WDT VBZ RB JJR IN DT NN IN VBG DT JJ NN .\nHe said the days of making painful sacrifices to pay for prescription drugs are now over .\tPRP VBD DT NNS IN VBG JJ NNS TO VB IN NN NNS VBP RB IN .\nMr. Bush also urged friends and family of the elderly to help their loved ones enroll , by gathering information , making a phone call , or helping them to fill out forms .\tNNP NNP RB VBD NNS CC NN IN DT NN TO VB PRP$ VBN NNS NN , IN VBG NN , VBG DT NN NN , CC VBG PRP TO VB RP NNS .\nThousands of people in cities across Britain have rallied to protest Israeli military action in Lebanon .\tNNS IN NNS IN NNS IN NNP VBP VBN TO VB JJ JJ NN IN NNP .\nA march through central London Saturday drew the largest numbers .\tDT NN IN JJ NNP NNP VBD DT JJS NNS .\nPolice estimate that crowd at seven thousand people .\tNNS VBP DT NN IN CD CD NNS .\nMany of them carried Lebanese flags .\tNN IN PRP VBD JJ NNS .\nBritish Muslim groups organized the protests .\tJJ NN NNS VBD DT NNS .\nThe current Mideast crisis began July 12 , when Hezbollah guerrillas kidnapped two Israeli soldiers and killed eight in a raid .\tDT JJ NN NN VBD NNP CD , WRB NNP NNS VBD CD JJ NNS CC VBN CD IN DT NN .\nIsrael then launched an offensive on Hezbollah militias based in Lebanon .\tNNP RB VBD DT NN IN NNP NNS VBN IN NNP .\nMore than 300 Lebanese and 34 Israelis have died in the violence .\tJJR IN CD JJ CC CD NNS VBP VBN IN DT NN .\nHundreds more have been wounded .\tNNS RBR VBP VBN VBN .\nConfessed swindler Bernard Madoff will have to wait a bit longer to find out how long his prison sentence will be .\tJJ NN NNP NNP MD VB TO VB DT NN RBR TO VB RP WRB JJ PRP$ NN NN MD VB .\nHe could get up to 150 years for stealing tens of billions of dollars from investment clients through an elaborate scheme of lies .\tPRP MD VB RP TO CD NNS IN VBG NNS IN NNS IN NNS IN NN NNS IN DT JJ NN IN NNS .\nThe judge has put off Madoff 's sentencing until June 29 .\tDT NN VBZ VBN RP NNP POS NN IN NNP CD .\nSome of Madoff 's many victims are expected to speak to the court before the judge pronounces the sentence .\tDT IN NNP POS JJ NNS VBP VBN TO VB TO DT NN IN DT NN VBZ DT NN .\nMadoff 's $ 65 billion fraud is the largest in U.S. history and it went undetected by U.S. financial regulators for perhaps 20 years .\tNNP POS $ CD CD NN VBZ DT JJS IN NNP NN CC PRP VBD VBN IN NNP JJ NNS IN RB CD NNS .\nThursday , the Securities and Exchange Commission voted to tighten regulations by subjecting investment advisers who hold clients ' money to surprise inspections by independent auditors once a year .\tNNP , DT NNPS CC NNP NNP VBD TO VB NNS IN VBG NN NNS WP VBP NNS POS NN TO VB NNS IN JJ NNS RB DT NN .\nThe human rights group Amnesty International says China is fast emerging as one of the world 's biggest , most secretive and irresponsible arms exporters .\tDT JJ NNS NN NNP NNP VBZ NNP VBZ RB VBG IN CD IN DT NN POS JJS , RBS JJ CC JJ NNS NNS .\nAmnesty says Chinese weapons sales to Sudan , Nepal and Burma have aggravated conflicts there and encouraged repressive rule in those countries .\tNNP VBZ JJ NNS NNS TO NNP , NNP CC NNP VBP VBN NNS RB CC VBN JJ NN IN DT NNS .\nIn a new report , Amnesty accuses China of shipping tens of thousands of rifles and grenades to Nepal 's security forces .\tIN DT JJ NN , NNP VBZ NNP IN VBG NNS IN NNS IN NNS CC NNS TO NNP POS NN NNS .\nIt also says Beijing has exported hundreds of military trucks to Burma and Sudan .\tPRP RB VBZ NNP VBZ VBN NNS IN JJ NNS TO NNP CC NNP .\nThe London-based group says China 's arms exports , estimated to exceed $ 1 billion a year , often involve the exchange of weapons for raw materials to fuel the country 's rapid economic growth .\tDT JJ NN VBZ NNP POS NNS NNS , VBN TO VB $ CD CD DT NN , RB VBP DT NN IN NNS IN JJ NNS TO VB DT NN POS JJ JJ NN .\nChina rarely confirms sales of military equipment - a policy that has compounded U.S. concerns about Beijing 's military buildup and what Washington says is a lack of transparency in its defense policies .\tNNP RB VBZ NNS IN JJ NN IN DT NN WDT VBZ VBN NNP NNS IN NNP POS JJ NN CC WP NNP VBZ VBZ DT NN IN NN IN PRP$ NN NNS .\nFormer Haitian leader Jean Bertrand Aristide says he will not play a role in his country 's politics once he returns home .\tJJ JJ NN NNP NNP NNP VBZ PRP MD RB VB DT NN IN PRP$ NN POS NNS IN PRP VBZ NN .\nThe former president and ex-priest told international news agencies in Pretoria , South Africa Wednesday , that he wants to return to Haiti to teach .\tDT JJ NN CC NN VBD JJ NN NNS IN NNP , NNP NNP NNP , IN PRP VBZ TO VB TO NNP TO VB .\nMr. Aristide has been living in exile in South Africa since he was forced out of office in February 2004 after an armed uprising .\tNNP NNP VBZ VBN VBG IN NN IN NNP NNP IN PRP VBD VBN IN IN NN IN NNP CD IN DT JJ NN .\nMr. Aristide says the date of his return depends upon negotiations between Haitian President-elect Rene Preval , the United Nations and other interested parties .\tNNP NNP VBZ DT NN IN PRP$ NN VBZ IN NNS IN JJ NNP NNP NNP , DT NNP NNPS CC JJ JJ NNS .\nMr. Preval , a former protege of Mr. Aristide , was declared the winner of Haiti 's February 7 presidential elections last week .\tNNP NNP , DT JJ NN IN NNP NNP , VBD VBN DT NN IN NNP POS NNP CD JJ NNS JJ NN .\nThe Lebanese army Tuesday agreed to a ceasefire request from Islamic militants to allow their families to leave a Palestinian refugee camp where the two factions have been fighting for months .\tDT JJ NN NNP VBD TO DT NN NN IN NNP NNS TO VB PRP$ NNS TO VB DT JJ NN NN WRB DT CD NNS VBP VBN VBG IN NNS .\nThe mediators , from the Palestinian Cleric 's Association , say Fatah al-Islam asked them late Monday for help in arranging a truce in the fighting at Nahr al-Bared camp near the northern port city of Tripoli .\tDT NNS , IN DT JJ NNP POS NNP , VBP NNP NNP VBD PRP JJ NNP IN NN IN VBG DT NN IN DT NN IN NNP JJ NN IN DT JJ JJ NN IN NNP .\nIn the past , the clerics ' group has tried but failed to mediate between the militants and the army , which is demanding an unconditional surrender of remaining fighters .\tIN DT NN , DT NNS POS NN VBZ VBN CC VBN TO VB IN DT NNS CC DT NN , WDT VBZ VBG DT JJ NN IN VBG NNS .\nMost of the camp 's refugees have fled since fighting began in May .\tJJS IN DT NN POS NNS VBP VBN IN NN VBD IN NNP .\nAlso Tuesday Lebanon 's military says a soldier was killed during fighting at Nahr al-Bared .\tRB NNP NNP POS JJ VBZ DT NN VBD VBN IN VBG IN NNP NNP .\nAt least 200 people , including 141 soldiers , have been killed in the battles .\tIN JJS CD NNS , VBG CD NNS , VBP VBN VBN IN DT NNS .\nThe U.S. State Department has labeled al-Qaida-inspired Fatah al-Islam a terrorist organization .\tDT NNP NNP NNP VBZ VBN JJ NNP NNP DT JJ NN .\nCampaigning has ended for the first round of local Palestinian elections to be held on Thursday .\tNN VBZ VBN IN DT JJ NN IN JJ JJ NNS TO VB VBN IN NNP .\nSome 1,40,000 Palestinians are eligible to vote in 26 communities around the West Bank .\tDT CD NNS VBP JJ TO VB IN CD NNS IN DT NNP NNP .\nMore than 800 people are running for local offices .\tJJR IN CD NNS VBP VBG IN JJ NNS .\nA second round of voting in other communities is set for early in the new year , after presidential elections that are scheduled for January 9 .\tDT JJ NN IN NN IN JJ NNS VBZ VBN IN JJ IN DT JJ NN , IN JJ NNS WDT VBP VBN IN NNP CD .\nThe vast majority of candidates in the local elections are members of the mainstream Fatah party .\tDT JJ NN IN NNS IN DT JJ NNS VBP NNS IN DT NN NNP NN .\nResults from Thursday 's elections are not expected to be made public until the end of the week .\tNNS IN NNP POS NNS VBP RB VBN TO VB VBN JJ IN DT NN IN DT NN .\nTaleban rebels in Afghanistan have launched attacks in the lead-up to Sunday 's parliamentary elections , in an effort to disrupt the vote .\tNNP NNS IN NNP VBP VBN NNS IN DT JJ TO NNP POS JJ NNS , IN DT NN TO VB DT NN .\nGovernment officials say security forces arrested 20 suspected rebels Saturday , who were trying to blow up a large dam in southern Afghanistan .\tNN NNS VBP NN NNS VBN CD JJ NNS NNP , WP VBD VBG TO VB RP DT JJ NN IN JJ NNP .\nLate Friday , three police officers were killed when Taleban guerillas ambushed their patrol near the capital .\tRB NNP , CD NNS NNS VBD VBN WRB NNP NNS VBD PRP$ NN IN DT NN .\nIn a separate attack , rebels ambushed police as they patrolled the main Kabul - Kandahar highway .\tIN DT JJ NN , NNS VBD NNS IN PRP VBD DT JJ NNP : NNP NN .\nSeven rebels were killed in the ensuing firefight .\tCD NNS VBD VBN IN DT VBG NN .\nSeven national assembly candidates and several poll workers have also been the victims of election-related violence .\tCD JJ NN NNS CC JJ NN NNS VBP RB VBN DT NNS IN JJ NN .\nThe Taleban have called for an election boycott , threatening attacks on foreign troops , but not on voters .\tDT NNP VBP VBN IN DT NN NN , VBG NNS IN JJ NNS , CC RB IN NNS .\nPolitical leaders representing Iraq 's ethnic and religious groups remain at odds over key provisions of a new constitution , despite Monday 's deadline for completion of a draft document .\tJJ NNS VBG NNP POS JJ CC JJ NNS VBP IN NNS IN JJ NNS IN DT JJ NN , IN NNP POS NN IN NN IN DT NN NN .\nFriday prayers brought calls from Sunni Arab clerics for followers to reject federalism and vote against a constitution containing provisions that divide the country .\tNNP NNS VBD NNS IN NNP NNP NNS IN NNS TO VB NN CC NN IN DT NN VBG NNS WDT VBP DT NN .\nOn Thursday , Abdul-Aziz al-Hakim , the leader of Iraq 's largest Shi'ite party , the Supreme Council for Islamic Revolution announced his support for a federal region in central and southern Iraq .\tIN NNP , NNP NNP , DT NN IN NNP POS JJS JJ NN , DT NNP NNP IN NNP NNP VBD PRP$ NN IN DT JJ NN IN JJ CC JJ NNP .\nIraq 's Kurds also favor a federal structure that will protect their autonomous status in the country 's north .\tNNP POS NNS RB VBP DT JJ NN WDT MD VB PRP$ JJ NN IN DT NN POS NN .\nThe draft is to be submitted to Iraq 's National Assembly Monday for debate before an October referendum .\tDT NN VBZ TO VB VBN TO NNP POS NNP NNP NNP IN NN IN DT NNP NN .\nIn other developments , a roadside bomb attack early Friday killed an American soldier who was on patrol in Tikrit , north of Baghdad .\tIN JJ NNS , DT NN NN NN RB NNP VBD DT JJ NN WP VBD IN NN IN NNP , NN IN NNP .\nMany commuters in the Brazilian city of Rio de Janeiro were stranded Friday as the city cut back bus service to curb deadly gang attacks on public transportation .\tJJ NNS IN DT JJ NN IN NNP IN NNP VBD VBN NNP IN DT NN VBD RP NN NN TO VB JJ NN NNS IN JJ NN .\nCity officials took the measure after gangs set fire to at least six buses Thursday , burning seven people alive .\tNNP NNS VBD DT NN IN NNS VBD NN TO IN JJS CD NNS NNP , VBG CD NNS JJ .\nGang members also attacked police stations .\tNNP NNS RB VBD NN NNS .\nTwo policemen , seven alleged gang members , and two other civilians were reported killed , in addition to the victims on the bus .\tCD NNS , CD JJ NN NNS , CC CD JJ NNS VBD VBN VBN , IN NN TO DT NNS IN DT NN .\nPolice said the motive for the apparently coordinated attacks was not immediately clear .\tNNS VBD DT NN IN DT RB VBN NNS VBD RB RB JJ .\nSome officials said it may be linked to anti-drug efforts in the city .\tDT NNS VBD PRP MD VB VBN TO JJ NNS IN DT NN .\nSome 200 people in Sao Paulo died earlier this year in a series of attacks by criminal gangs .\tDT CD NNS IN NNP NNP VBD RBR DT NN IN DT NN IN NNS IN JJ NNS .\nIndonesia says it will monitor Islamic boarding schools as part of its effort to fight militant violence and suicide bombings .\tNNP VBZ PRP MD VB NNP VBG NNS IN NN IN PRP$ NN TO VB JJ NN CC NN NNS .\nVice President Jusuf Kalla said Thursday that the religious affairs minister will monitor all Islamic boarding schools .\tNNP NNP NNP NNP VBD NNP IN DT JJ NNS NN MD VB DT JJ NN NNS .\nThe vice president said he believes there are only a few schools that could be considered possible breeding grounds for terrorists , but he declined to name them .\tDT NN NN VBD PRP VBZ EX VBP RB DT JJ NNS WDT MD VB VBN JJ NN NNS IN NNS , CC PRP VBD TO VB PRP .\nHowever , the Al-Mukmin and Al-Islam schools on the island of Java had previously come under scrutiny after several terrorists were found to have studied at them .\tRB , DT NNP CC NNP NNS IN DT NN IN NNP VBD RB VBN IN NN IN JJ NNS VBD VBN TO VB VBN IN PRP .\nThe former students include militants convicted in the 2002 Bali bombings and the 2003 bombing of the Marriott hotel in Jakarta .\tDT JJ NNS VBP NNS VBN IN DT CD NNP NNS CC DT CD NN IN DT NNP NN IN NNP .\nA Palestinian suicide bomber has blown himself up at an Israeli checkpoint in the northern West Bank , killing one Israeli soldier and at least two Palestinians .\tDT JJ NN NN VBZ VBN PRP RP IN DT JJ NN IN DT JJ NNP NNP , VBG CD JJ NN CC IN JJS CD NNS .\nIsraeli officials say the bomber struck Thursday , after stepping from a taxi to face soldiers at a makeshift checkpoint near the Israeli border .\tJJ NNS VBP DT NN VBD NNP , IN VBG IN DT NN TO VB NNS IN DT NN NN IN DT JJ NN .\nFour other Israelis and several Palestinians were wounded .\tCD JJ NNS CC JJ NNS VBD VBN .\nIsraeli authorities said they believed the bomber intended to strike in Tel Aviv .\tJJ NNS VBD PRP VBD DT NN VBD TO VB IN NNP NNP .\nThe bombing occurred as Israeli warplanes and artillery hit targets in the northern Gaza Strip , in a campaign Israel says is aimed at stopping militants from firing rockets into Israel .\tDT NN VBD IN JJ NNS CC NN VBD NNS IN DT JJ NNP NNP , IN DT NN NNP VBZ VBZ VBN IN VBG NNS IN VBG NNS IN NNP .\nMeanwhile , Palestinian security forces continue to hunt for a British human rights activist kidnapped along with her parents Wednesday in southern Gaza .\tRB , JJ NN NNS VBP TO VB IN DT JJ JJ NNS NN VBN IN IN PRP$ NNS NNP IN JJ NNP .\nAuthorities say there has been no claim of responsibility and no ransom demands .\tNNS VBP EX VBZ VBN DT NN IN NN CC DT NN NNS .\nOfficials in Nigeria say a bomb has exploded at a popular market inside an army barracks in the capital , Abuja .\tNNS IN NNP VBP DT NN VBZ VBN IN DT JJ NN IN DT NN NNS IN DT NN , NNP .\nNigerian television is reporting that at least 30 people died in the explosion .\tJJ NN VBZ VBG IN IN JJS CD NNS VBD IN DT NN .\nPolice have not confirmed that figure .\tNNS VBP RB VBN IN NN .\nOfficials say the bomb went off inside Mammy market where people were eating and drinking to celebrate New Year 's Eve .\tNNS VBP DT NN VBD RB JJ NNP NN WRB NNS VBD JJ CC NN TO VB NNP NNP POS NNP .\nNo one has claimed responsibility for the attack .\tDT NN VBZ VBN NN IN DT NN .\nNigerian President Goodluck Jonathan blamed the bombing on the radical Islamist group Boko Haram .\tJJ NNP NNP NNP VBD DT VBG IN DT JJ NN NN NNP NNP .\nThe group claimed responsibility for Christmas Eve bomb attacks in the central city of Jos , and for attacking several churches in the northern city of Maiduguri .\tDT NN VBD NN IN NNP NNP NN NNS IN DT JJ NN IN NNP , CC IN VBG JJ NNS IN DT JJ NN IN NNP .\nMore than 80 people died in those attacks .\tJJR IN CD NNS VBD IN DT NNS .\nAbuja was shaken by car bomb attacks in October .\tNNP VBD VBN IN NN NN NNS IN NNP .\nMilitants from the southern oil-producing Niger Delta claimed responsibility for those blasts .\tNNS IN DT JJ NN NNP NNP VBD NN IN DT NNS .\nThe eldest daughter of former Chilean dictator Augusto Pinochet has been taken into custody in Santiago , after returning from an unsuccessful bid for asylum in the United States .\tDT JJS NN IN JJ JJ NN NNP NNP VBZ VBN VBN IN NN IN NNP , IN VBG IN DT JJ NN IN NN IN DT NNP NNPS .\nOfficials say Lucia Pinochet Hiriart was detained at the airport in Santiago Saturday on arrival from Washington .\tNNS VBP NNP NNP NNP VBD VBN IN DT NN IN NNP NNP IN NN IN NNP .\nLike her mother , father and several siblings , she faces tax evasion charges linked to $ 27 million the family allegedly hid in overseas bank accounts .\tIN PRP$ NN , NN CC JJ NNS , PRP VBZ NN NN NNS VBN TO $ CD CD DT NN RB JJ IN JJ NN NNS .\nPinochet Hiriart fled Chile Sunday , a day before her mother and four siblings were detained there .\tNNP NNP VBD NNP NNP , DT NN IN PRP$ NN CC CD NNS VBD VBN RB .\nThey were freed on bail a day later .\tPRP VBD VBN IN NN DT NN RB .\nIn addition to the tax fraud charges , her father , Augusto Pinochet , also faces human rights charges related to his rule of Chile from 1973 to 1990 .\tIN NN TO DT NN NN NNS , PRP$ NN , NNP NNP , RB VBZ JJ NNS NNS VBN TO PRP$ NN IN NNP IN CD TO CD .\nPakistani officials say the senior officer heading the probe into last week 's suicide attack on former Pakistani Prime Minister Benazir Bhutto has withdrawn from the case .\tJJ NNS VBP DT JJ NN VBG DT NN IN JJ NN POS NN NN IN JJ JJ NNP NNP NNP NNP VBZ VBN IN DT NN .\nThe home secretary of Sindh province , Ghulam Muhammad Mohtarem , says Manzur Mughal stepped down after Ms. Bhutto accused him of involvement in the alleged torture of her husband while in police custody in 1999 .\tDT NN NN IN NNP NN , NNP NNP NNP , VBZ NNP NNP VBD RP IN NNP NNP VBD PRP IN NN IN DT JJ NN IN PRP$ NN IN IN NN NN IN CD .\nMs. Bhutto survived an assassination attempt last Thursday when suicide attackers struck near her convoy as it drove through the packed streets of Karachi , the capital of Sindh province , hours after she returned to Pakistan , ending years of political exile .\tNNP NNP VBD DT NN NN JJ NNP WRB NN NNS VBD IN PRP$ NN IN PRP VBD IN DT VBN NNS IN NNP , DT NN IN NNP NN , NNS IN PRP VBD TO NNP , VBG NNS IN JJ NN .\nThe twice-serving former prime minister has said extremist elements in Pakistan 's political establishment were behind the attack , which killed 139 people .\tDT JJ JJ JJ NN VBZ VBN NN NNS IN NNP POS JJ NN VBD IN DT NN , WDT VBD CD NNS .\nInvestigators have said they suspect two suicide bombers were responsible for the attack .\tNNS VBP VBN PRP VBP CD NN NNS VBD JJ IN DT NN .\nIsrael says the population of its West Bank settlements has grown , even as the country withdraws from the Gaza Strip .\tNNP VBZ DT NN IN PRP$ NNP NNP NNS VBZ VBN , RB IN DT NN NNS IN DT NNP NNP .\nThe Israeli Interior Ministry says 2,46,000 Jewish settlers lived in the West Bank as of June , 2005 , about 10,000 more than a year earlier .\tDT JJ NNP NNP VBZ CD JJ NNS VBD IN DT NNP NNP IN IN NNP , CD , IN CD JJR IN DT NN RBR .\nA spokesman said the increase resulted from births and an influx of new residents , but he could not give a breakdown for each figure .\tDT NN VBD DT NN VBD IN NNS CC DT NN IN JJ NNS , CC PRP MD RB VB DT NN IN DT NN .\nPalestinians claim the West Bank and east Jerusalem as part of a future Palestinian state .\tNNS VBP DT NNP NNP CC JJ NNP IN NN IN DT JJ JJ NN .\nIsrael captured the territories in the 1967 Mideast war .\tNNP VBD DT NNS IN DT CD JJ NN .\nMeanwhile , an Israeli woman has died after setting herself on fire last week to protest Israel 's withdrawal from Gaza .\tRB , DT JJ NN VBZ VBN IN VBG PRP IN NN JJ NN TO VB NNP POS NN IN NNP .\nOn Tuesday , Israeli troops finished evacuating all 21 Jewish settlements in Gaza and four in the West Bank under Prime Minister Ariel Sharon 's plan to ' disengage ' from the Palestinians .\tIN NNP , JJ NNS VBD VBG DT CD JJ NNS IN NNP CC CD IN DT NNP NNP IN NNP NNP NNP NNP POS NN TO `` VB `` IN DT NNS .\nUnited Nations officials say Secretary-General Ban Ki-moon has urged Burmese Prime Minister Thein Sein to ensure transparent and inclusive elections in the military-ruled country .\tNNP NNP NNS VBP JJ NNP NNP VBZ VBN JJ NNP NNP NNP NNP TO VB NN CC JJ NNS IN DT JJ NN .\nA U.N. spokesperson says Mr. Ban met Saturday with the Burmese premier on the sidelines of a Southeast Asia regional summit in Hanoi , Vietnam .\tDT NNP NN VBZ NNP NNP VBD NNP IN DT JJ NN IN DT NNS IN DT NNP NNP JJ NN IN NNP , NNP .\nA statement says the secretary-general also reiterated his call for the release of political prisoners and to lift restrictions on detained pro-Democracy advocate Aung San Suu Kyi .\tDT NN VBZ DT NN RB VBD PRP$ NN IN DT NN IN JJ NNS CC TO VB NNS IN JJ NN NN NNP NNP NNP NNP .\nBurmese Foreign Minister Nyan Win said earlier this week that Aung San Suu Kyi may be freed soon after the November 7 vote .\tJJ NNP NNP NNP NNP VBD RBR DT NN IN NNP NNP NNP NNP MD VB VBN RB IN DT NNP CD NN .\nThe election is supposed to transition Burma from military to civilian rule .\tDT NN VBZ VBN TO NN NNP IN JJ TO JJ NN .\nIt has drawn strong international criticism for imposing rules that ensure most of the seats in parliament will go to a pro-government party .\tPRP VBZ VBN JJ JJ NN IN VBG NNS IN VB JJS IN DT NNS IN NN MD VB TO DT JJ NN .\nIran 's top nuclear official says his country will not abandon its uranium enrichment program , and that the Middle East could become even more unstable if Tehran is referred to the United Nations Security Council for its nuclear activities .\tNNP POS JJ JJ NN VBZ PRP$ NN MD RB VB PRP$ NN NN NN , CC IN DT NNP NNP MD VB RB RBR JJ IN NNP VBZ VBN TO DT NNP NNP NNP NNP IN PRP$ JJ NNS .\nSpeaking at an international nuclear technology conference in Tehran Saturday , Hassan Rowhani said if Iran is brought before the Security Council , it could cause problems for the regional energy market .\tVBG IN DT JJ JJ NN NN IN NNP NNP , NNP NNP VBD IN NNP VBZ VBN IN DT NNP NNP , PRP MD VB NNS IN DT JJ NN NN .\nIran is the second largest oil producer in OPEC .\tNNP VBZ DT JJ JJS NN NN IN NNP .\nBritain , France and Germany are in talks in with Iran , trying to negotiate a permanent end to its uranium enrichment program in exchange for a package of economic incentives .\tNNP , NNP CC NNP VBP IN NNS IN IN NNP , VBG TO VB DT JJ NN TO PRP$ NN NN NN IN NN IN DT NN IN JJ NNS .\nBut Mr. Rowhani complained that talks with the Europeans are moving slowly , and he remained adamant that Iran will never abandon its enrichment activities .\tCC NNP NNP VBD IN NNS IN DT NNS VBP VBG RB , CC PRP VBD JJ IN NNP MD RB VB PRP$ NN NNS .\nA spokesman for an Iraqi court says the trial of a journalist who threw his shoes at U.S. President George Bush has been postponed .\tDT NN IN DT JJ NN VBZ DT NN IN DT NN WP VBD PRP$ NNS IN NNP NNP NNP NNP VBZ VBN VBN .\nMuntazer al-Zaidi was scheduled to go on trial Wednesday for the December 14 incident in Baghdad .\tNNP NNP VBD VBN TO VB IN NN NNP IN DT NNP CD NN IN NNP .\nHe has been charged with assaulting a foreign leader , and faces up to 15 years in jail if convicted .\tPRP VBZ VBN VBN IN VBG DT JJ NN , CC VBZ RP TO CD NNS IN NN IN VBN .\nThe Iraqi television journalist threw his shoes at Mr. Bush as the outgoing U.S. president stood next to Iraqi Prime Minister Nouri al-Maliki at a news conference .\tDT JJ NN NN VBD PRP$ NNS IN NNP NNP IN DT JJ NNP NN VBD JJ TO JJ NNP NNP NNP NNP IN DT NN NN .\nMr. Bush ducked his head and narrowly missed being hit .\tNNP NNP VBD PRP$ NN CC RB VBD VBG VBN .\nMr. Maliki 's office says Zaidi has confessed to throwing the shoes on the orders of a militant known for beheading people .\tNNP NNP POS NN VBZ NNP VBZ VBN TO VBG DT NNS IN DT NNS IN DT NN VBN IN VBG NNS .\nThe militant who allegedly masterminded the incident has not been identified .\tDT NN WP RB VBD DT NN VBZ RB VBN VBN .\nThe journalist 's family says he was coerced into writing the confession letter .\tDT NN POS NN VBZ PRP VBD VBN IN VBG DT NN NN .\nIraq executed three convicted murderers Thursday - the first time the government has carried out the death penalty since Saddam Hussein was in power .\tNNP VBD CD VBN NNS NNP IN DT JJ NN DT NN VBZ VBN RP DT NN NN IN NNP NNP VBD IN NN .\nA government spokesman , Laith Kubba , told reporters that the three were hanged at 10 AM local time .\tDT NN NN , NNP NNP , VBD NNS IN DT CD VBD VBN IN CD NNP JJ NN .\nThey were convicted of kidnapping , rape and murder .\tPRP VBD VBN IN NN , NN CC NN .\nThe presidential council approved their death sentences last month .\tDT JJ NN VBD PRP$ NN NNS JJ NN .\nBut President Jalal Talabani , who opposes the death penalty , refused to authorize the hangings , and instead empowered one of his vice presidents to sign on his behalf .\tCC NNP NNP NNP , WP VBZ DT NN NN , VBD TO VB DT NNS , CC RB VBD CD IN PRP$ NN NNS TO VB IN PRP$ NN .\nIran 's ambassador to the United Nations has assured Secretary-General Ban Ki-moon that Iran will cooperate with the International Atomic Energy Agency ( IAEA ) on the nation 's nuclear program .\tNNP POS NN TO DT NNP NNP VBZ VBN JJ NNP NNP IN NNP MD VB IN DT NNP NNP NNP NNP LRB NNP RRB IN DT NN POS JJ NN .\nAmbassador Mohammad Khazaee made the remark at a meeting with Mr. Ban during which he personally delivered a letter from Foreign Minister Manouchehr Mottaki .\tNNP NNP NNP VBD DT NN IN DT NN IN NNP NNP IN WDT PRP RB VBD DT NN IN NNP NNP NNP NNP .\nIn it , Mottaki criticizes the latest Security Council sanctions on Iran for its refusal to stop enriching uranium , a process that can be used to make nuclear weapons .\tIN PRP , NNP VBZ DT JJS NN NNP NNS IN NNP IN PRP$ NN TO VB VBG NN , DT NN WDT MD VB VBN TO VB JJ NNS .\nIran says its nuclear technology is intended for peaceful purposes .\tNNP VBZ PRP$ JJ NN VBZ VBN IN JJ NNS .\nIran 's President Mahmoud Ahmadinejad has said the newest U.N. resolution , which tightens existing sanctions on trade , travel and Iran 's foreign assets , is invalid and lacks legal credibility .\tNNP POS NNP NNP NNP VBZ VBN DT JJS NNP NN , WDT VBZ VBG NNS IN NN , NN CC NNP POS JJ NNS , VBZ JJ CC VBZ JJ NN .\nStrategically important , Gibraltar was reluctantly ceded to Great Britain by Spain in the 1713 Treaty of Utrecht ; the British garrison was formally declared a colony in 1830 .\tRB JJ , NNP VBD RB VBN TO NNP NNP IN NNP IN DT CD NNP IN NNP ; DT JJ NN VBD RB VBN DT NN IN CD .\nIn a referendum held in 1967 , Gibraltarians voted overwhelmingly to remain a British dependency .\tIN DT NN VBN IN CD , NNPS VBD RB TO VB DT JJ NN .\nThe subsequent granting of autonomy in 1969 by the UK led to Spain closing the border and severing all communication links .\tDT NN VBG IN NN IN CD IN DT NNP VBD TO NNP VBG DT NN CC VBG DT NN NNS .\nA series of talks were held by the UK and Spain between 1997 and 2002 on establishing temporary joint sovereignty over Gibraltar .\tDT NN IN NNS VBD VBN IN DT NNP CC NNP IN CD CC CD IN VBG JJ JJ NN IN NNP .\nIn response to these talks , the Gibraltar Government called a referendum in late 2002 in which the majority of citizens voted overwhelmingly against any sharing of sovereignty with Spain .\tIN NN TO DT NNS , DT NNP NNP VBD DT NN IN JJ CD IN WDT DT NN IN NNS VBD RB IN DT NN IN NN IN NNP .\nSince late 2004 , tripartite talks among Spain , the UK , and Gibraltar have been held with the aim of cooperatively resolving problems that affect the local population , and work continues on cooperation agreements in areas such as taxation and financial services ; communications and maritime security ; policy , legal and customs services ; environmental protection ; and education and visa services .\tIN JJ CD , JJ NNS IN NNP , DT NNP , CC NNP VBP VBN VBN IN DT NN IN RB VBG NNS WDT VBP DT JJ NN , CC NN VBZ IN NN NNS IN NNS JJ IN NN CC JJ NNS ; NNS CC JJ NN ; NN , JJ CC NNS NNS ; JJ NN ; CC NN CC NN NNS .\nThroughout 2009 , a dispute over Gibraltar 's claim to territorial waters extending out three miles gave rise to periodic non-violent maritime confrontations between Spanish and UK naval patrols .\tIN CD , DT NN IN NNP POS NN TO JJ NNS VBG RP CD NNS VBD NN TO JJ JJ NN NNS IN JJ CC NNP JJ NNS .\nA new noncolonial constitution came into effect in 2007 , and the European Court of First Instance recognized Gibraltar 's right to regulate its own tax regime in December 2008 , but the UK retains responsibility for defense , foreign relations , internal security , and financial stability .\tDT JJ JJ NN VBD IN NN IN CD , CC DT NNP NNP IN NNP NNP VBD NNP POS NN TO VB PRP$ JJ NN NN IN NNP CD , CC DT NNP VBZ NN IN NN , JJ NNS , JJ NN , CC JJ NN .\nChad , part of France 's African holdings until 1960 , endured three decades of civil warfare as well as invasions by Libya before a semblance of peace was finally restored in 1990 .\tNNP , NN IN NNP POS JJ NNS IN CD , VBD CD NNS IN JJ NN RB RB IN NNS IN NNP IN DT NN IN NN VBD RB VBN IN CD .\nThe government eventually drafted a democratic constitution and held flawed presidential elections in 1996 and 2001 .\tDT NN RB VBD DT JJ NN CC VBD JJ JJ NNS IN CD CC CD .\nIn 1998 , a rebellion broke out in northern Chad , which has sporadically flared up despite several peace agreements between the government and the rebels .\tIN CD , DT NN VBD RP IN JJ NNP , WDT VBZ RB VBN RP IN JJ NN NNS IN DT NN CC DT NNS .\nIn 2005 , new rebel groups emerged in western Sudan and made probing attacks into eastern Chad despite signing peace agreements in December 2006 and October 2007 .\tIN CD , JJ NN NNS VBD IN JJ NNP CC VBD VBG NNS IN JJ NNP IN VBG NN NNS IN NNP CD CC NNP CD .\nPower remains in the hands of an ethnic minority .\tNN VBZ IN DT NNS IN DT JJ NN .\nIn June 2005 , President Idriss DEBY held a referendum successfully removing constitutional term limits and won another controversial election in 2006 .\tIN NNP CD , NNP NNP NNP VBD DT NN RB VBG JJ NN NNS CC VBD DT JJ NN IN CD .\nSporadic rebel campaigns continued throughout 2006 and 2007 .\tJJ NN NNS VBD IN CD CC CD .\nThe capital experienced a significant rebel threat in early 2008 .\tDT NN VBD DT JJ NN NN IN JJ CD .\nAhmad Shah DURRANI unified the Pashtun tribes and founded Afghanistan in 1747 .\tNNP NNP NNP VBD DT NNP NNS CC VBD NNP IN CD .\nThe country served as a buffer between the British and Russian Empires until it won independence from notional British control in 1919 .\tDT NN VBD IN DT NN IN DT JJ CC JJ NNS IN PRP VBD NN IN JJ JJ NN IN CD .\nA brief experiment in democracy ended in a 1973 coup and a 1978 Communist counter-coup .\tDT JJ NN IN NN VBN IN DT CD NN CC DT CD JJ NN .\nThe Soviet Union invaded in 1979 to support the tottering Afghan Communist regime , touching off a long and destructive war .\tDT NNP NNP VBD IN CD TO VB DT VBG JJ JJ NN , VBG RP DT JJ CC JJ NN .\nThe USSR withdrew in 1989 under relentless pressure by internationally supported anti-Communist mujahedin rebels .\tDT NNP VBD IN CD IN JJ NN IN RB VBN JJ NN NNS .\nA series of subsequent civil wars saw Kabul finally fall in 1996 to the Taliban , a hardline Pakistani-sponsored movement that emerged in 1994 to end the country 's civil war and anarchy .\tDT NN IN JJ JJ NNS VBD NNP RB VB IN CD TO DT NNP , DT JJ JJ NN WDT VBD IN CD TO VB DT NN POS JJ NN CC NN .\nFollowing the 11 September 2001 terrorist attacks in New York City and Washington , D.C. , a US , Allied , and anti-Taliban Northern Alliance military action toppled the Taliban for sheltering Osama BIN LADIN .\tVBG DT CD NNP CD JJ NNS IN NNP NNP NNP CC NNP , NNP , DT NNP , NNP , CC JJ NNP NNP JJ NN VBD DT NNP IN VBG NNP NNP NNP .\nThe UN-sponsored Bonn Conference in 2001 established a process for political reconstruction that included the adoption of a new constitution , a presidential election in 2004 , and National Assembly elections in 2005 .\tDT JJ NNP NNP IN CD VBD DT NN IN JJ NN WDT VBD DT NN IN DT JJ NN , DT JJ NN IN CD , CC NNP NNP NNS IN CD .\nIn December 2004 , Hamid KARZAI became the first democratically elected president of Afghanistan and the National Assembly was inaugurated the following December .\tIN NNP CD , NNP NNP VBD DT JJ RB VBN NN IN NNP CC DT NNP NNP VBD VBN DT VBG NNP .\nKARZAI was re-elected in August 2009 for a second term .\tNNP VBD VBN IN NNP CD IN DT JJ NN .\nDespite gains toward building a stable central government , a resurgent Taliban and continuing provincial instability - particularly in the south and the east - remain serious challenges for the Afghan Government .\tIN NNS IN VBG DT JJ JJ NN , DT JJ NNP CC VBG JJ NN : RB IN DT NN CC DT JJ : VBP JJ NNS IN DT JJ NN .\nThe Pacific coast of Nicaragua was settled as a Spanish colony from Panama in the early 16th century .\tDT NNP NN IN NNP VBD VBN IN DT JJ NN IN NNP IN DT JJ JJ NN .\nIndependence from Spain was declared in 1821 and the country became an independent republic in 1838 .\tNN IN NNP VBD VBN IN CD CC DT NN VBD DT JJ NN IN CD .\nBritain occupied the Caribbean Coast in the first half of the 19th century , but gradually ceded control of the region in subsequent decades .\tNNP VBD DT NNP NNP IN DT JJ NN IN DT JJ NN , CC RB JJ NN IN DT NN IN JJ NNS .\nViolent opposition to governmental manipulation and corruption spread to all classes by 1978 and resulted in a short-lived civil war that brought the Marxist Sandinista guerrillas to power in 1979 .\tNNP NN TO JJ NN CC NN VBD TO DT NNS IN CD CC VBD IN DT JJ JJ NN WDT VBD DT JJ NNP NNS TO NN IN CD .\nNicaraguan aid to leftist rebels in El Salvador caused the US to sponsor anti-Sandinista contra guerrillas through much of the 1980s .\tJJ NN TO JJ NNS IN NNP NNP VBD DT NNP TO VB JJ NN NNS IN NN IN DT NNS .\nAfter losing free and fair elections in 1990 , 1996 , and 2001 , former Sandinista President Daniel ORTEGA Saavedra was elected president in 2006 .\tIN VBG JJ CC JJ NNS IN CD , CD , CC CD , JJ NNP NNP NNP NNP NNP VBD VBN NN IN CD .\nThe 2008 municipal elections were marred by widespread irregularities .\tDT CD JJ NNS VBD VBN IN JJ NNS .\nNicaragua 's infrastructure and economy - hard hit by the earlier civil war and by Hurricane Mitch in 1998 - are slowly being rebuilt , but democratic institutions have been weakened under the ORTEGA administration .\tNNP POS NN CC NN : RB VBN IN DT JJR JJ NN CC IN NNP NNP IN CD : VBP RB VBG VBN , CC JJ NNS VBP VBN VBN IN DT NNP NN .\nWith a well-developed infrastructure , a free-enterprise economy , generally pro-investment policies , and strong export industries , Thailand enjoyed solid growth from 2000 to 2007 - averaging more than 4 % per year - as it recovered from the Asian financial crisis of 1997 - 98 .\tIN DT JJ NN , DT JJ NN , RB JJ NNS , CC JJ NN NNS , NNP VBD JJ NN IN CD TO CD : VBG JJR IN CD NN IN NN : IN PRP VBD IN DT JJ JJ NN IN CD IN CD .\nThai exports - mostly machinery and electronic components , agricultural commodities , and jewelry - continue to drive the economy , accounting for more than half of GDP .\tJJ NNS : RB NN CC JJ NNS , JJ NNS , CC NN : VBP TO VB DT NN , VBG IN JJR IN NN IN NN .\nThe global financial crisis of 2008 - 9 severely cut Thailand 's exports , with most sectors experiencing double-digit drops .\tDT JJ JJ NN IN CD : CD RB VBN NNP POS NNS , IN JJS NNS VBG JJ NNS .\nIn 2009 , the economy contracted 2.2 % .\tIN CD , DT NN VBD CD NN .\nIn 2010 , Thailand 's economy expanded 7.6 % , its fastest pace since 1995 , as exports rebounded from their depressed 2009 level .\tIN CD , NNP POS NN VBD CD NN , PRP$ JJS NN IN CD , IN NNS VBD IN PRP$ JJ CD NN .\nAntigovernment protests during March-May and the country 's polarized political situation had - at most - a temporary impact on business and consumer confidence .\tJJ NNS IN JJ CC DT NN POS JJ JJ NN VBD : IN JJS IN DT JJ NN IN NN CC NN NN .\nAlthough tourism was hit hard during the protests , its quick recovery helped boost consumer confidence to new highs .\tIN NN VBD VBN RB IN DT NNS , PRP$ JJ NN VBD VB NN NN TO JJ NNS .\nMoreover , business and investor sentiment remained buoyant as Thailand 's stock market grew almost 5 % during the three-month period .\tRB , NN CC NN NN VBD JJ IN NNP POS NN NN VBD RB CD NN IN DT JJ NN .\nThe economy probably will continue to experience high grow well into 2011 .\tDT NN RB MD VB TO VB JJ VB RB IN CD .\nA FARMER , who bore a grudge against a Fox for robbing his poultry yard , caught him at last , and being determined to take an ample revenge , tied some rope well soaked in oil to his tail , and set it on fire .\tDT NN , WP VBD DT NN IN DT NN IN VBG PRP$ NN NN , VBD PRP IN JJ , CC VBG VBN TO VB DT JJ NN , VBD DT NN RB VBD IN NN TO PRP$ NN , CC VBD PRP IN NN .\nThe Fox by a strange fatality rushed to the fields of the Farmer who had captured him .\tDT NN IN DT JJ NN VBD TO DT NNS IN DT NN WP VBD VBN PRP .\nIt was the time of the wheat harvest ; but the Farmer reaped nothing that year and returned home grieving sorely .\tPRP VBD DT NN IN DT NN NN ; CC DT NN VBD DT DT NN CC VBD NN VBG RB .\nA LION and a Bear seized a Kid at the same moment , and fought fiercely for its possession .\tDT NN CC DT NN VBD DT NN IN DT JJ NN , CC VBD RB IN PRP$ NN .\nWhen they had fearfully lacerated each other and were faint from the long combat , they lay down exhausted with fatigue .\tWRB PRP VBD RB VBN DT NN CC VBD NN IN DT JJ NN , PRP VBD RB VBN IN NN .\nA Fox , who had gone round them at a distance several times , saw them both stretched on the ground with the Kid lying untouched in the middle .\tDT NN , WP VBD VBN JJ PRP IN DT NN JJ NNS , VBD PRP DT VBN IN DT NN IN DT NN VBG JJ IN DT NN .\nHe ran in between them , and seizing the Kid scampered off as fast as he could .\tPRP VBD IN IN PRP , CC VBG DT NNP VBD RP RB RB IN PRP MD .\nThe Lion and the Bear saw him , but not being able to get up , said , ' Woe be to us , that we should have fought and belabored ourselves only to serve the turn of a Fox . '\tDT NN CC DT NN VBD PRP , CC RB VBG JJ TO VB RP , VBD , `` NN VB TO PRP , IN PRP MD VB VBN CC VBN PRP RB TO VB DT NN IN DT NN . ``\nIt sometimes happens that one man has all the toil , and another all the profit .\tPRP RB VBZ IN CD NN VBZ PDT DT NN , CC DT PDT DT NN .\nA CARTER was driving a waggon loaded with a merchant 's goods , when the wheels stuck in a rut .\tDT NN VBD VBG DT NN VBN IN DT NN POS NNS , WRB DT NNS VBN IN DT NN .\nThereupon he began to pray to Hercules , without other exertion .\tIN PRP VBD TO VB TO NNP , IN JJ NN .\n' Indolent fellow ! ' said Hercules ; ' you ask me to help you , but will not help yourself . '\t`` JJ NN . `` VBD NNP ; `` PRP VB PRP TO VB PRP , CC MD RB VB PRP . ``\nSo the Carter helped himself to so many of the most valuable goods that the horses easily ran away with the remainder .\tIN DT NN VBD PRP TO RB NN IN DT RBS JJ NNS IN DT NNS RB VBD RB IN DT NN .\nThese two tuba players walk past a bar ...\tDT CD NN NNS VBP IN DT NN :\nWell , it could happen !\tRB , PRP MD VB .\nKing Juan Carlos hired a public relations firmn to find out how the Spanish people felt about him .\tNNP NNP NNP VBD DT JJ NNS VBP TO VB RP WRB DT JJ NNS VBD IN PRP .\nThey informed him that he had 75 % approval in the mountainous areas but only 50 % approval elsewhere The conclusion was that the reign in Spain was shaky on the plain .\tPRP VBD PRP IN PRP VBD CD NN NN IN DT JJ NNS CC RB CD NN NN RB DT NN VBD IN DT NN IN NNP VBD JJ IN DT NN .\nThe U.S. military in Afghanistan says five American and one Afghan soldiers were injured in two incidents when their helicopters were forced to make emergency landings after being hit by ground fire .\tDT NNP NN IN NNP VBZ CD NNP CC CD JJ NNS VBD VBN IN CD NNS WRB PRP$ NNS VBD VBN TO VB NN NNS IN VBG VBN IN NN NN .\nThe military says the attacks on the ( CH-47 ) Chinook helicopters occurred Sunday in the southern provinces of Kandahar and Uruzgan - both hotbeds of Taleban insurgents and their allies .\tDT JJ VBZ DT NNS IN DT LRB NNP RRB NNP NNS VBD NNP IN DT JJ NNS IN NNP CC NNP : DT NNS IN NNP NNS CC PRP$ NNS .\nIn a separate attack Sunday , three American soldiers were wounded in a roadside bomb blast in Zabul - also in southern Afghanistan .\tIN DT JJ NN NNP , CD JJ NNS VBD VBN IN DT NN NN NN IN NNP : RB IN JJ NNP .\nThe military says the wounded soldiers are in stable condition .\tDT JJ VBZ DT JJ NNS VBP IN JJ NN .\nIn another incident , a suicide attacker killed a civilian when he blew himself up near a coalition troop convoy in Kandahar .\tIN DT NN , DT NN NN VBD DT JJ WRB PRP VBD PRP RP IN DT NN NN NN IN NNP .\nAlmost 3,000 workers at an electronics plant in northern China were off the job for a third day Thursday because of a strike demanding better pay and working conditions .\tRB CD NNS IN DT NN NN IN JJ NNP VBD IN DT NN IN DT JJ NN NNP IN IN DT NN VBG JJR NN CC VBG NNS .\nThe stoppage at the Japanese-owned Tianjin Mitsumi Electric Company is the latest in a growing number of strikes by Chinese workers demanding salaries in line with those paid in other countries .\tDT NN IN DT JJ NNP NNP NNP NN VBZ DT JJS IN DT VBG NN IN NNS IN JJ NNS VBG NNS IN NN IN DT VBN IN JJ NNS .\nMost have been aimed at foreign-owned companies .\tJJS VBP VBN VBN IN JJ NNS .\nThe Associated Press reports security forces were posted around the factory , but have not taken action against about 100 workers gathered outside the factory .\tDT NNP NNP VBZ NN NNS VBD VBN IN DT NN , CC VBP RB VBN NN IN IN CD NNS VBN IN DT NN .\nHowever foreign reporters were detained and removed from the area .\tRB JJ NNS VBD VBN CC VBN IN DT NN .\nA worker at the plant told China 's state-run Xinhua news agency he works six days a week with two hours of overtime every day to earn $ 220 a month .\tDT NN IN DT NN VBD NNP POS JJ NNP NN NN PRP VBZ CD NNS DT NN IN CD NNS IN NN DT NN TO VB $ CD DT NN .\nAfghans continued protests Saturday against a U.S. pastor 's threat to burn copies of the Quran .\tNNS VBD NNS NNP IN DT NNP NN POS NN TO VB NNS IN DT NNP .\nThe Associated Press reports protesters have set shops and police checkpoints on fire in eastern Logar province 's capital , Puli Alam .\tDT NNP NNP NNS NNS VBP VBN NNS CC NNS NNS IN NN IN JJ NNP NN POS NN , NNP NNP .\nAnd Reuters news agency says several thousand people gathered in three district in northeastern Badakhshan province .\tCC NNP NN NN VBZ JJ CD NNS VBN IN CD NN IN JJ NNP NN .\nOn Friday , thousands of Afghans across the country demonstrated their outrage at the preacher 's insistence on burning Islam 's holy book .\tIN NNP , NNS IN NNS IN DT NN VBD PRP$ NN IN DT NN POS NN IN NN NNP POS JJ NN .\nAt least eight people were wounded in the protests .\tIN JJS CD NNS VBD VBN IN DT NNS .\nThe preacher has since called off Saturday 's planned burning .\tDT NN VBZ IN VBN RP NNP POS JJ NN .\nThe obscure Florida pastor , Reverend Terry Jones , arrived in New York late Friday .\tDT JJ NNP NN , NNP NNP NNP , VBD IN NNP NNP JJ NNP .\nHis plans have created an international firestorm and prompted leading political and religious figures to issue statements condemning the plans .\tPRP$ NNS VBP VBN DT JJ NN CC VBD VBG JJ CC JJ NNS TO VB NNS VBG DT NNS .\nTop U.S. officials had warned the pastor that the Quran burning could provoke Islamist violence and put U.S. soldiers ' lives in danger .\tJJ NNP NNS VBD VBN DT NN IN DT JJ NN MD VB JJ NN CC VB NNP NNS POS NNS IN NN .\nThe U.S. monthly trade deficit rose to an all-time high in November as oil imports soared .\tDT NNP JJ NN NN VBD TO DT JJ NN IN NNP IN NN NNS VBD .\nThe gap between what Americans bought abroad and the goods and services they sold to foreign nations widened to a record $ 68.9 billion .\tDT NN IN WP NNS VBD RB CC DT NNS CC NNS PRP VBD TO JJ NNS VBD TO DT NN $ CD CD .\nThe surge surprised economists who expected declining oil prices to ease the trade deficit .\tDT NN VBD NNS WP VBD VBG NN NNS TO VB DT NN NN .\nWednesday 's report from the U.S. Commerce Department says trade deficits with OPEC , China , Canada , the European Union , and Mexico were at record levels .\tNNP POS NN IN DT NNP NNP NNP VBZ NN NNS IN NNP , NNP , NNP , DT NNP NNP , CC NNP VBD IN NN NNS .\nSome analysts say November 's huge trade deficit puts the United States on track to exceed last year 's record annual trade deficit of nearly $ 618 billion .\tDT NNS VBP NNP POS JJ NN NN VBZ DT NNP NNPS IN NN TO VB JJ NN POS NN JJ NN NN IN RB $ CD CD .\nFrance , Germany and Britain have warned Iran it will answer to the United Nations Security Council if it resumes uranium enrichment activities that the United States says could produce fuel for nuclear bombs .\tNNP , NNP CC NNP VBP VBN NNP PRP MD VB TO DT NNP NNP NNP NNP IN PRP VBZ NN NN NNS IN DT NNP NNP VBZ MD VB NN IN JJ NNS .\nIn a letter , foreign ministers from the three countries told top Iranian negotiator Hassan Rowhani that they will break off months of bilateral talks aimed at ending disputes over the nature of Iran 's nuclear ambitions .\tIN DT NN , JJ NNS IN DT CD NNS VBD JJ JJ NN NNP NNP IN PRP MD VB RP NNS IN JJ NNS VBN IN VBG NNS IN DT NN IN NNP POS JJ NNS .\nThe matter would then be referred to the Security Council for possible sanctions .\tDT NN MD RB VB VBN TO DT NNP NNP IN JJ NNS .\nIn Tehran , Mr. Rowhani is quoted as saying Iran will no longer respect the Nuclear Non-Proliferation Treaty if it is denied the right to develop a full civilian nuclear energy program .\tIN NNP , NNP NNP VBZ VBN IN VBG NNP MD RB RB VB DT NNP NNP NNP IN PRP VBZ VBN DT NN TO VB DT JJ JJ JJ NN NN .\nThe United States accuses Iran of clandestine efforts to develop nuclear weapons .\tDT NNP NNPS VBZ NNP IN JJ NNS TO VB JJ NNS .\nTehran has repeatedly denied the charge .\tNNP VBZ RB VBN DT NN .\nUkraine 's parliament has set the inauguration of President-elect Viktor Yushchenko for Sunday .\tNNP POS NN VBZ VBN DT NN IN JJ NNP NNP IN NNP .\nThursday 's decision came hours after the Supreme Court threw out the final legal appeal by former Prime Minister Viktor Yanukovych , who alleged that last month 's election was fraudulent .\tNNP POS NN VBD NNS IN DT NNP NNP VBD RP DT JJ JJ NN IN JJ NNP NNP NNP NNP , WP VBD IN JJ NN POS NN VBD JJ .\nChief Justice Anatoly Varema calls the court 's decision final .\tNNP NNP NNP NNP VBZ DT NN POS NN JJ .\nMr. Yanukovych has finally conceded defeat , telling Ukrainian television Thursday that the election campaign is over .\tNNP NNP VBZ RB VBN NN , VBG JJ NN NNP IN DT NN NN VBZ IN .\nHe called on supporters to end their protests and begin what he calls a new political struggle .\tPRP VBD IN NNS TO VB PRP$ NNS CC VB WP PRP VBZ DT JJ JJ NN .\nBut his legal team plans to appeal the election to the European Court of Human Rights .\tCC PRP$ JJ NN VBZ TO VB DT NN TO DT NNP NNP IN NNP NNP .\nMeanwhile , Russian President Vladimir Putin , who backed Mr. Yanukovych , congratulated Mr. Yushchenko .\tRB , JJ NNP NNP NNP , WP VBD NNP NNP , VBD NNP NNP .\nU.S. Secretary of State Colin Powell will travel to Kiev for Sunday 's inauguration .\tNNP NNP IN NNP NNP NNP MD VB TO NNP IN NNP POS NN .\nNATO is sending Secretary General Jaap de Hoop Scheffer .\tNNP VBZ VBG NNP NNP NNP IN NNP NNP .\nBritney Spears is officially divorced - but at a stiff price .\tNNP NNP VBZ RB JJ : CC IN DT JJ NN .\nThe Star Magazine reports the singer 's divorce from Kevin Federline will cost her $ 13 million , including $ 25,000 a month in child support for each of the couple 's two sons until they reach 18 .\tDT NNP NNP VBZ DT NN POS NN IN NNP NNP MD VB PRP $ CD CD , VBG $ CD DT NN IN NN NN IN DT IN DT NN POS CD NNS IN PRP VBP CD .\nHe also gets custody of the boys four days a week .\tPRP RB VBZ NN IN DT NNS CD NNS DT NN .\nKevin Federline gets to keep all the gifts Britney Spears bought him during their two-year marriage - but is forbidden from writing a tell-all book about their union .\tNNP NNP VBZ TO VB PDT DT NNS NNP NNP VBD PRP IN PRP$ JJ NN : CC VBZ VBN IN VBG DT JJ NN IN PRP$ NN .\nHe reportedly encouraged Britney to remain in a treatment center by telling her they would reconcile after she got out .\tPRP RB VBD NNP TO VB IN DT NN NN IN VBG PRP PRP MD VB IN PRP VBD RP .\nThe U.S. Gulf Coast is bracing for Hurricane Katrina as it strengthens after pummeling southeastern Florida with strong winds and sheets of rain .\tDT NNP NNP NNP VBZ VBG IN NNP NNP IN PRP VBZ IN VBG JJ NNP IN JJ NNS CC NNS IN NN .\nAt least seven people have been killed in the storm , which came ashore Thursday , dumping several centimeters of rain in its path and triggering widespread flooding .\tIN JJS CD NNS VBP VBN VBN IN DT NN , WDT VBD RB NNP , VBG JJ NNS IN NN IN PRP$ NN CC VBG JJ NN .\nHundreds of thousands of homes and businesses lost power and an overpass under construction in the Miami area collapsed onto a main east-west highway .\tNNS IN NNS IN NNS CC NNS VBD NN CC DT NN IN NN IN DT NNP NN VBD IN DT JJ JJ NN .\nKatrina was briefly downgraded to a tropical storm as it crossed land , but it has turned into a stronger hurricane while moving over the warm Gulf waters .\tNNP VBD RB VBN TO DT JJ NN IN PRP VBD NN , CC PRP VBZ VBN IN DT JJR NN IN VBG IN DT JJ NNP NNS .\nAt last report , the 11th named storm of this year 's Atlantic hurricane season was 97 kilometers west-northwest of Key West .\tIN JJ NN , DT JJ VBN NN IN DT NN POS NNP NN NN VBD CD NNS NN IN NNP NNP .\nKatrina was moving slowly in a west-northwesterly direction at 13 kilometers per hour .\tNNP VBD VBG RB IN DT JJ NN IN CD NNS IN NN .\nA court hearing began in South Africa Friday , pitting an influential AIDS lobby group against a doctor who claims his vitamin therapies are more effective against AIDS than anti-retroviral drugs .\tDT NN NN VBD IN NNP NNP NNP , VBG DT JJ NNP NN NN IN DT NN WP VBZ PRP$ NN NNS VBP RBR JJ IN NNP IN JJ NNS .\nTreatment Action Campaign , or TAC , is asking the Cape Town court to order Dr. Matthias Rath to stop making defamatory comments about the lobby group .\tNNP NNP NNP , CC NNP , VBZ VBG DT NNP NNP NN TO VB NNP NNP NNP TO VB VBG JJ NNS IN DT NN NN .\nThe German-born doctor calls TAC a front for drug companies .\tDT JJ NN VBZ NNP DT NN IN NN NNS .\nHe also claims AIDS drugs are toxic , saying the deadly disease can be treated successfully with nutrients .\tPRP RB VBZ NNP NNS VBP JJ , VBG DT JJ NN MD VB VBN RB IN NNS .\nThe World Health Organization has condemned Dr. Rath , saying his claims are unhelpful and dangerous .\tDT NNP NNP NNP VBZ VBN NNP NNP , VBG PRP$ NNS VBP JJ CC JJ .\nTAC successfully pressured the South African government to roll out a comprehensive program - including free drugs - to treat AIDS patients .\tNNP RB VBD DT JJ JJ NN TO VB RP DT JJ NN : VBG JJ NNS : TO VB NNP NNS .\nPakistani authorities have released an alleged al-Qaida militant accused of involvement in a bomb attack against former Prime Minister Benazir Bhutto last year .\tJJ NNS VBP VBN DT JJ NNP NN VBN IN NN IN DT NN NN IN JJ NNP NNP NNP NNP JJ NN .\nA court in the city of Karachi ordered prison officials to release Qari Saifullah Akhtar Wednesday for lack of evidence .\tDT NN IN DT NN IN NNP VBD NN NNS TO VB NNP NNP NNP NNP IN NN IN NN .\nBut , the court also ruled that Akhtar must make himself available for further questioning if sufficient evidence is found .\tCC , DT NN RB VBD IN NNP MD VB PRP JJ IN JJ VBG IN JJ NN VBZ VBN .\nMs. Bhutto accused Akhtar of plotting the double suicide bombing of her homecoming parade in Karachi last October that killed about 140 people .\tNNP NNP VBD NNP IN VBG DT JJ NN NN IN PRP$ NN NN IN NNP JJ NNP WDT VBD IN CD NNS .\nShe made the accusation in a book written before her assassination in a December gun and bomb attack in Rawalpindi .\tPRP VBD DT NN IN DT NN VBN IN PRP$ NN IN DT NNP NN CC NN NN IN NNP .\nPakistani authorities had detained Akhtar last month .\tJJ NNS VBD VBN NNP JJ NN .\nThey also accuse him of attending al-Qaida training camps in Afghanistan before the fall of the Taliban in 2001 .\tPRP RB VBP PRP IN VBG NNP NN NNS IN NNP IN DT NN IN DT NNP IN CD .\nome information for this report was provided by AFP .\tJJ NN IN DT NN VBD VBN IN NNP .\nSuspected Taleban rebels have ambushed a convoy carrying the governor of Afghanistan 's Ghazni province .\tVBN NNP NNS VBP VBN DT NN VBG DT NN IN NNP POS NNP NN .\nGovernor Sher Alam was not harmed in the attack Saturday , but the resulting shootout left at least two attackers dead .\tNNP NNP NNP VBD RB VBN IN DT NN NNP , CC DT VBG NN VBD IN JJS CD NNS JJ .\nIn a separate incident Saturday , Taleban fighters are also being blamed for killing the former governor of Ghazni province , Taj Mohammed Qari Baba .\tIN DT JJ NN NNP , NNP NNS VBP RB VBG VBN IN VBG DT JJ NN IN NNP NN , NNP NNP NNP NNP .\nThree others , including Baba 's bodyguard , were killed in the attack .\tCD NNS , VBG NNP POS NN , VBD VBN IN DT NN .\nMeanwhile , officials say a roadside bomb attack has killed at least nine police officers .\tRB , NNS VBP DT NN NN NN VBZ VBN IN JJS CD NN NNS .\nAuthorities say the blast occurred Friday as police were transporting the bodies of four citizens of Macedonia kidnapped in the region a week ago by suspected Taleban rebels .\tNNS VBP DT NN VBD NNP IN NNS VBD VBG DT NNS IN CD NNS IN NNP VBN IN DT NN DT NN RB IN JJ NNP NNS .\nThe four Macedonians , along with four Afghans who were abducted and later released , worked for a company that provided sanitation services at U.S. and Afghan military bases .\tDT CD NNS , IN IN CD NNS WP VBD VBN CC RB VBN , VBD IN DT NN WDT VBD NN NNS IN NNP CC JJ JJ NNS .\nEconomic reports paint a mixed picture of the U.S. economy , with manufacturing rising and construction dropping .\tJJ NNS VBP DT JJ NN IN DT NNP NN , IN NN VBG CC NN VBG .\nMonday 's report from the Institute for Supply Management says an index of manufacturing rose 2.3 percentage points in December .\tNNP POS NN IN DT NNP IN NNP NNP VBZ DT NN IN NN VBD CD NN NNS IN NNP .\nFactories are apparently boosting production to meet growing demand from government stimulus programs .\tNNS VBP RB VBG NN TO VB VBG NN IN NN NN NNS .\nDemand is also helped by businesses that are rebuilding inventories that were drastically cut during the worst of the economic crisis .\tNN VBZ RB VBN IN NNS WDT VBP VBG NNS WDT VBD RB VBN IN DT JJS IN DT JJ NN .\nA separate government report shows a very different trend .\tDT JJ NN NN VBZ DT RB JJ NN .\nThe latest figures from the U.S. Commerce Department show construction falling to the lowest level in six years .\tDT JJS NNS IN DT NNP NNP NNP VBP NN VBG TO DT JJS NN IN CD NNS .\nNovember 's data show a 0.6 percent decline for the month , which is the seventh drop in as many months .\tNNP POS NNS VBP DT CD NN NN IN DT NN , WDT VBZ DT JJ NN IN IN JJ NNS .\nIndia 's cricket team has scored 216-3 in response to Australia 's first innings total of 463 on the second day of the second test at the Sydney Cricket Ground .\tNNP POS NN NN VBZ VBN JJ IN NN TO NNP POS JJ NN NN IN CD IN DT JJ NN IN DT JJ NN IN DT NNP NNP NNP .\nV.V.S. Laxman and Rahul Dravid led the Indian counterattack with Laxman scoring his 18th test century with 109 runs .\tNNP NNP CC NNP NNP VBD DT JJ NN IN NNP VBG PRP$ JJ NN NN IN CD NNS .\nDravid added 53 for India , which lost the first test in Melbourne by 337 runs .\tNNP VBD CD IN NNP , WDT VBD DT JJ NN IN NNP IN CD NNS .\nAustralian Bowlers Mitchell Johnson and Brad Hogg took one wicket each for Australia .\tJJ NNS NNP NNP CC NNP NNP VBD CD NN DT IN NNP .\nEarlier , Andrew Symonds scored 162 not out for the Aussies and revived the home side 's hopes of winning its 16th test match in a row .\tRB , NNP NNPS VBD CD RB RP IN DT NNS CC VBD DT NN NN POS NNS IN VBG PRP$ JJ NN NN IN DT NN .\nThe third test of the four-match series starts in Perth January 16th .\tDT JJ NN IN DT JJ NN VBZ IN NNP NNP CD .\nThe two sides will also play in a triangular series that features Sri Lanka beginning February third in Brisbane .\tDT CD NNS MD RB VB IN DT JJ NN WDT VBZ NNP NNP VBG NNP JJ IN NNP .\nYukos , the huge Russian oil company , says Russian authorities have again raided its Moscow offices .\tNNP , DT JJ JJ NN NN , VBZ JJ NNS VBP RB VBN PRP$ NNP NNS .\nA company spokeswoman tells VOA , officials Thursday searched an area where financial documents are stored .\tDT NN NN VBZ NNP , NNS NNP VBD DT NN WRB JJ NNS VBP VBN .\nThe action comes as lawyers for Yukos are asking a U.S. court in Houston , Texas for an order blocking the planned auction of a major part of the company on Sunday .\tDT NN VBZ IN NNS IN NNP VBP VBG DT NNP NN IN NNP , NNP IN DT NN VBG DT JJ NN IN DT JJ NN IN DT NN IN NNP .\nThe company says it would be seriously hurt by the forced sale of its main oil-producing subsidiary , Yuganskeneftegaz .\tDT NN VBZ PRP MD VB RB VBN IN DT JJ NN IN PRP$ JJ NN NN , NNP .\nRussian officials ordered the auction to raise money to pay billions of dollars in back taxes .\tJJ NNS VBD DT NN TO VB NN TO VB NNS IN NNS IN JJ NNS .\nCritics of Russia 's government say the tax dispute is retaliation for financial support the company 's chairman Mikhail Khodorkovsky gave to political opponents of Russian President Vladimir Putin .\tNNS IN NNP POS NN VBP DT NN NN VBZ NN IN JJ NN DT NN POS NN NNP NNP VBD TO JJ NNS IN JJ NNP NNP NNP .\nThe Iranian government says it has the right to decide which international inspectors will be allowed to monitor its nuclear facilities .\tDT JJ NN VBZ PRP VBZ DT NN TO VB WDT JJ NNS MD VB VBN TO VB PRP$ JJ NNS .\nA spokesman for Iran 's Foreign Ministry said Tehran could reject the inspectors on the basis of their previous activities .\tDT NN IN NNP POS NNP NNP VBD NNP MD VB DT NNS IN DT NN IN PRP$ JJ NNS .\nThe official , Ramin Mahmanparast , was echoing comments by the nation 's nuclear chief Ali Akbar Salehi , who noted Iran had accepted alternate inspectors provided by the International Atomic Energy Agency .\tDT NN , NNP NNP , VBD VBG NNS IN DT NN POS JJ NN NNP NNP NNP , WP VBD NNP VBD VBN JJ NNS VBN IN DT NNP NNP NNP NNP .\nSalehi was quoted as saying that two inspectors rejected by Iran had filed FALSE reports on Iran 's nuclear program .\tNNP VBD VBN IN VBG IN CD NNS VBN IN NNP VBD VBN JJ NNS IN NNP POS JJ NN .\nA report released Monday by the IAEA said Iran 's objections to certain inspectors are complicating efforts to investigate its nuclear program .\tDT NN VBN NNP IN DT NNP VBD NNP POS NNS TO JJ NNS VBP VBG NNS TO VB PRP$ JJ NN .\nThe program is at the core of an international dispute over whether the activities have a military component .\tDT NN VBZ IN DT NN IN DT JJ NN IN IN DT NNS VBP DT JJ NN .\nAn uneasy calm has settled over Nigeria , where more than 120 people have been killed in Muslim-Christian violence since Saturday .\tDT JJ NN VBZ VBN IN NNP , WRB JJR IN CD NNS VBP VBN VBN IN JJ NN IN NNP .\nChristian youths burned the corpses of Muslims Thursday in Onitsha , the site of riots on Tuesday and Wednesday .\tNNP NNS VBD DT NNS IN NNPS NNP IN NNP , DT NN IN NNS IN NNP CC NNP .\nChristian mobs in the city killed at least 80 people , mostly Muslims , in reprisal for rioting against Christians in Nigeria 's largely Muslim north .\tNNP NNS IN DT NN VBD IN JJS CD NNS , RB NNPS , IN NN IN VBG IN NNS IN NNP POS RB JJ NN .\nMore than 40 people , mainly Christians , died in riots on Saturday and Sunday .\tJJR IN CD NNS , RB NNPS , VBD IN NNS IN NNP CC NNP .\nNigerian police have stepped up security across the country before Friday Muslim prayers , hoping to prevent further violence .\tJJ NNS VBP VBN RP NN IN DT NN IN NNP NNP NNS , VBG TO VB JJ NN .\nThe sectarian riots began last Saturday in the northern city of Maiduguri during Muslim protests against Danish cartoons of the Prophet Muhammad .\tDT JJ NNS VBD JJ NNP IN DT JJ NN IN NNP IN NNP NNS IN JJ NNS IN DT NNP NNP .\nSudan 's Foreign Ministry says six Sudanese , including a diplomat , have been kidnapped in Iraq .\tNNP POS NNP NNP VBZ CD NNS , VBG DT NN , VBP VBN VBN IN NNP .\nThe ministry says the victims were seized in Baghdad after attending prayers Friday .\tDT NN VBZ DT NNS VBD VBN IN NNP IN VBG NNS NNP .\nThe abducted diplomat was identified as the second secretary at Sudan 's mission in Baghdad .\tDT JJ NN VBD VBN IN DT JJ NN IN NNP POS NN IN NNP .\nMeanwhile , thousands of Sunni Arabs demonstrated in Baghdad , Tikrit and Mosul to protest what they said were flawed December 15 parliamentary elections .\tRB , NNS IN NNP NNS VBD IN NNP , NNP CC NNP TO VB WP PRP VBD VBD VBN NNP CD JJ NNS .\nPreliminary results show a strong lead for the main Shi'ite coalition .\tJJ NNS VBP DT JJ NN IN DT JJ NNP NN .\nElsewhere , insurgents ambushed an Iraqi checkpoint in Adhaim , about 70 kilometers north of Baghdad , killing eight Iraqi soldiers and wounding 17 .\tRB , NNS VBD DT JJ NN IN NNP , IN CD NNS RB IN NNP , VBG CD JJ NNS CC VBG CD .\nA suicide bomber also killed at least three people at a Shi'ite mosque in Balad Ruz , about 75 kilometers northeast of Baghdad .\tDT NN NN RB VBD IN JJS CD NNS IN DT NNP NN IN NNP NNP , IN CD NNS RB IN NNP .\nThe U.S. military also says two U.S. soldiers were killed Friday when their vehicle struck a roadside bomb in Baghdad .\tDT NNP NN RB VBZ CD NNP NNS VBD VBN NNP WRB PRP$ NN VBD DT NN NN IN NNP .\nIraqi authorities say gunmen have killed the chief of police in a town northeast of Baghdad .\tJJ NNS VBP NNS VBP VBN DT NN IN NN IN DT NN NN IN NNP .\nPolice say Colonel Hatem Rashid Mohammad was killed Friday , along with an aide during an ambush in Balad Ruz , 50 kilometers northeast of the capital .\tNNS VBP NNP NNP NNP NNP VBD VBN NNP , IN IN DT NN IN DT NN IN NNP NNP , CD NNS RB IN DT NN .\nInsurgents have been increasingly attacking Iraqi policemen and soldiers , who have taken a larger role in trying to stabilize the country in recent months .\tNNS VBP VBN RB VBG JJ NNS CC NNS , WP VBP VBN DT JJR NN IN VBG TO VB DT NN IN JJ NNS .\nThursday , U.S. Deputy Assistant Secretary of Defense for Detainee Affairs Matthew Waxman said U.S. forces in Iraq are holding a senior aide to terrorist mastermind Abu Musab al-Zarqawi .\tNNP , NNP NNP NNP NNP IN NNP IN NNP NNP NNP NNP VBD NNP NNS IN NNP VBP VBG DT JJ NN TO JJ NN NNP NNP NNP .\nMr. Waxman said the man was arrested in Iraq in late 2004 and that he holds joint U.S. and Jordanian citizenship .\tNNP NNP VBD DT NN VBD VBN IN NNP IN JJ CD CC IN PRP VBZ JJ NNP CC JJ NN .\nHe said the suspect acted as an emissary between terror groups in Iraq and al-Zarqawi .\tPRP VBD DT NN VBD IN DT NN IN NN NNS IN NNP CC NNP .\nFinal results from Iraq 's provincial elections show Prime Minister Nouri al-Maliki 's allies have strengthened their standing across the country .\tJJ NNS IN NNP POS JJ NNS VBP NNP NNP NNP NNP POS NNS VBP VBN PRP$ NN IN DT NN .\nCandidates backed by the moderate Shi'ite prime minister dominated in the capital , Baghdad , and were victorious over other more sectarian Shi'ite rivals across southern Iraq .\tNNS VBN IN DT JJ NNP JJ NN VBD IN DT NN , NNP , CC VBD JJ IN JJ JJR JJ NNP NNS IN JJ NNP .\nThe results released Thursday also showed that Sunni Arab tribal leaders who rose up against insurgents won the most seats in the western province of Anbar .\tDT NNS VBN NNP RB VBD IN NNP NNP JJ NNS WP VBD RP IN NNS VBD DT JJS NNS IN DT JJ NN IN NNP .\nThe tribal chiefs won eight out of 29 provincial council seats in last month 's elections .\tDT JJ NNS VBD CD IN IN CD JJ NN NNS IN JJ NN POS NNS .\nThe vote in 14 of Iraq 's 18 provinces was seen as a referendum on Mr. Maliki 's leadership ahead of national parliamentary elections later this year .\tDT NN IN CD IN NNP POS CD NNS VBD VBN IN DT NN IN NNP NNP POS NN RB IN JJ JJ NNS RBR DT NN .\nPolling is to take place later in the three Kurdish provinces of northern Iraq , as well as the disputed oil-rich region of Kirkuk .\tNN VBZ TO VB NN RB IN DT CD JJ NNS IN JJ NNP , RB RB IN DT JJ JJ NN IN NNP .\nIndonesian health officials say former vice president Sudharmono has died at the age of 78 .\tJJ NN NNS VBP JJ NN NN NNP VBZ VBN IN DT NN IN CD .\nOfficials say Sudharmono died Wednesday in a Jakarta hospital .\tNNS VBP NNP VBD NNP IN DT NNP NN .\nHe had served as former president Suharto 's fourth vice president , from 1988 to 1993 .\tPRP VBD VBN IN JJ NN NNP POS JJ NN NN , IN CD TO CD .\nSudharmono was a retired army lieutenant general and later a chairman of the powerful Golkar party who aided in intelligence operations to help Suharto stamp out the communist party .\tNNP VBD DT JJ NN NN JJ CC RB DT NN IN DT JJ NNP NN WP VBD IN NN NNS TO VB NNP VB RP DT JJ NN .\nSudharmono is survived by his wife and three children .\tNNP VBZ VBN IN PRP$ NN CC CD NNS .\nBayelsa State government officials in Nigeria say the mother of a state legislator has been kidnapped in the country 's southern Niger Delta .\tNNP NNP NN NNS IN NNP VBP DT NN IN DT NN NN VBZ VBN VBN IN DT NN POS JJ NNP NNP .\nJonah Okah , A spokesman for the Bayelsa state parliament says gunmen took the woman from her home Monday night in Brass , a remote part of the oil-producing delta region .\tNNP NNP , DT NN IN DT NNP NN NN VBZ NNS VBD DT NN IN PRP$ NN NNP NN IN NNP , DT JJ NN IN DT JJ NN NN .\nThe spokesman also says the 11-year-old son of another local legislator was released by kidnappers Tuesday .\tDT NN RB VBZ DT JJ NN IN DT JJ NN VBD VBN IN NNS NNP .\nIt is not clear whether ransom money was paid for the child 's release .\tPRP VBZ RB JJ IN NN NN VBD VBN IN DT NN POS NN .\nThe mother of the speaker of the Bayelsa state parliament was also abducted and released earlier this month .\tDT NN IN DT NN IN DT NNP NN NN VBD RB VBN CC VBN RBR DT NN .\nKidnappings for ransom are frequent in Nigeria 's delta region .\tNNS IN NN VBP JJ IN NNP POS JJ NN .\nArmed gangs have mostly abducted foreign oil industry workers , but recently began including relatives of local officials they think can afford to pay for their release .\tJJ NNS VBP RB VBN JJ NN NN NNS , CC RB VBD VBG NNS IN JJ NNS PRP VBP MD VB TO VB IN PRP$ NN .\nVoters in Nepal have begun casting ballots in the country 's first nationwide municipal elections in seven years .\tNNS IN NNP VBP VBN VBG NNS IN DT NN POS JJ JJ JJ NNS IN CD NNS .\nSecurity forces have been authorized to shoot anyone caught disrupting the controversial elections .\tNNP NNS VBP VBN VBN TO VB DT VBN VBG DT JJ NNS .\nHeavily guarded polling stations opened early Wednesday , but so far only a handful of the country 's nearly two-million registered voters have turned out to vote .\tRB VBN NN NNS VBD JJ NNP , CC RB RB RB DT NN IN DT NN POS RB JJ JJ NNS VBP VBN RP TO VB .\nElections are taking place in only 36 of Nepal 's municipalities .\tNNS VBP VBG NN IN RB CD IN NNP POS NNS .\nThe remaining 22 either do not have anyone running , or candidates are running unopposed .\tDT VBG CD CC VBP RB VB DT NN , CC NNS VBP VBG JJ .\nNepal 's government says the polls are a step toward democracy .\tNNP POS NN VBZ DT NNS VBP DT NN IN NN .\nBut opposition parties and communist rebels call the elections a sham aimed at legitimizing King Gyanendra 's seizure of absolute power a year ago .\tCC NN NNS CC JJ NNS VBP DT NNS DT NN VBN IN VBG NNP NNP POS NN IN JJ NN DT NN RB .\nRebels have threatened to harm anyone who participates in the vote .\tNNS VBP VBN TO VB DT WP VBZ IN DT NN .\nU.S. stock market indexes posted strong gains in Tuesday 's afternoon trading .\tNNP NN NN NNS VBD JJ NNS IN NNP POS NN NN .\nThe Dow Jones Industrial Average rose three percent , the S & P 500 advanced 3.6 percent , and the NASDAQ moved up 3.3 percent .\tDT NNP NNP NNP NNP VBD CD NN , DT NNP CC NNP CD VBD CD NN , CC DT NNP VBD RB CD NN .\nEuropean stock markets were higher at the close of trading .\tJJ NN NNS VBD JJR IN DT NN IN NN .\nLondon 's Financial Times 100 index gained 1.4 percent to finish at 4,123 .\tNNP POS NNP NNP CD NN VBD CD NN TO VB IN CD .\nThe CAC-40 in Paris rose 2.4 percent to close at 3,153 , and the DAX in Frankfurt moved up 3.1 percent to hit 4,532 .\tDT NN IN NNP VBD CD NN TO VB IN CD , CC DT NNP IN NNP VBD RB CD NN TO VB CD .\nIn Asia , Tokyo 's Nikkei index plunged 6.4 percent to finish the day at 7,864 .\tIN NNP , NNP POS NNP NN VBD CD NN TO VB DT NN IN CD .\nIn Hong Kong , the Hang Seng dropped five percent to end at 13,406 .\tIN NNP NNP , DT NNP NNP VBD CD NN TO VB IN CD .\nThe price of gold rose more than $ 11 to trade at $ 780.47 an ounce .\tDT NN IN NN VBD JJR IN $ CD TO VB IN $ CD DT NN .\nThe dollar was higher against the yen but lost value compared to the euro .\tDT NN VBD JJR IN DT NN CC VBD NN VBN TO DT NN .\nVenezuela 's oil minister says his country will end talks with foreign oil companies concerning the country 's takeover of oil projects financed by the private companies .\tNNP POS NN NN VBZ PRP$ NN MD VB NNS IN JJ NN NNS VBG DT NN POS NN IN NN NNS VBN IN DT JJ NNS .\nRafael Ramirez said Monday that the negotiations have become impossible .\tNNP NNP VBD NNP IN DT NNS VBP VBN JJ .\nVenezuela has said it would take majority control of oil projects along the Orinoco River , where the private companies have invested billions of dollars .\tNNP VBZ VBN PRP MD VB NN NN IN NN NNS IN DT NNP NNP , WRB DT JJ NNS VBP VBN NNS IN NNS .\nRamirez also says a plan by President Hugo Chavez to nationalize Venezuela 's electricity sector would mean the complete takeover of the country 's largest power company , Electricidad de Caracas .\tNNP RB VBZ DT NN IN NNP NNP NNP TO VB NNP POS NN NN MD VB DT JJ NN IN DT NN POS JJS NN NN , NNP NNP NNP .\nEDC is owned by a U.S. company , AES .\tNNP VBZ VBN IN DT NNP NN , NNP .\nNeither AES nor the foreign oil companies have responded to Ramirez 's statements .\tCC NNP CC DT JJ NN NNS VBP VBN TO NNP POS NNS .\nU.S. officials have said nationalizations have a long history of failure and seldom benefit the people they are meant to serve .\tNNP NNS VBP VBN NNS VBP DT JJ NN IN NN CC RB VB DT NNS PRP VBP VBN TO VB .\nThe Afghan president 's office has responded to criticism by Pakistani President Pervez Musharraf , insisting its intelligence on terrorists hiding in Pakistan is correct .\tDT JJ NN POS NN VBZ VBN TO NN IN JJ NNP NNP NNP , VBG PRP$ NN IN NNS VBG IN NNP VBZ JJ .\nPresident Hamid Karzai 's office Tuesday defended intelligence it says shows terrorists are free to move in Pakistan .\tNNP NNP NNP POS NN NNP VBD NN PRP VBZ VBZ NNS VBP JJ TO VB IN NNP .\nThe statement was a response to Mr. Musharraf 's accusation that Afghanistan is ' bad-mouthing ' his country and casting doubt on Islamabad 's commitment to fighting terrorism .\tDT NN VBD DT NN TO NNP NNP POS NN IN NNP VBZ `` JJ `` PRP$ NN CC NN NN IN NNP POS NN TO VBG NN .\nMr. Musharraf said Monday , such criticism of Pakistan is ' a deliberate , articulated conspiracy . '\tNNP NNP VBD NNP , JJ NN IN NNP VBZ `` DT JJ , JJ NN . ``\nHe contends Afghan intelligence is outdated and incorrect .\tPRP VBZ JJ NN VBZ JJ CC JJ .\nAfghanistan 's and Pakistan 's comments , coming on the heels of President Bush 's visit to South Asia last week , point to a new low in relations between the neighboring states , at a time when Afghanistan is facing a sharp rise in attacks by insurgents .\tNNP POS CC NNP POS NNS , VBG IN DT NNS IN NNP NNP POS NN TO NNP NNP JJ NN , NN TO DT JJ NN IN NNS IN DT JJ NNS , IN DT NN WRB NNP VBZ VBG DT JJ NN IN NNS IN NNS .\nLatin America enjoyed robust economic growth last year , but a new report by the Inter-American Development Bank warns that several factors could reverse that trend in 2005 .\tNNP NNP VBD JJ JJ NN JJ NN , CC DT JJ NN IN DT NNP NNP NNP VBZ IN JJ NNS MD VB DT NN IN CD .\nThe IADB says Latin American nations ' overall economic growth was 5.5 percent in 2004 , thanks to China 's increasing demand for raw materials , including steel .\tDT NNP VBZ JJ JJ NNS POS JJ JJ NN VBD CD NN IN CD , NNS TO NNP POS VBG NN IN JJ NNS , VBG NN .\nHowever , Beijing has taken several steps to slow its economy , which grew to by 9.5 percent last year , which the bank says will have an immediate effect on global trade and the price of commodities .\tRB , NNP VBZ VBN JJ NNS TO VB PRP$ NN , WDT VBD TO IN CD NN JJ NN , WDT DT NN VBZ MD VB DT JJ NN IN JJ NN CC DT NN IN NNS .\nIn addition to a possible economic slowdown by China , the Inter-American Development Bank says , rising U.S. interest rates and a falling dollar could affect Latin America , where many countries already have massive levels of public debt .\tIN NN TO DT JJ JJ NN IN NNP , DT NNP NNP NNP VBZ , VBG NNP NN NNS CC DT VBG NN MD VB NNP NNP , WRB JJ NNS RB VBP JJ NNS IN JJ NN .\nBillionaire investor says the U.S. economy could fall into recession in 2007 .\tNN NN VBZ DT NNP NN MD VB IN NN IN CD .\nHe spoke in Singapore on Monday , and said the U.S. central bank could spark the downturn by raising interest rates too high , crimping the U.S. housing market .\tPRP VBD IN NNP IN NNP , CC VBD DT NNP JJ NN MD VB DT NN IN VBG NN NNS RB JJ , VBG DT NNP NN NN .\nHigh U.S. housing prices are a key reason that rising energy prices did not derail economic growth last year .\tJJ NNP NN NNS VBP DT JJ NN IN VBG NN NNS VBD RB VB JJ NN JJ NN .\nThe U.S. Federal Reserve has been boosting interest rates steadily in a bid to fend off inflation , but Soros expects that campaign to end after two more quarter-point rate hikes ( at 4.75 percent ) .\tDT NNP NNP NNP VBZ VBN VBG NN NNS RB IN DT NN TO VB RP NN , CC NNP VBZ DT NN TO VB IN CD JJR JJ NN NNS LRB IN CD NN RRB .\nThe U.S. economy is the world 's largest , and Soros says a U.S. recession could slow global economic growth .\tDT NNP NN VBZ DT NN POS JJS , CC NNP VBZ DT NNP NN MD VB JJ JJ NN .\nHe also said future global growth could come from Asia , and urged Asian governments to encourage domestic demand to reduce their dependence on exports .\tPRP RB VBD JJ JJ NN MD VB IN NNP , CC VBD JJ NNS TO VB JJ NN TO VB PRP$ NN IN NNS .\nWorld oil prices hit new record highs Wednesday , as experts worried about production problems that could disrupt output .\tNNP NN NNS VBD JJ NN NNS NNP , IN NNS VBD IN NN NNS WDT MD VB NN .\nThose concerns include refinery breakdowns and a worse-than-usual hurricane season that could threaten vital offshore wells .\tDT NNS VBP NN NNS CC DT JJ NN NN WDT MD VB JJ JJ NNS .\nThe production problems come as traders say there is robust demand for oil from growing economies .\tDT NN NNS VBP IN NNS VBP EX VBZ JJ NN IN NN IN VBG NNS .\nIn New York , the price of crude oil for September delivery went as high as $ 62.47 a barrel .\tIN NNP NNP , DT NN IN JJ NN IN NNP NN VBD RB JJ IN $ CD DT NN .\nLondon 's benchmark Brent contract also hit a new record high of $ 61.25 .\tNNP POS JJ NNP NN RB VBD DT JJ NN NN IN $ CD .\nJapan 's Prince Tomohito of Mikasa says there is no need for the government to make an immediate decision on allowing women to succeed to the throne .\tNNP POS NNP NNP IN NNP VBZ EX VBZ DT NN IN DT NN TO VB DT JJ NN IN VBG NNS TO VB TO DT NN .\nHe told Kyodo news agency that a government panel should reconsider its proposal to allow the first-born child of either sex to ascend to the Chrysanthemum throne .\tPRP VBD NNP NN NN IN DT NN NN MD VB PRP$ NN TO VB DT JJ NN IN DT NN TO VB TO DT NNP NN .\nTomohito is a cousin of Emperor Akihito and fifth in the line of succession .\tNNP VBZ DT NN IN NNP NNP CC NN IN DT NN IN NN .\nHe has been an outspoken critic against changing Japan 's laws for gaining the throne .\tPRP VBZ VBN DT JJ NN IN VBG NNP POS NNS IN VBG DT NN .\nOnly males who have emperors on their father 's side can succeed to the throne .\tRB NNS WP VBP NNS IN PRP$ NN POS NN MD VB TO DT NN .\nHowever , Japan is facing a succession crisis due to a lack of a male heirs since the 1960s .\tRB , NNP VBZ VBG DT NN NN JJ TO DT NN IN DT NN NNS IN DT NNS .\nLate last year , Tomohito suggested bringing back concubines to produce male heir before allowing a woman to head the ancient monarchy .\tRB JJ NN , NNP VBD VBG RP NNS TO VB JJ NN IN VBG DT NN TO VB DT JJ NN .\nUkraine 's parliament has overwhelmingly confirmed Yulia Tymoshenko as the country 's prime minister .\tNNP POS NN VBZ RB VBN NNP NNP IN DT NN POS JJ NN .\nThe vote was 373 in favor out of the 450-member chamber .\tDT NN VBD CD IN NN IN IN DT JJ NN .\nEarlier , President Viktor Yushchenko told lawmakers in Kiev Ms. Tymoshenko had earned his and the nation 's trust .\tRB , NNP NNP NNP VBD NNS IN NNP NNP NNP VBD VBN PRP$ CC DT NN POS NN .\nCalling her his political partner , Mr. Yushchenko said she can be trusted to organize a new government .\tVBG PRP PRP$ JJ NN , NNP NNP VBD PRP MD VB VBN TO VB DT JJ NN .\nUkraine 's parliament Tuesday postponed a hearing on Ms. Tymoshenko 's confirmation as her broad coalition was reported to be finalizing the makeup of a new cabinet .\tNNP POS NN NNP VBD DT NN IN NNP NNP POS NN IN PRP$ JJ NN VBD VBN TO VB VBG DT NN IN DT JJ NN .\nMeanwhile , President Yushchenko is reported Friday to have dismissed three deputy prime ministers , 15 cabinet ministers and several other officials in a move political observers say was expected as the new government is being formed .\tRB , NNP NNP VBZ VBN NNP TO VB VBN CD JJ JJ NNS , CD NN NNS CC JJ JJ NNS IN DT NN JJ NNS VBP VBD VBN IN DT JJ NN VBZ VBG VBN .\nA moderate earthquake struck central Mexico Friday , forcing residents and office workers to evacuate buildings in Mexico City .\tDT JJ NN VBD JJ NNP NNP , VBG NNS CC NN NNS TO VB NNS IN NNP NNP .\nOfficials say no major injuries or damages were immediately reported .\tNNS VBP DT JJ NNS CC NNS VBD RB VBN .\nThe U.S. Geological Survey estimates the earthquake 's magnitude at 6 .\tDT NNP NNP NNP VBZ DT NN POS NN IN CD .\nAn aftershock that measured 5.5 hit a few hours later .\tDT NN WDT VBD CD VBD DT JJ NNS RB .\nThe center says the earthquake , which hit Friday morning local time , was centered in the southwestern state of Michoacan , about 200 kilometers southwest of Mexico City .\tDT NN VBZ DT NN , WDT VBD NNP NN JJ NN , VBD VBN IN DT JJ NN IN NNP , IN CD NNS NN IN NNP NNP .\nIn 1985 , a 7.8 magnitude earthquake in Mexico City killed more than 10,000 people .\tIN CD , DT CD NN NN IN NNP NNP VBD JJR IN CD NNS .\nVoters in Burundi are casting ballots in a parliamentary election the ruling party is almost certain to win , amid a boycott by an opposition coalition .\tNNS IN NNP VBP VBG NNS IN DT JJ NN DT NN NN VBZ RB JJ TO VB , IN DT NN IN DT NN NN .\nThe opposition also boycotted last month 's presidential election .\tDT NN RB VBD JJ NN POS JJ NN .\nUnopposed , President Pierre Nkurunziza was re-elected .\tJJ , NNP NNP NNP VBD VBN .\nThe opposition decided to boycott both votes after accusing the president of using fraud to win local elections in May .\tDT NN VBD TO VB DT NNS IN VBG DT NN IN VBG NN TO VB JJ NNS IN NNP .\nInternational observers said there was no evidence of tampering .\tJJ NNS VBD EX VBD DT NN IN VBG .\nSecurity has also been a concern during this election season .\tNN VBZ RB VBN DT NN IN DT NN NN .\nBurundi has been on alert since Somali insurgents threatened to attack the country for its role in the peacekeeping mission in Somalia .\tNNP VBZ VBN IN NN IN JJ NNS VBD TO VB DT NN IN PRP$ NN IN DT NN NN IN NNP .\nSomali Islamist rebel group al-Shabab claimed responsibility for bombings in Uganda earlier this month that killed 76 people .\tJJ NNP NN NN NNP VBD NN IN NNS IN NNP RBR DT NN WDT VBD CD NNS .\nIt said the attacks were revenge for Ugandan participation in the peacekeeping force .\tPRP VBD DT NNS VBD NN IN JJ NN IN DT NN NN .\nU.S. senators say security at the country 's borders and ports must be strengthened after a federal investigation revealed critical gaps at two border checkpoints .\tNNP NNS VBP NN IN DT NN POS NNS CC NNS MD VB VBN IN DT JJ NN VBD JJ NNS IN CD NN NNS .\nThe Senate 's Homeland Security Subcommittee Tuesday is hearing testimony from security officials on the need to speed up improvements in preventing dangerous materials from entering the country .\tDT NNP POS NNP NNP NNP NNP VBZ VBG NN IN NN NNS IN DT NN TO VB RP NNS IN VBG JJ NNS IN VBG DT NN .\nA report by Congress 's investigative department says federal investigators tested security at U.S. checkpoints in December and successfully smuggled in enough radioactive material to produce two so-called ' dirty bombs . '\tDT NN IN NNP POS JJ NN VBZ JJ NNS VBD NN IN NNP NNS IN NNP CC RB VBN IN JJ JJ NN TO VB CD JJ `` JJ NNS . ``\nThe report says border guards had detected the radioactive material using newly installed equipment , but failed to recognize that investigators used counterfeit documents to transport the material .\tDT NN VBZ NN NNS VBD VBN DT JJ NN VBG RB VBN NN , CC VBD TO VB IN NNS VBD NN NNS TO VB DT NN .\nA Republican senator says U.S. cargo security measures now suffer from ' a massive blind spot . '\tDT JJ NN VBZ NNP NN NN NNS RB VBP IN `` DT JJ JJ NN . ``\nJoseph Wilson , the husband of Valerie Plame , the Central Intelligence Agency operative exposed by a newspaper article in 2003 , says his wife received specific threats after her identity was revealed .\tNNP NNP , DT NN IN NNP NNP , DT NNP NNP NNP JJ VBN IN DT NN NN IN CD , VBZ PRP$ NN VBD JJ NNS IN PRP$ NN VBD VBN .\nMr. Wilson spoke to the CBS television program ' 60 Minutes , ' which released excerpts of his interview in advance of Sunday evening 's broadcast .\tNNP NNP VBD TO DT NNP NN NN `` CD NNS , `` WDT VBD NNS IN PRP$ NN IN NN IN NNP NN POS NN .\nAccording to CBS , Mr. Wilson said he could not go into detail about the threats .\tVBG TO NNP , NNP NNP VBD PRP MD RB VB IN NN IN DT NNS .\nHe told the network that he and his wife have discussed her security with several agencies .\tPRP VBD DT NN IN PRP CC PRP$ NN VBP VBN PRP$ NN IN JJ NNS .\nMr. Wilson said that before Ms. Plame 's identity was published by a newspaper columnist , very few people outside the intelligence community knew she worked for the C.I.A .\tNNP NNP VBD IN IN NNP NNP POS NN VBD VBN IN DT NN NN , RB JJ NNS IN DT NN NN VBD PRP VBD IN DT NNP .\nMr. Wilson has said his wife was exposed to discredit him after he criticized the Bush administration 's rationale for the war in Iraq .\tNNP NNP VBZ VBN PRP$ NN VBD VBN TO VB PRP IN PRP VBD DT NNP NN POS NN IN DT NN IN NNP .\nU.S. Defense Secretary Donald Rumsfeld is to travel to India this week to discuss arms sales to New Delhi and Pakistan .\tNNP NNP NNP NNP NNP VBZ TO VB TO NNP DT NN TO VB NNS NNS TO NNP NNP CC NNP .\nMr. Rumsfeld is expected to discuss US-India relations when he meets with Prime Minister Manmohan Singh on Thursday in New Delhi .\tNNP NNP VBZ VBN TO VB NNP NNS WRB PRP VBZ IN NNP NNP NNP NNP IN NNP IN NNP NNP .\nIndia wants to buy the Patriot missile system , which can defend against ballistic and cruise missiles , and aircraft .\tNNP VBZ TO VB DT NNP NN NN , WDT MD VB IN JJ CC NN NNS , CC NN .\nIndia also is expected to raise its concern over Pakistan 's request to buy up to 25 F-16 fighter jets from the United States .\tNNP RB VBZ VBN TO VB PRP$ NN IN NNP POS NN TO VB RP TO CD NNP NN NNS IN DT NNP NNPS .\nIndian and Pakistani media say the prospect of American arms sales has stirred up opposition in both South Asian countries .\tJJ CC JJ NNS VBP DT NN IN JJ NNS NNS VBZ VBN RP NN IN DT JJ JJ NNS .\nThe two nuclear-armed rivals , which have fought three wars in the past five decades , are currently in peace talks over all outstanding issues .\tDT CD JJ NNS , WDT VBP VBN CD NNS IN DT JJ CD NNS , VBP RB IN NN NNS IN DT JJ NNS .\nThe U.S. ambassador to Nepal has urged King Gyanendra to reconcile with the nation 's political parties , warning that Nepal could ' slide toward confrontation , confusion and chaos . '\tDT NNP NN TO NNP VBZ VBN NNP NNP TO VB IN DT NN POS JJ NNS , VBG IN NNP MD `` NN IN NN , NN CC NN . ``\nSpeaking in Kathmandu late Tuesday , Ambassador James Moriarty said the royal palace should reach out to political parties ' with sincere proposals ' that reflect a common agenda of multi-party democracy and constitutional monarchy .\tVBG IN NNP JJ NNP , NNP NNP NNP VBD DT JJ NN MD VB RP TO JJ NNS `` IN JJ NNS `` WDT VBP DT JJ NN IN JJ NN CC JJ NN .\nNepal 's king seized absolute power on February 1 , saying the move was necessary to end government corruption and quell the nine-year-old Maoist insurgency .\tNNP POS NN VBD JJ NN IN NNP CD , VBG DT NN VBD JJ TO VB NN NN CC VB DT JJ NNP NN .\nMeanwhile , Nepal 's army troops are continuing a search for soldiers missing since Sunday 's fierce clash with the rebels in a remote western district .\tRB , NNP POS NN NNS VBP VBG DT NN IN NNS VBG IN NNP POS JJ NN IN DT NNS IN DT JJ JJ NN .\nTuesday , the army said it found the bodies of 40 soldiers and 76 were still missing .\tNNP , DT NN VBD PRP VBD DT NNS IN CD NNS CC CD VBD RB VBG .\nThe rebels say they have killed 159 troops and captured another 50 .\tDT NNS VBP PRP VBP VBN CD NNS CC VBD DT CD .\nThe army rejects the claim .\tDT NN VBZ DT NN .\nThe press freedom organization Reporters Without Borders says it is concerned by what it calls the growing repression of journalists and cyber-dissidents in Iran .\tDT NN NN NN NNS IN NNP VBZ PRP VBZ VBN IN WP PRP VBZ DT VBG NN IN NNS CC NNS IN NNP .\nIn a report issued Sunday , the RSF ( Reporters Sans Frontieres ) announced the detention of five more journalists .\tIN DT NN VBN NNP , DT NNP LRB NNP NNP NNP RRB VBD DT NN IN CD JJR NNS .\nRSF says 41 journalists are currently imprisoned in Iran a month after the country 's contested election .\tNNP VBZ CD NNS VBP RB VBN IN NNP DT NN IN DT NN POS VBN NN .\nRSF says Iran is currently the world 's biggest prison for journalists , and is becoming the world 's most dangerous place for them to operate .\tNNP VBZ NNP VBZ RB DT NN POS JJS NN IN NNS , CC VBZ VBG DT NN POS RBS JJ NN IN PRP TO VB .\nRSF says the recently-detained journalists include photographers Majid Saidi and Tohid Bighi , blogger Henghameh Shahidi , and journalists Somaieh Nosrati and Said Matinpour .\tNNP VBZ DT JJ NNS VBP NNS NNP NNP CC NNP NNP , NN NNP NNP , CC NNS NNP NNP CC NNP NNP .\nAccording to RSF , four of the five are being held in secret locations with no information about their condition being released to their families or legal representatives .\tVBG TO NNP , CD IN DT CD VBP VBG VBN IN JJ NNS IN DT NN IN PRP$ NN VBG VBN TO PRP$ NNS CC JJ NNS .\nUkraine 's Supreme Court has rejected at least two complaints of election fraud filed by Prime Minister Viktor Yanukovych .\tNNP POS NNP NNP VBZ VBN IN JJS CD NNS IN NN NN VBN IN NNP NNP NNP NNP .\nThe court was expected to rule Thursday on a total of four complaints by Mr. Yanukovych , who lost Sunday 's presidential runoff vote .\tDT NN VBD VBN TO VB NNP IN DT NN IN CD NNS IN NNP NNP , WP VBD NNP POS JJ NN NN .\nMr. Yanukovych alleges there were thousands of election violations and is refusing to concede defeat to his rival , opposition leader Viktor Yushchenko .\tNNP NNP VBZ EX VBD NNS IN NN NNS CC VBZ VBG TO VB NN TO PRP$ NN , NN NN NNP NNP .\nObservers say the appeals are unlikely to change the election results because Mr. Yanukovych lacks popular support and because the number of irregularities was not enough to narrow the gap between the two candidates .\tNNS VBP DT NNS VBP JJ TO VB DT NN NNS IN NNP NNP VBZ JJ NN CC IN DT NN IN NNS VBD RB JJ TO VB DT NN IN DT CD NNS .\nOfficial results released Tuesday show Mr. Yushchenko won the runoff with 52 percent of the vote , to 44 percent for the prime minister .\tJJ NNS VBN NNP NN NNP NNP VBD DT NN IN CD NN IN DT NN , TO CD NN IN DT JJ NN .\nBrazil 's state-run energy company , Petrobras , has awarded a major contract to a Chinese firm to build a gas pipeline between southeast and northeast Brazil .\tNNP POS JJ NN NN , NNP , VBZ VBN DT JJ NN TO DT JJ NN TO VB DT NN NN IN NN CC RB NNP .\nPetrobras signed the $ 239-million deal with China 's state-run oil company , Sinopec , on Monday .\tNNP VBD DT $ CD NN IN NNP POS JJ NN NN , NNP , IN NNP .\nUnder the contract , Sinopec will build a 300-kilometer stretch of pipeline in southeastern Brazil .\tIN DT NN , NNP MD VB DT JJ NN IN NN IN JJ NNP .\nIt will connect the gas fields in Rio de Janeiro state to the city of Vitoria ( in Espirito Santo state ) , farther north .\tPRP MD VB DT NN NNS IN NNP IN NNP NN TO DT NN IN NNP LRB IN NNP NNP NN RRB , RB RB .\nThe pipeline will have a daily capacity of 20 million cubic meters of gas .\tDT NN MD VB DT JJ NN IN CD CD JJ NNS IN NN .\nBrazil plans to extend the pipeline from Vitoria to the town of Catu , in northeastern state of Bahia , covering a total distance of 1,300 kilometers .\tNNP VBZ TO VB DT NN IN NNP TO DT NN IN NNP , IN JJ NN IN NNP , VBG DT JJ NN IN CD NNS .\nThe entire project , known as Gasene , is aimed at improving gas distribution in northeastern Brazil .\tDT JJ NN , VBN IN NNP , VBZ VBN IN VBG NN NN IN JJ NNP .\nA new public opinion poll shows that Brazilian President Luiz Inacio Lula da Silva 's popularity has fallen but remains strong despite a bribes-for-votes scandal surrounding his government .\tDT JJ JJ NN NN VBZ IN JJ NNP NNP NNP NNP NNP NNP POS NN VBZ VBN CC VBZ JJ IN DT JJ NN VBG PRP$ NN .\nThe Datafolha poll shows the number of people who believe the president is honest has fallen 11 percentage points in little more than a month to 62 percent .\tDT NNP NN VBZ DT NN IN NNS WP VBP DT NN VBZ JJ VBZ VBN CD NN NNS IN RB JJR IN DT NN TO CD NN .\nMr. da Silva himself has not been accused of wrongdoing .\tNNP NNP NNP PRP VBZ RB VBN VBN IN NN .\nThe survey also says the government 's approval rating remains nearly unchanged , dropping one percentage point to 35 percent .\tDT NN RB VBZ DT NN POS NN NN VBZ RB JJ , VBG CD NN NN TO CD NN .\nThe Datafolha company polled more than 2,000 Brazilians for the survey .\tDT NNP NN VBN JJR IN CD NNS IN DT NN .\nThe scandal erupted when the ruling Workers Party was accused of paying lawmakers $ 12,000 a month to win their support .\tDT NN VBD WRB DT NN NNP NNP VBD VBN IN VBG NNS $ CD DT NN TO VB PRP$ NN .\nThe party denies the allegations , which caused some government officials to step down .\tDT NN VBZ DT NNS , WDT VBD DT NN NNS TO VB RB .\nDespite the scandal , surveys have shown that Mr. da Silva is still the favorite to win the 2006 presidential election .\tIN DT NN , NNS VBP VBN IN NNP NNP NNP VBZ RB DT JJ TO VB DT CD JJ NN .\nOne of the defendants on trial for conspiracy in the assassination of reformist Serbian Prime Minister Zoran Djindjic has implicated the leader 's former deputy in the plot .\tCD IN DT NNS IN NN IN NN IN DT NN IN NN JJ NNP NNP NNP NNP VBZ VBN DT NN POS JJ NN IN DT NN .\nDejan ' Bugsy ' Milenkovic told a Belgrade court Thursday that Nebojsa Covic was aware of the conspiracy .\tNNP `` NNP `` NNP VBD DT NNP NN NNP IN NNP NNP VBD JJ IN DT NN .\nHe said Mr. Djindjic 's sworn enemy , ultranationalist leader Vojislav Seselj , also was aware of the plot .\tPRP VBD NNP NNP POS JJ NN , JJ NN NNP NNP , RB VBD JJ IN DT NN .\nSeselj is on trial for war crimes in the Hague .\tNNP VBZ IN NN IN NN NNS IN DT NNP .\nCovic has denied any involvement .\tNNP VBZ VBN DT NN .\nOfficials of Seselj 's Radical Party dismissed the allegations against him .\tNNS IN NNP POS NNP NNP VBD DT NNS IN PRP .\nMilenkovic is one of 13 suspects on trial for their roles in the assassination of Mr. Djindjic outside government offices in Belgrade in 2003 .\tNNP VBZ CD IN CD NNS IN NN IN PRP$ NNS IN DT NN IN NNP NNP IN NN NNS IN NNP IN CD .\nMr. Djindjic was one of the leaders of the pro-democracy movement that toppled former Yugoslav President Slobodan Milosevic in 2000 .\tNNP NNP VBD CD IN DT NNS IN DT JJ NN WDT VBD JJ JJ NNP NNP NNP IN CD .\nHe was also instrumental in extraditing the former leader to the United Nations war crimes tribunal in The Hague .\tPRP VBD RB JJ IN VBG DT JJ NN TO DT NNP NNPS NN NNS JJ IN DT NNP .\nIraqi police say a suicide bomber blew up his explosives filled car near the Oil Ministry in Baghdad , killing at least nine people and wounding eight others .\tJJ NNS VBP DT NN NN VBD RP PRP$ NNS VBN NN IN DT NNP NNP IN NNP , VBG IN JJS CD NNS CC VBG CD NNS .\nAnother suicide car bomb attack occurred in an eastern part of the capital Thursday .\tDT NN NN NN NN VBD IN DT JJ NN IN DT NN NNP .\nPolice said there were casualties , but no confirmed figure was immediately available .\tNNS VBD EX VBD NNS , CC DT VBN NN VBD RB JJ .\nThe attacks come a day after 25 people were killed and 90 others wounded in a suicide attack at a Shi'ite mosque in the town of Hilla .\tDT NNS VBP DT NN IN CD NNS VBD VBN CC CD NNS VBN IN DT NN NN IN DT NNP NN IN DT NN IN NNP .\nThe bomber struck as the faithful gathered at the mosque to pray before breaking fast Wednesday - the first day of the Muslim holy month of Ramadan .\tDT NN VBD IN DT NN VBD IN DT NN TO VB IN VBG JJ NNP IN DT JJ NN IN DT NNP JJ NN IN NNP .\nMeanwhile , Iraqi President Jalal Talabani met with British Prime Minister Tony Blair in London Thursday , to discuss preparations for the October 15 national referendum on Iraq 's new constitution .\tRB , JJ NNP NNP NNP VBD IN NNP NNP NNP NNP NNP IN NNP NNP , TO VB NNS IN DT NNP CD JJ NN IN NNP POS JJ NN .\nRussia 's military chief , General Yuri Baluyevsky , has reiterated international calls that North Korea must remain free of nuclear weapons .\tNNP POS JJ NN , NNP NNP NNP , VBZ VBN JJ NNS IN NNP NNP MD VB JJ IN JJ NNS .\nMr. Baluyevsky spoke Monday during a meeting in Moscow with his Japanese counterpart , visiting Military Chief General Hajime Massaki .\tNNP NNP VBD NNP IN DT NN IN NNP IN PRP$ JJ NN , VBG NNP NNP NNP NNP NNP .\nHe said it is the international community 's duty to prevent any nuclear tests on the Korean peninsula .\tPRP VBD PRP VBZ DT JJ NN POS NN TO VB DT JJ NNS IN DT JJ NN .\nOn Sunday , North Korea confirmed a meeting with U.S. officials held earlier this month .\tIN NNP , NNP NNP VBD DT NN IN NNP NNS VBN RBR DT NN .\nThe statement came days after U.S. officials announced they held a rare meeting with North Korean authorities at United Nations headquarters in New York , to urge Pyongyang to return to talks on ending its nuclear weapons program .\tDT NN VBD NNS IN NNP NNS VBD PRP VBD DT JJ NN IN JJ JJ NNS IN NNP NNP NN IN NNP NNP , TO VB NNP TO VB TO NNS IN VBG PRP$ JJ NNS NN .\nSouth Korea , China , Russia and Japan have also been calling on North Korea to re-join the six-nation talks .\tNNP NNP , NNP , NNP CC NNP VBP RB VBN VBG IN NNP NNP TO VB DT NN NNS .\nIraq 's health minister says a girl who died earlier this month in northern Iraq was a victim of the deadly H5N1 strain of the bird flu - the first known case of the disease in the country .\tNNP POS NN NN VBZ DT NN WP VBD RBR DT NN IN JJ NNP VBD DT NN IN DT JJ NNP NN IN DT NN NN IN DT JJ VBN NN IN DT NN IN DT NN .\nAbdel Mutalib Mohammed told reporters Monday that new tests of the victim 's blood samples confirmed the Kurdish teenager had contracted the deadly strain .\tNNP NNP NNP VBD NNS NNP IN JJ NNS IN DT NN POS NN NNS VBD DT NNP NN VBD VBN DT JJ NN .\nNearly two weeks ago , the World Health Organization said its tests for the virus were negative .\tRB CD NNS RB , DT NNP NNP NNP VBD PRP$ NNS IN DT NN VBD JJ .\nThe girl died January 17th in the Kurdish city of Sulaymaniya , near the border with Turkey and Iran .\tDT NN VBD NNP CD IN DT JJ NN IN NNP , IN DT NN IN NNP CC NNP .\nThe death triggered concerns that infected birds from Turkey had begun spreading the virus in Iraq .\tDT NN VBD NNS IN JJ NNS IN NNP VBD VBN VBG DT NN IN NNP .\nTens of thousands of Georgian opposition demonstrators have marched through the Georgian capital to protest final parliamentary election results they say unfairly favored the ruling party .\tNNS IN NNS IN JJ NN NNS VBP VBN IN DT JJ NN TO VB JJ JJ NN NNS PRP VBP RB VBN DT NN NN .\nProtesters marched Monday in Tbilisi , shortly after a military parade marking Georgia 's Independence Day .\tNNS VBD NNP IN NNP , RB IN DT JJ NN VBG NNP POS NNP NNP .\nFinal results from the May 21 polls show President Mikhail Saakashvili 's United National Movement party winning 120 of 150 parliamentary seats .\tJJ NNS IN DT NNP CD NNS VBP NNP NNP NNP POS NNP NNP NNP NN VBG CD IN CD JJ NNS .\nLast week , opposition leader Levan Gachechiladze said his United Opposition Council will not take its 16 seats in the legislature to protest election results .\tJJ NN , NN NN NNP NNP VBD PRP$ NNP NNP NNP MD RB VB PRP$ CD NNS IN DT NN TO VB NN NNS .\nMonday he said his supporters will try to prevent the new parliament from convening , by force if necessary .\tNNP PRP VBD PRP$ NNS MD VB TO VB DT JJ NN IN NN , IN NN IN JJ .\nObservers from the Organization for Security and Cooperation in Europe noted a number of problems , including pre-election intimidation of candidates and procedural shortcomings in the vote count .\tNNS IN DT NNP IN NNP CC NNP IN NNP VBD DT NN IN NNS , VBG JJ NN IN NNS CC JJ NNS IN DT NN NN .\nHowever , they stopped short of rejecting the poll results .\tRB , PRP VBD RB IN VBG DT NN NNS .\nThe U.S. military in Afghanistan says a bomb explosion has killed four American service members .\tDT NNP NN IN NNP VBZ DT NN NN VBZ VBN CD JJ NN NNS .\nThe troops were on patrol in central Uruzgan province Monday , when their vehicle struck the explosive device .\tDT NNS VBD IN NN IN JJ NNP NN NNP , WRB PRP$ NN VBD DT JJ NN .\nMeanwhile , in Kunar province bordering Pakistan , an Afghan soldier was killed and five others wounded when their vehicle hit a land mine .\tRB , IN NNP NN VBG NNP , DT JJ NN VBD VBN CC CD NNS VBN WRB PRP$ NN VBD DT NN NN .\nLate Sunday , in southern Helmand province , Taleban insurgents ambushed an Afghan militia unit , killing two men and leaving six missing .\tRB NNP , IN JJ NNP NN , NNP NNS VBD DT JJ NN NN , VBG CD NNS CC VBG CD VBG .\nA purported spokesman for the Taleban said the missing militiamen were killed , but Afghan authorities confirm only two deaths .\tDT JJ NN IN DT NNP VBD DT JJ NNS VBD VBN , CC JJ NNS VBP RB CD NNS .\nIn another violence late Sunday , on a highway between Kandahar and Herat , suspected Taleban set fire to a tanker supplying fuel to coalition forces .\tIN DT NN RB NNP , IN DT NN IN NNP CC NNP , JJ NNP VBD NN TO DT NN VBG NN TO NN NNS .\nA congressman from South Carolina has urged his colleagues and President Bush to provide better equipment to troops in Iraq .\tDT NN IN NNP NNP VBZ VBN PRP$ NNS CC NNP NNP TO VB JJR NN TO NNS IN NNP .\nRepresentative Jim Clyburn said in the Democratic party 's weekly radio address that U.S. soldiers should never lack proper equipment nor accurate intelligence .\tJJ NNP NNP VBD IN DT JJ NN POS JJ NN NN IN NNP NNS MD RB VB JJ NN CC JJ NN .\nMr. Clyburn also said he opposed attempts to invest Social Security on the stock market , calling proposed plans a gamble that could jeopardize benefits for children .\tNNP NNP RB VBD PRP VBD NNS TO VB NNP NNP IN DT NN NN , VBG VBN NNS DT NN WDT MD VB NNS IN NNS .\nHe also called for expanding health insurance coverage and making college education more affordable .\tPRP RB VBD IN VBG NN NN NN CC VBG NN NN RBR JJ .\nAmbassadors from Spain , Brazil and Venezuela met with a jailed Colombian rebel leader Friday in hopes of securing a cease-fire between his leftist group and Colombia 's government .\tNNS IN NNP , NNP CC NNP VBD IN DT JJ JJ NN NN NNP IN NNS IN VBG DT NN IN PRP$ JJ NN CC NNP POS NN .\nThe officials traveled to a high-security prison in northwest Colombia to meet with Francisco Galan , a spokesman for the National Liberation Army , or ELN .\tDT NNS VBD TO DT JJ NN IN JJ NNP TO VB IN NNP NNP , DT NN IN DT NNP NNP NNP , CC NNP .\nThey want the group to halt armed operations and enter peace talks with Colombian President Alvaro Uribe 's government .\tPRP VBP DT NN TO VB JJ NNS CC VB NN NNS IN JJ NNP NNP NNP POS NN .\nThe ELN and a larger guerrilla group are fighting in a long-running civil war that also involves right-wing paramilitaries .\tDT NNP CC DT JJR NN NN VBP VBG IN DT JJ JJ NN WDT RB VBZ JJ NNS .\nA Mexican diplomat met with Mr. Galan last year to push for an ELN cease-fire .\tDT JJ NN VBD IN NNP NNP JJ NN TO VB IN DT NNP NN .\nMexico has offered to monitor negotiations between the group and Colombia 's government .\tNNP VBZ VBN TO VB NNS IN DT NN CC NNP POS NN .\nThe U.S. military says Afghan police killed a senior militant commander this week in the central province of Ghazni .\tDT NNP NN VBZ JJ NN VBD DT JJ JJ NN DT NN IN DT JJ NN IN NNP .\nA military statement says Abdul Baki was killed Wednesday while police were conducting a search of his residence .\tDT JJ NN VBZ NNP NNP VBD VBN NNP IN NNS VBD VBG DT NN IN PRP$ NN .\nThe statement says Baki was the top militant commander in Ghazni 's Andar district , leading a cell of 20 to 30 fighters who coordinated and carried out attacks on troops and government officials .\tDT NN VBZ NNP VBD DT JJ JJ NN IN NNP POS NNP NN , VBG DT NN IN CD TO CD NNS WP VBD CC VBD RP NNS IN NNS CC NN NNS .\nThe statement says Baki attacked Afghan police with small-arms fire as they entered his residence .\tDT NN VBZ NNP VBD JJ NNS IN JJ NN IN PRP VBD PRP$ NN .\nThe military says Afghan police discovered 50 voter registration cards in the compound .\tDT JJ VBZ JJ NNS VBD CD NN NN NNS IN DT NN .\nAuthorities believe the cards were taken from villagers in order to prevent them from voting in the planned August presidential elections .\tNNS VBP DT NNS VBD VBN IN NNS IN NN TO VB PRP IN VBG IN DT JJ NNP JJ NNS .\nIn a separate incident in Ghazni Wednesday , the U.S. military said seven militants were killed during an operation to cut the flow of weapons and fighters into eastern Afghanistan .\tIN DT JJ NN IN NNP NNP , DT NNP NN VBD CD NNS VBD VBN IN DT NN TO VB DT NN IN NNS CC NNS IN JJ NNP .\nThe grandmother of U.S. Democratic presidential candidate Barack Obama has died from cancer .\tDT NN IN NNP JJ JJ NN NNP NNP VBZ VBN IN NN .\nObama announced the death of long-ailing 86-year-old Madelyn Dunham Monday , just one day before voters went to the polls to elect a new president .\tNNP VBD DT NN IN JJ JJ NNP NNP NNP , RB CD NN IN NNS VBD TO DT NNS TO VB DT JJ NN .\nThe Democratic candidate cried at a rally in North Carolina Monday when talking about the death of his grandmother , who helped raise him .\tDT JJ NN VBN IN DT NN IN NNP NNP NNP WRB VBG IN DT NN IN PRP$ NN , WP VBD VB PRP .\nObama suspended his campaign for two days last month to visit Dunham in the U.S. Pacific island state of Hawaii .\tNNP VBD PRP$ NN IN CD NNS JJ NN TO VB NNP IN DT NNP NNP NN NN IN NNP .\nHe said he feared she might not survive to see the historic election .\tPRP VBD PRP VBD PRP MD RB VB TO VB DT JJ NN .\nBut although she did not live to see the outcome , Dunham 's vote - an absentee ballot - will count .\tCC IN PRP VBD RB VB TO VB DT NN , NNP POS NN IN DT NN NN : MD VB .\nObama faces Republican Senator John McCain in the election Tuesday .\tNNP VBZ JJ NNP NNP NNP IN DT NN NNP .\nKenyan authorities report that more than 1,000 teachers have been fired during the past two years for sexually abusing girls .\tJJ NNS VBP IN JJR IN CD NNS VBP VBN VBN IN DT JJ CD NNS IN RB VBG NNS .\nEducation officials said the teachers have been dismissed for impregnating students and committing other sexual offenses .\tNNP NNS VBD DT NNS VBP VBN VBN IN VBG NNS CC VBG JJ JJ NNS .\nMore of the cases have occurred in public schools .\tJJR IN DT NNS VBP VBN IN JJ NNS .\nIn addition to being fired from their jobs , some of the teachers have faced criminal proceedings in courts .\tIN NN TO VBG VBN IN PRP$ NNS , DT IN DT NNS VBP VBN JJ NNS IN NNS .\nOfficials said more than 500 teachers have been fired so far this year for committing sexual abuses , and that 600 were dismissed last year .\tNNS VBD JJR IN CD NNS VBP VBN VBN RB RB DT NN IN VBG JJ NNS , CC IN CD VBD VBN JJ NN .\nThe U.S. State Department has renewed a warning to U.S. citizens about the dangers of traveling in Colombia .\tDT NNP NNP NNP VBZ VBN DT NN TO NNP NNS IN DT NNS IN VBG IN NNP .\nThe department issued an updated travel warning for Colombia Friday .\tDT NN VBD DT VBN NN NN IN NNP NNP .\nIt said there is potential for violence by terrorists and other criminals in all parts of the South American country .\tPRP VBD EX VBZ NN IN NN IN NNS CC JJ NNS IN DT NNS IN DT NNP NNP NN .\nAccording to the travel warning , violence has decreased in many urban areas , but small towns and rural areas can still be extremely dangerous .\tVBG TO DT NN NN , NN VBZ VBN IN JJ JJ NNS , CC JJ NNS CC JJ NNS MD RB VB RB JJ .\nThe State Department also said kidnapping in Colombia has decreased from its peak at the beginning of the decade .\tDT NNP NNP RB VBD NN IN NNP VBZ VBN IN PRP$ NN IN DT NN IN DT NN .\nHowever , it said groups such as the FARC and the ELN , which are classified as terrorist groups by the United States , continue to kidnap civilians for ransom and political bargaining power .\tRB , PRP VBD NNS JJ IN DT NNP CC DT NNP , WDT VBP VBN IN JJ NNS IN DT NNP NNPS , VBP TO VB NNS IN NN CC JJ NN NN .\nOn July 2 , the government of Colombia rescued 15 hostages who had been held for more than five years .\tIN NNP CD , DT NN IN NNP VBD CD NNS WP VBD VBN VBN IN JJR IN CD NNS .\nThree of the hostages were Americans .\tCD IN DT NNS VBD NNS .\nNATO has detained a former Bosnian Serb policeman suspected of helping war crimes suspects .\tNNP VBZ VBN DT JJ JJ JJ NN VBN IN VBG NN NNS NNS .\nNATO said Friday it suspects Dusan Tesic had valuable information about a network officials say has aided indicted war criminals .\tNNP VBD NNP PRP VBZ NNP NNP VBD JJ NN IN DT NN NNS VBP VBZ VBN VBN NN NNS .\nBut it did not say whom he is suspected of helping .\tCC PRP VBD RB VB WP PRP VBZ VBN IN VBG .\nIt was the second time this year NATO has held Mr. Tesic for questioning .\tPRP VBD DT JJ NN DT NN NNP VBZ VBN NNP NNP IN VBG .\nThursday , the head of European Union peacekeepers in Bosnia said he was closing a bunker believed to have sheltered General Ratko Mladic , the former Bosnian Serb commander .\tNNP , DT NN IN NNP NNP NNS IN NNP VBD PRP VBD VBG DT NN VBN TO VB VBN NNP NNP NNP , DT JJ JJ JJ NN .\nMeanwhile , the French news agency says Serbia has decided to give the guarantees needed for the release of two war crimes suspects until their trial .\tRB , DT JJ NN NN VBZ NNP VBZ VBN TO VB DT NNS VBN IN DT NN IN CD NN NNS VBZ IN PRP$ NN .\nSerb ultra-nationalist Vojislav Seselj and General Dragomir Milosevic have been held in The Hague .\tJJ NN NNP NNP CC NNP NNP NNP VBP VBN VBN IN DT NNP .\nCalifornia Republican Governor Arnold Schwarzenegger and legislative Democrats have reached what he calls a ' historic agreement ' that would make the state the first to impose a limit on greenhouse gas emissions .\tNNP NNP NNP NNP NNP CC JJ NNS VBP VBN WP PRP VBZ DT `` JJ NN `` WDT MD VB DT NN DT JJ TO VB DT NN IN NN NN NNS .\nGovernor Schwarzenegger and the lawmakers Wednesday agreed to the deal that would require major energy companies to reduce their carbon emissions within 14 years to 1990 levels .\tNNP NNP CC DT NNS NNP VBD TO DT NN WDT MD VB JJ NN NNS TO VB PRP$ NN NNS IN CD NNS TO CD NNS .\nCalifornia is aiming to reduce gas emissions by 25 percent .\tNNP VBZ VBG TO VB NN NNS IN CD NN .\nThe bill still needs the approval of the state 's lawmakers .\tDT NN RB VBZ DT NN IN DT NN POS NNS .\nIt is expected to pass as Democrats currently hold the majority in the state legislature .\tPRP VBZ VBN TO VB IN NNS RB VBP DT NN IN DT NN NN .\nCarbon gases trap heat in the atmosphere and scientists believe the gases contribute to global warming .\tNNP NNS VBZ NN IN DT NN CC NNS VBP DT NNS VBP TO JJ NN .\nCalifornia is the 12th largest producer of greenhouse gas emissions .\tNNP VBZ DT JJ JJS NN IN NN NN NNS .\nZimbabwe has suspended exports of ostrich and other poultry after discovering a strain of avian flu that can be lethal to birds , but poses little risk to humans .\tNNP VBZ VBN NNS IN NN CC JJ NN IN VBG DT NN IN JJ NN WDT MD VB JJ TO NNS , CC VBZ JJ NN TO NNS .\nThursday , Zimbabwe 's state-run newspaper The Herald reported that the H5N2 strain of avian flu was detected on two farms in Zimbabwe 's Matabeleland province .\tNNP , NNP POS JJ NN DT NNP VBD IN DT NNP NN IN JJ NN VBD VBN IN CD NNS IN NNP POS NNP NN .\nIt quotes the state veterinary services director , Dr. Stuart Hargreaves , as saying the virus was confirmed with samples sent to South Africa .\tPRP VBZ DT NN JJ NNS NN , NNP NNP NNP , IN VBG DT NN VBD VBN IN NNS VBN TO NNP NNP .\nThe H5N2 strain of avian flu is not known to pass from birds to humans , unlike the H5N1 strain that has killed nearly 70 people in Southeast Asia since 2003 .\tDT NNP NN IN JJ NN VBZ RB VBN TO VB IN NNS TO NNS , IN DT NNP NN WDT VBZ VBN RB CD NNS IN NNP NNP IN CD .\nDr. Hargreaves says all of Zimbabwe 's ostrich farms have been placed under quarantine until a national survey can determine the full extent of virus outbreak .\tNNP NNP VBZ DT IN NNP POS JJ NNS VBP VBN VBN IN NN IN DT JJ NN MD VB DT JJ NN IN NN NN .\nThe U.S. Geological Survey has reported a 7.1 magnitude earthquake some 300 kilometers off the coast of eastern Indonesia .\tDT NNP NNP NNP VBZ VBN DT CD NN NN DT CD NNS IN DT NN IN JJ NNP .\nGeologists say the quake is unlikely to cause a tsunami .\tNNS VBP DT NN VBZ JJ TO VB DT NN .\nThere were no reports of casualties or damage , but the French news agency , AFP , says the Wednesday evening quake sparked panic among residents in several Indonesian provinces .\tEX VBD DT NNS IN NNS CC NN , CC DT JJ NN NN , NNP , VBZ DT NNP NN NN VBD NN IN NNS IN JJ JJ NNS .\nPeople in Australia also reported feeling tremors .\tNNS IN NNP RB VBD VBG NNS .\nRecovery workers in Indonesia are still pulling bodies from the rubble of cities devastated by the December 26 earthquake and tsunami .\tNNP NNS IN NNP VBP RB VBG NNS IN DT NN IN NNS VBN IN DT NNP CD NN CC NN .\nJakarta 's official death count widely varies , but well over 1,00,000 people in Indonesia are believed to have died in the disaster .\tNNP POS JJ NN NN RB VBZ , CC RB IN CD NNS IN NNP VBP VBN TO VB VBN IN DT NN .\nChina is defending its record of reporting human cases of bird flu following a newspaper report that local health officials may be hiding suspected cases .\tNNP VBZ VBG PRP$ NN IN VBG JJ NNS IN NN NN VBG DT NN NN IN JJ NN NNS MD VB VBG JJ NNS .\nChina 's health ministry said Saturday that every human case of bird flu in China has been made public once confirmed .\tNNP POS NN NN VBD NNP IN DT JJ NN IN NN NN IN NNP VBZ VBN VBN JJ RB VBN .\nOn Thursday , the Asian edition of The Wall Street Journal reported that local health officials in China had failed to report possible human cases of bird flu to the central government .\tIN NNP , DT JJ NN IN DT NNP NNP NNP VBD IN JJ NN NNS IN NNP VBD VBN TO VB JJ JJ NNS IN NN NN TO DT JJ NN .\nChina announced its first human bird flu case last November .\tNNP VBD PRP$ JJ JJ NN NN NN JJ NNP .\nThe country has reported 18 cases , including 12 deaths .\tDT NN VBZ VBN CD NNS , VBG CD NNS .\nChina was widely accused of suppressing information about the 2003 Severe Acute Respiratory Syndrome ( SARS ) outbreak .\tNNP VBD RB VBN IN VBG NN IN DT CD NNP NNP NNP NNP LRB NNP RRB NN .\nThe outbreak infected more than eight-thousand people and killed nearly 800 , mostly in China , between late 2002 and mid-2003 .\tDT NN VBD JJR IN CD NNS CC VBD RB CD , RB IN NNP , IN JJ CD CC CD .\nThe United Nations has called a special meeting to address the effect of AIDS in southern Africa .\tDT NNP NNP VBZ VBN DT JJ NN TO VB DT NN IN NNP IN JJ NNP .\nU.N. officials say Wednesday 's meeting in Johannesburg , South Africa will focus on relief efforts and how to get badly-needed resources to the region to battle the growing epidemic .\tNNP NNS VBP NNP POS NN IN NNP , NNP NNP MD VB IN NN NNS CC WRB TO VB JJ NNS TO DT NN TO VB DT VBG NN .\nU.N. special envoy and World Food Program Executive Director James Morris will attend the meeting .\tNNP JJ NN CC NNP NNP NNP NNP NNP NNP NNP MD VB DT NN .\nMr. Morris is currently on an 11-day , four-nation tour of southern Africa to call attention to the region 's problems with drought and AIDS .\tNNP NNP VBZ RB IN DT JJ , JJ NN IN JJ NNP TO VB NN TO DT NN POS NNS IN NN CC NNP .\nU.N. Children 's Fund chair Ann Veneman and U.N. AIDS chief Peter Piot are also expected to attend the meeting .\tNNP NNP POS NNP NN NNP NNP CC NNP NNP NN NNP NNP VBP RB VBN TO VB DT NN .\nU.N. figures show southern Africa is one of the world 's hardest-hit regions , with infection rates at nearly 40 percent in Botswana and Swaziland .\tNNP NNS VBP JJ NNP VBZ CD IN DT NN POS JJ NNS , IN NN NNS IN RB CD NN IN NNP CC NNP .\nSouth Africa 's infection rate is over 20 percent .\tNNP NNP POS NN NN VBZ IN CD NN .\nSurrounded by election staff and bodyguards , former commander of Iran 's elite Revolutionary Guard , Mohsen Rezaei , seated , registers as a presidential candidate in Tehran A hard-line conservative candidate says he is withdrawing from Iran 's presidential election .\tVBN IN NN NN CC NNS , JJ NN IN NNP POS NN NNP NNP , NNP NNP , VBN , VBZ IN DT JJ NN IN NNP DT JJ JJ NN VBZ PRP VBZ VBG IN NNP POS JJ NN .\nMohsen Rezaei Wednesday said he is dropping out to avoid splitting voter support among several conservative candidates .\tNNP NNP NNP VBD PRP VBZ VBG RP TO VB NN NN NN IN JJ JJ NNS .\nThe announcement comes just two days before Friday 's poll .\tDT NN VBZ RB CD NNS IN NNP POS NN .\nHis exit leaves three hard-line conservatives in the race , as well as leading reform candidate Mostafa Moin , former president Akbar Hashemi Rafsanjani , and other lesser-known presidential hopefuls .\tPRP$ NN VBZ CD JJ NNS IN DT NN , RB RB IN VBG NN NN NNP NNP , JJ NN NNP NNP NNP , CC JJ JJ JJ NNS .\nPresident Mohammad Khatami is barred from running for a third consecutive term .\tNNP NNP NNP VBZ VBN IN VBG IN DT JJ JJ NN .\nArgentina has designated China as a ' market economy , ' a move that will limit the South American country 's ability to impose anti-dumping sanctions on Chinese exports .\tNNP VBZ VBN NNP IN DT `` NN NN , `` DT NN WDT MD VB DT NNP NNP NN POS NN TO VB JJ NNS IN JJ NNS .\nThe decision comes after China and Argentina signed accords that could bring more than $ 20 billion in Chinese investment to Argentina over the next 10 years .\tDT NN VBZ IN NNP CC NNP VBD NNS WDT MD VB JJR IN $ CD CD IN JJ NN TO NNP IN DT JJ CD NNS .\nBrazil also granted China ' market economy ' status during a visit by Chinese President Hu Jintao last week .\tNNP RB VBD NNP `` NN NN `` NN IN DT NN IN JJ NNP NNP NNP JJ NN .\nOn Wednesday , Argentina 's agriculture department announced that China will increase imports of Argentine beef , apples and pears over the next few years .\tIN NNP , NNP POS NN NN VBD IN NNP MD VB NNS IN JJ NN , NNS CC NNS IN DT JJ JJ NNS .\nSuspected Islamic militants have attacked security forces on both sides of the Afghanistan - Pakistan border .\tVBN JJ NNS VBP VBN NN NNS IN DT NNS IN DT NNP IN NNP NN .\nOfficials in Pakistan 's North Waziristan tribal region say at least eight militants were killed in a gunfight with Pakistani troops Tuesday near the area 's main town of Miran Shah .\tNNS IN NNP POS NNP NNP JJ NN VBP IN JJS CD NNS VBD VBN IN DT NN IN JJ NNS NNP IN DT NN POS JJ NN IN NNP NNP .\nThe militants ambushed a security convoy and killed one soldier before the troops returned fire .\tDT NNS VBD DT NN NN CC VBD CD NN IN DT NNS VBD NN .\nEarlier , militants shot to death two police officers in Miran Shah .\tRB , NNS VBD TO NN CD NN NNS IN NNP NNP .\nIn neighboring Afghanistan , officials say suspected Taleban militants attacked a police post and a government office near the Pakistani border .\tIN VBG NNP , NNS VBP VBN NNP NNS VBD DT NN NN CC DT NN NN IN DT JJ NN .\nTwo police officers were killed .\tCD NNS NNS VBD VBN .\nAuthorities say several Taleban were also killed , but it is not clear how many .\tNNS VBP JJ NNP VBD RB VBN , CC PRP VBZ RB JJ WRB JJ .\nMilitants linked to the Taleban and al-Qaida have been active along Pakistan 's rugged northwestern border with Afghanistan since a U.S.-led invasion forced the Taleban from power in Afghanistan in late 2001 .\tNNS VBN TO DT NNP CC NNP VBP VBN JJ IN NNP POS JJ JJ NN IN NNP IN DT JJ NN VBD DT NNP IN NN IN NNP IN JJ CD .\nIntelligence officials in Pakistan say a suspected U.S. drone has fired missiles into a Taliban training camp in northwest Pakistan , killing as many as 14 militants .\tNNP NNS IN NNP VBP DT JJ NNP NN VBZ VBN NNS IN DT NNP NN NN IN JJ NNP , VBG RB JJ IN CD NNS .\nOfficials say the attack took place Tuesday in South Waziristan , along the country 's border with Afghanistan .\tNNS VBP DT NN VBD NN NNP IN NNP NNP , IN DT NN POS NN IN NNP .\nThe area is a stronghold of Baitullah Mehsud , a top Taliban leader and al-Qaida ally wanted by both Pakistan and the United States .\tDT NN VBZ DT NN IN NNP NNP , DT JJ NNP NN CC NNP NN VBN IN DT NNP CC DT NNP NNPS .\nMehsud is blamed for scores of attacks against government and civilian targets , and is believed to be a key facilitator for al-Qaida fighters in Pakistan .\tNNP VBZ VBN IN NNS IN NNS IN NN CC JJ NNS , CC VBZ VBN TO VB DT JJ NN IN NNP NNS IN NNP .\nPakistan 's military has been fighting Taliban militants throughout the country 's northwest for more than two months .\tNNP POS NN VBZ VBN VBG NNP NNS IN DT NN POS JJS IN JJR IN CD NNS .\nIslamabad deployed soldiers there to stop insurgents from fleeing into Pakistan after a major U.S. offensive against the Taliban in Afghanistan 's southern Helmand province , which borders Pakistan .\tNNP VBD NNS RB TO VB NNS IN VBG IN NNP IN DT JJ NNP NN IN DT NNP IN NNP POS JJ NNP NN , WDT VBZ NNP .\nPalestinian officials said President Mahmoud Abbas will meet with U.S. President Barack Obama in Washington on May 28 .\tJJ NNS VBD NNP NNP NNP MD VB IN NNP NNP NNP NNP IN NNP IN NNP CD .\nOn Tuesday , the White House announced Mr. Obama has invited the Israeli , Palestinian and Egyptian leaders for talks in the coming weeks .\tIN NNP , DT NNP NNP VBD NNP NNP VBZ VBN DT JJ , JJ CC JJ NNS IN NNS IN DT JJ NNS .\nPresident Obama has said he expects the Israelis and Palestinians to make ' gestures of good faith ' in the coming months , in an effort to revive the Middle East peace process .\tNNP NNP VBZ VBN PRP VBZ DT NNS CC NNS TO VB `` NNS IN JJ NN `` IN DT JJ NNS , IN DT NN TO VB DT NNP NNP NN NN .\nMr. Obama said he is a strong supporter of a two-state solution and that perpetuating the decades-long Israeli-Palestinian conflict is not in the interest of the people in the region .\tNNP NNP VBD PRP VBZ DT JJ NN IN DT JJ NN CC IN VBG DT JJ JJ NN VBZ RB IN DT NN IN DT NNS IN DT NN .\n' The Washington Post ' on Wednesday quoted top Israeli officials as saying they will not move ahead on the peace talks until they see progress on U.S. efforts to stop Iran 's suspected pursuit of nuclear weapons and limit Tehran 's regional influence .\t`` DT NNP NNP `` IN NNP VBD JJ JJ NNS IN VBG PRP MD RB VB RB IN DT NN NNS IN PRP VBP NN IN NNP NNS TO VB NNP POS JJ NN IN JJ NNS CC VB NNP POS JJ NN .\nChina says it will buy 150 passenger jets from Airbus in a deal worth almost $ 10 billion .\tNNP VBZ PRP MD VB CD NN NNS IN NNP IN DT NN NN RB $ CD CD .\nIt is the largest single order Airbus has ever gotten from China .\tPRP VBZ DT JJS JJ NN NNP VBZ RB VBN IN NNP .\nThe agreement was signed Monday in Paris as Chinese Premier Wen Jiabao and his French counterpart , Dominique de Villepin , looked on .\tDT NN VBD VBN NNP IN NNP IN JJ NNP NNP NNP CC PRP$ JJ NN , NNP NNP NNP , VBD IN .\nOn Sunday , Mr. Wen toured an Airbus manufacturing plant and signed an agreement that may lead to opening an aircraft assembly plant in China .\tIN NNP , NNP NNP VBD DT NNP NN NN CC VBD DT NN WDT MD VB TO VBG DT NN NN NN IN NNP .\nThe planes in the French deal are part of the A-320 family that can carry between 110 and 185 passengers .\tDT NNS IN DT JJ NN VBP NN IN DT NNP NN WDT MD VB IN CD CC CD NNS .\nChina bought 70 jets from the U.S. manufacturer Boeing during President Bush 's trip to Beijing last month .\tNNP VBD CD NNS IN DT NNP NN NNP IN NNP NNP POS NN TO NNP JJ NN .\nHaitian President Rene Preval has chosen an official with the Inter-American Development Bank to be the country 's new prime minister .\tJJ NNP NNP NNP VBZ VBN DT NN IN DT NNP NNP NNP TO VB DT NN POS JJ JJ NN .\nReports from Port-au-Prince say President Preval named Ericq Pierre to the post Sunday .\tNNS IN NN VBP NNP NNP VBD NNP NNP TO DT NN NNP .\nMr. Pierre 's appointment must be ratified by legislators .\tNNP NNP POS NN MD VB VBN IN NNS .\nEarlier this month , lawmakers dismissed Prime Minister Jacques Edouard Alexis to quell violent protests over rising food prices in the impoverished Caribbean nation .\tRBR DT NN , NNS VBD NNP NNP NNP NNP NNP TO VB JJ NNS IN VBG NN NNS IN DT JJ JJ NN .\nThe legislators said Mr. Alexis had not done enough to improve the economy or keep soaring food prices under control .\tDT NNS VBD NNP NNP VBD RB VBN RB TO VB DT NN CC VB VBG NN NNS IN NN .\nAt least six people , including a United Nations peacekeeper , were killed as violence erupted in the capital as well as the city of Les Cayes over the cost of food .\tIN JJS CD NNS , VBG DT NNP NNP NN , VBD VBN IN NN VBD IN DT NN RB RB IN DT NN IN NNP NNP IN DT NN IN NN .\nHaiti is the poorest country in the Western Hemisphere and has a history of political turmoil .\tNNP VBZ DT JJS NN IN DT JJ NNP CC VBZ DT NN IN JJ NN .\nUkrainian authorities have imposed a quarantine on districts of Crimea affected by the country 's first outbreak of bird flu .\tJJ NNS VBP VBN DT NN IN NNS IN NNP VBN IN DT NN POS JJ NN IN NN NN .\nOfficials ordered the slaughter of all poultry in five affected villages after officials confirmed the discovery of dead birds infected with an H5 strain of bird flu .\tNNS VBD DT NN IN DT NN IN CD JJ NNS IN NNS VBD DT NN IN JJ NNS VBN IN DT NNP NN IN NN NN .\nAuthorities are now sending samples to Britain and Italy to determine whether it is the deadly H5N1 strain that has killed nearly 70 people in Asia since 2003 .\tNNS VBP RB VBG NNS TO NNP CC NNP TO VB IN PRP VBZ DT JJ NNP NN WDT VBZ VBN RB CD NNS IN NNP IN CD .\nIn Indonesia , officials said the World Health Organization has confirmed the country 's eighth human death from bird flu .\tIN NNP , NNS VBD DT NNP NNP NNP VBZ VBN DT NN POS JJ JJ NN IN NN NN .\nThe officials said Saturday tests conducted at a laboratory in Hong Kong show that a 25-year-old woman who died earlier this week had the H5N1 strain .\tDT NNS VBD NNP NNS VBN IN DT NN IN NNP NNP VBP IN DT JJ NN WP VBD RBR DT NN VBD DT NNP NN .\nHealth experts fear the virus could mutate into a form that could be easily transmitted between humans and kill millions of people .\tNN NNS VBP DT NN MD VB IN DT NN WDT MD VB RB VBN IN NNS CC VB NNS IN NNS .\nRwandan President Paul Kagame says he disagrees with a U.N. plan for voluntary disarmament of Rwandan rebels based in the neighboring Democratic Republic of Congo .\tJJ NNP NNP NNP VBZ PRP VBZ IN DT NNP NN IN JJ NN IN JJ NNS VBN IN DT JJ NNP NNP IN NNP .\nMr. Kagame says asking the ethnic Hutu rebels to voluntarily disarm is not an attainable goal .\tNNP NNP VBZ VBG DT JJ NNP NNS TO RB VB VBZ RB DT JJ NN .\nHe spoke Sunday in Kigali , after conferring with a delegation of U.N. Security Council members who are touring African nations affected by a decade of ethnic strife in the continent 's Great Lakes region .\tPRP VBD NNP IN NNP , IN VBG IN DT NN IN NNP NNP NNP NNS WP VBP VBG JJ NNS VBN IN DT NN IN JJ NN IN DT NN POS NNP NNP NN .\nPresident Kagame also criticized a recent U.N. decision to bolster its peacekeeping force in Congo by some 6,000 troops .\tNNP NNP RB VBD DT JJ NNP NN TO VB PRP$ NN NN IN NNP IN DT CD NNS .\nHe said the issue is not increasing the numbers of U.N. troops , but having a clear definition of what the troops will do once they are in place .\tPRP VBD DT NN VBZ RB VBG DT NNS IN NNP NNS , CC VBG DT JJ NN IN WP DT NNS MD VB RB PRP VBP IN NN .\nU.S. authorities say they have arrested a Mexican national alleged to be the leader of an international drug-trafficking ring .\tNNP NNS VBP PRP VBP VBN DT JJ NN VBN TO VB DT NN IN DT JJ NN NN .\nThe U.S. Drug Enforcement Administration says authorities arrested Augustin Haro-Rodriguez late Sunday as he tried to cross from Mexico into the southwestern U.S. state of Arizona .\tDT NNP NNP NNP NNP VBZ NNS VBN NNP NNP JJ NNP IN PRP VBD TO VB IN NNP IN DT JJ NNP NN IN NNP .\nAn indictment unsealed after the arrest said Mr. Haro-Rodriguez 's organization smuggled nearly 5,000 kilograms of cocaine into the United States between March , 2004 , and July , 2005 .\tDT NN VBD IN DT NN VBD NNP NNP POS NN VBD RB CD NNS IN NN IN DT NNP NNPS IN NNP , CD , CC NNP , CD .\nProsecutors say 17 members of the smuggling ring are now in custody .\tNNS VBP CD NNS IN DT NN NN VBP RB IN NN .\nIf convicted , Mr. Haro-Rodriguez faces a possible sentence of life in prison .\tIN VBN , NNP NNP VBZ DT JJ NN IN NN IN NN .\nIraqi medical officials say seven people have been killed in fresh clashes between Shi'ite fighters and U.S. forces in Baghdad 's Shi'ite stronghold of Sadr City .\tJJ JJ NNS VBP CD NNS VBP VBN VBN IN JJ NNS IN NNP NNS CC NNP NNS IN NNP POS NNP NN IN NNP NNP .\nAt least 20 other people were wounded in Thursday 's fighting .\tIN JJS CD JJ NNS VBD VBN IN NNP POS NN .\nU.S. and Iraqi forces have fought fierce battles in Sadr City against Shi'ite militiamen loyal to radical cleric Moqtada al-Sadr for the past month .\tNNP CC JJ NNS VBP VBN JJ NNS IN NNP NNP IN NNP NNS JJ TO JJ NN NNP NNP IN DT JJ NN .\nAt least 30,000 people attended the funeral Saturday of a Pakistani student who died in German police custody .\tIN JJS CD NNS VBD DT JJ NNP IN DT JJ NN WP VBD IN JJ NN NN .\nTwenty-eight-year-old Amir Cheema was arrested in March on charges of attempting to kill the editor of ' Die Welt ' newspaper for reprinting cartoons of the Prophet Muhammad , first published in Denmark last year .\tJJ NNP NNP VBD VBN IN NNP IN NNS IN VBG TO VB DT NN IN `` NNP NNP `` NN IN VBG NNS IN DT NNP NNP , RB VBN IN NNP JJ NN .\nGerman police say Cheema hanged himself in his Berlin jail on May 3 .\tJJ NNS VBP NNP VBD PRP IN PRP$ NN NN IN NNP CD .\nAfter Cheema 's body arrived in Lahore from Germany Saturday , a military helicopter flew his coffin to the family home in the village of Saroki .\tIN NNP POS NN VBD IN NNP IN NNP NNP , DT JJ NN VBD PRP$ NN TO DT NN NN IN DT NN IN NNP .\nOfficials say the tens of thousands of mourners dispersed peacefully after the funeral .\tNNS VBP DT NNS IN NNS IN NNS VBD RB IN DT NN .\nA new report says the industrial world 's economy is recovering faster than expected , but still faces risks from the debt crisis and the possible overheating of emerging economies .\tDT JJ NN VBZ DT JJ NN POS NN VBZ VBG RBR IN VBN , CC RB VBZ NNS IN DT NN NN CC DT JJ NN IN VBG NNS .\nThe Organization for Economic Cooperation and Development , which includes the world 's 30 richest nations , says its member economies will grow 2.7 percent this year , which is eight-tenths of a percentage point faster than earlier predictions .\tDT NNP IN NNP NNP CC NNP , WDT VBZ DT NN POS CD JJS NNS , VBZ PRP$ NN NNS MD VB CD NN DT NN , WDT VBZ NNS IN DT NN NN RBR IN JJR NNS .\nThe OECD says the nations that use the euro will expand more slowly ( 1.2 percent ) .\tDT NNP VBZ DT NNS WDT VBP DT NN MD VB RBR RB LRB CD NN RRB .\nThe report 's authors call on European nations to take ' bolder ' measures to cope with debt and other issues .\tDT NN POS NNS VBP IN JJ NNS TO VB `` JJR `` NNS TO VB IN NN CC JJ NNS .\nThe report also says trade flows are rising again and strong growth in China and other emerging nations is helping to pull other countries out of recession .\tDT NN RB VBZ NN NNS VBP VBG RB CC JJ NN IN NNP CC JJ VBG NNS VBZ VBG TO VB JJ NNS IN IN NN .\nBut the OECD cautions that emerging economies should be careful to avoid the threat of inflation .\tCC DT NNP NNS IN VBG NNS MD VB JJ TO VB DT NN IN NN .\nThe United Nations says it will stop distributing food to Palestinian refugees in the Gaza Strip on Monday , because its vehicles have run out of fuel .\tDT NNP NNP VBZ PRP MD VB VBG NN TO JJ NNS IN DT NNP NNP IN NNP , IN PRP$ NNS VBP VBN IN IN NN .\nGaza has been suffering fuel shortages because of Israeli cutbacks in fuel supplies to the territory and a strike by Palestinian fuel distributors .\tNNP VBZ VBN VBG NN NNS IN IN JJ NNS IN NN NNS TO DT NN CC DT NN IN JJ NN NNS .\nIsraeli authorities closed a border terminal that supplies fuel to Gaza Sunday after it came under mortar attack from Palestinian militants .\tJJ NNS VBD DT NN NN WDT VBZ NN TO NNP NNP IN PRP VBD IN NN NN IN JJ NNS .\nThe U.N. Relief and Works Agency suspended food distribution to Gaza refugees for four days last month due to the lack of fuel .\tDT NNP NNP CC NNP NNP VBD NN NN TO NNP NNS IN CD NNS JJ NN JJ TO DT NN IN NN .\nIt resumed the aid operation last Tuesday .\tPRP VBD DT NN NN JJ NNP .\nIsraeli authorities have reduced fuel supplies to Gaza to pressure Palestinian militants to stop rocket attacks on southern Israel .\tJJ NNS VBP VBN NN NNS TO NNP TO VB JJ NNS TO VB NN NNS IN JJ NNP .\nGaza fuel distributors went on strike to protest the cutbacks .\tNNP NN NNS VBD IN NN TO VB DT NNS .\nChinese officials say a gas explosion that tore through a mine shaft in northern China has killed at least 16 miners and left at least seven others missing .\tJJ NNS VBP DT NN NN WDT VBD IN DT NN NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD NNS VBG .\nThe official Xinhua news agency says 83 miners were in the mine at the time of Wednesday 's explosion in Shanxi province , but 54 escaped .\tDT JJ NNP NN NN VBZ CD NNS VBD IN DT NN IN DT NN IN NNP POS NN IN NNP NN , CC CD VBD .\nShanxi province is one of China 's biggest coal-producing regions , and mining accidents are common .\tNNP NN VBZ CD IN NNP POS JJS JJ NNS , CC NN NNS VBP JJ .\nChina has the most dangerous mining industry in the world .\tNNP VBZ DT RBS JJ NN NN IN DT NN .\nAt least 6,000 Chinese mine workers died on the job last year .\tIN JJS CD JJ NN NNS VBD IN DT NN JJ NN .\nFrench officials say they want to get in contact with al-Qaida-linked militants in hopes of gaining the release of five French nationals and two Africans kidnapped in Niger last week .\tJJ NNS VBP PRP VBP TO VB IN NN IN JJ NNS IN NNS IN VBG DT NN IN CD JJ NNS CC CD NNS VBN IN NNP JJ NN .\nDefense Minister Herve Morin said Thursday that France has every reason to believe the hostages are still alive and that they probably have been taken to northern Mali .\tNN NN NNP NNP VBD NNP IN NNP VBZ DT NN TO VB DT NNS VBP RB JJ CC IN PRP RB VBP VBN VBN TO JJ NNP .\nFrance has flown search missions over the Sahara in hopes of locating the victims .\tNNP VBZ VBN NN NNS IN DT NNP IN NNS IN VBG DT NNS .\nNorth Africa 's al-Qaida in the Islamic Maghreb claimed responsibility for the kidnapping .\tNNP NNP POS NNP IN DT NNP NNP VBD NN IN DT NN .\nThe hostages include two employees of the French nuclear energy firm Areva and five with a subsidiary of the French construction company Vinci .\tDT NNS VBP CD NNS IN DT JJ JJ NN NN NNP CC CD IN DT NN IN DT JJ NN NN NNP .\nThe group has warned the French government against doing what it described as anything ' stupid . '\tDT NN VBZ VBN DT JJ NN IN VBG WP PRP VBD IN DT `` JJ . ``\nThe al-Qaida group has carried out previous kidnappings in the region , including that of a 78-year-old Frenchman who was abducted in Niger in April and later killed .\tDT NNP NN VBZ VBN RP JJ NNS IN DT NN , VBG IN IN DT JJ NN WP VBD VBN IN NNP IN NNP CC RB VBD .\nThe U.S. state of Connecticut began issuing marriage licenses to same-sex couples Wednesday , making it the second state in the nation to permit gay marriage .\tDT NNP NN IN NNP VBD VBG NN NNS TO JJ NNS NNP , VBG PRP DT JJ NN IN DT NN TO VB JJ NN .\nSuperior Court judge Jonathan Silbert cleared the way for same-sex unions earlier today , just over a week after Californian voters banned gay marriage in their state .\tNNP NNP NN NNP NNP VBD DT NN IN JJ NNS RBR NN , RB IN DT NN IN JJ NNS VBD JJ NN IN PRP$ NN .\nJustices of the peace in Connecticut began issuing marriage licenses to gay couples immediately following today 's ruling .\tNNS IN DT NN IN NNP VBD VBG NN NNS TO JJ NNS RB VBG NN POS NN .\nThe Connecticut Supreme Court ruled last month that same-sex marriage is legal .\tDT NNP NNP NNP VBD JJ NN IN JJ NN VBZ JJ .\nVoters last week rejected a ballot initiative to ban same-sex marriages in the state .\tNNS JJ NN VBD DT NN NN TO VB JJ NNS IN DT NN .\nSame-sex marriages are also legal in Massachusetts .\tJJ NNS VBP RB JJ IN NNP .\nGay marriage was legal in California until last week , when voters approved a measure to ban it .\tNN NN VBD JJ IN NNP IN JJ NN , WRB NNS VBD DT NN TO VB PRP .\nSimilar bans passed last week in Arizona and Florida .\tJJ NNS VBN JJ NN IN NNP CC NNP .\nThe social-conservative group Family Institute of Connecticut says it will continue to work to ban gay marriage in the state .\tDT JJ NN NNP NNP IN NNP VBZ PRP MD VB TO VB TO VB JJ NN IN DT NN .\nThe U.S. Congress is considering an additional $ 51.8 billion in emergency aid for Hurricane Katrina relief operations .\tDT NNP NNP VBZ VBG DT JJ $ CD CD IN NN NN IN NNP NNP NN NNS .\nAfter talks with President Bush at the White House Thursday , Senate Majority Leader Bill Frist said Congress is responding aggressively to the disaster , and working to address the short and long-term needs of the victims .\tIN NNS IN NNP NNP IN DT NNP NNP NNP , NNP NNP NNP NNP NNP VBD NNP VBZ VBG RB TO DT NN , CC VBG TO VB DT JJ CC JJ NNS IN DT NNS .\nMeanwhile , Senate Democratic Minority Leader Harry Reid accused Republicans of having a flawed plan for recovery , saying most of the money should not go to the Federal Emergency Management Agency .\tRB , NNP NNP NNP NNP NNP NNP VBD NNS IN VBG DT JJ NN IN NN , VBG JJS IN DT NN MD RB VB TO DT NNP NNP NNP NNP .\nOpposition Democrats and others have slammed FEMA for what they say was a slow response to the disaster .\tNNP NNPS CC NNS VBP VBN NNP IN WP PRP VBP VBD DT JJ NN TO DT NN .\nThe Bush administration says the spending bill is the latest installment in a costly relief effort .\tDT NNP NN VBZ DT NN NN VBZ DT JJS NN IN DT JJ NN NN .\nPresident Bush last week signed an aid package of $ 10.5 billion .\tNNP NNP JJ NN VBD DT NN NN IN $ CD CD .\nA newspaper reports oil company BP was alerted two years ago to problems that caused a major pipeline shut down in Alaska .\tDT NN VBZ NN NN NNP VBD VBN CD NNS IN TO NNS WDT VBD DT JJ NN VB RP IN NNP .\nWednesday 's Financial Times reports that a BP workers ' advocate , Chuck Hamel , wrote about employee concerns in a letter to the chairman of BP 's environment committee , Walter Massey .\tNNP POS NNP NNP VBZ IN DT NNP NNS POS NN , NNP NNP , VBD IN NN NNS IN DT NN TO DT NN IN NNP POS NN NN , NNP NNP .\nThe newspaper says the letter raised concerns about corrosion inside the oil pipeline .\tDT NN VBZ DT NN VBD NNS IN NN IN DT NN NN .\nMembers of the U.S. Congress have called for hearings to investigate BP 's operations at Alaska 's Prudhoe Bay oil field .\tNNS IN DT NNP NNP VBP VBN IN NNS TO VB NNP POS NNS IN NNP POS NNP NNP NN NN .\nDemocrats on the House Energy and Commerce Committee have said they will examine the shutdown which cut U.S. oil production by about eight percent .\tNNS IN DT NNP NNP CC NNP NNP VBP VBN PRP MD VB DT NN WDT VBD NNP NN NN IN IN CD NN .\nHearings are set for next month when Congress returns from a recess .\tNNS VBP VBN IN JJ NN WRB NNP VBZ IN DT NN .\nU.S. government regulators have approved a new partial artificial heart designed to help some patients as they wait for a heart transplant .\tNNP NN NNS VBP VBN DT JJ JJ JJ NN VBN TO VB DT NNS IN PRP VBP IN DT NN NN .\nThe Food and Drug Administration announced its approval of the new device Monday .\tDT NNP CC NNP NNP VBD PRP$ NN IN DT JJ NN NNP .\nThe mechanical device is designed to replace the lower part of a diseased heart , and keep patients alive while they await a donor heart for a transplant .\tDT JJ NN VBZ VBN TO VB DT JJR NN IN DT JJ NN , CC VB NNS JJ IN PRP VBP DT NN NN IN DT NN .\nThe device is implanted in the patient and connected to an outside power source .\tDT NN VBZ VBN IN DT NN CC VBN TO DT JJ NN NN .\nThe company that manufactures the new device - Syncardia Systems of Tucson , Arizona , in the southwestern U.S. - says it tested it on 81 patients .\tDT NN WDT VBZ DT JJ NN IN NNP NNP IN NNP , NNP , IN DT JJ NNP : VBZ PRP VBD PRP IN CD NNS .\nIt says it kept 79 of them alive more than two months until donor hearts could be found .\tPRP VBZ PRP VBD CD IN PRP JJ RBR IN CD NNS IN NN NNS MD VB VBN .\nTurkish media report police have detained nearly 30 people suspected of links to the al-Qaida terror network .\tJJ NNS NN NNS VBP VBN RB CD NNS VBN IN NNS TO DT NNP NN NN .\nTurkey 's state news agency , Anatolia , quoted a local governor as saying 28 suspects were nabbed in simultaneous operations in several districts of Eskisehir province Thursday .\tNNP POS NN NN NN , NNP , VBD DT JJ NN IN VBG CD NNS VBD VBN IN JJ NNS IN JJ NNS IN NNP NN NNP .\nGovernor Mehmet Kiliclar said they are now being questioned by police .\tNNP NNP NNP VBD PRP VBP RB VBG VBN IN NNS .\nIn January this year , a suspected al-Qaida terrorist was killed , and three were captured , in a shootout with police during a robbery attempt in Istanbul .\tIN NNP DT NN , DT VBN NNP NN VBD VBN , CC CD VBD VBN , IN DT NN IN NNS IN DT NN NN IN NNP .\nAl-Qaida was blamed for a series of bomb attacks in Istanbul that killed more than 60 people in 2003 .\tNNP VBD VBN IN DT NN IN NN NNS IN NNP WDT VBD JJR IN CD NNS IN CD .\nAfghan authorities have discovered the bodies of two intelligence agents kidnapped by suspected Taleban militants earlier this week .\tJJ NNS VBP VBN DT NNS IN CD NN NNS VBN IN JJ NNP NNS RBR DT NN .\nOfficials said Wednesday the men were abducted while on a mission in western Farah province , and their bodies were dumped in the desert .\tNNS VBD NNP DT NNS VBD VBN IN IN DT NN IN JJ NNP NN , CC PRP$ NNS VBD VBN IN DT NN .\nThey said members of the ousted Taleban were likely behind the killings .\tPRP VBD NNS IN DT JJ NNP VBD JJ IN DT NNS .\nMeanwhile , police in central Ghazni province arrested a Taleban commander , Mullah Nazer Shah , after his men set fire to a school .\tRB , NNS IN JJ NNP NN VBN DT NNP NN , NNP NNP NNP , IN PRP$ NNS VBD NN TO DT NN .\nOfficials have blamed Taleban rebels for a series of attacks on educational facilities , including fires at a dozen schools and the killing of several teachers .\tNNS VBP VBN NNP NNS IN DT NN IN NNS IN JJ NNS , VBG NNS IN DT NN NNS CC DT NN IN JJ NNS .\nIn other developments , 150 British troops have arrived in southern Helmand province to form part of a NATO peacekeeping mission .\tIN JJ NNS , CD JJ NNS VBP VBN IN JJ NNP NN TO VB NN IN DT NNP NN NN .\nBritain has pledged 3,300 soldiers to the expanded NATO mission planned for Helmand .\tNNP VBZ VBN CD NNS TO DT JJ NNP NN VBN IN NNP .\nAfghan authorities say suspected Taleban insurgents have attacked a police post in southern part of the country , killing three policemen , while a rocket landed near a top hotel in the capital , Kabul .\tJJ NNS VBP VBN NNP NNS VBP VBN DT NN NN IN JJ NN IN DT NN , VBG CD NNS , IN DT NN VBD IN DT JJ NN IN DT NN , NNP .\nThe authorities say an unknown number of militants were involved in the assault late Saturday in southern Helmand province that sparked an hour-long exchange of fire .\tDT NNS VBP DT JJ NN IN NNS VBD VBN IN DT NN JJ NNP IN JJ NNP NN WDT VBD DT JJ NN IN NN .\nSecurity forces launched a manhunt for the attackers .\tNN NNS VBD DT NN IN DT NNS .\nThe Taleban has claimed responsibility for the attack .\tDT NNP VBZ VBN NN IN DT NN .\nAlso late Saturday , a rocket was fired at a Kabul hotel where foreigners often stay , but no one was hurt .\tRB JJ NNP , DT NN VBD VBN IN DT NNP NN WRB NNS RB VBP , CC DT NN VBD VBN .\nHelmand province has seen some of the fiercest fighting in recent months .\tNNP NN VBZ VBN DT IN DT JJS NN IN JJ NNS .\nLast week , 150 British troops arrived in the province to form part of a NATO peacekeeping mission .\tJJ NN , CD JJ NNS VBD IN DT NN TO VB NN IN DT NNP NN NN .\nThe Obama administration says it plans to approve more than $ 6 billion in arms sales to Taiwan .\tDT NNP NN VBZ PRP VBZ TO VB JJR IN $ CD CD IN NNS NNS TO NNP .\nThe Pentagon 's Defense Cooperation Security Agency says it has notified Congress of possible sales that include 60 Black Hawk helicopters and technical and other related logistics support , worth an estimated $ 3.1 billion .\tDT NNP POS NNP NNP NNP NNP VBZ PRP VBZ VBN NNP IN JJ NNS WDT VBP CD NNP NNP NNS CC JJ CC JJ JJ NNS NN , IN DT VBN $ CD CD .\nThe agency says the possible sale includes 114 Patriot advanced capability missiles , radar sets and other related equipment and services , worth $ 2.8 billion , two Osprey class mine-hunting ships , and other related support and services , for an estimated cost of $ 105 million .\tDT NN VBZ DT JJ NN VBZ CD NNP JJ NN NNS , NN NNS CC JJ JJ NN CC NNS , JJ $ CD CD , CD NNP NN NN NNS , CC JJ JJ NN CC NNS , IN DT JJ NN IN $ CD CD .\nIn the notification released Friday , the agency detailed other military hardware and services worth $ 37 million .\tIN DT NN VBN NNP , DT NN VBN JJ JJ NN CC NNS JJ $ CD CD .\nChina considers self-ruled Taiwan as its sovereign territory , and usually reacts with anger at official contacts between the island and any nation .\tNNP VBZ JJ NNP IN PRP$ JJ NN , CC RB VBZ IN NN IN JJ NNS IN DT NN CC DT NN .\nBeijing has threatened to use military force if Taiwan attempts to claim formal independence .\tNNP VBZ VBN TO VB JJ NN IN NNP VBZ TO VB JJ NN .\nTurkey 's parliament on Tuesday extended the mandate that allows the military to strike at Kurdish separatist rebels based in neighboring northern Iraq .\tNNP POS NN IN NNP VBD DT NN WDT VBZ DT JJ TO VB IN NNP JJ NNS VBN IN VBG JJ NNP .\nThe move to extend the mandate by one year coincides with Turkish government efforts to garner support for reforms to boost the rights of Kurds and encourage the rebels to lay down their arms .\tDT NN TO VB DT NN IN CD NN VBZ IN JJ NN NNS TO VB NN IN NNS TO VB DT NNS IN NNPS CC VB DT NNS TO VB RP PRP$ NNS .\nTurkish warplanes and artillery units have staged a series of attacks on rebel bases in northern Iraq during the past two years , as part of Turkey 's battle against the outlawed Kurdistan Workers ' Party , or PKK .\tJJ NNS CC NN NNS VBP VBN DT NN IN NNS IN NN NNS IN JJ NNP IN DT JJ CD NNS , IN NN IN NNP POS NN IN DT JJ NNP NNP POS NNP , CC NNP .\nThe PKK has been fighting for Kurdish autonomy in southeastern Turkey for 25 years .\tDT NNP VBZ VBN VBG IN NNP NN IN JJ NNP IN CD NNS .\nThe conflict has killed more than 30,000 people .\tDT NN VBZ VBN JJR IN CD NNS .\nTurkey and much of the international community consider the PKK a terrorist group .\tNNP CC NN IN DT JJ NN VBP DT NNP DT JJ NN .\nThe United Nations Security Council is stepping up pressure on Liberia to freeze the assets of accused former president Charles Taylor .\tDT NNP NNP NNP NNP VBZ VBG RP NN IN NNP TO VB DT NNS IN VBN JJ NN NNP NNP .\nThe 15-member Council on Friday approved a resolution on sanctions that aim to eliminate funds for conflicts through the sale of illegally mined diamonds .\tDT JJ NN IN NNP VBD DT NN IN NNS WDT VBP TO VB NNS IN NNS IN DT NN IN RB VBN NNS .\nTaylor allegedly used profits from so-called ' blood diamonds ' to fund years of civil war in Liberia and neighboring Sierra Leone .\tNNP RB VBD NNS IN JJ `` NN NNS `` TO VB NNS IN JJ NN IN NNP CC JJ NNP NNP .\nThe former Liberian president is facing 11 charges for allegedly instigating a rebel campaign of rape , murder and mutilation in neighboring Sierra Leone that killed more than 1,00,000 people during a decade-long civil war , which started in the late 1990s .\tDT JJ JJ NN VBZ VBG CD NNS IN RB VBG DT NN NN IN NN , NN CC NN IN JJ NNP NNP WDT VBD JJR IN CD NNS IN DT JJ JJ NN , WDT VBD IN DT JJ NNS .\nTaylor is currently on trial for war crimes in the Hague , the Netherlands .\tNNP VBZ RB IN NN IN NN NNS IN DT NNP , DT NNP .\nThe court has set February 8 for the prosecution and defense to start their concluding arguments .\tDT NN VBZ VBN NNP CD IN DT NN CC NN TO VB PRP$ VBG NNS .\nDiplomats say Southeast Asian nations are not able to agree on setting up a human rights commission , and on sanctions against members who fail to obey their regional bloc 's rules .\tNNS VBP JJ JJ NNS VBP RB JJ TO VB IN VBG RP DT JJ NNS NN , CC IN NNS IN NNS WP VBP TO VB PRP$ JJ NN POS NNS .\nNegotiators meeting in the Philippines are rushing to complete a draft of the Association of Southeast Asian Nation 's first charter before foreign ministers from the 10-nation group meet Sunday .\tNNS NN IN DT NNPS VBP VBG TO VB DT NN IN DT NNP IN NNP NNP NNP POS JJ NN IN JJ NNS IN DT JJ NN VB NNP .\nThe bloc has agreed on most of the charter , which will help to turn the group into a rules-based organization along the lines of the European Union .\tDT NN VBZ VBN IN JJS IN DT NN , WDT MD VB TO VB DT NN IN DT JJ NN IN DT NNS IN DT NNP NNP .\nA key sticking point is Burma , which has long been a problem for ASEAN , because of the country 's poor human rights record and its detention of activists , including Nobel Peace Prize laureate Aung San Suu Kyi .\tDT JJ NN NN VBZ NNP , WDT VBZ RB VBN DT NN IN NNP , IN IN DT NN POS JJ JJ NNS NN CC PRP$ NN IN NNS , VBG NNP NNP NNP NN NNP NNP NNP NNP .\nUntil now , ASEAN has operated without a constitution , choosing to rely on informal diplomacy and decision-making by consensus .\tIN RB , NNP VBZ VBN IN DT NN , VBG TO VB IN JJ NN CC NN IN NN .\nAs the tsunami disaster in South Asia continues to unfold , millions of people are turning to the Internet for news updates - or to search for missing relatives .\tIN DT NN NN IN NNP NNP VBZ TO VB , NNS IN NNS VBP VBG TO DT NN IN NN NNS : CC TO VB IN VBG NNS .\nSeveral weblogs , or ' blogs ' have been created in the days since the tragedy dedicated to providing first-hand accounts of the disaster .\tJJ NNS , CC `` NNS `` VBP VBN VBN IN DT NNS IN DT NN VBN TO VBG JJ NNS IN DT NN .\nMany websites have set up message boards for families who are searching for loved ones who either live or were vacationing in those countries .\tJJ NNS VBP VBN RP NN NNS IN NNS WP VBP VBG IN VBN NNS WP RB VBP CC VBD VBG IN DT NNS .\nThe Internet has also been used to raise money for organizations involved in the relief efforts .\tDT NNP VBZ RB VBN VBN TO VB NN IN NNS VBN IN DT NN NNS .\nInternet retailer Amazon.com raised more than $ 4.5 million from its customers for the Red Cross .\tNNP NN NNP VBD JJR IN $ CD CD IN PRP$ NNS IN DT NNP NNP .\nU.S. and Iraqi forces have raided seven mosques believed to be providing support for insurgents in the restive western city of Ramadi .\tNNP CC JJ NNS VBP VBN CD NNS VBN TO VB VBG NN IN NNS IN DT JJ JJ NN IN NNP .\nThe U.S. military says the operation is part of a joint effort to search for known terrorists and insurgents , as well as for illegal weapons .\tDT NNP NN VBZ DT NN VBZ NN IN DT JJ NN TO VB IN VBN NNS CC NNS , RB RB IN IN JJ NNS .\nWitnesses say soldiers arrested Sheikh Abdul Aleim Saadi , the region 's top Sunni Muslim cleric .\tNNS VBP NNS VBN NNP NNP NNP NNP , DT NN POS JJ NNP NNP NN .\nAlso Tuesday , the United States said its warplanes conducted two strikes on buildings used by Abu Musab al-Zarqawi 's terror network in the western city of Fallujah .\tRB NNP , DT NNP NNPS VBD PRP$ NNS VBD CD NNS IN NNS VBN IN NNP NNP NNP POS NN NN IN DT JJ NN IN NNP .\nAbu Musab al-Zarqawi has claimed responsibility for numerous car bombings , kidnappings and beheadings in Iraq .\tNNP NNP NNP VBZ VBN NN IN JJ NN NNS , NNS CC NNS IN NNP .\nIn the south , an explosion rocked the city of Basra .\tIN DT NN , DT NN VBD DT NN IN NNP .\nIt was not immediately clear what caused the blast .\tPRP VBD RB RB JJ WP VBD DT NN .\nThere were no reports of casualties .\tEX VBD DT NNS IN NNS .\nPolice in Sweden have arrested a man suspected of planning an attack in Somalia , the second such arrest there within a month .\tNNS IN NNP VBP VBN DT NN VBN IN VBG DT NN IN NNP , DT JJ JJ NN EX IN DT NN .\nThe Swedish security police say the man , a Swedish citizen , was detained in the capital of Stockholm on Tuesday .\tDT JJ NN NNS VBP DT NN , DT JJ NN , VBD VBN IN DT NN IN NNP IN NNP .\nPolice did not give the man 's name but said his arrest is linked to that of another Swedish national in the city of Gothenburg in May .\tNNS VBD RB VB DT NN POS NN CC VBD PRP$ NN VBZ VBN TO DT IN DT JJ JJ IN DT NN IN NNP IN NNP .\nThey say other people will be questioned in connection with the investigation .\tPRP VBP JJ NNS MD VB VBN IN NN IN DT NN .\nSwedish authorities have expressed concern about Somali militant groups recruiting fighters from the country 's Somali immigrant population .\tJJ NNS VBP VBN NN IN JJ JJ NNS VBG NNS IN DT NN POS JJ JJ NN .\nOver the past two decades , tens of thousands of Somalis have fled to Scandinavia to escape war and poverty in their homeland .\tIN DT JJ CD NNS , NNS IN NNS IN NNS VBP VBN TO NNP TO VB NN CC NN IN PRP$ NN .\nTurkish authorities say a double bomb attack in Istanbul has killed at least 15 people and wounded 150 others .\tJJ NNS VBP DT JJ NN NN IN NNP VBZ VBN IN JJS CD NNS CC VBN CD NNS .\nThe bombs went off several minutes apart Sunday evening on a shopping street in a residential district of Gungoren in western Istanbul .\tDT NNS VBD RP JJ NNS RB NNP NN IN DT NN NN IN DT JJ NN IN NNP IN JJ NNP .\nOfficials say the first bomb caused a small blast in a telephone booth , drawing a crowd to the site before the second and more powerful device exploded .\tNNS VBP DT JJ NN VBD DT JJ NN IN DT NN NN , VBG DT NN TO DT NN IN DT JJ CC RBR JJ NN VBD .\nBoth bombs were placed in trash cans .\tDT NNS VBD VBN IN NN NNS .\nTurkish President Abdullah Gul condemned the attack and described its perpetrators as ruthless and savage terrorists .\tJJ NNP NNP NNP VBD DT NN CC VBD PRP$ NNS IN JJ CC JJ NNS .\nAuthorities are investigating who was behind the bombings .\tNNS VBP VBG WP VBD IN DT NNS .\nSeveral groups have carried out bomb attacks in Istanbul in the past , including Kurdish separatists , far-left activists and Islamists .\tJJ NNS VBP VBN RP NN NNS IN NNP IN DT NN , VBG NNP NNS , JJ NNS CC NNS .\nDozens of heads of state in the African continent are meeting in Abuja , Nigeria Sunday to discuss ways to bring peace and prosperity to the world 's most impoverished continent .\tNNS IN NNS IN NN IN DT JJ NN VBP VBG IN NNP , NNP NNP TO VB NNS TO VB NN CC NN TO DT NN POS RBS JJ NN .\nAmong those attending the summit of the 53-member African Union are United Nations Secretary-General Kofi Annan and Nigerian President Olusegan Obasanjo , who is the head of the AU .\tIN DT VBG DT NN IN DT JJ NNP NNP VBP NNP NNP NNP NNP NNP CC JJ NNP NNP NNP , WP VBZ DT NN IN DT NNP .\nEgyptian President Hosni Mubarak is attending his first African summit in a decade .\tJJ NNP NNP NNP VBZ VBG PRP$ JJ JJ NN IN DT NN .\nThe two-day summit ending Monday will focus on solving ongoing conflicts in the Ivory Coast and the Democratic Republic of Congo , as well as the humanitarian crisis in Sudan 's Darfur region .\tDT JJ NN VBG NNP MD VB IN VBG JJ NNS IN DT NNP NNP CC DT JJ NNP IN NNP , RB RB IN DT JJ NN IN NNP POS NNP NN .\nThe leaders will also discuss a greater role for Africa on the U.N. Security Council under reforms planned for the 15-member body .\tDT NNS MD RB VB DT JJR NN IN NNP IN DT NNP NNP NNP IN NNS VBN IN DT JJ NN .\nEgypt 's President Hosni Mubarak says the militant Islamic group Hamas must recognize Israel if it wants to form a Palestinian government .\tNNP POS NNP NNP NNP VBZ DT JJ NNP NN NNP MD VB NNP IN PRP VBZ TO VB DT JJ NN .\nMr. Mubarak spoke in an interview with an Israeli newspaper , Yedioth Ahronoth .\tNNP NNP VBD IN DT NN IN DT JJ NN , NNP NNP .\nIt is the first time that Egypt has laid down conditions for Hamas to form a government in the Palestinian territories .\tPRP VBZ DT JJ NN IN NNP VBZ VBN RP NNS IN NNP TO VB DT NN IN DT JJ NNS .\nAt the same time , Egypt 's president asked Israel to be patient .\tIN DT JJ NN , NNP POS NN VBD NNP TO VB JJ .\nHe said he was sure Hamas wants to live in peace and has no plans to establish a terrorist state in the West Bank and Gaza Strip .\tPRP VBD PRP VBD JJ NNP VBZ TO VB IN NN CC VBZ DT NNS TO VB DT JJ NN IN DT NNP NNP CC NNP NNP .\nHamas scored an overwhelming victory in Palestinian elections in January , trouncing the ruling Fatah party .\tNNP VBD DT JJ NN IN JJ NNS IN NNP , VBG DT NN NNP NN .\nFatah has indicated that it prefers not to participate in a Hamas-led government .\tNNP VBZ VBN IN PRP VBZ RB TO VB IN DT JJ NN .\nEgypt has been trying to mediate between Hamas and Fatah .\tNNP VBZ VBN VBG TO VB IN NNP CC NNP .\nIran 's newly elected President Mahmoud Ahmadinejad\tNNP POS RB VBN NNP NNP NNP\nAides to Iranian President-elect Mahmoud Ahmadinejad have again rejected accusations that he was involved in the 1979 seizure of the American embassy in Tehran .\tNNS TO JJ NNP NNP NNP VBP RB VBN NNS IN PRP VBD VBN IN DT CD NN IN DT JJ NN IN NNP .\nOne senior campaign advisor said Saturday that photographs of a hostage-taker purported to be a young Mr. Ahmadinejad actually show someone else .\tCD JJ NN NN VBD NNP IN NNS IN DT NN VBN TO VB DT JJ NNP NNP RB VBP DT RB .\nSome of the hostage-takers also have denied that he played any role in the siege .\tDT IN DT NNS RB VBP VBN IN PRP VBD DT NN IN DT NN .\nAnd other aides to the president-elect have added to the denials .\tCC JJ NNS TO DT NN VBP VBN TO DT NNS .\nThe White House says it is looking into allegations linking the Iranian president-elect to the crisis that lasted 444 days .\tDT NNP NNP VBZ PRP VBZ VBG IN NNS VBG DT JJ NN TO DT NN WDT VBD CD NNS .\nAnother accusation against Mr. Ahmadinejad has surfaced in Europe .\tDT NN IN NNP NNP VBZ VBN IN NNP .\nAn Austrian political figure contends that the Iranian president-elect was involved in the 1989 slaying in Vienna of a Kurdish opposition leader .\tDT JJ JJ NN VBZ IN DT JJ NN VBD VBN IN DT CD NN IN NNP IN DT JJ NN NN .\nAides to Mr. Ahmadinejad said the latest accusation is not worth comment .\tNNS TO NNP NNP VBD DT JJS NN VBZ RB JJ NN .\nAn Afghan official says the country has made significant progress in its war on drugs .\tDT JJ NN VBZ DT NN VBZ VBN JJ NN IN PRP$ NN IN NNS .\nThe deputy interior minister for counternarcotics , General Mohammed Daoud , says anti-drug forces confiscated 40 tons of opium in the first five months of this year , compared to 135 tons during last full year and 10 tons in 2003 .\tDT JJ JJ NN IN NNS , NNP NNP NNP , VBZ JJ NNS VBD CD NNS IN NN IN DT JJ CD NNS IN DT NN , VBN TO CD NNS IN JJ JJ NN CC CD NNS IN CD .\nHis comments follow U.S. criticism of the Afghan anti-opium program , and President Hamid Karzai 's recent visit to Washington , where he promised to eradicate Afghan poppy production in the next six years .\tPRP$ NNS VBP NNP NN IN DT JJ NN NN , CC NNP NNP NNP POS JJ NN TO NNP , WRB PRP VBD TO VB JJ NN NN IN DT JJ CD NNS .\nAfghanistan is the world 's largest producer of opium .\tNNP VBZ DT NN POS JJS NN IN NN .\nWashington is pouring hundreds of millions of dollars into Afghanistan 's anti-drug efforts , saying the opium growing industry is now a bigger threat there than the remaining Taleban-led militants .\tNNP VBZ VBG NNS IN NNS IN NNS IN NNP POS JJ NNS , VBG DT NN VBG NN VBZ RB DT JJR NN RB IN DT VBG JJ NNS .\nMontenegro severed its economy from federal control and from Serbia during the MILOSEVIC era and maintained its own central bank , adopted the Deutchmark , then the euro - rather than the Yugoslav dinar - as official currency , collected customs tariffs , and managed its own budget .\tNNP VBD PRP$ NN IN JJ NN CC IN NNP IN DT NNP NN CC VBD PRP$ JJ JJ NN , VBD DT NNP , RB DT NN : RB IN DT JJ NN : IN JJ NN , VBN NNS NNS , CC VBD PRP$ JJ NN .\nThe dissolution of the loose political union between Serbia and Montenegro in 2006 led to separate membership in several international financial institutions , such as the European Bank for Reconstruction and Development .\tDT NN IN DT JJ JJ NN IN NNP CC NNP IN CD VBD TO JJ NN IN JJ JJ JJ NNS , JJ IN DT NNP NNP IN NNP CC NNP .\nIn January 2007 , Montenegro joined the World Bank and IMF .\tIN NNP CD , NNP VBD DT NNP NNP CC NNP .\nMontenegro is pursuing its own membership in the World Trade Organization and signed a Stabilization and Association agreement with the European Union in October 2007 .\tNNP VBZ VBG PRP$ JJ NN IN DT NNP NNP NNP CC VBD DT NNP CC NNP NN IN DT NNP NNP IN NNP CD .\nThe European Council granted candidate country status to Montenegro at the December 2010 session .\tDT NNP NNP VBD NN NN NN TO VB IN DT NNP CD NN .\nUnemployment and regional disparities in development are key political and economic problems .\tNN CC JJ NNS IN NN VBP JJ JJ CC JJ NNS .\nMontenegro has privatized its large aluminum complex - the dominant industry - as well as most of its financial sector , and has begun to attract foreign direct investment in the tourism sector .\tNNP VBZ VBN PRP$ JJ NN NN IN DT JJ NN : RB RB IN JJS IN PRP$ JJ NN , CC VBZ VBN TO VB JJ JJ NN IN DT NN NN .\nThe global financial crisis has had a significant negative impact on the economy , due to the ongoing credit crunch , a decline in the real estate sector , and a fall in aluminum exports .\tDT JJ JJ NN VBZ VBN DT JJ JJ NN IN DT NN , JJ TO DT JJ NN NN , DT NN IN DT JJ NN NN , CC DT NN IN NN NNS .\nAfghanistan 's economy is recovering from decades of conflict .\tNNP POS NN VBZ VBG IN NNS IN NN .\nThe economy has improved significantly since the fall of the Taliban regime in 2001 largely because of the infusion of international assistance , the recovery of the agricultural sector , and service sector growth .\tDT NN VBZ VBN RB IN DT NN IN DT NNP NN IN CD RB IN IN DT NN IN JJ NN , DT NN IN DT JJ NN , CC NN NN NN .\nDespite the progress of the past few years , Afghanistan is extremely poor , landlocked , and highly dependent on foreign aid , agriculture , and trade with neighboring countries .\tIN DT NN IN DT JJ JJ NNS , NNP VBZ RB JJ , JJ , CC RB JJ IN JJ NN , NN , CC NN IN JJ NNS .\nMuch of the population continues to suffer from shortages of housing , clean water , electricity , medical care , and jobs .\tNN IN DT NN VBZ TO VB IN NNS IN NN , JJ NN , NN , JJ NN , CC NNS .\nCriminality , insecurity , weak governance , and the Afghan Government 's inability to extend rule of law to all parts of the country pose challenges to future economic growth .\tNN , NN , JJ NN , CC DT JJ NNP POS NN TO VB NN IN NN TO DT NNS IN DT NN VBP NNS TO JJ JJ NN .\nAfghanistan 's living standards are among the lowest in the world .\tNNP POS NN NNS VBP IN DT JJS IN DT NN .\nWhile the international community remains committed to Afghanistan 's development , pledging over $ 67 billion at four donors ' conferences since 2002 , the Government of Afghanistan will need to overcome a number of challenges , including low revenue collection , anemic job creation , high levels of corruption , weak government capacity , and poor public infrastructure .\tIN DT JJ NN VBZ JJ TO NNP POS NN , VBG IN $ CD CD IN CD NNS POS NNS IN CD , DT NN IN NNP MD VB TO VB DT NN IN NNS , VBG JJ NN NN , JJ NN NN , JJ NNS IN NN , JJ NN NN , CC JJ JJ NN .\nIsrael has a technologically advanced market economy .\tNNP VBZ DT RB JJ NN NN .\nIt depends on imports of crude oil , grains , raw materials , and military equipment .\tPRP VBZ IN NNS IN JJ NN , NNS , JJ NNS , CC JJ NN .\nDespite limited natural resources , Israel has intensively developed its agricultural and industrial sectors over the past 20 years .\tIN JJ JJ NNS , NNP VBZ RB VBN PRP$ JJ CC JJ NNS IN DT JJ CD NNS .\nCut diamonds , high-technology equipment , and agricultural products ( fruits and vegetables ) are the leading exports .\tJJ NNS , NN NN , CC JJ NNS LRB NNS CC NNS RRB VBP DT VBG NNS .\nIsrael usually posts sizable trade deficits , which are covered by large transfer payments from abroad and by foreign loans .\tNNP RB VBZ JJ NN NNS , WDT VBP VBN IN JJ NN NNS IN RB CC IN JJ NNS .\nRoughly half of the government 's external debt is owed to the US , its major source of economic and military aid .\tRB NN IN DT NN POS JJ NN VBZ VBN TO DT NNP , PRP$ JJ NN IN JJ CC JJ NN .\nIsrael 's GDP , after contracting slightly in 2001 and 2002 due to the Palestinian conflict and troubles in the high-technology sector , grew about 5 % per year from 2004 - 7 .\tNNP POS NN , IN VBG RB IN CD CC CD JJ TO DT JJ NN CC NNS IN DT NN NN , VBD IN CD NN IN NN IN CD IN CD .\nThe global financial crisis of 2008 - 9 spurred a brief recession in Israel , but the country entered the crisis with solid fundamentals - following years of prudent fiscal policy and a series of liberalizing reforms - and a resilient banking sector , and the economy has shown signs of an early recovery .\tDT JJ JJ NN IN CD : CD VBD DT JJ NN IN NNP , CC DT NN VBD DT NN IN JJ NNS IN VBG NNS IN JJ JJ NN CC DT NN IN VBG NNS : CC DT JJ NN NN , CC DT NN VBZ VBN NNS IN DT JJ NN .\nFollowing GDP growth of 4 % in 2008 , Israel 's GDP slipped to 0.2 % in 2009 , but reached 3.4 % in 2010 , as exports rebounded .\tVBG NN NN IN CD NN IN CD , NNP POS NN VBD TO CD NN IN CD , CC VBD CD NN IN CD , IN NNS VBD .\nThe global economic downturn affected Israel 's economy primarily through reduced demand for Israel 's exports in the United States and EU , Israel 's top trading partners .\tDT JJ JJ NN VBD NNP POS NN RB IN VBN NN IN NNP POS NNS IN DT NNP NNPS CC NNP , NNP POS JJ NN NNS .\nExports of goods and services account for about 40 % of the country 's GDP .\tNNS IN NNS CC NNS VBP IN RB CD NN IN DT NN POS NN .\nThe Israeli Government responded to the recession by implementing a modest fiscal stimulus package and an aggressive expansionary monetary policy - including cutting interest rates to record lows , purchasing government bonds , and intervening in the foreign currency market .\tDT JJ NN VBD TO DT NN IN VBG DT JJ JJ NN NN CC DT JJ JJ JJ NN : VBG VBG NN NNS TO NN NNS , VBG NN NNS , CC VBG IN DT JJ NN NN .\nThe Bank of Israel began raising interest rates in the summer of 2009 when inflation rose above the upper end of the Bank 's target and the economy began to show signs of recovery .\tDT NNP IN NNP VBD VBG NN NNS IN DT NN IN CD WRB NN VBD IN DT JJ NN IN DT NNP POS NN CC DT NN VBD TO VB NNS IN NN .\nAmong the 25 poorest countries in the world , Mali is a landlocked country highly dependent on gold mining and agricultural exports for revenue .\tIN DT CD JJS NNS IN DT NN , NNP VBZ DT JJ NN RB JJ IN NN NN CC JJ NNS IN NN .\nThe country 's fiscal status fluctuates with gold and agricultural commodity prices and the harvest .\tDT NN POS JJ NN VBZ IN NN CC JJ NN NNS CC DT NN .\nMali remains dependent on foreign aid .\tNNP VBZ JJ IN JJ NN .\nEconomic activity is largely confined to the riverine area irrigated by the Niger River and about 65 % of its land area is desert or semidesert .\tJJ NN VBZ RB VBN TO DT JJ NN VBN IN DT NNP NNP CC IN CD NN IN PRP$ NN NN VBZ NN CC NN .\nAbout 10 % of the population is nomadic and some 80 % of the labor force is engaged in farming and fishing .\tIN CD NN IN DT NN VBZ JJ CC DT CD NN IN DT NN NN VBZ VBN IN NN CC NN .\nIndustrial activity is concentrated on processing farm commodities .\tJJ NN VBZ VBN IN NN NN NNS .\nThe government has continued an IMF-recommended structural adjustment program that has helped the economy grow , diversify , and attract foreign investment .\tDT NN VBZ VBN DT JJ JJ NN NN WDT VBZ VBN DT NN VB , VB , CC VB JJ NN .\nMali is developing its cotton and iron ore extraction industries to diversify its revenue sources because gold production has started to fall .\tNNP VBZ VBG PRP$ NN CC NN NN NN NNS TO VB PRP$ NN NNS IN NN NN VBZ VBN TO VB .\nMali has invested in tourism but security issues are hurting the industry .\tNNP VBZ VBN IN NN CC NN NNS VBP VBG DT NN .\nMali 's adherence to economic reform and the 50 % devaluation of the CFA franc in January 1994 have pushed up economic growth to a 5 % average in 1996 - 2010 .\tNNP POS NN TO JJ NN CC DT CD NN NN IN DT NNP NN IN NNP CD VBP VBN RP JJ NN TO DT CD NN NN IN CD IN CD .\nWorker remittances and external trade routes for the landlocked country have been jeopardized by continued unrest in neighboring Cote d'Ivoire .\tNNP NNS CC JJ NN NNS IN DT JJ NN VBP VBN VBN IN JJ NN IN VBG NNP NNP .\nHowever , Mali is building a road network that will connect it to all adjacent countries and it has a railway line to Senegal .\tRB , NNP VBZ VBG DT NN NN WDT MD VB PRP TO DT JJ NNS CC PRP VBZ DT NN NN TO NNP .\nIn 2010 , Mali experienced a regional drought that hurt livestock and livelihoods .\tIN CD , NNP VBD DT JJ NN WDT VBD NN CC NNS .\nThe economy benefits substantially from financial assistance from the US .\tDT NN VBZ RB IN JJ NN IN DT NNP .\nThe rate of funding has declined as locally generated government revenues have grown .\tDT NN IN NN VBZ VBN IN RB VBN NN NNS VBP VBN .\nThe key tourist industry employs about 50 % of the work force and accounts for roughly one-fourth of GDP .\tDT JJ NN NN VBZ IN CD NN IN DT NN NN CC NNS IN RB NN IN NN .\nJapanese tourists predominate .\tJJ NNS VBP .\nAnnual tourist entries have exceeded one-half million in recent years , but financial difficulties in Japan have caused a temporary slowdown .\tJJ NN NNS VBP VBN JJ CD IN JJ NNS , CC JJ NNS IN NNP VBP VBN DT JJ NN .\nThe agricultural sector is made up of cattle ranches and small farms producing coconuts , breadfruit , tomatoes , and melons .\tDT JJ NN VBZ VBN IN IN NNS NNS CC JJ NNS VBG NNS , NN , NNS , CC NNS .\nGarment production is by far the most important industry with the employment of 17,500 mostly Chinese workers and sizable shipments to the US under duty and quota exemptions .\tNN NN VBZ IN RB DT RBS JJ NN IN DT NN IN CD RB JJ NNS CC JJ NNS TO DT NNP IN NN CC NN NNS .\nTHE LION , the Fox and the Ass entered into an agreement to assist each other in the chase .\tDT NNP , DT NNP CC DT NNP VBD IN DT NN TO VB DT NN IN DT NN .\nHaving secured a large booty , the Lion on their return from the forest asked the Ass to allot his due portion to each of the three partners in the treaty .\tVBG VBN DT JJ NN , DT NNP IN PRP$ NN IN DT NN VBD DT NNP TO VB PRP$ JJ NN TO DT IN DT CD NNS IN DT NN .\nThe Ass carefully divided the spoil into three equal shares and modestly requested the two others to make the first choice .\tDT NNP RB VBD DT NN IN CD JJ NNS CC RB VBD DT CD NNS TO VB DT JJ NN .\nThe Lion , bursting out into a great rage , devoured the Ass .\tDT NNP , VBG RP IN DT JJ NN , VBD DT NNP .\nThen he requested the Fox to do him the favor to make a division .\tRB PRP VBD DT NNP TO VB PRP DT NN TO VB DT NN .\nThe Fox accumulated all that they had killed into one large heap and left to himself the smallest possible morsel .\tDT NNP VBN DT IN PRP VBD VBN IN CD JJ NN CC VBD TO PRP DT JJS JJ NN .\nThe Lion said , ' Who has taught you , my very excellent fellow , the art of division ? You are perfect to a fraction . '\tDT NNP VBD , `` WP VBZ VBN PRP , PRP$ RB JJ NN , DT NN IN NN . PRP VBP JJ TO DT NN . ``\nHe replied , ' I learned it from the Ass , by witnessing his fate . '\tPRP VBD , `` PRP VBD PRP IN DT NNP , IN VBG PRP$ NN . ``\nHappy is the man who learns from the misfortunes of others .\tNNP VBZ DT NN WP VBZ IN DT NNS IN NNS .\nA JUDGE was awakened by the noise of a lawyer prosecuting a Thief .\tDT NN VBD VBN IN DT NN IN DT NN VBG DT NN .\nRising in wrath he was about to sentence the Thief to life imprisonment when the latter said :\tVBG IN NN PRP VBD RB TO NN DT NN TO NN NN WRB DT NN VBD :\n' I beg that you will set me free , and I will some day requite your kindness . '\t`` PRP VBP IN PRP MD VB PRP JJ , CC PRP MD DT NN VB PRP$ NN . ``\nPleased and flattered to be bribed , although by nothing but an empty promise , the Judge let him go.\tJJ CC VBD TO VB VBN , IN IN DT CC DT JJ NN , DT NNP VB PRP VB\nSoon afterward he found that it was more than an empty promise , for , having become a Thief , he was himself set free by the other , who had become a Judge .\tRB RB PRP VBD IN PRP VBD RBR IN DT JJ NN , IN , VBG VBN DT NN , PRP VBD PRP VBN JJ IN DT JJ , WP VBD VBN DT NNP .\nIf you love something , set it free .\tIN PRP VBP DT , VBD PRP JJ .\nIf it comes back , it was and always will be yours .\tIN PRP VBZ RB , PRP VBD CC RB MD VB PRP$ .\nIf it never returns , it was never yours to begin with .\tIN PRP RB VBZ , PRP VBD RB PRP$ TO VB IN .\nIf it just sits in your living room and messes up your stuff , eats your food , uses your telephone , takes your money and never behaves as if you actually set it free in the first place -- you either married it or gave birth to it !\tIN PRP RB VBZ IN PRP$ NN NN CC VBZ RP PRP$ NN , VBZ PRP$ NN , VBZ PRP$ NN , VBZ PRP$ NN CC RB VBZ IN IN PRP RB VBD PRP JJ IN DT JJ NN : PRP RB VBD PRP CC VBD NN TO PRP .\nCanadian officials say Japan is banning all poultry exports from Canada after bird flu was found in a duck in the western province of British Columbia .\tJJ NNS VBP NNP VBZ VBG DT NN NNS IN NNP IN NN NN VBD VBN IN DT NN IN DT JJ NN IN NNP NNP .\nOfficials also say Hong Kong , Taiwan , and the United States are imposing temporary bans on poultry from British Columbia .\tNNS RB VBP NNP NNP , NNP , CC DT NNP NNPS VBP VBG JJ NNS IN NN IN NNP NNP .\nThe sick duck came from a commercial farm near Vancouver .\tDT JJ NN VBD IN DT JJ NN IN NNP .\nCanadian authorities said Monday the duck did not have the same bird flu strain that has killed more than 60 people in Asia since 2003 .\tJJ NNS VBD NNP DT NN VBD RB VB DT JJ NN NN NN WDT VBZ VBN JJR IN CD NNS IN NNP IN CD .\nBut they are killing almost 60-thousand ducks on the farm as a precaution .\tCC PRP VBP VBG RB JJ NNS IN DT NN IN DT NN .\nAlso Monday , Romanian officials said British lab tests confirmed four dead chickens in a remote Danube River village had bird flu .\tRB NNP , JJ NNS VBD JJ NN NNS VBD CD JJ NNS IN DT JJ NNP NNP NN VBD VBN NN .\nChina 's agriculture ministry also said Monday that bird flu has been found in chickens , ducks , and geese last week in Inner Mongolia and Hubei province .\tNNP POS NN NN RB VBD NNP IN NN NN VBZ VBN VBN IN NNS , NNS , CC NNS JJ NN IN NNP NNP CC NNP NN .\nVenezuela 's state-owned oil company says it is beginning to explore for oil in Cuban waters as part of a joint venture with the island 's state-owned Cubapetroleo .\tNNP POS JJ NN NN VBZ PRP VBZ VBG TO VB IN NN IN JJ NNS IN NN IN DT JJ NN IN DT NN POS JJ NNP .\nPetroleos de Venezuela ( PDVSA ) said in a statement that the project would cover a 10,000-square-kilometer area and begin Wednesday .\tNNP NNP NNP LRB NNP RRB VBD IN DT NN IN DT NN MD VB DT JJ NN CC VB NNP .\nThe Venezuelan company says it expects to confirm the presence of light crude oil after conducting a seismic study .\tDT JJ NN VBZ PRP VBZ TO VB DT NN IN JJ JJ NN IN VBG DT JJ NN .\nEarlier this year , Venezuela offered discounted oil to Cuba , Bolivia , Nicaragua and Haiti in exchange for becoming the sole provider to those countries .\tRBR DT NN , NNP VBD JJ NN TO NNP , NNP , NNP CC NNP IN NN IN VBG DT JJ NN TO DT NNS .\nVenezuelan President Hugo Chavez said his country 's oil will help with both economic and social development in the area .\tJJ NNP NNP NNP VBD PRP$ NN POS NN MD VB IN DT JJ CC JJ NN IN DT NN .\nThe proposal called for Venezuela to offer oil at a 50 percent discount .\tDT NN VBD IN NNP TO VB NN IN DT CD NN NN .\nVenezuela sells about 98,000 barrels of crude oil daily to Cuba .\tNNP VBZ IN CD NNS IN JJ NN NN TO NNP .\nIn return , Cuba provides Venezuela with medical personnel .\tIN NN , NNP VBZ NNP IN JJ NNS .\nAuthorities in Niger have detained a local journalist they say is linked to Tuareg rebels in the northern part of the country .\tNNS IN NNP VBP VBN DT JJ NN PRP VBP VBZ VBN TO NNP NNS IN DT JJ NN IN DT NN .\nMoussa Kaka , a reporter for Radio France International , has been held since Thursday .\tNNP NNP , DT NN IN NNP NNP NNP , VBZ VBN VBN IN NNP .\nHe is accused of what authorities call ' conniving ' with the rebel Niger Movement for Justice .\tPRP VBZ VBN IN WP NNS VBP `` VBG `` IN DT NN NNP NNP IN NNP .\nThe rebel group has captured about 40 soldiers during raids in northern Niger this year .\tDT NN NN VBZ VBN IN CD NNS IN NNS IN JJ NNP DT NN .\nAnother 40 government troops have been killed in rebel attacks .\tDT CD NN NNS VBP VBN VBN IN NN NNS .\nTuareg rebels have been demanding a larger share of royalties from uranium mining in the northeast .\tNNP NNS VBP VBN VBG DT JJR NN IN NNS IN NN NN IN DT NN .\nThe government dismisses the rebels as bandits and drug traffickers .\tDT NN VBZ DT NNS IN NNS CC NN NNS .\nNiger temporarily suspended local Radio France FM broadcasts in July , claiming their reports were biased toward the rebels .\tNNP RB VBD JJ NNP NNP NNP NNS IN NNP , VBG PRP$ NNS VBD VBN IN DT NNS .\nRadio France confirmed Kaka 's detention on its Web site .\tNNP NNP VBD NNP POS NN IN PRP$ NNP NN .\nIt did not comment on the charges against him .\tPRP VBD RB VB IN DT NNS IN PRP .\nThe U.S. Senate has confirmed the nomination of federal Judge Samuel Alito to the Supreme Court .\tDT NNP NNP VBZ VBN DT NN IN JJ NNP NNP NNP TO DT NNP NNP .\nThe final vote was 58-to-42 , largely along party lines .\tDT JJ NN VBD CD , RB IN NN NNS .\nTuesday 's vote came after the Republican-controlled Senate on Monday stopped an effort by opposition Democrats to extend the debate over Alito 's nomination .\tNNP POS NN VBD IN DT JJ NNP IN NNP VBD DT NN IN NN NNS TO VB DT NN IN NNP POS NN .\nJudge Alito is expected to be sworn in today and to attend the president 's State of the Union address with the other Supreme Court justices .\tNNP NNP VBZ VBN TO VB VBN IN NN CC TO VB DT NN POS NN IN DT NNP NN IN DT JJ NNP NNP NNS .\nHe replaces Justice Sandra Day O'Connor , who is retiring .\tPRP VBZ NNP NNP NNP NNP , WP VBZ VBG .\nShe was known as a ' swing voter ' on the Court , meaning she sometimes sided with the more conservative justices and sometimes with the more liberal ones .\tPRP VBD VBN IN DT `` NN NN `` IN DT NNP , VBG PRP RB VBD IN DT JJR JJ NNS CC RB IN DT RBR JJ NNS .\nAlito 's critics say he will move the Supreme Court in a more conservative direction , especially on issues like abortion and civil rights .\tNNP POS NNS VBP PRP MD VB DT NNP NNP IN DT RBR JJ NN , RB IN NNS IN NN CC JJ NNS .\nDelegates to a U.N. conference on global warming are working hard in the meeting 's final hours to reach a deal on long-term efforts to cut carbon emissions .\tNNS TO DT NNP NN IN JJ NN VBP VBG RB IN DT NN POS JJ NNS TO VB DT NN IN JJ NNS TO VB NN NNS .\nThe biggest stumbling block is the United States , which rejects the Kyoto Protocol on cutting ' greenhouse , ' or heat-trapping , emissions .\tDT JJS NN NN VBZ DT NNP NNPS , WDT VBZ DT NNP NNP IN VBG `` NN , `` CC JJ , NNS .\nDelegates want to extend talks on the accord , which is set to expire in 2012 .\tNNS VBP TO VB NNS IN DT NN , WDT VBZ VBN TO VB IN CD .\nThe Bush administration says the protocol would hurt the U.S. economy , and says it unfairly exempts developing nations such as China and India .\tDT NNP NN VBZ DT NN MD VB DT NNP NN , CC VBZ PRP RB VBZ VBG NNS JJ IN NNP CC NNP .\nFormer U.S. President Bill Clinton rejected that charge in a surprise talk at the Montreal , Canada , summit Friday .\tJJ NNP NNP NNP NNP VBD DT NN IN DT NN NN IN DT NNP , NNP , NN NNP .\nMr. Clinton , who endorsed the Kyoto protocols while president , told delegates the accord would not hurt developed nations .\tNNP NNP , WP VBD DT NNP NNS IN NN , VBD VBZ DT NN MD RB VB JJ NNS .\nHe added it was time to stop doubting the effect of these gases , saying ' climate change is real . '\tPRP VBD PRP VBD NN TO VB VBG DT NN IN DT NNS , VBG `` NN NN VBZ JJ . ``\nBritain has announced plans for a database of extremists who would face automatic questioning and could be barred from entering the country .\tNNP VBZ VBN NNS IN DT NN IN NNS WP MD VB JJ VBG CC MD VB VBN IN VBG DT NN .\nHome Secretary Charles Clark called the plan a response to the London suicide bombings that left at least 56 people dead this month .\tNNP NNP NNP NNP VBD DT NN DT NN TO DT NNP NN NNS WDT VBD IN JJS CD NNS JJ DT NN .\nHe told parliament the database will list people known for unacceptable behavior such as preaching radical ideas , running extremist websites or writing articles that could foment terrorism .\tPRP VBD NN DT NN MD VB NNS VBN IN JJ NN JJ IN VBG JJ NNS , VBG NN NNS CC VBG NNS WDT MD VB NN .\nMeanwhile , Prime Minister Tony Blair told lawmakers he is considering calling an international conference on ways to root out Islamic extremism .\tRB , NNP NNP NNP NNP VBD NNS PRP VBZ VBG VBG DT JJ NN IN NNS TO VB RP JJ NN .\nHe said it would address such issues as ways of dealing with Islamic schools that teach extremism .\tPRP VBD PRP MD VB JJ NNS IN NNS IN VBG IN JJ NNS WDT VBP NN .\nLate Tuesday , British police removed a bomb-mangled 20-ton train car from a central London subway station nearly two weeks after the attacks .\tRB NNP , JJ NN VBD DT JJ JJ NN NN IN DT JJ NNP NN NN RB CD NNS IN DT NNS .\nMexican police say they have found 12 mutilated corpses in hidden graves on the outskirts of Cancun , the latest sign drug-related violence is spreading to the popular tourist destination .\tJJ NNS VBP PRP VBP VBN CD JJ NNS IN JJ NNS IN DT NNS IN NNP , DT JJS NN JJ NN VBZ VBG TO DT JJ NN NN .\nAuthorities announced the discovery Friday , adding that some of the bodies had the letter ' Z ' carved on their chests , a likely reference to the powerful Zetas drug smuggling gang .\tNNS VBD DT NN NNP , VBG IN DT IN DT NNS VBD DT NN `` NNP `` VBN IN PRP$ NNS , DT JJ NN TO DT JJ NNP NN NN NN .\nThe grim find is at least the second such discovery this month .\tDT JJ NN VBZ IN JJS DT JJ JJ NN DT NN .\nIn May , Mexican police arrested Cancun 's mayor Gregorio Sanchez on suspicion of offering information and protection to the Zetas , as well as the Beltran Leyva cartel .\tIN NNP , JJ NN VBN NNP POS NN NNP NNP IN NN IN VBG NN CC NN TO DT NNP , RB RB IN DT NNP NNP NN .\nSanchez 's Democratic Revolutionary Party denounced the charges .\tNNP POS JJ NNP NNP VBD DT NNS .\nPresident Bush will meet with his Colombian counterpart , Alvaro Uribe , after Mr. Bush leaves the Asia Pacific Economic Cooperation , APEC , summit later this month .\tNNP NNP MD VB IN PRP$ JJ NN , NNP NNP , IN NNP NNP VBZ DT NNP NNP NNP NNP , NNP , NN RB DT NN .\nWhite House spokesman Scott McClellan said Friday the president will briefly meet with President Uribe in the Colombian resort town of Cartagena on November 22 .\tNNP NNP NN NNP NNP VBD NNP DT NN MD RB VB IN NNP NNP IN DT JJ NN NN IN NNP IN NNP CD .\nMr. Bush will be flying back from the two-day meeting of APEC leaders that begins November 21 in Santiago , Chile .\tNNP NNP MD VB VBG RB IN DT JJ NN IN NNP NNS WDT VBZ NNP CD IN NNP , NNP .\nIt will be his first trip abroad since winning re-election last week .\tPRP MD VB PRP$ JJ NN RB IN VBG NN JJ NN .\nMr. Bush and Mr. Uribe last met at the White House in March , and agreed to begin negotiations on a free trade agreement .\tNNP NNP CC NNP NNP JJ VBD IN DT NNP NNP IN NNP , CC VBD TO VB NNS IN DT JJ NN NN .\nAfter leaving Colombia , the president will head to his ranch in Texas for the Thanksgiving holiday .\tIN VBG NNP , DT NN MD VB TO PRP$ NN IN NNP IN DT NNP NN .\nAuthorities in Yemen have detained an Australian woman for suspected ties to a militant group and have placed her two young children under house arrest .\tNNS IN NNP VBP VBN DT JJ NN IN JJ NNS TO DT JJ NN CC VB VBN PRP$ CD JJ NNS IN NN NN .\nA lawyer for Shyloh Giddens said Wednesday his client was arrested in mid-May along with at least one Bangladeshi woman who has since been deported .\tDT NN IN NNP NNP VBD NNP PRP$ NN VBD VBN IN NN IN IN IN JJS CD JJ NN WP VBZ IN VBN VBN .\nAttorney Abdul Rahman Barman says Giddens , who converted to Islam , moved to Yemen in 2006 .\tNNP NNP NNP NNP VBZ NNP , WP VBD TO NNP , VBD IN NNP IN CD .\nHe says Yemeni authorities have not provided any specific reason for her arrest .\tPRP VBZ JJ NNS VBP RB VBN DT JJ NN IN PRP$ NN .\nThe French News Agency quotes Barman as saying people get arrested in Yemen based on ' wrong U.S. intelligence information . '\tDT NNP NNP NNP VBZ NNP IN VBG NNS VBP VBN IN NNP VBN IN `` JJ NNP NN NN . ``\nHe says many are accused of having links to al-Qaida .\tPRP VBZ NN VBP VBN IN VBG NNS IN NNP .\nGermany 's constitutional court has rejected a request by two lawmakers to prevent the deployment of German fighter jets in Afghanistan to support NATO forces there .\tNNP POS JJ NN VBZ VBN DT NN IN CD NNS TO VB DT NN IN JJ NN NNS IN NNP TO VB NNP NNS RB .\nThe lawmakers argued that sending the aircraft would entangle Germany in what the plaintiffs called ' illegal operations ' of the U.S. military .\tDT NNS VBD IN VBG DT NN MD VB NNP IN WP DT NNS VBD `` JJ NNS `` IN DT NNP NN .\nThe two are from German Chancellor Angela Merkel 's governing Christian Democratic party and its allied party , the Christian Social Union .\tDT CD VBP IN JJ NNP NNP NNP POS VBG JJ JJ NN CC PRP$ JJ NN , DT NNP NNP NNP .\nThe two lawmakers went to court after Germany 's lower house of parliament voted overwhelmingly Friday ( 405 - 157 ) to send the Tornado aircraft .\tDT CD NNS VBD TO NN IN NNP POS JJR NN IN NN VBD RB NNP LRB CD IN CD RRB TO VB DT NNP NN .\nThe planes are to provide NATO forces with aerial images of the positions of Taleban fighters .\tDT NNS VBP TO VB NNP NNS IN JJ NNS IN DT NNS IN NNP NNS .\nOpponents say the mission amounts to a combat role for the German planes .\tNNS VBP DT NN VBZ TO DT NN NN IN DT JJ NNS .\nGermany has 3,000 troops in Afghanistan in the largely peaceful north , but it has come under pressure to take a more active role in the war .\tNNP VBZ CD NNS IN NNP IN DT RB JJ NN , CC PRP VBZ VBN IN NN TO VB DT RBR JJ NN IN DT NN .\nV-E Day is short for Victory in Europe Day , when the Allies accepted Germany 's surrender , ending World War II in Europe .\tNNP NNP VBZ JJ IN NNP IN NNP NNP , WRB DT NNPS VBD NNP POS NN , VBG NNP NNP NNP IN NNP .\nThe White House hosted an online discussion Wednesday , fielding questions about President Bush 's upcoming trip through Europe and Russia , in honor of the historic moment .\tDT NNP NNP VBD DT JJ NN NNP , VBG NNS IN NNP NNP POS JJ NN IN NNP CC NNP , IN NN IN DT JJ NN .\nU.S. Assistant Secretary of State Daniel Fried and Special Assistant to the President Thomas Graham answered questions Wednesday on the White House interactive website about President Bush 's VE day visits to the Netherlands , Russia and Georgia .\tNNP NNP NNP IN NNP NNP NNP CC NNP NNP TO DT NNP NNP NNP VBD NNS NNP IN DT NNP NNP JJ NN IN NNP NNP POS JJ NN NNS TO DT NNP , NNP CC NNP .\nQuestions were taken from around the world .\tNNS VBD VBN IN IN DT NN .\nThe discussion covered a range of topics , but mostly focused on issues within each country the president will visit .\tDT NN VBD DT NN IN NNS , CC RB VBD IN NNS IN DT NN DT NN MD VB .\nA number of e-mails asked about Russia , its democratization process , and its role in European Union politics .\tDT NN IN NNS VBD IN NNP , PRP$ NN NN , CC PRP$ NN IN NNP NNP NNS .\nFrom May 6 to 10 , President Bush will visit Latvia , the Netherlands , Russia , and Georgia .\tIN NNP CD TO CD , NNP NNP MD VB NNP , DT NNP , NNP , CC NNP .\nA new poll indicates U.S. public opinion of President Bush 's handling of the war in Iraq has hit a new low .\tDT JJ NN VBZ NNP JJ NN IN NNP NNP POS NN IN DT NN IN NNP VBZ VBN DT JJ NN .\nA survey by the U.S. publication Newsweek magazine indicates that 61 percent disapprove of his effort , with only 34 percent of those polled expressing approval .\tDT NN IN DT NNP NN NNP NN VBZ IN CD NN NN IN PRP$ NN , IN RB CD NN IN DT VBN VBG NN .\nThe findings , which echo other recent polls , represent the lowest rating yet on Mr. Bush 's handling of Iraq .\tDT NNS , WDT VBP JJ JJ NNS , VBP DT JJS NN RB IN NNP NNP POS NN IN NNP .\nThe president 's overall approval rating dropped to 42 percent , while 51 percent of Americans answering the poll said they do not like the way he is handling the job .\tDT NN POS JJ NN NN VBD TO CD NN , IN CD NN IN NNS VBG DT NN VBD PRP VBP RB VB DT NN PRP VBZ VBG DT NN .\nSupporters have expressed concern Mr. Bush 's plummeting poll numbers and rising U.S. death toll in Iraq will affect next year 's congressional elections .\tNNS VBP VBN NN NNP NNP POS VBG NN NNS CC VBG NNP NN NN IN NNP MD VB JJ NN POS JJ NNS .\nHours after 14 U.S. Marines were killed in Iraq last week , President Bush said American troops will remain in the country until Iraqi forces can deal with the insurgency .\tNNS IN CD NNP NNPS VBD VBN IN NNP JJ NN , NNP NNP VBD JJ NNS MD VB IN DT NN IN JJ NNS MD VB IN DT NN .\nAmerican and Iraqi troops have launched a new counterinsurgency operation in western Iraq .\tNNP CC JJ NNS VBP VBN DT JJ NN NN IN JJ NNP .\nA U.S. military spokesman Saturday , said about 500 U.S. Marines and 100 Iraqi soldiers are carrying out the offensive in Iraq 's western Anbar province .\tDT NNP JJ NN NNP , VBD IN CD NNP NNPS CC CD JJ NNS VBP VBG RP DT NN IN NNP POS JJ NNP NN .\nThey say 22 suspected insurgents have been detained since the operation began southeast of Falluja Thursday .\tPRP VBP CD JJ NNS VBP VBN VBN IN DT NN VBD NN IN NNP NNP .\nIt is the fourth major counterinsurgency operation in Anbar province in the past month .\tPRP VBZ DT JJ JJ NN NN IN NNP NN IN DT JJ NN .\nMilitary officials say the province stretching from the Syrian border to just west of Baghdad is a conduit for foreign militants entering Iraq .\tJJ NNS VBP DT NN VBG IN DT JJ NN TO RB VB IN NNP VBZ DT NN IN JJ NNS VBG NNP .\nMeanwhile , Iraqi and U.S. officials say they are concerned over a series of attacks on foreign diplomats in recent days .\tRB , JJ CC NNP NNS VBP PRP VBP VBN IN DT NN IN NNS IN JJ NNS IN JJ NNS .\nSeveral high-level Arab officials have been targeted and Egypt 's ambassador Ihab al-Sherif was assassinated earlier this week .\tJJ JJ JJ NNS VBP VBN VBN CC NNP POS NN NNP NNP VBD VBN RBR DT NN .\nHaitian police have killed a prominent rebel wanted in connection with the murder of four police officers earlier in the year .\tJJ NNS VBP VBN DT JJ NN VBN IN NN IN DT NN IN CD NN NNS RBR IN DT NN .\nOfficials said Sunday Jean Rene Anthony was killed in a shootout with police near the capital city of Port-au-Prince .\tNNS VBD NNP NNP NNP NNP VBD VBN IN DT NN IN NN IN DT NN NN IN NNP .\nThe gunbattle came a day after another rebel leader , Remissaninthe Ravix , was killed in a shootout with Haitian authorities .\tDT NN VBD DT NN IN DT JJ NN , NNP NNP , VBD VBN IN DT NN IN JJ NNS .\nMr. Ravix , the self-proclaimed leader of Haiti 's disbanded military , was one of four leaders of a February 2004 revolt that forced Mr. Aristide to flee the country .\tNNP NNP , DT JJ NN IN NNP POS JJ NN , VBD CD IN CD NNS IN DT NNP CD NN WDT VBD NNP NNP TO VB DT NN .\nHaitian officials had been searching for the two men in recent weeks in connection with several police killings .\tJJ NNS VBD VBN VBG IN DT CD NNS IN JJ NNS IN NN IN JJ NNS NNS .\nHurricane Ike roared through vital parts of the U.S. oil industry , boosted gasoline prices , and probably cost insurance companies billions of dollars Saturday .\tNNP NNP VBD IN JJ NNS IN DT NNP NN NN , VBD NN NNS , CC RB NN NN NNS NNS IN NNS NNP .\nOil company officials say they are sending workers to assess damage at off-shore oil rigs and coastal refineries .\tNN NN NNS VBP PRP VBP VBG NNS TO VB NN IN JJ NN NNS CC JJ NNS .\nU.S. government officials say they are prepared to release stocks from the Strategic Petroleum Reserve to help make up for lost production .\tNNP NN NNS VBP PRP VBP VBN TO VB NNS IN DT NNP NNP NNP TO VB VB RP IN VBN NN .\nConcerns about possible supply shortages have pushed gasoline prices up in some areas of the U.S. To boost gasoline supplies , the government has made it easier for companies to import fuel by suspending rules requiring certain formulations of gasoline to meet environmental standards .\tNNS IN JJ NN NNS VBP VBN NN NNS RP IN DT NNS IN DT NNP TO VB NN NNS , DT NN VBZ VBN PRP JJR IN NNS TO VB NN IN VBG NNS VBG JJ NNS IN NN TO VB JJ NNS .\nMeantime , three groups of insurance industry experts have widely differing estimates of the storm 's cost to insurance companies -- ranging from six billion dollars to 18 billion dollars .\tRB , CD NNS IN NN NN NNS VBP RB VBG NNS IN DT NN POS NN TO NN NNS : VBG IN CD CD NNS TO CD CD NNS .\nFollowing her crucial victory in the Democratic Party U.S. presidential primary in ( the northeastern state of ) Pennsylvania , Senator Hillary Clinton says she is still the best candidate to defeat the presumptive Republican nominee , Senator John McCain , in the general election .\tVBG PRP$ JJ NN IN DT JJ NNP NN JJ NN IN LRB DT JJ NN IN RRB NNP , NNP NNP NNP VBZ PRP VBZ RB DT JJS NN TO VB DT JJ NNP NN , NN NNP NNP , IN DT JJ NN .\nVOA 's Robert Raffaele has the story .\tNNP POS NNP NNP VBZ DT NN .\nThe British government has proposed legally binding targets for reducing carbon emissions , becoming the first country to outline a legal framework for confronting global warming .\tDT JJ NN VBZ VBN RB JJ NNS IN VBG NN NNS , VBG DT JJ NN TO VB DT JJ NN IN VBG JJ NN .\nIf approved by parliament , the bill introduced Tuesday would bind the government to cut carbon dioxide emissions by 26 to 32 percent by 2020 , and 60 percent by 2050 .\tIN VBN IN NN , DT NN VBN NNP MD VB DT NN TO VB NN NN NNS IN CD IN CD NN IN CD , CC CD NN IN CD .\nOfficials say failure to meet interim targets could land the government in court .\tNNS VBP NN TO VB JJ NNS MD VB DT NN IN NN .\nPrime Minister Tony Blair told reporters the proposed legislation is a revolutionary step that ' sets an example for the rest of the world . '\tJJ NN NNP NNP VBD NNS DT VBN NN VBZ DT JJ NN IN `` VBZ DT NN IN DT NN IN DT NN . ``\nEuropean Union leaders last week agreed to cut carbon emissions from vehicles and factories by at least 20 percent over the next 13 years .\tNNP NNP NNS JJ NN VBD TO VB NN NNS IN NNS CC NNS IN IN JJS CD NN IN DT JJ CD NNS .\nThe EU plan calls for renewable energy sources , such as hydroelectric , solar and wind power , to replace heavily polluting fossil fuels .\tDT NNP NN VBZ IN JJ NN NNS , JJ IN JJ , JJ CC NN NN , TO VB RB VBG JJ NNS .\nPolice say insurgents in Russia 's volatile southern republic of Dagestan have killed a prosecutor and then ambushed the regional government 's interior minister on his way to the scene of the first attack .\tNNS VBP NNS IN NNP POS JJ JJ NN IN NNP VBP VBN DT NN CC RB VBD DT JJ NN POS JJ NN IN PRP$ NN TO DT NN IN DT JJ NN .\nRussian news reports say the minister escaped , but two police officers accompanying him were mortally wounded .\tJJ NN NNS VBP DT NN VBD , CC CD NNS NNS VBG PRP VBD RB VBN .\nAuthorities say a bomb exploded as a car carrying prosecutor Bitar Bitarov to his office in the republic capital , Makhachkala , passed by .\tNNS VBP DT NN VBD IN DT NN VBG NN NNP NNP TO PRP$ NN IN DT NN NN , NNP , VBN IN .\nThe prosecutor later died at a local hospital .\tDT NN RB VBD IN DT JJ NN .\nAttackers later fired on a second vehicle carrying regional Interior Minister Adilgerei Magomedtagirov and several police officers as they approached the scene to investigate .\tNNS RB VBD IN DT JJ NN VBG JJ NNP NNP NNP NNP CC JJ NNS NNS IN PRP VBD DT NN TO VB .\nThe two wounded officers died on the way to a hospital .\tDT CD JJ NNS VBD IN DT NN TO DT NN .\nDagestan borders Chechnya , where Islamic separatists have been fighting government forces for more than a decade .\tNNP NNS NNP , WRB JJ NNS VBP VBN VBG NN NNS IN JJR IN DT NN .\nAn independent police panel in Britain says its probe into the fatal shooting of a Brazilian man by British police after the London subway bombings should be completed by the end of the year .\tDT JJ NNS NN IN NNP VBZ PRP$ NN IN DT JJ NN IN DT JJ NN IN JJ NN IN DT NNP NN NNS MD VB VBN IN DT NN IN DT NN .\nBritain 's Independent Police Complaints Commission said Tuesday findings of the investigation into the death of 27-year-old Jean Charles de Menezes will not be published until all of the case proceedings are complete , including any punishments against the officers involved .\tNNP POS NNP NNP NNPS NNP VBD NNP NNS IN DT NN IN DT NN IN JJ NNP NNP NNP NNP MD RB VB VBN IN DT IN DT NN NNS VBP JJ , VBG DT NNS IN DT NNS VBN .\nMonday , two senior Brazilian justice officials conferred in London with senior police officials about the probe .\tNNP , CD JJ JJ NN NNS VBD IN NNP IN JJ NN NNS IN DT NN .\nBritish police shot and killed Mr. de Menezes July 22 on a London subway train - one day after four failed bombings on the city 's transit system .\tJJ NNS VBD CC VBD NNP NNP NNP NNP CD IN DT NNP NN NN IN CD NN IN CD VBN NNS IN DT NN POS NN NN .\nPolice said the Brazilian man 's suspicious behavior led them to believe he was a terrorist .\tNNS VBD DT JJ NN POS JJ NN VBD PRP TO VB PRP VBD DT NN .\nBut recent news reports have cast doubt on the official version .\tCC JJ NN NNS VBP VBN NN IN DT JJ NN .\nIran 's supreme leader says he sees no benefit to negotiations with the United States on his country 's nuclear program .\tNNP POS JJ NN VBZ PRP VBZ DT NN TO NNS IN DT NNP NNPS IN PRP$ NN POS JJ NN .\nAyatollah Ali Khamenei added Iran will not negotiate its right to use nuclear technology with anyone .\tNNP NNP NNP VBD NNP MD RB VB PRP$ NN TO VB JJ NN IN DT .\nBut he says Iran is willing to discuss international supervision of its program if other countries accept Iran 's right to a nuclear program .\tCC PRP VBZ NNP VBZ JJ TO VB JJ NN IN PRP$ NN IN JJ NNS VBP NNP POS NN TO DT JJ NN .\nThe United States has offered to join European talks with Iran if it first agrees to suspend uranium enrichment .\tDT NNP NNP VBZ VBN TO VB JJ NNS IN NNP IN PRP RB VBZ TO VB NN NN .\nOn Monday , Iranian nuclear negotiator Ali Larijani said Iran is seriously considering a package of international incentives aimed at convincing Iran to abandon enrichment .\tIN NNP , JJ JJ NN NNP NNP VBD NNP VBZ RB VBG DT NN IN JJ NNS VBN IN VBG NNP TO VB NN .\nHe said Iran will respond as soon as possible to the offer from the five permanent members of the United Nations Security Council and Germany .\tPRP VBD NNP MD VB RB RB IN JJ TO DT NN IN DT CD JJ NNS IN DT NNP NNP NNP NNP CC NNP .\nThe United States and its European allies accuse Iran of trying to develop nuclear weapons .\tDT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS .\nTehran denies the allegation .\tNNP VBZ DT NN .\nThe United States and China have opened annual talks on economic issues , with Washington seeking changes to China 's economy and financial markets .\tDT NNP NNPS CC NNP VBP VBN JJ NNS IN JJ NNS , IN NNP VBG NNS TO NNP POS NN CC JJ NNS .\nTreasury Secretary John Snow and Federal Reserve ( central bank ) chairman Alan Greenspan lead the U.S. side at the meeting outside Beijing in Xianghe .\tNNP NNP NNP NNP CC NNP NNP LRB JJ NN RRB NN NNP NNP VBP DT NNP NN IN DT NN IN NNP IN NNP .\nThe talks are part of an effort to close the record trade gap between the countries .\tDT NNS VBP NN IN DT NN TO VB DT NN NN NN IN DT NNS .\nChina sold the United States $ 162 billion more goods than it bought last year and a larger gap is forecast for this year .\tNNP VBD DT NNP NNPS $ CD CD JJR NNS IN PRP VBD JJ NN CC DT JJR NN VBZ VBN IN DT NN .\nA U.S. treasury official said that Washington is focusing on more than currency issues in its attempts to find a solution to the trade imbalance .\tDT NNP NN NN VBD IN NNP VBZ VBG IN JJR IN NN NNS IN PRP$ NNS TO VB DT NN TO DT NN NN .\nU.S. businesses accuse China of manipulating its currency to give Chinese exports an unfair price advantage .\tNNP NNS VBP NNP IN VBG PRP$ NN TO VB JJ NNS DT JJ NN NN .\nAfghan officials say they fear more than 64 people may have been killed by a massive avalanche along a key northern road .\tJJ NNS VBP PRP VBP JJR IN CD NNS MD VB VBN VBN IN DT JJ NN IN DT JJ JJ NN .\nInterior Minister Hanif Atmar said Tuesday that rescuers have already recovered 24 bodies from the Salang Pass , but they fear that more than 40 others still trapped have already died .\tNNP NNP NNP NNP VBD NNP IN NNS VBP RB VBN CD NNS IN DT NNP NNP , CC PRP VBP IN JJR IN CD NNS RB VBN VBP RB VBN .\nHundreds of people have been rescued , but the 3,400-meter-high mountain pass , as well as a nearby tunnel , remain blocked .\tNNS IN NNS VBP VBN VBN , CC DT JJ NN NN , RB RB IN DT JJ NN , VBP VBN .\nLocal officials said days of heavy snow led to avalanches that buried part of the mountain pass that connects Kabul to the northern city Mazar-i-Sharif .\tJJ NNS VBD NNS IN JJ NN VBD TO NNS WDT VBD NN IN DT NN NN WDT VBZ NNP TO DT JJ NN NNP .\nPresident Hamid Karzai has released a statement expressing condolences for the victims and ordered Afghan public works officials to assist the rescue effort .\tNNP NNP NNP VBZ VBN DT NN VBG NNS IN DT NNS CC VBD JJ JJ NNS NNS TO VB DT NN NN .\nEgypt says it has arrested more than 10 suspected terrorists who it claims were training to wage Jihad or holy war .\tNNP VBZ PRP VBZ VBN JJR IN CD JJ NNS WP PRP VBZ VBD VBG TO VB NNP CC JJ NN .\nAn interior ministry statement released Monday says the group , including nine French citizens , two Belgians and an American , were living in Egypt under the pretense of studying Arabic and Islam .\tDT JJ NN NN VBN NNP VBZ DT NN , VBG CD JJ NNS , CD NNS CC DT NN , VBD VBG IN NNP IN DT NN IN VBG NNP CC NNP .\nThe statement says several Egyptians , Tunisians and Syrians are also under arrest .\tDT NN VBZ JJ NNS , NNPS CC NNS VBP RB IN NN .\nThe statement says the group had adopted extremist views and was working to recruit new members to wage terror in Iraq .\tDT NN VBZ DT NN VBD VBN NN NNS CC VBD VBG TO VB JJ NNS TO VB NN IN NNP .\nThe government says the group has links to terror organizations abroad .\tDT NN VBZ DT NN VBZ NNS IN NN NNS RB .\nThe ministry did not reveal the names of those under arrest .\tDT NN VBD RB VB DT NNS IN DT IN NN .\nThe U.S. embassy in Cairo has refused to comment on the arrests .\tDT NNP NN IN NNP VBZ VBN TO VB IN DT NNS .\nThe Afghan government and the United Nations refugee agency have pledged to strengthen efforts to resettle returnees and people inside the country displaced by violence .\tDT JJ NN CC DT NNP NNP NN NN VBP VBN TO VB NNS TO VB NNS CC NNS IN DT NN VBN IN NN .\nThe pledge came after a high-profile visit to the country this week by the head of U.N. High Commissioner for Refugees , Antonio Guterres .\tDT NN VBD IN DT JJ NN TO DT NN DT NN IN DT NN IN NNP NNP NNP IN NNP , NNP NNP .\nAs VOA 's Ravi Khanna reports , the U.N. official wants the international community to do more to resettle Afghan refugees .\tIN NNP POS NNP NNP VBZ , DT NNP NN VBZ DT JJ NN TO VB JJR TO VB JJ NNS .\nThousands of demonstrators staged a peaceful rally in Russia 's capital Saturday to protest recent reforms that reduced Soviet-era subsidies for rent and utilities .\tNNS IN NNS VBD DT JJ NN IN NNP POS NN NNP TO VB JJ NNS WDT VBD JJ NNS IN NN CC NNS .\nMany elderly pensioners were among the 5,000 demonstrators criticizing the rising costs of living .\tJJ JJ NNS VBD IN DT CD NNS VBG DT VBG NNS IN NN .\nProtesters say people on fixed incomes can not afford to pay household expenses given recent rate hikes and subsidy reductions .\tNNS VBP NNS IN JJ NNS MD RB VB TO VB NN NNS VBN JJ NN NNS CC NN NNS .\nDemonstrators are urging the government to use some of the revenue from Russia 's booming oil industry to help maintain aging buildings and to assist people who can not afford rising housing and utility costs .\tNNS VBP VBG DT NN TO VB DT IN DT NN IN NNP POS JJ NN NN TO VB VB VBG NNS CC TO VB NNS WP MD RB VB VBG NN CC NN NNS .\nThe Communist Party and other leftist groups sponsored the Moscow rally .\tDT NNP NNP CC JJ JJ NNS VBD DT NNP NN .\nDemonstrations were also held elsewhere in Russia Saturday , including the Siberian city of Krasnoyarsk .\tNNS VBD RB VBN RB IN NNP NNP , VBG DT JJ NN IN NNP .\nProsecutors in Kenya have charged a man with illegal possession of weapons just one day after he was acquitted of murder in the 2002 suicide bombing of an Israeli hotel .\tNNS IN NNP VBP VBN DT NN IN JJ NN IN NNS RB CD NN IN PRP VBD VBN IN NN IN DT CD NN NN IN DT JJ NN .\nProsecutors accused Omar Said Omar Friday of possessing an assortment of firearms , including missile launchers and rifles .\tNNS VBD NNP NNP NNP NNP IN VBG DT NN IN NNS , VBG NN NNS CC NNS .\nMr. Omar denied the charges .\tNNP NNP VBD DT NNS .\nThe prosecution said Mr. Omar should be denied bail .\tDT NN VBD NNP NNP MD VB VBN NN .\nBut defense lawyers said it would not be fair to keep Mr. Omar in jail , noting that he already was held for nearly two years on charges that ultimately were dismissed .\tCC NN NNS VBD PRP MD RB VB JJ TO VB NNP NNP IN NN , VBG IN PRP RB VBD VBN IN RB CD NNS IN NNS WDT RB VBD VBN .\nA ruling on bail is expected Monday .\tDT NN IN NN VBZ VBN NNP .\nA Kenyan judge said Thursday there was not sufficient evidence to link Mr. Omar to the 2002 bombing of an Israeli owned hotel in Mombasa that killed at least 15 people .\tDT JJ NN VBD NNP EX VBD RB JJ NN TO VB NNP NNP TO DT CD NN IN DT JJ JJ NN IN NNP WDT VBD IN JJS CD NNS .\nThree other Kenyans also were acquitted .\tCD JJ NNS RB VBD VBN .\nHealth officials in Laos say a woman who fell ill near the Lao capital last month with symptoms of bird flu has died .\tNN NNS IN NNP VBP DT NN WP VBD RB IN DT JJ NN JJ NN IN NNS IN NN NN VBZ VBN .\nLaboratory tests had shown the 42-year-old woman had the H5 flu virus .\tNN NNS VBD VBN DT JJ NN VBD DT NNP NN NN .\nHours before the woman 's death in a Vientiane hospital Sunday , authorities said it would take several more days to determine whether she carried the dangerous H5N1 strain .\tNNS IN DT NN POS NN IN DT NNP NN NNP , NNS VBD PRP MD VB JJ JJR NNS TO VB IN PRP VBD DT JJ NNP NN .\nThe woman lived near a village where bird flu has infected poultry .\tDT NN VBD IN DT NN WRB NN NN VBZ VBN NN .\nLast month , health officials confirmed the country 's first known human case of the disease in a 15-year-old girl who also lived near Vientiane .\tJJ NN , NN NNS VBD DT NN POS JJ VBN JJ NN IN DT NN IN DT JJ NN WP RB VBD IN NNP .\nBird flu first appeared in Laos in 2004 .\tNN NN RB VBD IN NNP IN CD .\nIt is known to have killed 167 people worldwide since 2003 , mostly in Asia .\tPRP VBZ VBN TO VB VBN CD NNS JJ IN CD , RB IN NNP .\nAuthorities in southern Afghanistan say suspected Taleban insurgents have shot and critically wounded a pro-government Islamic cleric .\tNNS IN JJ NNP VBP VBN NNP NNS VBP VBN CC RB VBD DT JJ JJ NN .\nThey say Mawlawi Mohammad Nabi Masah , a member of the influential Ulema Council of clerics , was ambushed and shot Sunday as he was leaving home near Kandahar city .\tPRP VBP NNP NNP NNP NNP , DT NN IN DT JJ NNP NNP IN NNS , VBD VBN CC VBN NNP IN PRP VBD VBG NN IN NNP NN .\nElsewhere , Reuters news agency reports U.S. warplanes have again pounded suspected militant positions in eastern Kunar province .\tRB , NNP NN NN VBZ NNP NNS VBP RB VBN JJ JJ NNS IN JJ NNP NN .\nU.S. forces are searching the rugged area for a Special Forces unit that has been missing since Tuesday , just before a helicopter going to its rescue was shot down , killing all 16 troops on board .\tNNP NNS VBP VBG DT JJ NN IN DT JJ NNS NN WDT VBZ VBN VBG IN NNP , RB IN DT NN VBG TO PRP$ NN VBD VBN RB , VBG DT CD NNS IN NN .\nAfghan government officials say a similar U.S. air strike in Kunar late Friday caused casualties .\tJJ NN NNS VBP DT JJ NNP NN NN IN NNP RB NNP VBD NNS .\nThere are conflicting accounts whether civilians were killed .\tEX VBP VBG NNS IN NNS VBD VBN .\nFrench Prime Minister Dominique de Villepin has urged the United States and other nations with troops in Iraq to withdraw from the country within one year .\tNNP NNP NNP NNP NNP NNP VBZ VBN DT NNP NNPS CC JJ NNS IN NNS IN NNP TO VB IN DT NN IN CD NN .\nIn a speech Friday at Harvard University in Cambridge , in the northeastern state of Massachusetts , Villepin said the United States remains the leading power in the world .\tIN DT NN NNP IN NNP NNP IN NNP , IN DT JJ NN IN NNP , NNP VBD DT NNP NNPS VBZ DT VBG NN IN DT NN .\nBut he noted the war in Iraq marked a turning point , undermining not only America 's image , but also the image of the West as a whole .\tCC PRP VBD DT NN IN NNP VBD DT NN NN , VBG RB RB NNP POS NN , CC RB DT NN IN DT NNP IN DT NN .\nVillepin continued that it is time for the United States and Europe to regain the respect and admiration of other peoples .\tNNP VBD IN PRP VBZ NN IN DT NNP NNPS CC NNP TO VB DT NN CC NN IN JJ NNS .\nVillepin said he believes a timetable for the withdrawal of all foreign troops is needed to allow Iraqis to feel their future is in their own hands and to put them back on the path of national sovereignty .\tNNP VBD PRP VBZ DT NN IN DT NN IN DT JJ NNS VBZ VBN TO VB NNS TO VB PRP$ NN VBZ IN PRP$ JJ NNS CC TO VB PRP RB IN DT NN IN JJ NN .\nIsraeli doctors say Prime Minister Ariel Sharon , who remains in a coma since suffering a stroke two weeks ago , underwent a surgical procedure overnight to replace his breathing tube .\tJJ NNS VBP NNP NNP NNP NNP , WP VBZ IN DT NN IN VBG DT NN CD NNS RB , VBD DT JJ NN JJ TO VB PRP$ NN NN .\nThe Hadassah hospital in Jerusalem issued a statement Wednesday morning , saying the procedure was necessary because the respiratory pipe developed a technical problem .\tDT NNP NN IN NNP VBD DT NN NNP NN , VBG DT NN VBD JJ IN DT JJ NN VBD DT JJ NN .\nThe statement said Mr. Sharon 's condition continues to be critical but stable .\tDT NN VBD NNP NNP POS NN VBZ TO VB JJ CC JJ .\nThe 77-year-old prime minister has been on respirator since he was incapacitated by a brain hemorrhage on January 4 .\tDT JJ JJ NN VBZ VBN IN NN IN PRP VBD VBN IN DT NN NN IN NNP CD .\nReporters Without Borders is calling on Venezuela 's government to discuss what it calls FALSE accusations made by Venezuelan officials in response to recent criticism by the organization .\tNNS IN NNS VBZ VBG IN NNP POS NN TO VB WP PRP VBZ JJ NNS VBN IN JJ NNS IN NN TO JJ NN IN DT NN .\nThe Paris-based group says Venezuela 's information ministry unfairly lashed out after it expressed concern about the recent detention of a Venezuelan journalist ( Gustavo Azocar ) on fraud and embezzlement charges .\tDT JJ NN VBZ NNP POS NN NN RB VBD RP IN PRP VBD NN IN DT JJ NN IN DT JJ NN LRB NNP NNP RRB IN NN CC NN NNS .\nThe organization says the ministry responded by accusing Reporters Without Borders of being part of a psychological war campaign by the United States .\tDT NN VBZ DT NN VBD IN VBG NNS IN NNS IN VBG NN IN DT JJ NN NN IN DT NNP NNPS .\nIt says the ministry also said the group was paid by the U.S. government and secret services .\tPRP VBZ DT NN RB VBD DT NN VBD VBN IN DT NNP NN CC JJ NNS .\nReporters Without Borders denies both accusations and says it will continue to question governments on any issue it feels restricts press freedom .\tNNS IN NNS VBZ DT NNS CC VBZ PRP MD VB TO VB NNS IN DT NN PRP VBZ VBZ NN NN .\nThe U.S. city of Los Angeles in the western state of California , and two Indian film industry groups have signed an agreement to boost cooperation between the U.S. and Indian moviemaking industries .\tDT NNP NN IN NNP NNP IN DT JJ NN IN NNP , CC CD JJ NN NN NNS VBP VBN DT NN TO VB NN IN DT NNP CC NNP NN NNS .\nThe Motion Picture Association of America announced the deal late Wednesday in Los Angeles .\tDT NNP NNP NNP IN NNP VBD DT NN JJ NNP IN NNP NNP .\nAt the signing of the deal , Los Angeles Mayor Antonio Villaraigosa said the declaration reinforces the city 's commitment to attracting international production .\tIN DT NN IN DT NN , NNP NNP NNP NNP NNP VBD DT NN VBZ DT NN POS NN TO VBG JJ NN .\nThe U.S. and Indian film industries , known as Hollywood and Bollywood respectively , dominate the world of moviemaking .\tDT NNP CC JJ NN NNS , VBN IN NNP CC NNP RB , VB DT NN IN NN .\nThe Hindi films My Name is Khan and Kiteswere recently filmed in Los Angeles .\tDT NNP NNS PRP$ NN VBZ NNP CC NNP RB VBD IN NNP NNP .\nRepresentatives of the two industries agreed earlier this year to fight movie piracy , which is common in India .\tNNS IN DT CD NNS VBD RBR DT NN TO VB NN NN , WDT VBZ JJ IN NNP .\nAn Associated Press correspondent left Ethiopia Sunday after getting an expulsion order from the government .\tDT NNP NNP NN VBD NNP NNP IN VBG DT NN NN IN DT NN .\nAnthony Mitchell was told by Ethiopian officials on Saturday he had 24 hours to leave the country .\tNNP NNP VBD VBN IN JJ NNS IN NNP PRP VBD CD NNS TO VB DT NN .\nThe news agency says attempts to appeal the order went unanswered .\tDT NN NN VBZ NNS TO VB DT NN VBD JJ .\nIn a statement , the Ethiopian government accused Mitchell of reporting information ' far from the truth ' and tarnishing the country 's image .\tIN DT NN , DT JJ NN VBD NNP IN VBG NN `` RB IN DT NN `` CC VBG DT NN POS NN .\nAssociated Press managing editor Mike Silverman says the news agency will stand behind Mitchell , a British journalist he describes as aggressive and fair .\tNNP NNP NN NN NNP NNP VBZ DT NN NN MD VB IN NNP , DT JJ NN PRP VBZ IN JJ CC JJ .\nEthiopia recently began a crackdown on the press and opposition groups , charging 129 people with treason and genocide .\tNNP RB VBD DT NN IN DT NN CC NN NNS , VBG CD NNS IN NN CC NN .\nAmong those charged are five Voice of America journalists in Washington .\tIN DT VBN VBP CD NNP IN NNP NNS IN NNP .\nSouth Korean Foreign Ministry officials say the Japanese foreign minister has misguided views on the history between the two countries .\tNNP JJ NNP NNP NNS VBP DT JJ JJ NN VBZ VBN NNS IN DT NN IN DT CD NNS .\nThe criticism from Seoul Monday came in response to Japanese Foreign Minister Taro Aso 's comments Saturday about visits to a controversial war shrine in Tokyo .\tDT NN IN NNP NNP VBD IN NN TO JJ NNP NNP NNP NNP POS NNS NNP IN NNS TO DT JJ NN NN IN NNP .\nMr. Aso said Japan did not have to worry about being isolated because of Prime Minister Junichiro Koizumi 's visits to the shrine since the only countries complaining were South Korea and China .\tNNP NNP VBD NNP VBD RB VB TO VB IN VBG VBN IN IN NNP NNP NNP NNP POS NNS TO DT NN IN DT JJ NNS VBG VBD NNP NNP CC NNP .\nJapan 's relations with its two neighbors have deteriorated because of Mr. Koizumi 's annual visits to the shrine most recently last month .\tNNP POS NNS IN PRP$ CD NNS VBP VBN IN IN NNP NNP POS JJ NNS TO DT NN RBS RB JJ NN .\nThe shrine deifies war criminals among the war dead honored there .\tDT NN VBZ NN NNS IN DT NN JJ VBN RB .\nSouth Korea and China have said the shrine glorifies Japan 's militarist past .\tNNP NNP CC NNP VBP VBN DT NN VBZ NNP POS NN NN .\nSyria 's foreign minister , Farouk al-Shara , says his government will exchange ambassadors with Baghdad when a new Iraqi government is formed .\tNNP POS JJ NN , NNP NNP , VBZ PRP$ NN MD VB NNS IN NNP WRB DT JJ JJ NN VBZ VBN .\nThis is the first time that Damascus has set a time frame for restoring ties .\tDT VBZ DT JJ NN IN NNP VBZ VBN DT NN NN IN VBG NNS .\nAl-Shara says Syria welcomes a close relationship with Iraq and is committed to Iraq 's territorial integrity and to an end to the U.S. occupation .\tNNP VBZ NNP VBZ DT JJ NN IN NNP CC VBZ VBN TO NNP POS JJ NN CC TO DT NN TO DT NNP NN .\nDamascus broke off relations with Baghdad more than 20 years ago .\tNNP VBD RP NNS IN NNP JJR IN CD NNS RB .\nRelations between the two countries deteriorated after Syria sided with Iran in the Iran-Iraq war .\tNNP IN DT CD NNS VBD IN NNP VBD IN NNP IN DT NNP NN .\nSyria also joined the U.S.-led coalition against Iraq in the 1991 Gulf War .\tNNP RB VBD DT JJ NN IN NNP IN DT CD NNP NNP .\nIraq is encouraging Arab countries to send ambassadors to Baghdad .\tNNP VBZ VBG JJ NNS TO VB NNS TO NNP .\nTurkey 's military says 15 Kurdish rebels have been killed in Turkish attacks on suspected rebel targets in northern Iraq .\tNNP POS JJ VBZ CD NNP NNS VBP VBN VBN IN JJ NNS IN JJ NN NNS IN JJ NNP .\nThe military said Saturday the rebels - from the outlawed Kurdistan Workers Party ( PKK ) - were killed Thursday in artillery fire aimed at stopping the group from attacking Turkish targets .\tDT NN VBD NNP DT NNS : IN DT JJ NNP NNP NNP LRB NNP RRB : VBD VBN NNP IN NN NN VBN IN VBG DT NN IN VBG JJ NNS .\nA military statement said Turkish warplanes followed up the attack with airstrikes in northern Iraq Friday , but it was unclear if there were casualties .\tDT JJ NN VBD JJ NNS VBD RP DT NN IN NNS IN JJ NNP NNP , CC PRP VBD JJ IN EX VBD NNS .\nTurkey accuses PKK militants of using suspected strongholds in northern Iraq to launch attacks in Turkey .\tNNP VBZ NNP NNS IN VBG JJ NNS IN JJ NNP TO VB NNS IN NNP .\nThe PKK has been fighting for Kurdish autonomy in Turkey 's mainly Kurdish southeast for nearly 25 years .\tDT NNP VBZ VBN VBG IN NNP NN IN NNP POS RB JJ NN IN RB CD NNS .\nThe violence has killed more than 30,000 people .\tDT NN VBZ VBN JJR IN CD NNS .\nTurkey , the United States and other nations have designated the PKK a terrorist group .\tNNP , DT NNP NNPS CC JJ NNS VBP VBN DT NNP DT JJ NN .\nVenezuela says it hopes to sign a new agreement with the United States next month on anti-drug cooperation .\tNNP VBZ PRP VBZ TO VB DT JJ NN IN DT NNP NNPS JJ NN IN JJ NN .\nVenezuelan anti-drug chief Luis Correa said Monday the deal will be signed around July 8 .\tJJ JJ NN NNP NNP VBD NNP DT NN MD VB VBN IN NNP CD .\nThe U.S. Embassy in Caracas said the two sides are close to an agreement .\tDT NNP NNP IN NNP VBD DT CD NNS VBP RB TO DT NN .\nReports say Venezuela wants the new accord to restrict U.S. agents operating in the Andean country but ensure cooperation in the areas of information-sharing , technology and training .\tNNS VBP NNP VBZ DT JJ NN TO VB NNP NNS VBG IN DT JJ NN CC VB NN IN DT NNS IN NN , NN CC NN .\nLast August , Venezuelan President Hugo Chavez accused the U.S. Drug Enforcement Administration of spying on his government under the guise of fighting drug trafficking and suspended cooperation with the agency .\tJJ NNP , JJ NNP NNP NNP VBD DT NNP NNP NNP NNP IN VBG IN PRP$ NN IN DT NN IN VBG NN NN CC VBD NN IN DT NN .\nThe U.S. government responded by revoking the visas of three Venezuelan military officers suspected of involvement in drug trafficking .\tDT NNP NN VBD IN VBG DT NNS IN CD JJ JJ NNS VBN IN NN IN NN NN .\nIn September , the U.S. government said Venezuela had ' failed demonstrably ' to adhere to its obligations under international anti-narcotics agreements .\tIN NNP , DT NNP NN VBD NNP VBD `` VBN RB `` TO VB TO PRP$ NNS IN JJ JJ NNS .\nIndian Defense Minister Pranab Mukherjee will now run the foreign ministry , after a Cabinet reshuffle that brings in three new faces .\tJJ NNP NNP NNP NNP MD RB VB DT JJ NN , IN DT NNP NN WDT VBZ IN CD JJ NNS .\nThe new defense minister will be A.K. Antony , a former chief minister of the southern Indian state of Kerala .\tDT JJ NN NN MD VB NNP NNP , DT JJ JJ NN IN DT JJ JJ NN IN NNP .\nAlso sworn in as junior ministers were M.H. Ambareesh , a film actor-turned Congress politician , and Jayprakash Narain Yadav of the government 's coalition partner , Rashtriya Janata Dal .\tRB VBN IN IN JJ NNS VBD NNP NNP , DT NN JJ NNP NN , CC NNP NNP NNP IN DT NN POS NN NN , NNP NNP NNP .\nThe crucial foreign ministry post fell vacant last November when then-minister Natwar Singh was charged with receiving kickbacks in the investigation of the UN oil-for-food program in Iraq .\tDT JJ JJ NN NN VBD JJ JJ NNP WRB JJ NNP NNP VBD VBN IN VBG NNS IN DT NN IN DT NNP NN NN IN NNP .\nThis reshuffle takes the number of ministers in the three-level Cabinet to 80 .\tDT NN VBZ DT NN IN NNS IN DT JJ NNP TO CD .\nIt has 34 ministers , seven deputy ministers and 39 junior ministers .\tPRP VBZ CD NNS , CD NN NNS CC CD NN NNS .\nA suicide attack in southwestern Afghanistan Thursday killed six police officers and an Indian construction engineer , and wounded a dozen others .\tDT NN NN IN JJ NNP NNP VBD CD NNS NNS CC DT JJ NN NN , CC VBD DT NN NNS .\nAmong those wounded were 11 Afghan police and another Indian .\tIN DT VBN VBD CD JJ NNS CC DT NN .\nThe attack targeted a convoy carrying a group of Indian engineers in Nimroz province .\tDT NN VBD DT NN VBG DT NN IN JJ NNS IN NNP NN .\nAfghan police did not say who was behind the attack , but Taliban rebels have often been blamed for such attacks .\tJJ NNS VBD RB VB WP VBD IN DT NN , CC NNP NNS VBP RB VBN VBN IN JJ NNS .\nA resurgent Taliban movement and other Afghan rebel forces have stepped up their attacks against Afghan , U.S. and NATO forces over the past year .\tDT JJ NNP NN CC JJ JJ NN NNS VBP VBN RP PRP$ NNS IN JJ , NNP CC NNP NNS IN DT JJ NN .\nOn Wednesday , U.S. military officials in Afghanistan said a soldier and his Afghan interpreter were killed in a roadside bombing in the eastern province of Khost .\tIN NNP , NNP JJ NNS IN NNP VBD DT NN CC PRP$ JJ NN VBD VBN IN DT NN VBG IN DT JJ NN IN NNP .\nAnd Afghanistan 's Defense Ministry said Wednesday at least four militants were killed in separate incidents when bombs they were planting exploded prematurely .\tCC NNP POS NNP NNP VBD NNP IN JJS CD NNS VBD VBN IN JJ NNS WRB NNS PRP VBD VBG VBN RB .\nRebels in Sudan 's war-torn Darfur region say they have shot down an unmanned spy plane which , they say , the Sudanese government was using to track their positions .\tNNS IN NNP POS JJ NNP NN VBP PRP VBP VBN RP DT JJ NN NN WDT , PRP VBP , DT JJ NN VBD VBG TO VB PRP$ NNS .\nA spokesman for the Sudan Liberation Army said its forces shot down the unmanned drone Thursday in the central mountainous Jabel Marra area .\tDT NN IN DT NNP NNP NNP VBD PRP$ NNS VBD RP DT JJ NN NNP IN DT JJ JJ NNP NNP NN .\nA Sudanese army spokesman said an unmanned plane had made an emergency landing in the area , but was not able to say whether the aircraft was shot down .\tDT JJ NN NN VBD DT JJ NN VBD VBN DT NN NN IN DT NN , CC VBD RB JJ TO VB IN DT NN VBD VBN RB .\nRebels say the aircraft appears to be Chinese-made .\tNNS VBP DT NN VBZ TO VB JJ .\nRights groups criticize China for selling weapons to Sudan 's government which , they say , are used against rebels in Darfur .\tNNS NNS VBP NNP IN VBG NNS TO NNP POS NN WDT , PRP VBP , VBP VBN IN NNS IN NNP .\nMore than five years of fighting in Darfur among rebel groups , the government and government-allied militias have killed more than 2,00,000 people and displaced more than 2.5 million others .\tJJR IN CD NNS IN VBG IN NNP IN JJ NNS , DT NN CC JJ NNS VBP VBN RBR IN CD NNS CC VBN JJR IN CD CD NNS .\nIrish physicians have recorded what they believe is the country 's first case of the human variant of mad cow disease , a fatal brain-wasting illness .\tJJ NNS VBP VBN WP PRP VBP VBZ DT NN POS JJ NN IN DT JJ NN IN JJ NN NN , DT JJ JJ NN .\nPhysicians said Wednesday in Dublin that tests on a man in his early 20s have confirmed he is most likely suffering from variant Creutzfeldt-Jakob disease .\tNNS VBD NNP IN NNP WDT NNS IN DT NN IN PRP$ JJ NNS VBP VBN PRP VBZ RBS JJ NN IN JJ NNP NN .\nThe illness is the human form of the brain-wasting disease in cattle known as bovine spongiform encephalopathy .\tDT NN VBZ DT JJ NN IN DT JJ NN IN NNS VBN IN NN NN NN .\nPhysicians say humans usually contract the human form of the illness by eating contaminated beef .\tNNS VBP NNS RB NN DT JJ NN IN DT NN IN VBG VBN NN .\nThe illness has killed more than 100 people in Europe , most of them in Britain , since the mid-1990s .\tDT NN VBZ VBN JJR IN CD NNS IN NNP , JJS IN PRP IN NNP , IN DT NNS .\nThe only previous case in Ireland involved a young woman who had spent much of her time in Britain .\tDT JJ JJ NN IN NNP VBD DT JJ NN WP VBD VBN NN IN PRP$ NN IN NNP .\nIndian Prime Minister Manmohan Singh says there is an urgent need in India to counter a sense of alienation among its minority Muslims .\tJJ NNP NNP NNP NNP VBZ EX VBZ DT JJ NN IN NNP TO VB DT NN IN NN IN PRP$ NN NNS .\nHe told a meeting of state chief ministers in New Delhi that they should make sure that efforts to end Islamist militancy do not victimize the entire community .\tPRP VBD DT NN IN NN NN NNS IN NNP NNP IN PRP MD VB JJ IN NNS TO VB NNP NN VBP RB VB DT JJ NN .\nHe said no innocent person should be harassed in India 's struggle against terrorism .\tPRP VBD DT JJ NN MD VB VBN IN NNP POS NN IN NN .\nMr. Singh said any kind of insecurity among India 's 140 million Muslims could have extremely damaging effects on the country and fuel more terrorism .\tNNP NNP VBD DT NN IN NN IN NNP POS CD CD NNS MD VB RB JJ NNS IN DT NN CC VB JJR NN .\nHis remarks came less than two months after train bombings in Mumbai were blamed on domestic Islamist militants with links across the border in Pakistan .\tPRP$ NNS VBD JJR IN CD NNS IN NN NNS IN NNP VBD VBN IN JJ NN NNS IN NNS IN DT NN IN NNP .\nThe bomb attacks in Mumbai prompted police raids on the city 's Muslim ghettos and the detention of hundreds .\tDT NN NNS IN NNP VBD NN NNS IN DT NN POS NNP NNS CC DT NN IN NNS .\nU.S. and Brazilian media reports say police have arrested a key al-Qaida operative in the Brazilian city of Sao Paulo .\tNNP CC JJ NNS NNS VBP NNS VBP VBN DT NN NNP NN IN DT JJ NN IN NNP NNP .\nThe arrest was reported Tuesday by the Associated Press ( AP ) and Brazil 's daily newspaper , Folha de S. Paulo .\tDT NN VBD VBN NNP IN DT NNP NNP LRB NNP RRB CC NNP POS JJ NN , NNP NNP NNP NNP .\nThe suspect was not identified by name , nor was his nationality given .\tDT NN VBD RB VBN IN NN , CC VBD PRP$ NN VBN .\nBut the AP said a federal police spokeswoman confirmed the newspaper 's report that the suspect is a top player in al-Qaida 's international communications .\tCC DT NNP VBD DT JJ NN NN VBD DT NN POS NN IN DT NN VBZ DT JJ NN IN NNP POS JJ NNS .\nShe said the suspect is being held under laws that prohibit the promotion of racism in Brazil .\tPRP VBD DT NN VBZ VBG VBN IN NNS WDT VBP DT NN IN NN IN NNP .\nAn internet message bearing the signature of a group that says it has links to al-Qaida is threatening a ' bloody war ' against European countries unless they pull their troops out of Iraq within one month .\tDT NN NN VBG DT NN IN DT NN WDT VBZ PRP VBZ NNS TO NNP VBZ VBG DT `` JJ NN `` IN JJ NNS IN PRP VBP PRP$ NNS IN IN NNP IN CD NN .\nThe message , posted on an Islamist web site , says it speaks for the Abu-Hafs al-Masri Brigades , one of two groups whose signature appeared on statements claiming responsibility for the deadly July seventh bombings in London .\tDT NN , VBN IN DT JJ NN NN , VBZ PRP VBZ IN DT NNP NNP NNP , CD IN CD NNS WP$ NN VBD IN NNS VBG NN IN DT JJ NNP JJ NNS IN NNP .\nThe statement , which mentioned Denmark , Italy , Britain and the Netherlands , said there will be no other warnings after the one-month ultimatum expires .\tDT NN , WDT VBD NNP , NNP , NNP CC DT NNP , VBD EX MD VB DT JJ NNS IN DT JJ NN VBZ .\nExperts have viewed past statements by the Abu-Hafs al-Masri Brigades with doubt , because the group has no proven track record of attacks and has claimed responsibility for events in which it was unlikely to have played any role .\tNNS VBP VBN JJ NNS IN DT JJ JJ NNS IN NN , IN DT NN VBZ DT JJ NN NN IN NNS CC VBZ VBN NN IN NNS IN WDT PRP VBD JJ TO VB VBN DT NN .\nA U.S. official in Iraq says four American security guards have been killed in a suicide car bomb attack on a U.S. diplomatic convoy in the northern city of Mosul .\tDT NNP NN IN NNP VBZ CD JJ NN NNS VBP VBN VBN IN DT NN NN NN NN IN DT NNP JJ NN IN DT JJ NN IN NNP .\nThe official , who spoke on condition of anonymity , said two other guards were wounded in the attack on a three-vehicle diplomatic convoy , Tuesday .\tDT NN , WP VBD IN NN IN NN , VBD CD JJ NNS VBD VBN IN DT NN IN DT JJ JJ NN , NNP .\nMeanwhile , Britain has admitted that British troops in Basra used an armored vehicle to smash down a jail wall in a bid to free two detained undercover soldiers .\tRB , NNP VBZ VBN IN JJ NNS IN NNP VBD DT JJ NN TO VB RP DT NN NN IN DT NN TO VB CD JJ NN NNS .\nA Defense Ministry statement says the local British commander acted Monday because he feared the detained soldiers were being handed over to local Iraqi militia , which later proved to be correct .\tDT NNP NNP NN VBZ DT JJ JJ NN VBD NNP IN PRP VBD DT JJ NNS VBD VBG VBN IN TO JJ JJ NN , WDT RB VBD TO VB JJ .\nBritain says the soldiers were freed from a nearby house where they had been taken before the military action on the prison .\tNNP VBZ DT NNS VBD VBN IN DT JJ NN WRB PRP VBD VBN VBN IN DT JJ NN IN DT NN .\nIraqi police had detained the British undercover soldiers after a clash in the southern city .\tJJ NNS VBD VBN DT JJ NN NNS IN DT NN IN DT JJ NN .\nIraq 's controversial deputy Prime Minister Ahmad Chalabi is meeting with Secretary of State Condoleezza Rice Wednesday in Washington .\tNNP POS JJ NN NNP NNP NNP NNP VBZ VBG IN NNP IN NNP NNP NNP NNP IN NNP .\nThe meeting comes as Democratic U.S. lawmakers are asking Mr. Chalabi to discuss pre-war Iraq intelligence he provided about Saddam Hussein 's weapons that later proved faulty .\tDT NN VBZ IN JJ NNP NNS VBP VBG NNP NNP TO VB JJ NNP NN PRP VBD IN NNP NNP POS NNS WDT RB VBD NN .\nMr. Chalabi is also accused last year of passing U.S. intelligence to Iran , and in 2004 U.S. forces raided his Baghdad offices .\tNNP NNP VBZ RB VBN JJ NN IN VBG NNP NN TO NNP , CC IN CD NNP NNS VBD PRP$ NNP NNS .\nDespite the allegations , U.S. State Department spokesman Adam Ereli said Tuesday U.S. officials regularly meet with Mr. Chalabi in his capacity as a representative of Iraq 's government .\tIN DT NNS , NNP NNP NNP NN NNP NNP VBD NNP NNP NNS RB VBP IN NNP NNP IN PRP$ NN IN DT NN IN NNP POS NN .\nLater Wednesday , Mr. Chalabi delivers a speech at a conservative public policy organization , the American Enterprise Institute .\tRB NNP , NNP NNP VBZ DT NN IN DT JJ JJ NN NN , DT NNP NNP NNP .\nIt will be his first public speech in the United States in more than two years .\tPRP MD VB PRP$ JJ JJ NN IN DT NNP NNPS IN JJR IN CD NNS .\nSouth Korea 's foreign ministry says pirates , probably from Somalia , have hijacked an oil tanker .\tNNP NNP POS JJ NN VBZ NNS , RB IN NNP , VBP VBN DT NN NN .\nThe ministry says the tanker , the Samho Dream , was on its way from Iraq to the United States when it was seized Sunday off the coast of East Africa .\tDT NN VBZ DT NN , DT NNP NNP , VBD IN PRP$ NN IN NNP TO DT NNP NNPS WRB PRP VBD VBN NNP IN DT NN IN NNP NNP .\nIt says the ship has a crew of five South Koreans and 19 Filipinos .\tPRP VBZ DT NN VBZ DT NN IN CD NNP NNS CC CD NNS .\nSomali pirates have been especially active in recent weeks , taking advantage of good weather to hijack 16 ships since the beginning of March .\tJJ NNS VBP VBN RB JJ IN JJ NNS , VBG NN IN JJ NN TO VB CD NNS IN DT NN IN NNP .\nInternational naval forces have stopped numerous attacks and detained dozens of pirates .\tNN JJ NNS VBP VBN JJ NNS CC VBN NNS IN NNS .\nBut the forces can not fully cover the vast areas of the Indian Ocean and Gulf of Aden in which the pirates operate .\tCC DT NNS MD RB RB VB DT JJ NNS IN DT NNP NNP CC NNP IN NNP IN WDT DT NNS VBP .\nPirates usually release the hijacked ships and their crews unharmed after receiving a ransom , sometimes worth millions of dollars .\tNNS RB VBP DT JJ NNS CC PRP$ NNS VBN IN VBG DT NN , RB JJ NNS IN NNS .\nTurkey 's parliament has approved sending military forces to join a United Nations peacekeeping mission in Lebanon .\tNNP POS NN VBZ VBN VBG JJ NNS TO VB DT NNP NNP VBG NN IN NNP .\nPrime Minister Recep Tayyip Erdogan had urged support for the mission following a cease-fire between Israel and the Lebanese group Hezbollah .\tNNP NNP NNP NNP NNP VBD VBN NN IN DT NN VBG DT NN IN NNP CC DT JJ NN NNP .\nLawmakers voted 340 to 192 to approve the deployment Tuesday .\tNNS VBD CD TO CD TO VB DT NN NNP .\nTurkish officials say they will send nearly 1,000 military personnel to conduct naval patrols off Lebanon and to help train Lebanese troops .\tJJ NNS VBP PRP MD VB RB CD JJ NNS TO VB JJ NNS IN NNP CC TO VB VB JJ NNS .\nBefore the vote , thousands of people rallied outside the parliament building in Ankara to protest the mission .\tIN DT NN , NNS IN NNS VBD IN DT NN NN IN NNP TO VB DT NN .\nU.N. Secretary-General Kofi Annan arrived in Ankara today for talks on the U.N. force .\tNNP NNP NNP NNP VBD IN NNP NN IN NNS IN DT NNP NN .\nTurkey is the second Muslim country , after Qater , to commit troops to the expanded force .\tNNP VBZ DT JJ NNP NN , IN NNP , TO VB NNS TO DT VBN NN .\nMilitants in Saudi Arabia have attacked the U.S. Consulate in the port city of Jeddah with machine guns and explosives .\tNNS IN NNP NNP VBP VBN DT NNP NN IN DT JJ NN IN NNP IN NN NNS CC NNS .\nAuthorities say at least four Saudi security guards and three of the attackers are dead .\tNNS VBP IN JJS CD JJ NN NNS CC CD IN DT NNS VBP JJ .\nA Saudi Interior Ministry statement said militants launched the late-morning attack with explosives aimed at the main gate of the heavily-fortified U.S. compound .\tDT JJ NNP NNP NN VBD NNS VBD DT JJ NN IN NNS VBN IN DT JJ NN IN DT JJ NNP NN .\nTwo gunmen were reported in custody and officials say security forces had regained control of the compound by mid-afternoon .\tCD NNS VBD VBN IN NN CC NNS VBP NN NNS VBD VBN NN IN DT NN IN NN .\nThere has been no claim of responsibility .\tEX VBZ VBN DT NN IN NN .\nThe attack is the latest in a series of assaults targeting foreigners in the kingdom over the past 18 months .\tDT NN VBZ DT JJS IN DT NN IN NNS VBG NNS IN DT NN IN DT JJ CD NNS .\nThe U.S. State Department has issued a series of travel warnings in the past year , urging all non-essential Americans to leave the country .\tDT NNP NNP NNP VBZ VBN DT NN IN NN NNS IN DT JJ NN , VBG DT JJ NNS TO VB DT NN .\nThe U.S. military says nearly two dozen militants were killed during a rare frontal attack on a U.S. base in southern Afghanistan .\tDT NNP NN VBZ RB CD NN NNS VBD VBN IN DT JJ JJ NN IN DT NNP NN IN JJ NNP .\nA statement from the U.S. led coalition says a group of 75 Taleban militants tried to overrun the base in southern Uruzgan province earlier Tuesday .\tDT NN IN DT NNP VBD NN VBZ DT NN IN CD NNP NNS VBD TO VB DT NN IN JJ NNP NN JJR NNP .\nThe statement says Afghan and U.S. forces backed by air support repelled the attack , killing more than 20 militants .\tDT NN VBZ JJ CC NNP NNS VBN IN NN NN VBD DT NN , VBG JJR IN CD NNS .\nTwo Afghan girls and two Afghan soldiers were wounded .\tCD JJ NNS CC CD JJ NNS VBD VBN .\nViolence has surged in Afghanistan over the past year and half as suspected Taleban militants have stepped up suicide attacks and roadside bombings .\tNN VBZ VBN IN NNP IN DT JJ NN CC NN IN JJ NNP NNS VBP VBN RP NN NNS CC NN NNS .\nMore than 50,000 NATO and U.S. forces are battling the renewed insurgency in their strongholds in southern and eastern Afghanistan .\tJJR IN CD NNP CC NNP NNS VBP VBG DT VBN NN IN PRP$ NNS IN JJ CC JJ NNP .\nA South Korean newspaper reports that a North Korean spy entered the South in 2003 by pretending to be an asylum-seeker .\tDT JJ JJ NN VBZ IN DT JJ JJ NN VBD DT NNP IN CD IN VBG TO VB DT NN .\nSouth Korea 's JoongAng Ilbo reports the North Korean joined a group of refugees who entered the South Korean Embassy in Beijing in 2002 .\tNNP NNP POS NNP NNP VBZ DT NNP JJ VBD DT NN IN NNS WP VBD DT NNP JJ NNP IN NNP IN CD .\nThe newspaper says he spent more than a year in South Korea , collecting information on Seoul 's handling of refugees .\tDT NN VBZ PRP VBD JJR IN DT NN IN NNP NNP , VBG NN IN NNP POS NN IN NNS .\nOfficials in Seoul say the man returned to North Korea in April , then came back to the South a month later , where he surrendered to authorities .\tNNS IN NNP VBP DT NN VBD TO NNP NNP IN NNP , RB VBD RB TO DT NNP DT NN RB , WRB PRP VBD TO NNS .\nSouth Korea 's Yonhap news agency quotes government officials as saying they are investigating the 28-year-old on suspicion of spying for North Korea , but they doubt he actually conveyed any sensitive information .\tNNP NNP POS NNP NN NN VBZ NN NNS IN VBG PRP VBP VBG DT JJ IN NN IN VBG IN NNP NNP , CC PRP VBP PRP RB VBD DT JJ NN .\nAfghan officials say Taliban militants killed 11 policemen late Sunday , while two NATO soldiers died in a separate incident in the southern Afghan province of Kandahar .\tJJ NNS VBP NNP NNS VBD CD NNS JJ NNP , IN CD NNP NNS VBD IN DT JJ NN IN DT JJ JJ NN IN NNP .\nThe local deputy police chief , Amanullah Khan , says Taliban militants opened fire on a group of sleeping policemen at a remote checkpoint in Kandahar 's Arghandab district .\tDT JJ NN NN NN , NNP NNP , VBZ NNP NNS VBD NN IN DT NN IN VBG NNS IN DT JJ NN IN NNP POS NNP NN .\nHe said preliminary reports indicate that one of the policemen had links with the Taliban .\tPRP VBD JJ NNS VBP IN CD IN DT NNS VBD NNS IN DT NNP .\nMeanwhile , the British Defense Ministry confirmed that two Royal Air Force servicemen were killed when their vehicle hit an explosive device .\tRB , DT NNP NNP NNP VBD IN CD NNP NNP NNP NNS VBD VBN WRB PRP$ NN VBD DT JJ NN .\nNATO 's International Security Assistance Force says two other British soldiers were wounded in the blast Sunday .\tNNP POS NNP NNP NNP NNP VBZ CD JJ JJ NNS VBD VBN IN DT NN NNP .\nThe ISAF did not disclose the exact location of the incident .\tDT NNP VBD RB VB DT JJ NN IN DT NN .\nThe Taliban ambush was the latest in a series of recent attacks on Afghan police in the south .\tDT NNP NN VBD DT JJS IN DT NN IN JJ NNS IN JJ NNS IN DT NN .\nEight police officers were killed Saturday in Kandahar and neighboring Helmand Provinces by the militant group .\tCD NN NNS VBD VBN NNP IN NNP CC JJ NNP NNS IN DT JJ NN .\nPolice in Iran say a fire at a mosque in central Tehran has killed at least 59 people and injured more than 200 others .\tNNS IN NNP VBP DT NN IN DT NN IN JJ NNP VBZ VBN IN JJS CD NNS CC VBN JJR IN CD NNS .\nIranian state media said a faulty electrical heater sparked the blaze as crowds gathered in the Arg Mosque for a major Shi'ite religious festival , Ashura .\tJJ NN NNS VBD DT JJ JJ NN VBD DT NN IN NNS VBD IN DT NNP NNP IN DT JJ NNP JJ NN , NNP .\nEyewitnesses said panicked crowds rushed for the exits and some people jumped through windows to escape the flames .\tNNS VBD JJ NNS VBD IN DT NNS CC DT NNS VBD IN NNS TO VB DT NNS .\nOfficials in Washington and New York say they have uncovered efforts by a Chinese company to sell Iran banned materials that could be used in Tehran 's missile and nuclear programs .\tNNS IN NNP CC NNP NNP VBP PRP VBP VBN NNS IN DT JJ NN TO VB NNP VBD NNS WDT MD VB VBN IN NNP POS NN CC JJ NNS .\nTuesday , the Manhattan ( New York City ) prosecutor unsealed a multi-count indictment against China-based LIMMT Economic and Trade company and Li Fang Wei , one of the firm 's managers .\tNNP , DT NNP LRB NNP NNP NNP RRB NN VBD DT JJ NN IN JJ NNP NNP CC NNP NN CC NNP NNP NNP , CD IN DT NN POS NNS .\nProsecutors allege that the Chinese company used shell ( fake ) companies and aliases to circumvent laws that prevent U.S. banks from processing transactions for certain Iranian weapons companies .\tNNS VBP IN DT JJ NN VBD NN LRB NN RRB NNS CC NNS TO VB NNS WDT VBP NNP NNS IN VBG NNS IN JJ JJ NNS NNS .\nAt about the same time Tuesday , the U.S. Treasury imposed sanctions on six Iranian companies and one Chinese person in connection with the same case .\tIN IN DT JJ NN NNP , DT NNP NNP VBD NNS IN CD JJ NNS CC CD JJ NN IN NN IN DT JJ NN .\nThe foreign minister of Chad has called on wealthy nations to help poor countries reduce poverty and advance social and economic progress .\tDT JJ NN IN NNP VBZ VBN IN JJ NNS TO VB JJ NNS VBP NN CC NN JJ CC JJ NN .\nIn comments at the United Nations World Summit , llam-Mi Ahmad also appealed for fair trade laws and total debt relief for African nations .\tIN NNS IN DT NNP NNP NNP NNP , NNP NNP RB VBD IN JJ NN NNS CC JJ NN NN IN JJ NNS .\nHe pledged ongoing cooperation with neighboring African countries that face the threat of terrorism .\tPRP VBD JJ NN IN JJ JJ NNS WDT VBP DT NN IN NN .\nHe also made an impassioned plea for international assistance in resolving the conflict in Sudan 's western Darfur region .\tPRP RB VBD DT JJ NN IN JJ NN IN VBG DT NN IN NNP POS JJ NNP NN .\nOver the last two years , at least 2,00,000 Sudanese refugees from Darfur have fled across the border into Chad .\tIN DT JJ CD NNS , IN JJS CD JJ NNS IN NNP VBP VBN IN DT NN IN NNP .\nMr. Ahmad said Chad has helped efforts to mediate the crisis and has taken on the refugees with great cost to its environment , food supply and the constant threat of ongoing violence among the various combatants .\tNNP NNP VBD NNP VBZ VBN NNS TO VB DT NN CC VBZ VBN IN DT NNS IN JJ NN TO PRP$ NN , NN NN CC DT JJ NN IN JJ NN IN DT JJ NNS .\nThe United Nations has hailed a decision by Pakistan to postpone the purchase of fighter jets from Washington in order to provide more relief to earthquake victims as the Himalayan winter approaches .\tDT NNP NNP VBZ VBN DT NN IN NNP TO VB DT NN IN NN NNS IN NNP IN NN TO VB JJR NN TO NN NNS IN DT NNP NN NNS .\nU.N. Emergency Coordinator Jan Vandemoortele says such moves are helpful as U.N. officials work hard to secure more funding for humanitarian aid for victims of the quake .\tNNP NNP NNP NNP NNP VBZ JJ NNS VBP JJ IN NNP NNS VBP JJ TO VB JJR NN IN JJ NN IN NNS IN DT NN .\nOfficials say hundreds of thousands risk death or illness without tents , food and other supplies .\tNNS VBP NNS IN NNS NN NN CC NN IN NNS , NN CC JJ NNS .\nFriday , British Cabinet minister Hilary Benn said the world 's response to the large-scale disaster was not enough .\tNNP , JJ NNP NN NNP NNP VBD DT NN POS NN TO DT JJ NN VBD RB RB .\nEarlier , Pakistan President Pervez Musharraf criticized the level of international aid , saying more was given to victims of the tsunami in Asia and Hurricane Katrina in the United States .\tRB , NNP NNP NNP NNP VBD DT NN IN JJ NN , VBG RBR VBD VBN TO NNS IN DT NN IN NNP CC NNP NNP IN DT NNP NNPS .\nMore than 73,000 Pakistanis died and more than three million people have been left homeless by the October 8 earthquake .\tJJR IN CD NNS VBD CC JJR IN CD CD NNS VBP VBN VBN JJ IN DT NNP CD NN .\nInsurgents have killed at least 11 people in attacks across Iraq .\tNNS VBP VBN IN JJS CD NNS IN NNS IN NNP .\nIn the deadliest attack , a roadside bomb killed a police officer and his four children in Tikrit .\tIN DT JJS NN , DT NN NN VBD DT NN NN CC PRP$ CD NNS IN NNP .\nAnother roadside bomb killed at least one person in Kirkuk .\tDT NN NN VBD IN JJS CD NN IN NNP .\nIn Baghdad , a suicide car bomber killed four people , included two police officers .\tIN NNP , DT NN NN NN VBD CD NNS , VBD CD NNS NNS .\nOther attacks across the city wounded five U.S. soldiers .\tJJ NNS IN DT NN VBD CD NNP NNS .\nAnd in Baquba , a police officer was killed in a drive-by shooting .\tCC IN NNP , DT NN NN VBD VBN IN DT JJ NN .\nMeanwhile , the U.S. military says soldiers killed two suspected members of al-Qaida in Iraq and detained 22 others during raids in Mosul and Ramadi .\tRB , DT NNP NN VBZ NNS VBD CD JJ NNS IN NNP IN NNP CC VBD CD NNS IN NNS IN NNP CC NNP .\nThe violence comes after Iraq 's Independent Electoral Commission said it found no serious election fraud in Iraq 's recent constitutional referendum .\tDT NN VBZ IN NNP POS NNP NNP NNP VBD PRP VBD DT JJ NN NN IN NNP POS JJ JJ NN .\nOfficial results have not yet been announced .\tJJ NNS VBP RB RB VBN VBN .\nofficials are searching for survivors in a turbulent river from a ferry that capsized and killed at least 20 people .\tNNS VBP VBG IN NNS IN DT JJ NN IN DT NN WDT VBD CC VBD IN JJS CD NNS .\nOfficials say more than 100 people were on the ferry when it overturned Saturday in a river in the eastern Indian state of West Bengal .\tNNS VBP JJR IN CD NNS VBD IN DT NN WRB PRP VBD NNP IN DT NN IN DT JJ JJ NN IN NNP NNP .\nOfficials say about 50 passengers have been rescued and sent to the hospital .\tNNS VBP IN CD NNS VBP VBN VBN CC VBN TO DT NN .\nDozens of others were missing .\tNNS IN NNS VBD VBG .\nAuthorities say the boat 's maximum capacity was 60 people , but it was badly overloaded .\tNNS VBP DT NN POS NN NN VBD CD NNS , CC PRP VBD RB VBN .\nOfficials say most of the passengers were Muslims returning to the town of Kakdwip after attending a religious festival .\tNNS VBP JJS IN DT NNS VBD NNPS VBG TO DT NN IN NNP IN VBG DT JJ NN .\nTaiwan has asked internet search company Google to stop calling it a province of China on its maps .\tNNP VBZ VBN JJ NN NN NNP TO VB VBG PRP DT NN IN NNP IN PRP$ NNS .\nA Taiwan foreign ministry spokesman said Tuesday that the ministry has asked Google to correct the description .\tDT NNP JJ NN NN VBD NNP IN DT NN VBZ VBN NNP TO VB DT NN .\nTaiwan says it is a sovereign , independent state officially called the Republic of China .\tNNP VBZ PRP VBZ DT NN , JJ NN RB VBN DT NNP IN NNP .\nChina views Taiwan as a breakaway province and has threatened to attack the island if it pushes for formal statehood .\tNNP VBZ NNP IN DT NN NN CC VBZ VBN TO VB DT NN IN PRP VBZ IN JJ NN .\nThe two split in a civil war that ended in 1949 .\tDT CD NN IN DT JJ NN WDT VBD IN CD .\nA new public opinion poll indicates Americans are becoming increasingly dissatisfied with the course of the war in Iraq .\tDT JJ JJ NN NN VBZ NNS VBP VBG RB JJ IN DT NN IN DT NN IN NNP .\nIn a poll conducted by CNN , USA Today , and the Gallup organization , one-third of those surveyed said the United States should withdraw all troops from Iraq .\tIN DT NN VBN IN NNP , NNP NNP , CC DT NNP NN , NN IN DT VBN VBD DT NNP NNPS MD VB DT NNS IN NNP .\nThat is the highest percentage calling for a full withdrawal since Gallup began asking the question in August 2003 .\tDT VBZ DT JJS NN NN IN DT JJ NN IN NNP VBD VBG DT NN IN NNP CD .\nThe poll of 1004 adults , taken Friday through Sunday , also found that 57 percent of Americans feel the war has made them ' less safe ' from terrorism .\tDT NN IN CD NNS , VBN NNP IN NNP , RB VBD IN CD NN IN NNS VBP DT NN VBZ VBN PRP `` RBR JJ `` IN NN .\nFifty-four percent of those surveyed said the United States made a mistake in sending troops to Iraq , up from 46 percent in July .\tCD NN IN DT VBN VBD DT NNP NNPS VBD DT NN IN VBG NNS TO NNP , RB IN CD NN IN NNP .\nPresident Bush 's overall approval rating was 45 percent , among the lowest ratings of his presidency .\tNNP NNP POS JJ NN NN VBD CD NN , IN DT JJS NNS IN PRP$ NN .\nVenezuela 's President Hugo Chavez has begun a three-day visit to Syria by announcing that the two countries are united against what he called ' U.S. imperialism . '\tNNP POS NNP NNP NNP VBZ VBN DT JJ NN TO NNP IN VBG IN DT CD NNS VBP VBN IN WP PRP VBD `` NNP NN . ``\nMr. Chavez and Syrian President Bashar Al-Assad met Wednesday in Damascus to discuss bilateral cooperation .\tNNP NNP CC JJ NNP NNP NNP VBD NNP IN NNP TO VB JJ NN .\nMr. Al-Assad stressed that the two countries have very close positions on international issues .\tNNP NNP VBD IN DT CD NNS VBP RB JJ NNS IN JJ NNS .\nSupport for Mr. Chavez in the Arab world has soared since Venezuela withdrew its ambassador to Israel at the start of the Israeli military offensive in Lebanon .\tNN IN NNP NNP IN DT JJ NN VBZ VBN IN NNP VBD PRP$ NN TO NNP IN DT NN IN DT JJ JJ NN IN NNP .\nThe Venezuelan president called Israel 's attacks against Hezbollah ' genocide . '\tDT JJ NN VBD NNP POS NNS IN NNP `` NN . ``\nIn response , Israel recalled its own ambassador from Venezuela .\tIN NN , NNP VBD PRP$ JJ NN IN NNP .\nMr. Chavez has accused Washington of plotting against him and his government , something U.S. officials deny .\tNNP NNP VBZ VBN NNP IN VBG IN PRP CC PRP$ NN , DT NNP NNS VBP .\nTaiwan President Chen Shui-bian has resigned as head of his Democratic Progressive Party , after the party and its allies suffered a major defeat in Saturday 's parliamentary election .\tNNP NNP NNP NNP VBZ VBN IN NN IN PRP$ JJ NNP NNP , IN DT NN CC PRP$ NNS VBD DT JJ NN IN NNP POS JJ NN .\nAn opposition alliance , led by the Nationalists , won 114 seats in the 225-member chamber .\tDT NN NN , VBN IN DT NNPS , VBD CD NNS IN DT JJ NN .\nMr. Chen 's coalition won 101 seats .\tNNP NNP POS NN VBD CD NNS .\nMr. Chen told reporters\tNNP NNP VBD NNS\nTuesday that he takes full blame for the coalition 's defeat and will leave his party leadership post as a result .\tNNP IN PRP VBZ JJ NN IN DT NN POS NN CC MD VB PRP$ NN NN NN IN DT NN .\nObservers say the election deals a setback to President Chen 's drive to move Taiwan toward an identity apart from mainland China .\tNNS VBP DT NN VBZ DT NN TO NNP NNP POS NN TO VB NNP IN DT NN RB IN JJ NNP .\nChina considers Taiwan a renegade province and has threatened to seize the island by force if it makes moves toward independence .\tNNP VBZ NNP DT NN NN CC VBZ VBN TO VB DT NN IN NN IN PRP VBZ NNS IN NN .\nPolice in the Nepalese capital , Kathmandu , have used batons to disperse student protesters who are demanding that their jailed leaders be released .\tNNS IN DT JJ NN , NNP , VBP VBN NNS TO VB NN NNS WP VBP VBG IN PRP$ JJ NNS VB VBN .\nWitnesses say students retaliated by throwing bricks at police .\tNNS VBP NNS VBN IN VBG NNS IN NN .\nAt least six demonstrators were injured during Monday 's skirmishes .\tIN JJS CD NNS VBD VBN IN NNP POS NNS .\nThe student leaders were jailed for staging demonstrations against King Gyanendra 's seizure of absolute power , and for demanding the restoration of democracy .\tDT NN NNS VBD VBN IN NN NNS IN NNP NNP POS NN IN JJ NN , CC IN VBG DT NN IN NN .\nThe king says he needed to seize full political power to curb corruption and quell a Maoist insurgency that has claimed more than 11,000 lives .\tDT NN VBZ PRP VBD TO VB JJ JJ NN TO VB NN CC VB DT NN NN WDT VBZ VBN JJR IN CD NNS .\nThe rebels , who claim to be inspired by Chinese revolutionary Mao Zedong , have been fighting since 1996 to replace the constitutional monarchy in the world 's only Hindu kingdom with a communist state .\tDT NNS , WP VBP TO VB VBN IN JJ JJ NNP NNP , VBP VBN VBG IN CD TO VB DT JJ NN IN DT NN POS JJ NNP NN IN DT JJ NN .\nIsraeli forces have killed three Palestinians Thursday as they pressed on with a three-week offensive in the Gaza Strip .\tJJ NNS VBP VBN CD NNS NNP IN PRP VBD IN IN DT JJ NN IN DT NNP NNP .\nPalestinian officials say Israeli air strikes on the Maghazi refugee camp in central Gaza killed two people today .\tJJ NNS VBP JJ NN NNS IN DT NNP NN NN IN JJ NNP VBD CD NNS NN .\nAnother Palestinian was killed during fighting between Israel and militants in the camp .\tDT NN VBD VBN IN VBG IN NNP CC NNS IN DT NN .\nAt least 100 Palestinians have been killed since Israel 's Gaza offensive began in late June .\tIN JJS CD NNS VBP VBN VBN IN NNP POS NNP NN VBD IN JJ NNP .\nAt United Nations headquarters in New York today , Secretary-General Kofi Annan called for an immediate ceasefire in the Israeli-Palestinian conflict .\tIN NNP NNP NN IN NNP NNP NN , JJ NNP NNP VBD IN DT JJ NN IN DT JJ NN .\nHe said the international community must address the Israeli-Palestinian issue boldly .\tPRP VBD DT JJ NN MD VB DT JJ NN RB .\nIsrael began its offensive in Gaza after militants captured an Israeli soldier ( Corporal Gilad Shalit ) in a cross-border raid .\tNNP VBD PRP$ NN IN NNP IN NNS VBD DT JJ NN LRB NNP NNP NNP RRB IN DT JJ NN .\nIt says it will continue the operation until the soldier is released and Palestinian militants stop firing rockets at Israel from Gaza .\tPRP VBZ PRP MD VB DT NN IN DT NN VBZ VBN CC JJ NNS VBP VBG NNS IN NNP IN NNP .\nA new report issued by the South African government indicates more than six million people in the country are HIV-positive , a much higher figure than previously thought .\tDT JJ NN VBN IN DT JJ JJ NN VBZ JJR IN CD CD NNS IN DT NN VBP JJ , DT RB JJR NN IN RB VBN .\nThe Department of Health says a study of women at pre-natal clinics in 2004 suggests that about six and a half million South Africans carry the virus that causes AIDS .\tDT NNP IN NNP VBZ DT NN IN NNS IN JJ NNS IN CD VBZ IN IN CD CC DT NN CD NNP NNS VBP DT NN WDT VBZ NNP .\nThe figures are in marked contrast to a study earlier this year by the State Statistical Agency , which estimated that about four and a half million South Africans are infected with HIV .\tDT NNS VBP IN JJ NN TO DT NN RBR DT NN IN DT NNP NNP NNP , WDT VBD IN IN CD CC DT NN CD NNP NNS VBP VBN IN NNP .\nBusiness Day newspaper quotes the Health Department 's head of health monitoring and evaluation , Lindy Makubalo as saying the variation in estimates is due to differences in methodology .\tNNP NNP NN VBZ DT NNP NNP POS NN IN NN NN CC NN , NNP NNP IN VBG DT NN IN NNS VBZ JJ TO NNS IN NN .\nShe says the Health Department follows methodology developed by the United Nations .\tPRP VBZ DT NNP NNP VBZ NN VBN IN DT NNP NNPS .\nThe Venezuelan government says it is investigating allegations that some members of the navy passed state secrets to the U.S. Defense Department .\tDT JJ NN VBZ PRP VBZ VBG NNS IN DT NNS IN DT NN VBD NN NNS TO DT NNP NNP NNP .\nVenezuelan Vice President Jose Vicente Rangel says some low-level officials were caught passing information to the Pentagon .\tJJ NNP NNP NNP NNP NNP VBZ DT JJ NNS VBD VBN VBG NN TO DT NNP .\nHe said some suspects have been detained and that others have left the country .\tPRP VBD DT NNS VBP VBN VBN CC IN NNS VBP VBN DT NN .\nThe suspects include active and retired members of Venezuela 's navy .\tDT NNS VBP JJ CC JJ NNS IN NNP POS NN .\nVenezuelan authorities also allege U.S. Embassy involvement in the affair .\tJJ NNS RB VBP NNP NNP NN IN DT NN .\nThe attorney for one suspect told reporters a U.S. naval attache has been mentioned as a possible link between the Venezuelan officers and United States .\tDT NN IN CD NN VBD NNS DT NNP JJ NN VBZ VBN VBN IN DT JJ NN IN DT JJ NNS CC NNP NNPS .\nU.S. officials say they have not been contacted by the Venezuelan government about the matter .\tNNP NNS VBP PRP VBP RB VBN VBN IN DT JJ NN IN DT NN .\nThe U.S. ambassador in Caracas , William Brownfield , told local media that when the Venezuelan government presents the U.S. with notification , officials will respond .\tDT NNP NN IN NNP , NNP NNP , VBD JJ NNS WDT WRB DT JJ NN VBZ DT NNP IN NN , NNS MD VB .\nThe central African nation of Chad has asked the African Union to condemn Sudan for its alleged support of Chadian rebels .\tDT JJ JJ NN IN NNP VBZ VBN DT NNP NNP TO VB NNP IN PRP$ JJ NN IN JJ NNS .\nChad 's president , Idriss Deby , made the appeal Tuesday during a meeting with Nigerian President and AU chairman Olesgun Obasanjo at his residence outside Lagos .\tNNP POS NN , NNP NNP , VBD DT NN NNP IN DT NN IN JJ NNP CC NNP NN NNP NNP IN PRP$ NN IN NNP .\nChad says Sudan harbors and supports the anti-Deby rebels who attacked the eastern Chadian town of Adre earlier this month .\tNNP VBZ NNP NNS CC VBZ DT JJ NNS WP VBD DT JJ JJ NN IN NNP RBR DT NN .\nSudan has denied the accusations .\tNNP VBZ VBN DT NNS .\nEarlier , President Deby accused Sudan of planning another attack , saying the Sudanese military has deployed 50 armored vehicles to the town of Geneina near the Chad-Sudan border .\tRB , NNP NNP VBD NNP IN VBG DT NN , VBG DT JJ NN VBZ VBN CD JJ NNS TO DT NN IN NNP IN DT JJ NN .\nHe said Sudan 's actions could destabilize other states in the region , including the Central African Republic .\tPRP VBD NNP POS NNS MD VB JJ NNS IN DT NN , VBG DT NNP NNP NNP .\nThe African Union has sent delegations to both countries ' capitals in an effort to defuse the rising tensions .\tDT NNP NNP VBZ VBN NNS TO DT NNS POS NNS IN DT NN TO VB DT VBG NNS .\nFlash floods sweeping through parts of Kenya have killed at least 20 people and left thousands of others homeless .\tNNP NNS VBG IN NNS IN NNP VBP VBN IN JJS CD NNS CC VBD NNS IN NNS JJ .\nThe floods are the result of torrential rains that have eased Kenya 's long drought but are making life miserable for people who live near rivers and in flood-prone areas .\tDT NNS VBP DT NN IN JJ NNS WDT VBP VBN NNP POS JJ NN CC VBP VBG NN JJ IN NNS WP VBP IN NNS CC IN JJ NNS .\nThe Kenyan Red Cross says some 30,000 people are in need of relief aid after water washed away homes , killed livestock , and destroyed crops .\tDT JJ NNP NNP VBZ DT CD NNS VBP IN NN IN NN NN IN NN VBD RB NNS , VBD NN , CC VBD NNS .\nThe hardest-hit areas appear to be in western Rift Valley province .\tDT JJ NNS VBP TO VB IN JJ NNP NNP NN .\nKenyan newspapers report deaths and especially heavy flooding in the Turkana East area and in the southwestern villages of Rongai , Marigat , and Mogotio .\tJJ NNS VBP NNS CC RB JJ NN IN DT NNP NNP NN CC IN DT JJ NNS IN NNP , NNP , CC NNP .\nRelief agencies and Kenyan officials say the number of casualties may rise as the rains are expected to continue for days or weeks to come .\tNN NNS CC JJ NNS VBP DT NN IN NNS MD VB IN DT NNS VBP VBN TO VB IN NNS CC NNS TO VB .\nThe leader of the Palestinian Islamist group Hamas is warning of a new uprising against Israel if an agreement for a Palestinian state is not reached in six months .\tDT NN IN DT JJ NNP NN NNP VBZ VBG IN DT JJ NN IN NNP IN DT NN IN DT JJ NN VBZ RB VBN IN CD NNS .\nIn Egypt Saturday , Khaled Meshaal said Western nations should help negotiate a Palestinian state based on borders that existed before the 1967 Middle East War .\tIN NNP NNP , NNP NNP VBD JJ NNS MD VB VB DT JJ NN VBN IN NNS WDT VBD IN DT CD NNP NNP NNP .\nHe said Palestinians and Arab states agree on the borders which would include the West Bank and Gaza Strip in a future Palestinian state .\tPRP VBD NNS CC JJ NNS VBP IN DT NNS WDT MD VB DT NNP NNP CC NNP NNP IN DT JJ JJ NN .\nIsrael rejects the pre-war borders as the basis for a peace settlement .\tNNP VBZ DT JJ NNS IN DT NN IN DT NN NN .\nMeshaal has been meeting Egyptian officials in Cairo to discuss forming a Palestinian unity government .\tNNP VBZ VBN VBG JJ NNS IN NNP TO VB VBG DT JJ NN NN .\nThey also are discussing negotiations for the release of an Israeli soldier kidnapped by Hamas militants .\tPRP RB VBP VBG NNS IN DT NN IN DT JJ NN VBN IN NNP NNS .\nEgyptian mediators are to fly to Israel for talks in the coming days .\tJJ NNS VBP TO VB TO NNP IN NNS IN DT JJ NNS .\nIsrael 's Defense minister says Israeli troops will withdraw from Palestinian cities for 72 hours during January 's Palestinian presidential election .\tNNP POS NN NN VBZ JJ NNS MD VB IN JJ NNS IN CD NNS IN NNP POS JJ JJ NN .\nDefense Minister Shaul Mofaz says troops will be absent from cities in the Palestinian territories from the day before the vote through the day after to help ensure the election goes smoothly .\tNNP NNP NNP NNP VBZ NNS MD VB JJ IN NNS IN DT JJ NNS IN DT NN IN DT NN IN DT NN IN TO VB VB DT NN VBZ RB .\nEarlier , Israeli Prime Minister Ariel Sharon said any talks with Palestinian leaders depend on whether they can stop militant attacks such as the huge explosion in Gaza Sunday that killed five Israeli soldiers and wounded five others .\tRB , JJ NNP NNP NNP NNP VBD DT NNS IN JJ NNS VBP IN IN PRP MD VB JJ NNS JJ IN DT JJ NN IN NNP NNP WDT VBD CD JJ NNS CC VBD CD NNS .\nMr. Sharon said Monday Israel wants to move toward peace , but sees no corresponding movement by the Palestinian side .\tNNP NNP VBD NNP NNP VBZ TO VB IN NN , CC VBZ DT JJ NN IN DT JJ NN .\nTwo Palestinian militant groups , Hamas and the Fatah Hawks , have claimed responsibility for detonating more than a ton of explosives in a tunnel beneath an Israeli army post .\tCD JJ JJ NNS , NNP CC DT NNP NNP , VBP VBN NN IN VBG JJR IN DT NN IN NNS IN DT NN IN DT JJ NN NN .\nBolivian President Carlos Mesa , who submitted his resignation Monday , has urged Congress to hold new elections as soon as possible to end weeks violent protests .\tJJ NNP NNP NNP , WP VBD PRP$ NN NNP , VBZ VBN NNP TO VB JJ NNS RB RB IN JJ TO VB NNS JJ NNS .\nMr. Mesa 's late night televised address came after tens of thousands of peasants and miners marched in La Paz Tuesday , demanding nationalization of the country 's oil and gas industry .\tNNP NNP POS JJ NN VBN NN VBD IN NNS IN NNS IN NNS CC NNS VBD IN NNP NNP NNP , VBG NN IN DT NN POS NN CC NN NN .\nThe president offered to resign late Monday in the wake of the growing unrest , saying he could no longer lead the poor Andean nation .\tDT NN VBD TO VB JJ NNP IN DT NN IN DT VBG NN , VBG PRP MD RB RB VB DT JJ JJ NN .\nBolivia 's Congress is expected to consider his offer to resign this week .\tNNP POS NNP VBZ VBN TO VB PRP$ NN TO VB DT NN .\nHis offer to step down earlier this year was rejected by lawmakers .\tPRP$ NN TO VB RB RBR DT NN VBD VBN IN NNS .\nPoliticians , foreign troops and aid workers are all working in Sri Lanka 's tsunami ravaged areas to get the rebuilding effort into full swing .\tNNPS , JJ NNS CC NN NNS VBP DT VBG IN NNP NNP POS NN VBD NNS TO VB DT NN NN IN JJ NN .\nA few dozen of the roughly 600 U.S. military personnel in Sri Lanka , are here at a primary middle school outside Galle .\tDT JJ NN IN DT RB CD NNP JJ NNS IN NNP NNP , VBP RB IN DT JJ JJ NN IN NNP .\nThey are using bulldozers , dump trucks and sometimes sledge hammers to demolish school buildings left structurally unsound by the tsunami .\tPRP VBP VBG NNS , NN NNS CC RB JJ NNS TO VB NN NNS VBD RB JJ IN DT NN .\nIn other parts of the area , U.S. Navy Seabees ( engineers and construction workers ) are distributing fresh water to camps for people left homeless .\tIN JJ NNS IN DT NN , NNP NNP NNS LRB NNS CC NN NNS RRB VBP VBG JJ NN TO NNS IN NNS VBN NN .\nPoliticians , including the prime minister and the former prime minister , are also doing the rounds on visits similar to campaign stops , suggesting the tsunami and its aftermath may be political fodder for some time to come .\tNNS , VBG DT JJ NN CC DT JJ JJ NN , VBP RB VBG DT NNS IN NNS JJ TO NN NNS , VBG DT NN CC PRP$ NN MD VB JJ NN IN DT NN TO VB .\nAt least 13 people have been wounded by a powerful explosion near an Indian military camp in Srinagar , summer capital of Indian Kashmir .\tIN JJS CD NNS VBP VBN VBN IN DT JJ NN IN DT JJ JJ NN IN NNP , NN NN IN JJ NNP .\nWitnesses say at least five Indian soldiers were among the injured .\tNNS VBP IN JJS CD JJ NNS VBD IN DT NN .\nPolice say the blast was caused by a car bomb .\tNNS VBP DT NN VBD VBN IN DT NN NN .\nIt is unclear who carried out Tuesday 's attack .\tPRP VBZ JJ WP VBD RP NNP POS NN .\nKashmir is divided between India and Pakistan , and rebel groups have been fighting for the region 's independence from India , or its merger with Pakistan , since 1989 .\tNNP VBZ VBN IN NNP CC NNP , CC NN NNS VBP VBN VBG IN DT NN POS NN IN NNP , CC PRP$ NN IN NNP , IN CD .\nThe explosion came hours after top diplomats from India and Pakistan resumed peace talks in New Delhi .\tDT NN VBD NNS IN JJ NNS IN NNP CC NNP VBD NN NNS IN NNP NNP .\nSyria has dismissed as FALSE and ' completely political ' a United Nations report linking some of its top intelligence officials to the February assassination of former Lebanese Prime Minister Rafik Hariri .\tNNP VBZ VBN IN JJ CC `` RB JJ `` DT NNP NNP NN VBG DT IN PRP$ JJ NN NNS TO DT NNP NN IN JJ JJ NNP NNP NNP NNP .\nU.N. investigator Detlev Mehlis issued a 54-page report Thursday , saying the assassination was planned over many months .\tNNP NN NNP NNP VBD DT JJ NN NNP , VBG DT NN VBD VBN IN JJ NNS .\nIt implicates , among others , Syria 's military intelligence chief Asef Shawkat , who is the brother-in-law of Syrian President Bashar al-Assad .\tPRP VBZ , IN NNS , NNP POS JJ NN NN NNP NNP , WP VBZ DT NN IN JJ NNP NNP NNP .\nIn Beirut , anti-Syrian legislators hailed the findings and renewed their calls for Lebanese President Emile Lahoud - a close ally of Syria - to resign .\tIN NNP , JJ NNS VBD DT NNS CC VBN PRP$ NNS IN JJ NNP NNP NNP IN DT JJ NN IN NNP : TO VB .\nMr. Mehlis ' report says President Lahoud received a telephone call from a suspect in Mr. Hariri 's assassination shortly before it occurred .\tNNP NNP POS NN VBZ NNP NNP VBD DT NN NN IN DT NN IN NNP NNP POS NN RB IN PRP VBD .\nThe president 's office has denied the accusation and says he has no intention of stepping down .\tDT NN POS NN VBZ VBN DT NN CC VBZ PRP VBZ DT NN IN VBG RP .\nU.N. Secretary-General Kofi Annan has extended the investigation until December 15 .\tNNP NNP NNP NNP VBZ VBN DT NN IN NNP CD .\nAfghan soldiers stormed the Pul-i-Charki prison near Kabul Friday , ending a day-long crisis that began with an attempted escape .\tJJ NNS VBD DT NNP NN IN NNP NNP , VBG DT JJ NN WDT VBD IN DT JJ NN .\nAt least four prisoners and four guards were killed , and several others wounded .\tIN JJS CD NNS CC CD NNS VBD VBN , CC JJ NNS VBD .\nThe head of the prison said four inmates linked to the al-Qaida terrorist network , one Iraqi and three Pakistanis , overpowered and killed a prison guard and seized his weapon .\tDT NN IN DT NN VBD CD NNS VBN TO DT NNP JJ NN , CD JJ CC CD NNS , VBD CC VBD DT NN NN CC VBD PRP$ NN .\nThey killed three other guards and , in the ensuing battle , two of the would-be escapees were killed .\tPRP VBD CD JJ NNS CC , IN DT VBG NN , CD IN DT JJ NNS VBD VBN .\nThe other two were eventually overpowered and killed when army troops stormed the prison about nightfall Friday .\tDT JJ CD VBD RB VBN CC VBN WRB NN NNS VBD DT NN IN NN NNP .\nThe prison holds common criminals as well as terror suspects and is separate from US-run facilities that hold captured Taliban and al-Qaida fighters .\tDT NN VBZ JJ NNS RB RB IN NN NNS CC VBZ JJ IN JJ NNS WDT VBP VBN NNP CC NNP NNS .\nSome 200 soldiers and civilians working for the military battled the thin Afghan mountain air , a bumpy track and the threat of attack to run five long laps around the airstrip at Firebase Ripley , a remote military camp in central Uruzgan province .\tDT CD NNS CC NNS VBG IN DT NN VBD DT JJ JJ NN NN , DT JJ NN CC DT NN IN NN TO VB CD JJ NNS IN DT NN IN NNP NNP , DT JJ JJ NN IN JJ NNP NN .\nIn the end , First Lieutenant Mike Baskin beat the competition , running the course in three hours , 12 minutes and 15 seconds .\tIN DT NN , NNP NNP NNP NNP VBD DT NN , VBG DT NN IN CD NNS , CD NNS CC CD NNS .\nBursting into tears at the finish line , the Army lieutenant said he thought only of his fallen comrades as he crossed the finish line .\tVBG IN NNS IN DT NN NN , DT NNP NN VBD PRP VBD RB IN PRP$ JJ NNS IN PRP VBD DT NN NN .\nSoldiers at the base are operating in one of Afghanistan 's most hostile areas .\tNNS IN DT NN VBP VBG IN CD IN NNP POS JJS JJ NNS .\nTheir most recent casualties were suffered last month when two soldiers were killed by a bomb that ripped through a patrol .\tPRP$ RBS JJ NNS VBD VBN JJ NN WRB CD NNS VBD VBN IN DT NN WDT VBD IN DT NN .\nTropical Storm Beta appears to have bypassed the Colombian island of San Andres , but forecasters say it could strengthen into a hurricane as it approaches the island of Providencia .\tJJ NN NN VBZ TO VB VBN DT JJ NN IN NNP NNP , CC NNS VBP PRP MD VB IN DT NN IN PRP VBZ DT NN IN NNP .\nThe National Weather Service says a hurricane warning is in effect for the Colombian island of Providencia , off the coast of Nicaragua .\tDT NNP NNP NNP VBZ DT NN NN VBZ IN NN IN DT JJ NN IN NNP , IN DT NN IN NNP .\nBeta is currently some 80 kilometers northeast of San Andres , moving north at about seven kilometers per hour .\tNN VBZ RB DT CD NNS RB IN NNP NNP , VBG RB IN IN CD NNS IN NN .\nThe storm is expected to turn northwest and strengthen , possibly to hurricane strength , during the next 24 hours .\tDT NN VBZ VBN TO VB JJ CC VB , RB TO NN NN , IN DT JJ CD NNS .\nForecasters say the center of the storm could reach mainland Nicaragua by Sunday .\tNNS VBP DT NN IN DT NN MD VB JJ NNP IN NNP .\nBeta is expected to dump as much as 38 centimeters of rain across Honduras , Nicaragua , San Andres and Providencia .\tNN VBZ VBN TO VB RB JJ IN CD NNS IN NN IN NNP , NNP , NNP NNP CC NNP .\nA trial opened Thursday for at least 25 Shi'ite activists who are accused of plotting to overthrow the government .\tDT NN VBD NNP IN IN JJS CD NNP NNS WP VBP VBN IN VBG TO VB DT NN .\nThe suspects face charges that include ' forming an illegal organization ' and ' resorting to terrorism . '\tDT NNS VBP NNS WDT VBP `` VBG DT JJ NN `` CC `` VBG TO NN . ``\nThey have pleaded not guilty to the charges and complained of alleged torture while in detention .\tPRP VBP VBN RB JJ TO DT NNS CC VBD IN JJ NN IN IN NN .\nSecurity was heightened in the courtroom .\tNNP VBD VBN IN DT NN .\nThe trial could raise tensions between Bahrain 's Sunni-dominant government and members of its Shi'ite majority who have long complained about a lack of government representation .\tDT NN MD VB NNS IN NNP POS JJ NN CC NNS IN PRP$ NNP NN WP VBP RB VBN IN DT NN IN NN NN .\nThe country 's main Shi'ite Muslim political bloc did make inroads in Saturday 's parliamentary elections , with all 18 of its candidates winning seats in the 40-member parliament .\tDT NN POS JJ NNP NNP JJ NN VBD VB NNS IN NNP POS JJ NNS , IN DT CD IN PRP$ NNS VBG NNS IN DT JJ NN .\nThe wins reflect a one-seat gain for the al-Wefaq bloc , compared to results from the last poll in 2006 .\tDT NNS VBP DT JJ NN IN DT NNP NN , VBN TO NNS IN DT JJ NN IN CD .\nPresident Bush has repeated his call for Congress to make his tax cuts permanent , saying they have improved the economy .\tNNP NNP VBZ VBN PRP$ NN IN NNP TO VB PRP$ NN NNS JJ , VBG PRP VBP VBN DT NN .\nAs many Americans prepare to file their annual tax payments before Monday 's deadline , President Bush said on U.S. radio Saturday that Americans will once again keep more of their earnings because of tax cuts passed in 2001 and 2003 .\tIN JJ NNS VBP TO VB PRP$ JJ NN NNS IN NNP POS NN , NNP NNP VBD IN NNP NN NNP IN NNS MD RB RB VB JJR IN PRP$ NNS IN IN NN NNS VBN IN CD CC CD .\nHe said his tax relief program has helped create new jobs that have brought the unemployment rate down to 4.7 percent .\tPRP VBD PRP$ NN NN NN VBZ VBN VB JJ NNS WDT VBP VBN DT NN NN IN TO CD NN .\nCongress has been discussing whether to renew some of the tax cuts that are set to expire in the next few years .\tNNP VBZ VBN VBG IN TO VB DT IN DT NN NNS WDT VBP VBN TO VB IN DT JJ JJ NNS .\nMany Democrats argue that the tax cuts are irresponsible in light of the costs of the war in Iraq and other pressing issues .\tJJ NNPS VBP IN DT NN NNS VBP JJ IN NN IN DT NNS IN DT NN IN NNP CC JJ VBG NNS .\nEvery year since 1995 , the United States Botanic Garden in Washington , DC , has partnered with the Smithsonian Institution to stage a massive floral exhibit of orchids .\tDT NN IN CD , DT NNP NNPS NNP NNP IN NNP , NNP , VBZ VBN IN DT NNP NNP TO VB DT JJ JJ NN IN NNS .\nVOA 's George Dwyer reports it offers visitors a colorful splash of floral brilliance as spring approached in the nation 's capital .\tNNP POS NNP NNP VBZ PRP VBZ NNS DT JJ NN IN JJ NN IN NN VBN IN DT NN POS NN .\nJim Bertel narrates .\tNNP NNP VBZ .\nPolice in Bangladesh say unidentified gunmen have killed a journalist working for an English-language daily .\tNNS IN NNP VBP JJ NNS VBP VBN DT NN VBG IN DT JJ NN .\nPolice say the attack on Shahid Anwar , an assistant editor of the Daily Asian Express , occurred late Sunday in the capital , Dhaka .\tNNS VBP DT NN IN NNP NNP , DT JJ NN IN DT NNP NNP NNP , VBD JJ NNP IN DT NN , NNP .\nPolice say personal rivalry might have been the motive behind his killing .\tNNS VBP JJ NN MD VB VBN DT NN IN PRP$ NN .\nMr. Anwar is the second journalist killed in Bangladesh in recent weeks .\tNNP NNP VBZ DT JJ NN VBN IN NNP IN JJ NNS .\nLast month , an editor of the Daily Durjoy Bangla newspaper in the northern Bogra district was killed under similar circumstances .\tJJ NN , DT NN IN DT NNP NNP NNP NN IN DT JJ NNP NN VBD VBN IN JJ NNS .\nThe international media watchdog , Reporters Without Borders , has ranked Bangladesh one of the most dangerous countries for journalists .\tDT JJ NNS NN , NNS IN NNS , VBZ VBN NNP CD IN DT RBS JJ NNS IN NNS .\nThai authorities say suspected Muslim militants have carried out at least 40 bomb and arson attacks in Thailand 's Muslim-dominated southern provinces .\tJJ NNS VBP VBN NNP NNS VBP VBN RP IN JJS CD NN CC NN NNS IN NNP POS JJ JJ NNS .\nPolice say at least two people were injured in the attacks , which took place late Tuesday in the provinces of Pattani , Yala and Narathiwat .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NNS , WDT VBD NN RB NNP IN DT NNS IN NNP , NNP CC NNP .\nThey say the most serious attack was a fire set at a rubber factory .\tPRP VBP DT RBS JJ NN VBD DT NN VBN IN DT NN NN .\nThe French news agency quotes the region 's top military official as saying the situation is under control and that six suspects have been arrested .\tDT JJ NN NN VBZ DT NN POS JJ JJ NN IN VBG DT NN VBZ IN NN CC IN CD NNS VBP VBN VBN .\nMore than 1,400 people have been killed during two years of unrest in Thailand 's Muslim-majority provinces .\tJJR IN CD NNS VBP VBN VBN IN CD NNS IN NN IN NNP POS JJ NNS .\nA Chinese demographer has said the imbalance between births of girls and boys may one day make it impossible for millions of Chinese men to find a spouse .\tDT JJ NN VBZ VBN DT NN IN NNS IN NNS CC NNS MD CD NN VB PRP JJ IN NNS IN JJ NNS TO VB DT NN .\nOn Saturday , China 's official news agency quoted Professor Mu Guangzhong , of the Beijing University population research institute , as saying by the year 2020 , 25 million men will fail to have wives if the current gender imbalance continues .\tIN NNP , NNP POS JJ NN NN VBN NNP NNP NNP , IN DT NNP NNP NN NN NN , IN VBG IN DT NN CD , CD CD NNS MD VB TO VB NNS IN DT JJ NN NN VBZ .\nIn China , official policy restricts couples in urban areas to one child , and families have shown a preference for sons .\tIN NNP , JJ NN VBZ NNS IN JJ NNS TO CD NN , CC NNS VBP VBN DT NN IN NNS .\nThere are 119 boys born for every 100 Chinese girls .\tEX VBP CD NNS VBN IN DT CD JJ NNS .\nChinese lawmakers decided in June not to outlaw the practice of performing abortions based on the gender of the fetus .\tJJ NNS VBD IN NNP RB TO VB DT NN IN VBG NNS VBN IN DT NN IN DT NN .\nBut Xinhua says the new report is likely to prompt the government to take more forceful measures to reverse the male dominant population trend .\tCC NNP VBZ DT JJ NN VBZ JJ TO VB DT NN TO VB JJR JJ NNS TO VB DT JJ JJ NN NN .\nU.S. President Barack Obama is wishing Christians in the United States and around the world a happy Easter .\tNNP NNP NNP NNP VBZ VBG NNS IN DT NNP NNPS CC IN DT NN DT JJ NNP .\nIn his weekly Saturday radio and Internet address , Mr. Obama also reached out to Jewish communities , whose celebration of Passover ends next week , and to people of other faiths as well as non-believers .\tIN PRP$ JJ NNP NN CC NN NN , NNP NNP RB VBD RP IN JJ NNS , WP$ NN IN NNP VBZ JJ NN , CC IN NNS IN JJ NNS RB RB IN NNS .\nMr. Obama used his address to call attention to his administration 's top priorities - creating jobs , improving access to health care and improving education in the U.S.\tNNP NNP VBD PRP$ NN TO VB NN TO PRP$ NN POS JJ NNS IN VBG NNS , VBG NN TO NN NN CC VBG NN IN DT NNP\nHe said he was heartened at statistics showing an increase in new jobs created lasted month .\tPRP VBD PRP VBD VBN IN NNS VBG DT NN IN JJ NNS VBN VBD NN .\nBut his address mostly focused on a call for unity , saying different faith communities share the ' spirit of humanity . '\tCC PRP$ NN RB VBD IN DT NN IN NN , VBG JJ NN NNS VBP DT `` NN IN NN . ``\nWithin the next decade , some 77 million people in the United States will enter retirement age , and many of them are expected to offer their skills and experience to work as volunteers .\tIN DT JJ NN , DT CD CD NNS IN DT NNP NNPS MD VB NN NN , CC NN IN PRP VBP VBN TO VB PRP$ NNS CC NN TO VB IN NNS .\nBetter health , longer life-spans and a desire to give something back to society are among the reasons motivating many to volunteer .\tNNP NN , RB NNS CC DT NN TO VB DT RB TO NN VBP IN DT NNS VBG JJ TO VB .\nProducer Zulima Palacio has this report narrated by Deborah Block on what is being called a ' new army of volunteers ' .\tNNP NNP NNP VBZ DT NN VBN IN NNP NNP IN WP VBZ VBG VBN DT `` JJ NN IN NNS `` .\nVice President Dick Cheney 's chief of staff Lewis Libby is known to be a quiet but powerful force in the Bush administration .\tNNP NNP NNP NNP POS NN IN NN NNP NNP VBZ VBN TO VB DT JJ CC JJ NN IN DT NNP NN .\nThe 55-year-old Mr. Libby helped build the case for the U.S. invasion of Iraq , arguing that Saddam Hussein 's regime had weapons of mass destruction .\tDT JJ NNP NNP VBD VB DT NN IN DT NNP NN IN NNP , VBG IN NNP NNP POS NN VBD NNS IN NN NN .\nNo such weapons have been found .\tDT JJ NNS VBP VBN VBN .\nMr. Libby shies away from media attention , but is described by colleagues as being closely involved in everything the vice president does .\tNNP NNP VBZ RB IN NNS NN , CC VBZ VBN IN NNS IN VBG RB VBN IN DT DT NN NN VBZ .\nWidely known by his nickname ' Scooter , ' Mr. Libby is also a lawyer and a writer , who earned praise for a 1996 mystery novel he wrote .\tRB VBN IN PRP$ NN `` NNP , `` NNP NNP VBZ RB DT NN CC DT NN , WP VBD NN IN DT CD NN NN PRP VBD .\nIraq 's President Jalal Talabani says he is willing to hold talks with insurgents and members of the ousted government , but al-Qaida in Iraq rejected any possibility of dialogue .\tNNP POS NNP NNP NNP VBZ PRP VBZ JJ TO VB NNS IN NNS CC NNS IN DT JJ NN , CC NNP IN NNP VBD DT NN IN NN .\nSpeaking at a reconciliation conference in Cairo , Mr. Talabani said he would meet with any Iraqi citizen , even those he called ' criminals . '\tVBG IN DT NN NN IN NNP , NNP NNP VBD PRP MD VB IN DT JJ NN , RB DT PRP VBD `` NNS . ``\nHe also called on insurgents to disarm and join the political process .\tPRP RB VBD IN NNS TO VB CC VB DT JJ NN .\nBut al-Qaida in Iraq claimed in an Internet statement that it would continue launching attacks .\tCC NNP IN NNP VBD IN DT NNP NN IN PRP MD VB VBG NNS .\nIn new violence Monday , at least four Iraqis were killed and 10 others wounded in a car bomb explosion in Kanan , a town north of Baghdad .\tIN JJ NN NNP , IN JJS CD NNS VBD VBN CC CD NNS VBN IN DT NN NN NN IN NNP , DT NN NN IN NNP .\nPolice say the bomb was apparently aimed at a passing U.S. military convoy .\tNNS VBP DT NN VBD RB VBN IN DT VBG NNP JJ NN .\nMeanwhile , a White House spokesman Trent Duffy says it is ' highly unlikely ' Abu Musab al-Zarqawi was killed in a raid Saturday , as some reports have said .\tRB , DT NNP NNP NN NNP NNP VBZ PRP VBZ `` RB JJ `` NNP NNP NNP VBD VBN IN DT NN NNP , IN DT NNS VBP VBN .\nWitnesses say Israeli helicopters fired missiles into Gaza shortly after Palestinian militants killed five Israelis at a busy crossing between Israel and the Gaza Strip .\tNNS VBP JJ NNS VBD NNS IN NNP RB IN JJ NNS VBD CD NNS IN DT JJ VBG IN NNP CC DT NNP NNP .\nThe witnesses say two Israeli missiles hit the Deir al Balah refugee camp .\tDT NNS VBP CD JJ NNS VBD DT NNP NNP NNP NN NN .\nThey say the target was a building belonging to a charity linked to a militant group .\tPRP VBP DT NN VBD DT NN VBG TO DT NN VBN TO DT JJ NN .\nAn hour earlier , Hamas , al-Aqsa Martyrs Brigades and the Popular Resistance Committee carried out the attack at the Karni crossing .\tDT NN RB , NNP , NNP NNP NNP CC DT NNP NNP NNP VBD IN DT NN IN DT NNP VBG .\nThree Palestinians were killed in the bomb attack .\tCD NNS VBD VBN IN DT NN NN .\nThe upsurge in violence comes as newly-elected Palestinian President Mahmoud Abbas again called for attacks on Israelis to stop .\tDT NN IN NN VBZ IN JJ JJ NNP NNP NNP RB VBD IN NNS IN NNS TO VB .\nIsraeli Prime Minister Ariel Sharon , who is expected to meet with Mr. Abbas within days , insists peace negotiations can not be revived unless Palestinians crack down on militants .\tJJ JJ NN NNP NNP , WP VBZ VBN TO VB IN NNP NNP IN NNS , VBZ NN NNS MD RB VB VBN IN NNS VBP RP IN NNS .\nAll 20 people aboard a Sudanese military plane were killed when it crashed on landing in southern Sudan on Saturday .\tDT CD NNS IN DT JJ JJ NN VBD VBN WRB PRP VBD IN NN IN JJ NNP IN NNP .\nOfficials with Sudan 's military say the plane blew a tire when it touched down , causing it to swerve off the runway and explode .\tNNS IN NNP POS JJ VBP DT NN VBD DT NN WRB PRP VBD RB , VBG PRP TO VB RP DT NN CC VB .\nThe accident happened Saturday morning in the town of Aweil , 800 kilometers southwest of Khartoum .\tDT NN VBD NNP NN IN DT NN IN NNP , CD NNS JJS IN NNP .\nThere were seven crew members and 13 passengers on the plane .\tEX VBD CD NN NNS CC CD NNS IN DT NN .\nIraqi National Guard troops have raided a Sunni mosque in Baghdad .\tJJ NNP NNP NNS VBP VBN DT NNP NN IN NNP .\nReports say about 200 national guardsmen stormed the al-Hanifa mosque Friday , following weekly prayers , throwing stun grenades and firing shots in the air .\tNNS VBP IN CD JJ NNS VBD DT JJ NN NNP , VBG JJ NNS , VBG NN NNS CC VBG NNS IN DT NN .\nCasualties were reported during the fighting inside the mosque .\tNNS VBD VBN IN DT NN IN DT NN .\nThe purpose of the raid was not immediately clear , but worshippers say the Iraqi troops arrested the mosque 's imam .\tDT NN IN DT NN VBD RB RB JJ , CC NNS VBP DT JJ NNS VBN DT NN POS NN .\nMeanwhile , the top commander of U.S. Marines in Iraq says U.S. and Iraqi troops have ' broken the back ' of the insurgency there by taking control of Fallujah .\tRB , DT JJ NN IN NNP NNPS IN NNP VBZ NNP CC JJ NNS VBP `` VBN DT RB `` IN DT NN RB IN VBG NN IN NNP .\nLieutenant General John Sattler said the 11-day operation has pushed the insurgents out of their safe haven and into less familiar areas .\tNNP NNP NNP NNP VBD DT JJ NN VBZ VBN DT NNS IN IN PRP$ JJ NN CC IN JJR JJ NNS .\nBut he said Fallujah is not quite secure yet .\tCC PRP VBD NNP VBZ RB RB JJ RB .\nIran has given reporters a rare glimpse into a key nuclear plant that the United States and Europe want permanently closed .\tNNP VBZ VBN NNS DT JJ NN IN DT JJ JJ NN IN DT NNP NNPS CC NNP VBP RB VBN .\nSome 50 reporters accompanied President Mohammad Khatami Wednesday , on a tour of the Natanz uranium enrichment facility south of Tehran .\tDT CD NNS VBD NNP NNP NNP NNP , IN DT NN IN DT NNP NN NN NN NN IN NNP .\nThey were shown a vast , empty underground hall that Iranian officials said is designed to house thousands of enrichment centrifuges .\tPRP VBD VBN DT JJ , JJ JJ NN IN JJ NNS VBD VBZ VBN TO VB NNS IN NN NNS .\nOutside , dozens of anti-aircraft weapons guarded the facility .\tJJ , NNS IN JJ NNS VBD DT NN .\nOfficials said all enrichment activities have been suspended at the site , which the International Atomic Energy Agency regularly monitors .\tNNS VBD DT NN NNS VBP VBN VBN IN DT NN , WDT DT NNP NNP NNP NNP RB VBZ .\nThe tour was to continue later in the day at a uranium conversion plant near Isfahan .\tDT NN VBD TO VB RB IN DT NN IN DT NN NN NN IN NNP .\nThe United States and Europe want Iran to permanently stop enriching uranium - which in certain forms can be used to fuel nuclear weapons .\tDT NNP NNPS CC NNP VBP NNP TO RB VB VBG NN : WDT IN JJ NNS MD VB VBN TO VB JJ NNS .\nBut Iran says it is only pursuing the technology to produce electricity .\tCC NNP VBZ PRP VBZ RB VBG DT NN TO VB NN .\nTwo Burmese ethnic rebel groups are supporting a call for the United Nations Security Council to take up an urgent initiative to bring political reforms to military-ruled Burma .\tCD JJ JJ NN NNS VBP VBG DT NN IN DT NNP NNP NNP NNP TO VB RP DT JJ NN TO VB JJ NNS TO JJ NNP .\nIn separate press releases Sunday , the Karen National Union and the Shan Democratic Union backed a report by former Czech President Vaclav Havel and retired South African Archbishop Desmond Tutu calling for Security Council intervention .\tIN JJ NN NNS NNP , DT NNP NNP NNP CC DT NNP NNP NNP VBD DT NN IN JJ JJ NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBG IN NNP NNP NN .\nMr. Havel and Archbishop Tutu issued a report Tuesday comparing the situation in Burma to those in seven other countries in which the Security Council had intervened .\tNNP NNP CC NNP NNP VBD DT NN NNP VBG DT NN IN NNP TO DT IN CD JJ NNS IN WDT DT NNP NNP VBD VBN .\nThe 70-page report said conditions are far worse in Burma than they were in such countries as Sierra Leone , Afghanistan and Haiti before UN intervention .\tDT JJ NN VBD NNS VBP RB JJR IN NNP IN PRP VBD IN JJ NNS IN NNP NNP , NNP CC NNP IN NNP NN .\nU.S.-led coalition forces in Afghanistan say coalition aircraft bombed a Taleban stronghold in southern Kandahar province overnight , killing 80 suspected Taleban militants and 16 civilians .\tJJ NN NNS IN NNP VBP NN NN VBD DT NNP NN IN JJ NNP NN RB , VBG CD JJ NNP NNS CC CD NNS .\nKandahar Governor Asadullah Khalid said Monday that besides the militants , 16 civilians were killed and at least another 15 were wounded .\tNNP NNP NNP NNP VBD NNP IN IN DT NNS , CD NNS VBD VBN CC IN JJS DT CD VBD VBN .\nThe coalition says it is investigating the reports of civilian casualties .\tDT NN VBZ PRP VBZ VBG DT NNS IN JJ NNS .\nA coalition spokeswoman , Lieutenant Tamara Lawrence , said the village of Azizi in the Panjwayi district area is a known Taleban stronghold about 50 kilometers west of Kandahar 's provincial capital .\tDT NN NN , NNP NNP NNP , VBD DT NN IN NNP IN DT NNP NN NN VBZ DT VBN NNP NN IN CD NNS JJS IN NNP POS JJ NN .\nMeanwhile , Afghan police on Monday found the body of a missing former provincial governor .\tRB , JJ NNS IN NNP VBD DT NN IN DT VBG JJ JJ NN .\nArmed men snatched Paktika province 's former governor , Mohammad Ali Jalali , along with the former police chief of the same province on Sunday while they were attending a prayer service in neighboring Ghazni province .\tVBN NNS VBD NNP NN POS JJ NN , NNP NNP NNP , IN IN DT JJ NN NN IN DT JJ NN IN NNP IN PRP VBD VBG DT NN NN IN JJ NNP NN .\nThe police chief was released unharmed .\tDT NN NN VBD VBN JJ .\nU.S. officials have asked the Palestinian leadership to require parliamentary candidates to renounce violence if they want to run in upcoming elections .\tNNP NNS VBP VBN DT JJ NN TO VB JJ NNS TO VB NN IN PRP VBP TO VB IN JJ NNS .\nThe issue is expected to be discussed when President Bush meets Palestinian leader Mahmoud Abbas at the White House Thursday .\tDT NN VBZ VBN TO VB VBN WRB NNP NNP VBZ JJ NN NNP NNP IN DT NNP NNP NNP .\nU.S. and Palestinian officials say the Bush administration is concerned that Palestinian militant groups , who have a history of attacks on Israelis , will do well in the January vote .\tNNP CC JJ NNS VBP DT NNP NN VBZ JJ IN JJ JJ NNS , WP VBP DT NN IN NNS IN NNS , MD VB RB IN DT NNP NN .\nOn Tuesday , White House spokesman Scott McClellan said there is more the Palestinian leadership can do to end violence and dismantle terrorist organizations .\tIN NNP , NNP NNP NN NNP NNP VBD EX VBZ JJR DT JJ NN MD VB TO VB NN CC VB JJ NNS .\nIsraeli Prime Minister Ariel Sharon , whose government recently withdrew settlements from the Gaza Strip and parts of the West Bank , has said participation in the election by militant groups such as Hamas would be unacceptable .\tJJ NNP NNP NNP NNP , WP$ NN RB VBD NNS IN DT NNP NNP CC NNS IN DT NNP NNP , VBZ VBN NN IN DT NN IN JJ NNS JJ IN NNP MD VB JJ .\nCambodian soldiers are heading to Sudan to support a United Nations landmine clearing operation .\tJJ NNS VBP VBG TO VB TO VB DT NNP NNP NN NN NN .\nAbout 109 soldiers are leaving the capital , Phnom Penh , Saturday for the northeast African nation , joining 26 other Cambodians already there .\tIN CD NNS VBP VBG DT NN , NNP NNP , NNP IN DT NN JJ NN , VBG CD JJ NNS RB RB .\nPrime Minister Hun Sen has hailed the mission as historic and a great honor .\tNNP NNP NNP NNP VBZ VBN DT NN IN JJ CC DT JJ NN .\nIt is Cambodia 's first time taking part in a U.N. peacekeeping mission .\tPRP VBZ NNP POS JJ NN VBG NN IN DT NNP NN NN .\nThe United Nations estimates up to 20,000 people are killed or maimed by landmines worldwide every year and that at least one-fifth of the victims are children .\tDT NNP NNPS VBZ RP TO CD NNS VBP VBN CC VBN IN NNS JJ DT NN CC IN IN JJS NN IN DT NNS VBP NNS .\nNearly three decades of civil war , which ended in the 1990s , left Cambodia as one of the worst mine-affected countries .\tRB CD NNS IN JJ NN , WDT VBD IN DT NNS , VBD NNP IN CD IN DT JJS JJ NNS .\nRival clans in southern Somalia have clashed in a fight for control over a trading town , and witnesses report dozens of deaths and injuries .\tJJ NNS IN JJ NNP VBP VBN IN DT NN IN NN IN DT NN NN , CC NNS VBP NNS IN NNS CC NNS .\nResidents say more than 20 people were killed and 30 injured in the battle that began late Friday night in a town identified by Reuters news agency as Ceel Waaq near the Kenyan border .\tNNS VBP JJR IN CD NNS VBD VBN CC CD NN IN DT NN WDT VBD RB NNP NN IN DT NN VBN IN NNP NN NN IN NNP NNP IN DT JJ NN .\nThe town is described as a center of commercial activity .\tDT NN VBZ VBN IN DT NN IN JJ NN .\nWarlords have ruled Somalia since dictator Mohamed Siad Barre was ousted in 1991 .\tNNS VBP VBN NNP IN NN NNP NNP NNP VBD VBN IN CD .\nIsrael 's government is urging Israelis visiting Egypt 's Sinai peninsula to leave immediately because of what it calls an imminent terrorist attack .\tNNP POS NN VBZ VBG NNS VBG NNP POS NNP NN TO VB RB IN IN WP PRP VBZ DT JJ JJ NN .\nIsrael 's anti-terrorism office says it has ' concrete ' evidence of a plot to kidnap Israelis in the Sinai and smuggle them to the Gaza Strip .\tNNP POS JJ NN VBZ PRP VBZ `` JJ `` NN IN DT NN TO VB NNS IN DT NNP CC VB PRP TO DT NNP NNP .\nIsraeli officials called on family members to contact Israelis vacationing on the peninsula and ask them to return to Israel right away .\tJJ NNS VBD IN NN NNS TO VB NNS VBG IN DT NN CC VB PRP TO VB TO NNP RB RB .\nSome 20,000 Israelis traveled to the Sinai during the recent Jewish Passover holiday , despite prior Israeli warnings of possible terrorist attacks there .\tDT CD NNS VBD TO DT NNP IN DT JJ JJ NN NN , IN JJ JJ NNS IN JJ JJ NNS RB .\nMany vacationers have since returned to Israel .\tJJ NNS VBP IN VBN TO NNP .\nThe Sinai has been the scene of terrorist attacks on Israelis and Western tourists .\tDT NNP VBZ VBN DT NN IN JJ NNS IN NNS CC JJ NNS .\nIn 2004 , suicide bombers attacked a Sinai hotel and several campsites popular with Israelis , killing 34 people and wounding more than 120 .\tIN CD , NN NNS VBD DT NNP NN CC JJ NNS JJ IN NNS , VBG CD NNS CC VBG JJR IN CD .\nAfghan officials say 10 Taliban militants have been arrested for an acid attack on schoolgirls and teachers in southern Afghanistan .\tJJ NNS VBP CD NNP NNS VBP VBN VBN IN DT NN NN IN NNS CC NNS IN JJ NNP .\nOfficials say militants on motorbikes attacked the girls and teachers as they walked to school in the southern city of Kandahar earlier this month .\tNNS VBP NNS IN NNS VBD DT NNS CC NNS IN PRP VBD IN NN IN DT JJ NN IN NNP RBR DT NN .\nSeveral girls suffered facial burns and were hospitalized .\tJJ NNS VBD JJ NNS CC VBD VBN .\nA Taliban spokesman earlier denied responsibility for the attack .\tDT NNP NN RB VBD NN IN DT NN .\nUnder Taliban rule , girls were banned from school and were only allowed to leave the house accompanied by a male relative .\tIN NNP NN , NNS VBD VBN IN NN CC VBD RB VBN TO VB DT NN VBN IN DT JJ NN .\nThe Afghan government has accused Taliban militants of attacking dozens of schools and teachers .\tDT JJ NN VBZ VBN NNP NNS IN VBG NNS IN NNS CC NNS .\nMilitary officials in Pakistan say six soldiers and 40 militants were killed overnight in an attack on a paramilitary fort near the border with Afghanistan .\tJJ NNS IN NNP VBP CD NNS CC CD NNS VBD VBN RB IN DT NN IN DT JJ NN IN DT NN IN NNP .\nPakistan 's military said most of the attackers came from the Afghan side of the border , and were joined by local Taliban fighters in the northwestern Mohmand tribal area , a center of Taliban and al-Qaida activity .\tNNP POS NN VBD JJS IN DT NNS VBD IN DT JJ NN IN DT NN , CC VBD VBN IN JJ NNP NNS IN DT JJ NNP NN NN , DT NN IN NNP CC NNP NN .\nSecurity officials say gun battles raged for several hours before the attackers fled .\tNN NNS VBP NN NNS VBD IN JJ NNS IN DT NNS VBD .\nOfficials estimate that about 600 militants took part in the attack .\tNNS VBP IN IN CD NNS VBD NN IN DT NN .\nPakistani authorities say seven soldiers were wounded in the clashes , and that the paramilitary Frontier Corps inflicted heavy casualties on the militants .\tJJ NNS VBP CD NNS VBD VBN IN DT NNS , CC IN DT JJ NNP NNP VBD JJ NNS IN DT NNS .\nMeanwhile , officials in South Waziristan say suspected militants abducted local government official Amir Latif today .\tRB , NNS IN NNP NNP VBP VBN NNS VBD JJ NN NN NNP NNP NN .\nPolice say gunmen stopped the official 's convoy , bundled him in their vehicle and drove off .\tNNS VBP NNS VBD DT NN POS NN , VBD PRP IN PRP$ NN CC VBD RP .\nPakistani President Pervez Musharraf and British Prime Minister Tony Blair are holding talks today expected to be dominated by the fight against terrorism , the Middle East , Afghanistan and Kashmir .\tJJ NNP NNP NNP CC JJ NNP NNP NNP NNP VBP VBG NNS NN VBN TO VB VBN IN DT NN IN NN , DT NNP NNP , NNP CC NNP .\nBefore the London meeting , General Musharraf told the BBC that the global war on terrorism has made the world less safe and is not addressing the social grievances that help recruit terrorists .\tIN DT NNP NN , NNP NNP VBD DT NNP IN DT JJ NN IN NN VBZ VBN DT NN RBR JJ CC VBZ RB VBG DT JJ NNS WDT VBP VB NNS .\nIn a separate interview , the Times of London quotes General Musharraf as saying he would welcome British involvement in negotiations with India over Kashmir .\tIN DT JJ NN , DT NNP IN NNP VBZ NNP NNP IN VBG PRP MD VB JJ NN IN NNS IN NNP IN NNP .\nBefore going to London , the Pakistani leader met with President Bush to review the war on terror , the Israeli-Palestinian conflict and the hunt for Osama bin Laden .\tIN VBG TO NNP , DT JJ NN VBD IN NNP NNP TO VB DT NN IN NN , DT JJ NN CC DT NN IN NNP NNP NNP .\nA U.S.-based media advocacy group says it is concerned that constitutional reforms proposed by Venezuelan President Hugo Chavez could threaten press freedom in the country .\tDT JJ NNS NN NN VBZ PRP VBZ VBN IN JJ NNS VBN IN JJ NNP NNP NNP MD VB NN NN IN DT NN .\nThe Miami-based Inter American Press Association voiced concerns Tuesday after meetings with media executives and union leaders in Caracas , Venezuela .\tDT JJ NNP NNP NNP NNP VBD NNS NNP IN NNS IN NNS NNS CC NN NNS IN NNP , NNP .\nThe IAPA delegation says the proposed measures include detention without charges and controls on the news media if Mr. Chavez declares a state of emergency .\tDT NNP NN VBZ DT JJ NNS VBP NN IN NNS CC NNS IN DT NN NNS IN NNP NNP VBZ DT NN IN NN .\nVenezuelans will vote on the reforms in a referendum December 2 .\tNNS MD VB IN DT NNS IN DT NN NNP CD .\nThe proposal also includes eliminating presidential term limits .\tDT NN RB VBZ VBG JJ NN NNS .\nThe country 's opposition parties , human rights groups and the Roman Catholic Church have condemned Mr. Chavez 's proposals .\tDT NN POS NN NNS , JJ NNS NNS CC DT NNP NNP NNP VBP VBN NNP NNP POS NNS .\nTwo powerful explosions have ripped apart a vehicle belonging to a prominent Venezuela prosecutor .\tCD JJ NNS VBP VBN RB DT NN VBG TO DT JJ NNP NN .\nWitnesses say the two blasts destroyed Deputy Attorney General Danilo Anderson 's truck as it drove through a neighborhood in western Caracas late Thursday .\tNNS VBP DT CD NNS VBD NNP NNP NNP NNP NNP POS NN IN PRP VBD IN DT NN IN JJ NNP JJ NNP .\nVenezuelan officials say investigators are trying to determine if the charred body found inside the vehicle is Mr. Anderson .\tJJ NNS VBP NNS VBP VBG TO VB IN DT JJ NN VBN IN DT NN VBZ NNP NNP .\nMr. Anderson was preparing a case against nearly 400 people allegedly involved in the April 2002 rebellion that briefly ousted populist president Hugo Chavez .\tNNP NNP VBD VBG DT NN IN RB CD NNS RB VBN IN DT NNP CD NN IN RB VBD JJ NN NNP NNP .\nPresident Bush and other world leaders are welcoming the formation of an Iraqi government , months after the country 's parliamentary elections .\tNNP NNP CC JJ NN NNS VBP VBG DT NN IN DT JJ NN , NNS IN DT NN POS JJ NNS .\nMr. Bush issued a statement Saturday saying Prime Minister Nouri al-Maliki 's government marks the end of Iraq 's difficult and inspiring democratic transitional process .\tNNP NNP VBD DT NN NNP VBG NNP NNP NNP NNP POS NN VBZ DT NN IN NNP POS JJ CC JJ JJ JJ NN .\nMr. Bush added that the United States and freedom-loving nations will stand with Iraq as it takes its place among the world 's democracies .\tNNP NNP VBD IN DT NNP NNPS CC JJ NNS MD VB IN NNP IN PRP VBZ PRP$ NN IN DT NN POS NNS .\nBritish Prime Minister Tony Blair called the new government a huge step forward .\tNNP NNP NNP NNP NNP VBD DT JJ NN DT JJ NN RB .\nItalian officials also congratulated Iraq on its new government .\tJJ NNS RB VBD NNP IN PRP$ JJ NN .\nU.N. Secretary-General Kofi Annan praised Iraqis for their determination in forming a government despite violence across the country .\tNNP NNP NNP NNP VBD NNS IN PRP$ NN IN VBG DT NN IN NN IN DT NN .\nIn a written statement , he voiced hope the government will quickly address crucial issues , including security , reconstruction and the respect of human rights .\tIN DT JJ NN , PRP VBD VB DT NN MD RB VB JJ NNS , VBG NN , NN CC DT NN IN JJ NNS .\nItaly has a diversified industrial economy , which is divided into a developed industrial north , dominated by private companies , and a less-developed , welfare-dependent , agricultural south , with high unemployment .\tNNP VBZ DT JJ JJ NN , WDT VBZ VBN IN DT JJ JJ NN , VBN IN JJ NNS , CC DT JJ , JJ , JJ NN , IN JJ NN .\nThe Italian economy is driven in large part by the manufacture of high-quality consumer goods produced by small and medium-sized enterprises , many of them family owned .\tDT JJ NN VBZ VBN IN JJ NN IN DT NN IN JJ NN NNS VBN IN JJ CC JJ NNS , NN IN PRP NN VBN .\nItaly also has a sizable underground economy , which by some estimates accounts for as much as 15 % of GDP .\tNNP RB VBZ DT JJ JJ NN , WDT IN DT NNS VBZ IN RB JJ IN CD NN IN NN .\nThese activities are most common within the agriculture , construction , and service sectors .\tDT NNS VBP RBS JJ IN DT NN , NN , CC NN NNS .\nItaly has moved slowly on implementing needed structural reforms , such as reducing graft , overhauling costly entitlement programs , and increasing employment opportunities for young workers , particularly women .\tNNP VBZ VBN RB IN VBG VBN JJ NNS , JJ IN VBG NN , VBG JJ NN NNS , CC VBG NN NNS IN JJ NNS , RB NNS .\nThe international financial crisis worsened conditions in Italy 's labor market , with unemployment rising from 6.2 % in 2007 to 8.4 % in 2010 , but in the longer-term Italy 's low fertility rate and quota-driven immigration policies will increasingly strain its economy .\tDT JJ JJ NN VBD NNS IN NNP POS NN NN , IN NN VBG IN CD NN IN CD TO CD NN IN CD , CC IN DT JJ NNP POS JJ NN NN CC JJ NN NNS MD RB VB PRP$ NN .\nA rise in exports and investment driven by the global economic recovery nevertheless helped the economy grow by about 1 % in 2010 following a 5 % contraction in 2009 .\tDT NN IN NNS CC NN VBN IN DT JJ JJ NN RB VBD DT NN VB IN IN CD NN IN CD VBG DT CD NN NN IN CD .\nThe Italian government has struggled to limit government spending , but Italy 's exceedingly high public debt remains above 115 % of GDP , and its fiscal deficit - just 1.5 % of GDP in 2007 - exceeded 5 % in 2009 and 4 % in 2010 , as the costs of servicing the country 's debt rose .\tDT JJ NN VBZ VBN TO VB NN NN , CC NNP POS RB JJ JJ NN VBZ IN CD NN IN NN , CC PRP$ JJ NN : RB CD NN IN NN IN CD : VBD CD NN IN CD CC CD NN IN CD , IN DT NNS IN VBG DT NN POS NN VBD .\nSettled as early as 1000 B.C. , Samoa was ' discovered ' by European explorers in the 18th century .\tVBN RB RB IN CD NNP , NNP VBD `` VBN `` IN JJ NNS IN DT JJ NN .\nInternational rivalries in the latter half of the 19th century were settled by an 1899 treaty in which Germany and the US divided the Samoan archipelago .\tNNP NNS IN DT JJ NN IN DT JJ NN VBD VBN IN DT CD NN IN WDT NNP CC DT NNP VBD DT NNP NN .\nThe US formally occupied its portion - a smaller group of eastern islands with the excellent harbor of Pago Pago - the following year .\tDT NNP RB VBD PRP$ NN IN DT JJR NN IN JJ NNS IN DT JJ NN IN NNP NNP IN DT JJ NN .\nFrench Togoland became Togo in 1960 .\tJJ NNP VBD NNP IN CD .\nGen. Gnassingbe EYADEMA , installed as military ruler in 1967 , ruled Togo with a heavy hand for almost four decades .\tNNP NNP NNP , VBN IN JJ NN IN CD , VBD NNP IN DT JJ NN IN RB CD NNS .\nDespite the facade of multiparty elections instituted in the early 1990s , the government was largely dominated by President EYADEMA , whose Rally of the Togolese People ( RPT ) party has maintained power almost continually since 1967 and maintains a majority of seats in today 's legislature .\tIN DT NN IN JJ NNS VBN IN DT JJ NNS , DT NN VBD RB VBN IN NNP NNP , WP$ NN IN DT NNP NNS LRB NNP RRB NN VBZ VBN NN RB RB IN CD CC VBZ DT NN IN NNS IN NN POS NN .\nUpon EYADEMA 's death in February 2005 , the military installed the president 's son , Faure GNASSINGBE , and then engineered his formal election two months later .\tIN NNP POS NN IN NNP CD , DT NN VBD DT NN POS NN , NNP NNP , CC RB VBN PRP$ JJ NN CD NNS RB .\nDemocratic gains since then allowed Togo to hold its first relatively free and fair legislative elections in October 2007 .\tJJ NNS IN RB VBN NNP TO VB PRP$ JJ RB JJ CC JJ JJ NNS IN NNP CD .\nAfter years of political unrest and condemnation from international organizations for human rights abuses , Togo is finally being re-welcomed into the international community .\tIN NNS IN JJ NN CC NN IN JJ NNS IN JJ NNS NNS , NNP VBZ RB VBG VBN IN DT JJ NN .\nThe Norwegian economy is a prosperous bastion of welfare capitalism , featuring a combination of free market activity and government intervention .\tDT JJ NN VBZ DT JJ NN IN NN NN , VBG DT NN IN JJ NN NN CC NN NN .\nThe government controls key areas , such as the vital petroleum sector , through large-scale state-majority-owned enterprises .\tDT NN VBZ JJ NNS , JJ IN DT JJ NN NN , IN JJ JJ NNS .\nThe country is richly endowed with natural resources - petroleum , hydropower , fish , forests , and minerals - and is highly dependent on the petroleum sector , which accounts for nearly half of exports and over 30 % of state revenue .\tDT NN VBZ RB VBN IN JJ NNS IN NN , NN , NN , NNS , CC NNS : CC VBZ RB JJ IN DT NN NN , WDT VBZ IN RB NN IN NNS CC IN CD NN IN NN NN .\nNorway is the world 's second-largest gas exporter ; its position as an oil exporter has slipped to ninth-largest as production has begun to decline .\tNNP VBZ DT NN POS JJ NN NN ; PRP$ NN IN DT NN NN VBZ VBN TO JJ IN NN VBZ VBN TO VB .\nNorway opted to stay out of the EU during a referendum in November 1994 ; nonetheless , as a member of the European Economic Area , it contributes sizably to the EU budget .\tNNP VBD TO VB IN IN DT NNP IN DT NN IN NNP CD ; RB , IN DT NN IN DT JJ NNP NNP , PRP VBZ RB TO DT NNP NN .\nIn anticipation of eventual declines in oil and gas production , Norway saves state revenue from the petroleum sector in the world 's second largest sovereign wealth fund , valued at over $ 500 billion in 2010 .\tIN NN IN JJ NNS IN NN CC NN NN , NNP VBZ NN NN IN DT NN NN IN DT NN POS JJ JJS JJ NN NN , VBN IN IN $ CD CD IN CD .\nAfter solid GDP growth in 2004 - 7 , the economy slowed in 2008 , and contracted in 2009 , before returning to positive growth in 2010 .\tIN JJ NN NN IN CD : CD , DT NN VBD IN CD , CC VBD IN CD , IN VBG TO JJ NN IN CD .\nA lengthy struggle between France and Great Britain for the islands ended in 1814 , when they were ceded to the latter .\tDT JJ NN IN NNP CC NNP NNP IN DT NNS VBN IN CD , WRB PRP VBD VBN TO DT NN .\nIndependence came in 1976 .\tNN VBD IN CD .\nSocialist rule was brought to a close with a new constitution and free elections in 1993 .\tJJ NN VBD VBN TO DT NN IN DT JJ NN CC JJ NNS IN CD .\nPresident France-Albert RENE , who had served since 1977 , was re-elected in 2001 , but stepped down in 2004 .\tNNP NNP NNP , WP VBD VBN IN CD , VBD VBN IN CD , CC VBD RP IN CD .\nVice President James MICHEL took over the presidency and in July 2006 was elected to a new five-year term .\tNNP NNP NNP NNP VBD RP DT NN CC IN NNP CD VBD VBN TO DT JJ JJ NN .\nA MAN had two daughters , the one married to a gardener , and the other to a tile-maker .\tDT NN VBD CD NNS , DT CD VBN TO DT NN , CC DT JJ TO DT NN .\nAfter a time he went to the daughter who had married the gardener , and inquired how she was and how all things went with her .\tIN DT NN PRP VBD TO DT NN WP VBD VBN DT NN , CC VBD WRB PRP VBD CC WRB DT NNS VBD IN PRP .\nShe said , ' All things are prospering with me , and I have only one wish , that there may be a heavy fall of rain , in order that the plants may be well watered . '\tPRP VBD , `` DT NNS VBP VBG IN PRP , CC PRP VBP RB CD NN , IN EX MD VB DT JJ NN IN NN , IN NN IN DT NNS MD VB RB VBN . ``\nNot long after , he went to the daughter who had married the tilemaker , and likewise inquired of her how she fared ; she replied , ' I want for nothing , and have only one wish , that the dry weather may continue , and the sun shine hot and bright , so that the bricks might be dried . '\tRB RB RB , PRP VBD TO DT NN WP VBD VBN DT NN , CC RB VBN IN PRP$ WRB PRP VBD ; PRP VBD , `` PRP VBP IN DT , CC VBP RB CD NN , IN DT JJ NN MD VB , CC DT NN NN JJ CC JJ , RB IN DT NNS MD VB VBN . ``\nHe said to her , ' If your sister wishes for rain , and you for dry weather , with which of the two am I to join my wishes ? '\tPRP VBD TO PRP , `` IN PRP$ NN VBZ IN NN , CC PRP IN JJ NN , IN WDT IN DT CD VBP PRP TO VB PRP$ NNS . ``\nA MAN to Whom Time Was Money , and who was bolting his breakfast in order to catch a train , had leaned his newspaper against the sugar-bowl and was reading as he ate .\tDT NN TO NNP NNP VBD NNP , CC WP VBD VBG PRP$ NN IN NN TO VB DT NN , VBD VBN PRP$ NN IN DT NN CC VBD VBG IN PRP VBD .\nIn his haste and abstraction he stuck a pickle-fork into his right eye , and on removing the fork the eye came with it .\tIN PRP$ NN CC NN PRP VBD DT NN IN PRP$ JJ NN , CC IN VBG DT NN DT NN VBD IN PRP .\nIn buying spectacles the needless outlay for the right lens soon reduced him to poverty , and the Man to Whom Time Was Money had to sustain life by fishing from the end of a wharf .\tIN VBG NNS DT JJ NN IN DT JJ NN RB VBD PRP TO NN , CC DT NN TO NNP NNP VBD NNP VBD TO VB NN IN NN IN DT NN IN DT NN .\nA noted biologist , who had been studying little green frogs in a swamp , was stumped .\tDT JJ NN , WP VBD VBN VBG JJ JJ NNS IN DT NN , VBD VBN .\nThe frog population , despite efforts at predator control , was declining at an alarming rate .\tDT NN NN , IN NNS IN NN NN , VBD VBG IN DT JJ NN .\nA chemist at a nearby college came up with a solution :\tDT NN IN DT JJ NN VBD RP IN DT NN :\nThe frogs , due to a chemical change in the swamp water , simply could n't stay coupled long enough to reproduce successfully .\tDT NNS , JJ TO DT NN NN IN DT NN NN , RB MD RB VB VBN RB RB TO VB RB .\nThe chemist then brewed up a new adhesive to assist the frogs ' togetherness , which included one part sodium .\tDT NN RB VBD RP DT JJ NN TO VB DT NNS POS NN , WDT VBD CD NN NN .\nIt seems the little green frogs needed some monosodium glue to mate .\tPRP VBZ DT JJ JJ NNS VBD DT NN NN TO VB .\nThe Taliban has claimed responsibility for a roadside bombing in Afghanistan that killed the son of the new Dutch military commander .\tDT NNP VBZ VBN NN IN DT NN VBG IN NNP WDT VBD DT NN IN DT JJ JJ JJ NN .\nLieutenant Dennis van Uhm was one of two soldiers killed in the attack Friday .\tNNP NNP NNP NNP VBD CD IN CD NNS VBN IN DT NN NNP .\nHis father , General Peter van Uhm , took command of the Dutch military on Thursday .\tPRP$ NN , NNP NNP NNP NNP , VBD NN IN DT JJ NN IN NNP .\nThe Associated Press quotes a Taliban spokesman as saying van Uhm was specifically targeted because he was a high-profile soldier .\tDT NNP NNP VBZ DT NNP NN IN VBG NNP NNP VBD RB VBN IN PRP VBD DT JJ NN .\nThe Dutch government rejects the claim , saying there is no indication that van Uhm was personally targeted .\tDT JJ NN VBZ DT NN , VBG EX VBZ DT NN IN NNP NNP VBD RB VBN .\nThe roadside bombing took place north of the Dutch military base in the southern province of Uruzgan .\tDT NN NN VBD NN NN IN DT JJ JJ NN IN DT JJ NN IN NNP .\nAlso today , three Afghan civilians died in a roadside blast in Logar province , south of the capital , Kabul .\tRB NN , CD JJ NNS VBD IN DT NN NN IN NNP NN , NN IN DT NN , NNP .\nThe U.S. ambassador to Iraq says the United States may cut funding for Iraq 's police because of their failure to punish those responsible for torture .\tDT NNP NN TO NNP VBZ DT NNP NNPS MD VB NN IN NNP POS NN IN IN PRP$ NN TO VB DT JJ IN NN .\nZalmay Khalilzad said in an interview with The New York Times newspaper that U.S. officials are reviewing some programs because of a U.S. law that bans funding security forces that violate human rights .\tNNP NNP VBD IN DT NN IN DT NNP NNP NNP NN IN NNP NNS VBP VBG DT NNS IN IN DT NNP NN WDT VBZ NN NN NNS WDT VBP JJ NNS .\nBut Khalilzad says he hopes Iraqi Interior Minister Jawad al-Bolani does punish those responsible to keep the funding .\tCC NNP VBZ PRP VBZ JJ NNP NNP NNP NNP VBZ VB DT JJ TO VB DT NN .\nEarlier this month , a special United Nations investigator said torture in Iraq may be worse now than it was when Saddam Hussein was in power .\tRBR DT NN , DT JJ NNP NNPS NN VBD NN IN NNP MD VB JJR RB IN PRP VBD WRB NNP NNP VBD IN NN .\nHe called the situation out of hand and said he examined reports of torture at official Iraqi detention centers and by private militias .\tPRP VBD DT NN IN IN NN CC VBD PRP VBD NNS IN NN IN JJ JJ NN NNS CC IN JJ NNS .\nA poll taken by a major Japanese newspaper shows overwhelming support for a change in the law to allow a woman to succeed to the throne .\tDT NN VBN IN DT JJ JJ NN VBZ JJ NN IN DT NN IN DT NN TO VB DT NN TO VB TO DT NN .\nThe Tokyo Shimbun said Sunday that 84 percent of its poll respondents approved of the idea that an empress could rule Japan .\tDT NNP NNP VBD NNP IN CD NN IN PRP$ NN NNS VBD IN DT NN IN DT NN MD VB NNP .\nIt said only six percent of respondents said succession should be limited to males .\tPRP VBD RB CD NN IN NNS VBD NN MD VB VBN TO NNS .\nUnder Japanese law , only males who have emperors on their father 's side can succeed to the throne .\tIN JJ NN , RB NNS WP VBP NNS IN PRP$ NN POS NN MD VB TO DT NN .\nThe question of succession to the throne , now occupied by 71-year-old Emperor Akihito , is gaining urgency because no boys have been born into the Imperial household for 40 years .\tDT NN IN NN TO DT NN , RB VBN IN JJ NNP NNP , VBZ VBG NN IN DT NNS VBP VBN VBN IN DT JJ NN IN CD NNS .\nThe French government has condemned remarks by a top Vatican official linking the pedophile scandal in the Catholic Church to homosexuality .\tDT JJ NN VBZ VBN NNS IN DT JJ NNP NN VBG DT JJ NN IN DT NNP NNP TO NN .\nFrench Foreign Ministry spokesman Bernard Valero Wednesday said the remarks linking the abuse to homosexuality was ' unacceptable . '\tNNP NNP NNP NN NNP NNP NNP VBD DT NNS VBG DT NN TO NN VBD `` JJ . ``\nHe said France is committed to the struggle against discrimination and prejudice linked to sexual orientation and gender identity .\tPRP VBD NNP VBZ VBN TO DT NN IN NN CC NN VBN TO JJ NN CC NN NN .\nGay rights groups also condemned the remarks by Cardinal Tarcisio Bertone .\tNN NNS NNS RB VBD DT NNS IN NNP NNP NNP .\nThe top aide to Pope Benedict sparked a furor Monday when he said that homosexuality and not the priestly vow of celibacy is the cause of widespread sex abuse of children by the Catholic clergy .\tDT JJ NN TO NNP NNP VBD DT NN NNP WRB PRP VBD IN NN CC RB DT JJ NN IN NN VBZ DT NN IN JJ NN NN IN NNS IN DT NNP NN .\nIn statement Wednesday , Vatican spokesman Federico Lombardi said that Bertone did not refer to the society at large , but only to the data gathered by Vatican investigators .\tIN NN NNP , NNP NN NNP NNP VBD IN NNP VBD RB VB TO DT NN IN JJ , CC RB TO DT NNS VBN IN NNP NNS .\nCritics have accused Pope Benedict and other church leaders of protecting abusive priests and attempting to cover up the scandal .\tNNS VBP VBN NNP NNP CC JJ NN NNS IN VBG JJ NNS CC VBG TO VB RP DT NN .\nOfficials in Ecuador say Venezuela is to help them build a $ 5 billion oil refinery that will become operational in 2012 .\tNNS IN NNP VBP NNP VBZ TO VB PRP VB DT $ CD CD NN NN WDT MD VB JJ IN CD .\nOil Minister Galo Chiriboga said Thursday the refinery will initially process Ecuadorean crude , but when supplies are depleted , Venezuelan crude will be used .\tNNP NNP NNP NNP VBD NNP DT NN MD RB VB JJ NN , CC WRB NNS VBP VBN , JJ NN MD VB VBN .\nThe facility will have the capacity to refine 3,00,000 barrels of oil daily .\tDT NN MD VB DT NN TO VB CD NNS IN NN NN .\nThe minister says a logistics study for the project should be concluded by June and that it is a way of promoting Latin American investment in refineries .\tDT NN VBZ DT NNS NN IN DT NN MD VB VBN IN NNP CC IN PRP VBZ DT NN IN VBG JJ JJ NN IN NNS .\nEcuador is capable of producing more than 5,00,000 barrels of crude oil a day , but has no refining facilities and must import gasoline .\tNNP VBZ JJ IN VBG JJR IN CD NNS IN JJ NN DT NN , CC VBZ DT NN NNS CC MD VB NN .\nEcuador is the fifth largest oil producer in South America .\tNNP VBZ DT JJ JJS NN NN IN NNP NNP .\nThe country rejoined the OPEC cartel last month after a 15-year break Venezuela is the only other Latin American country in OPEC .\tDT NN VBD DT NNP NN JJ NN IN DT JJ NN NNP VBZ DT JJ JJ JJ JJ NN IN NNP .\nVenezuelan President Hugo Chavez says his government will amend a controversial new intelligence law that human rights groups say could silence his critics .\tJJ NNP NNP NNP VBZ PRP$ NN MD VB DT JJ JJ NN NN IN JJ NNS NNS VBP MD VB PRP$ NNS .\nMr. Chavez told supporters Saturday that his government will soon correct what he called ' mistakes ' in the law .\tNNP NNP VBD NNS NNP IN PRP$ NN MD RB VB WP PRP VBD `` NNS `` IN DT NN .\nThe new law replaces Venezuela 's two main intelligence services with new agencies overseen by Mr. Chavez .\tDT JJ NN VBZ NNP POS CD JJ NN NNS IN JJ NNS VBN IN NNP NNP .\nIt requires Venezuelans to act as informants to secret police and community monitoring groups loyal to the president .\tPRP VBZ NNS TO VB IN NNS TO JJ NN CC NN NN NNS JJ TO DT NN .\nAnyone who refuses to provide information faces two to six years in prison .\tDT WP VBZ TO VB NN VBZ CD CC CD NNS IN NN .\nHuman rights advocates and legal scholars have condemned the measure , saying it will force people to report on their neighbors to avoid prison terms .\tJJ NNS NNS CC JJ NNS VBP VBN DT NN , VBG PRP MD VB NNS TO VB IN PRP$ NNS TO VB NN NNS .\nMr. Chavez says the law is intended to protect national security and combat U.S. interference .\tNNP NNP VBZ DT NN VBZ VBN TO VB JJ NN CC NN NNP NN .\nU.S. experts say sediment left by receding floodwaters in New Orleans is contaminated and could pose health risks to returning residents .\tNNP NNS VBP NN VBN IN VBG NNS IN NNP NNP VBZ VBN CC MD VB NN NNS TO VBG NNS .\nThe Environmental Protection Agency said Friday that recent test samples from storm debris and soil revealed high levels of bacteria and fuel oil .\tDT NNP NNP NNP VBD NNP IN JJ NN NNS IN NN NN CC NN VBD JJ NNS IN NNS CC NN NN .\nOfficials warned people to avoid contact with the contaminated materials .\tNNS VBD NNS TO VB NN IN DT JJ NNS .\nU.S. experts had previously reported high levels of bacteria in the floodwaters of New Orleans .\tNNP NNS VBD RB VBN JJ NNS IN NNS IN DT NNS IN NNP NNP .\nAs sediment dries , they plan to conduct air sampling and assess other exposure risks .\tIN NN NNS , PRP VBP TO VB NN NN CC VB JJ NN NNS .\nOil spills have been reported in New Orleans and many parts of Louisiana 's southeastern coast .\tNNP NNS VBP VBN VBN IN NNP NNP CC JJ NNS IN NNP POS JJ NN .\nThe U.S. Coast Guard has counted more than 40 spills from refineries , storage depots and other facilities .\tDT NNP NNP NNP VBZ VBN JJR IN CD NNS IN NNS , NN NNS CC JJ NNS .\nThe spills range in size from several hundred liters to 15 million liters .\tDT NNS VBP IN NN IN JJ CD NNS TO CD CD NNS .\nAt least six Iraqis have been killed in clashes in the cities of Samarra and Ramadi , as pre-election violence continues virtually unabated .\tIN JJS CD NNS VBP VBN VBN IN NNS IN DT NNS IN NNP CC NNP , IN JJ NN VBZ RB JJ .\nHospital officials say clashes near a U.S. military base west of Baghdad in Ramadi Wednesday killed two people .\tNN NNS VBP NNS IN DT NNP JJ NN NN IN NNP IN NNP NNP VBD CD NNS .\nAnd Iraqi police say gunmen attacked a police station in Samarra , north of the capital , killing at least four people .\tCC JJ NNS VBP NNS VBD DT NN NN IN NNP , NN IN DT NN , VBG IN JJS CD NNS .\nMeanwhile , in neighboring Kuwait , U.S. Defense Secretary Donald Rumsfeld spoke to American troops at Camp Buehring preparing to go to Iraq .\tRB , IN VBG NNP , NNP NNP NNP NNP NNP VBD TO JJ NNS IN NNP NNP VBG TO VB TO NNP .\nSoldiers told Mr. Rumsfeld they are concerned about the lack of adequate armor on some vehicles and about their long deployments .\tNNS VBD NNP NNP PRP VBP VBN IN DT NN IN JJ NN IN DT NNS CC IN PRP$ JJ NNS .\nMr. Rumsfeld said production of armored metal has been stepped up , but he said ' you go to war with the army you have . '\tNNP NNP VBD NN IN JJ NN VBZ VBN VBN RB , CC PRP VBD `` PRP VBP TO NN IN DT NN PRP VBP . ``\nThe number of American combat deaths in Iraq reached 1,000 on Tuesday\tDT NN IN JJ NN NNS IN NNP VBD CD IN NNP\nIndian police say they have arrested a top militant commander blamed for dozens of attacks and tourist killings in Indian Kashmir .\tJJ NNS VBP PRP VBP VBN DT JJ NN NN VBN IN NNS IN NNS CC NN NNS IN JJ NNP .\nAuthorities said Saturday that Mudasir Gujri was arrested in Jammu - Kashmir , India 's only Muslim majority state .\tNNS VBD NNP IN NNP NNP VBD VBN IN NNP IN NNP , NNP POS JJ NN NN NN .\nState police chief Gopal Sharma told a news conference that Mudasir is believed to be the main planner of Lashkar-e-Toiba , a Pakistan-based Kashmiri militant group , and the mastermind behind at least 25 recent attacks .\tNNP NN NN NNP NNP VBD DT NN NN IN NNP VBZ VBN TO VB DT JJ NN IN NNP , DT JJ JJ JJ NN , CC DT NN IN IN JJS CD JJ NNS .\nThe police chief called the arrest a great setback to the militants , but added that once one terror cell is defeated , ' another one comes up . '\tDT NN NN VBD DT NN DT JJ NN TO DT NNS , CC VBD IN RB CD NN NN VBZ VBN , `` DT CD VBZ RP . ``\nIndian officials have said they suspect last week 's railway attacks in Mumbai that killed nearly 200 people were carried out by Lashkar-e-Toiba .\tJJ NNS VBP VBN PRP VBP JJ NN POS NN NNS IN NNP WDT VBD RB CD NNS VBD VBN RP IN NNP .\nThe group , which is fighting Indian rule in Kashmir , has denied involvement .\tDT NN , WDT VBZ VBG JJ NN IN NNP , VBZ VBN NN .\nBurma 's military government has rejected a U.S. State Department report that slams Burma for restricting religious activities .\tNNP POS JJ NN VBZ VBN DT NNP NNP NNP NN IN VBZ NNP IN VBG JJ NNS .\nThe annual report was issued earlier this month and lists countries , including Burma , Iran and China , as nations ' engaged in or tolerating particularly severe violations of religious freedom . '\tDT JJ NN VBD VBN RBR DT NN CC NNS NNS , VBG NNP , NNP CC NNP , IN NNS `` VBN IN CC VBG RB JJ NNS IN JJ NN . ``\nBurma 's Foreign Ministry said Saturday that the allegations were politically motivated and unjustified .\tNNP POS NNP NNP VBD NNP IN DT NNS VBD RB JJ CC JJ .\nIt said no serious problems exist among religious groups in Burma .\tPRP VBD DT JJ NNS VBP IN JJ NNS IN NNP .\nBurma is overwhelmingly Buddhist , with small minorities of Christians , Muslims , Hindus and animists .\tNNP VBZ RB JJ , IN JJ NNS IN NNPS , NNPS , NNP CC NNS .\nIt has long been criticized by rights groups and countries , including the United States , for its human rights record .\tPRP VBZ RB VBN VBN IN NNS NNS CC NNS , VBG DT NNP NNPS , IN PRP$ JJ NNS NN .\nThe State Department report is meant to help U.S. officials shape policy , conduct diplomacy and decide whether to help private groups promoting religious freedom in their countries .\tDT NNP NNP NN VBZ VBN TO VB NNP NNS VBP NN , NN NN CC VB IN TO VB JJ NNS VBG JJ NN IN PRP$ NNS .\nThe U.S. nominee to head the World Bank has hailed what he calls a ' new generation ' of African leaders , and has promised to build stronger partnerships with African countries .\tDT NNP NN TO VB DT NNP NNP VBZ VBN WP PRP VBZ DT `` JJ NN `` IN JJ NNS , CC VBZ VBN TO VB JJR NNS IN JJ NNS .\nAs he wrapped up a four-day tour of the continent in South Africa , Robert Zoellick said African leaders are taking responsibility for their countries in dealing with issues including energy , employment , investment and infrastructure .\tIN PRP VBD RP DT JJ NN IN DT NN IN NNP NNP , NNP NNP VBD JJ NNS VBP VBG NN IN PRP$ NNS IN VBG IN NNS VBG NN , NN , NN CC NN .\nZoellick said if he is appointed president of the World Bank , he will focus on stronger partnerships with African countries to help with their individual strategies for development and growth .\tNNP VBD IN PRP VBZ VBN NN IN DT NNP NNP , PRP MD VB IN JJR NNS IN JJ NNS TO VB IN PRP$ JJ NNS IN NN CC NN .\nZoellick met with African leaders in Ghana , Ethiopia and South Africa on this week 's tour .\tNNP VBD IN JJ NNS IN NNP , NNP CC NNP NNP IN DT NN POS NN .\nHe is scheduled to visit Europe , Mexico and Brazil before returning to the United States .\tPRP VBZ VBN TO VB NNP , NNP CC NNP IN VBG TO DT NNP NNPS .\nZoellick is expected to be confirmed as World Bank president next month .\tNNP VBZ VBN TO VB VBN IN NNP NNP NN JJ NN .\nAmericans Andy Roddick and James Blake , along with Jarkko Nieminen of Finland have won warm-up events for the Australian Open - the first Grand Slam tennis event of the year .\tNNS NNP NNP CC NNP NNP , IN IN NNP NNP IN NNP VBP VBN JJ NNS IN DT JJ NNP IN DT JJ NNP NNP NN NN IN DT NN .\nRoddick beat German Tommy Haas in straight sets ( 06-Mar , 07-Jun ) Saturday at an exhibition tournament in Melbourne , which will host the Australian Open starting Monday .\tNNP VBD JJ NNP NNP IN JJ NNS LRB CD , CD RRB NNP IN DT NN NN IN NNP , WDT MD VB DT JJ NNP VBG NNP .\nEighth seed Blake needed three sets to get by unseeded Russian Igor Andreev ( 06-Feb , 03-Jun , 07-Jun ) in the finals of the Sydney International tournament .\tJJ NN NNP VBD CD NNS TO VB IN JJ JJ NNP NNP LRB CD , CD , CD RRB IN DT NNS IN DT NNP NNP NNP .\nSeventh seed Nieminen broke a six-year title drought when he beat fifth seed Mario Ancic of Croatia in straight sets ( 06-Feb , 06-Feb ) at the Heineken Open in Auckland , New Zealand .\tJJ NN NNP VBD DT JJ NN NN WRB PRP VBD JJ NN NNP NNP IN NNP IN JJ NNS LRB CD , CD RRB IN DT NNP NNP IN NNP , NNP NNP .\nSouth Korean diplomats held face-to-face talks Friday with Taleban militants who have been holding 21 South Korean hostages for three weeks .\tJJ JJ NNS VBD JJ NNS NNP IN NNP NNS WP VBP VBN VBG CD JJ JJ NNS IN CD NNS .\nTaleban spokesman Yousef Ahmadi says two of its negotiators attended the talks in eastern Ghazni City .\tNNP NN NNP NNP VBZ CD IN PRP$ NNS VBD DT NNS IN JJ NNP NNP .\nEarlier , the Afghan government guaranteed safe passage for the Taleban representatives .\tRB , DT JJ NN VBD JJ NN IN DT NNP NNS .\nNegotiations had earlier been stalled over where to hold the meeting .\tNNS VBD RB VBN VBN IN WRB TO VB DT NN .\nThe talks are seen as one of the last diplomatic efforts to secure the release of the hostages .\tDT NNS VBP VBN IN CD IN DT JJ JJ NNS TO VB DT NN IN DT NNS .\nA total of 23 South Koreans were abducted by Taleban militants on July 19 while traveling through Ghazni province .\tDT NN IN CD NNP NNS VBD VBN IN NNP NNS IN NNP CD IN VBG IN NNP NN .\nThe kidnappers have already executed two male hostages .\tDT NNS VBP RB VBN CD JJ NNS .\nThe captors have repeatedly threatened to kill more of the South Koreans unless the Afghan government and U.S. military release Taleban prisoners .\tDT NNS VBP RB VBN TO VB JJR IN DT NNP NNS IN DT JJ NN CC NNP NN VB NNP NNS .\nThe Afghan government has refused their demands .\tDT JJ NN VBZ VBN PRP$ NNS .\nChina 's state-run news agency says a coal mine accident in central Henan province has killed 13 miners and left 66 missing .\tNNP POS JJ NN NN VBZ DT NN NN NN IN JJ NNP NN VBZ VBN CD NNS CC VBD CD JJ .\nXinhua , citing the state 's work safety agency , says Tuesday 's accident took place in Pingdingshan city .\tNNP , VBG DT NN POS NN NN NN , VBZ NNP POS NN VBD NN IN NNP NN .\nIt gave no other information .\tPRP VBD DT JJ NN .\nChinese coal mines are notoriously dangerous .\tJJ NN NNS VBP RB JJ .\nAccidents killed more than 3,000 people last year\tNNS VBD JJR IN CD NNS JJ NN\nThe Afghan Defense Ministry says Afghan and U.S-led forces inflicted heavy casualties on insurgents in a battle Sunday in the eastern province of Nuristan .\tDT JJ NNP NNP VBZ JJ CC JJ NNS VBD JJ NNS IN NNS IN DT NN NNP IN DT JJ NN IN NNP .\nNeither Afghan nor U.S. military officials said how many insurgents were killed .\tDT JJ CC NNP JJ NNS VBD WRB JJ NNS VBD VBN .\nAfghan officials said one of their soldiers had been killed .\tJJ NNS VBD CD IN PRP$ NNS VBD VBN VBN .\nThe military officials said there were no reports of civilian casualties .\tDT JJ NNS VBD EX VBD DT NNS IN JJ NNS .\nNuristan officials dispute that , saying at least 20 civilians died in the attack and more were wounded .\tNNP NNS VBP IN , VBG IN JJS CD NNS VBD IN DT NN CC JJR VBD VBN .\nDefense Ministry officials say eight insurgents were captured , while Nuristan leaders say those detained were civilians .\tNNP NNP NNS VBP CD NNS VBD VBN , IN NNP NNS VBP DT VBN VBD NNS .\nThe Afghan Defense Ministry is investigating the situation .\tDT JJ NNP NNP VBZ VBG DT NN .\nAfghan and U.S. forces undertook the operation to clear insurgents from the remote province near the Pakistani border .\tJJ CC NNP NNS VBP DT NN TO JJ NNS IN DT JJ NN IN DT JJ NN .\nNuristan is a known stronghold of Taliban-led militants .\tNNP VBZ DT JJ NN IN JJ NNS .\nOne Nuristan leader said the Taliban had been in the area , but left before the fighting started .\tCD NNP NN VBD DT NNP VBD VBN IN DT NN , CC VBD IN DT NN VBD .\nA published report in Britain says authorities believe they foiled a terrorist plot to carry out a nerve gas attack on parliament .\tDT VBN NN IN NNP VBZ NNS VBP PRP VBD DT JJ NN TO VB RP DT NN NN NN IN NN .\nThe Sunday Times says an al-Qaida cell in Britain carried out extensive research last year and videotaped reconnaissance in preparation for an attack on parliament and London 's subway system .\tDT NNP NNP VBZ DT NNP NN IN NNP VBD RP JJ NN JJ NN CC VBD NN IN NN IN DT NN IN NN CC NNP POS NN NN .\nThe newspaper says and internal police security document shows the alleged terrorist plot involved the use of deadly sarin gas and chemical ' dirty bombs . '\tDT NN VBZ CC JJ NN NN NN VBZ DT JJ JJ NN VBD DT NN IN JJ NN NN CC NN `` NN NNS . ``\nBritish intelligence officials are reported to have used an al-Qaida informant to crack coded e-mail correspondence found in computers seized from terror suspects in Britain and Pakistan .\tJJ NN NNS VBP VBN TO VB VBN DT NNP NN TO VB VBN NN NN VBN IN NNS VBN IN NN NNS IN NNP CC NNP .\nThe Sunday Times says deciphering the code also helped authorities uncover several terrorist plots .\tDT NNP NNP VBZ VBG DT NN RB VBD NNS VB JJ JJ NNS .\nPolice have not commented on the newspaper report .\tNNS VBP RB VBN IN DT NN NN .\nFamily , friends and residents of a small town in the U.S. state of Ohio are mourning the loss of 19 U.S. Marines - all from the same unit - killed this week in Iraq .\tNN , NNS CC NNS IN DT JJ NN IN DT NNP NN IN NNP VBP VBG DT NN IN CD NNP NNPS IN DT IN DT JJ NN IN VBN DT NN IN NNP .\nOn Wednesday , 14 Marines from the 3rd Battalion , 25th Marines unit based in the Ohio town of Brook Park died when their vehicle hit a roadside bomb .\tIN NNP , CD NNS IN DT CD NN , JJ NNPS NN VBN IN DT NNP NN IN NNP NNP VBD WRB PRP$ NN VBD DT NN NN .\nFive more Marines from the same unit were killed in an ambush on Monday .\tCD JJR NNS IN DT JJ NN VBD VBN IN DT NN IN NNP .\nThe deaths have rattled the residents of the small Cleveland suburb , which has just over 20,000 residents .\tDT NNS VBP VBN DT NNS IN DT JJ NNP NN , WDT VBZ RB IN CD NNS .\nLocal media say almost everyone in the town knew one or more of the Marines killed in this week 's attacks .\tJJ NNS VBP RB DT IN DT NN VBD CD CC JJR IN DT NNPS VBD IN DT NN POS NNS .\nRelatives of the Marines killed have expressed both grief and anger , some calling for President Bush to withdraw the troops from Iraq , while others say the deaths only reaffirm their support for the war .\tNNS IN DT NNS VBN VBP VBN DT NN CC NN , DT NN IN NNP NNP TO VB DT NNS IN NNP , IN NNS VBP DT NNS RB VBP PRP$ NN IN DT NN .\nThe U.S. space shuttle Endeavouris scheduled to return to Earth Friday , following a two-week mission to service the International Space Station .\tDT NNP NN NN NNP VBD TO VB TO NNP NNP , VBG DT JJ NN TO VB DT NNP NNP NNP .\nEndeavourundocked from the orbiting outpost Tuesday , beginning the long journey home that will end with a landing at the Kennedy Space Center in Florida .\tVBN IN DT VBG NN NNP , VBG DT JJ NN NN WDT MD VB IN DT NN IN DT NNP NNP NNP IN NNP .\nEndeavour 's mission at the space station included five spacewalks , during which shuttle astronauts installed an external platform on the station 's Japanese lab , known as Kibo , or ' hope . '\tNNP POS NN IN DT NN NN VBD CD NNS , IN WDT NN NNS VBD DT JJ NN IN DT NN POS JJ NN , VBN IN NNP , CC `` NN . ``\nThe platform will allow scientists to conduct experiments in the vacuum of space .\tDT NN MD VB NNS TO VB NNS IN DT NN IN NN .\nThe crew also conducted maintenance work on the station .\tDT NN RB VBD NN NN IN DT NN .\nWhile the shuttle was docked at the station , the outpost 's population grew to 13 - the highest number in its history .\tIN DT NN VBD VBN IN DT NN , DT NN POS NN VBD TO CD IN DT JJS NN IN PRP$ NN .\nThe shuttle will be bringing back Japanese astronaut Koichi Wakata , who has been on the space station since March .\tDT NN MD VB VBG RB JJ NN NNP NNP , WP VBZ VBN IN DT NN NN IN NNP .\nU.S. astronaut Timothy Kopra is taking his place .\tNNP NN NNP NNP VBZ VBG PRP$ NN .\nAfghan President Hamid Karzai led his country 's Independence Day celebrations Sunday with a call for young Afghans to educate themselves to preserve their freedom .\tJJ NNP NNP NNP VBD PRP$ NN POS NNP NNP NNS NNP IN DT NN IN JJ NNS TO VB PRP TO VB PRP$ NN .\nMr. Karzai told thousands of people gathered at the Kabul sports stadium that Afghanistan was still threatened by enemies , referring to the Taleban-led insurgency .\tNNP NNP VBD NNS IN NNS VBN IN DT NNP NNS NN IN NNP VBD RB VBN IN NNS , VBG TO DT JJ NN .\nMeanwhile , Mullah Omar , the elusive Taleban leader in Afghanistan , issued a statement calling for people to join the insurgency to oust the U.S.-backed Karzai government .\tRB , NNP NNP , DT JJ NNP NN IN NNP , VBD DT NN VBG IN NNS TO VB DT NN TO VB DT JJ NNP NN .\nAfghanistan served as a buffer between the British and Russian empires until it won independence from British control on August 19th of 1919 .\tNNP VBD IN DT NN IN DT JJ CC JJ NNS IN PRP VBD NN IN JJ NN IN NNP JJ IN CD .\nIranian President Mohammad Khatami has marked the 26th anniversary of the Islamic revolution with a stern warning that any invaders will face what he calls a ' burning hell . '\tJJ NNP NNP NNP VBZ VBN DT JJ NN IN DT JJ NN IN DT JJ NN IN DT NNS MD VB WP PRP VBZ DT `` NN NN . ``\nAddressing tens of thousands of Iranians Thursday in central Tehran , Mr. Khatami said the Islamic republic does not seek ' war , violence or confrontation . '\tVBG NNS IN NNS IN NNS NNP IN JJ NNP , NNP NNP VBD DT NNP NN VBZ RB VB `` NN , NN CC NN . ``\nIran is facing mounting international pressure over its nuclear program , which the United States alleges is aimed at developing nuclear weapons .\tNNP VBZ VBG VBG JJ NN IN PRP$ JJ NN , WDT DT NNP NNPS VBZ VBZ VBN IN VBG JJ NNS .\nPresident Bush says he has not ruled out the use of military force , if negotiations fail to end the threat .\tNNP NNP VBZ PRP VBZ RB VBN IN DT NN IN JJ NN , IN NNS VBP TO VB DT NN .\nToday , for a second time in two days , Mr. Khatami dismissed Mr. Bush 's comments as part of a psychological war .\tNN , IN DT JJ NN IN CD NNS , NNP NNP VBD NNP NNP POS NNS IN NN IN DT JJ NN .\nBritain , France and Germany are engaged in ongoing talks with Iran aimed at persuading Tehran to end its nuclear enrichment program .\tNNP , NNP CC NNP VBP VBN IN JJ NNS IN NNP VBN IN VBG NNP TO VB PRP$ JJ NN NN .\nNegotiators in Geneva have reported little progress in the talks .\tNNS IN NNP VBP VBN JJ NN IN DT NNS .\nThe center-left opposition bloc has won the lower house in Italy 's parliamentary elections by a razor-thin margin while the race for the Senate is still unclear .\tDT JJ NN NN VBZ VBN DT JJR NN IN NNP POS JJ NNS IN DT JJ NN IN DT NN IN DT NNP VBZ RB JJ .\nOfficial results give the opposition 49.8 percent of the vote while Prime Minister Silvio Berlusconi 's ruling conservative coalition wins 49.7 percent .\tJJ NNS VBP DT NN CD NN IN DT NN IN NNP NNP NNP NNP POS NN JJ NN VBZ CD NN .\nUnder Italy 's new election laws , the opposition will automatically control 55 percent of the seats in the lower house .\tIN NNP POS JJ NN NNS , DT NN MD RB VB CD NN IN DT NNS IN DT JJR NN .\nMeanwhile , officials are giving the Berlusconi coalition a one-seat margin in the senate - 155 to 154 .\tRB , NNS VBP VBG DT NNP NN DT JJ NN IN DT NN IN CD TO CD .\nBut six seats chosen by Italians voting abroad still to be counted .\tCC CD NNS VBN IN NNS VBG RB RB TO VB VBN .\nA coalition must control both the senate and the lower house in order to form a government .\tDT NN MD VB DT DT NN CC DT JJR NN IN NN TO VB DT NN .\nPrime Minister Berlusconi and Mr. Prodi have both called for new elections if neither side controls both houses .\tJJ NN NNP CC NNP NNP VBP DT VBN IN JJ NNS IN DT NN VBZ DT NNS .\nThe election came after an angry campaign full of insults by both sides .\tDT NN VBD IN DT JJ NN JJ IN NNS IN DT NNS .\nThe head of the World Health Organization ( WHO ) is assuring consumers there is no risk of catching bird flu from properly cooked food .\tDT NN IN DT NNP NNP NNP LRB WP RRB VBZ VBG NNS EX VBZ DT NN IN VBG NN NN IN RB VBN NN .\nDr. Lee Jong-Wook said Monday that none of the 173 confirmed bird flu cases since 2003 came from eating well-cooked poultry or eggs .\tNNP NNP NNP VBD NNP IN NN IN DT CD VBD NN NN NNS IN CD VBD IN VBG JJ NN CC NNS .\nDr. Lee says poultry products are an important source of protein and that thorough cooking kills the virus .\tNNP NNP VBZ NN NNS VBP DT JJ NN IN NN CC IN JJ NN VBZ DT NN .\nEuropean poultry farmers have said they have lost millions of dollars from people giving up chickens because of bird flu fears .\tJJ NN NNS VBP VBN PRP VBP VBN NNS IN NNS IN NNS VBG RP NNS IN IN NN NN NNS .\nFrench officials say 20 countries have banned French poultry since bird flu was found on a commercial turkey farm last week .\tJJ NNS VBP CD NNS VBP VBN JJ NN IN NN NN VBD VBN IN DT JJ NN NN JJ NN .\nMeanwhile , the virus has spread to a third African country with Niger reporting the disease in domestic ducks .\tRB , DT NN VBZ VBN TO DT JJ JJ NN IN NNP VBG DT NN IN JJ NNS .\nBird flu has also been found in Nigeria and Egypt .\tNN NN VBZ RB VBN VBN IN NNP CC NNP .\nIn Europe , Bosnia has reported its first bird flu cases in swans .\tIN NNP , NNP VBZ VBN PRP$ JJ NN NN NNS IN NNS .\nThe British pharmaceutical company GlaxoSmithKline says it could have a bird flu vaccine ready for mass production as early as next year .\tDT JJ JJ NN NNP VBZ PRP MD VB DT NN NN NN JJ IN NN NN RB RB IN JJ NN .\nIn a statement issued Wednesday , the company reported a breakthrough in recent trials of the vaccine , which it says is effective against the deadly H5N1 strain .\tIN DT NN VBN NNP , DT NN VBD DT NN IN JJ NNS IN DT NN , WDT PRP VBZ VBZ JJ IN DT JJ NNP NN .\nGlaxoSmithKline said it could be ready to submit the vaccine to regulators by the end of this year .\tNNP VBD PRP MD VB JJ TO VB DT NN TO NNS IN DT NN IN DT NN .\nThe company said the key to its vaccine is the low concentration of active ingredient .\tDT NN VBD DT NN TO PRP$ NN VBZ DT JJ NN IN JJ NN .\nThis would allow the vaccine to be produced on a mass scale , allowing governments to stock up on the vaccine to be used in the event of a pandemic .\tDT MD VB DT NN TO VB VBN IN DT NN NN , VBG NNS TO VB RP IN DT NN TO VB VBN IN DT NN IN DT NN .\nSeveral other companies are working to develop bird flu vaccines .\tJJ JJ NNS VBP VBG TO VB NN NN NNS .\nIn the latest bird flu outbreak , health officials in Thailand reported Wednesday that a teenage boy who died earlier this week was infected with the deadly H5N1 variety of the disease .\tIN DT JJS NN NN NN , NN NNS IN NNP VBD NNP IN DT JJ NN WP VBD RBR DT NN VBD VBN IN DT JJ NNP NN IN DT NN .\nGermany and the United States are two of the biggest gainers in this month 's world football rankings released by the International Football Federation ( FIFA ) on Wednesday .\tNNP CC DT NNP NNPS VBP CD IN DT JJS NNS IN DT NN POS NN NN NNS VBN IN DT NNP NNP NNP LRB NNP RRB IN NNP .\nAfter an impressive performace at the Confederations Cup , Germany moved up 10 spots to 11th place overall .\tIN DT JJ NN IN DT NNPS NNP , NNP VBD RP CD NNS TO JJ NN NN .\nThe U.S. team moved up four spots to sixth in the world , its highest-ever ranking , thanks to the team 's success at the ongoing CONCACAF Gold Cup .\tDT NNP NN VBD RB CD NNS TO JJ IN DT NN , PRP$ JJ NN , NNS TO DT NN POS NN IN DT JJ NNP NNP NNP .\nBrazil remains atop the rankings followed by Argentina and the Netherlands , which each moved up one spot .\tNNP VBZ IN DT NNS VBN IN NNP CC DT NNP , WDT DT VBD RB CD NN .\nThe Czech Republic fell two slots to fourth place , followed by Mexico , which rose one spot to fifth .\tDT JJ NNP VBD CD NNS TO JJ NN , VBN IN NNP , WDT VBD CD NN TO NN .\nThe U.S. team is sixth , with France down two positions in seventh place .\tDT NNP NN VBZ JJ , IN NNP IN CD NNS IN JJ NN .\nEngland dropped one place to eighth , with Spain up one slot in ninth place and Portugal falling two spots to 10th place .\tNNP VBD CD NN TO NN , IN NNP IN CD NN IN JJ NN CC NNP VBG CD NNS TO JJ NN .\nOfficials in Somalia 's capital say at least 10 people have been killed in fighting between government troops and police .\tNNS IN NNP POS NN VBP IN JJS CD NNS VBP VBN VBN IN VBG IN NN NNS CC NNS .\nThe gunbattle broke out Saturday in the Hamarjajab district in the south of Mogadishu .\tDT NN VBD RP NNP IN DT NNP NN IN DT NN IN NNP .\nLocal officials say the fighting was sparked by an argument between the police and soldiers .\tJJ NNS VBP DT NN VBD VBN IN DT NN IN DT NNS CC NNS .\nAt least 10 civilians were wounded in the incident .\tIN JJS CD NNS VBD VBN IN DT NN .\nMost of those killed are said to be soldiers .\tJJS IN DT VBN VBP VBN TO VB NNS .\nSomalia has endured nearly 20 years of war and chaos since the fall of the last stable government in 1991 .\tNNP VBZ VBN RB CD NNS IN NN CC NN IN DT NN IN DT JJ JJ NN IN CD .\nThe country 's current government is fighting Islamist insurgent groups and controls only small sections of the capital , with the help of African Union peacekeepers .\tDT NN POS JJ NN VBZ VBG NNP JJ NNS CC NNS RB JJ NNS IN DT NN , IN DT NN IN NNP NNP NNS .\nThe United Nations Security Council has expressed concern that the Central African Republic could be destabilized by continuing violence in Darfur , Sudan and escalating tensions between Sudan and Chad .\tDT NNP NNP NNP NNP VBZ VBN NN IN DT NNP NNP NNP MD VB VBN IN VBG NN IN NNP , NNP CC VBG NNS IN NNP CC NNP .\nThe CAR shares its northern border with Sudan to the east and Chad to the west .\tDT NNP VBZ PRP$ JJ NN IN NNP TO DT NN CC NN TO DT NN .\nIts northern region has been beset by skirmishes between government forces and rebels .\tPRP$ JJ NN VBZ VBN VBN IN NNS IN NN NNS CC NNS .\nAt least 33 people were killed in clashes among the groups in June .\tIN JJS CD NNS VBD VBN IN NNS IN DT NNS IN NNP .\nIn a report issued last week , U.N. Secretary General Kofi Annan warned that the area could attract more armed groups , mercenaries and rebels trying to destabilize governments in the region .\tIN DT NN VBN JJ NN , NNP NNP NNP NNP NNP VBD IN DT NN MD VB JJR JJ NNS , NNS CC NNS VBG TO VB NNS IN DT NN .\nThe U.N. report also said humanitarian conditions in the country are deteriorating while human rights violations are rising .\tDT NNP NN RB VBD JJ NNS IN DT NN VBP VBG IN JJ NNS NNS VBP VBG .\nAustria has assumed the presidency of the European Union for a six-month term .\tNNP VBZ VBN DT NN IN DT NNP NNP IN DT JJ NN .\nBritain , which had held the EU leadership since July , turned over the presidency to Austria and its Chancellor Wolfgang Schuessel Sunday .\tNNP , WDT VBD VBN DT NNP NN IN NNP , VBD RP DT NN TO NNP CC PRP$ NNP NNP NNP NNP .\nBritain led the European Union during difficult and prolonged negotiations on a new budget for the 25-member group , and also bridged deep divisions within the bloc to begin talks with Turkey on EU membership for the secular Muslim state .\tNNP VBD DT NNP NNP IN JJ CC JJ NNS IN DT JJ NN IN DT JJ NN , CC RB VBD JJ NNS IN DT NN TO VB NNS IN NNP IN NNP NN IN DT JJ NNP NN .\nDuring Austria 's leadership term , Chancellor Schuessel will try to revive efforts to reach agreement on a controversial European constitution .\tIN NNP POS NN NN , NNP NNP MD VB TO VB NNS TO VB NN IN DT JJ JJ NN .\nThe project was all but abandoned since French and Dutch voters rejected the charter last year .\tDT NN VBD DT CC VBN IN JJ CC JJ NNS VBD DT NN JJ NN .\nFinland is next in line for the EU presidency after Austria 's term .\tNNP VBZ JJ IN NN IN DT NNP NN IN NNP POS NN .\nOil prices hit a 17-month low Monday as investors worried that a global economic slowdown will cut demand for energy .\tNN NNS VBD DT JJ JJ NNP IN NNS VBD IN DT JJ JJ NN MD VB NN IN NN .\nAt the close of trading , the price of a barrel of oil was down less than one dollar to hit $ 63.22 .\tIN DT NN IN NN , DT NN IN DT NN IN NN VBD RB JJR IN CD NN TO VB $ CD .\nEarlier , prices went as low as $ 61.3 .\tRB , NNS VBD RB JJ IN $ CD .\nOil prices fell even though OPEC ( the Organization of Petroleum Exporting Countries ) members said Friday they would cut production by more than five percent ( 1.5 million barrels per day ) .\tNN NNS VBD RB IN NNP LRB DT NNP IN NNP NNP NNPS RRB NNS VBD NNP PRP MD VB NN IN JJR IN CD NN LRB CD CD NNS IN NN RRB .\nOPEC produces about two-fifths of the world 's oil .\tNNP VBZ IN NNS IN DT NN POS NN .\nIran 's OPEC governor Mohammad Ali Khatibi says the cartel will consider further production cuts to help stabilize the oil market if demand does not pick up .\tNNP POS NNP NN NNP NNP NNP VBZ DT NN MD VB JJ NN NNS TO VB VB DT NN NN IN NN VBZ RB VB RP .\nOil prices are down more than 50 percent since hitting a record high of more than $ 147 a barrel in July .\tNN NNS VBP RB JJR IN CD NN IN VBG DT NN NN IN JJR IN $ CD DT NN IN NNP .\nThe U.S. State Department says it is concerned by the continued repression of academic freedom in Iran .\tDT NNP NNP NNP VBZ PRP VBZ VBN IN DT JJ NN IN JJ NN IN NNP .\nA U.S. spokesman says that in recent months , dozens of Iranian students have been detained , professors have been replaced , and freedom of expression has been severely curtailed on university campuses in Iran .\tDT NNP NN VBZ IN IN JJ NNS , NNS IN JJ NNS VBP VBN VBN , NNS VBP VBN VBN , CC NN IN NN VBZ VBN RB VBN IN NN NNS IN NNP .\nA statement released Friday says the families of the detained men and women have not been allowed to communicate with their loved ones .\tDT NN VBN NNP VBZ DT NNS IN DT JJ NNS CC NNS VBP RB VBN VBN TO VB IN PRP$ VBN NNS .\nIt calls on the Iranian government to release the detainees and to guarantee fundamental freedoms for all citizens .\tPRP VBZ IN DT JJ NN TO VB DT NNS CC TO VB JJ NNS IN DT NNS .\nThe State Department says the abuses have taken place since September , when Iranian President Mahmoud Ahmadinejad said in a speech in New York that universities should be places where the freedoms of expression and conscience flourish .\tDT NNP NNP VBZ DT NNS VBP VBN NN IN NNP , WRB JJ NNP NNP NNP VBD IN DT NN IN NNP NNP IN NNS MD VB NNS WRB DT NNS IN NN CC NN VBP .\nThe U.S. Justice Department will seek to dismiss at least 180 cases brought by detainees held at the U.S. military 's detention center at Guantanamo Bay , Cuba .\tDT NNP NNP NNP MD VB TO VB IN JJS CD NNS VBN IN NNS VBN IN DT NNP NN POS NN NN IN NNP NNP , NNP .\nThe prisoners ' lawsuits challenge the legality of their confinement at the prison .\tDT NNS POS NNS VBP DT NN IN PRP$ NN IN DT NN .\nJustice Department officials notified judges presiding over the cases at the U.S. District Court in Washington that official motions to dismiss the lawsuits will be filed .\tNNP NNP NNS VBD NNS VBG IN DT NNS IN DT NNP NNP NNP IN NNP IN JJ NNS TO VB DT NNS MD VB VBN .\nLegislation signed by President Bush last week curbs U.S. civilian courts ' abilities to hear detainees ' cases .\tNN VBN IN NNP NNP JJ NN VBZ NNP JJ NNS POS NNS TO VB NNS POS NNS .\nAbout 500 prisoners are held at Guantanamo , most of them captured in Afghanistan on suspicion of ties to the Taleban or al-Qaida .\tIN CD NNS VBP VBN IN NNP , JJS IN PRP VBD IN NNP IN NN IN NNS TO DT NNP CC NNP .\nSupporters of Pakistan 's main religion-based parties have marched in the capital , Islamabad , to protest a nationwide crackdown on suspected Islamic militants .\tNNS IN NNP POS JJ JJ NNS VBP VBN IN DT NN , NNP , TO VB DT JJ NN IN JJ JJ NNS .\nMore than 1,000 demonstrators marched in Islamabad Friday chanting religious and anti-American slogans and demanding the release of those detained .\tJJR IN CD NNS VBD IN NNP NNP VBG JJ CC JJ NNS CC VBG DT NN IN DT VBN .\nOrganizers say they object to raids on religious schools and mosques in a crackdown they say is an effort to appease the United States and the West .\tNNS VBP PRP VBP TO NNS IN JJ NNS CC NNS IN DT NN PRP VBP VBZ DT NN TO VB DT NNP NNPS CC DT NNP .\nMore than 300 people have been detained so far across Pakistan since the July seventh London bombings carried out by British Muslims of Pakistani origin who had visited the country before the attacks .\tJJR IN CD NNS VBP VBN VBN RB RB IN NNP IN DT NNP JJ NNP NNS VBN RP IN JJ NNPS IN JJ NN WP VBD VBN DT NN IN DT NNS .\nIn a nationwide address Thursday , Pakistani President Pervez Musharraf sought the support of Pakistanis in the fight against extremism and terrorism .\tIN DT JJ NN NNP , JJ NNP NNP NNP VBD DT NN IN NNS IN DT NN IN NN CC NN .\nPolice in Israel have charged an Iranian-born Israeli with passing defense information to Iran .\tNNS IN NNP VBP VBN DT JJ NN IN VBG NN NN TO NNP .\nMedia reports say the man is believed to have had contact with Iranian intelligence agents in Istanbul and given them the names of people serving in the Israeli security and intelligence services .\tNNS NNS VBP DT NN VBZ VBN TO VB VBN NN IN JJ NN NNS IN NNP CC VBN PRP DT NNS IN NNS VBG IN DT JJ NN CC NN NNS .\nPolice officials say the suspect was arrested earlier this month and formally charged in Tel Aviv Sunday .\tNNS NNS VBP DT NN VBD VBN RBR DT NN CC RB VBN IN NNP NNP NNP .\nThe suspect 's identity has not been released .\tDT NN POS NN VBZ RB VBN VBN .\nJapan says it will give Afghanistan $ 110 million in aid to help with border security , literacy and the plight of refugees in the war-torn country .\tNNP VBZ PRP MD VB NNP $ CD CD IN NN TO VB IN NN NN , NN CC DT NN IN NNS IN DT JJ NN .\nJapan announced its pledge Tuesday at the beginning of a two-day international conference in Tokyo on Afghan reconstruction aid .\tNNP VBD PRP$ NN NNP IN DT NN IN DT JJ JJ NN IN NNP IN JJ NN NN .\nRepresentatives from 24 countries and international organizations are attending the meeting , which will also focus on combating narcotics and improving security in Afghanistan .\tNNS IN CD NNS CC JJ NNS VBP VBG DT NN , WDT MD RB VB IN VBG NNS CC VBG NN IN NNP .\nSpeaking Tuesday in Tokyo , Afghan Foreign Minister Rangeen Dadfar Spanta thanked the international community for its help and asked for its continued support .\tVBG NNP IN NNP , JJ NNP NNP NNP NNP NNP VBD DT JJ NN IN PRP$ NN CC VBD IN PRP$ JJ NN .\nJapan provides funds for Afghanistan 's rebuilding efforts .\tNNP VBZ NNS IN NNP POS NN NNS .\nLast month , Tokyo resumed a naval refueling mission in support of U.S.-led coalition efforts .\tJJ NN , NNP VBD DT JJ NN NN IN NN IN JJ NN NNS .\nAfghanistan 's foreign minister met with Japanese Prime Minister Yasuo Fukuda in Tokyo on Monday ahead of the two-day meeting .\tNNP POS JJ NN VBD IN JJ NNP NNP NNP NNP IN NNP IN NNP RB IN DT JJ NN .\nDuring that gathering , Mr. Fukuda said Japan would continue to support Afghanistan 's reconstruction and security .\tIN DT NN , NNP NNP VBD NNP MD VB TO VB NNP POS NN CC NN .\nChina has reported another flock of bird flu-infected fowl - its ninth outbreak in a month .\tNNP VBZ VBN DT NN IN NN JJ NN IN PRP$ JJ NN IN DT NN .\nThe latest outbreak killed poultry in Anhui province .\tDT JJS NN VBD NN IN NNP NN .\nThe announcement came as World Health Organization experts are in China to investigate whether bird flu caused the death of a 12-year-old girl and sickened two other people in Hunan province .\tDT NN VBD IN NNP NNP NNP NNS VBP IN NNP TO VB IN NN NN VBD DT NN IN DT JJ NN CC VBD CD JJ NNS IN NNP NN .\nVietnam also reported new outbreaks of avian flu among birds in four provinces today .\tNNP RB VBD JJ NNS IN JJ NN IN NNS IN CD NNS NN .\nThe deadly H5N1 strain of the virus has been found in 10 of the country 's 64 provinces and has killed more than 40 people in Vietnam since 2002 .\tDT JJ NNP NN IN DT NN VBZ VBN VBN IN CD IN DT NN POS CD NNS CC VBZ VBN JJR IN CD NNS IN NNP IN CD .\nTaiwanese officials are on alert as agriculture officials reported finding a sample of the H7N3 strain of bird flu in droppings left by a migratory bird .\tJJ NNS VBP IN NN IN NN NNS VBD VBG DT NN IN DT NNP NN IN NN NN IN NNS VBN IN DT JJ NN .\nThe H7 strains are also known to infect humans .\tDT NNP NNS VBP RB VBN TO VB NNS .\nU.S. Supreme Court Chief Justice William Rehnquist says he will continue to perform his duties on the nation 's highest court as long as his health permits .\tNNP NNP NNP NNP NNP NNP NNP VBZ PRP MD VB TO VB PRP$ NNS IN DT NN POS JJS NN RB RB IN PRP$ NN NNS .\nIn a statement issued to the media Thursday , Chief Justice Rehnquist said he is not about to announce his retirement -- and that he wants to put to rest what he called ' speculation and unfounded rumors ' of his imminent retirement .\tIN DT NN VBN TO DT NNS NNP , NNP NNP NNP VBD PRP VBZ RB IN TO VB PRP$ NN : CC IN PRP VBZ TO VB TO VB WP PRP VBD `` NN CC JJ NNS `` IN PRP$ JJ NN .\nThe chief justice released his statement hours after he was discharged from a hospital outside Washington .\tDT NN NN VBD PRP$ NN NNS IN PRP VBD VBN IN DT NN IN NNP .\nMr. Rehnquist was admitted Tuesday for a fever .\tNNP NNP VBD VBN NNP IN DT NN .\nThe 80-year-old chief justice has thyroid cancer , and his health has raised questions about how much longer he will be able to serve on the nine-member high court .\tDT JJ NN NN VBZ VBN NN , CC PRP$ NN VBZ VBN NNS IN WRB RB RBR PRP MD VB JJ TO VB IN DT JJ JJ NN .\nPresident Bush is currently considering choices to replace another judge on the court , retiring justice Sandra Day O'Connor .\tNNP NNP VBZ RB VBG NNS TO VB DT NN IN DT NN , VBG NN NNP NNP NNP .\nU.S. Secretary of Defense Donald Rumsfeld , who is in Guatemala , has announced Washington will release $ 3.2 million in military aid to the Central American country .\tNNP NNP IN NNP NNP NNP , WP VBZ IN NNP , VBZ VBN NNP MD VB $ CD CD IN JJ NN TO DT JJ JJ NN .\nMr. Rumsfeld made the announcement following a meeting Thursday , with President Oscar Berger .\tNNP NNP VBD DT NN VBG DT NN NNP , IN NNP NNP NNP .\nThe money is intended for various uses , including assisting in training and modernizing Guatemala 's armed forces .\tDT NN VBZ VBN IN JJ NNS , VBG VBG IN NN CC VBG NNP POS JJ NNS .\nMeanwhile , Venezuela 's vice president Jose Vicente Rangel has rebuffed comments made by Mr. Rumsfeld in Brazil Wednesday .\tRB , NNP POS NN NN NNP NNP NNP VBZ VBN NNS VBN IN NNP NNP IN NNP NNP .\nThe secretary said that he does not understand why Venezuela needed to purchase 1,00,000 AK-47s .\tDT NN VBD IN PRP VBZ RB VB WRB NNP VBD TO VB CD NNS .\nMr. Rumsfeld said they could pose a threat in the region .\tNNP NNP VBD PRP MD VB DT NN IN DT NN .\nThe vice president says the U.S. defense secretary 's criticisms violate Venezuela 's sovereignty and are part of what he called a ' systematic ' U.S. campaign against President Hugo Chavez 's government .\tDT NN NN VBZ DT NNP NN NN POS NNS VBP NNP POS NN CC VBP NN IN WP PRP VBD DT `` JJ `` NNP NN IN NNP NNP NNP POS NN .\nAn Army investigator is reported to have recommended seeking the death penalty against four U.S. soldiers accused of murdering Iraqis .\tDT NNP NN VBZ VBN TO VB VBN VBG DT NN NN IN CD NNP NNS VBN IN VBG NNS .\nThe Associated Press says the recommendation by Colonel James Daniel will be forwarded to Army officials for a final decision .\tDT NNP NNP VBZ DT NN IN NNP NNP NNP MD VB VBN TO NNP NNS IN DT JJ NN .\nThe news agency says it has obtained a report in which the Colonel concludes the slayings were premeditated and warranted the death penalty , based on evidence he heard at an August hearing .\tDT NN NN VBZ PRP VBZ VBN DT NN IN WDT DT NNP VBZ DT NNS VBD VBN CC VBN DT NN NN , VBN IN NN PRP VBD IN DT NNP NN .\nThe four soldiers , part of the 101st Airborne division , are accused of killing three Iraqi men during a raid near Samarra on May 9 .\tDT CD NNS , NN IN DT CD NNP NN , VBP VBN IN VBG CD JJ NNS IN DT NN IN NNP IN NNP CD .\nThe soldiers have denied any wrongdoing , and have said they were following orders to kill all military age Iraqis they encountered on their mission .\tDT NNS VBP VBN DT NN , CC VBP VBN PRP VBD VBG NNS TO VB DT JJ NN NNS PRP VBD IN PRP$ NN .\nTheir commanding officer denied issuing such an order .\tPRP$ JJ NN VBD VBG JJ DT NN .\nU.S. Deputy Secretary of State John Negroponte met with Pakistan 's President Pervez Musharraf at the leader 's official residence in Islamabad Thursday .\tNNP NNP NNP IN NNP NNP NNP VBD IN NNP POS NNP NNP NNP IN DT NN POS JJ NN IN NNP NNP .\nPakistan 's Foreign Ministry said the men discussed bilateral relations , counter-terrorism and regional issues .\tNNP POS NNP NNP VBD DT NNS VBD JJ NNS , NN CC JJ NNS .\nThe ministry said General Musharraf told Negroponte that the U.S. , particularly the media , needed to better understand Pakistan 's anti-terrorism efforts .\tDT NN VBD NNP NNP VBD NNP IN DT NNP , RB DT NNS , VBN TO RB VB NNP POS JJ NNS .\nDuring this two-day trip to Pakistan , Negroponte has praised Mr. Musharraf 's government as a key ally in the fight against terrorism .\tIN DT JJ NN TO NNP , NNP VBZ VBN NNP NNP POS NN IN DT JJ NN IN DT NN IN NN .\nAlso Thursday , the U.S. diplomat met with Prime Minister Shaukat Aziz .\tRB NNP , DT NNP NN VBD IN NNP NNP NNP NNP .\nDetails of their talks are not yet available .\tNNS IN PRP$ NNS VBP RB RB JJ .\nNegroponte arrived in Pakistan on Wednesday .\tNNP VBD IN NNP IN NNP .\nHe is the former director of national intelligence , the head of all U.S. intelligence agencies .\tPRP VBZ DT JJ NN IN JJ NN , DT NN IN DT NNP NN NNS .\nHe also served as the U.S. ambassador to Iraq in 2004 and 2005 .\tPRP RB VBD IN DT NNP NN TO NNP IN CD CC CD .\nThree school children were among at least 13 people killed Wednesday in a series of attacks in the Iraqi capital .\tCD NN NNS VBD IN IN JJS CD NNS VBN NNP IN DT NN IN NNS IN DT JJ NN .\nPolice say the children were headed to school when they were killed by a roadside bomb in central Baghdad .\tNNS VBP DT NNS VBD VBN IN NN WRB PRP VBD VBN IN DT NN NN IN JJ NNP .\nShootings and three car bombs in Baghdad claimed 10 more lives , including those of six policemen .\tNNS CC CD NN NNS IN NNP VBD CD JJR NNS , VBG DT IN CD NNS .\nThe U.S. military also announced that U.S. soldiers killed five suspected terrorists in incidents south of Baghdad this week .\tDT NNP NN RB VBD IN NNP NNS VBD CD JJ NNS IN NNS RB IN NNP DT NN .\nMeanwhile , the Pentagon has confirmed the authenticity of a set of photographs aired on Australian television of U.S. soldiers abusing prisoners at Iraq 's notorious Abu Ghraib prison .\tRB , DT NNP VBZ VBN DT NN IN DT NN IN NNS VBN IN JJ NN IN NNP NNS VBG NNS IN NNP POS JJ NNP NNP NN .\nDefense officials say the photos , which show graphic abuse , were among those investigated after the prison scandal two years ago .\tNN NNS VBP DT NNS , WDT VBP JJ NN , VBD IN DT VBN IN DT NN NN CD NNS RB .\nThose photos sparked widespread protests against U.S. presence in Iraq .\tDT NNS VBD JJ NNS IN NNP NN IN NNP .\nIranian Foreign Minister Kamal Kharazi says India 's decision to go ahead with a pipeline project to bring Iranian gas to India via Pakistan will encourage regional peace and trade .\tJJ NNP NNP NNP NNP VBZ NNP POS NN TO VB RB IN DT NN NN TO VB JJ NN TO NNP IN NNP MD VB JJ NN CC NN .\nMr. Kharazi is on a two-day visit to New Delhi and he made the remarks as he met Indian Foreign Minister Natwar Singh and was due to call on Prime Minister Manmohan Singh .\tNNP NNP VBZ IN DT JJ NN TO NNP NNP CC PRP VBD DT NNS IN PRP VBD JJ NNP NNP NNP NNP CC VBD JJ TO VB IN NNP NNP NNP NNP .\nHe said India 's recent approval of the gas pipeline has created an encouraging atmosphere for pushing ahead this highly important project .\tPRP VBD NNP POS JJ NN IN DT NN NN VBZ VBN DT JJ NN IN VBG RB DT RB JJ NN .\nNegotiations on the more than 2,700 kilometer pipeline began in 1994 .\tNNS IN DT JJR IN CD NN NN VBD IN CD .\nBut strained relations between India and Pakistan held up approval of the project .\tCC JJ NNS IN NNP CC NNP VBD RP NN IN DT NN .\nThe talks gained momentum after India 's new Congress government came to power last May and pushed forward an ongoing peace process with Pakistan .\tDT NNS VBD NN IN NNP POS JJ NNP NN VBD TO NN JJ NNP CC VBD RB DT JJ NN NN IN NNP .\nRussia has handed Poland thousands of new documents on the investigation into the plane crash that killed Polish President Lech Kaczynski in April .\tNNP VBZ VBN NNP NNS IN JJ NNS IN DT NN IN DT NN NN WDT VBD JJ NNP NNP NNP IN NNP .\nRussian Deputy Prosecutor General Alexander Zvyagintsev says the documents include witness interviews , photographs and other data from the crash in western Russia .\tJJ NNP NNP NNP NNP NNP VBZ DT NNS VBP NN NNS , NNS CC JJ NNS IN DT NN IN JJ NNP .\nThe documents were given Thursday to a Polish delegation led by chief military prosecutor Krzysztof Parulski .\tDT NNS VBD VBN NNP TO DT JJ NN VBN IN JJ JJ NN NNP NNP .\nEarlier this month , Polish Prime Minister Donald Tusk complained about what he called Russian delays in turning over the evidence , which is crucial to a parallel Polish probe .\tRBR DT NN , JJ NNP NNP NNP NNP VBD IN WP PRP VBD JJ NNS IN VBG RP DT NN , WDT VBZ JJ TO DT JJ JJ NN .\nThe April 10 crash killed President Kaczynski , his wife and 94 others outside the Russian city of Smolensk .\tDT NNP CD NN VBD NNP NNP , PRP$ NN CC CD NNS IN DT JJ NN IN NNP .\nOfficials say poor visibility was a major factor in the crash .\tNNS VBP JJ NN VBD DT JJ NN IN DT NN .\nBut they are also seeking to learn whether President Kaczynski or others pressured the pilots to attempt a landing despite heavy fog .\tCC PRP VBP RB VBG TO VB IN NNP NNP CC NNS VBD DT NNS TO VB DT NN IN JJ NN .\nRobert Zoellick is welcomed by an African Union soldier as he arrives in Northern Darfur region 's administrative capital El Fasher U.S. Deputy Secretary of State Robert Zoellick has called on the Sudanese government to accept responsibility for disarming the Arab militias accused of subjecting civilians to rape and other violence .\tNNP NNP VBZ VBN IN DT NNP NNP NN IN PRP VBZ IN NNP NNP NN POS JJ NN NNP NNP NNP NNP NNP IN NNP NNP NNP VBZ VBN IN DT JJ NN TO VB NN IN VBG DT JJ NNS VBN IN VBG NNS TO NN CC JJ NN .\nMr. Zoellick arrived in the war-torn Darfur region Friday to assess the security and humanitarian crisis that has left tens of thousands of people dead and has displaced more than two million others .\tNNP NNP VBD IN DT JJ NNP NN NNP TO VB DT NN CC JJ NN WDT VBZ VBN NNS IN NNS IN NNS JJ CC VBZ VBN JJR IN CD CD NNS .\nHe is scheduled to meet with Sudanese officials later .\tPRP VBZ VBN TO VB IN JJ NNS RB .\nEarlier , the U.S. diplomat met the head of the African Union mission in Sudan Said Djinnit .\tRB , DT NNP NN VBD DT NN IN DT NNP NNP NN IN NNP NNP NNP .\nBoth agreed that security remains unacceptably low and that an increase in the number of peacekeepers and an expansion of their presence is essential to restoring civility .\tDT VBD IN NN VBZ RB JJ CC IN DT NN IN DT NN IN NNS CC DT NN IN PRP$ NN VBZ JJ TO VBG NN .\nA mutilated Afghan woman , who appeared on a recent cover of Time magazine , has arrived in the United States where she will undergo reconstructive surgery .\tDT JJ JJ NN , WP VBD IN DT JJ NN IN NNP NN , VBZ VBN IN DT NNP NNPS WRB PRP MD VB JJ NN .\nThe 18-year-old , named Aisha , will decide with doctors at the Grossman Burn Foundation in Los Angeles in the U.S. western state of California how to replace her nose , which was sliced off by her abusive husband .\tDT JJ , VBN NNP , MD VB IN NNS IN DT NNP NNP NNP IN NNP NNP IN DT NNP JJ NN IN NNP WRB TO VB PRP$ NN , WDT VBD VBN RP IN PRP$ JJ NN .\nHer ears were also hacked off .\tPRP$ NNS VBD RB VBN RP .\nAisha , who has been identified only by her first name , says her nose was cut off as punishment by the Taliban for running away from her abusive husband and in-laws .\tNNP , WP VBZ VBN VBN RB IN PRP$ JJ NN , VBZ PRP$ NN VBD VBN RP IN NN IN DT NNP IN VBG RB IN PRP$ JJ NN CC NNS .\nActivists and human rights workers say they are glad Aisha is getting treatment , but note that thousands of other women continue to be victims of domestic violence in Afghanistan .\tNNS CC JJ NNS NNS VBP PRP VBP JJ NNP VBZ VBG NN , CC VBP IN NNS IN JJ NNS VBP TO VB NNS IN JJ NN IN NNP .\nU.N. official says Secretary-General Kofi Annan has written a letter to Iran 's new president , Mahmoud Ahmadinejad , demanding the release of a jailed dissident journalist .\tNNP NN VBZ NNP NNP NNP VBZ VBN DT NN TO NNP POS JJ NN , NNP NNP , VBG DT NN IN DT JJ JJ NN .\nThe official , speaking on condition of anonymity because Iran had not yet received the letter , said Mr. Annan is seeking Akbar Ganji 's immediate release on humanitarian grounds .\tDT NN , VBG IN NN IN NN IN NNP VBD RB RB VBN DT NN , VBD NNP NNP VBZ VBG NNP NNP POS JJ NN IN JJ NNS .\nMr. Ganji was jailed in 2001 , after writing news stories linking public officials to the murders of political dissidents .\tNNP NNP VBD VBN IN CD , IN VBG NN NNS VBG JJ NNS TO DT NNS IN JJ NNS .\nTwo months ago , he began a hunger strike to protest his imprisonment .\tCD NNS RB , PRP VBD DT NN NN TO VB PRP$ NN .\nHe remains in government custody at a Tehran hospital and is believed to be in critical condition .\tPRP VBZ IN NN NN IN DT NNP NN CC VBZ VBN TO VB IN JJ NN .\nIranian officials say Mr. Ganji has ended the hunger strike .\tJJ NNS VBP NNP NNP VBZ VBN DT NN NN .\nBut his wife told VOA she could not confirm the claim because she had been denied access to her husband .\tCC PRP$ NN VBD NNP PRP MD RB VB DT NN IN PRP VBD VBN VBN NN TO PRP$ NN .\nGerman Chancellor Gerhard Schroeder and his Christian Democratic Union challenger , Angela Merkel , are so close together in the latest pre-election polls that they have both vowed to break with tradition and campaign straight through the end of voting on Sunday evening .\tJJ NNP NNP NNP CC PRP$ NNP NNP NNP NN , NNP NNP , VBP RB JJ RB IN DT JJS NN NNS IN PRP VBP DT VBN TO VB IN NN CC NN RB IN DT NN IN VBG IN NNP NN .\nTwo polls released on Friday indicate a conservative coalition led by Ms. Merkel has a slim majority over a center-left coalition led by Mr. Schroeder .\tCD NNS VBN IN NNP VBP DT JJ NN VBN IN NNP NNP VBZ DT JJ NN IN DT JJ NN VBN IN NNP NNP .\nHowever , 25 percent of those polled say they are still undecided , which makes the race too close to call .\tRB , CD NN IN DT VBN VBP PRP VBP RB JJ , WDT VBZ DT NN RB JJ TO VB .\nThe conservatives started out the campaign with a large lead , one that has decreased as Mr. Schroeder 's attacks on Ms. Merkel 's economic plan have hit home .\tDT NNS VBD RP DT NN IN DT JJ NN , CD WDT VBZ VBN IN NNP NNP POS NNS IN NNP NNP POS JJ NN VBP VBN NN .\nMs. Merkel has assailed the high unemployment rate in Germany under Mr. Schroeder 's leadership , while Mr. Schroeder says Ms. Merkel 's tax proposals will unravel the country 's social fabric .\tNNP NNP VBZ VBN DT JJ NN NN IN NNP IN NNP NNP POS NN , IN NNP NNP VBZ NNP NNP POS NN NNS MD VB DT NN POS JJ NN .\nThe head of the Arab League has stressed the Arab world 's ties with Iraq 's Kurds during a visit to the country 's autonomous Kurdish region .\tDT NN IN DT NNP NNP VBZ VBN DT JJ NN POS NNS IN NNP POS NNS IN DT NN TO DT NN POS JJ JJ NN .\nAmr Moussa addressed the Kurdish parliament Sunday , telling lawmakers that Kurds are an important part of Iraq and the entire Middle East .\tNNP NNP VBD DT NNP NN NNP , VBG NNS WDT NNPS VBP DT JJ NN IN NNP CC DT JJ NNP NNP .\nMr. Moussa is in Iraq for his first visit since the fall of Saddam Hussein in 2003 .\tNNP NNP VBZ IN NNP IN PRP$ JJ NN IN DT NN IN NNP NNP IN CD .\nHe has proposed holding a conference to help reconcile Iraq 's Sunni Arab , Shi'ite and Kurdish communities .\tPRP VBZ VBN VBG DT NN TO VB VB NNP POS NNP NNP , NNP CC NNP NNS .\nMeanwhile , insurgents killed at least 11 people in attacks across Iraq Sunday .\tRB , NNS VBD IN JJS CD NNS IN NNS IN NNP NNP .\nIn the deadliest attack , a roadside bomb killed a police officer and his four children in Tikrit .\tIN DT JJS NN , DT NN NN VBD DT NN NN CC PRP$ CD NNS IN NNP .\nAnd the U.S. military says soldiers killed two suspected members of al-Qaida in Iraq and detained 22 others during raids in Mosul and Ramadi .\tCC DT NNP NN VBZ NNS VBD CD JJ NNS IN NNP IN NNP CC VBD CD NNS IN NNS IN NNP CC NNP .\nPolice in Australia say they have charged eight people with involvement in an illegal Asian World Cup betting ring .\tNNS IN NNP VBP PRP VBP VBN CD NNS IN NN IN DT JJ NNP NNP NNP VBG NN .\nNew South Wales police said Wednesday they took six men from Hong Kong and two Malaysian women into custody after raiding a hotel in central Sydney .\tNNP NNP NNP NN VBD NNP PRP VBD CD NNS IN NNP NNP CC CD JJ NNS IN NN IN VBG DT NN IN JJ NNP .\nOfficers from a special South East Asian Crime Squad seized computers , networking equipment , calculators , mobile phones , documents and cash .\tNNS IN DT JJ NNP NNP NNP NNP NNP VBD NNS , VBG NN , NNS , JJ NNS , NNS CC NN .\nIn a statement , police say the eight were part of an Asian betting operation and that they flew into Australia three days ago .\tIN DT NN , NNS VBP DT CD VBD NN IN DT JJ VBG NN CC IN PRP VBD IN NNP CD NNS RB .\nThey were charged with unlicensed bookmaking under Australia 's Unlawful Gaming Act and are due to appear in court on July 4 .\tPRP VBD VBN IN JJ NN IN NNP POS NNP NNP NNP CC VBP JJ TO VB IN NN IN NNP CD .\nThe accused have been turned over to immigration department officials pending their court appearance .\tDT VBN VBP VBN VBN RP TO NN NN NNS VBG PRP$ NN NN .\nWorld oil prices hit a new record high Monday of nearly $ 64 a barrel .\tNNP NN NNS VBD DT JJ NN JJ NNP IN RB $ CD DT NN .\nThe price of crude oil for future delivery was as high as $ 63.95 a barrel in New York trading .\tDT NN IN JJ NN IN JJ NN VBD RB JJ IN $ CD DT NN IN NNP NNP NN .\nAnalysts say the rising prices reflect security concerns in the world 's largest oil producer , Saudi Arabia .\tNNS VBP DT VBG NNS VBP NN NNS IN DT NN POS JJS NN NN , NNP NNP .\nThe United States has temporarily closed its embassy in the Saudi capital , along with some other diplomatic facilities in the country , after threats of terrorist attacks .\tDT NNP NNPS VBZ RB VBN PRP$ NN IN DT JJ NN , IN IN DT JJ JJ NNS IN DT NN , IN NNS IN JJ NNS .\nAustralia and Britain also warned of possible attacks .\tNNP CC NNP RB VBD IN JJ NNS .\nExperts say oil prices also are being pushed upward by problems at refineries .\tNNS VBP NN NNS RB VBP VBG VBN RB IN NNS IN NNS .\nCrude oil prices are at least 40 percent higher today than they were one year ago .\tJJ NN NNS VBP IN JJS CD NN JJR NN IN PRP VBD CD NN RB .\nThousands of Buddhist pilgrims gathered at a temple in southern Russia Tuesday to join prayers led by the Dalai Lama , who has been allowed in the country for the first time in more than 12 years .\tNNS IN NNP NNS VBD IN DT NN IN JJ NNP NNP TO VB NNS VBN IN DT NNP NNP , WP VBZ VBN VBN IN DT NN IN DT JJ NN IN JJR IN CD NNS .\nThe Tibetan spiritual leader was visiting the Khurul Monastery during the second day of this three-day visit to Russia 's Buddhist region of Kalmykia .\tDT JJ JJ NN VBD VBG DT NNP NNP IN DT JJ NN IN DT JJ NN TO NNP POS NNP NN IN NNP .\nChina has criticized Moscow 's decision to grant the Dalai Lama a visa , saying Beijing does not approve of any country allowing him to engage in what China calls separatist activities .\tNNP VBZ VBN NNP POS NN TO VB DT NNP NNP DT NN , VBG NNP VBZ RB VB IN DT NN VBG PRP TO VB IN WP NNP VBZ JJ NNS .\nRussian officials say they issued him a visa with the expectation he would not engage in any political activities .\tJJ NNS VBP PRP VBD PRP DT NN IN DT NN PRP MD RB VB IN DT JJ NNS .\nMoscow has rejected visa requests from the Dalai Lama at least three times in the past .\tNNP VBZ VBN NN NNS IN DT NNP NNP IN JJS CD NNS IN DT NN .\nThe Ukrainian parliament has ousted the government of Prime Minister Yulia Tymoshenko in a no-confidence vote .\tDT JJ NN VBZ VBN DT NN IN NNP NNP NNP NNP IN DT JJ NN .\nA majority of 243 lawmakers in the 450-member chamber on Wednesday approved the no-confidence measure brought by the party of Regions led by newly-elected President Viktor Yanukovych .\tDT NN IN CD NNS IN DT JJ NN IN NNP VBD DT JJ NN VBN IN DT NN IN NNS VBN IN JJ NNP NNP NNP .\nMr. Yanukovych defeated Ms. Tymoshenko in a presidential runoff election last month .\tNNP NNP VBD NNP NNP IN DT JJ NN NN JJ NN .\nUnder Ukraine 's constitution , the Tymoshenko government is automatically required to resign , although it can stay on as a caretaker until a new government is appointed .\tIN NNP POS NN , DT NNP NN VBZ RB VBN TO VB , IN PRP MD VB IN IN DT NN IN DT JJ NN VBZ VBN .\nMs. Tymoshenko earlier indicated she would resign immediately , if the no-confidence measure was approved .\tNNP NNP RB VBD PRP MD VB RB , IN DT JJ NN VBD VBN .\nA newly released poll shows Americans may be ready to change the political party in control of Congress .\tDT RB VBN NN VBZ NNS MD VB JJ TO VB DT JJ NN IN NN IN NNP .\nAn Associated Press / Ipsos poll released Friday found that 49 percent of those surveyed would like to see opposition Democrats in control of Congress while 36 percent favored the ruling Republicans .\tDT NNP NNP CC NNP NN VBN NNP VBD IN CD NN IN DT VBN MD VB TO VB NN NNS IN NN IN NNP IN CD NN VBD DT NN NNS .\nMidterm elections will not be held until November .\tNN NNS MD RB VB VBN IN NNP .\nInside the House of Representatives , a petition has begun circulating among Republicans calling for the election of new party leadership .\tIN DT NNP IN NNP , DT NN VBZ VBN VBG IN NNS VBG IN DT NN IN JJ NN NN .\nFormer House Leader Tom Delay relinquished his leadership position in Congress when he was indicted on money-laundering charges but said he would reclaim the post when he clears himself of the charges .\tJJ NNP NNP NNP NNP VBD PRP$ NN NN IN NNP WRB PRP VBD VBN IN NN NNS CC VBD PRP MD VB DT NN WRB PRP VBZ PRP IN DT NNS .\nRepublican house members say recent reports of Mr. Delay 's association with a disgraced lobbyist make his timely return to leadership unlikely .\tJJ NN NNS VBP JJ NNS IN NNP NNP POS NN IN DT JJ NN VB PRP$ JJ NN TO NN JJ .\nSpain has announced its Davis Cup tennis team that will host the United States in the final next month in Seville .\tNNP VBZ VBN PRP$ NNP NNP NN NN WDT MD VB DT NNP NNPS IN DT JJ JJ NN IN NNP .\nThe team members are Juan Carlos Ferrero , Carlos Moya , Rafael Nadal and Tommy Robredo , the same players Spain used to beat the Netherlands in the quarterfinal and France in the semifinal .\tDT NN NNS VBP NNP NNP NNP , NNP NNP , NNP NNP CC NNP NNP , DT JJ NNS NNP VBD TO VB DT NNP IN DT JJ CC NNP IN DT NN .\nMoya is the highest ranked player on the team at number five .\tNNP VBZ DT JJS VBN NN IN DT NN IN NN CD .\nRobredo is next at 13th .\tNNP VBZ JJ IN NN .\nThe United States announced its team for the final last month , and it will be headed by world number two Andy Roddick .\tDT NNP NNP VBD PRP$ NN IN DT JJ JJ NN , CC PRP MD VB VBN IN NN NN CD NNP NNP .\nThe Davis Cup final is set for December 03-May .\tDT NNP NNP JJ VBZ VBN IN NNP CD .\nThe United States has won the cup a record 31 times but this is the first final since 1997 for the Americans , who last took the title in 1995 .\tDT NNP NNP VBZ VBN DT NN DT NN CD NNS CC DT VBZ DT JJ JJ IN CD IN DT NNS , WP JJ VBD DT NN IN CD .\nSpain won the Davis Cup in 2000 .\tNNP VBD DT NNP NNP IN CD .\nThe trial of scores of soldiers and a dozen civilians accused of plotting a series of coups in Mauritania resumed Tuesday , despite a boycott by defense lawyers protesting the arrest of a colleague .\tDT NN IN NNS IN NNS CC DT NN NNS VBN IN VBG DT NN IN NNS IN NNP VBD NNP , IN DT NN IN NN NNS VBG DT NN IN DT NN .\nThe defense lawyers walked out on Monday after the judge jailed one of them for what he called a lack of discipline .\tDT NN NNS VBD RP IN NNP IN DT NN VBD CD IN PRP IN WP PRP VBD DT NN IN NN .\nA handful of suspects were questioned during Tuesday 's proceedings , but all refused to give any answers since their lawyers were absent .\tDT NN IN NNS VBD VBN IN NNP POS NNS , CC DT VBD TO VB DT NNS IN PRP$ NNS VBD JJ .\nThose on trial include two opposition leaders and former Mauritanian President Mohamed Khouna Ould Haidallah .\tDT IN NN VBP CD NN NNS CC JJ NNP NNP NNP NNP NNP NNP .\nThey said they will plead innocent to the charges .\tPRP VBD PRP MD VB JJ TO DT NNS .\nThere are a total of 181 suspects accused of taking part in successive coup plots against current President Maaouiya Ould Taya since last year .\tEX VBP DT NN IN CD NNS VBN IN VBG NN IN JJ NN NNS IN JJ NNP NNP NNP NNP IN JJ NN .\nThe United States has launched an advertisement campaign on Pakistani television and radio offering multi-million dollar rewards for information leading to the arrest of Osama bin Laden and 13 other al-Qaida leaders .\tDT NNP NNPS VBZ VBN DT NN NN IN JJ NN CC NN NN JJ NN NNS IN NN VBG TO DT NN IN NNP NNP NNP CC CD JJ NNP NNS .\nThe brief television commercial which shows pictures of Osama bin Laden and his deputy Ayman al-Zawahiri , offers a $ 25 million reward for each of them and a lesser amount for the others .\tDT JJ NN NN WDT VBZ NNS IN NNP NNP NNP CC PRP$ NN NNP NNP , VBZ DT $ CD CD NN IN DT IN PRP CC DT JJR NN IN DT NNS .\nThe ad also promises resettlement and witness protection for informants and their families .\tDT NN RB VBZ NN CC NN NN IN NNS CC PRP$ NNS .\nA key ally in Washington 's war on terror , Pakistan has already captured about 500 al-Qaida suspects and handed them over to the United States .\tDT JJ NN IN NNP POS NN IN NN , NNP VBZ RB VBN IN CD NNP NNS CC VBN PRP RP TO DT NNP NNPS .\nU.S. officials believe bin Laden and other key militants have been hiding along the rugged border between Pakistan and Afghanistan .\tNNP NNS VBP NNP NNP CC JJ JJ NNS VBP VBN VBG IN DT JJ NN IN NNP CC NNP .\nU.S. and Russian officials have opened a customs control center in Moscow aimed at improving Russia 's ability to prevent illegal trafficking in nuclear-related materials .\tNNP CC JJ NNS VBP VBN DT NNS NN NN IN NNP VBN IN VBG NNP POS NN TO VB JJ NN IN JJ NNS .\nBefore the center opened Thursday , customs offices along Russia 's expansive border regions communicated with their Moscow headquarters primarily by telephone .\tIN DT NN VBD NNP , NNS NNS IN NNP POS JJ NN NNS VBD IN PRP$ NNP NN RB IN NN .\nThe new U.S.-funded center provides electronic data transfer between the outposts and Moscow .\tDT JJ JJ NN VBZ JJ NNS NN IN DT NNS CC NNP .\nRussian officials say the customs offices managed to block 200 attempts to take radioactive materials into or out of the country last year .\tJJ NNS VBP DT NNS NNS VBD TO VB CD NNS TO VB JJ NNS IN CC IN IN DT NN JJ NN .\nSince 1998 , the United States has spent millions of dollars to assist Russia in preventing trafficking in nuclear materials and equipment .\tIN CD , DT NNP NNPS VBZ VBN NNS IN NNS TO VB NNP IN VBG NN IN JJ NNS CC NN .\nAfghan military officials say a suspected bomb has exploded among fuel tankers outside the main base for the U.S.-led coalition force in southern Afghanistan .\tJJ JJ NNS VBP DT JJ NN VBZ VBN IN NN NNS IN DT JJ NN IN DT JJ NN NN IN JJ NNP .\nThe officials say two fuel tankers exploded outside the base near Kandahar city early Friday , setting fire to eight others .\tDT NNS VBP CD NN NNS VBD IN DT NN IN NNP NN RB NNP , VBG NN TO CD NNS .\nIt was not immediately clear if there were any casualties .\tPRP VBD RB RB JJ IN EX VBD DT NNS .\nThe blast came amid a major surge in violence by Taleban-led rebels that has left more than 1,400 dead in the past six months and raised concern for Afghanistan 's fragile democracy .\tDT NN VBD IN DT JJ NN IN NN IN JJ NNS WDT VBZ VBN JJR IN CD NN IN DT JJ CD NNS CC VBD NN IN NNP POS JJ NN .\nViolence has risen sharply in and around Kandahar , a former Taleban stronghold , with four suicide bombings in recent weeks and five medical aid workers killed Wednesday as they were returning to the city after treating people at a nearby refugee camp .\tNN VBZ VBN RB IN CC IN NNP , DT JJ NNP NN , IN CD NN NNS IN JJ NNS CC CD JJ NN NNS VBD NNP IN PRP VBD VBG TO DT NN IN VBG NNS IN DT JJ NN NN .\nRussian environmental officials have detected an increase in the level of cancer-causing benzene in the Amur River , but they said it is not clear if it is from the November 13 Chinese chemical spill .\tJJ JJ NNS VBP VBN DT NN IN DT NN IN JJ NN IN DT NNP NNP , CC PRP VBD PRP VBZ RB JJ IN PRP VBZ IN DT NNP CD JJ NN NN .\nOfficials in Russia 's far east said it could take several more days before the worst of the spill reaches Russian territory .\tNNS IN NNP POS JJ NN VBD PRP MD VB JJ JJR NNS IN DT JJS IN DT NN VBZ JJ NN .\nAlso Wednesday , scientists with the non-profit World Wildlife Fund rejected claims that the toxic slick poses less of a threat as it becomes diluted .\tRB NNP , NNS IN DT JJ NNP NNP NNP VBD NNS IN DT JJ NN VBZ JJR IN DT NN IN PRP VBZ VBN .\nThey said the full extent of the damage may not be understood until well after the spring thaw , when melting ice frees trapped chemicals .\tPRP VBD DT JJ NN IN DT NN MD RB VB VBN IN RB IN DT NN NN , WRB VBG NN VBZ JJ NNS .\nAn explosion at a Chinese factory two weeks ago released some 100 tons of cancer-causing agents .\tDT NN IN DT JJ NN CD NNS RB VBD DT CD NNS IN JJ NNS .\nThey are now flowing down China 's Songhua River towards Russia , forcing cities to shut down water systems over contamination fears .\tPRP VBP RB VBG RP NNP POS NNP NNP IN NNP , VBG NNS TO VB RP NN NNS IN NN NNS .\nCuba and Brazil have remembered Palestinian leader Yasser Arafat with praise and have restated their support for his dream of a Palestinian state .\tNNP CC NNP VBP VBN JJ NN NNP NNP IN NN CC VBP VBN PRP$ NN IN PRP$ NN IN DT JJ NN .\nCuban President Fidel Castro Thursday declared three days of official mourning for Mr. Arafat , saying the pain of the Palestinian leader 's loss was Cuba 's pain .\tJJ NNP NNP NNP NNP VBD CD NNS IN JJ NN IN NNP NNP , VBG DT NN IN DT JJ NN POS NN VBD NNP POS NN .\nIn a commentary , Cuba 's Communist Party newspaper , Granma , called Mr. Arafat one of the ' firmest , most prestigious and tireless fighters for the Arab cause . '\tIN DT NN , NNP POS NNP NNP NN , NNP , VBD NNP NNP CD IN DT `` JJS , RBS JJ CC JJ NNS IN DT JJ NN . ``\nIt called his life a struggle for liberation , the defense of his people 's rights , and a sovereign and independent Palestine .\tPRP VBD PRP$ NN DT NN IN NN , DT NN IN PRP$ NNS POS NNS , CC DT NN CC JJ NN .\nIn Brazil , President Luiz Inacio Lula da Silva called Mr. Arafat a historic leader and sent his condolences .\tIN NNP , NNP NNP NNP NNP NNP NNP VBD NNP NNP DT JJ NN CC VBD PRP$ NNS .\nHe called for peace in the Middle East and a free and sovereign Palestinian state .\tPRP VBD IN NN IN DT NNP NNP CC DT JJ CC JJ JJ NN .\nVenezuela 's president is urging President Bush to use his second term in office to strengthen ties with Latin American nations .\tNNP POS NN VBZ VBG NNP NNP TO VB PRP$ JJ NN IN NN TO VB NNS IN JJ JJ NNS .\nPresident Hugo Chavez says he hopes President Bush 's foreign policy agenda will include efforts aimed at repairing strained relations with Venezuela .\tNNP NNP NNP VBZ PRP VBZ NNP NNP POS JJ NN NN MD VB NNS VBN IN VBG JJ NNS IN NNP .\nThe statement comes as President Chavez arrived in Santo Domingo Saturday for a meeting with Dominican President Leonel Fernandez .\tDT NN VBZ IN NNP NNP VBD IN NNP NNP NNP IN DT NN IN JJ NNP NNP NNP .\nThe relationship between Venezuela and the U.S. has been troubled since 2002 , when Washington endorsed a coup that briefly ousted President Chavez from office .\tDT NN IN NNP CC DT NNP VBZ VBN VBN IN CD , WRB NNP VBD DT NN WDT RB VBD NNP NNP IN NN .\nThe Associated Press quotes the Dominican President as saying his country is willing to serve if it can be helpful in mediating a return to good relations between Venezuela and the U.S.\tDT NNP NNP VBZ DT JJ NNP IN VBG PRP$ NN VBZ JJ TO VB IN PRP MD VB JJ IN VBG DT NN TO JJ NNS IN NNP CC DT NNP\nVenezuela and Cuba have signed 16 new cooperation agreements , including accords on telecommunications , tourism and the economy .\tNNP CC NNP VBP VBN CD JJ NN NNS , VBG NNS IN NNS , NN CC DT NN .\nThe agreements were signed in Caracas Wednesday by Venezuelan President Hugo Chavez and Cuban Vice President Carlos Lage .\tDT NNS VBD VBN IN NNP NNP IN JJ NNP NNP NNP CC JJ NNP NNP NNP NNP .\nDuring a news conference with Lage , Mr. Chavez said his ailing friend , Cuban leader Fidel Castro , is recovering following intestinal surgery last year and has been up and walking around .\tIN DT NN NN IN NNP , NNP NNP VBD PRP$ JJ NN , JJ NN NNP NNP , VBZ VBG VBG JJ NN JJ NN CC VBZ VBN RP CC VBG RB .\nThe Venezuelan president showed a letter that Mr. Chavez said was signed by Mr. Castro .\tDT JJ NN VBD DT NN IN NNP NNP VBD VBD VBN IN NNP NNP .\nLast week , Mr. Chavez said Mr. Castro was in a battle for his life .\tJJ NN , NNP NNP VBD NNP NNP VBD IN DT NN IN PRP$ NN .\nThe Cuban government treats Mr. Castro 's health as a state secret .\tDT JJ NN VBZ NNP NNP POS NN IN DT NN NN .\nMr. Castro has not been seen in public since late July when he underwent surgery .\tNNP NNP VBZ RB VBN VBN IN JJ IN JJ NNP WRB PRP VBD NN .\nAt the time , he temporarily handed power to his younger brother , Defense Minister Raul Castro .\tIN DT NN , PRP RB VBD NN TO PRP$ JJR NN , NNP NNP NNP NNP .\nTwo senior U.S. envoys have delayed a trip to the Middle East this week after Israeli Prime Minster Ariel Sharon suffered a major stroke .\tCD JJ NNP NNS VBP VBN DT NN TO DT NNP NNP DT NN IN JJ NNP NNP NNP NNP VBD DT JJ NN .\nA State Department spokesman said the trip , set to begin Thursday , would be rescheduled .\tDT NNP NNP NN VBD DT NN , VBN TO VB NNP , MD VB VBN .\nThe envoys were to meet with Israeli and Palestinian officials in an effort to prevent delays in Palestinian legislative elections set for January 25 .\tDT NNS VBD TO VB IN JJ CC JJ NNS IN DT NN TO VB NNS IN JJ JJ NNS VBN IN NNP CD .\nPalestinian leader Mahmoud Abbas has said he may postpone the vote if Israel makes good on a threat to block voting in East Jerusalem .\tJJ NN NNP NNP VBZ VBN PRP MD VB DT NN IN NNP VBZ JJ IN DT NN TO VB NN IN NNP NNP .\nThursday , Mr. Abbas expressed concern for Mr. Sharon 's medical condition , but said it would not affect the election .\tNNP , NNP NNP VBD NN IN NNP NNP POS JJ NN , CC VBD PRP MD RB VB DT NN .\nIn Jerusalem , Israel 's acting Prime Minister Ehud Olmert said the Israeli government is fully operational .\tIN NNP , NNP POS VBG NNP NNP NNP NNP VBD DT JJ NN VBZ RB JJ .\nOfficials said Israeli elections set for March 28 will be held as scheduled .\tNNS VBD JJ NNS VBN IN NNP CD MD VB VBN IN VBN .\nAfghan officials say a roadside bomb killed six civilians and wounded nine others Sunday in southern Kandahar province .\tJJ NNS VBP DT NN NN VBD CD NNS CC VBD CD NNS NNP IN JJ NNP NN .\nThere has been no claim of responsibility for the bombing .\tEX VBZ VBN DT NN IN NN IN DT NN .\nRoadside bombs are a favorite weapon of Taliban insurgents in their campaign against foreign forces and the Afghan government , but civilians often fall prey to the explosions .\tNNP NNS VBP DT JJ NN IN NNP NNS IN PRP$ NN IN JJ NNS CC DT JJ NN , CC NNS RB VBP NN TO DT NNS .\nU.S. and NATO commanders have warned of an increase in violence as international and Afghan forces work to clear the south of Taliban insurgents .\tNNP CC NNP NNS VBP VBN IN DT NN IN NN IN JJ CC JJ NNS VBP TO VB DT NN IN NNP NNS .\nIn other developments Sunday , the Dutch are scheduled to withdraw the last of their 1,600-member force from Afghanistan .\tIN JJ NNS NNP , DT NNS VBP VBN TO VB DT NN IN PRP$ JJ NN IN NNP .\nAnd in the Afghan capital , Kabul , hundreds of demonstrators protested the killing of 52 civilians in a NATO rocket strike .\tCC IN DT JJ NN , NNP , NNS IN NNS VBD DT NN IN CD NNS IN DT NNP NN NN .\nNATO disputes the report of civilian deaths in the Helmand province attack .\tNNP VBZ DT NN IN JJ NNS IN DT NNP NN NN .\nVice President Dick Cheney says the Bush administration will continue ' full speed ahead ' with its Iraq war policy , no matter which party takes control of U.S. Congress in Tuesday 's elections .\tNNP NNP NNP NNP VBZ DT NNP NN MD VB `` JJ NN RB `` IN PRP$ NNP NN NN , DT NN WDT NN VBZ NN IN NNP NNP IN NNP POS NNS .\nIn a television interview to be aired Sunday , Cheney acknowledges the conflict is not popular with the American public , but says the administration is doing what it thinks is right .\tIN DT NN NN TO VB VBN NNP , NNP VBZ DT NN VBZ RB JJ IN DT JJ NN , CC VBZ DT NN VBZ VBG WP PRP VBZ VBZ RB .\nRecent polls suggest the opposition Democratic Party is poised to take control of the House of Representatives , and possibly the Senate .\tJJ NNS VBP DT NN NNP NNP VBZ VBN TO VB NN IN DT NNP IN NNPS , CC RB DT NNP .\nThe vice president repeated the administration 's assertion that Democrats do not have a concrete plan on Iraq .\tDT NN NN VBD DT NN POS NN IN NNPS VBP RB VB DT JJ NN IN NNP .\nHe also says the opposition will not extend the tax cuts President Bush successfully pushed through Congress in 2001 .\tPRP RB VBZ DT NN MD RB VB DT NN NNS NNP NNP RB VBD IN NNP IN CD .\nPolice in Istanbul have arrested 63 people taking part in a demonstration ahead of International Women 's Day .\tNNS IN NNP VBP VBN CD NNS VBG NN IN DT NN RB IN NNP NNP POS NN .\nA crowd of 150 people had gathered in front of the mayor 's office in an early observance of the March 8 celebration .\tDT NN IN CD NNS VBD VBN IN NN IN DT NN POS NN IN DT JJ NN IN DT NNP CD NN .\nPolice ordered them to disperse , saying their rally was illegal .\tNNS VBD PRP TO VB , VBG PRP$ NN VBD JJ .\nThe protesters refused , and continued to chant slogans .\tDT NNS VBD , CC VBD TO VB NNS .\nTelevision footage showed police using pepper spray and truncheons to break up the demonstration .\tNNP NN VBD NNS VBG NN NN CC NNS TO VB RP DT NN .\nMany in the crowd dispersed , fleeing into side streets .\tNN IN DT NN VBD , VBG IN NN NNS .\nAuthorities say demonstrators broke the windows of a police vehicle in the process .\tNNS VBP NNS VBD DT NNS IN DT NN NN IN DT NN .\nPolice also broke up a second demonstration of about 250 people in the Beyazit district .\tNNS RB VBD RP DT JJ NN IN IN CD NNS IN DT NNP NN .\nThere were no reports of arrest .\tEX VBD DT NNS IN NN .\nEgyptian President Hosni Mubarak held separate talks in Cairo Sunday with Israeli and Palestinian leaders , as well as the US Middle East peace envoy .\tJJ NNP NNP NNP VBD JJ NNS IN NNP NNP IN JJ CC JJ NNS , RB RB IN DT NNP NNP NNP NN NN .\nSunday 's meetings focused on ways to encourage the two sides to return to direct negotiations .\tNNP POS NNS VBD IN NNS TO VB DT CD NNS TO VB TO JJ NNS .\nThe Associated Press quotes Egyptian Foreign Minister Ahmed Aboul Gheit as saying the basis to move from indirect to direct talks is still ' lacking . '\tDT NNP NNP VBZ JJ NNP NNP NNP NNP NNP IN VBG DT NN TO VB IN JJ TO JJ NNS VBZ RB `` VBG . ``\nPalestinian President Mahmoud Abbas has said he wo n't negotiate directly with Israel until there is progress on issues including borders , security and Israeli settlement construction .\tJJ NNP NNP NNP VBZ VBN PRP MD RB VB RB IN NNP IN EX VBZ NN IN NNS VBG NNS , NN CC JJ NN NN .\nIsraeli Prime Minister Benjamin Netanyahu says he wants to move to direct talks .\tJJ NNP NNP NNP NNP VBZ PRP VBZ TO VB TO JJ NNS .\nUS envoy George Mitchell has been in the region for indirect talks with both Mr. Netanyahu and Mr. Abbas .\tNNP NN NNP NNP VBZ VBN IN DT NN IN JJ NNS IN DT NNP NNP CC NNP NNP .\nThe head of China 's environmental protection agency has resigned following a chemical spill that polluted a major river and forced the shutdown of water supplies in parts of the country 's northeast .\tDT NN IN NNP POS JJ NN NN VBZ VBN VBG DT NN NN WDT VBD DT JJ NN CC VBD DT NN IN NN NNS IN NNS IN DT NN POS NN .\nThe official Xinhua news agency reported the resignation Friday , but did not provide details .\tDT JJ NNP NN NN VBD DT NN NNP , CC VBD RB VB NNS .\nMeanwhile , China 's foreign ministry says it is sending Russia 150 tons of activated charcoal to help filter pollution from the toxic chemical slick moving along the Amur river toward the Russian city of Khabarovsk .\tRB , NNP POS JJ NN VBZ PRP VBZ VBG NNP CD NNS IN VBN NN TO VB VB NN IN DT JJ NN NN VBG IN DT NNP NN IN DT JJ NN IN NNP .\nEarlier this week , Russian environmental officials reported higher levels of benzene in the river , but said it is not clear if the toxic chemical is from the massive spill in China two weeks ago .\tRBR DT NN , JJ JJ NNS VBD JJR NNS IN NN IN DT NN , CC VBD PRP VBZ RB JJ IN DT JJ NN VBZ IN DT JJ NN IN NNP CD NNS RB .\nA November 13 explosion at a factory dumped 100 tons of poisonous chemicals into China 's Songhua river .\tDT NNP CD NN IN DT NN VBD CD NNS IN JJ NNS IN NNP POS NNP NN .\nThe environmental group Worldwide Fund for Nature is warning that illegal fishing is driving the bluefin tuna in the Mediterranean and East Atlantic to extinction .\tDT JJ NN NNP NNP IN NNP VBZ VBG IN JJ NN VBZ VBG DT NN NN IN DT NNP CC NNP NNP TO VB .\nThe WWF says in a new report that annual fishing quotas for the bluefin are exceeded by more than 40 percent .\tDT NNP VBZ IN DT JJ NN IN JJ NN NNS IN DT NN VBP VBN IN JJR IN CD NN .\nIt calls the European Union , Libyan , and Turkish fishing fleets the biggest offenders .\tPRP VBZ DT NNP NNP , JJ , CC JJ NN VBZ DT JJS NNS .\nThe report says some unreported bluefin catches are quickly processed at sea before being shipped to Japan , where the fish is one of the most popular portions of sushi dinners .\tDT NN VBZ DT JJ NN NNS VBP RB VBN IN NN IN VBG VBN TO NNP , WRB DT NN VBZ CD IN DT RBS JJ NNS IN NN NNS .\nThe WWF is urging European officials to call for an immediate halt to Atlantic bluefin fishing to give the species time to recover .\tDT NNP VBZ VBG JJ NNS TO VB IN DT JJ NN TO NNP JJ NN TO VB DT NNS NN TO VB .\nIt says it will call for a consumer boycott in the United States and Japan if no action is taken .\tPRP VBZ PRP MD VB IN DT NN NN IN DT NNP NNPS CC NNP IN DT NN VBZ VBN .\nPalestinian medical officials say an Israeli airstrike has killed two Palestinian militants in the northern Gaza Strip .\tJJ JJ NNS VBP DT JJ NN VBZ VBN CD JJ NNS IN DT JJ NNP NNP .\nThe Israeli military has confirmed the attack , saying its helicopter targeted two men who were firing rockets across the border into Israeli territory .\tDT JJ NN VBZ VBN DT NN , VBG PRP$ NN VBD CD NNS WP VBD VBG NNS IN DT NN IN JJ NN .\nThe Islamic Jihad militant group claimed responsibility .\tDT NNP NNP JJ NN VBD NN .\nThe airstrike was launched after rockets fired from northern Gaza exploded in the Israeli town of Sderot .\tDT NN VBD VBN IN NNS VBD IN JJ NNP VBD IN DT JJ NN IN NNP .\nOne Israeli was wounded .\tCD NN VBD VBN .\nEarlier Sunday , Israeli soldiers shot and killed two Hamas gunmen in northern Gaza .\tRBR NNP , JJ NNS VBD CC VBD CD NNP NNS IN JJ NNP .\nThe Israeli army confirmed that its troops shot two Palestinians who approached the border fence .\tDT JJ NN VBD IN PRP$ NNS VBD CD NNS WP VBD DT NN NN .\nIsraeli troops often shoot at Palestinians who approach the fence in an effort to prevent infiltrations by militants .\tJJ NNS RB VBP IN NNS WP VBP DT NN IN DT NN TO VB NNS IN NNS .\nIsrael also conducts raids into Gaza to stop militants from launching rockets into Israel .\tNNP RB VBZ NNS IN NNP TO VB NNS IN VBG NNS IN NNP .\nAfghan and NATO forces have killed 20 Taleban militants during fighting in southern Afghanistan .\tJJ CC NNP NNS VBP VBN CD NNP NNS IN VBG IN JJ NNP .\nA local police chief says the clash occurred late Wednesday in the Shah Wali Kot district of Kandahar province .\tDT JJ NN NN VBZ DT NN VBD JJ NNP IN DT NNP NNP NNP NN IN NNP NN .\nThe police chief says three of the 20 Taleban fighters ' bodies were found .\tDT NN NN VBZ CD IN DT CD NNP NNS POS NNS VBD VBN .\nAuthorities say there were no injuries among Afghan or NATO forces .\tNNS VBP EX VBD DT NNS IN JJ CC NNP NNS .\nMilitant attacks have soared in recent months in Afghanistan .\tJJ NNS VBP VBN IN JJ NNS IN NNP .\nMore than 3,000 people have been killed this year as Afghan , NATO and U.S. forces battle Taleban fighters .\tJJR IN CD NNS VBP VBN VBN DT NN IN JJ , NNP CC NNP NNS VBP NNP NNS .\nPresident Bush has called on the U.S. Congress to pass a defense spending bill before it goes on recess next month .\tNNP NNP VBZ VBN IN DT NNP NNP TO VB DT NN NN NN IN PRP VBZ IN NN JJ NN .\nMr. Bush made the comment Thursday at the annual meeting of the American Legislative Exchange Council ( ALEC ) .\tNNP NNP VBD DT NN NNP IN DT JJ NN IN DT NNP NNP NNP NNP LRB NNP RRB .\nThe organization is made up of state lawmakers who draft ' model legislation . '\tDT NN VBZ VBN IN IN NN NNS WP VB `` NN NN . ``\nDuring his speech , the president said Congress has been ' dragging its feet ' in getting 12 spending bills to him , including the defense bill .\tIN PRP$ NN , DT NN VBD NNP VBZ VBN `` VBG PRP$ NNS `` IN VBG CD NN NNS TO PRP , VBG DT NN NN .\nOn the economy , Mr. Bush stressed the need to keep taxes low , which he said has yielded a strong economy .\tIN DT NN , NNP NNP VBD DT NN TO VB NNS JJ , WDT PRP VBD VBZ VBN DT JJ NN .\nOn education , the president said Congress needs to reauthorize his ' No Child Left Behind ' legislation in order to close what he called an ' achievement gap ' in America .\tIN NN , DT NN VBD NNP VBZ TO VB PRP$ `` DT NN VBD IN `` NN IN NN TO VB WP PRP VBD DT `` NN NN `` IN NNP .\nMr. Bush concluded his speech by speaking of securing the United States from terrorists .\tNNP NNP VBD PRP$ NN IN NN IN VBG DT NNP NNPS IN NNS .\nA U.S.-based rights group says Chinese authorities arrested two elderly Roman Catholic priests in the days before the death of Pope John Paul .\tDT JJ NNS NN VBZ JJ NNS VBN CD JJ NNP NNP VBZ IN DT NNS IN DT NN IN NNP NNP NNP .\nThe Cardinal Kung Foundation , which supports the underground Catholic Church in China , said in a press release Sunday that authorities detained Bishop Yao Liang last Thursday .\tDT NNP NNP NNP , WDT VBZ DT JJ NNP NNP IN NNP , VBD IN DT NN NN NNP IN NNS VBD NNP NNP NNP JJ NNP .\nThe foundation said that before his arrest , Bishop Yao , who is in his eighties , had been under mounting pressure from authorities to sever ties with the pope and join China 's official Catholic Church .\tDT NN VBD IN IN PRP$ NN , NNP NNP , WP VBZ IN PRP$ NNS , VBD VBN IN VBG NN IN NNS TO VB NNS IN DT NN CC VB NNP POS JJ NNP NNP .\nThe statement said that on Friday , Father Wang Jinling , also in his eighties , was arrested too .\tDT NN VBD IN IN NNP , NNP NNP NNP , RB IN PRP$ NNS , VBD VBN RB .\nThe foundation said it does not know why he was detained or where he is being kept .\tDT NN VBD PRP VBZ RB VB WRB PRP VBD VBN CC WRB PRP VBZ VBG VBN .\nOfficials in Afghanistan say the commander of a pro-government militia force has been killed by a roadside bomb in an attack blamed on Taleban insurgents .\tNNS IN NNP VBP DT NN IN DT JJ NN NN VBZ VBN VBN IN DT NN NN IN DT NN VBN IN NNP NNS .\nOfficials say the commander was killed Friday , when his car was hit by the blast in southern Helmand province .\tNNS VBP DT NN VBD VBN NNP , WRB PRP$ NN VBD VBN IN DT NN IN JJ NNP NN .\nReuters news agency identifies the victim as Shadi Khan -- the former chief of Deshu district police .\tNNP NN NN VBZ DT NN IN NNP NNP IN DT JJ NN IN NNP NN NN .\nHours earlier , a government official was killed in an ambush in neighboring Zabul province .\tNNS RB , DT NN NN VBD VBN IN DT NN IN JJ NNP NN .\nViolence has spiraled in recent weeks after a winter lull in fighting , with repeated attacks on Afghan security forces and U.S.-led coalition troops .\tNN VBZ VBN IN JJ NNS IN DT NN NN IN NN , IN JJ NNS IN JJ NN NNS CC JJ NN NNS .\nTaleban fighters have been waging an insurgency since U.S.-led forces ousted the hard-line Afghan government in the aftermath of the September 11 , 2001 attacks on the United States .\tNNP NNS VBP VBN VBG DT NN IN JJ NNS VBD DT JJ JJ NN IN DT NN IN DT NNP CD , CD NNS IN DT NNP NNPS .\nKosovo 's delegation for possible talks on the future of the United Nations-run province has met for the first time and stressed it would seek independence for the largely ethnic-Albanian region .\tNNP POS NN IN JJ NNS IN DT NN IN DT NNP NNP NN VBZ VBN IN DT JJ NN CC VBD PRP MD VB NN IN DT RB JJ NN .\nAfter the meeting , Kosovo President Ibrahim Rugova said seeking unification of Kosovo with Albania would create more problems .\tIN DT NN , NNP NNP NNP NNP VBD VBG NN IN NNP IN NNP MD VB JJR NNS .\nHe says an independent Kosovo is the best solution for the Balkans .\tPRP VBZ DT JJ NNP VBZ DT JJS NN IN DT NNPS .\nU.N. Secretary-General Kofi Annan Wednesday said he will soon decide whether to start the Kosovo talks .\tNNP NNP NNP NNP NNP VBD PRP MD RB VB IN TO VB DT NNP NNS .\nKosovo is officially part of Serbia , and authorities in Belgrade oppose any change in that status .\tNNP VBZ RB NN IN NNP , CC NNS IN NNP VBP DT NN IN DT NN .\nMeanwhile , the International Committee of the Red Cross says Kosovo and Serbian authorities have identified the remains of 200 more people unaccounted for since the conflict of the late 1990s and returned them to their families in the past few months .\tRB , DT NNP NNP IN DT NNP NNP VBZ NNP CC JJ NNS VBP VBN DT NNS IN CD JJR NNS JJ IN IN DT NN IN DT JJ NNS CC VBD PRP TO PRP$ NNS IN DT JJ JJ NNS .\nBut it says there is no word on the fate of additional 2,500 .\tCC PRP VBZ EX VBZ DT NN IN DT NN IN JJ CD .\nA man described as an Israeli army deserter shot and killed four people near a northern Israeli-Arab town , but was then killed by a huge mob of angry townspeople .\tDT NN VBN IN DT JJ NN NN VBD CC VBD CD NNS IN DT JJ NNP NN , CC VBD RB VBN IN DT JJ NN IN JJ NN .\nIsraeli media quote witnesses as saying the mob killing came shortly after the Israeli opened fire aboard a bus Thursday afternoon near the Israeli-Arab town of Shfaram .\tJJ NNS VBP NNS IN VBG DT NN NN VBD RB IN DT NNS VBD NN IN DT NN NNP NN IN DT JJ NN IN NNP .\nWitnesses say two girls and the bus driver were among the dead .\tNNS VBP CD NNS CC DT NN NN VBD IN DT NN .\nAt least 12 others were wounded before locals stormed the bus and killed the gunman .\tIN JJS CD NNS VBD VBN IN NNS VBD DT NN CC VBD DT NN .\nHe was identified as a religious deserter from the army who refused to take part in the upcoming Israeli pullout of the Gaza Strip .\tPRP VBD VBN IN DT JJ NN IN DT NN WP VBD TO VB NN IN DT JJ JJ NN IN DT NNP NNP .\nIsraeli news reports say the shooter was a member of the outlawed extremist Kach party .\tJJ NN NNS VBP DT NN VBD DT NN IN DT JJ NN NNP NN .\nSpanish police have arrested four Moroccans suspected of having direct links to last year 's Madrid commuter train bombings that killed 191 people .\tJJ NNS VBP VBN CD NNS VBN IN VBG JJ NNS TO JJ NN POS NNP NN NN NNS WDT VBD CD NNS .\nAn Interior Ministry statement says police detained the four Tuesday in a Madrid suburb .\tDT NNP NNP NN VBZ NNS VBD DT CD NNP IN DT NNP NN .\nIt says the four , all members of the same family , are believed to have ties to Morocco 's Islamic Combat Group , an al-Qaida-linked movement blamed for bombing attacks in November 2003 , in Casablanca , Morocco , that killed 45 people .\tPRP VBZ DT CD , DT NNS IN DT JJ NN , VBP VBN TO VB NNS TO NNP POS NNP NNP NNP , DT JJ NN VBN IN VBG NNS IN NNP CD , IN NNP , NNP , WDT VBD CD NNS .\nPolice also say they issued an international arrest warrant for another Moroccan , Youssef Belhadj , who currently lives in Belgium .\tNNS RB VBP PRP VBD DT JJ NN NN IN DT NN , NNP NNP , WP RB VBZ IN NNP .\nSpanish authorities say they believe the suspect appeared on a videotape claiming that al-Qaida had carried out the attacks on four Madrid commuter trains , which also wounded about 1,900 people .\tJJ NNS VBP PRP VBP DT NN VBD IN DT NN VBG IN NNP VBD VBN IN DT NNS IN CD NNP NN NNS , WDT RB VBD IN CD NNS .\nRussia 's embattled oil giant Yukos says a Moscow court has frozen the company 's stake in the Sibneft oil firm .\tNNP POS JJ NN NN NNP VBZ DT NNP NN VBZ VBN DT NN POS NN IN DT NNP NN NN .\nThe business daily Vedomosti says the action could pave the way for the 34.5 percent stake to be seized if authorities prove it was acquired with illegal funds .\tDT NN RB NNP VBZ DT NN MD VB DT NN IN DT CD NN NN TO VB VBN IN NNS VBP PRP VBD VBN IN JJ NNS .\nYukos was to merge with Sibneft , but that deal was called off following the arrest last year of then-Yukos chief Mikhail Khodorkovsky .\tNNP VBD TO VB IN NNP , CC DT NN VBD VBN RP VBG DT NN JJ NN IN JJ NN NNP NNP .\nMr. Khodorkovsky has remained in prison and is currently on trial for tax evasion and fraud .\tNNP NNP VBZ VBN IN NN CC VBZ RB IN NN IN NN NN CC NN .\nMeanwhile , Yukos is struggling to pay billions of dollars in back taxes .\tRB , NNP VBZ VBG TO VB NNS IN NNS IN JJ NNS .\nCritics say the extensive probe is politically motivated because Mr. Khodorkovsky was a supporter of the political opposition .\tNNS VBP DT JJ NN VBZ RB JJ IN NNP NNP VBD DT NN IN DT JJ NN .\nThe Kremlin insists the actions are part of a crackdown on corruption .\tDT NNP VBZ DT NNS VBP NN IN DT NN IN NN .\nSeveral civilians - including children - have died in separate violent incidents in Afghanistan .\tJJ NNS : VBG NNS : VBP VBN IN JJ JJ NNS IN NNP .\nIn southern Helmand province , a suicide bomber Friday detonated explosives near a military compound in Sangin town , killing two children .\tIN JJ NNP NN , DT NN NN NNP VBD NNS IN DT JJ NN IN NNP NN , VBG CD NNS .\nAlso Friday , the U.S. military said that several other civilians were killed during a battle between Taleban insurgents and Afghan troops backed by U.S.-led coalition forces in the southeast .\tRB NNP , DT NNP NN VBD IN JJ JJ NNS VBD VBN IN DT NN IN NNP NNS CC JJ NNS VBN IN JJ NN NNS IN DT NN .\nThe joint force came under attack during a raid on compounds suspected of housing militants in Paktika province .\tDT JJ NN VBD IN NN IN DT NN IN NNS VBN IN NN NNS IN NNP NN .\nThe U.S. military says that several Taleban fighters also died .\tDT NNP NN VBZ IN JJ NNP NNS RB VBD .\nAfghan leaders have repeatedly called on the nearly 50,000 foreign troops in Afghanistan to avoid causing civilian deaths .\tJJ NNS VBP RB VBN IN DT RB CD JJ NNS IN NNP TO VB VBG JJ NNS .\nThe U.S.-led coalition and NATO-led forces have blamed the Taleban for launching attacks from within civilian compounds and from populated areas .\tDT JJ NN CC JJ NNS VBP VBN DT NNP IN VBG NNS IN IN JJ NNS CC IN JJ NNS .\nAfghanistan is going through its worst period of violence since a U.S.-led invasion in 2001 ousted the Taleban government .\tNNP VBZ VBG IN PRP$ JJS NN IN NN IN DT JJ NN IN CD VBD DT NNP NN .\nChad 's government is extending emergency measures by six months in an effort to quell ethnic conflicts in the country 's east .\tNNP POS NN VBZ VBG NN NNS IN CD NNS IN DT NN TO VB JJ NNS IN DT NN POS NN .\nPrime Minister Pascal Yoadimnadji told lawmakers that more time is needed to restore peace and reconciliation .\tNNP NNP NNP NNP VBD NNS IN JJR NN VBZ VBN TO VB NN CC NN .\nHe also accused the government in neighboring Sudan of fueling the conflict .\tPRP RB VBD DT NN IN VBG NNP IN VBG DT NN .\nSudan denies the claim .\tNNP VBZ DT NN .\nChad first declared a state of emergency last week , because of fighting between ethnic Arab and ethnic African communities .\tNNP RB VBD DT NN IN NN JJ NN , IN IN VBG IN JJ JJ CC JJ JJ NNS .\nOfficials say 400 people have died in recent attacks , and thousands of others have fled their homes .\tNNS VBP CD NNS VBP VBN IN JJ NNS , CC NNS IN NNS VBP VBN PRP$ NNS .\nUnited Nations officials say Chadian villagers described being attacked by Arab nomads from Chad and western Sudan .\tNNP NNP NNS VBP JJ NNS VBD VBG VBN IN JJ NNS IN NNP CC JJ NNP .\nU.N. officials and aid workers say they fear the conflict in Sudan 's Darfur region between rebels and pro-government forces is spreading to Chad .\tNNP NNS CC NN NNS VBP PRP VBP DT NN IN NNP POS NNP NN IN NNS CC JJ NNS VBZ VBG TO NNP .\nAn Iraqi member of al-Qaida has confessed to killing a Jordanian taxi driver and kidnapping two employees of Morocco 's embassy in Baghdad .\tDT JJ NN IN NNP VBZ VBN TO VBG DT JJ NN NN CC VBG CD NNS IN NNP POS NN IN NNP .\nThe confession of Ziyad Khalaf Karbouli was broadcast Tuesday on Jordanian state TV .\tDT NN IN NNP NNP NNP VBD VBN NNP IN JJ NN NN .\nJordanian TV says Karbouli worked as a customs agent on the Iraqi side of the border with Jordan .\tJJ NNP VBZ NNP VBD IN DT NNS NN IN DT JJ NN IN DT NN IN NNP .\nIn his confession , Karbouli described how he shot the Jordanian driver Khaled Desouki twice in the head .\tIN PRP$ NN , NNP VBD WRB PRP VBD DT JJ NN NNP NNP RB IN DT NN .\nKarbouli says he kidnapped the two Moroccans last October as they returned to Iraq after visiting Amman .\tNNP VBZ PRP VBD DT CD NNS JJ NNP IN PRP VBD TO NNP IN VBG NNP .\nJordanian TV credited the country 's intelligence service and its special forces with the capture without releasing details .\tJJ NN VBD DT NN POS NN NN CC PRP$ JJ NNS IN DT NN IN VBG NNS .\nIt is unclear whether the kidnapped Moroccans are still alive .\tPRP VBZ JJ IN DT VBN NNS VBP RB JJ .\nZimbabwe 's state-run Herald newspaper says authorities have temporarily closed a school where at least 53 students were sexually abused .\tNNP POS JJ NNP NN VBZ NNS VBP RB VBN DT NN WRB IN JJS CD NNS VBD RB VBN .\nThe Herald reports that five suspects , including a teacher and a caretaker , carried out the abuse at the school in the southeastern town of Macheke .\tDT NNP VBZ IN CD NNS , VBG DT NN CC DT NN , VBD IN DT NN IN DT NN IN DT JJ NN IN NNP .\nThe paper says 16 girls were repeatedly abused by one person and infected with sexually transmitted diseases .\tDT NN VBZ CD NNS VBD RB VBN IN CD NN CC VBN IN RB JJ NNS .\nThe Herald quotes Zimbabwean Education Minister Aeneas Chigwedere as saying the school closed a week early and all staff were transferred immediately .\tDT NNP VBZ JJ NNP NNP NNP NNP IN VBG DT NN VBD DT NN RB CC DT NN VBD VBN RB .\nIt says the school will re-open on September 1 under a new administration .\tPRP VBZ DT NN MD VB IN NNP CD IN DT JJ NN .\nHospital officials in Israel say the condition of comatose former Prime Minister Ariel Sharon has deteriorated further .\tNN NNS IN NNP VBP DT NN IN JJ JJ NNP NNP NNP NNP VBZ VBN RB .\nA statement issued Monday from the Tel Aviv hospital where Mr. Sharon is being treated says the former prime minister has a new chest infection and his urine output has decreased significantly .\tDT NN VBN NNP IN DT NNP NNP NN WRB NNP NNP VBZ VBG VBN VBZ DT JJ JJ NN VBZ DT JJ NN NN CC PRP$ NN NN VBZ VBN RB .\nThe 78-year-old Mr. Sharon has been unconscious since early January when he suffered a massive stroke .\tDT JJ NNP NNP VBZ VBN JJ IN JJ NNP WRB PRP VBD DT JJ NN .\nPakistan says it will consider extraditing Taleban spokesman Abdul Latif Hakimi to Afghanistan if the Afghan government makes a formal request .\tNNP VBZ PRP MD VB VBG NNP NN NNP NNP NNP TO NNP IN DT JJ NN VBZ DT JJ NN .\nPakistani officials say Mr. Hakimi was detained with five other suspected Taleban members in a raid this week on a house on the outskirts of Quetta , capital of Pakistan 's Baluchistan province bordering Afghanistan .\tJJ NNS VBP NNP NNP VBD VBN IN CD JJ JJ NNP NNS IN DT NN DT NN IN DT NN IN DT NNS IN NNP , NN IN NNP POS NNP NN VBG NNP .\nAfghan President Hamid Karzai told France 's LCI television Wednesday his country would seek the extradition of Mr. Hakimi , saying he is responsible for many atrocities in Afghanistan .\tJJ NNP NNP NNP VBD NNP POS NNP NN NNP PRP$ NN MD VB DT NN IN NNP NNP , VBG PRP VBZ JJ IN JJ NNS IN NNP .\nA Pakistani foreign ministry spokeswoman said the ministry has seen the reports , but has not formally received a request from Afghanistan for the extradition of Mr. Hakimi .\tDT JJ JJ NN NN VBD DT NN VBZ VBN DT NNS , CC VBZ RB RB VBD DT NN IN NNP IN DT NN IN NNP NNP .\nPakistani intelligence officials say they have been questioning Mr. Hakimi about his links with senior Taleban leaders , the organization and structure of the Taleban , and to determine how he was operating in Pakistan .\tJJ NN NNS VBP PRP VBP VBN VBG NNP NNP IN PRP$ NNS IN JJ NNP NNS , DT NN CC NN IN DT NNP , CC TO VB WRB PRP VBD VBG IN NNP .\nIraqi political leaders are continuing efforts to win support from Sunni Arabs for a new constitution , before Saturday 's national referendum on the draft .\tJJ JJ NNS VBP VBG NNS TO VB NN IN NNP NNS IN DT JJ NN , IN NNP POS JJ NN IN DT NN .\nIraq 's majority Shi'ites and Kurds support the draft , but minority Sunni Arabs oppose it , fearing that they will be sidelined under the proposed federal system .\tNNP POS NN NNS CC NNS VBP DT NN , CC NN NNP NNS VBP PRP , VBG IN PRP MD VB VBN IN DT VBN JJ NN .\nIn another development , Iraq 's anti-corruption commission says arrest warrants have been issued for some two dozen officials from the previous interim government of Prime Minister Iyad Allawi .\tIN DT NN , NNP POS JJ NN VBZ NN NNS VBP VBN VBN IN DT CD NN NNS IN DT JJ JJ NN IN NNP NNP NNP NNP .\nThe commission says the former senior officials , including former defense minister Hazem al-Shaalan , are suspected of embezzling more than $ 1 billion from military procurement funds .\tDT NN VBZ DT JJ JJ NNS , VBG JJ NN NN NNP NNP , VBP VBN IN VBG JJR IN $ CD CD IN JJ NN NNS .\nMany of the accused are said to have left Iraq since the Allawi cabinet was replaced by an elected transitional government in April .\tNN IN DT VBN VBP VBN TO VB VBN NNP IN DT NNP NN VBD VBN IN DT VBN JJ NN IN NNP .\nThe European Commission says it will initiate legal action against France over that country 's failure to comply with European legal rulings in six cases dealing with environmental protection .\tDT JJ NNP VBZ PRP MD VB JJ NN IN NNP IN DT NN POS NN TO VB IN JJ JJ NNS IN CD NNS VBG IN JJ NN .\nThe Commission , the EU 's policy initiating body , says France has failed to react to several court rulings by the European Court of Justice since 2001 .\tDT NNP , DT NNP POS NN NN NN , VBZ NNP VBZ VBN TO VB TO JJ NN NNS IN DT NNP NNP IN NNP IN CD .\nThe cases relate to the protection of water , species and habitats , as well as waste treatment .\tDT NNS VBP TO DT NN IN NN , NNS CC NNS , RB RB IN NN NN .\nThe Commission says that under the rulings , France must adjust its national environmental laws to bring them in line with EU regulations .\tDT NNP VBZ IN IN DT NNS , NNP MD VB PRP$ JJ JJ NNS TO VB PRP IN NN IN NNP NNS .\nOtherwise , it says , France could incur fines .\tRB , PRP VBZ , NNP MD VB NNS .\nThe Associated Press quotes French officials as saying their government has made it a priority since 2002 to catch up on its delays in enforcing EU directives .\tDT NNP NNP VBZ JJ NNS IN VBG PRP$ NN VBZ VBN PRP DT NN IN CD TO VB RP IN PRP$ NNS IN VBG NNP NNS .\nBusiness jumped 16 percent in the first half of the year for Dubai World 's global port operations .\tNN VBD CD NN IN DT JJ NN IN DT NN IN NNP NNP POS JJ NN NNS .\nThe firm is the fourth-largest of its kind in the world and saw gains at ports it operates in Asia , Australia , and parts of Europe .\tDT NN VBZ DT NN IN PRP$ NN IN DT NN CC VBD NNS IN NNS PRP VBZ IN NNP , NNP , CC NNS IN NNP .\nThe company handled the equivalent of 23.7 million standard containers between January and June .\tDT NN VBD DT NN IN CD CD JJ NNS IN NNP CC NNP .\nThat is a significant gain from the same period a year ago when it moved a bit more than 20 million containers .\tDT VBZ DT JJ NN IN DT JJ NN DT NN RB WRB PRP VBD DT RB JJR IN CD CD NNS .\nThe company welcomes the growth , which comes after a steep decline in global trade during the economic crisis .\tDT NN VBZ DT NN , WDT VBZ IN DT JJ NN IN JJ NN IN DT JJ NN .\nBut managers say it is unclear if the growth will continue for the rest of the year .\tCC NNS VBP PRP VBZ JJ IN DT NN MD VB IN DT NN IN DT NN .\nCome one , Come all to the Inaugural Jameson Grill\tVBN CD , VBN DT TO DT NNP NNP NNP\nThe only fund raising event in the world where you can bring your entire family , other employees , or maybe even your neighbors .\tDT JJ NN VBG NN IN DT NN WRB PRP MD VB PRP$ JJ NN , JJ NNS , CC RB RB PRP$ NNS .\nSaturday , September 20 , 1997 , from 2.00 p.m. until 7.00 p.m. , marks a special day , as Jameson Camp will hold its first ever Jameson Grill .\tNNP , NNP CD , CD , IN NN NN IN NN NN , VBZ DT JJ NN , IN NNP NNP MD VB PRP$ JJ RB NNP NNP .\nA fund raiser dedicated to you and your family having fun ! !\tDT NN NN VBN TO PRP CC PRP$ NN VBG NN . .\nFor this event , when you purchase a corporate picnic table , you will be able to bring 16 people .\tIN DT NN , WRB PRP VBP DT JJ NN NN , PRP MD VB JJ TO VB CD NNS .\n( and if you need room for a couple of more , we can swing that too ! )\tLRB CC IN PRP VBP NN IN DT NN IN JJR , PRP MD VB IN RB . RRB\nThe Grill will feature enough activities that you and your kids will have a tough time deciding what to do .\tDT NNP MD VB JJ NNS IN PRP CC PRP$ NNS MD VB DT JJ NN VBG WP TO VB .\nFrom basketball , kickball , volleyball , archery , crafts , an egg toss , and even a walk through our creek , you will have plenty to do to get you good and hungry .\tIN NN , NN , NN , NN , NNS , DT NN NN , CC RB DT NN IN PRP$ NN , PRP MD VB NN TO VB TO VB PRP JJ CC JJ .\nHungry , you bet ! We 'll prepare a hog roast and hot dogs for the kids , with all the fixings .\tNNP , PRP VBD . PRP MD VB DT NN NN CC JJ NNS IN DT NNS , IN PDT DT NNS .\nIn addition , we will have soft drinks and a raffle , so that you can walk home with a great prize !\tIN NN , PRP MD VB JJ NNS CC DT NN , IN IN PRP MD VB NN IN DT JJ NN .\nThe Jameson Grill has been designed to be nothing but fun for you , your family , employees , and maybe even your neighbors .\tDT NNP NNP VBZ VBN VBN TO VB NN CC NN IN PRP , PRP$ NN , NNS , CC RB RB PRP$ NNS .\nJoin in this wonderful event and help Jameson Camp continue to provide the year-round support that gives kids a chance to create dreams .\tNNP IN DT JJ NN CC VB NNP NNP VBP TO VB DT JJ NN WDT VBZ NNS DT NN TO VB NNS .\nSimply fill out the enclosed card , and we will see you at the Grill !\tRB VB RP DT VBN NN , CC PRP MD VB PRP IN DT NNP .\nOne of our volunteers will be contacting you soon .\tCD IN PRP$ NNS MD VB VBG PRP RB .\nQuestions ?\tNNS .\nCall Pat Bray at 241-2661 or e-mail , jcfundrzr@aol.com\tVB NNP NNP IN CD CC VB , NNP\nMultiple waves of colonizers , each speaking a distinct language , migrated to the New Hebrides in the millennia preceding European exploration in the 18th century .\tJJ NNS IN NNS , DT VBG DT JJ NN , VBN TO DT NNP NNP IN DT NN VBG JJ NN IN DT JJ NN .\nThis settlement pattern accounts for the complex linguistic diversity found on the archipelago to this day .\tDT NN NN NNS IN DT JJ JJ NN VBD IN DT NN TO DT NN .\nThe British and French , who settled the New Hebrides in the 19th century , agreed in 1906 to an Anglo-French Condominium , which administered the islands until independence in 1980 , when the new name of Vanuatu was adopted .\tDT NNS CC NNS , WP VBD DT NNP NNP IN DT JJ NN , VBD IN CD TO DT JJ NN , WDT VBD DT NNS IN NN IN CD , WRB DT JJ NN IN NNP VBD VBN .\nFounded in 963 , Luxembourg became a grand duchy in 1815 and an independent state under the Netherlands .\tVBN IN CD , NNP VBD DT JJ NN IN CD CC DT JJ NN IN DT NNP .\nIt lost more than half of its territory to Belgium in 1839 but gained a larger measure of autonomy .\tPRP VBD JJR IN NN IN PRP$ NN TO NNP IN CD CC VBD DT JJR NN IN NN .\nFull independence was attained in 1867 .\tNNP NN VBD VBN IN CD .\nOverrun by Germany in both world wars , it ended its neutrality in 1948 when it entered into the Benelux Customs Union and when it joined NATO the following year .\tNNP IN NNP IN DT NN NNS , PRP VBD PRP$ NN IN CD WRB PRP VBD IN DT NNP NNP NNP CC WRB PRP VBD NNP DT JJ NN .\nIn 1957 , Luxembourg became one of the six founding countries of the European Economic Community ( later the European Union ) , and in 1999 it joined the euro currency area .\tIN CD , NNP VBD CD IN DT CD JJ NNS IN DT JJ NNP NNP LRB RB DT NNP NNP RRB , CC IN CD PRP VBD DT JJ NN NN .\nRussia conquered the territory of present-day Uzbekistan in the late 19th century .\tNNP VBD DT NN IN JJ NNP IN DT JJ JJ NN .\nStiff resistance to the Red Army after the Bolshevik Revolution was eventually suppressed and a socialist republic established in 1924 .\tNNP NN TO DT NNP NNP IN DT NNP NNP VBD RB VBN CC DT JJ NN VBN IN CD .\nDuring the Soviet era , intensive production of ' white gold ' ( cotton ) and grain led to overuse of agrochemicals and the depletion of water supplies , which have left the land poisoned and the Aral Sea and certain rivers half dry .\tIN DT JJ NN , JJ NN IN `` JJ NN `` LRB NN RRB CC NN VBD TO NN IN NNS CC DT NN IN NN NNS , WDT VBP VBN DT NN VBN CC DT NNP NNP CC JJ NNS DT JJ .\nIndependent since 1991 , the country seeks to gradually lessen its dependence on agriculture while developing its mineral and petroleum reserves .\tNNP IN CD , DT NN VBZ TO RB VB PRP$ NN IN NN IN VBG PRP$ NN CC NN NNS .\nCurrent concerns include terrorism by Islamic militants , economic stagnation , and the curtailment of human rights and democratization .\tJJ NNS VBP NN IN NNP NNS , JJ NN , CC DT NN IN JJ NNS CC NN .\nThe Philippine Islands became a Spanish colony during the 16th century ; they were ceded to the US in 1898 following the Spanish-American War .\tDT JJ NNP VBD DT JJ NN IN DT JJ NN ; PRP VBD VBN TO DT NNP IN CD VBG DT JJ NNP .\nIn 1935 the Philippines became a self-governing commonwealth .\tIN CD DT NNPS VBD DT JJ NN .\nManuel QUEZON was elected president and was tasked with preparing the country for independence after a 10-year transition .\tNNP NNP VBD VBN NN CC VBD VBN IN VBG DT NN IN NN IN DT JJ NN .\nIn 1942 the islands fell under Japanese occupation during World War II , and US forces and Filipinos fought together during 1944 - 45 to regain control .\tIN CD DT NNS VBD IN JJ NN IN NNP NNP NNP , CC NNP NNS CC NNS VBD RB IN CD : CD TO VB NN .\nOn 4 July 1946 the Republic of the Philippines attained its independence .\tIN CD NNP CD DT NNP IN DT NNP VBD PRP$ NN .\nA 20-year rule by Ferdinand MARCOS ended in 1986 , when a ' people power ' movement in Manila ( ' EDSA 1 ' ) forced him into exile and installed Corazon AQUINO as president .\tDT JJ NN IN NNP NNP VBD IN CD , WRB DT `` NNS NN `` NN IN NNP LRB `` NNP CD `` RRB VBD PRP IN NN CC VBN NNP NNP IN NN .\nHer presidency was hampered by several coup attempts that prevented a return to full political stability and economic development .\tPRP$ NN VBD VBN IN JJ NN NNS WDT VBD DT NN TO JJ JJ NN CC JJ NN .\nFidel RAMOS was elected president in 1992 .\tNNP NNP VBD VBN NN IN CD .\nHis administration was marked by increased stability and by progress on economic reforms .\tPRP$ NN VBD VBN IN JJ NN CC IN NN IN JJ NNS .\nIn 1992 , the US closed its last military bases on the islands .\tIN CD , DT NNP VBD PRP$ JJ JJ NNS IN DT NNS .\nJoseph ESTRADA was elected president in 1998 .\tNNP NNP VBD VBN NN IN CD .\nHe was succeeded by his vice-president , Gloria MACAPAGAL-ARROYO , in January 2001 after ESTRADA 's stormy impeachment trial on corruption charges broke down and another ' people power ' movement ( ' EDSA 2 ' ) demanded his resignation .\tPRP VBD VBN IN PRP$ NN , NNP NNP , IN NNP CD IN NNP POS JJ NN NN IN NN NNS VBD RB CC DT `` NNS NN `` NN LRB `` NNP CD `` RRB VBD PRP$ NN .\nMACAPAGAL-ARROYO was elected to a six-year term as president in May 2004 .\tNNP VBD VBN TO DT JJ NN IN NN IN NNP CD .\nHer presidency was marred by several corruption allegations but the Philippine economy was one of the few to avoid contraction following the 2008 global financial crisis , expanding each year of her administration .\tPRP$ NN VBD VBN IN JJ NN NNS CC DT JJ NN VBD CD IN DT JJ TO VB NN VBG DT CD JJ JJ NN , VBG DT NN IN PRP$ NN .\nBenigno AQUINO III was elected to a six-year term as president in May 2010 .\tNNP NNP NNP VBD VBN TO DT JJ NN IN NN IN NNP CD .\nThe Philippine Government faces threats from several groups on the US Government 's Foreign Terrorist Organization list .\tDT JJ NN VBZ NNS IN JJ NNS IN DT NNP NNP POS NNP NNP NNP NN .\nManila has waged a decades-long struggle against ethnic Moro insurgencies in the southern Philippines , which has led to a peace accord with the Moro National Liberation Front and on-again / off-again peace talks with the Moro Islamic Liberation Front .\tNNP VBZ VBN DT JJ NN IN JJ NNP NNS IN DT JJ NNP , WDT VBZ VBN TO DT NN NN IN DT NNP NNP NNP NNP CC JJ NN JJ NN NNS IN DT NNP NNP NNP NNP .\nThe decades-long Maoist-inspired New People 's Army insurgency also operates through much of the country .\tDT JJ JJ NNP NNP POS NNP NN RB VBZ IN NN IN DT NN .\nTWO GAME COCKS were fiercely fighting for the mastery of the farmyard .\tCD NN NNS VBD RB VBG IN DT NN IN DT NN .\nOne at last put the other to flight .\tCD IN JJ NN DT JJ TO NN .\nThe vanquished Cock skulked away and hid himself in a quiet corner , while the conqueror , flying up to a high wall , flapped his wings and crowed exultingly with all his might .\tDT JJ NN VBD RB CC VBD PRP IN DT JJ NN , IN DT NN , VBG RP TO DT JJ NN , VBD PRP$ NNS CC VBD RB IN DT PRP$ NN .\nAn Eagle sailing through the air pounced upon him and carried him off in his talons .\tDT NNP NN IN DT NN VBD IN PRP CC VBD PRP RP IN PRP$ NNS .\nThe vanquished Cock immediately came out of his corner , and ruled henceforth with undisputed mastery .\tDT JJ NN RB VBD IN IN PRP$ NN , CC VBD NN IN JJ NN .\nPride goes before destruction .\tNN VBZ IN NN .\nThe Minnesota Fish and Game Comission wanted to develop a fish that would offer more for their sportsmen so they crossed a Coho with a Walleye and called it a Kowal .\tDT NNP NNP CC NNP NNP VBD TO VB DT NN WDT MD VB JJR IN PRP$ NNS IN PRP VBD DT NN IN DT NNP CC VBD PRP DT NNP .\nIt grew to a nice size and reproduced well but it would n't bite .\tPRP VBD TO DT JJ NN CC VBD RB CC PRP MD RB VB .\nThey crossed the Kowal with a Muskie and called it a Kowalski but they were so stupid they had to teach them how to swim .\tPRP VBD DT NNP IN DT NN CC VBD PRP DT NNP CC PRP VBD RB JJ PRP VBD TO VB PRP WRB TO VB .\nIf you owe the bank $ 100 , that 's your problem .\tIN PRP VBP DT NN $ CD , DT VBZ PRP$ NN .\nIf you owe the bank $ 100 million , that 's the bank 's problem .\tIN PRP VBP DT NN $ CD CD , WDT VBZ DT NN POS NN .\nIndia says it would like the dispute over Iran 's nuclear program to be resolved through negotiations at the International Atomic Energy Agency , not the United Nations Security Council .\tNNP VBZ PRP MD VB DT NN IN NNP POS JJ NN TO VB VBN IN NNS IN DT NNP NNP NNP NNP , RB DT NNP NNP NNP NNP .\nPrime Minister Manmohan Singh told reporters in New Delhi Wednesday that the matter should be resolved through diplomacy and dialogue .\tNNP NNP NNP NNP VBD NNS IN NNP NNP NNP IN DT NN MD VB VBN IN NN CC NN .\nThe five permanent members of the Security Council have agreed to bring Iran before the powerful body .\tDT CD JJ NNS IN DT NNP NNP VBP VBN TO VB NNP IN DT JJ NN .\nBut some other key nations have indicated they want to avoid going to the Council .\tCC DT JJ JJ NNS VBP VBN PRP VBP TO VB VBG TO DT NNP .\nMr. Singh declined to specify India 's stand on a possible Security Council referral .\tNNP NNP VBD TO VB NNP POS NN IN DT JJ NNP NNP NN .\nHe said he will review the issue in the ' national interest . '\tPRP VBD PRP MD VB DT NN IN DT `` JJ NN . ``\nIn September , New Delhi voted with the United States on an earlier IAEA resolution that could have led to Iran 's referral to the Council .\tIN NNP , NNP NNP VBD IN DT NNP NNPS IN DT JJR NNP NN WDT MD VB VBN TO NNP POS NN TO DT NNP .\nBut the Indian government was severely criticized for that by its left-wing political allies at home .\tCC DT JJ NN VBD RB VBN IN DT IN PRP$ JJ JJ NNS IN NN .\nThe presidents of South Africa and Nigeria have arrived in Ivory Coast in another effort to resolve a standoff over the selection of a new prime minister .\tDT NNS IN NNP NNP CC NNP VBP VBN IN NNP NNP IN DT NN TO VB DT NN IN DT NN IN DT JJ JJ NN .\nThabo Mbeki and Olusegun Obasanjo plan to hold talks with President Laurent Gbagbo , opposition leaders and rebels who control the northern half of Ivory Coast .\tNNP NNP CC NNP NNP NN TO VB NNS IN NNP NNP NNP , NN NNS CC NNS WP VBP DT JJ NN IN NNP NNP .\nThe parties have been unable to agree on a new prime minister who would run a caretaker government until elections scheduled for October 2006 .\tDT NNS VBP VBN JJ TO VB IN DT JJ JJ NN WP MD VB DT NN NN IN NNS VBN IN NNP CD .\nMr. Gbagbo canceled elections scheduled for October of this year and vowed to remain in office another 12 months , sparking anger among rebels and opposition leaders .\tNNP NNP VBD NNS VBN IN NNP IN DT NN CC VBD TO VB IN NN DT CD NNS , VBG NN IN NNS CC NN NNS .\nThe Nigerian and South African leaders traveled Sunday from Mali , where they attended the France-Africa summit .\tDT JJ CC JJ JJ NNS VBD NNP IN NNP , WRB PRP VBD DT NNP NN .\nThe president of Niger , Mamadou Tandja , is scheduled to join them for the talks in Abidjan .\tDT NN IN NNP , NNP NNP , VBZ VBN TO VB PRP IN DT NNS IN NNP .\nU.S. Senator Al Franken says Laotian officials restricted his access to 4,500 Hmong refugees who were forcibly repatriated from Thailand last year .\tNNP NNP NNP NNP VBZ JJ NNS VBN PRP$ NN TO CD NNP NNS WP VBD RB VBN IN NNP JJ NN .\nThe lawmaker traveled to Laos on Tuesday to observe the living conditions of the refugees .\tDT NN VBD TO NNP IN NNP TO VB DT NN NNS IN DT NNS .\nHe says he spoke with a group of 150 Hmong at village being built for them by the government , and took an aerial tour by helicopter .\tPRP VBZ PRP VBD IN DT NN IN CD NN IN NN VBG VBN IN PRP IN DT NN , CC VBD DT JJ NN IN NN .\nFranken told reporters after his visit that he was ' unhappy ' with the amount of access he was granted .\tNNP VBD NNS IN PRP$ NN IN PRP VBD `` JJ `` IN DT NN IN NN PRP VBD VBN .\nHe says he was accompanied by a high-ranking military official throughout his visit .\tPRP VBZ PRP VBD VBN IN DT JJ JJ NN IN PRP$ NN .\nThe Democratic senator represents Minnesota , which has one of the largest Hmong expatriate communities in the United States .\tDT JJ NN VBZ NNP , WDT VBZ CD IN DT JJS JJ JJ NNS IN DT NNP NNPS .\nThe senator traveled to Laos as part of a three-member delegation traveling to Vietnam this week , including Tom Harkin of Iowa and independent Bernie Sanders of Vermont .\tDT NN VBD TO NNP IN NN IN DT JJ NN VBG TO NNP DT NN , VBG NNP NNP IN NNP CC JJ NNP NNP IN NNP .\nA legal group representing a detainee who committed suicide at Guantanamo Naval Base earlier this month is expressing concern that the Bush administration may intentionally dispose of evidence related to the case .\tDT JJ NN VBG DT NN WP VBD NN IN NNP NNP NNP RBR DT NN VBZ VBG NN IN DT NNP NN MD RB VB IN NN VBN TO DT NN .\nThe New York-based Center for Constitutional Rights this week sought court protection of evidence related to the death of its client , Ali Abdullah Ahmed al-Salami .\tDT NNP JJ NNP IN NNP NNP DT NN VBD NN NN IN NN VBN TO DT NN IN PRP$ NN , NNP NNP NNP NNP .\nIt said the Bush administration has failed to provide a death certificate or autopsy report since three Guantanamo inmates were found dead in their cells June 10 .\tPRP VBD DT NNP NN VBZ VBN TO VB DT NN NN CC NN NN IN CD NNP NNS VBD VBN JJ IN PRP$ NNS NNP CD .\nThe motion also asks for an independent investigation into the suicides .\tDT NN RB VBZ IN DT JJ NN IN DT NNS .\nPentagon spokesman Bryan Whitman told VOA that preservation of evidence is standard military practice and , in his words , ' a vital part ' of such an investigation .\tNNP NN NNP NNP VBD NNP IN NN IN NN VBZ JJ JJ NN CC , IN PRP$ NNS , `` DT JJ NN `` IN JJ DT NN .\nBut he said such evidence is not likely to be made public before the inquiry is complete .\tCC PRP VBD JJ NN VBZ RB JJ TO VB VBN JJ IN DT NN VBZ JJ .\nPhilippine Senator Benigno Aquino III has been formally declared the winner of the country 's presidential election .\tJJ NNP NNP NNP NNP VBZ VBN RB VBD DT NN IN DT NN POS JJ NN .\nA joint session of the upper and lower chambers of Congress formally proclaimed Mr. Aquino the Philippine 's 15th president Wednesday .\tDT JJ NN IN DT JJ CC JJR NNS IN NNP RB VBD NNP NNP DT JJ POS JJ NN NNP .\nThe president-elect won the May 10 automated elections in a landslide , garnering more than 15 million votes , while his closest challenger , ex-President Joseph Estrada , got only 9.4 million votes .\tDT JJ VBD DT NNP CD JJ NNS IN DT NN , VBG JJR IN CD CD NNS , IN PRP$ JJS NN , NNP NNP NNP , VBD RB CD CD NNS .\nMr. Aquino will take office on June 30 , succeeding President Gloria Arroyo , whose nine-year tenure has been marred by allegations of corruption and election fraud .\tNNP NNP MD VB NN IN NNP CD , VBG NNP NNP NNP , WP$ JJ NN VBZ VBN VBN IN NNS IN NN CC NN NN .\nHe campaigned on a platform of eliminating corruption and poverty .\tPRP VBD IN DT NN IN VBG NN CC NN .\nMr. Aquino is the son of the late President Corazon Aquino and Senator Benigno Aquino , Jr. , who was assassinated in 1983 at the Manila airport after returning from exile in the United States to challenge the dictatorship of Ferdinand Marcos .\tNNP NNP VBZ DT NN IN DT JJ NNP NNP NNP CC NNP NNP NNP , NNP , WP VBD VBN IN CD IN DT NNP NN IN VBG IN NN IN DT NNP NNPS TO VB DT NN IN NNP NNP .\nBusiness owners in parts of the devastated city of New Orleans are being allowed back into the area to start clean-up and begin readying for re-opening .\tNN NNS IN NNS IN DT JJ NN IN NNP NNP VBP VBG VBN RB IN DT NN TO VB NN CC VB VBG IN NN .\nNew Orleans Mayor Ray Nagin has called on business owners to return to the French Quarter and some other parts of the city -- but other officials are warning there may be limited or no electricity or clean running water .\tNNP NNP NNP NNP NNP VBZ VBN IN NN NNS TO VB TO DT JJ NN CC DT JJ NNS IN DT NN : CC JJ NNS VBP VBG EX MD VB VBN CC DT NN CC JJ VBG NN .\nSome residents will also be allowed to return to their homes Monday .\tDT NNS MD RB VB VBN TO VB TO PRP$ NNS NNP .\nLess than half of New Orleans remains flooded , but dangers from downed power lines , natural gas leaks , toxic debris and other hazards remain .\tRBR IN DT IN NNP NNP VBZ VBN , CC NNS IN JJ NN NNS , JJ NN NNS , JJ NN CC JJ NNS VBP .\nHurricane Katrina ravaged the U.S. Gulf Coast on August 29 .\tNN NNP VBD DT NNP NNP NNP IN NNP CD .\nThe death toll in five states is now more than 800 .\tDT NN NN IN CD NNS VBZ RB JJR IN CD .\nPresident Bush is calling on U.S. lawmakers to pass legislation that will limit jury awards in medical malpractice lawsuits .\tNNP NNP VBZ VBG IN NNP NNS TO VB NN WDT MD VB NN NNS IN JJ NN NNS .\nDuring a speech in Illinois Wednesday , Mr. Bush promoted legislation that would limit damages awarded for pain and suffering to $ 2,50,000 .\tIN DT NN IN NNP NNP , NNP NNP VBD NN WDT MD VB NNS VBN IN NN CC NN TO $ CD .\nThe president says the bill is necessary to put a stop to lawsuits he calls ' frivolous . '\tDT NN VBZ DT NN VBZ JJ TO VB DT NN TO NNS PRP VBZ `` JJ . ``\nThe president says excessive jury awards from malpractice lawsuits are forcing doctors out of medicine , because they can not afford the rising costs of malpractice insurance premiums .\tDT NN VBZ JJ NN NNS IN NN NNS VBP VBG NNS IN IN NN , IN PRP MD RB VB DT VBG NNS IN NN NN NNS .\nBut critics say Mr. Bush 's bill favors big insurance companies and drug makers , and does nothing about the rising costs of prescription drugs and insurance premiums .\tCC NNS VBP NNP NNP POS NN VBZ JJ NN NNS CC NN NNS , CC VBZ DT IN DT VBG NNS IN NN NNS CC NN NNS .\nMr. Bush made the issue one of the central themes during his re-election campaign .\tNNP NNP VBD DT NN CD IN DT JJ NNS IN PRP$ NN NN .\nAuthorities in Indian Kashmir say monsoon rains have caused a house to collapse south of Srinagar , killing six members of a family .\tNNS IN JJ NNP VBP NN NNS VBP VBN DT NN TO VB NN IN NNP , VBG CD NNS IN DT NN .\nOne person was rescued from the debris .\tCD NN VBD VBN IN DT NN .\nLocal officials say heavy rains also forced authorities to close the Himalayan region 's main highways , leaving thousands of motorists stranded .\tJJ NNS VBP JJ NNS RB VBD NNS TO VB DT NNP NN POS JJ NNS , VBG NNS IN NNS VBN .\nMilitary units are on standby for flood relief operations .\tJJ NNS VBP IN NN IN NN NN NNS .\nMonsoon rains sweep through South Asia every year from June to September , killing hundreds of people .\tNN VBZ NN IN NNP NNP DT NN IN NNP TO NNP , VBG NNS IN NNS .\nThey bring misery to millions of people , but are also crucial for the farm-dependent economies .\tPRP VBP NN TO NNS IN NNS , CC VBP RB JJ IN DT JJ NNS .\nIraqi police say a suicide attack in the northern city of Baiji has killed at least seven people and wounded at least 13 .\tJJ NNS VBP DT NN NN IN DT JJ NN IN NNP VBZ VBN IN JJS CD NNS CC VBN IN JJS CD .\nPolice say the bomber rammed a vehicle into a police building in a residential area Saturday .\tNNS VBP DT NN VBD DT NN IN DT NN NN IN DT JJ NN NNP .\nBaiji , about 250 kilometers north of Baghdad , has the country 's largest oil refinery and is a key export point for crude oil .\tNNP , IN CD NNS RB IN NNP , VBZ DT NN POS JJS NN NN CC VBZ DT JJ NN NN IN JJ NN .\nAlso , a possible rocket or bomb attack has killed a local leader of the movement of radical Shi'ite cleric Moqtada al-Sadr .\tRB , DT JJ NN CC NN NN VBZ VBN DT JJ NN IN DT NN IN JJ NNP NN NNP NNP .\nIraqi authorities say Uday Hamid and his wife and two children were killed in an explosion at their home south of Baghdad , in Numaniya .\tJJ NNS VBP NNP NNP CC PRP$ NN CC CD NNS VBD VBN IN DT NN IN PRP$ NN NN IN NNP , IN NNP .\nIn other news , the U.S. military says coalition forces killed 12 terrorists and detained 13 suspects in operations today targeting al-Qaida in Iraq networks in central and northern Iraq .\tIN JJ NN , DT NNP NN VBZ NN NNS VBN CD NNS CC VBN CD NNS IN NNS NN VBG NNP IN NNP NNS IN JJ CC JJ NNP .\nEvery year , millions of tourists visit Washington 's National Mall .\tDT NN , NNS IN NNS VBP NNP POS NNP NNP .\nMany come to participate in events that take place in the U.S. capital .\tJJ VBN TO VB IN NNS WDT VBP NN IN DT NNP NN .\nBut the Mall , the 4 kilometer-long green space stretching from the Lincoln Memorial to the domed Capitol Building , is in trouble .\tCC DT NNP , DT CD JJ JJ NN VBG IN DT NNP NNP TO DT JJ NNP NNP , VBZ IN NN .\nProducer Zulima Palacio has the story , narrated by Jim Bertel , about the Mall 's decay and the urgent need for repair .\tNNP NNP NNP VBZ DT NN , VBN IN NNP NNP , IN DT NNP POS NN CC DT JJ NN IN NN .\nIndia 's economy is growing at an unprecedented rate , prompting far-reaching changes that are rapidly transforming the country .\tNNP POS NN VBZ VBG IN DT JJ NN , VBG JJ NNS WDT VBP RB VBG DT NN .\nAmong the most visible signs of the new India is a housing boom that targets the country 's growing middle class .\tIN DT RBS JJ NNS IN DT JJ NNP VBZ DT NN NN WDT VBZ DT NN POS VBG JJ NN .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nEgyptian security officials say the number of people killed by a rockslide in Cairo earlier this month is at least 95 , as the search continues for more bodies in the rubble .\tJJ NN NNS VBP DT NN IN NNS VBN IN DT NN IN NNP RBR DT NN VBZ IN JJS CD , IN DT NN VBZ IN JJR NNS IN DT NN .\nThe previous death toll was at least 80 , after giant rocks fell from the cliff above the impoverished Manshiyet Nasr neighborhood September sixth .\tDT JJ NN NN VBD IN JJS CD , IN JJ NNS VBD IN DT NN IN DT JJ NNP NNP NN NNP NN .\nAngry residents have clashed with rescue workers over what they consider an inadequate response to the disaster .\tNNP NNS VBP VBN IN NN NNS IN WP PRP VBP DT JJ NN TO DT NN .\nRescuers have had to work mostly by hand to remove debris because streets in the neighborhood are too narrow for large machinery .\tNNS VBP VBN TO VB RB IN NN TO VB NN IN NNS IN DT NN VBP RB JJ IN JJ NN .\nOfficials say rockslides are frequent in the area .\tNNS VBP NNS VBP JJ IN DT NN .\nFamilies living there have appealed to authorities for safer housing .\tNNS VBG EX VBP VBN TO NNS IN JJR NN .\nThe U.S. military says American and Iraqi forces have killed nine insurgents , including five suspected Syrians , in a village northwest of Baghdad .\tDT NNP NN VBZ NNP CC JJ NNS VBP VBN CD NNS , VBG CD JJ NNS , IN DT NN NN IN NNP .\nU.S. military officials say the insurgents had fired rocket-propelled grenades and small arms at a U.S. and Iraqi patrol in Cykla .\tNNP JJ NNS VBP DT NNS VBD VBN JJ NNS CC JJ NNS IN DT NNP CC JJ NN IN NNP .\nThe officials did not say when the clash occurred .\tDT NNS VBD RB VB WRB DT NN VBD .\nWashington and the Iraqi government say many insurgents in Iraq come from neighboring Arab countries .\tNNP CC DT JJ NN VBP JJ NNS IN NNP VBP IN JJ JJ NNS .\nOn Thursday , insurgents killed seven people , including six Iraqi soldiers , in coordinated attacks in and around the capital .\tIN NNP , NNS VBD CD NNS , VBG CD JJ NNS , IN JJ NNS IN CC IN DT NN .\nThe attacks came a day after Abu Musab al-Zarqawi 's terrorist group ( al-Qaida in Iraq ) claimed to have murdered two kidnapped Algerian diplomats .\tDT NNS VBD DT NN IN NNP NNP NNP POS JJ NN LRB NNP IN NNP RRB VBD TO VB VBN CD VBN JJ NNS .\nU.S. and Afghan forces report killing eight insurgents during fighting in southeastern Afghanistan and say they thwarted an attempted suicide bombing at a U.S. base .\tNNP CC JJ NNS VBP VBG CD NNS IN VBG IN JJ NNP CC VBP PRP VBD DT JJ NN VBG IN DT NNP NN .\nAuthorities in Zabul province say coalition forces raided a Taleban hideout Saturday , sparking a gunbattle during which eight militants were killed and three captured .\tNNS IN NNP NN VBP NN NNS VBD DT NNP NN NNP , VBG DT NN IN WDT CD NNS VBD VBN CC CD VBN .\nIn Khost province Saturday , coalition forces detained a man outside a U.S. base after a grenade he was carrying failed to detonate .\tIN NNP NN NNP , NN NNS VBD DT NN IN DT NNP NN IN DT NN PRP VBD VBG VBD TO VB .\nA military statement says the assailant had several explosives hidden on his body when he approached Camp Salerno .\tDT JJ NN VBZ DT NN VBD JJ NNS VBN IN PRP$ NN WRB PRP VBD NNP NNP .\nIn central Uruzgan province Saturday , Afghan and U.S. troops killed one insurgent and captured six others .\tIN JJ NNP NN NNP , JJ CC NNP NNS VBD CD NN CC VBD CD NNS .\nThe Taleban has stepped up attacks ahead of parliamentary elections next month .\tDT NNP VBZ VBN RP NNS RB IN JJ NNS IN NN .\nCroatian General Ante Gotovina pleaded not guilty Tuesday to four new charges of war crimes and crimes against humanity linked to the murders of Croatian Serbs in 1995 .\tJJ NNP NNP NNP VBD RB JJ NNP TO CD JJ NNS IN NN NNS CC NNS IN NN VBN TO DT NNS IN JJ NNS IN CD .\nProsecutors at the Yugoslav war crimes tribunal in the Hague have charged Gotovina and two other Croatian officers , Ivan Cermak and Mladen Markac , with the crimes .\tNNS IN DT JJ NN NNS JJ IN DT NNP VBP VBN NNP CC CD JJ JJ NNS , NNP NNP CC NNP NNP , IN DT NNS .\nGotovina was arrested a year ago on Spain 's Canary Islands and remains in custody .\tNNP VBD VBN DT NN RB IN NNP POS NNP NNP CC VBZ IN NN .\nHe had pleaded not guilty to earlier charges .\tPRP VBD VBN RB JJ TO JJR NNS .\nCermak and Markac have been released to await their trial .\tNNP CC NNP VBP VBN VBN TO VB PRP$ NN .\nThey appeared at Tuesday 's hearing via a video link , and also pleaded not guilty to new charges .\tPRP VBD IN NNP POS NN IN DT NN NN , CC RB VBD RB JJ TO JJ NNS .\nThe Hague war crimes tribunal indicted General Gotovina in 2001 for his role in the deaths of civilians during a 1995 offensive through a Serb-held area of the country .\tDT NNP NN NNS JJ VBD NNP NNP IN CD IN PRP$ NN IN DT NNS IN NNS IN DT CD NN IN DT JJ NN IN DT NN .\nU.S. Secretary of State Hillary Clinton has told a forum of Arab leaders in Qatar to enact economic and political reforms or face increased unrest and extremism .\tNNP NNP IN NNP NNP NNP VBZ VBN DT NN IN JJ NNS IN NNP TO VB JJ CC JJ NNS CC NN VBN NN CC NN .\nClinton spoke Thursday in the capital , Doha , as she wrapped up a four-nation tour of the Persian Gulf .\tNNP VBD NNP IN DT NN , NNP , IN PRP VBD RP DT JJ NN IN DT NNP NNP .\nThe top U.S. diplomat said if leaders do not offer young people ' meaningful ways to contribute , ' then others are ready to fill the void .\tDT JJ NNP NN VBD IN NNS VBP RB VB JJ NNS `` JJ NNS TO VB , `` RB NNS VBP JJ TO VB DT NN .\nClinton said extremists and terrorist groups ' who would prey on desperation and poverty ' are already appealing for influence .\tNNP VBD NNS CC JJ NNS `` WP MD VB IN NN CC NN `` VBP RB VBG IN NN .\nShe also called for an end to corruption and for increased economic opportunities for women and minorities .\tPRP RB VBD IN DT NN TO NN CC IN VBN JJ NNS IN NNS CC NNS .\nClinton said the ' new and dynamic Middle East ' needs a firmer foundation in order to grow .\tNNP VBD DT `` JJ CC JJ NNP NNP `` VBZ DT JJR NN IN NN TO VB .\nHer tour also included stops in Oman , Yemen and the United Arab Emirates .\tPRP$ NN RB VBD NNS IN NNP , NNP CC DT NNP NNP NNPS .\nFifty-one people are believed to have killed in a fiery bus crash in China 's mountainous southwest .\tCD NNS VBP VBN TO VB VBN IN DT JJ NN NN IN NNP POS JJ NN .\nChina 's official Xinhua news agency reported the bus left the road and plunged 100 meters into a valley in Sichuan province .\tNNP POS JJ NNP NN NN VBD DT NN VBD DT NN CC VBD CD NNS IN DT NN IN NNP NN .\nWitnesses say they heard an explosion and saw black smoke rising from the crash site .\tNNS VBP PRP VBD DT NN CC VBD JJ NN VBG IN DT NN NN .\nXinhua says Sichuan 's provincial governor , Jiang Jufeng , was on his way to supervise rescue and recovery efforts .\tNNP VBZ NNP POS JJ NN , NNP NNP , VBD IN PRP$ NN TO VB NN CC NN NNS .\nThere are no reports of any survivors .\tEX VBP DT NNS IN DT NNS .\nThe bus was on its way from Sichuan to Ningbo , a coastal city south of Shanghai in eastern Zhejiang province China 's roads are among the most dangerous in the world with accidents often caused by reckless driving , poor road conditions and overloaded vehicles .\tDT NN VBD IN PRP$ NN IN NNP TO NNP , DT JJ NN NN IN NNP IN JJ NNP NN NNP POS NNS VBP IN DT RBS JJ IN DT NN IN NNS RB VBN IN JJ NN , JJ NN NNS CC JJ NNS .\nGermany 's defense ministry says it is investigating photos published by a popular newspaper that appear to show German troops in Afghanistan posing with a skull .\tNNP POS NN NN VBZ PRP VBZ VBG NNS VBN IN DT JJ NN WDT VBP TO VB JJ NNS IN NNP VBG IN DT NN .\nThe daily Bildnewspaper says the pictures were taken near Afghanistan 's capital , Kabul , in 2003 .\tDT JJ NNP VBZ DT NNS VBD VBN IN NNP POS NN , NNP , IN CD .\nThe paper says it does not know where the soldiers obtained the skull or how old it was .\tDT NN VBZ PRP VBZ RB VB WRB DT NNS VBD DT NN CC WRB JJ PRP VBD .\nGerman Defense Minister Josef Jung called the pictures disgusting and incomprehensible .\tJJ NNP NNP NNP NNP VBD DT NNS VBG CC JJ .\nHe said such behavior by German soldiers will not be tolerated .\tPRP VBD JJ NN IN JJ NNS MD RB VB VBN .\nGermany has about 2,800 troops in Afghanistan as part of the NATO peacekeeping mission .\tNNP VBZ IN CD NNS IN NNP IN NN IN DT NNP NN NN .\nGermany 's parliament voted last month to extend their deployment for another year .\tNNP POS NN VBD JJ NN TO VB PRP$ NN IN DT NN .\nThe photos show the soldiers holding the skull up and fastening it to a vehicle like a hood ornament .\tDT NNS VBP DT NNS VBG DT NN RB CC VBG PRP TO DT NN IN DT NN NN .\nAnother soldier is shown exposing himself next to the skull .\tDT NN VBZ VBN VBG PRP JJ TO DT NN .\nThe newspaper did not say how it obtained the photos .\tDT NN VBD RB VB WRB PRP VBD DT NNS .\nThe head of the U.S. central bank says banks must be smarter about the ways they pay their executives , and government must find better ways to cope with the failure of large financial firms .\tDT NN IN DT NNP JJ NN VBZ NNS MD VB RBR IN DT NNS PRP VBP PRP$ NNS , CC NN MD VB JJR NNS TO VB IN DT NN IN JJ JJ NNS .\nFederal Reserve Chairman Ben Bernanke spoke Friday to a group of community bankers in Phoenix in the western U.S. state of Arizona .\tNNP NNP NNP NNP NNP VBD NNP TO DT NN IN NN NNS IN NNP IN DT JJ NNP NN IN NNP .\nHe said ' poorly designed ' compensation policies can create the wrong incentives and jeopardize the bank 's health .\tPRP VBD `` RB VBN `` NN NNS MD VB DT JJ NNS CC VB DT NN POS NN .\nBernanke urged bankers to find ways to align executive pay with the long-term interests of the bank .\tNNP VBD NNS TO VB NNS TO VB JJ NN IN DT JJ NNS IN DT NN .\nBernanke spoke after $ 165 million in bonus payments to executives of the troubled AIG insurance company - which has been propped up with billions of dollars in taxpayers ' money - caused a huge political upheaval .\tNNP VBD IN $ CD CD IN NN NNS TO NNS IN DT JJ NNP NN NN : WDT VBZ VBN VBN RP IN NNS IN NNS IN NNS POS NN : VBD DT JJ JJ NN .\nHe also said the government must find a safer way to shut down large financial firms outside the banking sector without disrupting the entire financial system .\tPRP RB VBD DT NN MD VB DT JJR NN TO VB RP JJ JJ NNS IN DT NN NN IN VBG DT JJ JJ NN .\nThe United Nations mission in Liberia says it will respond strongly after threatening text messages were sent to the chief of the electoral commission .\tDT NNP NNP NN IN NNP VBZ PRP MD VB RB IN VBG NN NNS VBD VBN TO DT NN IN DT JJ NN .\nNational Elections Commission head Frances Johnson-Morris has told news organizations she laughed when she received two recent messages sent to her mobile phone .\tNNP NNPS NNP NN NNP NNP VBZ VBN NN NNS PRP VBD WRB PRP VBD CD JJ NNS VBN TO PRP$ JJ NN .\nBut the U.N. mission in Liberia says it is taking the threats seriously , describing them as a serious impediment to the consolidation of peace and stability in Liberia .\tCC DT NNP NN IN NNP VBZ PRP VBZ VBG DT NNS RB , VBG PRP IN DT JJ NN TO DT NN IN NN CC NN IN NNP .\nThe United Nations also says it will respond ' robustly ' to any threats of violence against individuals involved in the election process .\tDT NNP NNP RB VBZ PRP MD VB `` RB `` TO DT NNS IN NN IN NNS VBN IN DT NN NN .\nLiberians have been widely praised for holding peaceful and transparent elections on October 11 , the nation 's first post-war poll .\tNNS VBP VBN RB VBN IN VBG JJ CC JJ NNS IN NNP CD , DT NN POS JJ JJ NN .\nA presidential run-off vote is expected in November between the two top vote-getters , former football ( soccer ) star George Weah and former cabinet minister and World Bank economist Ellen Johnson-Sirleaf .\tDT JJ NN NN VBZ VBN IN NNP IN DT CD JJ NNS , JJ NN LRB NN RRB NN NNP NNP CC JJ NN NN CC NNP NNP NN NNP NNP .\nPakistani officials say a U.S. missile strike has killed at least 10 militants in a tribal region of northwest Pakistan .\tJJ NNS VBP DT NNP NN NN VBZ VBN IN JJS CD NNS IN DT JJ NN IN JJ NNP .\nOfficials say a drone attack Tuesday destroyed a militant compound in the Datta Khel region of North Waziristan .\tNNS VBP DT NN NN NNP VBD DT JJ NN IN DT NNP NNP NN IN NNP NNP .\nThe United States has regularly launched attacks by the unmanned planes on the district , which is a stronghold of al-Qaida and the Taliban .\tDT NNP NNP VBZ RB VBN NNS IN DT JJ NNS IN DT NN , WDT VBZ DT NN IN NNP CC DT NNP .\nMeanwhile , Pakistani police say an anti-Taliban militia in Kurram , another tribal region along the Afghan border , killed 10 Taliban fighters Tuesday .\tRB , JJ NNS VBP DT JJ NN IN NNP , DT JJ NN IN DT JJ NN , VBD CD NNP NNS NNP .\nThe militia attacked the Taliban fighters after they attempted to kidnap one of its members .\tDT NN VBD DT NNP NNS IN PRP VBD TO VB CD IN PRP$ NNS .\nLast week , Pakistani intelligence officials said two suspected U.S. drone strikes killed at least 12 people in the North Waziristan village of Mizarkhel .\tJJ NN , JJ NN NNS VBD CD JJ NNP NN NNS VBD IN JJS CD NNS IN DT NNP NNP NN IN NNP .\nSuch attacks have killed senior members of al-Qaida and the Taliban , but have sparked criticism from Pakistan 's government .\tJJ NNS VBP VBN JJ NNS IN NNP CC DT NNP , CC VBP VBN NN IN NNP POS NN .\nUnited Airlines , the second largest carrier in the United States , is cutting additional jobs , grounding airplanes that use the most fuel , and slashing domestic flights to offset record fuel prices .\tNNP NNPS , DT JJ JJS NN IN DT NNP NNPS , VBZ VBG JJ NNS , VBG NNS WDT VBP DT JJS NN , CC VBG JJ NNS TO VB NN NN NNS .\nUnited Airlines announced Wednesday it will cut an extra 900 to 1,100 jobs by the end of the year .\tNNP NNP VBD NNP PRP MD VB DT JJ CD TO CD NNS IN DT NN IN DT NN .\nThe layoffs are in addition to 500 job cuts the carrier announced previously .\tDT NNS VBP IN NN TO CD NN NNS DT NN VBD RB .\nUnited is also grounding 100 of its least fuel-efficient aircraft , 94 Boeing 737s and six 747 airplanes .\tNNP VBZ RB VBG CD IN PRP$ JJS JJ NN , CD NNP NNS CC CD CD NNS .\nThe carrier will also slash domestic flights 17 percent by the end of the year .\tDT NN MD RB VB JJ NNS CD NN IN DT NN IN DT NN .\nLast month , American Airlines , the largest carrier in the United States , announced similar measures to offset the high cost of fuel .\tJJ NN , NNP NNPS , DT JJS NN IN DT NNP NNPS , VBD JJ NNS TO VB DT JJ NN IN NN .\nAmerican Airlines said it would cut an undetermined number of jobs and slash domestic flights by up to 12 percent .\tNNP NNPS VBD PRP MD VB DT JJ NN IN NNS CC VB JJ NNS IN RB TO CD NN .\nA British security firm says four of its employees have been killed and 15 others wounded in an attack in Baghdad 's heavily fortified ' Green Zone , ' which houses the Iraqi government and the U.S.-led coalition .\tDT JJ NN NN VBZ CD IN PRP$ NNS VBP VBN VBN CC CD NNS VBN IN DT NN IN NNP POS RB VBN `` NNP NNP , `` WDT VBZ DT JJ NN CC DT JJ NN .\nA spokesman for the ' Global Risk Strategies ' firm declined to say Friday what kind of attack occurred , but said the incident took place on Thursday .\tDT NN IN DT `` JJ NN NNS `` NN VBD TO VB NNP WP NN IN NN VBD , CC VBD DT NN VBD NN IN NNP .\nThe development came as Iraqi authorities said an Iraqi policeman was killed and three others wounded when insurgents attacked a police station late Thursday in Rashad , southwest of the northern city of Kirkuk .\tDT NN VBD IN JJ NNS VBD DT JJ NN VBD VBN CC CD NNS VBD WRB NNS VBD DT NN NN JJ NNP IN NNP , NN IN DT JJ NN IN NNP .\nAlso Friday , the U.S. military said Marines have cleared more than half the houses of weapons in the restive city of Fallujah , after mounting an offensive to crush the city 's rebels .\tRB NNP , DT NNP NN VBD NNS VBP VBN JJR IN PDT DT NNS IN NNS IN DT JJ NN IN NNP , IN VBG DT NN TO VB DT NN POS NNS .\nOn Thursday , a large cache of weapons and an apparent chemical weapons laboratory was discovered in Fallujah .\tIN NNP , DT JJ NN IN NNS CC DT JJ NN NNS NN VBD VBN IN NNP .\nPakistan 's finance chief says the International Monetary Fund has agreed to provide a $ 7.6 billion loan to help the country stabilize its economy .\tNNP POS NN NN VBZ DT NNP NNP NNP VBZ VBN TO VB DT $ CD CD NN TO VB DT NN VB PRP$ NN .\nTop economic advisor Shaukat Tareen says the loan will prevent Pakistan from defaulting on its foreign debt .\tJJ JJ NN NNP NNP VBZ DT NN MD VB NNP IN VBG IN PRP$ JJ NN .\nTareen told reporters in Karachi Saturday that Pakistan will formally apply for the loan next week , but that the IMF has agreed to the deal .\tNNP VBD NNS IN NNP NNP IN NNP MD RB VB IN DT NN JJ NN , CC IN DT NNP VBZ VBN TO DT NN .\nTareen says Pakistan expects its first IMF loan disbursements this year .\tNNP VBZ NNP VBZ PRP$ JJ NNP NN NNS DT NN .\nPope John Paul II will miss the re-enactment of the crucifixion of Jesus Christ , the first time he has not physically attended the ceremony in his 26-year pontificate .\tNN NNP NNP NNP MD VB DT NN IN DT NN IN NNP NNP , DT JJ NN PRP VBZ RB RB VBD DT NN IN PRP$ JJ NN .\nVatican officials say the 84-year-old pontiff may participate in the Way of the Cross procession at the Colosseum through a video link depending on his health .\tNNP NNS VBP DT JJ NN MD VB IN DT NN IN DT NNP NN IN DT NN IN DT NN NN VBG IN PRP$ NN .\nThe pope was hospitalized twice within the past month and had a tube inserted in his throat to relieve breathing difficulties .\tDT NN VBD VBN RB IN DT JJ NN CC VBD DT NN VBN IN PRP$ NN TO VB NN NNS .\nHe has delegated other Church officials to preside over ceremonies leading up to Easter , including Friday 's Good Friday events .\tPRP VBZ VBN JJ NN NNS TO VB IN NNS VBG RP TO NNP , VBG NNP POS JJ NNP NNS .\nVatican officials say they expect the pope to deliver his Urbi et Orbi blessing on Easter Sunday , when Christians celebrate the resurrection of Jesus Christ .\tNNP NNS VBP PRP VBP DT NN TO VB PRP$ NNP NNP NNP NN IN NNP NNP , WRB NNS VBP DT NN IN NNP NNP .\nA South African court says two farm workers accused of killing a white supremacist leader will remain in custody until at least next month .\tDT JJ JJ NN VBZ CD NN NNS VBN IN VBG DT JJ NN NN MD VB IN NN IN IN JJS JJ NN .\nCourt officials said Wednesday that a bail hearing for suspect Chris Mahlangu has been postponed until May 10 at the request of the man 's lawyer .\tNNP NNS VBD NNP IN DT NN NN IN JJ NNP NNP VBZ VBN VBN IN NNP CD IN DT NN IN DT NN POS NN .\nMeanwhile , the French News Agency says the lawyer for an unidentified 15-year-old suspect has withdrawn a bail application .\tRB , DT NNP NNP NNP VBZ DT NN IN DT JJ JJ NN VBZ VBN DT NN NN .\nAuthorities have charged the two workers , both of them black , with murdering Afrikaner Resistance Movement founder Eugene Terre'Blanche .\tNNS VBP VBN DT CD NNS , DT IN PRP JJ , IN VBG JJ NN NN NN NNP NNP .\nTerre'Blanche was found bludgeoned to death on his farm west of Johannesburg earlier this month .\tNNP VBD VBN JJ TO NN IN PRP$ NN NN IN NNP RBR DT NN .\nPolice say the killing may have stemmed from a pay dispute .\tNNS VBP DT NN MD VB VBN IN DT NN NN .\nThe incident has heightened racial tensions in South Africa .\tDT NN VBZ VBN JJ NNS IN NNP NNP .\nPresident Jacob Zuma has appealed for calm .\tNNP NNP NNP VBZ VBN IN NN .\nA suicide bomb attack on a convoy of Canadian troops in southern Afghanistan has killed three civilians , including a Canadian official .\tDT NN NN NN IN DT NN IN JJ NNS IN JJ NNP VBZ VBN CD NNS , VBG DT JJ NN .\nHospital sources in Kandahar city say another 12 people , including three Canadian soldiers , were wounded in Sunday 's blast .\tNN NNS IN NNP NN VBP DT CD NNS , VBG CD JJ NNS , VBD VBN IN NNP POS NN .\nWitnesses say the bomber slammed his explosive-laden vehicle into the convoy .\tNNS VBP DT NN VBD PRP$ JJ NN IN DT NN .\nCanadian Prime Minister Paul Martin confirmed the Canadian casualties during an election campaign appearance in Quebec .\tJJ NNP NNP NNP NNP VBD DT JJ NNS IN DT NN NN NN IN NNP .\nHe offered condolences to the victim 's family , and described Canada 's presence in Afghanistan as essential to establishing peace and security there .\tPRP VBD NNS TO DT NN POS NN , CC VBD NNP POS NN IN NNP IN JJ TO VBG NN CC NN RB .\nA purported spokesman for the Taleban claimed responsibility for the attack .\tDT JJ NN IN DT NNP VBD NN IN DT NN .\nThe Taleban has also claimed responsibility for Saturday 's killing in Kandahar of a former Taleban intelligence chief who renounced the group after it was ousted from power by U.S.-led forces in 2001 .\tDT NNP VBZ RB VBN NN IN NNP POS NN IN NNP IN DT JJ NNP NN NN WP VBD DT NN IN PRP VBD VBN IN NN IN JJ NNS IN CD .\nPakistani Foreign Minister Khursheed Kasuri says Islamabad is willing to seal its border with Afghanistan by building a fence to stop militants from infiltrating into Afghan territory .\tJJ NNP NNP NNP NNP VBZ NNP VBZ JJ TO VB PRP$ NN IN NNP IN VBG DT NN TO VB NNS IN VBG IN JJ NN .\nKasuri made the remark during Sunday talks with his Dutch counterpart , Bernard Bot , who suggested sealing the border during his visit in the Afghan capital , Kabul , a day earlier .\tNNP VBD DT NN IN NNP NNS IN PRP$ JJ NN , NNP NNP , WP VBD VBG DT NN IN PRP$ NN IN DT JJ NN , NNP , DT NN RBR .\nHe also said that the fenced border should be jointly monitored by both Pakistani and Afghan security forces .\tPRP RB VBD IN DT JJ NN MD VB RB VBN IN DT JJ CC JJ NN NNS .\nA Foreign Ministry statement says Bot welcomed Pakistan 's readiness to seal the Afghan-Pakistani border and told Kasuri he would discuss this with other NATO partners .\tDT NNP NNP NN VBZ NNP VBD NNP POS NN TO VB DT JJ NN CC VBD NNP PRP MD VB DT IN JJ NNP NNS .\nAfghan officials say Taleban leaders frequently find shelter in Pakistan .\tJJ NNS VBP NNP NNS RB VBP NN IN NNP .\nIslamabad denies those accusations , saying it has deployed 80,000 troops in the rugged border region to hunt down Taleban and al-Qaida fugitives .\tNNP VBZ DT NNS , VBG PRP VBZ VBN CD NNS IN DT JJ NN NN TO VB RP NNP CC NNP NNS .\nAfghan President Hamid Karzai is calling for presidential elections to be held four months earlier than an election date set by the country 's Independent Election Commission .\tJJ NNP NNP NNP VBZ VBG IN JJ NNS TO VB VBN CD NNS JJR IN DT NN NN VBN IN DT NN POS NNP NNP NNP .\nPresident Karzai issued a decree Saturday noting the constitution requires the vote to be held 30 to 60 days before his five-year term expires on May 21 .\tNNP NNP VBD DT NN NNP VBG DT NN VBZ DT NN TO VB VBN CD CC CD NNS IN PRP$ JJ NN VBZ IN NNP CD .\nThe Independent Election Commission announced last month that it rescheduled the election for August 20 to give incoming U.S. forces time to stabilize the country .\tDT NNP NNP NNP VBD JJ NN IN PRP VBD DT NN IN NNP CD TO VB JJ NNP NNS NN TO VB DT NN .\nThe commission also said it needed time to work out logistical issues and wanted to avoid holding the vote during Afghanistan 's harsh winter weather .\tDT NN RB VBD PRP VBD NN TO VB RP JJ NNS CC VBD TO VB VBG DT NN IN NNP POS JJ NN NN .\nOpposition leaders have insisted that President Karzai step down when his term expires in May and install a caretaker government .\tNN NNS VBP VBN IN NNP NNP VB RB WRB PRP$ NN VBZ IN NNP CC VB DT NN NN .\nU.S. support for the embattled president came into question after the Obama administration openly accused Mr. Karzai of failing to crack down on government corruption .\tNNP NN IN DT JJ NN VBD IN NN IN DT NNP NN RB VBD NNP NNP IN VBG TO VB RP IN NN NN .\nThe Zambian government says President Levy Mwanawasa has suffered a stroke .\tDT JJ NN VBZ NNP NNP NNP VBZ VBN DT NN .\nThe president was hospitalized Sunday in the Egyptian resort of Sharm El Sheikh , where he was preparing to attend Monday 's summit of African Union leaders .\tDT NN VBD VBN NNP IN DT JJ NN IN NNP NNP NNP , WRB PRP VBD VBG TO VB NNP POS NN IN NNP NNP NNS .\nZambian Vice President Rupiah Banda says in a statement Monday that Mr. Mwanawasa is being attended to by doctors and his condition is stable .\tJJ JJ NNP NNP NNP VBZ IN DT NN NNP IN NNP NNP VBZ VBG VBN TO IN NNS CC PRP$ NN VBZ JJ .\nThe Zambian president fell ill on Sunday after attending an AU committee meeting on United Nations reform .\tDT JJ NN VBD RB IN NNP IN VBG DT NNP NN NN IN NNP NNP NN .\nAn initial statement from Zambia 's foreign minister had described his ailment as a consequence of high blood pressure .\tDT JJ NN IN NNP POS JJ NN VBD VBN PRP$ NN IN DT NN IN JJ NN NN .\nThe AU summit has so far focused largely on the political crisis in Zimbabwe .\tDT NNP NN VBZ RB RB VBN RB IN DT JJ NN IN NNP .\nMr. Mwanawasa is known as a critic of Zimbabwean President Robert Mugabe , but has said he will not comment on the current situation before AU leaders discuss the matter .\tNNP NNP VBZ VBN IN DT NN IN JJ NNP NNP NNP , CC VBZ VBN PRP MD RB VB IN DT JJ NN IN NNP NNS VB DT NN .\nBrazil has agreed not to break a pharmaceutical patent on a crucial AIDS drug after a U.S. drug manufacturer agreed to significantly reduce the price of the drug .\tNNP VBZ VBN RB TO VB DT JJ NN IN DT JJ NNP NN IN DT NNP NN NN VBD TO RB VB DT NN IN DT NN .\nThe agreements were announced late Friday after 10 days of talks between Brazil 's government and Abbott Laboratories .\tDT NNS VBD VBN JJ NNP IN CD NNS IN NNS IN NNP POS NN CC NNP NNP .\nThe drug manufacturer will cut prices , saving Brazil 's Ministry of Health over $ 259 million over the next six years .\tDT NN NN MD VB NNS , VBG NNP POS NNP IN NNP IN $ CD CD IN DT JJ CD NNS .\nAbbott also agreed to a technology transfer allowing Brazil 's state-run pharmaceutical labs to begin producing the drug Kaletra in 2009 .\tNNP RB VBD TO DT NN NN VBG NNP POS JJ JJ NNS TO VB VBG DT NN NNP IN CD .\nBrazil had accused the U.S. drug maker with exorbitant pricing , and said the government planned to locally produce a cheaper generic copy of the patented drug .\tNNP VBD VBN DT NNP NN NN IN JJ NN , CC VBD DT NN VBD TO RB VB DT JJR JJ NN IN DT VBN NN .\nAbbott denied the overpricing charges , and said Brazil 's plans were illegal .\tNNP VBD DT NN NNS , CC VBD NNP POS NNS VBD JJ .\nCelebrations of the New Year 2005 were muted around the world as people remembered the tens of thousands of people killed or still suffering as a result of the Indian Ocean tsunami disaster .\tNNS IN DT NNP NNP CD VBD VBN IN DT NN IN NNS VBD DT NNS IN NNS IN NNS VBN CC RB VBG IN DT NN IN DT NNP NNP NN NN .\nThailand and Turkey canceled traditional fireworks displays and parties .\tNNP CC NNP VBD JJ NNS NNS CC NNS .\nMalaysians and Indonesians took part in prayer services .\tNNPS CC NNS VBD NN IN NN NNS .\nMost New Year 's Eve celebration 's that were held included a moment of silence for the victims as well as fund raising efforts for disaster relief .\tJJS NNP NNP POS NNP NN POS WDT VBD VBN VBD DT NN IN NN IN DT NNS RB RB IN NN VBG NNS IN NN NN .\nSome reports also suggest as many as 10,000 visitors from outside Asia are still missing in the disaster zone .\tDT NNS RB VBP RB JJ IN CD NNS IN JJ NNP VBP RB VBG IN DT NN NN .\nMany Europeans were on Christmas holiday vacations at south Asian beach resorts and nearly 3,600 Swedes , 1,000 Germans and 700 Italians are still missing .\tJJ NNS VBD IN NNP NN NNS IN JJ JJ NN NNS CC RB CD NNS , CD NNS CC CD NNS VBP RB VBG .\nU.S. officials believe about 3,000 Americans were in south Asia but it is not clear how many of them were in dangerous areas .\tNNP NNS VBP IN CD NNS VBD IN JJ NNP CC PRP VBZ RB JJ WRB JJ IN PRP VBD IN JJ NNS .\nU.S. Marines fighting in Fallujah say they have found the mutilated body of what appears to be a Caucasian woman .\tNNP NNPS VBG IN NNP VBP PRP VBP VBN DT JJ NN IN WP VBZ TO VB DT JJ NN .\nA Marine patrol found the unidentified body in a street of the violence-torn Iraqi city .\tDT NN NN VBD DT JJ NN IN DT NN IN DT JJ JJ NN .\nTwo Western women who also have Iraqi citizenship are known to have been kidnapped in Iraq .\tCD JJ NNS WP RB VBP JJ NN VBP VBN TO VB VBN VBN IN NNP .\nBoth have been missing since separate abductions last month .\tDT VBP VBN VBG IN JJ NNS JJ NN .\nThey are British aid worker Margaret Hassan and Teresa Borcz , a native of Poland .\tPRP VBP JJ NN NN NNP NNP CC NNP NNP , DT NN IN NNP .\nA spokesman for the African Union says all 38 peacekeepers who were kidnapped in Sudan 's troubled Darfur region have been released .\tDT NN IN DT NNP NNP VBZ DT CD NNS WP VBD VBN IN NNP POS JJ NNP NN VBP VBN VBN .\nThe spokesman said the hostages were released on Monday following a shootout between rival groups .\tDT NN VBD DT NNS VBD VBN IN NNP VBG DT NN IN JJ NNS .\nThe peacekeepers were abducted Sunday in the town of Tine near Sudan 's border with Chad .\tDT NNS VBD VBN NNP IN DT NN IN NNP IN NNP POS NN IN NNP .\nA dissident faction of Darfur 's rebel Justice and Equality Movement has been blamed for the kidnappings .\tDT JJ NN IN NNP POS NN NN CC NN NN VBZ VBN VBN IN DT NNS .\nThe kidnappings took place a day after two AU peacekeepers and two civilian contractors were killed in an ambush blamed on the main Darfur rebel group , the Sudan Liberation Army .\tDT NNS VBD NN DT NN IN CD NNP NNS CC CD JJ NNS VBD VBN IN DT JJ VBN IN DT JJ NNP NN NN , DT NNP NNP NNP .\nUnited Nations Secretary General Kofi Annan says attacks by rebels groups and criminal activity in Darfur have created a very dangerous situation for humanitarian workers .\tNNP NNP NNP NNP NNP NNP VBZ NNS IN NNS NNS CC JJ NN IN NNP VBP VBN DT RB JJ NN IN JJ NNS .\nHe warned the government and rebels continued violence will impede humanitarian aid .\tPRP VBD DT NN CC NNS VBD NN MD VB JJ NN .\nPresident Bush is to host Palestinian leader Mahmoud Abbas October 20 at the White House .\tNNP NNP VBZ TO VB JJ NN NNP NNP NNP CD IN DT NNP NNP .\nWhite House spokesman Scott McClellan said in a statement Friday that Mr. Bush looks forward to discussing Palestinian efforts to improve governance , revive the economy , institute security reform , and fight terror .\tNNP NNP NN NNP NNP VBD IN DT NN NNP IN NNP NNP VBZ RB TO VBG JJ NNS TO VB NN , VB DT NN , VB NN NN , CC VB NN .\nMr. McClellan said the leaders will discuss a wide range of other bilateral and regional issues .\tNNP NNP VBD DT NNS MD VB DT JJ NN IN JJ JJ CC JJ NNS .\nThe United States is making public and diplomatic appeals to Israel and the Palestinians to end the violence that has sent regional tensions soaring only weeks after Israel 's Gaza withdrawal .\tDT NNP NNPS VBZ VBG JJ CC JJ NNS TO NNP CC DT NNS TO VB DT NN WDT VBZ VBN JJ NNS VBG RB NNS IN NNP POS NNP NN .\nThe Indian cricket board has delayed the departure of its team for a test and limited-over series in Bangladesh , after a little-known militant group threatened to kill the Indian players .\tDT JJ NN NN VBZ VBN DT NN IN PRP$ NN IN DT NN CC NN NN IN NNP , IN DT JJ JJ NN VBD TO VB DT JJ NNS .\nIn a letter mailed Thursday , a group calling itself Harkat-Ul-Zihad threatened to kill the Indians to avenge the deaths of Muslims killed during communal riots in the Indian state of Gujarat in 2002 .\tIN DT NN VBN NNP , DT NN VBG PRP JJ VBN TO VB DT NNS TO VB DT NNS IN NNPS VBN IN JJ NNS IN DT JJ NN IN NN IN CD .\nIndian cricket board president Ranbir Singh Mahendra said Sunday that the team , which had been scheduled to leave Tuesday , would not leave before Wednesday after receiving an advisory from the government .\tJJ NNP NN NN NNP NNP NNP VBD NNP IN DT NN , WDT VBD VBN VBN TO VB NNP , MD RB VB IN NNP IN VBG DT NN IN DT NN .\nHe said the government is taking the threat seriously and the tour 's fate will be decided by the security delegation , which arrives in Dhaka on Monday .\tPRP VBD DT NN VBZ VBG DT NN RB CC DT NN POS NN MD VB VBN IN DT NN NN , WDT VBZ IN NNP IN NNP .\nThe Indian cricketers had been slated to depart from the eastern city of Calcutta for Bangladesh on Tuesday to play two tests and three one-dayers .\tDT JJ NNS VBD VBN VBN TO VB IN DT JJ NN IN NNP IN NNP IN NNP TO VB CD NNS CC CD NNS .\nUkrainian opposition leader Yulia Tymoshenko says she believes Viktor Yushchenko will nominate her as prime minister .\tJJ NN NN NNP NNP VBZ PRP VBZ NNP NNP MD VB PRP IN JJ NN .\nMs. Tymoshenko , a top ally of the president-elect , said in Kiev Saturday that a written agreement with Mr. Yushchenko last year promised her the post .\tNNP NNP , DT JJ NN IN DT NN , VBD IN NNP NNP IN DT JJ NN IN NNP NNP JJ NN VBD PRP$ DT NN .\nShe was a central figure in last year 's massive protests in Kiev against a flawed November presidential run-off vote .\tPRP VBD DT JJ NN IN JJ NN POS JJ NNS IN NNP IN DT JJ NNP JJ NN NN .\nElection officials had declared then-Prime Minister Viktor Yanukovych the winner of that balloting , but the Supreme Court threw out the results because of fraud and it ordered a December re-run .\tNNP NNS VBD VBN JJ NNP NNP NNP DT NN IN DT NN , CC DT NNP NNP VBD RP DT NNS IN IN NN CC PRP VBD DT NNP NN .\nSeveral other people have been named as possible candidates for prime minister , including parliamentarian Petro Poroshenko .\tJJ JJ NNS VBP VBN VBN IN JJ NNS IN JJ NN , VBG JJ NNP NNP .\nUkraine 's Supreme Court begins hearings Monday on an election challenge by Mr. Yanukovych , who is alleging fraud in the December 26 re-run vote .\tNNP POS NNP NNP VBZ NNS NNP IN DT NN NN IN NNP NNP , WP VBZ VBG NN IN DT NNP CD JJ NN .\nIn U.S. politics , there are mounting calls for Senator Hillary Clinton to end her campaign for the Democratic Party 's presidential nomination .\tIN NNP NNS , EX VBP VBG NNS IN NNP NNP NNP TO VB PRP$ NN IN DT NNP NNP POS JJ NN .\nMathematically , observers say Clinton can not catch up with rival Senator Barack Obama in pledged delegates .\tRB , NNS VBP NNP MD RB VB RP IN JJ NNP NNP NNP IN VBN NNS .\nAnd prominent Democratic Party officials fear that an acrimonious fight between Clinton and Obama could lead to depressed turnout among Democratic voters in the general election .\tCC JJ JJ NN NNS VBP IN DT JJ NN IN NNP CC NNP MD VB TO JJ NN IN JJ NNS IN DT JJ NN .\nBut Clinton finds a strong defense from women 's rights activists who do not want her to quit the race .\tCC NNP VBZ DT JJ NN IN NNS POS NNS NNS WP VBP RB VB PRP TO VB DT NN .\nVOA 's Leta Hong Fincher has more .\tNNP POS NNP NNP NNP VBZ RBR .\nWitnesses say gunmen have opened fire on the motorcade of Palestinian Prime Minister Ismail Haniyeh .\tNNS VBP NNS VBP VBN NN IN DT NN IN JJ NNP NNP NNP NNP .\nPalestinian officials say Mr. Haniyeh was not hurt in the attack Friday in Gaza .\tJJ NNS VBP NNP NNP VBD RB VBN IN DT NN NNP IN NNP .\nThe incident comes amid a power struggle between the ruling group Hamas of Prime Minister Haniyeh and the more moderate Fatah party of Palestinian President Mahmoud Abbas .\tDT NN VBZ IN DT NN NN IN DT NN NN NNP IN NNP NNP NNP CC DT JJR JJ NNP NN IN JJ NNP NNP NNP .\nThe Associated Press reported that disgruntled relatives of a Fatah activist killed in recent fighting with Hamas were responsible for the attack .\tDT NNP NNP VBD IN JJ NNS IN DT NNP NN VBN IN JJ NN IN NNP VBD JJ IN DT NN .\nThe leader of Cyprus ' Orthodox Church has warned clerics critical of an upcoming visit by Pope Benedict that they must show the pontiff respect .\tDT NN IN NNP POS NNP NNP VBZ VBN NNS JJ IN DT JJ NN IN NNP NNP IN PRP MD VB DT NN NN .\nArchbishop Chrysostomos said Tuesday that freedom of expression is allowed in the Orthodox Church , but that clerics must not offend a guest like the Pope .\tNNP NNP VBD NNP IN NN IN NN VBZ VBN IN DT NNP NNP , CC IN NNS MD RB VB DT NN IN DT NNP .\nPope Benedict XVI is scheduled to visit Cyprus in early June at the invitation of Cypriot President Dimitris Christofias .\tNNP NNP NNP VBZ VBN TO VB NNP IN JJ NNP IN DT NN IN JJ NNP NNP NNP .\nSeveral clerics have threatened to boycott the Pope 's visit .\tJJ NNS VBP VBN TO VB DT NNP POS NN .\nOne bishop told a Cypriot newspaper that the pope is a heretic and that it would be better if he did not visit .\tCD NN VBD DT JJ NN IN DT NN VBZ DT JJ CC IN PRP MD VB JJR IN PRP VBD RB VB .\nMost Greek Cypriots are followers of the Greek Orthodox Church , which split with the Roman Catholic Church in the 11th century , but the island has a small Catholic community .\tJJS JJ NNS VBP NNS IN DT JJ NNP NNP , WDT VBD IN DT NNP NNP NNP IN DT JJ NN , CC DT NN VBZ DT JJ JJ NN .\nIndia 's government plans to spend nearly $ 13 million to create a special force to protect the endangered tiger population .\tNNP POS NN VBZ TO VB RB $ CD CD TO VB DT JJ NN TO VB DT JJ NN NN .\nFinance Minister P. Chidambaram announced to parliament Friday that the money will be used to raise , arm and deploy a special tiger protection force .\tNNP NNP NNP NNP VBD TO NN NNP IN DT NN MD VB VBN TO VB , NN CC VB DT JJ NN NN NN .\nA recent survey found India 's tiger population has declined to just over 1,400 from 3,600 in 2002 .\tDT JJ NN VBD NNP POS NN NN VBZ VBN TO RB IN CD IN CD IN CD .\nChidambaram said the number should ring an alarm bell and that the tiger is under grave threat .\tNNP VBD DT NN MD VB DT NN NN CC IN DT NN VBZ IN JJ NN .\nIndia 's government last month pledged to spend $ 150 million to create new tiger reserves and shift villages and tribal communities out of tiger habitats .\tNNP POS NN JJ NN VBD TO VB $ CD CD TO VB JJ NN NNS CC NN NNS CC JJ NNS IN IN NN NNS .\nOfficials have also opened a national wildlife crime bureau to counter the poaching of tigers and other endangered animals .\tNNS VBP RB VBN DT JJ NN NN NN TO VB DT NN IN NNS CC JJ JJ NNS .\nTiger hunting is illegal worldwide .\tNNP NN VBZ JJ NN .\nPoachers often sell tiger skins and other body parts to China for use in traditional medicine .\tNNS RB VBP NN NNS CC JJ NN NNS TO NNP IN NN IN JJ NN .\nLeaders of rival Palestinian factions Fatah and Hamas have opened talks in Saudi Arabia in efforts to end a deadly power struggle and form a unity government .\tNNS IN JJ JJ NNS NNP CC NNP VBP VBN NNS IN NNP NNP IN NNS TO VB DT JJ NN NN CC NN DT NN NN .\nPalestinian President Mahmoud Abbas of Fatah , Hamas ' exiled political chief Khaled Mashaal and Palestinian Prime Minister Ismail Haniyeh are meeting in the Muslim holy city of Mecca .\tJJ NNP NNP NNP IN NNP , NNP POS JJ JJ NN NNP NNP CC JJ NNP NNP NNP NNP VBP VBG IN DT NNP JJ NN IN NNP .\nTuesday , the rival Palestinian leaders met separately with Saudi Arabia 's King Abdullah .\tNNP , DT JJ JJ NNS VBD RB IN NNP NNP POS NNP NNP .\nThe Saudi monarch says he hopes the Palestinians will reach an agreement to ' stop the bloodshed . '\tDT NNP NN VBZ PRP VBZ DT NNS MD VB DT NN TO `` VB DT NN . ``\nFighting between Hamas and Fatah erupted in December .\tVBG IN NNP CC NNP VBD IN NNP .\nMore than 90 Palestinians have been killed in street battles since then .\tJJR IN CD NNS VBP VBN VBN IN NN NNS IN RB .\nFatah and Hamas have been locked in a power struggle since parliamentary elections in the West Bank and Gaza Strip brought Hamas to power last year .\tNNP CC NNP VBP VBN VBN IN DT NN NN IN JJ NNS IN DT NNP NNP CC NNP NNP VBD NNP TO NN JJ NN .\nVenezuelan President Hugo Chavez has rejected charges he made anti-Semitic remarks last month .\tJJ NNP NNP NNP VBZ VBN NNS PRP VBD JJ NNS JJ NN .\nSpeaking to the Venezuelan parliament Friday , President Chavez said a call for an apology by the U.S.-based Simon Wiesenthal Center is part of what he called an ' imperialist campaign . '\tVBG TO DT JJ NN NNP , NNP NNP VBD DT NN IN DT NN IN DT JJ NNP NNP NNP VBZ NN IN WP PRP VBD DT `` NN NN . ``\nThe Wiesenthal Center had asked Mr. Chavez to apologize for comments he made in a Christmas Eve speech regarding , ' descendants of those who crucified Christ ' and those who ' took the world 's riches for themselves . '\tDT NNP NNP VBD VBN NNP NNP TO VB IN NNS PRP VBD IN DT NNP NNP NN VBG , `` NNS IN DT WP VBD NNP `` CC DT WP `` VBD DT NN POS NNS IN PRP . ``\nA group of Venezuelan Jewish leaders on Friday defended the president and criticized the Wiesenthal Center for speaking out without consulting the Venezuelan Jewish community .\tDT NN IN JJ JJ NNS IN NNP VBD DT NN CC VBD DT NNP NNP IN VBG RP IN VBG DT JJ JJ NN .\nThe group says Mr. Chavez did not specifically target Jews in his speech .\tDT NN VBZ NNP NNP VBD RB RB VB NNS IN PRP$ NN .\nThe group also said the world 's Jews must learn to work together .\tDT NN RB VBD DT NN POS NNPS MD VB TO VB RB .\nSyria 's ruling Baath party has endorsed political and security reforms that include relaxing the country 's long-standing state of emergency laws .\tNNP POS NN NNP NN VBZ VBN JJ CC NN NNS WDT VBP VBG DT NN POS JJ NN IN NN NNS .\nOther recommendations include allowing greater media freedoms , more political parties and provisions for addressing grievances of the country 's Kurdish community , which has long complained of discrimination .\tJJ NNS VBP VBG JJR NNS NNS , RBR JJ NNS CC NNS IN VBG NNS IN DT NN POS JJ NN , WDT VBZ RB VBN IN NN .\nThe party recommendations were broadcast Thursday on Syrian state news media .\tDT NN NNS VBD VBN NNP IN JJ NN NN NNS .\nThey are expected to be voted on by the full party congress later today , but are still a long way from being implemented by parliament .\tPRP VBP VBN TO VB VBN IN IN DT JJ NN NN RB NN , CC VBP RB DT JJ NN IN VBG VBN IN NN .\nAnalysts say it could take more than a year for the recommendations to take effect , and that they could be changed before then .\tNNS VBP PRP MD VB JJR IN DT NN IN DT NNS TO VB NN , CC IN PRP MD VB VBN IN RB .\nThe Baath Party has held power since 1963 , and comes under frequent criticism for alleged human rights violations and repressive emergency laws .\tDT NNP NNP VBZ VBN NN IN CD , CC VBZ IN JJ NN IN VBN JJ NNS NNS CC JJ NN NNS .\nChina 's official news agency says 96 miners are missing following an explosion at a coal mine in the country 's northern province of Hebei .\tNNP POS JJ NN NN VBZ CD NNS VBP VBG VBG DT NN IN DT NN NN IN DT NN POS JJ NN IN NNP .\nIn the country 's latest mine accident , Xinhua said some 123 people were underground when the blast occurred , but 27 later escaped .\tIN DT NN POS JJS NN NN , NNP VBD DT CD NNS VBD RB WRB DT NN VBD , CC CD RB VBD .\nOverall , at least 171 people have died in Chinese mine accidents in the last two weeks .\tRB , IN JJS CD NNS VBP VBN IN JJ NN NNS IN DT JJ CD NNS .\nAt a coal mine in Henan province , officials said divers would search flooded mine shafts for 42 workers missing since Friday when a nearby river overflowed .\tIN DT NN NN IN NNP NN , NNS VBD NNS MD VB VBN NN NNS IN CD NNS VBG IN NNP WRB DT JJ NN VBN .\nAttempts to pump water out of the mine have been unsuccessful .\tNNS TO VB NN IN IN DT NN VBP VBN JJ .\nChina 's mines are the deadliest in the world , with thousands of miners killed each year .\tNNP POS NNS VBP DT JJS IN DT NN , IN NNS IN NNS VBN DT NN .\nThe recent series of deadly accidents .\tDT JJ NN IN JJ NNS .\nColombian security forces say they are investigating an alleged attempt to kill President Alvaro Uribe after an explosion in a building close to an airport , shortly before the president 's arrival there .\tJJ NN NNS VBP PRP VBP VBG DT JJ NN TO VB NNP NNP NNP IN DT NN IN DT NN NN TO DT NN , RB IN DT NN POS NN RB .\nOfficials say the blast occurred Thursday in the city Neiva about 230 kilometers south of Bogota .\tNNS VBP DT NN VBD NNP IN DT NN NNP IN CD NNS RB IN NNP .\nThey found what appeared to be a homemade rocket and two grenades .\tPRP VBD WP VBD TO VB DT JJ NN CC CD NNS .\nThe officials believe the devices exploded prematurely and suspect the rebel Revolutionary Armed Forces of Colombia , FARC , may be behind the alleged plot .\tDT NNS VBP DT NNS VBD RB CC VB DT NN JJ JJ NNS IN NNP , NNP , MD VB IN DT JJ NN .\nPresident Uribe later arrived safely at the airport .\tNNP NNP RB VBD RB IN DT NN .\nWith the support of the United States , Mr. Uribe is waging a campaign against armed insurgents in Colombia .\tIN DT NN IN DT NNP NNPS , NNP NNP VBZ VBG DT NN IN JJ NNS IN NNP .\nA Kenyan minister personally intervened to help police rescue five singers who say they were being held against their will in a Nairobi nightclub .\tDT JJ NN RB VBD TO VB NNS VB CD NNS WP VBP PRP VBD VBG VBN IN PRP$ NN IN DT NNP NN .\nKenyan police say Immigration Minister Jebii Kilimo received a text message about the women on her mobile phone , and alerted police , who raided the nightclub late Tuesday and rescued the singers .\tJJ NNS VBP NNP NNP NNP NNP VBD DT NN NN IN DT NNS IN PRP$ JJ NN , CC VBD NNS , WP VBD DT NN JJ NNP CC VBD DT NNS .\nThe five Indian women claimed their travel documents had been confiscated when they arrived in Kenya .\tDT CD JJ NNS VBD PRP$ NN NNS VBD VBN VBN WRB PRP VBD IN NNP .\nThey say they were forced to sing in the club , and were locked up during the day .\tPRP VBP PRP VBD VBN TO VB IN DT NN , CC VBD VBN RP IN DT NN .\nAuthorities say Ms. Kilimo took the women to an unknown destination for safe custody .\tNNS VBP NNP NNP VBD DT NNS TO DT JJ NN IN JJ NN .\nKenyan police are investigating the incident .\tJJ NNS VBP VBG DT NN .\nPope Benedict XVI has extended greetings to Orthodox Christians as they celebrate Christmas Eve on the Julian calendar .\tNNP NNP NNP VBZ VBN NNS TO NNP NNPS IN PRP VBP NNP NNP IN DT NNP NN .\nThe pontiff made his comment Friday to thousands of pilgrims gathered in Saint Peter 's Square as Roman Catholics celebrated the feast of the Epiphany saying the light of Christianity continues to spread .\tDT NN VBD PRP$ NN NNP TO NNS IN NNS VBN IN NNP NNP POS NNP IN NNP NNPS VBD DT NN IN DT NNP VBG DT NN IN NNP VBZ TO VB .\nIn Moscow , the head of the Russian Orthodox Church , Patriarch Alexy , urged believers to mark Christmas with good deeds .\tIN NNP , DT NN IN DT JJ NNP NNP , NNP NNP , VBD NNS TO VB NNP IN JJ NNS .\nRussia 's Itar-Tass news agency says he urged the faithful to pool their efforts to allow the joy of Christmas to enter every home .\tNNP POS NNP NN NN VBZ PRP VBD DT NN TO VB PRP$ NNS TO VB DT NN IN NNP TO VB DT NN .\nRussia 's Orthodox Church did not accept the ' new ' calendar introduced by Pope Gregory XII in 1582 , and celebrates Christmas about two weeks later than most Christians .\tNNP POS NNP NNP VBD RB VB DT `` JJ `` NN VBN IN NNP NNP NNP IN CD , CC VBZ NNP IN CD NNS RB IN JJS NNS .\nRussian President Vladimir Putin attended a Christmas Eve service at a cathedral in the Siberian city of Yakutsk .\tJJ NNP NNP NNP VBD DT NNP NNP NN IN DT NN IN DT JJ NN IN NNP .\nThe head of Cuba 's parliament is offering to support Iran in its fight to develop nuclear energy within Iranian borders .\tDT NN IN NNP POS NN VBZ VBG TO VB NNP IN PRP$ NN TO VB JJ NN IN JJ NNS .\nSpeaker of parliament Ricardo Alarcon voiced solidarity Thursday in a meeting with the visiting speaker of Iran 's parliament , Gholam Ali Haddad Adel .\tNNP IN NN NNP NNP VBD NN NNP IN DT NN IN DT VBG NN IN NNP POS NN , NNP NNP NNP NNP .\nIran resumed enrichment of uranium for nuclear fuel earlier this week , despite international pressure against the move .\tNNP VBD NN IN NN IN JJ NN RBR DT NN , IN JJ NN IN DT NN .\nHaddad Adel is on a two-day visit to Cuba after spending Wednesday in Venezuela , where he thanked the government for its support on nuclear issues .\tNNP NNP VBZ IN DT JJ NN TO NNP IN VBG NNP IN NNP , WRB PRP VBD DT NN IN PRP$ NN IN JJ NNS .\nBefore leaving Cuba , he is expected to meet with Cuban Foreign Minister Felipe Perez Roque and Vice President Carlos Lage .\tIN VBG NNP , PRP VBZ VBN TO VB IN JJ NNP NNP NNP NNP NNP CC NNP NNP NNP NNP .\nVenezuela and Cuba have both opposed a move by the U.N. nuclear agency to report Iran as noncompliant with atomic energy regulations .\tNNP CC NNP VBP DT VBN DT NN IN DT NNP JJ NN TO VB NNP IN JJ IN JJ NN NNS .\nChina 's minister for Taiwan affairs arrives in Washington Tuesday for talks with U.S. officials .\tNNP POS NN IN NNP NNS VBZ IN NNP NNP IN NNS IN NNP NNS .\nA U.S. State Department spokesman says Chen Yunlin will meet with Deputy Secretary of State Richard Armitage and other officials for talks on a variety of issues between China and Taiwan , including China 's proposed anti-secessionist law .\tDT NNP NNP NNP NN VBZ NNP NNP MD VB IN NNP NNP IN NNP NNP NNP CC JJ NNS IN NNS IN DT NN IN NNS IN NNP CC NNP , VBG NNP POS VBN JJ NN .\nChina says the sole purpose of the legislation , to be considered by the country 's parliament in March , is to contain Taiwan 's separatist forces and promote peace and stability in the region .\tNNP VBZ DT JJ NN IN DT NN , TO VB VBN IN DT NN POS NN IN NNP , VBZ TO VB NNP POS JJ NNS CC VB NN CC NN IN DT NN .\nTaiwan says the measure is aimed at suppressing the island .\tNNP VBZ DT NN VBZ VBN IN VBG DT NN .\nChina considers Taiwan part of its territory and has threatened to take the island by force if it makes moves toward independence .\tNNP VBZ NNP NN IN PRP$ NN CC VBZ VBN TO VB DT NN IN NN IN PRP VBZ NNS IN NN .\nRussian news reports say a court ruled Monday that Mikhail Khodorkovsky and his business partner are guilty of embezzling property .\tJJ NN NNS VBP DT NN VBD NNP IN NNP NNP CC PRP$ NN NN VBP JJ IN VBG NN .\nThe verdict means the two have been found guilty of stealing oil from Khodorkovsky 's now-defunct company Yukos .\tDT NN VBZ DT CD VBP VBN VBN JJ IN VBG NN IN NNP POS JJ NN NNP .\nThe judge has yet to announce a sentence .\tDT NN VBZ RB TO VB DT NN .\nFormer chief executive of Yukos , Khodorkovsky - once Russia 's richest man - and his partner , Platon Lebedev , are accused of embezzling 350 million tons of oil and laundering about $ 25 billion in proceeds .\tJJ JJ NN IN NNP , NNP : RB NNP POS JJS NN : CC PRP$ NN , NNP NNP , VBP VBN IN VBG CD CD NNS IN NN CC NN IN $ CD CD IN NNS .\nBoth defendants deny the charges , saying they were framed for opposing Kremlin policies .\tDT NNS VBP DT NNS , VBG PRP VBD VBN IN VBG NNP NNS .\nKhodorkovsky is currently nearing the end of an 8-year sentence for fraud and tax evasion .\tNNP VBZ RB VBG DT NN IN DT JJ NN IN NN CC NN NN .\nThe widow of Wall Street Journal reporter Daniel Pearl has sued al-Qaida , other radical groups and one of Pakistan 's largest banks , blaming them for the torture and murder of her husband .\tDT NN IN NNP NNP NNP NN NNP NNP VBZ VBN NNP , JJ JJ NNS CC CD IN NNP POS JJS NNS , VBG PRP IN DT NN CC NN IN PRP$ NN .\nIn her lawsuit , Mariane Pearl alleges Habib Bank Limited knowingly provided financial services to charities linked to extremist groups .\tIN PRP$ NN , NNP NNP VBZ NNP NNP NNP RB VBD JJ NNS TO NNS VBN TO VB NNS .\nIt says with the bank 's backing , terrorists kidnapped , tortured and beheaded Daniel Pearl and broadcast the images .\tPRP VBZ IN DT NN POS NN , NNS VBD , VBD CC VBD NNP NNP CC VBD DT NNS .\nThe suit seeks an unspecified amount of money .\tDT NN VBZ DT JJ NN IN NN .\nDaniel Pearl was the South Asia bureau chief of the Journal when he was kidnapped in the Pakistani city of Karachi in January 2002 while seeking an interview with suspected Islamist militants .\tNNP NNP VBD DT NNP NNP NN NN IN DT NNP WRB PRP VBD VBN IN DT JJ NN IN NNP IN NNP CD IN VBG DT NN IN JJ NNP NNS .\nA videotape of Pearl 's killing was sent to the U.S. embassy in Karachi .\tDT NN IN NNP POS NN VBD VBN TO DT NNP NN IN NNP .\nBritish-born militant Omar Sheikh and three other men have been convicted of his murder .\tJJ JJ NNP NNP CC CD JJ NNS VBP VBN VBN IN PRP$ NN .\nThe Palestinian parliament has approved the government proposed by Hamas , clearing the way for the Islamic militant group to take office .\tDT JJ NN VBZ VBN DT NN VBN IN NNP , VBG DT NN IN DT NNP JJ NN TO VB NN .\nLawmakers voted on the Cabinet Tuesday , one day after Prime Minister-designate Ismail Haniyeh presented his government .\tNNS VBD IN DT NNP NNP , CD NN IN NNP NNP NNP NNP VBD PRP$ NN .\nThe approval was expected because Hamas holds a majority in the parliament .\tDT NN VBD VBN IN NNP VBZ DT NN IN DT NN .\nOn Monday , Mr. Haniyeh called on the Quartet of mediators - the United States , the European Union , Russia and the United Nations - to help reach peace in the Middle East .\tIN NNP , NNP NNP VBD IN DT NN IN NNS IN DT NNP NNPS , DT NNP NNP , NNP CC DT NNP NNPS : TO VB VB NN IN DT NNP NNP .\nBut he added his militant group will not disarm or recognize Israel .\tCC PRP VBD PRP$ JJ NN MD RB VB CC VB NNP .\nU.S. State Department spokesman Sean McCormack says Hamas must take those steps before it can take part in talks .\tNNP NNP NNP NN NNP NNP VBZ NNP MD VB DT NNS IN PRP MD VB NN IN NNS .\nThe U.S. Senate Thursday confirmed General David Petraeus as the country 's top military commander in the Middle East .\tDT NNP NNP NNP VBD NNP NNP NNP IN DT NN POS JJ JJ NN IN DT NNP NNP .\nLawmakers voted 95 - 2 to make General Petraeus the new leader of the U.S. Central Command , which oversees American forces in the Middle East , East Africa and Central Asia .\tNNS VBD CD : CD TO VB NNP NNP DT JJ NN IN DT NNP NNP NNP , WDT VBZ JJ NNS IN DT NNP NNP , NNP NNP CC NNP NNP .\nThe Senate is expected to approve the nomination of Lt. General Raymond Odierno to replace Petraeus as the top U.S. commander in Iraq .\tDT NNP VBZ VBN TO VB DT NN IN NNP NNP NNP NNP TO VB NNP IN DT JJ NNP NN IN NNP .\nGeneral Petraeus helped quell growing disapproval of the war in Iraq by providing Congress with progress reports and warning that the sudden withdrawal of U.S. troops could plunge Iraq into chaos and reverse progress that had been made .\tNNP NNP VBD VB VBG NN IN DT NN IN NNP IN VBG NNP IN NN NNS CC NN IN DT JJ NN IN NNP NNS MD VB NNP IN NN CC NN NN WDT VBD VBN VBN .\nDuring his confirmation hearings in May , General Petraeus said he expected to recommend further troop withdrawals before leaving his post in September .\tIN PRP$ NN NNS IN NNP , NNP NNP VBD PRP VBD TO VB JJ NN NNS IN VBG PRP$ NN IN NNP .\nThe recommendation would follow a 45-day assessment period over coming months .\tDT NN MD VB DT JJ NN NN IN VBG NNS .\nThe prime ministers of Ireland and Britain have presented Catholic leaders meeting in Dublin and Protestant leaders in London a blueprint aimed at breaking the deadlock on Northern Ireland power-sharing .\tDT JJ NNS IN NNP CC NNP VBP VBN JJ NNS NN IN NNP CC JJ NNS IN NNP DT NN VBN IN VBG DT NN IN NNP NNP NN .\nThe plan offered Wednesday by British Prime Minister Tony Blair and Irish Prime Minister Bertie Ahern includes a commitment by the Irish Republican Army to permit Catholic and Protestant clerics to witness the organization 's disarmament .\tDT NN VBN NNP IN JJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP VBZ DT NN IN DT JJ NNP NNP TO VB NNP CC NNP NNS TO NN DT NN POS NN .\nThe IRA proposal falls short of the detailed arms inventory sought by hard-line Protestants but opposed by the Catholic Sinn Fein party .\tDT NNP NN VBZ JJ IN DT JJ NNS NN VBN IN JJ NNPS CC VBN IN DT NNP NNP NNP NN .\nThe two prime ministers have given the Northern Ireland adversaries one week to respond in a first step toward a return to the power-sharing arrangement created under the 1998 Good Friday peace accord .\tDT CD JJ NNS VBP VBN DT NNP NNP VBZ CD NN TO VB IN DT JJ NN IN DT NN TO DT JJ NN VBN IN DT CD JJ NNP NN NN .\nThat agreement was abandoned two years ago after Protestant lawmakers accused their Sinn Fein counterparts of spying .\tDT NN VBD VBN CD NNS RB IN JJ NNS VBD PRP$ NNP NNP NNS IN VBG .\nBritish prime minister says it wants other allies - not including the United States - to send another 5,000 troops as well .\tJJ JJ NN VBZ PRP VBZ JJ NNS IN RB VBG DT NNP NNPS : TO VB DT CD NNS RB RB .\nThe White House says President Bush will return to the stricken Gulf Coast Sunday - this time for an overnight visit in Louisiana .\tDT NNP NNP VBZ NNP NNP MD VB TO DT JJ NNP NNP NNP IN DT NN IN DT JJ NN IN NNP .\nMr. Bush has received increasing criticism for the government response to the national disaster wrought by Hurricane Katrina .\tNNP NNP VBZ VBN VBG NN IN DT NN NN TO DT JJ NN VBN IN NNP NNP .\nWhite House spokesman Scott McClellan said Friday the president is still looking at ideas for a federal ' czar ' to coordinate relief efforts .\tNNP NNP NN NNP NNP VBD NNP DT NN VBZ RB VBG IN NNS IN DT JJ `` NN `` TO VB NN NNS .\nMr. Bush thanked 100 countries around the world for their offers of assistance and support , singling out Afghanistan and Sri Lanka .\tNNP NNP VBD CD NNS IN DT NN IN PRP$ NNS IN NN CC NN , VBG RP NNP CC NNP NNP .\nIn New Orleans , authorities are stepping up pressure on residents who have refused to leave the devastated city to get out now .\tIN NNP NNP , NNS VBP VBG RP NN IN NNS WP VBP VBN TO VB DT JJ NN TO VB RP RB .\nThousands of police and National Guard troops are going from house to house , trying to make everyone leave and marking homes where they find bodies .\tNNS IN NN CC NNP NNP NNS VBP VBG IN NN TO NN , VBG TO VB DT NN CC VBG NNS WRB PRP VBP NNS .\nAn estimate 5,000 to 10,000 residents remain in New Orleans , despite contaminated floodwaters and several raging fires .\tDT NN CD TO CD NNS VBP IN NNP NNP , IN VBN NNS CC JJ VBG NNS .\nA United Nations spokesman has condemned the use of violence in the run-up to the Democratic Republic of Congo 's elections .\tDT NNP NNP NN VBZ VBN DT NN IN NN IN DT NN TO DT JJ NNP IN NNP POS NNS .\nSpokesman Jean-Tobie Okala in Kinshasa says at least four people died Monday , including one National Army soldier , when heavily armed gunmen opened fire on a political rally in Congo 's North Kivu province .\tNNP NNP NNP IN NNP VBZ IN JJS CD NNS VBD NNP , VBG CD NNP NNP NN , WRB RB JJ NNS VBD NN IN DT JJ NN IN NNP POS NNP NNP NN .\nAt least six people were seriously injured in the attack .\tIN JJS CD NNS VBD RB VBN IN DT NN .\nThe identity of the gunmen is unknown .\tDT NN IN DT NNS VBZ JJ .\nSpeaking to VOA , Okala said the U.N. condemns the use of violence to , ' push people around ahead of the election . '\tVBG TO NNP , NNP VBD DT NNP VBZ DT NN IN NN TO , `` VBP NNS IN RB IN DT NN . ``\nMany opposition groups have accused the government of incumbent president Joseph Kabila of trying to gain an unfair advantage in the July 30 polls .\tJJ NN NNS VBP VBN DT NN IN JJ NN NNP NNP IN VBG TO VB DT JJ NN IN DT NNP CD NNS .\nSome international election monitors warn the government is threatening the fairness of the electoral process through unjustified arrests and intimidation .\tDT JJ NN NNS VBP DT NN VBZ VBG DT NN IN DT JJ NN IN JJ NNS CC NN .\nU.S. military officials have announced they are delaying the trial of an Australian man accused of fighting for Afghanistan 's ousted Taleban regime .\tNNP JJ NNS VBP VBN PRP VBP VBG DT NN IN DT JJ NN VBN IN VBG IN NNP POS JJ NNP NN .\nThe presiding officer , Colonel Peter Brownback , granted the delay Wednesday to allow for what he called a full and fair trial of Australian David Hicks .\tDT VBG NN , NNP NNP NNP , VBD DT NN NNP TO VB IN WP PRP VBD DT JJ CC JJ NN IN JJ NNP NNP .\nMr. Hicks has been detained at Guantanamo Bay since he was captured in late 2001 .\tNNP NNP VBZ VBN VBN IN NNP NNP IN PRP VBD VBN IN JJ CD .\nOfficials said the trial has been moved to March 15 from its originally scheduled date of January 10 .\tNNS VBD DT NN VBZ VBN VBN TO NNP CD IN PRP$ RB VBN NN IN NNP CD .\nDavid Hicks was among the first of the detainees at Guantanamo to be arraigned before a military tribunal .\tNNP NNP VBD IN DT NN IN DT NNS IN NNP TO VB VBN IN DT JJ NN .\nHe has pleaded not guilty to charges of aiding the enemy , conspiracy to commit war crimes and attempted murder while fighting alongside the Taleban .\tPRP VBZ VBN RB JJ TO NNS IN VBG DT NN , NN TO VB NN NNS CC JJ NN IN VBG IN DT NNP .\nMr. Hicks ' father , Terry , welcomed the delay , saying the defense needs more time to plan its case .\tNNP NNP POS NN , NNP , VBD DT NN , VBG DT NN VBZ JJR NN TO VB PRP$ NN .\nMajor oil companies have been reporting sharp increases in profits this week , sparking calls from some U.S. politicians for an investigation , a possible tax hike on profits , and new refinery construction to ease supply problems that boosted energy prices to record levels .\tJJ NN NNS VBP VBN VBG JJ NNS IN NNS DT NN , VBG NNS IN DT NNP NNS IN DT NN , DT JJ NN NN IN NNS , CC JJ NN NN TO VB NN NNS WDT VBD NN NNS TO NN NNS .\nThe latest third quarter profit report came from Chevron on Friday , showing a $ 3.6 billion net income , and a 12-percent hike in profit .\tDT JJS JJ NN NN NN VBD IN NNP IN NNP , VBG DT $ CD CD JJ NN , CC DT JJ NN IN NN .\nEarlier , oil giant ExxonMobil showed a 75 percent profit hike and a nearly $ 10 billion net .\tRB , NN NN NNP VBD DT CD NN NN NN CC DT RB $ CD CD NN .\nU.S. Senate Majority Leader Bill Frist , a Republican , has asked colleagues to question top oil company executives at congressional hearings .\tNNP NNP NNP NNP NNP NNP , DT NNP , VBZ VBN NNS TO VB JJ NN NN NNS IN JJ NNS .\nDemocratic Senator Hillary Clinton criticized Republicans for opposing a plan to help the poor pay heating bills , and urged oil companies to invest in new energy technologies .\tJJ NNP NNP NNP VBD NNS IN VBG DT NN TO VB DT JJ VB NN NNS , CC VBD NN NNS TO VB IN JJ NN NNS .\nEcuador 's president , Rafael Correa , is set to travel to Saudi Arabia this week for the upcoming OPEC summit , 15 years after the country left the international oil cartel .\tNNP POS NN , NNP NNP , VBZ VBN TO VB TO NNP NNP DT NN IN DT JJ NNP NN , CD NNS IN DT NN VBD DT JJ NN NN .\nOPEC countries ' heads of states will meet in the Saudi capital , Riyadh , on Saturday November 17 for the two-day summit .\tNNP NNS POS NNS IN NNS MD VB IN DT JJ NN , NNP , IN NNP NNP CD IN DT JJ NN .\nEcuador left OPEC in 1992 , but officials announced last month the country would officially rejoin the cartel at its next summit .\tNNP VBD NNP IN CD , CC NNS VBD JJ NN DT NN MD RB VB DT NN IN PRP$ JJ NN .\nEcuador produces more than 5,00,000 barrels of crude oil a day , making it the fifth largest producer in South America .\tNNP VBZ JJR IN CD NNS IN JJ NN DT NN , VBG PRP DT JJ JJS NN IN NNP NNP .\nVenezuela is the only other Latin American country in OPEC .\tNNP VBZ DT JJ JJ JJ JJ NN IN NNP .\nA Russian rights group says at least 2.5 million children in Russia are homeless .\tDT JJ NNS NN VBZ IN JJS CD CD NNS IN NNP VBP JJ .\nThe chairman of the group - known as ' The Children are Russia 's Future ' told reporters Wednesday over 30,000 children and teenagers go missing every year in Russia .\tDT NN IN DT NN : VBN IN `` DT NNS VBP NNP POS NN `` VBD NNS NNP IN CD NNS CC NNS VBP VBG DT NN IN NNP .\nHe also said over the past five years Russian authorities have uncovered 190 networks trafficking children .\tPRP RB VBD IN DT JJ CD NNS JJ NNS VBP VBN CD NNS VBG NNS .\nSaturday , March 8th is International Women 's Day , a day to celebrate the economic , political and social achievements of women .\tNNP , NNP CD VBZ NNP NNP POS NNP , DT NN TO VB DT JJ , JJ CC JJ NNS IN NNS .\nOne woman who has been an inspiration for women in Afghanistan is Massouda Jalal , who ran for the nation 's highest office in its first presidential election in October 2004 .\tCD NN WP VBZ VBN DT NN IN NNS IN NNP VBZ NNP NNP , WP VBD IN DT NN POS JJS NN IN PRP$ JJ JJ NN IN NNP CD .\nAlthough Jalal attracted enthusiastic and widespread support , Afghanistan 's current President Hamid Karzai ultimately defeated her .\tIN NNP VBD JJ CC JJ NN , NNP POS JJ NNP NNP NNP RB VBD PRP .\nNow a new documentary film called ' Frontrunner ' is re-examining Massouda Jalal 's presidential run .\tRB DT JJ NN NN VBD `` NNP `` VBZ JJ NNP NNP POS JJ NN .\nAs VOA 's George Dwyer reports the film is offering viewers some important insights , about personal courage and political transformation .\tIN NNP POS NNP NNP VBZ DT NN VBZ VBG NNS DT JJ NNS , IN JJ NN CC JJ NN .\nJim Bertel narrates .\tNNP NNP VBZ .\nThe new head of the U.S. Central Intelligence Agency has told employees to expect more changes in the agency 's organization and personnel .\tDT JJ NN IN DT NNP NNP NNP NNP VBZ VBN NNS TO VB JJR NNS IN DT NN POS NN CC NNS .\nCIA Director Porter Goss sent out an e-mail message Monday , a few hours after two top CIA officials resigned .\tNNP NNP NNP NNP VBD RP DT JJ NN NNP , DT JJ NNS IN CD JJ NNP NNS VBD .\nThe officials , Deputy Director for Operations Stephen Kappes and his deputy Michael Sulik , had reportedly clashed with aides that Mr. Goss brought with him from Congress , where he chaired the House of Representatives Intelligence Committee .\tDT NNS , NNP NNP IN NNP NNP NNP CC PRP$ NN NNP NNP , VBD RB VBN IN NNS IN NNP NNP VBD IN PRP IN NNP , WRB PRP VBD DT NNP IN NNP NNP NNP .\nTwo other top CIA officials announced their resignations last week .\tCD JJ JJ NNP NNS VBD PRP$ NNS JJ NN .\nIn his e-mail , Mr. Goss appeared to rebut charges from Democrats that he has a partisan agenda favoring President Bush .\tIN PRP$ NN , NNP NNP VBD TO VB NNS IN NNS IN PRP VBZ DT JJ NN VBG NNP NNP .\nHe told employees to ' let the facts alone speak to the policymakers . '\tPRP VBD NNS TO `` VB DT NNS RB VBP TO DT NNS . ``\nThe president named Mr. Goss to head the CIA in August , in part to reform the agency many have criticized as ill equipped to fight the war on terror .\tDT NN VBD NNP NNP TO VB DT NNP IN NNP , IN NN TO VB DT NN NN VBP VBN IN RB VBN TO VB DT NN IN NN .\nIn National Football League action Monday night , Denver 's Mike Anderson scored on a 44-yard touchdown run and Rod Smith reached a career milestone as the host Broncos rolled over the Kansas City Chiefs 30-Oct .\tIN NNP NNP NNP NN NNP NN , NNP POS NNP NNP VBD IN DT JJ NN NN CC NNP NNP VBD DT NN NN IN DT NN NNP VBD IN DT NNP NNP NNPS CD .\nSmith , who caught a touchdown , finished with seven catches for 80 yards , putting him over 10,000 receiving yards for his career .\tNNP , WP VBD DT NN , VBD IN CD NNS IN CD NNS , VBG PRP IN CD VBG NNS IN PRP$ NN .\nHe is the 24th player in league history to reach the mark and first undrafted player to do so .\tPRP VBZ DT JJ NN IN NN NN TO VB DT NN CC JJ JJ NN TO VB RB .\nDenver quarterback Jake Plummer also scored on a one-yard touchdown run and kicker Jason Elam kicked three field goals .\tNNP NN NNP NNP RB VBD IN DT JJ NN NN CC NN NNP NNP VBD CD NN NNS .\nKansas City 's lone touchdown came with two minutes to go , a pass from quarterback Trent Green to receiver Samie Parker .\tNNP NNP POS JJ NN VBD IN CD NNS TO VB , DT NN IN NN NNP NNP TO NN NNP NNP .\nIt was Green 's first touchdown pass of the season .\tPRP VBD NNP POS JJ JJ NN IN DT NN .\nIsrael 's top general has announced the military will investigate allegations that Israeli soldiers abused and photographed the bodies of Palestinian suicide bombers and those killed during Israeli military operations .\tNNP POS JJ NN VBZ VBN DT NN MD VB NNS IN JJ NNS VBD CC VBD DT NNS IN JJ NN NNS CC DT VBN IN JJ JJ NNS .\nLieutenant General Moshe Yaalon made the announcement Friday , responding to abuse charges in Israel 's largest selling newspaper , Yediot Aharonot .\tNNP NNP NNP NNP VBD DT NN NNP , VBG TO VB NNS IN NNP POS JJS NN NN , NNP NNP .\nGeneral Yaalon condemned the alleged abuses and said maintaining the army 's ethical strength is as important as sustaining its military power .\tNNP NNP VBD DT JJ NNS CC VBD VBG DT NN POS JJ NN VBZ RB JJ IN VBG PRP$ JJ NN .\nThe newspaper 's report included soldiers ' accounts of several incidents , including one in which troops put a cigarette in the mouth of a dead suicide bomber and then posed for photographs with the corpse .\tDT NN POS NN VBD NNS POS NNS IN JJ NNS , VBG CD IN WDT NNS VBD DT NN IN DT NN IN DT JJ NN NN CC RB VBD IN NNS IN DT NN .\nAnother incident details the shooting death of an apparently unarmed Palestinian man , whose remains were then strapped to the hood of a jeep and driven back to base .\tDT NN NNS DT NN NN IN DT RB JJ JJ NN , WP$ NNS VBD RB VBN TO DT NN IN DT NN CC VBN RB TO NN .\nNorth Korea released a South Korean fishing boat and its seven-man crew Tuesday , after asking South Korea for a shipment of rice , cement and heavy equipment to help it recover from recent flooding .\tNNP NNP VBD DT JJ JJ NN NN CC PRP$ JJ NN NNP , IN VBG NNP NNP IN DT NN IN NN , NN CC JJ NN TO VB PRP VB IN JJ NN .\nPyongyang announced on Monday that it would free the squid-fishing boat and its crew of four South Koreans and three Chinese seized a month ago for alleged illegal fishing .\tNNP VBD IN NNP IN PRP MD VB DT JJ NN CC PRP$ NN IN CD NNP NNS CC CD NNS VBD DT NN RB IN JJ JJ NN .\nNorth Korea called the release a ' humanitarian ' gesture .\tNNP NNP VBD DT NN DT `` JJ `` NN .\nSouth Korean media said Tuesday that freeing the ship and its crew was a step toward receiving food aid .\tJJ JJ NNS VBD NNP IN VBG DT NN CC PRP$ NN VBD DT NN IN VBG NN NN .\nThe North 's aid request came after Seoul offered last week to provide $ 8.5 million in emergency aid , including food , relief materials and first aid kits .\tDT NNP POS NN NN VBD IN NNP VBD JJ NN TO VB $ CD CD IN NN NN , VBG NN , NN NNS CC JJ NN NNS .\nThat offer did not include rice or construction equipment and supplies .\tDT NN VBD RB VB NN CC NN NN CC NNS .\nThe Unification Ministry said Tuesday that the South Korean government is reviewing the request .\tDT NNP NNP VBD NNP IN DT JJ JJ NN VBZ VBG DT NN .\nThe so-called ' peace bridge ' linking Indian and Pakistani portions of Kashmir has been reopened after parts badly damaged in last month 's earthquake were repaired .\tDT JJ `` NN NN `` VBG JJ CC JJ NNS IN NNP VBZ VBN VBN IN NNS RB VBN IN JJ NN POS NN VBD VBN .\nAn Indian army spokesman says the reopening has enabled faster delivery of relief supplies to villages on the Pakistani side that were flattened by the earthquake .\tDT JJ NN NN VBZ DT NN VBZ VBN JJR NN IN NN NNS TO NNS IN DT JJ NN WDT VBD VBN IN DT NN .\nHe said the final stretch of the road -- between the town of Uri in India and the Kaman Post crossing point on the military Line of Control -- was cleared Thursday .\tPRP VBD DT JJ NN IN DT NN : IN DT NN IN NNP IN NNP CC DT NNP NNP VBG NN IN DT JJ NN IN NNP : VBD VBN NNP .\nLast month , India and Pakistan decided to open five check points along the de~facto border , including at Kaman Post , to hasten relief efforts for quake victims .\tJJ NN , NNP CC NNP VBD TO VB CD NN NNS IN DT JJ NN , VBG IN NNP NNP , TO VB NN NNS IN NN NNS .\nAs part of an ongoing peace process between the two arch-rivals , the highway was re-opened six months ago after nearly 60 years to relaunch a bus service connecting the two Kashmiri capitals , Srinagar and Muzaffarabad .\tIN NN IN DT JJ NN NN IN DT CD NNS , DT NN VBD JJ CD NNS RB IN RB CD NNS TO VB DT NN NN VBG DT CD JJ NNS , NNP CC NNP .\nIranian President Mahmoud Ahmadinejad has called for expansion of ties between his country and Iraq following a meeting with Iraqi Prime Minister Nouri al-Maliki .\tJJ NNP NNP NNP VBZ VBN IN NN IN NNS IN PRP$ NN CC NNP VBG DT NN IN JJ NNP NNP NNP NNP .\nIran 's state news agency ( IRNA ) reports that President Ahmadinejad said stronger relations between the two nations will help Iraq 's development and stability .\tNNP POS NN NN NN LRB NNP RRB VBZ IN NNP NNP VBD JJR NNS IN DT CD NNS MD VB NNP POS NN CC NN .\nThe two leaders met late Sunday as part of Mr. Maliki 's state visit to Iran , his third since he became prime minister .\tDT CD NNS VBD RB NNP IN NN IN NNP NNP POS NN NN TO NNP , PRP$ JJ IN PRP VBD JJ NN .\nPresident Ahmadinejad made a landmark visit to Iraq in March .\tNNP NNP VBD DT JJ NN TO NNP IN NNP .\nEarlier today , the Iraqi prime minister met with Iranian Foreign Minister Manouchehr Mottaki and he assured Tehran that a proposed U.S.-Iraq security agreement will not harm Iran .\tRBR NN , DT JJ JJ NN VBD IN JJ NNP NNP NNP NNP CC PRP VBD NNP IN DT VBN JJ NN NN MD RB VB NNP .\nThe comment comes as U.S. and Iraqi officials discuss a security deal that would allow American forces to remain in Iraq beyond December 31st , when their U.N. mandate expires .\tDT NN VBZ IN NNP CC JJ NNS VB DT NN NN WDT MD VB JJ NNS TO VB IN NNP IN NNP CD , WRB PRP$ NNP NN VBZ .\nIran opposes such an agreement .\tNNP VBZ JJ DT NN .\nThe sister of a Buddhist monk imprisoned by Burma 's military rulers for pro-democracy activities says her brother is on a hunger strike .\tDT NN IN DT NNP NN VBN IN NNP POS JJ NNS IN JJ NNS VBZ PRP$ NN VBZ IN DT NN NN .\nKhin Thu Htay tells VOA Burmese service that monk Ashin Gambira began the hunger strike 10 days ago after prison authorities blocked him from seeing her and other family members .\tNNP NNP NNP VBZ NNP JJ NN WDT VBD NNP NNP VBD DT NN NN CD NNS RB IN NN NNS VBD PRP IN VBG PRP$ CC JJ NN NNS .\nShe says the family tried to visit him at a prison in the central region of Mandalay .\tPRP VBZ DT NN VBD TO VB PRP IN DT NN IN DT JJ NN IN NNP .\nThe sister says Burmese authorities told her that several days later , Gambira was transferred to another prison Hkamti in a remote part of the northwestern Sagaing region .\tDT NN VBZ JJ NNS VBD PRP IN JJ NNS RB , NNP VBD VBN TO DT NN NNP IN DT JJ NN IN DT JJ NN NN .\nCourts in military-run Burma sentenced the monk last year to 68 years in prison for leading pro-democracy protests in 2007 .\tNNS IN JJ NNP VBD DT NN JJ NN TO CD NNS IN NN IN VBG JJ NNS IN CD .\nBurmese citizens began weeks of mass protests against the military in June 2007 before authorities crushed the demonstrations .\tJJ NNS VBD NNS IN JJ NNS IN DT JJ IN NNP CD IN NNS VBN DT NNS .\nThe United Nations says at least 31 people were killed and thousands more were detained in the crackdown .\tDT NNP NNP VBZ IN JJS CD NNS VBD VBN CC NNS JJR VBD VBN IN DT NN .\nThe leader of Venezuela 's ruling party is claiming victory in Sunday 's parliamentary elections .\tDT NN IN NNP POS NN NN VBZ VBG NN IN NNP POS JJ NNS .\nWillian Lara says President Hugo Chavez 's Fifth Republic Movement won 114 seats in the 167-seat National Assembly .\tNNP NNP VBZ NNP NNP NNP POS NNP NNP NNP VBD CD NNS IN DT JJ NNP NNP .\nMr. Lara also says the rest of the Assembly 's contested seats will go to parties supportive of Mr. Chavez .\tNNP NNP RB VBZ DT NN IN DT NNP POS VBN NNS MD VB TO NNS JJ IN NNP NNP .\nOfficial results have yet to be announced .\tJJ NNS VBP RB TO VB VBN .\nVenezuela 's election chief estimates voter turnout at just 25 percent .\tNNP POS NN NN VBZ NN NN IN RB CD NN .\nMost opposition parties boycotted the election , accusing electoral officials of manipulating electronic voting machines and favoring the president .\tJJS NN NNS VBD DT NN , VBG JJ NNS IN VBG JJ NN NNS CC VBG DT NN .\nMr. Chavez is accusing the United States of orchestrating the boycott .\tNNP NNP VBZ VBG DT NNP NNPS IN VBG DT NN .\nWashington denies the charges .\tNNP VBZ DT NNS .\nMeanwhile , officials say an explosion that damaged an oil pipeline in western Venezuelan state of Zulia late Saturday was an attempt to disrupt the elections .\tRB , NNS VBP DT NN WDT VBD DT NN NN IN JJ JJ NN IN NNP JJ NNP VBD DT NN TO VB DT NNS .\nPakistani President Pervez Musharraf has canceled a scheduled trip to China for the opening of the Olympic games .\tJJ NNP NNP NNP VBZ VBN DT JJ NN TO NNP IN DT NN IN DT NNP NNS .\nPakistan 's Foreign Ministry spokesman Mohammad Sadiq confirmed the cancellation Wednesday , but did not give an explanation .\tNNP POS NNP NNP NN NNP NNP VBD DT NN NNP , CC VBD RB VB DT NN .\nPresident Musharraf had planned to attend the opening ceremony in Beijing and meet with Chinese leaders .\tNNP NNP VBD VBN TO VB DT NN NN IN NNP CC VB IN JJ NNS .\nThe change in plans comes as leaders of Pakistan 's ruling coalition met to discuss a number of issues , including the possible impeachment of Mr. Musharraf .\tDT NN IN NNS VBZ IN NNS IN NNP POS NN NN VBD TO VB DT NN IN NNS , VBG DT JJ NN IN NNP NNP .\nPakistani People 's Party leader Asif Ali Zardari and former Prime Minister Nawaz Sharif spoke Tuesday , and also discussed restoring the country 's judiciary .\tJJ NNP POS NNP NN NNP NNP NNP CC JJ NNP NNP NNP NNP VBD NNP , CC RB VBD VBG DT NN POS NN .\nThey are scheduled to meet again today .\tPRP VBP VBN TO VB RB NN .\nMr. Musharraf declared a state of emergency last November and purged the Supreme Court , in order to halt any legal challenges to his presidency .\tNNP NNP VBD DT NN IN NN JJ NNP CC VBD DT NNP NNP , IN NN TO VB DT JJ NNS TO PRP$ NN .\nNepal 's government says it has detained 43 people , top political leaders and other activists , for their ' own personal safety ' as well as to maintain law and order .\tNNP POS NN VBZ PRP VBZ VBN CD NNS , JJ JJ NNS CC JJ NNS , IN PRP$ `` JJ JJ NN `` RB RB IN TO VB NN CC NN .\nA Home Ministry statement Wednesday says 25 of the detainees are being held in government centers and the rest , under house arrest .\tDT NNP NNP NN NNP VBZ CD IN DT NNS VBP VBG VBN IN NN NNS CC DT NN , IN NN NN .\nTuesday , nine United Nations human rights investigators called on Nepal 's King Gyanendra to restore democracy in the country .\tNNP , CD NNP NNPS JJ NNS NNS VBN IN NNP POS NNP NNP TO VB NN IN DT NN .\nThe King dissolved the constitutional government , seized power , and declared a nationwide state of emergency on February first .\tDT NNP VBD DT JJ NN , VBD NN , CC VBD DT JJ NN IN NN IN NNP RB .\nThe monarch and his hand-picked government curtailed most civil rights , including criticism of security forces , and banned protest rallies .\tDT NN CC PRP$ JJ NN VBD RBS JJ NNS , VBG NN IN NN NNS , CC VBD NN NNS .\nNepal 's human rights groups say they plan to defy the ban by holding a protest demonstration on Thursday .\tNNP POS JJ NNS NNS VBP PRP VBP TO VB DT NN IN VBG DT NN NN IN NNP .\nA Jordanian military court has sentenced to jail 10 Islamic militants for plotting attacks on U.S. forces in Jordan and Iraq .\tDT JJ JJ NN VBZ VBN TO NN CD NNP NNS IN VBG NNS IN NNP NNS IN NNP CC NNP .\nThe court handed out prison terms of two to five years .\tDT NN VBD RP NN NNS IN CD CC CD NNS .\nAt least one of those found guilty has been linked to al-Qaida in Iraq leader Abu Musab al-Zarqawi .\tIN JJS CD IN DT VBN NN VBZ VBN VBN TO NNP IN NNP NN NNP NNP NNP .\nTen other suspects , including a Syrian national , were found not-guilty .\tCD JJ NNS , IN DT JJ NN , VBD VBN JJ .\nThe 17 were rounded up in 2005 .\tDT CD VBD VBN RP IN CD .\nThey faced several charges , including plotting to attack U.S. troops who were training Iraqi forces in Jordan at the time .\tPRP VBD JJ NNS , VBG VBG TO VB NNP NNS WP VBD VBG JJ NNS IN NNP IN DT NN .\nThey were also accused of plotting activity to undermine Jordan 's relations with another country .\tPRP VBD RB VBN IN VBG NN TO VB NNP POS NNS IN DT NN .\nUp to 140 people are feared dead in the Democratic Republic of Congo , after a crowded river boat overturned .\tIN TO CD NNS VBP VBN JJ IN DT JJ NNP IN NNP , IN DT JJ NN NN VBD .\nOfficials said Thursday that the accident occurred on the Congo River in the western province of Bandundu .\tNNS VBD NNP IN DT NN VBD IN DT NNP NNP IN DT JJ NN IN NNP .\nInformation Minister Lambert Mende said at least 80 people are confirmed dead , while local officials put the death toll higher .\tNNP NNP NNP NNP VBD IN JJS CD NNS VBP VBN JJ , IN JJ NNS VBD DT NN NN JJR .\nAbout 200 people were believed to be on the boat , which was also carrying merchandise from Bandundu to the capital , Kinshasa .\tRB CD NNS VBD VBN TO VB IN DT NN , WDT VBD RB VBG NN IN NNP TO DT NN , NNP .\nOfficials say the boat was overloaded and unable to navigate through rough waters .\tNNS VBP DT NN VBD VBN CC JJ TO VB IN JJ NNS .\nMende said rescuers are looking for more survivors .\tNNP VBD NNS VBP VBG IN JJR NNS .\nFatal boat accidents are common in the DRC , where a lack of paved roads and the high cost of air travel forces many people to travel by boat , even if they do not know how to swim .\tJJ NN NNS VBP JJ IN DT NNP , WRB DT NN IN JJ NNS CC DT JJ NN IN NN NN NNS JJ NNS TO VB IN NN , RB IN PRP VBP RB VB WRB TO VB .\nThe river vessels are often overcrowded and poorly maintained .\tDT NN NNS VBP RB JJ CC RB VBN .\nA slimy Justin Timberlake emerged victorious at the 20th annual Nickelodeon Kids ' Choice Awards .\tDT JJ NNP NNP VBD JJ IN DT JJ JJ NNP NNP POS NNP NNPS .\nMaking good on his promise to make this year 's edition the messiest ever , the singer - who also hosted the show - was both dispenser and recipient of the signature green goo .\tVBG JJ IN PRP$ NN TO VB DT NN POS NN DT JJS RB , DT NN : WP RB VBD DT NN : VBD DT NN CC NN IN DT NN JJ NN .\nHe took honors for Best Male Singer .\tPRP VBD NNS IN NNP NNP NNP .\nOther winners included Adam Sandler as favorite male movie star ; Dakota Fanning as favorite female movie star , and Ben Stiller , who took the evening 's top honor , the Wannabe Award .\tJJ NNS VBD NNP NNP IN JJ NN NN NN ; NNP NNP IN JJ JJ NN NN , CC NNP NNP , WP VBD DT NN POS JJ NN , DT NNP NNP .\nIt signifies the celebrity the youthful voters most want to emulate .\tPRP VBZ DT NN DT JJ NNS RBS VBP TO VB .\nNickelodeon says the lighthearted Kids ' Choice Awards last year received 25 million online votes .\tNNP VBZ DT JJ NNS POS NN NNS JJ NN VBD CD CD JJ NNS .\nThe only African-American member of the United States Senate has begun a two-week tour of Africa .\tDT JJ JJ NN IN DT NNP NNPS NNP VBZ VBN DT JJ NN IN NNP .\nOn Sunday , Senator Barack Obama visited the South African island where Nelson Mandela was imprisioned during his long fight against apartheid .\tIN NNP , NNP NNP NNP VBD DT JJ JJ NN WRB NNP NNP VBD VBN IN PRP$ JJ NN IN NN .\nObama said the visit to Robben Island made him realize that everyday worries in the U.S. are ' fairly trivial ' compared to the struggle Mandela and other inmates went through .\tNNP VBD DT NN TO NNP NNP VBD PRP VB IN JJ NNS IN DT NNP VBP `` RB JJ `` VBN TO DT NN NNP CC JJ NNS VBD IN .\nMonday , Obama met with another anti-apartheid hero , South African archbishop Desmond Tutu , in Cape Town .\tNNP , NNP VBD IN DT JJ NN , NNP NNP NN NNP NNP , IN NNP NNP .\nObama is due to visit his father 's home country of Kenya as well as Congo and Chad during the trip .\tNNP VBZ JJ TO VB PRP$ NN POS NN NN IN NNP RB RB IN NNP CC NNP IN DT NN .\nHe told reporters today that he will probably get an HIV test while in Kenya , in order to promote AIDS-prevention awareness .\tPRP VBD NNS NN IN PRP MD RB VB DT NNP NN IN IN NNP , IN NN TO VB JJ NN .\nObama was elected to the U.S. Senate in November 2004 , representing the U.S. state of Illinois .\tNNP VBD VBN TO DT NNP NNP IN NNP CD , VBG DT NNP NN IN NNP .\nU.S. Energy Secretary Samuel Bodman says the United States will offer incentives to spur companies to construct six nuclear power plants .\tNNP NNP NNP NNP NNP VBZ DT NNP NNPS MD VB NNS TO VB NNS TO VB CD JJ NN NNS .\nBodman Friday announced a plan that will provide risk insurance coverage against bureaucratic and legal issues that make construction of the plants more expensive .\tNNP NNP VBD DT NN WDT MD VB NN NN NN IN JJ CC JJ NNS WDT VBP NN IN DT NNS RBR JJ .\nThe plan would provide up to $ 500 million in coverage for the first two plants built , and up to $ 250 million more for the next four plants .\tDT NN MD VB RP TO $ CD CD IN NN IN DT JJ CD NNS VBN , CC RB TO $ CD CD JJR IN DT JJ CD NNS .\nThe United States has 103 nuclear power plants in 31 states .\tDT NNP NNPS VBZ CD JJ NN NNS IN CD NNS .\nBut a new plant has not been built since 1973 , and a partial meltdown at Pennsylvania 's Three Mile Island plant in 1979 ended plans to construct new ones .\tCC DT JJ NN VBZ RB VBN VBN IN CD , CC DT JJ NN IN NNP POS CD NNP NNP NN IN CD VBD NNS TO VB JJ NNS .\nAustralian Prime Minister John Howard is brushing off criticism over a deal his government has reached with China that opens the door to a potential free trade agreement between the two nations .\tJJ NNP NNP NNP NNP VBZ VBG RP NN IN DT NN PRP$ NN VBZ VBN IN NNP WDT VBZ DT NN TO DT JJ JJ NN NN IN DT CD NNS .\nCanberra granted Beijing market economy status on Monday as part of the agreement to begin free trade talks .\tNNP VBD NNP NN NN NN IN NNP IN NN IN DT NN TO VB JJ NN NNS .\nBut a spokesman for Australia 's opposition Labor Party says Mr. Howard gave away Australia 's strongest bargaining chip in the talks .\tCC DT NN IN NNP POS NN NNP NNP VBZ NNP NNP VBD RP NNP POS JJS NN NN IN DT NNS .\nMr. Howard says the Labor Party is simply complaining because it has no ideas of its own to promote .\tNNP NNP VBZ DT NNP NNP VBZ RB VBG IN PRP VBZ DT NNS IN PRP$ JJ TO VB .\nThe prime minister says a new deal will not be reached until sometime next year , adding that there was goodwill on both sides , but ' not that good . '\tDT JJ NN VBZ DT JJ NN MD RB VB VBN IN RB JJ NN , VBG IN EX VBD NN IN DT NNS , CC `` RB IN JJ . ``\nHurricane Paula has strengthened as it threatens the Gulf Coast of Mexico and parts of Central America , forcing officials to call for the evacuation of many coastal areas .\tNNP NNP VBZ VBN IN PRP VBZ DT NNP NNP IN NNP CC NNS IN NNP NNP , VBG NNS TO VB IN DT NN IN JJ JJ NNS .\nAt last report ( 1745 UTC ) , forecasters at the U.S. National Hurricane Center said Paula 's maximum sustained winds had increased from 120 kilometers to 160 kilometers an hour .\tIN JJ NN LRB CD NNP RRB , NNS IN DT NNP NNP NNP NNP VBD NNP POS NN VBD NNS VBD VBN IN CD NNS TO CD NNS DT NN .\nFurther strengthening is expected .\tJJ NN VBZ VBN .\nThe storm is about 220 kilometers southeast of the Mexican resort island of Cozumel , where hurricane warnings are in effect .\tDT NN VBZ IN CD NNS NN IN DT JJ NN NN IN NNP , WRB NN NNS VBP IN NN .\nIt is expected to approach the east coast of the Yucatan Peninsula late Tuesday and Wednesday .\tPRP VBZ VBN TO VB DT JJ NN IN DT NNP NNP JJ NNP CC NNP .\nHurricane Paula could dump eight to 15 centimeters of rain over western and central Cuba , the Yucatan Peninsula and northern Belize , with some isolated areas receiving more than 25 centimeters .\tNNP NNP MD VB CD TO CD NNS IN NN IN JJ CC JJ NNP , DT NNP NNP CC JJ NNP , IN DT JJ NNS VBG JJR IN CD NNS .\nForecasters say the heavy rains could trigger flash flooding and mudslides in the region , especially in mountainous parts of Nicaragua and Honduras .\tNNS VBP DT JJ NNS MD VB NN NN CC NNS IN DT NN , RB IN JJ NNS IN NNP CC NNP .\nChina has raised its estimate for economic growth in 2005 to 9.8 percent .\tNNP VBZ VBN PRP$ NN IN JJ NN IN CD TO CD NN .\nThat is an increase of 0.4 percent from the government 's previous figure .\tDT VBZ DT NN IN CD NN IN DT NN POS JJ NN .\nThe new number was released Sunday by Ou Xinqian , vice minister of China 's National Development and Reform Commission .\tDT JJ NN VBD VBN NNP IN NNP NNP , NN NN IN NNP POS NNP NNP CC NNP NNP .\nThe official Xinhua News Agency says the Commission adjusted its growth estimate because recent data shows China 's economy in 2004 was much bigger than previously thought .\tDT JJ NNP NNP NNP VBZ DT NNP VBD PRP$ NN NN IN JJ NNS VBZ NNP POS NN IN CD VBD RB JJR IN RB VBN .\nLast month , the government raised its national output figure for 2004 by 16.8 percent over the original estimate .\tJJ NN , DT NN VBD PRP$ JJ NN NN IN CD IN CD NN IN DT JJ NN .\nOfficials said service industries accounted for most of the revision .\tNNS VBD NN NNS VBD IN JJS IN DT NN .\nThe new growth estimate from Mr. Ou is the latest in a series of economic data released by Chinese officials .\tDT JJ NN NN IN NNP NNP VBZ DT JJS IN DT NN IN JJ NNS VBN IN JJ NNS .\nChina 's National Bureau of Statistics is expected to announce the final figures for 2005 in the coming weeks .\tNNP POS NNP NNP IN NNPS VBZ VBN TO VB DT JJ NNS IN CD IN DT JJ NNS .\nPakistani authorities say they have arrested at least 27 suspected Taleban insurgents after a raid on a private hospital in southwestern Baluchistan province .\tJJ NNS VBP PRP VBP VBN IN JJS CD JJ NNP NNS IN DT NN IN DT JJ NN IN JJ NNP NN .\nLocal officials say initial investigation showed that the militants were brought from neighboring Afghanistan to the hospital in the provincial capital , Quetta .\tJJ NNS VBP JJ NN VBD IN DT NNS VBD VBN IN VBG NNP TO DT NN IN DT JJ NN , NNP .\nThey say several Taleban were being treated for wounds sustained in fighting in southern Afghanistan .\tPRP VBP JJ NNP VBD VBG VBN IN NNS VBN IN VBG IN JJ NNP .\nLast month , authorities in the restive Pakistani province arrested more than 200 Afghan nationals suspected of having links with Taleban militants .\tJJ NN , NNS IN DT JJ JJ NN VBN RBR IN CD JJ NNS VBN IN VBG NNS IN NNP NNS .\nAmong those caught was a former commander of Taleban forces in southern Afghanistan .\tIN DT VBN VBD DT JJ NN IN NNP NNS IN JJ NNP .\nThe raids follow months of pressure from the Afghan government , the U.S.-led coalition and NATO forces in neighboring Afghanistan , who want Islamabad to act more forcefully against the Taleban remnants hiding in Pakistan .\tDT NNS VBP NNS IN NN IN DT JJ NN , DT JJ NN CC NNP NNS IN VBG NNP , WP VBP NNP TO VB JJR RB IN DT NNP NNS VBG IN NNP .\nIran says it will sign a deal next week with Russia under which Moscow will provide fuel to Iran 's Bushehr nuclear power plant .\tNNP VBZ PRP MD VB DT NN JJ NN IN NNP IN WDT NNP MD VB NN TO NNP POS NNP JJ NN NN .\nIranian state television quotes a deputy head of Iran 's Atomic Energy Organization , Asadollah Sabouri , as saying a pact , which obligates Tehran to return spent nuclear fuel to Russia , will be signed February 26 .\tJJ NN NN VBZ DT NN NN IN NNP POS NNP NNP NNP , NNP NNP , IN VBG DT NN , WDT VBZ NNP TO VB VBN JJ NN TO NNP , MD VB VBN NNP CD .\nUnder the deal , Mr. Sabouri says Russia will provide the Bushehr plant with nuclear fuel for the next 10 years .\tIN DT NN , NNP NNP VBZ NNP MD VB DT NN NN IN JJ NN IN DT JJ CD NNS .\nMoscow and Tehran have been locked in negotiations over the final disposition of spent fuel .\tNNP CC NNP VBP VBN VBN IN NNS IN DT JJ NN IN JJ NN .\nRussia had refused further assistance in developing the Bushehr plant until Tehran agreed to return the spent fuel , which can be used in the development of nuclear weapons .\tNNP VBD VBN JJ NN IN VBG DT NNP NN IN NNP VBD TO VB DT JJ NN , WDT MD VB VBN IN DT NN IN JJ NNS .\nThe United States says it suspects Iran is trying to develop such weaponry , despite Tehran 's assertions its nuclear intentions are peaceful .\tDT NNP NNPS VBZ PRP VBZ NNP VBZ VBG TO VB JJ NN , IN NNP POS NNS PRP$ JJ NNS VBP JJ .\nA Chilean appeals court has ruled former dictator Augusto Pinochet can not avoid prosecution for alleged human rights violations on health grounds .\tDT JJ NNS NN VBZ VBN JJ NN NNP NNP MD RB VB NN IN VBN JJ NNS NNS IN NN NNS .\nIn a unanimous ruling , the judges concluded that recent medical exams do not disqualify Pinochet , who is 90 years old , from standing trial .\tIN DT JJ NN , DT NNS VBD IN JJ JJ NNS VBP RB VB NNP , WP VBZ CD NNS JJ , IN VBG NN .\nThe ruling clears the way for Pinochet to be brought to trial in connection with the murder of leftwing dissidents during his 17-year military rule from 1973 to 1990 .\tDT NN VBZ DT NN IN NNP TO VB VBN TO NN IN NN IN DT NN IN NN NNS IN PRP$ JJ JJ NN IN CD TO CD .\nThe specific case relates to a campaign , known as ' Operation Colombo , ' in which 119 dissidents disappeared in 1975 and were believed killed .\tDT JJ NN VBZ TO DT NN , VBN IN `` NNP NNP , `` IN WDT CD NNS VBN IN CD CC VBD VBN VBN .\nIt is one of several human rights cases brought against the retired general .\tPRP VBZ CD IN JJ JJ NNS NNS VBN IN DT JJ NN .\nHe and members of his family also have been charged with tax evasion and fraud stemming from his years in power .\tPRP CC NNS IN PRP$ NN RB VBP VBN VBN IN NN NN CC NN VBG IN PRP$ NNS IN NN .\nConservative Muslim candidates have swept elections in Saudi Arabia 's first nationwide municipal vote , giving rise to complaints that they had an unfair advantage because of religious endorsements .\tJJ NNP NNS VBP VBN NNS IN NNP NNP POS JJ JJ JJ NN , VBG NN TO NNS IN PRP VBD DT JJ NN IN IN JJ NNS .\nThursday 's voting in the western part of the kingdom completed the three-phase vote , which began in February .\tNNP POS NN IN DT JJ NN IN DT NN VBD DT JJ NN , WDT VBD IN NNP .\nWestern region winners were announced Saturday .\tJJ NN NNS VBD VBN NNP .\nIn the holy city of Medina , as well as in the ultra-conservative town of Buraydah , cleric-supported candidates swept the vote .\tIN DT JJ NN IN NNP , RB RB IN IN DT JJ NN IN NNP , JJ NNS VBD DT NN .\nIn Jeddah , long considered one of the country 's most liberal cities , voters also chose conservatives .\tIN NNP , RB VBN CD IN DT NN POS RBS JJ NNS , NNS RB VBD NNS .\nSaudi men over age 21 voted for half the members of the kingdom 's municipal councils .\tJJ NNS IN NN CD VBD IN PDT DT NNS IN DT NN POS JJ NNS .\nThe government will appoint the remaining half .\tDT NN MD VB DT VBG NN .\nIndia 's Tata Motors has begun removing equipment from its ' cheapest car ' factory in eastern India , after no resolution in a land dispute .\tNNP POS NNP NNP VBZ VBN VBG NN IN PRP$ `` JJS NN `` NN IN JJ NNP , IN DT NN IN DT NN NN .\nA Tata spokesman would not comment Wednesday , but there are reports that the equipment is being moved from the Singur plant in West Bengal state to Tata 's existing facility in the northern state of Uttarakhand .\tDT NNP NN MD RB VB NNP , CC EX VBP NNS IN DT NN VBZ VBG VBN IN DT NNP NN IN NNP NNP NN TO NNP POS VBG NN IN DT JJ NN IN NNP .\nThe Tata plant was set to manufacture what is being called the world 's cheapest car - the ' Nano . '\tDT NNP NN VBD VBN TO VB WP VBZ VBG VBN DT NN POS JJS NN IN DT `` NNP . ``\nWork has been shut down for several weeks after deadly protests by the West Bengal 's opposition party , which says that local villagers were unfairly compensated for their land , that was used to build the factory .\tNN VBZ VBN VBN RP IN JJ NNS IN JJ NNS IN DT NNP NNP POS NN NN , WDT VBZ IN JJ NNS VBD RB VBN IN PRP$ NN , WDT VBD VBN TO VB DT NN .\nEfforts to resolve the standoff have failed , with protesters recently rejecting a government offer to return 30 hectares of land .\tNNS TO VB DT NN VBP VBN , IN NNS RB VBG DT NN NN TO VB CD NNS IN NN .\nTata officials have said they are considering moving the plant out of West Bengal .\tNNP NNS VBP VBN PRP VBP VBG VBG DT NN IN IN NNP NNP .\nZimbabwe has condemned opposition activists for stamping protest messages on the country 's bank notes .\tNNP VBZ VBN NN NNS IN VBG NN NNS IN DT NN POS NN NNS .\nDeputy Finance Minister David Chapfika warned Wednesday the government would punish those behind the vandalism .\tNNP NNP NNP NNP NNP VBD NNP DT NN MD VB DT IN DT NN .\nNo group has claimed responsibility for printing the words ' enough ' and ' get up , stand up ' on some bank notes found in circulation in Zimbabwe .\tDT NN VBZ VBN NN IN VBG DT NNS `` RB `` CC `` VB RP , VB RP `` IN DT NN NNS VBN IN NN IN NNP .\nLast year , officials blamed an underground rights group known as ' Enough ' ( Zvakwana ) for a similar campaign in which messages were printed on condom packages .\tJJ NN , NNS VBD DT JJ NNS NN VBN IN `` NNP `` LRB NNP RRB IN DT JJ NN IN WDT NNS VBD VBN IN NN NNS .\nOpposition groups say the government of President Robert Mugabe has launched a new crackdown ahead of key parliamentary elections due later this year .\tNN NNS VBP DT NN IN NNP NNP NNP VBZ VBN DT JJ NN RB IN JJ JJ NNS JJ RB DT NN .\nTuvalu consists of a densely populated , scattered group of nine coral atolls with poor soil .\tNNP VBZ IN DT RB JJ , JJ NN IN CD JJ NNS IN JJ NN .\nThe country has no known mineral resources and few exports and is almost entirely dependent upon imported food and fuel .\tDT NN VBZ DT VBN NN NNS CC JJ NNS CC VBZ RB RB JJ IN VBN NN CC NN .\nSubsistence farming and fishing are the primary economic activities .\tNN NN CC NN VBP DT JJ JJ NNS .\nFewer than 1,000 tourists , on average , visit Tuvalu annually .\tJJR IN CD NNS , IN NN , NN NNP RB .\nJob opportunities are scarce and public sector workers make up most of those employed .\tNNP NNS VBP JJ CC JJ NN NNS VBP RP JJS IN DT VBN .\nAbout 15 % of the adult male population work as seamen on merchant ships abroad , and remittances are a vital source of income contributing around $ 2 million in 2007 .\tRB CD NN IN DT NN JJ NN NN IN NNS IN NN NNS RB , CC NNS VBP DT JJ NN IN NN VBG IN $ CD CD IN CD .\nSubstantial income is received annually from the Tuvalu Trust Fund ( TTF ) an international trust fund established in 1987 by Australia , NZ , and the UK and supported also by Japan and South Korea .\tJJ NN VBZ VBN RB IN DT NNP NNP NNP LRB NNP RRB DT JJ NN NN VBN IN CD IN NNP , NNP , CC DT NNP CC VBN RB IN NNP CC NNP NNP .\nThanks to wise investments and conservative withdrawals , this fund grew from an initial $ 17 million to an estimated value of $ 77 million in 2006 .\tNNS TO VB NNS CC JJ NNS , DT NN VBD IN DT JJ $ CD CD TO DT JJ NN IN $ CD CD IN CD .\nThe TTF contributed nearly $ 9 million towards the government budget in 2006 and is an important cushion for meeting shortfalls in the government 's budget .\tDT NNP VBD RB $ CD CD IN DT NN NN IN CD CC VBZ DT JJ NN IN NN NNS IN DT NN POS NN .\nThe US Government is also a major revenue source for Tuvalu because of payments from a 1988 treaty on fisheries .\tDT NNP NN VBZ RB DT JJ NN NN IN NNP IN IN NNS IN DT CD NN IN NNS .\nIn an effort to ensure financial stability and sustainability , the government is pursuing public sector reforms , including privatization of some government functions and personnel cuts .\tIN DT NN TO VB JJ NN CC NN , DT NN VBZ VBG JJ NN NNS , VBG NN IN DT NN NNS CC NNS NNS .\nTuvalu also derives royalties from the lease of its ' .tv ' Internet domain name with revenue of more than $ 2 million in 2006 .\tNNP RB VBZ NNS IN DT NN IN PRP$ `` NN `` NNP NN NN IN NN IN JJR IN $ CD CD IN CD .\nA minor source of government revenue comes from the sale of stamps and coins .\tDT JJ NN IN NN NN VBZ IN DT NN IN NNS CC NNS .\nWith merchandise exports only a fraction of merchandise imports , continued reliance must be placed on fishing and telecommunications license fees , remittances from overseas workers , official transfers , and income from overseas investments .\tIN NN NNS RB DT NN IN NN NNS , JJ NN MD VB VBN IN NN CC NNS NN NNS , NNS IN JJ NNS , JJ NNS , CC NN IN JJ NNS .\nGrowing income disparities and the vulnerability of the country to climatic change are among leading concerns for the nation .\tVBG NN NNS CC DT NN IN DT NN TO JJ NN VBP IN VBG NNS IN DT NN .\nNiue 's remoteness , as well as cultural and linguistic differences between its Polynesian inhabitants and those of the rest of the Cook Islands , have caused it to be separately administered .\tNNP POS NN , RB RB IN JJ CC JJ NNS IN PRP$ JJ NNS CC DT IN DT NN IN DT NNP NNP , VBP VBN PRP TO VB RB VBN .\nThe population of the island continues to drop ( from a peak of 5,200 in 1966 to an estimated 1,311 in 2011 ) with substantial emigration to New Zealand 2,400 km to the southwest .\tDT NN IN DT NN VBZ TO VB LRB IN DT NN IN CD IN CD TO DT VBN CD IN CD RRB IN JJ NN TO NNP NNP CD NN TO DT NN .\nAnguilla has few natural resources , and the economy depends heavily on luxury tourism , offshore banking , lobster fishing , and remittances from emigrants .\tNNP VBZ JJ JJ NNS , CC DT NN VBZ RB IN NN NN , JJ NN , NN NN , CC NNS IN NNS .\nIncreased activity in the tourism industry has spurred the growth of the construction sector contributing to economic growth .\tJJ NN IN DT NN NN VBZ VBN DT NN IN DT NN NN VBG TO JJ NN .\nAnguillan officials have put substantial effort into developing the offshore financial sector , which is small but growing .\tNNP NNS VBP VBN JJ NN IN VBG DT JJ JJ NN , WDT VBZ JJ CC VBG .\nIn the medium term , prospects for the economy will depend largely on the tourism sector and , therefore , on revived income growth in the industrialized nations as well as on favorable weather conditions .\tIN DT JJ NN , NNS IN DT NN MD VB RB IN DT NN NN CC , RB , IN VBN NN NN IN DT JJ NNS RB RB IN IN JJ NN NNS .\nA former British colony , Cyprus became independent in 1960 following years of resistance to British rule .\tDT JJ JJ NN , NNP VBD JJ IN CD VBG NNS IN NN TO JJ NN .\nTensions between the Greek Cypriot majority and Turkish Cypriot minority came to a head in December 1963 , when violence broke out in the capital of Nicosia .\tNNS IN DT JJ JJ NN CC JJ JJ NN VBD TO DT NN IN NNP CD , WRB NN VBD RP IN DT NN IN NNP .\nDespite the deployment of UN peacekeepers in 1964 , sporadic intercommunal violence continued forcing most Turkish Cypriots into enclaves throughout the island .\tIN DT NN IN NNP NNS IN CD , JJ JJ NN VBD VBG RBS JJ NNS IN NNS IN DT NN .\nIn 1974 , a Greek Government-sponsored attempt to seize control of Cyprus was met by military intervention from Turkey , which soon controlled more than a third of the island .\tIN CD , DT JJ JJ NN TO VB NN IN NNP VBD VBN IN JJ NN IN NNP , WDT RB VBD JJR IN DT NN IN DT NN .\nIn 1983 , the Turkish Cypriot-occupied area declared itself the ' Turkish Republic of Northern Cyprus ' ( ' TRNC ' ) , but it is recognized only by Turkey .\tIN CD , DT JJ JJ NN VBD PRP DT `` NNP NNP IN NNP NNP `` LRB `` NNP `` RRB , CC PRP VBZ VBN RB IN NNP .\nThe election of a new Cypriot president in 2008 served as the impetus for the UN to encourage both the Greek Cypriot and Turkish Cypriot communities to reopen unification negotiations .\tDT NN IN DT JJ JJ NN IN CD VBD IN DT NN IN DT NNP TO VB DT DT JJ JJ CC JJ JJ NNS TO VB NN NNS .\nIn September 2008 , the leaders of the two communities began negotiations under UN auspices aimed at reuniting the divided island ; the talks remain ongoing .\tIN NNP CD , DT NNS IN DT CD NNS VBD NNS IN NNP NNS VBN IN VBG DT VBN NN ; DT NNS VBP JJ .\nThe entire island entered the EU on 1 May 2004 , although the EU acquis - the body of common rights and obligations - applies only to the areas under the internationally recognized government , and is suspended in the areas administered by Turkish Cypriots .\tDT JJ NN VBD DT NNP IN CD NNP CD , IN DT NNP VBZ IN DT NN IN JJ NNS CC NNS : VBZ RB TO DT NNS IN DT RB VBN NN , CC VBZ VBN IN DT NNS VBN IN JJ NNS .\nHowever , individual Turkish Cypriots able to document their eligibility for Republic of Cyprus citizenship legally enjoy the same rights accorded to other citizens of European Union states .\tRB , JJ JJ NNS JJ TO VB PRP$ NN IN NNP IN NNP NN RB VBP DT JJ NNS VBN TO JJ NNS IN NNP NNP NNS .\nOnce the center of power for the large Austro-Hungarian Empire , Austria was reduced to a small republic after its defeat in World War I .\tRB DT NN IN NN IN DT JJ JJ NN , NNP VBD VBN TO DT JJ NN IN PRP$ NN IN NNP NNP NNP .\nFollowing annexation by Nazi Germany in 1938 and subsequent occupation by the victorious Allies in 1945 , Austria 's status remained unclear for a decade .\tVBG NN IN NNP NNP IN CD CC JJ NN IN DT JJ NNS IN CD , NNP POS NN VBD JJ IN DT NN .\nA State Treaty signed in 1955 ended the occupation , recognized Austria 's independence , and forbade unification with Germany .\tDT NNP NNP VBD IN CD VBD DT NN , VBD NNP POS NN , CC VBD NN IN NNP .\nA constitutional law that same year declared the country 's ' perpetual neutrality ' as a condition for Soviet military withdrawal .\tDT JJ NN IN JJ NN VBD DT NN POS `` JJ NN `` IN DT NN IN JJ JJ NN .\nThe Soviet Union 's collapse in 1991 and Austria 's entry into the European Union in 1995 have altered the meaning of this neutrality .\tDT NNP NNP POS NN IN CD CC NNP POS NN IN DT NNP NNP IN CD VBP VBN DT NN IN DT NN .\nA prosperous , democratic country , Austria entered the EU Economic and Monetary Union in 1999 .\tDT JJ , JJ NN , NNP VBD DT NNP NNP CC NNP NNP IN CD .\nA FISHERMAN skilled in music took his flute and his nets to the seashore .\tDT NN VBD IN NN VBD PRP$ NN CC PRP$ NNS TO DT NN .\nStanding on a projecting rock , he played several tunes in the hope that the fish , attracted by his melody , would of their own accord dance into his net , which he had placed below .\tVBG IN DT VBG NN , PRP VBD JJ NNS IN DT NN IN DT NN , VBN IN PRP$ NN , MD IN PRP$ JJ NN VB IN PRP$ NN , WDT PRP VBD VBN IN .\nAt last , having long waited in vain , he laid aside his flute , and casting his net into the sea , made an excellent haul of fish .\tIN JJ , VBG RB VBN IN NN , PRP VBD RB PRP$ NN , CC VBG PRP$ NN IN DT NN , VBD DT JJ NN IN NN .\nWhen he saw them leaping about in the net upon the rock he said : ' O you most perverse creatures , when I piped you would not dance , but now that I have ceased you do so merrily . '\tWRB PRP VBD PRP VBG RB IN DT NN IN DT NN PRP VBD : `` NNP PRP RBS JJ NNS , WRB PRP VBD PRP MD RB VB , CC RB IN PRP VBP VBN PRP VBP RB RB . ``\nA PIGEON , oppressed by excessive thirst , saw a goblet of water painted on a signboard .\tDT NN , VBN IN JJ NN , VBD DT NN IN NN VBN IN DT NN .\nNot supposing it to be only a picture , she flew towards it with a loud whir and unwittingly dashed against the signboard , jarring herself terribly .\tRB VBG PRP TO VB RB DT NN , PRP VBD IN PRP IN DT JJ NN CC RB VBN IN DT NN , VBG PRP RB .\nHaving broken her wings by the blow , she fell to the ground , and was caught by one of the bystanders .\tVBG VBN PRP$ NNS IN DT NN , PRP VBD TO DT NN , CC VBD VBN IN CD IN DT NNS .\nZeal should not outrun discretion .\tNN MD RB VB NN .\nA LION who had caught a Mouse was about to kill him , when the Mouse said :\tDT NN WP VBD VBN DT NN VBD IN TO VB PRP , WRB DT NN VBD :\n' If you will spare my life , I will do as much for you some day . '\t`` IN PRP MD VB PRP$ NN , PRP MD VB RB RB IN PRP DT NN . ``\nThe Lion , good-naturedly let him go .\tDT NNP , RB VB PRP VB .\nIt happened shortly afterwards that the Lion was caught by some hunters and bound with cords .\tPRP VBD RB RB IN DT NNP VBD VBN IN DT NNS CC VBN IN NNS .\nThe Mouse , passing that way , and seeing that his benefactor was helpless , gnawed off his tail .\tDT NN , VBG DT NN , CC VBG IN PRP$ NN VBD JJ , VBD RP PRP$ NN .\n12-year-old Jeff Maier reached out and caught a fly ball at the Yankees-Orioles game , causing Baltimore to lose the first game of the playoffs .\tJJ NNP NNP VBD RP CC VBD DT NN NN IN DT NNP NN , VBG NNP TO VB DT JJ NN IN DT NNS .\nThis means that Maier has already caught more fly balls than the entire Mets outfield ...\tDT VBZ IN NNP VBZ RB VBN JJR NN NNS IN DT JJ NNPS NN :\nChristmas was over .\tNNP VBD IN .\nSanta and his reindeer finally had a chance to rest .\tNNP CC PRP$ NN RB VBD DT NN TO VB .\nAnd they deserved it .\tCC PRP VBD PRP .\nThey had done a good job .\tPRP VBD VBN DT JJ NN .\nRudolph had a chance to do something he had wanted to do for a long time .\tNNP VBD DT NN TO VB DT PRP VBD VBN TO VB IN DT JJ NN .\nHe made an appointment with a plastic surgeon because he was so sensitive about his looks .\tPRP VBD DT NN IN DT NN NN IN PRP VBD RB JJ IN PRP$ NNS .\nHowever it was n't his glowing proboscis that he wanted changed .\tRB PRP VBD RB PRP$ VBG NNS IN PRP VBD VBN .\nHe was proud of his nose and the help he had given Santa because of it .\tPRP VBD JJ IN PRP$ NN CC DT NN PRP VBD VBN NNP IN IN PRP .\nNo , he was sensitive about his long ears which were much more prominent than the ears of the average reindeer , or bear for that matter .\tDT , PRP VBD JJ IN PRP$ JJ NNS WDT VBD RB RBR JJ IN DT NNS IN DT JJ NN , CC NN IN DT NN .\nSo one week after Christmas , he let the good doctor do the pinna reconstructive surgery procedure , and since that time , January 1st has been celebrated as ... New Ears Day .\tRB CD NN IN NNP , PRP VBD DT JJ NN VBP DT NN JJ NN NN , CC IN DT NN , NNP CD VBZ VBN VBN IN : NNP NNP NNP .\nThe U.S. military says three American soldiers have been killed in a roadside bomb blast in northern Iraq .\tDT NNP NN VBZ CD JJ NNS VBP VBN VBN IN DT NN NN NN IN JJ NNP .\nThe military says one soldier was also wounded in the explosion that hit their combat patrol in the town of Balad , north of Baghdad , late Wednesday .\tDT JJ VBZ CD NN VBD RB VBN IN DT NN WDT VBD PRP$ NN NN IN DT NN IN NNP , NN IN NNP , JJ NNP .\nIn another development , Arab League Secretary-General Amr Moussa flew to Baghdad Thursday , - on his first visit to Iraq since the 2003 U.S. - led invasion .\tIN DT NN , NNP NNP NNP NNP NNP VBD TO NNP NNP , IN IN PRP$ JJ NN TO NNP IN DT CD NNP : VBD NN .\nMr. Moussa is to hold talks with senior Iraqi leaders and also meet the country 's most influential Shi'ite cleric , Grand Ayatollah Ali al-Sistani .\tNNP NNP VBZ TO VB NNS IN JJ JJ NNS CC RB VB DT NN POS RBS JJ NNP NN , NNP NNP NNP NNP .\nThe 34-member Arab League has been criticized for not strongly condemning the insurgency in Iraq and also for not taking a more active role in supporting the post-Saddam Iraqi government .\tDT JJ NNP NNP VBZ VBN VBN IN RB RB VBG DT NN IN NNP CC RB IN RB VBG DT RBR JJ NN IN VBG DT JJ JJ NN .\nPakistani police say multiple gas cylinder explosions tore through a building in the city of Lahore , killing at least 24 people and injuring many more .\tJJ NNS VBP JJ NN NN NNS VBD IN DT NN IN DT NN IN NNP , VBG IN JJS CD NNS CC VBG JJ JJR .\nWitnesses say there were about 40 residents in the collapsed building , and that most were asleep when the blasts occurred Tuesday morning .\tNNS VBP EX VBD IN CD NNS IN DT JJ NN , CC IN JJS VBD JJ WRB DT NNS VBD NNP NN .\nOfficials say rescue workers were searching for people who were believed trapped in the rubble of the multi-story structure .\tNNS VBP NN NNS VBD VBG IN NNS WP VBD VBN VBN IN DT NN IN DT JJ NN .\nPolice say the building had a gas cylinder storage area and an ice cream factory on the ground floor .\tNNS VBP DT NN VBD DT NN NN NN NN CC DT NN NN NN IN DT NN NN .\nSeveral near-by buildings and a number of cars were also damaged .\tJJ JJ NNS CC DT NN IN NNS VBD RB VBN .\nThe city of Washington is widely known for a keen appreciation of the social arts :\tDT NN IN NNP VBZ RB VBN IN DT JJ NN IN DT JJ NNS :\nPolitics , for example or the fine art of diplomacy .\tNNS , IN NN CC DT JJ NN IN NN .\nBut an important development in the history of the visual arts had its origins here as well .\tCC DT JJ NN IN DT NN IN DT JJ NNS VBD PRP$ NNS RB RB RB .\nIt is called the ' Color Field ' movement , and it is the subject of a major new exhibition now underway in the nation 's capital .\tPRP VBZ VBN DT `` NNP NNP `` NN , CC PRP VBZ DT NN IN DT JJ JJ NN RB VBZ IN DT NN POS NN .\nAs VOA 's George Dwyer reports , the passing of years appears to have cast this colorful school of painting in a whole new light .\tIN NNP POS NNP NNP VBZ , DT NN IN NNS VBZ TO VB VBN DT JJ NN IN NN IN DT JJ JJ NN .\nThe host Italian Olympic team has suffered a blow just days before the start of the Turin Games , with the loss of two ski jumpers .\tDT NN JJ NNP NN VBZ VBN DT NN RB NNS IN DT NN IN DT NNP NNPS , IN DT NN IN CD JJ NNS .\nMarco Beltrame and Stefano Chiapolino were seriously injured Tuesday during pre-Olympic training at Predazzo .\tNNP NNP CC NNP NNP VBD RB VBN NNP IN JJ NN IN NNP .\nThe 19-year-old Beltrame was admitted to a local hospital , in Belluno where he had his spleen removed .\tDT JJ NNP VBD VBN TO DT JJ NN , IN NNP WRB PRP VBD PRP$ NN VBD .\nChiapolino was treated at another hospital , in Cavalese .\tNNP VBD VBN IN DT NN , IN NNP .\nThe 20-year-old Olympic teammate had several small fractures to his face and a slight concussion .\tDT JJ NNP NN VBD JJ JJ NNS TO PRP$ NN CC DT JJ NN .\nWith the loss of two of its five ski jumpers , the Italian Olympic team will not be able to field a four-person squad in the team event on February 20 .\tIN DT NN IN CD IN PRP$ CD NN NNS , DT JJ NNP NN MD RB VB JJ TO VB DT JJ NN IN DT NN NN IN NNP CD .\nOpening ceremonies for the Games are Friday .\tVBG NNS IN DT NNPS VBP NNP .\nThe Olympics run through February 26 .\tDT NNS VBP IN NNP CD .\nPakistani officials say heavy rains led to the deaths of 228 people in the southern city of Karachi on Saturday .\tJJ NNS VBP JJ NNS VBD TO DT NNS IN CD NNS IN DT JJ NN IN NNP IN NNP .\nOfficials had earlier said 43 people were killed in the storm , however , the number increased when the bodies of 185 more victims were identified Sunday .\tNNS VBD JJR VBD CD NNS VBD VBN IN DT NN , RB , DT NN VBN WRB DT NNS IN CD JJR NNS VBD VBN NNP .\nMany people were killed when the roofs and walls of their homes collapsed .\tJJ NNS VBD VBN WRB DT NNS CC NNS IN PRP$ NNS VBD .\nOthers were killed or injured by power lines downed in the storm .\tNNS VBD VBN CC VBN IN NN NNS VBD IN DT NN .\nWeather forecasters expect the heavy rains to continue through Monday .\tNNP NNS VBP DT JJ NNS TO VB IN NNP .\nFormer U.N. Secretary-General Kofi Annan has recommended the United Nations extend its mission in Haiti through February 2008 .\tJJ NNP NNP NNP NNP VBZ VBN DT NNP NNP VB PRP$ NN IN NNP IN NNP CD .\nIn a report issued Tuesday , Mr. Annan said the primary responsibility for socio-economic development and building security is with Haiti 's leadership and people .\tIN DT NN VBN NNP , NNP NNP VBD DT JJ NN IN JJ NN CC NN NN VBZ IN NNP POS NN CC NNS .\nBut he said international help remains essential .\tCC PRP VBD JJ NN VBZ JJ .\nMeanwhile , the Haitian-born spokeswoman for new U.N. Secretary-General Ban Ki-Moon tells the Associated Press she hopes to use her office to publicize human rights abuses around the world , but especially in her home country .\tRB , DT JJ NN IN JJ NNP NNP NNP NNP VBZ DT NNP NNP PRP VBZ TO VB PRP$ NN TO VB JJ NNS NNS IN DT NN , CC RB IN PRP$ NN NN .\nFormer broadcast journalist Michele Montas and her husband , Jean Dominique , were persecuted in Haiti for reports critical of the government .\tJJ NN NN NNP NNP CC PRP$ NN , NNP NNP , VBD VBN IN NNP IN NNS JJ IN DT NN .\nDominique was assassinated in 2000 .\tNNP VBD VBN IN CD .\nMontas survived two attempts on her life before going into exile .\tNNP VBD CD NNS IN PRP$ NN IN VBG IN NN .\nShe told the Associated Press she remains mindful of her Haitian identity and hopes to return to her homeland someday .\tPRP VBD DT NNP NNP PRP VBZ JJ IN PRP$ JJ NN CC VBZ TO VB TO PRP$ NN RB .\nBut she said that is not possible now .\tCC PRP VBD DT VBZ RB JJ RB .\nSouth Africa 's main labor federation has again criticized Zimbabwe 's government for organizing elections it says will not be free and fair .\tNNP NNP POS JJ NN NN VBZ RB VBN NNP POS NN IN VBG NNS PRP VBZ MD RB VB JJ CC JJ .\nThe Congress of South African Trade Unions , COSATU , says it will hold a series of protests ahead of the March 31 poll , aimed to draw attention to alleged problems .\tDT NNP IN NNP NNP NNP NNP , NNP , VBZ PRP MD VB DT NN IN NNS RB IN DT NNP CD NN , VBN TO VB NN TO JJ NNS .\nThe group 's general secretary , Zwelinzima Vavi , says the result of the parliamentary vote is already decided , because President Robert Mugabe has skewed conditions in favor of his party .\tDT NN POS JJ NN , NNP NNP , VBZ DT NN IN DT JJ NN VBZ RB VBN , IN NNP NNP NNP VBZ VBN NNS IN NN IN PRP$ NN .\nSouth African officials have warned they will not tolerate illegal protests by the union group .\tJJ JJ NNS VBP VBN PRP MD RB VB JJ NNS IN DT NN NN .\nLabor officials say they are currently seeking permits for marches and a planned blockade of traffic along the border with Zimbabwe .\tNN NNS VBP PRP VBP RB VBG NNS IN NNS CC DT JJ NN IN NN IN DT NN IN NNP .\nEarlier this year , Zimbabwe officials refused entry to a COSATU delegation planning to study voting conditions in the country .\tRBR DT NN , NNP NNS VBD NN TO DT NNP NN NN TO VB NN NNS IN DT NN .\nPakistan 's election commission has announced the final list of three candidates for the upcoming presidential election .\tNNP POS NN NN VBZ VBN DT JJ NN IN CD NNS IN DT JJ JJ NN .\nThe commission said Saturday regional and national lawmakers will be able to choose from Pakistan Peoples Party co-chairman Asif Ali Zardari , retired judge Said-uz Zaman Siddiqui and Mushahid Hussain Sayed .\tDT NN VBD NNP JJ CC JJ NNS MD VB JJ TO VB IN NNP NNP NNP NN NNP NNP NNP , JJ NN NNP NNP NNP CC NNP NNP NNP .\nSiddiqui is aligned with the Pakistan Muslim League-N party of former Prime Minister Nawaz Sharif , while Sayed represents the party of former President Pervez Musharraf .\tNNP VBZ VBN IN DT NNP NNP NNP NN IN JJ NNP NNP NNP NNP , IN NNP VBZ DT NN IN JJ NNP NNP NNP .\nMr. Musharraf resigned last week following a series of carefully orchestrated no-confidence votes in parliament .\tNNP NNP VBD JJ NN VBG DT NN IN RB VBN JJ NNS IN NN .\nHe lost public support after he declared a state of emergency and fired several judges who planned to rule on the legitimacy of his presidency .\tPRP VBD JJ NN IN PRP VBD DT NN IN NN CC VBD JJ NNS WP VBD TO VB IN DT NN IN PRP$ NN .\nThe election is set for September 6 .\tDT NN VBZ VBN IN NNP CD .\nRussian bombers left Venezuela , one week after arriving in the South American country to conduct military exercises .\tJJ NNS VBD NNP , CD NN IN VBG IN DT JJ JJ NN TO VB JJ NNS .\nThe Russian news agency Itar-Tass reports that the two strategic bombers took off from Caracas in the early morning hours Thursday .\tDT JJ NN NN JJ NNS IN DT CD JJ NNS VBD RP IN NNP IN DT JJ NN NNS NNP .\nWhile in the region , the bombers conducted air patrol flights over neutral waters in the Caribbean .\tIN IN DT NN , DT NNS VBN NN NN NNS IN JJ NNS IN DT NNP .\nItar-Tass says the bombers will patrol neutral waters in the Atlantic and North Arctic Oceans before returning to Russia on Friday .\tNNP VBZ DT NNS MD VB JJ NNS IN DT NNP CC NNP NNP NNPS IN VBG TO NNP IN NNP .\nThe Tu-160 bombers arrived in Venezuela September 10 , days after Russia announced it would send a naval squadron and anti-submarine aircraft to Venezuela for possible joint military exercises in November .\tDT JJ NNS VBD IN NNP NNP CD , NNS IN NNP VBD PRP MD VB DT JJ NN CC JJ NN TO NNP IN JJ JJ JJ NNS IN NNP .\nRussia 's military exercises later this year would be its first major maneuvers in the Western Hemisphere since the Cold War .\tNNP POS JJ NNS RBR DT NN MD VB PRP$ JJ JJ NNS IN DT NNP NNP IN DT NNP NNP .\nA car bomb attack south of the Iraqi capital has killed at least 10 people , while the death toll from a series of coordinated blasts Thursday north of Baghdad has risen to nearly 100 .\tDT NN NN NN NN IN DT JJ NN VBZ VBN IN JJS CD NNS , IN DT NN NN IN DT NN IN VBN NNS NNP NN IN NNP VBZ VBN TO RB CD .\nIn Friday 's attack , police say a bomb blast tore through a crowded market in the mainly Shi'ite city of Hillah .\tIN NNP POS NN , NNS VBP DT NN NN VBD IN DT JJ NN IN DT RB JJ NN IN NNP .\nMore than 40 other people were injured in the explosion .\tJJR IN CD JJ NNS VBD VBN IN DT NN .\nMeanwhile , hospital officials said the death toll from three nearly simultaneous car bomb attacks Thursday in the northern city of Balad had risen to 99 .\tRB , NN NNS VBD DT NN NN IN CD RB JJ NN NN NNS NNP IN DT JJ NN IN NNP VBD VBN TO CD .\nAl-Qaida in Iraq claimed responsibility for that attack in an unverifiable Internet statement .\tNNP IN NNP VBD NN IN DT NN IN DT JJ NN NN .\nThe group , which is led by Abu Musab al-Zarqawi , has declared war on the country 's majority Shi'ites , ahead of the October 15 constitutional referendum .\tDT NN , WDT VBZ VBN IN NNP NNP NNP , VBZ VBN NN IN DT NN POS NN NNS , RB IN DT NNP CD JJ NN .\nAmerican gymnast Shawn Johnson is expected to be one of the brightest stars at the Beijing Olympic Games later this year .\tJJ NN NNP NNP VBZ VBN TO VB CD IN DT JJS NNS IN DT NNP NNP NNPS RBR DT NN .\nFor her coaches , a trip to the summer games would be a homecoming .\tIN PRP$ NNS , DT NN TO DT NN NNS MD VB DT NN .\nElaine Lu and producer Liu Enming have more on the aspiring Olympian 's path to the Beijing games .\tNNP NNP CC NN NNP NNP VBP RBR IN DT VBG NNP POS NN TO DT NNP NNS .\nThe U.S. economy grew a bit faster than first estimated in the first three months of this year , but still expanded at a slow pace .\tDT NNP NN VBD DT NN RBR IN JJ VBN IN DT JJ CD NNS IN DT NN , CC RB VBN IN DT JJ NN .\nThursday 's report from the Commerce Department puts the first quarter 's economic growth at nine-tenths of one percent .\tNNP POS NN IN DT NNP NNP VBZ DT JJ NN POS JJ NN IN NNS IN CD NN .\nThat is three-tenths of a percent better than economists first thought , and a bit better than the growth rate for the last quarter of 2007 .\tDT VBZ JJ IN DT NN JJR IN NNS RB VBD , CC DT NN JJR IN DT NN NN IN DT JJ NN IN CD .\nThe world 's largest economy has been hurt by sagging housing market , tight credit , and soaring energy costs .\tDT NN POS JJS NN VBZ VBN VBN IN VBG NN NN , JJ NN , CC VBG NN NNS .\nA separate government report from the Labor Department said the number of Americans signing up for unemployment assistance rose slightly last week - by 4,000 , to a total of 3,72,000 .\tDT JJ NN NN IN DT NNP NNP VBD DT NN IN NNS VBG RP IN NN NN VBD RB JJ NN IN IN CD , TO DT NN IN CD .\nBolivia 's President Evo Morales has announced that his government will take over the operations of the Chaco oil company , as part of efforts to nationalize the country 's resources .\tNNP POS NNP NNP NNP VBZ VBN IN PRP$ NN MD VB RP DT NNS IN DT NNP NN NN , IN NN IN NNS TO VB DT NN POS NNS .\nMr. Morales Friday visited Chaco , in which the British company BP is a majority stakeholder .\tNNP NNP NNP VBD NNP , IN WDT DT JJ NN NNP VBZ DT NN NN .\nHe presented the nationalization move as a gain for the Bolivian people , saying ' little by little we are taking back our companies . '\tPRP VBD DT NN NN IN DT NN IN DT JJ NNS , VBG `` RB IN RB PRP VBP VBG RP PRP$ NNS . ``\nThe left-leaning president won election on a platform of economic reform , pledging to share the country 's energy wealth among the impoverished indigenous majority .\tDT JJ NN VBD NN IN DT NN IN JJ NN , VBG TO VB DT NN POS NN NN IN DT JJ JJ NN .\nHe has already nationalized several key energy companies .\tPRP VBZ RB VBN JJ JJ NN NNS .\nToday 's take-over of Chaco comes just days before Bolivians vote on a new constitution backed by Mr. Morales .\tNN POS NN IN NNP VBZ RB NNS IN NNS VBP IN DT JJ NN VBN IN NNP NNP .\nA Mexican police commander has been shot to death outside his home in the northern border city of Nuevo Laredo .\tDT JJ NN NN VBZ VBN VBN TO NN IN PRP$ NN IN DT JJ NN NN IN NNP NNP .\nAuthorities say Enrique Cardenas was killed Thursday as he left home to take his young daughter to school .\tNNS VBP NNP NNP VBD VBN NNP IN PRP VBD NN TO VB PRP$ JJ NN TO NN .\nThey say the killing took place one day after another local police commander was ambushed and wounded by assailants who opened fire from a moving car .\tPRP VBP DT NN VBD NN CD NN IN DT JJ NN NN VBD VBN CC VBN IN NNS WP VBD NN IN DT VBG NN .\nOfficials say at least five other police officers have been killed in Nuevo Laredo since the beginning of the year in a wave of violence attributed to drug traffickers battling for territory .\tNNS VBP IN JJS CD JJ NNS NNS VBP VBN VBN IN NNP NNP IN DT NN IN DT NN IN DT NN IN NN VBN TO NN NNS VBG IN NN .\nEarlier this year , the U.S. State Department issued travel alerts on Nuevo Laredo , prompting an angry response from the Mexican government .\tRBR DT NN , DT NNP NNP NNP VBD NN NNS IN NNP NNP , VBG DT JJ NN IN DT JJ NN .\nSouth Korea 's foreign minister says he is willing to travel to Pyongyang if it will help bring North Korea back to international nuclear disarmament talks .\tNNP NNP POS JJ NN VBZ PRP VBZ JJ TO VB TO NNP IN PRP MD VB VB NNP NNP RB TO JJ JJ NN NNS .\nBan Ki-moon did not say if North Korea had extended an invitation .\tNNP NNP VBD RB VB IN NNP NNP VBD VBN DT NN .\nBut he said he is willing to make the trip if his efforts will help .\tCC PRP VBD PRP VBZ JJ TO VB DT NN IN PRP$ NNS MD VB .\nSix country talks on North Korea 's nuclear program have been stalled since last November .\tCD NN NNS IN NNP NNP POS JJ NN VBP VBN VBN IN JJ NNP .\nThe United States , China , Russia , Japan and South Korea were trying to convince North Korea to abandon its nuclear program entirely .\tDT NNP NNPS , NNP , NNP , NNP CC NNP NNP VBD VBG TO VB NNP NNP TO VB PRP$ JJ NN RB .\nWork toward resuming negotiations intensified last month when North Korea test-fired several missiles .\tNN IN VBG NNS VBN JJ NN WRB NNP NNP VBD JJ NNS .\nThe head of the U.S. Central Bank says home prices could fall as the nation 's booming housing market inevitably slows down .\tDT NN IN DT NNP NNP NNP VBZ NN NNS MD VB IN DT NN POS JJ NN NN RB VBZ RP .\nFederal Reserve Chairman Alan Greenspan made the comment Saturday during concluding remarks at an economic summit in the western state of Wyoming .\tNNP NNP NNP NNP NNP VBD DT NN NNP IN VBG NNS IN DT JJ NN IN DT JJ NN IN NNP .\nHe said that as the housing boom simmers down , home price increases will slow and that prices could even decrease .\tPRP VBD IN IN DT NN NN NNS RB , NN NN NNS MD VB CC IN NNS MD RB VB .\nOne day earlier , Mr. Greenspan warned Americans not to assume that recent soaring home prices will continue forever .\tCD NN RB , NNP NNP VBD NNS RB TO VB IN JJ VBG NN NNS MD VB RB .\nHe said increased buying power fueled by higher home prices could disappear if investors become cautious .\tPRP VBD VBN VBG NN VBN IN JJR NN NNS MD VB IN NNS VBP JJ .\nLarge numbers of U.S. homeowners have taken out loans against the increased value of their homes to pay for renovations and other purchases , fueling much of the recent growth in the economy .\tJJ NNS IN NNP NNS VBP VBN RP NNS IN DT VBN NN IN PRP$ NNS TO VB IN NNS CC JJ NNS , VBG NN IN DT JJ NN IN DT NN .\nAfghan authorities say seven Taleban prisoners have escaped from Afghanistan 's main prison and 10 guards are being investigated for helping them break free or for negligence .\tJJ NNS VBP CD NNP NNS VBP VBN IN NNP POS JJ NN CC CD NNS VBP VBG VBN IN VBG PRP VB JJ CC IN NN .\nThe director of Afghanistan 's prisons said Tuesday , the men broke out of Policharki Prison on the outskirts of the capital , Kabul , on Sunday .\tDT NN IN NNP POS NNS VBD NNP , DT NNS VBD IN IN NNP NNP IN DT NNS IN DT NN , NNP , IN NNP .\nHe declined to identify the escaped prisoners , citing security reasons , but said security forces were searching for them .\tPRP VBD TO VB DT VBN NNS , VBG NN NNS , CC VBD NN NNS VBD VBG IN PRP .\nPakistani officials say suspected U.S. drone-fired missiles have struck a vehicle and a religious school building in an al-Qaida and Taliban stronghold , killing at least ten militants , including two foreigners .\tJJ NNS VBP JJ NNP JJ NNS VBP VBN DT NN CC DT JJ NN NN IN DT NNP CC NNP NN , VBG IN JJS JJ NNS , VBG CD NNS .\nThe officials say the missiles hit in the Khaisor area of North Waziristan region , near the border with Afghanistan .\tDT NNS VBP DT NNS VBN IN DT NNP NN IN NNP NNP NN , IN DT NN IN NNP .\nThe victims have not yet been identified .\tDT NNS VBP RB RB VBN VBN .\nThis is the latest of more than 40 suspected U.S. missile strikes on militant targets in northwest Pakistan over the past year .\tDT VBZ DT JJS IN JJR IN CD JJ NNP NN NNS IN JJ NNS IN JJ NNP IN DT JJ NN .\nLast week , a suspected U.S. drone ( unmanned ) aircraft fired a missile at a compound in South Waziristan , also near the Afghan border , killing at least 8 .\tJJ NN , DT JJ NNP NN LRB JJ RRB NN VBD DT NN IN DT NN IN NNP NNP , RB IN DT JJ NN , VBG IN JJS CD .\nThe United States rarely discusses the strikes , which Pakistan has criticized as counterproductive and a violation of its sovereignty .\tDT NNP NNPS RB VBZ DT NNS , WDT NNP VBZ VBN IN JJ CC DT NN IN PRP$ NN .\nThese latest missiles hit as Pakistani security forces battle extremist militants elsewhere in northwestern Pakistan , around the Swat valley .\tDT JJS NNS VBD IN JJ NN NNS VBP NN NNS RB IN JJ NNP , IN DT NNP NN .\nThe head of South Africa 's football association has announced that the shoes used by the national team 's Siphiwe Tshabalala to score the first goal of the 2010 World Cup will become a ' historic monument . '\tDT NN IN NNP NNP POS NN NN VBZ VBN IN DT NNS VBN IN DT JJ NN POS NNP NNP TO VB DT JJ NN IN DT CD NNP NNP MD VB DT `` JJ NN . ``\nSAFA chief executive Leslie Sedibe told a parliamentary committee Tuesday that the shoes will be displayed at SAFA headquarters in Johannesburg .\tNNP NN NN NNP NNP VBD DT JJ NN NNP IN DT NNS MD VB VBN IN NNP NN IN NNP .\nIn a memorable start to World Cup , Tshabalala gave South Africa a 1-0 lead over Mexico in the opening match at Soccer City in Johannesburg .\tIN DT JJ NN TO NNP NNP , NNP VBD NNP NNP DT JJ NN IN NNP IN DT NN NN IN NNP NNP IN NNP .\nThe match ended in a 01-Jan draw .\tDT NN VBD IN DT JJ NN .\nSedibe says Siphiwe Tshabalala knows those shoes do not belong to him ' because of the historic symbolism they represent . '\tNNP VBZ NNP NNP VBZ DT NNS VBP RB VB TO PRP `` IN IN DT JJ NN PRP VBP . ``\nHe added that the shoes represent hope and what South Africa can deliver on a world stage .\tPRP VBD IN DT NNS VBP NN CC WP NNP NNP MD VB IN DT NN NN .\nTaiwan 's president is calling for one million of his fellow citizens to take to the streets to protest China 's new anti-secession law .\tNNP POS NN VBZ VBG IN CD CD IN PRP$ JJ NNS TO VB TO DT NNS TO VB NNP POS JJ JJ NN .\nChen Shui-bian 's criticism came Wednesday in his first public comments since China 's parliament approved a bill authorizing military force if Taipei formally declares its independence .\tNNP NNP POS NN VBD NNP IN PRP$ JJ JJ NNS IN NNP POS NN VBD DT NN VBG JJ NN IN NNP RB VBZ PRP$ NN .\nHe says the law will only heighten tensions across the Taiwan Strait , and that only peaceful dialogue will resolve the situation .\tPRP VBZ DT NN MD RB VB NNS IN DT NNP NNP , CC IN RB JJ NN MD VB DT NN .\nMr. Chen says the mass protest planned for March 26 will show the world that only Taiwan can decide its future .\tNNP NNP VBZ DT NN NN VBN IN NNP CD MD VB DT NN IN RB NNP MD VB PRP$ NN .\nThe president is also calling on the European Union to reconsider its plan to lift its 15-year-old arms embargo against Beijing .\tDT NN VBZ RB VBG IN DT NNP NNP TO VB PRP$ NN TO VB PRP$ JJ NNS NN IN NNP .\nU.S. President Barack Obama has extended sanctions on Burma 's military government for another year .\tNNP NNP NNP NNP VBZ VBN NNS IN NNP POS JJ NN IN DT NN .\nMr. Obama informed Congress of the decision Friday , saying Burma is ' engaging in large-scale repression of the democratic opposition . '\tNNP NNP VBD NNP IN DT NN NNP , VBG NNP VBZ `` VBG IN JJ NN IN DT JJ NN . ``\nHe added that Burma 's actions and policies are hostile to U.S. interests , and they pose a continuing threat to U.S. national security and foreign policy .\tPRP VBD IN NNP POS NNS CC NNS VBP JJ TO NNP NNS , CC PRP VBP DT VBG NN TO NNP JJ NN CC JJ NN .\nThe existing sanctions on Burma must be renewed annually .\tDT VBG NNS IN NNP MD VB VBN RB .\nThey were set to expire next week .\tPRP VBD VBN TO VB JJ NN .\nThe curator of the Beijing Palace Museum arrived in Taiwan Sunday to arrange a local exhibition of Chinese relics .\tDT NN IN DT NNP NNP NNP VBD IN NNP NNP TO VB DT JJ NN IN JJ NNS .\nThe four-day visit by Zheng Xinmiao follows an unprecedented visit to Beijing last month by the director of Taipei 's National Palace Museum .\tDT JJ NN IN NNP NNP VBZ DT JJ NN TO NNP JJ NN IN DT NN IN NNP POS NNP NNP NNP .\nBeijing has agreed to send 29 Qing Dynasty ( 1644 - 1911 ) relics to Taiwan for a joint exhibition in October .\tNNP VBZ VBN TO VB CD NNP NNP LRB CD : CD RRB VBZ TO NNP IN DT JJ NN IN NNP .\nThe bulk of artifacts in Taipei 's main museum were taken from the Forbidden City by the Nationalists as they fled the Chinese mainland at the end of the civil war in 1949 .\tDT NN IN NNS IN NNP POS JJ NN VBD VBN IN DT NNP NNP IN DT NNS IN PRP VBD DT JJ NN IN DT NN IN DT JJ NN IN CD .\nThe Taiwan museum holds around 6,50,000 items spanning 7,000 years of Chinese history .\tDT NNP NN VBZ IN CD NNS VBG CD NNS IN JJ NN .\nBritain 's Court of Appeal has rejected the British government 's attempt to stop an Australian terror suspect from seeking British citizenship .\tNNP POS NNP IN NNP VBZ VBN DT JJ NN POS NN TO VB DT JJ NN NN IN VBG JJ NN .\nThe suspect , David Hicks , is being held at the U.S. detention facility at Guantanamo Bay , Cuba .\tDT NN , NNP NNP , VBZ VBG VBN IN DT NNP NN NN IN NNP NNP , NNP .\nHicks ' mother was born in Britain and he has sought British citizenship hoping London would secure his release from Guantanamo , as it did for several British nationals held there .\tNNP POS NN VBD VBN IN NNP CC PRP VBZ VBN JJ NN VBG NNP MD VB PRP$ NN IN NNP , IN PRP VBD IN JJ JJ NNS VBN RB .\nHicks , a convert to Islam , was captured by U.S. forces in Afghanistan in 2001 and accused of being an al Qaeda fighter .\tNNP , DT NN IN NNP , VBD VBN IN NNP NNS IN NNP IN CD CC VBN IN VBG DT NNP NNP NN .\nThe British government had refused his citizenship bid because of his alleged involvement with terrorism .\tDT JJ NN VBD VBN PRP$ NN NN IN IN PRP$ JJ NN IN NN .\nBritain 's High Court rejected that position in December , and the Court of Appeals upheld the decision Wednesday .\tNNP POS NNP NNP VBD DT NN IN NNP , CC DT NNP IN NNP VBD DT NN NNP .\nIsraeli police say Prime Minister Ehud Olmert 's personal secretary has been placed under house arrest for 10 days as part of a corruption probe - the latest political scandal to rock the Jewish state .\tJJ NNS VBP NNP NNP NNP NNP POS JJ NN VBZ VBN VBN IN NN NN IN CD NNS IN NN IN DT NN NN IN DT JJS JJ NN TO VB DT JJ NN .\nA spokesman says Shula Zaken was among more than 15 people questioned Tuesday in an investigation into government officials accepting or giving bribes in return for tax breaks .\tDT NN VBZ NNP NNP VBD IN JJR IN CD NNS VBN NNP IN DT NN IN NN NNS VBG CC VBG NNS IN NN IN NN NNS .\nTax officials were among those questioned .\tNN NNS VBD IN DT VBN .\nReports say Mr. Olmert has not been targeted in the probe .\tNNS VBP NNP NNP VBZ RB VBN VBN IN DT NN .\nThe Israeli prime minister has been the subject of several previous corruption investigations but has not been charged .\tDT JJ JJ NN VBZ VBN DT NN IN JJ JJ NN NNS CC VBZ RB VBN VBN .\nPresident Bush will meet with British Prime Minister Tony Blair next Friday in Washington for talks on the Middle East crisis .\tNNP NNP MD VB IN JJ NNP NNP NNP NNP JJ NNP IN NNP IN NNS IN DT NNP NNP NN .\nThe White House says the two leaders will discuss efforts to secure ' a lasting peace ' in the region .\tDT NNP NNP VBZ DT CD NNS MD VB NNS TO VB `` DT JJ NN `` IN DT NN .\nThey will also talk about the situation in Iraq and Afghanistan , as well as efforts to stop the violence in Sudan 's Darfur region .\tPRP MD RB VB IN DT NN IN NNP CC NNP , RB RB IN NNS TO VB DT NN IN NNP POS NNP NN .\nAlso on the agenda will be Iran 's nuclear ambitions and ways to stop Tehran from getting the technology to build nuclear weapons .\tRB IN DT NN MD VB NNP POS JJ NNS CC NNS TO VB NNP IN VBG DT NN TO VB JJ NNS .\nThe two men will also discuss ways to promote free and fair trade .\tDT CD NNS MD RB VB NNS TO VB JJ CC JJ NN .\nThe White House announcement of the visit Friday , noted that the United States ' has no closer ally and partner than the United Kingdom . '\tDT NNP NNP NN IN DT NN NNP , VBD IN DT NNP NNPS `` VBZ DT JJR NN CC NN IN DT NNP NNP . ``\nMr. Blair 's support for Mr. Bush 's policies , especially on Iraq , have prompted a backlash from critics in Britain .\tNNP NNP POS NN IN NNP NNP POS NNS , RB IN NNP , VBP VBN DT NN IN NNS IN NNP .\nAn Israeli human rights group says Israeli authorities have allowed Jewish settlers to seize more than 400 hectares of land from Palestinian farmers by extending security barriers .\tDT JJ JJ NNS NN VBZ JJ NNS VBP VBN JJ NNS TO VB JJR IN CD NNS IN NN IN JJ NNS IN VBG NN NNS .\nThe Rights group , B'Tselem issued a report Thursday saying settlers , with government backing , installed security fences around 12 West Bank settlements , cutting off access to private land owned by Palestinians .\tDT NNP NN , NNP VBD DT NN NNP VBG NNS , IN NN NN , JJ NN NNS IN CD NNP NNP NNS , VBG RP NN TO JJ NN VBN IN NNS .\nIsraeli officials say the security zones are meant to protect Israelis from attacks .\tJJ NNS VBP DT NN NNS VBP VBN TO VB NNS IN NNS .\nThe report notes that settlers have also used violence and systematic harassment to force Palestinian farmers from the land .\tDT NN VBZ IN NNS VBP RB VBN NN CC JJ NN TO VB JJ NNS IN DT NN .\nIn a separate development in Gaza , Israeli military officials say two bombs exploded today near an Israeli army vehicle on patrol near the border barrier .\tIN DT JJ NN IN NNP , JJ JJ NNS VBP CD NNS VBD NN IN DT JJ NN NN IN NN IN DT NN NN .\nNobody was injured in the blasts .\tDT VBD VBN IN DT NNS .\nBritish Foreign Secretary Jack Straw has condemned the Uzbek government 's crackdown on protesters in the city of Andijon .\tJJ NNP NNP NNP NNP VBZ VBN DT JJ NN POS NN IN NNS IN DT NN IN NNP .\nSpeaking Sunday on the BBC , Mr. Straw said there had been a clear abuse of human rights , and urged Uzbek officials to allow foreign observers and international aid groups such as the Red Cross to survey the situation .\tVBG NNP IN DT NNP , NNP NNP VBD EX VBD VBN DT JJ NN IN JJ NNS , CC VBD JJ NNS TO VB JJ NNS CC JJ NN NNS JJ IN DT NNP NNP TO VB DT NN .\nThe Associated Press says that an Uzbek foreign ministry statement called Mr. Straw 's comments ill-informed .\tDT NNP NNP VBZ IN DT JJ JJ NN NN VBD NNP NNP POS NNS JJ .\nMeanwhile , Russian Foreign Minister Sergei Lavrov blamed regional extremists , including Afghanistan 's Taleban , for the violence .\tRB , JJ NNP NNP NNP NNP VBD JJ NNS , VBG NNP POS NNP , IN DT NN .\nBut the New York-based Human Rights Watch organization argues that the Uzbek government can not use the war on terror to justify shooting demonstrators protesting poverty and repression .\tCC DT NNP JJ NNP NNP NNP NN VBZ IN DT JJ NN MD RB VB DT NN IN NN TO VB NN NNS VBG NN CC NN .\nU.N. Secretary-General Kofi Annan says the world may soon face what he calls a ' cascade ' of countries acquiring nuclear weapons .\tNNP NNP NNP NNP VBZ DT NN MD RB VB WP PRP VBZ DT `` NN `` IN NNS VBG JJ NNS .\nMr. Annan says relying on the Nuclear Non-Proliferation Treaty is not enough and proposes new , joint action , including tougher inspection rules .\tNNP NNP VBZ VBG IN DT NNP NNP NNP VBZ RB RB CC VBZ JJ , JJ NN , VBG JJR NN NNS .\nHis comments at a security conference in Germany Sunday come as concerns grow over North Korea and Iran 's nuclear programs .\tPRP$ NNS IN DT NN NN IN NNP NNP VBD IN NNS VBP IN NNP NNP CC NNP POS JJ NNS .\nGerman Foreign Minister Joschka Fischer struck a tougher tone on Iran , telling the conference Tehran could be referred to the U.N. Security Council if it resumes nuclear enrichment activities .\tJJ NNP NNP NNP NNP VBD DT JJR NN IN NNP , VBG DT NN NN MD VB VBN TO DT NNP NNP NNP IN PRP VBZ JJ NN NNS .\nGermany , France and Britain have been leading diplomatic efforts to persuade Iran to not develop nuclear weapons , which Tehran says it is not trying to do .\tNNP , NNP CC NNP VBP VBN VBG JJ NNS TO VB NNP TO RB VB JJ NNS , WDT NNP VBZ PRP VBZ RB VBG TO VB .\nThe United States has called for a tougher line with the country\tDT NNP NNP VBZ VBN IN DT JJR NN IN DT NN\nChina is offering Taiwan a series of trade concessions in an effort to boost public sentiment on the island in favor of reunification with the mainland .\tNNP VBZ VBG NNP DT NN IN NN NNS IN DT NN TO VB JJ NN IN DT NN IN NN IN NN IN DT NN .\nThe concessions , announced Saturday , will add four types of Taiwan-grown fruit to a list of 18 varieties that can enter China .\tDT NNS , VBN NNP , MD VB CD NNS IN JJ NN TO DT NN IN CD NNS WDT MD VB NNP .\nThey will also offer a tax-free import status to 11 kinds of vegetables and some Taiwan aquatic products .\tPRP MD RB VB DT JJ NN NN TO CD NNS IN NNS CC DT NNP JJ NNS .\nThe director of China 's Taiwan Affairs Office made the announcement in Beijing at the end of a government forum on cross-straits business .\tDT NN IN NNP POS NNP NNP NNP VBD DT NN IN NNP IN DT NN IN DT NN NN IN NNS NN .\nThe former chairman of Taiwan 's opposition party joined the forum , but representatives of Taiwan President Chen Shui-bian were absent .\tDT JJ NN IN NNP POS NN NN VBD DT NN , CC NNS IN NNP NNP NNP NNP VBD JJ .\nTaipei and Beijing split amid civil war in 1949 .\tNNP CC NNP VBD IN JJ NN IN CD .\nChina considers the island part of its territory and says it must accept reunification .\tNNP VBZ DT NN NN IN PRP$ NN CC VBZ PRP MD VB NN .\nIraqi police say a suicide truck bomber has killed at least 15 people and wounded more than 20 at a police station in northern Iraq .\tJJ NNS VBP DT NN NN NN VBZ VBN IN JJS CD NNS CC VBD JJR IN CD IN DT NN NN IN JJ NNP .\nPolice say the attack took place Sunday in the mainly Sunni town of Adwar , 20 kilometers south of Tikrit .\tNNS VBP DT NN VBD NN NNP IN DT RB JJ NN IN NNP , CD NNS RB IN NNP .\nThey say the bomber rammed a truck loaded with hay through the gate of a police station and triggered the blast outside the building .\tPRP VBP DT NN VBD DT NN VBN IN NN IN DT NN IN DT NN NN CC VBD DT NN IN DT NN .\nThe explosion severely damaged the building , killing and wounding policemen , prisoners and civilians .\tDT NN RB VBD DT NN , VBG CC VBG NNS , NNS CC NNS .\nOfficials say the death toll could rise as emergency workers search through the rubble .\tNNS VBP DT NN NN MD VB IN NN NNS NN IN DT NN .\nElsewhere , police say gunmen killed eight border guard recruits today as they were riding a minibus near the town of Rabiyaa in northwestern Iraq , near the Syrian frontier .\tRB , NNS VBP NNS VBD CD NN NN VBZ NN IN PRP VBD VBG DT NN IN DT NN IN NNP IN JJ NNP , IN DT JJ NN .\nIn another development , the U.S. military says an American soldier was killed today in a gun battle with insurgents in Diyala province , northeast of Baghdad .\tIN DT NN , DT NNP NN VBZ DT JJ NN VBD VBN NN IN DT NN NN IN NNS IN NNP NN , NN IN NNP .\nIsraeli forces have carried out air strikes on a vehicle and buildings linked to the Palestinian militant group , the al-Aqsa Martyrs Brigades .\tJJ NNS VBP VBN RP NN NNS IN DT NN CC NNS VBN TO DT JJ JJ NN , DT NNP NNP NNP .\nThree Palestinian men were killed in a Gaza City attack while Israeli aircraft and artillery also targeted areas near the northern Gaza town of Beit Hanoun .\tCD JJ NNS VBD VBN IN DT NNP NNP NN IN JJ NN CC NN RB VBD NNS IN DT JJ NNP NN IN NNP NNP .\nIsrael launched the strikes Sunday after Palestinians fired rockets from Gaza into southern Israel on Friday .\tNNP VBD DT NNS NNP IN NNS VBD NNS IN NNP IN JJ NNP IN NNP .\nElsewhere , Israeli police say a knife-wielding Palestinian man killed a woman and wounded five other passengers on a bus near Tel Aviv .\tRB , JJ NNS VBP DT JJ JJ NN VBD DT NN CC VBD CD JJ NNS IN DT NN IN NNP NNP .\nAuthorities say the man entered Israel from the West Bank .\tNNS VBP DT NN VBD NNP IN DT NNP NNP .\nTensions between Israel and the Palestinians have risen in recent days after Israel killed a top commander of the Islamic Jihad militant group .\tNNS IN NNP CC DT NNS VBP VBN IN JJ NNS IN NNP VBD DT JJ NN IN DT NNP NNP JJ NN .\nPakistani security forces have detained at least 25 suspected Islamic militants in a series of raids linked to the July 7 London suicide bombings .\tJJ NN NNS VBP VBN IN JJS CD JJ JJ NNS IN DT NN IN NNS VBN TO DT NNP CD NNP NN NNS .\nOfficials in Punjab province say members of outlawed Islamist groups were among the people detained overnight in the cities of Dera Ghazi Khan , Multan , Faisalabad and Khushab .\tNNS IN NNP NN VBP NNS IN JJ NN NNS VBD IN DT NNS VBN RB IN DT NNS IN NNP NNP NNP , NNP , NNP CC NNP .\nThey say the suspects are being questioned for possible links with three of the four London bombers - British-born Muslims of Pakistani origin who had visited Pakistan in the past year .\tPRP VBP DT NNS VBP VBG VBN IN JJ NNS IN CD IN DT CD NNP NNS IN JJ NNS IN JJ NN WP VBD VBN NNP IN DT JJ NN .\nOn Monday , Pakistani immigration officials released photographs of the three -\tIN NNP , JJ NN NNS VBD NNS IN DT CD :\nMohammad Sidique Khan , Shehzad Tanweer and Hasib Hussain - taken upon their arrival in Karachi .\tNNP NNP NNP , NNP NNP CC NNP NNP : VBN IN PRP$ NN IN NNP .\nThere was no official confirmation of reports that at least one of the bombers visited Islamic religious schools during the visits .\tEX VBD DT JJ NN IN NNS IN IN JJS CD IN DT NNS VBD JJ JJ NNS IN DT NNS .\nClashes between Maoist militants and government forces in western Nepal have killed at least 24 people , as a rebel-blockade shut down major highways in the capital city .\tNNS IN NNP NNS CC NN NNS IN JJ NNP VBP VBN IN JJS CD NNS , IN DT NN VBD RP JJ NNS IN DT NN NN .\nArmy officials say rebels attacked patrols in a remote area in far-western Nepal .\tNNP NNS VBP NNS VBD NNS IN DT JJ NN IN JJ NNP .\nOfficials said at least 22 guerrillas and two soldiers were killed in the fighting .\tNNS VBD IN JJS CD NNS CC CD NNS VBD VBN IN DT NN .\nIn the capital Kathmandu , Maoist rebels Thursday blocked major roads in and out of the city to protest alleged abuses by security forces .\tIN DT NN NNP , NNP NNS NNP VBD JJ NNS IN CC IN IN DT NN TO VB JJ NNS IN NN NNS .\nThe rebels are demanding information about their missing activists who , they say , disappeared while in custody .\tDT NNS VBP VBG NN IN PRP$ JJ NNS WP , PRP VBP , VBD IN IN NN .\nA similar rebel road-block in Kathmandu for a week in August led to a shortage of essential supplies in the city .\tDT JJ NN NN IN NNP IN DT NN IN NNP VBD TO DT NN IN JJ NNS IN DT NN .\nMaoists rebels have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state .\tNNS NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN .\nLebanese authorities say four people are dead after an apparent assassination attempt against a top Lebanese police official near the southern city of Sidon .\tJJ NNS VBP CD NNS VBP JJ IN DT JJ NN NN IN DT JJ JJ NN NN IN DT JJ NN IN NNP .\nOfficials say Colonel Samir Shehade was wounded , but in stable condition after a bomb exploded near his car Tuesday .\tNNS VBP NNP NNP NNP VBD VBN , CC IN JJ NN IN DT NN VBD IN PRP$ NN NNP .\nThe blast killed four of his aides and bodyguards , and wounded four others .\tDT NN VBD CD IN PRP$ NNS CC NNS , CC VBD CD NNS .\nThere was no immediate word on a possible motive for the attack against Shehade , a senior officer in Lebanon 's internal security force .\tEX VBD DT JJ NN IN DT JJ NN IN DT NN IN NNP , DT JJ NN IN NNP POS JJ NN NN .\nHe was involved in the investigation of last year 's killing of former Prime Minister Rafik Hariri .\tPRP VBD VBN IN DT NN IN JJ NN POS NN IN JJ NNP NNP NNP NNP .\nMany in Lebanon blame Syria for the Hariri murder , which the United Nations also is investigating separately .\tJJ IN NNP VBP NNP IN DT NNP NN , WDT DT NNP NNP RB VBZ VBG RB .\nSyria denies any involvement .\tNNP VBZ DT NN .\nPresident Bush 's pick for secretary of the Department of Homeland Security says the White House was extremely supportive of his decision to withdraw from consideration for the post .\tNNP NNP POS NN IN NN IN DT NNP IN NNP NNP VBZ DT NNP NNP VBD RB JJ IN PRP$ NN TO VB IN NN IN DT NN .\nBernard Kerik made the comment to reporters outside his home in New Jersey Saturday .\tNNP NNP VBD DT NN TO NNS IN PRP$ NN IN NNP NNP NNP .\nHe said he informed the White House Friday of the decision to withdraw after uncovering tax and immigration problems related to a woman who was his family 's housekeeper and nanny .\tPRP VBD PRP VBD DT NNP NNP NNP IN DT NN TO VB IN VBG NN CC NN NNS VBN TO DT NN WP VBD PRP$ NN POS NN CC NN .\nPresident Bush nominated Mr. Kerik last week to succeed Tom Ridge .\tNNP NNP VBD NNP NNP JJ NN TO VB NNP NNP .\nSome analysts said he lacked the skills necessary to lead the 180,000-employee agency .\tDT NNS VBD PRP VBD DT NNS JJ TO VB DT JJ NN .\nThey also questioned his links to the Taser International stun gun company that earned him millions of dollars through stock options .\tPRP RB VBD PRP$ NNS TO DT NNP NNP NN NN NN WDT VBD PRP NNS IN NNS IN NN NNS .\nMr. Kerik once served as New York City police commissioner under New York Mayor Rudolph Giuliani .\tNNP NNP RB VBD IN NNP NNP NNP NN NN IN NNP NNP NNP NNP NNP .\nThe former mayor today described Mr. Kerik as a highly qualified candidate who made a mistake .\tDT JJ NN NN VBD NNP NNP IN DT RB JJ NN WP VBD DT NN .\nA security official in Pakistan says a suspected U.S. drone fired missiles at a building used by Taliban militants in Pakistan 's Kurram tribal region , near the Afghan border .\tDT NN NN IN NNP VBZ DT JJ NNP NN VBD NNS IN DT NN VBN IN NNP NNS IN NNP POS NNP NN NN , IN DT JJ NN .\nWitnesses say at least 12 people were killed in the missile attack .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NN NN .\nThe security official did not immediately confirm the witnesses ' claims .\tDT NN NN VBD RB RB VB DT NNS POS NNS .\nIf verified , this would be the first suspected drone attack in Kurram .\tIN VBN , DT MD VB DT JJ JJ NN NN IN NNP .\nThe strike comes just days after the new U.S. envoy to the region , Richard Holbrooke , visited Pakistan to talk to senior officials about security in the border region .\tDT NN VBZ RB NNS IN DT JJ NNP NN TO DT NN , NNP NNP , VBD NNP TO VB TO JJ NNS IN NN IN DT NN NN .\nThere have been more than 30 similar missile strikes on Pakistani territory since the middle of last year , despite the public objections of the Pakistani government .\tEX VBP VBN JJR IN CD JJ NN NNS IN JJ NN IN DT NN IN JJ NN , IN DT JJ NNS IN DT JJ NN .\nThe strikes have generally targeted al-Qaida and Taliban militants .\tDT NNS VBP RB VBN NNP CC NNP NNS .\nIran has officially confirmed it has detained an Iranian American in Tehran a week after the United States demanded his release and the release of three other Iranian-Americans .\tNNP VBZ RB VBN PRP VBZ VBN DT JJ NN IN NNP DT NN IN DT NNP NNPS VBD PRP$ NN CC DT NN IN CD JJ NNS .\nA foreign ministry spokesman confirmed the detainment of Ali Shakeri , a peace activist from California Sunday .\tDT JJ NN NN VBD DT NN IN NNP NNP , DT NN NN IN NNP NNP .\nIranian officials previously accused three of the dual nationals of endangering national security , but no information has been given about Shakeri .\tJJ NNS RB VBD CD IN DT JJ NNS IN VBG JJ NN , CC DT NN VBZ VBN VBN IN NNP .\nPresident Bush has called for the detainees to be freed ' immediately and unconditionally . '\tNNP NNP VBZ VBN IN DT NNS TO VB VBN `` RB CC RB . ``\nHe said the four pose no threat to Iran .\tPRP VBD DT CD VBP DT NN TO NNP .\nHe noted they were in Iran either to visit family or conduct humanitarian work .\tPRP VBD PRP VBD IN NNP CC TO VB NN CC NN JJ NN .\nThe Democratic Republic of Congo has transferred a militia leader to the International Criminal Court in the Hague to face war crimes charges .\tDT JJ NNP IN NNP VBZ VBN DT NN NN TO DT NNP NNP NNP IN DT NNP TO VB NN NNS NNS .\nThe head of the Union of Congolese Patriots , Thomas Lubanga , was being flown from the capital Kinshasa to the court 's headquarters Friday .\tDT NN IN DT NNP IN JJ NNPS , NNP NNP , VBD VBG VBN IN DT NN NN TO DT NN POS NN NNP .\nThe court issued an arrest warrant for Lubanga last month , but it was not made public until Friday .\tDT NN VBD DT NN NN IN NNP JJ NN , CC PRP VBD RB VBN JJ IN NNP .\nThe court says there are reasons to believe Lubanga enlisted children under the age of 15 to participate in fighting .\tDT NN VBZ EX VBP NNS TO VB NNP JJ NNS IN DT NN IN CD TO VB IN NN .\nThe rebel leader is to become the first person processed by the court .\tDT JJ NN VBZ TO VB DT JJ NN VBN IN DT NN .\nLubanga has been detained in Kinshasa since his arrest in March 2005 .\tNNP VBZ VBN VBN IN NNP IN PRP$ NN IN NNP CD .\nHis group , dominated by ethnic Hema rebels , is accused of committing widespread human rights violations in Congo 's northeastern Ituri district .\tPRP$ NN , VBN IN JJ NNP NNS , VBZ VBN IN VBG JJ JJ NNS NNS IN NNP POS JJ NNP NN .\nCongo 's five-year civil war ended in 2003 .\tNNP POS JJ JJ NN VBN IN CD .\nThe new chief of the United Nations commission investigating the assassination of former Lebanese Prime Minister Rafik Hariri has arrived in Beirut .\tDT JJ NN IN DT NNP NNPS NN VBG DT NN IN JJ JJ NNP NNP NNP NNP VBZ VBN IN NNP .\nBelgian prosecutor Serge Brammertz says he is acutely aware of the expectations of victims ' families of the February attack and he will do his utmost to meet those expectations .\tJJ NN NNP NNP VBZ PRP VBZ RB JJ IN DT NNS IN NNS POS NNS IN DT NNP NN CC PRP MD VB PRP$ NN TO VB DT NNS .\nBrammertz replaces German prosecutor Detlev Mehlis , who stepped down last month .\tNNP VBZ JJ NN NNP NNP , WP VBD RB JJ NN .\nThe U.N. investigation has already implicated several top Syrian officials in the killing of Mr. Hariri and at least 20 others in a massive bomb attack .\tDT NNP NN VBZ RB VBN JJ JJ JJ NNS IN DT NN IN NNP NNP CC IN JJS CD NNS IN DT JJ NN NN .\nIn October , the U.N. Security Council passed a resolution demanding Syria 's full cooperation with the probe .\tIN NNP , DT NNP NNP NNP VBD DT NN VBG NNP POS JJ NN IN DT NN .\nBut Syria 's president , Bashar al-Assad , has already rejected the commission 's request to interview him .\tCC NNP POS NN , NNP NNP , VBZ RB VBN DT NN POS NN TO VB PRP .\nDamascus has denied it played any role in the assassination .\tNNP VBZ VBN PRP VBD DT NN IN DT NN .\nPolice in Iran have warned that they will confront any opposition protests on the anniversary of the country 's disputed June presidential election .\tNNS IN NNP VBP VBN IN PRP MD VB DT NN NNS IN DT NN IN DT NN POS JJ NNP JJ NN .\nIran 's ILNA news agency quoted Tehran police chief General Hossein Sajedinia as saying that police will confront any illegal gathering .\tNNP POS NNP NN NN VBN NNP NN NN NNP NNP NNP IN VBG IN NNS MD VB DT JJ NN .\nOpposition leaders Mir Hossein Mousavi and Mehdi Karoubi have called on supporters to take part in peaceful protests to mark the June 12 election , which returned President Mahmoud Ahmadinejad to power .\tNN NNS NNP NNP NNP CC NNP NNP VBP VBN IN NNS TO VB NN IN JJ NNS TO VB DT NNP CD NN , WDT VBD NNP NNP NNP TO NN .\nIran 's opposition accuses Mr. Ahmadinejad of rigging the election , adding that Mr. Mousavi was the rightful winner .\tNNP POS NN VBZ NNP NNP IN VBG DT NN , VBG IN NNP NNP VBD DT JJ NN .\nThousands of people were arrested in the post-election protests that left several demonstrators dead .\tNNS IN NNS VBD VBN IN DT JJ NNS WDT VBD JJ NNS JJ .\nMore than 80 people were sentenced to prison terms of up to 15 years in connection with the demonstrations .\tJJR IN CD NNS VBD VBN TO NN NNS IN IN TO CD NNS IN NN IN DT NNS .\nSeveral other activists face death sentences .\tJJ JJ NNS VBP NN NNS .\nLebanese officials say Syria 's military and intelligence withdrawal from Lebanon will be complete ahead of schedule , within the next two days .\tJJ NNS VBP NNP POS JJ CC NN NN IN NNP MD VB JJ RB IN NN , IN DT JJ CD NNS .\nThere were conflicting reports of the exact timing .\tEX VBD VBG NNS IN DT JJ NN .\nA Lebanese military official said Saturday the pullout would be complete by Sunday , while a security official said it would be in the next 48 hours .\tDT JJ JJ NN VBD NNP DT NN MD VB JJ IN NNP , IN DT NN NN VBD PRP MD VB IN DT JJ CD NNS .\nLast week , Syria said the last of its 14,000 troops would be out of Lebanon by Tuesday .\tJJ NN , NNP VBD DT NN IN PRP$ CD NNS MD VB IN IN NNP IN NNP .\nSaturday , a large number of Syrian troops left positions in Lebanon 's eastern Bekaa Valley .\tNNP , DT JJ NN IN JJ NNS VBD NNS IN NNP POS JJ NNP NNP .\nAs Syria prepares to end its 29-year presence in Lebanon , thousands of Maronite Christians marched in the mountains north of Beirut calling for the release of imprisoned anti-Syrian warlord Samir Geagea .\tIN NNP VBZ TO VB PRP$ JJ NN IN NNP , NNS IN NNP NNPS VBD IN DT NNS NN IN NNP VBG IN DT NN IN JJ JJ NN NNP NNP .\nJailed in 1994 , Geagea is serving multiple life sentences for crimes committed during Lebanon 's civil war .\tVBN IN CD , NNP VBZ VBG JJ NN NNS IN NNS VBN IN NNP POS JJ NN .\nBritish airport authorities say service should be back to normal Friday after strict new security measures caused a week of serious flight delays and cancellations .\tJJ NN NNS VBP NN MD VB RB TO JJ NNP IN JJ JJ NN NNS VBD DT NN IN JJ NN NNS CC NNS .\nOfficials banned nearly all liquids and many carry-on items after police last week broke up an alleged plot to blow up passenger planes with liquid explosives .\tNNS VBD RB DT NNS CC JJ JJ NNS IN NNS JJ NN VBD RP DT JJ NN TO VB RP NN NNS IN JJ NNS .\nBritish Airways canceled just 19 flights from London 's Heathrow Airport Thursday .\tNNP NNPS VBD RB CD NNS IN NNP POS NNP NNP NNP .\nHeathrow is also scrambling to return thousands of pieces of luggage left behind by frustrated passengers .\tNNP VBZ RB VBG TO VB NNS IN NNS IN NN VBN IN IN JJ NNS .\nMeanwhile , British and U.S. news reports say police investigating the alleged plot have found a suitcase filled with bomb-making components in the woods northwest of London .\tRB , NNP CC NNP NN NNS VBP NNS VBG DT JJ NN VBP VBN DT NN VBN IN JJ NNS IN DT NNS NN IN NNP .\nOne of the suspects lives in the area .\tCD IN DT NNS VBZ IN DT NN .\nTwenty-three people , most of them British citizens of Pakistani descent , are in police custody in London .\tCD NNS , JJS IN PRP JJ NNS IN JJ NN , VBP IN NN NN IN NNP .\nSeven other suspects are jailed in Pakistan .\tCD JJ NNS VBP VBN IN NNP .\nThe Venezuelan Supreme Court had ruled in favor of a lower court petition seeking extradition from the United States of a Cuban militant wanted in connection with the 1976 bombing of a Cuban Jet liner that killed 73 people .\tDT JJ NNP NNP VBD VBN IN NN IN DT JJR NN NN VBG NN IN DT NNP NNPS IN DT JJ NN VBN IN NN IN DT CD NN IN DT JJ NNP NN WDT VBD CD NNS .\nA statement from the Supreme Court Tuesday said Luis Posada Carriles should be tried in Venezuela .\tDT NN IN DT NNP NNP NNP VBD NNP NNP NNP MD VB VBN IN NNP .\nMr. Posada escaped from a Venezuelan prison before he could be tried in 1985 over the bombing .\tNNP NNP VBD IN DT JJ NN IN PRP MD VB VBN IN CD IN DT NN .\nHe was later jailed in Panama where he was accused in a plot to kill Cuban President Fidel Castro .\tPRP VBD RB VBN IN NNP WRB PRP VBD VBN IN DT NN TO VB JJ NNP NNP NNP .\nHe was pardoned last year on that charge .\tPRP VBD VBN JJ NN IN DT NN .\nMr. Posada applied for asylum in the United States last month .\tNNP NNP VBD IN NN IN DT NNP NNPS JJ NN .\nNew opinion polls indicate Israeli Prime Minister Ariel Sharon 's new party will win a large number of seats in March 's parliamentary elections .\tJJ NN NNS VBP JJ NNP NNP NNP NNP POS JJ NN MD VB DT JJ NN IN NNS IN NNP POS JJ NNS .\nThe polls were published Friday in the Ma'ariv and Yedioth Ahronoth newspapers .\tDT NNS VBD VBN NNP IN DT NNP CC NNP NNP NNS .\nThey say the new party would win at least 33 seats in the 120-member parliament .\tPRP VBP DT JJ NN MD VB IN JJS CD NNS IN DT JJ NN .\nThe polls gave the Labor party at least 26 seats and Mr. Sharon 's former party , Likud , just 13 .\tDT NNS VBD DT NN NN IN JJS CD NNS CC NNP NNP POS JJ NN , NNP , RB CD .\nMr. Sharon quit Likud - the party he co-founded in 1973 - because he said the party was no longer able to lead Israel to its national goals .\tNNP NNP VBD NNP IN DT NN PRP VBD IN CD : IN PRP VBD DT NN VBD RB RB JJ TO VB NNP TO PRP$ JJ NNS .\nEgyptian President Hosni Mubarak has chaired his first Cabinet meeting since undergoing gallbladder surgery last month in Germany .\tJJ NNP NNP NNP VBZ VBN PRP$ JJ NNP NN IN VBG NN NN JJ NN IN NNP .\nMr. Mubarak met with Egyptian Prime Minister Ahmed Nazif and several other government ministers Thursday in the Red Sea resort of Sharm el-Sheikh .\tNNP NNP VBD IN JJ NNP NNP NNP NNP CC JJ JJ NN NNS NNP IN DT NNP NNP NN IN NNP NNP .\nMr. Mubarak temporarily handed over power to Prime Minister Nazif before undergoing surgery in Heidelberg , Germany on March 6 .\tNNP NNP RB VBD IN NN TO NNP NNP NNP IN VBG NN IN NNP , NNP IN NNP CD .\nDoctors removed his gallbladder and a growth in his small intestine .\tNNS VBD PRP$ NN CC DT NN IN PRP$ JJ NN .\nThe 81-year-old president 's absence from public functions had set off new speculation about his frail health .\tDT JJ NN POS NN IN JJ NNS VBD VBN RP JJ NN IN PRP$ JJ NN .\nMr. Mubarak has ruled Egypt for nearly 30 years .\tNNP NNP VBZ VBN NNP IN RB CD NNS .\nHis ruling party is expected to dominate in parliamentary elections later this year and Mr. Mubarak is expected to run for president again next year .\tPRP$ NN NN VBZ VBN TO VB IN JJ NNS RBR DT NN CC NNP NNP VBZ VBN TO VB IN NN RB JJ NN .\nMany political experts also believe President Mubarak is grooming his son , Gamal , to take over .\tJJ JJ NNS RB VBP NNP NNP VBZ VBG PRP$ NN , NNP , TO VB RP .\nIraqi police say a suicide bomber drove a truck into a checkpoint Monday in a town north of Baghdad , killing at least nine people .\tJJ NNS VBP DT NN NN VBD DT NN IN DT NN NNP IN DT NN NN IN NNP , VBG IN JJS CD NNS .\nPolice say the victims were members of a neighborhood patrol ( known as Awakening Councils , ) set up to oppose al-Qaida militants .\tNNS VBP DT NNS VBD NNS IN DT NN NN LRB VBN IN VBG NNS , RRB VBD RP TO VB NNP NNS .\nTwo other people were reported missing and believed to be dead .\tCD JJ NNS VBD VBN VBG CC VBN TO VB JJ .\nThe attack comes just days after the release of a new Internet message purportedly by al-Qaida leader Osama bin Laden .\tDT NN VBZ RB NNS IN DT NN IN DT JJ NNP NN RB IN NNP NN NNP NNP NNP .\nHe warned Iraqis not to take up arms against his movement or to support the unity government .\tPRP VBD NNS RB TO VB RP NNS IN PRP$ NN CC TO VB DT NN NN .\nIn a separate incident today , authorities said at least two Iraqi soldiers were killed and two others wounded when a roadside bomb struck their patrol near the Iranian border in Diyala province .\tIN DT JJ NN NN , NNS VBD IN JJS CD JJ NNS VBD VBN CC CD NNS VBD WRB DT NN NN VBD PRP$ NN IN DT JJ NN IN NNP NN .\nSeveral U.S. lawmakers have expressed concern about the possible nomination of Air Force General Michael Hayden to become the next director of the Central Intelligence Agency .\tJJ NNP NNS VBP VBN NN IN DT JJ NN IN NNP NNP NNP NNP NNP TO VB DT JJ NN IN DT NNP NNP NNP .\nSenior Bush administration officials have said General Hayden may be named to replace Porter Goss , who announced his resignation on Friday .\tNNP NNP NN NNS VBP VBN NNP NNP MD VB VBN TO VB NNP NNP , WP VBD PRP$ NN IN NNP .\nBut Republican Congressman Pete Hoekstra said a military official should not be in charge of the CIA because it is a civilian agency .\tCC NNP NNP NNP NNP VBD DT JJ NN MD RB VB IN NN IN DT NNP IN PRP VBZ DT JJ NN .\nHe told Fox News Sunday that the appointment of General Hayden could raise tensions between the CIA and defense officials .\tPRP VBD NNP NNP NNP IN DT NN IN NNP NNP MD VB NNS IN DT NNP CC NN NNS .\nSenators Diane Feinstein , a Democrat , and Saxby Chambliss , a Republican , also expressed concern over placing a military official in charge of the CIA .\tNNP NNP NNP , DT NNP , CC NNP NNP , DT NNP , RB VBD NN IN VBG DT JJ NN IN NN IN DT NNP .\nBut Republican Senator John McCain told CBS television that he hopes that , if nominated , General Hayden would be confirmed quickly in congressional hearings .\tCC NNP NNP NNP NNP VBD NNP NN IN PRP VBZ IN , IN VBN , NNP NNP MD VB VBN RB IN JJ NNS .\nAfghan authorities say at least two Taleban insurgents have been killed and six others captured , while two Afghan soldiers and a civilian were wounded in separate incidents .\tJJ NNS VBP IN JJS CD NNP NNS VBP VBN VBN CC CD NNS VBD , IN CD JJ NNS CC DT JJ VBD VBN IN JJ NNS .\nLocal officials say the militants were killed overnight in southern Helmand province after Taleban forces attacked a police post there .\tJJ NNS VBP DT NNS VBD VBN JJ IN JJ NNP NN IN NNP NNS VBD DT NN NN RB .\nNo police casualties were reported .\tDT NN NNS VBD VBN .\nIn another incident late Monday , in southeastern Paktika province , security forces arrested six insurgents following a brief exchange of fire .\tIN DT NN RB NNP , IN JJ NNP NN , NN NNS VBN CD NNS VBG DT JJ NN IN NN .\nA spokesman for the provincial governor said a mid-level Taleban commander , Mullah Akhtar Mohammad , is among the arrested .\tDT NN IN DT JJ NN VBD DT JJ NNP NN , NNP NNP NNP , VBZ IN DT VBN .\nAnd , in eastern Khost province , at least two Afghan soldiers and a civilian were wounded when an army vehicle was struck by a roadside bomb .\tCC , IN JJ NNP NN , IN JJS CD JJ NNS CC DT JJ VBD VBN WRB DT NN NN VBD VBN IN DT NN NN .\nAfghanistan 's southern regions have seen some of the worst fighting in recent months since the Taleban regime was ousted from power in 2001 .\tNNP POS JJ NNS VBP VBN DT IN DT JJS NN IN JJ NNS IN DT NNP NN VBD VBN IN NN IN CD .\nIn Moscow , the lower house of Parliament has approved President Vladimir Putin 's controversial plan to end popular elections for Russia 's regional governors , and allow the Kremlin to appoint them instead .\tIN NNP , DT JJR NN IN NNP VBZ VBN NNP NNP NNP POS JJ NN TO VB JJ NNS IN NNP POS JJ NNS , CC VB DT NNP TO VB PRP RB .\nMr. Putin says such changes are necessary to block terrorists from trying to influence Russia 's local elections , but critics across the political spectrum say his plan is undemocratic .\tNNP NNP VBZ JJ NNS VBP JJ TO VB NNS IN VBG TO VB NNP POS JJ NNS , CC NNS IN DT JJ NN VBP PRP$ NN VBZ JJ .\nThe bill won final approval in the State Duma by a wide margin Friday .\tDT NN VBD JJ NN IN DT NN NNP IN DT JJ NN NNP .\nIt is expected to pass easily in the upper house .\tPRP VBZ VBN TO VB RB IN DT JJ NN .\nThe central government proposes that the Kremlin should select gubernatorial candidates , whose appointment would have to be confirmed by regional lawmakers .\tDT JJ NN VBZ IN DT NNP MD VB JJ NNS , WP$ NN MD VB TO VB VBN IN JJ NNS .\nIf a provincial parliament rejects a governor chosen by Moscow , Mr. Putin could either dissolve the local body or over-rule its veto by appointing an acting governor .\tIN DT JJ NN VBZ DT NN VBN IN NNP , NNP NNP MD RB VB DT JJ NN CC JJ PRP$ NN IN VBG DT JJ NN .\nA British court has set a September trial date for five men accused of planning to detonate bombs on London 's transport system .\tDT JJ NN VBZ VBN DT NNP NN NN IN CD NNS VBN IN VBG TO VB NNS IN NNP POS NN NN .\nThe defendants appeared before London 's Old Bailey court Thursday via videolink from a high-security prison .\tDT NNS VBD IN NNP POS NNP NNP NN NNP IN NN IN DT JJ NN .\nNo one was hurt in the July 21 attacks when four of the men , ranging in ages from 23 to 27 , tried to detonate bombs at three subway stations and a bus on July 21 .\tDT NN VBD VBN IN DT NNP CD NNS WRB CD IN DT NNS , VBG IN NNS IN CD TO CD , VBD TO VB NNS IN CD NN NNS CC DT NN IN NNP CD .\nA fifth man was arrested after explosives were discovered in his backpack in London .\tDT JJ NN VBD VBN IN NNS VBD VBN IN PRP$ NN IN NNP .\nThe charges against the men include attempted murder , possession of explosives and conspiracy to murder .\tDT NNS IN DT NNS VBP JJ NN , NN IN NNS CC NN TO NN .\nThe bomb attempts came two weeks after suicide bombers killed 52 people in the London subway system and a bus .\tDT NN NNS VBD CD NNS IN NN NNS VBD CD NNS IN DT NNP NN NN CC DT NN .\nTwo U.S. lawmakers have formed a caucus to help mobilize support for Tibet 's exiled spiritual leader , the Dalai Lama , and to bring attention to China 's rule over the Tibetan people .\tCD NNP NNS VBP VBN DT NN TO VB VB NN IN NNP POS JJ JJ NN , DT NNP NNP , CC TO VB NN TO NNP POS NN IN DT JJ NNS .\nRepublican Congressman Dana Rohrabacher of California and Democrat Neil Abercrombie of Hawaii plan to co-chair the caucus .\tNNP NNP NNP NNP IN NNP CC NNP NNP NNP IN NNP NN TO VB DT NN .\nIn a statement Tuesday , Rohrabacher said he and Abercrombie urge other members of Congress to join the caucus to uphold the rights of Tibet 's people and give a voice to those silenced by China 's government .\tIN DT NN NNP , NNP VBD PRP CC NNP VBP JJ NNS IN NNP TO VB DT NN TO VB DT NNS IN NNP POS NNS CC VB DT NN TO DT VBN IN NNP POS NN .\nRohrabacher also said the U.S. can not hide behind the spirit of the Olympics this August in Beijing as an excuse to ignore what the congressman called China 's ' horrifying ' human rights record .\tNNP RB VBD DT NNP MD RB VB IN DT NN IN DT NNPS DT NNP IN NNP IN DT NN TO VB WP DT NN VBD NNP POS `` VBG `` JJ NNS NN .\nChina has controlled Tibet since 1951 and accuses the Dalai Lama of seeking independence for the region .\tNNP VBZ VBN NNP IN CD CC VBZ DT NNP NNP IN VBG NN IN DT NN .\nThe spiritual leader insists he only wants autonomy for Tibetans under Chinese sovereignty .\tDT JJ NN VBZ PRP RB VBZ NN IN NNS IN JJ NN .\nHurricane Katrina has battered southern Florida with high winds and heavy rain , leaving at least three people dead before moving out over the Gulf of Mexico .\tNNP NNP VBZ VBN JJ NNP IN JJ NNS CC JJ NN , VBG IN JJ CD NNS JJ IN VBG RP IN DT NNP IN NNP .\nThe 11th named storm of this year 's Atlantic hurricane season came ashore Thursday between Hallandale Beach and North Miami Beach , packing 130 kilometer-per-hour winds .\tDT JJ VBN NN IN DT NN POS NNP NN NN VBD RB NNP IN NNP NNP CC NNP NNP NNP , VBG CD JJ NNS .\nIt knocked down trees , flooded streets and left more than one million people without power .\tPRP VBD RP NNS , VBN NNS CC VBD JJR IN CD CD NNS IN NN .\nThe U.S. National Weather Service says Katrina temporarily lost some strength early Friday , but regained hurricane status as it moved over the Gulf of Mexico .\tDT NNP NNP NNP NNP VBZ NNP RB VBD DT NN JJ NNP , CC VBD NN NN IN PRP VBD IN DT NNP IN NNP .\nForecasters anticipate the storm will turn north in the Gulf as it strengthens and could strike Florida 's panhandle in the coming days .\tNNS VBP DT NN MD VB RB IN DT NNP IN PRP VBZ CC MD VB NNP POS NN IN DT JJ NNS .\nThe Goldman Environmental Prize is awarded to environmental activists around the world annually for what the Goldman foundation calls ' environmental grass roots heroism . '\tDT NNP NNP NNP VBZ VBN TO JJ NNS IN DT NN RB IN WP DT NNP NN VBZ `` JJ NN NNS NN . ``\nThe prize carries with it $ 1,50,000 and has been called the nobel prize for the environment .\tDT NN VBZ IN PRP $ CD CC VBZ VBN VBN DT NN NN IN DT NN .\nThis year 's winner from Europe is Belgium 's Ignace Schops .\tDT NN POS NN IN NNP VBZ NNP POS NNP NNP .\nVOA'S Paul Sisco has his story and the story of the national park he helped establish .\tNNP NNP NNP VBZ PRP$ NN CC DT NN IN DT JJ NN PRP VBD VB .\nBosnia 's Foreign Minister Mladen Ivanic has resigned two days after the United States and the top International mediator in Bosnia-Herzegovina imposed new sanctions against the country 's Serb Republic .\tNNP POS NNP NNP NNP NNP VBZ VBN CD NNS IN DT NNP NNPS CC DT JJ NNP NN IN NNP VBD JJ NNS IN DT NN POS JJ NNP .\nMr. Ivanic is chairman of the Serb Party of Democratic Progress , one of two Bosnian Serb political movements , whose leaders have been barred from entering the United States for undermining Balkan peace efforts .\tNNP NNP VBZ NN IN DT JJ NNP IN JJ NNP , CD IN CD JJ JJ JJ NNS , WP$ NNS VBP VBN VBN IN VBG DT NNP NNPS IN VBG JJ NN NNS .\nThe other is the Serb Democratic Party , founded by indicted war crimes suspect Radovan Karadzic .\tDT NN VBZ DT JJ NNP NNP , VBN IN VBN NN NNS VBP NNP NNP .\nAs the United States announced the measures , International mediator Paddy Ashdown fired six top Bosnian Serb police officers and three other government officials for failing to arrest war crimes suspects .\tIN DT NNP NNPS VBD DT NNS , JJ NN NNP NNP VBD CD JJ JJ JJ NN NNS CC CD JJ NN NNS IN VBG TO VB NN NNS NNS .\nMr. Ashdown acted under wide powers the international community granted him to insure compliance with the 1995 Dayton Peace accord that halted the Balkan conflict .\tNNP NNP VBD IN JJ NNS DT JJ NN VBD PRP TO VB NN IN DT CD NNP NNP NN WDT VBD DT JJ NN .\nBosnian Serb Prime Minister Dragan Mikerevic resigned Friday to protest the dismissals .\tJJ JJ NNP NNP NNP NNP VBD NNP TO VB DT NNS .\nNegotiators in Beijing will resume work Sunday on forging an agreement to end the North Korean nuclear crisis .\tNNS IN NNP MD VB NN NNP IN VBG DT NN TO VB DT JJ JJ JJ NN .\nChina presented a draft statement Saturday , and U.S. envoy Christopher Hill said the draft represents a good basis for the negotiations .\tNNP VBD DT NN NN NNP , CC NNP NN NNP NNP VBD DT NN VBZ DT JJ NN IN DT NNS .\nMr. Hill said he expects the Sunday session to be devoted to building a final text .\tNNP NNP VBD PRP VBZ DT NNP NN TO VB VBN TO VBG DT JJ NN .\nNegotiators from both Koreas , China , Russia , Japan and the United States are involved in the talks .\tNNS IN DT NNP , NNP , NNP , NNP CC DT NNP NNPS VBP VBN IN DT NNS .\nMr. Hill said there is a consensus on making the Korean peninsula nuclear-free , but he added that obstacles remain .\tNNP NNP VBD EX VBZ DT NN IN VBG DT JJ NN JJ , CC PRP VBD IN NNS VBP .\nDiplomats have said Pyongyang is sticking to its demand that it receive aid and security guarantees before dismantling its nuclear programs , while Washington wants to see the programs scrapped first .\tNNS VBP VBN NNP VBZ VBG TO PRP$ NN IN PRP VBP NN CC NN NNS IN VBG PRP$ JJ NNS , IN NNP VBZ TO VB DT NNS VBD RB .\nThe United States has urged Haiti to speed up planning for its elections , now scheduled for mid-December .\tDT NNP NNPS VBZ VBN NNP TO VB RP NN IN PRP$ NNS , RB VBN IN NN .\nIn New York Tuesday , U.S. Undersecretary of State Nicholas Burns said Washington expects Port-au-Prince to work with greater speed and efficiency in organizing the elections .\tIN NNP NNP NNP , NNP NNP IN NNP NNP NNP VBD NNP VBZ NN TO VB IN JJR NN CC NN IN VBG DT NNS .\nThe balloting for president and 129 parliamentary seats was first slated for October , then postponed until November .\tDT NN IN NN CC CD JJ NNS VBD RB VBN IN NNP , RB VBD IN NNP .\nHaiti 's interim prime minister , Gerard Latortue , told U.N. officials Tuesday the elections will now be held between December 11 and 18 .\tNNP POS JJ JJ NN , NNP NNP , VBD NNP NNS NNP DT NNS MD RB VB VBN IN NNP CD CC CD .\nMeanwhile , the U.N. Security Council urged Haitian authorities to work with the U.N. Stabilization Mission to develop an electoral plan .\tRB , DT NNP NNP NNP VBD JJ NNS TO VB IN DT NNP NNP NNP TO VB DT JJ NN .\nIt said national reconciliation and political dialogue should be promoted as a means to ensure long-term stability and good governance .\tPRP VBD JJ NN CC JJ NN MD VB VBN IN DT NN TO VB JJ NN CC JJ NN .\nThe elections will be the first since former President Jean-Bertrand Aristide fled the country in February 2004 .\tDT NNS MD VB DT JJ IN JJ NNP NNP NNP VBD DT NN IN NNP CD .\nIsrael says residents of a small Jewish settlement in the Gaza Strip have agreed to relocate to Israel , rather than resist the planned removal of all settlers from the occupied territory next year .\tNNP VBZ NNS IN DT JJ JJ NN IN DT NNP NNP VBP VBN TO VB TO NNP , RB IN VB DT JJ NN IN DT NNS IN DT JJ NN JJ NN .\nThe official in charge of the Israeli government plan to evacuate all 8,000 Gaza settlers next year says 25 families in the Pe'at Sadeh settlement will voluntarily move together to southern Israel in March .\tDT NN IN NN IN DT JJ NN NN TO VB DT CD NNP NNS JJ NN VBZ CD NNS IN DT NNP NNP NN MD RB VB RB TO JJ NNP IN NNP .\nThe settlement would be the first to be dismantled under Prime Minister Ariel Sharon 's evacuation plan , which has drawn calls for resistance from the top settler council .\tDT NN MD VB DT JJ TO VB VBN IN NNP NNP NNP NNP POS NN NN , WDT VBZ VBN NNS IN NN IN DT JJ NN NN .\nThe Sharon government has offered cash incentives for Gaza settlers willing to leave before the withdrawal , which is scheduled to begin in about eight months .\tDT NNP NN VBZ VBN NN NNS IN NNP NNS JJ TO VB IN DT NN , WDT VBZ VBN TO VB IN IN CD NNS .\nTibetans living in India are preparing to demonstrate in New Delhi during the four-day official visit by Chinese President Hu Jintao that begins Monday .\tNNS VBG IN NNP VBP VBG TO VB IN NNP NNP IN DT JJ JJ NN IN JJ NNP NNP NNP WDT VBZ NNP .\nMembers of the Tibet Youth Congress said they want to highlight Tibet 's issues during the visit .\tNNS IN DT NNP NNP NNP VBD PRP VBP TO VB NNP POS NNS IN DT NN .\nTibetan organizations and Tibet support groups said that , in addition to the planned protests in New Delhi , they also plan demonstrations in other parts of the country .\tJJ NNS CC NNP NN NNS VBD IN , IN NN TO DT JJ NNS IN NNP NNP , PRP RB VBP NNS IN JJ NNS IN DT NN .\nIndian authorities have reportedly asked Tibetans to leave the city center and told students to stay inside their dormitories during Mr. Hu 's visit .\tJJ NNS VBP RB VBN NNS TO VB DT NN NN CC VBD NNS TO VB IN PRP$ NNS IN NNP NNP POS NN .\nThey said they will take appropriate action against those who disobey the order .\tPRP VBD PRP MD VB JJ NN IN DT WP VBP DT NN .\nIn the northern Indian town of Dharamsala , Tibet 's parliament-in-exile called on the Chinese leader to meet with Tibet 's exiled spiritual leader , the Dalai Lama , to discuss the future of Tibet .\tIN DT JJ JJ NN IN NNP , NNP POS JJ VBN IN DT JJ NN TO VB IN NNP POS JJ JJ NN , DT NNP NNP , TO VB DT NN IN NNP .\nA U.S. newspaper says HIV / AIDS among infants in the United States may be nearly eliminated by next year .\tDT NNP NN VBZ NNP NNP NNP IN NNS IN DT NNP NNPS MD VB RB VBN IN JJ NN .\nThe New York Times reports Sunday that the number of infants born in the United States with AIDS or HIV , the virus that causes AIDS , has dropped to about 200 a year , from nearly 2,000 in 1990 .\tDT NNP NNP NNP VBZ NNP IN DT NN IN NNS VBN IN DT NNP NNPS IN NNP CC NNP , DT NN WDT VBZ NNP , VBZ VBN TO RB CD DT NN , IN RB CD IN CD .\nIt said in New York City alone , the figure has dropped from 321 in 1990 to just five in 2003 because of success in fighting mother-to-child transmission .\tPRP VBD IN NNP NNP NNP RB , DT NN VBZ VBN IN CD IN CD TO RB CD IN CD IN IN NN IN VBG NN NN .\nThe paper said that was achieved through use of better drugs , public education and testing , and cooperation at federal and local levels .\tDT NN VBD DT VBD VBN IN NN IN JJR NNS , JJ NN CC NN , CC NN IN JJ CC JJ NNS .\nBut the report warned that much of the rest of the world continues to be ravaged by AIDS , including more than two million people in sub-Saharan Africa last year .\tCC DT NN VBD IN NN IN DT NN IN DT NN VBZ TO VB VBN IN NNP , VBG JJR IN CD CD NNS IN JJ NNP JJ NN .\nFrance 's foreign minister says European states could impose unilateral sanctions on Iran if the United Nations fails to pass its own sanctions .\tNNP POS JJ NN VBZ JJ NNS MD VB JJ NNS IN NNP IN DT NNP NNPS VBZ TO VB PRP$ JJ NNS .\nBernard Kouchner told reporters in Finland Sunday that efforts should first be devoted to passing a resolution in the U.N. Security Council .\tNNP NNP VBD NNS IN NNP NNP IN NNS MD RB VB VBN TO VBG DT NN IN DT NNP NNP NNP .\nBut he said if that does not happen , France may propose sanctions on Iran 's banks and insurance companies , and on travel permits for specific people .\tCC PRP VBD IN DT VBZ RB VB , NNP MD VB NNS IN NNP POS NNS CC NN NNS , CC IN NN NNS IN JJ NNS .\nKouchner spoke to reporters outside a meeting of European Union foreign ministers in northern Finland .\tNNP VBD TO NNS IN DT NN IN NNP NNP JJ NNS IN JJ NNP .\nOn Saturday , his Finnish counterpart , Alexander Stubb , said there was enough agreement within the EU to impose unilateral sanctions on Iran .\tIN NNP , PRP$ JJ NN , NNP NNP , VBD EX VBD JJ NN IN DT NNP TO VB JJ NNS IN NNP .\nWestern members of the U.N. Security Council support a fourth round of sanctions against Iran , but veto-wielding China is urging more diplomacy .\tJJ NNS IN DT NNP NNP NNP NN DT JJ NN IN NNS IN NNP , CC JJ NNP VBZ VBG RBR NN .\nWestern nations accuse Iran of seeking a nuclear weapon .\tJJ NNS VBP NNP IN VBG DT JJ NN .\nTehran says it is working on nuclear energy projects .\tNNP VBZ PRP VBZ VBG IN JJ NN NNS .\nPalestinian President Mahmoud Abbas says talks between his Fatah party and the ruling militant group Hamas on forming a coalition government have broken down .\tJJ NNP NNP NNP VBZ NNS IN PRP$ NNP NN CC DT NN JJ NN NNP IN VBG DT NN NN VBP VBN RP .\nMr. Abbas made the comment Wednesday in Ramallah before a meeting with U.S. Secretary of State Condoleezza Rice .\tNNP NNP VBD DT NN NNP IN NNP IN DT NN IN NNP NNP IN NNP NNP NNP .\nMr. Abbas ' Fatah faction has been locked in a power struggle with Hamas - even as the two sides tried to form a unity government .\tNNP NNP POS NNP NN VBZ VBN VBN IN DT NN NN IN NNP : RB IN DT CD NNS VBD TO VB DT NN NN .\nFighting between the sides has claimed 12 lives since Sunday .\tVBG IN DT NNS VBZ VBN CD NNS IN NNP .\nIn other news , Palestinian officials say unidentified gunmen killed a local Hamas leader , Mohammed Odde , as he left a mosque in a West Bank village .\tIN JJ NN , JJ NNS VBP JJ NNS VBD DT JJ NNP NN , NNP NNP , IN PRP VBD DT NN IN DT NNP NNP NN .\nOn Tuesday , a militant faction linked to Fatah threatened to kill several Hamas leaders as part of the escalating power struggle .\tIN NNP , DT JJ NN VBN TO NNP VBD TO VB JJ NNP NNS IN NN IN DT VBG NN NN .\nThe Al-Aqsa Martyrs Brigades warned in a leaflet that it will target exiled Hamas political leader Khaled Mashaal and two senior officials in the Palestinian interior ministry .\tDT NNP NNP NNP VBD IN DT NN IN PRP MD VB VBN NNP JJ NN NNP NNP CC CD JJ NNS IN DT JJ JJ NN .\nIt 's Christmas Eve in the Holy Land and festivities have already begun in the little town of Bethlehem .\tPRP VBZ NNP NNP IN DT NNP NNP CC NNS VBP RB VBN IN DT JJ NN IN NNP .\nPalestinian boy and girl scouts are marching through Manger Square here in Bethlehem , kicking off Christmas Eve celebrations .\tJJ NN CC NN NNS VBP VBG IN NNP NNP RB IN NNP , VBG RP NNP NNP NNS .\nThey are passing the ancient Church of the Nativity , the site where tradition says Jesus was born .\tPRP VBP VBG DT JJ NN IN DT NNP , DT NN WRB NN VBZ NNP VBD VBN .\nReligion is mixing with nationalism here : decorations include Christmas trees and lights and Palestinian flags .\tNNP VBZ VBG IN NN RB IN NNS VBP NNP NNS CC NNS CC JJ NNS .\nAlthough Palestinians complain about Israel 's separation wall at the entrance to Bethlehem , the mood is upbeat this Christmas .\tIN NNS VBP IN NNP POS NN NN IN DT NN TO NNP , DT NN VBZ JJ DT NNP .\nBethlehem is enjoying a boom in tourism thanks to a lull in violence .\tNNP VBZ VBG DT NN IN NN NNS TO DT NN IN NN .\nAbout 50,000 visitors are expected for Christmas , giving a boost to the Palestinian economy .\tIN CD NNS VBP VBN IN NNP , VBG DT NN TO DT JJ NN .\nThe South Korean leg of the Olympic Torch relay is under way in the capital of Seoul under heavy security .\tDT JJ JJ NN IN DT NNP NNP NN VBZ IN NN IN DT NN IN NNP IN JJ NN .\nAuthorities say more than 8,000 riot police have been deployed to provide security for the relay .\tNNS VBP JJR IN CD NN NNS VBP VBN VBN TO VB NN IN DT NN .\nAt least two human rights groups have promised to try to disrupt the relay .\tIN JJS CD JJ NNS NNS VBP VBN TO VB TO VB DT NN .\nThey want China to stop deporting North Korean refugees , who face stiff punishment or execution for fleeing the north .\tPRP VBP NNP TO VB VBG JJ JJ NNS , WP VBP JJ NN CC NN IN VBG DT NN .\nThe Japanese leg of the relay took place Saturday , with a few demonstrators throwing objects into the torch 's path and scuffles between protesters and police .\tDT JJ NN IN DT NN VBD NN NNP , IN DT JJ NNS VBG NNS IN DT NN POS NN CC VBZ IN NNS CC NNS .\nAt least one person was detained as the torch made its way through the streets of the northern city of Nagano .\tIN JJS CD NN VBD VBN IN DT NN VBD PRP$ NN IN DT NNS IN DT JJ NN IN NNP .\nThe torch run has been disrupted in other major cities in recent weeks by protesters condemning Chinese human rights practices , especially its forceful suppression of demonstrations in Tibet .\tDT NN NN VBZ VBN VBN IN JJ JJ NNS IN JJ NNS IN NNS VBG JJ JJ NNS NNS , RB PRP$ JJ NN IN NNS IN NNP .\nAn audio recording purported to be of the leader of al-Qaida in Iraq has been posted on the Internet , four days after reports he had been killed in a clash among members of his insurgent group .\tDT NN NN VBN TO VB IN DT NN IN NNP IN NNP VBZ VBN VBN IN DT NNP , CD NNS IN NNS PRP VBD VBN VBN IN DT NN IN NNS IN PRP$ JJ NN .\nThe voice said to be that of Abu Ayyub al-Masri denied reported internal fighting among Sunni Arab militants .\tDT NN VBD TO VB IN IN NNP NNP NNP VBD VBN JJ NN IN NNP NNP NNS .\nIn the statement , posted on a militant Web site , Masri criticized the Iraqi Islamic Party headed by Vice President Tareq al-Hashimi for working with the government of Prime Minister Nouri al-Maliki .\tIN DT NN , VBN IN DT JJ NN NN , NNP VBD DT JJ NNP NNP VBN IN NNP NNP NNP NNP IN VBG IN DT NN IN NNP NNP NNP NNP .\nIraq 's Interior Ministry said Tuesday intelligence reports indicated Masri had been killed in fighting north of Baghdad .\tNNP POS NNP NNP VBD NNP NN NNS VBD NNP VBD VBN VBN IN VBG NN IN NNP .\nThe U.S. military has not confirmed the report .\tDT NNP NN VBZ RB VBN DT NN .\nMasri , an Egyptian , assumed leadership of al-Qaida in Iraq from Abu Musab al-Zarqawi after the Jordanian militant was killed in a U.S. airstrike last June .\tNNP , DT NN , VBD NN IN NNP IN NNP IN NNP NNP NNP IN DT JJ NN VBD VBN IN DT NNP NN JJ NNP .\nIraqi officials say at least three people were killed Thursday in a series of bomb attacks apparently targeting police and government officials .\tJJ NNS VBP IN JJS CD NNS VBD VBN NNP IN DT NN IN NN NNS RB VBG NNS CC NN NNS .\nInvestigators say a suicide bombing outside of the federal police headquarters in the city of Mosul killed two police officers and left at least eight people wounded .\tNNS VBP DT NN VBG IN IN DT JJ NN NN IN DT NN IN NNP VBD CD NNS NNS CC VBD IN JJS CD NNS VBN .\nIn Baghdad , a high-ranking security official died after a bomb attached to his car exploded .\tIN NNP , DT JJ NN NN VBD IN DT NN VBN TO PRP$ NN VBD .\nA second official was wounded in the blast .\tDT JJ NN VBD VBN IN DT NN .\nA separate car explosion in Baghdad injured a ministry official .\tDT JJ NN NN IN NNP VBD DT NN NN .\nZimbabwe 's state-run newspaper reports police have arrested nearly 15,000 people in a new crackdown on illegal vendors .\tNNP POS JJ NN NNS NNS VBP VBN RB CD NNS IN DT JJ NN IN JJ NNS .\nThe Herald reports that over the last two weeks , police have rounded up 14,706 individuals whom the paper described as street people , touts and illegal currency and fuel dealers .\tDT NNP VBZ IN IN DT JJ CD NNS , NNS VBP VBN RP CD NNS WP DT NN VBD IN NN NNS , NNS CC JJ NN CC NN NNS .\nThe report says the operation was designed as a follow-up to ' Restore Order , ' when Zimbabwe 's government destroyed unauthorized dwellings and market stalls in what it said was a bid to end urban crime .\tDT NN VBZ DT NN VBD VBN IN DT NN TO `` NNP NNP , `` WRB NNP POS NN VBD JJ NNS CC NN NNS IN WP PRP VBD VBD DT NN TO VB JJ NN .\nThe newspaper says criminals were returning to the same neighborhoods .\tDT NN VBZ NNS VBD VBG TO DT JJ NNS .\nA United Nations fact-finding mission called the policy disastrous and inhumane .\tDT NNP NNPS JJ NN VBD DT NN JJ CC JJ .\nIt estimated some 7,00,000 people lost their homes and businesses .\tPRP VBD DT CD NNS VBD PRP$ NNS CC NNS .\nZimbabwe has promised to build new housing for those it displaced .\tNNP VBZ VBN TO VB JJ NN IN DT PRP VBD .\nPakistani officials say missiles fired from a U.S. drone aircraft have killed at least five suspected militants in the northwest tribal region near the Afghan border .\tJJ NNS VBP NNS VBN IN DT NNP NN NN VBP VBN IN JJS CD JJ NNS IN DT JJS JJ NN IN DT JJ NN .\nAuthorities say three missiles struck a compound Monday about 25 kilometers east of Miranshah , the main town in North Waziristan , a known insurgent stronghold .\tNNS VBP CD NNS VBD DT NN NNP IN CD NNS RB IN NNP , DT JJ NN IN NNP NNP , DT VBN JJ NN .\nIn recent months , the United States has increased missile attacks by pilot-less drones against suspected al-Qaida and Taliban hide-outs in Pakistan 's northwest .\tIN JJ NNS , DT NNP NNPS VBZ VBN NN NNS IN JJ NNS IN JJ NNP CC NNP NNS IN NNP POS NN .\nElsewhere in the tribal region , officials said Monday that Taliban militants kidnapped and killed a pro-government tribal elder , Maulana Abdul Haleem , and dumped his body in Bajaur .\tRB IN DT JJ NN , NNS VBD NNP IN NNP NNS VBD CC VBD DT JJ NN NN , NNP NNP NNP , CC VBD PRP$ NN IN NNP .\nHere are the prices of some key commodities traded in New York on Tuesday :\tRB VBP DT NNS IN DT JJ NNS VBN IN NNP NNP IN NNP :\nThe price of crude oil rose nearly $ 2 to settle at $ 121.79 a barrel .\tDT NN IN JJ NN VBD RB $ CD TO VB IN $ CD DT NN .\nEarlier , oil prices went as high at $ 122.73 a barrel , a record high .\tRB , NN NNS VBD RB JJ IN $ CD DT NN , DT NN NN .\nCoffee prices rose more than one cent to finish the day at $ 1.329 a pound .\tNNP NNS VBD RBR IN CD NN TO VB DT NN IN $ CD DT NN .\nCopper prices fell more than $ 0.65 to close at $ 3.913 a pound .\tNN NNS VBD RBR IN $ CD TO VB IN $ CD DT NN .\nAnd cocoa futures soared $ 91 to end at $ 2,781 a ton .\tCC NN NNS VBD $ CD TO VB IN $ CD DT NN .\nJapan 's foreign minister has warned North Korea that time is running out to stop its nuclear weapons program before Tokyo and its allies impose economic sanctions .\tNNP POS JJ NN VBZ VBN NNP NNP IN NN VBZ VBG RP TO VB PRP$ JJ NNS NN IN NNP CC PRP$ NNS VB JJ NNS .\nIn an interview on Japan 's NHK television Sunday , Nobutaka Machimura said that if the situation continues for a year or two , the issue will have to be sent to the UN Security Council .\tIN DT NN IN NNP POS NNP NN NNP , NNP NNP VBD IN IN DT NN VBZ IN DT NN CC CD , DT NN MD VB TO VB VBN TO DT NNP NNP NNP .\nMr. Machimura said Tokyo could also start economic sanctions if Pyongyang does not tell the truth about eight of 13 Japanese citizens who were abducted to train spies during the Cold War .\tNNP NNP VBD NNP MD RB VB JJ NNS IN NNP VBZ RB VB DT NN IN CD IN CD JJ NNS WP VBD VBN TO VB NNS IN DT NNP NNP .\nNorth Korea says the eight are dead , but Japan suspects they could still be alive .\tNNP NNP VBZ DT CD VBP JJ , CC NNP VBZ PRP MD RB VB JJ .\nTwo sets of remains turned over last month proved not to be those of two abductees .\tCD NNS IN NNS VBD RP JJ NN VBD RB TO VB DT IN CD NNS .\nA British court has sentenced a Saudi prince to at least 20 years in prison for beating and strangling his aide in a London hotel .\tDT JJ NN VBZ VBN DT JJ NN TO IN JJS CD NNS IN NN IN NN CC VBG PRP$ NN IN DT NNP NN .\nA judge on Wednesday told Prince Saud Abdulaziz bin Nasser al Saud that no one is above the law .\tDT NN IN NNP VBD NNP NNP NNP NNP NNP NNP NN IN DT NN VBZ IN DT NN .\nBandar Abdulaziz was found dead in a hotel room in February .\tNNP NNP VBD VBN JJ IN DT NN NN IN NNP .\nThe prince had admitted to manslaughter , but denied intending to kill the man .\tDT NN VBD VBN TO VB , CC VBD VBG TO VB DT NN .\nProsecutors said the victim had been badly beaten and that his injuries showed there was a ' sexual element ' to the attack .\tNNS VBD DT NN VBD VBN RB JJ CC IN PRP$ NNS VBD EX VBD DT `` JJ NN `` TO DT NN .\nIndianapolis Colts quarterback Peyton Manning has found another place in the National Football League record book while leading his team to a 41-9 victory in Detroit over the Lions .\tNNP NNP NN NNP NNP VBZ VBN DT NN IN DT NNP NNP NNP NN NN IN VBG PRP$ NN TO DT JJ NN IN NNP IN DT NNS .\nManning threw six touchdowns Thursday and raised his season total to 41 scoring passes .\tNNP VBD CD NNS NNP CC VBD PRP$ NN NN TO CD VBG NNS .\nManning set an NFL record with at least four touchdown passes in a fifth straight game .\tNNP VBD DT NNP NN IN IN JJS CD JJ NNS IN DT JJ JJ NN .\nThe retired Dan Marino had a four-game streak with at least four touchdowns in 1984 , when he also set a record 48 scoring passes in a single season .\tDT JJ NNP NNP VBD DT JJ NN IN IN JJS CD NNS IN CD , WRB PRP RB VBD DT NN CD VBG NNS IN DT JJ NN .\nTwo struggling teams played in Dallas , where a late scoring burst gave the host Cowboys a 21-Jul win over the Chicago Bears .\tCD VBG NNS VBN IN NNP , WRB DT JJ NN NN VBD DT NN NNS DT JJ NN IN DT NNP NNPS .\nJulius Jones had two touchdowns for Dallas , including his first career NFL score .\tNNP NNP VBD CD NNS IN NNP , VBG PRP$ JJ NN NNP NN .\nKidnappers in Haiti have released an American missionary , one day after seizing him at gunpoint outside the capital , Port-au-Prince .\tNNS IN NNP VBP VBN DT JJ NN , CD NN IN VBG PRP IN NN IN DT NN , NNP .\nHaitian police officials say Phillip Snyder was freed Friday after kidnappers received a ransom payment .\tJJ NN NNS VBP NNP NNP VBD VBN NNP IN NNS VBD DT NN NN .\nMr. Snyder 's condition , as well as the amount of his ransom payment , are unclear .\tNNP NNP POS NN , RB RB IN DT NN IN PRP$ NN NN , VBP JJ .\nIn a separate incident , kidnappers released a group of children Thursday , after abducting them from a school bus hours earlier .\tIN DT JJ NN , NNS VBD DT NN IN NNS NNP , IN VBG PRP IN DT NN NN NNS RB .\nPolice said the children were unharmed .\tNNS VBD DT NNS VBD JJ .\nSome media report the abductors were paid an unspecified ransom .\tDT NNS VBP DT NNS VBD VBN DT JJ NN .\nBut the Associated Press quotes a police commissioner as denying any ransom was paid .\tCC DT NNP NNP VBZ DT NN NN IN VBG DT NN VBD VBN .\nNeither case was considered to be politically motivated .\tDT NN VBD VBN TO VB RB JJ .\nIndia has reported new cases of bird flu in nearly 200 villages in the western state of Maharashtra , the site of two earlier outbreaks this year .\tNNP VBZ VBN JJ NNS IN NN NN IN RB CD NNS IN DT JJ NN IN NNP , DT NN IN CD JJR NNS DT NN .\nOfficials say they suspect the virus could be the deadly H5N1 strain and tests are underway on samples from the birds .\tNNS VBP PRP VBP DT NN MD VB DT JJ NNP NN CC NNS VBP JJ IN NNS IN DT NNS .\nNo cases were reported in humans .\tDT NNS VBD VBN IN NNS .\nOfficials say some 2,50,000 birds would have to be culled .\tNNS VBP DT CD NNS MD VB TO VB VBN .\nReports from the region say the affected villages are in the neighboring states of Maharashtra and Madhya Pradesh .\tNNS IN DT NN VBP DT JJ NNS VBP IN DT JJ NNS IN NNP CC NNP NNP .\nThe affected region includes Maharashtra 's Jalgaon district , which also reported India 's second set of infections of H5N1 earlier this month .\tDT JJ NN VBZ NNP POS NNP NN , WDT RB VBD NNP POS JJ NN IN NNS IN NNP RBR DT NN .\nMeanwhile , a European laboratory has confirmed that a buzzard found dead in Denmark two weeks ago was infected with the deadly strain of bird flu .\tRB , DT JJ NN VBZ VBN IN DT NN VBN JJ IN NNP CD NNS RB VBD VBN IN DT JJ NN IN NN NN .\nPresident Bush and Bolivian President Evo Morales have agreed on the need for constructive relations and dialogue between their nations .\tNNP NNP CC JJ NNP NNP NNP VBP VBN IN DT NN IN JJ NNS CC NN IN PRP$ NNS .\nWhite House spokesman Scott McClellan says Mr. Bush telephoned Mr. Morales to congratulate him on his election and inauguration and that Mr. Bush commended the Andean nation 's strong commitment to democracy .\tNNP NNP NN NNP NNP VBZ NNP NNP VBD NNP NNP TO VB PRP IN PRP$ NN CC NN CC IN NNP NNP VBD DT NNP NN POS JJ NN TO NN .\nThe spokesman also says Mr. Morales outlined his agenda for social and economic change in Bolivia .\tDT NN RB VBZ NNP NNP VBD PRP$ NN IN JJ CC JJ NN IN NNP .\nThe United States has adopted a ' wait-and-see ' approach towards Mr. Morales , who has been a vocal opponent of U.S. drug and trade policies .\tDT NNP NNPS VBZ VBN DT `` JJ `` NN IN NNP NNP , WP VBZ VBN DT JJ NN IN NNP NN CC NN NNS .\nThe call comes as Mr. Morales faces the first crisis of his presidency .\tDT NN VBZ IN NNP NNP VBZ DT JJ NN IN PRP$ NN .\nHeavy rains have caused floods that have killed at least 13 people , leaving tens of thousands homeless .\tJJ NNS VBP VBN NNS WDT VBP VBN IN JJS CD NNS , VBG NNS IN NNS JJ .\nThe full U.S. Senate has begun its debate on President Bush 's nominee to the Supreme Court , Samuel Alito .\tDT JJ NNP NNP VBZ VBN PRP$ NN IN NNP NNP POS NN TO DT NNP NNP , NNP NNP .\nThe Senate Judiciary Committee Tuesday confirmed Alito on a party-line vote .\tDT NNP NNP NNP NNP VBD NNP IN DT JJ NN .\nThe committee 's 10 Republicans approved the nomination , while the eight Democrats on the panel rejected the conservative federal judge .\tDT NN POS CD NNS VBD DT NN , IN DT CD NNS IN DT NN VBD DT JJ JJ NN .\nDemocratic Senate Leader Harry Reid said he plans to oppose the nomination , saying he believes Alito would not be an independent check on the executive branch at a time when the president is abusing power .\tJJ NNP NNP NNP NNP VBD PRP VBZ TO VB DT NN , VBG PRP VBZ NNP MD RB VB DT JJ NN IN DT NN NN IN DT NN WRB DT NN VBZ VBG NN .\nBut South Carolina Republican Lindsay Graham dismissed Democratic party opposition , saying they are merely playing politics with the nomination .\tCC NNP NNP NNP NNP NNP VBD JJ NN NN , VBG PRP VBP RB VBG NNS IN DT NN .\nThe Republican-controlled Senate is expected to confirm Alito , perhaps by the end of this week .\tDT JJ NNP VBZ VBN TO VB NNP , RB IN DT NN IN DT NN .\nHe would replace retiring Justice Sandra Day O'Connor , a moderate who has been an important swing vote in many cases .\tPRP MD VB VBG NNP NNP NNP NNP , DT JJ WP VBZ VBN DT JJ NN NN IN JJ NNS .\nWorld oil prices soared to all-time highs Thursday in New York and London , as investors bet that rising demand for oil will outstrip supply .\tNNP NN NNS VBD TO JJ NNS NNP IN NNP NNP CC NNP , IN NNS VBD IN VBG NN IN NN MD VB NN .\nThe New York price of oil for future delivery went as high as 57 dollars and 50 cents a barrel in early trading Thursday .\tDT NNP NNP NN IN NN IN JJ NN VBD RB JJ IN CD NNS CC CD NNS DT NN IN JJ NN NNP .\nIn London , Brent crude rose to 56 dollars and 15 cents a barrel .\tIN NNP , NNP NN VBD TO CD NNS CC CD NNS DT NN .\nThe surging oil price came even though the Organization of Petroleum Exporting Countries raised its official production quotas at a meeting in Iran on Wednesday .\tDT JJ NN NN VBD RB IN DT NNP IN NNP NNP NNPS VBD PRP$ JJ NN NNS IN DT NN IN NNP IN NNP .\nAnalysts say China , India , the United States , and other nations are all seeking additional oil to power their expanding economies , but OPEC has little unused capacity to supply additional crude oil .\tNNS VBP NNP , NNP , DT NNP NNPS , CC JJ NNS VBP DT VBG JJ NN TO NN PRP$ VBG NNS , CC NNP VBZ JJ JJ NN TO VB JJ NN NN .\nOPEC supplies about 40 percent of the world 's oil .\tNNP NNS IN CD NN IN DT NN POS NN .\nTalks have begun in Vienna between Iranian negotiators and the United Nations nuclear watchdog agency .\tNNS VBP VBN IN NNP IN JJ NNS CC DT NNP NNP JJ NN NN .\nIran 's delegation to Tuesday 's meeting on Tehran 's controversial nuclear program is headed by the country 's deputy national security chief , Javad Vaeidi , and Ali Asghar Soltanieh , Iran 's ambassador to the International Atomic Energy Commission .\tNNP POS NN TO NNP POS NN IN NNP POS JJ JJ NN VBZ VBN IN DT NN POS JJ JJ NN NN , NNP NNP , CC NNP NNP NNP , NNP POS NN TO DT NNP NNP NNP NNP .\nThe IAEA delegation is led by senior inspector Olli Heinonen .\tDT NNP NN VBZ VBN IN JJ NN NNP NNP .\nNeither side made any comment as the talks began .\tDT NN VBD DT NN IN DT NNS VBD .\nThe U.N. Security Council has imposed two sets of sanctions on Iran because of its refusal to suspend uranium enrichment .\tDT NNP NNP NNP VBZ VBN CD NNS IN NNS IN NNP IN IN PRP$ NN TO VB NN NN .\nEnriched uranium and plutonium can be used to build nuclear weapons , but Iran says its nuclear program is for peaceful purposes .\tVBN NN CC NN MD VB VBN TO VB JJ NNS , CC NNP VBZ PRP$ JJ NN VBZ IN JJ NNS .\nThe United States and its Western allies accuse Iran of trying to develop nuclear weapons .\tDT NNP NNPS CC PRP$ JJ NNS VBP NNP IN VBG TO VB JJ NNS .\nYemeni officials say at least three people have been killed in attacks on security and intelligence buildings in the country 's southern Abyan province .\tJJ NNS VBP IN JJS CD NNS VBP VBN VBN IN NNS IN NN CC NN NNS IN DT NN POS JJ NNP NN .\nLocal authorities said Wednesday gunmen on motorcycles using mortars and rocket-propelled grenades opened fire on people inside the two buildings in the provincal capital , Zinjibar .\tJJ NNS VBD NNP NNS IN NNS VBG NNS CC JJ NNS VBD NN IN NNS IN DT CD NNS IN DT JJ NN , NNP .\nAfter the assault and subsequent clashes with police and guards , the attackers fled .\tIN DT NN CC JJ NNS IN NNS CC NNS , DT NNS VBD .\nOfficials said al-Qaida is believed to be responsible for the attacks , and security had arrested seven suspected insurgents .\tNNS VBD NNP VBZ VBN TO VB JJ IN DT NNS , CC NN VBD VBN CD JJ NNS .\nThe militant group was blamed for an attack last month on security headquarters in southern Yemen that left 11 people dead .\tDT JJ NN VBD VBN IN DT NN JJ NN IN NN NNS IN JJ NNP WDT VBD CD NNS JJ .\nIn southeast Texas , colonies made up of billions of so-called ' crazy ants ' are making life difficult for homeowners and others .\tIN NN NNP , NNS VBN IN IN NNS IN JJ `` JJ NNS `` VBP VBG NN JJ IN NNS CC NNS .\nResearchers at Texas A & M University are working with environmental officials and pest control experts to find ways to top the spread of the invasive species .\tNNS IN NNP NNP CC NNP NNP VBP VBG IN JJ NNS CC NN NN NNS TO VB NNS TO VB DT NN IN DT JJ NNS .\nIt has been fouling electrical devices , overwhelming other insect species , and raising concerns over the health of the Texas ecosystem .\tPRP VBZ VBN VBG JJ NNS , JJ JJ JJ NNS , CC VBG NNS IN DT NN IN DT NNP NN .\nVOA 's Paul Sisco reports .\tNNP POS NNP NNP VBZ .\nJapan has asked China to stop drilling for gas in a disputed area along the two countries ' sea border in the East China Sea .\tNNP VBZ VBN NNP TO VB NN IN NN IN DT JJ NN IN DT CD NNS POS NN NN IN DT NNP NNP NNP .\nA Japanese foreign ministry official said Wednesday , that his country deeply regrets China 's one-sided decision to start extracting natural gas from the region .\tDT JJ JJ NN NN VBD NNP , IN PRP$ NN RB VBZ NNP POS JJ NN TO VB VBG JJ NN IN DT NN .\nBeijing does not recognize Tokyo 's territorial claims in the area west of Japan 's southernmost islands .\tNNP VBZ RB VB NNP POS JJ NNS IN DT NN NN IN NNP POS JJ NNS .\nHowever , it is not clear if the drilling is within what Japan considers its exclusive economic zone .\tRB , PRP VBZ RB JJ IN DT NN VBZ IN WP NNP VBZ PRP$ JJ JJ NN .\nOn Tuesday , China said it was within its rights to continue drilling in the area , but was willing to negotiate with Japan over the territorial waters .\tIN NNP , NNP VBD PRP VBD IN PRP$ NNS TO VB NN IN DT NN , CC VBD JJ TO VB IN NNP IN DT JJ NNS .\nPolice in Spain 's North African enclave of Ceuta have arrested at least 11 suspected Islamic militants .\tNNS IN NNP POS JJ JJ NN IN NNP VBP VBN IN JJS CD JJ JJ NNS .\nPolice sources say forces sent by boat from the Spanish mainland carried out the sweep in pre-dawn raids early Tuesday across the tiny enclave on Morocco 's northwestern coast .\tNN NNS VBP NNS VBN IN NN IN DT JJ NN VBD IN DT NN IN JJ NNS RB NNP IN DT JJ NN IN NNP POS JJ NN .\nAuthorities identified two of the detainees as brothers of Hamed Abderrahaman Ahmed , a Spaniard who spent two years in detention at the U.S. naval base in Guantanamo Bay , Cuba , after his 2001 capture near the Afghan-Pakistani border .\tNNS VBD CD IN DT NNS IN NNS IN NNP NNP NNP , DT NN WP VBD CD NNS IN NN IN DT NNP JJ NN IN NNP NNP , NNP , IN PRP$ CD NN IN DT JJ NN .\nAuthorities say Ahmed , who was released earlier this year by a Spanish court , was not among those arrested today .\tNNS VBP NNP , WP VBD VBN RBR DT NN IN DT JJ NN , VBD RB IN DT VBN NN .\nThe French news agency , AFP , quotes Spanish anti-terror services as saying authorities were alerted when a group linked to al-Qaida posted a document on the Internet calling for ' a war against the infidel Spanish state . '\tDT JJ NN NN , NNP , VBZ JJ NN NNS IN VBG NNS VBD VBN WRB DT NN VBN TO NNP VBD DT NN IN DT NN VBG IN `` DT NN IN DT NN JJ NN . ``\nMalawi 's high court has ordered Vice President Cassim Chilumpha reinstated to his office , and his salary and benefits restored in full .\tNNP POS JJ NN VBZ VBN NNP NNP NNP NNP VBD TO PRP$ NN , CC PRP$ NN CC NNS VBN IN JJ .\nPresident Bingu wa Mutharika fired Chilumpha last month in a letter , citing his poor attendance at cabinet meetings and his unwillingness to move to Lilongwe , the capital of the southern African country .\tNNP NNP NNP NNP VBD NNP JJ NN IN DT NN , VBG PRP$ JJ NN IN NN NNS CC PRP$ NN TO VB TO NNP , DT NN IN DT JJ JJ NN .\nChilumpha protested the letter , saying that only Parliament has the power to dismiss him .\tNNP VBD DT NN , VBG IN RB NNP VBZ DT NN TO VB PRP .\nIn its ruling , the high court said the firing was suspended pending judicial review , which will be scheduled later .\tIN PRP$ NN , DT JJ NN VBD DT NN VBD VBN VBG JJ NN , WDT MD VB VBN RB .\nPresident Mutharika and Chilumpha were running mates in the 2004 elections , but have been feuding publicly since the president quit the United Democratic Party to set up his own political party .\tNNP NNP CC NNP VBD VBG NNS IN DT CD NNS , CC VBP VBN VBG RB IN DT NN VBD DT NNP NNP NNP TO VB RP PRP$ JJ JJ NN .\nEgypt 's political opposition is challenging President Hosni Mubarak 's election victory , saying the official vote count was fraudulent .\tNNP POS JJ NN VBZ VBG NNP NNP NNP POS NN NN , VBG DT JJ NN NN VBD JJ .\nChallengers Ayman Nour , who came a very distant second to Mr. Mubarak , and Noaman Gomaa who finished third , continued to protest the results Saturday accusing the ruling National Democratic Party of tampering with the vote .\tNNP NNP NNP , WP VBD DT RB JJ NN TO NNP NNP , CC NNP NNP WP VBD JJ , VBD TO VB DT NNS NNP VBG DT NN NNP NNP NNP IN VBG IN DT NN .\nIn central Cairo , opposition demonstrations were also planned .\tIN JJ NNP , NN NNS VBD RB VBN .\nBut it appears Mr. Mubarak 's victory is final .\tCC PRP VBZ NNP NNP POS NN VBZ JJ .\nState-run television reported Saturday that parliament will hold an emergency session Wednesday to swear-in Mr. Mubarak for a fifth term that will end in 2011 .\tJJ NN VBD NNP IN NN MD VB DT NN NN NNP TO VB NNP NNP IN DT JJ NN WDT MD VB IN CD .\nMr. Mubarak won Wednesday 's election with 88 percent of the vote .\tNNP NNP VBD NNP POS NN IN CD NN IN DT NN .\nBut his victory was marred by reports of voting irregularities and low turnout - less than a quarter of the country 's 32 million registered voters cast ballots .\tCC PRP$ NN VBD VBN IN NNS IN NN NNS CC JJ NN IN JJR IN DT NN IN DT NN POS CD CD JJ NNS VBD NNS .\nLebanon 's prime minister , Fuad Siniora , says military forces are working to enforce the government 's authority in southern Lebanon .\tNNP POS JJ NN , NNP NNP , VBZ JJ NNS VBP VBG TO VB DT NN POS NN IN JJ NNP .\nMr. Siniora warned Thursday that troops will confiscate weapons they find in the area , which is home to Hezbollah militant bases .\tNNP NNP VBD NNP IN NNS MD VB NNS PRP VBP IN DT NN , WDT VBZ NN IN NNP JJ NNS .\nThousands of Lebanese troops have deployed in southern parts of the country , after the end of fighting last month between Hezbollah and Israel .\tNNS IN JJ NNS VBP VBN IN JJ NNS IN DT NN , IN DT NN IN VBG JJ NN IN NNP CC NNP .\nHezbollah leaders say fighters continue to operate along the border with Israel , to defend what they call land belonging to the group .\tNNP NNS VBP NNS VBP TO VB IN DT NN IN NNP , TO VB WP PRP VBP NN VBG TO DT NN .\nA United Nations resolution to end the fighting has called for Hezbollah fighters in Lebanon to be disarmed .\tDT NNP NNPS NN TO VB DT NN VBZ VBN IN NNP NNS IN NNP TO VB VBN .\nSyria and Iran are believed to be key suppliers of weapons and money to Hezbollah .\tNNP CC NNP VBP VBN TO VB JJ NNS IN NNS CC NN TO NNP .\nThe White House has strongly condemned Friday 's rocket attack at the Jordanian Red Sea port of Aqaba where two American naval ships were docked .\tDT NNP NNP VBZ RB VBN NNP POS NN NN IN DT JJ NNP NNP NN IN NNP WRB CD JJ JJ NNS VBD VBN .\nA statement says the United States condemns all such attacks , and that U.S. officials are investigating in cooperation with Jordan .\tDT NN VBZ DT NNP NNPS VBP DT JJ NNS , CC IN NNP NNS VBP VBG IN NN IN NNP .\nU.S. military officials say it is safe to conclude that the two warships , the USS Ashland and the USS were the main target .\tNNP JJ NNS VBP PRP VBZ JJ TO VB IN DT CD NNS , DT NNP NNP CC DT NNS VBD DT JJ NN .\nOne of the rockets hit a military warehouse , killing a Jordanian soldier .\tCD IN DT NNS VBD DT JJ NN , VBG DT JJ NN .\nAnother exploded near a military hospital .\tDT VBD IN DT JJ NN .\nThe third rocket landed about 15 kilometers away , on the Israeli side of the border near the town of Eilat .\tDT JJ NN VBD IN CD NNS RB , IN DT JJ NN IN DT NN IN DT NN IN NNP .\nIt did not explode .\tPRP VBD RB VB .\nJordanian security forces have launched a massive hunt for four individuals suspected of firing the Katyusha rockets .\tJJ NN NNS VBP VBN DT JJ NN IN CD NNS VBN IN VBG DT NNP NNS .\nA group linked to al-Qaida has claimed responsibility in an unverifiable Internet statement .\tDT NN VBN TO NNP VBZ VBN NN IN DT JJ NN NN .\nSouth Korean President Roh Moo-hyun has instructed prosecutors to consider reopening a probe into a financial scam allegedly involving the front-running presidential candidate .\tJJ JJ NNP NNP NNP VBZ VBN NNS TO VB VBG DT NN IN DT JJ NN RB VBG DT JJ JJ NN .\nIn a statement released Sunday , Mr. Roh said a videotape had surfaced in which frontrunner Lee Myung-bak admitted having founded the company at the center of the 2001 scandal .\tIN DT NN VBN NNP , NNP NNP VBD DT NN VBD VBN IN WDT NN NNP NNP VBD VBG VBN DT NN IN DT NN IN DT CD NN .\nLee , a former Hyundai executive and Seoul mayor running as the Grand National Party 's candidate , has been heavily favored to win Wednesday 's election .\tNNP , DT JJ NNP NN CC NNP NN VBG IN DT NNP NNP NNP POS NN , VBZ VBN RB VBN TO VB NNP POS NN .\nLee was suspected of involvement in a scam in which his ex-partner , Kim Gyeong-jun , allegedly manipulated the price of stocks in a company he owned .\tNNP VBD VBN IN NN IN DT NN IN WDT PRP$ NN , NNP NNP , RB VBD DT NN IN NNS IN DT NN PRP VBD .\nSouth Korean prosecutors announced earlier this month that they had found no evidence that the conservative politician was involved in stock market manipulation .\tJJ JJ NNS VBD RBR DT NN IN PRP VBD VBN DT NN IN DT JJ NN VBD VBN IN NN NN NN .\nThe president of the Democratic Republic of Congo , Joseph Kabila , has married his longtime girlfriend in the country 's capital , Kinshasa .\tDT NN IN DT JJ NNP IN NNP , NNP NNP , VBZ VBN PRP$ JJ NN IN DT NN POS NN , NNP .\nThe nuptials come just weeks before Congo 's first free national elections in four decades .\tDT NNS VBP RB NNS IN NNP POS JJ JJ JJ NNS IN CD NNS .\nMr. Kabila presides over an interim government in the chaotic central African country .\tNNP NNP VBZ IN DT JJ NN IN DT JJ JJ JJ NN .\nHe is one of 33 candidates for president in the elections , scheduled for July 30 .\tPRP VBZ CD IN CD NNS IN NN IN DT NNS , VBN IN NNP CD .\nMr. Kabila assumed the presidency of Congo in 2001 following the assassination of his father , former rebel and President Laurent Kabila .\tNNP NNP VBD DT NN IN NNP IN CD VBG DT NN IN PRP$ NN , JJ NN CC NNP NNP NNP .\nThe 34-year-old Joseph Kabila married Olive Sita di Lembe on Saturday in a religious ceremony presided by Catholic and Protestant clergy .\tDT JJ NNP NNP VBD NNP NNP NNP NNP IN NNP IN DT JJ NN VBN IN NNP CC NNP NN .\nThey held a civil ceremony on Friday .\tPRP VBD DT JJ NN IN NNP .\nThe two have been dating for six years .\tDT CD VBP VBN VBG IN CD NNS .\nThey have a five-year-old daughter .\tPRP VBP DT JJ NN .\nSaudi Arabia 's ambassador to the United States , Prince Turki al-Faisal , has resigned from his post and has left Washington .\tNNP NNP POS NN TO DT NNP NNPS , NNP NNP NNP , VBZ VBN IN PRP$ NN CC VBZ VBN NNP .\nPrince Turki reportedly made the announcement to his staff in Washington on Monday , citing personal reasons .\tNNP NNP RB VBD DT NN TO PRP$ NN IN NNP IN NNP , VBG JJ NNS .\nThe prince held the post for a year-and-a-half , succeeding Prince Bandar bin Sultan , who left for personal reasons after 22 years on the job .\tDT NN VBD DT NN IN DT JJ , VBG NNP NNP NNP NNP , WP VBD IN JJ NNS IN CD NNS IN DT NN .\nThe Washington Post newspaper says colleagues of Prince Turki said they were shocked at Monday 's announcement .\tDT NNP NNP NN VBZ NNS IN NNP NNP VBD PRP VBD VBN IN NNP POS NN .\nThe newspaper also says the departure comes as his brother , Saudi Foreign Minister Prince Saud al-Faisal , is in ill health , noting rumors that Prince Turki could be a possible replacement for Prince Saud .\tDT NN RB VBZ DT NN VBZ IN PRP$ NN , NNP NNP NNP NNP NNP NNP , VBZ IN JJ NN , VBG NNS IN NNP NNP MD VB DT JJ NN IN NNP NNP .\nIsrael is now allowing Israelis and tourists to bring the iPad , Apple 's new tablet computer , into the country , instead of having them confiscated by customs agents .\tNNP VBZ RB VBG NNS CC NNS TO VB DT NN , NNP POS JJ NN NN , IN DT NN , RB IN VBG PRP VBN IN NNS NNS .\nIsrael 's Ministry of Communications says that after a technical review with the U.S. computer maker , officials are now allowing the latest gadget into the country .\tNNP POS NNP IN NNP VBZ IN IN DT JJ NN IN DT NNP NN NN , NNS VBP RB VBG DT JJS NN IN DT NN .\nThe devices confiscated during the past two weeks will be returned to their owners .\tDT NNS VBN IN DT JJ CD NNS MD VB VBN TO PRP$ NNS .\nIsrael initially banned the iPad because it feared the computers wireless signal had the potential to disrupt other devices , and was more powerful that European standards allowed .\tNNP RB VBD DT NN IN PRP VBD DT NNS JJ NN VBD DT JJ TO VB JJ NNS , CC VBD JJR JJ IN JJ NNS VBN .\nApple said it sold some 5,00,000 units of the iPad computer in the week after its U.S. debut on April 3 .\tNNP VBD PRP VBD DT CD NNS IN DT NNP NN IN DT NN IN PRP$ NNP NN IN NNP CD .\nThe company says it expects demand for the device to exceed supply in the coming weeks .\tDT NN VBZ PRP VBZ NN IN DT NN TO VB NN IN DT JJ NNS .\nThe computer maker said it will announce international pricing and begin taking online orders on May 10 .\tDT NN NN VBD PRP MD VB JJ NN CC VB VBG JJ NNS IN NNP CD .\nGerman Chancellor Gerhard Schroeder says China has expressed support for his country 's candidacy for a permanent seat on the United Nations Security Council .\tJJ NNP NNP NNP VBZ NNP VBZ VBN NN IN PRP$ NN POS NN IN DT JJ NN IN DT NNP NNP NNP NNP .\nMr. Schroeder spoke with reporters Tuesday in Beijing after talks with Chinese President Hu Jintao .\tNNP NNP VBD IN NNS NNP IN NNP IN NNS IN JJ NNP NNP NNP .\nGermany is one of several countries , including India , Brazil and Japan that are seeking a permanent seat on the Security Council .\tNNP VBZ CD IN JJ NNS , VBG NNP , NNP CC NNP WDT VBP VBG DT JJ NN IN DT NNP NNP .\nMonday , Mr. Schroeder met with Chinese Prime Minister Wen Jiabao .\tNNP , NNP NNP VBD IN JJ NNP NNP NNP NNP .\nChinese officials signed an agreement to buy European-built Airbus jetliners and German-made goods , including locomotives .\tJJ NNS VBD DT NN TO VB NNP NNP NNS CC JJ NNS , VBG NNS .\nThe German chancellor opposes the European Union 's ban on weapons sales to China , imposed after the bloody 1989 crackdown on pro-democracy demonstrators in Beijing .\tDT JJ NN VBZ DT NNP NNP POS NN IN NNS NNS TO NNP , VBN IN DT JJ CD NN IN JJ NNS IN NNP .\nHis stand has been criticized by opponents in Germany , and the European Parliament renewed the sanctions last month .\tPRP$ NN VBZ VBN VBN IN NNS IN NNP , CC DT NNP NNP VBD DT NNS JJ NN .\nMr. Schroeder travels to Tokyo Wednesday for talks with Japanese officials .\tNNP NNP VBZ TO NNP NNP IN NNS IN JJ NNS .\nA survey of U.S. households indicates that Americans are confident in the future of their economy , while a separate survey shows the rate of existing home sales in the U.S. continues to slip .\tDT NN IN NNP NNS VBZ IN NNS VBP JJ IN DT NN IN PRP$ NN , IN DT JJ NN VBZ DT NN IN VBG NN NNS IN DT NNP VBZ TO VB .\nThe rate of U.S. consumer confidence rose slightly in July in a monthly survey of American households .\tDT NN IN NNP NN NN VBD RB IN NNP IN DT JJ NN IN JJ NNS .\nThe index rose more than a point to 106.5 .\tDT NN VBD JJR IN DT NN TO CD .\nAnalysts had expected the index to fall slightly to 104 .\tNNS VBD VBN DT NN TO VB RB TO CD .\nExperts say strong job prospects drove the increase , despite record high fuel prices .\tNNS VBP JJ NN NNS VBD DT NN , IN JJ JJ NN NNS .\nIn another survey , sales of previously owned homes fell more than a percent in June to 6.6 million , continuing an almost year-long slide .\tIN DT NN , NNS IN RB VBN NNS VBD JJR IN DT NN IN NNP TO CD CD , VBG DT RB JJ NN .\nBoth surveys were released Tuesday .\tDT NNS VBD VBN NNP .\nConsumer confidence is widely seen as a gauge of spending and measures how consumers feel about the future of the economy .\tNN NN VBZ RB VBN IN DT NN IN NN CC NNS WRB NNS VBP IN DT NN IN DT NN .\nThe measure of home sales is seen as a barometer of activity in the housing sector .\tDT NN IN NN NNS VBZ VBN IN DT NN IN NN IN DT NN NN .\nA U.S. military court in Afghanistan has sentenced an American soldier to six months confinement and a reduction in rank after finding him guilty of mistreating Afghan detainees .\tDT NNP JJ NN IN NNP VBZ VBN DT JJ NN TO CD NNS NN CC DT NN IN NN IN VBG PRP JJ IN VBG JJ NNS .\nMilitary officials say Sergeant Kevin Myricks was accused of punching detainees at a base in southern Uruzgan province .\tJJ NNS VBP NNP NNP NNP VBD VBN IN VBG NNS IN DT NN IN JJ NNP NN .\nHe was convicted during a court martial Monday at Bagram air base near Kabul .\tPRP VBD VBN IN DT NN NN NNP IN NNP NN NN IN NNP .\nAnother U.S. soldier accused in the same incident was sentenced on Friday to four months detention without pay and demotion .\tDT NNP NN VBN IN DT JJ NN VBD VBN IN NNP TO CD NNS NN IN NN CC NN .\nU.S. military personnel have been accused in other instances of Afghan prisoner abuse .\tNNP JJ NNS VBP VBN VBN IN JJ NNS IN JJ NN NN .\nBut U.S. officials deny widespread mistreatment of those held in military custody .\tCC NNP NNS VBP JJ NN IN DT VBN IN JJ NN .\nTens of thousands of Turks protested Sunday against the country 's Islamist-rooted government .\tNNS IN NNS IN NNS VBD NNP IN DT NN POS JJ NN .\nThe demonstrators chanted ' Turkey is secular and will remain secular ' as they gathered in Samsun .\tDT NNS VBD `` NNP VBZ JJ CC MD VB JJ `` IN PRP VBD IN NNP .\nThe Black Sea port is where modern Turkey 's secular founder , Mustafa Kemal Ataturk , launched the country 's war of independence .\tDT NNP NNP NN VBZ WRB JJ NNP POS JJ NN , NNP NNP NNP , VBD DT NN POS NN IN NN .\nPro-secular demonstrations have also been held in Ankara , Istanbul and Izmir , where more than one million people protested against Prime Minister Recep Tayyip Erdogan 's government last week .\tJJ NNS VBP RB VBN VBN IN NNP , NNP CC NNP , WRB JJR IN CD CD NNS VBD IN NNP NNP NNP NNP NNP POS NN JJ NN .\nMr. Erdogan has expressed support for the country 's secular laws .\tNNP NNP VBZ VBN NN IN DT NN POS JJ NNS .\nBut his opponents accuse him of having a secret Islamist agenda .\tCC PRP$ NNS VBP PRP IN VBG DT JJ NN NN .\nTurkey 's main opposition party , the pro-secular Republican People 's Party and the left-wing Democratic Left Party formed an alliance last week to contest July parliamentary elections .\tNNP POS JJ NN NN , DT JJ NNP NNP POS NNP CC DT JJ JJ NNP NNP VBD DT NN JJ NN TO NN NNP JJ NNS .\nIsraeli military police have arrested a defense force officer who allegedly stole computers from the Gaza-bound aid flotilla intercepted by Israeli commandos in May .\tJJ JJ NNS VBP VBN DT NN NN NN WP RB VBP NNS IN DT JJ NN NN VBN IN JJ NNS IN NNP .\nOfficials say the officer is suspected of stealing as many as six laptop computers , some of which were sold to other soldiers .\tNNS VBP DT NN VBZ VBN IN VBG RB JJ IN CD NN NNS , DT IN WDT VBD VBN TO JJ NNS .\nNews reports say some of the soldiers who allegedly purchased the computers are also under investigation .\tNNP NNS VBP DT IN DT NNS WP RB VBD DT NNS VBP RB IN NN .\nIn May , nine pro-Palestinian activists on a Turkish ship were killed after Israeli commandos boarded vessels attempting to deliver aid directly to Gaza , in violation of an Israeli blockade .\tIN NNP , CD JJ NNS IN DT JJ NN VBD VBN IN JJ NNS VBD NNS VBG TO VB NN RB TO NNP , IN NN IN DT JJ NN .\nThe incident increased tensions between Israel and Turkey .\tDT NN VBD NNS IN NNP CC NNP .\nIsrael had commandeered several Turkish ships that were part of the flotilla .\tNNP VBD VBN JJ JJ NNS WDT VBD NN IN DT NN .\nHowever , earlier this month it allowed the ships ' operators to sail the vessels back to Turkey .\tRB , RBR DT NN PRP VBD DT NNS POS NNS TO VB DT NNS RB TO NNP .\nIrish quartet U2 rocked the French seaside resort of Cannes early on May 20 , prior to the premiere of its three-dimensional concert film .\tJJ NN NNP VBD DT JJ NN NN IN NNP RB IN NNP CD , RB TO DT NN IN PRP$ JJ NN NN .\nTitled U2 3D , the full-length movie was shot in South America during the band 's 2006 ' Vertigo ' tour .\tVBN NNP NNP , DT JJ NN VBD VBN IN NNP NNP IN DT NN POS CD `` NNP `` NN .\nProducer John Modell said the digital production heralds a new wave of three-dimensional filmmaking .\tNNP NNP NNP VBD DT JJ NN VBZ DT JJ NN IN JJ NN .\n' We are replicating the physiology of sight , ' Modell said .\t`` PRP VBP VBG DT NN IN NN , `` NNP VBD .\n' If you get it off by just a hair it creates actual physical problems - eye strain , nausea .\t`` IN PRP VBP PRP RP IN RB DT NN PRP VBZ JJ JJ NNS IN NN NN , NN .\nWe do n't have that at all . '\tPRP VBP RB VB DT IN DT . ``\nThe production will only be shown in 3D .\tDT NN MD RB VB VBN IN CD .\nAt present , about 700 screens are equipped with the Real D 3D system on which the film will initially show .\tIN JJ , IN CD NNS VBP VBN IN DT NNP NNP NNP NN IN WDT DT NN MD RB VB .\nMost are in the United States .\tJJS VBP IN DT NNP NNPS .\nReal D chairman Michael Lewis predicted the number will soon rise to 1,000 worldwide .\tNNP NNP NN NNP NNP VBD DT NN MD RB VB TO CD NN .\nFor 715 years , from 1278 to 1993 , Andorrans lived under a unique co-principality , ruled by French and Spanish leaders ( from 1607 onward , the French chief of state and the Spanish bishop of Seu d'Urgell ) .\tIN CD NNS , IN CD TO CD , NNS VBD IN DT JJ NN , VBN IN JJ CC JJ NNS LRB IN CD RB , DT JJ NN IN NN CC DT JJ NN IN NNP NNP RRB .\nIn 1993 , this feudal system was modified with the titular heads of state retained , but the government transformed into a parliamentary democracy .\tIN CD , DT JJ NN VBD VBN IN DT JJ NNS IN NN VBD , CC DT NN VBD IN DT JJ NN .\nFor decades Andorra enjoyed its status as a small refuge of fiscal and banking freedom and benefitted from Spanish and French tourists attracted to the country 's duty-free shopping .\tIN NNS NNP VBD PRP$ NN IN DT JJ NN IN JJ CC NN NN CC VBN IN JJ CC JJ NNS VBN TO DT NN POS JJ NN .\nThe situation has changed in recent years as Andorra started to tax foreign investment and other sectors .\tDT NN VBZ VBN IN JJ NNS IN NNP VBD TO VB JJ NN CC JJ NNS .\nTourism accounts for over 80 % of Andorra 's gross domestic product .\tNN NNS IN IN CD NN IN NNP POS JJ JJ NN .\nMacedonia gained its independence peacefully from Yugoslavia in 1991 .\tNNP VBD PRP$ NN RB IN NNP IN CD .\nGreece 's objection to the new state 's use of what it considered a Hellenic name and symbols delayed international recognition , which occurred under the provisional designation of ' the Former Yugoslav Republic of Macedonia . '\tNNP POS NN TO DT JJ NN POS NN IN WP PRP VBD DT NNP NN CC NNS VBD JJ NN , WDT VBD IN DT JJ NN IN `` DT NNP JJ NNP IN NNP . ``\nIn 1995 , Greece lifted a 20-month trade embargo and the two countries agreed to normalize relations .\tIN CD , NNP VBD DT JJ NN NN CC DT CD NNS VBD TO VB NNS .\nThe United States began referring to Macedonia by its constitutional name , Republic of Macedonia , in 2004 and negotiations continue between Greece and Macedonia to resolve the name issue .\tDT NNP NNPS VBD VBG TO NNP IN PRP$ JJ NN , NNP IN NNP , IN CD CC NNS VBP IN NNP CC NNP TO VB DT NN NN .\nSome ethnic Albanians , angered by perceived political and economic inequities , launched an insurgency in 2001 that eventually won the support of the majority of Macedonia 's Albanian population and led to the internationally-brokered Ohrid Framework Agreement , which ended the fighting by establishing a set of new laws enhancing the rights of minorities .\tDT JJ NNS , VBN IN VBN JJ CC JJ NNS , VBD DT NN IN CD WDT RB VBD DT NN IN DT NN IN NNP POS JJ NN CC VBD TO DT JJ NNP NNP NNP , WDT VBD DT NN IN VBG DT NN IN JJ NNS VBG DT NNS IN NNS .\nFully implementing the Framework Agreement and stimulating economic growth and development continue to be challenges for Macedonia , although progress has been made on both fronts over the past several years .\tRB VBG DT NNP NNP CC VBG JJ NN CC NN VBP TO VB NNS IN NNP , IN NN VBZ VBN VBN IN DT NNS IN DT JJ JJ NNS .\nCoconuts , grown throughout the islands , are the sole cash crop .\tNNS , VBN IN DT NNS , VBP DT JJ NN NN .\nSmall local gardens and fishing contribute to the food supply , but additional food and most other necessities must be imported from Australia .\tJJ JJ NNS CC NN VBP TO DT NN NN , CC JJ NN CC RBS JJ NNS MD VB VBN IN NNP .\nThere is a small tourist industry .\tEX VBZ DT JJ NN NN .\nThere are 27 coral islands in the group .\tEX VBP CD JJ NNS IN DT NN .\nCaptain William KEELING discovered the islands in 1609 , but they remained uninhabited until the 19th century .\tNNP NNP NNP VBD DT NNS IN CD , CC PRP VBD JJ IN DT JJ NN .\nFrom the 1820s to 1978 , members of the CLUNIE-ROSS family controlled the islands and the copra produced from local coconuts .\tIN DT NNS TO CD , NNS IN DT NNP NN VBD DT NNS CC DT NN VBN IN JJ NNS .\nAnnexed by the UK in 1857 , the Cocos Islands were transferred to the Australian Government in 1955 .\tVBN IN DT NNP IN CD , DT NNP NNP VBD VBN TO DT JJ NN IN CD .\nThe population on the two inhabited islands generally is split between the ethnic Europeans on West Island and the ethnic Malays on Home Island .\tDT NN IN DT CD JJ NNS RB VBZ VBN IN DT JJ NNS IN NNP NNP CC DT JJ NNS IN NNP NNP .\nOccupied by the UK in 1841 , Hong Kong was formally ceded by China the following year ; various adjacent lands were added later in the 19th century .\tVBN IN DT NNP IN CD , NNP NNP VBD RB VBN IN NNP DT JJ NN ; JJ JJ NNS VBD VBN RB IN DT JJ NN .\nPursuant to an agreement signed by China and the UK on 19 December 1984 , Hong Kong became the Hong Kong Special Administrative Region ( SAR ) of the People 's Republic of China on 1 July 1997 .\tJJ TO DT NN VBN IN NNP CC DT NNP IN CD NNP CD , NNP NNP VBD DT NNP NNP NNP NNP NNP LRB NNP RRB IN DT NNP POS NNP IN NNP IN CD NNP CD .\nIn this agreement , China promised that , under its ' one country , two systems ' formula , China 's socialist economic system would not be imposed on Hong Kong and that Hong Kong would enjoy a high degree of autonomy in all matters except foreign and defense affairs for the next 50 years .\tIN DT NN , NNP VBD IN , IN PRP$ `` CD NN , CD NNS `` NN , NNP POS JJ JJ NN MD RB VB VBN IN NNP NNP CC IN NNP NNP MD VB DT JJ NN IN NN IN DT NNS IN JJ CC NN NNS IN DT JJ CD NNS .\nA FISHERMAN , engaged in his calling , made a very successful cast and captured a great haul of fish .\tDT NN , VBN IN PRP$ NN , VBD DT RB JJ NN CC VBD DT JJ NN IN NN .\nHe managed by a skillful handling of his net to retain all the large fish and to draw them to the shore ; but he could not prevent the smaller fish from falling back through the meshes of the net into the sea .\tPRP VBD IN DT JJ NN IN PRP$ NN TO VB PDT DT JJ NN CC TO VB PRP TO DT NN ; CC PRP MD RB VB DT JJR NN IN VBG RB IN DT NNS IN DT NN IN DT NN .\nTHE People being dissatisfied with a Democratic Legislature , which stole no more than they had , elected a Republican one , which not only stole all they had but exacted a promissory note for the balance due , secured by a mortgage upon their hope of death .\tDT NNS VBG VBN IN DT JJ NN , WDT VBD DT JJR IN PRP VBD , VBD DT JJ NN , WDT RB RB VBD DT PRP VBD CC VBD DT JJ NN IN DT NN JJ , VBN IN DT NN IN PRP$ NN IN NN .\nA medical student was working in the toxicology department at the poison control center .\tDT JJ NN VBD VBG IN DT NN NN IN DT NN NN NN .\nA woman called in very upset because she caught her little daughter eating ants .\tDT NN VBN IN RB JJ IN PRP VBD PRP$ JJ NN VBG NNS .\nThe medical student quickly reassured her that the ants are not harmful and there would be no need to bring her daughter into the hospital .\tDT JJ NN RB VBD PRP IN DT NNS VBP RB JJ CC EX MD VB DT NN TO VB PRP$ NN IN DT NN .\nShe calmed down , and at the end of the conversation happened to mention that she gave her daughter some ant poison to eat in order to kill the ants .\tPRP VBD RB , CC IN DT NN IN DT NN VBD TO VB IN PRP VBD PRP$ NN DT JJ NN TO VB IN NN TO VB DT NNS .\nThe student told the mother that she better bring her daughter in to the emergency room right away .\tDT NN VBD DT NN IN PRP RB VB PRP$ NN IN TO DT NN NN RB RB .\nSeems that a year ago , some Boeing employees on the work field decided to steal a life raft from one of the 747s .\tNNS IN DT NN RB , DT NNP NNS IN DT NN NN VBD TO VB DT NN NN IN CD IN DT NNS .\nThey were successful in getting it out of the plane and home .\tPRP VBD JJ IN VBG PRP IN IN DT NN CC NN .\nWhen they took it for a float on the river , they were quite surprised by a Coast Guard helicopter coming towards them .\tWRB PRP VBD PRP IN DT NN IN DT NN , PRP VBD RB VBN IN DT NNP NNP NN VBG IN PRP .\nIt turned out that the chopper was homing in on the emergency locator that is automatically activated when the raft is inflated .\tPRP VBD RP IN DT NN VBD VBG IN IN DT NN NN WDT VBZ RB VBN WRB DT NN VBZ VBN .\nThey are no longer employed there .\tPRP VBP RB RB VBN RB .\nA motorist was unknowingly caught in an automated speed trap that measured his speed using radar and photographed his car .\tDT NN VBD RB VBN IN DT JJ NN NN WDT VBD PRP$ NN VBG NN CC VBD PRP$ NN .\nHe later received in the mail a ticket for $ 40 and a photo of his car .\tPRP RB VBD IN DT NN DT NN IN $ CD CC DT NN IN PRP$ NN .\nInstead of payment , he sent the police department a photograph of $ 40 .\tIN IN NN , PRP VBD DT NN NN DT NN IN $ CD .\nSeveral days later , he received a letter from the police that contained another picture of handcuffs .\tJJ NNS RB , PRP VBD DT NN IN DT NN WDT VBD DT NN IN NNS .\nA woman was reporting her car as stolen , and mentioned that there was a car phone in it .\tDT NN VBD VBG PRP$ NN IN VBN , CC VBD IN EX VBD DT NN NN IN PRP .\nThe policeman taking the report called the phone and told the guy that answered that he had read the ad in the newspaper and wanted to buy the car .\tDT NN VBG DT NN VBD DT NN CC VBD DT NN WDT VBD IN PRP VBD VBN DT NN IN DT NN CC VBD TO VB DT NN .\nThey arranged to meet , and the thief was arrested .\tPRP VBD TO VB , CC DT NN VBD VBN .\nA lawyer charged a man $ 1,000 for legal services .\tDT NN VBD DT NN $ CD IN JJ NNS .\nThe man paid him in cash with crisp new $ 100 bills .\tDT NN VBD PRP IN NN IN JJ JJ $ CD NNS .\nAfter the client left , the lawyer discovered that two bills had stuck together -- he 'd been overpaid by $ 100 .\tIN DT NN VBD , DT NN VBD IN CD NNS VBD VBN RB : PRP VBD VBN VBN IN $ CD .\nThe ethical dilemma for the lawyer : Should he tell his partner ?\tDT JJ NN IN DT NN : MD PRP VB PRP$ NN .\nEgypt 's top prosecutor has charged opposition leader Ayman Nour with forgery , in a case that has sparked high-level criticism in the United States and Europe .\tNNP POS JJ NN VBZ VBN NN NN NNP NNP IN NN , IN DT NN WDT VBZ VBN JJ NN IN DT NNP NNPS CC NNP .\nThe indictments were announced Tuesday in Cairo .\tDT NNS VBD VBN NNP IN NNP .\nNo trial date has been set .\tDT NN NN VBZ VBN VBN .\nMr. Nour , who says he will seek the Egyptian presidency in upcoming elections , is set to stand trial along with six defendants from his al-Ghad party .\tNNP NNP , WP VBZ PRP MD VB DT JJ NN IN JJ NNS , VBZ VBN TO VB NN IN IN CD NNS IN PRP$ JJ NN .\nProsecutors allege Mr. Nour used documents with forged signatures last year when registering the party with the Cairo government .\tNNS VBP NNP NNP VBD NNS IN VBN NNS JJ NN WRB VBG DT NN IN DT NNP NN .\nMr. Nour was arrested in January and spent six weeks in a Cairo jail , before his release on bond last week .\tNNP NNP VBD VBN IN NNP CC VBD CD NNS IN DT NNP NN , IN PRP$ NN IN NN JJ NN .\nIn a letter to Egyptian President Hosni Mubarak , the New York-based Human Rights Watch said it was dismayed by what it called Cairo 's ' radical intolerance ' toward political dissent .\tIN DT NN TO JJ NNP NNP NNP , DT NNP JJ NNP NNP NNP VBD PRP VBD VBN IN WP PRP VBD NNP POS `` JJ NN `` IN JJ NN .\nThe U.S. State Department and the European parliament also voiced concern .\tDT NNP NNP NNP CC DT JJ NN RB VBD NN .\nPakistani military officials say 14 of about 40 Pakistani soldiers who went missing following an attack on a security checkpoint have been found in neighboring Afghanistan .\tJJ JJ NNS VBP CD IN IN CD JJ NNS WP VBD VBG VBG DT NN IN DT NN NN VBP VBN VBN IN JJ NNP .\nOfficials say the Frontier Corps paramilitary troops disappeared from the Mohmand tribal region after a Taliban insurgent attack along the Afghan border earlier this week .\tNNS VBP DT NNP NNP JJ NNS VBD IN DT NNP JJ NN IN DT NNP JJ NN IN DT JJ NN RBR DT NN .\nMilitary spokesman Major General Athar Abbas told reporters Thursday that Afghan authorities handed over the troops to the Pakistani consulate in Jalalabad and the soldiers were being flown back to Pakistan .\tNNP NN NNP NNP NNP NNP VBD NNS NNP IN JJ NNS VBD IN DT NNS TO DT JJ NN IN NNP CC DT NNS VBD VBG VBN RB TO NNP .\nTaliban militants said they captured 10 soldiers during the attack on the paramilitary post , but officials could not verify the claim .\tNNP NNS VBD PRP VBD CD NNS IN DT NN IN DT JJ NN , CC NNS MD RB VB DT NN .\nOn Wednesday , Pakistani officials said 10 paramilitary soldiers and at least 36 militants were killed in fighting in the country 's Bajaur tribal region .\tIN NNP , JJ NNS VBD CD JJ NNS CC IN JJS CD NNS VBD VBN IN VBG IN DT NN POS NNP JJ NN .\nThe Pakistani military has twice declared victory there following offensives aimed at clearing the area of insurgents linked to the Taliban and al-Qaida .\tDT JJ NN VBZ RB VBN NN RB VBG NNS VBN IN VBG DT NN IN NNS VBN TO DT NNP CC NNP .\nThailand 's military has named a committee to begin the process of writing a new constitution , following a military coup last month .\tNNP POS NN VBZ VBN DT NN TO VB DT NN IN VBG DT JJ NN , VBG DT JJ NN JJ NN .\nOfficials said Thursday the 17-member panel will be led by Air Force Chief Chalit Phukphasuk .\tNNS VBD NNP DT JJ NN MD VB VBN IN NNP NNP NNP NNP NNP .\nThe committee is to select 2,000 people for a National Assembly , from which 100 people will be selected to draft the new charter .\tDT NN VBZ TO VB CD NNS IN DT NNP NNP , IN WDT CD NNS MD VB VBN TO VB DT JJ NN .\nLeaders of the military coup have pledged to return the country to civilian rule in one year and hold new elections in October of next year .\tNNS IN DT JJ NN VBP VBN TO VB DT NN TO JJ NN IN CD NN CC VB JJ NNS IN NNP IN JJ NN .\nInterim Prime Minister Surayud Chulanont Thursday reaffirmed plans for the army-led government to finish its work in one year .\tNNP NNP NNP NNP NNP NNP VBD NNS IN DT JJ NN TO VB PRP$ NN IN CD NN .\nHe said he does not want to ' bear the burden ' assigned by military leaders longer than necessary .\tPRP VBD PRP VBZ RB VB TO `` VB DT NN `` VBN IN JJ NNS RBR IN JJ .\nEarlier , a member of the interim cabinet , Thirapat Serirangsan , said the transition process may take as many as 17 months .\tRB , DT NN IN DT JJ NN , NNP NNP , VBD DT NN NN MD VB RB JJ IN CD NNS .\nGovernment officials in Sudan 's semi-autonomous south say Saturday fighting within the army has killed at least 13 people , including civilians and soldiers .\tNN NNS IN NNP POS JJ NN VBP NNP NN IN DT NN VBZ VBN IN JJS CD NNS , VBG NNS CC NNS .\nAuthorities say the violence erupted in the oil-rich Unity State Friday between bodyguards of the state 's governor and troops loyal to army General Paulino Matip .\tNNS VBP DT NN VBD IN DT JJ NN NN NNP IN NNS IN DT NN POS NN CC NNS JJ TO NN NNP NNP NNP .\nGovernment officials say the clashes stem from an argument that escalated into violence .\tNN NNS VBP DT NNS VBP IN DT NN WDT VBD IN NN .\nThe infighting comes as southern Sudan 's ruling party ( Sudan Peoples ' Liberation Movement , SPLM ) seeks to reclaim a major oil field in Unity State .\tDT NN VBZ IN JJ NNP POS NN NN LRB NNP NNPS POS NN NN , NNP RRB VBZ TO VB DT JJ NN NN IN NNP NNP .\nAn arbitration court granted the land where the oil field is located to the northern-based national government in a July ruling .\tDT NN NN VBD DT NN WRB DT NN NN VBZ VBN TO DT JJ JJ NN IN DT NNP NN .\nSouthern Sudan is also scheduled to vote on independence from the North in a 2011 referendum .\tNNP NNP VBZ RB VBN TO VB IN NN IN DT NNP IN DT CD NN .\nThe independence vote is part of a 2005 peace deal between the north and the south that ended 21 years of civil war .\tDT NN NN VBZ NN IN DT CD NN NN IN DT NN CC DT NN WDT VBD CD NNS IN JJ NN .\nIsrael has stepped up security around Jerusalem 's holiest site to prevent clashes between Muslim worshippers and Jewish extremists opposed to Israel 's impending withdrawal from the Gaza Strip .\tNNP VBZ VBN RP NN IN NNP POS JJS NN TO VB NNS IN NNP NNS CC JJ NNS VBN TO NNP POS JJ NN IN DT NNP NNP .\nHundreds of police have been mobilized around what Jews call the Temple Mount , and Muslims know as the Noble Sanctuary .\tNNS IN NNS VBP VBN VBN IN WP VBZ VB DT NNP NNP , CC NNPS VBP IN DT NNP NNP .\nThousands of Jews are expected to attend prayer services at the compound through Sunday to commemorate the destruction of the biblical Jewish temples 2000 years ago .\tNNS IN NNPS VBP VBN TO VB NN NNS IN DT NN IN NNP TO VB DT NN IN DT JJ JJ NNS CD NNS RB .\nMuslim clerics have urged their followers to protect mosques on the holy site .\tNNP NNS VBP VBN PRP$ NNS TO VB NNS IN DT JJ NN .\nMeanwhile , Hamas leaders in Gaza held a rare news conference Saturday , vowing to continue their struggle against Israel .\tRB , NNP NNS IN NNP VBD DT JJ NN NN NNP , VBG TO VB PRP$ NN IN NNP .\nThe Palestinian Authority says security forces are fully prepared ahead of their deployment today to prevent any attempts by militants to disrupt Israel 's withdrawal from Gaza beginning this week .\tDT JJ NNP VBZ NN NNS VBP RB VBN RB IN PRP$ NN NN TO VB DT NNS IN NNS TO VB NNP POS NN IN NNP VBG DT NN .\nVenezuela 's president has called on the international community to do everything possible to avoid a military conflict with Iran because of its nuclear program .\tNNP POS NN VBZ VBN IN DT JJ NN TO VB DT JJ TO VB DT JJ NN IN NNP IN IN PRP$ JJ NN .\nSpeaking on a trip to London Monday , Hugo Chavez said that Europe has a very important role to play in the dispute with Iran , which is accused of seeking atomic weapons .\tVBG IN DT NN TO NNP NNP , NNP NNP VBD IN NNP VBZ DT RB JJ NN TO VB IN DT NN IN NNP , WDT VBZ VBN IN VBG JJ NNS .\nEarlier , Mr. Chavez warned that the price of oil would soar if the United States took military action against Iran .\tRB , NNP NNP VBD IN DT NN IN NN MD VB IN DT NNP NNPS VBD JJ NN IN NNP .\nThe Venezuelan leader was set to conclude a two-day trip to London , which did not include a meeting with British Prime Minister Tony Blair .\tDT JJ NN VBD VBN TO VB DT JJ NN TO NNP , WDT VBD RB VB DT NN IN JJ NNP NNP NNP NNP .\nLater Monday , Mr. Chavez was to travel to Algeria for talks with President Abdelaziz Bouteflika .\tRB NNP , NNP NNP VBD TO VB TO NNP IN NNS IN NNP NNP NNP .\nTuesday , he is to meet Libyan leader Moammar Gadhafi in Tripoli .\tNNP , PRP VBZ TO VB JJ NN NNP NNP IN NNP .\nFrench singer Henri Salvador , who performed with Django Reinhardt and is credited with inspiring the bossa nova , died in Paris Wednesday , at the age of 90 .\tJJ NN NNP NNP , WP VBD IN NNP NNP CC VBZ VBN IN VBG DT NN NN , VBD IN NNP NNP , IN DT NN IN CD .\nOfficials of his recording company say Salvador died in his home of an aneurysm .\tNNS IN PRP$ NN NN VBP NNP VBD IN PRP$ NN IN DT NN .\nSalvador was born in French Guiana and moved to Paris , where he began playing the guitar .\tNNP VBD VBN IN JJ NNP CC VBD TO NNP , WRB PRP VBD VBG DT NN .\nRenowned guitarist Django Reinhardt discovered him in the 1930s .\tJJ NN NNP NNP VBD PRP IN DT NNS .\nHe later played with band leader Ray Ventura before going on to a solo career .\tPRP RB VBD IN NN NN NNP NNP IN VBG IN TO DT NN NN .\nSalvador 's song ' Dans mon Isle ' inspired the Brazilian musician Antonio Carlos Jobim , who borrowed the song 's innovative sense of timing and used it to create the bossa nova style .\tNNP POS NN `` NNP NNP NNP `` VBD DT JJ NN NNP NNP NNP , WP VBD DT NN POS JJ NN IN NN CC VBD PRP TO VB DT NN NN NN .\nA leading human rights group says Afghanistan 's human rights situation demands continuing monitoring by the United Nations .\tDT VBG JJ NNS NN VBZ NNP POS JJ NNS NN NNS VBG NN IN DT NNP NNPS .\nHuman Rights Watch issued a statement late Tuesday , urging the U.N. Human Rights Commission to keep Afghanistan on its agenda and to increase the number of monitors in the country .\tNNP NNP NNP VBD DT NN JJ NNP , VBG DT NNP NNP NNP NNP TO VB NNP IN PRP$ NN CC TO VB DT NN IN NNS IN DT NN .\nThe U.N. commission is holding its annual meeting in Geneva this week .\tDT NNP NN VBZ VBG PRP$ JJ NN IN NNP DT NN .\nThe U.S.-based group says there is still a human rights crisis in Afghanistan , where warlords and armed factions continue to dominate many regions and routinely abuse human rights , especially the rights of women and girls .\tDT JJ NN VBZ EX VBZ RB DT JJ NNS NN IN NNP , WRB NNS CC JJ NNS VBP TO VB JJ NNS CC RB VB JJ NNS , RB DT NNS IN NNS CC NNS .\nIt also urged the United States to help increase human rights monitoring in Afghanistan , saying it is particularly important ahead of the country 's parliamentary election , which is expected in September .\tPRP RB VBD DT NNP NNPS TO VB VB JJ NNS NN IN NNP , VBG PRP VBZ RB JJ RB IN DT NN POS JJ NN , WDT VBZ VBN IN NNP .\nIranian President Mohammad Khatami has issued a new warning that Tehran will respond to any hostile military action from the United States , but he says he does not believe U.S. forces will attack his country .\tJJ NNP NNP NNP VBZ VBN DT JJ NN IN NNP MD VB TO DT JJ JJ NN IN DT NNP NNPS , CC PRP VBZ PRP VBZ RB VB NNP NNS MD VB PRP$ NN .\nSpeaking in Uganda Thursday , Mr. Khatami said Tehran does not welcome tensions with Washington , and said he believes the possibility of a U.S. attack is ' very low . '\tVBG IN NNP NNP , NNP NNP VBD NNP VBZ RB VB NNS IN NNP , CC VBD PRP VBZ DT NN IN DT NNP NN VBZ `` RB JJ . ``\nThe two governments have been locked in a three-year stand-off over U.S. allegations that Iran is seeking to develop nuclear weapons .\tDT CD NNS VBP VBN VBN IN DT JJ NN IN NNP NNS IN NNP VBZ VBG TO VB JJ NNS .\nTehran flatly denies the charges .\tNNP RB VBZ DT NNS .\nMr. Khatami 's remarks follow a published report Sunday that said the United States is carrying out secret reconnaissance missions in Iran to identify targets for possible military strikes .\tNNP NNP POS NNS VBP DT VBN NN NNP WDT VBD DT NNP NNPS VBZ VBG RP JJ NN NNS IN NNP TO VB NNS IN JJ JJ NNS .\nThe White House rejected the New Yorker magazine report , saying it was riddled with inaccuracies and conclusions not based on fact .\tDT NNP NNP VBD DT NNP NNP NN NN , VBG PRP VBD VBN IN NNS CC NNS RB VBN IN NN .\nUkrainian President Viktor Yushchenko is hosting a two-day meeting of officials from three other former Soviet republics aimed at building democracy in the region .\tJJ NNP NNP NNP VBZ VBG DT JJ NN IN NNS IN CD JJ JJ JJ NNS VBN IN VBG NN IN DT NN .\nRepresentatives of Azerbaijan , Georgia and Moldova join their Ukrainian colleagues in Kiev Monday ahead of a meeting of the four countries ' presidents on Tuesday .\tNNS IN NNP , NNP CC NNP VBP PRP$ JJ NNS IN NNP NNP RB IN DT NN IN DT CD NNS POS NNS IN NNP .\nTalks are expected to focus on energy issues as well as cooperation by the four nations , known under the acronym GUAM , in international organizations .\tNNS VBP VBN TO VB IN NN NNS RB RB IN NN IN DT CD NNS , VBN IN DT NN NNP , IN JJ NNS .\nUkrainian officials say the meeting will consider expanding the activities of the group and changing its name to the Organization for Democracy and Development .\tJJ NNS VBP DT NN MD VB VBG DT NNS IN DT NN CC VBG PRP$ NN TO DT NNP IN NNP CC NNP .\nThe group was founded in 1997 with the aim of expending cooperation of the four members of the Commonwealth of Independent States .\tDT NN VBD VBN IN CD IN DT NN IN VBG NN IN DT CD NNS IN DT NN IN NNP NNPS .\nUzbekistan joined in 1999 , but announced its withdrawal three years later , complaining that the group had deviated from its goal of economic cooperation to a focus on political issues .\tNNP VBD IN CD , CC VBD PRP$ NN CD NNS RB , VBG IN DT NN VBD VBN IN PRP$ NN IN JJ NN TO DT NN IN JJ NNS .\nA stampede at a religious gathering in southern Pakistan has killed at least 29 women and children .\tDT NN IN DT JJ NN IN JJ NNP VBZ VBN IN JJS CD NNS CC NNS .\nMore than 70 people were injured in the stampede , which occurred Sunday after a Sunni Muslim ceremony in Karachi celebrating the birth of the Prophet Muhammad .\tJJR IN CD NNS VBD VBN IN DT NN , WDT VBD NNP IN DT NNP NNP NN IN NNP VBG DT NN IN DT NNP NNP .\nAt least 20,000 women and their children attended the ceremony .\tIN JJS CD NNS CC PRP$ NNS VBD DT NN .\nLocal officials and witnesses said the stampede began after a girl fell down in the middle of a crowd leaving a mosque .\tJJ NNS CC NNS VBD DT NN VBD IN DT NN VBD RP IN DT NN IN DT NN VBG DT NN .\nThey said a woman bent down to pick up the girl , causing others behind to trip over her .\tPRP VBD DT NN NN IN TO VB RP DT NN , VBG NNS IN TO NN IN PRP .\nDozens of unconscious women and children were sent to nearby hospitals .\tNNS IN JJ NNS CC NNS VBD VBN TO JJ NNS .\nMore bleak news for the U.S. economy Friday : the Labor Department reported the nation lost more than a half million jobs in November , the most in about three decades .\tRBR JJ NN IN DT NNP NN NNP IN DT NNP NNP VBD DT NN VBD JJR IN DT NN CD NNS IN NNP , DT RBS IN IN CD NNS .\nAnd the number of homeowners struggling to make their mortgage payments is rising .\tCC DT NN IN NNS VBG TO VB PRP$ NN NNS VBZ VBG .\nPresident Bush expressed concern about the deteriorating U.S. economy and used the word ' recession ' for the first time .\tNNP NNP VBD NN IN DT VBG NNP NN CC VBD DT NN `` NN `` IN DT JJ NN .\nMembers of the U.N. Security Council have arrived in Rwanda at the start of a tour of nations affected by a decade of ethnic strife in Africa 's Great Lakes region .\tNNS IN DT NNP NNP NNP VBP VBN IN NNP IN DT NN IN DT NN IN NNS VBN IN DT NN IN JJ NN IN NNP POS NNP NNP NN .\nDelegates are also scheduled to visit the Democratic Republic of Congo , Burundi and Uganda to study ways of encouraging rebuilding and an end to violence .\tNNS VBP RB VBN TO VB DT JJ NNP IN NNP , NNP CC NNP TO VB NNS IN JJ NN CC DT NN TO NN .\nThe tour comes one day after a Great Lakes summit in Tanzania , where 15 African leaders signed a pledge to disarm fighters , stop the flow of weapons and improve security .\tDT NN VBZ CD NN IN DT JJ NNP NN IN NNP , WRB CD JJ NNS VBD DT NN TO VB NNS , VB DT NN IN NNS CC VB NN .\nSpeaking at the summit , U.N. Secretary General Kofi Annan promised to back peacekeeping operations and humanitarian aid in the region .\tVBG IN DT NN , NNP NNP NNP NNP NNP VBD TO VB VBG NNS CC JJ NN IN DT NN .\nIn 1994 , the genocide in Rwanda sparked a series of ethnic conflicts and cross-border wars , killing and displacing millions of people , mostly civilians .\tIN CD , DT NN IN NNP VBD DT NN IN JJ NNS CC JJ NNS , VBG CC VBG NNS IN NNS , RB NNS .\nThe United States is the only wealthy , industrialized nation that does not provide universal health care for its citizens .\tDT NNP NNPS VBZ DT JJ JJ , JJ NN WDT VBZ RB VB JJ NN NN IN PRP$ NNS .\nAnd now , rising costs for both health care and for insurance premiums put health care out of reach for many Americans .\tCC RB , VBG NNS IN DT NN NN CC IN NN NNS VBP NN NN IN IN NN IN JJ NNS .\nForty-seven million do not have health insurance .\tCD CD VBP RB VB NN NN .\nVOA 's Carol Pearson has more .\tNNP POS NNP NNP VBZ RBR .\nPresident Bush says the United States needs to increase its oil refining capacity after two Gulf of Mexico hurricanes tightened gasoline supplies .\tNNP NNP VBZ DT NNP NNPS VBZ TO VB PRP$ NN NN NN IN CD NNP IN NNP NNS VBD NN NNS .\nFollowing a briefing by the Energy Department , the president said Hurricanes Rita and Katrina exposed the fragility of the balance between oil supply and demand in the nation .\tVBG DT NN IN DT NNP NNP , DT NN VBD NNPS NNP CC NNP VBD DT NN IN DT NN IN NN NN CC NN IN DT NN .\nThe president said he was willing to use the national Strategic Petroleum Reserve to meet immediate fuel needs and he urged citizens to conserve fuel by curtailing nonessential trips and conserving electricity during peak hours .\tDT NN VBD PRP VBD JJ TO VB DT JJ NNP NNP NNP TO VB JJ NN NNS CC PRP VBD NNS TO VB NN IN VBG JJ NNS CC VBG NN IN JJ NNS .\nThe president said many pipelines and refineries should be back to full capacity by next week , but officials are still assessing the damage at several key sites .\tDT NN VBD JJ NNS CC NNS MD VB RB TO JJ NN IN JJ NN , CC NNS VBP RB VBG DT NN IN JJ JJ NNS .\nOil prices fell today to about $ 64 a barrel on reports of limited hurricane damage to industry facilities .\tNN NNS VBD NN TO RB $ CD DT NN IN NNS IN JJ NN NN TO NN NNS .\nThe Paris Club of international creditors has agreed to cancel 80 percent of the debt Iraq owes member countries .\tDT NNP NNP IN JJ NNS VBZ VBN TO VB CD NN IN DT NN NNP VBZ NN NNS .\nOfficials say the deal , brokered in Berlin , is worth about $ 33 billion .\tNNS VBP DT NN , VBN IN NNP , VBZ JJ IN $ CD CD .\nClub officials were set to make a formal announcement in Paris later Sunday .\tNNP NNS VBD VBN TO VB DT JJ NN IN NNP RB NNP .\nThe United States had sought as much as a 95 percent debt reduction as part of a strategy aimed at increasing the chances of survival for the post-war Iraqi government .\tDT NNP NNPS VBD VBN RB RB IN DT CD NN NN NN IN NN IN DT NN VBN IN VBG DT NNS IN NN IN DT JJ JJ NN .\nFor its part , France had sought to have member countries initially waive 50 percent of the debt and then review the matter in three years .\tIN PRP$ NN , NNP VBD VBN TO VB NN NNS RB VB CD NN IN DT NN CC RB VB DT NN IN CD NNS .\nParis had argued that slashing the debt by more than 50 percent was unfair to other poor , debt-ridden nations that lack the potential oil revenues of Iraq .\tNNP VBD VBN IN VBG DT NN IN JJR IN CD NN VBD JJ TO JJ JJ , JJ NNS WDT VBP DT JJ NN NNS IN NNP .\nPresident Bush is urging senior citizens to enroll in the new Medicare prescription drug plan by its May 15 deadline .\tNNP NNP VBZ VBG JJ NNS TO VB IN DT JJ NNP NN NN NN IN PRP$ NNP CD NN .\nMr. Bush issued the call Tuesday as he visited seniors in the Midwestern U.S. states of Missouri and Iowa to discuss the program .\tNNP NNP VBD DT NN NNP IN PRP VBD NNS IN DT JJ NNP NNS IN NNP CC NNP TO VB DT NN .\nThe president told his audiences that 29 million Americans are already participating in the program intended to give them choices and save them money .\tDT NN VBD PRP$ NNS IN CD CD NNS VBP RB VBG IN DT NN VBN TO VB PRP NNS CC VB PRP NN .\nThe president 's chief Medicare official , Mark McClellan , said more than 1,000 enrollment seminars are planned around the country this week to raise awareness about the program .\tDT NN POS NN NNP NN , NNP NNP , VBD RBR IN CD NN NNS VBP VBN IN DT NN DT NN TO VB NN IN DT NN .\nDemocrats have said the numerous options in the plan confuse senior citizens and will cost them more money .\tNNPS VBP VBN DT JJ NNS IN DT NN NN JJ NNS CC MD VB PRP JJR NN .\nMr. Bush has acknowledged problems with the plan since its January debut , but says his administration has straightened them out .\tNNP NNP VBZ VBN NNS IN DT NN IN PRP$ NNP NN , CC VBZ PRP$ NN VBZ VBN PRP RP .\nTop Republican lawmakers in the House of Representatives say they are planning legislation that would block a Dubai company from taking over operations of several U.S. ports , setting up a showdown with the White House .\tJJ JJ NNS IN DT NNP IN NNPS VBP PRP VBP VBG NN WDT MD VB DT NNP NN IN VBG RP NNS IN JJ NNP NNS , VBG RP DT NN IN DT NNP NNP .\nThe chairman of a key House committee says he will attach a provision blocking the proposed deal to an emergency spending measure for the war in Iraq and for Hurricane Katrina recovery efforts .\tDT NN IN DT JJ NNP NN VBZ PRP MD VB DT NN VBG DT VBN NN TO DT NN NN NN IN DT NN IN NNP CC IN NNP NNP NN NNS .\nThe proposal marks a significant break between the White House and Republican lawmakers who have supported President Bush 's legislative agenda in recent years .\tDT NN VBZ DT JJ NN IN DT NNP NNP CC NNP NNS WP VBP VBN NNP NNP POS JJ NN IN JJ NNS .\nThe White House has vowed to veto any legislation overturning the deal with Dubai-owned DP World , and on Tuesday a spokesman said the administration would continue to work with Congress on the matter .\tDT NNP NNP VBZ VBN TO VB DT NN VBG DT NN IN JJ NNP NNP , CC IN NNP DT NN VBD DT NN MD VB TO VB IN NNP IN DT NN .\nBut House members say the issue is a ' very big ' political problem for lawmakers and they expect to hold talks with the Senate on ways to block the takeover .\tCC NNP NNS VBP DT NN VBZ DT `` RB JJ `` JJ NN IN NNS CC PRP VBP TO VB NNS IN DT NNP IN NNS TO VB DT NN .\nA spokesman for U.S. President Barack Obama says a decision on how many additional troops will be sent to Afghanistan will be made shortly .\tDT NN IN NNP NNP NNP NNP VBZ DT NN IN WRB JJ JJ NNS MD VB VBN TO NNP MD VB VBN RB .\nWhite House Press Secretary Robert Gibbs told reporters Monday aboard Air Force One that the decision will be made within days and not weeks .\tNNP NNP NNP NNP NNP NNP VBD NNS NNP IN NNP NNP CD IN DT NN MD VB VBN IN NNS CC RB NNS .\nDefense Secretary Robert Gates told reporters last week that the president will have several options before him .\tNNP NNP NNP NNP VBD NNS JJ NN IN DT NN MD VB JJ NNS IN PRP .\nThe U.S. commander in Afghanistan , General David McKiernan , has requested up to 30,000 additional troops , including combat and aviation brigades , to join U.S. military units already in the country .\tDT NNP NN IN NNP , NNP NNP NNP , VBZ VBN RP TO CD JJ NNS , VBG NN CC NN NNS , TO VB NNP JJ NNS RB IN DT NN .\nThere are currently about 60,000 foreign soldiers in Afghanistan , most of them part of the International Security Assistance Force .\tEX VBP RB IN CD JJ NNS IN NNP , JJS IN PRP NN IN DT NNP NNP NNP NNP .\nThe Obama administration has ordered a review of U.S. policy in Afghanistan and neighboring Pakistan , to consider new ways to root out terrorist havens and how to battle insurgents more effectively .\tDT NNP NN VBZ VBN DT NN IN NNP NN IN NNP CC JJ NNP , TO VB JJ NNS TO VB RP JJ NNS CC WRB TO VB NNS RBR RB .\nPyongyang is demanding Seoul pay at least $ 1 billion in compensation for allegedly torturing North Korean spies and prisoners of war formerly held in South Korea .\tNNP VBZ VBG NNP VB IN JJS $ CD CD IN NN IN RB VBG JJ JJ NNS CC NNS IN NN RB VBN IN NNP NNP .\nNorth Korea 's official KCNA news agency says the government submitted its claim for damages to South Korea 's Human Rights Commission Friday .\tNNP NNP POS JJ NNP NN NN VBZ DT NN VBD PRP$ NN IN NNS TO NNP NNP POS NNP NNPS NNP NNP .\nPyongyang 's complaint involves 63 North Koreans freed by South Korea in 2000 , and sent back to the North after decades of detention .\tNNP POS NN VBZ CD NNP NNS VBN IN NNP NNP IN CD , CC VBN RB TO DT NNP IN NNS IN NN .\nSeoul agreed to release them after a reconciliation summit between the two Koreas .\tNNP VBD TO VB PRP IN DT NN NN IN DT CD NNS .\nNorth Korea says the prisoners were subjected to physical and mental torture , and held in solitary confinement for refusing to renounce their ideology .\tNNP NNP VBZ DT NNS VBD VBN TO JJ CC JJ NN , CC VBN IN JJ NN IN VBG TO VB PRP$ NN .\nPyongyang has also faced international criticism for allegedly torturing prisoners .\tNNP VBZ RB VBN JJ NN IN RB VBG NNS .\nSeoul says hundreds of South Korean prisoners are still being held by the North .\tNNP VBZ NNS IN JJ JJ NNS VBP RB VBG VBN IN DT NNP .\nNew violence has killed at least 11 people in Iraq , casting a shadow over celebrations to mark the end of the Muslim holy month of Ramadan .\tJJ NN VBZ VBN IN JJS CD NNS IN NNP , VBG DT NN IN NNS TO VB DT NN IN DT NNP JJ NN IN NNP .\nNorth of Baghdad , near Baquba , gunmen attacked a police checkpoint in the town of Buhriz , killing six officers and wounding at least 10 others .\tNNP IN NNP , IN NNP , NNS VBD DT NN NN IN DT NN IN NNP , VBG CD NNS CC VBG IN JJS CD NNS .\nIn the town of Taza , near Kirkuk , a roadside bomb exploded , hitting a convoy of Iraqi soldiers .\tIN DT NN IN NNP , IN NNP , DT NN NN VBD , VBG DT NN IN JJ NNS .\nFive were killed and four were wounded .\tCD VBD VBN CC CD VBD VBN .\nAnd the U.S. military said a roadside bomb blast in east Baghdad killed an American soldier .\tCC DT NNP NN VBD DT NN NN NN IN JJ NNP VBD DT JJ NN .\nMeanwhile , a senior British general , Major General James Dutton , told reporters that sophisticated technology and explosives for making bombs are entering Iraq from neighboring Iran .\tRB , DT JJ JJ NN , NNP NNP NNP NNP , VBD NNS IN JJ NN CC NNS IN VBG NNS VBP VBG NNP IN VBG NNP .\nThe general said it is still not clear whether Iran 's government , its intelligence service , or other unspecified groups are involved .\tDT NN VBD PRP VBZ RB RB JJ IN NNP POS NN , PRP$ NN NN , CC JJ JJ NNS VBP VBN .\nPresident Bush was in the middle of a minor confrontation involving his Secret Service agents and Chilean security forces at the APEC summit in Santiago , Chile Saturday night .\tNNP NNP VBD IN DT NN IN DT JJ NN VBG PRP$ NNP NNP NNS CC JJ NN NNS IN DT NNP NN IN NNP , NNP NNP NN .\nA shoving match between the Chilean and U.S. agents occurred Saturday when the Chileans tried to stop the Secret Service bodyguards from accompanying the president to a dinner with world leaders .\tDT VBG NN IN DT JJ CC NNP NNS VBD NNP WRB DT NNS VBD TO VB DT NNP NNP NNS IN VBG DT NN TO DT NN IN NN NNS .\nWhen the president noticed the confrontation , he stepped away from First Lady Laura Bush , Chilean President Ricardo Lagos and his wife , and pulled the U.S. agent from Chilean security .\tWRB DT NN VBD DT NN , PRP VBD RB IN NNP NNP NNP NNP , JJ NNP NNP NNP CC PRP$ NN , CC VBD DT NNP NN IN JJ NN .\nThe incident was shown on APEC 's summit television .\tDT NN VBD VBN IN NNP POS NN NN .\nWhite House spokeswoman Claire Buchan said Chilean security tried to stop the president 's Secret Service from accompanying him .\tNNP NNP NN NNP NNP VBD JJ NN VBD TO VB DT NN POS NNP NNP IN VBG PRP .\nShe also said the issue was resolved when the president told the Chileans the Secret Service agents were with him .\tPRP RB VBD DT NN VBD VBN WRB DT NN VBD DT NNS DT NNP NNP NNS VBD IN PRP .\nVeterinary experts meeting in Paris say all countries regardless of their economic problems must fight bird flu .\tJJ NNS VBG IN NNP VBP DT NNS RB IN PRP$ JJ NNS MD VB NN NN .\nThe World Organization for Animal Health said Tuesday just one country failing to control bird flu can endanger the whole planet .\tDT NNP NNP IN NNP NNP VBD NNP RB CD NN VBG TO VB NN NN MD VB DT JJ NN .\nThe experts warned that the deadly H5N1 virus is highly likely to infect domestic poultry in Europe as migrating wild birds return from Africa and the Mideast .\tDT NNS VBD IN DT JJ NNP NN VBZ RB JJ TO VB JJ NN IN NNP IN VBG JJ NNS NN IN NNP CC DT NN .\nBird flu has already struck a turkey farm in France .\tNN NN VBZ RB VBN DT NN NN IN NNP .\nFrance says 43 countries have either banned or curbed exports of French poultry .\tNNP VBZ CD NNS VBP DT VBN CC VBN NNS IN JJ NN .\nMeanwhile , Sweden reported its first bird flu case in wild ducks Tuesday .\tRB , NNP VBD PRP$ JJ NN NN NN IN JJ NNS NNP .\nAnd bird flu was found in a cat on the German Baltic Sea island of Ruegen , where bird flu killed a number of wild birds .\tCC NN NN VBD VBN IN DT NN IN DT JJ NNP NNP NN IN NNP , WRB NN NN VBD DT NN IN JJ NNS .\nExperts say there is no evidence cats can spread the disease to humans .\tNNS VBP EX VBZ DT NN NNS MD VB DT NN TO NNS .\nU.S. Federal Reserve Chairman Alan Greenspan says the United States has weathered two years of sharp rises in fuel and natural gas prices reasonably well , thanks to what he calls ' market flexibility . '\tNNP NNP NNP NNP NNP NNP VBZ DT NNP NNPS VBZ VBN CD NNS IN JJ NNS IN NN CC JJ NN NNS RB RB , NNS TO WP PRP VBZ `` NN NN . ``\nIn a speech Wednesday in Washington , Mr. Greenspan also praised market flexibility for what he termed ' the impressive performance ' of the U.S. economy over the past 20 years .\tIN DT NN NNP IN NNP , NNP NNP RB VBD NN NN IN WP PRP VBD `` DT JJ NN `` IN DT NNP NN IN DT JJ CD NNS .\nAnalysts have often praised Mr. Greenspan , who has been in office since 1987 , for fostering economic stability with his interest rate and monetary policy .\tNNS VBP RB VBN NNP NNP , WP VBZ VBN IN NN IN CD , IN VBG JJ NN IN PRP$ NN NN CC JJ NN .\nOn Wednesday , he made no mention of interest rates , which the Federal Reserve has raised several times in recent months .\tIN NNP , PRP VBD DT NN IN NN NNS , WDT DT NNP NNP VBZ VBN JJ NNS IN JJ NNS .\nMr. Greenspan 's term on the Federal Reserve 's Board of Governors is scheduled to end on January 31 .\tNNP NNP POS NN IN DT NNP NNP POS NNP IN NNP VBZ VBN TO VB IN NNP CD .\nKosovo President Ibrahim Rugova has nominated Bajram Kosumi as prime minister of the Serbian province .\tNNP NNP NNP NNP VBZ VBN NNP NNP IN JJ NN IN DT JJ NN .\nMr. Kosumi is a close associate of former Prime Minister Ramush Haradinaj , who resigned last week and surrendered to the United Nations tribunal in The Hague after it indicted him for war crimes .\tNNP NNP VBZ DT JJ NN IN JJ NNP NNP NNP NNP , WP VBD JJ NN CC VBD TO DT NNP NNPS NN IN DT NNP IN PRP VBD PRP IN NN NNS .\nKosovo lawmakers are expected to consider the nomination next week .\tNNP NNS VBP VBN TO VB DT NN JJ NN .\nThe appointment comes just months before Kosovo 's ethnic Albanian-led government and Serbian leaders are due to open talks on the future of the province .\tDT NN VBZ RB NNS IN NNP POS JJ JJ NN CC JJ NNS VBP JJ TO JJ NNS IN DT NN IN DT NN .\nKosovo 's ethnic Albanian majority wants independence , while its Serb minority wants the province to remain part of Serbia .\tNNP POS JJ JJ NN VBZ NN , IN PRP$ JJ NN VBZ DT NN TO VB NN IN NNP .\nThe United Nations has been administering the area since 1999 , when NATO air strikes against Yugoslavia forced Serbian and Yugoslav security forces to withdraw from the area .\tDT NNP NNP VBZ VBN VBG DT NN IN CD , WRB NNP NN NNS IN NNP VBD JJ CC JJ NN NNS TO VB IN DT NN .\nGunmen in Iraq have attacked a bus carrying Shi'ite Muslim pilgrims to shrines south of Baghdad , killing three and wounding several others .\tNNS IN NNP VBP VBN DT NN VBG NNP NNP VBZ TO NNS RB IN NNP , VBG CD CC VBG JJ NNS .\nBritain 's Foreign Office says it is investigating reports that at least two British citizens are among the dead from Monday 's shooting .\tNNP POS NNP NNP VBZ PRP VBZ VBG NNS IN IN JJS CD JJ NNS VBP IN DT JJ IN NNP POS NN .\nMeanwhile , there is no word on the fate of four Western humanitarian workers who disappeared in Iraq on Saturday .\tRB , EX VBZ DT NN IN DT NN IN CD JJ JJ NNS WP VBD IN NNP IN NNP .\nA Canadian official disclosed the kidnappings of a Briton , two Canadians and an American on Sunday , but did not reveal details .\tDT JJ NN VBD DT NNS IN DT NN , CD NNS CC DT NN IN NNP , CC VBD RB VB NNS .\nSince then , U.S. and British officials have confirmed the abductions .\tIN RB , NNP CC JJ NNS VBP VBN DT NNS .\nThere has been no public claim of responsibility .\tEX VBZ VBN DT JJ NN IN NN .\nMeanwhile , the U.S. military says 20 suspected insurgents have been captured south of Baghdad in Babil province .\tRB , DT NNP NN VBZ CD JJ NNS VBP VBN VBN RB IN NNP IN NNP NN .\nSeparately , authorities say U.S. troops have unearthed more than 2,700 mortar rounds at an abandoned Iraqi army base near Kirkuk .\tRB , NNS VBP NNP NNS VBP VBN JJR IN CD NN NNS IN DT JJ JJ NN NN IN NNP .\nPope Benedict XVI says he does not feel well enough to take many foreign trips , but said he he hopes to travel to what he calls a peaceful Holy Land .\tNNP NNP NNP VBZ PRP VBZ RB VB RB JJ TO VB JJ JJ NNS , CC VBD PRP PRP VBZ TO VB TO WP PRP VBZ DT JJ NNP NNP .\nIn an interview with German television broadcast Sunday , Pope Benedict said the Vatican wants to mobilize all forces who he says recognize that war is the worst solution for all sides , even for those he calls the apparent victors .\tIN DT NN IN JJ NN NN NNP , NNP NNP VBD DT NNP VBZ TO VB DT NNS WP PRP VBZ VB DT NN VBZ DT JJS NN IN DT NNS , RB IN DT PRP VBZ DT JJ NNS .\nEarlier Sunday , the pope voiced hope for the ceasefire in Lebanon and is urging the quick delivery of humanitarian aid once the truce takes hold .\tRBR NNP , DT NN VBD NN IN DT NN IN NNP CC VBZ VBG DT JJ NN IN JJ NN IN DT NN VBZ NN .\nAn anti-American protest turned violent Wednesday , as police and protesters clashed in the Afghan capital , Kabul .\tDT JJ NN VBD JJ NNP , IN NN CC NNS VBN IN DT JJ NN , NNP .\nHundreds of demonstrators chanted ' Death to America , ' burned tires and blocked a main highway , as part of a protest against the previously canceled plans of a small U.S. church to burn hundreds of Qurans .\tNNS IN NNS VBN `` NN TO NNP , `` VBN NNS CC VBD DT JJ NN , IN NN IN DT NN IN DT RB VBN NNS IN DT JJ NNP NN TO VB NNS IN NNS .\nAt least 35 police officers and 10 demonstrators were injured after police moved in to disperse stone-throwing crowds .\tIN JJS CD NN NNS CC CD NNS VBD VBN IN NNS VBD IN TO VB JJ NNS .\nAfghan officials say police opened fire after being shot at by protesters .\tJJ NNS VBP NNS VBD NN IN VBG VBN IN IN NNS .\nSome of the demonstrators waved Taliban flags and police say some members of the militant group had infiltrated the crowd .\tDT IN DT NNS VBD NNP NNS CC NNS VBP DT NNS IN DT JJ NN VBD VBN DT NN .\nThe American church 's plans to burn Qurans to mark the ninth anniversary of the September 11 attacks was called off last week amid international outrage .\tDT JJ NN POS NNS TO VB NNS TO VB DT JJ NN IN DT NNP CD NNS VBD VBN RP JJ NN IN JJ NN .\nSeparately , two protesters were killed Sunday when police opened fire on a similar demonstration in eastern Logar province .\tRB , CD NNS VBD VBN NNP WRB NNS VBD NN IN DT JJ NN IN JJ NNP NN .\nUnited Nations officials in the Democratic Republic of Congo have paid tribute to Bangladeshi peacekeepers killed in an ambush Friday .\tNNP NNP NNS IN DT JJ NNP IN NNP VBP VBN NN TO JJ NNS VBN IN DT JJ NNP .\nDominique McAdams , head of the U.N. bureau in Congo 's eastern Ituri province spoke to international soldiers Saturday at Bunia airport , where the bodies of the nine peacekeeers were to be loaded on a plane to Bangladesh .\tNNP NNP , NN IN DT NNP NN IN NNP POS JJ NNP NN VBD TO JJ NNS NNP IN NNP NN , WRB DT NNS IN DT CD NNS VBD TO VB VBN IN DT NN TO NNP .\nShe said the Bangladeshi peacekeepers wanted to improve the lives of ordinary Congolese and to help free them from the grip of what she called ' demented ' armed elements .\tPRP VBD DT JJ NNS VBD TO VB DT NNS IN JJ NNS CC TO VB VB PRP IN DT NN IN WP PRP VBD `` VBN `` JJ NNS .\nMs. McAdams said the U.N. mission must do its utmost to ensure that the Bangladeshis ' sacrifice will not be in vain .\tNNP NNP VBD DT NNP NN MD VB PRP$ NN TO VB IN DT NNS POS NN MD RB VB IN NN .\nThe United Nations accused local armed groups , which it did not name , of being behind what it said were premeditated killings .\tDT NNP NNPS VBD JJ JJ NNS , WDT PRP VBD RB VB , IN VBG IN WP PRP VBD VBD VBN NNS .\nPolice officials in Spain say Spanish and Moroccan security forces have thwarted another attempt by African migrants to illegally cross over from Morocco to Spain 's North African enclave of Melilla .\tNN NNS IN NNP VBP JJ CC JJ NN NNS VBP VBN DT NN IN JJ NNS TO RB VB RP IN NNP TO NNP POS JJ JJ NN IN NNP .\nPolice say at least 1,000 migrants tried to scale razor wire fences early Thursday but failed to get through .\tNNS VBP IN JJS CD NNS VBD TO VB NN NN NNS RB NNP CC VBD TO VB IN .\nThe attempt came just hours after Spain announced measures to deter migrants , mostly from west Africa , from storming Melilla and its sister enclave , Ceuta .\tDT NN VBD RB NNS IN NNP VBD NNS TO VB NNS , RB IN JJ NNP , IN VBG NNP CC PRP$ NN NN , NNP .\nSpain said it would invoke for the first time a 1992 agreement with Morocco allowing it to send back to Morocco any Africans who had succeeded in getting into Ceuta or Melilla .\tNNP VBD PRP MD VB IN DT JJ NN DT CD NN IN NNP VBG PRP TO VB RB TO NNP DT NNS WP VBD VBN IN VBG IN NNP CC NNP .\nEarlier Wednesday , about 500 migrants in Morocco tried storming a fence surrounding Melilla .\tRBR NNP , IN CD NNS IN NNP VBD VBG DT NN VBG NNP .\nAbout 65 people successfully climbed over the fence while dozens of others suffered serious cuts from razor wire .\tIN CD NNS RB VBD IN DT NN IN NNS IN NNS VBD JJ NNS IN NN NN .\nIraqi authorities say a female suicide bomber has blown herself up near a government compound north of Baghdad , killing at least 15 people and wounding 40 others .\tJJ NNS VBP DT JJ NN NN VBZ VBN PRP RP IN DT NN NN NN IN NNP , VBG IN JJS CD NNS CC VBG CD NNS .\nThe woman detonated her explosives vest in the Diyala province capital of Baquba Sunday , near a heavily guarded area that includes government offices and a courthouse .\tDT NN VBD PRP$ NNS NN IN DT NNP NN NN IN NNP NNP , IN DT RB VBN NN WDT VBZ NN NNS CC DT NN .\nAuthorities say at least seven policemen were killed in the attack .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NN .\nAn increasing number of women have been carrying out suicide attacks in Iraq in recent months .\tDT VBG NN IN NNS VBP VBN VBG RP NN NNS IN NNP IN JJ NNS .\nThe U.S. military says al-Qaida in Iraq has been recruiting women because it is easier for them to avoid security searches .\tDT NNP NN VBZ NNP IN NNP VBZ VBN VBG NNS IN PRP VBZ JJR IN PRP TO VB NN NNS .\nAuthorities in Saudi Arabia have identified three of the militants killed in Monday 's terrorist attack on the U.S. Consulate in Jeddah .\tNNS IN NNP NNP VBP VBN CD IN DT NNS VBN IN NNP POS JJ NN IN DT NNP NNP IN NNP .\nThe Saudi Interior Ministry says the three were not on a most wanted list of suspected al-Qaida sympathizers issued by Saudi authorities last year .\tDT NNP NNP NNP VBZ DT CD VBD RB IN DT RBS JJ NN IN JJ NNP NNS VBN IN JJ NNS JJ NN .\nAuthorities are still trying to identify a fourth dead militant , while the name of a fifth militant taken into custody was not released .\tNNS VBP RB VBG TO VB DT JJ JJ NN , IN DT NN IN DT JJ NN VBN IN NN VBD RB VBN .\nThe militants stormed the consulate with grenades , triggering a gunbattle with Saudi security forces .\tDT NNS VBD DT NN IN NNS , VBG DT NN IN JJ NN NNS .\nFive non-American staff members died in the attack .\tCD JJ NN NNS VBD IN DT NN .\nThe United States says it is boosting security at its diplomatic missions in Saudi Arabia due to Monday 's attack .\tDT NNP NNPS VBZ PRP VBZ VBG NN IN PRP$ JJ NNS IN NNP NNP JJ TO NNP POS NN .\nThe Jeddah consulate remains closed Tuesday .\tDT NNP NN VBZ JJ NNP .\nRussia says it thinks the top threats to its future security will come from NATO expansion and rivalry over energy resources .\tNNP VBZ PRP VBZ DT JJ NNS TO PRP$ JJ NN MD VB IN NNP NN CC NN IN NN NNS .\nThe Kremlin on Wednesday unveiled its new National Security Strategy , outlining its priorities through the year 2020 .\tDT NNP IN NNP VBD PRP$ JJ NNP NNP NNP , VBG PRP$ NNS IN DT NN CD .\nThe policy paper was signed by Russian President Dmitry Medvedev .\tDT NN NN VBD VBN IN JJ NNP NNP NNP .\nIt says Russia can not rule out the use of military force to ' solve emerging problems ' around the competition for energy sources .\tPRP VBZ NNP MD RB VB IN DT NN IN JJ NN TO `` VB VBG NNS `` IN DT NN IN NN NNS .\nThe document says Moscow hopes to build ' an equal and full-fledged strategic partnership with the United States , ' but criticized U.S. plans for a missile defense shield in Europe .\tDT NN VBZ NNP VBZ TO VB `` DT JJ CC JJ JJ NN IN DT NNP NNPS , `` CC VBD NNP NNS IN DT NN NN NN IN NNP .\nThe new security strategy says Russia views any expansion of NATO to its neighboring countries to be ' unacceptable . '\tDT JJ NN NN VBZ NNP VBZ DT NN IN NNP TO PRP$ JJ NNS TO VB `` JJ . ``\nThat remark is likely aimed at Georgia and Ukraine , which have sought to join the alliance over Moscow 's objections .\tDT NN VBZ JJ VBN IN NNP CC NNP , WDT VBP VBN TO VB DT NN IN NNP POS NNS .\nOsama bin Laden 's deputy has appeared in a new videotape threatening Britain with more terror attacks and warning the United States it could face thousands of military casualties in Iraq if it does not withdraw its troops .\tNNP NNP NNP POS NN VBZ VBN IN DT JJ NN VBG NNP IN JJR NN NNS CC VBG DT NNP NNPS PRP MD VB NNS IN JJ NNS IN NNP IN PRP VBZ RB VB PRP$ NNS .\nAl-Qaida deputy Ayman al-Zawahiri did not directly claim al-Qaida carried out the July 7 London attacks in the video aired Thursday on the Arab satellite channel al-Jazeera .\tNNP NN NNP NNP VBD RB RB VB NNP VBD RP DT NNP CD NNP NNS IN DT NN VBN NNP IN DT JJ NN NN NNP .\nBut he said further attacks would be the fault of British Prime Minister Tony Blair 's policies .\tCC PRP VBD JJ NNS MD VB DT NN IN NNP NNP NNP NNP NNP POS NNS .\nOf the United States , he said losses in the September 11 , 2001 attacks , and in Iraq and Afghanistan , would only be the beginning until ' you withdraw from our land , stop stealing our oil and resources , and end support for corrupt rulers . '\tIN DT NNP NNPS , PRP VBD NNS IN DT NNP CD , CD NNS , CC IN NNP CC NNP , MD RB VB DT NN IN `` PRP VB IN PRP$ NN , VB VBG PRP$ NN CC NNS , CC NN NN IN JJ NNS . ``\nAyman al-Zawahiri last appeared in a videotape on June 17 , in which he said peaceful change was not possible .\tNNP NNP JJ VBD IN DT NN IN NNP CD , IN WDT PRP VBD JJ NN VBD RB JJ .\nThe New York Times says the CIA has sent more than 100 suspected terrorists to other countries for interrogation under a secret program authorized by the Bush administration .\tDT NNP NNP NNP VBZ DT NNP VBZ VBN JJR IN CD JJ NNS TO JJ NNS IN NN IN DT JJ NN VBN IN DT NNP NN .\nSunday 's edition of the newspaper quotes former and current government officials as saying the CIA has acted under a still-classified directive that President Bush signed within days of the September 11 , 2001 , terrorist attacks .\tNNP POS NN IN DT NN VBZ JJ CC JJ NN NNS IN VBG DT NNP VBZ VBN IN DT JJ NN IN NNP NNP VBD IN NNS IN DT NNP CD , CD , JJ NNS .\nThe officials said the process , known as rendition , has been central in U.S. efforts to disrupt terrorism .\tDT NNS VBD DT NN , VBN IN NN , VBZ VBN JJ IN NNP NNS TO VB NN .\nSuspects have been sent to countries including Egypt , Syria , Jordan , Saudi Arabia and Pakistan .\tNNS VBP VBN VBN TO NNS VBG NNP , NNP , NNP , NNP NNP CC NNP .\nThe transfers have been criticized because some former prisoners alleged they were mistreated .\tDT NNS VBP VBN VBN IN DT JJ NNS VBD PRP VBD VBN .\nAn administration official told the paper the CIA takes care to ensure the prisoners are detained under humane conditions and not tortured .\tDT NN NN VBD DT NN DT NNP VBZ NN TO VB DT NNS VBP VBN IN NN NNS CC RB VBN .\nVenezuela 's president says his government may give its U.S.-made fighter jets to Cuba and China , after accusing the United States of breaking an agreement to provide jet parts .\tNNP POS NN VBZ PRP$ NN MD VB PRP$ JJ NN NNS TO NNP CC NNP , IN VBG DT NNP NNPS IN VBG DT NN TO VB NN NNS .\nPresident Hugo Chavez Tuesday said the United States is refusing to sell parts to Caracas to maintain its fleet of U.S.-made F-16 fighters .\tNNP NNP NNP NNP VBD DT NNP NNPS VBZ VBG TO VB NNS TO NNP TO VB PRP$ NN IN JJ NN NNS .\nMr. Chavez said his nation can do whatever it wants with the jets - even give them to Cuba and China .\tNNP NNP VBD PRP$ NN MD VB WDT PRP VBZ IN DT NNS IN RB VB PRP TO NNP CC NNP .\nThe comments were made at a ceremony announcing Venezuela 's plans to launch a telecommunications satellite with China 's help .\tDT NNS VBD VBN IN DT NN VBG NNP POS NNS TO VB DT NN NN IN NNP POS NN .\nA Defense Department official speaking on condition of anonymity says there has been no communication with Caracas about giving away the jets .\tDT NNP NNP JJ NN IN NN IN NN VBZ EX VBZ VBN DT NN IN NNP IN VBG RP DT NNS .\nThe official also said U.S. laws strictly govern third party transfers .\tDT NN RB VBD NNP NNS RB VBP JJ NN NNS .\nVenezuela bought two-dozen F-16 jets from the United States in the 1980s .\tNNP VBD JJ NN NNS IN DT NNP NNPS IN DT NNS .\nIran 's foreign minister says Tehran will restart its uranium enrichment program if Friday 's talks with European nations fail .\tNNP POS JJ NN VBZ NNP MD VB PRP$ NN NN NN IN NNP POS NNS IN JJ NNS VBP .\nKamal Kharrazi spoke to reporters at The Hague , saying if the two sides fail to resolve the impasse Friday , then Tehran ' will have no choice ' but to restart its enrichment program .\tNNP NNP VBD TO NNS IN DT NNP , VBG IN DT CD NNS VBP TO VB DT NN NNP , RB NNP `` MD VB DT NN `` CC TO VB PRP$ NN NN .\nBritain , France and Germany , backed by the United States , want Iran to permanently give up uranium enrichment , which can be used to fuel nuclear weapons .\tNNP , NNP CC NNP , VBN IN DT NNP NNPS , VBP NNP TO RB VB RP NN NN , WDT MD VB VBN TO VB JJ NNS .\nEuropean officials have offered economic incentives in exchange for abandoning enrichment , but Tehran has resisted , saying its enrichment activities are for peaceful purposes .\tJJ NNS VBP VBN JJ NNS IN NN IN VBG NN , CC NNP VBZ VBN , VBG PRP$ NN NNS VBP IN JJ NNS .\nIran agreed in November to stop enriching uranium , but has insisted the move is temporary .\tNNP VBD IN NNP TO VB VBG NN , CC VBZ VBN DT NN VBZ JJ .\nKuwait has found the deadly H5N1 variety of avian flu in one of two infected birds culled by authorities .\tNNP VBZ VBN DT JJ NNP NN IN JJ NN IN CD IN CD JJ NNS VBN IN NNS .\nThe strain was found in a migrating flamingo , while a second , imported bird had the milder H5N2 variant .\tDT NN VBD VBN IN DT NN NN , IN DT NN , VBN NN VBD DT JJR NNP NN .\nMeanwhile , Vietnam said Friday , it will set up a medical facility for Cambodian bird flu patients near the border between the two countries in an effort to contain the spread of the virus .\tRB , NNP VBD NNP , PRP MD VB RP DT JJ NN IN JJ NN NN NNS IN DT NN IN DT CD NNS IN DT NN TO VB DT NN IN DT NN .\nHealth officials said the small ward will be built at a hospital in Kien Luong district , 30 kilometers from the border , so Cambodian patients do not have to travel more deeply into Vietnam for treatment .\tNNP NNS VBD DT JJ NN MD VB VBN IN DT NN IN NNP NNP NN , CD NNS IN DT NN , RB JJ NNS VBP RB VB TO VB RBR RB IN NNP IN NN .\nAnd on Thursday , China reported another outbreak of bird flu in a flock of chickens in northeastern Liaoning province - the country 's seventh outbreak in a month .\tCC IN NNP , NNP VBD DT NN IN NN NN IN DT NN IN NNS IN JJ VBG NN IN DT NN POS JJ NN IN DT NN .\nA new film premiering this week in South Korea dramatizes the suffering faced by tens of thousands of North Koreans who flee their country 's poverty and repression .\tDT JJ NN VBG DT NN IN NNP NNP VBZ DT NN VBN IN NNS IN NNS IN NNP NNS WP VBP PRP$ NN POS NN CC NN .\nNorth Korean rights activists say the film 's emotional power may draw global attention to the issue .\tJJ JJ NNS NNS VBP DT NN POS JJ NN MD VB JJ NN TO DT NN .\nVOA 's Kurt Achin has a preview .\tNNP POS NNP NNP VBZ DT NN .\nIran 's influential former president , Akbar Hashemi Rafsanjani , has praised the late Pope John Paul II as a man of peace and offered his condolences to the world 's Christians on the loss of the Roman Catholic leader .\tNNP POS JJ JJ NN , NNP NNP NNP , VBZ VBN DT JJ NNP NNP NNP NNP IN DT NN IN NN CC VBD PRP$ NNS TO DT NN POS NNS IN DT NN IN DT NNP NNP NN .\nSpeaking to Muslims at Friday prayers in Tehran , Mr. Rafsanjani praised the pope for opposing the U.S.-led invasion of Iraq and his condemnation of the abuse of prisoners at Abu Ghraib jail by some U.S. soldiers .\tVBG TO NNS IN NNP NNS IN NNP , NNP NNP VBD DT NN IN VBG DT JJ NN IN NNP CC PRP$ NN IN DT NN IN NNS IN NNP NNP NN IN DT NNP NNS .\nMr. Rafsanjani , who has hinted at a comeback in June 's presidential election , asked how the Vatican could be indifferent to U.S. policies , which he said dishonor Jesus Christ .\tNNP NNP , WP VBZ VBN IN DT NN IN NNP POS JJ NN , VBD WRB DT NNP MD VB JJ TO NNP NNS , WDT PRP VBD NN NNP NNP .\nIran 's president , Mohammad Khatami , represented the Islamic Republic at the pontiff 's funeral Friday in Rome .\tNNP POS NN , NNP NNP , VBD DT NNP NNP IN DT NN POS JJ NNP IN NNP .\nSri Lankan officials say at least four people have been killed in clashes since unidentified gunmen killed a Tamil legislator Sunday .\tNNP NNP NNS VBP IN JJS CD NNS VBP VBN VBN IN NNS IN JJ NNS VBD DT NNP NN NNP .\nOfficials say soldiers shot and killed two suspected Tamil Tiger rebels during a search operation in the city of Batticaloa early Monday .\tNNS VBP NNS VBN CC VBN CD JJ NNP NNP NNS IN DT NN NN IN DT NN IN NNP JJ NNP .\nAnd two civilians were killed overnight in the neighboring Trincomalee district .\tCC CD NNS VBD VBN RB IN DT JJ NNP NN .\nMeanwhile , preparations are underway for the funeral of Tamil legislator Joseph Pararajasingham , a key figure in the Tamil National Alliance party .\tRB , NNS VBP JJ IN DT NN IN NNP NN NNP NNP , DT JJ NN IN DT NNP NNP NNP NN .\nHe was shot dead while attending Christmas Mass in Batticaloa .\tPRP VBD VBN JJ IN VBG NNP NNP IN NNP .\nThe violence is the latest in a series of deadly attacks since rebel leader Velupillai Prabhakaran threatened to resume his struggle for an independent Tamil homeland if the government fails to reach a peace settlement within the next year .\tDT NN VBZ DT JJS IN DT NN IN JJ NNS IN JJ NN NNP NNP VBD TO VB PRP$ NN IN DT JJ NN NN IN DT NN VBZ TO VB DT NN NN IN DT JJ NN .\nIranian opposition leader Mir Hossein Mousavi has accused Iran 's government of persecuting opponents in the name of Islam .\tJJ NN NN NNP NNP NNP VBZ VBN NNP POS NN IN VBG NNS IN DT NN IN NNP .\nIn comments published on his website late Sunday , Mousavi said Islam does not beat anyone , arrest people or keep them in prison .\tIN NNS VBN IN PRP$ NN JJ NNP , NNP VBD NNP VBZ RB VB DT , NN NNS CC VB PRP IN NN .\nHe also rejected accusations by Iranian conservatives that the opposition is linked to external forces , saying such allegations do not benefit the country .\tPRP RB VBD NNS IN JJ NNS IN DT NN VBZ VBN TO JJ NNS , VBG JJ NNS VBP RB VB DT NN .\nIran 's opposition accuses conservative President Mahmoud Ahmadinejad of rigging a presidential election last June to give himself a second term .\tNNP POS NN VBZ JJ NNP NNP NNP IN VBG DT JJ NN JJ NNP TO VB PRP DT JJ NN .\nThe opposition claims Mousavi was the rightful winner .\tDT NN VBZ NNP VBD DT JJ NN .\nMousavi 's website also quotes him as criticizing the government 's post-election crackdown on independent media .\tNNP POS NN RB VBZ PRP IN VBG DT NN POS JJ NN IN JJ NNS .\nHe urged supporters of his Green Movement to keep raising awareness about their campaign for basic rights through social networking tools on the Internet .\tPRP VBD NNS IN PRP$ NN NN TO VB VBG NN IN PRP$ NN IN JJ NNS IN JJ NN NNS IN DT NN .\nSudan 's government and southern rebels have signed a peace deal formally ending Africa 's longest-running war .\tNNP POS NN CC JJ NNS VBP VBN DT NN NN RB VBG NNP POS JJ NN .\nSudanese Vice President Al Osman Mohammad Taha and rebel leader John Garang pledged to end more than 21 years of fighting during a ceremony Sunday in Nairobi , Kenya .\tJJ NNP NNP NNP NNP NNP NNP CC JJ NN NNP NNP VBD TO VB JJR IN CD NNS IN VBG IN DT NN NNP IN NNP , NNP .\nThe ceremony included U.S. Secretary of State Colin Powell who urged Sudan 's government to advance peace in a separate conflict in the western Darfur region .\tDT NN VBD NNP NNP IN NNP NNP NNP WP VBD NNP POS NN TO VB NN IN DT JJ NN IN DT JJ NNP NN .\nMr. Powell said Sudan 's future and its relationship with the United States rely on achieving peace throughout the entire nation .\tNNP NNP VBD NNP POS NN CC PRP$ NN IN DT NNP NNPS VBP IN VBG NN IN DT JJ NN .\nToday 's peace deal includes terms for sharing power and oil resources , and calls on rebels and ruling party officials to form an interim coalition government , followed in six years by a southern vote on independence .\tNN POS NN NN VBZ NNS IN NN NN CC NN NNS , CC VBZ IN NNS CC VBG NN NNS TO VB DT JJ NN NN , VBD IN CD NNS IN DT JJ NN IN NN .\nAn estimated two million people have died during the war between the Arab-controlled government and mostly black southern rebels , mainly of famine and disease .\tDT VBN CD CD NNS VBP VBN IN DT NN IN DT JJ NN CC RB JJ JJ NNS , RB IN NN CC NN .\nIraqi officials say President Jalal Talabani is to travel to Tehran Monday to meet with Iranian President Mahmoud Ahmadinejad .\tJJ NNS VBP NNP NNP NNP VBZ TO VB TO NNP NNP TO VB IN JJ NNP NNP NNP .\nThe talks are expected to focus on the deteriorating security situation in Iraq and how Iran can help stem sectarian violence .\tDT NNS VBP VBN TO VB IN DT JJ NN NN IN NNP CC WRB NNP MD VB VB JJ NN .\nIran is said to have influence with Shi'ite factions and militias in Iraq .\tNNP VBZ VBN TO VB NN IN NNP NNS CC NNS IN NNP .\nThe New York Times newspaper says a bi-partisan panel studying U.S. strategic options in Iraq is expected to urge the Bush administration to undertake aggressive regional diplomacy , including direct talks with Iran and Syria .\tDT NNP NNP NNP NN VBZ DT JJ NN VBG NNP JJ NNS IN NNP VBZ VBN TO VB DT NNP NN TO VB JJ JJ NN , VBG JJ NNS IN NNP CC NNP .\nThe Times quoted officials familiar with the plan as saying the panel will not recommend a specific timetable for a military withdrawal .\tDT NNP VBD NNS JJ IN DT NN IN VBG DT NN MD RB VB DT JJ NN IN DT JJ NN .\nIraq 's Prime Minister Nouri al-Maliki urged rival factions of his government to unite to prevent more sectarian violence , which killed a number of Iraqi across the country Sunday .\tNNP POS NNP NNP NNP NNP VBD JJ NNS IN PRP$ NN TO VB TO VB RBR JJ NN , WDT VBD DT NN IN NNS IN DT NN NNP .\nMr. Maliki said public disputes among Iraq 's politicians are fueling the bloodshed .\tNNP NNP VBD JJ NNS IN NNP POS NNS VBP VBG DT NN .\nIsraeli Education Minister Yuli Tamir has ordered that new textbooks no longer show the occupied West Bank as part of Israel .\tJJ NNP NNP NNP NNP VBZ VBN IN JJ NNS RB RB VB DT JJ NNP NNP IN NN IN NNP .\nTamir , a member of the Peace Now group that opposes West Bank settlement , said Tuesday the textbooks must show the Green Line that divides Israel from the West Bank .\tNNP , DT NN IN DT NNP NNP NN WDT VBZ NNP NNP NN , VBD NNP DT NNS MD VB DT NNP NNP IN VBZ NNP IN DT NNP NNP .\nIsrael seized the territory in the 1967 Six-Day War .\tNNP VBD DT NN IN DT CD NNP NNP .\nAbout 2,00,000 Jews live in West Bank settlements , among more than two million Palestinians .\tIN CD NNPS VBP IN NNP NNP NNS , IN JJR IN CD CD NNS .\nIsrael occupies the area but has not annexed it .\tNNP VBZ DT NN CC VBZ RB VBN PRP .\nMany settlers want the enclaves to be incorporated into the Jewish state .\tJJ NNS VBP DT NNS TO VB VBN IN DT JJ NN .\nThe Palestinians hope to establish an independent state in the West Bank and Gaza Strip .\tDT NNS VBP TO VB DT JJ NN IN DT NNP NNP CC NNP NNP .\nPro-settlement Jewish activists are criticizing the education minister .\tNNP NNP NNS VBP VBG DT NN NN .\nA member of parliament from Prime Minister Ehud Olmert 's Kadima party , Ronit Tirosh , said the minister has no right to make the decision .\tDT NN IN NN IN NNP NNP NNP NNP POS NNP NN , NNP NNP , VBD DT NN VBZ DT NN TO VB DT NN .\nColombia has signed a free trade agreement with the four countries that make up the European Free Trade Association , EFTA .\tNNP VBZ VBN DT JJ NN NN IN DT CD NNS WDT VBP RP DT JJ NNP NNP NNP , NNP .\nA statement from the association says the Colombian trade minister , Luis Guillermo Plata , and his partners from Switzerland , Liechtenstein , Iceland and Norway signed the agreement Tuesday in Geneva .\tDT NN IN DT NN VBZ DT JJ NN NN , NNP NNP NNP , CC PRP$ NNS IN NNP , NNP , NNP CC NNP VBD DT NN NNP IN NNP .\nOfficials say the agreement covers Colombia 's industrial and agricultural exports .\tNNS VBP DT NN VBZ NNP POS JJ CC JJ NNS .\nEFTA ministers said they are confident the new trade opportunities with Colombia will contribute to economic growth and development among the participating countries .\tNNP NNS VBD PRP VBP JJ DT JJ NN NNS IN NNP MD VB TO JJ NN CC NN IN DT VBG NNS .\nEFTA was founded in 1960 and has 17 ongoing free trade treaties with countries ranging from Canada to Egypt .\tNNP VBD VBN IN CD CC VBZ CD JJ JJ NN NNS IN NNS VBG IN NNP TO NNP .\nA Vatican spokesman says Pope John Paul II tried to express his thanks when he was told about the crowd of thousands of young people gathered in St. Peter 's Square offering their prayers and support for him .\tDT NNP NN VBZ NNP NNP NNP NNP VBD TO VB PRP$ NNS WRB PRP VBD VBN IN DT NN IN NNS IN JJ NNS VBN IN NNP NNP POS NNP VBG PRP$ NNS CC NN IN PRP .\nThe spokesman says the pope apparently was thinking of the countless young Catholics he met during his many trips abroad - to 129 countries and foreign territories - when he tried to speak to the priests attending him late Friday .\tDT NN VBZ DT NN RB VBD VBG IN DT JJ JJ NNPS PRP VBD IN PRP$ JJ NNS RB : TO CD NNS CC JJ NNS : WRB PRP VBD TO VB TO DT NNS VBG PRP JJ NNP .\nThe pope 's spokesman , Joaquin Navarro-Valls , told reporters that John Paul II ' seemed to have said the following sentence : ' I have looked for you .\tDT NN POS NN , NNP NNP , VBD NNS IN NNP NNP NNP `` VBD TO VB VBN DT JJ NN IN `` PRP VBP VBN IN PRP .\nNow you have come to me .\tRB PRP VBP VBN TO PRP .\nAnd I thank you . '\tCC PRP VBP PRP . ``\nAsked for further details , Mr. Navarro-Valls said those words were ' reconstructed ' or pieced together from several attempts the pope made to speak late Friday .\tVBN IN JJ NNS , NNP NNP VBD DT NNS VBD `` VBN `` CC VBN RB IN JJ NNS DT NN VBD TO VB JJ NNP .\nLeaders from Africa and Germany are meeting in Berlin for a conference aimed at promoting sustainable development and economic growth in Africa .\tNNS IN NNP CC NNP VBP VBG IN NNP IN DT NN VBN IN VBG JJ NN CC JJ NN IN NNP .\nLiberian President Ellen Johnson Sirleaf and Danish Prime Minister Anders Fogh Rasmussen are joining German Chancellor Angela Merkel in opening the conference .\tJJ NNP NNP NNP NNP CC JJ NNP NNP NNP NNP NNP VBP VBG JJ NNP NNP NNP IN VBG DT NN .\nThe German government says the two-day meeting of the African Partnership Forum will serve to prepare recommendations for summits of the Group of Eight and the African Union .\tDT JJ NN VBZ DT JJ NN IN DT NNP NNP NNP MD VB TO VB NNS IN NNS IN DT NNP IN CD CC DT NNP NNP .\nG8 leaders are scheduled to meet in northern Germany on June 6 .\tNNP NNS VBP VBN TO VB IN JJ NNP IN NNP CD .\nThe Africa Partnership Initiative was established by the G8 in 2003 as a way to encourage dialogue between African nations and the world 's wealthiest countries .\tDT NNP NNP NNP VBD VBN IN DT NNP IN CD IN DT NN TO VB NN IN JJ NNS CC DT NN POS JJS NNS .\nGermany currently holds the rotating European Union and G8 presidencies .\tNNP RB VBZ DT VBG NNP NNP CC NNP NNS .\nThe Swedish government continues to face criticism for a slow response to Asia 's tsunami disaster .\tDT JJ NN VBZ TO VB NN IN DT JJ NN TO NNP POS NN NN .\nLocal media have been very critical of the government of Prime Minister Goran Persson , noting that his Foreign Minister Laila Freivalds did not go to her office for more than a day after the tsunami was first reported .\tJJ NNS VBP VBN RB JJ IN DT NN IN NNP NNP NNP NNP , VBG IN PRP$ NNP NNP NNP NNP VBD RB VB TO PRP$ NN IN JJR IN DT NN IN DT NN VBD RB VBN .\nNewspapers say hundreds of angry citizens have written letters and e-mails condemning the government 's response to the tragedy .\tNNS VBP NNS IN JJ NNS VBP VBN NNS CC NNS VBG DT NN POS NN TO DT NN .\nSweden has been the hardest-hit Western nation , with more than 3,500 of its citizens unaccounted for and at least 59 known dead .\tNNP VBZ VBN DT JJ JJ NN , IN JJR IN CD IN PRP$ NNS JJ IN CC IN JJS CD VBN NN .\nThe prime minister has ordered an investigation , but has said that Ms. Freivalds is safe in her job .\tDT JJ NN VBZ VBN DT NN , CC VBZ VBN IN NNP NNP VBZ JJ IN PRP$ NN .\nMr. Persson does not face re-election until September 2006 .\tNNP NNP VBZ RB VB NN IN NNP CD .\nMeanwhile , flags flew at half-staff Sunday as Sweden , Finland and Norway marked an official day of mourning .\tRB , NNS VBD IN NN NNP IN NNP , NNP CC NNP VBD DT JJ NN IN NN .\nA flurry of new reports give a mixed assessment of the US economy Thursday .\tDT NN IN JJ NNS VBP DT JJ NN IN DT NNP NN NNP .\nThe job market looks better , with the Labor Department reporting the biggest drop since 2001 in requests for first-time unemployment compensation .\tDT NN NN VBZ RBR , IN DT NNP NNP VBG DT JJS NN IN CD IN NNS IN JJ NN NN .\nIts report shows the number of such initial claims falling 43,000 to 3,17,000 last week .\tPRP$ NN VBZ DT NN IN JJ JJ NNS VBG CD TO CD JJ NN .\nBut that news was tempered by other reports .\tCC DT NN VBD VBN IN JJ NNS .\nThe Commerce Department says the deficit in U.S. foreign trade and investment , called the current account , hit a record $ 165 billion between July and September .\tDT NNP NNP VBZ DT NN IN NNP JJ NN CC NN , VBD DT JJ NN , VBD DT NN $ CD CD IN NNP CC NNP .\nMany economists had predicted the gap between what Americans buy abroad and what they sell would be even worse .\tJJ NNS VBD VBN DT NN IN WP NNS VBP RB CC WP PRP VBP MD VB RB JJR .\nCommerce also reported the number of new houses started in November dropped 13 percent , the sharpest decline in almost 11 years .\tNNP RB VBD DT NN IN JJ NNS VBD IN NNP VBD CD NN , DT JJS NN IN RB CD NNS .\nIndonesian health officials say local tests have confirmed a man has tested positive for the H5N1 strain of bird flu virus .\tJJ NN NNS VBP JJ NNS VBP VBN DT NN VBZ VBN JJ IN DT NNP NN IN NN NN NN .\nAuthorities say the man , in his 20s , is in stable condition at a hospital in West Sumatra province .\tNNS VBP DT NN , IN PRP$ NNS , VBZ IN JJ NN IN DT NN IN NNP NNP NN .\nFriday , the World Health Organization confirmed that a one-year-old girl had become the 23rd person in Indonesia to die of the H5N1 strain of bird flu .\tNNP , DT NNP NNP NNP VBD IN DT JJ NN VBD VBN DT JJ NN IN NNP TO VB IN DT NNP NN IN NN NN .\nAlso Friday , representatives from the Pan American Health Organization , the Inter-American Institute for Cooperation in Agriculture and the Organization of American States met in Washington to discuss ways to head off a possible bird flu epidemic .\tRB NNP , NNS IN DT NNP NNP NNP NNP , DT NNP NNP IN NNP IN NNP CC DT NNP IN NNP NNPS VBD IN NNP TO VB NNS TO VB RP DT JJ NN NN NN .\nAbout 25 centers throughout the region already monitor outbreaks of influenza .\tIN CD NNS IN DT NN RB VB NNS IN NN .\nWith the world sending much of its financial and technical aid to other geographic areas , the officials say it is important for the region to pool its resources .\tIN DT NN VBG NN IN PRP$ JJ CC JJ NN TO JJ JJ NNS , DT NNS VBP PRP VBZ JJ IN DT NN TO NN PRP$ NNS .\nThe United States has reopened its embassy in the Saudi capital , Riyadh , but its consulate in Jeddah remains closed , two days after it was stormed by militants linked to al-Qaida .\tDT NNP NNPS VBZ VBN PRP$ NN IN DT JJ NN , NNP , CC PRP$ NN IN NNP VBZ JJ , CD NNS IN PRP VBD VBN IN NNS VBN TO NNP .\nAn embassy spokeswoman says U.S. officials Wednesday ended the emergency closure of the embassy as well as a consular office in the eastern port of Dhahran .\tDT JJ NN VBZ NNP NNS NNP VBD DT NN NN IN DT NN RB RB IN DT JJ NN IN DT JJ NN IN NNP .\nThe missions were closed after Monday 's attack that killed five non-American staff and four of the five gunmen .\tDT NNS VBD VBN IN NNP POS NN WDT VBD CD JJ NN CC CD IN DT CD NNS .\nU.S. officials say they are bolstering security at all U.S. missions in Saudi Arabia in the wake of the attack .\tNNP NNS VBP PRP VBP VBG NN IN DT NNP NNS IN NNP NNP IN DT NN IN DT NN .\nTuesday , the U.S. State Department re-issued a travel warning for Saudi Arabia , saying private American citizens should leave the country or cancel plans to travel there .\tNNP , DT NNP NNP NNP VBD DT NN NN IN NNP NNP , VBG JJ JJ NNS MD VB DT NN CC VB NNS TO VB RB .\nThe U.S. Marine Corps has ordered two Marines not to speak to the media about their accusations of prisoner abuse at the Guantanamo Bay detention center .\tDT NNP NNP NNP VBZ VBN CD NNS RB TO VB TO DT NNS IN PRP$ NNS IN NN NN IN DT NNP NNP NN NN .\nBoth Marines are part of a military legal team defending a detainee at Guantanamo Bay .\tDT NNS VBP NN IN DT JJ JJ NN VBG DT NN IN NNP NNP .\nMarine officials say the gag order was issued to ensure the legal team 's actions conform to professional standards .\tNN NNS VBP DT NN NN VBD VBN TO VB DT JJ NN POS NNS VBP TO JJ NNS .\nLast week Lieutenant Colonel Colby Vokey and Sergeant Heather Cerveny released a report which included a sworn statement from Cerveny alleging she heard guards describing the physical and mental abuse of prisoners .\tJJ NN NNP NNP NNP NNP CC NNP NNP NNP VBD DT NN WDT VBD DT JJ NN IN NNP VBG PRP VBD NNS VBG DT JJ CC JJ NN IN NNS .\nThe Defense Department is investigating the accusations .\tDT NNP NNP VBZ VBG DT NNS .\nThe United States has been widely criticized for creating and maintaining the Guantanamo Bay prison , where suspects from the wars in Afghanistan and Iraq are held for questioning .\tDT NNP NNPS VBZ VBN RB VBN IN VBG CC VBG DT NNP NNP NN , WRB NNS IN DT NNS IN NNP CC NNP VBP VBN IN VBG .\nThe McDonald 's Corporation will have to answer a lawsuit filed by four New York teenagers who allege the company hid the health risks of hamburgers and Chicken McNuggets .\tDT NN POS NN MD VB TO VB DT NN VBN IN CD NNP NNP NNS WP VBP DT NN VBD DT NN NNS IN NNS CC NNP NNPS .\nThe suit blames McDonald 's for the teenagers ' obesity and health problems , and it asks billions of dollars in damages .\tDT NN VBZ NNP POS IN DT NNS POS NN CC NN NNS , CC PRP VBZ NNS IN NNS IN NNS .\nMcDonald 's is the world 's largest fast-food chain , and company officials have called the lawsuit ' frivolous . '\tNNP POS VBZ DT NN POS JJS NN NN , CC NN NNS VBP VBN DT NN `` JJ . ``\nA district judge originally dismissed the suit , but an appeals court late Tuesday allowed the case to move forward and cleared the way for the teens to demand that McDonald 's turn over documents .\tDT NN NN RB VBD DT NN , CC DT NNS NN RB NNP VBD DT NN TO VB RB CC VBD DT NN IN DT NNS TO VB DT NN POS NN IN NNS .\nThe case was originally filed in 2002 , and is the first obesity-related lawsuit against a food company to reach a judge .\tDT NN VBD RB VBN IN CD , CC VBZ DT JJ JJ NN IN DT NN NN TO VB DT NN .\nJapanese Foreign Minister Taro Aso says Tokyo is planning to host a meeting with Israeli , Palestinian and Jordanian officials next month to help peace efforts in the Middle East .\tJJ NNP NNP NNP NNP VBZ NNP VBZ VBG TO VB DT NN IN JJ , JJ CC JJ NNS JJ NN TO VB NN NNS IN DT NNP NNP .\nSpeaking Tuesday in Tokyo , Aso said plans have not been finalized , but Japan hopes the meeting will happen in mid-March .\tVBG NNP IN NNP , NNP VBD NNS VBP RB VBN VBN , CC NNP VBZ DT NN MD VB IN NN .\nHe said the meeting would be a follow-up to a proposal by former Prime Minister Junichiro Koizumi during a visit to the Middle East last July .\tPRP VBD DT NN MD VB DT NN TO DT NN IN JJ NNP NNP NNP NNP IN DT NN TO DT NNP NNP JJ NNP .\nThe proposal included Japanese economic assistance for development projects on the West Bank .\tDT NN VBD JJ JJ NN IN NN NNS IN DT NNP NNP .\nMr. Koizumi 's trip to the Middle East was the first by a Japanese leader in a decade .\tNNP NNP POS NN TO DT NNP NNP VBD DT JJ IN DT JJ NN IN DT NN .\nJapan 's current leader , Prime Minister Shinzo Abe , has not announced any official plans to visit the region .\tNNP POS JJ NN , NNP NNP NNP NNP , VBZ RB VBN DT JJ NNS TO VB DT NN .\nThe U.S. Food And Drug Administration ( FDA ) is searching for the cause of a salmonella outbreak that it has traced to raw tomatoes .\tDT NNP NNP CC NNP NNP LRB NNP RRB VBZ VBG IN DT NN IN DT NN NN IN PRP VBZ VBN TO JJ NNS .\nMore than 165 people across the U.S. have become ill with salmonella poisoning since April .\tJJR IN CD NNS IN DT NNP VBP VBN JJ IN NN NN IN NNP .\nOn June 7 , the FDA issued an advisory , warning consumers not to eat several common types of tomatoes .\tIN NNP CD , DT NNP VBD DT NN , VBG NNS RB TO VB JJ JJ NNS IN NNS .\nVOA Producer Barry Unger has more in a report voiced by Tony Budny .\tNNP NNP NNP NNP VBZ RBR IN DT NN VBN IN NNP NNP .\nMore than 2,500 Sri Lankan Marxists have marched in Colombo to press the government to cancel planned peace talks with Tamil rebels and to punish them instead for a rash of killings blamed on the rebels .\tJJR IN CD NNP NNP NNPS VBP VBN IN NNP TO VB DT NN TO VB JJ NN NNS IN NNP NNS CC TO VB PRP RB IN DT NN IN NNS VBN IN DT NNS .\nThe People 's Liberation Front , which left the coalition government over plans to share tsunami aid with the rebels , said it is time to get tough with the Tigers .\tDT NNS POS NNP NNP , WDT VBD DT NN NN IN NNS TO VB NN NN IN DT NNS , VBD PRP VBZ NN TO VB JJ IN DT NNP .\nThe protesters carried a picture of slain Foreign Minister Lakshman Kadirgamar , an ethnic Tamil who helped outlaw the Tamil Tigers in the United States and Britain .\tDT NNS VBD DT NN IN NN NNP NNP NNP NNP , DT JJ NN WP VBD VB DT NNP NNPS IN DT NNP NNPS CC NNP .\nThe Sri Lankan government has blamed the group for his assassination , a charge denied by the Tamil Tigers .\tDT NNP NNP NN VBZ VBN DT NN IN PRP$ NN , DT NN VBN IN DT NNP NNP .\nNorwegian mediators are arranging emergency talks between the government and the rebels to find ways to save a more than three-year-old cease-fire .\tJJ NNS VBP VBG NN NNS IN DT NN CC DT NNS TO VB NNS TO VB DT JJR IN JJ NN .\nBritish Foreign Secretary David Miliband is in Pakistan for talks with government leaders .\tJJ NNP NNP NNP NNP VBZ IN NNP IN NNS IN NN NNS .\nOfficials say Miliband traveled Sunday to the northwestern city of Peshawar , capital of the volatile North West Frontier Province .\tNNS VBP NNP VBD NNP IN DT JJ NN IN NNP , NN IN DT JJ NNP NNP NNP NNP .\nThe British official is expected to meet with the provincial governor and other local officials to discuss security issues and ongoing cooperation .\tDT JJ NN VBZ VBN TO VB IN DT JJ NN CC JJ JJ NNS TO VB NN NNS CC JJ NN .\nEarlier this month , British Interior Minister Jacqui Smith said Britain is ready to increase its assistance to Pakistan to combat militancy .\tRBR DT NN , JJ NNP NNP NNP NNP VBD NNP VBZ JJ TO VB PRP$ NN TO NNP TO VB NN .\nPakistan is a key Western ally and has helped the United States and Britain thwart terrorist attacks .\tNNP VBZ DT JJ JJ NN CC VBZ VBN DT NNP NNPS CC NNP VB JJ NNS .\nPakistani officials say pro-Taleban militants have beheaded a taxi driver in a northwestern tribal region after accusing him of being a U.S. informant .\tJJ NNS VBP JJ NNS VBP VBN DT NN NN IN DT JJ JJ NN IN VBG PRP IN VBG DT NNP NN .\nThe officials say the taxi driver 's headless body was found Tuesday in South Waziristan .\tDT NNS VBP DT NN NN POS JJ NN VBD VBN NNP IN NNP NNP .\nHe had been missing since last week .\tPRP VBD VBN VBG IN JJ NN .\nMilitants accused the man of working with U.S. forces across the border in Afghanistan .\tNNS VBD DT NN IN VBG IN NNP NNS IN DT NN IN NNP .\nHe was the second taxi driver to be killed in the Pakistani tribal region this month in similar circumstances .\tPRP VBD DT JJ NN NN TO VB VBN IN DT JJ JJ NN DT NN IN JJ NNS .\nPro-Taleban militants have been blamed for killing scores of local tribesmen accused of helping Pakistani or U.S. forces .\tJJ NNS VBP VBN VBN IN VBG NNS IN JJ NNS VBN IN VBG JJ CC NNP NNS .\nPakistan has deployed 80,000 troops along its border with Afghanistan to root out foreign militants and their local allies .\tNNP VBZ VBN CD NNS IN PRP$ NN IN NNP TO VB RP JJ NNS CC PRP$ JJ NNS .\nRed Cross officials in Pakistan say a helicopter with a crew of seven returning home to Turkmenistan after assisting with earthquake relief is missing .\tNNP NNP NNS IN NNP VBP DT NN IN DT NN IN CD VBG NN TO NNP IN VBG IN NN NN VBZ VBG .\nA relief agency official said Sunday the air control tower lost contact with the aircraft Friday as it crossed into Afghan airspace not long after taking off from Peshawar , Pakistan .\tDT NN NN NN VBD NNP DT NN NN NN VBD NN IN DT NN NNP IN PRP VBD IN JJ NN RB RB IN VBG RP IN NNP , NNP .\nThe Soviet-era Mi-8 helicopter from Turkmenistan had been chartered by the Red Cross for the earthquake relief effort in Pakistan for the past three months and was returning home after completing its mission .\tDT NNP NNP NN IN NNP VBD VBN VBN IN DT NNP NNP IN DT NN NN NN IN NNP IN DT JJ CD NNS CC VBD VBG NN IN VBG PRP$ NN .\nThe official says a search operation is under way to locate the helicopter and crew .\tDT NN VBZ DT NN NN VBZ IN NN TO VB DT NN CC NN .\nDozens of angry Muslims in Pakistan 's southern city of Karachi protested Friday against the release of an anti-Islamic film by a Dutch lawmaker .\tNNS IN JJ NNS IN NNP POS JJ NN IN NNP VBD NNP IN DT NN IN DT JJ NN IN DT JJ NN .\nMembers of the hard-line Islamist party Jamaat-i-Islami organized the protest , chanting ' Death to the filmmaker ' and demanding that Pakistan 's government sever diplomatic ties with The Netherlands .\tNNS IN DT JJ NNP NN NNP VBD DT NN , VBG `` NN TO DT NN `` CC VBG IN NNP POS NN VB JJ NNS IN DT NNP .\nThe film , called Fitna , was made by Dutch lawmaker Geert Wilders and contains images of terrorist attacks and quotations from the Koran .\tDT NN , VBD NNP , VBD VBN IN JJ NN NNP NNP CC VBZ NNS IN JJ NNS CC NNS IN DT NNP .\nThe Pakistani government Friday lodged a strong protest with the Netherlands , summoning the Dutch ambassador to Pakistan to condemn what it called the ' defamatory ' film .\tDT JJ NN NNP VBD DT JJ NN IN DT NNP , VBG DT JJ NN TO NNP TO VB WP PRP VBD DT `` JJ `` NN .\nProtests have erupted in Pakistan and Afghanistan in recent weeks in anticipation of the film 's release and after the reprinting of cartoons of the Prophet Muhammad in Danish newspapers .\tNNS VBP VBN IN NNP CC NNP IN JJ NNS IN NN IN DT NN POS NN CC IN DT NN IN NNS IN DT NNP NNP IN JJ NNS .\nNATO peacekeepers in Afghanistan say three Italian troops have been slightly wounded in a suicide car-bombing attack in the western city of Herat .\tNNP NNS IN NNP VBP CD JJ NNS VBP VBN RB VBN IN DT NN JJ NN IN DT JJ NN IN NNP .\nA spokesman for the NATO-led International Security Assistance Force told reporters in Kabul that the attacker was killed in the blast , which occurred Tuesday on the road from Herat airport to the city .\tDT NN IN DT JJ NNP NNP NNP NNP VBD NNS IN NNP IN DT NN VBD VBN IN DT NN , WDT VBD NNP IN DT NN IN NNP NN TO DT NN .\nThe spokesman says the Italians were wounded by flying glass from their vehicle , which was damaged by the explosion .\tDT NN VBZ DT NNS VBD VBN IN VBG NN IN PRP$ NN , WDT VBD VBN IN DT NN .\nA purported Taleban spokesman , Qari Mohammed Yousuf , says his group carried out the attack - the latest in a spate of suicide bombings and other attacks in Afghanistan claimed by the Taleban .\tDT JJ NNP NN , NNP NNP NNP , VBZ PRP$ NN VBD IN DT NN IN DT JJS IN DT NN IN NN NNS CC JJ NNS IN NNP VBN IN DT NNP .\nA former U.S. contractor in Iraq has pleaded guilty to bribery , conspiracy and money laundering involving millions of dollars meant for reconstruction .\tDT JJ NNP NN IN NNP VBZ VBN JJ TO NN , NN CC NN NN VBG NNS IN NNS VBN IN NN .\nRobert Stein entered his plea in U.S. District Court in Washington Thursday .\tNNP NNP VBD PRP$ NN IN NNP NNP NNP IN NNP NNP .\nStein worked for the Coalition Provision Authority in Iraq , the temporary U.S.-led government , handing out millions of dollars intended to rebuild the city of Hilla , south of Baghdad .\tNNP VBD IN DT NNP NNP NNP IN NNP , DT JJ JJ NN , VBG RP NNS IN NNS VBN TO VB DT NN IN NNP , NN IN NNP .\nStein admitted he formed a ring of co-conspirators who diverted reconstruction money to such personal use as luxury cars , jewelry and U.S. real estate .\tNNP VBD PRP VBD DT NN IN NNS WP VBN NN NN TO JJ JJ NN IN NN NNS , NN CC NNP JJ NN .\nStein has a prior fraud conviction and it was not immediately clear why he was allowed to control tens of millions of dollars , much of it in cash .\tNNP VBZ DT JJ NN NN CC PRP VBD RB RB JJ WRB PRP VBD VBN TO VB NNS IN NNS IN NNS , NN IN PRP IN NN .\nU.S. businessman Philip Bloom and five U.S. servicemen have also been implicated in the scheme .\tNNP NN NNP NNP CC CD NNP NNS VBP RB VBN VBN IN DT NN .\nThai police say a bomb blast in southern Narthiwat province has injured at least 15 people .\tJJ NNS VBP DT NN NN IN JJ NNP NN VBZ VBN IN JJS CD NNS .\nThe police say they do not yet know whether anyone was killed in the explosion , which occurred Thursday in the town of Sungai Kolok .\tDT NNS VBP PRP VBP RB RB VB IN DT VBD VBN IN DT NN , WDT VBD NNP IN DT NN IN NNP NNP .\nIt was not immediately clear who was responsible .\tPRP VBD RB RB JJ WP VBD JJ .\nBut a Muslim separatist group called the Pattani United Liberation Organization had warned of a violent backlash over the deaths of some 84 people during protests Monday in southern Thailand .\tCC DT NNP NN NN VBD DT NNP NNP NNP NNP VBD VBN IN DT JJ NN IN DT NNS IN DT CD NNS IN NNS NNP IN JJ NNP .\nThai Prime Minister Thaksin Shinawatra has promised an investigation into the incident that brought widespread international outrage , particularly in majority Muslim countries Most of the deaths were attributed to suffocation after police packed detained protesters in a truck for transport to a detention center .\tJJ NN NN NNP NNP VBZ VBN DT NN IN DT NN WDT VBD JJ JJ NN , RB IN NN NN NNS JJS IN DT NNS VBD VBN TO NN IN NNS VBD VBN NNS IN DT NN IN NN TO DT NN NN .\nPro-government lawmakers in Venezuela have appointed 17 new judges to the Supreme Court , strengthening the administration of President Hugo Chavez .\tJJ NNS IN NNP VBP VBN CD JJ NNS TO DT NNP NNP , VBG DT NN IN NNP NNP NNP .\nIn Caracas Monday , legislators from the ruling party pushed the appointments through the 165-seat Congress .\tIN NNP NNP , NNS IN DT VBG NN VBD DT NNS IN DT JJ NNP .\nOpposition leaders condemned the appointments as unconstitutional , and then walked out of the session .\tNN NNS VBD DT NNS IN JJ , CC RB VBD IN IN DT NN .\nEarlier this year , lawmakers approved measures that expanded the number of Supreme Court justices from 20 to 32 .\tRBR DT NN , NNS VBD NNS WDT VBD DT NN IN NNP NNP NNS IN CD TO CD .\nThey also changed the rules to allow Congress to appoint judges with a simple majority , and to fire sitting justices .\tPRP RB VBD DT NNS TO VB NNP TO VB NNS IN DT JJ NN , CC TO VB VBG NNS .\nHuman rights groups have condemned the measures , saying they are a threat to democracy .\tJJ NNS NNS VBP VBN DT NNS , VBG PRP VBP DT NN TO NN .\nAmong the new justices is Francisco Carrasquero , head of the nation 's electoral council .\tIN DT JJ NNS VBZ NNP NNP , NN IN DT NN POS JJ NN .\nCritics accuse him of helping Mr. Chavez defeat a recall in August .\tNNS VBP PRP IN VBG NNP NNP VB DT NN IN NNP .\nNorth and South Korean officials have apparently made little progress toward reaching an agreement on the plight of South Korean prisoners of war and missing civilians South Korean officials believe are alive in the north .\tNNP CC NNP JJ NNS VBP RB VBN JJ NN IN VBG DT NN IN DT NN IN JJ JJ NNS IN NN CC VBG NNS JJ JJ NNS VBP VBP JJ IN DT NN .\nTalks hosted by the Red Cross began Tuesday at the Mount Kumgang resort in North Korea .\tNNS VBN IN DT NNP NNP VBD NNP IN DT NNP NNP NN IN NNP NNP .\nThe Yonhap news agency says that South Korean officials pushed for at least eight annual reunions for family members separated by the Korean War .\tDT NNP NN NN VBZ IN JJ JJ NNS VBD IN IN JJS CD JJ NNS IN NN NNS VBN IN DT JJ NNP .\nThe report said North Korea instead suggested holding one reunion each June .\tDT NN VBD NNP NNP RB VBD VBG CD NN DT NNP .\nSeoul says more than 500 prisoners and hundreds of kidnapped civilians are still alive in the North .\tNNP VBZ JJR IN CD NNS CC NNS IN VBN NNS VBP RB JJ IN DT NNP .\nPyongyang denies holding any war prisoners and says any South Korean citizens in its country defected voluntarily .\tNNP VBZ VBG DT NN NNS CC VBZ DT JJ JJ NNS IN PRP$ NN VBD RB .\nOn a separate issue , South Korea agreed to donate 1,50,000 tons of fertilizer to the impoverished North .\tIN DT JJ NN , NNP NNP VBD TO VB CD NNS IN NN TO DT JJ NNP .\nTwo senior officials at the U.S. Central Intelligence Agency have turned in their resignations amid mounting turmoil since the recent appointment of a new director .\tCD JJ NNS IN DT NNP NNP NNP NNP VBP VBN RP PRP$ NNS IN VBG NN IN DT JJ NN IN DT JJ NN .\nDeputy Director John McLaughlin announced his retirement from the spy agency Friday after 32 years of service .\tNNP NNP NNP NNP VBD PRP$ NN IN DT NN NN NNP IN CD NNS IN NN .\nThe Washington Post newspaper quotes unidentified officials as saying he resigned after warning recently-appointed director Porter Goss that one of his top aides , chief of staff Patrick Murray , was ' treating senior officials disrespectfully and risked widespread resignations . '\tDT NNP NNP NN VBZ JJ NNS IN VBG PRP VBD IN VBG JJ NN NNP NNP IN CD IN PRP$ JJ NNS , NN IN NN NNP NNP , VBD `` VBG JJ NNS RB CC VBD JJ NNS . ``\nDeputy Director of Operations Stephen Kappes also tendered his resignation Friday , reportedly after a confrontation with the same aide .\tNNP NNP IN NNP NNP NNP RB VBD PRP$ NN NNP , RB IN DT NN IN DT JJ NN .\nThe article says after offering his resignation , Mr. Kappes agreed to delay his decision until Monday .\tDT NN VBZ IN VBG PRP$ NN , NNP NNP VBD TO VB PRP$ NN IN NNP .\nIt also says several other senior CIA officers have threatened to quit .\tPRP RB VBZ JJ JJ JJ NNP NNS VBP VBN TO VB .\nThe CIA has been sharply criticized for intelligence failures leading up to the 2001 September 11 terrorist attacks and the Iraq war .\tDT NNP VBZ VBN RB VBN IN NN NNS VBG RP TO DT CD NNP CD JJ NNS CC DT NNP NN .\nJapanese Prime Minister Junichiro Koizumi has met with Peruvian President Alejandro Toledo on the sidelines of the Asia-Pacific Economic Cooperation summit in Busan , South Korea .\tJJ NNP NNP NNP NNP VBZ VBN IN JJ NNP NNP NNP IN DT NNS IN DT NNP NNP NNP NN IN NNP , NNP NNP .\nJapanese officials say Mr. Toledo told the Japanese leader that former Peruvian President Alberto Fujimori 's recent return to South America should not affect the two nations ' relationship .\tJJ NNS VBP NNP NNP VBD DT JJ NN IN JJ JJ NNP NNP NNP POS JJ NN TO NNP NNP MD RB VB DT CD NNS POS NN .\nMr. Fujimori , a Japanese citizen , fled to Japan five years ago in the midst of a corruption scandal .\tNNP NNP , DT JJ NN , VBD TO NNP CD NNS RB IN DT NN IN DT NN NN .\nHe was arrested last week in Chile .\tPRP VBD VBN JJ NN IN NNP .\nIf returned to Peru , he faces charges of corruption and of authorizing death squads .\tIN VBN TO NNP , PRP VBZ NNS IN NN CC IN VBG NN NNS .\nLast week , Peru recalled its ambassador to Japan after a Japanese consular official visited Mr. Fujimori in jail .\tJJ NN , NNP VBD PRP$ NN TO NNP IN DT JJ JJ NN VBD NNP NNP IN NN .\nLima says Tokyo is interfering in his extradition process , but Tokyo insists it is treating him like any other Japanese citizen .\tNNP VBZ NNP VBZ VBG IN PRP$ NN NN , CC NNP VBZ PRP VBZ VBG PRP IN DT JJ JJ NN .\nU.S. presidential candidates Hillary Clinton and John McCain have received endorsements by a newspaper in Iowa , where the first step in the election process takes place next month .\tNNP JJ NNS NNP NNP CC NNP NNP VBP VBN NNS IN DT NN IN NNP , WRB DT JJ NN IN DT NN NN VBZ NN JJ NN .\nThe Des Moines Register endorsed Senator Clinton for the Democratic Party nomination and Senator McCain for the Republican Party , saying they are the most competent and ready to lead of the 2008 presidential hopefuls .\tDT NNP NNP NNP VBD NNP NNP IN DT JJ NNP NN CC NNP NNP IN DT NNP NNP , VBG PRP VBP DT RBS JJ CC JJ TO VB IN DT CD JJ NNS .\nMeanwhile , the Boston Globe newspaper endorsed Democratic Senator Barack Obama , saying he fulfills America 's need for a president with an intuitive sense of the wider world .\tRB , DT NNP NNP NN VBD JJ NNP NNP NNP , VBG PRP VBZ NNP POS NN IN DT NN IN DT JJ NN IN DT JJR NN .\nThe newspaper also endorsed Senator McCain , calling him a straight talker who could help a polarized nation .\tDT NN RB VBD NNP NNP , VBG PRP DT JJ NN WP MD VB DT JJ NN .\nIowa holds presidential caucuses on January 3 in which state voters from each party choose their preferred candidates for the November election .\tNNP VBZ JJ NNS IN NNP CD IN WDT NN NNS IN DT NN VB PRP$ JJ NNS IN DT NNP NN .\nThe European Union has welcomed Sunday 's publication of Iraq 's draft constitution .\tDT NNP NNP VBZ VBN NNP POS NN IN NNP POS NN NN .\nThe EU presidency , held currently by British Prime Minister Tony Blair , issued a statement calling the document an ' important milestone ' in Iraq 's political process .\tDT NNP NN , VBN RB IN JJ NNP NNP NNP NNP , VBD DT NN VBG DT NN DT `` JJ NN `` IN NNP POS JJ NN .\nThe EU statement urged all Iraqis to participate in the ratification vote scheduled for October .\tDT NNP NN VBD DT NNS TO VB IN DT NN NN VBN IN NNP .\nIt also offered EU help in preparing for that vote and for national elections scheduled for December .\tPRP RB VBD NNP NN IN VBG IN DT NN CC IN JJ NNS VBN IN NNP .\nThe biggest U.S. bank , Citigroup , lost $ 5.1 billion in the first three months of this year after making bad investments in securities backed by home loans .\tDT JJS NNP NN , NNP , VBD $ CD CD IN DT JJ CD NNS IN DT NN IN VBG JJ NNS IN NNS VBN IN NN NNS .\nThe losses reported Friday grew as more and more consumers also fell behind on car and credit-card loans .\tDT NNS VBD NNP VBD IN JJR CC JJR NNS RB VBD RB IN NN CC NN NNS .\nCitigroup 's managers say they will cut costs sharply , focus on the most fundamental parts of their business , and fire another 9,000 of their 3,70,000 workers .\tNNP POS NNS VBP PRP MD VB NNS RB , VB IN DT RBS JJ NNS IN PRP$ NN , CC VB DT CD IN PRP$ CD NNS .\nIt is the second major quarterly loss for Citigroup , and it is the latest in a wave of dismal bank earning reports over the past week .\tPRP VBZ DT JJ JJ JJ NN IN NNP , CC PRP VBZ DT JJS IN DT NN IN JJ NN NN NNS IN DT JJ NN .\nMerrill Lynch revealed a $ 2 billion loss and 3,000 job cuts on Thursday .\tNNP NNP VBD DT $ CD CD NN CC CD NN NNS IN NNP .\nWitnesses and aid groups in Sudan say at least 40 people have been killed in tribal clashes in Darfur .\tNNS CC NN NNS IN NNP VBP IN JJS CD NNS VBP VBN VBN IN JJ NNS IN NNP .\nThe witnesses said Sunday at least 21 people were wounded in the violence Saturday .\tDT NNS VBD NNP IN JJS CD NNS VBD VBN IN DT NN NNP .\nTribal conflicts are becoming an increasing concern in Darfur , where people are already struggling with fighting between rebels and government forces along with militias backed by Khartoum .\tNNP NNS VBP VBG DT VBG NN IN NNP , WRB NNS VBP RB VBG IN VBG IN NNS CC NN NNS IN IN NNS VBN IN NNP .\nThe United States has called the fighting genocide against the people of Darfur .\tDT NNP NNP VBZ VBN DT NN NN IN DT NNS IN NNP .\nMore than 2,00,000 people have been killed in Darfur since 2003 .\tJJR IN CD NNS VBP VBN VBN IN NNP IN CD .\nThat was when a conflict over land and water resources turned violent after non-Arab rebels accused the Arab-dominated government of neglect .\tDT VBD WRB DT NN IN NN CC NN NNS VBD JJ IN JJ NNS VBD DT JJ NN IN NN .\nThe government has been accused of arming militias , called Janjaweed , to crush the rebels in a brutal campaign of rape and murder .\tDT NN VBZ VBN VBN IN VBG NNS , VBD NNP , TO VB DT NNS IN DT JJ NN IN NN CC NN .\nSome reports say tribal members blamed Saturday 's attack on the Janjaweed .\tDT NNS VBP NN NNS VBD NNP POS NN IN DT NNP .\nHundreds of Saudi riot police have launched a crackdown on would-be protesters in the cities of Riyadh and Jeddah , in a show of force triggered by an exiled dissident 's call for anti-government demonstrations .\tNNS IN JJ NN NNS VBP VBN DT NN IN JJ NNS IN DT NNS IN NNP CC NNP , IN DT NN IN NN VBN IN DT VBN NN POS NN IN JJ NNS .\nThere are reports of arrests in both cities , but authorities have not yet commented .\tEX VBP NNS IN NNS IN DT NNS , CC NNS VBP RB RB VBN .\nPublic protests are banned in the kingdom .\tJJ NNS VBP VBN IN DT NN .\nAbout an hour after the protests were set to begin Thursday , Western news reports say the demonstrations failed to materialize in either city .\tIN DT NN IN DT NNS VBD VBN TO VB NNP , JJ NN NNS VBP DT NNS VBD TO VB IN DT NN .\nEarlier this week , London-based dissident Saad al-Fagih , who heads the Movement for Islamic Reform , called for tens of thousands of Saudis to protest after noon prayers Thursday against the Saudi monarchy .\tRBR DT NN , JJ NN NNP NNP , WP VBZ DT NN IN NNP NNP , VBD IN NNS IN NNS IN NNS TO VB IN NN NNS NNP IN DT JJ NN .\nLast year , he accused Saudi agents of attempting to kill him in a stabbing incident at his London home .\tJJ NN , PRP VBD JJ NNS IN VBG TO VB PRP IN DT VBG NN IN PRP$ NNP NN .\nThe Saudi government denied any involvement .\tDT JJ NN VBD DT NN .\nPakistan has again expressed support for the European Union 's efforts for a negotiated settlement to Tehran 's dispute with Washington over Iran 's nuclear program .\tNNP VBZ RB VBN NN IN DT NNP NNP POS NNS IN DT JJ NN TO NNP POS NN IN NNP IN NNP POS JJ NN .\nForeign Minister Khursheed Kasuri told a news conference Pakistan would like to support the European approach because the Islamic world can not afford another conflict after U.S.-led wars in Afghanistan and Iraq .\tNNP NNP NNP NNP VBD DT NN NN NNP MD VB TO VB DT JJ NN IN DT JJ NN MD RB VB DT NN IN JJ NNS IN NNP CC NNP .\nHe says Pakistan has been talking to the United States , the European Union and Iran to defuse tensions .\tPRP VBZ NNP VBZ VBN VBG TO DT NNP NNPS , DT NNP NNP CC NNP TO VB NNS .\nLast month , President Bush said the United States could not rule out using force if Iran fails to rein in its nuclear plans .\tJJ NN , NNP NNP VBD DT NNP NNPS MD RB VB RP VBG NN IN NNP VBZ TO VB IN PRP$ JJ NNS .\nIran denies U.S charges that it is seeking to develop nuclear weapons .\tNNP VBZ NNP NNS IN PRP VBZ VBG TO VB JJ NNS .\nLast year , the father of Pakistan 's nuclear bomb , Abdul Qadeer Khan , admitted selling nuclear secrets to Iran .\tJJ NN , DT NN IN NNP POS JJ NN , NNP NNP NNP , VBD VBG JJ NNS TO NNP .\nBombs targeting Iraqi troops in Baghdad and police in the north of the country have killed at least 10 people .\tNNS VBG JJ NNS IN NNP CC NN IN DT NN IN DT NN VBP VBN IN JJS CD NNS .\nPolice say a truck bomb attack on a police station in the northern city of Mosul killed four people and wounded more than 30 others Tuesday .\tNNS VBP DT NN NN NN IN DT NN NN IN DT JJ NN IN NNP VBD CD NNS CC VBD JJR IN CD NNS NNP .\nIn Baghdad , a car bomb blast near an Iraqi army checkpoint killed three soldiers and three civilians , and wounded 25 other people .\tIN NNP , DT NN NN NN IN DT JJ NN NN VBD CD NNS CC CD NNS , CC VBD CD JJ NNS .\nIn other violence , three Iraqi policemen were shot to death by gunmen at a checkpoint in eastern Baghdad .\tIN JJ NN , CD JJ NNS VBD VBN TO NN IN NNS IN DT NN IN JJ NNP .\nSeparately , the U.S military in Iraq says it captured four wanted men and detained six suspected terrorists during operations to disrupt al-Qaida networks in central Iraq .\tRB , DT NNP NN IN NNP VBZ PRP VBD CD JJ NNS CC VBN CD JJ NNS IN NNS TO VB NNP NNS IN JJ NNP .\nIran has rejected the possibility of suspending its uranium enrichment program , after world powers agreed to discuss sanctions against Tehran .\tNNP VBZ VBN DT NN IN VBG PRP$ NN NN NN , IN NN NNS VBD TO VB NNS IN NNP .\nForeign Ministry spokesman Mohammad Ali Hosseini said Sunday that suspending Iran 's enrichment program is , in his words , completely unacceptable .\tNNP NNP NN NNP NNP NNP VBD NNP IN VBG NNP POS NN NN VBZ , IN PRP$ NNS , RB JJ .\nHe also said Tehran wants to solve the issue through talks , not sanctions .\tPRP RB VBD NNP VBZ TO VB DT NN IN NNS , RB NNS .\nOn Friday , the five permanent members of the U.N. Security Council and Germany agreed to discuss possible non-military sanctions against Iran for its failure to meet an August 31 U.N. deadline to stop enriching uranium .\tIN NNP , DT CD JJ NNS IN DT NNP NNP NNP CC NNP VBD TO VB JJ JJ NNS IN NNP IN PRP$ NN TO VB DT NNP CD NNP NN TO VB VBG NN .\nThe United States and Britain have lobbied for sanctions , while Russia and China have said the standoff should be resolved through negotiations .\tDT NNP NNPS CC NNP VBP VBN IN NNS , IN NNP CC NNP VBP VBN DT NN MD VB VBN IN NNS .\nWestern nations believe Iran wants to make nuclear weapons .\tJJ NNS VBP NNP VBZ TO VB JJ NNS .\nIran says its nuclear program is only for peaceful purposes .\tNNP VBZ PRP$ JJ NN VBZ RB IN JJ NNS .\nThe European Union 's top official for Bulgaria says reopening two shuttered Bulgarian nuclear reactors is ' out of the question . '\tDT NNP NNP POS JJ NN IN NNP VBZ VBG CD JJ JJ JJ NNS VBZ `` IN IN DT NN . ``\nMichael Humphreys said at a Balkans energy conference in Sofia Monday that closing the reactors is part of Bulgaria 's membership agreement with the EU .\tNNP NNP VBD IN DT NNP NN NN IN NNP NNP IN VBG DT NNS VBZ NN IN NNP POS NN NN IN DT NNP .\nHe said all 26 other EU members would have to agree to change Bulgaria 's membership deal .\tPRP VBD DT CD JJ NNP NNS MD VB TO VB TO VB NNP POS NN NN .\nHe calls that impossible .\tPRP VBZ IN JJ .\nBulgaria was forced to close reactors three and four of the Kozloduy nuclear power plant because of safety concerns .\tNNP VBD VBN TO VB NNS CD CC CD IN DT NNP JJ NN NN IN IN NN NNS .\nEnergy ministers and other top officials from five Balkan nations - Albania , Bulgaria , Croatia , Macedonia , and Serbia - urged the EU in a statement to allow the reactors to temporarily reopen until other electricity sources can be found .\tNN NNS CC JJ JJ NNS IN CD NNP NNS IN NNP , NNP , NNP , NNP , CC NNP : VBD DT NNP IN DT NN TO VB DT NNS TO RB VB IN JJ NN NNS MD VB VBN .\nThe officials say they fear closing the reactors will create a regional energy shortage .\tDT NNS VBP PRP VBP VBG DT NNS MD VB DT JJ NN NN .\nSwiss Reinsurance Company , the world 's second-biggest reinsurer , says the global insurance industry could face some $ 20 billion in claims from Hurricanes Rita and Wilma .\tJJ NN NN , DT NN POS JJ NN , VBZ DT JJ NN NN MD VB DT $ CD CD IN NNS IN NNP NNP CC NNP .\nThe Zurich-based company estimates the cost from Rita will be around $ 10 billion , while damage claims from Wilma could range from $ 6 billion to $ 12 billion .\tDT JJ NN VBZ DT NN IN NNP MD VB IN $ CD CD , IN NN NNS IN NNP MD VB IN $ CD CD TO $ CD CD .\nInsurance companies were already reeling from Hurricane Katrina , which analysts say will cost the industry at least $ 40 billion .\tNN NNS VBD RB VBG IN NNP NNP , WDT NNS VBP MD VB DT NN IN JJS $ CD CD .\nSwiss Reinsurance announced Wednesday that its own earnings will be hurt by the recent string of storms to hit the U.S. Gulf coast .\tNNP NNP VBD NNP IN PRP$ JJ NNS MD VB VBN IN DT JJ NN IN NNS TO VB DT NNP NNP NN .\nThe company says it expects claims of $ 750 million from Rita and Wilma , on top of an estimated $ 1.3 billion in claims from Katrina .\tDT NN VBZ PRP VBZ NNS IN $ CD CD IN NNP CC NNP , IN NN IN DT VBN $ CD CD IN NNS IN NNP .\nReinsurers sell back-up insurance to other insurance companies , spreading risk so losses from major natural disasters can be covered .\tNNS VBP JJ NN TO JJ NN NNS , VBG NN IN NNS IN JJ JJ NNS MD VB VBN .\nU.S. aircraft maker Boeing has received $ 5 billion worth of orders for its new and upgraded version of its 747 jetliner .\tNNP NN NN NNP VBZ VBN $ CD CD NN IN NNS IN PRP$ JJ CC VBN NN IN PRP$ CD NN .\nBoeing says that Cargolux Airlines of Luxembourg has ordered 10 of its new 747-8 aircraft , with purchase rights for an additional 10 jets .\tNNP VBZ IN NNP NNPS IN NNP VBZ VBN CD IN PRP$ JJ JJ NN , IN NN NNS IN DT JJ CD NNS .\nJapan-based Nippon Cargo has ordered eight of the new jets , with options for 10 more .\tJJ NNP NNP VBZ VBN CD IN DT JJ NNS , IN NNS IN CD JJR .\nThe airlines will begin receiving the new jets in 2009 .\tDT NNS MD VB VBG DT JJ NNS IN CD .\nThe head of Boeing 's commercial airplanes division says the new 747 will utilize engines designed for its new 787 Dreamliner passenger jet to make it quieter and more efficient .\tDT NN IN NNP POS JJ NNS NN VBZ DT JJ CD MD VB NNS VBN IN PRP$ JJ CD NNP NN NN TO VB PRP JJR CC RBR JJ .\nBoeing is competing against Europe 's Airbus consortium for dominance of the international aviation market .\tNNP VBZ VBG IN NNP POS NNP NN IN NN IN DT JJ NN NN .\nAirbus is preparing its new A-380 superjumbo jet for service beginning next year .\tNNP VBZ VBG PRP$ JJ NN NN NN IN NN VBG JJ NN .\nAuthorities in Ethiopia say several people were injured Tuesday from two explosions in the capital , Addis Ababa .\tNNS IN NNP VBP JJ NNS VBD VBN NNP IN CD NNS IN DT NN , NNP NNP .\nOfficials say the first blast occurred at a hotel , injuring four people and damaging the building .\tNNS VBP DT JJ NN VBD IN DT NN , VBG CD NNS CC VBG DT NN .\nThey say the second explosion happened in a market in Addis Ababa , but no injuries were reported there .\tPRP VBP DT JJ NN VBD IN DT NN IN NNP NNP , CC DT NNS VBD VBN RB .\nThere was no immediate indication of what caused the explosions .\tEX VBD DT JJ NN IN WP VBD DT NNS .\nChechnya 's Kremlin-backed government has dismissed a purported separatist statement pledging to observe a ceasefire throughout this month .\tNNP POS JJ NN VBZ VBN DT JJ JJ NN VBG TO VB DT NN IN DT NN .\nRussian media quote Chechen President Alu Alkhanov as describing the declaration as a ' trick ' and an attempt by the separatists to gain attention .\tJJ NNS VBZ JJ NNP NNP NNP IN VBG DT NN IN DT `` NN `` CC DT NN IN DT NNS TO VB NN .\nA web site linked to Chechen separatists posted the ceasefire offer Wednesday said to be from their top leaders Aslan Maskhadov and Shamil Basayev .\tDT NN NN VBN TO JJ NNS VBD DT NN NN NNP VBD TO VB IN PRP$ JJ NNS JJ NNP CC NNP NNP .\nMeanwhile , an independent British television station has announced plans to broadcast an interview with Mr. Basayev in which he is said to warn of more terrorist attacks in Russia .\tRB , DT JJ JJ NN NN VBZ VBN NNS TO VB DT NN IN NNP NNP IN WDT PRP VBZ VBN TO VB IN JJR JJ NNS IN NNP .\nRussian officials have demanded that the station not air the segment , calling it irresponsible to spread the views of a wanted terrorist .\tJJ NNS VBP VBN IN DT NN RB VB DT NN , VBG PRP JJ TO VB DT NNS IN DT JJ JJ .\nMr. Basayev has taken responsibility for a number of bloody attacks , including the siege of a school last year that led to the deaths of more than 330 people .\tNNP NNP VBZ VBN NN IN DT NN IN JJ NNS , VBG DT NN IN DT NN JJ NN WDT VBD TO DT NNS IN JJR IN CD NNS .\nPresident Bush has vowed to increase the number of needy countries the United States aids through the Millennium Challenge Corporation , which rewards nations making democratic and free-market reforms .\tNNP NNP VBZ VBN TO VB DT NN IN JJ NNS DT NNP NNPS VBZ IN DT NNP NNP NNP , WDT VBZ NNS VBG JJ CC JJ NNS .\nMr. Bush said Tuesday that nearly two dozen new countries have been selected as eligible for aid .\tNNP NNP VBD NNP IN RB CD NN JJ NNS VBP VBN VBN IN NN IN NN .\nHe spoke during the swearing-in ceremony of John Danilovich , the corporation 's new chief executive officer .\tPRP VBD IN DT JJ NN IN NNP NNP , DT NN POS JJ JJ NN NN .\nPresident Bush said he has asked Mr. Danilovich to implement several new agreements with developing countries in upcoming months .\tNNP NNP VBD PRP VBZ VBN NNP NNP TO VB JJ JJ NNS IN VBG NNS IN VBG NNS .\nThe corporation currently has agreements with Armenia , Benin , Cape Verde , Georgia , Honduras , Madagascar , and Nicaragua .\tDT NN RB VBZ NNS IN NNP , NNP , NNP NNP , NNP , NNP , NNP , CC NNP .\nThe corporation gives development aid to needy countries that are judged to govern justly and encourage economic freedom .\tDT NN VBZ NN NN TO JJ NNS WDT VBP VBN TO VB RB CC VB JJ NN .\nThe aid goes toward projects in agriculture , education , and private sector development .\tDT NN VBZ IN NNS IN NN , NN , CC JJ NN NN .\nThe British military says one of its soldiers has died fighting insurgents in Afghanistan .\tDT JJ NN VBZ CD IN PRP$ NNS VBZ VBN VBG NNS IN NNP .\nThe military says the British Royal Marine was killed Wednesday in the Nad-e-Ali district near Lashkar Gah , the capital of Helmand province .\tDT JJ VBZ DT NNP NNP NNP VBD VBN NNP IN DT NNP NN IN NNP NNP , DT NN IN NNP NN .\nAbout 70,000 international forces are in Afghanistan fighting a Taliban insurgency that has raged since the United States pushed the group from power in 2001 .\tIN CD JJ NNS VBP IN NNP VBG DT NNP NN WDT VBZ VBN IN DT NNP NNPS VBD DT NN IN NN IN CD .\nOn Wednesday , Afghan and international troops said they had captured a senior insurgent commander in a raid on a suspected insurgent cell in Baghlan province .\tIN NNP , JJ CC JJ NNS VBD PRP VBD VBN DT JJ JJ NN IN DT NN IN DT JJ JJ NN IN NNP NN .\nA joint statement from the Afghan and U.S. militaries said insurgent Mullah Dahoud is suspected of involvement in a deadly October attack in Baghlan and the 2007 bombing of a sugar factory , which killed more than 50 people .\tDT JJ NN IN DT JJ CC NNP NNS VBD JJ NNP NNP VBZ VBN IN NN IN DT JJ NNP NN IN NNP CC DT CD NN IN DT NN NN , WDT VBD JJR IN CD NNS .\nThe U.S. Secretary of Energy says it may take about six months to restore Iraq 's oil output to pre-war levels of 2.5 million barrels a day .\tDT NNP NNP IN NNP VBZ PRP MD VB RB CD NNS TO VB NNP POS NN NN TO JJ NNS IN CD CD NNS DT NN .\nSamuel Bodman made the comments in Baghdad Tuesday , where he called Iraqi estimates that they could boost production to three million barrels a day ' optimistic . '\tNNP NNP VBD DT NNS IN NNP NNP , WRB PRP VBD JJ NNS IN PRP MD VB NN TO CD CD NNS DT NN `` JJ . ``\nBodman also said Iraq is working on a new ' hydrocarbons law ' intended to set a legal framework to attract and regulate badly needed investment by foreign oil companies .\tNNP RB VBD NNP VBZ VBG IN DT JJ `` NNS NN `` VBN TO VB DT JJ NN TO VB CC VB RB VBN NN IN JJ NN NNS .\nHe said Iraqi officials hope to finish the law by the end of this year .\tPRP VBD JJ NNS VBP TO VB DT NN IN DT NN IN DT NN .\nIraq has the second largest oil reserves in the Middle East , but oil production suffers from years of sanctions , war , and insurgent attacks on key infrastructure .\tNNP VBZ DT JJ JJS NN NNS IN DT NNP NNP , CC NN NN NNS IN NNS IN NNS , NN , CC JJ NNS IN JJ NN .\nChina says its exports rose 21 percent in January from the same period a year ago , a further sign that its economy has withstood the global recession .\tNNP VBZ PRP$ NNS VBD CD NN IN NNP IN DT JJ NN DT NN RB , DT JJ NN IN PRP$ NN VBZ VBN DT JJ NN .\nThe figures released by the General Administration of Customs Wednesday show exports totaled over $ 109 billion .\tDT NNS VBN IN DT NNP NNP IN NNP NNP NN NNS VBD IN $ CD CD .\nJanuary 's increase follows on the heels of a 17.7 percent increase in December .\tNNP POS NN VBZ IN DT NNS IN DT CD NN NN IN NNP .\nOfficials says last month 's export increase was partly due to the comparison with a period of low activity last year , when companies were idled for the Lunar New Year .\tNNP VBZ JJ NN POS NN NN VBD RB JJ TO DT NN IN DT NN IN JJ NN JJ NN , WRB NNS VBD VBN IN DT NNP NNP NNP .\nThe customs office also says imports soared 85.5 percent in January .\tDT NNS NN RB VBZ NNS VBD CD NN IN NNP .\nThe import and export figures taken together made a $ 14.2 billion trade surplus for the month .\tDT NN CC NN NNS VBN RB VBD DT $ CD CD NN NN IN DT NN .\nBut in a month-on-month basis , exports dropped 16.3 percent in January from December , and imports fell 15.1 percent .\tCC IN DT JJ NN , NNS VBD CD NN IN NNP IN NNP , CC NNS VBD CD NN .\nAngola is rebuilding its country after the end of a 27-year civil war in 2002 .\tNNP VBZ VBG PRP$ NN IN DT NN IN DT JJ JJ NN IN CD .\nFighting between the Popular Movement for the Liberation of Angola ( MPLA ) , led by Jose Eduardo DOS SANTOS , and the National Union for the Total Independence of Angola ( UNITA ) , led by Jonas SAVIMBI , followed independence from Portugal in 1975 .\tVBG IN DT NNP NN IN DT NN IN NNP LRB NNP RRB , VBN IN NNP NNP NNP NNP , CC DT NNP NNP IN DT JJ NN IN NNP LRB NNP RRB , VBN IN NNP NNP , VBD NN IN NNP IN CD .\nPeace seemed imminent in 1992 when Angola held national elections , but fighting picked up again by 1996 .\tNN VBD JJ IN CD WRB NNP VBD JJ NNS , CC VBG VBN RP RB IN CD .\nUp to 1.5 million lives may have been lost - and 4 million people displaced - in the quarter century of fighting .\tIN TO CD CD NNS MD VB VBN VBN : CC CD CD NNS VBD : IN DT NN NN IN NN .\nSAVIMBI 's death in 2002 ended UNITA 's insurgency and strengthened the MPLA 's hold on power .\tNNP POS NN IN CD VBD NNP POS NN CC VBD DT NNP POS NN IN NN .\nPresident DOS SANTOS held legislative elections in September 2008 and , despite promising to hold presidential elections in 2009 , has since pushed through a new constitution that calls for elections in 2012 .\tNNP NNP NNP VBD JJ NNS IN NNP CD CC , IN VBG TO VB JJ NNS IN CD , VBZ IN VBN IN DT JJ NN WDT VBZ IN NNS IN CD .\nSaint Helena is a British Overseas Territory consisting of Saint Helena and Ascension Islands , and the island group of Tristan da Cunha .\tNNP NNP VBZ DT JJ JJ NN VBG IN NNP NNP CC NNP NNP , CC DT NN NN IN NNP NNP NNP .\nSince independence in 1968 , Mauritius has developed from a low-income , agriculturally based economy to a middle-income diversified economy with growing industrial , financial , and tourist sectors .\tIN NN IN CD , NNP VBZ VBN IN DT NN , RB VBN NN TO DT JJ JJ NN IN VBG JJ , JJ , CC NN NNS .\nFor most of the period , annual growth has been in the order of 5 % to 6 % .\tIN JJS IN DT NN , JJ NN VBZ VBN IN DT NN IN CD NN CC CD NN .\nThis remarkable achievement has been reflected in more equitable income distribution , increased life expectancy , lowered infant mortality , and a much-improved infrastructure .\tDT JJ NN VBZ VBN VBN IN JJR JJ NN NN , JJ NN NN , JJ NN NN , CC DT JJ NN .\nThe economy rests on sugar , tourism , textiles and apparel , and financial services , and is expanding into fish processing , information and communications technology , and hospitality and property development .\tDT NN VBZ IN NN , NN , NNS CC NN , CC JJ NNS , CC VBZ VBG IN NN NN , NN CC NNS NN , CC NN CC NN NN .\nSugarcane is grown on about 90 % of the cultivated land area and accounts for 15 % of export earnings .\tNN VBZ VBN IN IN CD NN IN DT VBN NN NN CC NNS IN CD NN IN NN NNS .\nThe government 's development strategy centers on creating vertical and horizontal clusters of development in these sectors .\tDT NN POS NN NN NNS IN VBG JJ CC JJ NNS IN NN IN DT NNS .\nMauritius has attracted more than 32,000 offshore entities , many aimed at commerce in India , South Africa , and China .\tNNP VBZ VBN JJR IN CD JJ NNS , JJ VBN IN NN IN NNP , NNP NNP , CC NNP .\nInvestment in the banking sector alone has reached over $ 1 billion .\tNN IN DT NN NN RB VBZ VBN IN $ CD CD .\nMauritius , with its strong textile sector , has been well poised to take advantage of the Africa Growth and Opportunity Act ( AGOA ) .\tNNP , IN PRP$ JJ NN NN , VBZ VBN RB VBN TO VB NN IN DT NNP NNP CC NNP NNP LRB NNP RRB .\nMauritius ' sound economic policies and prudent banking practices helped to mitigate negative effects from the global financial crisis in 2008 - 9 .\tNNP POS JJ JJ NNS CC JJ NN NNS VBD TO VB JJ NNS IN DT JJ JJ NN IN CD : CD .\nGDP grew 3.6 % in 2010 and the country continues to expand its trade and investment outreach around the globe .\tNN VBD CD NN IN CD CC DT NN VBZ TO VB PRP$ NN CC NN NN IN DT NN .\nFirst explored by the Spaniards in the 16th century and then settled by the English in the mid-17th century , Suriname became a Dutch colony in 1667 .\tRB VBN IN DT NNS IN DT JJ NN CC RB VBN IN DT NNS IN DT JJ NN , NNP VBD DT JJ NN IN CD .\nWith the abolition of slavery in 1863 , workers were brought in from India and Java .\tIN DT NN IN NN IN CD , NNS VBD VBN IN IN NNP CC NNP .\nIndependence from the Netherlands was granted in 1975 .\tNN IN DT NNP VBD VBN IN CD .\nFive years later the civilian government was replaced by a military regime that soon declared a socialist republic .\tCD NNS RB DT JJ NN VBD VBN IN DT JJ NN WDT RB VBD DT JJ NN .\nIt continued to exert control through a succession of nominally civilian administrations until 1987 , when international pressure finally forced a democratic election .\tPRP VBD TO VB NN IN DT NN IN RB JJ NNS IN CD , WRB JJ NN RB VBD DT JJ NN .\nIn 1990 , the military overthrew the civilian leadership , but a democratically elected government - a four-party coalition - returned to power in 1991 .\tIN CD , DT JJ VBD DT JJ NN , CC DT RB VBN NN IN DT JJ NN : VBD TO NN IN CD .\nThe coalition expanded to eight parties in 2005 and ruled until August 2010 , when voters returned former military leader Desire BOUTERSE and his opposition coalition to power .\tDT NN VBD TO CD NNS IN CD CC VBD IN NNP CD , WRB NNS VBD JJ JJ NN NNP NNP CC PRP$ NN NN TO NN .\nColonized by English settlers from Saint Kitts in 1650 , Anguilla was administered by Great Britain until the early 19th century , when the island - against the wishes of the inhabitants - was incorporated into a single British dependency along with Saint Kitts and Nevis .\tVBN IN JJ NNS IN NNP NNPS IN CD , NNP VBD VBN IN NNP NNP IN DT JJ JJ NN , WRB DT NN : IN DT NNS IN DT NNS : VBD VBN IN DT JJ JJ NN IN IN NNP NNP CC NNP .\nSeveral attempts at separation failed .\tJJ NNS IN NN VBD .\nIn 1971 , two years after a revolt , Anguilla was finally allowed to secede ; this arrangement was formally recognized in 1980 with Anguilla becoming a separate British dependency .\tIN CD , CD NNS IN DT NN , NNP VBD RB VBN TO VB ; DT NN VBD RB VBN IN CD IN NNP VBG DT JJ JJ NN .\nAN ASS , being driven along a high road , suddenly started off and bolted to the brink of a deep precipice .\tDT NN , VBG VBN IN DT JJ NN , RB VBD RB CC VBD TO DT NN IN DT JJ NN .\nWhile he was in the act of throwing himself over , his owner seized him by the tail , endeavoring to pull him back .\tIN PRP VBD IN DT NN IN VBG PRP RP , PRP$ NN VBD PRP IN DT NN , VBG TO VB PRP RB .\nWhen the Ass persisted in his effort , the man let him go and said , ' Conquer , but conquer to your cost . '\tWRB DT NN VBD IN PRP$ NN , DT NN VB PRP VB CC VBD , `` VB , CC VB IN PRP$ NN . ``\nA willful beast must go his own way\tDT JJ NN MD VB PRP$ JJ NN\nA funny old lion , who had the misfortune to lose his mane , was wearing a wig as he was taking a stroll on a very windy day .\tDT JJ JJ NN , WP VBD DT NN TO VB PRP$ NN , VBD VBG DT NN IN PRP VBD VBG DT NN IN DT RB JJ NN .\nLooking up , he spied one of the charming Tiger sisters across the street , and , wishing to make an impression , smiled blandly and made a beautiful low bow .\tVBG RP , PRP VBD CD IN DT JJ NNP NNS IN DT NN , CC , VBG TO VB DT NN , VBD RB CC VBD DT JJ JJ NN .\nAt that moment a very smart gust of wind came up , and the consequence was that his wig flew off and left him there , feeling foolish and looking worse , with his bald head glistening like a billiard ball .\tIN DT NN DT RB JJ NN IN NN VBD RB , CC DT NN VBD IN PRP$ NN VBD RB CC VBD PRP RB , NN NN CC VBG JJR , IN PRP$ JJ NN VBG IN DT NN NN .\nThough somewhat embarrassed at first , he smiled at the Lady and said : ' Is it a wonder that another fellow 's hair should n't keep on my head , when my own would n't stay there ? '\tIN RB JJ IN RB , PRP VBD IN DT NNP CC VBD : `` VBZ PRP DT NN IN DT NN POS NN MD RB VB IN PRP$ NN , WRB PRP$ NN MD RB VB RB . ``\n' Wit always has an answer ready . '\t`` NNP RB VBZ DT NN JJ . ``\nA WOODCHOPPER , who had dropped his axe into a deep pool , besought Mercury to recover it for him .\tDT NN , WP VBD VBN PRP$ NN IN DT JJ NN , JJ NNP TO VB PRP IN PRP .\nThat thoughtless deity immediately plunged into the pool , which became so salivated that the trees about its margin all came loose and dropped out .\tDT JJ NN RB VBD IN DT NN , WDT VBD RB JJ IN DT NNS IN PRP$ NN DT VBD JJ CC VBD RP .\nA LION roaming through the forest , got a thorn in his foot , and , meeting a Shepherd , asked him to remove it .\tDT NN VBG IN DT NN , VBD DT NN IN PRP$ NN , CC , VBG DT NN , VBD PRP TO VB PRP .\nThe Shepherd did so , and the Lion , having just surfeited himself on another shepherd , went away without harming him .\tDT NN VBD RB , CC DT NN , VBG RB VBN PRP IN DT NN , VBD RB IN VBG PRP .\nSome time afterward the Shepherd was condemned on a FALSE accusation to be cast to the lions in the amphitheatre .\tDT NN RB DT NN VBD VBN IN DT JJ NN TO VB VBN TO DT NNS IN DT NN .\nWhen they were about to devour him , one of them said :\tWRB PRP VBD IN TO VB PRP , CD IN PRP VBD :\n' This is the man who removed the thorn from my foot . '\t`` DT VBZ DT NN WP VBD DT NN IN PRP$ NN . ``\nHearing this , the others honourably abstained , and the claimant ate the Shepherd all himself .\tVBG DT , DT NNS RB VBD , CC DT JJ NN DT NN DT PRP .\nA couple of Yogi Berra 's teammates on the Yankees ball club swear that one night the stocky catcher was horrified to see a baby toppling off the roof of a cottage across the way from him .\tDT NN IN NNP NNP POS NNS IN DT NNP NN NN NN IN CD NN DT JJ NN VBD VBN TO VB DT NN VBG RP DT NN IN DT NN IN DT NN IN PRP .\nYogi dashed over and made a miraculous catch - but then force of habit proved too much for him .\tNNP VBD IN CC VBD DT JJ NN : CC RB NN IN NN VBD RB JJ IN PRP .\nHe straightened up and threw the baby to second base .\tPRP VBD RP CC VBD DT NN TO JJ NN .\nThe bathtub was invented in 1850 .\tDT NN VBD VBN IN CD .\nThe telephone was invented in 1875 .\tDT NN VBD VBN IN CD .\nThis might not seem like much but , if you had lived back then , you could have sat in the bathtub for 25 years without being bothered by the phone\tDT MD RB VB IN NN CC , IN PRP VBD VBN RB RB , PRP MD VB VBN IN DT NN IN CD NNS IN VBG VBN IN DT NN\nThis particular Wizard worked in a modern factory .\tDT JJ NNP VBD IN DT JJ NN .\nEverything was satisfactory except that certain miscreants took advantage of his good nature , and would steal his parking spot .\tDT VBD JJ IN DT JJ NNS VBD NN IN PRP$ JJ NN , CC MD VB PRP$ NN NN .\nThis continued until he put up the following effective sign :\tDT VBD IN PRP VBD RP DT VBG JJ NN :\nThis parking space belongs to the Wizard .\tDT NN NN VBZ TO DT NNP .\n...\t:\nViolators will be toad .\tNNS MD VB VBN .\nIsrael 's interim prime minister , Ehud Olmert , says he hopes to resume peace talks after both the Israeli and the Palestinian parliamentary elections .\tNNP POS JJ JJ NN , NNP NNP , VBZ PRP VBZ TO VB NN NNS IN DT DT JJ CC DT JJ JJ NNS .\nPalestinians are to hold their legislative vote on January 25 , and Israeli elections are set for March 28 .\tNNS VBP TO VB PRP$ JJ NN IN NNP CD , CC JJ NNS VBP VBN IN NNP CD .\nMr. Olmert said resuming peace talks will depend on Israel 's long-standing demand that Palestinian President Mahmoud Abbas disarm militant groups .\tNNP NNP VBD VBG NN NNS MD VB IN NNP POS JJ NN IN JJ NNP NNP NNP NN JJ NNS .\nHe said the basis for the talks would be the U.S.-backed ' road map ' peace plan , which calls for the establishment of a Palestinian state .\tPRP VBD DT NN IN DT NNS MD VB DT JJ `` NN NN `` NN NN , WDT VBZ IN DT NN IN DT JJ NN .\nAlso Tuesday , Israeli police began forcibly removing right-wing settlers from the West Bank city of Hebron .\tRB NNP , JJ NN VBD RB VBG JJ NNS IN DT NNP NNP NN IN NNP .\nThe settlers have been protesting a court order evicting Jewish squatters from an abandoned Palestinian market in the city .\tDT NNS VBP VBN VBG DT NN NN VBG JJ NNS IN DT JJ JJ NN IN DT NN .\nElsewhere in the West Bank , Israeli troops shot and killed a wanted Palestinian militant in Tulkarem .\tRB IN DT NNP NNP , JJ NNS VBD CC VBD DT JJ NN NN IN NNP .\nThe United States says it will respond to European concerns about reports of secret prisons in Europe and transport flights for terror suspects .\tDT NNP NNPS VBZ PRP MD VB TO JJ NNS IN NNS IN JJ NNS IN NNP CC NN NNS IN NN NNS .\nA State Department spokesman , Sean McCormack , said Tuesday that Secretary of State Condoleezza Rice assured visiting German Foreign Minister Frank-Walter Steinmeier that Washington will reply to an expected query from the European Union .\tDT NNP NNP NN , NNP NNP , VBD NNP IN NNP IN NNP NNP NNP VBD VBG JJ NNP NNP NNP NNP IN NNP MD VB TO DT VBN NN IN DT NNP NNP .\nMr. Steinmeier said U.S. officials also have agreed to respond to European questions on the matter .\tNNP NNP VBD NNP NNS RB VBP VBN TO VB TO JJ NNS IN DT NN .\nThe State Department spokesman said Secretary Rice told Mr. Steinmeier that all U.S. activities comply with American laws and the constitution .\tDT NNP NNP NN VBD NNP NNP VBD NNP NNP IN DT NNP NNS VB IN JJ NNS CC DT NN .\nRecent media reports say the U.S. Central Intelligence Agency allegedly runs secret prisons in eastern Europe for terrorist suspects .\tJJ NNS NNS VBP DT NNP NNP NNP NNP RB VBZ JJ NNS IN JJ NNP IN JJ NNS .\nThere also have been reports of flights transporting CIA prisoners through EU airspace .\tEX RB VBP VBN NNS IN NNS VBG NNP NNS IN NNP NN .\nU.S. authorities have refused to confirm or deny the reports .\tNNP NNS VBP VBN TO VB CC VB DT NNS .\nOpinion polls in Israel indicate support for Prime Minister Ariel Sharon 's new centrist Kadima party is still strong ahead of the March 28 election despite the massive stroke that has incapacitated the Israeli leader .\tNN NNS IN NNP VBP NN IN NNP NNP NNP NNP POS JJ NN NNP NN VBZ RB JJ RB IN DT NNP CD NN IN DT JJ NN WDT VBZ VBN DT JJ NN .\nA poll published Friday in the Yediot Ahronot daily newspaper found that the Kadima party under acting Prime Minister Ehud Olmert would win 39 of 120 parliament seats , well ahead of the right-wing Likud party and moderate Labor party .\tDT NN VBN NNP IN DT NNP NNP JJ NN VBD IN DT NNP NN IN VBG NNP NNP NNP NNP MD VB CD IN CD NN NNS , RB RB IN DT JJ NNP NN CC JJ NN NN .\nA poll published by the Ha'aretz daily newspaper had similar results .\tDT NN VBN IN DT NNP JJ NN VBD JJ NNS .\nThe opinion polls are the first to test the future for Mr. Sharon 's new party since the prime minister suffered a massive stroke on Wednesday and was said by doctors to be unlikely to return to his post .\tDT NN NNS VBP DT JJ TO VB DT NN IN NNP NNP POS JJ NN IN DT JJ NN VBD DT JJ NN IN NNP CC VBD VBN IN NNS TO VB JJ TO VB TO PRP$ NN .\nU.S. Secretary of State Condoleezza Rice says some of Russia 's efforts at democratic reform are ' going in the wrong direction . '\tNNP NNP IN NNP NNP NNP VBZ DT IN NNP POS NNS IN JJ NN VBP `` VBG IN DT JJ NN . ``\nRice told CBS television Sunday that the way Russia used energy against Ukraine and a new law regulating non-governmental organizations are problems .\tNNP VBD NNP NN NNP IN DT NN NNP VBD NN IN NNP CC DT JJ NN VBG JJ NNS VBP NNS .\nRussia cut off natural gas supplies to Ukraine during a price dispute last month , causing gas shortages in Europe .\tNNP VBD RP JJ NN NNS TO NNP IN DT NN NN JJ NN , VBG NN NNS IN NNP .\nUkraine called it a political move .\tNNP VBD PRP DT JJ NN .\nRice said despite Washington 's concerns , the situation in Russia is better than it was in the former Soviet Union and that U.S.-Russian relations are the best they have been for quite some time .\tNNP VBD IN NNP POS NNS , DT NN IN NNP VBZ JJR IN PRP VBD IN DT JJ NNP NNP CC IN JJ NNS VBP DT JJS PRP VBP VBN IN RB DT NN .\nFrench Prime Minister Francois Fillon said in China Tuesday that any misunderstandings between Paris and Beijing are a thing of the past .\tJJ NNP NNP NNP NNP VBD IN NNP NNP IN DT NNS IN NNP CC NNP VBP DT NN IN DT NN .\nMr. Fillon told Chinese university students in Beijing the countries now want to build a relationship based on ' mutual respect . '\tNNP NNP VBD JJ NN NNS IN NNP DT NNS RB VBP TO VB DT NN VBN IN `` JJ NN . ``\nTensions between Paris and Beijing grew last year when French President Nicolas Sarkozy met the Dalai Lama .\tNNS IN NNP CC NNP VBD JJ NN WRB JJ NNP NNP NNP VBD DT NNP NNP .\nChina accuses the exiled Tibetan spiritual leader of seeking independence for the Himalayan region , which the Buddhist leader denies .\tNNP VBZ DT JJ JJ JJ NN IN VBG NN IN DT JJ NN , WDT DT NNP NN VBZ .\nFillon traveled to Beijing to smooth both diplomatic and economic relations .\tNNP VBD TO NNP TO VB DT JJ CC JJ NNS .\nHe oversaw the signing of 12 deals involving aviation , energy , culture and water resource utilization .\tPRP VBD DT NN IN CD NNS VBG NN , NN , NN CC NN NN NN .\nFillon held talks with Chinese President Hu Jintao and parliamentary speaker Wu Bangguo , a day after meeting Premier Wen Jiabao .\tNNP VBD NNS IN JJ NNP NNP NNP CC JJ NN NNP NNP , DT NN IN VBG NNP NNP NNP .\nBritish authorities have charged a third man in connection with last month 's failed car bombings in London and Glasgow , Scotland .\tJJ NNS VBP VBN DT JJ NN IN NN IN JJ NN POS JJ NN NNS IN NNP CC NNP , NNP .\nPolice said Saturday they charged an Indian-born doctor , Sabeel Ahmed , 26 , with having information that could prevent an act of terrorism .\tNNS VBD NNP PRP VBD DT JJ NN , NNP NNP , CD , IN VBG NN WDT MD VB DT NN IN NN .\nAhmed 's brother , Kafeel , remains hospitalized with severe burns suffered when he and another man allegedly rammed a vehicle packed with gasoline and gas canisters into Glasgow airport 's main entrance .\tNNP POS NN , NNP , VBZ VBN IN JJ NNS VBD WRB PRP CC DT NN RB VBD DT NN VBN IN NN CC NN NNS IN NNP NN POS JJ NN .\nEarlier today , Australian police charged Indian-born doctor Mohammed Haneef , 27 , with providing ' reckless ' support to a terrorist organization allegedly behind the three failed bombings on June 29 and 30 .\tRBR NN , JJ NN VBD JJ NN NNP NNP , CD , IN VBG `` JJ `` NN TO DT JJ NN RB IN DT CD VBN NNS IN NNP CD CC CD .\nHaneef was the second person charged in connection with the failed attacks in London and Glasgow .\tNNP VBD DT JJ NN VBN IN NN IN DT JJ NNS IN NNP CC NNP .\nHe is reported to be a cousin of Kafeel and Sabeel Ahmed .\tPRP VBZ VBN TO VB DT NN IN NNP CC NNP NNP .\nAuthorities say he shared a house in Liverpool with them for about two years .\tNNS VBP PRP VBD DT NN IN NNP IN PRP IN IN CD NNS .\nThe head of the U.S. central bank says a variety of factors , from a weaker dollar to tougher budget discipline in Congress , may help restrain the rapid growth in the nation 's trade deficit .\tDT NN IN DT NNP JJ NN VBZ DT NN IN NNS , IN DT JJR NN TO JJR NN NN IN NNP , MD VB VB DT JJ NN IN DT NN POS NN NN .\nIn remarks prepared for a speech in London , Federal Reserve Chairman Alan Greenspan cautioned that the unprecedented level of economic interaction between countries makes it difficult to predict what will happen to the U.S. trade deficit .\tIN NNS VBN IN DT NN IN NNP , NNP NNP NNP NNP NNP VBD IN DT JJ NN IN JJ NN IN NNS VBZ PRP JJ TO VB WP MD VB TO DT NNP NN NN .\nEconomists say that to finance the trade gap , the United States depends on the willingness of foreigners to lend money to the country through investments like stocks and bonds .\tNNS VBP IN TO VB DT NN NN , DT NNP NNPS VBZ IN DT NN IN NNS TO VB NN TO DT NN IN NNS IN NNS CC NNS .\nAnalysts worry that the declining dollar might prompt investors to abruptly sell their stocks , which could push the dollar down further and force interest rates up .\tNNS VBP IN DT VBG NN MD VB NNS TO RB VB PRP$ NNS , WDT MD VB DT NN RB RB CC VB NN NNS RB .\nThat could slow the U.S. economy and hurt nations that export to the huge U.S. market .\tDT MD VB DT NNP NN CC VBN NNS WDT VBP TO DT JJ NNP NN .\nA federal judge in the U.S. state of Iowa has awarded a small Internet service provider more than one billion dollars in a lawsuit aimed against unsolicited commercial e-mails , known as spam .\tDT JJ NN IN DT NNP NN IN NNP VBZ VBN DT JJ NN NN NN JJR IN CD CD NNS IN DT NN VBN IN JJ JJ NNS , VBN IN NN .\nThe ruling Friday is believed to be the largest judgment ever against people or companies who send spam .\tDT NN NNP VBZ VBN TO VB DT JJS NN RB IN NNS CC NNS WP VBP NN .\nRobert Kramer , whose company provides e-mail service for about 5,000 users in Iowa , had filed a lawsuit against some 300 spammers in 2003 .\tNNP NNP , WP$ NN VBZ JJ NN IN RB CD NNS IN NNP , VBD VBN DT NN IN DT CD NNS IN CD .\nMr. Kramer 's lawyer says the entire judgment will probably never be collected , but he hopes to recover costs caused by the spammers .\tNNP NNP POS NN VBZ DT JJ NN MD RB RB VB VBN , CC PRP VBZ TO VB NNS VBN IN DT NNS .\nMr. Kramer said spam clogged his server system , frequently disabling it .\tNNP NNP VBD NN VBD PRP$ NN NN , RB VBG PRP .\nHe said he spent thousands of dollars upgrading his servers to handle the heavy flow of spam .\tPRP VBD PRP VBD NNS IN NNS VBG PRP$ NNS TO VB DT JJ NN IN NN .\nNATO officials say they plan to use smaller bombs in Afghanistan to limit the rise in civilian casualties .\tNNP NNS VBP PRP VBP TO VB JJR NNS IN NNP TO VB DT NN IN JJ NNS .\nNATO Secretary-General Jaap de Hoop Scheffer said the number of civilians killed during fighting between NATO with the Taleban has damaged the reputation of the alliance .\tNNP NNP NNP IN NNP NNP VBD DT NN IN NNS VBN IN VBG IN NNP IN DT NNP VBZ VBN DT NN IN DT NN .\nHe added that NATO commanders recently instructed troops to hold off attacking rebels in situations where civilians would be at risk .\tPRP VBD IN NNP NNS RB VBD NNS TO VB RP VBG NNS IN NNS WRB NNS MD VB IN NN .\nThe NATO chief spoke in an interview published Monday by the Financial Times .\tDT NNP NN VBD IN DT NN VBN NNP IN DT NNP NNP .\nIn the past , Scheffer has blamed Taleban militants for using Afghan civilians as human shields .\tIN DT NN , NNP VBZ VBN NNP NNS IN VBG JJ NNS IN JJ NNS .\nThe coalition in Afghanistan has been criticized for the number of civilian casualties resulting from combat operations against the Taleban and other militants .\tDT NN IN NNP VBZ VBN VBN IN DT NN IN JJ NNS VBG IN NN NNS IN DT NNP CC JJ NNS .\nLast month , Afghan President Hamid Karzai accused NATO and U.S.-led forces of killing 90 civilians in air strikes and artillery fire against the Taleban .\tJJ NN , JJ NNP NNP NNP VBD NNP CC JJ NNS IN VBG CD NNS IN NN NNS CC NN NN IN DT NNP .\nPalestinian medical officials say Israeli troops have killed three Palestinian militants in the West Bank .\tJJ JJ NNS VBP JJ NNS VBP VBN CD JJ NNS IN DT NNP NNP .\nHospital officials say two of the men were shot dead Friday , near the al-Faraa refugee camp , in the northern West Bank .\tNN NNS VBP CD IN DT NNS VBD VBN JJ NNP , IN DT JJ NN NN , IN DT JJ NNP NNP .\nThe third was killed in the village of al-Yamoun .\tDT NN VBD VBN IN DT NN IN NN .\nThe Israeli army says its troops opened fire on the men during operations against militants in the areas .\tDT JJ NN VBZ PRP$ NNS VBD NN IN DT NNS IN NNS IN NNS IN DT NNS .\nEuropean Union foreign policy chief Javier Solana Thursday called on Israelis and Palestinians to show more flexibility in helping to restart the Middle East peace process .\tNNP NNP JJ NN NN NNP NNP NNP VBD IN NNS CC NNS TO VB JJR NN IN VBG TO VB DT NNP NNP NN NN .\nSolana made his plea after meeting with Israel 's Foreign Minister Tzipi Livni in Tel Aviv .\tNNP VBD PRP$ NN IN VBG IN NNP POS NNP NNP NNP NNP IN NNP NNP .\nHe urged Israel to reopen a border crossing between the Gaza Strip and Egypt , which Israel closed for security reasons .\tPRP VBD NNP TO VB DT NN VBG IN DT NNP NNP CC NNP , WDT NNP VBD IN NN NNS .\nPakistani police say the country 's former President Pervez Musharraf faces arrest if he returns to Pakistan .\tJJ NNS VBP DT NN POS JJ NNP NNP NNP VBZ NN IN PRP VBZ TO NNP .\nPolice registered a case Tuesday against Mr. Musharraf over his detention of judges during a political crisis in 2007 .\tNNP VBD DT NN NNP IN NNP NNP IN PRP$ NN IN NNS IN DT JJ NN IN CD .\nHe could serve three years in jail if convicted .\tPRP MD VB CD NNS IN NN IN VBN .\nLast month , the Supreme Court ruled that Mr. Musharraf violated the constitution when he imposed emergency rule and dismissed top judges in an effort to hold onto the presidency .\tJJ NN , DT NNP NNP VBD IN NNP NNP VBD DT NN WRB PRP VBD NN NN CC VBD JJ NNS IN DT NN TO VB IN DT NN .\nThe former military chief resigned as president last year to avoid impeachment .\tDT JJ JJ NN VBD IN NN JJ NN TO VB NN .\nHe has been living in London the past two months .\tPRP VBZ VBN VBG IN NNP DT JJ CD NNS .\nMr. Musharraf was replaced by Asif Ali Zardari , the widower of slain former Prime Minister Benazir Bhutto , whose Pakistan People 's Party had won parliamentary elections .\tNNP NNP VBD VBN IN NNP NNP NNP , DT NN IN NN JJ NNP NNP NNP NNP , WP$ NNP NNP POS NNP VBD VBN JJ NNS .\nFrance has unveiled plans to improve education and tackle job discrimination , as part of new measures to expand opportunities following three weeks of riots in largely ethnic North African-inhabited areas .\tNNP VBZ VBN NNS TO VB NN CC VB NN NN , IN NN IN JJ NNS TO VB NNS VBG CD NNS IN NNS IN RB JJ NNP JJ NNS .\nPrime Minister Dominique de Villepin told his monthly news conference Thursday the country must strive to make equality of opportunity a reality for everyone - with the focus on jobs and education .\tNNP NNP NNP NNP NNP VBD PRP$ JJ NN NN NNP DT NN MD VB TO VB NN IN NN DT NN IN DT : IN DT NN IN NNS CC NN .\nHe pledged to direct more aid to education districts with mainly low-income populations , and he outlined plans for a contract of parental responsibility to ensure that parents are involved in their children 's education .\tPRP VBD TO VB JJR NN TO NN NNS IN RB JJ NNS , CC PRP VBD NNS IN DT NN IN JJ NN TO VB IN NNS VBP VBN IN PRP$ NNS POS NN .\nMr. de Villepin also said acts of discrimination will be punishable by fines of up to $ 30,000 .\tNNP NNP NNP RB VBD NNS IN NN MD VB JJ IN NNS IN RB TO $ CD .\nThe new measures follow the country 's worst civil unrest in almost 40 years .\tDT JJ NNS VBP DT NN POS JJS JJ NN IN RB CD NNS .\nThe deaths in late October of two teenagers hiding from police near Paris set off the rioting .\tDT NNS IN JJ NNP IN CD NNS VBG IN NN IN NNP VBD RP DT NN .\nTop Iraqi officials greeted the new U.S. Ambassador to Iraq James Jeffery at a ceremony in Baghdad Wednesday .\tJJ JJ NNS VBD DT JJ NNP NN TO NNP NNP NNP IN DT NN IN NNP NNP .\nThe ambassador presented his diplomatic credentials to Iraqi President Jalal Talabani and Foreign Minister Hoshyar Zebari .\tDT NN VBD PRP$ JJ NNS TO JJ NNP NNP NNP CC NNP NNP NNP NNP .\nJeffery is a career diplomat who has served as the former ambassador to Turkey .\tNNP VBZ DT NN NN WP VBZ VBN IN DT JJ NN TO NNP .\nHe previously served as special state department advisor for Iraq and as the deputy chief of mission in Baghdad .\tPRP RB VBD IN JJ NN NN NN IN NNP CC IN DT NN NN IN NN IN NNP .\nJeffrey was appointed to the Iraqi post by the U.S. Senate earlier this month .\tNNP VBD VBN TO DT JJ NN IN DT NNP NNP RBR DT NN .\nHis arrival comes two weeks before the U.S. is scheduled to end its combat mission in Iraq and with the Iraqi political process hamstrung over the formation of a ruling government coalition .\tPRP$ NN VBZ CD NNS IN DT NNP VBZ VBN TO VB PRP$ NN NN IN NNP CC IN DT JJ JJ NN NN IN DT NN IN DT NN NN NN .\nJeffrey succeeds Christopher Hill who has retired from the U.S. foreign service .\tNNP VBZ NNP NNP WP VBZ VBN IN DT NNP JJ NN .\nA U.S. Navy plane was destroyed Tuesday when it overshot the runway at Bagram Air Base in Afghanistan .\tDT NNP NNP NN VBD VBN NNP WRB PRP VBD DT NN IN NNP NNP NNP IN NNP .\nU.S. military authorities say one crew member was slightly injured when the Navy P-3 Orion overshot the runway while landing at the base - the largest U.S. military facility in Afghanistan .\tNNP JJ NNS VBP CD NN NN VBD RB VBN WRB DT NNP NNP NNP VBD DT NN IN NN IN DT NN IN DT JJS NNP JJ NN IN NNP .\nAuthorities at the base say the plane sustained serious structural and fire damage as a result of the crash .\tNNS IN DT NN VBP DT NN VBD JJ JJ CC NN NN IN DT NN IN DT NN .\nThey say an investigation has begun into what caused the incident .\tPRP VBP DT NN VBZ VBN IN WP VBD DT NN .\nThe P-3 Orion is a workhorse of the Naval aviation fleet and is used as a reconnaissance aircraft and for maritime and anti-submarine patrol activities .\tDT JJ NNP VBZ DT NN IN DT NNP NN NN CC VBZ VBN IN DT NN NN CC IN NN CC JJ NN NNS .\nIndia 's defense ministry says it has successfully tested a nuclear-capable ballistic missile from a ship near the east coast .\tNNP POS NN NN VBZ PRP VBZ RB VBN DT JJ JJ NN IN DT NN IN DT JJ NN .\nThe Dhanush missile , developed by India , was fired Friday from a ship , the Subhadra , in the Bay of Bengal off the coast of Orissa .\tDT NNP NN , VBN IN NNP , VBD VBN NNP IN DT NN , DT NNP , IN DT NNP IN NNP IN DT NN IN NNP .\nIt has a striking range of at least 250 kilometers .\tPRP VBZ DT JJ NN IN IN JJS CD NNS .\nThe missile , which can carry both nuclear and conventional weapons , is a naval version of India 's surface-to-surface Prithvi .\tDT NN , WDT MD VB DT JJ CC JJ NNS , VBZ DT JJ NN IN NNP POS JJ NNP .\nEarlier this month , India 's nuclear rival , neighboring Pakistan , said it successfully test-fired a nuclear-capable cruise missile .\tRBR DT NN , NNP POS JJ NN , VBG NNP , VBD PRP RB VBD DT JJ NN NN .\nPakistan and India often conduct such tests to demonstrate their defensive readiness .\tNNP CC NNP RB VBP JJ NNS TO VB PRP$ JJ NN .\nThe two rivals normally give each other notice for long-range missile launches .\tDT CD NNS RB VBP DT JJ NN IN JJ NN NNS .\nWorld-renowned Russian choreographer Igor Moiseyev has died at the age of 101 .\tJJ JJ NN NNP NNP VBZ VBN IN DT NN IN CD .\nRussian news media reports say Moiseyev died Friday of heart failure in Moscow .\tJJ NN NNS NNS VBP NNP VBD NNP IN NN NN IN NNP .\nPresident Vladimir Putin expressed his condolences to relatives and colleagues .\tNNP NNP NNP VBD PRP$ NNS TO NNS CC NNS .\nMoiseyev established his professional folk dance group , the Moiseyev Dance Company , in 1937 and remained at its helm for six decades .\tNNP VBD PRP$ JJ NN NN NN , DT NNP NNP NNP , IN CD CC VBD IN PRP$ NN IN CD NNS .\nSoviet leaders favored the choreographer , although he was not a member of the Communist Party .\tJJ NNS VBD DT NN , IN PRP VBD RB DT NN IN DT NNP NNP .\nHis dance group was one of the first permitted to travel abroad .\tPRP$ NN NN VBD CD IN DT JJ VBN TO VB RB .\nMoiseyev 's innovative choreography combined balletic movement with traditional folk steps .\tNNP POS JJ NN VBN JJ NN IN JJ NN NNS .\nHis performances included acrobatic Caucasus mountain dances as well as American rock-and-roll .\tPRP$ NNS VBD JJ NNP NN NNS RB RB IN JJ NN .\nAudiences hailed them as promoting tolerance and appreciation for diverse cultures .\tNNS VBD PRP IN VBG NN CC NN IN JJ NNS .\nIraqi police say a bomb exploded in a crowded animal market in central Baghdad Friday , killing at least 13 people .\tJJ NNS VBP DT NN VBD IN DT JJ NN NN IN JJ NNP NNP , VBG IN JJS CD NNS .\nAuthorities say nearly 60 others were wounded in the blast , including several police officers .\tNNS VBP RB CD NNS VBD VBN IN DT NN , VBG JJ NNS NNS .\nThe Souq al-Ghazl market in Baghdad also was bombed earlier this year .\tDT NNP JJ NN IN NNP RB VBD VBN RBR DT NN .\nIn the northern city of Mosul , police say a suicide car bombing targeting a police patrol killed at least nine people , including at least three policemen .\tIN DT JJ NN IN NNP , NNS VBP DT NN NN VBG VBG DT NN NN VBD IN JJS CD NNS , VBG IN JJS CD NNS .\nToday 's explosions came amid a decrease in violence across the nation .\tNN POS NNS VBD IN DT NN IN NN IN DT NN .\nIn separate news today , Polish Prime Minister Donald Tusk said his government will withdraw all of its troops from Iraq in 2008 .\tIN JJ NN NN , JJ NNP NNP NNP NNP VBD PRP$ NN MD VB DT IN PRP$ NNS IN NNP IN CD .\nPoland has about 900 soldiers in southern Iraq .\tNNP VBZ IN CD NNS IN JJ NNP .\nA Hungarian government spokesman says the deadly strain of bird flu virus has been found in the southern part of Hungary .\tDT JJ NN NN VBZ DT JJ NN IN NN NN NN VBZ VBN VBN IN DT JJ NN IN NNP .\nThe spokesman , Andras Batiz , said Tuesday three wild swans found last week have tested positive for the H5N1 virus .\tDT NN , NNP NNP , VBD NNP CD JJ NNS VBN JJ NN VBP VBN JJ IN DT NNP NN .\nGerman veterinary officials Tuesday confirmed 22 new cases of flu in birds on the island of Ruegen bringing the total in the country to 103 .\tJJ JJ NNS NNP VBD CD JJ NNS IN NN IN NNS IN DT NN IN NNP VBG DT NN IN DT NN TO CD .\nThe German government announced Monday the virus had spread to the mainland .\tDT JJ NN VBD NNP DT NN VBD VBN TO DT NN .\nOne hundred three cases have now been found in wild birds in Germany .\tCD CD CD NNS VBP RB VBN VBN IN JJ NNS IN NNP .\nCroatia has confirmed the H5N1 virus in a wild swan found dead last week .\tNNP VBZ VBN DT NNP NN IN DT JJ NN VBN JJ JJ NN .\nFrance and the Netherlands are petitioning EU animal health experts so they can vaccinate their poultry .\tNNP CC DT NNP VBP VBG NNP NN NN NNS IN PRP MD VB PRP$ NN .\nSome EU countries are skeptical if such inoculations can ward off the deadly virus .\tDT NNP NNS VBP JJ IN JJ NNS MD VB RP DT JJ NN .\nBird flu has killed more than 90 people since 2003 in Asia .\tNN NN VBZ VBN JJR IN CD NNS IN CD IN NNP .\nThe stage is set for football 's World Cup in Germany , after the organizing committee approved the newly laid playing field at the stadium in Hanover .\tDT NN VBZ VBN IN NN POS NNP NNP IN NNP , IN DT NN NN VBD DT RB VBN NN NN IN DT NN IN NNP .\nWith the approval of the Hanover field Wednesday , all 12 stadiums now have playing surfaces that fit the requirements of 25 percent rye grass and 75 percent Kentucky bluegrass .\tIN DT NN IN DT NNP NN NNP , DT CD NNS RB VBP NN NNS WDT VBP DT NNS IN CD NN NN NN CC CD NN NNP NN .\nField preparations at the stadiums included more than 96,000 square meters of new turf .\tNN NNS IN DT NNS VBD JJR IN CD JJ NNS IN JJ NN .\nOrganizers say the fields now will be mown , fertilized and watered in a what is billed as a ' carefully orchestrated program to bring the surfaces into perfect condition ' and to the approved height of 2.8 centimeters .\tNNS VBP DT NNS RB MD VB VBN , VBN CC VBN IN DT WP VBZ VBN IN DT `` RB VBN NN TO VB DT NNS IN JJ NN `` CC TO DT VBN NN IN CD NNS .\nMoroccan authorities say six African migrants were killed as hundreds of people tried to illegally enter a Spanish enclave in North Africa .\tJJ NNS VBP CD JJ NNS VBD VBN IN NNS IN NNS VBD TO RB VB DT JJ NN IN NNP NNP .\nThey described the migrants as extraordinarily violent in their Thursday attempt to scale the razor-wire fence surrounding Melilla .\tPRP VBD DT NNS IN RB JJ IN PRP$ NNP NN TO VB DT JJ NN VBG NNP .\nMoroccan police arrested 290 people during the incident - the latest of almost daily attempts to enter Melilla or Ceuta , the other Spanish enclave bordering Morocco , in hope of making it to the European Union .\tJJ NN VBN CD NNS IN DT NN IN DT JJS IN RB JJ NNS TO VB NNP CC NNP , DT JJ JJ NN VBG NNP , IN NN IN VBG PRP TO DT NNP NNP .\nFive immigrants died last week trying to enter Ceuta .\tCD NNS VBD JJ NN VBG TO VB NNP .\nBut Spanish officials say their troops were not responsible because they did not use live ammunition .\tCC JJ NNS VBP PRP$ NNS VBD RB JJ IN PRP VBD RB VB JJ NN .\nSpanish Prime Minister Jose Luis Rodriguez Zapatero has called on the European Union to boost economic cooperation with Africa to help stem the flow of economic immigrants from the continent .\tJJ NNP NNP NNP NNP NNP NNP VBZ VBN IN DT NNP NNP TO VB JJ NN IN NNP TO VB VB DT NN IN JJ NNS IN DT NN .\nSpain is also starting to return to Morocco any Africans who make it into the enclave .\tNNP VBZ RB VBG TO VB TO NNP DT NNS WP VBP PRP IN DT NN .\nIraq 's female politicians plan to push for more positions in Prime Minister Nouri al-Maliki 's new Cabinet , which includes only one woman .\tNNP POS JJ NNS VBP TO VB IN JJR NNS IN NNP NNP NNP NNP POS JJ NNP , WDT VBZ RB CD NN .\nFemale lawmakers say they will petition Iraq 's top leaders and international organizations for more Cabinet posts .\tNNP NNS VBP PRP MD VB NNP POS JJ NNS CC JJ NNS IN JJR NNP NNS .\nThe Cabinet Maliki unveiled Tuesday allocated two posts for women .\tDT NNP NNP VBD NNP VBD CD NNS IN NNS .\nOne woman leads a ministry with no job description , no office and no budget .\tCD NN VBZ DT NN IN DT NN NN , DT NN CC DT NN .\nThe other , a Kurdish lawmaker , was offered the women 's affairs post but turned it down .\tDT JJ , DT NNP NN , VBD VBN DT NNS POS NNS NN CC VBD PRP RP .\nIn approving the new government Tuesday , Iraq 's parliament filled 29 of the 42 Cabinet positions .\tIN VBG DT JJ NN NNP , NNP POS NN VBD CD IN DT CD NNP NNS .\n' Acting ministers ' comprise the 13 remaining posts until permanent successors are accepted by parliament .\t`` VBG NNS `` VBP DT CD VBG NNS IN JJ NNS VBP VBN IN NN .\nApproval of the new Cabinet potentially ends a nine-month political stalemate following inconclusive elections in March .\tNNP IN DT JJ NNP RB VBZ DT JJ JJ NN VBG JJ NNS IN NNP .\nThe Cabinet held its first meeting on Wednesday .\tDT NNP VBD PRP$ JJ NN IN NNP .\nPublished reports say four Turkish soldiers have been killed in fighting with Kurdish rebels in southeastern Turkey .\tJJ NNS VBP CD JJ NNS VBP VBN VBN IN VBG IN JJ NNS IN JJ NNP .\nThe reports say the soldiers were killed Tuesday in the southeastern province of Sirnak , near the Iraqi border .\tDT NNS VBP DT NNS VBD VBN NNP IN DT JJ NN IN NNP , IN DT JJ NN .\nKurdistan Workers ' Party rebels have carried out a series of deadly attacks on Turkish troops in southeastern Turkey in recent weeks .\tNNP NNP POS NNP NNS VBP VBN RP DT NN IN JJ NNS IN JJ NNS IN JJ NNP IN JJ NNS .\nTurkey has threatened to launch a military operation in northern Iraq to attack PKK rebels who take refuge there .\tNNP VBZ VBN TO VB DT JJ NN IN JJ NNP TO VB NNP NNS WP VBP NN RB .\nMeanwhile , there are conflicting reports about a Turkish aerial incursion into northern Iraq today .\tRB , EX VBP VBG NNS IN DT JJ JJ NN IN JJ NNP NN .\nSome reports quote Iraqi Kurdish officials and witnesses as saying Turkish aircraft bombed abandoned villages near the Turkish border , without causing casualties .\tDT NNS VBP JJ NNP NNS CC NNS IN VBG JJ NN VBD VBN NNS IN DT JJ NN , IN VBG NNS .\nAnother report quotes an Iraqi Kurdish official as saying Turkish aircraft only dropped flares in the area .\tDT NN VBZ DT JJ NNP NN IN VBG JJ NN RB VBD NNS IN DT NN .\nTurkish Prime Minister Recep Tayyip Erdogan said today that he is not aware of any Turkish air strikes in northern Iraq .\tJJ NNP NNP NNP NNP NNP VBD NN IN PRP VBZ RB JJ IN DT JJ NN NNS IN JJ NNP .\nTwo leading U.S. senators say the plan to raise U.S. troop strength in Iraq ahead of elections there falls short of what is needed .\tCD VBG NNP NNS VBP DT NN TO VB NNP NN NN IN NNP RB IN NNS EX VBZ NN IN WP VBZ VBN .\nIn interviews Sunday , Senators John McCain of Arizona and Joe Biden of Delaware both expressed doubt that an additional 12,000 troops would be enough .\tIN NNS NNP , NNP NNP NNP IN NNP CC NNP NNP IN NNP DT VBD NN IN DT JJ CD NNS MD VB RB .\nThe military 's plan , announced Wednesday , is aimed at improving security in time for Iraq 's January 30th elections .\tDT NN POS NN , VBN NNP , VBZ VBN IN VBG NN IN NN IN NNP POS NNP JJ NNS .\nOn ABC television 's This Week program , Senator Biden said he is concerned that ' civil chaos ' could derail the elections in Sunni Muslim areas .\tIN NNP NN POS DT NN NN , NNP NNP VBD PRP VBZ VBN IN `` JJ NN `` MD VB DT NNS IN NNP NNP NNS .\nAnd on the television program FOX News Sunday , Mr. McCain accused the military of letting insurgents in Iraq take the initiative .\tCC IN DT NN NN NNP NNP NNP , NNP NNP VBD DT NN IN VBG NNS IN NNP VBP DT NN .\nThe plan will take U.S. troops strength in Iraq up to 1,50,000 .\tDT NN MD VB NNP NNS NN IN NNP IN TO CD .\nSaturday , U.S. General John Abizaid said the increase was necessary because Iraqi security forces need more training .\tNNP , NNP NNP NNP NNP VBD DT NN VBD JJ IN JJ NN NNS VBP JJR NN .\nUnited States national team captain Claudio Reyna has retired from international soccer , one day after his team was eliminated from the World Cup in Germany .\tNNP NNPS JJ NN NN NNP NNP VBZ VBN IN JJ NN , CD NN IN PRP$ NN VBD VBN IN DT NNP NNP IN NNP .\nReyna , who has been the U.S. captain for almost eight years , made the announcement Friday .\tNNP , WP VBZ VBN DT NNP NN IN RB CD NNS , VBD DT NN NNP .\nOn Thursday , his final World Cup game ended with a disappointing loss and injury .\tIN NNP , PRP$ JJ NNP NNP NN VBD IN DT JJ NN CC NN .\nThe United States finished last in Group-E with one point after losing 02-Jan to Ghana on Thursday .\tDT NNP NNPS VBD JJ IN NNP IN CD NN IN VBG CD TO NNP IN NNP .\nReyna sprained a ligament in his left knee in the first half , losing the ball in a challenge that led to Ghana 's first goal .\tNNP VBD DT NN IN PRP$ NN NN IN DT JJ NN , VBG DT NN IN DT NN WDT VBD TO NNP POS JJ NN .\nThe U.S. captain played a key role in the team 's run to the quarterfinals at the 2002 World Cup in South Korea and Japan .\tDT NNP NN VBD DT JJ NN IN DT NN POS NN TO DT NNS IN DT CD NNP NNP IN NNP NNP CC NNP .\nReyna scored eight goals in 112 appearances with the U.S. team .\tNNP VBD CD NNS IN CD NNS IN DT NNP NN .\nHe plans to continue to play club football with Manchester City in England .\tPRP VBZ TO VB TO VB NN NN IN NNP NNP IN NNP .\nSome 100 people have been killed in and around Baghdad in one of the bloodiest days in Iraq in weeks .\tDT CD NNS VBP VBN VBN IN CC IN NNP IN CD IN DT JJS NNS IN NNP IN NNS .\nIn the deadliest attack Tuesday , a double bombing near a university killed at least 65 people and wounded more than 100 others .\tIN DT JJS NN NNP , DT JJ NN IN DT NN VBN IN JJS CD NNS CC VBD JJR IN CD NNS .\nIraqi Prime Minister Nouri al-Maliki blamed the attack on what he called ' terrorists and Saddamists . '\tJJ NNP NNP NNP NNP VBD DT NN IN WP PRP VBD `` NNS CC NNS . ``\nHe linked the bombings to the executions on Monday of two former officials from Saddam Hussein 's ousted government .\tPRP VBD DT NNS TO DT NNS IN NNP IN CD JJ NNS IN NNP NNP POS JJ NN .\nMeanwhile , the U.S. military said a roadside bombing killed four American soldiers Monday in northern Iraq .\tRB , DT NNP NN VBD DT NN VBG VBN CD JJ NNS NNP IN JJ NNP .\nAnd a top U.N. official in Baghdad , Gianni Magazzeni , announced that more than 34,000 Iraqi civilians were killed and more than 36,000 wounded in violence last year .\tCC DT JJ NNP NN IN NNP , NNP NNP , VBD IN JJR IN CD JJ NNS VBD VBN CC JJR IN CD VBN IN NN JJ NN .\nThe figures are much higher than Iraqi government estimates .\tDT NNS VBP RB JJR IN JJ NN NNS .\nMagazzeni said the situation is particularly grave in Baghdad , where most casualties and unidentified bodies are recorded daily .\tNNP VBD DT NN VBZ RB JJ IN NNP , WRB RBS NNS CC JJ NNS VBP VBN RB .\nHopes are fading that rescuers will find more survivors in the rubble of a five-story building that collapsed in Nairobi , Kenya on Monday .\tNNS VBP VBG IN NNS MD VB JJR NNS IN DT NN IN DT JJ NN WDT VBD IN NNP , NNP IN NNP .\nRescue teams continue to cut through piles of concrete and metal , but they have not pulled out any more survivors after saving at least three on Tuesday .\tNN NNS VBP TO VB IN NNS IN NN CC NN , CC PRP VBP RB VBN RP DT JJR NNS IN VBG IN JJS CD IN NNP .\nKenyan government spokesman Alfred Mutua says rescuers are no longer hearing any signs of life from under the wreckage .\tJJ NN NN NNP NNP VBZ NNS VBP RB RB VBG DT NNS IN NN IN IN DT NN .\nOfficials say 13 people are confirmed to have died in the collapse , but they predict the death toll will rise .\tNNS VBP CD NNS VBP VBN TO VB VBN IN DT NN , CC PRP VBP DT NN NN MD VB .\nAn unknown number of laborers were inside the building , which was still under construction when it suddenly collapsed Monday afternoon .\tDT JJ NN IN NNS VBD IN DT NN , WDT VBD RB IN NN WRB PRP RB VBD NNP NN .\nMore than 100 people were injured in the collapse , which officials have blamed on poor construction and government negligence .\tJJR IN CD NNS VBD VBN IN DT NN , WDT NNS VBP VBN IN JJ NN CC NN NN .\nAn Indian company , eChoupal , has been selected to receive this year 's Development Gateway Award for its use of technology to make agricultural information available to farmers in rural India .\tDT JJ NN , NNP , VBZ VBN VBN TO VB DT NN POS NNP NNP NNP IN PRP$ NN IN NN TO VB JJ NN JJ TO NNS IN JJ NNP .\neChoupal received the $ 1,00,000 award Friday at a forum in Beijing co-hosted by the Chinese government and the World Bank .\tNNP VBD DT $ CD NN NNP IN DT NN IN NNP VBN IN DT JJ NN CC DT NNP NNP .\neChoupal installed more than 5,000 computer kiosks in villages around India where farmers could use them to learn management techniques , order fertilizer less expensively , and monitor market prices .\tNNP VBD JJR IN CD NN NNS IN NNS IN NNP WRB NNS MD VB PRP TO VB NN NNS , NN NN RBR RB , CC NN NN NNS .\nThe Development Gateway Award recognizes efforts to use information technology to enhance the quality of life in communities around the world .\tDT NNP NNP NNP VBZ NNS TO VB NN NN TO VB DT NN IN NN IN NNS IN DT NN .\neChoupal was selected from among 135 nominees for the award .\tNNP VBD VBN IN IN CD NNS IN DT NN .\nIraqi police have arrested at least two suspects Thursday and recovered millions of dollars from a bank robbery that left eight guards dead .\tJJ NNS VBP VBN IN JJS CD NNS NNP CC VBD NNS IN NNS IN DT NN NN WDT VBD CD NNS JJ .\nOfficials in Baghdad say police raided the home of an Iraqi soldier where they found the stolen money .\tNNS IN NNP VBP NNS VBD DT NN IN DT JJ NN WRB PRP VBD DT JJ NN .\nReports vary as to the total amount stolen and whether all or only part was recovered .\tNNS VBP IN TO DT JJ NN VBN CC IN DT CC RB NN VBD VBN .\nBut officials say at least several million dollars have been returned to the bank .\tCC NNS VBP IN JJS JJ CD NNS VBP VBN VBN TO DT NN .\nThe money was stolen from the Rafidain bank in Baghdad 's Karrada district on Tuesday .\tDT NN VBD VBN IN DT NNP NN IN NNP POS NNP NN IN NNP .\nEight security guards were shot and killed during the robbery .\tCD NN NNS VBD VBN CC VBN IN DT NN .\nThe heist came only two days after gunmen opened fire at a money exchange office in the same area , killing at least three people .\tDT NN VBD RB CD NNS IN NNS VBD NN IN DT NN NN NN IN DT JJ NN , VBG IN JJS CD NNS .\nA radical Muslim cleric on trial in London on charges of advocating murder of non-Muslims has denied inciting any killings .\tDT JJ NN NN IN NN IN NNP IN NNS IN VBG NN IN NNP VBZ VBN VBG DT NNS .\nAbu Hamza al-Masri took the stand stressing opposition to racism .\tNNP NNP NNP VBD DT NN VBG NN TO NN .\nWhen his lawyers asked if he had advocated killings he replied he did not advocate murder but supported what he termed combat .\tWRB PRP$ NNS VBD IN PRP VBD VBN NNS PRP VBD PRP VBD RB VB NN CC VBD WP PRP VBD NN .\nThe attorney then mentioned Afghanistan .\tDT NN RB VBD NNP .\nThe defendant is the former chief preacher at Finsbury Park mosque in north London .\tDT NN VBZ DT JJ NN NN IN NNP NNP NN IN JJ NNP .\nHe faces at least 15 charges that include stirring racial hatred , as well as possession of threatening recordings and a terrorist document .\tPRP VBZ IN JJS CD NNS WDT VBP VBG JJ NN , RB RB IN NN IN JJ NNS CC DT JJ NN .\nThe Egyptian-born cleric , who gained international notoriety for his fiery sermons , has denied any role in terrorism .\tDT JJ NN , WP VBD JJ NN IN PRP$ NN NNS , VBZ VBN DT NN IN NN .\nThe United States has sought to extradite him on terrorism charges .\tDT NNP NNP VBZ VBN TO VB PRP IN NN NNS .\nAbu Hamza al-Masri says he lost both hands and an eye fighting Soviet forces in Afghanistan in the 1980s .\tNNP NNP NNP VBZ PRP VBD DT NNS CC DT NN VBG JJ NNS IN NNP IN DT NNS .\nThe U.S. military in Iraq says at least six Iraqi policemen were killed in a car bomb explosion in the northern town of Tikrit Tuesday .\tDT NNP NN IN NNP VBZ IN JJS CD JJ NNS VBD VBN IN DT NN NN NN IN DT JJ NN IN NNP NNP .\nOfficials say several policemen were also wounded in the attack believed to have been carried out by a suicide bomber .\tNNS VBP JJ NNS VBD RB VBN IN DT NN VBN TO VB VBN VBN RP IN DT NN NN .\nSeparately , at least seven people were killed in a small town south of Baghdad .\tRB , IN JJS CD NNS VBD VBN IN DT JJ NN NN IN NNP .\nThe victims were passengers of a minibus passing through an area known as the ' triangle of death . '\tDT NNS VBD NNS IN DT NN VBG IN DT NN VBN IN DT `` NN IN NN . ``\nThe killings were the latest in a wave of attacks across Iraq , as insurgents pressed on with their campaign of violence ahead of the country 's January 30 election .\tDT NNS VBD DT JJS IN DT NN IN NNS IN NNP , IN NNS VBN IN IN PRP$ NN IN NN RB IN DT NN POS NNP CD NN .\nHurricane Danielle is picking up strength over the Atlantic Ocean , and weather forecasters say it could soon become a major storm .\tNNP NNP VBZ VBG RP NN IN DT NNP NNP , CC NN NNS VBP PRP MD RB VB DT JJ NN .\nThe U.S. National Hurricane Center in Miami says Danielle is now a Category Two hurricane on the five-point scale of hurricane strength , with sustained winds of nearly 165 kilometers per hour .\tDT NNP NNP NNP NNP IN NNP VBZ NNP VBZ RB DT NNP CD NN IN DT JJ NN IN NN NN , IN JJ NNS IN RB CD NNS IN NN .\nAt last report , Danielle was about 1,000 kilometers northeast of the Northern Leeward Islands and moving toward Bermuda .\tIN JJ NN , NNP VBD IN CD NNS NN IN DT NNP NNP NNP CC VBG IN NNP .\nFarther east over the Atlantic , the winds of Tropical Storm Earl are at nearly 75 kilometers per hour .\tNNP RB IN DT NNP , DT NNS IN NNP NNP NNP VBP IN RB CD NNS IN NN .\nThe National Hurricane Center says the storm is expected to get stronger and could become a hurricane by Saturday .\tDT NNP NNP NNP VBZ DT NN VBZ VBN TO VB JJR CC MD VB DT NN IN NNP .\nMeanwhile , in the Pacific , Hurricane Frank is expected to start weakening Friday .\tRB , IN DT NNP , NNP NNP VBZ VBN TO VB VBG NNP .\nFrank earlier soaked Mexico 's southern coast , where heavy rains killed four people .\tNNP RB VBD NNP POS JJ NN , WRB JJ NNS VBD CD NNS .\nThe U.S. space agency NASA is marking Saturday 's 20th anniversary of the Challenger space shuttle tragedy , which took the lives of seven astronauts .\tDT NNP NN NN NNP VBZ VBG NNP POS JJ NN IN DT NNP NN NN NN , WDT VBD DT NNS IN CD NNS .\nFamilies of the astronauts will take part in a ceremony at the Kennedy Space Center in Cape Canaveral , Florida , where Challenger was launched .\tNNS IN DT NNS MD VB NN IN DT NN IN DT NNP NNP NNP IN NNP NNP , NNP , WRB NNP VBD VBN .\nAmong those on board was high school teacher Christa McAuliffe .\tIN DT IN NN VBD JJ NN NN NNP NNP .\nAfter a successful liftoff in near freezing temperatures and clear , blue skies , Challenger exploded into a huge fireball 73 seconds into flight as people across the world watched on television .\tIN DT JJ NN IN JJ JJ NNS CC JJ , JJ NNS , NNP VBD IN DT JJ NN CD NNS IN NN IN NNS IN DT NN VBD IN NN .\nThe cause of the explosion was a poorly designed seal in the shuttle 's solid rocket booster .\tDT NN IN DT NN VBD DT RB VBN NN IN DT NN POS JJ NN NN .\nThree years ago , the space shuttle Columbiadisintegred while re-entering earth 's atmosphere , killing another seven astronauts and causing the temporary grounding of the shuttle fleet .\tCD NNS RB , DT NN NN VBN IN VBG NN POS NN , VBG DT CD NNS CC VBG DT JJ NN IN DT NN NN .\nAustralia says it will end its military 's humanitarian mission in Indonesia 's tsunami-ravaged Aceh province on Friday .\tNNP VBZ PRP MD VB PRP$ NN POS JJ NN IN NNP POS JJ NNP NN IN NNP .\nIn a statement released Thursday , Australian Defense Minister Robert Hill said the military 's primary mission to restore hospital services , water and other infrastructure has been achieved .\tIN DT NN VBN NNP , NNP NNP NNP NNP NNP VBD DT NN POS JJ NN TO VB NN NNS , NN CC JJ NN VBZ VBN VBN .\nHe said the last navy vessel will leave Indonesian waters Friday .\tPRP VBD DT JJ NN NN MD VB JJ NNS NNP .\nMeanwhile , the United Nations Refugee Agency says it will also cease operations in Aceh by Friday .\tRB , DT NNP NNP NNP NNP VBZ PRP MD RB VB NNS IN NNP IN NNP .\nThe U.N. High Commissioner for Refugees said Thursday it had hoped to complete a $ 60 million relief plan for the province , but that the Indonesian government said its help was no longer needed .\tDT NNP NNP NNP IN NNP VBD NNP PRP VBD VBN TO VB DT $ CD CD NN NN IN DT NN , CC IN DT JJ NN VBD PRP$ NN VBD RB RB VBN .\nBoth groups were part of the huge international effort that followed the December 26 undersea earthquake and tsunami that killed over 2,30,000 people around the Indian Ocean .\tDT NNS VBD NN IN DT JJ JJ NN WDT VBD DT NNP CD NN NN CC NN WDT VBD IN CD NNS IN DT NNP NNP .\nBritish sports officials have projected that the country 's athletes in Beijing will bring home the most medals at an Olympics since 1920 .\tJJ NNS NNS VBP VBN IN DT NN POS NNS IN NNP MD VB NN DT RBS NNS IN DT NNP IN CD .\nUK Sport said Wednesday they believe British athletes should win around 35 medals , including 10-Dec gold .\tNNP NNP VBD NNP PRP VBP JJ NNS MD VB IN CD NNS , VBG JJ NN .\nThat would work out to eighth place in the medals standings , two spots higher than their 10th place finish at the Athens Games in 2004 .\tDT MD VB RP TO JJ NN IN DT NNS NNS , CD NNS JJR IN PRP$ JJ NN NN IN DT NNP NNPS IN CD .\nThe country 's strongest showings are expected in cycling , athletics , sailing and rowing , with 19 medals from those four disciplines .\tDT NN POS JJS NNS VBP VBN IN NN , NNS , NN CC NN , IN CD NNS IN DT CD NNS .\nUK Sport chief executive John Steele says the targets are ' ambitious . '\tNNP NNP NN NN NNP NNP VBZ DT NNS VBP `` JJ . ``\nHe believes the way Britain performs against the 2008 targets will demonstrate how close it is to reaching the long-term goal of fourth place at the 2012 London Games .\tPRP VBZ DT NN NNP VBZ IN DT CD NNS MD VB WRB JJ PRP VBZ TO VBG DT JJ NN IN JJ NN IN DT CD NNP NNPS .\nA former Argentine military officer has gone on trial in Madrid , Spain , accused of committing human rights abuses during his country 's so called ' dirty war ' more than two decades ago .\tDT JJ JJ NN NN VBZ VBN IN NN IN NNP , NNP , VBN IN VBG JJ NNS NNS IN PRP$ NN POS RB VBN `` JJ NN `` JJR IN CD NNS RB .\nAdolfo Scilingo is alleged to have dumped drugged dissidents from military helicopters into the ocean .\tNNP NNP VBZ VBN TO VB VBN JJ NNS IN JJ NNS IN DT NN .\nMr. Scilingo , who went to Spain in 1997 , had earlier confessed , becoming one of the first officers to openly admit such atrocities occurred during Argentina 's brutal 1976 - 1983 crackdown on leftists .\tNNP NNP , WP VBD TO NNP IN CD , VBD RBR VBN , VBG CD IN DT JJ NNS TO RB VB JJ NNS VBD IN NNP POS JJ CD : CD NN IN NNS .\nBut he later recanted and recently went on a hunger strike to protest his imprisonment and trial .\tCC PRP RB VBD CC RB VBD IN DT NN NN TO VB PRP$ NN CC NN .\nSpanish prosecutors are trying the case under a law that allows Spain 's courts to act against suspected human rights violators , even if the alleged crimes were committed in other countries .\tJJ NNS VBP VBG DT NN IN DT NN WDT VBZ NNP POS NNS TO VB IN VBN JJ NNS NNS , RB IN DT JJ NNS VBD VBN IN JJ NNS .\nThe office of the Israeli prime minister says a visit to Israel by the foreign ministers of Egypt and Jordan will take place July 25 , not this week as previously planned .\tDT NN IN DT JJ JJ NN VBZ DT NN TO NNP IN DT JJ NNS IN NNP CC NNP MD VB NN NNP CD , RB DT NN IN RB VBN .\nEhud Olmert 's office gave no reason for the postponement .\tNNP NNP POS NN VBD DT NN IN DT NN .\nThe Egyptian and Jordanian ministers are making the trip on behalf of the 22-nation Arab League to discuss reviving an Arab peace initiative with Mr. Olmert .\tDT JJ CC JJ NNS VBP VBG DT NN IN NN IN DT JJ NNP NNP TO VB VBG DT JJ NN NN IN NNP NNP .\nThe initiative includes offering Israel normal relations with all Arab countries in exchange for an Israeli withdrawal from all lands captured during the 1967 war .\tDT NN VBZ VBG NNP JJ NNS IN DT JJ NNS IN NN IN DT JJ NN IN DT NNS VBN IN DT CD NN .\nA U.S. aid organization says one of its American workers in Iraq and three other people were killed in an ambush Wednesday in Baghdad .\tDT NNP NN NN VBZ CD IN PRP$ JJ NNS IN NNP CC CD JJ NNS VBD VBN IN DT JJ NNP IN NNP .\nAn official in Washington with the National Democratic Institute , Leslie Campbell , says the American and three security personnel , including an Iraqi , a Croatian and a Hungarian , were killed in the attack .\tDT NN IN NNP IN DT NNP NNP NNP , NNP NNP , VBZ DT NNP CC CD NN NNS , VBG DT NN , DT NN CC DT NN , VBD VBN IN DT NN .\nHe said it is not clear who carried out the attack .\tPRP VBD PRP VBZ RB JJ WP VBD RP DT NN .\nThe National Democratic Institute is a non-profit organization that is providing training and advice to Iraqi political parties , civil groups and parliamentarians .\tDT NNP NNP NNP VBZ DT JJ NN WDT VBZ VBG NN CC NN IN JJ JJ NNS , JJ NNS CC NNS .\nCampbell says the group has no immediate plans to end its mission in Iraq , but he says the situation will be re-assessed in light of the attack .\tNNP VBZ DT NN VBZ DT JJ NNS TO VB PRP$ NN IN NNP , CC PRP VBZ DT NN MD VB VBN IN NN IN DT NN .\nIraqi officials say a roadside bomb blast in Baghdad has killed at least two security officers .\tJJ NNS VBP DT NN NN NN IN NNP VBZ VBN IN JJS CD NN NNS .\nAuthorities say at least two others were wounded in the explosion early Saturday in the eastern section of the capital .\tNNS VBP IN JJS CD NNS VBD VBN IN DT NN JJ NNP IN DT JJ NN IN DT NN .\nAlso in Baghdad , police say a top police officer was unharmed when a roadside bomb exploded near his vehicle , but at least one person was killed and another was wounded .\tRB IN NNP , NNS VBP DT JJ NN NN VBD VBN WRB DT NN NN VBD IN PRP$ NN , CC IN JJS CD NN VBD VBN CC DT VBD VBN .\nThe U.S. military says a roadside bomb in the city today killed a U.S. soldier .\tDT NNP NN VBZ DT NN NN IN DT NN NN VBD DT NNP NN .\nPolice report they found the bound and blindfolded bodies of two unidentified men in Baghdad who had been shot .\tNNS VBP PRP VBD DT VBN CC VBN NNS IN CD JJ NNS IN NNP WP VBD VBN VBN .\nIn another development , British military officials in southern Iraq said today two Macedonian contract workers were kidnapped Thursday near Basra .\tIN DT NN , JJ JJ NNS IN JJ NNP VBD NN CD JJ NN NNS VBD VBN NNP IN NNP .\nIn place of the cult of personality that the Communist Party built around Chairman Mao , the Chinese are embracing a new cult : celebrity .\tIN NN IN DT NN IN NN IN DT NNP NNP VBD IN NNP NNP , DT NNS VBP VBG DT JJ NN IN NN .\nNo Chinese person is more famous now than basketball player and NBA All-Star , Yao Ming , who is headlining China 's Olympic basketball team .\tDT JJ NN VBZ RBR JJ RB IN NN NN CC NNP NNP , NNP NNP , WP VBZ VBG NNP POS NNP NN NN .\nMandy Clark reports from Beijing .\tNNP NNP VBZ IN NNP .\nEgyptian citizens in a number of provinces are voting Sunday in the second round of parliamentary elections .\tJJ NNS IN DT NN IN NNS VBP VBG NNP IN DT JJ NN IN JJ NNS .\nMore than 1,700 candidates are competing in 72 constituencies in the nine second- round provinces .\tJJR IN CD NNS VBP VBG IN CD NNS IN DT CD JJ NN NNS .\nThe first round of voting , centered on Cairo , ended Wednesday amid accusations from monitoring organizations and opposition parties of widespread irregularities .\tDT JJ NN IN NN , VBD IN NNP , VBD NNP IN NNS IN NN NNS CC NN NNS IN JJ NNS .\nOfficials say the ruling National Democratic Party won 112 of the 454 parliament seats in the first round .\tNNS VBP DT NN NNP NNP NNP VBD CD IN DT CD NN NNS IN DT JJ NN .\nCandidates associated with the banned Muslim Brotherhood won 34 seats , more than doubling its presence .\tNNS VBN IN DT VBN NNP NNP VBD CD NNS , JJR IN VBG PRP$ NN .\nMeanwhile , leaders of the banned group say police arrested about 200 of its members before polling began today .\tRB , NNS IN DT VBN NN VBP NNS VBN IN CD IN PRP$ NNS IN VBG VBD NN .\nBrotherhood Essam el-Erian says the arrests indicate ruling party interference in the election .\tNNP NNP NNP VBZ DT NNS VBP VBG NN NN IN DT NN .\nThe third and final stage of voting is set for December 1 .\tDT JJ CC JJ NN IN NN VBZ VBN IN NNP CD .\nSerbia has submitted to the U.N. General Assembly a draft resolution that seeks new dialogue on Kosovo , but does not call for the reopening of status talks on its former province .\tNNP VBZ VBN TO DT NNP NNP NNP DT NN NN WDT VBZ JJ NN IN NNP , CC VBZ RB VB IN DT NN IN NN NNS IN PRP$ JJ NN .\nInstead , the Serbian Foreign Ministry said Wednesday on its Web site that Belgrade wants the General Assembly to call on both sides to find ' mutually acceptable solutions for all outstanding issues through peaceful dialogue . '\tRB , DT JJ NNP NNP VBD NNP IN PRP$ NNP NN IN NNP VBZ DT NNP NNP TO VB IN DT NNS TO VB `` RB JJ NNS IN DT JJ NNS IN JJ NN . ``\nThe resolution comes less than a week after the world body 's International Court of Justice ruled that Kosovo 's unilateral 2008 declaration of independence was legal under international law .\tDT NN VBZ JJR IN DT NN IN DT NN NN POS NNP NNP IN NNP VBD IN NNP POS JJ CD NN IN NN VBD JJ IN JJ NN .\nImmediately after last Thursday 's ruling , Serbian President Boris Tadic said Serbia would keep trying to get Kosovo back using all peaceful and legal means .\tRB IN JJ NNP POS NN , JJ NNP NNP NNP VBD NNP MD VB VBG TO VB NNP RB VBG DT JJ CC JJ NNS .\nThe Belgrade government said Monday it expects 55 more countries to join the 69 that have already recognized Kosovo 's independence .\tDT NNP NN VBD NNP PRP VBZ CD JJR NNS TO VB DT CD WDT VBP RB VBN NNP POS NN .\nU.S.-led coalition forces clashed Sunday with Taleban militants in the country 's southern Helmand province .\tJJ NN NNS VBN NNP IN NNP NNS IN DT NN POS JJ NNP NN .\nMilitary officials say at least 10 insurgents were killed when coalition air strikes hit militant positions during an early morning operation in the Garmser district .\tJJ NNS VBP IN JJS CD NNS VBD VBN WRB NN NN NNS VBD JJ NNS IN DT JJ NN NN IN DT NNP NN .\nCoalition and Afghan forces have been fighting Taleban insurgents since 2001 , when a U.S.-led invasion drove the Islamic group from power .\tNN CC JJ NNS VBP VBN VBG NNP NNS IN CD , WRB DT JJ NN VBD DT JJ NN IN NN .\nMilitant attacks in southern and eastern Afghanistan have escalated over the past 19 months , marking the bloodiest period since the beginning of the war .\tJJ NNS IN JJ CC JJ NNP VBP VBN IN DT JJ CD NNS , VBG DT JJS NN IN DT NN IN DT NN .\nSaddam Hussein 's former deputy prime minister says that U.S. interrogators have questioned him about whether French President Jacques Chirac or other leaders benefited from the former United Nations oil-for-food program in Iraq .\tNNP NNP POS JJ JJ JJ NN VBZ IN NNP NNS VBP VBN PRP IN IN JJ NNP NNP NNP CC JJ NNS VBD IN DT JJ NNP NNPS NN NN IN NNP .\nThe British Observer newspaper published the letters Sunday in which it says Tariq Aziz also complains of his treatment in U.S. custody .\tDT JJ NNP NN VBD DT NNS NNP IN WDT PRP VBZ NNP NNP RB VBZ IN PRP$ NN IN NNP NN .\nMr. Aziz wrote that when he was asked if he had recommended giving ' kickbacks ' to Mr. Chirac or other international leaders , he said ' my answer is no . '\tNNP NNP VBD IN WRB PRP VBD VBN IN PRP VBD VBN VBG `` NNS `` TO NNP NNP CC JJ JJ NNS , PRP VBD `` PRP$ NN VBZ DT . ``\nMr. Aziz also complained that he was being held unjustly - claiming that ' we have no meetings or telephone contacts with our families . '\tNNP NNP RB VBD IN PRP VBD VBG VBN RB : VBG IN `` PRP VBP DT NNS CC NN NNS IN PRP$ NNS . ``\nHe faces charges that include crimes against Iraq 's Kurdish and Shi'ite communities .\tPRP VBZ NNS WDT VBP NNS IN NNP POS NNP CC NNP NNS .\nThe Observer says the letters in English and Arabic were written on pages from the diary of his lawyer , who was with him while he was being questioned .\tDT NNP VBZ DT NNS IN NNP CC NNP VBD VBN IN NNS IN DT NN IN PRP$ NN , WP VBD IN PRP IN PRP VBD VBG VBN .\nU.S. President George Bush Tuesday signed a bill that allows Nelson Mandela to enter the United States without special clearance .\tNNP NNP NNP NNP NNP VBD DT NN WDT VBZ NNP NNP TO VB DT NNP NNPS IN JJ NN .\nThe measure officially removes Mr. Mandela and his African National Congress from a U.S. terror watch list .\tDT NN RB VBZ NNP NNP CC PRP$ NNP NNP NNP IN DT NNP NN NN NN .\nThe former South African president may now visit the United States without the U.S. secretary of state having to certify that he is not a terrorist .\tDT JJ NNP NNP NN MD RB VB DT NNP NNPS IN DT NNP NN IN NN VBG TO VB IN PRP VBZ RB DT JJ .\nMr. Mandela was placed on the list because of his work with the African National Congress ( ANC ) , which fought to end white minority rule in South Africa .\tNNP NNP VBD VBN IN DT NN IN IN PRP$ NN IN DT NNP NNP NNP LRB NNP RRB , WDT VBD TO VB JJ NN NN IN NNP NNP .\nMr. Mandela spent 27 years in prison for his work with the ANC to fight apartheid rule in South Africa .\tNNP NNP VBD CD NNS IN NN IN PRP$ NN IN DT NNP TO VB NN NN IN NNP NNP .\nThe Nobel Peace Prize winner turns 90 on July 18 .\tDT NNP NNP NNP NN VBZ CD IN NNP CD .\nAn Israeli aircraft has fired a missile at a target in the Gaza Strip .\tDT JJ NN VBZ VBN DT NN IN DT NN IN DT NNP NNP .\nWitnesses say an Israeli helicopter gunship fired the missile at a building housing the offices of an Islamic charity .\tNNS VBP DT JJ NN NN VBD DT NN IN DT NN NN DT NNS IN DT JJ NN .\nThe Israeli military says the attack targeted an office of a militant group in Gaza city .\tDT JJ NN VBZ DT NN VBD DT NN IN DT JJ NN IN NNP NN .\nThere were no reports of casualties .\tEX VBD DT NNS IN NNS .\nThe attack was the latest in a series of Israeli strikes that began Saturday after Palestinian militants in Gaza fired three rockets into southern Israel .\tDT NN VBD DT JJS IN DT NN IN JJ NNS WDT VBD NNP IN JJ NNS IN NNP VBD CD NNS IN JJ NNP .\nEarlier , Israel accused the Palestinian Authority of allowing wanted terrorists to cross into Gaza from Egypt in violation of the security agreement brokered by the United States last month .\tRB , NNP VBD DT JJ NNP IN VBG JJ NNS TO VB IN NNP IN NNP IN NN IN DT NN NN VBN IN DT NNP NNPS JJ NN .\nPalestinian security officials admit some militants have crossed the border , but say Israel 's demand that they be kept out is not part of the agreement .\tJJ NN NNS VBP DT NNS VBP VBN DT NN , CC VBP NNP POS NN IN PRP VB VBN RP VBZ RB NN IN DT NN .\nEgyptians walk by a giant poster of President Hosni Mubarak that says : ' We support you , we pledge our allegiance to you ' Egyptian police have arrested 25 more members of the outlawed Muslim Brotherhood , including one of the opposition group 's top leaders .\tNNS VBN IN DT JJ NN IN NNP NNP NNP IN VBZ : `` PRP VBP PRP , PRP NN PRP$ NN TO PRP `` JJ NNS VBP VBN CD JJR NNS IN DT JJ NNP NNP , VBG CD IN DT NN NN POS JJ NNS .\nThe Brotherhood 's secretary-general , Mahmoud Ezzat , was among those arrested in pre-dawn sweeps Sunday ahead of Wednesday 's national referendum on presidential election rules .\tDT NNP POS JJ , NNP NNP , VBD IN DT VBN IN JJ NNS NNP RB IN NNP POS JJ NN IN JJ NN NNS .\nThe Muslim Brotherhood and other groups have urged a boycott of the vote .\tDT NNP NNP CC JJ NNS VBP VBN DT NN IN DT NN .\nIf approved , the referendum will amend the constitution so Egypt can hold its first multi-candidate presidential election in September .\tIN VBN , DT NN MD VB DT NN IN NNP MD VB PRP$ JJ JJ JJ NN IN NNP .\nThe Brotherhood opposes the amendment because it sets tough conditions for independent candidates , effectively excluding anyone not endorsed by the ruling party .\tDT NNP VBZ DT NN IN PRP VBZ JJ NNS IN JJ NNS , RB VBG DT RB VBN IN DT VBG NN .\nEgypt has arrested more than 700 members of the Brotherhood in recent weeks .\tNNP VBZ VBN JJR IN CD NNS IN DT NNP IN JJ NNS .\nThe group says today 's arrests are an attempt to silence influential opposition voices .\tDT NN VBZ NN POS NNS VBP DT NN TO VB JJ NN NNS .\nFormer U.S. Secretary of State Colin Powell says he advised President Bush to send more troops into Iraq before the U.S.-led invasion was launched .\tJJ NNP NNP IN NNP NNP NNP VBZ PRP VBD NNP NNP TO VB JJR NNS IN NNP IN DT JJ NN VBD VBN .\nPowell , in an interview with Britain 's ITV1 , says he gave the advice to now-retired General Tommy Franks , who planned the Iraq invasion , Defense Secretary Donald Rumsfeld and Mr. Bush .\tNNP , IN DT NN IN NNP POS NNP , VBZ PRP VBD DT NN TO JJ NNP NNP NNP , WP VBD DT NNP NN , NNP NNP NNP NNP CC NNP NNP .\nPowell says Mr. Bush 's military advisors believed the troop level was adequate .\tNNP VBZ NNP NNP POS JJ NNS VBD DT NN NN VBD JJ .\nPowell says he still disagrees with this and would have preferred to initially send more troops .\tNNP VBZ PRP RB VBZ IN DT CC MD VB VBN TO RB VB JJR NNS .\nRumsfeld has been under mounting criticism over the war in Iraq .\tNNP VBZ VBN IN VBG NN IN DT NN IN NNP .\nSix retired U.S. generals recently called for Rumsfeld 's resignation , faulting his leadership and accusing him of making a series of major errors in the Iraq war .\tCD JJ NNP NNS RB VBD IN NNP POS NN , VBG PRP$ NN CC VBG PRP IN VBG DT NN IN JJ NNS IN DT NNP NN .\nWorkers in Kurdish northern Iraq digging the foundation for a new hospital have discovered a mass grave that a regional official says may contain scores of bodies .\tNNS IN NNP JJ NNP VBG DT NN IN DT JJ NN VBP VBN DT NN NN IN DT JJ NN VBZ MD VB NNS IN NNS .\nSpeaking Wednesday in the town of Suleimaniyah , regional human rights minister Salah Rashid said the bodies are likely those of Kurds killed by Saddam Hussein 's army following the end of the 1991 Gulf War .\tVBG NNP IN DT NN IN NNP , JJ JJ NNS NN NNP NNP VBD DT NNS VBP JJ DT IN NNS VBN IN NNP NNP POS NN VBG DT NN IN DT CD NNP NNP .\nThe Associated Press quotes a 60-year-old local man as saying hundreds of Kurds are buried at the site , including his brother .\tDT NNP NNP VBZ DT JJ JJ NN IN VBG NNS IN NNS VBP VBN IN DT NN , VBG PRP$ NN .\nU.S. and Iraqi officials say more than 250 mass graves have been unearthed across Iraq since Saddam 's ouster in 2003 .\tNNP CC JJ NNS VBP JJR IN CD NN NNS VBP VBN JJ IN NNP IN NNP POS NN IN CD .\nThe former dictator remains in U.S. custody , and is expected to go on trial next year on charges of genocide and crimes against humanity .\tDT JJ NN VBZ IN NNP NN , CC VBZ VBN TO VB IN NN JJ NN IN NNS IN NN CC NNS IN NN .\nAmerican troops and warplanes repelled an insurgent attack Wednesday in the northern Iraqi city of Mosul , killing at least 25 attackers .\tJJ NNS CC NNS VBD DT JJ NN NNP IN DT JJ JJ NN IN NNP , VBG IN JJS CD NNS .\nThe U.S. military said 15 of its troops were injured and one died in fighting after rebels detonated a car bomb outside a U.S. outpost and opened fire on arriving soldiers .\tDT NNP NN VBD CD IN PRP$ NNS VBD VBN CC CD VBD IN VBG IN NNS VBD DT NN NN IN DT NNP NN CC VBD NN IN VBG NNS .\nViolence in Mosul has intensified following a November offensive against insurgents in Fallujah , as some militants fled to the northern city .\tNN IN NNP VBZ VBN VBG DT NNP NN IN NNS IN NNP , IN DT NNS VBD TO DT JJ NN .\nThursday , the interim government announced the arrest of a Kurdish man accused of facilitating communications between al-Qaida and Abu Musab al-Zarqawi 's terrorist network .\tNNP , DT JJ NN VBD DT NN IN DT JJ NN VBN IN VBG NNS IN NNP CC NNP NNP NNP POS JJ NN .\nA similar arrest was announced Wednesday .\tDT JJ NN VBD VBN NNP .\nAnd the insurgent group that claimed responsibility for last week 's attack on a U.S. base in Mosul that killed 22 people has renewed its threat to kill anyone who takes part in next month 's election .\tCC DT JJ NN WDT VBD NN IN JJ NN POS NN IN DT NNP NN IN NNP WDT VBD CD NNS VBZ VBN PRP$ NN TO VB DT WP VBZ NN IN JJ NN POS NN .\nA U.S. soldier at the center of the Abu Ghraib prison abuse scandal in Iraq is to plead guilty Monday to reduced charges .\tDT NNP NN IN DT NN IN DT NNP NNP NN NN NN IN NNP VBZ TO VB JJ NNP TO JJ NNS .\nHer attorney says Army Reservist Lynndie England will plead guilty to conspiracy , maltreating prisoners and dereliction of duty .\tPRP$ NN VBZ NN NN NNP NNP MD VB JJ TO NN , VBG NNS CC NN IN NN .\nTwo charges are to be dropped .\tCD NNS VBP TO VB VBN .\nEngland was seen in widely publicized photographs holding a leash attached to a naked detainee at Abu Ghraib and , in another photo , smiling and pointing at a prisoner 's genitals .\tNNP VBD VBN IN RB JJ NNS VBG DT NN VBN TO DT JJ NN IN NNP NNP CC , IN DT NN , VBG CC VBG IN DT NN POS NNS .\nThe judge must still accept the plea agreement that could bring a maximum prison term of 11 years , instead of 16 .\tDT NN MD RB VB DT NN NN WDT MD VB DT NN NN NN IN CD NNS , IN IN CD .\nThe New York Times , citing prosecution sources , says England is expected to receive a term of 30 months .\tDT NNP NNP NNP , VBG NN NNS , VBZ NNP VBZ VBN TO VB DT NN IN CD NNS .\nEngland 's ex-boyfriend , described as the ringleader of the abuse , has already been sentenced to 10 years in prison .\tNNP POS NN , VBN IN DT NN IN DT NN , VBZ RB VBN VBN TO CD NNS IN NN .\nJapan 's Nissan Motor Company and France 's Renault say they are willing to begin talks with General Motors on a possible alliance with the American company .\tNNP POS NNP NNP NNP CC NNP POS NNP VBP PRP VBP JJ TO VB NNS IN NNP NNPS IN DT JJ NN IN DT JJ NN .\nThe boards of directors of Nissan and Renault approved the talks on Monday .\tDT NNS IN NNS IN NNP CC NNP VBD DT NNS IN NNP .\nLast week , GM 's most high-profile investor , billionaire Kirk Kerkorian , urged the company to consider joining forces with Nissan and Renault .\tJJ NN , NNP POS JJS JJ NN , NN NNP NNP , VBD DT NN TO VB VBG NNS IN NNP CC NNP .\nNews reports say Nissan and Renault may each acquire 10 percent of GM 's stock .\tNN NNS VBP NNP CC NNP MD DT VB CD NN IN NNP POS NN .\nGeneral Motors is the world 's largest automobile manufacturer , but it is plagued with declining sales , high manufacturing costs , and steep losses .\tNNP NNPS VBZ DT NN POS JJS NN NN , CC PRP VBZ VBN IN VBG NNS , JJ NN NNS , CC JJ NNS .\nGM is shedding factories and workers in an effort to restore profitability .\tNNP VBZ VBG NNS CC NNS IN DT NN TO VB NN .\nNissan overcame serious problems and became profitable again under the leadership of Carlos Ghosn .\tNNP VBD JJ NNS CC VBD JJ RB IN DT NN IN NNP NNP .\nSome analysts say he could speed GM toward efficiency and profit .\tDT NNS VBP PRP MD VB NNP IN NN CC NN .\nPakistani police in southwestern Baluchistan province have arrested at least 11 people in connection with a deadly bomb blast on a passenger bus late Sunday .\tJJ NN IN JJ NNP NN VBP VBN IN JJS CD NNS IN NN IN DT JJ NN NN IN DT NN NN JJ NNP .\nThe provincial police chief , Chaudhry Mohammed Yaqoob , says the suspects are all ethnic Baluch tribesmen and were arrested overnight in a series of raids in Quetta , the capital of Baluchistan province .\tDT JJ NN NN , NNP NNP NNP , VBZ DT NNS VBP DT JJ NNP NNS CC VBD VBN RB IN DT NN IN NNS IN NNP , DT NN IN NNP NN .\nLocal authorities say they have also taken the driver of the bus into custody for questioning .\tJJ NNS VBP PRP VBP RB VBN DT NN IN DT NN IN NN IN VBG .\nThirteen people were killed and 20 wounded when the bomb ripped through the bus carrying about 50 people from Quetta to the eastern city of Lahore .\tCD NNS VBD VBN CC CD VBN WRB DT NN VBD IN DT NN VBG IN CD NNS IN NNP TO DT JJ NN IN NNP .\nNo one claimed responsibility for the bomb .\tDT NN VBD NN IN DT NN .\nBut the police chief blamed Baluch tribal militants who have stepped up their insurgency seeking greater autonomy and more compensation for the region 's gas and other natural resources .\tCC DT NN NN VBD NNP JJ NNS WP VBP VBN RP PRP$ NN VBG JJR NN CC JJR NN IN DT NN POS NN CC JJ JJ NNS .\nBolivia 's education minister Felix Patzi is calling on the contry 's school teachers to end their nationwide strike and return to work .\tNNP POS NN NN NNP NNP VBZ VBG IN DT NN POS NN NNS TO VB PRP$ JJ NN CC VB IN NN .\nThe teachers began their two-day strike on Tuesday , along with Bolivia 's transporation workers .\tDT NNS VBD PRP$ JJ NN IN NNP , IN IN NNP POS NN NNS .\nPatzi is the reason for the teachers ' work stoppage .\tNNP VBZ DT NN IN DT NNS POS NN NN .\nThey oppose his plan to revise the nation 's school curriculum , and they are calling for his resignation .\tPRP VBP PRP$ NN TO VB DT NN POS NN NN , CC PRP VBP VBG IN PRP$ NN .\nBolivian drivers walked off their jobs over fines for traffic violations and the high price of diesel fuel .\tJJ NNS VBD RP PRP$ NNS IN NNS IN NN NNS CC DT JJ NN IN NN NN .\nReports say confrontations between striking and working drivers got violent in some places , with activists stopping cars and damaging them .\tNNS VBP NNS IN JJ CC VBG NNS VBD JJ IN DT NNS , IN NNS VBG NNS CC VBG PRP .\nEthiopia 's prime minister and opposition leaders have met to discuss for the first time together disputed parliamentary elections in May .\tNNP POS JJ NN CC NN NNS VBP VBN TO VB IN DT JJ NN RB VBD JJ NNS IN NNP .\nFriday 's talks between Prime Minister Meles Zenawi and the two main opposition groups were set up to ease tensions sparked by the elections .\tNNP POS NNS IN NNP NNP NNP NNP CC DT CD JJ NN NNS VBD VBN RP TO VB NNS VBN IN DT NNS .\nShortly after the vote , security forces opened fire on anti-government protesters , killing at least 36 people .\tRB IN DT NN , NN NNS VBD NN IN JJ NNS , VBG IN JJS CD NNS .\nA top official in one opposition party says the talks included the possibility of establishing a coalition government and opposition access to state-run media .\tDT JJ NN IN CD NN NN VBZ DT NNS VBD DT NN IN VBG DT NN NN CC NN NN TO JJ NNS .\nThe discussions are expected to continue .\tDT NNS VBP VBN TO VB .\nThe latest election results show Mr. Zenawi 's ruling party and its allies have won 263 seats , 11 short of the majority needed to form a new government .\tDT JJS NN NNS VBP NNP NNP POS VBG NN CC PRP$ NNS VBP VBN CD NNS , CD NN IN DT NN VBN TO VB DT JJ NN .\nOpposition groups have won 170 seats .\tNN NNS VBP VBN CD NNS .\nOpposition leaders have rejected the results and called for new elections in 299 constituencies .\tNN NNS VBP VBN DT NNS CC VBN IN JJ NNS IN CD NNS .\nIndonesia sent a dozen bird flu samples to a World Health Organization laboratory this week , the first time it has done so it more than a year .\tNNP VBD DT NN NN NN NNS TO DT NNP NNP NNP NN DT NN , DT JJ NN PRP VBZ VBN RB PRP JJR IN DT NN .\nHealth Ministry officials say they shipped the samples to the U.S. Centers for Disease Control and Prevention in the southeastern U.S. city of Atlanta , Georgia .\tNNP NNP NNS VBP PRP VBD DT NNS TO DT NNP NNPS IN NNP NNP CC NNP IN DT JJ NNP NN IN NNP , NNP .\nIndonesia stopped sending its virus samples to WHO because it wanted assurances that poor and developing nations would be allowed access to affordable vaccines developed from their samples .\tNNP VBD VBG PRP$ NN NNS IN NNP IN PRP VBD NNS IN JJ CC JJ NNS MD VB VBN NN TO JJ NNS VBD IN PRP$ NNS .\nThe government has been in talks with WHO to create a new virus-sharing system .\tDT NN VBZ VBN IN NNS IN NNP TO VB DT JJ JJ NN .\nHealth Ministry officials say the samples sent to the CDC laboratory are for diagnostic purposes only .\tNNP NNP NNS VBP DT NNS VBN TO DT NNP NN VBP IN JJ NNS RB .\nIndonesia is the most affected nation from the outbreak of the lethal H5N1 form of bird flu with 105 deaths .\tNNP VBZ DT RBS JJ NN IN DT NN IN DT JJ NNP NN IN NN NN IN CD NNS .\nEritrea has rejected a suggestion that fresh talks be held to resolve its border dispute with Ethiopia .\tNNP VBZ VBN DT NN IN JJ NNS VB VBN TO VB PRP$ NN NN IN NNP .\nIn a statement issued late Monday , the Eritrean Foreign Ministry said the dispute was legally concluded when an independent commission issued a ruling on the border in 2002 .\tIN DT NN VBN JJ NNP , DT JJ NNP NNP VBD DT NN VBD RB VBN WRB DT JJ NN VBD DT NN IN DT NN IN CD .\nIt said any new talks or initiatives on the subject would be ' utterly irrelevant . '\tPRP VBD DT JJ NNS CC NNS IN DT NN MD VB `` RB JJ . ``\nLast week , parties that witnessed the peace agreement Eritrea and Ethiopia signed in 2000 said the border commission should hold a meeting with the two countries and work out technical details on marking the border .\tJJ NN , NNS WDT VBD DT NN NN NNP CC NNP VBD IN CD VBD DT NN NN MD VB DT NN IN DT CD NNS CC VB RP JJ NNS IN VBG DT NN .\nThe physical demarcation has been delayed because of Ethiopia 's refusal to accept the commission 's ruling .\tDT JJ NN VBZ VBN VBN IN IN NNP POS NN TO VB DT NN POS NN .\nA frustrated Eritrea imposed travel restrictions on U.N. peacekeepers watching the border last year , and expelled Western members of the U.N. staff .\tDT JJ NN VBD NN NNS IN NNP NNS VBG DT NN JJ NN , CC VBD JJ NNS IN DT NNP NN .\nThe U.N. mission says the military situation along the border remains tense .\tDT NNP NN VBZ DT JJ NN IN DT NN VBZ JJ .\nTurkish health officials say three more people have tested positive for the deadly H5N1 strain of bird flu .\tJJ NN NNS VBP CD JJR NNS VBP VBN JJ IN DT JJ NNP NN IN NN NN .\nOfficials said Sunday the three cases were discovered in the capital of Ankara .\tNNS VBD NNP DT CD NNS VBD VBN IN DT NN IN NNP .\nThey are the first human cases outside the far eastern Van province , where the disease killed a teenage brother and sister last week .\tPRP VBP DT JJ JJ NNS IN DT RB JJ NNP NN , WRB DT NN VBD DT NN NN CC NN JJ NN .\nA World Health Organization team is in Turkey to assess the government 's response to the disease .\tDT NNP NNP NNP NN VBZ IN NNP TO VB DT NN POS NN TO DT NN .\nThe WHO says all evidence so far shows the virus has come from sick birds and not through human contact .\tDT NNP VBZ DT NN RB RB VBZ DT NN VBZ VBN IN JJ NNS CC RB IN JJ NN .\nThe H5N1 virus has killed more than 70 people in Southeast Asia and China since 2003 .\tDT NNP NN VBZ VBN JJR IN CD NNS IN NNP NNP CC NNP IN CD .\nThe WHO is assuring people they can not catch bird flu from eating properly cooked poultry and eggs .\tDT NNP VBZ VBG NNS PRP MD RB VB NN NN IN VBG RB VBN NN CC NNS .\nWHO spokesman Ian Simpson tells VOA that thorough cooking will kill the virus .\tNNP NN NNP NNP VBZ NNP IN JJ NN MD VB DT NN .\nHe also advises people to carefully clean food preparation areas .\tPRP RB VBZ NNS TO RB VB NN NN NNS .\nA two-day meeting of the African Union in Addis Ababa is focusing on how to disarm Rwandan rebels in the eastern part of the Democratic Republic of Congo .\tDT JJ NN IN DT NNP NNP IN NNP NNP VBZ VBG IN WRB TO VB JJ NNS IN DT JJ NN IN DT JJ NNP IN NNP .\nThere are up to 14 thousand ethnically Hutu rebels in the region , who stage attacks against Rwanda 's government and destabilize local communities in the DRC .\tEX VBP RB TO CD CD RB NNP NNS IN DT NN , WP VBP NNS IN NNP NNS NN CC VBP JJ NNS IN DT NNP .\nThe rebels , called Interahamwe , are blamed for the 1994 genocide in Rwanda against minority Tutsi and moderate Hutu .\tDT NNS , VBD NNP , VBP VBN IN DT CD NN IN NNP IN NN NNP CC JJ NNP .\nThe presidents of the DRC and Rwanda have agreed to allow the African Union to coordinate a solution using AU troops .\tDT NNS IN DT NNP CC NNP VBP VBN TO VB DT NNP NNP TO VB DT NN VBG NNP NNS .\nDesmond Orjiako is the spokesman for the Africa Union in Addis .\tNNP NNP VBZ DT NN IN DT NNP NNP IN NNP .\nHe told English to Africa reporter William Eagle that the AU is considering a number of possibilities - including sending in troops to work alongside UN peacekeepers or the Congolese military , or going in alone\tPRP VBD NNP TO NNP NN NNP NNP IN DT NNP VBZ VBG DT NN IN NNS ; VBG VBG IN NNS TO VB IN NNP NNS CC DT JJ NN , CC VBG IN RB\nIranian President Mahmoud Ahmadinejad said Iran will not hold any further talks with world powers on its controversial nuclear program .\tJJ NNP NNP NNP VBD NNP MD RB VB DT JJ NNS IN NN NNS IN PRP$ JJ JJ NN .\nMr. Ahmadinejad told a news conference in Tehran Monday Iran will only agree to discussions with major powers about cooperating in managing global problems .\tNNP NNP VBD DT NN NN IN NNP NNP NNP MD RB VB TO NNS IN JJ NNS IN VBG IN VBG JJ NNS .\nHe said Iran will not participate in talks about nuclear issues outside the framework of the U.N. nuclear agency .\tPRP VBD NNP MD RB VB IN NNS IN JJ NNS IN DT NN IN DT NNP JJ NN .\nSix world powers have offered Iran a package of incentives to suspend uranium enrichment .\tCD NN NNS VBP VBN NNP DT NN IN NNS TO VB NN NN .\nWestern nations fear Iran will use the enrichment process to develop nuclear weapons .\tJJ NNS VBP NNP MD VB DT NN NN TO VB JJ NNS .\nTehran says its nuclear program is peaceful .\tNNP VBZ PRP$ JJ NN VBZ JJ .\nPresident Ahmadinejad said that if he is re-elected next month , he is ready to debate U.S. President Barack Obama at the United Nations in New York .\tNNP NNP VBD IN IN PRP VBZ VBN JJ NN , PRP VBZ JJ TO VB NNP NNP NNP NNP IN DT NNP NNPS IN NNP NNP .\nMr. Obama has said he wants a dialogue with Iran to persuade it that developing nuclear weapons is not in the Iranian interest .\tNNP NNP VBZ VBN PRP VBZ DT NN IN NNP TO VB PRP IN VBG JJ NNS VBZ RB IN DT JJ NN .\nAn international press freedom group has asked U.N. Secretary-General Ban Ki-moon to pressure Iran into halting the executions of two Iranian journalists .\tDT JJ NN NN NN VBZ VBN NNP NNP NNP NNP TO VB NNP IN VBG DT NNS IN CD JJ NNS .\nReporters Without Borders said in a news release Tuesday that it wrote to Mr. Ban urging him to try and help the Kurdish journalists , Adnan Hassanpour and Abdolvahed ' Hiva ' Botimar , who both wrote for the magazine Asou before it was banned in 2005 .\tNNPS NNP NNPS VBD IN DT NN NN NNP IN PRP VBD TO NNP NNP VBG PRP TO VB CC VB DT JJ NNS , NNP NNP CC NNP `` NNP `` NNP , WP DT VBD IN DT NN NNP IN PRP VBD VBN IN CD .\nThe two were sentenced to death in July on charges of being ' enemies of God . '\tDT CD VBD VBN TO NN IN NNP IN NNS IN VBG `` NNS IN NNP . ``\nThe European Union , which opposes the death penalty in all cases , has called on Iran not to carry out the death sentences .\tDT NNP NNP , WDT VBZ DT NN NN IN DT NNS , VBZ VBN IN NNP RB TO VB RP DT NN NNS .\nThe EU said it is particularly troubled by the repression of Iranians who try to freely express opinions , especially those in minority Arab and Kurd regions .\tDT NNP VBD PRP VBZ RB VBN IN DT NN IN NNS WP VBP TO RB VB NNS , RB DT IN NN JJ CC JJ NNS .\nChinese activists say the government has paid compensation to the mother of a 15-year-old boy who died in police custody days after the 1989 Tiananmen Square protests .\tJJ NNS VBP DT NN VBZ VBN NN TO DT NN IN DT JJ NN WP VBD IN NN NN NNS IN DT CD NNP NNP NNS .\nThey say the Chinese government paid the mother of Zhou Guocong more than $ 8,700 ( 70,000 yuan ) in so-called hardship assistance .\tPRP VBP DT JJ NN VBD DT NN IN NNP NNP JJR IN $ CD LRB CD NN RRB IN JJ NN NN .\nActivists say the payment is the first known time China has paid compensation to a relative of someone killed during the crackdown on the democracy movement .\tNNS VBP DT NN VBZ DT JJ VBN NN NNP VBZ VBN NN TO DT NN IN DT VBN IN DT NN IN DT NN NN .\nActivists say Zhou was detained by police in the southern city of Chengdu as part of a nationwide crackdown on democracy protests .\tNNS VBP NNP VBD VBN IN NNS IN DT JJ NN IN NNP IN NN IN DT JJ NN IN NN NNS .\nThe 1989 student-led pro-democracy demonstrations in Tiananmen Square were crushed by the Chinese military .\tDT CD JJ JJ NNS IN NNP NNP VBD VBN IN DT JJ NN .\nOther protests were held across China .\tJJ NNS VBD VBN IN NNP .\nA rocket was fired on the Afghan capital of Kabul Saturday as more than 600 delegates from Pakistan and Afghanistan held a third day of talks aimed at improving security and strengthening bilateral relations .\tDT NN VBD VBN IN DT JJ NN IN NNP NNP IN JJR IN CD NNS IN NNP CC NNP VBD DT JJ NN IN NNS VBN IN VBG NN CC VBG JJ NNS .\nInterior Ministry officials say the rocket landed in an open area , several kilometers from a high security zone where the meeting was being held .\tNNP NNP NNS VBP DT NN VBD IN DT JJ NN , JJ NNS IN DT JJ NN NN WRB DT NN VBD VBG VBN .\nNo damage or casualties have been reported .\tDT NN CC NNS VBP VBN VBN .\nThe four-day peace conference , or grand jirga , focuses on specific issues dividing the two countries .\tDT JJ NN NN , CC JJ NN , VBZ IN JJ NNS VBG DT CD NNS .\nMany Afghans expressed hope that the conference will help reduce violence in both countries .\tJJ NNS VBD NN IN DT NN MD VB VB NN IN DT NNS .\nPakistani President Pervez Musharraf is expected to attend the closing session on Sunday .\tJJ NNP NNP NNP VBZ VBN TO VB DT NN NN IN NNP .\nA second conference is planned for Pakistan at a later date .\tDT JJ NN VBZ VBN IN NNP IN DT JJ NN .\nThe international organization Doctors Without Borders is reporting that more than 900 people have died from cholera in Angola in just 10 weeks .\tDT JJ NN NNP NNP NNPS VBZ VBG IN JJR IN CD NNS VBP VBN IN NN IN NNP IN RB CD NNS .\nThe Angola country director for the group , Richard Veerman , said the outbreak is one of the worst ever in the southern African country , and has not yet reached its peak .\tDT NNP NN NN IN DT NN , NNP NNP , VBD DT NN VBZ CD IN DT JJS RB IN DT JJ JJ NN , CC VBZ RB RB VBN PRP$ NN .\nIn a statement released Thursday , the group said measures to halt the outbreak are grossly inefficient , and called on the Angolan government and international relief organizations to step up their efforts to halt the epidemic .\tIN DT NN VBN NNP , DT NN VBD NNS TO VB DT NN VBP RB JJ , CC VBD IN DT JJ NN CC JJ NN NNS TO VB RP PRP$ NNS TO VB DT NN .\nDoctors Without Borders says that on some days this week its doctors have seen almost 1,000 cases of cholera , and more than 30 deaths .\tNNS IN NNP VBZ IN IN DT NNS DT NN PRP$ NNS VBP VBN RB CD NNS IN NN , CC JJR IN CD NNS .\nThe organization has 10 treatment centers in Angola , and reports seeing 11,700 cases of the disease since February .\tDT NN VBZ CD NN NNS IN NNP , CC VBZ VBG CD NNS IN DT NN IN NNP .\nSix countries along the Mekong river have agreed to a three-year plan to fight human trafficking .\tCD NNS IN DT NNP NN VBP VBN TO DT JJ NN TO VB JJ NN .\nAuthorities from Cambodia , China , Laos , Burma , Thailand and Vietnam made the pledge Thursday at the conclusion of a three-day conference in Hanoi .\tNNS IN NNP , NNP , NNP , NNP , NNP CC NNP VBD DT NN NNP IN DT NN IN DT JJ NN IN NNP .\nIn a statement , the officials said they will work across borders to detect trafficking rings , recover victims and return them home , and prosecute offenders .\tIN DT NN , DT NNS VBD PRP MD VB IN NNS TO VB NN NNS , VB NNS CC VB PRP NN , CC VB NNS .\nNo estimates exist on how many people are trafficked each year in the Mekong region , but the United Nations Children 's Fund believes some 2,00,000 people have been trafficked across the entire Asia-Pacific region .\tDT NNS VBP IN WRB JJ NNS VBP VBN DT NN IN DT NNP NN , CC DT NNP NNP NNP POS NNP VBZ DT CD NNS VBP VBN VBN IN DT JJ JJ NN .\nMost victims are children and women .\tJJS NNS VBP NNS CC NNS .\nIraqi police say gunmen have attacked a convoy belonging to Iraqi President Jalal Talabani , killing at least six of his bodyguards and wounding as many as 15 others .\tJJ NNS VBP NNS VBP VBN DT NN VBG TO JJ NNP NNP NNP , VBG IN JJ CD IN PRP$ NNS CC VBG IN JJ IN CD NNS .\nEarly reports say the president was not in the convoy when the attack occurred about 90 kilometers south of Kirkuk .\tRB NNS VBP DT NN VBD RB IN DT NN WRB DT NN VBD IN CD NNS RB IN NNP .\nThe Associated Press quotes police as saying the security detail was returning cars from Iraq 's Kurdish north to Baghdad when gunmen opened fire .\tDT NNP NNP VBZ NN IN VBG DT NN NN VBD VBG NNS IN NNP POS JJ NN TO NNP WRB NNS VBD NN .\nIn other developments , Iraqi police say they have found the bodies of 36 men dumped in a river southeast of Baghdad .\tIN JJ NNS , JJ NNS VBP PRP VBP VBN DT NNS IN CD NNS VBN IN DT NN NN IN NNP .\nDetails are sketchy , but initial reports say the men were found in their underwear , each with a single bullet wound to the head .\tNNS VBP JJ , CC JJ NNS VBP DT NNS VBD VBN IN PRP$ NN , DT IN DT JJ NN NN TO DT NN .\nThe identities of the men and the motive behind the killings remain unclear .\tDT NNS IN DT NNS CC DT NN IN DT NNS VBP JJ .\nA crowd in Bangladesh has beaten eight pirates to death after they boarded a river boat and tried to rob passengers .\tDT NN IN NNP VBZ VBN CD NNS TO NN IN PRP VBD DT NN NN CC VBD TO VB NNS .\nAuthorities say at least a dozen pirates boarded the ferry on the Jamuna river , northwest of the capital , Dhaka .\tNNS VBP IN JJS DT NN NNS VBD DT NN IN DT NNP NN , NN IN DT NN , NNP .\nBut police on the ferry challenged the bandits , and passengers chased them when they jumped overboard to flee .\tCC NNS IN DT NN VBD DT NNS , CC NNS VBD PRP WRB PRP VBD NN TO VB .\nSeveral pirates escaped , but the others were caught and beaten .\tJJ NNS VBD , CC DT NNS VBD VBN CC VBN .\nEight died from their injuries .\tCD VBD IN PRP$ NNS .\nAmerican speedskater Chris Witty has dropped out of the women 's 1,500-meter race to end her Olympic career after two disappointing performances at the Turin Winter Olympics .\tJJ NN NNP NNP VBZ VBN IN IN DT NNS POS JJ NN TO VB PRP$ JJ NN IN CD JJ NNS IN DT NNP NNP NNPS .\nWitty was a three-time medalist competing in her fourth Winter Games .\tNNP VBD DT JJ NN VBG IN PRP$ JJ NNP NNPS .\nBut she placed last of the 28 skaters who finished the 500-meter event .\tCC PRP VBD JJ IN DT CD NNS WP VBD DT JJ NN .\nWitty was 27th in Sunday 's 1,000-meter race .\tNNP VBD JJ IN NNP POS JJ NN .\nWitty 's training was hampered by a groin injury she sustained in December at a World Cup meet in Turin .\tNNP POS NN VBD VBN IN DT NN NN PRP VBD IN NNP IN DT NNP NNP VB IN NNP .\nShe also was having problems with her hip .\tPRP RB VBD VBG NNS IN PRP$ NN .\nThe 30-year-old Witty carried the American flag at the Turin opening ceremonies .\tDT JJ NNP VBD DT JJ NN IN DT NNP NN NNS .\nHer 1,000-meter world record ( 0.051655093 ) set while winning gold in the 1,000-meter race at the 2002 Salt Lake City Games still stands .\tPRP$ JJ NN NN LRB CD RRB VBN IN VBG NN IN DT JJ NN IN DT CD NNP NNP NNP NNPS RB VBZ .\nShe also won silver and bronze medals at the 1998 Nagano Games .\tPRP RB VBD NN CC NN NNS IN DT CD NNP NNPS .\nRights groups have criticized Egypt for allegedly continuing to detain up to 2,400 people in the investigation into last October 's Taba Hilton hotel bombing .\tNNS NNS VBP VBN NNP IN RB VBG TO VB RP TO CD NNS IN DT NN IN JJ NNP POS NNP NNP NN NN .\nU.S.-based Human Right Watch says that some of the detainees have been tortured and all have been held some 16 weeks without communication with lawyers or their families .\tJJ NNP NNP NNP VBZ IN DT IN DT NNS VBP VBN VBN CC DT VBP VBN VBN DT CD NNS IN NN IN NNS CC PRP$ NNS .\nDuring a news conference with local rights groups in Cairo Tuesday , Human Rights Watch said Egyptian officials have not confirmed the mass detentions in northern Sinai , but they have defended such tactics by citing methods used against terrorism suspects by the United States and Israel .\tIN DT NN NN IN JJ NNS NNS IN NNP NNP , NNP NNP NNP VBD JJ NNS VBP RB VBN DT NN NNS IN JJ NNP , CC PRP VBP VBN JJ NNS IN VBG NNS VBN IN NN NNS IN DT NNP NNPS CC NNP .\nThe attacks last October on the Taba Hilton and two other resorts in the Sinai killed 35 people and wounded more than 100 , mostly Egyptian and Israeli tourists .\tDT NNS JJ NNP IN DT NNP NNP CC CD JJ NNS IN DT NNP VBD CD NNS CC VBD JJR IN CD , RB JJ CC JJ NNS .\nThe top U.N. envoy to Sudan , Jan Pronk , says he is horrified by ongoing violence in Darfur and called on the government to stop the killing .\tDT JJ NNP NN TO NNP , NNP NNP , VBZ PRP VBZ VBN IN JJ NN IN NNP CC VBN IN DT NN TO VB DT NN .\nIn Khartoum Wednesday , Mr. Pronk said he saw evidence of widespread atrocities during his tour of Darfur last week .\tIN NNP NNP , NNP NNP VBD PRP VBD NN IN JJ NNS IN PRP$ NN IN NNP JJ NN .\nHe specifically mentioned Labado , a village in South Darfur , the scene of recent fighting between rebels and government forces .\tPRP RB VBD NNP , DT NN IN NNP NNP , DT NN IN JJ NN IN NNS CC NN NNS .\nMr. Pronk said he was ' horrified ' by what he had seen there - burned villages and destroyed water wells - and described a pattern of attacks on civilians by unidentified militias .\tNNP NNP VBD PRP VBD `` VBN `` IN WP PRP VBD VBN EX : VBN NNS CC VBD NN NNS : CC VBD DT NN IN NNS IN NNS IN JJ NNS .\nMr. Pronk 's comments came two days after a a special U.N. report concluded that while no genocide had taken place in Darfur , Sudanese government forces and allied Arab militias had committed widespread killings , rapes , and other atrocities that warranted prosecution by the International Criminal Court .\tNNP NNP POS NNS VBD CD NNS IN DT DT JJ NNP NN VBD IN IN DT NN VBD VBN NN IN NNP , JJ NN NNS CC JJ JJ NNS VBD VBN JJ NNS , NNS , CC JJ NNS WDT VBD NN IN DT NNP NNP NNP .\nU.S. and Iraqi forces Monday battled insurgents for a third day near the Syrian border , in a push U.S. commanders say is aimed at cutting off the flow of weapons and fighters into Iraq 's population centers .\tNNP CC JJ NNS NNP VBD NNS IN DT JJ NN IN DT JJ NN , IN DT NN NNP NNS VBP VBZ VBN IN VBG RP DT NN IN NNS CC NNS IN NNP POS NN NNS .\nU.S. authorities say one Marine has been killed in the fighting at Husaybah .\tNNP NNS VBP CD NN VBZ VBN VBN IN DT NN IN NNP .\nA CNN reporter with the coalition force quotes a Marine commander as saying between 60 and 80 insurgents have been killed .\tDT NNP NN IN DT NN NN VBZ DT NN NN IN VBG IN CD CC CD NNS VBP VBN VBN .\nAnother Marine told the network about 180 military-age males have been detained for questioning .\tDT NN VBD DT NN IN CD JJ NNS VBP VBN VBN IN VBG .\nA U.S. statement says the coalition force is clearing the town of 30,000 people house-by-house , and says insurgents have planted homemade bombs throughout the area .\tDT NNP NN VBZ DT NN NN VBZ VBG DT NN IN CD NNS NN , CC VBZ NNS VBP VBN JJ NNS IN DT NN .\nElsewhere , at least nine people , including six Iraqi police officers , have been killed in a suicide bombing in south Baghdad .\tRB , IN JJS CD NNS , VBG CD JJ NNS NNS , VBP VBN VBN IN DT NN VBG IN JJ NNP .\nSeparately , at least four people were killed and six others wounded when a mortar shell exploded in east Baghdad .\tRB , IN JJS CD NNS VBD VBN CC CD NNS VBD WRB DT NN NN VBD IN JJ NNP .\nInternational donors have pledged an additional $ 580 million in assistance for earthquake relief efforts in Pakistan .\tJJ NNS VBP VBN DT JJ $ CD CD IN NN IN NN NN NNS IN NNP .\nTop United Nations relief official Jan Egeland said the pledges came at a donor meeting in Geneva .\tJJ NNP NNPS NN NN NNP NNP VBD DT NNS VBD IN DT NN NN IN NNP .\nBut officials said it was not clear how much money was intended for emergency relief aid , and how much was for long-term reconstruction efforts .\tCC NNS VBD PRP VBD RB JJ WRB JJ NN VBD VBN IN NN NN NN , CC WRB RB VBD IN JJ NN NNS .\nEarlier , U.N. Secretary-General Kofi Annan appealed for help to prevent a second wave of deaths .\tRB , NNP NNP NNP NNP VBD IN NN TO VB DT JJ NN IN NNS .\nOfficials have warned that thousands of people may die if they do not receive aid before key supply routes are blocked by winter snow and freezing temperatures .\tNNS VBP VBN IN NNS IN NNS MD VB IN PRP VBP RB VB NN IN JJ NN NNS VBP VBN IN NN NN CC VBG NNS .\nThe United States has pledged $ 156 million for humanitarian aid , reconstruction and relief operations by American military personnel .\tDT NNP NNP VBZ VBN $ CD CD IN JJ NN , NN CC NN NNS IN JJ JJ NNS .\nThe death toll in Pakistan now stands at more than 54,000 people , and officials say rebuilding damaged areas will cost $ 5 billion .\tDT NN NN IN NNP RB VBZ IN JJR IN CD NNS , CC NNS VBP VBG VBN NNS MD VB $ CD CD .\nOfficials in Georgia 's breakaway republic of Abkhazia have delayed announcing the results from Sunday 's presidential election .\tNNS IN NNP POS JJ NN IN NNP VBP VBN VBG DT NNS IN NNP POS JJ NN .\nCentral Election Commission chief Sergei Smyr said Monday that a slowdown in the delivery of ballots from some districts would hold up a scheduled announcement of the official results .\tNNP NNP NNP NN NNP NNP VBD NNP IN DT NN IN DT NN IN NNS IN DT NNS MD VB RP DT VBN NN IN DT JJ NNS .\nMr. Smyr said results posted Sunday on a web site that purported to be the commission 's official site were fraudulent .\tNNP NNP VBD NNS VBD NNP IN DT NN NN WDT VBD TO VB DT NN POS JJ NN VBD JJ .\nBefore the vote , Prime Minister Raul Khadjimba was considered the leading contender among five candidates .\tIN DT NN , NNP NNP NNP NNP VBD VBN DT VBG NN IN CD NNS .\nAbkhaz power company chief Sergei Bagapsh was thought to be his most serious opponent .\tNNP NN NN JJ NNP NNP VBD VBN TO VB PRP$ RBS JJ NN .\nMr. Smyr said Mr. Bagapsh and another candidate have alleged voting irregularities that may have to be investigated .\tNNP NNP VBD NNP NNP CC DT NN VBP VBN NN NNS WDT MD VB TO VB VBN .\nAbkhazia declared itself independent of Georgia in 1993 and has since been led by President Vladislav Ardzinba .\tNNP VBD PRP JJ IN NNP IN CD CC VBZ IN VBN VBN IN NNP NNP NNP .\nAuthorities in Tbilisi say the election lacks legitimacy .\tNNS IN NNP VBP DT NN VBZ NN .\nDozens of armed militants briefly took control of Palestinian government buildings in the Gaza Strip Saturday to demand jobs .\tNNS IN JJ NNS RB VBD NN IN JJ NN NNS IN DT NNP NNP NNP TO VB NNS .\nWitnesses and security sources say members of the Al-Aqsa Martyrs Brigade , an armed wing of the Fatah movement , occupied several offices in central Gaza .\tNNS CC NN NNS VBP NNS IN DT NNP NNP NNP , DT JJ NN IN DT NNP NN , VBD JJ NNS IN JJ NNP .\nSeparately , gunmen protesting the death of a police officer set up a roadblock at Gaza 's border crossing with Egypt , threatening to prevent officials from passing .\tRB , NNS VBG DT NN IN DT NN NN VBD RP DT NN IN NNP POS NN VBG IN NNP , VBG TO VB NNS IN VBG .\nThe police officer had been recently killed in a family feud .\tDT NN NN VBD VBN RB VBN IN DT NN NN .\nLate Friday , gunmen in Gaza released three British hostages who had been seized earlier in the week in Rafah .\tRB NNP , NNS IN NNP VBD CD JJ NNS WP VBD VBN VBN RBR IN DT NN IN NNP .\nA previously unknown group , Mujahadeen Brigades Jerusalem Branch , claimed responsibility for the kidnapping .\tDT RB JJ NN , NNP NNP NNP NNP , VBD NN IN DT NN .\nAlso Friday , Palestinian police briefly occupied the Gaza-Egypt border crossing at Rafah to protest the killing of the officer , forcing the crossing to temporarily close .\tRB NNP , JJ NN RB VBD DT JJ NN VBG IN NNP TO VB DT NN IN DT NN , VBG DT VBG TO RB VB .\nAuthorities in the northwestern Indian state of Rajasthan say at least 86 people were killed late Friday when a truck packed with pilgrims veered off a mountainous road and plunged into a gorge .\tNNS IN DT JJ JJ NN IN NNP VBP IN JJS CD NNS VBD VBN JJ NNP WRB DT NN VBN IN NNS VBD RP DT JJ NN CC VBD IN DT NN .\nThe authorities say at least 60 others were injured when the driver lost control of the vehicle on a curve in a remote part of the rural state .\tDT NNS VBP IN JJS CD NNS VBD VBN WRB DT NN VBD NN IN DT NN IN DT NN IN DT JJ NN IN DT JJ NN .\nOfficials say the truck , usually used for hauling large containers , was carrying more than 149 pilgrims to a temple fair at the time of the crash .\tNNS VBP DT NN , RB VBN IN VBG JJ NNS , VBD VBG JJR IN CD NNS TO DT NN NN IN DT NN IN DT NN .\nLocal police are investigating the incident .\tJJ NNS VBP VBG DT NN .\nThe state government says it will pay the families of the dead about $ 1,200 each in compensation .\tDT NN NN VBZ PRP MD VB DT NNS IN DT JJ IN $ CD DT IN NN .\nFatal road accidents are common in India , due mainly to poorly maintained roads and vehicles , and disregard for traffic rules .\tJJ NN NNS VBP JJ IN NNP , JJ RB TO RB VBN NNS CC NNS , CC NN IN NN NNS .\nPresident Bush has stepped up pressure on members of his own party in Congress to pass an intelligence reform bill before it adjourns for the year .\tNNP NNP VBZ VBN RP NN IN NNS IN PRP$ JJ NN IN NNP TO VB DT NN NN NN IN PRP VBZ IN DT NN .\nIn his weekly radio address Saturday , Mr. Bush called on lawmakers to create a national intelligence director with full budget authority over the nation 's intelligence agencies .\tIN PRP$ JJ NN NN NNP , NNP NNP VBD IN NNS TO VB DT JJ NN NN IN JJ NN NN IN DT NN POS NN NNS .\nThe opposition has come from key leaders within the president 's own Republican party , who object to portions of the bill that would overhaul 15 spy agencies .\tDT NN VBZ VBN IN JJ NNS IN DT NN POS JJ JJ NN , WP VBP TO NNS IN DT NN WDT MD VB CD NN NNS .\nThose objections focus on preserving the military chain of command and the flow of intelligence to troops in the field .\tDT NNS VBP IN VBG DT JJ NN IN NN CC DT NN IN NN TO NNS IN DT NN .\nAnalysts say the bill would likely pass in its current form with support from Democrats if a vote were held .\tNNS VBP DT NN MD RB VB IN PRP$ JJ NN IN NN IN NNPS IN DT NN VBD VBN .\nEmbracing many of the recommendations from the independent commission investigating the September 11 attacks , the president said the legislation presents a clear and sensible path towards needed intelligence reforms .\tVBG NN IN DT NNS IN DT JJ NN VBG DT NNP CD NNS , DT NN VBD DT NN VBZ DT JJ CC JJ NN IN VBN NN NNS .\nAl-Qaida has claimed responsibility for attacks earlier this month on security and intelligence buildings in Yemen 's south that left at least three people dead .\tNNP VBZ VBN NN IN NNS RBR DT NN IN NN CC NN NNS IN NNP POS NN WDT VBD IN JJS CD NNS JJ .\nThe militant group 's regional wing , known as Al Qaida in the Arabian Peninsula , said in an Internet statement Friday the attacks were in retaliation for the killing of at least one militant fighter in Yemen 's southern Abyan province .\tDT JJ NN POS JJ NN , VBN IN NNP NNP IN DT NNP NNP , VBD IN DT NNP NN NNP DT NNS VBD IN NN IN DT NN IN IN JJS CD JJ NN IN NNP POS JJ NNP NN .\nOn July 14 , gunmen on motorcycles using mortars and rocket-propelled grenades opened fire on people inside the two buildings in the provincial capital , Zinjibar .\tIN NNP CD , NNS IN NNS VBG NNS CC JJ NNS VBD NN IN NNS IN DT CD NNS IN DT JJ NN , NNP .\nAfter the assault and subsequent clashes with police and guards , the attackers fled .\tIN DT NN CC JJ NNS IN NNS CC NNS , DT NNS VBD .\nAl-Qaida was also blamed for an attack last month on security headquarters in southern Yemen that left 11 people dead .\tNNP VBD RB VBN IN DT NN JJ NN IN NN NNS IN JJ NNP WDT VBD CD NNS JJ .\nDemocratic Republic of Congo troops who are apparently upset over a pay dispute fired on a United Nations base in the country 's eastern region .\tNNP NNP IN NNP NNS WP VBP RB VBN IN DT NN NN VBN IN DT NNP NNP NN IN DT NN POS JJ NN .\nU.N. officials say 27 soldiers have been arrested for allegedly firing on a U.N. peacekeepers ' base in North Kivu province .\tNNP NNS VBP CD NNS VBP VBN VBN IN RB VBG IN DT NNP NNS POS NN IN NNP NNP NN .\nNo casualties were reported .\tDT NNS VBD VBN .\nUnited Nations officials say the Congolese troops are upset because they have not been paid for several months .\tNNP NNP NNS VBP DT JJ NNS VBP VBN IN PRP VBP RB VBN VBN IN JJ NNS .\nA top Syrian official says Israel is responsible for a car bomb blast in Damascus Monday that wounded three people .\tDT JJ JJ NN VBZ NNP VBZ JJ IN DT NN NN NN IN NNP NNP IN VBD CD NNS .\nInterior Minister Ghazi Kanaan said Israeli intelligence or a group affiliated with it had targeted the vehicle of a Palestinian member of the radical group Hamas .\tNNP NNP NNP NNP VBD JJ NN CC DT NN VBN IN PRP VBD VBN DT NN IN DT JJ NN IN DT JJ NN NNP .\nThe minister said the man and a family member were unharmed because they got out of the vehicle just before the blast .\tDT NN VBD DT NN CC DT NN NN VBD JJ IN PRP VBD IN IN DT NN RB IN DT NN .\nSyrian officials called the attack Monday afternoon an ' act of sabotage . '\tJJ NNS VBD DT NN NNP NN DT `` NN IN NN . ``\nPolice quickly removed the damaged vehicle from the scene In September , a senior Hamas member was killed in when a bomb blew up his car , also in Damascus .\tNNS RB VBD DT JJ NN IN DT NN IN NNP , DT JJ NNP NN VBD VBN IN WRB DT NN VBD RP PRP$ NN , RB IN NNP .\nSyria blamed Israel for that attack .\tNNP VBD NNP IN DT NN .\nPakistan 's main government coalition partner says it will split from the country 's ruling party alliance and join the opposition .\tNNP POS JJ NN NN NN VBZ PRP MD VB IN DT NN POS VBG NN NN CC VB DT NN .\nA spokesman for the Muttahida Qaumi Movement , or MQM , announced Sunday that it would sit with the opposition in both the National Assembly and the Senate .\tDT NN IN DT NNP NNP NNP , CC NNP , VBD NNP IN PRP MD VB IN DT NN IN DT DT NNP NNP CC DT NNP .\nThe move follows last week 's resignation by two of the party 's federal cabinet ministers .\tDT NN VBZ JJ NN POS NN IN CD IN DT NN POS JJ NN NNS .\nThe MQM previously has been at odds with the government over tax reforms , increased fuel prices and efforts to improve security .\tDT NNP RB VBZ VBN IN NNS IN DT NN IN NN NNS , JJ NN NNS CC NNS TO VB NN .\nIt is not clear if the move will collapse the U.S.-allied government , which previously held a small majority in parliament .\tPRP VBZ RB JJ IN DT NN MD VB DT JJ NN , WDT RB VBD DT JJ NN IN NN .\nPakistan 's Prime Minister Yusuf Raza Gilani says his government will not fall , despite the planned MQM move .\tNNP POS NNP NNP NNP NNP NNP VBZ PRP$ NN MD RB VB , IN DT JJ NNP NN .\nSaudi Arabia says it will send a delegation to Iraq next week to look into reopening its embassy , more than four years after the U.S.-led invasion of Iraq .\tNNP NNP VBZ PRP MD VB DT NN TO NNP JJ NN TO VB IN VBG PRP$ NN , JJR IN CD NNS IN DT JJ NN IN NNP .\nSaudi Foreign Minister Prince Saud al-Faisal said Tuesday the delegation will explore security concerns related to opening the diplomatic post .\tNNP NNP NNP NNP NNP NNP VBD NNP DT NN MD VB NN NNS VBN TO VBG DT JJ NN .\nHe first announced the plan last week during a visit by U.S. Secretary of State Condoleezza Rice .\tPRP RB VBD DT NN JJ NN IN DT NN IN NNP NNP IN NNP NNP NNP .\nRice welcomed the move as an important step .\tNNP VBD DT NN IN DT JJ NN .\nIraq re-opened its embassy in Saudi Arabia last February .\tNNP VBD PRP$ NN IN NNP NNP JJ NNP .\nSaudi Arabia is a Sunni Muslim country and Iraq has a Shi'ite majority population and a Shi'ite prime minister .\tNNP NNP VBZ DT NNP NNP NN CC NNP VBZ DT NNP NN NN CC DT JJ JJ NN .\nA pro-reformist Web site says Iran has barred former President Mohammad Khatami from leaving the country .\tDT JJ NNP NN VBZ NNP VBZ VBN JJ NNP NNP NNP IN VBG DT NN .\nThe Web site Parlemannews says Mr. Khatami was scheduled to depart Thursday night to attend a nuclear disarmament conference in Japan .\tDT NNP NN NNP VBZ NNP NNP VBD VBN TO VB NNP NN TO VB DT JJ NN NN IN NNP .\nThere was no immediate reaction from the Iranian government .\tEX VBD DT JJ NN IN DT JJ NN .\nMr. Khatami was a key supporter of defeated presidential candidate Mir Hossein Mousavi in June elections .\tNNP NNP VBD DT JJ NN IN VBN JJ NN NNP NNP NNP IN NNP NNS .\nOpposition leaders claim that President Mahmoud Ahmadinejad stole the vote .\tNN NNS VBP IN NNP NNP NNP VBD DT NN .\nThe Iranian government has carried out violent crackdowns on anti-government protests staged since the presidential election .\tDT JJ NN VBZ VBN RP JJ NNS IN JJ NNS VBN IN DT JJ NN .\nU.S. Secretary of State Hillary Clinton says the Obama administration has decided to engage directly with Burma 's military government , in an effort to push its military leaders toward democratic reform .\tNNP NNP IN NNP NNP NNP VBZ DT NNP NN VBZ VBN TO VB RB IN NNP POS JJ NN , IN DT NN TO VB PRP$ JJ NNS IN JJ NN .\nClinton told reporters at the United Nations Wednesday that the U.S. government still will use sanctions against Burma to try to influence its government .\tNNP VBD NNS IN DT NNP NNPS NNP IN DT NNP NN RB MD VB NNS IN NNP TO VB TO VB PRP$ NN .\nHowever , she said sanctions by themselves have not produced the results the United States has wanted .\tRB , PRP VBD NNS IN PRP VBP RB VBN DT NNS DT NNP NNPS VBZ VBN .\nShe said engagement versus sanctions is a FALSE choice , and that the Obama administration has decided to use both methods .\tPRP VBD NN IN NNS VBZ DT JJ NN , CC IN DT NNP NN VBZ VBN TO VB DT NNS .\nBurma has been under military rule since 1962 .\tNNP VBZ VBN IN JJ NN IN CD .\nThe opposition National League for Democracy won the last elections in 1990 , but the military government refused to acknowledge the results .\tDT NN NNP NNP IN NNP VBD DT JJ NNS IN CD , CC DT JJ NN VBD TO VB DT NNS .\nBurma 's opposition leader Aung San Suu Kyi has been in some form of detention for 14 of the past 20 years .\tNNP POS NN NN NNP NNP NNP NNP VBZ VBN IN DT NN IN NN IN CD IN DT JJ CD NNS .\nThe Summer Olympic Games could prove the winning ticket for foreign brands seeking access to China 's lucrative consumer market .\tDT NNP NNP NNPS MD VB DT NN NN IN JJ NNS VBG NN TO NNP POS JJ NN NN .\nCorporate sponsorship of the Beijing Games is booming , as companies seek visibility before 1.3 billion Chinese and the world at large .\tJJ NN IN DT NNP NNPS VBZ JJ , IN NNS VBP NN IN CD CD NNS CC DT NN IN JJ .\nSam Beattie reports for VOA .\tNNP NNP VBZ IN NNP .\nAuthorities in Azerbaijan have inaugurated a NATO-funded project for reprocessing surplus rocket fuel dating back to Soviet times .\tNNS IN NNP VBP VBN DT JJ NN IN VBG NN NN NN VBG RB TO JJ NNS .\nThe project is being launched in Alyaty .\tDT NN VBZ VBG VBN IN NNP .\nIt involves the conversion of about 1,500 metric tons of fuel known as melange into fertilizer .\tPRP VBZ DT NN IN IN CD JJ NNS IN NN VBN IN NN IN NN .\nWarsaw Pact forces formerly used the fuel .\tNNP NNP NNS RB VBD DT NN .\nIt is considered hazardous to the environment .\tPRP VBZ VBN JJ TO DT NN .\nThe $ 2-million program will deal with fuel stored at two locations in Azerbaijan\tDT $ JJ NN MD VB IN NN VBN IN CD NNS IN NNP\nU.S. Republicans and Democrats in 16 states have picked the economy as the most important issue facing the country .\tNNP NNPS CC NNPS IN CD NNS VBP VBN DT NN IN DT RBS JJ NN VBG DT NN .\nA survey of ' Super Tuesday ' voters conducted by Edison Media Research and Mitofsky International for the Associated Press and television networks shows Democrats ranked the war in Iraq second on their list of issues of concern , with health care third .\tDT NN IN `` NNP NNP `` NNS VBN IN NNP NNP NNP CC NNP NNP IN DT NNP NNP CC NN NNS VBZ NNPS VBD DT NN IN NNP NN IN PRP$ NN IN NNS IN NN , IN NN NN NN .\nThe survey shows Republican voters ranked immigration as the second-most important issue after the economy , followed by the war in Iraq .\tDT NN VBZ JJ NNS VBD NN IN DT JJ JJ NN IN DT NN , VBN IN DT NN IN NNP .\nIn southern U.S. states in particular , issues such as the war in Iraq , taxes and religion were expected to weigh heavily with voters Tuesday .\tIN JJ NNP NNS IN JJ , NNS JJ IN DT NN IN NNP , NNS CC NN VBD VBN TO VB RB IN NNS NNP .\nVoters in western states were expected to focus on national issues such as the economy , as well as specific issues , such as the environment and energy .\tNNS IN JJ NNS VBD VBN TO VB IN JJ NNS JJ IN DT NN , RB RB IN JJ NNS , JJ IN DT NN CC NN .\nA fifth Venezuelan opposition party has pulled out of Sunday 's congressional elections , saying it is concerned the balloting will not be fair .\tDT JJ JJ NN NN VBZ VBN IN IN NNP POS JJ NNS , VBG PRP VBZ VBN DT NN MD RB VB JJ .\nThe New Era party has joined the opposition boycott , just days after the Democratic Action , Project Venezuela , Copei , and Justice First parties announced their withdrawal .\tDT NNP NNP NN VBZ VBN DT NN NN , RB NNS IN DT JJ NNP , NNP NNP , NNP , CC NNP NNP NNS VBD PRP$ NN .\nOpposition parties say they are boycotting the vote because the electoral council is biased .\tNN NNS VBP PRP VBP VBG DT NN IN DT JJ NN VBZ VBN .\nThey also say the electronic voting machines do not guarantee confidentiality .\tPRP RB VBP DT JJ NN NNS VBP RB VB NN .\nThe government said Friday the vote will go forward on Sunday as planned with the Organization of American States and the European Union observing the electoral process .\tDT NN VBD NNP DT NN MD VB RB IN NNP IN VBN IN DT NNP IN NNP NNPS CC DT NNP NNP VBG DT JJ NN .\nThe government statement also said the National Electoral Council has agreed to a set of 11 changes in response to opposition concerns .\tDT NN NN RB VBD DT NNP NNP NNP VBZ VBN TO DT NN IN CD NNS IN NN TO NN NNS .\nMeanwhile , U.S. State Department spokesman Sean McCormack has again denied any U.S. involvement in the withdrawals .\tRB , NNP NNP NNP NN NNP NNP VBZ RB VBN DT NNP NN IN DT NNS .\nBackers of a controversial referendum in Kazakhstan to extend President Nursultan Nazarbayev 's rule until the year 2020 say a majority of voters support the idea .\tNNS IN DT JJ NN IN NNP TO VB NNP NNP NNP POS NN IN DT NN CD VBP DT NN IN NNS VBP DT NN .\nIf the proposal is approved in a referendum , next year 's planned presidential election will not take place .\tIN DT NN VBZ VBN IN DT NN , JJ NN POS JJ JJ NN MD RB VB NN .\nSupporters of the proposal say they collected more than five million signatures from Kazakh voters who say they want Mr. Nazarbayev to extend his rule into third decade .\tNNS IN DT NN VBP PRP VBD JJR IN CD CD NNS IN JJ NNS WP VBP PRP VBP NNP NNP TO VB PRP$ NN IN JJ NN .\nThere are about nine million registered voters in Kazakhstan .\tEX VBP RB CD CD VBN NNS IN NNP .\nMr. Nazarbayev , who has been the country 's leader since 1989 , rejected the referendum plan earlier this month , saying he planned to contest the 2012 election .\tNNP NNP , WP VBZ VBN DT NN POS NN IN CD , VBD DT NN NN RBR DT NN , VBG PRP VBD TO NN DT CD NN .\nHe is not expected to face any serious challengers .\tPRP VBZ RB VBN TO VB DT JJ NNS .\nThe U.S. Embassy in Astana issued a statement welcoming the president 's decision to reject the referendum and urged others to avoid steps that would violate Kazakhstan 's constitution .\tDT NNP NNP IN NNP VBD DT NN VBG DT NN POS NN TO VB DT NN CC VBD NNS TO VB NNS WDT MD VB NNP POS NN .\nA Chinese Health Ministry official has warned that tens of millions of people could be infected with H1N1 influenza in China in the coming months , and that fatalities would be ' unavoidable ' .\tDT JJ NNP NNP NN VBZ VBN IN NNS IN NNS IN NNS MD VB VBN IN NNP NN IN NNP IN DT JJ NNS , CC IN NNS MD VB `` JJ `` .\nThe deputy director of the ministry 's health emergency office , Liang Wannian , made the comments to reporters Friday .\tDT NN NN IN DT NN POS NN NN NN , NNP NNP , VBD DT NNS TO NNS NNP .\nSo far , the world 's most populous nation has reported nearly 7,000 cases of the disease and no deaths .\tRB RB , DT NN POS RBS JJ NN VBZ VBN RB CD NNS IN DT NN CC DT NNS .\nMore than half of China 's reported cases have been detected since late last month .\tJJR IN NN IN NNP POS JJ NNS VBP VBN VBN IN RB JJ NN .\nOf those cases , nearly 95 percent originated in China , whereas the vast majority of cases reported from June to August originated overseas .\tIN DT NNS , RB CD NN VBN IN NNP , IN DT JJ NN IN NNS VBN IN NNP TO NNP VBD RB .\nChina says it will soon launch a nationwide vaccination program to prevent mass outbreaks of the virus .\tNNP VBZ PRP MD RB VB DT JJ NN NN TO VB JJ NNS IN DT NN .\nChina has suspended a dam project in the southwestern province of Sichuan and fired a local Communist Party official after large-scale demonstrations .\tNNP VBZ VBN DT NN NN IN DT JJ NN IN NNP CC VBD DT JJ NNP NNP NN IN JJ NNS .\nAt least one person was killed last month when tens of thousands of farmers in Hanyuan county protested construction of a hydroelectric dam that will flood 1,00,000 people out of their homes .\tIN JJS CD NN VBD VBN JJ NN WRB NNS IN NNS IN NNS IN NNP NN VBD NN IN DT JJ NN WDT MD VB CD NNS IN IN PRP$ NNS .\nThe protesters were dissatisfied with the compensation offered for residents ' relocation .\tDT NNS VBD VBN IN DT NN VBN IN NNS POS NN .\nThe local Communist Party said today that county party secretary Tan Zhengyu had been removed from his post earlier this month and replaced by a former deputy .\tDT JJ NNP NNP VBD NN IN NN NN NN NNP NNP VBD VBN VBN IN PRP$ NN RBR DT NN CC VBN IN DT JJ NN .\nThe central government also has sent a team to deal with the concerns of local residents .\tDT JJ NN RB VBZ VBN DT NN TO VB IN DT NNS IN JJ NNS .\nHowever , scores of riot police remain in the region .\tRB , NNS IN NN NNS VBP IN DT NN .\nA U.S. military officer has been charged with stealing nearly $ 7,00,000 of funds intended for humanitarian relief in Iraq and Afghanistan .\tDT NNP JJ NN VBZ VBN VBN IN VBG RB $ CD IN NNS VBN IN JJ NN IN NNP CC NNP .\nCaptain Michael Dung Nguyen is accused of stealing the money while on duty in Iraq , from April 2007 until last month .\tNNP NNP NNP NNP VBZ VBN IN VBG DT NN IN IN NN IN NNP , IN NNP CD IN JJ NN .\nNguyen was arrested after the U.S. Internal Revenue Service tracked large deposits made by Nguyen in U.S. banks .\tNNP VBD VBN IN DT NNP NNP NNP NNP VBD JJ NNS VBN IN NNP IN NNP NNS .\nThe army captain is charged with theft of government property , money laundering and illegally structuring financial transactions .\tDT NN NN VBZ VBN IN NN IN NN NN , NN NN CC RB VBG JJ NNS .\nA British-based mine clearing agency says two of its Afghan employees have been killed and six others wounded when a remote-controlled bomb tore through their vehicle in southern Afghanistan .\tDT JJ NN NN NN VBZ CD IN PRP$ JJ NNS VBP VBN VBN CC CD NNS VBD WRB DT JJ NN VBD IN PRP$ NN IN JJ NNP .\nHalo Trust regional director , Mohammad Ashraf , said Sunday 's blast occurred in the volatile southern Kandahar province , and that the wounded were rushed to nearby hospitals .\tNNP NNP JJ NN , NNP NNP , VBD NNP POS NN VBD IN DT JJ JJ NNP NN , CC IN DT VBN VBD VBN TO JJ NNS .\nAlso Sunday , in the same province , three Afghan soldiers were wounded in a similar roadside attack .\tRB NNP , IN DT JJ NN , CD JJ NNS VBD VBN IN DT JJ NN NN .\nWitnesses say several civilians were also injured in the explosion .\tNNS VBP JJ NNS VBD RB VBN IN DT NN .\nNo one has claimed responsibility for the blasts .\tDT NN VBZ VBN NN IN DT NNS .\nBut similar acts have been blamed on Taleban insurgents who have carried out a series of suicide attacks and ambushes against U.S.-led coalition forces , Afghan troops and aid and government workers .\tCC JJ NNS VBP VBN VBN IN NNP NNS WP VBP VBN RP DT NN IN NN NNS CC NNS IN JJ NN NNS , JJ NNS CC NN CC NN NNS .\nAs the price of gasoline continues to rise in the U.S. , more Americans are buying smaller , more fuel-efficient vehicles .\tIN DT NN IN NN VBZ TO VB IN DT NNP , RBR NNS VBP VBG JJR , RBR JJ NNS .\nOthers are holding on to their big cars , in hopes that gas prices will eventually go down .\tNNS VBP VBG IN TO PRP$ JJ NNS , IN NNS IN NN NNS MD RB VB RB .\nVOA 's Deborah Block has a report .\tNNP POS NNP NNP VBZ DT NN .\nHuman skulls and clothes found at a mass grave near Samawa Investigators have uncovered a mass grave in southern Iraq containing as many as 1,500 bodies .\tJJ NNS CC NNS VBN IN DT NN NN IN NNP NNS VBP VBN DT NN NN IN JJ NNP VBG RB JJ IN CD NNS .\nForensic experts say most of those buried at the site near the town of Samawa , about 300 kilometers south of Baghdad , are believed to be Kurds .\tJJ NNS VBP JJS IN DT VBN IN DT NN IN DT NN IN NNP , IN CD NNS RB IN NNP , VBP VBN TO VB NNPS .\nThey say the victims , many of them women and children , were apparently lined up in front of the 18 trenches and shot with AK-47 assault rifles .\tPRP VBP DT NNS , NN IN PRP NNS CC NNS , VBD RB VBN RP IN NN IN DT CD NNS CC VBN IN NN NN NNS .\nOfficials say the victims were most likely killed during the Anfal campaign of the late 1980s - a drive by Saddam Hussein 's regime to exterminate the Kurdish community of southern Kurdistan .\tNNS VBP DT NNS VBD RBS JJ VBN IN DT JJ NN IN DT JJ NNS IN DT NN IN NNP NNP POS NN TO VB DT JJ NN IN JJ NNP .\nAccording to international human rights groups , as many as 1,82,000 Kurdish civilians disappeared during 1988 alone .\tVBG TO JJ JJ NNS NNS , RB JJ IN CD NNP NNS VBD IN CD RB .\nThe housing crisis , the credit crunch and high gas prices may be hurting consumer confidence in the United States but the impact is not necessarily the same for everyone .\tDT NN NN , DT NN NN CC JJ NN NNS MD VB VBG NN NN IN DT NNP NNPS CC DT NN VBZ RB RB DT JJ IN DT .\nSome see a silver lining in a weak U.S. economy .\tDT VBP DT NN NN IN DT JJ NNP NN .\nDuring tough economic times , some businesses specialize in turning losses into profits .\tIN JJ JJ NNS , DT NNS VBP IN VBG NNS IN NNS .\nVOA 's Mil Arcega reports .\tNNP POS NNP NNP VBZ .\nTension is high in Lebanon as government supporters plan a mass rally in Beirut Wednesday to mark the second anniversary of the assassination of former Prime Minister Rafik Hariri .\tNNP VBZ JJ IN NNP IN NN NNS VBP DT JJ NN IN NNP NNP TO VB DT JJ NN IN DT NN IN JJ NNP NNP NNP NNP .\nThe rally is set to take place in central Beirut , near where anti-government protesters led by the Shi'ite militant group Hezbollah have been camped out since December .\tDT NN VBZ VBN TO VB NN IN JJ NNP , IN WRB JJ NNS VBN IN DT NNP JJ NN NNP VBP VBN VBN RP IN NNP .\nHezbollah has been trying to bring down the pro-Western government of Prime Minister Fuad Siniora .\tNNP VBZ VBN VBG TO VB RP DT JJ NN IN NNP NNP NNP NNP .\nTuesday , bomb blasts on two commuter buses northeast of Beirut killed three people and wounded 20 others .\tNNP , NN NNS IN CD NN NNS NN IN NNP VBD CD NNS CC VBD CD NNS .\nAnti-Syrian lawmakers in Lebanon 's parliament blamed the blasts on Syria and called for increased security along the Syrian border .\tJJ NNS IN NNP POS NN VBD DT NNS IN NNP CC VBN IN JJ NN IN DT JJ NN .\nSyria is also widely blamed for the February 14 , 2005 slaying of Rafik Hariri -- a charge Damascus denies .\tNNP VBZ RB RB VBN IN DT NNP CD , CD NN IN NNP NNP IN DT NN NNP VBZ .\nPro-government parties want Syria to stay out of Lebanese affairs and support an international investigation into the Hariri assassination .\tJJ NNS VBP NNP TO VB IN IN JJ NNS CC VB DT JJ NN IN DT NNP NN .\nA world Buddhist summit of more than 1,000 monks from around the globe has ended in Burma .\tDT NN NN NN IN JJR IN CD NNS IN IN DT NN VBZ VBN IN NNP .\nThe summit , which opened in the military-ruled southeast Asian nation on Thursday , attracted controversy because of the junta 's reported persecution of some monks and its detention of opposition leader Aung San Suu Kyi .\tDT NN , WDT VBD IN DT JJ JJ JJ NN IN NNP , VBD NN IN IN DT NN POS VBN NN IN DT NNS CC PRP$ NN IN NN NN NNP NNP NNP NNP .\nBurma alone sponsored the event after its main sponsor , Japan 's Nenbutsushu sect , boycotted the three-day meeting amid concerns over Burma 's human rights record .\tNNP RB VBD DT NN IN PRP$ JJ NN , NNP POS NNP NN , VBD DT JJ NN IN NNS IN NNP POS JJ NNS NN .\nHowever , the military government praised organizers of the conference and said it had contributed to world peace .\tRB , DT JJ NN VBD NNS IN DT NN CC VBD PRP VBD VBN TO NN NN .\nThe meeting included appearances by the prime ministers of Thailand , Sri Lanka and Laos , as well as a rare appearance by the head of Burma 's government , General Than Shwe .\tDT NN VBD NNS IN DT JJ NNS IN NNP , NNP NNP CC NNP , RB RB IN DT JJ NN IN DT NN IN NNP POS NN , NNP NNP NNP .\nCrude oil prices rose to fresh record highs Friday as traders speculated that reduced output from Nigeria will hamper efforts to produce fuel for the peak summer driving months in the United States .\tJJ NN NNS VBD TO JJ NN NNS NNP IN NNS VBD IN JJ NN IN NNP MD VB NNS TO VB NN IN DT JJ NN VBG NNS IN DT NNP NNPS .\nThe price of crude oil for future delivery was up more than two dollars , going as high as $ 126.2 a barrel .\tDT NN IN JJ NN IN JJ NN VBD RB JJR IN CD NNS , VBG RB JJ IN $ CD DT NN .\nThe price of crude oil has doubled in the past year , and is up more than seven percent just this week .\tDT NN IN JJ NN VBZ VBN IN DT JJ NN , CC VBZ RB JJR IN CD NN RB DT NN .\nMembers of the Organization of Petroleum Exporting Countries have said there is no need to increase oil output .\tNNS IN DT NNP IN NNP NNP NNPS VBP VBN EX VBZ DT NN TO VB NN NN .\nThey say high oil prices are due to the U.S. dollar 's decline in value , compared to other currencies , and surging investments in commodities .\tPRP VBP JJ NN NNS VBP JJ TO DT NNP NN POS NN IN NN , VBN TO JJ NNS , CC VBG NNS IN NNS .\nTwo more tropical depressions , one in the Atlantic Ocean and one in the Caribbean , have forecasters waiting to see if this year 's hurricane season will get its 18th named storm .\tCD JJR JJ NNS , CD IN DT NNP NNP CC CD IN DT NNP , VBP NNS VBG TO VB IN DT NN POS NN NN MD VB PRP$ JJ VBN NN .\nEarly Saturday , a slow-moving depression was reported to be about 1,000 kilometers west-southwest of the Cape Verde Islands .\tRB NNP , DT JJ NN VBD VBN TO VB IN CD NNS NN IN DT NNP NNP NNP .\nIts top winds were near 55 kilometers per hour , with some higher gusts .\tPRP$ JJ NNS VBD IN CD NNS IN NN , IN DT JJR NNS .\nAt the moment , forecasters do not expect it to pose a threat to land .\tIN DT NN , NNS VBP RB VB PRP TO VB DT NN TO NN .\nThe other storm was reported 175 kilometers southeast of Cozumel , Mexico , moving toward the west-northwest .\tDT JJ NN VBD VBN CD NNS NN IN NNP , NNP , VBG IN DT NN .\nMexico 's government has issued a tropical storm warning for the Yucatan Peninsula , with landfall expected by Sunday .\tNNP POS NN VBZ VBN DT JJ NN NN IN DT NNP NNP , IN NN VBN IN NNP .\nAlready this is the fourth-busiest Atlantic hurricane season since forecasters began keeping records in 1851 .\tRB DT VBZ DT JJ NNP NN NN IN NNS VBD VBG NNS IN CD .\nIndonesian police say Islamic militants in the country are running short of funds and are selling pre-paid phone cards to raise cash for operations .\tJJ NNS VBP JJ NNS IN DT NN VBP VBG RB IN NNS CC VBP VBG JJ NN NNS TO VB NN IN NNS .\nNational police chief General Sutanto says sources in Saudi Arabia had been getting money to the militants using a courier network , but that was broken up last year .\tJJ NN NN NNP NNP VBZ NNS IN NNP NNP VBD VBN VBG NN TO DT NNS VBG DT NN NN , CC DT VBD VBN RP JJ NN .\nWith money running out , police say the militants are earning as much as $ 500 a day selling phone cards .\tIN NN VBG RP , NNS VBP DT NNS VBP VBG RB JJ IN $ CD DT NN VBG NN NNS .\nPolice have said that the fact that the most recent terrorist attacks in Indonesia used small bombs carried in backpacks instead of larger car bombs was a sign the attackers were low on funds .\tNNS VBP VBN IN DT NN IN DT RBS JJ JJ NNS IN NNP VBD JJ NNS VBN IN NNS IN IN JJR NN NNS VBD DT NN DT NNS VBD JJ IN NNS .\nTribal clashes in drought-stricken central Kenya have killed at least 30 people .\tJJ NNS IN JJ JJ NNP VBP VBN IN JJS CD NNS .\nLocal authorities say cattle rustlers from the Pokot tribe attacked the Samburu tribe late Monday .\tJJ NNS VBP NNS NNS IN DT NNP NN VBD DT NNP NN JJ NNP .\nThe attackers killed at least 21 Samburu and made off with hundreds of cows .\tDT NNS VBD IN JJS CD NNP CC VBD RP IN NNS IN NNS .\nA local member of parliament , Raphael Letimalo , said some of those killed were children .\tDT JJ NN IN NN , NNP NNP , VBD DT IN DT VBN VBD NNS .\nPolice killed nine of the raiders in a shootout , and are combing the area for the other suspected raiders and the stolen livestock .\tNNS VBD CD IN DT NNS IN DT NN , CC VBP VBG DT NN IN DT JJ JJ NNS CC DT VBN NN .\nMuch of Kenya is suffering from a severe drought that has hurt farm production , killed livestock and led to shortages of food and water .\tNN IN NNP VBZ VBG IN DT JJ NN WDT VBZ VBN NN NN , VBN NN CC VBD TO NNS IN NN CC NN .\nThe U.N. World Food Program recently said that about 3.8 million Kenyans will not have enough food over the next months because of the drought .\tDT NNP NNP NNP NNP RB VBD IN IN CD CD NNS MD RB VB JJ NN IN DT JJ NNS IN IN DT NN .\nKenya 's government blames the food crisis on four straight years of lower-than-normal rainfall .\tNNP POS NN VBZ DT NN NN IN CD JJ NNS IN JJ NN .\nIran has rejected U.S. and European economic incentives offered in exchange for abandoning its nuclear enrichment activities , saying it will not bend to external pressure .\tNNP VBZ VBN NNP CC JJ JJ NNS VBN IN NN IN VBG PRP$ JJ NN NNS , VBG PRP MD RB VB TO JJ NN .\nThe Iranian response comes a day after Washington said it would drop its objections to Iran 's application to the World Trade Organization , WTO , and to the licensing of spare parts for Iranian civilian aircraft .\tDT JJ NN VBZ DT NN IN NNP VBD PRP MD VB PRP$ NNS TO NNP POS NN TO DT NNP NNP NNP , NNP , CC TO DT NN IN JJ NNS IN JJ JJ NN .\nA foreign ministry spokesman dismissed the offer Saturday saying restrictions against Tehran 's right to buy spare parts and join the WTO should never have been imposed in the first place .\tDT JJ NN NN VBD DT NN NNP VBG NNS IN NNP POS NN TO VB JJ NNS CC VB DT NNP MD RB VB VBN VBN IN DT JJ NN .\nIn a major policy shift , the Bush administration agreed to back European incentives , after Britain , France and Germany said they would support U.S. efforts to bring Iran before the U.N. Security Council if nuclear talks fail .\tIN DT JJ NN NN , DT NNP NN VBD TO VB JJ NNS , IN NNP , NNP CC NNP VBD PRP MD VB NNP NNS TO VB NNP IN DT NNP NNP NNP IN JJ NNS VBP .\nThe tiny Pacific island nation of Kiribati has designated an oceanic wilderness as the world 's largest protected marine reserve .\tDT JJ NNP NN NN IN NNP VBZ VBN DT JJ NN IN DT NN POS JJS JJ NN NN .\nThe Phoenix Islands Protected Area lies about halfway between Fiji and the U.S. island state of Hawaii , covering more than 4,10,000 square kilometers .\tDT NNP NNP NNP NNP VBZ IN NN IN NNP CC DT NNP NN NN IN NNP , VBG JJR IN CD JJ NNS .\nIt is one of the Earth 's last intact coral archipelagoes , and boasts a vast biological diversity .\tPRP VBZ CD IN DT NNP POS JJ JJ JJ NNS , CC VBZ DT JJ JJ NN .\nResearch conducted by Kiribati and the U.S.-based New England Aquarium has discovered more than 120 species of coral and 520 species of fish , some of them new to science .\tNN VBN IN NNP CC DT JJ NNP NNP NNP VBZ VBN JJR IN CD NNS IN JJ CC JJ NNS IN NN , DT IN PRP JJ TO NN .\nThe area also supports a large population of birds and sea turtles and contains several undersea reefs .\tDT NN RB VBZ DT JJ NN IN NNS CC NN NNS CC VBZ JJ NN NNS .\nKiribati established the reserve to protect it from overfishing .\tNNP VBD DT NN TO VB PRP IN VBG .\nParts of the archipelago are already suffering from the effects of warming seas due to climate change .\tNNS IN DT NN VBP RB VBG IN DT NNS IN NN NNS JJ TO NN NN .\nIraqi police say at least eight policemen were killed in separate insurgent attacks in Baghdad and the northern city of Kirkuk Tuesday .\tJJ NNS VBP IN JJS CD NNS VBD VBN IN JJ NN NNS IN NNP CC DT JJ NN IN NNP NNP .\nIn Kirkuk , insurgents ambushed a police patrol , killing four officers .\tIN NNP , NNS VBN DT NN NN , VBG CD NNS .\nHours afterwards , two more policemen died in a roadside bomb blast on the outskirts of the city .\tNNP RB , CD JJR NNS VBD IN DT NN NN NN IN DT NNS IN DT NN .\nIn Baghdad , at least two policemen were killed and several people were wounded when a car bomb exploded outside a restaurant popular with police officers .\tIN NNP , IN JJS CD NNS VBD VBN CC JJ NNS VBD VBN WRB DT NN NN VBD IN DT NN JJ IN NN NNS .\nMeanwhile , U.S. and Iraqi forces are continuing an operation against insurgents in western Iraq , despite calls from the country 's Sunni Arab leaders to halt such operations .\tRB , NNP CC JJ NNS VBP VBG DT NN IN NNS IN JJ NNP , IN NNS IN DT NN POS NNP NNP NNS TO VB JJ NNS .\nSunni leaders say halting such attacks in mostly Sunni areas will encourage Sunnis to participate in next month 's parliamentary elections .\tNNP NNS VBP VBG JJ NNS IN RB JJ NNS MD VB NNP TO VB IN JJ NN POS JJ NNS .\nPhysically challenged Kenyans face serious discrimination in their professional and personal lives .\tRB VBN NNS VBP JJ NN IN PRP$ JJ CC JJ NNS .\nBut some Kenyans with disabilities have risen above seemingly insurmountable odds to pursue their dreams .\tCC DT NNS IN NNS VBP VBN IN RB JJ NNS TO VB PRP$ NNS .\nVOA 's Cathy Majtenyi caught up with a member of Uwezo Mix Dance Theatre and a young man studying graphic art and she filed this report .\tNNP POS NNP NNP VBD RP IN DT NN IN NNP NNP NNP NNP CC DT JJ NN VBG JJ NN CC PRP VBD DT NN .\nThe White House says North Korean officials have given no indication that Pyongyang is considering returning to the six-nation talks on halting its nuclear weapons program .\tDT NNP NNP VBZ JJ JJ NNS VBP VBN DT NN IN NNP VBZ VBG VBG TO DT JJ NNS IN VBG PRP$ JJ NNS NN .\nState Department officials met with North Korean diplomats in New York Monday .\tNNP NNP NNS VBD IN JJ JJ NNS IN NNP NNP NNP .\nA spokesman for President Bush said Tuesday that the diplomats said they were committed to the six-party talks , but gave no indication that Pyongyang is ready to return to the negotiations .\tDT NN IN NNP NNP VBD NNP IN DT NNS VBD PRP VBD VBN TO DT JJ NNS , CC VBD DT NN IN NNP VBZ JJ TO VB TO DT NNS .\nThe spokesman , Scott McClellan , said the White House remains hopeful that North Korea will return to the talks soon , without preconditions .\tDT NN , NNP NNP , VBD DT NNP NNP VBZ JJ IN NNP NNP MD VB TO DT NNS RB , IN NNS .\nThe New York meeting was the second such direct meeting between U.S. and North Korean officials in less than a month .\tDT NNP NNP NN VBD DT JJ JJ JJ NN IN NNP CC JJ JJ NNS IN JJR IN DT NN .\nEgypt attempted to colonize the region of southern Sudan by establishing the province of Equatoria in the 1870s .\tNNP VBD TO VB DT NN IN JJ NNP IN VBG DT NN IN NNP IN DT NNS .\nIslamic Mahdist revolutionaries overran the region in 1885 , but in 1898 a British force was able to overthrow the Mahdist regime .\tNNP NNP VBZ JJ DT NN IN CD , CC IN CD DT JJ NN VBD JJ TO VB DT NNP NN .\nAn Anglo-Egyptian Sudan was established the following year with Equatoria being the southernmost of its eight provinces .\tDT JJ NN VBD VBN DT JJ NN IN NNP VBG DT NN IN PRP$ CD NNS .\nThe isolated region was largely left to itself over the following decades , but Christian missionaries converted much of the population and facilitated the spread of English .\tDT JJ NN VBD RB VBN TO PRP IN DT VBG NNS , CC NNP NNS VBD NN IN DT NN CC VBD DT NN IN NNP .\nWhen Sudan gained its independence in 1956 , it was with the understanding that the southerners would be able to participate fully in the political system .\tWRB NNP VBD PRP$ NN IN CD , PRP VBD IN DT NN IN DT NNS MD VB JJ TO VB RB IN DT JJ NN .\nWhen the Arab Khartoum government reneged on its promises , a mutiny began that led to two prolonged periods of conflict ( 1955 - 1972 and 1983 - 2005 ) in which perhaps 2.5 million people died - mostly civilians - due to starvation and drought .\tWRB DT JJ NNP NN VBD IN PRP$ NNS , DT NN VBD DT VBD TO CD JJ NNS IN NN LRB CD IN CD CC CD IN CD RRB IN WDT RB CD CD NNS VBD : RB NNS IN JJ TO NN CC NN .\nOngoing peace talks finally resulted in a Comprehensive Peace Agreement , signed in January 2005 .\tVBG NN NNS RB VBD IN DT NNP NNP NNP , VBN IN NNP CD .\nAs part of this agreement the south was granted a six-year period of autonomy to be followed by a referendum on final status .\tIN NN IN DT NN DT NN VBD VBN DT JJ NN IN NN TO VB VBN IN DT NN IN JJ NN .\nThe result of this referendum , held in January 2011 , was a vote of 98 % in favor of secession .\tDT NN IN DT NN , VBN IN NNP CD , VBD DT NN IN CD NN IN NN IN NN .\nIndependence was attained on 9 July 2011 .\tNN VBD VBN IN CD NNP CD .\nTourism is the primary economic activity , accounting for 80 % of GDP and employment .\tNNP VBZ DT JJ JJ NN , NN IN CD NN IN NN CC NN .\nThe islands hosted 2.4 million visitors in 2008 .\tDT NNS VBD CD CD NNS IN CD .\nThe manufacturing sector consists of petroleum refining , rum distilling , textiles , electronics , pharmaceuticals , and watch assembly .\tDT NN NN VBZ IN NN NN , NN NN , NNS , NNS , NNS , CC NN NN .\nOne of the world 's largest petroleum refineries is at Saint Croix .\tCD IN DT NN POS JJS NN NNS VBZ IN NNP NNP .\nThe agricultural sector is small , with most food being imported .\tDT JJ NN VBZ JJ , IN JJS NN VBG VBN .\nInternational business and financial services are small but growing components of the economy .\tNNP NN CC JJ NNS VBP JJ CC JJ NNS IN DT NN .\nThe islands are vulnerable to substantial damage from storms .\tDT NNS VBP JJ TO JJ NN IN NNS .\nThe government is working to improve fiscal discipline , to support construction projects in the private sector , to expand tourist facilities , to reduce crime , and to protect the environment .\tDT NN VBZ VBG TO VB JJ NN , TO VB NN NNS IN DT JJ NN , TO VB NN NNS , TO VB NN , CC TO VB DT NN .\nBy terms of the 1960 Treaty of Establishment that created the independent Republic of Cyprus , the UK retained full sovereignty and jurisdiction over two areas of almost 254 square kilometers - Akrotiri and Dhekelia .\tIN NNS IN DT CD NNP IN NNP WDT VBD DT JJ NNP IN NNP , DT NNP VBD JJ NN CC NN IN CD NNS IN RB CD NN NNS , NNP CC NNP .\nThe larger of these is the Dhekelia Sovereign Base Area , which is also referred to as the Eastern Sovereign Base Area .\tDT JJR IN DT VBZ DT NNP NNP NNP NNP , WP VBZ RB VBN TO IN DT NNP NNP NNP NNP .\nLithuanian lands were united under MINDAUGAS in 1236 ; over the next century , through alliances and conquest , Lithuania extended its territory to include most of present-day Belarus and Ukraine .\tJJ NNS VBD VBN IN NNP IN CD ; IN DT JJ NN , IN NNS CC NN , NNP VBD PRP$ NN TO VB JJS IN JJ NNP CC NNP .\nBy the end of the 14th century Lithuania was the largest state in Europe .\tIN DT NN IN DT JJ NN NNP VBD DT JJS NN IN NNP .\nAn alliance with Poland in 1386 led the two countries into a union through the person of a common ruler .\tDT NN IN NNP IN CD VBD DT CD NNS IN DT NN IN DT NN IN DT JJ NN .\nIn 1569 , Lithuania and Poland formally united into a single dual state , the Polish-Lithuanian Commonwealth .\tIN CD , NNP CC NNP RB VBD IN DT JJ JJ NN , DT JJ NN .\nThis entity survived until 1795 when its remnants were partitioned by surrounding countries .\tDT NN VBD IN CD WRB PRP$ NNS VBD VBN IN VBG NNS .\nLithuania regained its independence following World War I but was annexed by the USSR in 1940 - an action never recognized by the US and many other countries .\tNNP VBD PRP$ NN VBG NNP NNP NNP CC VBD VBN IN DT NNP IN CD IN DT NN RB VBN IN DT NNP CC JJ JJ NNS .\nOn 11 March 1990 , Lithuania became the first of the Soviet republics to declare its independence , but Moscow did not recognize this proclamation until September of 1991 ( following the abortive coup in Moscow ) .\tIN CD NNP CD , NNP VBD DT NN IN DT JJ NNS TO VB PRP$ NN , CC NNP VBD RB VB DT NN IN NNP IN CD LRB VBG DT JJ NN IN NNP RRB .\nThe last Russian troops withdrew in 1993 .\tDT JJ JJ NNS VBD IN CD .\nLithuania subsequently restructured its economy for integration into Western European institutions ; it joined both NATO and the EU in the spring of 2004 .\tNNP RB VBD PRP$ NN IN NN IN JJ JJ NNS ; PRP VBD DT NNP CC DT NNP IN DT NN IN CD .\nSuccess of the economy hinges upon seasonal variations in agriculture , tourism , and construction activity as well as remittance inflows .\tNN IN DT NN VBZ IN JJ NNS IN NN , NN , CC NN NN RB RB IN NN NNS .\nMuch of the workforce is employed in banana production and tourism , but persistent high unemployment has prompted many to leave the islands .\tNN IN DT NN VBZ VBN IN NN NN CC NN , CC JJ JJ NN VBZ VBN JJ TO VB DT NNS .\nThis lower-middle-income country is vulnerable to natural disasters - tropical storms wiped out substantial portions of crops in 1994 , 1995 , and 2002 .\tDT JJ NN VBZ JJ TO JJ NNS IN JJ NNS VBD RP JJ NNS IN NNS IN CD , CD , CC CD .\nIn 2008 , the islands had more than 2,00,000 tourist arrivals , mostly to the Grenadines , a drop of nearly 20 % from 2007 .\tIN CD , DT NNS VBD JJR IN CD NN NNS , RB TO DT NNP , DT NN IN RB CD NN IN CD .\nSaint Vincent is home to a small offshore banking sector and has moved to adopt international regulatory standards .\tNNP NNP VBZ NN TO DT JJ JJ NN NN CC VBZ VBN TO VB JJ JJ NNS .\nThe government 's ability to invest in social programs and respond to external shocks is constrained by its high public debt burden , which was over 90 % of GDP at the end of 2010 .\tDT NN POS NN TO VB IN JJ NNS CC VB TO JJ NNS VBZ VBN IN PRP$ JJ JJ NN NN , WDT VBD IN CD NN IN NN IN DT NN IN CD .\nFollowing the global downturn , St. Vincent and the Grenadines saw an economic decline in 2009 , after slowing since 2006 , when GDP growth reached a 10-year high of nearly 7 % .\tVBG DT JJ NN , NNP NNP CC DT NNP VBD DT JJ NN IN CD , IN VBG IN CD , WRB NN NN VBD DT JJ NN IN RB CD NN .\nThe GONSALVES administration is directing government resources to infrastructure projects , including a new international airport that is expected to be completed in 2011 .\tDT NNP NN VBZ VBG NN NNS TO NN NNS , VBG DT JJ JJ NN WDT VBZ VBN TO VB VBN IN CD .\nA MAN , very much annoyed with a Flea , caught him at last , and said , ' Who are you who dare to feed on my limbs , and to cost me so much trouble in catching you ? '\tDT NN , RB JJ JJ IN DT NN , VBD PRP IN JJ , CC VBD , `` WP VBP PRP WP VBP TO VB IN PRP$ NNS , CC TO VB PRP RB RB NN IN VBG PRP . ``\nThe Flea replied , ' O my dear sir , pray spare my life , and destroy me not , for I can not possibly do you much harm . '\tDT NNP VBD , `` NNP PRP$ JJ NN , VB VB PRP$ NN , CC VB PRP RB , IN PRP MD RB RB VB PRP RB VB . ``\nThe Man , laughing , replied , ' Now you shall certainly die by mine own hands , for no evil , whether it be small or large , ought to be tolerated . '\tDT NN , VBG , VBD , `` RB PRP MD RB VB IN JJ JJ NNS , IN DT NN , IN PRP VB JJ CC JJ , MD TO VB VBN . ``\nA Tortoise desired to change its place of residence , so he asked an Eagle to carry him to his new home , promising her a rich reward for her trouble .\tDT NN VBD TO VB PRP$ NN IN NN , IN PRP VBD DT NN TO VB PRP TO PRP$ JJ NN , VBG PRP$ DT JJ NN IN PRP$ NN .\nThe Eagle agreed and seizing the Tortoise by the shell with her talons soared aloft .\tDT NN VBD CC VBG DT NN IN DT NN IN PRP$ NNS VBD RB .\nOn their way they met a Crow , who said to the Eagle : ' Tortoise is good eating . '\tIN PRP$ NN PRP VBD DT NN , WP VBD TO DT NN : `` NN VBZ JJ NN . ``\n' The shell is too hard , ' said the Eagle in reply .\t`` DT NN VBZ RB JJ , `` VBD DT NN IN RB .\n' The rocks will soon crack the shell , ' was the Crow 's answer ; and the Eagle , taking the hint , let fall the Tortoise on a sharp rock , and the two birds made a hearty meal of the Tortoise .\t`` DT NNS MD RB VB DT NN , `` VBD DT NN POS NN ; CC DT NN , VBG DT NN , VB VB DT NN IN DT JJ NN , CC DT CD NNS VBD DT JJ NN IN DT NN .\nNever soar aloft on an enemy 's pinions .\tRB VB RB IN DT NN POS NNS .\nTwo Thieves having stolen a Piano and being unable to divide it fairly without a remainder went to law about it and continued the contest as long as either one could steal a dollar to bribe the judge .\tCD NNS VBG VBN DT NN CC VBG JJ TO NN PRP RB IN DT NN VBD TO NN IN PRP CC VBD DT NN RB RB IN DT CD MD VB DT NN TO VB DT NN .\nWhen they could give no more an Honest Man came along and by a single small payment obtained a judgment and took the Piano home , where his daughter used it to develop her biceps muscles , becoming a famous pugiliste .\tWRB PRP MD VB DT JJR DT JJ NN VBD RB CC IN DT JJ JJ NN VBD DT NN CC VBD DT NNP NN , WRB PRP$ NN VBD PRP TO VB PRP$ NNS NNS , VBG DT JJ NN .\nThe smoke detector industry is covering up research showing more people are injured every year falling from ladders and stepstools while trying to replace smoke detector batteries than are injured in house fires .\tDT NN NN NN VBZ VBG RP NN VBG JJR NNS VBP VBN DT NN VBG IN NNS CC NNS IN VBG TO VB NN NN NNS IN VBP VBN IN NN NNS .\nTurkish security officials say Kurdish rebels killed eight soldiers in an attack on an army outpost in eastern Turkey Monday .\tJJ NN NNS VBP NNP NNS VBD CD NNS IN DT NN IN DT NN NN IN JJ NNP NNP .\nThey say several others were wounded when rebels rammed a vehicle into the post and threw a hand grenade in Tunceli province .\tPRP VBP JJ NNS VBD VBN WRB NNS VBD DT NN IN DT NN CC VBD DT NN NN IN NNP NN .\nOne attacker was killed in a shootout following the blast .\tCD NN VBD VBN IN DT NN VBG DT NN .\nAt least one other attacker escaped .\tIN JJS CD JJ NN VBD .\nOn Sunday , the Turkish military shelled a Kurdish rebel stronghold in northern Iraq .\tIN NNP , DT JJ NN VBD DT JJ NN NN IN JJ NNP .\nBut ground forces did not cross the border .\tCC NN NNS VBD RB VB DT NN .\nTurkey has been massing troops near the Iraqi border .\tNNP VBZ VBN VBG NNS IN DT JJ NN .\nBut U.S. Defense Secretary Robert Gates has warned Turkey against sending troops into northern Iraq to hunt down Kurdish rebels accused of carrying out terrorist attacks in Turkey .\tCC NNP NNP NNP NNP NNP VBZ VBN NNP IN VBG NNS IN JJ NNP TO VB RB JJ NNS VBN IN VBG RP JJ NNS IN NNP .\nThe Kurdistan Worker 's Party , or PKK , has been fighting for autonomy in Turkey 's mainly Kurdish southeast since 1984 .\tDT NNP NNP POS NNP , CC NNP , VBZ VBN VBG IN NN IN NNP POS RB JJ NN IN CD .\nThe United States , the European Union and Turkey classify the PKK as a terrorist group .\tDT NNP NNPS , DT NNP NNP CC NNP VBP DT NNP IN DT JJ NN .\nTurkey 's prime minister is appealing for national unity after unrest in Kurdish-majority areas of the country left at least 16 people dead in the past week .\tNNP POS JJ NN VBZ VBG IN JJ NN IN NN IN JJ NNS IN DT NN VBD IN JJS CD NNS JJ IN DT JJ NN .\nSpeaking to members of his political party , Recep Tayyip Erdogan Tuesday vowed not to give in to violence and to expand democratic reforms .\tVBG TO NNS IN PRP$ JJ NN , NNP NNP NNP NNP VBD RB TO VB IN TO NN CC TO VB JJ NNS .\nHe also rejected any dialogue with the main Kurdish political group , the Democratic Society Party , until it openly condemns the outlawed Kurdistan Workers Party , or PKK as a terrorist organization .\tPRP RB VBD DT NN IN DT JJ JJ JJ NN , DT NNP NNP NNP , IN PRP RB VBZ DT JJ NNP NNP NNP , CC NNP IN DT JJ NN .\nIn the past week , hundreds of Kurds have clashed with Turkish security forces in the country 's southeast .\tIN DT JJ NN , NNS IN NNS VBP VBN IN JJ NN NNS IN DT NN POS NN .\nThe unrest started last Tuesday in Diyarbakir after a funeral for 14 members of the PKK killed by the security forces .\tDT NN VBD JJ NNP IN NNP IN DT NN IN CD NNS IN DT NNP VBN IN DT NN NNS .\nThe United States has condemned the violence and called on all parties to exercise restraint .\tDT NNP NNPS VBZ VBN DT NN CC VBN IN DT NNS TO VB NN .\nThousands of demontrators have marched through the Nepalese capital , Kathmandu , to demand the restoration of democracy and the withdrawal of strict new media laws .\tNNS IN NNS VBP VBN IN DT JJ NN , NNP , TO VB DT NN IN NN CC DT NN IN JJ JJ NNS NNS .\nHuman rights activists , journalists , lawyers , teachers and students chanted slogans protesting restrictions on the media that allow the royal government to shut down newspapers and radio stations .\tJJ NNS NNS , NNS , NNS , NNS CC NNS VBD NNS VBG NNS IN DT NNS WDT VBP DT JJ NN TO VB RP NNS CC NN NNS .\nThe new laws also call for longer prison sentences for journalists convicted of defamation .\tDT JJ NNS RB VBP IN JJR NN NNS IN NNS VBN IN NN .\nCriticism of King Gyanendra and independent reporting on Nepal 's Maoist insurgency have been banned since the king seized absolute power on February 1 .\tNN IN NNP NNP CC JJ NN IN NNP POS NNP NN VBP VBN VBN IN DT NN VBD JJ NN IN NNP CD .\nThe Maoists have been fighting since 1996 to replace Nepal 's constitutional monarchy with a communist state .\tDT NNS VBP VBN VBG IN CD TO VB NNP POS JJ NN IN DT JJ NN .\nThe king says his move was necessary to quell the insurgency , which has claimed more than 11,000 lives .\tDT NN VBZ PRP$ NN VBD JJ TO VB DT NN , WDT VBZ VBN JJR IN CD NNS .\nThe White House says President George Bush will host a lunch next month with President-elect Barack Obama and all the living former American presidents .\tDT NNP NNP VBZ NNP NNP NNP MD VB DT NN JJ NN IN NNP NNP NNP CC PDT DT VBG JJ JJ NNS .\nThe White House said Wednesday Mr. Bush has invited his father , George H.W .\tDT NNP NNP VBD NNP NNP NNP VBZ VBN PRP$ NN , NNP NNP .\nBush , along with former Presidents Jimmy Carter and Bill Clinton , to the luncheon that is set for January 7 .\tNNP , IN IN JJ NNS NNP NNP CC NNP NNP , TO DT NN WDT VBZ VBN IN NNP CD .\nPresident Bush has made a smooth transition to the next administration a top priority as his presidency winds down .\tNNP NNP VBZ VBN DT JJ NN TO DT JJ NN DT JJ NN IN PRP$ NN VBZ RP .\nLast month , Mr. Bush and President-elect Obama held talks at the White House on major issues the incoming chief executive will face during his administration .\tJJ NN , NNP NNP CC NNP NNP VBD NNS IN DT NNP NNP IN JJ NNS DT JJ NN NN MD VB IN PRP$ NN .\nMr. Obama will be sworn into office on January 20 .\tNNP NNP MD VB VBN IN NN IN NNP CD .\nPakistan 's President Pervez Musharraf and visiting Japanese Prime Minister Junichiro Koizumi have met in Islamabad for talks on nuclear nonproliferation and economic issues .\tNNP POS NNP NNP NNP CC VBG JJ NNP NNP NNP NNP VBP VBN IN NNP IN NNS IN JJ NN CC JJ NNS .\nJapanese diplomats said Saturday the two leaders discussed Islamabad 's efforts to prevent leaks of Pakistani nuclear technology .\tJJ NNS VBD NNP DT CD NNS VBD NNP POS NNS TO VB NNS IN JJ JJ NN .\nInternational concerns over possible such transfers emerged after Pakistani nuclear scientist Abdul Qadeer Khan confessed last year to illegally selling nuclear technology to several countries , including Iran .\tJJ NNS IN JJ JJ NNS VBD IN JJ JJ NN NNP NNP NNP VBD JJ NN TO RB VBG JJ NN TO JJ NNS , VBG NNP .\nMr. Khan is currently under Pakistani investigation , but few details have been made public .\tNNP NNP VBZ RB IN JJ NN , CC JJ NNS VBP VBN VBN JJ .\nThe Associated Press quotes a Japanese official as saying Mr. Koizumi promised , as expected , a resumption of Japanese loans to Pakistan , ending a financial freeze imposed after Pakistan 's 1998 nuclear tests .\tDT NNP NNP VBZ DT JJ NN IN VBG NNP NNP VBD , IN VBN , DT NN IN JJ NNS TO NNP , VBG DT JJ NN VBN IN NNP POS CD JJ NNS .\nMr. Koizumi 's one-day visit to Pakistan comes after his stop for talks Friday in India .\tNNP NNP POS JJ NN TO NNP VBZ IN PRP$ NN IN NNS NNP IN NNP .\nAn official at Iran 's Interior Ministry says the estimated 1.5 million Afghan refugees illegally living in the country could face arrest and detention for up to five years .\tDT NN IN NNP POS NNP NNP VBZ DT JJ CD CD JJ NNS RB VBG IN DT NN MD VB NN CC NN IN RP TO CD NNS .\nHe says Iranian officials now have legal authority to begin moving unregistered refugees into detention camps with prison-like conditions .\tPRP VBZ JJ NNS RB VBP JJ NN TO VB VBG JJ NNS IN NN NNS IN JJ NNS .\nIran began expelling tens of thousands of Afghan immigrants last April by loading them on buses and dropping them off at the Iran-Afghanistan border .\tNNP VBD VBG NNS IN NNS IN JJ NNS JJ NNP IN VBG PRP IN NNS CC VBG PRP RP IN DT JJ NN .\nSeveral million Afghans fled to Iran after the Soviet invasion of Afghanistan almost 30 years ago and from subsequent fighting among Afghan factions .\tJJ CD NNS VBD TO NNP IN DT JJ NN IN NNP RB CD NNS RB CC IN JJ NN IN JJ NNS .\nIranian officials say the immigrants are causing a strain on the economy .\tJJ NNS VBP DT NNS VBP VBG DT NN IN DT NN .\nSince 2002 , the United Nations Refugee Agency has helped 8,00,000 Afghans in Iran return home .\tIN CD , DT NNP NNP NNP NNP VBZ VBN CD NNS IN NNP NN NN .\nBut in recent years the number of returnees has declined because of increasing violence in Afghanistan .\tCC IN JJ NNS DT NN IN NNS VBZ VBN IN IN VBG NN IN NNP .\nSome French lawmakers have boycotted a meeting with Libyan leader Moammar Gadhafi in protest against his country 's human rights record .\tDT JJ NNS VBP VBN DT NN IN JJ NN NNP NNP IN NN IN PRP$ NN POS JJ NNS NN .\nMembers of the Socialist Party and some from the ruling Union for a Popular Movement refused to attend Tuesday 's event at the National Assembly .\tNNS IN DT NNP NNP CC DT IN DT NN NNP IN DT NNP NNP VBD TO VB NNP POS NN IN DT NNP NNP .\nMr. Gadhafi began his visit to France on Monday and met with French President Nicholas Sarkozy .\tNNP NNP VBD PRP$ NN TO NNP IN NNP CC VBD IN JJ NNP NNP NNP .\nMr. Sarkozy says he asked Mr. Gadhafi to make progress on human rights .\tNNP NNP VBZ PRP VBD NNP NNP TO VB NN IN JJ NNS .\nBut the Libyan leader later denied that in an interview with French television .\tCC DT JJ NN RB VBD DT IN DT NN IN JJ NN .\nOn Monday , the two countries signed business deals worth billions of dollars , including Libya 's purchase of a civilian nuclear reactor and 21 Airbus planes .\tIN NNP , DT CD NNS VBD NN NNS JJ NNS IN NNS , VBG NNP POS NN IN DT JJ JJ NN CC CD NNP NNS .\nIt is Mr. Gadhafi 's first trip to France since 1973 .\tPRP VBZ NNP NNP POS JJ NN TO NNP IN CD .\nLibya was long-condemned for supporting terrorism , but its relations with the international community have improved since the country ended its nuclear weapons program in 2003 .\tNNP VBD JJ IN VBG NN , CC PRP$ NNS IN DT JJ NN VBP VBN IN DT NN VBD PRP$ JJ NNS NN IN CD .\nPakistan and Jordan have called for a quick withdrawal of Israeli forces from Lebanon and the creation of a Palestinian state .\tNNP CC NNP VBP VBN IN DT JJ NN IN JJ NNS IN NNP CC DT NN IN DT JJ NN .\nPakistan 's President Pervez Musharraf and Jordanian King Abdullah spoke to reporters after holding talks Tuesday in Islamabad .\tNNP POS NNP NNP NNP CC JJ NNP NNP VBD TO NNS IN VBG NNS NNP IN NNP .\nGeneral Musharraf said it is crucial to restore Lebanon 's sovereignty so that the root cause of the Middle East problems can be addressed .\tNNP NNP VBD PRP VBZ JJ TO VB NNP POS NN RB IN DT NN NN IN DT NNP NNP NNS MD VB VBN .\nKing Abdullah said a just and lasting peace in the Middle East can only be achieved by establishing an independent Palestinian state , living side-by-side with Israel .\tNNP NNP VBD DT RB CC JJ NN IN DT NNP NNP MD RB VB VBN IN VBG DT JJ JJ NN , VBG JJ IN NNP .\nHe urged the two sides to resume peace negotiations .\tPRP VBD DT CD NNS TO VB NN NNS .\nPakistan does not recognize Israel , and has condemned the Jewish state for attacking Lebanon after last month 's kidnapping of two Israeli soldiers by Hezbollah fighters .\tNNP VBZ RB VB NNP , CC VBZ VBN DT JJ NN IN VBG NNP IN JJ NN POS NN IN CD JJ NNS IN NNP NNS .\nPope John Paul says he is praying for victims of the Asian earthquakes and tidal waves , and is calling on members of the international community to mobilize assistance for victims of the calamity .\tNNP NNP NNP VBZ PRP VBZ VBG IN NNS IN DT JJ NNS CC JJ NNS , CC VBZ VBG IN NNS IN DT JJ NN TO VB NN IN NNS IN DT NN .\nSpeaking to Roman Catholic pilgrims in Vatican City , the pope said Sunday 's news from Southeast Asia has cast a pall of sadness over Christmas celebrations .\tVBG TO NNP NNP NNS IN NNP NNP , DT NN VBD NNP POS NN IN NNP NNP VBZ VBN DT NN IN NN IN NNP NNS .\nWhen treating people with Type Two Diabetes , doctors sometimes prescribe high doses of medications that lower blood sugar .\tWRB VBG NNS IN NNP NNP NNS , NNS RB VBP JJ NNS IN NNS IN VBP NN NN .\nThe American Diabetes Association recommends good control of blood sugars in order to reduce the risk of heart attacks .\tDT NNP NNP NNP VBZ JJ NN IN NN NNS IN NN TO VB DT NN IN NN NNS .\nBut recently part of a large clinical diabetes study was halted after researchers found an increased death rate among those taking higher doses of blood sugar lowering medication .\tCC RB NN IN DT JJ JJ NNS NN VBD VBN IN NNS VBD DT VBN NN NN IN DT VBG JJR NNS IN NN NN VBG NN .\nThe ACCORD trial , as it is called , is funded by several U.S. government agencies and the finding surprised many doctors .\tDT NNP NN , IN PRP VBZ VBN , VBZ VBN IN JJ NNP NN NNS CC DT NN VBD JJ NNS .\nThe surprise death rate has lead some U.S. physicians to push an uncommon diet as a way to lower blood sugar .\tDT NN NN NN VBZ JJ DT NNP NNS TO VB DT JJ NN IN DT NN TO JJR NN NN .\nVOA 's Shelley Schlender reports from Phoenix , Arizona .\tNNP POS NNP NNP VBZ IN NNP , NNP .\nThere appears to be growing support for a suggestion that voting in Iraq 's election , now scheduled for January 30 , be spread over a two to three-week period .\tEX VBZ TO VB VBG NN IN DT NN IN NN IN NNP POS NN , RB VBN IN NNP CD , VB VBN IN DT CD CC JJ NN .\nIn Baghdad Wednesday , the Interior Ministry said staggered voting would facilitate the work of international observers and guarantee the participation of all Iraqis .\tIN NNP NNP , DT NNP NNP VBD JJ NN MD VB DT NN IN JJ NNS CC VB DT NN IN DT NNS .\nMinistry officials also said it would allow for adequate security to be provided to voters and candidates .\tNN NNS RB VBD PRP MD VB IN JJ NN TO VB VBN TO NNS CC NNS .\nThe final decision lies with the independent Electoral Commission , not the government .\tDT JJ NN VBZ IN DT JJ NNP NNP , RB DT NN .\nIn Washington , the State Department said the details of the election are up to the Iraqis to decide , but the United States is currently operating under the assumption that elections will be held nationwide on January 30 .\tIN NNP , DT NNP NNP VBD DT NNS IN DT NN VBP RB TO DT NNS TO VB , CC DT NNP NNPS VBZ RB VBG IN DT NN IN NNS MD VB VBN JJ IN NNP CD .\nInsurgents in Iraq have carried out a series of attacks Tuesday north of Baghdad against the country 's security forces , killing at least 23 police and national guards .\tNNS IN NNP VBP VBN RP DT NN IN NNS NNP NN IN NNP IN DT NN POS NN NNS , VBG IN JJS CD NNS CC JJ NNS .\nEighteen policemen were among the dead .\tCD NNS VBD IN DT NN .\nAuthorities say a combination of gunmen and car bombs were responsible for the violence in and near the towns of Tikrit , Samarra , Balad and Baquba .\tNNS VBP DT NN IN NNS CC NN NNS VBD JJ IN DT NN IN CC IN DT NNS IN NNP , NNP , NNP CC NNP .\nIn Baghdad , officials say a senior National Guard officer survived an apparent assassination attempt when a car bomb exploded near his home .\tIN NNP , NNS VBP DT JJ NNP NNP NN VBD DT JJ NN NN WRB DT NN NN VBD IN PRP$ NN .\nAt least six guardsmen were wounded in the blast .\tIN JJS CD NNS VBD VBN IN DT NN .\nU.S. Brigadier General Jeffrey Hammond told reporters in Baghdad that the U.S. military in Iraq expects an escalation in attacks and assassination attempts ahead of the January 30 elections .\tNNP NNP NNP NNP NNP VBD NNS IN NNP IN DT NNP NN IN NNP VBZ DT NN IN NNS CC NN NNS RB IN DT NNP CD NNS .\nU.S. President Barack Obama and his wife , Michelle , spent a portion of the Christmas holidays visiting troops and their families at a Hawaii Marine base .\tNNP NNP NNP NNP CC PRP$ NN , NNP , VBD DT NN IN DT NNP NNS VBG NNS CC PRP$ NNS IN DT NNP NNP NN .\nThe Obamas visited the same military base last year during their holiday vacation in the president 's home state .\tDT NNP VBD DT JJ JJ NN JJ NN IN PRP$ NN NN IN DT NN POS NN NN .\nMr. Obama and the first lady are encouraging the public to support military communities , especially during the holidays when separation from family can be difficult .\tNNP NNP CC DT JJ NN VBP VBG DT NN TO VB JJ NNS , RB IN DT NNS WRB NN IN NN MD VB JJ .\nMrs. Obama says a ' care package ' or a simple ' thank you ' is an important gift to members of the military .\tNNP NNP VBZ DT `` NN NN `` CC DT JJ `` VB PRP `` VBZ DT JJ NN TO NNS IN DT NN .\nSudan 's army says it has killed at least 300 rebels in clashes this week , while losing more than 70 of its own troops .\tNNP POS NN VBZ PRP VBZ VBN IN JJS CD NNS IN NNS DT NN , IN VBG JJR IN CD IN PRP$ JJ NNS .\nSudanese state media on Saturday quoted General Al-Tayeb al-Musbah Osman as describing the fighting with the Darfur region 's Justice and Equality Movement .\tJJ NN NNS IN NNP VBD NNP NNP NNP NNP IN VBG DT NN IN DT NNP NN POS NN CC NN NN .\nThe Sudanese general said government forces destroyed rebels ' vehicles during the series of clashes .\tDT JJ NN VBD NN NNS VBD NNS POS NNS IN DT NN IN NNS .\nViolence in Darfur has increased since insurgent forces withdrew from peace talks in May .\tNN IN NNP VBZ VBN IN JJ NNS VBD IN NN NNS IN NNP .\nThe region has experienced seven years of war and instability since rebels took up arms in 2003 , accusing the government of neglecting the western region .\tDT NN VBZ VBN CD NNS IN NN CC NN IN NNS VBD RP NNS IN CD , VBG DT NN IN VBG DT JJ NN .\nThe United Nations says fighting and related violence have killed 3,00,000 people and displaced more than 2.7 million .\tDT NNP NNP VBZ NN CC JJ NN VBP VBN CD NNS CC VBD JJR IN CD CD .\nSudan puts the death toll at 10,000 .\tNNP VBZ DT NN NN IN CD .\nAl-Qaida 's deputy leader , Ayman al-Zawahiri , is second after Osama bin Laden on the F.B.I 's list of most wanted terrorists .\tNNP POS NN NN , NNP NNP , VBZ JJ IN NNP NNP NNP IN DT NNP POS NN IN JJS JJ NNS .\nThe Egyptian-born doctor has become the terrorist organization 's most senior spokesman - appearing in a series of video , audio and print messages over the past three months .\tDT JJ NN VBZ VBN DT JJ NN POS RBS JJ NN : VBG IN DT NN IN NN , NN CC NN NNS IN DT JJ CD NNS .\nIn his most recent comment broadcast on videotape last week by Arabic broadcaster al-Jazeera , Zawahiri called on President Bush to confess that the United States has been defeated in Iraq and Afghanistan .\tIN PRP$ RBS JJ NN NN IN NN JJ NN IN JJ NN NNP , NNP VBD IN NNP NNP TO VB IN DT NNP NNPS VBZ VBN VBN IN NNP CC NNP .\nAyman al-Zawahiri was indicted for his alleged involvement in the 1998 bombings of U.S. embassies in Dar es Salaam , Tanzania and Nairobi , Kenya .\tNNP NNP VBD VBN IN PRP$ JJ NN IN DT CD NNS IN NNP NNS IN NNP VBZ NNP , NNP CC NNP , NNP .\nHe founded the Egyptian Islamic Jihad , a group that opposes the secular Egyptian government and seeks to overthrow it through violent means .\tPRP VBD DT JJ NNP NNP , DT NN WDT VBZ DT JJ JJ NN CC VBZ TO VB PRP IN JJ NNS .\nZawahiri has been on the run since late 2001 after U.S.-led forces invaded Afghanistan .\tNNP VBZ VBN IN DT NN IN JJ CD IN JJ NNS VBD NNP .\nThousands of Iranians have gathered in the southeastern city of Bam to mark Sunday 's one-year anniversary of the earthquake that claimed more than 31,000 lives and devastated the ancient city .\tNNS IN NNS VBP VBN IN DT JJ NN IN NNP TO VB NNP POS JJ NN IN DT NN WDT VBD JJR IN CD NNS CC VBD DT JJ NN .\nRelatives and friends of survivors have been making pilgrimages to Bam 's cemetery to remember the dead with prayers , flowers and candles .\tNNS CC NNS IN NNS VBP VBN VBG NNS TO NNP POS NN TO VB DT JJ IN NNS , NNS CC NNS .\nDespite President Mohammed Khatami 's pledge to rebuild , and help from the international community , much of Bam remains in ruins , and the slow pace of reconstruction has angered survivors .\tIN NNP NNP NNP POS NN TO VB , CC NN IN DT JJ NN , NN IN NNP VBZ IN NNS , CC DT JJ NN IN NN VBZ VBN NNS .\nThe powerful quake shook the city before dawn on December 26 last year , killing thousands as they slept .\tDT JJ NN VBD DT NN IN NN IN NNP CD JJ NN , VBG NNS IN PRP VBD .\nPakistan 's military says it has killed about 60 pro-Taliban militants in heavy fighting in the country 's northwest .\tNNP POS JJ VBZ PRP VBZ VBN IN CD JJ NNS IN JJ NN IN DT NN POS NN .\nA military spokesman says fighter jets attacked militant camps in the Swat Valley inflicting heavy casualties .\tDT JJ NN VBZ NN NNS VBD JJ NNS IN DT NNP NNP VBG JJ NNS .\nThe attacks took place near Bajaur where there has been heavy fighting between the military and militants since August .\tDT NNS VBD NN IN NNP WRB EX VBZ VBN JJ NN IN DT NN CC NNS IN NNP .\nThe main town in the area , Khar has been under a strict curfew for several days .\tDT JJ NN IN DT NN , NNP VBZ VBN IN DT JJ NN IN JJ NNS .\nAccording to the United Nations the fighting has displaced about 1,90,000 people .\tVBG TO DT NNP NNPS DT NN VBZ VBN IN CD NNS .\nThe U.N. says many have fled into neighboring Afghanistan to escape the violence .\tDT NNP VBZ NN VBP VBN IN VBG NNP TO VB DT NN .\nColombian officials say leftist rebels have attacked a military convoy in remote northeastern Colombia , killing six soldiers and 10 security officers .\tJJ NNS VBP JJ NNS VBP VBN DT JJ NN IN JJ JJ NNP , VBG CD NNS CC CD NN NNS .\nThe attack Thursday took place near the town of Hacari in Norte de Santander province , which borders Venezuela .\tDT NN NNP VBD NN IN DT NN IN NNP IN NNP NNP NNP NN , WDT VBZ NNP .\nThe Colombian military says it and the Department of Administrative Security ( DAS ) were carrying out operations against the country 's largest rebel group , the Revolutionary Armed Forces of Colombia ( FARC ) when explosives were detonated alongside their convoy .\tDT JJ NN VBZ PRP CC DT NNP IN NNP NNP LRB NNP RRB VBD VBG RP NNS IN DT NN POS JJS NN NN , DT NNP NNP NNS IN NNP LRB NNP RRB WRB NNS VBD VBN IN PRP$ NN .\nViolence has increased ahead of the May 28 election , in which anti-crime President Alvaro Uribe , is expected to win re-election .\tNN VBZ VBN RB IN DT NNP CD NN , IN WDT JJ NNP NNP NNP , VBZ VBN TO VB NN .\nHuman Rights Watch has accused FARC of massacring dozens of civilians , including children in an effort to intimidate voters .\tNNP NNP NNP VBZ VBN NNP IN VBG NNS IN NNS , VBG NNS IN DT NN TO VB NNS .\nDozens of commercial truck drivers honked their horns as they circled the U.S. Capitol Thursday to protest the rising cost of diesel fuel .\tNNS IN JJ NN NNS VBD PRP$ NNS IN PRP VBD DT NNP NNP NNP TO VB DT VBG NN IN NN NN .\nThe drivers looped around the National Mall in Washington D.C. to draw attention to an issue they say is hurting their livelihood .\tDT NNS VBD IN DT NNP NNP IN NNP NNP TO VB NN TO DT NN PRP VBP VBZ VBG PRP$ NN .\nThe average U.S. price of diesel fuel is $ 1.06 per liter .\tDT JJ NNP NN IN NN NN VBZ $ CD IN NN .\nThat is up from 76 cents per liter a year ago .\tDT VBZ RB IN CD NNS IN NN DT NN RB .\nMeanwhile , the average price of unleaded gasoline in the United States is 88 cents per liter .\tRB , DT JJ NN IN JJ NN IN DT NNP NNPS VBZ CD NNS IN NN .\nThat is up from 73 cents per liter this time last year .\tDT VBZ RB IN CD NNS IN NN DT NN JJ NN .\nThe U.S. trade deficit hit the third-highest level on record in August , as the price of imported oil soared .\tDT NNP NN NN VBD DT JJS NN IN NN IN NNP , IN DT NN IN VBN NN VBD .\nThursday 's report from the Commerce Department says the gap between what Americans buy and what they sell abroad was $ 59 billion .\tNNP POS NN IN DT NNP NNP VBZ DT NN IN WP NNS VBP CC WP PRP VBP RB VBD $ CD CD .\nThe figures show little impact from Hurricane Katrina , which struck at the end of the month .\tDT NNS VBP JJ NN IN NNP NNP , WDT VBD IN DT NN IN DT NN .\nBut a separate government report from the Labor Department shows storm damage prompted 75,000 more people to apply for unemployment compensation last week .\tCC DT JJ NN NN IN DT NNP NNP VBZ NN NN VBD CD JJR NNS TO VB IN NN NN JJ NN .\nThat brings the total jobs lost to hurricanes to 4,38,000 .\tDT VBZ DT JJ NNS VBN TO NNS TO CD .\nNationwide , the number of people asking for first time compensation declined slightly during the week .\tNNP , DT NN IN NNS VBG IN JJ NN NN VBD RB IN DT NN .\nAnalysts say in spite of the hurricanes , the overall labor market is strong as companies expand labor forces to meet growing demand .\tNNS VBP IN NN IN DT NNS , DT JJ NN NN VBZ JJ IN NNS VBP NN NNS TO VB VBG NN .\nIraq has halted crude oil exports to South Korea , in protest of an exploration deal between Korean firms and the Kurdish regional government .\tNNP VBZ VBN JJ NN NNS TO NNP NNP , IN NN IN DT NN NN IN JJ NNS CC DT JJ JJ NN .\nThe annual contract between Iraq and South Korea 's top refiner , SK Energy , was due for renewal January 1 .\tDT JJ NN IN NNP CC NNP NNP POS JJ NN , NNP NNP , VBD JJ IN NN NNP CD .\nSK Energy says it has been told to back out of the Kurdistan deal if it wants exports to resume .\tNNP NNP VBZ PRP VBZ VBN VBN TO VB IN IN DT NNP NN IN PRP VBZ NNS TO VB .\nA consortium of South Korean firms led by the state-run Korea National Oil Corporation signed a deal with the Kurdish government to explore the Bazian oil field in the Dahuk region of northern Iraq .\tDT NN IN JJ JJ NNS VBN IN DT JJ NNP NNP NNP NNP VBD DT NN IN DT JJ NN TO VB DT JJ NN NN IN DT NNP NN IN JJ NNP .\nThe corporation says it will not change its plans .\tDT NN VBZ PRP MD RB VB PRP$ NNS .\nSouth Korean energy officials say Iraqi crude accounts for less than four percent of total imports .\tJJ JJ NN NNS VBP JJ JJ NNS IN JJR IN CD NN IN JJ NNS .\nOfficials say purchases will be made in the spot market to cover the shortage .\tNNS VBP NNS MD VB VBN IN DT NN NN TO VB DT NN .\nA roadside bomb blast near the motorcade of Iraq 's oil minister has killed at least two of his escorts and wounded two others .\tDT NN NN NN IN DT NN IN NNP POS NN NN VBZ VBN IN JJS CD IN PRP$ NNS CC VBN CD NNS .\nIraqi officials say Ibrahim Bahr al-Uloum was not hurt in the bombing , which occurred in a north Baghdad district as he set out for the oil refining city of Beiji .\tJJ NNS VBP NNP NNP NNP VBD RB VBN IN DT NN , WDT VBD IN DT JJ NNP NN IN PRP VBD RP IN DT NN NN NN IN NNP .\nMeanwhile , U.S. military officials deny that al-Qaida in Iraq has abducted two Marines in western Iraq , where U.S. troops are in the third day of an offensive to drive out insurgents .\tRB , NNP JJ NNS VBP IN NNP IN NNP VBZ VBN CD NNS IN JJ NNP , WRB NNP NNS VBP IN DT JJ NN IN DT NN TO VB RP NNS .\nA website message from the purported kidnappers Sunday said the Marines would be killed unless all female Sunni Muslim prisoners in U.S. and Iraqi custody were freed within 24 hours .\tDT JJ NN IN DT JJ NNS NNP VBD DT NNPS MD VB VBN IN DT JJ NNP NNP NNS IN NNP CC JJ NN VBD VBN IN CD NNS .\nU.S. officials say at least 20 insurgents have been killed in the current operation .\tNNP NNS VBP IN JJS CD NNS VBP VBN VBN IN DT JJ NN .\nA report commissioned by the British government says the country 's foreign policy contributes to driving some members of its Muslim population toward extremism .\tDT NN VBN IN DT JJ NN VBZ DT NN POS JJ NN VBZ TO VBG DT NNS IN PRP$ NNP NN IN NN .\nThe report says perceived injustices in Western foreign policy , especially in the Middle East , often trigger radical impulses in the Muslim community .\tDT NN VBZ VBN NNS IN JJ JJ NN , RB IN DT NNP NNP , RB VBZ JJ NNS IN DT NNP NN .\nThe report adds that criticism of British foreign policy should not be seen as disloyalty .\tDT NN VBZ IN NN IN JJ JJ NN MD RB VB VBN IN NN .\nIt says peaceful disagreement is a sign of a healthy democracy .\tPRP VBZ JJ NN VBZ DT NN IN DT JJ NN .\nThe Home Office organized seven working groups to prepare the report on the root causes of the July 7 suicide attacks by British Muslims that killed 52 people in London .\tDT NNP NNP VBD CD VBG NNS TO VB DT NN IN DT NN NNS IN DT NNP CD NN NNS IN JJ NNPS WDT VBD CD NNS IN NNP .\nThe groups made several recommendations , including creation of a British Islam website to counter extremist Islamic Internet sites .\tDT NNS VBD JJ NNS , VBG NN IN DT JJ NNP NN TO VB NN JJ NN NNS .\nIraqi officials have increased security in the holy city of Karbala where tens of thousands of pilgrims are gathering for Ashura , one of the most important holy days for Shi'ites .\tJJ NNS VBP VBN NN IN DT JJ NN IN NNP WRB NNS IN NNS IN NNS VBP VBG IN NNP , CD IN DT RBS JJ JJ NNS IN NNS .\nAuthorities have deployed at least 23,000 security force members around the city , located south of Baghdad .\tNNS VBP VBN IN JJS CD NN NN NNS IN DT NN , VBN NN IN NNP .\nPolice say a roadside bomb targeting Shi'ite pilgrims exploded in Baghdad\tNNS VBP DT NN NN VBG NNP NNS VBD IN NNP\nTuesday , killing at least 39 people .\tNNP , VBG IN JJS CD NNS .\nIraqi officials say at least four Shi'ite pilgrims were killed in a suicide bombing near the capital , Monday .\tJJ NNS VBP IN JJS CD NNP NNS VBD VBN IN DT NN VBG IN DT NN , NNP .\nAshura is celebrated by Shi'ite Muslims around the world .\tNNP VBZ VBN IN NNP NNPS IN DT NN .\nIt commemorates the death of Imam Hussein more than 1,300 years ago .\tPRP VBZ DT NN IN NNP NNP JJR IN CD NNS RB .\nHe was a grandson of the Prophet Mohammed .\tPRP VBD DT NN IN DT NNP NNP .\nMonday is a national holiday in Japan .\tNNP VBZ DT JJ NN IN NNP .\nIt 's ' Coming of Age Day , ' a day of recognition for those who turn 20 years old this year .\tPRP VBZ `` VBG IN NNP NNP , `` DT NN IN NN IN DT WP VBP CD NNS JJ DT NN .\nTwenty is the age of adulthood in Japan , when a person is old enough to vote , drink or smoke .\tCD VBZ DT NN IN NN IN NNP , WRB DT NN VBZ JJ RB TO VB , VB CC VB .\nFinancial markets and many offices are closed for the holiday .\tJJ NNS CC JJ NNS VBP VBN IN DT NN .\nMunicipal governments host special coming of age ceremonies for the 20-year-olds in their juristictions .\tJJ NNS VBP JJ VBG IN NN NNS IN DT NNS IN PRP$ NNS .\nThe ceremonies are held to encourage responsibility and self-reliance .\tDT NNS VBP VBN TO VB NN CC NN .\nYoung men usually wear suits to the ceremony .\tJJ NNS RB VBP NNS TO DT NN .\nYoung women usually wear special kimonos bought or rented for the event .\tJJ NNS RB VBP JJ NNS VBD CC VBD IN DT NN .\nPakistan-based Islamic militants fighting Indian rule in Kashmir have announced what they are calling a ' new jihad ' or holy struggle to help victims of Saturday 's quake .\tJJ JJ NNS VBG JJ NN IN NNP VBP VBN WP PRP VBP VBG DT `` JJ NN `` CC JJ NN TO VB NNS IN NNP POS NN .\nThe group was originally known as Lashkar-e-Toiba .\tDT NN VBD RB VBN IN NNP .\nBut it changed its name to Jamaat-ud-Dawa after the United States blacklisted it as a terrorist organization .\tCC PRP VBD PRP$ NN TO NNP IN DT NNP NNPS VBD PRP IN DT JJ NN .\nIt says its activists have launched a campaign throughout Pakistan to collect relief goods for quake victims in Pakistani Kashmir .\tPRP VBZ PRP$ NNS VBP VBN DT NN IN NNP TO VB NN NNS IN NN NNS IN JJ NNP .\nA spokesman for the group says all members of the group are busy in the new effort .\tDT NN IN DT NN VBZ DT NNS IN DT NN VBP JJ IN DT JJ NN .\nThe charity has dispatched trucks carrying blankets , tents and food to quake-affected areas and it plans to send more .\tDT NN VBZ VBN NNS VBG NNS , NNS CC NN TO JJ NNS CC PRP VBZ TO VB RBR .\nThe spokesman also was quoted as saying the group has set up three field hospitals in the worst hit Pakistani city of Muzaffarabad .\tDT NN RB VBD VBN IN VBG DT NN VBZ VBN RP CD NN NNS IN DT JJS NN JJ NN IN NNP .\nOfficials in Djibouti say two of their soldiers were killed and at least 21 others wounded in a battle with Eritrean forces on their disputed border .\tNNS IN NNP VBP CD IN PRP$ NNS VBD VBN CC IN JJS CD NNS VBD IN DT NN IN JJ NNS IN PRP$ JJ NN .\nDjibouti military and diplomatic sources say the fighting began Tuesday in the northern Mount Gabla area .\tNNP JJ CC JJ NNS VBP DT NN VBD NNP IN DT JJ NNP NNP NN .\nSporadic fighting was reported Wednesday .\tJJ NN VBD VBN NNP .\nOfficials in Djibouti say the fighting began after several Eritrean soldiers deserted , crossing the border into Djibouti and drawing gunfire from the Eritrean troops .\tNNS IN NNP VBP DT NN VBD IN JJ JJ NNS VBD , VBG DT NN IN NNP CC VBG NN IN DT JJ NNS .\nThe Eritrean government has not confirmed or denied the incident .\tDT JJ NN VBZ RB VBN CC VBN DT NN .\nIt did issue a statement saying it was surprised by Djibouti 's recent anti-Eritrean campaigns and refused to be drawn into what it called Djibouti 's ' concocted animosity . '\tPRP VBD VB DT NN VBG PRP VBD VBN IN NNP POS JJ JJ NNS CC VBD TO VB VBN IN WP PRP VBD NNP POS `` VBN NN . ``\nThe two Horn of Africa nations have been locked in a standoff since mid-April , when Djibouti accused Eritrean troops of illegally crossing into its territory .\tDT CD NNP IN NNP NNS VBP VBN VBN IN DT NN IN NN , WRB NNP VBD JJ NNS IN RB VBG IN PRP$ NN .\nThe countries clashed over their border in the 1990s .\tDT NNS VBD IN PRP$ NN IN DT NNS .\nTwo U.S. lawmakers who blocked $ 100 million in U.S. aid to Lebanon 's military say they have lifted their hold on the funds after being assured the aid would not fall into the hands of Hezbollah militants threatening Israel .\tCD NNP NNS WP VBD $ CD CD IN NNP NN TO NNP POS JJ NN PRP VBP VBN PRP$ NN IN DT NNS IN VBG VBN DT NN MD RB VB IN DT NNS IN NNP NNS VBG NNP .\nDemocratic Representative Howard Berman released a statement Friday saying he based his decision to release the funds on a U.S. review of the aid-to-Lebanon program and a series of classified briefings with Obama administration officials .\tNNP NNP NNP NNP VBD DT NN NNP VBG PRP VBD PRP$ NN TO VB DT NNS IN DT NNP NN IN DT JJ NN CC DT NN IN JJ NNS IN NNP NN NNS .\nFellow Democratic Representative Nita Lowey confirmed through a spokesman that she has also lifted her hold on the funds .\tNNP NNP NNP NNP NNP VBD IN DT NN IN PRP VBZ RB VBN PRP$ NN IN DT NNS .\nThe lawmakers withheld their support for the aid to the Lebanese Armed Forces in August after a border clash between Lebanese and Israeli soldiers that killed two Lebanese soldiers , a Lebanese journalist , and an Israeli officer .\tDT NNS VBD PRP$ NN IN DT NN TO DT JJ JJ NNS IN NNP IN DT NN NN IN JJ CC JJ NNS WDT VBD CD JJ NNS , DT JJ NN , CC DT JJ NN .\nBerman is chairman of the House Foreign Affairs committee .\tNNP VBZ NN IN DT NNP NNP NNPS NN .\nLowey heads a foreign operations subcommittee on the House Appropriations committee .\tNNP VBZ DT JJ NNS NN IN DT NNP NNPS NN .\nIranian authorities say a bomb exploded at a military parade in the northwest and has killed at least 12 people , wounding 70 others .\tJJ NNS VBP DT NN VBD IN DT JJ NN IN DT NN CC VBZ VBN IN JJS CD NNS , VBG CD NNS .\nReports from Mahabad say most of the victims are women and children .\tNNS IN NNP VBP JJS IN DT NNS VBP NNS CC NNS .\nThe wives of two military officers are said to be among those killed .\tDT NNS IN CD JJ NNS VBP VBN TO VB IN DT VBN .\nThe bomb went off at a military parade in the northwestern town Wednesday morning .\tDT NN VBD RP IN DT JJ NN IN DT JJ NN NNP NN .\nSimilar events are being held around the country as it marks the beginning of the Iran-Iraq war , 30 years ago .\tJJ NNS VBP VBG VBN IN DT NN IN PRP VBZ DT NN IN DT NNP NN , CD NNS RB .\nNo one immediately claimed responsibility for the blast .\tDT NN RB VBD NN IN DT NN .\nBut provincial Governor Vahid Jalalzadeh blamed what he called ' counter-revolutionary groups . '\tCC JJ NNP NNP NNP VBD WP PRP VBD `` JJ NNS . ``\nThe phrase is often used to refer to Kurdish militants in the region .\tDT NN VBZ RB VBN TO VB TO VB NNS IN DT NN .\nMahabad lies close to the borders of Turkey and Iraq and is home to many ethnic Kurds and minority Sunni Muslims .\tNNP VBZ RB TO DT NNS IN NNP CC NNP CC VBZ NN TO JJ JJ NNS CC NN NNP NNPS .\nWhen fireworks light the sky at the Beijing Olympics opening ceremonies , Cai Guo-Quiang will be making art .\tWRB NNS VB DT NN IN DT NNP NNPS NN NNS , NNP NNP MD VB VBG NN .\nThis Chinese born artist who now calls New York home creates artwork from fireworks and gunpowder .\tDT JJ VBN NN WP RB VBZ NNP NNP NN VBZ NN IN NNS CC NN .\nHe is currently designing the computer-controlled firework spectacle that will mark the start of the Beijing games .\tPRP VBZ RB VBG DT JJ NN NN WDT MD VB DT NN IN DT NNP NNS .\nRecently , his work was on display at New York 's Guggenheim Museum in an exhibit called I Want to Believe .\tRB , PRP$ NN VBD IN NN IN NNP NNP POS NNP NNP IN DT NN VBD PRP VBP TO VB .\nFor producer Wang Yiru , Elaine Lu has the story .\tIN NN NNP NNP , NNP NNP VBZ DT NN .\nU.S. Secretary of State Condoleezza Rice says the United Nations may need to take a greater role in peacekeeping efforts in Sudan 's war-weary Darfur region .\tNNP NNP IN NNP NNP NNP VBZ DT NNP NNPS MD VB TO VB DT JJR NN IN VBG NNS IN NNP POS JJ NNP NN .\nMs. Rice says the 7000-member African Union peacekeeping force in Darfur is ' pretty close to the limits ' of its ability to contain violence , amid mounting tensions along the border between Sudan and Chad .\tNNP NNP VBZ DT JJ NNP NNP VBG NN IN NNP VBZ `` RB RB TO DT NNS `` IN PRP$ NN TO VB NN , IN VBG NNS IN DT NN IN NNP CC NNP .\nThe Secretary of State says the Sudanese government should cooperate with the international community , instead of opposing proposals to increase the peacekeeping force in the country 's restive western region .\tDT NNP IN NNP VBZ DT JJ NN MD VB IN DT JJ NN , RB IN VBG NNS TO VB DT NN NN IN DT NN POS JJ JJ NN .\nThree years of war in Darfur between rebel groups and a pro-government Arab militia have displaced millions of people from their homes .\tCD NNS IN NN IN NNP IN JJ NNS CC DT JJ JJ NN VBP VBN NNS IN NNS IN PRP$ NNS .\nThe conflict has killed tens of thousands of people .\tDT NN VBZ VBN NNS IN NNS IN NNS .\nThe U.S. Peace Corps is evacuating 35 of its volunteers from western Kenya because of the violence that has rocked the country since the disputed December 27 presidential election .\tDT NNP NNP NNP VBZ VBG CD IN PRP$ NNS IN JJ NNP IN IN DT NN WDT VBZ VBN DT NN IN DT JJ NNP CD JJ NN .\nThe relief agency says the volunteers are safe , and should arrive in the main Tanzanian city of Dar es Salaam Saturday .\tDT NN NN VBZ DT NNS VBP JJ , CC MD VB IN DT JJ JJ NN IN NNP NNP NNP NNP .\nThe Peace Corps has 144 volunteers based in Kenya , although the organization says 22 of them are currently out of the country .\tDT NNP NNP VBZ CD NNS VBN IN NNP , IN DT NN VBZ CD IN PRP VBP RB IN IN DT NN .\nAn agency statement says the remaining volunteers have been ' consolidated in a variety of locations . '\tDT NN NN VBZ DT VBG NNS VBP VBN `` VBN IN DT NN IN NNS . ``\nThe U.S. Embassy in Nairobi is asking U.S. citizens in Kenya to remain indoors while the fighting continues , and urges them to consider leaving for their own safety .\tDT NNP NNP IN NNP VBZ VBG NNP NNS IN NNP TO VB NNS IN DT NN VBZ , CC VBZ PRP TO VB VBG IN PRP$ JJ NN .\nMore than 300 people have been killed in the post-election violence .\tJJR IN CD NNS VBP VBN VBN IN DT JJ NN .\nA doctor for the World Health Organization in Ivory Coast says 40 people have died from meningitis and more than 200 have been infected in rebel-held parts of the country .\tDT NN IN DT NNP NNP NNP IN NNP NNP VBZ CD NNS VBP VBN IN NNS CC JJR IN CD VBP VBN VBN IN JJ NNS IN DT NN .\nSpokesman Aka Bian Tanoh blamed the outbreak on the lack of vaccines and trained medical workers , who have fled violence in the area after a failed coup attempt sparked at civil war in 2002 .\tNNP NNP NNP NNP VBD DT NN IN DT NN IN NNS CC JJ JJ NNS , WP VBP VBN NN IN DT NN IN DT VBN NN NN VBD IN JJ NN IN CD .\nHe says a vaccination campaign is urgently needed in the northeastern region of Bouna , noting that immunizations have dropped sharply since last year .\tPRP VBZ DT NN NN VBZ RB VBN IN DT JJ NN IN NNP , VBG IN NNS VBP VBN RB IN JJ NN .\nIvory Coast has been divided between the rebel-held north and government-controlled south since the end of violence in 2003 .\tNNP NNP VBZ VBN VBN IN DT JJ NN CC JJ NN IN DT NN IN NN IN CD .\nMauritania has asked for international aid to help thousands of homeless people after heavy rains caused mudslides in the eastern part of the country .\tNNP VBZ VBN IN JJ NN TO VB NNS IN JJ NNS IN JJ NNS VBD NNS IN DT JJ NN IN DT NN .\nThe country 's finance minister , Abderahmane Ould Hamma Vezzaz , said Sunday about 10,000 people in and around the town of Tintane were left homeless after heavy rains that started last week .\tDT NN POS NN NN , NNP NNP NNP NNP , VBD NNP IN CD NNS IN CC IN DT NN IN NNP VBD VBN JJ IN JJ NNS WDT VBD JJ NN .\nThose rains caused mudslides that wiped out homes and businesses in much of the town in southeastern Mauritania , near the border with Mali .\tDT NNS VBD NNS WDT VBD RP NNS CC NNS IN NN IN DT NN IN JJ NNP , IN DT NN IN NNP .\nAt least two people were reported killed in the mudslides and an unknown number of others are missing .\tIN JJS CD NNS VBD VBN VBN IN DT NNS CC DT JJ NN IN NNS VBP VBG .\nChina 's health ministry has confirmed the country 's eighth human infection of bird flu .\tNNP POS NN NN VBZ VBN DT NN POS JJ JJ NN IN NN NN .\nThe official Xinhua news agency reports officials said a six-year-old boy in central Hunan province first showed symptoms of the disease on December 24 and is now being treated for the deadly H5N1 strain of the virus .\tDT JJ NNP NN NN NNS NNS VBD DT JJ NN IN JJ NNP NN RB VBD NNS IN DT NN IN NNP CD CC VBZ RB VBG VBN IN DT JJ NNP NN IN DT NN .\nAlso today , Indonesia 's Health Ministry says initial medical tests indicate a 39-year-old man died of suspected bird flu earlier this month .\tRB NN , NNP POS NNP NNP VBZ JJ JJ NNS VBP DT JJ NN VBD IN JJ NN NN RBR DT NN .\nA ministry official says the man had been in contact with sick poultry .\tDT NN NN VBZ DT NN VBD VBN IN NN IN JJ NN .\nIf the World Health Organization laboratory confirms the man had the H5N1 strain of bird flu , it will raise Indonesia 's death toll from the virus to 12 .\tIN DT NNP NNP NNP NN VBZ DT NN VBD DT NNP NN IN NN NN , PRP MD VB NNP POS NN NN IN DT NN TO CD .\nBird flu is known to have killed more than 70 people in Asia since 2003 .\tNNP NN VBZ VBN TO VB VBN JJR IN CD NNS IN NNP IN CD .\nInvestigators in Mexico have recovered at least 18 bodies from a mass grave near the Pacific coast resort city of Acapulco .\tNNS IN NNP VBP VBN IN JJS CD NNS IN DT NN NN IN DT NNP NN NN NN IN NNP .\nAuthorities do not yet know if the bodies found in the grave are those of the 20 men abducted last month while visiting Acapulco from neighboring Michoacan state .\tNNS VBP RB RB VB IN DT NNS VBN IN DT NN VBP DT IN DT CD NNS VBN JJ NN IN VBG NNP IN VBG NNP NN .\nPolice began digging at the site after receiving an anonymous tip , which led them to discover two bodies nearby .\tNNS VBD VBG IN DT NN IN VBG DT JJ NN , WDT VBD PRP TO VB CD NNS RB .\nAn eruption of suspected drug violence has left more than 28,000 people dead across Mexico since the government began cracking down on cartels in 2006 .\tDT NN IN JJ NN NN VBZ VBN JJR IN CD NNS JJ IN NNP IN DT NN VBD VBG RP IN NNS IN CD .\nMeanwhile , U.S. officials said they have discovered a tunnel used for drug smuggling across the California-Mexico border .\tRB , NNP NNS VBD PRP VBP VBN DT NN VBN IN NN NN IN DT NNP NN .\nAuthorities said they seized 20 tons of marijuana at a site near the tunnel , which ran more than 500 meters underground from Mexico to Otay Mesa , California .\tNNS VBD PRP VBD CD NNS IN NN IN DT NN IN DT NN , WDT VBD JJR IN CD NNS RB IN NNP TO NNP NNP , NNP .\nIran 's Intelligence Minister has accused the United States of spying on the country 's nuclear sites .\tNNP POS NNP NNP VBZ VBN DT NNP NNPS IN VBG IN DT NN POS JJ NNS .\nIran 's state-run news agency ( IRNA ) quoted Ali Yunesi as saying the United States has been using satellites and other tools to spy on Iran for a long time .\tNNP POS JJ NN NN LRB NNP RRB VBN NNP NNP IN VBG DT NNP NNPS VBZ VBN VBG NNS CC JJ NNS TO VB IN NNP IN DT JJ NN .\nEarlier this week , the Washington Post reported that unmanned surveillance drones have been flying over Iran for almost a year to search for evidence of nuclear weapons programs and detect weaknesses in air defenses .\tRBR DT NN , DT NNP NNP VBD IN JJ NN NNS VBP VBN VBG IN NNP IN RB DT NN TO VB IN NN IN JJ NNS NNS CC VB NNS IN NN NNS .\nMeanwhile , the head of the U.N. nuclear agency says there has been no evidence so far to support U.S. suspicions that Tehran is developing nuclear weapons .\tRB , DT NN IN DT NNP JJ NN VBZ EX VBZ VBN DT NN RB RB TO VB NNP NNS IN NNP VBZ VBG JJ NNS .\nIn an interview with four U.S. newspapers ( including the Post ) , Mohamed ElBaradei also called for greater U.S. participation in diplomatic efforts to engage Iran and North Korea in talks about their nuclear programs .\tIN DT NN IN CD NNP NNS LRB VBG DT NNP RRB , NNP NNP RB VBD IN JJR NNP NN IN JJ NNS TO VB NNP CC NNP NNP IN NNS IN PRP$ JJ NNS .\nA new opinion poll conducted in eight nations that are U.S. allies indicates a majority of people do not want the United States to secretly interrogate suspected terrorists in their country .\tDT JJ NN NN VBN IN CD NNS WDT VBP NNP NNS VBZ DT NN IN NNS VBP RB VB DT NNP NNPS TO RB VB JJ NNS IN PRP$ NN .\nThe Associated Press-Ipsos poll last month asked people in Canada , Mexico , South Korea , France , Germany , Italy , Spain and Britain about their opinions on torturing and secretly interrogating terrorist suspects .\tDT NNP NNP NN JJ NN VBD NNS IN NNP , NNP , NNP NNP , NNP , NNP , NNP , NNP CC NNP IN PRP$ NNS IN NN CC RB VBG JJ NNS .\nThe poll shows a clear majority of people in every nation would oppose secret American interrogations conducted in their country .\tDT NN VBZ DT JJ NN IN NNS IN DT NN MD VB JJ JJ NNS VBN IN PRP$ NN .\nHowever , people were more closely split over whether it is justified to torture suspected terrorists to obtain information about terrorist activities .\tRB , NNS VBD RBR RB VBN IN IN PRP VBZ JJ TO VB JJ NNS TO VB NN IN JJ NNS .\nA majority of respondents in Spain and Italy said such action would never be justified .\tDT NN IN NNS IN NNP CC NNP VBD JJ NN MD RB VB VBN .\nBut about half of people in Canada , Mexico , France , Germany and Britain said torture could be justified on certain occasions .\tCC IN NN IN NNS IN NNP , NNP , NNP , NNP CC NNP VBD NN MD VB VBN IN JJ NNS .\nMonday marks the one year anniversary of the tsunami that devastated the Indian Ocean coastline from Malaysia to East Africa and memorials to the victims of that natural disaster have already begun .\tNNP VBZ DT CD NN NN IN DT NN WDT VBD DT NNP NNP NN IN NNP TO NNP NNP CC NNS TO DT NNS IN DT JJ NN VBP RB VBN .\nIn Thailand Saturday , some mourners prayed , others observed a moment of silence while separately the country 's sea gypsy tribe , the Moken , banged drums , chanted and made offerings to the sea .\tIN NNP NNP , DT NNS VBN , NNS VBD DT NN IN NN IN RB DT NN POS NN NN NN , DT NNP , VBD NNS , VBD CC VBD NNS TO DT NN .\nThe tsunami , triggered by a massive earthquake off Sumatra island , killed more than 2,00,000 people and left more than two million people homeless .\tDT NN , VBN IN DT JJ NN IN NNP NN , VBD RBR IN CD NNS CC VBD JJR IN CD CD NNS JJ .\nMany ceremonies are planned for Monday , when survivors , relatives of victims , government officials and others in the region and around the world mark the day that one of the worst natural disasters in recent history occurred .\tJJ NNS VBP VBN IN NNP , WRB NNS , NNS IN NNS , NN NNS CC NNS IN DT NN CC IN DT NN NN DT NN IN CD IN DT JJS JJ NNS IN JJ NN VBD .\nPoland and the United States have opened formal talks on a controversial U.S. plan to place part of a U.S. missile defense system on Polish soil .\tNNP CC DT NNP NNPS VBP VBN JJ NNS IN DT JJ NNP NN TO VB NN IN DT NNP NN NN NN IN JJ NN .\nA U.S. State Department senior advisor , Robert Loftis , met Monday in Warsaw with Polish defense officials .\tDT NNP NNP NNP JJ NN , NNP NNP , VBD NNP IN NNP IN JJ NN NNS .\nU.S. embassy spokesman Andrew Schilling characterized the meeting as a good beginning , with an exchange of ideas about how negotiations should move forward .\tNNP NN NN NNP NNP VBD DT NN IN DT JJ NN , IN DT NN IN NNS IN WRB NNS MD VB RB .\nAnother round of higher level talks is set for next week involving senior U.S. envoy John Rood , the U.S. Assistant Secretary of State for International Security .\tDT NN IN JJR NN NNS VBZ VBN IN JJ NN VBG JJ NNP NN NNP NNP , DT NNP NNP NNP IN NNP IN NNP NNP .\nPolish Prime Minister Jaroslaw Kaczynski has voiced support for the deployment of 10 U.S. missile interceptors in Poland and guidance technology in the Czech Republic .\tJJ NNP NNP NNP NNP VBZ VBN NN IN DT NN IN CD NNP NN NNS IN NNP CC NN NN IN DT JJ NNP .\nWashington has repeatedly said the missile system is aimed at protecting the United States and its allies from missile attacks from Iran .\tNNP VBZ RB VBN DT NN NN VBZ VBN IN VBG DT NNP NNPS CC PRP$ NNS IN NN NNS IN NNP .\nRussia strongly opposes the plan , saying the missile shield would threaten Russian security .\tNNP RB VBZ DT NN , VBG DT NN NN MD VB JJ NN .\nPalestinian Prime Minister Ahmed Qureia has submitted his resignation to run for a seat in the Palestinian parliament in next month 's elections .\tJJ NNP NNP NNP NNP VBZ VBN PRP$ NN TO VB IN DT NN IN DT JJ NN IN JJ NN POS NNS .\nMr. Qureia , a former Fatah party peace negotiator under the late Yasser Arafat , was required by law to leave office ahead of the January 25 polls .\tNNP NNP , DT JJ NNP NN NN NN IN DT JJ NNP NNP , VBD VBN IN NN TO VB NN RB IN DT NNP CD NNS .\nPalestinian Authority President Mahmoud Abbas did not immediately name a replacement .\tJJ NNP NNP NNP NNP VBD RB RB VB DT NN .\nLate Wednesday , the rival Hamas party registered a slate of candidates headed by senior leader Ismail Haniyah .\tRB NNP , DT JJ NNP NN VBD DT NN IN NNS VBN IN JJ NN NNP NNP .\nThe slate also includes two widows of prominent militants killed by the Israeli military .\tDT NN RB VBZ CD NNS IN JJ NNS VBN IN DT JJ NN .\nAnother candidate , Mariam Farhat , is the mother of three militant sons killed over the past three years by Israeli forces .\tDT NN , NNP NNP , VBZ DT NN IN CD JJ NNS VBN IN DT JJ CD NNS IN JJ NNS .\nMeanwhile , the fourth and final phase of local council elections was completed Thursday in parts of the West Bank and Gaza Strip .\tRB , DT JJ CC JJ NN IN JJ NN NNS VBD VBN NNP IN NNS IN DT NNP NNP CC NNP NNP .\nAirport officials from around the world are cautioning passengers to ' pack lightly ' and arrive early as delays continue following Thursday 's arrest in Britain of key figures in an alleged plot to blow up U.S.-bound airliners .\tNN NNS IN IN DT NN VBP VBG NNS TO `` VB RB `` CC VB RB IN NNS VBP VBG NNP POS NN IN NNP IN JJ NNS IN DT JJ NN TO VB RP JJ NNS .\nBritish officials are asking passengers Friday to arrive prepared for security checks .\tJJ NNS VBP VBG NNS NNP TO VB JJ IN NN NNS .\nTravelers should have no hand luggage and items like prescription medicine should be kept in clear plastic bags .\tNNS MD VB DT NN NN CC NNS IN NN NN MD VB VBN IN JJ NN NNS .\nLong lines are reported at Heathrow Airport , with many flights being canceled .\tJJ NNS VBP VBN IN NNP NNP , IN JJ NNS VBG VBN .\nAsian airports have introduced new security measures Friday as well , banning all liquids and gels from cabins .\tJJ NNS VBP VBN JJ NN NNS NNP IN RB , VBG DT NNS CC NNS IN NNS .\nNew Zealand also banned the substances from flights to Britain and the United States .\tNNP NNP RB VBD DT NNS IN NNS TO NNP CC DT NNP NNPS .\nU.S. authorities have designated all U.S.-bound flights from Britain under a ' severe ' threat level , the highest level of alert .\tNNP NNS VBP VBN DT JJ NNS IN NNP IN DT `` JJ `` NN NN , DT JJS NN IN NN .\nAll other international flights are operating under a ' high ' threat level .\tDT JJ JJ NNS VBP VBG IN DT `` JJ `` NN NN .\nIran has expressed interest in continuing talks with the United States on Iraq , begun last month in Baghdad .\tNNP VBZ VBN NN IN VBG NNS IN DT NNP NNPS IN NNP , VBN JJ NN IN NNP .\nIranian media quote Foreign Minister Manouchehr Mottaki as saying Tehran will view a continuation of the talks positively , if Iraqi Prime Minister Nouri al-Maliki and other Iraqi officials call for them to take place .\tJJ NNS VBP NNP NNP NNP NNP IN VBG NNP MD VB DT NN IN DT NNS RB , IN JJ NNP NNP NNP NNP CC JJ JJ NNS VBP IN PRP TO VB NN .\nMottaki spoke after meeting Sunday in Tehran with Iraqi Deputy Prime Minister Barham Saleh .\tNNP VBD IN VBG NNP IN NNP IN JJ NNP NNP NNP NNP NNP .\nLate last month , the U.S. ambassador to Iraq , Ryan Crocker , held talks with his Iranian counterpart , Hassan Kazemi Qomi , on the security situation in Iraq .\tRB JJ NN , DT NNP NN TO NNP , NNP NNP , VBD NNS IN PRP$ JJ NN , NNP NNP NNP , IN DT NN NN IN NNP .\nDuring the talks , the U.S. urged Iran to stop supporting militias in Iraq .\tIN DT NNS , DT NNP VBD NNP TO VB VBG NNS IN NNP .\nCrocker said Tehran asserted that the coalition presence in Iraq was an occupation .\tNNP VBD NNP VBD IN DT NN NN IN NNP VBD DT NN .\nTehran denies it is responsible for insurgent attacks in Iraq .\tNNP VBZ PRP VBZ JJ IN JJ NNS IN NNP .\nLast month 's meeting marked the highest-level talks between the U.S. and Iran in almost 30 years .\tJJ NN POS NN VBD DT JJ NNS IN DT NNP CC NNP IN RB CD NNS .\nBermet Akayeva\tNNP NNP\nThe daughter of ousted Kyrgyz President Askar Akayev has unexpectedly appeared in parliament to assume the seat she won in disputed elections earlier this year .\tDT NN IN JJ JJ NNP NNP NNP VBZ RB VBN IN NN TO VB DT NN PRP VBD IN JJ NNS RBR DT NN .\nBermet Akayeva returned to Bishkek after weeks in self-imposed exile following a late March coup .\tNNP NNP VBD TO NNP IN NNS IN JJ NN VBG DT JJ NNP NN .\nShe told journalists outside the parliament Thursday that she does not expect any problems from the Kyrgyz people , nor does she fear prosecution .\tPRP VBD NNS IN DT NN NNP IN PRP VBZ RB VB DT NNS IN DT JJ NNS , CC VBZ PRP VB NN .\nMs. Akayeva predicted that her brother Aidar , who also won a parliamentary seat , will return to Kyrgyzstan soon .\tNNP NNP VBD IN PRP$ NN NNP , WP RB VBD DT JJ NN , MD VB TO NNP RB .\nLast week , parliament voted to strip the members of Mr. Akayev 's family of immunity from prosecution .\tJJ NN , NN VBD TO VB DT NNS IN NNP NNP POS NN IN NN IN NN .\nHer father , who resigned last week after nearly 15 years in power , fled Kyrgyzstan after protesters ransacked his offices in Bishkek and the opposition seized power March 24 .\tPRP$ NN , WP VBD JJ NN IN RB CD NNS IN NN , VBD NNP IN NNS VBD PRP$ NNS IN NNP CC DT NN VBD NN NNP CD .\nNorth Korea 's demand that it be given a light water reactor before dismantling its nuclear weapons program has sparked mixed reactions from the six nations attending the talks .\tNNP NNP POS NN IN PRP VB VBN DT JJ NN NN IN VBG PRP$ JJ NNS NN VBZ VBN JJ NNS IN DT CD NNS VBG DT NNS .\nThe White House says the demand is the opposite of the sequence of events agreed to on Monday and suggested Pyongyang needs time to reflect on the deal .\tDT NNP NNP VBZ DT NN VBZ DT NN IN DT NN IN NNS VBD TO IN NNP CC VBD NNP VBZ NN TO VB IN DT NN .\nJapan called the demand ' unacceptable . '\tNNP VBD DT NN `` JJ . ``\nChina 's Foreign Ministry urged all sides to keep their commitments .\tNNP POS NNP NNP VBD DT NNS TO VB PRP$ NNS .\nNorth Korea had pledged to give up its nuclear weapons in return for energy aid and security assurances at talks in Beijing .\tNNP NNP VBD VBN TO VB RP PRP$ JJ NNS IN NN IN NN NN CC NN NNS IN NNS IN NNP .\nParties agreed that supplying a light water reactor for civilian use would be discussed later .\tNNS VBD IN VBG DT JJ NN NN IN JJ NN MD VB VBN RB .\nBut soon after signing the agreement , the North said Washington should not expect Pyongyang to dismantle its weapons before it received light water reactors .\tCC RB IN VBG DT NN , DT NNP VBD NNP MD RB VB NNP TO VB PRP$ NNS IN PRP VBD JJ NN NNS .\nAt least four people , including a German peacekeeper , have been killed in two separate suicide attacks against the NATO-led International Security Assistance Force in the Afghan capital , Kabul .\tIN JJS CD NNS , VBG DT JJ NN , VBP VBN VBN IN CD JJ NN NNS IN DT JJ NNP NNP NNP NNP IN DT JJ NN , NNP .\nLocal authorities say the two bombings Monday occurred within 90 minutes of each other on a 500-meter stretch of road near the offices of organizers of last September 's legislative elections .\tJJ NNS VBP DT CD NNS NNP VBD IN CD NNS IN DT NN IN DT JJ NN IN NN IN DT NNS IN NNS IN JJ NNP POS JJ NNS .\nThey say the attackers rammed explosive-laden cars into vehicles belonging to the NATO-led peacekeepers , and that several people were wounded in the incidents .\tPRP VBP DT NNS VBD JJ NNS IN NNS VBG TO DT JJ NNS , CC IN JJ NNS VBD VBN IN DT NNS .\nLater in the day , NATO troops foiled what they believe was an attempted third attack by opening fire on a car racing toward the scene of the initial blasts .\tRB IN DT NN , NNP NNS VBD WP PRP VBP VBD DT JJ JJ NN IN VBG NN IN DT NN NN IN DT NN IN DT JJ NNS .\nWitnesses say at least two people in the car were killed .\tNNS VBP IN JJS CD NNS IN DT NN VBD VBN .\nA man identifying himself as a spokesman for the ousted Taleban said the group was responsible for the attacks and warned of more suicide bombings .\tDT NN VBG PRP IN DT NN IN DT JJ NNP VBD DT NN VBD JJ IN DT NNS CC VBD IN JJR NN NNS .\nMexican President Vicente Fox has called on United States and Mexico to work together to control lawlessness along the border of the two countries .\tJJ NNP NNP NNP VBZ VBN IN NNP NNP CC NNP TO VB RB TO VB NN IN DT NN IN DT CD NNS .\nSpeaking in the Mexican state of Sonora Tuesday , Mr. Fox said the crime along the border is the shared responsibility of both governments .\tVBG IN DT JJ NN IN NNP NNP , NNP NNP VBD DT NN IN DT NN VBZ DT JJ NN IN DT NNS .\nMr. Fox issued his call after the governors of two U.S. states , Arizona and New Mexico , declared states of emergency along their border with Mexico .\tNNP NNP VBD PRP$ NN IN DT NNS IN CD NNP NNS , NNP CC NNP NNP , VBD NNS IN NN IN PRP$ NN IN NNP .\nBoth Janet Napolitano of Arizona and Bill Richardson of New Mexico have accused the U.S. federal government of not doing enough to control drug traffickers , illegal immigrant smugglers , and criminal gangs .\tDT NNP NNP IN NNP CC NNP NNP IN NNP NNP VBP VBN DT NNP JJ NN IN RB VBG RB TO VB NN NNS , JJ NN NNS , CC JJ NNS .\nAsked about the governors ' actions , U.S. State Department spokesman Sean McCormack said Mexico has taken significant steps to address violence on the border .\tVBN IN DT NNS POS NNS , NNP NNP NNP NN NNP NNP VBD NNP VBZ VBN JJ NNS TO VB NN IN DT NN .\nHe said the U.S. and Mexican governments are working together ' very closely ' to improve border security .\tPRP VBD DT NNP CC JJ NNS VBP VBG RB `` RB RB `` TO VB NN NN .\nU.S. Ambassador to Iraq Zalmay Khalilzad says Saddam Hussein 's conviction by an Iraqi court for crimes against humanity is an ' important milestone ' for the country .\tNNP NNP TO NNP NNP NNP VBZ NNP NNP POS NN IN DT JJ NN IN NNS IN NN VBZ DT `` JJ NN `` IN DT NN .\nKhalilzad says in a statement issued Sunday that ' closing the book ' on Saddam gives Iraq an opportunity to unite and build a better future .\tNNP VBZ IN DT NN VBN NNP IN `` VBG DT NN `` IN NNP VBZ NNP DT NN TO VB CC VB DT JJR NN .\nHe acknowledged that Iraq may face difficult times in the coming weeks , in a reference to fears the verdict will spark a sectarian backlash .\tPRP VBD IN NNP MD VB JJ NNS IN DT JJ NNS , IN DT NN TO NNS DT NN MD VB DT JJ NN .\nThe U.S. ambassador praised the Iraqi judges and attorneys who worked on the trial for showing courage in the face of intimidation .\tDT NNP NN VBD DT JJ NNS CC NNS WP VBD IN DT NN IN VBG NN IN DT NN IN NN .\nHe says the trial demonstrates Iraq 's determination to hold Saddam and his co-defendants accountable for their crimes .\tPRP VBZ DT NN VBZ NNP POS NN TO VB NNP CC PRP$ NNS VBP IN PRP$ NNS .\nThree defense lawyers for Saddam were murdered during the trial , prompting the defense team to complain that Iraq 's government had not provided it with enough security .\tCD NN NNS IN NNP VBD VBN IN DT NN , VBG DT NN NN TO VB DT NNP POS NN VBD RB VBN PRP IN JJ NN .\nSri Lanka 's national cricket team will have to wait until Friday to leave New Zealand , as players anxiously attempt to get home following this week 's devastating tsunami .\tNNP NNP POS JJ NN NN MD VB TO VB IN NNP TO VB NNP NNP , IN NNS RB VBP TO VB NN VBG DT NN POS JJ NN .\nNo flights were available for the Sri Lanka team , which canceled its tour of New Zealand after this week 's disaster .\tDT NNS VBD JJ IN DT NNP NNP NN , WDT VBD PRP$ NN IN NNP NNP IN DT NN POS NN .\nNo players lost close relatives in the tsunami disaster , though the mothers of two players were injured .\tDT NNS VBD JJ NNS IN DT NN NN , IN DT NNS IN CD NNS VBD VBN .\nNew Zealand and Sri Lanka agreed to cancel the tour Wednesday so that players could return home .\tNNP NNP CC NNP NNP VBD TO VB DT NN NNP IN IN NNS MD VB NN .\nThe International Cricket Council agreed to the move , and said its normal penalties would not be imposed in this case .\tDT NNP NNP NNP VBD TO DT NN , CC VBD PRP$ JJ NNS MD RB VB VBN IN DT NN .\nThe death toll in Sri Lanka from Sunday 's tsunami is more than 22,000 people .\tDT NN NN IN NNP NNP IN NNP POS NN VBZ JJR IN CD NNS .\nNew Zealand is hoping to reschedule the tour within the next two years .\tNNP NNP VBZ VBG TO VB DT NN IN DT JJ CD NNS .\nThousands of students in several Egyptian cities have protested the Israeli army 's killing of three Egyptian policemen on the Gaza border .\tNNS IN NNS IN JJ JJ NNS VBP VBN DT JJ NN POS NN IN CD JJ NNS IN DT NNP NN .\nStudents called on the government Sunday to reject Israel 's apology and allow Egyptians to wage holy war over the incident .\tNNS VBD IN DT NN NNP TO VB NNP POS NN CC VB NNS TO VB JJ NN IN DT NN .\nThe Egyptian government has demanded a formal inquiry into the Thursday shootings , in which Israeli troops said they mistook the policemen for Palestinian insurgents .\tDT JJ NN VBZ VBN DT JJ NN IN DT NNP NNS , IN WDT JJ NNS VBD PRP VBD DT NNS IN JJ NNS .\nEgypt has also suspended a planned trip to Israel by its Foreign Minister after the killings .\tNNP VBZ RB VBN DT JJ NN TO NNP IN PRP$ NNP NNP IN DT NNS .\nTwo separate attacks in the southern Iraqi city of Basra killed at least 14 people , including four American security guards , on Wednesday .\tCD JJ NNS IN DT JJ JJ NN IN NNP VBD IN JJS CD NNS , VBG CD JJ NN NNS , IN NNP .\nIraqi police say a suicide bomber detonated his explosives filled car in front of a busy restaurant , killing 10 people and injuring 15 others .\tJJ NNS VBP DT NN NN VBD PRP$ NNS VBN NN IN NN IN DT JJ NN , VBG CD NNS CC VBG CD NNS .\nHours earlier , the four private American guards were killed in a roadside bomb blast in the Shi'ite dominated city .\tNNS RB , DT CD JJ JJ NNS VBD VBN IN DT NN NN NN IN DT NNP VBD NN .\nIn other developments , U.S. troops rescued American contractor Roy Hallums , who was kidnapped more than 10 months ago .\tIN JJ NNS , NNP NNS VBD JJ NN NNP NNP , WP VBD VBN RBR IN CD NNS RB .\nHe is reported in good physical condition .\tPRP VBZ VBN IN JJ JJ NN .\nSeparately , the U.S. military says Iraqi and American forces have carried out dozens of joint operations in Baghdad this week , detaining more than 50 suspected terrorists .\tRB , DT NNP NN VBZ JJ CC JJ NNS VBP VBN RP NNS IN JJ NNS IN NNP DT NN , VBG JJR IN CD JJ NNS .\nU.S. Secretary of State Condoleezza Rice says she thinks the insurgents in Iraq are ' losing steam ' ( energy ) as a political force .\tNNP NNP IN NNP NNP NNP VBZ PRP VBZ DT NNS IN NNP VBP `` VBG NN `` LRB NN RRB IN DT JJ NN .\nIn an interview with Time magazine published Sunday , Ms. Rice said she believes the insurgents have become more and more isolated from Iraq 's people as the country 's political process moves forward .\tIN DT NN IN NNP NN VBN NNP , NNP NNP VBD PRP VBZ DT NNS VBP VBN RBR CC RBR JJ IN NNP POS NNS IN DT NN POS JJ NN VBZ RB .\nMs. Rice also argued that the media focus too much on violence in Iraq and not enough on what she called Iraq 's ' rather quiet political progress . '\tNNP NNP RB VBD IN DT NNS VBP RB RB IN NN IN NNP CC RB RB IN WP PRP VBD NNP POS `` RB JJ JJ NN . ``\nChina 's parliament has passed legislation giving the country 's military a legal basis for attacking Taiwan if the island moves toward declaring independence .\tNNP POS NN VBZ VBN NN VBG DT NN POS JJ DT JJ NN IN VBG NNP IN DT NN VBZ IN VBG NN .\nThe law was approved early Monday by the National People 's Congress - a largely rubber-stamp legislature that approves decisions made by the ruling Communist Party .\tDT NN VBD VBN RB NNP IN DT NNP NNP POS NNP IN DT RB JJ NN WDT VBZ NNS VBN IN DT NN NNP NNP .\nBeijing considers Taiwan a renegade province , and opposes any moves by the island to boost its international profile .\tNNP VBZ NNP DT NN NN , CC VBZ DT NNS IN DT NN TO VB PRP$ JJ NN .\nThe new law says China will employ ' non-peaceful means ' to prevent Taiwanese independence if efforts at peaceful reunification fail .\tDT JJ NN VBZ NNP MD VB `` JJ NNS `` TO VB JJ NN IN NNS IN JJ NN VBP .\nChinese President Hu Jintao Sunday urged the armed forces to step up preparations for possible military struggle .\tJJ NNP NNP NNP NNP VBD DT JJ NNS TO VB RP NNS IN JJ JJ NN .\nBut , speaking after its passage , Chinese Premier Wen Jiabao said the new law is not a ' war bill . '\tCC , NN IN PRP$ NN , JJ NNP NNP NNP VBD DT JJ NN VBZ RB DT `` NN NN . ``\nU.S. Secretary of State Condoleezza Rice , speaking on American television ( ABC ) , urged both China and Taiwan to avoid actions that could raise tensions .\tNNP NNP IN NNP NNP NNP , VBG IN JJ NN LRB NNP RRB , VBD DT NNP CC NNP TO VB NNS WDT MD VB NNS .\nSurvivors of the devastating earthquake and tsunami that swept across Indonesia 's northern Aceh province marked the first year anniversary of the disaster - with prayers for the more than 1,69,000 people who perished in the disaster in Indonesia .\tNNS IN DT JJ NN CC NN WDT VBD IN NNP POS JJ NNP NN VBD DT JJ NN NN IN DT NN IN IN NNS IN DT JJR IN CD NNS WP VBD IN DT NN IN NNP .\nIndonesian President Susilo Bambang Yudhoyono led a group of a thousand tsunami survivors , dignitaries , and aid workers in prayer on the shoreline in Banda Aceh where the tsunami struck .\tJJ NNP NNP NNP NNP VBD DT NN IN DT CD NN NNS , NNS , CC NN NNS IN NN IN DT NN IN NNP NNP WRB DT NN VBD .\n' We stand here together today in remembrance of that suffering paying respect , once again , to the good men and women and all the children lost to the sea , ' he said .\t`` PRP VBP RB RB NN IN NN IN DT NN VBG NN , RB RB , TO DT JJ NNS CC NNS CC PDT DT NNS VBD TO DT NN , `` PRP VBD .\nAll across Aceh province , bells rang and people bowed their heads in prayer .\tDT IN NNP NN , VBZ NN CC NNS VBD PRP$ NNS IN NN .\nIt was the worst hit region of the 12 Indian Ocean nations hit by the tsunami , which killed more than 2,30,000 people .\tPRP VBD DT JJS NN NN IN DT CD JJ NNP NNS VBN IN DT NN , WDT VBD JJR IN CD NNS .\nChina says it will launch its second manned space mission in September , 2005 .\tNNP VBZ PRP MD VB PRP$ JJ JJ NN NN IN NNP , CD .\nChinese state media says it will send two astronauts on the Shenzhou Six spacecraft for a five-day mission to circle the Earth .\tJJ NN NNS VBZ PRP MD VB CD NNS IN DT NNP CD NN IN DT JJ NN TO NN DT NN .\nFourteen astronauts are currently training for the flight including Astronaut Yang Liwei , who became China 's first man in space when he flew aboard Shenzhou Five in October , 2003 .\tCD NNS VBP RB VBG IN DT NN VBG NN NNP NNP , WP VBD NNP POS JJ NN IN NN WRB PRP VBD IN NNP CD IN NNP , CD .\nChina is only the third nation to launch a man into space , behind the United States and Russia .\tNNP VBZ RB DT JJ NN TO VB DT NN IN NN , IN DT NNP NNPS CC NNP .\nPalestinian authorities say raw sewage has swept through a Bedouin village in the northern Gaza Strip , killing at least four people .\tJJ NNS VBP JJ NN VBZ VBN IN DT NNP NN IN DT JJ NNP NNP , VBG IN JJS CD NNS .\nOfficials say sewage and mud completely submerged at least 25 buildings in Umm Naser village , after the earthen wall of a sewage pool collapsed Tuesday .\tNNS VBP NN CC NN RB VBD IN JJS CD NNS IN NNP NNP NN , IN DT JJ NN IN DT NN NN VBD NNP .\nHospital sources say at least 15 people were injured , and residents say scores of villagers are missing .\tNN NNS VBP IN JJS CD NNS VBD VBN , CC NNS VBP NNS IN NNS VBP VBG .\nIn 2004 , the United Nations warned that the sewage facility was operating well beyond capacity , but local government lacked the financial resources to construct a new facility .\tIN CD , DT NNP NNPS VBD IN DT NN NN VBD VBG RB IN NN , CC JJ NN VBD DT JJ NNS TO VB DT JJ NN .\nWitnesses say angry villagers threw stones and opened fire on the convoy of Palestinian Interior Minister Hani al-Qawasmi , who went to inspect the damage .\tNNS VBP JJ NNS VBD NNS CC VBD NN IN DT NN IN JJ NNP NNP NNP NNP , WP VBD TO VB DT NN .\nIsraeli troops have shot dead a Palestinian militant in the West Bank .\tJJ NNS VBP VBN RB DT JJ NN IN DT NNP NNP .\nIsraeli army officials say soldiers killed Mahmoud Hammad , a member of the militant group Islamic Jihad , as he tried to escape from a house in the village of Raba , close to the West Bank town of Jenin .\tJJ NN NNS VBP NNS VBD NNP NNP , DT NN IN DT JJ NN NNP NNP , IN PRP VBD TO VB IN DT NN IN DT NN IN NNP , RB TO DT NNP NNP NN IN NNP .\nThey say the militant was carrying a weapon when he was shot .\tPRP VBP DT NN VBD VBG DT NN WRB PRP VBD VBN .\nIsraeli troops have carried out frequent raids in West Bank cities and towns targeting militants spearheading a four-year-old Palestinian uprising .\tJJ NNS VBP VBN RP JJ NNS IN NNP NNP NNS CC NNS VBG NNS VBG DT JJ JJ NN .\nThe leader of Brazil 's ruling Workers Party has resigned amid a bribes-for-votes scandal in Congress .\tDT NN IN NNP POS NN NNP NNP VBZ VBN IN DT JJ NN IN NNP .\nJose Genoino announced his resignation Saturday at a news conference in Sao Paulo .\tNNP NNP VBD PRP$ NN NNP IN DT NN NN IN NNP NNP .\nLater , the party elected Education Minister Tarso Genro as its new leader .\tRB , DT NN VBD NNP NNP NNP NNP IN PRP$ JJ NN .\nMr. Genoino 's resignation comes amid allegations that the Workers Party paid $ 12,000 a month to several lawmakers to win their support on key votes .\tNNP NNP POS NN VBZ IN NNS IN DT NNP NNP VBD $ CD DT NN TO JJ NNS TO VB PRP$ NN IN JJ NNS .\nThe party denies the accusations .\tDT NN VBZ DT NNS .\nMr. Genoino is the latest senior official in President Luiz Inacio Lula da Silva 's government to leave his post .\tNNP NNP VBZ DT JJS JJ NN IN NNP NNP NNP NNP NNP NNP POS NN TO VB PRP$ NN .\nBoth the party treasurer and secretary-general stepped down recently .\tDT DT NN NN CC NN VBD RB RB .\nThe scandal also forced presidential chief of staff Jose Dirceu to resign last month .\tDT NN RB VBD JJ NN IN NN NNP NNP TO VB JJ NN .\nPresident da Silva has been reshuffling his Cabinet to boost support for his governing coalition .\tNNP NNP NNP VBZ VBN VBG PRP$ NN TO VB NN IN PRP$ NN NN .\nSwiss food giant Nestle has resumed operations in Zimbabwe , after resolving a dispute with the government .\tJJ NN NN NNP VBZ VBN NNS IN NNP , IN VBG DT NN IN DT NN .\nNestle officials said Tuesday that government officials have assured the company they will not interfere with its business .\tNNP NNS VBD NNP IN NN NNS VBP VBN DT NN PRP MD RB VB IN PRP$ NN .\nNestle shut down its factory in Harare last month , citing harassment by Zimbabwean authorities .\tNNP VBD RP PRP$ NN IN NNP JJ NN , VBG NN IN JJ NNS .\nIt said officials had forced staff to accept milk from ' non-contracted suppliers ' and also questioned two managers .\tPRP VBD NNS VBD VBN NN TO VB NN IN `` JJ NNS `` CC RB VBD CD NNS .\nThe company had said in October that it would not buy milk from a farm owned by the wife of President Robert Mugabe .\tDT NN VBD VBN IN NNP IN PRP MD RB VB NN IN DT NN VBN IN DT NN IN NNP NNP NNP .\nThe farm had been seized from white farmers under Mr. Mugabe 's controversial land reform program .\tDT NN VBD VBN VBN IN JJ NNS IN NNP NNP POS JJ NN NN NN .\nCritics say the Mugabe government 's seizure of white-owned commercial farms has devastated Zimbabwe 's economy .\tNNS VBP DT NNP NN POS NN IN JJ JJ NNS VBZ VBN NNP POS NN .\nMr. Mugabe was forced to accept a power-sharing agreement with the longtime opposition MDC party last year .\tNNP NNP VBD VBN TO VB DT JJ NN IN DT JJ NN NNP NN JJ NN .\nThe trouble that began on Wall Street is beginning to trickle down to Main Street , as small businesses find credit tightening up .\tDT NN WDT VBD IN NNP NNP VBZ VBG TO VB RP TO NNP NNP , IN JJ NNS VBP NN VBG RP .\nMany banks are wary about lending until it 's clear who will take responsibility for the bad debt they are carrying .\tJJ NNS VBP JJ IN VBG IN PRP VBZ JJ WP MD VB NN IN DT JJ NN PRP VBP VBG .\nMany small business owners are finding it hard to borrow to finance their operations , and they worry about whether their customers will be able to buy their products .\tJJ JJ NN NNS VBP VBG PRP JJ TO VB TO VB PRP$ NNS , CC PRP VBP IN IN PRP$ NNS MD VB JJ TO VB PRP$ NNS .\nLeta Hong Fincher has more .\tNNP NNP NNP VBZ RBR .\nPakistani police say a bomb has exploded outside a Shi'ite mosque in the country 's northwest , killing at least four people .\tJJ NNS VBP DT NN VBZ VBN IN DT NNP NN IN DT NN POS JJS , VBG IN JJS CD NNS .\nThe bomb went off in the city of Dera Ismail Khan Monday as worshipers were leaving the mosque after evening prayers .\tDT NN VBD RB IN DT NN IN NNP NNP NNP NNP IN NNS VBD VBG DT NN IN NN NNS .\nThe explosion destroyed parts of the mosque and wounded at least two people .\tDT NN VBD NNS IN DT NN CC VBD IN JJS CD NNS .\nPolice say they suspect the bomb was on a timer .\tNNS VBP PRP VBP DT NN VBD IN DT NN .\nThey do not know who planted the device .\tPRP VBP RB VB WP VBD DT NN .\nDera Ismail Khan in North West Frontier Province has a history of sectarian violence .\tNNP NNP NNP IN NNP NNP NNP NNP VBZ DT NN IN JJ NN .\nLast month , gunmen killed at least six Shi'ite Muslims in two suspected sectarian attacks in Dera Ismail Khan .\tJJ NN , NNS VBD IN JJS CD NNP NNPS IN CD JJ JJ NNS IN NNP NNP NNP .\nMost Pakistanis are Sunni Muslims , but Shi'ites make up about 20 percent of the country 's 160 million people .\tJJS NNS VBP NNP NNPS , CC NNS VBP RP IN CD NN IN DT NN POS CD CD NNS .\nThe communities generally coexist peacefully , but militants from both sides have attacked each other since the 1980s .\tDT NNS RB VBP RB , CC NNS IN DT NNS VBP VBN DT NN IN DT NNS .\nA strong earthquake has struck off the coast of Indonesia , but no tsunami alert was issued .\tDT JJ NN VBZ VBN RP DT NN IN NNP , CC DT NN NN VBD VBN .\nThe U.S. Geological Survey reported a 6.1 magnitude earthquake south of the main island of Java on Monday .\tDT NNP NNP NNP VBD DT CD NN NN NN IN DT JJ NN IN NNP IN NNP .\nThe quake struck about 15 kilometers under the sea .\tDT NN VBD IN CD NNS IN DT NN .\nThere were no immediate reports of injuries or damage .\tEX VBD DT JJ NNS IN NNS CC NN .\nAnother earthquake that struck off Java 's southern coast last week killed at least 64 people and damaged or destroyed more than 87,000 homes .\tDT NN WDT VBD RP NNP POS JJ NN JJ NN VBD IN JJS CD NNS CC VBN CC VBN JJR IN CD NNS .\nThat magnitude-7.0 earthquake shook buildings and caused panic in the capital , Jakarta , about 200 kilometers away .\tDT JJ NN VBD NNS CC VBD NN IN DT NN , NNP , IN CD NNS RB .\nIndonesia 's 18,000 islands sit atop tectonic plates that frequently slam together to cause massive earthquakes .\tNNP POS CD NNS VBP IN JJ NNS WDT RB VBP RB TO VB JJ NNS .\nIraqi officials say they have stepped up security measures ahead of the Asia Cup final match between Iraq and Saudi Arabia to be played in Jakarta Sunday .\tJJ NNS VBP PRP VBP VBN RP NN NNS RB IN DT NNP NNP JJ NN IN NNP CC NNP NNP TO VB VBN IN NNP NNP .\nAfter last week 's semi-final victory against South Korea , 50 people were killed and 130 others wounded by two car bombs , when thousands of Iraqis poured into the streets to celebrate .\tIN JJ NN POS JJ NN IN NNP NNP , CD NNS VBD VBN CC CD NNS VBN IN CD NN NNS , WRB NNS IN NNS VBD IN DT NNS TO VB .\nAuthorities have announced a vehicle ban in parts of Iraq ahead of the game Outside the capital , U.S. military officials said coalition forces killed eight terrorists and detained 22 other suspects during operations Sunday targeting al-Qaida members across central Iraq .\tNNS VBP VBN DT NN NN IN NNS IN NNP RB IN DT NN IN DT NN , NNP JJ NNS VBD NN NNS VBD CD NNS CC VBD CD JJ NNS IN NNS NNP VBG NNP NNS IN JJ NNP .\nThe military also says the troops killed seven terrorists and detained one person during an operation near Muqudadiyah Wednesday and Thursday .\tDT NN RB VBZ DT NNS VBD CD NNS CC VBD CD NN IN DT NN IN NNP NNP CC NNP .\nEarlier , U.S. military said coalition forces captured 16 suspected terrorists in raids Saturday targeting al-Qaida in Iraq .\tRB , NNP NN VBD NN NNS VBD CD JJ NNS IN NNS NNP VBG NNP IN NNP .\nToday , April 22 is Earth Day , a global event that began in 1970 and is credited by some with giving birth to the modern environmental movement .\tNN , NNP CD VBZ NNP NNP , DT JJ NN WDT VBD IN CD CC VBZ VBN IN DT IN VBG NN TO DT JJ JJ NN .\nEarth Day grew from an annual event in the United States to a global event in about 180 countries .\tNNP NNP VBD IN DT JJ NN IN DT NNP NNPS TO DT JJ NN IN IN CD NNS .\nIt 's a day of celebration in some places , but has also turned into a day of action and reflection and conversation and sometimes protest about the situation with our environment , particularly climate change .\tPRP VBZ DT NN IN NN IN DT NNS , CC VBZ RB VBN IN DT NN IN NN CC NN CC NN CC RB VB IN DT NN IN PRP$ NN , RB NN NN .\nVOA 's Paul Sisco has more .\tNNP POS NNP NNP VBZ RBR .\nSix people are missing and at least 42 injured after an explosion ripped through a sugar refinery in the southeastern U.S. city of Savannah , in the state of Georgia .\tCD NNS VBP VBG CC IN JJS CD NN IN DT NN VBN IN DT NN NN IN DT JJ NNP NN IN NNP , IN DT NN IN NNP .\nThe blast caused a massive fire that firefighters were still trying to bring under control more than 12 hours after the explosion .\tDT NN VBD DT JJ NN IN NNS VBD RB VBG TO VB IN NN RBR IN CD NNS IN DT NN .\nThe refinery is owned by Imperial Sugar Company .\tDT NN VBZ VBN IN NNP NNP NN .\nA company spokesman says the blast tore through a silo where refined sugar is kept .\tDT NN NN VBZ DT NN VBD IN DT NN WRB JJ NN VBZ VBN .\n"
  },
  {
    "path": "P010Model/model_transformer.py",
    "content": "#!/usr/bin/env python\n# coding: utf-8\n\n# In[1]:\n\n\nimport copy\nimport math\nimport time\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom torch.autograd import Variable\n\n\n# In[2]:\n\n\nclass EncoderDecoder(nn.Module):\n    \"\"\"\n    标准的Encoder-Decoder架构， 许多其他模型的以此为基础。 \n    \"\"\"\n    def __init__(self, encoder, decoder, src_embed, tgt_embed, generator):\n        super(EncoderDecoder, self).__init__()\n        self.encoder = encoder\n        self.decoder = decoder\n        self.src_embed = src_embed   # ？\n        self.tgt_embed = tgt_embed   # ？\n        self.generator = generator   # ？\n        \n    def forward(self, src, tgt, src_mask, tgt_mask):\n        \"\"\"\n        Take in and process masked src and target sequences.\n        接收和处理masked后的原序列，以及目标序列。？\n        \"\"\"\n        return self.decode(self.encode(src, src_mask), src_mask,\n                            tgt, tgt_mask)\n    \n    def encode(self, src, src_mask):\n        return self.encoder(self.src_embed(src), src_mask)\n    \n    def decode(self, memory, src_mask, tgt, tgt_mask):\n        return self.decoder(self.tgt_embed(tgt), memory, src_mask, tgt_mask)\n\n\nclass Generator(nn.Module):\n    \"\"\"\n    Define standard linear + softmax generation step.\n    定义标准的linear + softmax 生成步骤。\n    \"\"\"\n    def __init__(self, d_model, vocab):\n        super(Generator, self).__init__()\n        self.proj = nn.Linear(d_model, vocab)\n\n    def forward(self, x):\n        return F.log_softmax(self.proj(x), dim=-1)\n\n\n# Encoder部分\ndef clones(module, N):\n    \"\"\"\n    Produce N identical layers.\n    产生N个相同的层。\n    \"\"\"\n    return nn.ModuleList([copy.deepcopy(module) for _ in range(N)])\n\n\nclass Encoder(nn.Module):\n    \"Core encoder is a stack of N layers\"\n    def __init__(self, layer, N):\n        super(Encoder, self).__init__()\n        self.layers = clones(layer, N)\n        self.norm = LayerNorm(layer.size)\n        \n    def forward(self, x, mask):\n        \"Pass the input (and mask) through each layer in turn.\"\n        for layer in self.layers:\n            x = layer(x, mask)\n        return self.norm(x)\n\nclass LayerNorm(nn.Module):\n    \"Construct a layernorm module (See citation for details).\"\n    def __init__(self, features, eps=1e-6):\n        super(LayerNorm, self).__init__()\n        self.a_2 = nn.Parameter(torch.ones(features))\n        self.b_2 = nn.Parameter(torch.zeros(features))\n        self.eps = eps\n\n    def forward(self, x):\n        mean = x.mean(-1, keepdim=True)\n        std = x.std(-1, keepdim=True)\n        return self.a_2 * (x - mean) / (std + self.eps) + self.b_2\n\n\nclass SublayerConnection(nn.Module):\n    \"\"\"\n    A residual connection followed by a layer norm.\n    Note for code simplicity the norm is first as opposed to last.\n    \"\"\"\n    def __init__(self, size, dropout):\n        super(SublayerConnection, self).__init__()\n        self.norm = LayerNorm(size)\n        self.dropout = nn.Dropout(dropout)\n\n    def forward(self, x, sublayer):\n        \"Apply residual connection to any sublayer with the same size.\"\n        return x + self.dropout(sublayer(self.norm(x)))\n\nclass EncoderLayer(nn.Module):\n    \"Encoder is made up of self-attn and feed forward (defined below)\"\n    def __init__(self, size, self_attn, feed_forward, dropout):\n        super(EncoderLayer, self).__init__()\n        self.self_attn = self_attn\n        self.feed_forward = feed_forward\n        self.sublayer = clones(SublayerConnection(size, dropout), 2)\n        self.size = size\n\n    def forward(self, x, mask):\n        \"Follow Figure 1 (left) for connections.\"\n        x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, mask))\n        return self.sublayer[1](x, self.feed_forward)\n\n\n\n# Decoder部分\nclass Decoder(nn.Module):\n    \"Generic N layer decoder with masking.\"\n    def __init__(self, layer, N):\n        super(Decoder, self).__init__()\n        self.layers = clones(layer, N)\n        self.norm = LayerNorm(layer.size)\n        \n    def forward(self, x, memory, src_mask, tgt_mask):\n        for layer in self.layers:\n            x = layer(x, memory, src_mask, tgt_mask)\n        return self.norm(x)\n\n\nclass DecoderLayer(nn.Module):\n    \"Decoder is made of self-attn, src-attn, and feed forward (defined below)\"\n    def __init__(self, size, self_attn, src_attn, feed_forward, dropout):\n        super(DecoderLayer, self).__init__()\n        self.size = size\n        self.self_attn = self_attn\n        self.src_attn = src_attn\n        self.feed_forward = feed_forward\n        self.sublayer = clones(SublayerConnection(size, dropout), 3)\n \n    def forward(self, x, memory, src_mask, tgt_mask):\n        \"Follow Figure 1 (right) for connections.\"\n        m = memory\n        x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, tgt_mask))\n        x = self.sublayer[1](x, lambda x: self.src_attn(x, m, m, src_mask))\n        return self.sublayer[2](x, self.feed_forward)\n\ndef subsequent_mask(size):\n    \"Mask out subsequent positions.\"\n    attn_shape = (1, size, size)\n    subsequent_mask = np.triu(np.ones(attn_shape), k=1).astype('uint8')\n    return torch.from_numpy(subsequent_mask) == 0\n\n\n# Attention\ndef attention(query, key, value, mask=None, dropout=None):\n    \"Compute 'Scaled Dot Product Attention'\"\n    d_k = query.size(-1)\n    # [B, h, L, L]\n    scores = torch.matmul(query, key.transpose(-2, -1))              / math.sqrt(d_k)\n    if mask is not None:\n        scores = scores.masked_fill(mask == 0, -1e9)\n    p_attn = F.softmax(scores, dim = -1)\n    if dropout is not None:\n        p_attn = dropout(p_attn)\n    return torch.matmul(p_attn, value), p_attn\n\n\nclass MultiHeadedAttention(nn.Module):\n    def __init__(self, h, d_model, dropout=0.1):\n        \"Take in model size and number of heads.\"\n        super(MultiHeadedAttention, self).__init__()\n        assert d_model % h == 0\n        # We assume d_v always equals d_k\n        self.d_k = d_model // h\n        self.h = h\n        self.linears = clones(nn.Linear(d_model, d_model), 4)\n        self.attn = None\n        self.dropout = nn.Dropout(p=dropout)\n        \n    def forward(self, query, key, value, mask=None):\n        \"Implements Figure 2\"\n        if mask is not None:\n            # Same mask applied to all h heads.\n            mask = mask.unsqueeze(1)\n        nbatches = query.size(0)\n        \n        # 1) Do all the linear projections in batch from d_model => h x d_k \n        query, key, value =             [l(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2)\n             for l, x in zip(self.linears, (query, key, value))]\n        \n        # 2) Apply attention on all the projected vectors in batch. \n        x, self.attn = attention(query, key, value, mask=mask, \n                                 dropout=self.dropout)\n        \n        # 3) \"Concat\" using a view and apply a final linear. \n        x = x.transpose(1, 2).contiguous()              .view(nbatches, -1, self.h * self.d_k)\n        return self.linears[-1](x)\n\n    \n# Position-wise Feed-Forward Networks\nclass PositionwiseFeedForward(nn.Module):\n    \"Implements FFN equation.\"\n    def __init__(self, d_model, d_ff, dropout=0.1):\n        super(PositionwiseFeedForward, self).__init__()\n        self.w_1 = nn.Linear(d_model, d_ff)\n        self.w_2 = nn.Linear(d_ff, d_model)\n        self.dropout = nn.Dropout(dropout)\n\n    def forward(self, x):\n        return self.w_2(self.dropout(F.relu(self.w_1(x))))\n\n# Embeddings and Softmax\nclass Embeddings(nn.Module):\n    def __init__(self, d_model, vocab):\n        super(Embeddings, self).__init__()\n        self.lut = nn.Embedding(vocab, d_model)\n        self.d_model = d_model\n\n    def forward(self, x):\n        return self.lut(x) * math.sqrt(self.d_model)\n\n\n# Positional Encoding\nclass PositionalEncoding(nn.Module):\n    \"Implement the PE function.\"\n    def __init__(self, d_model, dropout, max_len=5000):\n        super(PositionalEncoding, self).__init__()\n        self.dropout = nn.Dropout(p=dropout)\n        \n        # Compute the positional encodings once in log space.\n        pe = torch.zeros(max_len, d_model)\n        position = torch.arange(0, max_len, 1.0).unsqueeze(1)\n        div_term = torch.exp(torch.arange(0, d_model, 2.0) *\n                             -(math.log(10000.0) / d_model))\n        \n        pe[:, 0::2] = torch.sin(position * div_term)    # 偶数列\n        pe[:, 1::2] = torch.cos(position * div_term)    # 奇数列\n        pe = pe.unsqueeze(0)   # [1, max_len, d_model]\n        self.register_buffer('pe', pe)\n        \n    def forward(self, x):\n        x = x + Variable(self.pe[:, :x.size(1)], \n                         requires_grad=False)\n        return self.dropout(x)\n\n\n#==========#\n# 定义一个接受超参数并生成完整模型的函数。\ndef make_model(src_vocab, tgt_vocab, N=6, \n               d_model=512, d_ff=2048, h=8, dropout=0.1):\n    \"Helper: Construct a model from hyperparameters.\"\n    c = copy.deepcopy\n    attn = MultiHeadedAttention(h, d_model)\n    ff = PositionwiseFeedForward(d_model, d_ff, dropout)\n    position = PositionalEncoding(d_model, dropout)\n    model = EncoderDecoder(\n        Encoder(EncoderLayer(d_model, c(attn), c(ff), dropout), N),\n        Decoder(DecoderLayer(d_model, c(attn), c(attn), \n                             c(ff), dropout), N),\n        nn.Sequential(Embeddings(d_model, src_vocab), c(position)),\n        nn.Sequential(Embeddings(d_model, tgt_vocab), c(position)),\n        Generator(d_model, tgt_vocab))\n    \n    # This was important from their code. \n    # Initialize parameters with Glorot / fan_avg.\n    for p in model.parameters():\n        if p.dim() > 1:\n            nn.init.xavier_uniform_(p)\n    return model\n\n\n# In[3]:\n\n\n## MultiHeadedAttention 测试\nclass MultiHeadedAttention(nn.Module):\n    def __init__(self, h, d_model, dropout=0.1):\n        \"Take in model size and number of heads.\"\n        super(MultiHeadedAttention, self).__init__()\n        assert d_model % h == 0\n        # We assume d_v always equals d_k\n        self.d_k = d_model // h\n        self.h = h\n        self.linears = clones(nn.Linear(d_model, d_model), 4)\n        self.attn = None\n        self.dropout = nn.Dropout(p=dropout)\n        \n    def forward(self, query, key, value, mask=None):\n        \"\"\"\n        实现MultiHeadedAttention。\n           输入的q/k/v是形状 [batch, L, d_model]。\n           输出的x 的形状同上。\n        \"\"\"\n        if mask is not None:\n            # Same mask applied to all h heads.\n            mask = mask.unsqueeze(1)\n        nbatches = query.size(0)\n        \n        # 1) 这一步qkv变化:[batch, L, d_model] ->[batch, h, L, d_model/h] \n        query, key, value =             [l(x).view(nbatches, -1, self.h, self.d_k).transpose(1, 2)\n             for l, x in zip(self.linears, (query, key, value))]\n        \n        # 2) 计算注意力attn 得到attn*v 与attn\n        # qkv :[batch, h, L, d_model/h] -->x:[b, h, L, d_model/h], attn[b, h, L, L]\n        x, self.attn = attention(query, key, value, mask=mask, \n                                 dropout=self.dropout)\n        # 3) 上一步的结果合并在一起还原成原始输入序列的形状\n        x = x.transpose(1, 2).contiguous()              .view(nbatches, -1, self.h * self.d_k)\n        # 最后再过一个线性层\n        return self.linears[-1](x)\n\n\n# In[4]:\n\n\nbatch_size=16\nL = 50\nd_model = 512\nh = 8\nx = torch.randn(batch_size, L, d_model)\nx.size()\n\n\n# In[5]:\n\n\nobj = MultiHeadedAttention(8, 512)\n\n\n# In[6]:\n\n\n# obj.forward(x,x,x,mask=None)\n# X是一个序列，X的Embedding + posEmbedding 输入Encoder，这个输入我们称为 X_emb_pos\n# Encoder有6个子结构串行，第一个的输出结果，作为第二个的输入，以此类推得到最后一个子结构的输出。\n# 第一个子结构接受输入X_emb_pos 后，按照维度平均拆分成8个，比如如果X_emb_pos的维度是512 ，拆分后的维度就是512/8=64维。\n# 这8个tensor 分别做self-attention，这个部分是8个一起并行的 ，然后得到8个结果再合并在一起，进行Norm ，norm之后再输入FFN，之后再经过norm之后输入下一个子结构。\n\n\n\n# In[7]:\n\n\"\"\"\nq = torch.randn(2,10, 512)  # 序列输入x\nline_net = clones(nn.Linear(512, 512), 4)\n\nq, k, v = [l(x).view(2, -1, 8, 64).transpose(1,2) for l,x in zip(line_net, (q, q, q))]\nprint(k.size(), k.transpose(-2, -1).size())\nd_k = d_model//h\nprint(\"d_k:\", d_k)\nscores = torch.matmul(q, k.transpose(-2, -1)) / math.sqrt(d_k)\nprint(\"soc:\", scores.size())\nattn = F.softmax(scores, dim = -1)\nprint(\"attn size: \", attn.size())\nr_x = torch.matmul(attn, v)\nprint(r_x.size())\n\nout = r_x.transpose(1, 2).contiguous().view(2, -1, 8 * 64)\nprint(out.size())  # [2, 10, 512]\n\n\n# In[8]:\n\n\n# 在位置编码下方，将基于位置添加正弦波。对于每个维度，波的频率和偏移都不同。\nplt.figure(figsize=(15, 5))\n\npe = PositionalEncoding(20, 0)\ny = pe.forward(Variable(torch.zeros(1, 100, 20)))\nplt.plot(np.arange(100), y[0, :, 4:8].data.numpy())\nplt.legend([\"dim %d\"%p for p in [4,5,6,7]])\n\"\"\"\n\n# ## posembbeding的理解\n# - 同一维度（一个单词本来有多个维度，为了可视化，选取一个维度）对比不同位置的单词在同一维度是有相对关系的，符合某个正弦或者余弦波。\n# - 一个序列各个单词的位置都具有相对性。\n\n# ## Training 训练方案\n# ----\n# - 定义个一个Batch对象\n# - \n\n# In[9]:\n\n\nclass Batch(object):\n    \"定义一个训练时需要的批次数据对象，封装了用于训练的src和tgt句子，以及mask\"\n    def __init__(self, src, trg=None, pad=0):\n        self.src = src\n        self.src_mask = (src != pad).unsqueeze(-2)\n        if trg is not None:\n            self.trg = trg[:, :-1]\n            self.trg_y = trg[:, 1:]\n            self.trg_mask =                 self.make_std_mask(self.trg, pad)\n            self.ntokens = (self.trg_y != pad).data.sum()\n    \n    @staticmethod\n    def make_std_mask(tgt, pad):\n        \"Create a mask to hide padding and future words.\"\n        tgt_mask = (tgt != pad).unsqueeze(-2)\n        tgt_mask = tgt_mask & Variable(\n            subsequent_mask(tgt.size(-1)).type_as(tgt_mask.data))\n        return tgt_mask\n\n\n# In[10]:\n\n\n# 定义一个训练函数用于训练和计算损失、更新梯度\n\n\n# In[33]:\n\n\ndef run_epoch(data_iter, model, loss_compute, device):\n    \"\"\"提供训练和日志功能\"\"\"\n    start = time.time()\n    total_tokens = 0\n    total_loss = 0\n    tokens = 0\n    for i, batch in enumerate(data_iter):\n        src = batch.src.to(device)\n        trg = batch.trg.to(device)\n        src_mask = batch.src_mask.to(device)\n        trg_mask = batch.trg_mask.to(device)\n        trg_y = batch.trg_y.to(device)\n        out = model.forward(src, trg, src_mask,trg_mask)\n        \n        loss = loss_compute(out, trg_y, batch.ntokens.to(device))\n        total_loss += loss.item()\n        total_tokens += batch.ntokens\n        tokens += batch.ntokens\n        if i % 50 == 1:\n            elapsed = time.time() - start\n            print(\"Epoch Step: %d Loss: %f Tokens per Sec: %f\" %\n                    (i, loss / batch.ntokens, tokens / elapsed))\n            start = time.time()\n            tokens = 0\n    return total_loss / total_tokens\n\n\n# ## 训练数据与批次\n# - 使用XX数据集\n# - 使用torchtext来处理数据？\n\n# In[12]:\n\n\nglobal max_src_in_batch, max_tgt_in_batch\ndef batch_size_fn(new, count, sofar):\n    \"Keep augmenting batch and calculate total number of tokens + padding.\"\n    global max_src_in_batch, max_tgt_in_batch\n    if count == 1:\n        max_src_in_batch = 0\n        max_tgt_in_batch = 0\n    max_src_in_batch = max(max_src_in_batch,  len(new.src))\n    max_tgt_in_batch = max(max_tgt_in_batch,  len(new.trg) + 2)\n    src_elements = count * max_src_in_batch\n    tgt_elements = count * max_tgt_in_batch\n    return max(src_elements, tgt_elements)\n\n\n# ## 硬件情况和时间表\n# \n# - 我们在一台配备8个NVIDIA P100 GPU的计算机上训练了模型。\n# - 对于使用本文所述的超参数的基本模型，每个训练步骤大约需要0.4秒。\n# - 我们对基本模型进行了总共100_000步或12个小时的训练。\n# - 对于我们的大型模型，步长为1.0秒。大型模型接受了300,000步（3.5天）的训练。\n# \n# ## Optimizer\n# -  使用Adam优化器，其中β1= 0.9，β2= 0.98和ϵ = 10-9。\n# - 根据以下公式在训练过程中改变学习率：$lrate =d_{model}^{-0.5} * min（step\\_num^{-0.5}, step\\_num * warmup\\_steps ^{-1.5}）$\n# - 也就是训练步数在$warmup\\_steps内，线性增加学习率；之后的训练，按步数的负1.5平方成比例地减小学习率。我们使用了$warmup\\_steps= 4000$。\n\n# In[13]:\n\n\nclass NoamOpt(object):\n    \"Optim wrapper that implements rate.\"\n    def __init__(self, model_size, factor, warmup, optimizer):\n        self.optimizer = optimizer\n        self._step = 0\n        self.warmup = warmup\n        self.factor = factor\n        self.model_size = model_size\n        self._rate = 0\n        \n    def step(self):\n        \"Update parameters and rate\"\n        self._step += 1\n        rate = self.rate()\n        for p in self.optimizer.param_groups:\n            p['lr'] = rate\n        self._rate = rate\n        self.optimizer.step()\n        \n    def rate(self, step = None):\n        \"Implement `lrate` above\"\n        if step is None:\n            step = self._step\n        return self.factor *             (self.model_size ** (-0.5) *\n            min(step ** (-0.5), step * self.warmup ** (-1.5)))\n        \ndef get_std_opt(model):\n    return NoamOpt(model.src_embed[0].d_model, 2, 4000,\n            torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9))\n\n\n# In[14]:\n\"\"\"\n\n# 不同大小与不同超参模型的学习率曲线\nopts = [NoamOpt(512, 1, 4000, None), \n        NoamOpt(512, 1, 8000, None),\n        NoamOpt(256, 1, 4000, None)]\nplt.plot(np.arange(1, 20000), [[opt.rate(i) for opt in opts] for i in range(1, 20000)])\nplt.legend([\"512:4000\", \"512:8000\", \"256:4000\"])\n\n\n# ## 正如我们所分析，先线性增加，然后再逐渐减小。\n# ---\n# \n# ## 正则化\n# ### 标签平滑\n# - 在训练期间，我们采用ϵls = 0.1的标签平滑。随着模型训练变得更加不确定，这会增加困惑度perplexity，但会提高准确率（accuracy）和BLEU分数。\n# - 使用KL div损失实现标签平滑，而不是使用one-hot目标分布，我们创建的分布具有对正确单词的置信度以及其余平滑质量分布在整个词汇表中的置信度。\n\"\"\"\n# In[15]:\n\n\nclass LabelSmoothing(nn.Module):\n    \"实现labelsmoothing.\"\n    def __init__(self, size, padding_idx, smoothing=0.0):\n        super(LabelSmoothing, self).__init__()\n        self.criterion = nn.KLDivLoss(size_average=False)\n        self.padding_idx = padding_idx\n        self.confidence = 1.0 - smoothing\n        self.smoothing = smoothing\n        self.size = size\n        self.true_dist = None\n        \n    def forward(self, x, target):\n        assert x.size(1) == self.size\n        true_dist = x.data.clone()\n        true_dist.fill_(self.smoothing / (self.size - 2))\n        true_dist.scatter_(1, target.data.unsqueeze(1), self.confidence)\n        true_dist[:, self.padding_idx] = 0\n        mask = torch.nonzero(target.data == self.padding_idx)\n        if mask.dim() > 0:\n            true_dist.index_fill_(0, mask.squeeze(), 0.0)\n        self.true_dist = true_dist\n        return self.criterion(x, Variable(true_dist, requires_grad=False))\n\n\n# ## 例子\n# - \n\n# In[16]:\n\"\"\"\n\n# Example of label smoothing.\ncrit = LabelSmoothing(5, 0, 0.4)\npredict = torch.FloatTensor([[0, 0.2, 0.7, 0.1, 0],\n                             [0, 0.2, 0.7, 0.1, 0], \n                             [0, 0.2, 0.7, 0.1, 0]])\nv = crit(Variable(predict.log()), \n         Variable(torch.LongTensor([2, 1, 0])))\n\n# Show the target distributions expected by the system.\nplt.imshow(crit.true_dist)\n\n\n# In[17]:\n\n\ncrit = LabelSmoothing(5, 0, 0.1)\ndef loss(x):\n    d = x + 3 * 1\n    predict = torch.FloatTensor([[0, x / d, 1 / d, 1 / d, 1 / d],\n                                 ])\n    #print(predict)\n    return crit(Variable(predict.log()), Variable(torch.LongTensor([1]))).item()\nplt.plot(np.arange(1, 100), [loss(x) for x in range(1, 100)])\n\"\"\"\n\n# ## 用一个小例子测试一下\n# - 构造数据\n\n# In[18]:\n\n\n## 数据生成\ndef data_gen(V, batch, nbatches):\n    \"Generate random data for a src-tgt copy task.\"\n    for i in range(nbatches):\n        data = torch.from_numpy(np.random.randint(1, V, size=(batch, 10)))\n        data[:, 0] = 1\n        src = Variable(data, requires_grad=False)\n        tgt = Variable(data, requires_grad=False)\n        yield Batch(src, tgt, 0)\n\n\n# In[30]:\n\n\n## 计算损失\nclass SimpleLossCompute(object):\n    \"A simple loss compute and train function.\"\n    def __init__(self, generator, criterion, opt=None):\n        self.generator = generator\n        self.criterion = criterion\n        self.opt = opt\n        \n    def __call__(self, x, y, norm):\n        print(\"norm:\", norm)\n        x = self.generator(x)\n        print(\"x\", type(x))\n        loss = self.criterion(x.contiguous().view(-1, x.size(-1)), \n                              y.contiguous().view(-1)) / norm\n        loss.backward()\n        if self.opt is not None:\n            self.opt.step()\n            self.opt.optimizer.zero_grad()\n            # loss.data[0]*norm\n        print(\"loss\", loss, type(loss))\n        return loss * norm\n\n\n# In[31]:\n\n\n# 贪婪解码\n# Train the simple copy task.\nV = 11\ndevice = torch.device(\"cuda:0\" if torch.cuda.is_available() else \"cpu\")\ncriterion = LabelSmoothing(size=V, padding_idx=0, smoothing=0.0)\nmodel = make_model(V, V, N=2)\nmodel = model.to(device)\nmodel_opt = NoamOpt(model.src_embed[0].d_model, 1, 400,\n        torch.optim.Adam(model.parameters(), lr=0, betas=(0.9, 0.98), eps=1e-9))\n\n\n# In[ ]:\n\n\nfor epoch in range(10):\n    model.train()\n    print(\"Start train....\")\n    loss_func = SimpleLossCompute(model.generator, criterion, model_opt)\n    print(\"lossfunc...........\")\n    run_epoch(data_gen(V, 30, 20), model, loss_func, device)\n    # model.eval()\n    # print(run_epoch(data_gen(V, 30, 5), model, SimpleLossCompute(model.generator, criterion, None), device))\n    break\n\n\n# In[1]:\n\n\n# get_ipython().system('nvidia-smi')\n\n\n# In[ ]:\n\n\n\n\n"
  },
  {
    "path": "P011WordSegmenting/chinese_word_segmenting.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import jieba\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 结巴分词的三种模式\\n\",\n    \"### 1 默认模式\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"s = \\\"小华毕业于中国科学院大学，后赴美深造。\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Building prefix dict from the default dictionary ...\\n\",\n      \"Loading model from cache /tmp/jieba.cache\\n\",\n      \"Loading model cost 1.037 seconds.\\n\",\n      \"Prefix dict has been built succesfully.\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"['小华', '毕业', '于', '中国科学院', '大学', '，', '后', '赴美', '深造', '。']\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(list(jieba.cut(s)))  # 默认模式\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"['小', '华', '毕业', '于', '中国科学院', '大学', '，', '后', '赴美', '深造', '。']\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(list(jieba.cut(s, HMM=False)))  # 默认模式关闭隐马尔科夫， 小华不能准确分出来\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 2 全模式\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"words = jieba.cut(s, cut_all=True)  # 全模式\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"['小', '华', '毕业', '于', '中国', '中国科学院', '科学', '科学院', '学院', '大学', '', '', '后', '赴美', '深造', '', '']\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(list(words))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"['小', '华', '毕业', '于', '中国', '中国科学院', '科学', '科学院', '学院', '大学', '', '', '后', '赴美', '深造', '', '']\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(list(jieba.cut(s, cut_all=True, HMM=False)))  # 关闭HMM的全模式\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 3 搜索引擎模式\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"['小华', '毕业', '于', '中国', '科学', '学院', '科学院', '中国科学院', '大学', '，', '后', '赴美', '深造', '。']\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"seg_list = jieba.cut_for_search(s) # 搜索引擎模式\\n\",\n    \"print(list(seg_list))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.8\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P012translate/machine_translation.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 机器翻译\\n\",\n    \"- 编码器--解码器\\n\",\n    \"- 注意力机制\\n\",\n    \"- 主要步骤\\n\",\n    \"    - 1 读取和预处理数据\\n\",\n    \"    - 2 注意力机制的编码器解码器(模型)\\n\",\n    \"    - 3 训练模型\\n\",\n    \"    - 4 预测不定长序列\\n\",\n    \"    - 5 评价翻译结果\\n\",\n    \"    \\n\",\n    \"## 1 读取和预处理数据\\n\",\n    \"- 我们先定义一些特殊符号。其中$<pad>$（padding）符号用来添加在较短序列后，直到每个序列等长，而$<bos>$和$<eos>$符号分别表示序列的开始和结束。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import collections\\n\",\n    \"import os\\n\",\n    \"import io\\n\",\n    \"import math\\n\",\n    \"import torch\\n\",\n    \"from torch import nn\\n\",\n    \"import torch.nn.functional as F\\n\",\n    \"import torchtext.vocab as Vocab\\n\",\n    \"import torch.utils.data as Data\\n\",\n    \"\\n\",\n    \"import sys\\n\",\n    \"sys.path.append(\\\"..\\\") \\n\",\n    \"# import d2lzh_pytorch as d2l\\n\",\n    \"\\n\",\n    \"PAD, BOS, EOS = '<pad>', '<bos>', '<eos>'\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"] = \\\"0\\\"\\n\",\n    \"device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 辅助函数预处理数据\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 将一个序列中所有的词记录在all_tokens中以便之后构造词典，然后在该序列后面添加PAD直到序列\\n\",\n    \"# 长度变为max_seq_len，然后将序列保存在all_seqs中\\n\",\n    \"def process_one_seq(seq_tokens, all_tokens, all_seqs, max_seq_len):\\n\",\n    \"    all_tokens.extend(seq_tokens)\\n\",\n    \"    seq_tokens += [EOS] + [PAD] * (max_seq_len - len(seq_tokens) - 1)\\n\",\n    \"    all_seqs.append(seq_tokens)\\n\",\n    \"\\n\",\n    \"# 使用所有的词来构造词典。并将所有序列中的词变换为词索引后构造Tensor\\n\",\n    \"def build_data(all_tokens, all_seqs):\\n\",\n    \"    vocab = Vocab.Vocab(collections.Counter(all_tokens),\\n\",\n    \"                        specials=[PAD, BOS, EOS])\\n\",\n    \"    indices = [[vocab.stoi[w] for w in seq] for seq in all_seqs]\\n\",\n    \"    return vocab, torch.tensor(indices)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 读取数据/构建词典\\n\",\n    \"- 为了演示方便，我们在这里使用一个很小的法语—英语数据集。在这个数据集里，每一行是一对法语句子和它对应的英语句子，中间使用'\\\\t'隔开。在读取数据时，我们在句末附上$<eos>$符号，并可能通过添加$<pad>$符号使每个序列的长度均为**max_seq_len**。我们为法语词和英语词分别创建词典。法语词的索引和英语词的索引相互独立。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def read_data(max_seq_len):\\n\",\n    \"    # in和out分别是input和output的缩写\\n\",\n    \"    in_tokens, out_tokens, in_seqs, out_seqs = [], [], [], []\\n\",\n    \"    with io.open('data/fr-en-small.txt') as f:\\n\",\n    \"        lines = f.readlines()\\n\",\n    \"    for line in lines:\\n\",\n    \"        in_seq, out_seq = line.rstrip().split('\\\\t')\\n\",\n    \"        in_seq_tokens, out_seq_tokens = in_seq.split(' '), out_seq.split(' ')\\n\",\n    \"        if max(len(in_seq_tokens), len(out_seq_tokens)) > max_seq_len - 1:\\n\",\n    \"            continue  # 如果加上EOS后长于max_seq_len，则忽略掉此样本\\n\",\n    \"        process_one_seq(in_seq_tokens, in_tokens, in_seqs, max_seq_len)\\n\",\n    \"        process_one_seq(out_seq_tokens, out_tokens, out_seqs, max_seq_len)\\n\",\n    \"    in_vocab, in_data = build_data(in_tokens, in_seqs)\\n\",\n    \"    out_vocab, out_data = build_data(out_tokens, out_seqs)\\n\",\n    \"    return in_vocab, out_vocab, Data.TensorDataset(in_data, out_data)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(tensor([ 5,  4, 45,  3,  2,  0,  0]), tensor([ 8,  4, 27,  3,  2,  0,  0]))\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# 将序列的最大长度设成7，然后查看读取到的第一个样本。该样本分别包含法语词索引序列和英语词索引序列。\\n\",\n    \"max_seq_len = 7\\n\",\n    \"in_vocab, out_vocab, dataset = read_data(max_seq_len)\\n\",\n    \"dataset[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 2 模型\\n\",\n    \"- 使用含注意力机制的编码器—解码器来将一段简短的法语翻译成英语。下面我们来介绍模型的实现。\\n\",\n    \"### 编码器\\n\",\n    \"- 在编码器中，我们将输入语言的词索引通过词嵌入层得到词的表征，然后输入到一个多层门控循环单元中。正如我们在6.5节（循环神经网络的简洁实现）中提到的，PyTorch的nn.GRU实例在前向计算后也会分别返回输出和最终时间步的多层隐藏状态。其中的输出指的是最后一层的隐藏层在各个时间步的隐藏状态，并不涉及输出层计算。注意力机制将这些输出作为键项和值项。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class Encoder(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_size, num_hiddens, num_layers,\\n\",\n    \"                 drop_prob=0, **kwargs):\\n\",\n    \"        super(Encoder, self).__init__(**kwargs)\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embed_size)\\n\",\n    \"        self.rnn = nn.GRU(embed_size, num_hiddens, num_layers, dropout=drop_prob)\\n\",\n    \"\\n\",\n    \"    def forward(self, inputs, state):\\n\",\n    \"        # 输入形状是(批量大小, 时间步数)。将输出互换样本维和时间步维\\n\",\n    \"        embedding = self.embedding(inputs.long()).permute(1, 0, 2) # (seq_len, batch, input_size)\\n\",\n    \"        return self.rnn(embedding, state)\\n\",\n    \"\\n\",\n    \"    def begin_state(self):\\n\",\n    \"        return None # 隐藏态初始化为None时PyTorch会自动初始化为0\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### \\n\",\n    \"---\\n\",\n    \"- 下面我们来创建一个批量大小为4、时间步数为7的小批量序列输入。设门控循环单元的隐藏层个数为2，隐藏单元个数为16。编码器对该输入执行前向计算后返回的输出形状为(时间步数, 批量大小, 隐藏单元个数)。门控循环单元在最终时间步的多层隐藏状态的形状为(隐藏层个数, 批量大小, 隐藏单元个数)。对于门控循环单元来说，state就是一个元素，即隐藏状态；如果使用长短期记忆，state是一个元组，包含两个元素即隐藏状态和记忆细胞。\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"(torch.Size([7, 4, 16]), torch.Size([2, 4, 16]))\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"encoder = Encoder(vocab_size=10, embed_size=8, num_hiddens=16, num_layers=2)\\n\",\n    \"output, state = encoder(torch.zeros((4, 7)), encoder.begin_state())\\n\",\n    \"output.shape, state.shape # GRU的state是h, 而LSTM的是一个元组(h, c)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 注意力机制\\n\",\n    \"- 我们将实现注意力机制.定义的函数aa：将输入连结后通过含单隐藏层的多层感知机变换。其中隐藏层的输入是解码器的隐藏状态与编码器在所有时间步上隐藏状态的一一连结，且使用tanh函数作为激活函数。输出层的输出个数为1。两个Linear实例均不使用偏差。其中函数aa定义里向量vv的长度是一个超参数，即attention_size。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def attention_model(input_size, attention_size):\\n\",\n    \"    model = nn.Sequential(nn.Linear(input_size, \\n\",\n    \"                                    attention_size, bias=False),\\n\",\n    \"                          nn.Tanh(),\\n\",\n    \"                          nn.Linear(attention_size, 1, bias=False))\\n\",\n    \"    return model\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- 注意力机制的输入包括查询项、键项和值项。设编码器和解码器的隐藏单元个数相同。这里的查询项为解码器在上一时间步的隐藏状态，形状为(批量大小, 隐藏单元个数)；键项和值项均为编码器在所有时间步的隐藏状态，形状为(时间步数, 批量大小, 隐藏单元个数)。注意力机制返回当前时间步的背景变量，形状为(批量大小, 隐藏单元个数)。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def attention_forward(model, enc_states, dec_state):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    enc_states: (时间步数, 批量大小, 隐藏单元个数)\\n\",\n    \"    dec_state: (批量大小, 隐藏单元个数)\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    # 将解码器隐藏状态广播到和编码器隐藏状态形状相同后进行连结\\n\",\n    \"    dec_states = dec_state.unsqueeze(dim=0).expand_as(enc_states)\\n\",\n    \"    enc_and_dec_states = torch.cat((enc_states, dec_states), dim=2)\\n\",\n    \"    e = model(enc_and_dec_states)  # 形状为(时间步数, 批量大小, 1)\\n\",\n    \"    alpha = F.softmax(e, dim=0)  # 在时间步维度做softmax运算\\n\",\n    \"    return (alpha * enc_states).sum(dim=0)  # 返回背景变量\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- 在下面的例子中，编码器的时间步数为10，批量大小为4，编码器和解码器的隐藏单元个数均为8。注意力机制返回一个小批量的背景向量，每个背景向量的长度等于编码器的隐藏单元个数。因此输出的形状为(4, 8)。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([4, 8])\"\n      ]\n     },\n     \"execution_count\": 9,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"seq_len, batch_size, num_hiddens = 10, 4, 8\\n\",\n    \"model = attention_model(2*num_hiddens, 10) \\n\",\n    \"enc_states = torch.zeros((seq_len, batch_size, num_hiddens))\\n\",\n    \"dec_state = torch.zeros((batch_size, num_hiddens))\\n\",\n    \"attention_forward(model, enc_states, dec_state).shape # torch.Size([4, 8])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"### 含注意力机制的解码器\\n\",\n    \"- 我们直接将编码器在最终时间步的隐藏状态作为解码器的初始隐藏状态。这要求编码器和解码器的循环神经网络使用相同的隐藏层个数和隐藏单元个数。\\n\",\n    \"\\n\",\n    \"- 在解码器的前向计算中，我们先通过刚刚介绍的注意力机制计算得到当前时间步的背景向量。由于解码器的输入来自输出语言的词索引，我们将输入通过词嵌入层得到表征，然后和背景向量在特征维连结。我们将连结后的结果与上一时间步的隐藏状态通过门控循环单元计算出当前时间步的输出与隐藏状态。最后，我们将输出通过全连接层变换为有关各个输出词的预测，形状为(批量大小, 输出词典大小)。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class Decoder(nn.Module):\\n\",\n    \"    def __init__(self, vocab_size, embed_size, num_hiddens, num_layers,\\n\",\n    \"                 attention_size, drop_prob=0):\\n\",\n    \"        super(Decoder, self).__init__()\\n\",\n    \"        self.embedding = nn.Embedding(vocab_size, embed_size)\\n\",\n    \"        self.attention = attention_model(2*num_hiddens, attention_size)\\n\",\n    \"        # GRU的输入包含attention输出的c和实际输入, 所以尺寸是 num_hiddens+embed_size\\n\",\n    \"        self.rnn = nn.GRU(num_hiddens + embed_size, num_hiddens, \\n\",\n    \"                          num_layers, dropout=drop_prob)\\n\",\n    \"        self.out = nn.Linear(num_hiddens, vocab_size)\\n\",\n    \"\\n\",\n    \"    def forward(self, cur_input, state, enc_states):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        cur_input shape: (batch, )\\n\",\n    \"        state shape: (num_layers, batch, num_hiddens)\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        # 使用注意力机制计算背景向量\\n\",\n    \"        c = attention_forward(self.attention, enc_states, state[-1])\\n\",\n    \"        # 将嵌入后的输入和背景向量在特征维连结, (批量大小, num_hiddens+embed_size)\\n\",\n    \"        input_and_c = torch.cat((self.embedding(cur_input), c), dim=1)\\n\",\n    \"        # 为输入和背景向量的连结增加时间步维，时间步个数为1\\n\",\n    \"        output, state = self.rnn(input_and_c.unsqueeze(0), state)\\n\",\n    \"        # 移除时间步维，输出形状为(批量大小, 输出词典大小)\\n\",\n    \"        output = self.out(output).squeeze(dim=0)\\n\",\n    \"        return output, state\\n\",\n    \"\\n\",\n    \"    def begin_state(self, enc_state):\\n\",\n    \"        # 直接将编码器最终时间步的隐藏状态作为解码器的初始隐藏状态\\n\",\n    \"        return enc_state\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 3 训练模型\\n\",\n    \"- 我们先实现batch_loss函数计算一个小批量的损失。解码器在最初时间步的输入是特殊字符BOS。之后，解码器在某时间步的输入为样本输出序列在上一时间步的词，即强制教学。此外，同10.3节（word2vec的实现）中的实现一样，我们在这里也使用掩码变量避免填充项对损失函数计算的影响。\\n\",\n    \"```\\n\",\n    \"elle est vieille .\\tshe is old .\\n\",\n    \"elle est tranquille .\\tshe is quiet .\\n\",\n    \"elle a tort .\\tshe is wrong .\\n\",\n    \"elle est canadienne .\\tshe is canadian .\\n\",\n    \"elle est japonaise .\\tshe is japanese .\\n\",\n    \"ils sont russes .\\tthey are russian .\\n\",\n    \"ils se disputent .\\tthey are arguing .\\n\",\n    \"ils regardent .\\tthey are watching .\\n\",\n    \"ils sont acteurs .\\tthey are actors .\\n\",\n    \"elles sont crevees .\\tthey are exhausted .\\n\",\n    \"il est mon genre !\\the is my type !\\n\",\n    \"il a des ennuis .\\the is in trouble .\\n\",\n    \"c est mon frere .\\the is my brother .\\n\",\n    \"c est mon oncle .\\the is my uncle .\\n\",\n    \"il a environ mon age .\\the is about my age .\\n\",\n    \"elles sont toutes deux bonnes .\\tthey are both good .\\n\",\n    \"elle est bonne nageuse .\\tshe is a good swimmer .\\n\",\n    \"c est une personne adorable .\\the is a lovable person .\\n\",\n    \"il fait du velo .\\the is riding a bicycle .\\n\",\n    \"ils sont de grands amis .\\tthey are great friends .\\n\",\n    \"```\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def batch_loss(encoder, decoder, X, Y, loss):\\n\",\n    \"    batch_size = X.shape[0]\\n\",\n    \"    enc_state = encoder.begin_state()\\n\",\n    \"    enc_outputs, enc_state = encoder(X, enc_state)\\n\",\n    \"    # 初始化解码器的隐藏状态\\n\",\n    \"    dec_state = decoder.begin_state(enc_state)\\n\",\n    \"    # 解码器在最初时间步的输入是BOS\\n\",\n    \"    dec_input = torch.tensor([out_vocab.stoi[BOS]] * batch_size)\\n\",\n    \"    # 我们将使用掩码变量mask来忽略掉标签为填充项PAD的损失\\n\",\n    \"    mask, num_not_pad_tokens = torch.ones(batch_size,), 0\\n\",\n    \"    l = torch.tensor([0.0])\\n\",\n    \"    i = 0\\n\",\n    \"    for y in Y.permute(1,0): # Y shape: (batch, seq_len)\\n\",\n    \"        print(\\\"序列第 [{}]个单词\\\".format(i))\\n\",\n    \"        print(\\\"解码器输入dec_input:\\\", dec_input, )\\n\",\n    \"        dec_output, dec_state = decoder(dec_input, dec_state, enc_outputs)\\n\",\n    \"        #print(\\\"dec_output:\\\", dec_output, dec_output.size())\\n\",\n    \"        print(\\\"dec_state:\\\", dec_state, dec_state.size())\\n\",\n    \"        print(\\\"enc_outputs:\\\", enc_outputs)\\n\",\n    \"        #print(\\\"y\\\", y)\\n\",\n    \"        #print(\\\"CrossEntropyLoss:\\\", loss(dec_output, y))\\n\",\n    \"        print(\\\"mask\\\", mask)\\n\",\n    \"        print(\\\"-\\\"*30)\\n\",\n    \"        l = l + (mask * loss(dec_output, y)).sum()\\n\",\n    \"        dec_input = y  # 使用强制教学\\n\",\n    \"        num_not_pad_tokens += mask.sum().item()\\n\",\n    \"        # EOS后面全是PAD. 下面一行保证一旦遇到EOS接下来的循环中mask就一直是0\\n\",\n    \"        mask = mask * (y != out_vocab.stoi[EOS]).float()\\n\",\n    \"        i += 1\\n\",\n    \"    return l / num_not_pad_tokens\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- 在训练函数中，我们需要同时迭代编码器和解码器的模型参数。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def train(encoder, decoder, dataset, lr, batch_size, num_epochs):\\n\",\n    \"    enc_optimizer = torch.optim.Adam(encoder.parameters(), lr=lr)\\n\",\n    \"    dec_optimizer = torch.optim.Adam(decoder.parameters(), lr=lr)\\n\",\n    \"\\n\",\n    \"    loss = nn.CrossEntropyLoss(reduction='none')\\n\",\n    \"    data_iter = Data.DataLoader(dataset, batch_size, shuffle=True)\\n\",\n    \"    for epoch in range(num_epochs):\\n\",\n    \"        l_sum = 0.0\\n\",\n    \"        for X, Y in data_iter:\\n\",\n    \"            print(X)\\n\",\n    \"            print(Y)\\n\",\n    \"            enc_optimizer.zero_grad()\\n\",\n    \"            dec_optimizer.zero_grad()\\n\",\n    \"            l = batch_loss(encoder, decoder, X, Y, loss)\\n\",\n    \"            l.backward()\\n\",\n    \"            enc_optimizer.step()\\n\",\n    \"            dec_optimizer.step()\\n\",\n    \"            l_sum += l.item()\\n\",\n    \"        break\\n\",\n    \"        if (epoch + 1) % 10 == 0:\\n\",\n    \"            print(\\\"epoch %d, loss %.3f\\\" % (epoch + 1, l_sum / len(data_iter)))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- 创建模型实例并设置超参数。然后，我们就可以训练模型了。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/torch/nn/modules/rnn.py:54: UserWarning: dropout option adds dropout after all but last recurrent layer, so non-zero dropout expects num_layers greater than 1, but got dropout=0.5 and num_layers=1\\n\",\n      \"  \\\"num_layers={}\\\".format(dropout, num_layers))\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"tensor([[ 6,  7, 38,  3,  2,  0,  0],\\n\",\n      \"        [12,  7, 21,  3,  2,  0,  0]])\\n\",\n      \"tensor([[ 7,  5, 31,  3,  2,  0,  0],\\n\",\n      \"        [ 7,  5, 21,  3,  2,  0,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-0.1393,  0.2936, -0.5886, -0.0687,  0.0963, -0.5384, -0.6605,\\n\",\n      \"           0.0597, -0.2344, -0.1347,  0.0796,  0.2670,  0.4116,  0.1627,\\n\",\n      \"           0.4085,  0.0704, -0.1313,  0.0013,  0.3381, -0.2618,  0.0287,\\n\",\n      \"           0.3162,  0.0669, -0.0386,  0.0549,  0.1877, -0.1045, -0.2432,\\n\",\n      \"          -0.1555, -0.1253, -0.1819, -0.5526,  0.4872,  0.0308,  0.2886,\\n\",\n      \"          -0.0971,  0.6693, -0.0417,  0.0676,  0.0169,  0.3350, -0.8023,\\n\",\n      \"          -0.3994, -0.4915,  0.0326, -0.1598,  0.5736, -0.1902, -0.1287,\\n\",\n      \"          -0.0258, -0.3902,  0.2112,  0.1344,  0.0132, -0.0401,  0.2563,\\n\",\n      \"          -0.2707,  0.0953, -0.3079,  0.0300, -0.1933,  0.0521, -0.3383,\\n\",\n      \"          -0.3936],\\n\",\n      \"         [-0.0659,  0.3224, -0.5626, -0.0946,  0.1006, -0.5432, -0.6270,\\n\",\n      \"           0.0288, -0.1833, -0.1587,  0.0221,  0.3053,  0.3700,  0.2379,\\n\",\n      \"           0.3761,  0.0267, -0.1992,  0.0164,  0.3451, -0.1771, -0.0298,\\n\",\n      \"           0.3113,  0.0284, -0.0265,  0.1441,  0.1754, -0.0554, -0.2013,\\n\",\n      \"          -0.2120, -0.0555, -0.1838, -0.5463,  0.4851,  0.0840,  0.1811,\\n\",\n      \"          -0.0880,  0.6547, -0.0377,  0.0884,  0.0255,  0.3349, -0.8068,\\n\",\n      \"          -0.4207, -0.4491,  0.0518, -0.0835,  0.4971, -0.1542, -0.0914,\\n\",\n      \"          -0.0537, -0.3480,  0.2098,  0.1019, -0.0159, -0.1167,  0.2960,\\n\",\n      \"          -0.2617,  0.1453, -0.3284, -0.0456, -0.1543,  0.0220, -0.4361,\\n\",\n      \"          -0.3750]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01,  1.0857e-01, -1.9370e-01,\\n\",\n      \"           3.7774e-01,  2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\\n\",\n      \"           3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02,  4.3488e-01,\\n\",\n      \"          -3.0141e-01,  3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\\n\",\n      \"          -2.4359e-01,  4.2206e-02,  4.8470e-01,  6.3224e-02, -2.2614e-01,\\n\",\n      \"          -3.1987e-01, -1.8798e-01,  3.6993e-01, -1.4684e-01, -2.3621e-01,\\n\",\n      \"           9.9864e-02,  3.6303e-01, -3.7656e-01,  2.8872e-01,  2.2332e-01,\\n\",\n      \"           2.0550e-01,  8.0081e-02,  4.3839e-01, -1.6392e-01,  4.0154e-01,\\n\",\n      \"          -2.5501e-01,  3.4941e-01, -2.7039e-01, -3.2946e-01,  2.1274e-01,\\n\",\n      \"          -2.3434e-01, -2.1966e-01,  9.3274e-02, -7.7401e-02,  2.1879e-01,\\n\",\n      \"           7.3506e-02,  2.4881e-01, -2.0310e-01,  2.3559e-01, -2.5062e-01,\\n\",\n      \"          -2.0376e-01, -7.3991e-02,  2.4347e-01, -3.7692e-02,  2.6946e-01,\\n\",\n      \"          -1.9928e-01,  4.4936e-01,  1.3003e-01, -2.6040e-01],\\n\",\n      \"         [ 2.2726e-01, -1.8992e-02,  4.8106e-01,  4.0937e-02, -1.9359e-01,\\n\",\n      \"           4.0787e-01, -7.4492e-02,  2.5378e-01, -1.3509e-01,  1.1359e-01,\\n\",\n      \"          -3.4980e-01,  1.5776e-01,  6.9378e-02, -1.1341e-01,  3.5061e-01,\\n\",\n      \"           4.8332e-01, -2.1102e-01,  9.0305e-02, -2.2642e-01, -2.2795e-01,\\n\",\n      \"          -2.9546e-01, -3.0294e-01,  1.8674e-01,  6.4141e-02, -6.4675e-02,\\n\",\n      \"          -1.5324e-01, -2.3329e-01,  3.4140e-01, -1.7343e-01, -2.0366e-01,\\n\",\n      \"           1.1172e-01, -1.4087e-01,  1.4044e-01,  2.0903e-01, -2.5586e-01,\\n\",\n      \"          -1.2561e-01, -1.5254e-01, -8.0407e-02,  1.3476e-01,  1.0619e-01,\\n\",\n      \"           5.9930e-02,  3.1730e-01,  2.6906e-01, -3.8815e-01, -6.9665e-02,\\n\",\n      \"          -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\\n\",\n      \"           2.2937e-01, -3.9784e-04,  2.2407e-01, -2.5350e-01, -3.3453e-01,\\n\",\n      \"          -1.3767e-01, -1.7459e-01,  1.3520e-01,  2.4302e-01,  2.2246e-01,\\n\",\n      \"          -4.8888e-01, -4.4384e-02,  1.1326e-01, -3.4151e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\\n\",\n      \"           5.6420e-02,  3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\\n\",\n      \"          -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01,  5.9376e-02,\\n\",\n      \"          -1.0247e-01,  4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\\n\",\n      \"          -2.3619e-01,  8.6265e-02,  4.6741e-01,  3.5501e-01,  1.7282e-01,\\n\",\n      \"          -4.7347e-01,  1.4804e-01,  2.5100e-02, -1.2214e-01, -2.0864e-01,\\n\",\n      \"           2.3636e-01,  5.4465e-01, -1.1361e-01,  6.3898e-01, -8.9376e-02,\\n\",\n      \"           4.4687e-01,  1.6410e-01,  2.6329e-01, -2.0854e-01,  2.3961e-01,\\n\",\n      \"          -1.0511e-01,  2.5216e-01, -5.3976e-01, -3.7185e-01,  2.4008e-01,\\n\",\n      \"          -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01,  2.5457e-01,\\n\",\n      \"           1.2218e-02,  4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\\n\",\n      \"           7.5208e-02,  4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\\n\",\n      \"          -4.9366e-01,  5.4208e-01,  1.5324e-01,  3.9655e-01],\\n\",\n      \"         [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\\n\",\n      \"           1.3124e-01,  7.5505e-02,  3.4263e-03, -1.1334e-01, -3.4639e-01,\\n\",\n      \"          -3.6638e-01,  4.9316e-02, -2.1105e-01, -2.2630e-01,  2.0947e-02,\\n\",\n      \"           3.3961e-01,  9.4981e-02,  1.3542e-01, -3.8337e-01, -2.0906e-01,\\n\",\n      \"          -3.0973e-01, -1.5681e-01,  3.3510e-01,  2.7113e-01,  2.4488e-01,\\n\",\n      \"          -3.3195e-01,  1.5274e-01,  1.5221e-01, -2.0584e-01, -2.2414e-01,\\n\",\n      \"           2.1737e-01,  1.8852e-01,  7.0223e-02,  5.6388e-01, -3.3851e-01,\\n\",\n      \"           2.6845e-01,  1.1714e-02, -1.4760e-01,  4.3259e-02,  1.0451e-01,\\n\",\n      \"           3.4776e-03,  3.1284e-01, -3.2982e-01, -3.1727e-01,  3.6460e-02,\\n\",\n      \"          -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01,  5.9090e-03,\\n\",\n      \"           8.1017e-02,  2.7271e-01,  4.5712e-02, -2.8956e-01, -1.6350e-02,\\n\",\n      \"           2.0064e-02,  1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\\n\",\n      \"          -6.5255e-01,  3.1658e-01,  1.4671e-01,  3.6424e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.3597e-01,  1.9799e-01,  2.3560e-01, -1.9528e-01, -1.1069e-02,\\n\",\n      \"           1.1243e-01,  2.9132e-01,  4.1456e-01, -4.4696e-01, -4.3193e-01,\\n\",\n      \"           5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01,  1.1342e-01,\\n\",\n      \"           2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\\n\",\n      \"           2.0141e-02,  6.2393e-02,  2.0971e-02,  8.2769e-02,  4.6496e-01,\\n\",\n      \"          -5.3510e-01,  9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\\n\",\n      \"           2.7095e-01,  9.9948e-02, -3.6222e-01,  2.0611e-01,  2.9721e-01,\\n\",\n      \"           7.5574e-02, -1.6472e-01,  3.0445e-01, -3.6575e-02, -2.3158e-01,\\n\",\n      \"           3.9358e-01,  1.9318e-01, -5.6557e-01, -2.6799e-01,  3.8988e-01,\\n\",\n      \"          -1.6496e-01, -1.3708e-01,  4.8606e-02,  1.5874e-01, -8.5188e-02,\\n\",\n      \"          -1.0096e-01,  4.2342e-01, -1.8810e-01,  1.2980e-01, -2.4798e-01,\\n\",\n      \"          -3.8226e-01,  7.9836e-02, -3.9238e-01, -2.6510e-01,  8.0690e-02,\\n\",\n      \"          -3.0937e-01,  5.9596e-01,  2.3998e-01, -7.1284e-02],\\n\",\n      \"         [ 2.6165e-01, -1.4047e-01,  9.4698e-02, -2.6050e-01, -6.5844e-01,\\n\",\n      \"           6.9578e-02,  4.2476e-01,  3.4034e-01,  9.9292e-02, -7.7451e-02,\\n\",\n      \"          -3.3465e-01,  2.1420e-01, -8.8270e-02,  1.8651e-01,  1.4740e-01,\\n\",\n      \"           5.7079e-01,  2.2680e-02,  2.0249e-01, -1.9472e-01, -2.2586e-01,\\n\",\n      \"          -3.8880e-01, -2.1211e-01,  1.9659e-01,  2.1478e-01, -2.5531e-02,\\n\",\n      \"           7.8013e-02,  3.2416e-01,  4.8909e-01,  2.9591e-01,  2.0706e-01,\\n\",\n      \"           5.0405e-02, -3.9285e-02,  1.2387e-01,  1.4932e-01, -6.5346e-01,\\n\",\n      \"           1.9413e-02, -3.7684e-02,  9.7702e-02,  3.4156e-02, -2.0560e-01,\\n\",\n      \"           2.2834e-01,  4.8682e-01, -6.0703e-01,  7.5087e-02,  2.0022e-01,\\n\",\n      \"          -3.6027e-03,  4.1835e-03, -3.9750e-01,  6.0365e-02, -5.0696e-02,\\n\",\n      \"          -6.1541e-02,  5.2398e-01,  3.6723e-01, -3.4788e-01, -1.8475e-02,\\n\",\n      \"           9.8757e-02, -1.9024e-01,  3.2452e-02,  2.3710e-01, -1.6492e-01,\\n\",\n      \"          -1.5253e-01,  3.6131e-01, -2.0650e-01, -4.8210e-01]],\\n\",\n      \"\\n\",\n      \"        [[-9.5985e-02,  7.5312e-02, -1.6275e-02, -1.6717e-01,  1.3966e-01,\\n\",\n      \"           1.2510e-01,  1.7152e-01,  3.7018e-01,  1.7329e-01, -3.6036e-03,\\n\",\n      \"           1.0929e-01, -2.8514e-01,  1.1324e-01, -4.5108e-01,  2.3049e-01,\\n\",\n      \"           1.1407e-01,  5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\\n\",\n      \"           3.5342e-01,  1.2921e-01, -1.4113e-01,  8.1400e-02,  6.0903e-01,\\n\",\n      \"           1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\\n\",\n      \"           2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02,  3.7362e-01,\\n\",\n      \"           1.3951e-01,  2.5189e-01,  1.7649e-01, -3.2773e-01, -1.1435e-01,\\n\",\n      \"          -1.6709e-01,  3.5067e-01,  9.1052e-02, -4.6298e-02,  3.1424e-01,\\n\",\n      \"           8.7142e-03,  1.8674e-01,  1.2893e-01,  2.1966e-01,  1.6659e-01,\\n\",\n      \"          -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\\n\",\n      \"          -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01,  4.7413e-01,\\n\",\n      \"          -2.9576e-01,  2.2703e-01, -3.9934e-01,  1.7219e-01],\\n\",\n      \"         [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\\n\",\n      \"           1.5163e-01,  1.7886e-01,  2.7458e-01,  3.3433e-01,  2.0521e-01,\\n\",\n      \"          -1.4750e-01, -1.2898e-01, -3.0942e-02,  3.7652e-02,  1.3187e-01,\\n\",\n      \"           9.9556e-02,  1.6104e-01, -2.2675e-02,  4.0490e-02, -4.2415e-01,\\n\",\n      \"           4.9033e-02, -5.0992e-02, -1.2216e-02,  1.6971e-01,  3.7812e-01,\\n\",\n      \"           3.2139e-01,  1.6347e-01,  6.9504e-02,  1.0657e-01, -1.5354e-01,\\n\",\n      \"           1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\\n\",\n      \"           9.1052e-02,  2.3660e-01,  2.3901e-02, -2.6365e-01, -1.5990e-01,\\n\",\n      \"          -2.8048e-01,  5.6058e-01,  3.8168e-02,  2.1925e-01,  3.2005e-01,\\n\",\n      \"           1.8152e-01,  2.5467e-01, -5.4982e-03,  1.7120e-01,  1.8606e-01,\\n\",\n      \"          -1.4660e-01, -4.4520e-01,  1.6732e-01, -4.7045e-01, -7.7974e-02,\\n\",\n      \"          -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01,  3.0227e-01,\\n\",\n      \"          -2.2191e-01,  2.9605e-02, -6.3017e-01, -1.4525e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.4904e-01, -6.8274e-02,  5.6533e-02, -2.4772e-02,  3.2061e-01,\\n\",\n      \"           2.1123e-01,  1.5713e-01, -1.7263e-01,  1.5009e-01, -4.3575e-03,\\n\",\n      \"          -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01,  1.8752e-01,\\n\",\n      \"           2.7129e-01,  1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\\n\",\n      \"           2.2746e-01,  8.3794e-02, -1.3259e-01, -1.1347e-01,  6.5971e-01,\\n\",\n      \"          -2.3801e-01,  3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\\n\",\n      \"           2.3377e-01,  3.3690e-02,  3.5666e-01, -2.5705e-01,  8.0429e-02,\\n\",\n      \"          -1.0046e-01, -3.2683e-01,  1.7847e-01,  4.9813e-02, -2.7301e-02,\\n\",\n      \"          -2.8488e-01,  1.3049e-01, -3.1199e-01,  2.1468e-01,  4.1697e-01,\\n\",\n      \"          -9.0697e-03,  3.0670e-01,  3.1493e-02,  1.2018e-01,  3.3610e-01,\\n\",\n      \"           2.8280e-02, -7.6110e-02,  2.6174e-01, -3.1480e-01,  4.1252e-03,\\n\",\n      \"           1.0057e-01,  3.8000e-02, -2.0712e-01,  2.7292e-01,  5.9932e-01,\\n\",\n      \"           1.2308e-01,  4.6245e-01,  1.7830e-02, -3.6655e-01],\\n\",\n      \"         [-1.6559e-01, -1.4964e-01,  1.6312e-02, -7.3873e-02,  2.1183e-01,\\n\",\n      \"           2.4620e-01,  1.3492e-01, -2.5850e-01,  2.4197e-01,  1.5375e-01,\\n\",\n      \"          -1.7702e-01, -3.0812e-02, -2.3033e-01,  5.7193e-02,  8.9032e-02,\\n\",\n      \"           2.5915e-01,  1.7881e-01,  9.2474e-02,  6.9597e-02, -5.1476e-01,\\n\",\n      \"           1.3662e-02,  1.7113e-02, -6.8879e-02, -7.7871e-02,  5.7157e-01,\\n\",\n      \"          -1.9469e-01,  4.2673e-01,  1.1721e-01, -5.7496e-01, -3.3230e-01,\\n\",\n      \"           1.5853e-01,  1.8137e-03,  3.5060e-01, -2.1769e-01, -1.9723e-01,\\n\",\n      \"          -1.1998e-01, -3.5563e-01,  7.3324e-02,  6.4801e-02, -6.5640e-02,\\n\",\n      \"          -3.7750e-01,  1.6369e-01, -3.3921e-01,  3.2287e-01,  4.4207e-01,\\n\",\n      \"           1.0073e-01,  3.4861e-01,  8.5830e-02,  1.3543e-01,  3.6765e-01,\\n\",\n      \"           2.3823e-02, -7.5720e-02,  3.2633e-01, -5.0892e-01,  4.9602e-02,\\n\",\n      \"           2.0053e-01, -9.2345e-03, -8.3791e-03,  3.5187e-01,  4.7023e-01,\\n\",\n      \"           1.4153e-01,  3.2948e-01, -3.3481e-02, -4.5740e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.1226e-01,  2.4138e-01, -4.2202e-01, -1.7461e-01,  5.4534e-01,\\n\",\n      \"          -4.2925e-01, -2.6951e-01, -2.0688e-01,  2.3745e-02, -1.1517e-01,\\n\",\n      \"          -2.2702e-01,  8.5057e-02,  1.9687e-01,  1.8045e-01,  1.4299e-01,\\n\",\n      \"           1.3289e-01,  2.7649e-01,  3.7999e-01,  1.7433e-01, -5.2645e-01,\\n\",\n      \"           1.9178e-01,  8.7907e-02, -2.5690e-01, -2.0036e-01,  6.0692e-01,\\n\",\n      \"          -1.0853e-01,  1.2578e-01,  8.5823e-02, -4.5513e-01, -6.2062e-01,\\n\",\n      \"           4.1656e-01, -8.5522e-02,  4.3798e-01, -3.9802e-01,  2.4185e-01,\\n\",\n      \"          -1.5286e-01,  1.2474e-01, -4.1761e-02,  3.6593e-01,  3.9166e-01,\\n\",\n      \"          -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01,  3.1793e-01,\\n\",\n      \"          -4.1171e-01,  2.4068e-01, -1.5773e-01,  8.6016e-02,  1.3797e-01,\\n\",\n      \"          -1.8716e-01,  6.9685e-02,  4.8977e-02, -3.2609e-01, -1.2320e-01,\\n\",\n      \"           2.7405e-01, -3.3264e-01,  9.2106e-02, -9.5439e-02, -1.2941e-01,\\n\",\n      \"          -6.0168e-03, -1.0422e-01,  1.7811e-01, -2.6908e-01],\\n\",\n      \"         [-2.8426e-01,  2.0979e-01, -4.4463e-01, -2.0507e-01,  4.8820e-01,\\n\",\n      \"          -3.8590e-01, -2.7336e-01, -2.7192e-01,  5.9091e-02, -5.6585e-02,\\n\",\n      \"          -2.9206e-01,  1.5256e-01,  1.0575e-01,  3.3100e-01,  6.6701e-02,\\n\",\n      \"           1.1139e-01,  2.9278e-01,  4.2220e-01,  2.2346e-01, -5.3398e-01,\\n\",\n      \"           6.1949e-02,  3.1205e-02, -2.1178e-01, -1.8280e-01,  5.6443e-01,\\n\",\n      \"          -8.3626e-02,  1.7926e-01,  2.4563e-01, -3.9010e-01, -5.8782e-01,\\n\",\n      \"           3.6655e-01, -1.1015e-01,  4.1846e-01, -3.7551e-01,  5.5107e-02,\\n\",\n      \"          -1.6866e-01,  5.1045e-02, -1.0331e-01,  3.6541e-01,  3.5180e-01,\\n\",\n      \"          -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01,  3.5780e-01,\\n\",\n      \"          -3.3289e-01,  2.8968e-01, -1.0464e-01,  1.1147e-01,  1.5557e-01,\\n\",\n      \"          -1.9501e-01,  6.4053e-02,  4.8930e-02, -4.1890e-01, -1.0011e-01,\\n\",\n      \"           3.3335e-01, -3.6849e-01,  1.6564e-01, -8.3867e-02, -1.3537e-01,\\n\",\n      \"          -1.7237e-02, -1.4193e-01,  1.7183e-01, -3.0383e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3374e-01,  4.0180e-01, -6.3305e-01, -3.0021e-01,  7.0703e-01,\\n\",\n      \"          -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\\n\",\n      \"          -2.8203e-01,  2.1185e-01,  3.0355e-01,  3.5339e-01,  1.3138e-01,\\n\",\n      \"          -1.0663e-02,  3.2603e-01,  5.0363e-01,  2.9328e-01, -5.3031e-01,\\n\",\n      \"           9.6803e-02,  7.1699e-02, -3.4079e-01, -2.4798e-01,  5.0690e-01,\\n\",\n      \"          -1.7497e-02, -1.8682e-02,  2.1297e-01, -3.2107e-01, -7.1430e-01,\\n\",\n      \"           5.1159e-01, -2.7057e-01,  4.7796e-01, -4.5132e-01,  3.6998e-01,\\n\",\n      \"          -2.5730e-01,  3.9020e-01, -1.3587e-01,  5.3076e-01,  5.6810e-01,\\n\",\n      \"          -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01,  2.9033e-01,\\n\",\n      \"          -6.0690e-01,  1.4748e-01, -2.5577e-01,  4.8167e-02, -5.2315e-02,\\n\",\n      \"          -3.3055e-01,  5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\\n\",\n      \"           3.5335e-01, -5.3203e-01,  3.0482e-01, -2.6943e-01, -2.4425e-01,\\n\",\n      \"          -8.9498e-03, -2.3237e-01,  2.3527e-01, -2.3360e-01],\\n\",\n      \"         [-3.4616e-01,  3.8957e-01, -6.4207e-01, -3.2078e-01,  6.7713e-01,\\n\",\n      \"          -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\\n\",\n      \"          -3.1221e-01,  2.4949e-01,  2.4872e-01,  4.2892e-01,  7.1725e-02,\\n\",\n      \"          -3.2751e-02,  3.2776e-01,  5.2313e-01,  3.2315e-01, -5.3379e-01,\\n\",\n      \"           2.7926e-02,  2.5778e-02, -3.0887e-01, -2.3681e-01,  4.8511e-01,\\n\",\n      \"          -1.2633e-03,  1.4333e-02,  3.0642e-01, -2.8257e-01, -7.0073e-01,\\n\",\n      \"           4.8024e-01, -2.8092e-01,  4.6049e-01, -4.3820e-01,  2.5091e-01,\\n\",\n      \"          -2.6511e-01,  3.3634e-01, -1.7201e-01,  5.2863e-01,  5.4009e-01,\\n\",\n      \"          -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01,  3.2482e-01,\\n\",\n      \"          -5.5845e-01,  1.9502e-01, -2.1119e-01,  7.4632e-02, -4.8396e-02,\\n\",\n      \"          -3.3858e-01,  5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\\n\",\n      \"           3.9274e-01, -5.5639e-01,  3.3230e-01, -2.6980e-01, -2.3812e-01,\\n\",\n      \"          -2.7959e-02, -2.4953e-01,  2.3980e-01, -2.4494e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([7, 7])\\n\",\n      \"dec_state: tensor([[[-0.0047, -0.0548, -0.1628,  0.3243,  0.0669,  0.3298, -0.2109,\\n\",\n      \"           0.1938, -0.5070, -0.3582,  0.2628, -0.2222,  0.4755,  0.0878,\\n\",\n      \"          -0.3810,  0.1851,  0.0778, -0.0039,  0.0260, -0.0963,  0.2187,\\n\",\n      \"          -0.1856, -0.2736,  0.1515, -0.1300, -0.0072,  0.0977, -0.2819,\\n\",\n      \"          -0.2625, -0.6864, -0.0273, -0.4722,  0.5508, -0.1247, -0.2038,\\n\",\n      \"           0.4291, -0.0973, -0.4255,  0.4465,  0.0047,  0.5269, -0.1303,\\n\",\n      \"          -0.0153,  0.0748,  0.0415, -0.5193,  0.5431, -0.0795,  0.0754,\\n\",\n      \"           0.0150, -0.3283,  0.0332,  0.2943, -0.0910, -0.1878, -0.0570,\\n\",\n      \"          -0.2849,  0.2539,  0.2561, -0.1437, -0.4567,  0.1442, -0.4540,\\n\",\n      \"           0.5123],\\n\",\n      \"         [ 0.0283,  0.0047, -0.1254,  0.2868,  0.0827,  0.2917, -0.1569,\\n\",\n      \"           0.1670, -0.4442, -0.3985,  0.2001, -0.1848,  0.4337,  0.1485,\\n\",\n      \"          -0.3671,  0.1315, -0.0871,  0.0177,  0.0351,  0.0194,  0.2007,\\n\",\n      \"          -0.1986, -0.2983,  0.1784, -0.0187, -0.0278,  0.1302, -0.2468,\\n\",\n      \"          -0.3661, -0.6581, -0.0316, -0.4600,  0.5616, -0.0818, -0.2749,\\n\",\n      \"           0.4230, -0.0691, -0.3862,  0.4919,  0.0984,  0.5332, -0.1659,\\n\",\n      \"          -0.0160,  0.1324,  0.0196, -0.4971,  0.4453, -0.0421,  0.1062,\\n\",\n      \"          -0.0670, -0.2509,  0.0177,  0.2614, -0.1554, -0.3322, -0.0313,\\n\",\n      \"          -0.2582,  0.3030,  0.1612, -0.2565, -0.4052,  0.1038, -0.5556,\\n\",\n      \"           0.5468]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01,  1.0857e-01, -1.9370e-01,\\n\",\n      \"           3.7774e-01,  2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\\n\",\n      \"           3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02,  4.3488e-01,\\n\",\n      \"          -3.0141e-01,  3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\\n\",\n      \"          -2.4359e-01,  4.2206e-02,  4.8470e-01,  6.3224e-02, -2.2614e-01,\\n\",\n      \"          -3.1987e-01, -1.8798e-01,  3.6993e-01, -1.4684e-01, -2.3621e-01,\\n\",\n      \"           9.9864e-02,  3.6303e-01, -3.7656e-01,  2.8872e-01,  2.2332e-01,\\n\",\n      \"           2.0550e-01,  8.0081e-02,  4.3839e-01, -1.6392e-01,  4.0154e-01,\\n\",\n      \"          -2.5501e-01,  3.4941e-01, -2.7039e-01, -3.2946e-01,  2.1274e-01,\\n\",\n      \"          -2.3434e-01, -2.1966e-01,  9.3274e-02, -7.7401e-02,  2.1879e-01,\\n\",\n      \"           7.3506e-02,  2.4881e-01, -2.0310e-01,  2.3559e-01, -2.5062e-01,\\n\",\n      \"          -2.0376e-01, -7.3991e-02,  2.4347e-01, -3.7692e-02,  2.6946e-01,\\n\",\n      \"          -1.9928e-01,  4.4936e-01,  1.3003e-01, -2.6040e-01],\\n\",\n      \"         [ 2.2726e-01, -1.8992e-02,  4.8106e-01,  4.0937e-02, -1.9359e-01,\\n\",\n      \"           4.0787e-01, -7.4492e-02,  2.5378e-01, -1.3509e-01,  1.1359e-01,\\n\",\n      \"          -3.4980e-01,  1.5776e-01,  6.9378e-02, -1.1341e-01,  3.5061e-01,\\n\",\n      \"           4.8332e-01, -2.1102e-01,  9.0305e-02, -2.2642e-01, -2.2795e-01,\\n\",\n      \"          -2.9546e-01, -3.0294e-01,  1.8674e-01,  6.4141e-02, -6.4675e-02,\\n\",\n      \"          -1.5324e-01, -2.3329e-01,  3.4140e-01, -1.7343e-01, -2.0366e-01,\\n\",\n      \"           1.1172e-01, -1.4087e-01,  1.4044e-01,  2.0903e-01, -2.5586e-01,\\n\",\n      \"          -1.2561e-01, -1.5254e-01, -8.0407e-02,  1.3476e-01,  1.0619e-01,\\n\",\n      \"           5.9930e-02,  3.1730e-01,  2.6906e-01, -3.8815e-01, -6.9665e-02,\\n\",\n      \"          -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\\n\",\n      \"           2.2937e-01, -3.9784e-04,  2.2407e-01, -2.5350e-01, -3.3453e-01,\\n\",\n      \"          -1.3767e-01, -1.7459e-01,  1.3520e-01,  2.4302e-01,  2.2246e-01,\\n\",\n      \"          -4.8888e-01, -4.4384e-02,  1.1326e-01, -3.4151e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\\n\",\n      \"           5.6420e-02,  3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\\n\",\n      \"          -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01,  5.9376e-02,\\n\",\n      \"          -1.0247e-01,  4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\\n\",\n      \"          -2.3619e-01,  8.6265e-02,  4.6741e-01,  3.5501e-01,  1.7282e-01,\\n\",\n      \"          -4.7347e-01,  1.4804e-01,  2.5100e-02, -1.2214e-01, -2.0864e-01,\\n\",\n      \"           2.3636e-01,  5.4465e-01, -1.1361e-01,  6.3898e-01, -8.9376e-02,\\n\",\n      \"           4.4687e-01,  1.6410e-01,  2.6329e-01, -2.0854e-01,  2.3961e-01,\\n\",\n      \"          -1.0511e-01,  2.5216e-01, -5.3976e-01, -3.7185e-01,  2.4008e-01,\\n\",\n      \"          -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01,  2.5457e-01,\\n\",\n      \"           1.2218e-02,  4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\\n\",\n      \"           7.5208e-02,  4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\\n\",\n      \"          -4.9366e-01,  5.4208e-01,  1.5324e-01,  3.9655e-01],\\n\",\n      \"         [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\\n\",\n      \"           1.3124e-01,  7.5505e-02,  3.4263e-03, -1.1334e-01, -3.4639e-01,\\n\",\n      \"          -3.6638e-01,  4.9316e-02, -2.1105e-01, -2.2630e-01,  2.0947e-02,\\n\",\n      \"           3.3961e-01,  9.4981e-02,  1.3542e-01, -3.8337e-01, -2.0906e-01,\\n\",\n      \"          -3.0973e-01, -1.5681e-01,  3.3510e-01,  2.7113e-01,  2.4488e-01,\\n\",\n      \"          -3.3195e-01,  1.5274e-01,  1.5221e-01, -2.0584e-01, -2.2414e-01,\\n\",\n      \"           2.1737e-01,  1.8852e-01,  7.0223e-02,  5.6388e-01, -3.3851e-01,\\n\",\n      \"           2.6845e-01,  1.1714e-02, -1.4760e-01,  4.3259e-02,  1.0451e-01,\\n\",\n      \"           3.4776e-03,  3.1284e-01, -3.2982e-01, -3.1727e-01,  3.6460e-02,\\n\",\n      \"          -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01,  5.9090e-03,\\n\",\n      \"           8.1017e-02,  2.7271e-01,  4.5712e-02, -2.8956e-01, -1.6350e-02,\\n\",\n      \"           2.0064e-02,  1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\\n\",\n      \"          -6.5255e-01,  3.1658e-01,  1.4671e-01,  3.6424e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.3597e-01,  1.9799e-01,  2.3560e-01, -1.9528e-01, -1.1069e-02,\\n\",\n      \"           1.1243e-01,  2.9132e-01,  4.1456e-01, -4.4696e-01, -4.3193e-01,\\n\",\n      \"           5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01,  1.1342e-01,\\n\",\n      \"           2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\\n\",\n      \"           2.0141e-02,  6.2393e-02,  2.0971e-02,  8.2769e-02,  4.6496e-01,\\n\",\n      \"          -5.3510e-01,  9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\\n\",\n      \"           2.7095e-01,  9.9948e-02, -3.6222e-01,  2.0611e-01,  2.9721e-01,\\n\",\n      \"           7.5574e-02, -1.6472e-01,  3.0445e-01, -3.6575e-02, -2.3158e-01,\\n\",\n      \"           3.9358e-01,  1.9318e-01, -5.6557e-01, -2.6799e-01,  3.8988e-01,\\n\",\n      \"          -1.6496e-01, -1.3708e-01,  4.8606e-02,  1.5874e-01, -8.5188e-02,\\n\",\n      \"          -1.0096e-01,  4.2342e-01, -1.8810e-01,  1.2980e-01, -2.4798e-01,\\n\",\n      \"          -3.8226e-01,  7.9836e-02, -3.9238e-01, -2.6510e-01,  8.0690e-02,\\n\",\n      \"          -3.0937e-01,  5.9596e-01,  2.3998e-01, -7.1284e-02],\\n\",\n      \"         [ 2.6165e-01, -1.4047e-01,  9.4698e-02, -2.6050e-01, -6.5844e-01,\\n\",\n      \"           6.9578e-02,  4.2476e-01,  3.4034e-01,  9.9292e-02, -7.7451e-02,\\n\",\n      \"          -3.3465e-01,  2.1420e-01, -8.8270e-02,  1.8651e-01,  1.4740e-01,\\n\",\n      \"           5.7079e-01,  2.2680e-02,  2.0249e-01, -1.9472e-01, -2.2586e-01,\\n\",\n      \"          -3.8880e-01, -2.1211e-01,  1.9659e-01,  2.1478e-01, -2.5531e-02,\\n\",\n      \"           7.8013e-02,  3.2416e-01,  4.8909e-01,  2.9591e-01,  2.0706e-01,\\n\",\n      \"           5.0405e-02, -3.9285e-02,  1.2387e-01,  1.4932e-01, -6.5346e-01,\\n\",\n      \"           1.9413e-02, -3.7684e-02,  9.7702e-02,  3.4156e-02, -2.0560e-01,\\n\",\n      \"           2.2834e-01,  4.8682e-01, -6.0703e-01,  7.5087e-02,  2.0022e-01,\\n\",\n      \"          -3.6027e-03,  4.1835e-03, -3.9750e-01,  6.0365e-02, -5.0696e-02,\\n\",\n      \"          -6.1541e-02,  5.2398e-01,  3.6723e-01, -3.4788e-01, -1.8475e-02,\\n\",\n      \"           9.8757e-02, -1.9024e-01,  3.2452e-02,  2.3710e-01, -1.6492e-01,\\n\",\n      \"          -1.5253e-01,  3.6131e-01, -2.0650e-01, -4.8210e-01]],\\n\",\n      \"\\n\",\n      \"        [[-9.5985e-02,  7.5312e-02, -1.6275e-02, -1.6717e-01,  1.3966e-01,\\n\",\n      \"           1.2510e-01,  1.7152e-01,  3.7018e-01,  1.7329e-01, -3.6036e-03,\\n\",\n      \"           1.0929e-01, -2.8514e-01,  1.1324e-01, -4.5108e-01,  2.3049e-01,\\n\",\n      \"           1.1407e-01,  5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\\n\",\n      \"           3.5342e-01,  1.2921e-01, -1.4113e-01,  8.1400e-02,  6.0903e-01,\\n\",\n      \"           1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\\n\",\n      \"           2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02,  3.7362e-01,\\n\",\n      \"           1.3951e-01,  2.5189e-01,  1.7649e-01, -3.2773e-01, -1.1435e-01,\\n\",\n      \"          -1.6709e-01,  3.5067e-01,  9.1052e-02, -4.6298e-02,  3.1424e-01,\\n\",\n      \"           8.7142e-03,  1.8674e-01,  1.2893e-01,  2.1966e-01,  1.6659e-01,\\n\",\n      \"          -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\\n\",\n      \"          -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01,  4.7413e-01,\\n\",\n      \"          -2.9576e-01,  2.2703e-01, -3.9934e-01,  1.7219e-01],\\n\",\n      \"         [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\\n\",\n      \"           1.5163e-01,  1.7886e-01,  2.7458e-01,  3.3433e-01,  2.0521e-01,\\n\",\n      \"          -1.4750e-01, -1.2898e-01, -3.0942e-02,  3.7652e-02,  1.3187e-01,\\n\",\n      \"           9.9556e-02,  1.6104e-01, -2.2675e-02,  4.0490e-02, -4.2415e-01,\\n\",\n      \"           4.9033e-02, -5.0992e-02, -1.2216e-02,  1.6971e-01,  3.7812e-01,\\n\",\n      \"           3.2139e-01,  1.6347e-01,  6.9504e-02,  1.0657e-01, -1.5354e-01,\\n\",\n      \"           1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\\n\",\n      \"           9.1052e-02,  2.3660e-01,  2.3901e-02, -2.6365e-01, -1.5990e-01,\\n\",\n      \"          -2.8048e-01,  5.6058e-01,  3.8168e-02,  2.1925e-01,  3.2005e-01,\\n\",\n      \"           1.8152e-01,  2.5467e-01, -5.4982e-03,  1.7120e-01,  1.8606e-01,\\n\",\n      \"          -1.4660e-01, -4.4520e-01,  1.6732e-01, -4.7045e-01, -7.7974e-02,\\n\",\n      \"          -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01,  3.0227e-01,\\n\",\n      \"          -2.2191e-01,  2.9605e-02, -6.3017e-01, -1.4525e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.4904e-01, -6.8274e-02,  5.6533e-02, -2.4772e-02,  3.2061e-01,\\n\",\n      \"           2.1123e-01,  1.5713e-01, -1.7263e-01,  1.5009e-01, -4.3575e-03,\\n\",\n      \"          -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01,  1.8752e-01,\\n\",\n      \"           2.7129e-01,  1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\\n\",\n      \"           2.2746e-01,  8.3794e-02, -1.3259e-01, -1.1347e-01,  6.5971e-01,\\n\",\n      \"          -2.3801e-01,  3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\\n\",\n      \"           2.3377e-01,  3.3690e-02,  3.5666e-01, -2.5705e-01,  8.0429e-02,\\n\",\n      \"          -1.0046e-01, -3.2683e-01,  1.7847e-01,  4.9813e-02, -2.7301e-02,\\n\",\n      \"          -2.8488e-01,  1.3049e-01, -3.1199e-01,  2.1468e-01,  4.1697e-01,\\n\",\n      \"          -9.0697e-03,  3.0670e-01,  3.1493e-02,  1.2018e-01,  3.3610e-01,\\n\",\n      \"           2.8280e-02, -7.6110e-02,  2.6174e-01, -3.1480e-01,  4.1252e-03,\\n\",\n      \"           1.0057e-01,  3.8000e-02, -2.0712e-01,  2.7292e-01,  5.9932e-01,\\n\",\n      \"           1.2308e-01,  4.6245e-01,  1.7830e-02, -3.6655e-01],\\n\",\n      \"         [-1.6559e-01, -1.4964e-01,  1.6312e-02, -7.3873e-02,  2.1183e-01,\\n\",\n      \"           2.4620e-01,  1.3492e-01, -2.5850e-01,  2.4197e-01,  1.5375e-01,\\n\",\n      \"          -1.7702e-01, -3.0812e-02, -2.3033e-01,  5.7193e-02,  8.9032e-02,\\n\",\n      \"           2.5915e-01,  1.7881e-01,  9.2474e-02,  6.9597e-02, -5.1476e-01,\\n\",\n      \"           1.3662e-02,  1.7113e-02, -6.8879e-02, -7.7871e-02,  5.7157e-01,\\n\",\n      \"          -1.9469e-01,  4.2673e-01,  1.1721e-01, -5.7496e-01, -3.3230e-01,\\n\",\n      \"           1.5853e-01,  1.8137e-03,  3.5060e-01, -2.1769e-01, -1.9723e-01,\\n\",\n      \"          -1.1998e-01, -3.5563e-01,  7.3324e-02,  6.4801e-02, -6.5640e-02,\\n\",\n      \"          -3.7750e-01,  1.6369e-01, -3.3921e-01,  3.2287e-01,  4.4207e-01,\\n\",\n      \"           1.0073e-01,  3.4861e-01,  8.5830e-02,  1.3543e-01,  3.6765e-01,\\n\",\n      \"           2.3823e-02, -7.5720e-02,  3.2633e-01, -5.0892e-01,  4.9602e-02,\\n\",\n      \"           2.0053e-01, -9.2345e-03, -8.3791e-03,  3.5187e-01,  4.7023e-01,\\n\",\n      \"           1.4153e-01,  3.2948e-01, -3.3481e-02, -4.5740e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.1226e-01,  2.4138e-01, -4.2202e-01, -1.7461e-01,  5.4534e-01,\\n\",\n      \"          -4.2925e-01, -2.6951e-01, -2.0688e-01,  2.3745e-02, -1.1517e-01,\\n\",\n      \"          -2.2702e-01,  8.5057e-02,  1.9687e-01,  1.8045e-01,  1.4299e-01,\\n\",\n      \"           1.3289e-01,  2.7649e-01,  3.7999e-01,  1.7433e-01, -5.2645e-01,\\n\",\n      \"           1.9178e-01,  8.7907e-02, -2.5690e-01, -2.0036e-01,  6.0692e-01,\\n\",\n      \"          -1.0853e-01,  1.2578e-01,  8.5823e-02, -4.5513e-01, -6.2062e-01,\\n\",\n      \"           4.1656e-01, -8.5522e-02,  4.3798e-01, -3.9802e-01,  2.4185e-01,\\n\",\n      \"          -1.5286e-01,  1.2474e-01, -4.1761e-02,  3.6593e-01,  3.9166e-01,\\n\",\n      \"          -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01,  3.1793e-01,\\n\",\n      \"          -4.1171e-01,  2.4068e-01, -1.5773e-01,  8.6016e-02,  1.3797e-01,\\n\",\n      \"          -1.8716e-01,  6.9685e-02,  4.8977e-02, -3.2609e-01, -1.2320e-01,\\n\",\n      \"           2.7405e-01, -3.3264e-01,  9.2106e-02, -9.5439e-02, -1.2941e-01,\\n\",\n      \"          -6.0168e-03, -1.0422e-01,  1.7811e-01, -2.6908e-01],\\n\",\n      \"         [-2.8426e-01,  2.0979e-01, -4.4463e-01, -2.0507e-01,  4.8820e-01,\\n\",\n      \"          -3.8590e-01, -2.7336e-01, -2.7192e-01,  5.9091e-02, -5.6585e-02,\\n\",\n      \"          -2.9206e-01,  1.5256e-01,  1.0575e-01,  3.3100e-01,  6.6701e-02,\\n\",\n      \"           1.1139e-01,  2.9278e-01,  4.2220e-01,  2.2346e-01, -5.3398e-01,\\n\",\n      \"           6.1949e-02,  3.1205e-02, -2.1178e-01, -1.8280e-01,  5.6443e-01,\\n\",\n      \"          -8.3626e-02,  1.7926e-01,  2.4563e-01, -3.9010e-01, -5.8782e-01,\\n\",\n      \"           3.6655e-01, -1.1015e-01,  4.1846e-01, -3.7551e-01,  5.5107e-02,\\n\",\n      \"          -1.6866e-01,  5.1045e-02, -1.0331e-01,  3.6541e-01,  3.5180e-01,\\n\",\n      \"          -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01,  3.5780e-01,\\n\",\n      \"          -3.3289e-01,  2.8968e-01, -1.0464e-01,  1.1147e-01,  1.5557e-01,\\n\",\n      \"          -1.9501e-01,  6.4053e-02,  4.8930e-02, -4.1890e-01, -1.0011e-01,\\n\",\n      \"           3.3335e-01, -3.6849e-01,  1.6564e-01, -8.3867e-02, -1.3537e-01,\\n\",\n      \"          -1.7237e-02, -1.4193e-01,  1.7183e-01, -3.0383e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3374e-01,  4.0180e-01, -6.3305e-01, -3.0021e-01,  7.0703e-01,\\n\",\n      \"          -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\\n\",\n      \"          -2.8203e-01,  2.1185e-01,  3.0355e-01,  3.5339e-01,  1.3138e-01,\\n\",\n      \"          -1.0663e-02,  3.2603e-01,  5.0363e-01,  2.9328e-01, -5.3031e-01,\\n\",\n      \"           9.6803e-02,  7.1699e-02, -3.4079e-01, -2.4798e-01,  5.0690e-01,\\n\",\n      \"          -1.7497e-02, -1.8682e-02,  2.1297e-01, -3.2107e-01, -7.1430e-01,\\n\",\n      \"           5.1159e-01, -2.7057e-01,  4.7796e-01, -4.5132e-01,  3.6998e-01,\\n\",\n      \"          -2.5730e-01,  3.9020e-01, -1.3587e-01,  5.3076e-01,  5.6810e-01,\\n\",\n      \"          -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01,  2.9033e-01,\\n\",\n      \"          -6.0690e-01,  1.4748e-01, -2.5577e-01,  4.8167e-02, -5.2315e-02,\\n\",\n      \"          -3.3055e-01,  5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\\n\",\n      \"           3.5335e-01, -5.3203e-01,  3.0482e-01, -2.6943e-01, -2.4425e-01,\\n\",\n      \"          -8.9498e-03, -2.3237e-01,  2.3527e-01, -2.3360e-01],\\n\",\n      \"         [-3.4616e-01,  3.8957e-01, -6.4207e-01, -3.2078e-01,  6.7713e-01,\\n\",\n      \"          -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\\n\",\n      \"          -3.1221e-01,  2.4949e-01,  2.4872e-01,  4.2892e-01,  7.1725e-02,\\n\",\n      \"          -3.2751e-02,  3.2776e-01,  5.2313e-01,  3.2315e-01, -5.3379e-01,\\n\",\n      \"           2.7926e-02,  2.5778e-02, -3.0887e-01, -2.3681e-01,  4.8511e-01,\\n\",\n      \"          -1.2633e-03,  1.4333e-02,  3.0642e-01, -2.8257e-01, -7.0073e-01,\\n\",\n      \"           4.8024e-01, -2.8092e-01,  4.6049e-01, -4.3820e-01,  2.5091e-01,\\n\",\n      \"          -2.6511e-01,  3.3634e-01, -1.7201e-01,  5.2863e-01,  5.4009e-01,\\n\",\n      \"          -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01,  3.2482e-01,\\n\",\n      \"          -5.5845e-01,  1.9502e-01, -2.1119e-01,  7.4632e-02, -4.8396e-02,\\n\",\n      \"          -3.3858e-01,  5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\\n\",\n      \"           3.9274e-01, -5.5639e-01,  3.3230e-01, -2.6980e-01, -2.3812e-01,\\n\",\n      \"          -2.7959e-02, -2.4953e-01,  2.3980e-01, -2.4494e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([5, 5])\\n\",\n      \"dec_state: tensor([[[-0.0054,  0.1026, -0.0434, -0.0469,  0.1051,  0.1328, -0.4297,\\n\",\n      \"          -0.0160, -0.7980,  0.2929,  0.2107, -0.0611,  0.3040,  0.2590,\\n\",\n      \"          -0.3220,  0.2154,  0.3706, -0.1055,  0.2912,  0.2053,  0.4289,\\n\",\n      \"          -0.1802,  0.0392,  0.2073, -0.3029,  0.3522,  0.1588, -0.2158,\\n\",\n      \"          -0.1039,  0.2922,  0.2092,  0.1734,  0.4992,  0.3431, -0.3621,\\n\",\n      \"           0.1577,  0.6738,  0.1608,  0.3801,  0.2755,  0.1091,  0.2499,\\n\",\n      \"           0.5256, -0.1300, -0.0803, -0.1510,  0.4538, -0.2751, -0.0921,\\n\",\n      \"          -0.1740, -0.3988,  0.0085,  0.5296,  0.0477,  0.1405, -0.1005,\\n\",\n      \"          -0.5556,  0.4021,  0.4172, -0.3455, -0.1999,  0.0030, -0.7179,\\n\",\n      \"           0.6204],\\n\",\n      \"         [ 0.0101,  0.1571,  0.0096, -0.0777,  0.1266,  0.0835, -0.3232,\\n\",\n      \"          -0.0234, -0.7611,  0.2470,  0.1424, -0.0283,  0.2866,  0.3046,\\n\",\n      \"          -0.2506,  0.1175,  0.2152, -0.0841,  0.2781,  0.3087,  0.4298,\\n\",\n      \"          -0.1879, -0.1021,  0.2544, -0.1945,  0.3269,  0.1917, -0.1841,\\n\",\n      \"          -0.3054,  0.3063,  0.2075,  0.1791,  0.5314,  0.3868, -0.4224,\\n\",\n      \"           0.2291,  0.7101,  0.1901,  0.4350,  0.3889,  0.1908,  0.2173,\\n\",\n      \"           0.5301, -0.0141, -0.1128, -0.1179,  0.3516, -0.2541, -0.0553,\\n\",\n      \"          -0.2687, -0.3058, -0.0068,  0.5079, -0.0197,  0.0041, -0.0742,\\n\",\n      \"          -0.5122,  0.4517,  0.3208, -0.4638, -0.1003, -0.0530, -0.7864,\\n\",\n      \"           0.6530]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01,  1.0857e-01, -1.9370e-01,\\n\",\n      \"           3.7774e-01,  2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\\n\",\n      \"           3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02,  4.3488e-01,\\n\",\n      \"          -3.0141e-01,  3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\\n\",\n      \"          -2.4359e-01,  4.2206e-02,  4.8470e-01,  6.3224e-02, -2.2614e-01,\\n\",\n      \"          -3.1987e-01, -1.8798e-01,  3.6993e-01, -1.4684e-01, -2.3621e-01,\\n\",\n      \"           9.9864e-02,  3.6303e-01, -3.7656e-01,  2.8872e-01,  2.2332e-01,\\n\",\n      \"           2.0550e-01,  8.0081e-02,  4.3839e-01, -1.6392e-01,  4.0154e-01,\\n\",\n      \"          -2.5501e-01,  3.4941e-01, -2.7039e-01, -3.2946e-01,  2.1274e-01,\\n\",\n      \"          -2.3434e-01, -2.1966e-01,  9.3274e-02, -7.7401e-02,  2.1879e-01,\\n\",\n      \"           7.3506e-02,  2.4881e-01, -2.0310e-01,  2.3559e-01, -2.5062e-01,\\n\",\n      \"          -2.0376e-01, -7.3991e-02,  2.4347e-01, -3.7692e-02,  2.6946e-01,\\n\",\n      \"          -1.9928e-01,  4.4936e-01,  1.3003e-01, -2.6040e-01],\\n\",\n      \"         [ 2.2726e-01, -1.8992e-02,  4.8106e-01,  4.0937e-02, -1.9359e-01,\\n\",\n      \"           4.0787e-01, -7.4492e-02,  2.5378e-01, -1.3509e-01,  1.1359e-01,\\n\",\n      \"          -3.4980e-01,  1.5776e-01,  6.9378e-02, -1.1341e-01,  3.5061e-01,\\n\",\n      \"           4.8332e-01, -2.1102e-01,  9.0305e-02, -2.2642e-01, -2.2795e-01,\\n\",\n      \"          -2.9546e-01, -3.0294e-01,  1.8674e-01,  6.4141e-02, -6.4675e-02,\\n\",\n      \"          -1.5324e-01, -2.3329e-01,  3.4140e-01, -1.7343e-01, -2.0366e-01,\\n\",\n      \"           1.1172e-01, -1.4087e-01,  1.4044e-01,  2.0903e-01, -2.5586e-01,\\n\",\n      \"          -1.2561e-01, -1.5254e-01, -8.0407e-02,  1.3476e-01,  1.0619e-01,\\n\",\n      \"           5.9930e-02,  3.1730e-01,  2.6906e-01, -3.8815e-01, -6.9665e-02,\\n\",\n      \"          -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\\n\",\n      \"           2.2937e-01, -3.9784e-04,  2.2407e-01, -2.5350e-01, -3.3453e-01,\\n\",\n      \"          -1.3767e-01, -1.7459e-01,  1.3520e-01,  2.4302e-01,  2.2246e-01,\\n\",\n      \"          -4.8888e-01, -4.4384e-02,  1.1326e-01, -3.4151e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\\n\",\n      \"           5.6420e-02,  3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\\n\",\n      \"          -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01,  5.9376e-02,\\n\",\n      \"          -1.0247e-01,  4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\\n\",\n      \"          -2.3619e-01,  8.6265e-02,  4.6741e-01,  3.5501e-01,  1.7282e-01,\\n\",\n      \"          -4.7347e-01,  1.4804e-01,  2.5100e-02, -1.2214e-01, -2.0864e-01,\\n\",\n      \"           2.3636e-01,  5.4465e-01, -1.1361e-01,  6.3898e-01, -8.9376e-02,\\n\",\n      \"           4.4687e-01,  1.6410e-01,  2.6329e-01, -2.0854e-01,  2.3961e-01,\\n\",\n      \"          -1.0511e-01,  2.5216e-01, -5.3976e-01, -3.7185e-01,  2.4008e-01,\\n\",\n      \"          -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01,  2.5457e-01,\\n\",\n      \"           1.2218e-02,  4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\\n\",\n      \"           7.5208e-02,  4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\\n\",\n      \"          -4.9366e-01,  5.4208e-01,  1.5324e-01,  3.9655e-01],\\n\",\n      \"         [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\\n\",\n      \"           1.3124e-01,  7.5505e-02,  3.4263e-03, -1.1334e-01, -3.4639e-01,\\n\",\n      \"          -3.6638e-01,  4.9316e-02, -2.1105e-01, -2.2630e-01,  2.0947e-02,\\n\",\n      \"           3.3961e-01,  9.4981e-02,  1.3542e-01, -3.8337e-01, -2.0906e-01,\\n\",\n      \"          -3.0973e-01, -1.5681e-01,  3.3510e-01,  2.7113e-01,  2.4488e-01,\\n\",\n      \"          -3.3195e-01,  1.5274e-01,  1.5221e-01, -2.0584e-01, -2.2414e-01,\\n\",\n      \"           2.1737e-01,  1.8852e-01,  7.0223e-02,  5.6388e-01, -3.3851e-01,\\n\",\n      \"           2.6845e-01,  1.1714e-02, -1.4760e-01,  4.3259e-02,  1.0451e-01,\\n\",\n      \"           3.4776e-03,  3.1284e-01, -3.2982e-01, -3.1727e-01,  3.6460e-02,\\n\",\n      \"          -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01,  5.9090e-03,\\n\",\n      \"           8.1017e-02,  2.7271e-01,  4.5712e-02, -2.8956e-01, -1.6350e-02,\\n\",\n      \"           2.0064e-02,  1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\\n\",\n      \"          -6.5255e-01,  3.1658e-01,  1.4671e-01,  3.6424e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.3597e-01,  1.9799e-01,  2.3560e-01, -1.9528e-01, -1.1069e-02,\\n\",\n      \"           1.1243e-01,  2.9132e-01,  4.1456e-01, -4.4696e-01, -4.3193e-01,\\n\",\n      \"           5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01,  1.1342e-01,\\n\",\n      \"           2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\\n\",\n      \"           2.0141e-02,  6.2393e-02,  2.0971e-02,  8.2769e-02,  4.6496e-01,\\n\",\n      \"          -5.3510e-01,  9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\\n\",\n      \"           2.7095e-01,  9.9948e-02, -3.6222e-01,  2.0611e-01,  2.9721e-01,\\n\",\n      \"           7.5574e-02, -1.6472e-01,  3.0445e-01, -3.6575e-02, -2.3158e-01,\\n\",\n      \"           3.9358e-01,  1.9318e-01, -5.6557e-01, -2.6799e-01,  3.8988e-01,\\n\",\n      \"          -1.6496e-01, -1.3708e-01,  4.8606e-02,  1.5874e-01, -8.5188e-02,\\n\",\n      \"          -1.0096e-01,  4.2342e-01, -1.8810e-01,  1.2980e-01, -2.4798e-01,\\n\",\n      \"          -3.8226e-01,  7.9836e-02, -3.9238e-01, -2.6510e-01,  8.0690e-02,\\n\",\n      \"          -3.0937e-01,  5.9596e-01,  2.3998e-01, -7.1284e-02],\\n\",\n      \"         [ 2.6165e-01, -1.4047e-01,  9.4698e-02, -2.6050e-01, -6.5844e-01,\\n\",\n      \"           6.9578e-02,  4.2476e-01,  3.4034e-01,  9.9292e-02, -7.7451e-02,\\n\",\n      \"          -3.3465e-01,  2.1420e-01, -8.8270e-02,  1.8651e-01,  1.4740e-01,\\n\",\n      \"           5.7079e-01,  2.2680e-02,  2.0249e-01, -1.9472e-01, -2.2586e-01,\\n\",\n      \"          -3.8880e-01, -2.1211e-01,  1.9659e-01,  2.1478e-01, -2.5531e-02,\\n\",\n      \"           7.8013e-02,  3.2416e-01,  4.8909e-01,  2.9591e-01,  2.0706e-01,\\n\",\n      \"           5.0405e-02, -3.9285e-02,  1.2387e-01,  1.4932e-01, -6.5346e-01,\\n\",\n      \"           1.9413e-02, -3.7684e-02,  9.7702e-02,  3.4156e-02, -2.0560e-01,\\n\",\n      \"           2.2834e-01,  4.8682e-01, -6.0703e-01,  7.5087e-02,  2.0022e-01,\\n\",\n      \"          -3.6027e-03,  4.1835e-03, -3.9750e-01,  6.0365e-02, -5.0696e-02,\\n\",\n      \"          -6.1541e-02,  5.2398e-01,  3.6723e-01, -3.4788e-01, -1.8475e-02,\\n\",\n      \"           9.8757e-02, -1.9024e-01,  3.2452e-02,  2.3710e-01, -1.6492e-01,\\n\",\n      \"          -1.5253e-01,  3.6131e-01, -2.0650e-01, -4.8210e-01]],\\n\",\n      \"\\n\",\n      \"        [[-9.5985e-02,  7.5312e-02, -1.6275e-02, -1.6717e-01,  1.3966e-01,\\n\",\n      \"           1.2510e-01,  1.7152e-01,  3.7018e-01,  1.7329e-01, -3.6036e-03,\\n\",\n      \"           1.0929e-01, -2.8514e-01,  1.1324e-01, -4.5108e-01,  2.3049e-01,\\n\",\n      \"           1.1407e-01,  5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\\n\",\n      \"           3.5342e-01,  1.2921e-01, -1.4113e-01,  8.1400e-02,  6.0903e-01,\\n\",\n      \"           1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\\n\",\n      \"           2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02,  3.7362e-01,\\n\",\n      \"           1.3951e-01,  2.5189e-01,  1.7649e-01, -3.2773e-01, -1.1435e-01,\\n\",\n      \"          -1.6709e-01,  3.5067e-01,  9.1052e-02, -4.6298e-02,  3.1424e-01,\\n\",\n      \"           8.7142e-03,  1.8674e-01,  1.2893e-01,  2.1966e-01,  1.6659e-01,\\n\",\n      \"          -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\\n\",\n      \"          -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01,  4.7413e-01,\\n\",\n      \"          -2.9576e-01,  2.2703e-01, -3.9934e-01,  1.7219e-01],\\n\",\n      \"         [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\\n\",\n      \"           1.5163e-01,  1.7886e-01,  2.7458e-01,  3.3433e-01,  2.0521e-01,\\n\",\n      \"          -1.4750e-01, -1.2898e-01, -3.0942e-02,  3.7652e-02,  1.3187e-01,\\n\",\n      \"           9.9556e-02,  1.6104e-01, -2.2675e-02,  4.0490e-02, -4.2415e-01,\\n\",\n      \"           4.9033e-02, -5.0992e-02, -1.2216e-02,  1.6971e-01,  3.7812e-01,\\n\",\n      \"           3.2139e-01,  1.6347e-01,  6.9504e-02,  1.0657e-01, -1.5354e-01,\\n\",\n      \"           1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\\n\",\n      \"           9.1052e-02,  2.3660e-01,  2.3901e-02, -2.6365e-01, -1.5990e-01,\\n\",\n      \"          -2.8048e-01,  5.6058e-01,  3.8168e-02,  2.1925e-01,  3.2005e-01,\\n\",\n      \"           1.8152e-01,  2.5467e-01, -5.4982e-03,  1.7120e-01,  1.8606e-01,\\n\",\n      \"          -1.4660e-01, -4.4520e-01,  1.6732e-01, -4.7045e-01, -7.7974e-02,\\n\",\n      \"          -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01,  3.0227e-01,\\n\",\n      \"          -2.2191e-01,  2.9605e-02, -6.3017e-01, -1.4525e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.4904e-01, -6.8274e-02,  5.6533e-02, -2.4772e-02,  3.2061e-01,\\n\",\n      \"           2.1123e-01,  1.5713e-01, -1.7263e-01,  1.5009e-01, -4.3575e-03,\\n\",\n      \"          -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01,  1.8752e-01,\\n\",\n      \"           2.7129e-01,  1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\\n\",\n      \"           2.2746e-01,  8.3794e-02, -1.3259e-01, -1.1347e-01,  6.5971e-01,\\n\",\n      \"          -2.3801e-01,  3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\\n\",\n      \"           2.3377e-01,  3.3690e-02,  3.5666e-01, -2.5705e-01,  8.0429e-02,\\n\",\n      \"          -1.0046e-01, -3.2683e-01,  1.7847e-01,  4.9813e-02, -2.7301e-02,\\n\",\n      \"          -2.8488e-01,  1.3049e-01, -3.1199e-01,  2.1468e-01,  4.1697e-01,\\n\",\n      \"          -9.0697e-03,  3.0670e-01,  3.1493e-02,  1.2018e-01,  3.3610e-01,\\n\",\n      \"           2.8280e-02, -7.6110e-02,  2.6174e-01, -3.1480e-01,  4.1252e-03,\\n\",\n      \"           1.0057e-01,  3.8000e-02, -2.0712e-01,  2.7292e-01,  5.9932e-01,\\n\",\n      \"           1.2308e-01,  4.6245e-01,  1.7830e-02, -3.6655e-01],\\n\",\n      \"         [-1.6559e-01, -1.4964e-01,  1.6312e-02, -7.3873e-02,  2.1183e-01,\\n\",\n      \"           2.4620e-01,  1.3492e-01, -2.5850e-01,  2.4197e-01,  1.5375e-01,\\n\",\n      \"          -1.7702e-01, -3.0812e-02, -2.3033e-01,  5.7193e-02,  8.9032e-02,\\n\",\n      \"           2.5915e-01,  1.7881e-01,  9.2474e-02,  6.9597e-02, -5.1476e-01,\\n\",\n      \"           1.3662e-02,  1.7113e-02, -6.8879e-02, -7.7871e-02,  5.7157e-01,\\n\",\n      \"          -1.9469e-01,  4.2673e-01,  1.1721e-01, -5.7496e-01, -3.3230e-01,\\n\",\n      \"           1.5853e-01,  1.8137e-03,  3.5060e-01, -2.1769e-01, -1.9723e-01,\\n\",\n      \"          -1.1998e-01, -3.5563e-01,  7.3324e-02,  6.4801e-02, -6.5640e-02,\\n\",\n      \"          -3.7750e-01,  1.6369e-01, -3.3921e-01,  3.2287e-01,  4.4207e-01,\\n\",\n      \"           1.0073e-01,  3.4861e-01,  8.5830e-02,  1.3543e-01,  3.6765e-01,\\n\",\n      \"           2.3823e-02, -7.5720e-02,  3.2633e-01, -5.0892e-01,  4.9602e-02,\\n\",\n      \"           2.0053e-01, -9.2345e-03, -8.3791e-03,  3.5187e-01,  4.7023e-01,\\n\",\n      \"           1.4153e-01,  3.2948e-01, -3.3481e-02, -4.5740e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.1226e-01,  2.4138e-01, -4.2202e-01, -1.7461e-01,  5.4534e-01,\\n\",\n      \"          -4.2925e-01, -2.6951e-01, -2.0688e-01,  2.3745e-02, -1.1517e-01,\\n\",\n      \"          -2.2702e-01,  8.5057e-02,  1.9687e-01,  1.8045e-01,  1.4299e-01,\\n\",\n      \"           1.3289e-01,  2.7649e-01,  3.7999e-01,  1.7433e-01, -5.2645e-01,\\n\",\n      \"           1.9178e-01,  8.7907e-02, -2.5690e-01, -2.0036e-01,  6.0692e-01,\\n\",\n      \"          -1.0853e-01,  1.2578e-01,  8.5823e-02, -4.5513e-01, -6.2062e-01,\\n\",\n      \"           4.1656e-01, -8.5522e-02,  4.3798e-01, -3.9802e-01,  2.4185e-01,\\n\",\n      \"          -1.5286e-01,  1.2474e-01, -4.1761e-02,  3.6593e-01,  3.9166e-01,\\n\",\n      \"          -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01,  3.1793e-01,\\n\",\n      \"          -4.1171e-01,  2.4068e-01, -1.5773e-01,  8.6016e-02,  1.3797e-01,\\n\",\n      \"          -1.8716e-01,  6.9685e-02,  4.8977e-02, -3.2609e-01, -1.2320e-01,\\n\",\n      \"           2.7405e-01, -3.3264e-01,  9.2106e-02, -9.5439e-02, -1.2941e-01,\\n\",\n      \"          -6.0168e-03, -1.0422e-01,  1.7811e-01, -2.6908e-01],\\n\",\n      \"         [-2.8426e-01,  2.0979e-01, -4.4463e-01, -2.0507e-01,  4.8820e-01,\\n\",\n      \"          -3.8590e-01, -2.7336e-01, -2.7192e-01,  5.9091e-02, -5.6585e-02,\\n\",\n      \"          -2.9206e-01,  1.5256e-01,  1.0575e-01,  3.3100e-01,  6.6701e-02,\\n\",\n      \"           1.1139e-01,  2.9278e-01,  4.2220e-01,  2.2346e-01, -5.3398e-01,\\n\",\n      \"           6.1949e-02,  3.1205e-02, -2.1178e-01, -1.8280e-01,  5.6443e-01,\\n\",\n      \"          -8.3626e-02,  1.7926e-01,  2.4563e-01, -3.9010e-01, -5.8782e-01,\\n\",\n      \"           3.6655e-01, -1.1015e-01,  4.1846e-01, -3.7551e-01,  5.5107e-02,\\n\",\n      \"          -1.6866e-01,  5.1045e-02, -1.0331e-01,  3.6541e-01,  3.5180e-01,\\n\",\n      \"          -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01,  3.5780e-01,\\n\",\n      \"          -3.3289e-01,  2.8968e-01, -1.0464e-01,  1.1147e-01,  1.5557e-01,\\n\",\n      \"          -1.9501e-01,  6.4053e-02,  4.8930e-02, -4.1890e-01, -1.0011e-01,\\n\",\n      \"           3.3335e-01, -3.6849e-01,  1.6564e-01, -8.3867e-02, -1.3537e-01,\\n\",\n      \"          -1.7237e-02, -1.4193e-01,  1.7183e-01, -3.0383e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3374e-01,  4.0180e-01, -6.3305e-01, -3.0021e-01,  7.0703e-01,\\n\",\n      \"          -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\\n\",\n      \"          -2.8203e-01,  2.1185e-01,  3.0355e-01,  3.5339e-01,  1.3138e-01,\\n\",\n      \"          -1.0663e-02,  3.2603e-01,  5.0363e-01,  2.9328e-01, -5.3031e-01,\\n\",\n      \"           9.6803e-02,  7.1699e-02, -3.4079e-01, -2.4798e-01,  5.0690e-01,\\n\",\n      \"          -1.7497e-02, -1.8682e-02,  2.1297e-01, -3.2107e-01, -7.1430e-01,\\n\",\n      \"           5.1159e-01, -2.7057e-01,  4.7796e-01, -4.5132e-01,  3.6998e-01,\\n\",\n      \"          -2.5730e-01,  3.9020e-01, -1.3587e-01,  5.3076e-01,  5.6810e-01,\\n\",\n      \"          -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01,  2.9033e-01,\\n\",\n      \"          -6.0690e-01,  1.4748e-01, -2.5577e-01,  4.8167e-02, -5.2315e-02,\\n\",\n      \"          -3.3055e-01,  5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\\n\",\n      \"           3.5335e-01, -5.3203e-01,  3.0482e-01, -2.6943e-01, -2.4425e-01,\\n\",\n      \"          -8.9498e-03, -2.3237e-01,  2.3527e-01, -2.3360e-01],\\n\",\n      \"         [-3.4616e-01,  3.8957e-01, -6.4207e-01, -3.2078e-01,  6.7713e-01,\\n\",\n      \"          -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\\n\",\n      \"          -3.1221e-01,  2.4949e-01,  2.4872e-01,  4.2892e-01,  7.1725e-02,\\n\",\n      \"          -3.2751e-02,  3.2776e-01,  5.2313e-01,  3.2315e-01, -5.3379e-01,\\n\",\n      \"           2.7926e-02,  2.5778e-02, -3.0887e-01, -2.3681e-01,  4.8511e-01,\\n\",\n      \"          -1.2633e-03,  1.4333e-02,  3.0642e-01, -2.8257e-01, -7.0073e-01,\\n\",\n      \"           4.8024e-01, -2.8092e-01,  4.6049e-01, -4.3820e-01,  2.5091e-01,\\n\",\n      \"          -2.6511e-01,  3.3634e-01, -1.7201e-01,  5.2863e-01,  5.4009e-01,\\n\",\n      \"          -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01,  3.2482e-01,\\n\",\n      \"          -5.5845e-01,  1.9502e-01, -2.1119e-01,  7.4632e-02, -4.8396e-02,\\n\",\n      \"          -3.3858e-01,  5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\\n\",\n      \"           3.9274e-01, -5.5639e-01,  3.3230e-01, -2.6980e-01, -2.3812e-01,\\n\",\n      \"          -2.7959e-02, -2.4953e-01,  2.3980e-01, -2.4494e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([31, 21])\\n\",\n      \"dec_state: tensor([[[ 0.1977, -0.3345,  0.0459, -0.3473, -0.0722,  0.0586, -0.3623,\\n\",\n      \"          -0.2114, -0.5781,  0.4392, -0.2438,  0.2596,  0.1713, -0.1007,\\n\",\n      \"           0.0241,  0.2563,  0.1479, -0.1439,  0.5481, -0.1497,  0.0898,\\n\",\n      \"          -0.1396, -0.2089, -0.0407, -0.1747,  0.0271, -0.0122, -0.3566,\\n\",\n      \"           0.2868,  0.0479, -0.4585,  0.1677,  0.4091, -0.1290,  0.2029,\\n\",\n      \"          -0.0115,  0.3976, -0.0221, -0.0594,  0.3445,  0.0143,  0.2021,\\n\",\n      \"           0.0394,  0.0508, -0.3510,  0.4293,  0.2582, -0.2285, -0.2098,\\n\",\n      \"          -0.4479, -0.1864,  0.2688,  0.4194,  0.2484,  0.0706,  0.0172,\\n\",\n      \"          -0.0479,  0.0228,  0.6451, -0.4345, -0.3857,  0.0807, -0.6453,\\n\",\n      \"           0.7001],\\n\",\n      \"         [ 0.2139, -0.0869, -0.0038, -0.1366,  0.0196,  0.1550,  0.0313,\\n\",\n      \"          -0.0954, -0.6801,  0.1557,  0.2987, -0.6068, -0.1330, -0.3837,\\n\",\n      \"           0.4511,  0.3779,  0.0526, -0.1196, -0.0118,  0.1980,  0.5758,\\n\",\n      \"          -0.1990, -0.5046,  0.1849,  0.0036, -0.0929,  0.1270, -0.2788,\\n\",\n      \"          -0.3777, -0.3418, -0.4740,  0.1043, -0.0798, -0.2723, -0.1207,\\n\",\n      \"          -0.3713,  0.5358,  0.2067, -0.0101, -0.0575, -0.0231,  0.1175,\\n\",\n      \"           0.6304,  0.1753, -0.1738, -0.2059, -0.3161, -0.1154, -0.2476,\\n\",\n      \"          -0.1483, -0.0196,  0.1435,  0.2659,  0.3608,  0.2672, -0.3410,\\n\",\n      \"          -0.5395,  0.1800,  0.5081, -0.4818, -0.2837,  0.0526, -0.2003,\\n\",\n      \"           0.3075]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01,  1.0857e-01, -1.9370e-01,\\n\",\n      \"           3.7774e-01,  2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\\n\",\n      \"           3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02,  4.3488e-01,\\n\",\n      \"          -3.0141e-01,  3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\\n\",\n      \"          -2.4359e-01,  4.2206e-02,  4.8470e-01,  6.3224e-02, -2.2614e-01,\\n\",\n      \"          -3.1987e-01, -1.8798e-01,  3.6993e-01, -1.4684e-01, -2.3621e-01,\\n\",\n      \"           9.9864e-02,  3.6303e-01, -3.7656e-01,  2.8872e-01,  2.2332e-01,\\n\",\n      \"           2.0550e-01,  8.0081e-02,  4.3839e-01, -1.6392e-01,  4.0154e-01,\\n\",\n      \"          -2.5501e-01,  3.4941e-01, -2.7039e-01, -3.2946e-01,  2.1274e-01,\\n\",\n      \"          -2.3434e-01, -2.1966e-01,  9.3274e-02, -7.7401e-02,  2.1879e-01,\\n\",\n      \"           7.3506e-02,  2.4881e-01, -2.0310e-01,  2.3559e-01, -2.5062e-01,\\n\",\n      \"          -2.0376e-01, -7.3991e-02,  2.4347e-01, -3.7692e-02,  2.6946e-01,\\n\",\n      \"          -1.9928e-01,  4.4936e-01,  1.3003e-01, -2.6040e-01],\\n\",\n      \"         [ 2.2726e-01, -1.8992e-02,  4.8106e-01,  4.0937e-02, -1.9359e-01,\\n\",\n      \"           4.0787e-01, -7.4492e-02,  2.5378e-01, -1.3509e-01,  1.1359e-01,\\n\",\n      \"          -3.4980e-01,  1.5776e-01,  6.9378e-02, -1.1341e-01,  3.5061e-01,\\n\",\n      \"           4.8332e-01, -2.1102e-01,  9.0305e-02, -2.2642e-01, -2.2795e-01,\\n\",\n      \"          -2.9546e-01, -3.0294e-01,  1.8674e-01,  6.4141e-02, -6.4675e-02,\\n\",\n      \"          -1.5324e-01, -2.3329e-01,  3.4140e-01, -1.7343e-01, -2.0366e-01,\\n\",\n      \"           1.1172e-01, -1.4087e-01,  1.4044e-01,  2.0903e-01, -2.5586e-01,\\n\",\n      \"          -1.2561e-01, -1.5254e-01, -8.0407e-02,  1.3476e-01,  1.0619e-01,\\n\",\n      \"           5.9930e-02,  3.1730e-01,  2.6906e-01, -3.8815e-01, -6.9665e-02,\\n\",\n      \"          -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\\n\",\n      \"           2.2937e-01, -3.9784e-04,  2.2407e-01, -2.5350e-01, -3.3453e-01,\\n\",\n      \"          -1.3767e-01, -1.7459e-01,  1.3520e-01,  2.4302e-01,  2.2246e-01,\\n\",\n      \"          -4.8888e-01, -4.4384e-02,  1.1326e-01, -3.4151e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\\n\",\n      \"           5.6420e-02,  3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\\n\",\n      \"          -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01,  5.9376e-02,\\n\",\n      \"          -1.0247e-01,  4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\\n\",\n      \"          -2.3619e-01,  8.6265e-02,  4.6741e-01,  3.5501e-01,  1.7282e-01,\\n\",\n      \"          -4.7347e-01,  1.4804e-01,  2.5100e-02, -1.2214e-01, -2.0864e-01,\\n\",\n      \"           2.3636e-01,  5.4465e-01, -1.1361e-01,  6.3898e-01, -8.9376e-02,\\n\",\n      \"           4.4687e-01,  1.6410e-01,  2.6329e-01, -2.0854e-01,  2.3961e-01,\\n\",\n      \"          -1.0511e-01,  2.5216e-01, -5.3976e-01, -3.7185e-01,  2.4008e-01,\\n\",\n      \"          -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01,  2.5457e-01,\\n\",\n      \"           1.2218e-02,  4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\\n\",\n      \"           7.5208e-02,  4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\\n\",\n      \"          -4.9366e-01,  5.4208e-01,  1.5324e-01,  3.9655e-01],\\n\",\n      \"         [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\\n\",\n      \"           1.3124e-01,  7.5505e-02,  3.4263e-03, -1.1334e-01, -3.4639e-01,\\n\",\n      \"          -3.6638e-01,  4.9316e-02, -2.1105e-01, -2.2630e-01,  2.0947e-02,\\n\",\n      \"           3.3961e-01,  9.4981e-02,  1.3542e-01, -3.8337e-01, -2.0906e-01,\\n\",\n      \"          -3.0973e-01, -1.5681e-01,  3.3510e-01,  2.7113e-01,  2.4488e-01,\\n\",\n      \"          -3.3195e-01,  1.5274e-01,  1.5221e-01, -2.0584e-01, -2.2414e-01,\\n\",\n      \"           2.1737e-01,  1.8852e-01,  7.0223e-02,  5.6388e-01, -3.3851e-01,\\n\",\n      \"           2.6845e-01,  1.1714e-02, -1.4760e-01,  4.3259e-02,  1.0451e-01,\\n\",\n      \"           3.4776e-03,  3.1284e-01, -3.2982e-01, -3.1727e-01,  3.6460e-02,\\n\",\n      \"          -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01,  5.9090e-03,\\n\",\n      \"           8.1017e-02,  2.7271e-01,  4.5712e-02, -2.8956e-01, -1.6350e-02,\\n\",\n      \"           2.0064e-02,  1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\\n\",\n      \"          -6.5255e-01,  3.1658e-01,  1.4671e-01,  3.6424e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.3597e-01,  1.9799e-01,  2.3560e-01, -1.9528e-01, -1.1069e-02,\\n\",\n      \"           1.1243e-01,  2.9132e-01,  4.1456e-01, -4.4696e-01, -4.3193e-01,\\n\",\n      \"           5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01,  1.1342e-01,\\n\",\n      \"           2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\\n\",\n      \"           2.0141e-02,  6.2393e-02,  2.0971e-02,  8.2769e-02,  4.6496e-01,\\n\",\n      \"          -5.3510e-01,  9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\\n\",\n      \"           2.7095e-01,  9.9948e-02, -3.6222e-01,  2.0611e-01,  2.9721e-01,\\n\",\n      \"           7.5574e-02, -1.6472e-01,  3.0445e-01, -3.6575e-02, -2.3158e-01,\\n\",\n      \"           3.9358e-01,  1.9318e-01, -5.6557e-01, -2.6799e-01,  3.8988e-01,\\n\",\n      \"          -1.6496e-01, -1.3708e-01,  4.8606e-02,  1.5874e-01, -8.5188e-02,\\n\",\n      \"          -1.0096e-01,  4.2342e-01, -1.8810e-01,  1.2980e-01, -2.4798e-01,\\n\",\n      \"          -3.8226e-01,  7.9836e-02, -3.9238e-01, -2.6510e-01,  8.0690e-02,\\n\",\n      \"          -3.0937e-01,  5.9596e-01,  2.3998e-01, -7.1284e-02],\\n\",\n      \"         [ 2.6165e-01, -1.4047e-01,  9.4698e-02, -2.6050e-01, -6.5844e-01,\\n\",\n      \"           6.9578e-02,  4.2476e-01,  3.4034e-01,  9.9292e-02, -7.7451e-02,\\n\",\n      \"          -3.3465e-01,  2.1420e-01, -8.8270e-02,  1.8651e-01,  1.4740e-01,\\n\",\n      \"           5.7079e-01,  2.2680e-02,  2.0249e-01, -1.9472e-01, -2.2586e-01,\\n\",\n      \"          -3.8880e-01, -2.1211e-01,  1.9659e-01,  2.1478e-01, -2.5531e-02,\\n\",\n      \"           7.8013e-02,  3.2416e-01,  4.8909e-01,  2.9591e-01,  2.0706e-01,\\n\",\n      \"           5.0405e-02, -3.9285e-02,  1.2387e-01,  1.4932e-01, -6.5346e-01,\\n\",\n      \"           1.9413e-02, -3.7684e-02,  9.7702e-02,  3.4156e-02, -2.0560e-01,\\n\",\n      \"           2.2834e-01,  4.8682e-01, -6.0703e-01,  7.5087e-02,  2.0022e-01,\\n\",\n      \"          -3.6027e-03,  4.1835e-03, -3.9750e-01,  6.0365e-02, -5.0696e-02,\\n\",\n      \"          -6.1541e-02,  5.2398e-01,  3.6723e-01, -3.4788e-01, -1.8475e-02,\\n\",\n      \"           9.8757e-02, -1.9024e-01,  3.2452e-02,  2.3710e-01, -1.6492e-01,\\n\",\n      \"          -1.5253e-01,  3.6131e-01, -2.0650e-01, -4.8210e-01]],\\n\",\n      \"\\n\",\n      \"        [[-9.5985e-02,  7.5312e-02, -1.6275e-02, -1.6717e-01,  1.3966e-01,\\n\",\n      \"           1.2510e-01,  1.7152e-01,  3.7018e-01,  1.7329e-01, -3.6036e-03,\\n\",\n      \"           1.0929e-01, -2.8514e-01,  1.1324e-01, -4.5108e-01,  2.3049e-01,\\n\",\n      \"           1.1407e-01,  5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\\n\",\n      \"           3.5342e-01,  1.2921e-01, -1.4113e-01,  8.1400e-02,  6.0903e-01,\\n\",\n      \"           1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\\n\",\n      \"           2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02,  3.7362e-01,\\n\",\n      \"           1.3951e-01,  2.5189e-01,  1.7649e-01, -3.2773e-01, -1.1435e-01,\\n\",\n      \"          -1.6709e-01,  3.5067e-01,  9.1052e-02, -4.6298e-02,  3.1424e-01,\\n\",\n      \"           8.7142e-03,  1.8674e-01,  1.2893e-01,  2.1966e-01,  1.6659e-01,\\n\",\n      \"          -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\\n\",\n      \"          -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01,  4.7413e-01,\\n\",\n      \"          -2.9576e-01,  2.2703e-01, -3.9934e-01,  1.7219e-01],\\n\",\n      \"         [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\\n\",\n      \"           1.5163e-01,  1.7886e-01,  2.7458e-01,  3.3433e-01,  2.0521e-01,\\n\",\n      \"          -1.4750e-01, -1.2898e-01, -3.0942e-02,  3.7652e-02,  1.3187e-01,\\n\",\n      \"           9.9556e-02,  1.6104e-01, -2.2675e-02,  4.0490e-02, -4.2415e-01,\\n\",\n      \"           4.9033e-02, -5.0992e-02, -1.2216e-02,  1.6971e-01,  3.7812e-01,\\n\",\n      \"           3.2139e-01,  1.6347e-01,  6.9504e-02,  1.0657e-01, -1.5354e-01,\\n\",\n      \"           1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\\n\",\n      \"           9.1052e-02,  2.3660e-01,  2.3901e-02, -2.6365e-01, -1.5990e-01,\\n\",\n      \"          -2.8048e-01,  5.6058e-01,  3.8168e-02,  2.1925e-01,  3.2005e-01,\\n\",\n      \"           1.8152e-01,  2.5467e-01, -5.4982e-03,  1.7120e-01,  1.8606e-01,\\n\",\n      \"          -1.4660e-01, -4.4520e-01,  1.6732e-01, -4.7045e-01, -7.7974e-02,\\n\",\n      \"          -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01,  3.0227e-01,\\n\",\n      \"          -2.2191e-01,  2.9605e-02, -6.3017e-01, -1.4525e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.4904e-01, -6.8274e-02,  5.6533e-02, -2.4772e-02,  3.2061e-01,\\n\",\n      \"           2.1123e-01,  1.5713e-01, -1.7263e-01,  1.5009e-01, -4.3575e-03,\\n\",\n      \"          -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01,  1.8752e-01,\\n\",\n      \"           2.7129e-01,  1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\\n\",\n      \"           2.2746e-01,  8.3794e-02, -1.3259e-01, -1.1347e-01,  6.5971e-01,\\n\",\n      \"          -2.3801e-01,  3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\\n\",\n      \"           2.3377e-01,  3.3690e-02,  3.5666e-01, -2.5705e-01,  8.0429e-02,\\n\",\n      \"          -1.0046e-01, -3.2683e-01,  1.7847e-01,  4.9813e-02, -2.7301e-02,\\n\",\n      \"          -2.8488e-01,  1.3049e-01, -3.1199e-01,  2.1468e-01,  4.1697e-01,\\n\",\n      \"          -9.0697e-03,  3.0670e-01,  3.1493e-02,  1.2018e-01,  3.3610e-01,\\n\",\n      \"           2.8280e-02, -7.6110e-02,  2.6174e-01, -3.1480e-01,  4.1252e-03,\\n\",\n      \"           1.0057e-01,  3.8000e-02, -2.0712e-01,  2.7292e-01,  5.9932e-01,\\n\",\n      \"           1.2308e-01,  4.6245e-01,  1.7830e-02, -3.6655e-01],\\n\",\n      \"         [-1.6559e-01, -1.4964e-01,  1.6312e-02, -7.3873e-02,  2.1183e-01,\\n\",\n      \"           2.4620e-01,  1.3492e-01, -2.5850e-01,  2.4197e-01,  1.5375e-01,\\n\",\n      \"          -1.7702e-01, -3.0812e-02, -2.3033e-01,  5.7193e-02,  8.9032e-02,\\n\",\n      \"           2.5915e-01,  1.7881e-01,  9.2474e-02,  6.9597e-02, -5.1476e-01,\\n\",\n      \"           1.3662e-02,  1.7113e-02, -6.8879e-02, -7.7871e-02,  5.7157e-01,\\n\",\n      \"          -1.9469e-01,  4.2673e-01,  1.1721e-01, -5.7496e-01, -3.3230e-01,\\n\",\n      \"           1.5853e-01,  1.8137e-03,  3.5060e-01, -2.1769e-01, -1.9723e-01,\\n\",\n      \"          -1.1998e-01, -3.5563e-01,  7.3324e-02,  6.4801e-02, -6.5640e-02,\\n\",\n      \"          -3.7750e-01,  1.6369e-01, -3.3921e-01,  3.2287e-01,  4.4207e-01,\\n\",\n      \"           1.0073e-01,  3.4861e-01,  8.5830e-02,  1.3543e-01,  3.6765e-01,\\n\",\n      \"           2.3823e-02, -7.5720e-02,  3.2633e-01, -5.0892e-01,  4.9602e-02,\\n\",\n      \"           2.0053e-01, -9.2345e-03, -8.3791e-03,  3.5187e-01,  4.7023e-01,\\n\",\n      \"           1.4153e-01,  3.2948e-01, -3.3481e-02, -4.5740e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.1226e-01,  2.4138e-01, -4.2202e-01, -1.7461e-01,  5.4534e-01,\\n\",\n      \"          -4.2925e-01, -2.6951e-01, -2.0688e-01,  2.3745e-02, -1.1517e-01,\\n\",\n      \"          -2.2702e-01,  8.5057e-02,  1.9687e-01,  1.8045e-01,  1.4299e-01,\\n\",\n      \"           1.3289e-01,  2.7649e-01,  3.7999e-01,  1.7433e-01, -5.2645e-01,\\n\",\n      \"           1.9178e-01,  8.7907e-02, -2.5690e-01, -2.0036e-01,  6.0692e-01,\\n\",\n      \"          -1.0853e-01,  1.2578e-01,  8.5823e-02, -4.5513e-01, -6.2062e-01,\\n\",\n      \"           4.1656e-01, -8.5522e-02,  4.3798e-01, -3.9802e-01,  2.4185e-01,\\n\",\n      \"          -1.5286e-01,  1.2474e-01, -4.1761e-02,  3.6593e-01,  3.9166e-01,\\n\",\n      \"          -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01,  3.1793e-01,\\n\",\n      \"          -4.1171e-01,  2.4068e-01, -1.5773e-01,  8.6016e-02,  1.3797e-01,\\n\",\n      \"          -1.8716e-01,  6.9685e-02,  4.8977e-02, -3.2609e-01, -1.2320e-01,\\n\",\n      \"           2.7405e-01, -3.3264e-01,  9.2106e-02, -9.5439e-02, -1.2941e-01,\\n\",\n      \"          -6.0168e-03, -1.0422e-01,  1.7811e-01, -2.6908e-01],\\n\",\n      \"         [-2.8426e-01,  2.0979e-01, -4.4463e-01, -2.0507e-01,  4.8820e-01,\\n\",\n      \"          -3.8590e-01, -2.7336e-01, -2.7192e-01,  5.9091e-02, -5.6585e-02,\\n\",\n      \"          -2.9206e-01,  1.5256e-01,  1.0575e-01,  3.3100e-01,  6.6701e-02,\\n\",\n      \"           1.1139e-01,  2.9278e-01,  4.2220e-01,  2.2346e-01, -5.3398e-01,\\n\",\n      \"           6.1949e-02,  3.1205e-02, -2.1178e-01, -1.8280e-01,  5.6443e-01,\\n\",\n      \"          -8.3626e-02,  1.7926e-01,  2.4563e-01, -3.9010e-01, -5.8782e-01,\\n\",\n      \"           3.6655e-01, -1.1015e-01,  4.1846e-01, -3.7551e-01,  5.5107e-02,\\n\",\n      \"          -1.6866e-01,  5.1045e-02, -1.0331e-01,  3.6541e-01,  3.5180e-01,\\n\",\n      \"          -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01,  3.5780e-01,\\n\",\n      \"          -3.3289e-01,  2.8968e-01, -1.0464e-01,  1.1147e-01,  1.5557e-01,\\n\",\n      \"          -1.9501e-01,  6.4053e-02,  4.8930e-02, -4.1890e-01, -1.0011e-01,\\n\",\n      \"           3.3335e-01, -3.6849e-01,  1.6564e-01, -8.3867e-02, -1.3537e-01,\\n\",\n      \"          -1.7237e-02, -1.4193e-01,  1.7183e-01, -3.0383e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3374e-01,  4.0180e-01, -6.3305e-01, -3.0021e-01,  7.0703e-01,\\n\",\n      \"          -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\\n\",\n      \"          -2.8203e-01,  2.1185e-01,  3.0355e-01,  3.5339e-01,  1.3138e-01,\\n\",\n      \"          -1.0663e-02,  3.2603e-01,  5.0363e-01,  2.9328e-01, -5.3031e-01,\\n\",\n      \"           9.6803e-02,  7.1699e-02, -3.4079e-01, -2.4798e-01,  5.0690e-01,\\n\",\n      \"          -1.7497e-02, -1.8682e-02,  2.1297e-01, -3.2107e-01, -7.1430e-01,\\n\",\n      \"           5.1159e-01, -2.7057e-01,  4.7796e-01, -4.5132e-01,  3.6998e-01,\\n\",\n      \"          -2.5730e-01,  3.9020e-01, -1.3587e-01,  5.3076e-01,  5.6810e-01,\\n\",\n      \"          -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01,  2.9033e-01,\\n\",\n      \"          -6.0690e-01,  1.4748e-01, -2.5577e-01,  4.8167e-02, -5.2315e-02,\\n\",\n      \"          -3.3055e-01,  5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\\n\",\n      \"           3.5335e-01, -5.3203e-01,  3.0482e-01, -2.6943e-01, -2.4425e-01,\\n\",\n      \"          -8.9498e-03, -2.3237e-01,  2.3527e-01, -2.3360e-01],\\n\",\n      \"         [-3.4616e-01,  3.8957e-01, -6.4207e-01, -3.2078e-01,  6.7713e-01,\\n\",\n      \"          -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\\n\",\n      \"          -3.1221e-01,  2.4949e-01,  2.4872e-01,  4.2892e-01,  7.1725e-02,\\n\",\n      \"          -3.2751e-02,  3.2776e-01,  5.2313e-01,  3.2315e-01, -5.3379e-01,\\n\",\n      \"           2.7926e-02,  2.5778e-02, -3.0887e-01, -2.3681e-01,  4.8511e-01,\\n\",\n      \"          -1.2633e-03,  1.4333e-02,  3.0642e-01, -2.8257e-01, -7.0073e-01,\\n\",\n      \"           4.8024e-01, -2.8092e-01,  4.6049e-01, -4.3820e-01,  2.5091e-01,\\n\",\n      \"          -2.6511e-01,  3.3634e-01, -1.7201e-01,  5.2863e-01,  5.4009e-01,\\n\",\n      \"          -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01,  3.2482e-01,\\n\",\n      \"          -5.5845e-01,  1.9502e-01, -2.1119e-01,  7.4632e-02, -4.8396e-02,\\n\",\n      \"          -3.3858e-01,  5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\\n\",\n      \"           3.9274e-01, -5.5639e-01,  3.3230e-01, -2.6980e-01, -2.3812e-01,\\n\",\n      \"          -2.7959e-02, -2.4953e-01,  2.3980e-01, -2.4494e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([3, 3])\\n\",\n      \"dec_state: tensor([[[ 6.6079e-01, -1.7261e-01, -1.8877e-01, -3.4449e-01,  1.6773e-01,\\n\",\n      \"           3.4798e-01, -3.0880e-01, -3.1017e-01, -6.2126e-01,  1.0526e-01,\\n\",\n      \"          -4.8530e-02,  1.5068e-02,  3.2931e-01,  1.4701e-01, -3.3345e-01,\\n\",\n      \"           3.2637e-01,  4.4804e-01, -1.7937e-01,  1.8021e-01,  4.5965e-01,\\n\",\n      \"          -5.4428e-02, -3.3898e-01, -3.0833e-02, -1.3361e-01,  1.9923e-01,\\n\",\n      \"           1.3078e-01,  2.8863e-01, -6.0957e-01,  2.3793e-01, -3.8904e-01,\\n\",\n      \"          -5.3949e-01, -1.1579e-01,  4.3756e-02, -3.0934e-01,  5.3287e-01,\\n\",\n      \"          -1.0642e-01,  5.6540e-01,  3.2564e-04,  1.5540e-01,  3.0736e-01,\\n\",\n      \"           2.4142e-02,  3.0227e-02, -3.1129e-01,  8.0395e-03, -6.0605e-01,\\n\",\n      \"           1.9338e-01,  5.4653e-01,  9.5703e-02, -6.2977e-01, -2.0631e-01,\\n\",\n      \"          -3.3298e-01,  4.3262e-01, -2.8399e-01,  1.5005e-01,  2.8772e-01,\\n\",\n      \"           5.5689e-02, -2.3606e-01, -1.2487e-01,  3.3709e-01, -1.7572e-01,\\n\",\n      \"          -5.2282e-01, -3.4881e-02, -7.2568e-01,  4.8172e-02],\\n\",\n      \"         [ 6.6418e-01,  1.5532e-02, -1.7534e-01, -2.5712e-01,  2.5769e-01,\\n\",\n      \"           4.0462e-01,  4.0224e-02, -2.2657e-01, -6.9469e-01,  1.2138e-02,\\n\",\n      \"           3.5377e-02, -2.9765e-01,  1.2821e-01,  6.9529e-02, -9.1919e-03,\\n\",\n      \"           2.9896e-01,  4.0232e-01, -1.2781e-01,  4.3743e-03,  5.1587e-01,\\n\",\n      \"           2.7841e-01, -3.7483e-01, -3.7581e-01,  6.2050e-02,  3.3528e-01,\\n\",\n      \"          -5.6043e-04,  3.9005e-01, -5.3306e-01, -2.1476e-01, -5.8883e-01,\\n\",\n      \"          -5.6921e-01, -1.0593e-01, -2.1705e-02, -3.3054e-01,  3.7458e-01,\\n\",\n      \"          -1.6155e-01,  6.6227e-01,  1.5426e-01,  2.1723e-01,  1.3707e-01,\\n\",\n      \"           8.2191e-02,  3.5002e-02, -1.2795e-01,  1.8722e-01, -4.8976e-01,\\n\",\n      \"          -4.0462e-02,  2.1277e-01,  1.5929e-01, -5.9575e-01, -1.4006e-01,\\n\",\n      \"          -1.8589e-01,  2.9119e-01, -2.9289e-01,  1.7901e-01,  1.7838e-01,\\n\",\n      \"          -9.1743e-02, -4.2411e-01, -4.0878e-02,  1.9904e-01, -3.0361e-01,\\n\",\n      \"          -4.3694e-01, -1.9599e-01, -4.5925e-01, -1.4229e-02]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01,  1.0857e-01, -1.9370e-01,\\n\",\n      \"           3.7774e-01,  2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\\n\",\n      \"           3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02,  4.3488e-01,\\n\",\n      \"          -3.0141e-01,  3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\\n\",\n      \"          -2.4359e-01,  4.2206e-02,  4.8470e-01,  6.3224e-02, -2.2614e-01,\\n\",\n      \"          -3.1987e-01, -1.8798e-01,  3.6993e-01, -1.4684e-01, -2.3621e-01,\\n\",\n      \"           9.9864e-02,  3.6303e-01, -3.7656e-01,  2.8872e-01,  2.2332e-01,\\n\",\n      \"           2.0550e-01,  8.0081e-02,  4.3839e-01, -1.6392e-01,  4.0154e-01,\\n\",\n      \"          -2.5501e-01,  3.4941e-01, -2.7039e-01, -3.2946e-01,  2.1274e-01,\\n\",\n      \"          -2.3434e-01, -2.1966e-01,  9.3274e-02, -7.7401e-02,  2.1879e-01,\\n\",\n      \"           7.3506e-02,  2.4881e-01, -2.0310e-01,  2.3559e-01, -2.5062e-01,\\n\",\n      \"          -2.0376e-01, -7.3991e-02,  2.4347e-01, -3.7692e-02,  2.6946e-01,\\n\",\n      \"          -1.9928e-01,  4.4936e-01,  1.3003e-01, -2.6040e-01],\\n\",\n      \"         [ 2.2726e-01, -1.8992e-02,  4.8106e-01,  4.0937e-02, -1.9359e-01,\\n\",\n      \"           4.0787e-01, -7.4492e-02,  2.5378e-01, -1.3509e-01,  1.1359e-01,\\n\",\n      \"          -3.4980e-01,  1.5776e-01,  6.9378e-02, -1.1341e-01,  3.5061e-01,\\n\",\n      \"           4.8332e-01, -2.1102e-01,  9.0305e-02, -2.2642e-01, -2.2795e-01,\\n\",\n      \"          -2.9546e-01, -3.0294e-01,  1.8674e-01,  6.4141e-02, -6.4675e-02,\\n\",\n      \"          -1.5324e-01, -2.3329e-01,  3.4140e-01, -1.7343e-01, -2.0366e-01,\\n\",\n      \"           1.1172e-01, -1.4087e-01,  1.4044e-01,  2.0903e-01, -2.5586e-01,\\n\",\n      \"          -1.2561e-01, -1.5254e-01, -8.0407e-02,  1.3476e-01,  1.0619e-01,\\n\",\n      \"           5.9930e-02,  3.1730e-01,  2.6906e-01, -3.8815e-01, -6.9665e-02,\\n\",\n      \"          -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\\n\",\n      \"           2.2937e-01, -3.9784e-04,  2.2407e-01, -2.5350e-01, -3.3453e-01,\\n\",\n      \"          -1.3767e-01, -1.7459e-01,  1.3520e-01,  2.4302e-01,  2.2246e-01,\\n\",\n      \"          -4.8888e-01, -4.4384e-02,  1.1326e-01, -3.4151e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\\n\",\n      \"           5.6420e-02,  3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\\n\",\n      \"          -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01,  5.9376e-02,\\n\",\n      \"          -1.0247e-01,  4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\\n\",\n      \"          -2.3619e-01,  8.6265e-02,  4.6741e-01,  3.5501e-01,  1.7282e-01,\\n\",\n      \"          -4.7347e-01,  1.4804e-01,  2.5100e-02, -1.2214e-01, -2.0864e-01,\\n\",\n      \"           2.3636e-01,  5.4465e-01, -1.1361e-01,  6.3898e-01, -8.9376e-02,\\n\",\n      \"           4.4687e-01,  1.6410e-01,  2.6329e-01, -2.0854e-01,  2.3961e-01,\\n\",\n      \"          -1.0511e-01,  2.5216e-01, -5.3976e-01, -3.7185e-01,  2.4008e-01,\\n\",\n      \"          -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01,  2.5457e-01,\\n\",\n      \"           1.2218e-02,  4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\\n\",\n      \"           7.5208e-02,  4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\\n\",\n      \"          -4.9366e-01,  5.4208e-01,  1.5324e-01,  3.9655e-01],\\n\",\n      \"         [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\\n\",\n      \"           1.3124e-01,  7.5505e-02,  3.4263e-03, -1.1334e-01, -3.4639e-01,\\n\",\n      \"          -3.6638e-01,  4.9316e-02, -2.1105e-01, -2.2630e-01,  2.0947e-02,\\n\",\n      \"           3.3961e-01,  9.4981e-02,  1.3542e-01, -3.8337e-01, -2.0906e-01,\\n\",\n      \"          -3.0973e-01, -1.5681e-01,  3.3510e-01,  2.7113e-01,  2.4488e-01,\\n\",\n      \"          -3.3195e-01,  1.5274e-01,  1.5221e-01, -2.0584e-01, -2.2414e-01,\\n\",\n      \"           2.1737e-01,  1.8852e-01,  7.0223e-02,  5.6388e-01, -3.3851e-01,\\n\",\n      \"           2.6845e-01,  1.1714e-02, -1.4760e-01,  4.3259e-02,  1.0451e-01,\\n\",\n      \"           3.4776e-03,  3.1284e-01, -3.2982e-01, -3.1727e-01,  3.6460e-02,\\n\",\n      \"          -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01,  5.9090e-03,\\n\",\n      \"           8.1017e-02,  2.7271e-01,  4.5712e-02, -2.8956e-01, -1.6350e-02,\\n\",\n      \"           2.0064e-02,  1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\\n\",\n      \"          -6.5255e-01,  3.1658e-01,  1.4671e-01,  3.6424e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.3597e-01,  1.9799e-01,  2.3560e-01, -1.9528e-01, -1.1069e-02,\\n\",\n      \"           1.1243e-01,  2.9132e-01,  4.1456e-01, -4.4696e-01, -4.3193e-01,\\n\",\n      \"           5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01,  1.1342e-01,\\n\",\n      \"           2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\\n\",\n      \"           2.0141e-02,  6.2393e-02,  2.0971e-02,  8.2769e-02,  4.6496e-01,\\n\",\n      \"          -5.3510e-01,  9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\\n\",\n      \"           2.7095e-01,  9.9948e-02, -3.6222e-01,  2.0611e-01,  2.9721e-01,\\n\",\n      \"           7.5574e-02, -1.6472e-01,  3.0445e-01, -3.6575e-02, -2.3158e-01,\\n\",\n      \"           3.9358e-01,  1.9318e-01, -5.6557e-01, -2.6799e-01,  3.8988e-01,\\n\",\n      \"          -1.6496e-01, -1.3708e-01,  4.8606e-02,  1.5874e-01, -8.5188e-02,\\n\",\n      \"          -1.0096e-01,  4.2342e-01, -1.8810e-01,  1.2980e-01, -2.4798e-01,\\n\",\n      \"          -3.8226e-01,  7.9836e-02, -3.9238e-01, -2.6510e-01,  8.0690e-02,\\n\",\n      \"          -3.0937e-01,  5.9596e-01,  2.3998e-01, -7.1284e-02],\\n\",\n      \"         [ 2.6165e-01, -1.4047e-01,  9.4698e-02, -2.6050e-01, -6.5844e-01,\\n\",\n      \"           6.9578e-02,  4.2476e-01,  3.4034e-01,  9.9292e-02, -7.7451e-02,\\n\",\n      \"          -3.3465e-01,  2.1420e-01, -8.8270e-02,  1.8651e-01,  1.4740e-01,\\n\",\n      \"           5.7079e-01,  2.2680e-02,  2.0249e-01, -1.9472e-01, -2.2586e-01,\\n\",\n      \"          -3.8880e-01, -2.1211e-01,  1.9659e-01,  2.1478e-01, -2.5531e-02,\\n\",\n      \"           7.8013e-02,  3.2416e-01,  4.8909e-01,  2.9591e-01,  2.0706e-01,\\n\",\n      \"           5.0405e-02, -3.9285e-02,  1.2387e-01,  1.4932e-01, -6.5346e-01,\\n\",\n      \"           1.9413e-02, -3.7684e-02,  9.7702e-02,  3.4156e-02, -2.0560e-01,\\n\",\n      \"           2.2834e-01,  4.8682e-01, -6.0703e-01,  7.5087e-02,  2.0022e-01,\\n\",\n      \"          -3.6027e-03,  4.1835e-03, -3.9750e-01,  6.0365e-02, -5.0696e-02,\\n\",\n      \"          -6.1541e-02,  5.2398e-01,  3.6723e-01, -3.4788e-01, -1.8475e-02,\\n\",\n      \"           9.8757e-02, -1.9024e-01,  3.2452e-02,  2.3710e-01, -1.6492e-01,\\n\",\n      \"          -1.5253e-01,  3.6131e-01, -2.0650e-01, -4.8210e-01]],\\n\",\n      \"\\n\",\n      \"        [[-9.5985e-02,  7.5312e-02, -1.6275e-02, -1.6717e-01,  1.3966e-01,\\n\",\n      \"           1.2510e-01,  1.7152e-01,  3.7018e-01,  1.7329e-01, -3.6036e-03,\\n\",\n      \"           1.0929e-01, -2.8514e-01,  1.1324e-01, -4.5108e-01,  2.3049e-01,\\n\",\n      \"           1.1407e-01,  5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\\n\",\n      \"           3.5342e-01,  1.2921e-01, -1.4113e-01,  8.1400e-02,  6.0903e-01,\\n\",\n      \"           1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\\n\",\n      \"           2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02,  3.7362e-01,\\n\",\n      \"           1.3951e-01,  2.5189e-01,  1.7649e-01, -3.2773e-01, -1.1435e-01,\\n\",\n      \"          -1.6709e-01,  3.5067e-01,  9.1052e-02, -4.6298e-02,  3.1424e-01,\\n\",\n      \"           8.7142e-03,  1.8674e-01,  1.2893e-01,  2.1966e-01,  1.6659e-01,\\n\",\n      \"          -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\\n\",\n      \"          -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01,  4.7413e-01,\\n\",\n      \"          -2.9576e-01,  2.2703e-01, -3.9934e-01,  1.7219e-01],\\n\",\n      \"         [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\\n\",\n      \"           1.5163e-01,  1.7886e-01,  2.7458e-01,  3.3433e-01,  2.0521e-01,\\n\",\n      \"          -1.4750e-01, -1.2898e-01, -3.0942e-02,  3.7652e-02,  1.3187e-01,\\n\",\n      \"           9.9556e-02,  1.6104e-01, -2.2675e-02,  4.0490e-02, -4.2415e-01,\\n\",\n      \"           4.9033e-02, -5.0992e-02, -1.2216e-02,  1.6971e-01,  3.7812e-01,\\n\",\n      \"           3.2139e-01,  1.6347e-01,  6.9504e-02,  1.0657e-01, -1.5354e-01,\\n\",\n      \"           1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\\n\",\n      \"           9.1052e-02,  2.3660e-01,  2.3901e-02, -2.6365e-01, -1.5990e-01,\\n\",\n      \"          -2.8048e-01,  5.6058e-01,  3.8168e-02,  2.1925e-01,  3.2005e-01,\\n\",\n      \"           1.8152e-01,  2.5467e-01, -5.4982e-03,  1.7120e-01,  1.8606e-01,\\n\",\n      \"          -1.4660e-01, -4.4520e-01,  1.6732e-01, -4.7045e-01, -7.7974e-02,\\n\",\n      \"          -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01,  3.0227e-01,\\n\",\n      \"          -2.2191e-01,  2.9605e-02, -6.3017e-01, -1.4525e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.4904e-01, -6.8274e-02,  5.6533e-02, -2.4772e-02,  3.2061e-01,\\n\",\n      \"           2.1123e-01,  1.5713e-01, -1.7263e-01,  1.5009e-01, -4.3575e-03,\\n\",\n      \"          -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01,  1.8752e-01,\\n\",\n      \"           2.7129e-01,  1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\\n\",\n      \"           2.2746e-01,  8.3794e-02, -1.3259e-01, -1.1347e-01,  6.5971e-01,\\n\",\n      \"          -2.3801e-01,  3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\\n\",\n      \"           2.3377e-01,  3.3690e-02,  3.5666e-01, -2.5705e-01,  8.0429e-02,\\n\",\n      \"          -1.0046e-01, -3.2683e-01,  1.7847e-01,  4.9813e-02, -2.7301e-02,\\n\",\n      \"          -2.8488e-01,  1.3049e-01, -3.1199e-01,  2.1468e-01,  4.1697e-01,\\n\",\n      \"          -9.0697e-03,  3.0670e-01,  3.1493e-02,  1.2018e-01,  3.3610e-01,\\n\",\n      \"           2.8280e-02, -7.6110e-02,  2.6174e-01, -3.1480e-01,  4.1252e-03,\\n\",\n      \"           1.0057e-01,  3.8000e-02, -2.0712e-01,  2.7292e-01,  5.9932e-01,\\n\",\n      \"           1.2308e-01,  4.6245e-01,  1.7830e-02, -3.6655e-01],\\n\",\n      \"         [-1.6559e-01, -1.4964e-01,  1.6312e-02, -7.3873e-02,  2.1183e-01,\\n\",\n      \"           2.4620e-01,  1.3492e-01, -2.5850e-01,  2.4197e-01,  1.5375e-01,\\n\",\n      \"          -1.7702e-01, -3.0812e-02, -2.3033e-01,  5.7193e-02,  8.9032e-02,\\n\",\n      \"           2.5915e-01,  1.7881e-01,  9.2474e-02,  6.9597e-02, -5.1476e-01,\\n\",\n      \"           1.3662e-02,  1.7113e-02, -6.8879e-02, -7.7871e-02,  5.7157e-01,\\n\",\n      \"          -1.9469e-01,  4.2673e-01,  1.1721e-01, -5.7496e-01, -3.3230e-01,\\n\",\n      \"           1.5853e-01,  1.8137e-03,  3.5060e-01, -2.1769e-01, -1.9723e-01,\\n\",\n      \"          -1.1998e-01, -3.5563e-01,  7.3324e-02,  6.4801e-02, -6.5640e-02,\\n\",\n      \"          -3.7750e-01,  1.6369e-01, -3.3921e-01,  3.2287e-01,  4.4207e-01,\\n\",\n      \"           1.0073e-01,  3.4861e-01,  8.5830e-02,  1.3543e-01,  3.6765e-01,\\n\",\n      \"           2.3823e-02, -7.5720e-02,  3.2633e-01, -5.0892e-01,  4.9602e-02,\\n\",\n      \"           2.0053e-01, -9.2345e-03, -8.3791e-03,  3.5187e-01,  4.7023e-01,\\n\",\n      \"           1.4153e-01,  3.2948e-01, -3.3481e-02, -4.5740e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.1226e-01,  2.4138e-01, -4.2202e-01, -1.7461e-01,  5.4534e-01,\\n\",\n      \"          -4.2925e-01, -2.6951e-01, -2.0688e-01,  2.3745e-02, -1.1517e-01,\\n\",\n      \"          -2.2702e-01,  8.5057e-02,  1.9687e-01,  1.8045e-01,  1.4299e-01,\\n\",\n      \"           1.3289e-01,  2.7649e-01,  3.7999e-01,  1.7433e-01, -5.2645e-01,\\n\",\n      \"           1.9178e-01,  8.7907e-02, -2.5690e-01, -2.0036e-01,  6.0692e-01,\\n\",\n      \"          -1.0853e-01,  1.2578e-01,  8.5823e-02, -4.5513e-01, -6.2062e-01,\\n\",\n      \"           4.1656e-01, -8.5522e-02,  4.3798e-01, -3.9802e-01,  2.4185e-01,\\n\",\n      \"          -1.5286e-01,  1.2474e-01, -4.1761e-02,  3.6593e-01,  3.9166e-01,\\n\",\n      \"          -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01,  3.1793e-01,\\n\",\n      \"          -4.1171e-01,  2.4068e-01, -1.5773e-01,  8.6016e-02,  1.3797e-01,\\n\",\n      \"          -1.8716e-01,  6.9685e-02,  4.8977e-02, -3.2609e-01, -1.2320e-01,\\n\",\n      \"           2.7405e-01, -3.3264e-01,  9.2106e-02, -9.5439e-02, -1.2941e-01,\\n\",\n      \"          -6.0168e-03, -1.0422e-01,  1.7811e-01, -2.6908e-01],\\n\",\n      \"         [-2.8426e-01,  2.0979e-01, -4.4463e-01, -2.0507e-01,  4.8820e-01,\\n\",\n      \"          -3.8590e-01, -2.7336e-01, -2.7192e-01,  5.9091e-02, -5.6585e-02,\\n\",\n      \"          -2.9206e-01,  1.5256e-01,  1.0575e-01,  3.3100e-01,  6.6701e-02,\\n\",\n      \"           1.1139e-01,  2.9278e-01,  4.2220e-01,  2.2346e-01, -5.3398e-01,\\n\",\n      \"           6.1949e-02,  3.1205e-02, -2.1178e-01, -1.8280e-01,  5.6443e-01,\\n\",\n      \"          -8.3626e-02,  1.7926e-01,  2.4563e-01, -3.9010e-01, -5.8782e-01,\\n\",\n      \"           3.6655e-01, -1.1015e-01,  4.1846e-01, -3.7551e-01,  5.5107e-02,\\n\",\n      \"          -1.6866e-01,  5.1045e-02, -1.0331e-01,  3.6541e-01,  3.5180e-01,\\n\",\n      \"          -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01,  3.5780e-01,\\n\",\n      \"          -3.3289e-01,  2.8968e-01, -1.0464e-01,  1.1147e-01,  1.5557e-01,\\n\",\n      \"          -1.9501e-01,  6.4053e-02,  4.8930e-02, -4.1890e-01, -1.0011e-01,\\n\",\n      \"           3.3335e-01, -3.6849e-01,  1.6564e-01, -8.3867e-02, -1.3537e-01,\\n\",\n      \"          -1.7237e-02, -1.4193e-01,  1.7183e-01, -3.0383e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3374e-01,  4.0180e-01, -6.3305e-01, -3.0021e-01,  7.0703e-01,\\n\",\n      \"          -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\\n\",\n      \"          -2.8203e-01,  2.1185e-01,  3.0355e-01,  3.5339e-01,  1.3138e-01,\\n\",\n      \"          -1.0663e-02,  3.2603e-01,  5.0363e-01,  2.9328e-01, -5.3031e-01,\\n\",\n      \"           9.6803e-02,  7.1699e-02, -3.4079e-01, -2.4798e-01,  5.0690e-01,\\n\",\n      \"          -1.7497e-02, -1.8682e-02,  2.1297e-01, -3.2107e-01, -7.1430e-01,\\n\",\n      \"           5.1159e-01, -2.7057e-01,  4.7796e-01, -4.5132e-01,  3.6998e-01,\\n\",\n      \"          -2.5730e-01,  3.9020e-01, -1.3587e-01,  5.3076e-01,  5.6810e-01,\\n\",\n      \"          -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01,  2.9033e-01,\\n\",\n      \"          -6.0690e-01,  1.4748e-01, -2.5577e-01,  4.8167e-02, -5.2315e-02,\\n\",\n      \"          -3.3055e-01,  5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\\n\",\n      \"           3.5335e-01, -5.3203e-01,  3.0482e-01, -2.6943e-01, -2.4425e-01,\\n\",\n      \"          -8.9498e-03, -2.3237e-01,  2.3527e-01, -2.3360e-01],\\n\",\n      \"         [-3.4616e-01,  3.8957e-01, -6.4207e-01, -3.2078e-01,  6.7713e-01,\\n\",\n      \"          -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\\n\",\n      \"          -3.1221e-01,  2.4949e-01,  2.4872e-01,  4.2892e-01,  7.1725e-02,\\n\",\n      \"          -3.2751e-02,  3.2776e-01,  5.2313e-01,  3.2315e-01, -5.3379e-01,\\n\",\n      \"           2.7926e-02,  2.5778e-02, -3.0887e-01, -2.3681e-01,  4.8511e-01,\\n\",\n      \"          -1.2633e-03,  1.4333e-02,  3.0642e-01, -2.8257e-01, -7.0073e-01,\\n\",\n      \"           4.8024e-01, -2.8092e-01,  4.6049e-01, -4.3820e-01,  2.5091e-01,\\n\",\n      \"          -2.6511e-01,  3.3634e-01, -1.7201e-01,  5.2863e-01,  5.4009e-01,\\n\",\n      \"          -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01,  3.2482e-01,\\n\",\n      \"          -5.5845e-01,  1.9502e-01, -2.1119e-01,  7.4632e-02, -4.8396e-02,\\n\",\n      \"          -3.3858e-01,  5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\\n\",\n      \"           3.9274e-01, -5.5639e-01,  3.3230e-01, -2.6980e-01, -2.3812e-01,\\n\",\n      \"          -2.7959e-02, -2.4953e-01,  2.3980e-01, -2.4494e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([2, 2])\\n\",\n      \"dec_state: tensor([[[ 6.3237e-01, -5.8449e-01, -5.1874e-01, -1.2235e-01, -8.6549e-02,\\n\",\n      \"           5.8549e-01,  3.7322e-01, -1.5584e-01, -7.0553e-01,  3.6192e-01,\\n\",\n      \"           1.8809e-01, -9.2770e-02,  4.9308e-01, -3.0477e-01, -6.3202e-01,\\n\",\n      \"           9.7891e-02,  2.5422e-01,  1.7547e-01,  5.8563e-02,  2.0584e-01,\\n\",\n      \"          -1.3397e-01, -2.0274e-01,  8.0833e-02, -2.0620e-04,  1.6927e-01,\\n\",\n      \"          -1.0937e-01, -9.9684e-02, -5.8475e-01, -7.4144e-02, -1.5458e-01,\\n\",\n      \"          -5.0855e-01, -1.4230e-02, -4.3254e-01,  6.1707e-02,  2.5808e-01,\\n\",\n      \"          -4.9338e-01,  7.4016e-02,  3.3392e-01,  2.5922e-01, -2.6734e-01,\\n\",\n      \"           1.3181e-01,  2.4563e-01, -1.6014e-01,  1.2034e-01, -1.4903e-01,\\n\",\n      \"          -1.4827e-01,  3.2463e-01,  1.8501e-01, -5.1436e-01, -3.8583e-01,\\n\",\n      \"          -5.4094e-01,  4.0586e-01, -3.9779e-01,  1.2673e-02,  3.1778e-01,\\n\",\n      \"          -1.8659e-01,  1.4068e-01,  8.5969e-02,  7.1557e-01,  8.1374e-02,\\n\",\n      \"          -3.7332e-01, -2.3454e-01, -4.9229e-01, -4.3991e-02],\\n\",\n      \"         [ 6.3161e-01, -4.9527e-01, -4.6375e-01, -8.2101e-02, -2.2270e-03,\\n\",\n      \"           5.7291e-01,  5.5450e-01, -9.2062e-02, -7.2022e-01,  2.8585e-01,\\n\",\n      \"           2.1044e-01, -2.2061e-01,  3.6012e-01, -2.9892e-01, -4.6672e-01,\\n\",\n      \"          -2.5933e-02,  1.1820e-01,  2.2197e-01, -7.1474e-02,  2.7967e-01,\\n\",\n      \"          -3.5583e-02, -2.1988e-01, -2.2390e-01,  1.4827e-01,  3.1372e-01,\\n\",\n      \"          -2.1024e-01,  1.2649e-02, -5.2580e-01, -4.1692e-01, -2.7036e-01,\\n\",\n      \"          -5.5606e-01, -8.8826e-03, -4.3613e-01,  8.3420e-02,  1.4095e-01,\\n\",\n      \"          -4.4199e-01,  1.5842e-01,  4.2836e-01,  3.4692e-01, -2.1361e-01,\\n\",\n      \"           1.7419e-01,  2.3557e-01, -3.6156e-02,  2.9173e-01, -1.9137e-01,\\n\",\n      \"          -2.6682e-01,  1.3341e-01,  2.3962e-01, -5.0069e-01, -3.5603e-01,\\n\",\n      \"          -4.3903e-01,  2.6737e-01, -3.9223e-01, -4.4159e-03,  1.4798e-01,\\n\",\n      \"          -2.7135e-01,  6.9440e-02,  1.4866e-01,  6.5773e-01, -7.4198e-02,\\n\",\n      \"          -2.5086e-01, -3.9668e-01, -3.8835e-01,  1.0002e-02]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01,  1.0857e-01, -1.9370e-01,\\n\",\n      \"           3.7774e-01,  2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\\n\",\n      \"           3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02,  4.3488e-01,\\n\",\n      \"          -3.0141e-01,  3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\\n\",\n      \"          -2.4359e-01,  4.2206e-02,  4.8470e-01,  6.3224e-02, -2.2614e-01,\\n\",\n      \"          -3.1987e-01, -1.8798e-01,  3.6993e-01, -1.4684e-01, -2.3621e-01,\\n\",\n      \"           9.9864e-02,  3.6303e-01, -3.7656e-01,  2.8872e-01,  2.2332e-01,\\n\",\n      \"           2.0550e-01,  8.0081e-02,  4.3839e-01, -1.6392e-01,  4.0154e-01,\\n\",\n      \"          -2.5501e-01,  3.4941e-01, -2.7039e-01, -3.2946e-01,  2.1274e-01,\\n\",\n      \"          -2.3434e-01, -2.1966e-01,  9.3274e-02, -7.7401e-02,  2.1879e-01,\\n\",\n      \"           7.3506e-02,  2.4881e-01, -2.0310e-01,  2.3559e-01, -2.5062e-01,\\n\",\n      \"          -2.0376e-01, -7.3991e-02,  2.4347e-01, -3.7692e-02,  2.6946e-01,\\n\",\n      \"          -1.9928e-01,  4.4936e-01,  1.3003e-01, -2.6040e-01],\\n\",\n      \"         [ 2.2726e-01, -1.8992e-02,  4.8106e-01,  4.0937e-02, -1.9359e-01,\\n\",\n      \"           4.0787e-01, -7.4492e-02,  2.5378e-01, -1.3509e-01,  1.1359e-01,\\n\",\n      \"          -3.4980e-01,  1.5776e-01,  6.9378e-02, -1.1341e-01,  3.5061e-01,\\n\",\n      \"           4.8332e-01, -2.1102e-01,  9.0305e-02, -2.2642e-01, -2.2795e-01,\\n\",\n      \"          -2.9546e-01, -3.0294e-01,  1.8674e-01,  6.4141e-02, -6.4675e-02,\\n\",\n      \"          -1.5324e-01, -2.3329e-01,  3.4140e-01, -1.7343e-01, -2.0366e-01,\\n\",\n      \"           1.1172e-01, -1.4087e-01,  1.4044e-01,  2.0903e-01, -2.5586e-01,\\n\",\n      \"          -1.2561e-01, -1.5254e-01, -8.0407e-02,  1.3476e-01,  1.0619e-01,\\n\",\n      \"           5.9930e-02,  3.1730e-01,  2.6906e-01, -3.8815e-01, -6.9665e-02,\\n\",\n      \"          -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\\n\",\n      \"           2.2937e-01, -3.9784e-04,  2.2407e-01, -2.5350e-01, -3.3453e-01,\\n\",\n      \"          -1.3767e-01, -1.7459e-01,  1.3520e-01,  2.4302e-01,  2.2246e-01,\\n\",\n      \"          -4.8888e-01, -4.4384e-02,  1.1326e-01, -3.4151e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\\n\",\n      \"           5.6420e-02,  3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\\n\",\n      \"          -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01,  5.9376e-02,\\n\",\n      \"          -1.0247e-01,  4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\\n\",\n      \"          -2.3619e-01,  8.6265e-02,  4.6741e-01,  3.5501e-01,  1.7282e-01,\\n\",\n      \"          -4.7347e-01,  1.4804e-01,  2.5100e-02, -1.2214e-01, -2.0864e-01,\\n\",\n      \"           2.3636e-01,  5.4465e-01, -1.1361e-01,  6.3898e-01, -8.9376e-02,\\n\",\n      \"           4.4687e-01,  1.6410e-01,  2.6329e-01, -2.0854e-01,  2.3961e-01,\\n\",\n      \"          -1.0511e-01,  2.5216e-01, -5.3976e-01, -3.7185e-01,  2.4008e-01,\\n\",\n      \"          -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01,  2.5457e-01,\\n\",\n      \"           1.2218e-02,  4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\\n\",\n      \"           7.5208e-02,  4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\\n\",\n      \"          -4.9366e-01,  5.4208e-01,  1.5324e-01,  3.9655e-01],\\n\",\n      \"         [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\\n\",\n      \"           1.3124e-01,  7.5505e-02,  3.4263e-03, -1.1334e-01, -3.4639e-01,\\n\",\n      \"          -3.6638e-01,  4.9316e-02, -2.1105e-01, -2.2630e-01,  2.0947e-02,\\n\",\n      \"           3.3961e-01,  9.4981e-02,  1.3542e-01, -3.8337e-01, -2.0906e-01,\\n\",\n      \"          -3.0973e-01, -1.5681e-01,  3.3510e-01,  2.7113e-01,  2.4488e-01,\\n\",\n      \"          -3.3195e-01,  1.5274e-01,  1.5221e-01, -2.0584e-01, -2.2414e-01,\\n\",\n      \"           2.1737e-01,  1.8852e-01,  7.0223e-02,  5.6388e-01, -3.3851e-01,\\n\",\n      \"           2.6845e-01,  1.1714e-02, -1.4760e-01,  4.3259e-02,  1.0451e-01,\\n\",\n      \"           3.4776e-03,  3.1284e-01, -3.2982e-01, -3.1727e-01,  3.6460e-02,\\n\",\n      \"          -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01,  5.9090e-03,\\n\",\n      \"           8.1017e-02,  2.7271e-01,  4.5712e-02, -2.8956e-01, -1.6350e-02,\\n\",\n      \"           2.0064e-02,  1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\\n\",\n      \"          -6.5255e-01,  3.1658e-01,  1.4671e-01,  3.6424e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.3597e-01,  1.9799e-01,  2.3560e-01, -1.9528e-01, -1.1069e-02,\\n\",\n      \"           1.1243e-01,  2.9132e-01,  4.1456e-01, -4.4696e-01, -4.3193e-01,\\n\",\n      \"           5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01,  1.1342e-01,\\n\",\n      \"           2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\\n\",\n      \"           2.0141e-02,  6.2393e-02,  2.0971e-02,  8.2769e-02,  4.6496e-01,\\n\",\n      \"          -5.3510e-01,  9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\\n\",\n      \"           2.7095e-01,  9.9948e-02, -3.6222e-01,  2.0611e-01,  2.9721e-01,\\n\",\n      \"           7.5574e-02, -1.6472e-01,  3.0445e-01, -3.6575e-02, -2.3158e-01,\\n\",\n      \"           3.9358e-01,  1.9318e-01, -5.6557e-01, -2.6799e-01,  3.8988e-01,\\n\",\n      \"          -1.6496e-01, -1.3708e-01,  4.8606e-02,  1.5874e-01, -8.5188e-02,\\n\",\n      \"          -1.0096e-01,  4.2342e-01, -1.8810e-01,  1.2980e-01, -2.4798e-01,\\n\",\n      \"          -3.8226e-01,  7.9836e-02, -3.9238e-01, -2.6510e-01,  8.0690e-02,\\n\",\n      \"          -3.0937e-01,  5.9596e-01,  2.3998e-01, -7.1284e-02],\\n\",\n      \"         [ 2.6165e-01, -1.4047e-01,  9.4698e-02, -2.6050e-01, -6.5844e-01,\\n\",\n      \"           6.9578e-02,  4.2476e-01,  3.4034e-01,  9.9292e-02, -7.7451e-02,\\n\",\n      \"          -3.3465e-01,  2.1420e-01, -8.8270e-02,  1.8651e-01,  1.4740e-01,\\n\",\n      \"           5.7079e-01,  2.2680e-02,  2.0249e-01, -1.9472e-01, -2.2586e-01,\\n\",\n      \"          -3.8880e-01, -2.1211e-01,  1.9659e-01,  2.1478e-01, -2.5531e-02,\\n\",\n      \"           7.8013e-02,  3.2416e-01,  4.8909e-01,  2.9591e-01,  2.0706e-01,\\n\",\n      \"           5.0405e-02, -3.9285e-02,  1.2387e-01,  1.4932e-01, -6.5346e-01,\\n\",\n      \"           1.9413e-02, -3.7684e-02,  9.7702e-02,  3.4156e-02, -2.0560e-01,\\n\",\n      \"           2.2834e-01,  4.8682e-01, -6.0703e-01,  7.5087e-02,  2.0022e-01,\\n\",\n      \"          -3.6027e-03,  4.1835e-03, -3.9750e-01,  6.0365e-02, -5.0696e-02,\\n\",\n      \"          -6.1541e-02,  5.2398e-01,  3.6723e-01, -3.4788e-01, -1.8475e-02,\\n\",\n      \"           9.8757e-02, -1.9024e-01,  3.2452e-02,  2.3710e-01, -1.6492e-01,\\n\",\n      \"          -1.5253e-01,  3.6131e-01, -2.0650e-01, -4.8210e-01]],\\n\",\n      \"\\n\",\n      \"        [[-9.5985e-02,  7.5312e-02, -1.6275e-02, -1.6717e-01,  1.3966e-01,\\n\",\n      \"           1.2510e-01,  1.7152e-01,  3.7018e-01,  1.7329e-01, -3.6036e-03,\\n\",\n      \"           1.0929e-01, -2.8514e-01,  1.1324e-01, -4.5108e-01,  2.3049e-01,\\n\",\n      \"           1.1407e-01,  5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\\n\",\n      \"           3.5342e-01,  1.2921e-01, -1.4113e-01,  8.1400e-02,  6.0903e-01,\\n\",\n      \"           1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\\n\",\n      \"           2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02,  3.7362e-01,\\n\",\n      \"           1.3951e-01,  2.5189e-01,  1.7649e-01, -3.2773e-01, -1.1435e-01,\\n\",\n      \"          -1.6709e-01,  3.5067e-01,  9.1052e-02, -4.6298e-02,  3.1424e-01,\\n\",\n      \"           8.7142e-03,  1.8674e-01,  1.2893e-01,  2.1966e-01,  1.6659e-01,\\n\",\n      \"          -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\\n\",\n      \"          -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01,  4.7413e-01,\\n\",\n      \"          -2.9576e-01,  2.2703e-01, -3.9934e-01,  1.7219e-01],\\n\",\n      \"         [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\\n\",\n      \"           1.5163e-01,  1.7886e-01,  2.7458e-01,  3.3433e-01,  2.0521e-01,\\n\",\n      \"          -1.4750e-01, -1.2898e-01, -3.0942e-02,  3.7652e-02,  1.3187e-01,\\n\",\n      \"           9.9556e-02,  1.6104e-01, -2.2675e-02,  4.0490e-02, -4.2415e-01,\\n\",\n      \"           4.9033e-02, -5.0992e-02, -1.2216e-02,  1.6971e-01,  3.7812e-01,\\n\",\n      \"           3.2139e-01,  1.6347e-01,  6.9504e-02,  1.0657e-01, -1.5354e-01,\\n\",\n      \"           1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\\n\",\n      \"           9.1052e-02,  2.3660e-01,  2.3901e-02, -2.6365e-01, -1.5990e-01,\\n\",\n      \"          -2.8048e-01,  5.6058e-01,  3.8168e-02,  2.1925e-01,  3.2005e-01,\\n\",\n      \"           1.8152e-01,  2.5467e-01, -5.4982e-03,  1.7120e-01,  1.8606e-01,\\n\",\n      \"          -1.4660e-01, -4.4520e-01,  1.6732e-01, -4.7045e-01, -7.7974e-02,\\n\",\n      \"          -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01,  3.0227e-01,\\n\",\n      \"          -2.2191e-01,  2.9605e-02, -6.3017e-01, -1.4525e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.4904e-01, -6.8274e-02,  5.6533e-02, -2.4772e-02,  3.2061e-01,\\n\",\n      \"           2.1123e-01,  1.5713e-01, -1.7263e-01,  1.5009e-01, -4.3575e-03,\\n\",\n      \"          -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01,  1.8752e-01,\\n\",\n      \"           2.7129e-01,  1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\\n\",\n      \"           2.2746e-01,  8.3794e-02, -1.3259e-01, -1.1347e-01,  6.5971e-01,\\n\",\n      \"          -2.3801e-01,  3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\\n\",\n      \"           2.3377e-01,  3.3690e-02,  3.5666e-01, -2.5705e-01,  8.0429e-02,\\n\",\n      \"          -1.0046e-01, -3.2683e-01,  1.7847e-01,  4.9813e-02, -2.7301e-02,\\n\",\n      \"          -2.8488e-01,  1.3049e-01, -3.1199e-01,  2.1468e-01,  4.1697e-01,\\n\",\n      \"          -9.0697e-03,  3.0670e-01,  3.1493e-02,  1.2018e-01,  3.3610e-01,\\n\",\n      \"           2.8280e-02, -7.6110e-02,  2.6174e-01, -3.1480e-01,  4.1252e-03,\\n\",\n      \"           1.0057e-01,  3.8000e-02, -2.0712e-01,  2.7292e-01,  5.9932e-01,\\n\",\n      \"           1.2308e-01,  4.6245e-01,  1.7830e-02, -3.6655e-01],\\n\",\n      \"         [-1.6559e-01, -1.4964e-01,  1.6312e-02, -7.3873e-02,  2.1183e-01,\\n\",\n      \"           2.4620e-01,  1.3492e-01, -2.5850e-01,  2.4197e-01,  1.5375e-01,\\n\",\n      \"          -1.7702e-01, -3.0812e-02, -2.3033e-01,  5.7193e-02,  8.9032e-02,\\n\",\n      \"           2.5915e-01,  1.7881e-01,  9.2474e-02,  6.9597e-02, -5.1476e-01,\\n\",\n      \"           1.3662e-02,  1.7113e-02, -6.8879e-02, -7.7871e-02,  5.7157e-01,\\n\",\n      \"          -1.9469e-01,  4.2673e-01,  1.1721e-01, -5.7496e-01, -3.3230e-01,\\n\",\n      \"           1.5853e-01,  1.8137e-03,  3.5060e-01, -2.1769e-01, -1.9723e-01,\\n\",\n      \"          -1.1998e-01, -3.5563e-01,  7.3324e-02,  6.4801e-02, -6.5640e-02,\\n\",\n      \"          -3.7750e-01,  1.6369e-01, -3.3921e-01,  3.2287e-01,  4.4207e-01,\\n\",\n      \"           1.0073e-01,  3.4861e-01,  8.5830e-02,  1.3543e-01,  3.6765e-01,\\n\",\n      \"           2.3823e-02, -7.5720e-02,  3.2633e-01, -5.0892e-01,  4.9602e-02,\\n\",\n      \"           2.0053e-01, -9.2345e-03, -8.3791e-03,  3.5187e-01,  4.7023e-01,\\n\",\n      \"           1.4153e-01,  3.2948e-01, -3.3481e-02, -4.5740e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.1226e-01,  2.4138e-01, -4.2202e-01, -1.7461e-01,  5.4534e-01,\\n\",\n      \"          -4.2925e-01, -2.6951e-01, -2.0688e-01,  2.3745e-02, -1.1517e-01,\\n\",\n      \"          -2.2702e-01,  8.5057e-02,  1.9687e-01,  1.8045e-01,  1.4299e-01,\\n\",\n      \"           1.3289e-01,  2.7649e-01,  3.7999e-01,  1.7433e-01, -5.2645e-01,\\n\",\n      \"           1.9178e-01,  8.7907e-02, -2.5690e-01, -2.0036e-01,  6.0692e-01,\\n\",\n      \"          -1.0853e-01,  1.2578e-01,  8.5823e-02, -4.5513e-01, -6.2062e-01,\\n\",\n      \"           4.1656e-01, -8.5522e-02,  4.3798e-01, -3.9802e-01,  2.4185e-01,\\n\",\n      \"          -1.5286e-01,  1.2474e-01, -4.1761e-02,  3.6593e-01,  3.9166e-01,\\n\",\n      \"          -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01,  3.1793e-01,\\n\",\n      \"          -4.1171e-01,  2.4068e-01, -1.5773e-01,  8.6016e-02,  1.3797e-01,\\n\",\n      \"          -1.8716e-01,  6.9685e-02,  4.8977e-02, -3.2609e-01, -1.2320e-01,\\n\",\n      \"           2.7405e-01, -3.3264e-01,  9.2106e-02, -9.5439e-02, -1.2941e-01,\\n\",\n      \"          -6.0168e-03, -1.0422e-01,  1.7811e-01, -2.6908e-01],\\n\",\n      \"         [-2.8426e-01,  2.0979e-01, -4.4463e-01, -2.0507e-01,  4.8820e-01,\\n\",\n      \"          -3.8590e-01, -2.7336e-01, -2.7192e-01,  5.9091e-02, -5.6585e-02,\\n\",\n      \"          -2.9206e-01,  1.5256e-01,  1.0575e-01,  3.3100e-01,  6.6701e-02,\\n\",\n      \"           1.1139e-01,  2.9278e-01,  4.2220e-01,  2.2346e-01, -5.3398e-01,\\n\",\n      \"           6.1949e-02,  3.1205e-02, -2.1178e-01, -1.8280e-01,  5.6443e-01,\\n\",\n      \"          -8.3626e-02,  1.7926e-01,  2.4563e-01, -3.9010e-01, -5.8782e-01,\\n\",\n      \"           3.6655e-01, -1.1015e-01,  4.1846e-01, -3.7551e-01,  5.5107e-02,\\n\",\n      \"          -1.6866e-01,  5.1045e-02, -1.0331e-01,  3.6541e-01,  3.5180e-01,\\n\",\n      \"          -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01,  3.5780e-01,\\n\",\n      \"          -3.3289e-01,  2.8968e-01, -1.0464e-01,  1.1147e-01,  1.5557e-01,\\n\",\n      \"          -1.9501e-01,  6.4053e-02,  4.8930e-02, -4.1890e-01, -1.0011e-01,\\n\",\n      \"           3.3335e-01, -3.6849e-01,  1.6564e-01, -8.3867e-02, -1.3537e-01,\\n\",\n      \"          -1.7237e-02, -1.4193e-01,  1.7183e-01, -3.0383e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3374e-01,  4.0180e-01, -6.3305e-01, -3.0021e-01,  7.0703e-01,\\n\",\n      \"          -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\\n\",\n      \"          -2.8203e-01,  2.1185e-01,  3.0355e-01,  3.5339e-01,  1.3138e-01,\\n\",\n      \"          -1.0663e-02,  3.2603e-01,  5.0363e-01,  2.9328e-01, -5.3031e-01,\\n\",\n      \"           9.6803e-02,  7.1699e-02, -3.4079e-01, -2.4798e-01,  5.0690e-01,\\n\",\n      \"          -1.7497e-02, -1.8682e-02,  2.1297e-01, -3.2107e-01, -7.1430e-01,\\n\",\n      \"           5.1159e-01, -2.7057e-01,  4.7796e-01, -4.5132e-01,  3.6998e-01,\\n\",\n      \"          -2.5730e-01,  3.9020e-01, -1.3587e-01,  5.3076e-01,  5.6810e-01,\\n\",\n      \"          -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01,  2.9033e-01,\\n\",\n      \"          -6.0690e-01,  1.4748e-01, -2.5577e-01,  4.8167e-02, -5.2315e-02,\\n\",\n      \"          -3.3055e-01,  5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\\n\",\n      \"           3.5335e-01, -5.3203e-01,  3.0482e-01, -2.6943e-01, -2.4425e-01,\\n\",\n      \"          -8.9498e-03, -2.3237e-01,  2.3527e-01, -2.3360e-01],\\n\",\n      \"         [-3.4616e-01,  3.8957e-01, -6.4207e-01, -3.2078e-01,  6.7713e-01,\\n\",\n      \"          -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\\n\",\n      \"          -3.1221e-01,  2.4949e-01,  2.4872e-01,  4.2892e-01,  7.1725e-02,\\n\",\n      \"          -3.2751e-02,  3.2776e-01,  5.2313e-01,  3.2315e-01, -5.3379e-01,\\n\",\n      \"           2.7926e-02,  2.5778e-02, -3.0887e-01, -2.3681e-01,  4.8511e-01,\\n\",\n      \"          -1.2633e-03,  1.4333e-02,  3.0642e-01, -2.8257e-01, -7.0073e-01,\\n\",\n      \"           4.8024e-01, -2.8092e-01,  4.6049e-01, -4.3820e-01,  2.5091e-01,\\n\",\n      \"          -2.6511e-01,  3.3634e-01, -1.7201e-01,  5.2863e-01,  5.4009e-01,\\n\",\n      \"          -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01,  3.2482e-01,\\n\",\n      \"          -5.5845e-01,  1.9502e-01, -2.1119e-01,  7.4632e-02, -4.8396e-02,\\n\",\n      \"          -3.3858e-01,  5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\\n\",\n      \"           3.9274e-01, -5.5639e-01,  3.3230e-01, -2.6980e-01, -2.3812e-01,\\n\",\n      \"          -2.7959e-02, -2.4953e-01,  2.3980e-01, -2.4494e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([0, 0])\\n\",\n      \"dec_state: tensor([[[ 3.3613e-01, -1.1581e-01,  2.2531e-02, -3.2029e-01, -3.4844e-01,\\n\",\n      \"           1.7300e-01,  5.4357e-01, -2.8234e-01, -5.1556e-01,  5.4329e-01,\\n\",\n      \"           4.8828e-01,  2.1129e-01,  4.9455e-02, -1.9472e-01, -4.1981e-01,\\n\",\n      \"           2.5406e-01, -1.0423e-01, -2.6475e-01,  1.8739e-01,  4.0620e-01,\\n\",\n      \"          -1.0231e-01, -3.7705e-01,  2.3830e-01,  2.0685e-02,  2.7910e-01,\\n\",\n      \"           2.2410e-01, -3.2430e-01, -2.7136e-01, -1.2778e-02, -2.1327e-01,\\n\",\n      \"          -8.0700e-02, -5.5479e-02,  1.4213e-01, -1.1707e-01,  2.2430e-01,\\n\",\n      \"          -7.3242e-01, -9.8840e-02, -5.7070e-02,  2.5388e-01,  2.7555e-02,\\n\",\n      \"           3.1054e-01,  3.9803e-01,  2.9947e-01, -2.5798e-01, -4.7102e-01,\\n\",\n      \"           7.3441e-02,  3.1116e-01,  1.2036e-02, -1.2702e-01,  2.8246e-01,\\n\",\n      \"          -2.4374e-01,  3.5081e-01,  8.1742e-02,  3.3872e-02,  5.4672e-01,\\n\",\n      \"           5.2705e-02, -8.1313e-02,  2.8746e-01,  4.2945e-01,  1.5243e-01,\\n\",\n      \"          -3.6670e-01, -3.8023e-01, -3.4076e-01, -3.8322e-02],\\n\",\n      \"         [ 3.3420e-01, -2.9291e-02,  2.9569e-02, -2.9860e-01, -2.7917e-01,\\n\",\n      \"           1.2516e-01,  6.7536e-01, -2.3794e-01, -5.0963e-01,  4.8014e-01,\\n\",\n      \"           4.5453e-01,  1.5694e-01,  2.0649e-03, -1.7461e-01, -2.7515e-01,\\n\",\n      \"           1.3528e-01, -2.2899e-01, -2.3273e-01,  9.6747e-02,  4.5235e-01,\\n\",\n      \"          -6.0118e-02, -3.8949e-01, -2.5611e-02,  1.2869e-01,  4.0833e-01,\\n\",\n      \"           1.4967e-01, -2.3645e-01, -2.3432e-01, -2.8956e-01, -2.8381e-01,\\n\",\n      \"          -1.3089e-01, -3.1831e-02,  1.8209e-01, -4.6718e-02,  1.6101e-01,\\n\",\n      \"          -6.8348e-01,  2.6590e-04,  3.2996e-02,  3.5458e-01,  1.0081e-01,\\n\",\n      \"           3.3487e-01,  3.8526e-01,  3.6419e-01, -5.5700e-02, -4.8871e-01,\\n\",\n      \"           6.9818e-02,  1.3551e-01,  6.1167e-02, -1.5437e-01,  2.6536e-01,\\n\",\n      \"          -1.5279e-01,  2.4500e-01,  7.5978e-02, -2.4663e-02,  4.1149e-01,\\n\",\n      \"           2.4817e-02, -5.6557e-02,  3.3233e-01,  3.1330e-01, -1.8653e-02,\\n\",\n      \"          -2.3047e-01, -5.2035e-01, -3.5154e-01,  2.2388e-02]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.2807e-01, -1.3276e-01, -1.0977e-01,  1.0857e-01, -1.9370e-01,\\n\",\n      \"           3.7774e-01,  2.6372e-01, -2.6358e-02, -7.1966e-02, -2.4535e-01,\\n\",\n      \"           3.7747e-02, -3.9035e-02, -4.1153e-01, -9.6408e-02,  4.3488e-01,\\n\",\n      \"          -3.0141e-01,  3.5260e-01, -4.1420e-01, -4.7743e-01, -2.2316e-01,\\n\",\n      \"          -2.4359e-01,  4.2206e-02,  4.8470e-01,  6.3224e-02, -2.2614e-01,\\n\",\n      \"          -3.1987e-01, -1.8798e-01,  3.6993e-01, -1.4684e-01, -2.3621e-01,\\n\",\n      \"           9.9864e-02,  3.6303e-01, -3.7656e-01,  2.8872e-01,  2.2332e-01,\\n\",\n      \"           2.0550e-01,  8.0081e-02,  4.3839e-01, -1.6392e-01,  4.0154e-01,\\n\",\n      \"          -2.5501e-01,  3.4941e-01, -2.7039e-01, -3.2946e-01,  2.1274e-01,\\n\",\n      \"          -2.3434e-01, -2.1966e-01,  9.3274e-02, -7.7401e-02,  2.1879e-01,\\n\",\n      \"           7.3506e-02,  2.4881e-01, -2.0310e-01,  2.3559e-01, -2.5062e-01,\\n\",\n      \"          -2.0376e-01, -7.3991e-02,  2.4347e-01, -3.7692e-02,  2.6946e-01,\\n\",\n      \"          -1.9928e-01,  4.4936e-01,  1.3003e-01, -2.6040e-01],\\n\",\n      \"         [ 2.2726e-01, -1.8992e-02,  4.8106e-01,  4.0937e-02, -1.9359e-01,\\n\",\n      \"           4.0787e-01, -7.4492e-02,  2.5378e-01, -1.3509e-01,  1.1359e-01,\\n\",\n      \"          -3.4980e-01,  1.5776e-01,  6.9378e-02, -1.1341e-01,  3.5061e-01,\\n\",\n      \"           4.8332e-01, -2.1102e-01,  9.0305e-02, -2.2642e-01, -2.2795e-01,\\n\",\n      \"          -2.9546e-01, -3.0294e-01,  1.8674e-01,  6.4141e-02, -6.4675e-02,\\n\",\n      \"          -1.5324e-01, -2.3329e-01,  3.4140e-01, -1.7343e-01, -2.0366e-01,\\n\",\n      \"           1.1172e-01, -1.4087e-01,  1.4044e-01,  2.0903e-01, -2.5586e-01,\\n\",\n      \"          -1.2561e-01, -1.5254e-01, -8.0407e-02,  1.3476e-01,  1.0619e-01,\\n\",\n      \"           5.9930e-02,  3.1730e-01,  2.6906e-01, -3.8815e-01, -6.9665e-02,\\n\",\n      \"          -1.4802e-01, -2.6302e-01, -2.1176e-02, -1.4224e-01, -2.7894e-01,\\n\",\n      \"           2.2937e-01, -3.9784e-04,  2.2407e-01, -2.5350e-01, -3.3453e-01,\\n\",\n      \"          -1.3767e-01, -1.7459e-01,  1.3520e-01,  2.4302e-01,  2.2246e-01,\\n\",\n      \"          -4.8888e-01, -4.4384e-02,  1.1326e-01, -3.4151e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8588e-01, -1.5146e-01, -2.6802e-01, -3.0150e-01, -4.7879e-01,\\n\",\n      \"           5.6420e-02,  3.1568e-01, -8.3752e-02, -7.0411e-02, -5.1744e-01,\\n\",\n      \"          -1.8540e-01, -8.6651e-02, -5.0508e-01, -2.6617e-01,  5.9376e-02,\\n\",\n      \"          -1.0247e-01,  4.5179e-01, -6.8875e-02, -5.3534e-01, -1.8137e-01,\\n\",\n      \"          -2.3619e-01,  8.6265e-02,  4.6741e-01,  3.5501e-01,  1.7282e-01,\\n\",\n      \"          -4.7347e-01,  1.4804e-01,  2.5100e-02, -1.2214e-01, -2.0864e-01,\\n\",\n      \"           2.3636e-01,  5.4465e-01, -1.1361e-01,  6.3898e-01, -8.9376e-02,\\n\",\n      \"           4.4687e-01,  1.6410e-01,  2.6329e-01, -2.0854e-01,  2.3961e-01,\\n\",\n      \"          -1.0511e-01,  2.5216e-01, -5.3976e-01, -3.7185e-01,  2.4008e-01,\\n\",\n      \"          -8.8696e-02, -3.7952e-02, -4.7816e-01, -1.1183e-01,  2.5457e-01,\\n\",\n      \"           1.2218e-02,  4.1386e-01, -1.4471e-01, -1.2217e-01, -3.2081e-02,\\n\",\n      \"           7.5208e-02,  4.8085e-02, -4.5117e-01, -3.1078e-01, -1.4776e-01,\\n\",\n      \"          -4.9366e-01,  5.4208e-01,  1.5324e-01,  3.9655e-01],\\n\",\n      \"         [-6.2537e-02, -6.5872e-02, -8.2223e-02, -3.6247e-01, -4.7818e-01,\\n\",\n      \"           1.3124e-01,  7.5505e-02,  3.4263e-03, -1.1334e-01, -3.4639e-01,\\n\",\n      \"          -3.6638e-01,  4.9316e-02, -2.1105e-01, -2.2630e-01,  2.0947e-02,\\n\",\n      \"           3.3961e-01,  9.4981e-02,  1.3542e-01, -3.8337e-01, -2.0906e-01,\\n\",\n      \"          -3.0973e-01, -1.5681e-01,  3.3510e-01,  2.7113e-01,  2.4488e-01,\\n\",\n      \"          -3.3195e-01,  1.5274e-01,  1.5221e-01, -2.0584e-01, -2.2414e-01,\\n\",\n      \"           2.1737e-01,  1.8852e-01,  7.0223e-02,  5.6388e-01, -3.3851e-01,\\n\",\n      \"           2.6845e-01,  1.1714e-02, -1.4760e-01,  4.3259e-02,  1.0451e-01,\\n\",\n      \"           3.4776e-03,  3.1284e-01, -3.2982e-01, -3.1727e-01,  3.6460e-02,\\n\",\n      \"          -6.1331e-02, -5.5578e-02, -4.9652e-01, -1.6208e-01,  5.9090e-03,\\n\",\n      \"           8.1017e-02,  2.7271e-01,  4.5712e-02, -2.8956e-01, -1.6350e-02,\\n\",\n      \"           2.0064e-02,  1.2068e-03, -5.4511e-01, -1.9043e-01, -1.3299e-01,\\n\",\n      \"          -6.5255e-01,  3.1658e-01,  1.4671e-01,  3.6424e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.3597e-01,  1.9799e-01,  2.3560e-01, -1.9528e-01, -1.1069e-02,\\n\",\n      \"           1.1243e-01,  2.9132e-01,  4.1456e-01, -4.4696e-01, -4.3193e-01,\\n\",\n      \"           5.2975e-03, -1.4620e-01, -1.0433e-01, -4.7689e-01,  1.1342e-01,\\n\",\n      \"           2.5057e-01, -2.0171e-01, -5.4608e-02, -4.7446e-01, -2.8472e-01,\\n\",\n      \"           2.0141e-02,  6.2393e-02,  2.0971e-02,  8.2769e-02,  4.6496e-01,\\n\",\n      \"          -5.3510e-01,  9.2002e-02, -4.0137e-01, -4.3060e-01, -3.5631e-01,\\n\",\n      \"           2.7095e-01,  9.9948e-02, -3.6222e-01,  2.0611e-01,  2.9721e-01,\\n\",\n      \"           7.5574e-02, -1.6472e-01,  3.0445e-01, -3.6575e-02, -2.3158e-01,\\n\",\n      \"           3.9358e-01,  1.9318e-01, -5.6557e-01, -2.6799e-01,  3.8988e-01,\\n\",\n      \"          -1.6496e-01, -1.3708e-01,  4.8606e-02,  1.5874e-01, -8.5188e-02,\\n\",\n      \"          -1.0096e-01,  4.2342e-01, -1.8810e-01,  1.2980e-01, -2.4798e-01,\\n\",\n      \"          -3.8226e-01,  7.9836e-02, -3.9238e-01, -2.6510e-01,  8.0690e-02,\\n\",\n      \"          -3.0937e-01,  5.9596e-01,  2.3998e-01, -7.1284e-02],\\n\",\n      \"         [ 2.6165e-01, -1.4047e-01,  9.4698e-02, -2.6050e-01, -6.5844e-01,\\n\",\n      \"           6.9578e-02,  4.2476e-01,  3.4034e-01,  9.9292e-02, -7.7451e-02,\\n\",\n      \"          -3.3465e-01,  2.1420e-01, -8.8270e-02,  1.8651e-01,  1.4740e-01,\\n\",\n      \"           5.7079e-01,  2.2680e-02,  2.0249e-01, -1.9472e-01, -2.2586e-01,\\n\",\n      \"          -3.8880e-01, -2.1211e-01,  1.9659e-01,  2.1478e-01, -2.5531e-02,\\n\",\n      \"           7.8013e-02,  3.2416e-01,  4.8909e-01,  2.9591e-01,  2.0706e-01,\\n\",\n      \"           5.0405e-02, -3.9285e-02,  1.2387e-01,  1.4932e-01, -6.5346e-01,\\n\",\n      \"           1.9413e-02, -3.7684e-02,  9.7702e-02,  3.4156e-02, -2.0560e-01,\\n\",\n      \"           2.2834e-01,  4.8682e-01, -6.0703e-01,  7.5087e-02,  2.0022e-01,\\n\",\n      \"          -3.6027e-03,  4.1835e-03, -3.9750e-01,  6.0365e-02, -5.0696e-02,\\n\",\n      \"          -6.1541e-02,  5.2398e-01,  3.6723e-01, -3.4788e-01, -1.8475e-02,\\n\",\n      \"           9.8757e-02, -1.9024e-01,  3.2452e-02,  2.3710e-01, -1.6492e-01,\\n\",\n      \"          -1.5253e-01,  3.6131e-01, -2.0650e-01, -4.8210e-01]],\\n\",\n      \"\\n\",\n      \"        [[-9.5985e-02,  7.5312e-02, -1.6275e-02, -1.6717e-01,  1.3966e-01,\\n\",\n      \"           1.2510e-01,  1.7152e-01,  3.7018e-01,  1.7329e-01, -3.6036e-03,\\n\",\n      \"           1.0929e-01, -2.8514e-01,  1.1324e-01, -4.5108e-01,  2.3049e-01,\\n\",\n      \"           1.1407e-01,  5.2295e-02, -1.9510e-01, -1.1782e-01, -4.3243e-01,\\n\",\n      \"           3.5342e-01,  1.2921e-01, -1.4113e-01,  8.1400e-02,  6.0903e-01,\\n\",\n      \"           1.1342e-01, -2.4228e-02, -3.9850e-01, -2.9424e-01, -4.5838e-01,\\n\",\n      \"           2.7040e-01, -1.7041e-01, -2.2633e-01, -9.4969e-02,  3.7362e-01,\\n\",\n      \"           1.3951e-01,  2.5189e-01,  1.7649e-01, -3.2773e-01, -1.1435e-01,\\n\",\n      \"          -1.6709e-01,  3.5067e-01,  9.1052e-02, -4.6298e-02,  3.1424e-01,\\n\",\n      \"           8.7142e-03,  1.8674e-01,  1.2893e-01,  2.1966e-01,  1.6659e-01,\\n\",\n      \"          -1.5223e-01, -4.3410e-01, -1.7579e-01, -1.7668e-01, -1.7322e-01,\\n\",\n      \"          -4.3882e-01, -1.5740e-01, -4.1774e-01, -4.7259e-01,  4.7413e-01,\\n\",\n      \"          -2.9576e-01,  2.2703e-01, -3.9934e-01,  1.7219e-01],\\n\",\n      \"         [ 1.3857e-01, -4.0685e-02, -9.2629e-02, -2.2099e-01, -1.1825e-01,\\n\",\n      \"           1.5163e-01,  1.7886e-01,  2.7458e-01,  3.3433e-01,  2.0521e-01,\\n\",\n      \"          -1.4750e-01, -1.2898e-01, -3.0942e-02,  3.7652e-02,  1.3187e-01,\\n\",\n      \"           9.9556e-02,  1.6104e-01, -2.2675e-02,  4.0490e-02, -4.2415e-01,\\n\",\n      \"           4.9033e-02, -5.0992e-02, -1.2216e-02,  1.6971e-01,  3.7812e-01,\\n\",\n      \"           3.2139e-01,  1.6347e-01,  6.9504e-02,  1.0657e-01, -1.5354e-01,\\n\",\n      \"           1.2514e-01, -2.1927e-01, -1.3575e-02, -9.7865e-03, -3.5400e-02,\\n\",\n      \"           9.1052e-02,  2.3660e-01,  2.3901e-02, -2.6365e-01, -1.5990e-01,\\n\",\n      \"          -2.8048e-01,  5.6058e-01,  3.8168e-02,  2.1925e-01,  3.2005e-01,\\n\",\n      \"           1.8152e-01,  2.5467e-01, -5.4982e-03,  1.7120e-01,  1.8606e-01,\\n\",\n      \"          -1.4660e-01, -4.4520e-01,  1.6732e-01, -4.7045e-01, -7.7974e-02,\\n\",\n      \"          -2.6723e-01, -3.1943e-01, -1.1888e-01, -2.5936e-01,  3.0227e-01,\\n\",\n      \"          -2.2191e-01,  2.9605e-02, -6.3017e-01, -1.4525e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.4904e-01, -6.8274e-02,  5.6533e-02, -2.4772e-02,  3.2061e-01,\\n\",\n      \"           2.1123e-01,  1.5713e-01, -1.7263e-01,  1.5009e-01, -4.3575e-03,\\n\",\n      \"          -5.9508e-03, -1.3946e-01, -1.0969e-01, -2.5191e-01,  1.8752e-01,\\n\",\n      \"           2.7129e-01,  1.1087e-01, -5.3459e-03, -1.5272e-02, -5.0575e-01,\\n\",\n      \"           2.2746e-01,  8.3794e-02, -1.3259e-01, -1.1347e-01,  6.5971e-01,\\n\",\n      \"          -2.3801e-01,  3.4229e-01, -1.5206e-01, -6.9180e-01, -4.8747e-01,\\n\",\n      \"           2.3377e-01,  3.3690e-02,  3.5666e-01, -2.5705e-01,  8.0429e-02,\\n\",\n      \"          -1.0046e-01, -3.2683e-01,  1.7847e-01,  4.9813e-02, -2.7301e-02,\\n\",\n      \"          -2.8488e-01,  1.3049e-01, -3.1199e-01,  2.1468e-01,  4.1697e-01,\\n\",\n      \"          -9.0697e-03,  3.0670e-01,  3.1493e-02,  1.2018e-01,  3.3610e-01,\\n\",\n      \"           2.8280e-02, -7.6110e-02,  2.6174e-01, -3.1480e-01,  4.1252e-03,\\n\",\n      \"           1.0057e-01,  3.8000e-02, -2.0712e-01,  2.7292e-01,  5.9932e-01,\\n\",\n      \"           1.2308e-01,  4.6245e-01,  1.7830e-02, -3.6655e-01],\\n\",\n      \"         [-1.6559e-01, -1.4964e-01,  1.6312e-02, -7.3873e-02,  2.1183e-01,\\n\",\n      \"           2.4620e-01,  1.3492e-01, -2.5850e-01,  2.4197e-01,  1.5375e-01,\\n\",\n      \"          -1.7702e-01, -3.0812e-02, -2.3033e-01,  5.7193e-02,  8.9032e-02,\\n\",\n      \"           2.5915e-01,  1.7881e-01,  9.2474e-02,  6.9597e-02, -5.1476e-01,\\n\",\n      \"           1.3662e-02,  1.7113e-02, -6.8879e-02, -7.7871e-02,  5.7157e-01,\\n\",\n      \"          -1.9469e-01,  4.2673e-01,  1.1721e-01, -5.7496e-01, -3.3230e-01,\\n\",\n      \"           1.5853e-01,  1.8137e-03,  3.5060e-01, -2.1769e-01, -1.9723e-01,\\n\",\n      \"          -1.1998e-01, -3.5563e-01,  7.3324e-02,  6.4801e-02, -6.5640e-02,\\n\",\n      \"          -3.7750e-01,  1.6369e-01, -3.3921e-01,  3.2287e-01,  4.4207e-01,\\n\",\n      \"           1.0073e-01,  3.4861e-01,  8.5830e-02,  1.3543e-01,  3.6765e-01,\\n\",\n      \"           2.3823e-02, -7.5720e-02,  3.2633e-01, -5.0892e-01,  4.9602e-02,\\n\",\n      \"           2.0053e-01, -9.2345e-03, -8.3791e-03,  3.5187e-01,  4.7023e-01,\\n\",\n      \"           1.4153e-01,  3.2948e-01, -3.3481e-02, -4.5740e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.1226e-01,  2.4138e-01, -4.2202e-01, -1.7461e-01,  5.4534e-01,\\n\",\n      \"          -4.2925e-01, -2.6951e-01, -2.0688e-01,  2.3745e-02, -1.1517e-01,\\n\",\n      \"          -2.2702e-01,  8.5057e-02,  1.9687e-01,  1.8045e-01,  1.4299e-01,\\n\",\n      \"           1.3289e-01,  2.7649e-01,  3.7999e-01,  1.7433e-01, -5.2645e-01,\\n\",\n      \"           1.9178e-01,  8.7907e-02, -2.5690e-01, -2.0036e-01,  6.0692e-01,\\n\",\n      \"          -1.0853e-01,  1.2578e-01,  8.5823e-02, -4.5513e-01, -6.2062e-01,\\n\",\n      \"           4.1656e-01, -8.5522e-02,  4.3798e-01, -3.9802e-01,  2.4185e-01,\\n\",\n      \"          -1.5286e-01,  1.2474e-01, -4.1761e-02,  3.6593e-01,  3.9166e-01,\\n\",\n      \"          -2.1955e-01, -5.0203e-01, -3.2103e-01, -3.2807e-01,  3.1793e-01,\\n\",\n      \"          -4.1171e-01,  2.4068e-01, -1.5773e-01,  8.6016e-02,  1.3797e-01,\\n\",\n      \"          -1.8716e-01,  6.9685e-02,  4.8977e-02, -3.2609e-01, -1.2320e-01,\\n\",\n      \"           2.7405e-01, -3.3264e-01,  9.2106e-02, -9.5439e-02, -1.2941e-01,\\n\",\n      \"          -6.0168e-03, -1.0422e-01,  1.7811e-01, -2.6908e-01],\\n\",\n      \"         [-2.8426e-01,  2.0979e-01, -4.4463e-01, -2.0507e-01,  4.8820e-01,\\n\",\n      \"          -3.8590e-01, -2.7336e-01, -2.7192e-01,  5.9091e-02, -5.6585e-02,\\n\",\n      \"          -2.9206e-01,  1.5256e-01,  1.0575e-01,  3.3100e-01,  6.6701e-02,\\n\",\n      \"           1.1139e-01,  2.9278e-01,  4.2220e-01,  2.2346e-01, -5.3398e-01,\\n\",\n      \"           6.1949e-02,  3.1205e-02, -2.1178e-01, -1.8280e-01,  5.6443e-01,\\n\",\n      \"          -8.3626e-02,  1.7926e-01,  2.4563e-01, -3.9010e-01, -5.8782e-01,\\n\",\n      \"           3.6655e-01, -1.1015e-01,  4.1846e-01, -3.7551e-01,  5.5107e-02,\\n\",\n      \"          -1.6866e-01,  5.1045e-02, -1.0331e-01,  3.6541e-01,  3.5180e-01,\\n\",\n      \"          -2.6579e-01, -4.9724e-01, -3.3234e-01, -2.7096e-01,  3.5780e-01,\\n\",\n      \"          -3.3289e-01,  2.8968e-01, -1.0464e-01,  1.1147e-01,  1.5557e-01,\\n\",\n      \"          -1.9501e-01,  6.4053e-02,  4.8930e-02, -4.1890e-01, -1.0011e-01,\\n\",\n      \"           3.3335e-01, -3.6849e-01,  1.6564e-01, -8.3867e-02, -1.3537e-01,\\n\",\n      \"          -1.7237e-02, -1.4193e-01,  1.7183e-01, -3.0383e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3374e-01,  4.0180e-01, -6.3305e-01, -3.0021e-01,  7.0703e-01,\\n\",\n      \"          -5.8258e-01, -3.8906e-01, -2.2683e-01, -3.8732e-02, -1.4214e-01,\\n\",\n      \"          -2.8203e-01,  2.1185e-01,  3.0355e-01,  3.5339e-01,  1.3138e-01,\\n\",\n      \"          -1.0663e-02,  3.2603e-01,  5.0363e-01,  2.9328e-01, -5.3031e-01,\\n\",\n      \"           9.6803e-02,  7.1699e-02, -3.4079e-01, -2.4798e-01,  5.0690e-01,\\n\",\n      \"          -1.7497e-02, -1.8682e-02,  2.1297e-01, -3.2107e-01, -7.1430e-01,\\n\",\n      \"           5.1159e-01, -2.7057e-01,  4.7796e-01, -4.5132e-01,  3.6998e-01,\\n\",\n      \"          -2.5730e-01,  3.9020e-01, -1.3587e-01,  5.3076e-01,  5.6810e-01,\\n\",\n      \"          -2.6272e-01, -7.4426e-01, -2.7114e-01, -5.0363e-01,  2.9033e-01,\\n\",\n      \"          -6.0690e-01,  1.4748e-01, -2.5577e-01,  4.8167e-02, -5.2315e-02,\\n\",\n      \"          -3.3055e-01,  5.4121e-02, -1.1203e-01, -3.3502e-01, -1.6484e-01,\\n\",\n      \"           3.5335e-01, -5.3203e-01,  3.0482e-01, -2.6943e-01, -2.4425e-01,\\n\",\n      \"          -8.9498e-03, -2.3237e-01,  2.3527e-01, -2.3360e-01],\\n\",\n      \"         [-3.4616e-01,  3.8957e-01, -6.4207e-01, -3.2078e-01,  6.7713e-01,\\n\",\n      \"          -5.5975e-01, -3.9141e-01, -2.7275e-01, -2.3504e-02, -1.1344e-01,\\n\",\n      \"          -3.1221e-01,  2.4949e-01,  2.4872e-01,  4.2892e-01,  7.1725e-02,\\n\",\n      \"          -3.2751e-02,  3.2776e-01,  5.2313e-01,  3.2315e-01, -5.3379e-01,\\n\",\n      \"           2.7926e-02,  2.5778e-02, -3.0887e-01, -2.3681e-01,  4.8511e-01,\\n\",\n      \"          -1.2633e-03,  1.4333e-02,  3.0642e-01, -2.8257e-01, -7.0073e-01,\\n\",\n      \"           4.8024e-01, -2.8092e-01,  4.6049e-01, -4.3820e-01,  2.5091e-01,\\n\",\n      \"          -2.6511e-01,  3.3634e-01, -1.7201e-01,  5.2863e-01,  5.4009e-01,\\n\",\n      \"          -2.8440e-01, -7.4539e-01, -2.7692e-01, -4.7495e-01,  3.2482e-01,\\n\",\n      \"          -5.5845e-01,  1.9502e-01, -2.1119e-01,  7.4632e-02, -4.8396e-02,\\n\",\n      \"          -3.3858e-01,  5.1149e-02, -1.4257e-01, -3.8798e-01, -1.5212e-01,\\n\",\n      \"           3.9274e-01, -5.5639e-01,  3.3230e-01, -2.6980e-01, -2.3812e-01,\\n\",\n      \"          -2.7959e-02, -2.4953e-01,  2.3980e-01, -2.4494e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[ 8,  4,  9, 31, 13,  2,  0],\\n\",\n      \"        [12,  7, 41, 24, 19,  3,  2]])\\n\",\n      \"tensor([[ 6,  4,  9, 34, 12,  2,  0],\\n\",\n      \"        [ 7,  5, 18, 11,  3,  2,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-0.2368,  0.4906, -0.1632,  0.1336, -0.5146, -0.6547, -0.7321,\\n\",\n      \"          -0.4520,  0.4372,  0.0489,  0.0932,  0.0353, -0.1200,  0.5706,\\n\",\n      \"           0.0210, -0.0042, -0.3452,  0.4259,  0.5685,  0.2709, -0.2499,\\n\",\n      \"          -0.1529,  0.4769, -0.0433,  0.3475,  0.0323,  0.1716,  0.2017,\\n\",\n      \"          -0.1856,  0.0299, -0.0140, -0.5482,  0.6279,  0.3136,  0.1786,\\n\",\n      \"           0.1191,  0.3857,  0.1970, -0.0744, -0.3635,  0.2280, -0.8884,\\n\",\n      \"           0.0902, -0.1611, -0.4675,  0.3967,  0.0014, -0.1965,  0.5490,\\n\",\n      \"           0.3346, -0.3185,  0.6511, -0.0687, -0.0127, -0.0655,  0.1355,\\n\",\n      \"          -0.3590,  0.5301,  0.1524,  0.5518, -0.5237,  0.2308, -0.3268,\\n\",\n      \"          -0.5808],\\n\",\n      \"         [ 0.0363,  0.2298,  0.0624,  0.4424, -0.5712, -0.1931, -0.5531,\\n\",\n      \"          -0.4002,  0.4263,  0.2128, -0.0723,  0.0422, -0.1306,  0.0569,\\n\",\n      \"           0.1553,  0.2440, -0.2433, -0.0111,  0.4544,  0.0929, -0.1290,\\n\",\n      \"          -0.0594,  0.4491,  0.1725,  0.5771, -0.0402,  0.1638,  0.0127,\\n\",\n      \"          -0.3980, -0.1079, -0.1053, -0.4285,  0.5508,  0.3751,  0.0212,\\n\",\n      \"          -0.0314,  0.2061,  0.1678, -0.2261, -0.5119,  0.2012, -0.6739,\\n\",\n      \"          -0.0951,  0.2420, -0.2706,  0.5569,  0.2004, -0.0917,  0.3508,\\n\",\n      \"           0.3359, -0.2074,  0.5185,  0.1523, -0.2240,  0.0535,  0.0345,\\n\",\n      \"           0.0961,  0.0496,  0.1973,  0.6175, -0.1944,  0.0925, -0.1665,\\n\",\n      \"          -0.4900]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.3727e-01,  7.2181e-02, -4.8407e-02,  3.9534e-01,  1.7992e-01,\\n\",\n      \"           1.4430e-01,  1.3021e-01, -5.1874e-01,  9.1039e-02, -1.9068e-01,\\n\",\n      \"           2.6788e-01,  2.2892e-02, -8.0218e-02,  2.0840e-01,  1.3134e-01,\\n\",\n      \"           2.3112e-01,  4.3599e-02, -2.9930e-01,  2.1027e-01, -3.4507e-02,\\n\",\n      \"          -8.8752e-02, -1.4755e-01,  6.6381e-02, -3.3483e-01, -7.0215e-02,\\n\",\n      \"           4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\\n\",\n      \"           1.1633e-01, -2.9537e-01,  5.5430e-02,  5.4464e-02, -4.3290e-02,\\n\",\n      \"           7.1843e-02, -3.4024e-01, -3.7712e-02,  2.8614e-01, -6.0731e-02,\\n\",\n      \"          -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\\n\",\n      \"           3.7795e-01, -1.3003e-01,  1.7851e-01,  2.4400e-01, -3.0191e-01,\\n\",\n      \"           4.8482e-01,  2.6197e-01,  2.3043e-01, -4.2391e-01, -8.0003e-02,\\n\",\n      \"           2.5831e-01, -3.1049e-01,  1.7894e-01,  2.2598e-01,  1.0081e-01,\\n\",\n      \"          -2.7511e-01,  7.8730e-02, -2.0066e-01, -1.5597e-01],\\n\",\n      \"         [ 2.5820e-01,  1.9188e-01,  4.7999e-01,  6.9774e-02, -2.0267e-01,\\n\",\n      \"           3.7522e-01, -8.6744e-02,  2.5228e-01, -1.2846e-01,  1.0590e-01,\\n\",\n      \"          -2.7586e-01,  1.0311e-01,  1.1307e-01, -1.0545e-01,  2.9488e-01,\\n\",\n      \"           5.4775e-01, -1.6711e-01,  4.6806e-02, -2.4186e-01, -3.5100e-01,\\n\",\n      \"          -2.9758e-01, -3.1168e-01,  1.9277e-01,  1.4047e-01, -7.5636e-02,\\n\",\n      \"          -1.8808e-01, -2.0158e-01,  3.6178e-01, -9.5802e-02, -1.2708e-01,\\n\",\n      \"           1.0763e-01, -5.5428e-02,  1.1961e-01,  2.4258e-01, -2.8356e-01,\\n\",\n      \"          -2.4466e-01, -1.7622e-01, -6.5579e-02,  1.2709e-01,  4.5320e-02,\\n\",\n      \"           9.7881e-02,  2.9991e-01,  2.2304e-01, -3.3725e-01, -7.2100e-02,\\n\",\n      \"          -1.7546e-01, -2.9953e-01,  4.6157e-02, -1.5875e-01, -2.6537e-01,\\n\",\n      \"           3.2382e-01,  9.5382e-03,  2.2192e-01, -2.5515e-01, -4.1426e-01,\\n\",\n      \"          -9.4852e-02, -4.9565e-02,  1.5019e-01,  2.4926e-01,  1.9148e-01,\\n\",\n      \"          -5.3635e-01, -1.5326e-01,  1.6425e-01, -3.9051e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0083e-01, -3.0158e-01, -2.8431e-02,  7.8782e-01,  2.3501e-02,\\n\",\n      \"           9.2542e-02,  3.9450e-01, -6.1034e-03,  2.4454e-01, -3.1812e-01,\\n\",\n      \"           2.2186e-01,  1.3691e-01,  2.2964e-01, -3.7366e-01,  4.4578e-01,\\n\",\n      \"           1.5186e-01,  2.7236e-02,  4.9386e-02,  2.2214e-01, -8.3106e-02,\\n\",\n      \"          -2.9856e-01, -4.7007e-02,  2.0091e-01, -2.0271e-01,  2.0945e-01,\\n\",\n      \"          -1.2809e-01, -3.7861e-01, -1.3235e-01,  3.6467e-02, -2.1870e-01,\\n\",\n      \"          -1.0883e-01, -1.7587e-01,  4.0160e-01,  4.2037e-01,  4.8252e-02,\\n\",\n      \"           2.8059e-01, -4.1559e-01,  6.3770e-01,  3.2591e-01,  9.4536e-02,\\n\",\n      \"          -2.2653e-02, -3.4345e-02,  1.8139e-01, -1.6369e-01,  4.0315e-02,\\n\",\n      \"           3.9302e-01,  2.5815e-01, -1.6280e-01,  3.2198e-01,  3.0073e-01,\\n\",\n      \"           1.7263e-02, -4.5440e-02,  2.6601e-01, -5.0357e-01, -4.8120e-02,\\n\",\n      \"          -1.4780e-01,  2.7241e-02, -1.4115e-01, -8.8778e-03,  6.6657e-01,\\n\",\n      \"          -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\\n\",\n      \"         [ 6.7260e-02,  1.2996e-01,  1.1819e-01, -2.0483e-01, -5.4274e-01,\\n\",\n      \"          -1.1038e-01,  2.4815e-02,  6.9911e-02, -1.4384e-01, -3.7275e-01,\\n\",\n      \"          -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\\n\",\n      \"           5.1307e-01,  2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\\n\",\n      \"          -3.0653e-01, -2.0400e-01,  3.5982e-01,  4.9754e-01,  1.0173e-01,\\n\",\n      \"          -4.0342e-01,  4.9540e-01,  2.5269e-01,  7.8506e-02, -2.3170e-02,\\n\",\n      \"           1.8902e-01,  3.7163e-01, -1.1237e-01,  6.6350e-01, -5.1017e-01,\\n\",\n      \"           6.4472e-02, -5.7414e-02, -8.7294e-02,  2.0384e-02, -2.6563e-02,\\n\",\n      \"           1.7521e-01,  6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\\n\",\n      \"          -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\\n\",\n      \"           3.3169e-01,  2.3594e-01,  3.5904e-02, -4.0302e-01, -3.1485e-01,\\n\",\n      \"           3.4287e-01,  1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\\n\",\n      \"          -6.8716e-01,  5.1406e-02,  2.5545e-01,  2.5696e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.0629e-01, -3.7659e-01,  4.5863e-02,  5.3217e-01, -1.2700e-01,\\n\",\n      \"          -1.4886e-01,  1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\\n\",\n      \"           4.2041e-01, -1.8544e-01,  4.3391e-01, -6.7537e-02,  1.9093e-01,\\n\",\n      \"          -5.8209e-01, -2.1247e-02,  2.4594e-01,  3.7686e-01,  3.0338e-02,\\n\",\n      \"          -4.1501e-01,  1.7103e-01,  1.6851e-02, -1.5981e-01,  2.9293e-01,\\n\",\n      \"          -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\\n\",\n      \"          -1.8605e-01,  1.2303e-01,  6.8677e-01,  3.3999e-01,  2.9310e-01,\\n\",\n      \"           3.4023e-01, -1.6655e-01,  6.5662e-01,  4.0671e-01, -2.8659e-01,\\n\",\n      \"          -4.9588e-01,  1.6012e-01,  2.7112e-01,  2.1752e-01, -3.7658e-01,\\n\",\n      \"           3.0657e-01,  1.9236e-01, -4.6345e-01,  1.7681e-01,  9.2185e-02,\\n\",\n      \"          -1.5306e-01, -4.8642e-01,  5.8779e-01, -6.4074e-01,  2.2483e-01,\\n\",\n      \"          -1.0579e-01,  4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\\n\",\n      \"          -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\\n\",\n      \"         [ 1.0529e-02,  3.5908e-01,  2.3312e-01,  1.9650e-01, -5.9675e-02,\\n\",\n      \"          -1.5658e-01,  1.6122e-01,  1.8782e-01, -1.9782e-01, -2.5424e-01,\\n\",\n      \"          -2.2587e-01,  1.1983e-01,  5.4116e-02, -4.3192e-01, -2.1338e-01,\\n\",\n      \"           5.8897e-01,  4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\\n\",\n      \"          -5.1517e-01, -5.5736e-02,  1.4217e-01,  5.7948e-01, -1.6698e-01,\\n\",\n      \"          -1.8354e-01,  2.5574e-01,  9.2582e-02, -1.5009e-01, -1.5141e-01,\\n\",\n      \"           6.2154e-02,  1.9030e-01,  5.2375e-02,  3.0264e-01, -4.0980e-01,\\n\",\n      \"           9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\\n\",\n      \"           1.7333e-01,  1.3659e-02,  4.6606e-02, -6.6266e-01,  2.8069e-01,\\n\",\n      \"           2.4609e-01,  5.7418e-02,  3.7632e-01,  2.5864e-01,  1.4679e-01,\\n\",\n      \"           4.4736e-01,  4.5973e-01,  8.1457e-02, -5.2304e-01, -4.5289e-01,\\n\",\n      \"           1.7003e-01,  2.5693e-01, -3.7473e-01,  1.5084e-01,  3.6457e-01,\\n\",\n      \"          -4.0353e-02, -6.3108e-02,  9.9259e-02,  1.4259e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 9.5497e-02, -4.1627e-01,  2.8029e-02,  4.1203e-01, -6.8130e-03,\\n\",\n      \"          -2.8840e-01,  3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\\n\",\n      \"           3.4702e-01, -3.8960e-02,  5.7625e-01, -1.9183e-01,  2.6033e-01,\\n\",\n      \"          -4.3174e-01,  3.1093e-02, -1.8470e-01,  6.3293e-01, -5.6075e-02,\\n\",\n      \"          -5.1161e-01, -9.4454e-02,  1.5921e-01, -1.8132e-01, -1.6253e-01,\\n\",\n      \"           1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\\n\",\n      \"          -1.6154e-01,  2.0733e-01,  7.0576e-01,  1.3302e-01, -2.9825e-01,\\n\",\n      \"           2.0994e-01, -5.3865e-02,  3.8838e-01,  4.2451e-01, -5.2417e-01,\\n\",\n      \"          -5.0814e-01,  2.6738e-01,  3.7351e-01,  5.8097e-01, -6.1178e-01,\\n\",\n      \"           2.2877e-01,  2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\\n\",\n      \"           1.4218e-01, -3.0955e-01,  4.6556e-01, -1.5831e-01, -2.1650e-01,\\n\",\n      \"           3.8367e-02,  4.2855e-01,  1.9128e-01,  3.8580e-01,  1.1959e-01,\\n\",\n      \"          -2.9994e-01, -5.2117e-01,  2.1471e-01, -5.7907e-01],\\n\",\n      \"         [-1.0411e-01, -5.0381e-02,  2.7471e-01,  4.8769e-01,  1.4239e-01,\\n\",\n      \"           2.6347e-01,  5.2876e-01,  1.4041e-01, -2.0420e-01,  2.7689e-01,\\n\",\n      \"          -6.2801e-01,  5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\\n\",\n      \"           3.9456e-01,  2.7023e-01, -3.4516e-02,  7.8912e-02, -1.1492e-01,\\n\",\n      \"          -2.2979e-01, -1.7854e-01,  4.5892e-01,  2.8441e-01, -1.0770e-01,\\n\",\n      \"           1.6266e-01,  1.1944e-01,  3.1096e-01, -3.3360e-01, -6.6498e-02,\\n\",\n      \"           1.4587e-01,  3.4419e-01, -5.3772e-04,  4.5331e-01, -5.1342e-01,\\n\",\n      \"           1.3568e-01,  9.8949e-02, -8.0940e-02,  3.8612e-01, -1.3356e-01,\\n\",\n      \"          -1.0952e-01,  3.4308e-01,  1.8789e-01,  8.1325e-02,  9.0352e-02,\\n\",\n      \"           2.2188e-01,  1.5698e-01, -2.0673e-01,  6.6451e-02, -2.0891e-01,\\n\",\n      \"           1.9172e-01,  4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\\n\",\n      \"           2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01,  2.5902e-01,\\n\",\n      \"          -6.0417e-03, -4.4415e-01,  3.1402e-01,  3.1877e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.6335e-03, -2.3985e-01, -3.4736e-02,  8.8921e-02, -2.9755e-01,\\n\",\n      \"          -1.8779e-01,  2.6080e-01, -4.0660e-01,  2.4273e-01, -2.0277e-01,\\n\",\n      \"          -4.9214e-02,  9.4251e-02, -1.2161e-01,  1.5997e-01,  2.0561e-01,\\n\",\n      \"           1.5723e-01, -1.9595e-01, -4.2922e-01,  7.0747e-02,  1.4856e-01,\\n\",\n      \"          -1.5354e-01,  9.6606e-02,  1.7886e-01, -3.8590e-01, -2.9419e-01,\\n\",\n      \"           2.1776e-01,  2.6294e-02, -4.5975e-02,  2.0144e-02, -3.3976e-01,\\n\",\n      \"          -3.2033e-02,  1.9865e-01,  5.3036e-01,  1.5295e-01, -9.2089e-02,\\n\",\n      \"           4.3739e-01,  3.6364e-01,  3.4489e-01,  2.7756e-01, -2.2295e-01,\\n\",\n      \"          -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\\n\",\n      \"           2.5772e-01, -1.0638e-01, -7.3814e-02,  4.7898e-01, -1.9344e-01,\\n\",\n      \"           4.6140e-02,  1.3491e-02,  2.5996e-01,  2.2740e-01, -3.2146e-01,\\n\",\n      \"          -5.9065e-02, -4.3176e-01,  2.7157e-01,  3.1781e-01,  1.6585e-01,\\n\",\n      \"          -3.8220e-01, -4.3346e-01, -5.1061e-01,  1.0843e-01],\\n\",\n      \"         [ 9.6994e-02, -1.7331e-01,  2.1172e-01,  5.1296e-01, -2.1837e-01,\\n\",\n      \"          -1.5871e-02,  4.7803e-01,  1.5512e-01, -4.9505e-01,  2.5299e-03,\\n\",\n      \"          -6.7146e-01,  4.0029e-01, -6.4332e-02,  1.3088e-01,  3.7229e-02,\\n\",\n      \"           2.5459e-01,  7.3664e-01, -5.0367e-01,  1.3755e-01, -1.3922e-01,\\n\",\n      \"          -2.4012e-01,  2.2718e-02,  3.1692e-01, -1.0521e-01,  3.7480e-01,\\n\",\n      \"          -1.3657e-01, -2.5329e-01,  5.7562e-01, -5.2170e-02, -2.5802e-01,\\n\",\n      \"           2.7986e-01,  2.3848e-01,  1.4237e-01,  5.9374e-01, -3.3590e-01,\\n\",\n      \"           1.4647e-01, -6.6258e-02,  1.5446e-01,  3.4899e-01,  1.8101e-01,\\n\",\n      \"          -3.1963e-01,  1.2350e-01,  3.3166e-01, -2.9319e-01, -3.6108e-01,\\n\",\n      \"           3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03,  1.3249e-02,\\n\",\n      \"          -2.0109e-01,  1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\\n\",\n      \"           1.2868e-01,  3.8556e-01, -4.1688e-01, -3.0117e-02,  1.9605e-01,\\n\",\n      \"          -4.5693e-01, -4.9675e-01,  2.4458e-01,  2.3623e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.6365e-01, -2.7898e-01,  2.1363e-01,  2.3062e-01, -1.4550e-01,\\n\",\n      \"           1.6778e-02,  4.2505e-02, -4.5946e-01,  2.4220e-01, -1.9533e-01,\\n\",\n      \"          -1.5048e-01,  6.5674e-02, -3.3663e-01,  1.4862e-01, -3.8167e-02,\\n\",\n      \"           3.1526e-01, -2.9041e-02, -6.7158e-02,  6.2756e-02, -1.9502e-01,\\n\",\n      \"          -7.9184e-02, -1.7278e-01,  1.4336e-01, -3.5072e-01,  1.5444e-01,\\n\",\n      \"          -4.2982e-01,  5.2977e-01,  7.5553e-02, -4.6632e-01, -3.8594e-01,\\n\",\n      \"           2.5318e-01,  2.7747e-01,  4.8115e-01,  7.4816e-03, -2.9260e-01,\\n\",\n      \"          -2.1384e-02, -3.1256e-01,  2.7800e-01,  3.9665e-01, -1.6654e-01,\\n\",\n      \"          -3.9723e-01, -4.7709e-01, -6.2903e-01,  2.2307e-01,  4.1874e-02,\\n\",\n      \"           2.0719e-01,  6.7764e-02,  3.2923e-01,  4.4065e-01,  1.6063e-01,\\n\",\n      \"           1.4556e-01,  2.5320e-01,  3.6555e-01, -1.1610e-01, -4.0548e-02,\\n\",\n      \"           2.6207e-01, -2.5660e-01,  2.5825e-01,  5.6414e-01,  4.1154e-01,\\n\",\n      \"          -2.1353e-02, -6.4984e-02,  3.0729e-01, -3.8730e-01],\\n\",\n      \"         [ 5.4114e-02,  1.2911e-01,  1.1079e-01,  2.1384e-01, -3.7324e-02,\\n\",\n      \"           2.1465e-04,  1.8886e-01,  2.1697e-01,  2.6679e-01,  3.3500e-01,\\n\",\n      \"          -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02,  9.6619e-02,\\n\",\n      \"           1.5960e-01,  4.1786e-01, -4.3850e-01,  2.8198e-01, -4.6615e-01,\\n\",\n      \"           1.4454e-01,  6.5908e-02,  8.5281e-02, -4.2819e-02,  5.0067e-01,\\n\",\n      \"           1.7017e-01, -2.7224e-01,  2.5380e-01,  4.1439e-02, -3.5470e-01,\\n\",\n      \"           1.9666e-01, -1.9875e-01, -9.2995e-03,  3.5348e-01,  4.8985e-02,\\n\",\n      \"           1.6634e-01,  2.1250e-01,  1.6368e-01, -2.9762e-01, -1.7645e-01,\\n\",\n      \"          -4.1179e-01,  3.5149e-01,  2.2540e-01,  2.3828e-02, -1.3123e-01,\\n\",\n      \"           2.8975e-01,  1.1899e-01,  1.6702e-01,  1.7360e-01,  1.4900e-01,\\n\",\n      \"          -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\\n\",\n      \"          -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01,  4.7001e-01,\\n\",\n      \"          -4.0074e-01, -5.6701e-01, -3.2914e-01,  2.7732e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0713e-01,  4.5937e-01, -1.6181e-01,  4.3321e-02,  1.1174e-01,\\n\",\n      \"          -6.1644e-01, -5.7113e-01, -5.0487e-01,  3.5190e-01,  4.1288e-02,\\n\",\n      \"          -2.7544e-01, -4.4448e-02, -2.5642e-01,  6.6191e-01, -1.8626e-01,\\n\",\n      \"          -5.6468e-02, -7.5144e-02,  6.2824e-01,  4.6276e-01, -3.3513e-01,\\n\",\n      \"          -3.5146e-01, -1.9119e-01,  8.3969e-02, -2.7791e-01,  2.1230e-01,\\n\",\n      \"          -3.5122e-01,  3.3878e-01,  4.5148e-01, -1.3567e-01, -3.3026e-01,\\n\",\n      \"           5.8611e-01, -3.8844e-01,  2.9644e-01, -1.6744e-01,  4.0907e-02,\\n\",\n      \"           7.5437e-03, -1.6675e-01,  2.5426e-01,  3.3875e-01,  7.0346e-02,\\n\",\n      \"           7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\\n\",\n      \"           5.3298e-02, -5.7836e-02,  3.7722e-02,  4.2650e-01,  3.8631e-01,\\n\",\n      \"          -2.0902e-01,  4.5654e-01, -1.7730e-01, -4.1286e-01,  2.1224e-02,\\n\",\n      \"           2.3993e-01, -6.1541e-01,  5.8383e-01,  3.3904e-01,  2.5489e-01,\\n\",\n      \"          -5.3822e-01, -5.1609e-03,  7.5159e-02, -5.2072e-01],\\n\",\n      \"         [-1.6287e-01, -1.2638e-02,  2.4461e-01,  4.2238e-01, -7.5080e-02,\\n\",\n      \"           6.8997e-02,  5.9353e-02, -4.6653e-01,  2.5298e-01,  2.6466e-01,\\n\",\n      \"          -2.6296e-01, -2.3991e-02, -3.3667e-01,  2.0203e-02, -1.0276e-01,\\n\",\n      \"           3.0682e-01,  3.8102e-01, -1.4313e-01,  2.6840e-01, -5.8352e-01,\\n\",\n      \"          -1.3001e-02, -2.0605e-01,  1.3328e-01, -3.5768e-02,  5.0879e-01,\\n\",\n      \"          -4.9018e-01,  3.4093e-01,  2.6714e-01, -4.5952e-01, -3.8416e-01,\\n\",\n      \"           3.6284e-01,  2.4918e-03,  2.9864e-01,  7.5558e-02, -2.7992e-01,\\n\",\n      \"          -1.2603e-01, -4.7697e-01,  2.0969e-01,  4.8302e-02, -1.4302e-01,\\n\",\n      \"          -4.7573e-01, -2.2340e-01, -3.0772e-01,  4.1387e-01,  1.2074e-01,\\n\",\n      \"           2.5394e-01,  1.6521e-01,  4.2968e-01,  3.1515e-01,  3.1856e-01,\\n\",\n      \"           2.1915e-02, -3.8564e-02,  6.7546e-02, -6.3149e-01,  4.9406e-02,\\n\",\n      \"           1.7295e-01, -1.1359e-01, -1.2223e-01,  4.0665e-01,  5.6251e-01,\\n\",\n      \"           9.3645e-04, -1.5734e-01,  3.2205e-01, -3.8656e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([6, 7])\\n\",\n      \"dec_state: tensor([[[-0.2606,  0.0464,  0.3562, -0.0849,  0.0625, -0.4843, -0.4120,\\n\",\n      \"          -0.4082,  0.3085,  0.0470,  0.2194, -0.2052,  0.3182,  0.1767,\\n\",\n      \"          -0.1194, -0.3420, -0.3663,  0.4664,  0.4547,  0.0669, -0.2906,\\n\",\n      \"           0.1184,  0.1475, -0.2458,  0.1952,  0.0510,  0.3705,  0.2574,\\n\",\n      \"          -0.2187, -0.4377,  0.4639, -0.2281,  0.4792,  0.0243,  0.1534,\\n\",\n      \"           0.2938,  0.2513, -0.1384, -0.4162,  0.1054, -0.0919, -0.8086,\\n\",\n      \"          -0.1805, -0.3550, -0.5276,  0.0119, -0.2133, -0.1668,  0.5406,\\n\",\n      \"           0.2409, -0.0066,  0.1420,  0.0930, -0.0078, -0.3657,  0.2010,\\n\",\n      \"          -0.1447,  0.0157,  0.2927, -0.0389,  0.0453,  0.3613, -0.3915,\\n\",\n      \"          -0.0681],\\n\",\n      \"         [-0.1196,  0.2789, -0.0505,  0.5068, -0.2511, -0.0943, -0.1242,\\n\",\n      \"          -0.2902,  0.0580, -0.0632,  0.0090, -0.5610,  0.1224,  0.2306,\\n\",\n      \"          -0.3030,  0.2470,  0.0691, -0.0190, -0.2213,  0.2997,  0.2981,\\n\",\n      \"          -0.5748, -0.1786,  0.5018,  0.1943, -0.0842,  0.2972, -0.3749,\\n\",\n      \"          -0.5596, -0.7313, -0.3436, -0.2983,  0.5639,  0.2330, -0.3734,\\n\",\n      \"           0.5625, -0.5990, -0.4569,  0.6076, -0.0471,  0.4958, -0.3008,\\n\",\n      \"          -0.0544,  0.6296, -0.2982, -0.3731,  0.2267,  0.0170,  0.4680,\\n\",\n      \"           0.4412,  0.1330,  0.4534,  0.4653, -0.4821, -0.5429, -0.2952,\\n\",\n      \"           0.0369,  0.3374, -0.0653, -0.1261, -0.2568,  0.2462, -0.5533,\\n\",\n      \"           0.5980]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.3727e-01,  7.2181e-02, -4.8407e-02,  3.9534e-01,  1.7992e-01,\\n\",\n      \"           1.4430e-01,  1.3021e-01, -5.1874e-01,  9.1039e-02, -1.9068e-01,\\n\",\n      \"           2.6788e-01,  2.2892e-02, -8.0218e-02,  2.0840e-01,  1.3134e-01,\\n\",\n      \"           2.3112e-01,  4.3599e-02, -2.9930e-01,  2.1027e-01, -3.4507e-02,\\n\",\n      \"          -8.8752e-02, -1.4755e-01,  6.6381e-02, -3.3483e-01, -7.0215e-02,\\n\",\n      \"           4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\\n\",\n      \"           1.1633e-01, -2.9537e-01,  5.5430e-02,  5.4464e-02, -4.3290e-02,\\n\",\n      \"           7.1843e-02, -3.4024e-01, -3.7712e-02,  2.8614e-01, -6.0731e-02,\\n\",\n      \"          -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\\n\",\n      \"           3.7795e-01, -1.3003e-01,  1.7851e-01,  2.4400e-01, -3.0191e-01,\\n\",\n      \"           4.8482e-01,  2.6197e-01,  2.3043e-01, -4.2391e-01, -8.0003e-02,\\n\",\n      \"           2.5831e-01, -3.1049e-01,  1.7894e-01,  2.2598e-01,  1.0081e-01,\\n\",\n      \"          -2.7511e-01,  7.8730e-02, -2.0066e-01, -1.5597e-01],\\n\",\n      \"         [ 2.5820e-01,  1.9188e-01,  4.7999e-01,  6.9774e-02, -2.0267e-01,\\n\",\n      \"           3.7522e-01, -8.6744e-02,  2.5228e-01, -1.2846e-01,  1.0590e-01,\\n\",\n      \"          -2.7586e-01,  1.0311e-01,  1.1307e-01, -1.0545e-01,  2.9488e-01,\\n\",\n      \"           5.4775e-01, -1.6711e-01,  4.6806e-02, -2.4186e-01, -3.5100e-01,\\n\",\n      \"          -2.9758e-01, -3.1168e-01,  1.9277e-01,  1.4047e-01, -7.5636e-02,\\n\",\n      \"          -1.8808e-01, -2.0158e-01,  3.6178e-01, -9.5802e-02, -1.2708e-01,\\n\",\n      \"           1.0763e-01, -5.5428e-02,  1.1961e-01,  2.4258e-01, -2.8356e-01,\\n\",\n      \"          -2.4466e-01, -1.7622e-01, -6.5579e-02,  1.2709e-01,  4.5320e-02,\\n\",\n      \"           9.7881e-02,  2.9991e-01,  2.2304e-01, -3.3725e-01, -7.2100e-02,\\n\",\n      \"          -1.7546e-01, -2.9953e-01,  4.6157e-02, -1.5875e-01, -2.6537e-01,\\n\",\n      \"           3.2382e-01,  9.5382e-03,  2.2192e-01, -2.5515e-01, -4.1426e-01,\\n\",\n      \"          -9.4852e-02, -4.9565e-02,  1.5019e-01,  2.4926e-01,  1.9148e-01,\\n\",\n      \"          -5.3635e-01, -1.5326e-01,  1.6425e-01, -3.9051e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0083e-01, -3.0158e-01, -2.8431e-02,  7.8782e-01,  2.3501e-02,\\n\",\n      \"           9.2542e-02,  3.9450e-01, -6.1034e-03,  2.4454e-01, -3.1812e-01,\\n\",\n      \"           2.2186e-01,  1.3691e-01,  2.2964e-01, -3.7366e-01,  4.4578e-01,\\n\",\n      \"           1.5186e-01,  2.7236e-02,  4.9386e-02,  2.2214e-01, -8.3106e-02,\\n\",\n      \"          -2.9856e-01, -4.7007e-02,  2.0091e-01, -2.0271e-01,  2.0945e-01,\\n\",\n      \"          -1.2809e-01, -3.7861e-01, -1.3235e-01,  3.6467e-02, -2.1870e-01,\\n\",\n      \"          -1.0883e-01, -1.7587e-01,  4.0160e-01,  4.2037e-01,  4.8252e-02,\\n\",\n      \"           2.8059e-01, -4.1559e-01,  6.3770e-01,  3.2591e-01,  9.4536e-02,\\n\",\n      \"          -2.2653e-02, -3.4345e-02,  1.8139e-01, -1.6369e-01,  4.0315e-02,\\n\",\n      \"           3.9302e-01,  2.5815e-01, -1.6280e-01,  3.2198e-01,  3.0073e-01,\\n\",\n      \"           1.7263e-02, -4.5440e-02,  2.6601e-01, -5.0357e-01, -4.8120e-02,\\n\",\n      \"          -1.4780e-01,  2.7241e-02, -1.4115e-01, -8.8778e-03,  6.6657e-01,\\n\",\n      \"          -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\\n\",\n      \"         [ 6.7260e-02,  1.2996e-01,  1.1819e-01, -2.0483e-01, -5.4274e-01,\\n\",\n      \"          -1.1038e-01,  2.4815e-02,  6.9911e-02, -1.4384e-01, -3.7275e-01,\\n\",\n      \"          -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\\n\",\n      \"           5.1307e-01,  2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\\n\",\n      \"          -3.0653e-01, -2.0400e-01,  3.5982e-01,  4.9754e-01,  1.0173e-01,\\n\",\n      \"          -4.0342e-01,  4.9540e-01,  2.5269e-01,  7.8506e-02, -2.3170e-02,\\n\",\n      \"           1.8902e-01,  3.7163e-01, -1.1237e-01,  6.6350e-01, -5.1017e-01,\\n\",\n      \"           6.4472e-02, -5.7414e-02, -8.7294e-02,  2.0384e-02, -2.6563e-02,\\n\",\n      \"           1.7521e-01,  6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\\n\",\n      \"          -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\\n\",\n      \"           3.3169e-01,  2.3594e-01,  3.5904e-02, -4.0302e-01, -3.1485e-01,\\n\",\n      \"           3.4287e-01,  1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\\n\",\n      \"          -6.8716e-01,  5.1406e-02,  2.5545e-01,  2.5696e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.0629e-01, -3.7659e-01,  4.5863e-02,  5.3217e-01, -1.2700e-01,\\n\",\n      \"          -1.4886e-01,  1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\\n\",\n      \"           4.2041e-01, -1.8544e-01,  4.3391e-01, -6.7537e-02,  1.9093e-01,\\n\",\n      \"          -5.8209e-01, -2.1247e-02,  2.4594e-01,  3.7686e-01,  3.0338e-02,\\n\",\n      \"          -4.1501e-01,  1.7103e-01,  1.6851e-02, -1.5981e-01,  2.9293e-01,\\n\",\n      \"          -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\\n\",\n      \"          -1.8605e-01,  1.2303e-01,  6.8677e-01,  3.3999e-01,  2.9310e-01,\\n\",\n      \"           3.4023e-01, -1.6655e-01,  6.5662e-01,  4.0671e-01, -2.8659e-01,\\n\",\n      \"          -4.9588e-01,  1.6012e-01,  2.7112e-01,  2.1752e-01, -3.7658e-01,\\n\",\n      \"           3.0657e-01,  1.9236e-01, -4.6345e-01,  1.7681e-01,  9.2185e-02,\\n\",\n      \"          -1.5306e-01, -4.8642e-01,  5.8779e-01, -6.4074e-01,  2.2483e-01,\\n\",\n      \"          -1.0579e-01,  4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\\n\",\n      \"          -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\\n\",\n      \"         [ 1.0529e-02,  3.5908e-01,  2.3312e-01,  1.9650e-01, -5.9675e-02,\\n\",\n      \"          -1.5658e-01,  1.6122e-01,  1.8782e-01, -1.9782e-01, -2.5424e-01,\\n\",\n      \"          -2.2587e-01,  1.1983e-01,  5.4116e-02, -4.3192e-01, -2.1338e-01,\\n\",\n      \"           5.8897e-01,  4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\\n\",\n      \"          -5.1517e-01, -5.5736e-02,  1.4217e-01,  5.7948e-01, -1.6698e-01,\\n\",\n      \"          -1.8354e-01,  2.5574e-01,  9.2582e-02, -1.5009e-01, -1.5141e-01,\\n\",\n      \"           6.2154e-02,  1.9030e-01,  5.2375e-02,  3.0264e-01, -4.0980e-01,\\n\",\n      \"           9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\\n\",\n      \"           1.7333e-01,  1.3659e-02,  4.6606e-02, -6.6266e-01,  2.8069e-01,\\n\",\n      \"           2.4609e-01,  5.7418e-02,  3.7632e-01,  2.5864e-01,  1.4679e-01,\\n\",\n      \"           4.4736e-01,  4.5973e-01,  8.1457e-02, -5.2304e-01, -4.5289e-01,\\n\",\n      \"           1.7003e-01,  2.5693e-01, -3.7473e-01,  1.5084e-01,  3.6457e-01,\\n\",\n      \"          -4.0353e-02, -6.3108e-02,  9.9259e-02,  1.4259e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 9.5497e-02, -4.1627e-01,  2.8029e-02,  4.1203e-01, -6.8130e-03,\\n\",\n      \"          -2.8840e-01,  3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\\n\",\n      \"           3.4702e-01, -3.8960e-02,  5.7625e-01, -1.9183e-01,  2.6033e-01,\\n\",\n      \"          -4.3174e-01,  3.1093e-02, -1.8470e-01,  6.3293e-01, -5.6075e-02,\\n\",\n      \"          -5.1161e-01, -9.4454e-02,  1.5921e-01, -1.8132e-01, -1.6253e-01,\\n\",\n      \"           1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\\n\",\n      \"          -1.6154e-01,  2.0733e-01,  7.0576e-01,  1.3302e-01, -2.9825e-01,\\n\",\n      \"           2.0994e-01, -5.3865e-02,  3.8838e-01,  4.2451e-01, -5.2417e-01,\\n\",\n      \"          -5.0814e-01,  2.6738e-01,  3.7351e-01,  5.8097e-01, -6.1178e-01,\\n\",\n      \"           2.2877e-01,  2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\\n\",\n      \"           1.4218e-01, -3.0955e-01,  4.6556e-01, -1.5831e-01, -2.1650e-01,\\n\",\n      \"           3.8367e-02,  4.2855e-01,  1.9128e-01,  3.8580e-01,  1.1959e-01,\\n\",\n      \"          -2.9994e-01, -5.2117e-01,  2.1471e-01, -5.7907e-01],\\n\",\n      \"         [-1.0411e-01, -5.0381e-02,  2.7471e-01,  4.8769e-01,  1.4239e-01,\\n\",\n      \"           2.6347e-01,  5.2876e-01,  1.4041e-01, -2.0420e-01,  2.7689e-01,\\n\",\n      \"          -6.2801e-01,  5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\\n\",\n      \"           3.9456e-01,  2.7023e-01, -3.4516e-02,  7.8912e-02, -1.1492e-01,\\n\",\n      \"          -2.2979e-01, -1.7854e-01,  4.5892e-01,  2.8441e-01, -1.0770e-01,\\n\",\n      \"           1.6266e-01,  1.1944e-01,  3.1096e-01, -3.3360e-01, -6.6498e-02,\\n\",\n      \"           1.4587e-01,  3.4419e-01, -5.3772e-04,  4.5331e-01, -5.1342e-01,\\n\",\n      \"           1.3568e-01,  9.8949e-02, -8.0940e-02,  3.8612e-01, -1.3356e-01,\\n\",\n      \"          -1.0952e-01,  3.4308e-01,  1.8789e-01,  8.1325e-02,  9.0352e-02,\\n\",\n      \"           2.2188e-01,  1.5698e-01, -2.0673e-01,  6.6451e-02, -2.0891e-01,\\n\",\n      \"           1.9172e-01,  4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\\n\",\n      \"           2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01,  2.5902e-01,\\n\",\n      \"          -6.0417e-03, -4.4415e-01,  3.1402e-01,  3.1877e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.6335e-03, -2.3985e-01, -3.4736e-02,  8.8921e-02, -2.9755e-01,\\n\",\n      \"          -1.8779e-01,  2.6080e-01, -4.0660e-01,  2.4273e-01, -2.0277e-01,\\n\",\n      \"          -4.9214e-02,  9.4251e-02, -1.2161e-01,  1.5997e-01,  2.0561e-01,\\n\",\n      \"           1.5723e-01, -1.9595e-01, -4.2922e-01,  7.0747e-02,  1.4856e-01,\\n\",\n      \"          -1.5354e-01,  9.6606e-02,  1.7886e-01, -3.8590e-01, -2.9419e-01,\\n\",\n      \"           2.1776e-01,  2.6294e-02, -4.5975e-02,  2.0144e-02, -3.3976e-01,\\n\",\n      \"          -3.2033e-02,  1.9865e-01,  5.3036e-01,  1.5295e-01, -9.2089e-02,\\n\",\n      \"           4.3739e-01,  3.6364e-01,  3.4489e-01,  2.7756e-01, -2.2295e-01,\\n\",\n      \"          -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\\n\",\n      \"           2.5772e-01, -1.0638e-01, -7.3814e-02,  4.7898e-01, -1.9344e-01,\\n\",\n      \"           4.6140e-02,  1.3491e-02,  2.5996e-01,  2.2740e-01, -3.2146e-01,\\n\",\n      \"          -5.9065e-02, -4.3176e-01,  2.7157e-01,  3.1781e-01,  1.6585e-01,\\n\",\n      \"          -3.8220e-01, -4.3346e-01, -5.1061e-01,  1.0843e-01],\\n\",\n      \"         [ 9.6994e-02, -1.7331e-01,  2.1172e-01,  5.1296e-01, -2.1837e-01,\\n\",\n      \"          -1.5871e-02,  4.7803e-01,  1.5512e-01, -4.9505e-01,  2.5299e-03,\\n\",\n      \"          -6.7146e-01,  4.0029e-01, -6.4332e-02,  1.3088e-01,  3.7229e-02,\\n\",\n      \"           2.5459e-01,  7.3664e-01, -5.0367e-01,  1.3755e-01, -1.3922e-01,\\n\",\n      \"          -2.4012e-01,  2.2718e-02,  3.1692e-01, -1.0521e-01,  3.7480e-01,\\n\",\n      \"          -1.3657e-01, -2.5329e-01,  5.7562e-01, -5.2170e-02, -2.5802e-01,\\n\",\n      \"           2.7986e-01,  2.3848e-01,  1.4237e-01,  5.9374e-01, -3.3590e-01,\\n\",\n      \"           1.4647e-01, -6.6258e-02,  1.5446e-01,  3.4899e-01,  1.8101e-01,\\n\",\n      \"          -3.1963e-01,  1.2350e-01,  3.3166e-01, -2.9319e-01, -3.6108e-01,\\n\",\n      \"           3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03,  1.3249e-02,\\n\",\n      \"          -2.0109e-01,  1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\\n\",\n      \"           1.2868e-01,  3.8556e-01, -4.1688e-01, -3.0117e-02,  1.9605e-01,\\n\",\n      \"          -4.5693e-01, -4.9675e-01,  2.4458e-01,  2.3623e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.6365e-01, -2.7898e-01,  2.1363e-01,  2.3062e-01, -1.4550e-01,\\n\",\n      \"           1.6778e-02,  4.2505e-02, -4.5946e-01,  2.4220e-01, -1.9533e-01,\\n\",\n      \"          -1.5048e-01,  6.5674e-02, -3.3663e-01,  1.4862e-01, -3.8167e-02,\\n\",\n      \"           3.1526e-01, -2.9041e-02, -6.7158e-02,  6.2756e-02, -1.9502e-01,\\n\",\n      \"          -7.9184e-02, -1.7278e-01,  1.4336e-01, -3.5072e-01,  1.5444e-01,\\n\",\n      \"          -4.2982e-01,  5.2977e-01,  7.5553e-02, -4.6632e-01, -3.8594e-01,\\n\",\n      \"           2.5318e-01,  2.7747e-01,  4.8115e-01,  7.4816e-03, -2.9260e-01,\\n\",\n      \"          -2.1384e-02, -3.1256e-01,  2.7800e-01,  3.9665e-01, -1.6654e-01,\\n\",\n      \"          -3.9723e-01, -4.7709e-01, -6.2903e-01,  2.2307e-01,  4.1874e-02,\\n\",\n      \"           2.0719e-01,  6.7764e-02,  3.2923e-01,  4.4065e-01,  1.6063e-01,\\n\",\n      \"           1.4556e-01,  2.5320e-01,  3.6555e-01, -1.1610e-01, -4.0548e-02,\\n\",\n      \"           2.6207e-01, -2.5660e-01,  2.5825e-01,  5.6414e-01,  4.1154e-01,\\n\",\n      \"          -2.1353e-02, -6.4984e-02,  3.0729e-01, -3.8730e-01],\\n\",\n      \"         [ 5.4114e-02,  1.2911e-01,  1.1079e-01,  2.1384e-01, -3.7324e-02,\\n\",\n      \"           2.1465e-04,  1.8886e-01,  2.1697e-01,  2.6679e-01,  3.3500e-01,\\n\",\n      \"          -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02,  9.6619e-02,\\n\",\n      \"           1.5960e-01,  4.1786e-01, -4.3850e-01,  2.8198e-01, -4.6615e-01,\\n\",\n      \"           1.4454e-01,  6.5908e-02,  8.5281e-02, -4.2819e-02,  5.0067e-01,\\n\",\n      \"           1.7017e-01, -2.7224e-01,  2.5380e-01,  4.1439e-02, -3.5470e-01,\\n\",\n      \"           1.9666e-01, -1.9875e-01, -9.2995e-03,  3.5348e-01,  4.8985e-02,\\n\",\n      \"           1.6634e-01,  2.1250e-01,  1.6368e-01, -2.9762e-01, -1.7645e-01,\\n\",\n      \"          -4.1179e-01,  3.5149e-01,  2.2540e-01,  2.3828e-02, -1.3123e-01,\\n\",\n      \"           2.8975e-01,  1.1899e-01,  1.6702e-01,  1.7360e-01,  1.4900e-01,\\n\",\n      \"          -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\\n\",\n      \"          -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01,  4.7001e-01,\\n\",\n      \"          -4.0074e-01, -5.6701e-01, -3.2914e-01,  2.7732e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0713e-01,  4.5937e-01, -1.6181e-01,  4.3321e-02,  1.1174e-01,\\n\",\n      \"          -6.1644e-01, -5.7113e-01, -5.0487e-01,  3.5190e-01,  4.1288e-02,\\n\",\n      \"          -2.7544e-01, -4.4448e-02, -2.5642e-01,  6.6191e-01, -1.8626e-01,\\n\",\n      \"          -5.6468e-02, -7.5144e-02,  6.2824e-01,  4.6276e-01, -3.3513e-01,\\n\",\n      \"          -3.5146e-01, -1.9119e-01,  8.3969e-02, -2.7791e-01,  2.1230e-01,\\n\",\n      \"          -3.5122e-01,  3.3878e-01,  4.5148e-01, -1.3567e-01, -3.3026e-01,\\n\",\n      \"           5.8611e-01, -3.8844e-01,  2.9644e-01, -1.6744e-01,  4.0907e-02,\\n\",\n      \"           7.5437e-03, -1.6675e-01,  2.5426e-01,  3.3875e-01,  7.0346e-02,\\n\",\n      \"           7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\\n\",\n      \"           5.3298e-02, -5.7836e-02,  3.7722e-02,  4.2650e-01,  3.8631e-01,\\n\",\n      \"          -2.0902e-01,  4.5654e-01, -1.7730e-01, -4.1286e-01,  2.1224e-02,\\n\",\n      \"           2.3993e-01, -6.1541e-01,  5.8383e-01,  3.3904e-01,  2.5489e-01,\\n\",\n      \"          -5.3822e-01, -5.1609e-03,  7.5159e-02, -5.2072e-01],\\n\",\n      \"         [-1.6287e-01, -1.2638e-02,  2.4461e-01,  4.2238e-01, -7.5080e-02,\\n\",\n      \"           6.8997e-02,  5.9353e-02, -4.6653e-01,  2.5298e-01,  2.6466e-01,\\n\",\n      \"          -2.6296e-01, -2.3991e-02, -3.3667e-01,  2.0203e-02, -1.0276e-01,\\n\",\n      \"           3.0682e-01,  3.8102e-01, -1.4313e-01,  2.6840e-01, -5.8352e-01,\\n\",\n      \"          -1.3001e-02, -2.0605e-01,  1.3328e-01, -3.5768e-02,  5.0879e-01,\\n\",\n      \"          -4.9018e-01,  3.4093e-01,  2.6714e-01, -4.5952e-01, -3.8416e-01,\\n\",\n      \"           3.6284e-01,  2.4918e-03,  2.9864e-01,  7.5558e-02, -2.7992e-01,\\n\",\n      \"          -1.2603e-01, -4.7697e-01,  2.0969e-01,  4.8302e-02, -1.4302e-01,\\n\",\n      \"          -4.7573e-01, -2.2340e-01, -3.0772e-01,  4.1387e-01,  1.2074e-01,\\n\",\n      \"           2.5394e-01,  1.6521e-01,  4.2968e-01,  3.1515e-01,  3.1856e-01,\\n\",\n      \"           2.1915e-02, -3.8564e-02,  6.7546e-02, -6.3149e-01,  4.9406e-02,\\n\",\n      \"           1.7295e-01, -1.1359e-01, -1.2223e-01,  4.0665e-01,  5.6251e-01,\\n\",\n      \"           9.3645e-04, -1.5734e-01,  3.2205e-01, -3.8656e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([4, 5])\\n\",\n      \"dec_state: tensor([[[-7.3122e-02,  2.1349e-01, -1.5687e-02,  1.6140e-01, -3.7981e-01,\\n\",\n      \"          -7.3731e-02, -2.4507e-01,  3.5477e-02, -1.9791e-01, -1.9202e-01,\\n\",\n      \"           8.3416e-02, -3.0577e-01,  3.6331e-01, -1.1640e-01, -1.7947e-01,\\n\",\n      \"          -7.7293e-02, -1.4959e-01,  2.4400e-01,  1.2366e-01,  3.5198e-01,\\n\",\n      \"          -2.2277e-01, -5.4565e-04,  2.7144e-01, -3.0479e-02,  2.6800e-01,\\n\",\n      \"          -2.7935e-01,  4.8100e-01, -4.5645e-02, -4.2913e-01, -4.8222e-01,\\n\",\n      \"          -3.3775e-01, -3.4005e-01,  2.1245e-01,  1.1891e-01,  3.8994e-01,\\n\",\n      \"           2.2567e-01, -1.1565e-01, -4.2135e-01, -5.1044e-01,  1.8653e-02,\\n\",\n      \"          -1.3487e-01, -4.5489e-01, -9.5991e-03, -1.8432e-02, -6.2420e-02,\\n\",\n      \"          -2.3272e-01,  6.3573e-02,  7.6899e-03,  2.3821e-01,  1.9799e-01,\\n\",\n      \"          -6.3772e-02, -1.0639e-01, -1.6796e-02, -3.1376e-01, -3.9289e-03,\\n\",\n      \"          -5.2649e-02, -8.3494e-02, -2.8480e-01, -5.0034e-01,  7.1398e-02,\\n\",\n      \"          -3.3916e-01,  2.7070e-01, -4.4325e-01, -2.9993e-01],\\n\",\n      \"         [-1.0017e-01,  4.9433e-01, -5.4139e-02,  3.8975e-01, -2.0642e-02,\\n\",\n      \"          -3.8350e-01, -1.0092e-01, -3.7136e-01, -5.2797e-01,  3.6868e-01,\\n\",\n      \"           5.3909e-02, -3.2129e-01,  9.3475e-02,  3.6481e-01, -5.1083e-01,\\n\",\n      \"          -4.0660e-01,  5.4595e-02, -1.2102e-01,  1.0773e-01,  4.3649e-01,\\n\",\n      \"           6.7414e-01, -5.6128e-01,  2.1415e-01,  5.8190e-01, -1.2566e-02,\\n\",\n      \"           1.3335e-01,  2.1101e-01, -2.1385e-01, -4.5524e-01,  5.0130e-02,\\n\",\n      \"          -1.5088e-01,  4.7055e-01,  5.4512e-01,  5.6524e-01, -4.7211e-01,\\n\",\n      \"          -6.4643e-02,  5.2698e-01, -1.0566e-01,  5.3683e-01,  2.1506e-01,\\n\",\n      \"          -1.0762e-01,  4.0079e-02,  3.8521e-01,  1.0413e-01, -1.7351e-01,\\n\",\n      \"          -3.4578e-02,  1.7495e-01, -9.7819e-02,  8.5982e-02,  2.1220e-01,\\n\",\n      \"          -1.1716e-02,  3.4625e-01,  5.4778e-01, -4.6835e-01, -2.8386e-01,\\n\",\n      \"          -1.1218e-01, -2.3354e-01,  4.9260e-01,  8.3014e-02, -3.9623e-01,\\n\",\n      \"          -1.0815e-01,  1.8017e-01, -7.7416e-01,  6.9482e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.3727e-01,  7.2181e-02, -4.8407e-02,  3.9534e-01,  1.7992e-01,\\n\",\n      \"           1.4430e-01,  1.3021e-01, -5.1874e-01,  9.1039e-02, -1.9068e-01,\\n\",\n      \"           2.6788e-01,  2.2892e-02, -8.0218e-02,  2.0840e-01,  1.3134e-01,\\n\",\n      \"           2.3112e-01,  4.3599e-02, -2.9930e-01,  2.1027e-01, -3.4507e-02,\\n\",\n      \"          -8.8752e-02, -1.4755e-01,  6.6381e-02, -3.3483e-01, -7.0215e-02,\\n\",\n      \"           4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\\n\",\n      \"           1.1633e-01, -2.9537e-01,  5.5430e-02,  5.4464e-02, -4.3290e-02,\\n\",\n      \"           7.1843e-02, -3.4024e-01, -3.7712e-02,  2.8614e-01, -6.0731e-02,\\n\",\n      \"          -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\\n\",\n      \"           3.7795e-01, -1.3003e-01,  1.7851e-01,  2.4400e-01, -3.0191e-01,\\n\",\n      \"           4.8482e-01,  2.6197e-01,  2.3043e-01, -4.2391e-01, -8.0003e-02,\\n\",\n      \"           2.5831e-01, -3.1049e-01,  1.7894e-01,  2.2598e-01,  1.0081e-01,\\n\",\n      \"          -2.7511e-01,  7.8730e-02, -2.0066e-01, -1.5597e-01],\\n\",\n      \"         [ 2.5820e-01,  1.9188e-01,  4.7999e-01,  6.9774e-02, -2.0267e-01,\\n\",\n      \"           3.7522e-01, -8.6744e-02,  2.5228e-01, -1.2846e-01,  1.0590e-01,\\n\",\n      \"          -2.7586e-01,  1.0311e-01,  1.1307e-01, -1.0545e-01,  2.9488e-01,\\n\",\n      \"           5.4775e-01, -1.6711e-01,  4.6806e-02, -2.4186e-01, -3.5100e-01,\\n\",\n      \"          -2.9758e-01, -3.1168e-01,  1.9277e-01,  1.4047e-01, -7.5636e-02,\\n\",\n      \"          -1.8808e-01, -2.0158e-01,  3.6178e-01, -9.5802e-02, -1.2708e-01,\\n\",\n      \"           1.0763e-01, -5.5428e-02,  1.1961e-01,  2.4258e-01, -2.8356e-01,\\n\",\n      \"          -2.4466e-01, -1.7622e-01, -6.5579e-02,  1.2709e-01,  4.5320e-02,\\n\",\n      \"           9.7881e-02,  2.9991e-01,  2.2304e-01, -3.3725e-01, -7.2100e-02,\\n\",\n      \"          -1.7546e-01, -2.9953e-01,  4.6157e-02, -1.5875e-01, -2.6537e-01,\\n\",\n      \"           3.2382e-01,  9.5382e-03,  2.2192e-01, -2.5515e-01, -4.1426e-01,\\n\",\n      \"          -9.4852e-02, -4.9565e-02,  1.5019e-01,  2.4926e-01,  1.9148e-01,\\n\",\n      \"          -5.3635e-01, -1.5326e-01,  1.6425e-01, -3.9051e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0083e-01, -3.0158e-01, -2.8431e-02,  7.8782e-01,  2.3501e-02,\\n\",\n      \"           9.2542e-02,  3.9450e-01, -6.1034e-03,  2.4454e-01, -3.1812e-01,\\n\",\n      \"           2.2186e-01,  1.3691e-01,  2.2964e-01, -3.7366e-01,  4.4578e-01,\\n\",\n      \"           1.5186e-01,  2.7236e-02,  4.9386e-02,  2.2214e-01, -8.3106e-02,\\n\",\n      \"          -2.9856e-01, -4.7007e-02,  2.0091e-01, -2.0271e-01,  2.0945e-01,\\n\",\n      \"          -1.2809e-01, -3.7861e-01, -1.3235e-01,  3.6467e-02, -2.1870e-01,\\n\",\n      \"          -1.0883e-01, -1.7587e-01,  4.0160e-01,  4.2037e-01,  4.8252e-02,\\n\",\n      \"           2.8059e-01, -4.1559e-01,  6.3770e-01,  3.2591e-01,  9.4536e-02,\\n\",\n      \"          -2.2653e-02, -3.4345e-02,  1.8139e-01, -1.6369e-01,  4.0315e-02,\\n\",\n      \"           3.9302e-01,  2.5815e-01, -1.6280e-01,  3.2198e-01,  3.0073e-01,\\n\",\n      \"           1.7263e-02, -4.5440e-02,  2.6601e-01, -5.0357e-01, -4.8120e-02,\\n\",\n      \"          -1.4780e-01,  2.7241e-02, -1.4115e-01, -8.8778e-03,  6.6657e-01,\\n\",\n      \"          -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\\n\",\n      \"         [ 6.7260e-02,  1.2996e-01,  1.1819e-01, -2.0483e-01, -5.4274e-01,\\n\",\n      \"          -1.1038e-01,  2.4815e-02,  6.9911e-02, -1.4384e-01, -3.7275e-01,\\n\",\n      \"          -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\\n\",\n      \"           5.1307e-01,  2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\\n\",\n      \"          -3.0653e-01, -2.0400e-01,  3.5982e-01,  4.9754e-01,  1.0173e-01,\\n\",\n      \"          -4.0342e-01,  4.9540e-01,  2.5269e-01,  7.8506e-02, -2.3170e-02,\\n\",\n      \"           1.8902e-01,  3.7163e-01, -1.1237e-01,  6.6350e-01, -5.1017e-01,\\n\",\n      \"           6.4472e-02, -5.7414e-02, -8.7294e-02,  2.0384e-02, -2.6563e-02,\\n\",\n      \"           1.7521e-01,  6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\\n\",\n      \"          -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\\n\",\n      \"           3.3169e-01,  2.3594e-01,  3.5904e-02, -4.0302e-01, -3.1485e-01,\\n\",\n      \"           3.4287e-01,  1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\\n\",\n      \"          -6.8716e-01,  5.1406e-02,  2.5545e-01,  2.5696e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.0629e-01, -3.7659e-01,  4.5863e-02,  5.3217e-01, -1.2700e-01,\\n\",\n      \"          -1.4886e-01,  1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\\n\",\n      \"           4.2041e-01, -1.8544e-01,  4.3391e-01, -6.7537e-02,  1.9093e-01,\\n\",\n      \"          -5.8209e-01, -2.1247e-02,  2.4594e-01,  3.7686e-01,  3.0338e-02,\\n\",\n      \"          -4.1501e-01,  1.7103e-01,  1.6851e-02, -1.5981e-01,  2.9293e-01,\\n\",\n      \"          -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\\n\",\n      \"          -1.8605e-01,  1.2303e-01,  6.8677e-01,  3.3999e-01,  2.9310e-01,\\n\",\n      \"           3.4023e-01, -1.6655e-01,  6.5662e-01,  4.0671e-01, -2.8659e-01,\\n\",\n      \"          -4.9588e-01,  1.6012e-01,  2.7112e-01,  2.1752e-01, -3.7658e-01,\\n\",\n      \"           3.0657e-01,  1.9236e-01, -4.6345e-01,  1.7681e-01,  9.2185e-02,\\n\",\n      \"          -1.5306e-01, -4.8642e-01,  5.8779e-01, -6.4074e-01,  2.2483e-01,\\n\",\n      \"          -1.0579e-01,  4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\\n\",\n      \"          -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\\n\",\n      \"         [ 1.0529e-02,  3.5908e-01,  2.3312e-01,  1.9650e-01, -5.9675e-02,\\n\",\n      \"          -1.5658e-01,  1.6122e-01,  1.8782e-01, -1.9782e-01, -2.5424e-01,\\n\",\n      \"          -2.2587e-01,  1.1983e-01,  5.4116e-02, -4.3192e-01, -2.1338e-01,\\n\",\n      \"           5.8897e-01,  4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\\n\",\n      \"          -5.1517e-01, -5.5736e-02,  1.4217e-01,  5.7948e-01, -1.6698e-01,\\n\",\n      \"          -1.8354e-01,  2.5574e-01,  9.2582e-02, -1.5009e-01, -1.5141e-01,\\n\",\n      \"           6.2154e-02,  1.9030e-01,  5.2375e-02,  3.0264e-01, -4.0980e-01,\\n\",\n      \"           9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\\n\",\n      \"           1.7333e-01,  1.3659e-02,  4.6606e-02, -6.6266e-01,  2.8069e-01,\\n\",\n      \"           2.4609e-01,  5.7418e-02,  3.7632e-01,  2.5864e-01,  1.4679e-01,\\n\",\n      \"           4.4736e-01,  4.5973e-01,  8.1457e-02, -5.2304e-01, -4.5289e-01,\\n\",\n      \"           1.7003e-01,  2.5693e-01, -3.7473e-01,  1.5084e-01,  3.6457e-01,\\n\",\n      \"          -4.0353e-02, -6.3108e-02,  9.9259e-02,  1.4259e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 9.5497e-02, -4.1627e-01,  2.8029e-02,  4.1203e-01, -6.8130e-03,\\n\",\n      \"          -2.8840e-01,  3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\\n\",\n      \"           3.4702e-01, -3.8960e-02,  5.7625e-01, -1.9183e-01,  2.6033e-01,\\n\",\n      \"          -4.3174e-01,  3.1093e-02, -1.8470e-01,  6.3293e-01, -5.6075e-02,\\n\",\n      \"          -5.1161e-01, -9.4454e-02,  1.5921e-01, -1.8132e-01, -1.6253e-01,\\n\",\n      \"           1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\\n\",\n      \"          -1.6154e-01,  2.0733e-01,  7.0576e-01,  1.3302e-01, -2.9825e-01,\\n\",\n      \"           2.0994e-01, -5.3865e-02,  3.8838e-01,  4.2451e-01, -5.2417e-01,\\n\",\n      \"          -5.0814e-01,  2.6738e-01,  3.7351e-01,  5.8097e-01, -6.1178e-01,\\n\",\n      \"           2.2877e-01,  2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\\n\",\n      \"           1.4218e-01, -3.0955e-01,  4.6556e-01, -1.5831e-01, -2.1650e-01,\\n\",\n      \"           3.8367e-02,  4.2855e-01,  1.9128e-01,  3.8580e-01,  1.1959e-01,\\n\",\n      \"          -2.9994e-01, -5.2117e-01,  2.1471e-01, -5.7907e-01],\\n\",\n      \"         [-1.0411e-01, -5.0381e-02,  2.7471e-01,  4.8769e-01,  1.4239e-01,\\n\",\n      \"           2.6347e-01,  5.2876e-01,  1.4041e-01, -2.0420e-01,  2.7689e-01,\\n\",\n      \"          -6.2801e-01,  5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\\n\",\n      \"           3.9456e-01,  2.7023e-01, -3.4516e-02,  7.8912e-02, -1.1492e-01,\\n\",\n      \"          -2.2979e-01, -1.7854e-01,  4.5892e-01,  2.8441e-01, -1.0770e-01,\\n\",\n      \"           1.6266e-01,  1.1944e-01,  3.1096e-01, -3.3360e-01, -6.6498e-02,\\n\",\n      \"           1.4587e-01,  3.4419e-01, -5.3772e-04,  4.5331e-01, -5.1342e-01,\\n\",\n      \"           1.3568e-01,  9.8949e-02, -8.0940e-02,  3.8612e-01, -1.3356e-01,\\n\",\n      \"          -1.0952e-01,  3.4308e-01,  1.8789e-01,  8.1325e-02,  9.0352e-02,\\n\",\n      \"           2.2188e-01,  1.5698e-01, -2.0673e-01,  6.6451e-02, -2.0891e-01,\\n\",\n      \"           1.9172e-01,  4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\\n\",\n      \"           2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01,  2.5902e-01,\\n\",\n      \"          -6.0417e-03, -4.4415e-01,  3.1402e-01,  3.1877e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.6335e-03, -2.3985e-01, -3.4736e-02,  8.8921e-02, -2.9755e-01,\\n\",\n      \"          -1.8779e-01,  2.6080e-01, -4.0660e-01,  2.4273e-01, -2.0277e-01,\\n\",\n      \"          -4.9214e-02,  9.4251e-02, -1.2161e-01,  1.5997e-01,  2.0561e-01,\\n\",\n      \"           1.5723e-01, -1.9595e-01, -4.2922e-01,  7.0747e-02,  1.4856e-01,\\n\",\n      \"          -1.5354e-01,  9.6606e-02,  1.7886e-01, -3.8590e-01, -2.9419e-01,\\n\",\n      \"           2.1776e-01,  2.6294e-02, -4.5975e-02,  2.0144e-02, -3.3976e-01,\\n\",\n      \"          -3.2033e-02,  1.9865e-01,  5.3036e-01,  1.5295e-01, -9.2089e-02,\\n\",\n      \"           4.3739e-01,  3.6364e-01,  3.4489e-01,  2.7756e-01, -2.2295e-01,\\n\",\n      \"          -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\\n\",\n      \"           2.5772e-01, -1.0638e-01, -7.3814e-02,  4.7898e-01, -1.9344e-01,\\n\",\n      \"           4.6140e-02,  1.3491e-02,  2.5996e-01,  2.2740e-01, -3.2146e-01,\\n\",\n      \"          -5.9065e-02, -4.3176e-01,  2.7157e-01,  3.1781e-01,  1.6585e-01,\\n\",\n      \"          -3.8220e-01, -4.3346e-01, -5.1061e-01,  1.0843e-01],\\n\",\n      \"         [ 9.6994e-02, -1.7331e-01,  2.1172e-01,  5.1296e-01, -2.1837e-01,\\n\",\n      \"          -1.5871e-02,  4.7803e-01,  1.5512e-01, -4.9505e-01,  2.5299e-03,\\n\",\n      \"          -6.7146e-01,  4.0029e-01, -6.4332e-02,  1.3088e-01,  3.7229e-02,\\n\",\n      \"           2.5459e-01,  7.3664e-01, -5.0367e-01,  1.3755e-01, -1.3922e-01,\\n\",\n      \"          -2.4012e-01,  2.2718e-02,  3.1692e-01, -1.0521e-01,  3.7480e-01,\\n\",\n      \"          -1.3657e-01, -2.5329e-01,  5.7562e-01, -5.2170e-02, -2.5802e-01,\\n\",\n      \"           2.7986e-01,  2.3848e-01,  1.4237e-01,  5.9374e-01, -3.3590e-01,\\n\",\n      \"           1.4647e-01, -6.6258e-02,  1.5446e-01,  3.4899e-01,  1.8101e-01,\\n\",\n      \"          -3.1963e-01,  1.2350e-01,  3.3166e-01, -2.9319e-01, -3.6108e-01,\\n\",\n      \"           3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03,  1.3249e-02,\\n\",\n      \"          -2.0109e-01,  1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\\n\",\n      \"           1.2868e-01,  3.8556e-01, -4.1688e-01, -3.0117e-02,  1.9605e-01,\\n\",\n      \"          -4.5693e-01, -4.9675e-01,  2.4458e-01,  2.3623e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.6365e-01, -2.7898e-01,  2.1363e-01,  2.3062e-01, -1.4550e-01,\\n\",\n      \"           1.6778e-02,  4.2505e-02, -4.5946e-01,  2.4220e-01, -1.9533e-01,\\n\",\n      \"          -1.5048e-01,  6.5674e-02, -3.3663e-01,  1.4862e-01, -3.8167e-02,\\n\",\n      \"           3.1526e-01, -2.9041e-02, -6.7158e-02,  6.2756e-02, -1.9502e-01,\\n\",\n      \"          -7.9184e-02, -1.7278e-01,  1.4336e-01, -3.5072e-01,  1.5444e-01,\\n\",\n      \"          -4.2982e-01,  5.2977e-01,  7.5553e-02, -4.6632e-01, -3.8594e-01,\\n\",\n      \"           2.5318e-01,  2.7747e-01,  4.8115e-01,  7.4816e-03, -2.9260e-01,\\n\",\n      \"          -2.1384e-02, -3.1256e-01,  2.7800e-01,  3.9665e-01, -1.6654e-01,\\n\",\n      \"          -3.9723e-01, -4.7709e-01, -6.2903e-01,  2.2307e-01,  4.1874e-02,\\n\",\n      \"           2.0719e-01,  6.7764e-02,  3.2923e-01,  4.4065e-01,  1.6063e-01,\\n\",\n      \"           1.4556e-01,  2.5320e-01,  3.6555e-01, -1.1610e-01, -4.0548e-02,\\n\",\n      \"           2.6207e-01, -2.5660e-01,  2.5825e-01,  5.6414e-01,  4.1154e-01,\\n\",\n      \"          -2.1353e-02, -6.4984e-02,  3.0729e-01, -3.8730e-01],\\n\",\n      \"         [ 5.4114e-02,  1.2911e-01,  1.1079e-01,  2.1384e-01, -3.7324e-02,\\n\",\n      \"           2.1465e-04,  1.8886e-01,  2.1697e-01,  2.6679e-01,  3.3500e-01,\\n\",\n      \"          -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02,  9.6619e-02,\\n\",\n      \"           1.5960e-01,  4.1786e-01, -4.3850e-01,  2.8198e-01, -4.6615e-01,\\n\",\n      \"           1.4454e-01,  6.5908e-02,  8.5281e-02, -4.2819e-02,  5.0067e-01,\\n\",\n      \"           1.7017e-01, -2.7224e-01,  2.5380e-01,  4.1439e-02, -3.5470e-01,\\n\",\n      \"           1.9666e-01, -1.9875e-01, -9.2995e-03,  3.5348e-01,  4.8985e-02,\\n\",\n      \"           1.6634e-01,  2.1250e-01,  1.6368e-01, -2.9762e-01, -1.7645e-01,\\n\",\n      \"          -4.1179e-01,  3.5149e-01,  2.2540e-01,  2.3828e-02, -1.3123e-01,\\n\",\n      \"           2.8975e-01,  1.1899e-01,  1.6702e-01,  1.7360e-01,  1.4900e-01,\\n\",\n      \"          -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\\n\",\n      \"          -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01,  4.7001e-01,\\n\",\n      \"          -4.0074e-01, -5.6701e-01, -3.2914e-01,  2.7732e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0713e-01,  4.5937e-01, -1.6181e-01,  4.3321e-02,  1.1174e-01,\\n\",\n      \"          -6.1644e-01, -5.7113e-01, -5.0487e-01,  3.5190e-01,  4.1288e-02,\\n\",\n      \"          -2.7544e-01, -4.4448e-02, -2.5642e-01,  6.6191e-01, -1.8626e-01,\\n\",\n      \"          -5.6468e-02, -7.5144e-02,  6.2824e-01,  4.6276e-01, -3.3513e-01,\\n\",\n      \"          -3.5146e-01, -1.9119e-01,  8.3969e-02, -2.7791e-01,  2.1230e-01,\\n\",\n      \"          -3.5122e-01,  3.3878e-01,  4.5148e-01, -1.3567e-01, -3.3026e-01,\\n\",\n      \"           5.8611e-01, -3.8844e-01,  2.9644e-01, -1.6744e-01,  4.0907e-02,\\n\",\n      \"           7.5437e-03, -1.6675e-01,  2.5426e-01,  3.3875e-01,  7.0346e-02,\\n\",\n      \"           7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\\n\",\n      \"           5.3298e-02, -5.7836e-02,  3.7722e-02,  4.2650e-01,  3.8631e-01,\\n\",\n      \"          -2.0902e-01,  4.5654e-01, -1.7730e-01, -4.1286e-01,  2.1224e-02,\\n\",\n      \"           2.3993e-01, -6.1541e-01,  5.8383e-01,  3.3904e-01,  2.5489e-01,\\n\",\n      \"          -5.3822e-01, -5.1609e-03,  7.5159e-02, -5.2072e-01],\\n\",\n      \"         [-1.6287e-01, -1.2638e-02,  2.4461e-01,  4.2238e-01, -7.5080e-02,\\n\",\n      \"           6.8997e-02,  5.9353e-02, -4.6653e-01,  2.5298e-01,  2.6466e-01,\\n\",\n      \"          -2.6296e-01, -2.3991e-02, -3.3667e-01,  2.0203e-02, -1.0276e-01,\\n\",\n      \"           3.0682e-01,  3.8102e-01, -1.4313e-01,  2.6840e-01, -5.8352e-01,\\n\",\n      \"          -1.3001e-02, -2.0605e-01,  1.3328e-01, -3.5768e-02,  5.0879e-01,\\n\",\n      \"          -4.9018e-01,  3.4093e-01,  2.6714e-01, -4.5952e-01, -3.8416e-01,\\n\",\n      \"           3.6284e-01,  2.4918e-03,  2.9864e-01,  7.5558e-02, -2.7992e-01,\\n\",\n      \"          -1.2603e-01, -4.7697e-01,  2.0969e-01,  4.8302e-02, -1.4302e-01,\\n\",\n      \"          -4.7573e-01, -2.2340e-01, -3.0772e-01,  4.1387e-01,  1.2074e-01,\\n\",\n      \"           2.5394e-01,  1.6521e-01,  4.2968e-01,  3.1515e-01,  3.1856e-01,\\n\",\n      \"           2.1915e-02, -3.8564e-02,  6.7546e-02, -6.3149e-01,  4.9406e-02,\\n\",\n      \"           1.7295e-01, -1.1359e-01, -1.2223e-01,  4.0665e-01,  5.6251e-01,\\n\",\n      \"           9.3645e-04, -1.5734e-01,  3.2205e-01, -3.8656e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([ 9, 18])\\n\",\n      \"dec_state: tensor([[[ 0.1312,  0.2199, -0.1079,  0.1915, -0.2882,  0.0796, -0.0381,\\n\",\n      \"          -0.1057,  0.0345, -0.2794, -0.0668, -0.4605,  0.0250,  0.0404,\\n\",\n      \"          -0.1447,  0.3463, -0.2613,  0.4400,  0.0897,  0.4623,  0.2601,\\n\",\n      \"          -0.1862, -0.0714,  0.1239,  0.0244, -0.6100,  0.1389, -0.1574,\\n\",\n      \"          -0.5189, -0.3963, -0.1429,  0.0046,  0.0434,  0.1436,  0.0437,\\n\",\n      \"          -0.1945, -0.1928, -0.4084,  0.1381, -0.3463, -0.2496, -0.2392,\\n\",\n      \"           0.1529, -0.1133, -0.2934, -0.2704,  0.0998, -0.0443,  0.3013,\\n\",\n      \"           0.3107,  0.0997,  0.2023,  0.3628, -0.4408,  0.2011, -0.3563,\\n\",\n      \"           0.2598,  0.1250,  0.0912,  0.1958, -0.1896, -0.0402, -0.5160,\\n\",\n      \"           0.3243],\\n\",\n      \"         [ 0.0162,  0.3872,  0.0380,  0.0430,  0.2101, -0.2167,  0.3026,\\n\",\n      \"           0.0349, -0.6140, -0.0730,  0.0313,  0.1197,  0.3107,  0.1035,\\n\",\n      \"          -0.6728, -0.6535, -0.1229,  0.1552,  0.2670, -0.2543,  0.6386,\\n\",\n      \"          -0.3040,  0.2910,  0.4612,  0.4112,  0.3495,  0.4374,  0.1514,\\n\",\n      \"          -0.6118,  0.2823, -0.0894,  0.1289,  0.2288,  0.6796, -0.2460,\\n\",\n      \"          -0.4125,  0.5883,  0.1527,  0.4994,  0.1062, -0.2304,  0.4231,\\n\",\n      \"          -0.1714, -0.2072, -0.3266, -0.0014,  0.3834,  0.0447, -0.0599,\\n\",\n      \"           0.3182, -0.0123, -0.3049,  0.6859, -0.1505, -0.5003, -0.2354,\\n\",\n      \"          -0.0882,  0.6615,  0.2589, -0.6186,  0.3649,  0.2258, -0.0884,\\n\",\n      \"           0.0568]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.3727e-01,  7.2181e-02, -4.8407e-02,  3.9534e-01,  1.7992e-01,\\n\",\n      \"           1.4430e-01,  1.3021e-01, -5.1874e-01,  9.1039e-02, -1.9068e-01,\\n\",\n      \"           2.6788e-01,  2.2892e-02, -8.0218e-02,  2.0840e-01,  1.3134e-01,\\n\",\n      \"           2.3112e-01,  4.3599e-02, -2.9930e-01,  2.1027e-01, -3.4507e-02,\\n\",\n      \"          -8.8752e-02, -1.4755e-01,  6.6381e-02, -3.3483e-01, -7.0215e-02,\\n\",\n      \"           4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\\n\",\n      \"           1.1633e-01, -2.9537e-01,  5.5430e-02,  5.4464e-02, -4.3290e-02,\\n\",\n      \"           7.1843e-02, -3.4024e-01, -3.7712e-02,  2.8614e-01, -6.0731e-02,\\n\",\n      \"          -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\\n\",\n      \"           3.7795e-01, -1.3003e-01,  1.7851e-01,  2.4400e-01, -3.0191e-01,\\n\",\n      \"           4.8482e-01,  2.6197e-01,  2.3043e-01, -4.2391e-01, -8.0003e-02,\\n\",\n      \"           2.5831e-01, -3.1049e-01,  1.7894e-01,  2.2598e-01,  1.0081e-01,\\n\",\n      \"          -2.7511e-01,  7.8730e-02, -2.0066e-01, -1.5597e-01],\\n\",\n      \"         [ 2.5820e-01,  1.9188e-01,  4.7999e-01,  6.9774e-02, -2.0267e-01,\\n\",\n      \"           3.7522e-01, -8.6744e-02,  2.5228e-01, -1.2846e-01,  1.0590e-01,\\n\",\n      \"          -2.7586e-01,  1.0311e-01,  1.1307e-01, -1.0545e-01,  2.9488e-01,\\n\",\n      \"           5.4775e-01, -1.6711e-01,  4.6806e-02, -2.4186e-01, -3.5100e-01,\\n\",\n      \"          -2.9758e-01, -3.1168e-01,  1.9277e-01,  1.4047e-01, -7.5636e-02,\\n\",\n      \"          -1.8808e-01, -2.0158e-01,  3.6178e-01, -9.5802e-02, -1.2708e-01,\\n\",\n      \"           1.0763e-01, -5.5428e-02,  1.1961e-01,  2.4258e-01, -2.8356e-01,\\n\",\n      \"          -2.4466e-01, -1.7622e-01, -6.5579e-02,  1.2709e-01,  4.5320e-02,\\n\",\n      \"           9.7881e-02,  2.9991e-01,  2.2304e-01, -3.3725e-01, -7.2100e-02,\\n\",\n      \"          -1.7546e-01, -2.9953e-01,  4.6157e-02, -1.5875e-01, -2.6537e-01,\\n\",\n      \"           3.2382e-01,  9.5382e-03,  2.2192e-01, -2.5515e-01, -4.1426e-01,\\n\",\n      \"          -9.4852e-02, -4.9565e-02,  1.5019e-01,  2.4926e-01,  1.9148e-01,\\n\",\n      \"          -5.3635e-01, -1.5326e-01,  1.6425e-01, -3.9051e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0083e-01, -3.0158e-01, -2.8431e-02,  7.8782e-01,  2.3501e-02,\\n\",\n      \"           9.2542e-02,  3.9450e-01, -6.1034e-03,  2.4454e-01, -3.1812e-01,\\n\",\n      \"           2.2186e-01,  1.3691e-01,  2.2964e-01, -3.7366e-01,  4.4578e-01,\\n\",\n      \"           1.5186e-01,  2.7236e-02,  4.9386e-02,  2.2214e-01, -8.3106e-02,\\n\",\n      \"          -2.9856e-01, -4.7007e-02,  2.0091e-01, -2.0271e-01,  2.0945e-01,\\n\",\n      \"          -1.2809e-01, -3.7861e-01, -1.3235e-01,  3.6467e-02, -2.1870e-01,\\n\",\n      \"          -1.0883e-01, -1.7587e-01,  4.0160e-01,  4.2037e-01,  4.8252e-02,\\n\",\n      \"           2.8059e-01, -4.1559e-01,  6.3770e-01,  3.2591e-01,  9.4536e-02,\\n\",\n      \"          -2.2653e-02, -3.4345e-02,  1.8139e-01, -1.6369e-01,  4.0315e-02,\\n\",\n      \"           3.9302e-01,  2.5815e-01, -1.6280e-01,  3.2198e-01,  3.0073e-01,\\n\",\n      \"           1.7263e-02, -4.5440e-02,  2.6601e-01, -5.0357e-01, -4.8120e-02,\\n\",\n      \"          -1.4780e-01,  2.7241e-02, -1.4115e-01, -8.8778e-03,  6.6657e-01,\\n\",\n      \"          -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\\n\",\n      \"         [ 6.7260e-02,  1.2996e-01,  1.1819e-01, -2.0483e-01, -5.4274e-01,\\n\",\n      \"          -1.1038e-01,  2.4815e-02,  6.9911e-02, -1.4384e-01, -3.7275e-01,\\n\",\n      \"          -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\\n\",\n      \"           5.1307e-01,  2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\\n\",\n      \"          -3.0653e-01, -2.0400e-01,  3.5982e-01,  4.9754e-01,  1.0173e-01,\\n\",\n      \"          -4.0342e-01,  4.9540e-01,  2.5269e-01,  7.8506e-02, -2.3170e-02,\\n\",\n      \"           1.8902e-01,  3.7163e-01, -1.1237e-01,  6.6350e-01, -5.1017e-01,\\n\",\n      \"           6.4472e-02, -5.7414e-02, -8.7294e-02,  2.0384e-02, -2.6563e-02,\\n\",\n      \"           1.7521e-01,  6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\\n\",\n      \"          -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\\n\",\n      \"           3.3169e-01,  2.3594e-01,  3.5904e-02, -4.0302e-01, -3.1485e-01,\\n\",\n      \"           3.4287e-01,  1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\\n\",\n      \"          -6.8716e-01,  5.1406e-02,  2.5545e-01,  2.5696e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.0629e-01, -3.7659e-01,  4.5863e-02,  5.3217e-01, -1.2700e-01,\\n\",\n      \"          -1.4886e-01,  1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\\n\",\n      \"           4.2041e-01, -1.8544e-01,  4.3391e-01, -6.7537e-02,  1.9093e-01,\\n\",\n      \"          -5.8209e-01, -2.1247e-02,  2.4594e-01,  3.7686e-01,  3.0338e-02,\\n\",\n      \"          -4.1501e-01,  1.7103e-01,  1.6851e-02, -1.5981e-01,  2.9293e-01,\\n\",\n      \"          -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\\n\",\n      \"          -1.8605e-01,  1.2303e-01,  6.8677e-01,  3.3999e-01,  2.9310e-01,\\n\",\n      \"           3.4023e-01, -1.6655e-01,  6.5662e-01,  4.0671e-01, -2.8659e-01,\\n\",\n      \"          -4.9588e-01,  1.6012e-01,  2.7112e-01,  2.1752e-01, -3.7658e-01,\\n\",\n      \"           3.0657e-01,  1.9236e-01, -4.6345e-01,  1.7681e-01,  9.2185e-02,\\n\",\n      \"          -1.5306e-01, -4.8642e-01,  5.8779e-01, -6.4074e-01,  2.2483e-01,\\n\",\n      \"          -1.0579e-01,  4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\\n\",\n      \"          -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\\n\",\n      \"         [ 1.0529e-02,  3.5908e-01,  2.3312e-01,  1.9650e-01, -5.9675e-02,\\n\",\n      \"          -1.5658e-01,  1.6122e-01,  1.8782e-01, -1.9782e-01, -2.5424e-01,\\n\",\n      \"          -2.2587e-01,  1.1983e-01,  5.4116e-02, -4.3192e-01, -2.1338e-01,\\n\",\n      \"           5.8897e-01,  4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\\n\",\n      \"          -5.1517e-01, -5.5736e-02,  1.4217e-01,  5.7948e-01, -1.6698e-01,\\n\",\n      \"          -1.8354e-01,  2.5574e-01,  9.2582e-02, -1.5009e-01, -1.5141e-01,\\n\",\n      \"           6.2154e-02,  1.9030e-01,  5.2375e-02,  3.0264e-01, -4.0980e-01,\\n\",\n      \"           9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\\n\",\n      \"           1.7333e-01,  1.3659e-02,  4.6606e-02, -6.6266e-01,  2.8069e-01,\\n\",\n      \"           2.4609e-01,  5.7418e-02,  3.7632e-01,  2.5864e-01,  1.4679e-01,\\n\",\n      \"           4.4736e-01,  4.5973e-01,  8.1457e-02, -5.2304e-01, -4.5289e-01,\\n\",\n      \"           1.7003e-01,  2.5693e-01, -3.7473e-01,  1.5084e-01,  3.6457e-01,\\n\",\n      \"          -4.0353e-02, -6.3108e-02,  9.9259e-02,  1.4259e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 9.5497e-02, -4.1627e-01,  2.8029e-02,  4.1203e-01, -6.8130e-03,\\n\",\n      \"          -2.8840e-01,  3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\\n\",\n      \"           3.4702e-01, -3.8960e-02,  5.7625e-01, -1.9183e-01,  2.6033e-01,\\n\",\n      \"          -4.3174e-01,  3.1093e-02, -1.8470e-01,  6.3293e-01, -5.6075e-02,\\n\",\n      \"          -5.1161e-01, -9.4454e-02,  1.5921e-01, -1.8132e-01, -1.6253e-01,\\n\",\n      \"           1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\\n\",\n      \"          -1.6154e-01,  2.0733e-01,  7.0576e-01,  1.3302e-01, -2.9825e-01,\\n\",\n      \"           2.0994e-01, -5.3865e-02,  3.8838e-01,  4.2451e-01, -5.2417e-01,\\n\",\n      \"          -5.0814e-01,  2.6738e-01,  3.7351e-01,  5.8097e-01, -6.1178e-01,\\n\",\n      \"           2.2877e-01,  2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\\n\",\n      \"           1.4218e-01, -3.0955e-01,  4.6556e-01, -1.5831e-01, -2.1650e-01,\\n\",\n      \"           3.8367e-02,  4.2855e-01,  1.9128e-01,  3.8580e-01,  1.1959e-01,\\n\",\n      \"          -2.9994e-01, -5.2117e-01,  2.1471e-01, -5.7907e-01],\\n\",\n      \"         [-1.0411e-01, -5.0381e-02,  2.7471e-01,  4.8769e-01,  1.4239e-01,\\n\",\n      \"           2.6347e-01,  5.2876e-01,  1.4041e-01, -2.0420e-01,  2.7689e-01,\\n\",\n      \"          -6.2801e-01,  5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\\n\",\n      \"           3.9456e-01,  2.7023e-01, -3.4516e-02,  7.8912e-02, -1.1492e-01,\\n\",\n      \"          -2.2979e-01, -1.7854e-01,  4.5892e-01,  2.8441e-01, -1.0770e-01,\\n\",\n      \"           1.6266e-01,  1.1944e-01,  3.1096e-01, -3.3360e-01, -6.6498e-02,\\n\",\n      \"           1.4587e-01,  3.4419e-01, -5.3772e-04,  4.5331e-01, -5.1342e-01,\\n\",\n      \"           1.3568e-01,  9.8949e-02, -8.0940e-02,  3.8612e-01, -1.3356e-01,\\n\",\n      \"          -1.0952e-01,  3.4308e-01,  1.8789e-01,  8.1325e-02,  9.0352e-02,\\n\",\n      \"           2.2188e-01,  1.5698e-01, -2.0673e-01,  6.6451e-02, -2.0891e-01,\\n\",\n      \"           1.9172e-01,  4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\\n\",\n      \"           2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01,  2.5902e-01,\\n\",\n      \"          -6.0417e-03, -4.4415e-01,  3.1402e-01,  3.1877e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.6335e-03, -2.3985e-01, -3.4736e-02,  8.8921e-02, -2.9755e-01,\\n\",\n      \"          -1.8779e-01,  2.6080e-01, -4.0660e-01,  2.4273e-01, -2.0277e-01,\\n\",\n      \"          -4.9214e-02,  9.4251e-02, -1.2161e-01,  1.5997e-01,  2.0561e-01,\\n\",\n      \"           1.5723e-01, -1.9595e-01, -4.2922e-01,  7.0747e-02,  1.4856e-01,\\n\",\n      \"          -1.5354e-01,  9.6606e-02,  1.7886e-01, -3.8590e-01, -2.9419e-01,\\n\",\n      \"           2.1776e-01,  2.6294e-02, -4.5975e-02,  2.0144e-02, -3.3976e-01,\\n\",\n      \"          -3.2033e-02,  1.9865e-01,  5.3036e-01,  1.5295e-01, -9.2089e-02,\\n\",\n      \"           4.3739e-01,  3.6364e-01,  3.4489e-01,  2.7756e-01, -2.2295e-01,\\n\",\n      \"          -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\\n\",\n      \"           2.5772e-01, -1.0638e-01, -7.3814e-02,  4.7898e-01, -1.9344e-01,\\n\",\n      \"           4.6140e-02,  1.3491e-02,  2.5996e-01,  2.2740e-01, -3.2146e-01,\\n\",\n      \"          -5.9065e-02, -4.3176e-01,  2.7157e-01,  3.1781e-01,  1.6585e-01,\\n\",\n      \"          -3.8220e-01, -4.3346e-01, -5.1061e-01,  1.0843e-01],\\n\",\n      \"         [ 9.6994e-02, -1.7331e-01,  2.1172e-01,  5.1296e-01, -2.1837e-01,\\n\",\n      \"          -1.5871e-02,  4.7803e-01,  1.5512e-01, -4.9505e-01,  2.5299e-03,\\n\",\n      \"          -6.7146e-01,  4.0029e-01, -6.4332e-02,  1.3088e-01,  3.7229e-02,\\n\",\n      \"           2.5459e-01,  7.3664e-01, -5.0367e-01,  1.3755e-01, -1.3922e-01,\\n\",\n      \"          -2.4012e-01,  2.2718e-02,  3.1692e-01, -1.0521e-01,  3.7480e-01,\\n\",\n      \"          -1.3657e-01, -2.5329e-01,  5.7562e-01, -5.2170e-02, -2.5802e-01,\\n\",\n      \"           2.7986e-01,  2.3848e-01,  1.4237e-01,  5.9374e-01, -3.3590e-01,\\n\",\n      \"           1.4647e-01, -6.6258e-02,  1.5446e-01,  3.4899e-01,  1.8101e-01,\\n\",\n      \"          -3.1963e-01,  1.2350e-01,  3.3166e-01, -2.9319e-01, -3.6108e-01,\\n\",\n      \"           3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03,  1.3249e-02,\\n\",\n      \"          -2.0109e-01,  1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\\n\",\n      \"           1.2868e-01,  3.8556e-01, -4.1688e-01, -3.0117e-02,  1.9605e-01,\\n\",\n      \"          -4.5693e-01, -4.9675e-01,  2.4458e-01,  2.3623e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.6365e-01, -2.7898e-01,  2.1363e-01,  2.3062e-01, -1.4550e-01,\\n\",\n      \"           1.6778e-02,  4.2505e-02, -4.5946e-01,  2.4220e-01, -1.9533e-01,\\n\",\n      \"          -1.5048e-01,  6.5674e-02, -3.3663e-01,  1.4862e-01, -3.8167e-02,\\n\",\n      \"           3.1526e-01, -2.9041e-02, -6.7158e-02,  6.2756e-02, -1.9502e-01,\\n\",\n      \"          -7.9184e-02, -1.7278e-01,  1.4336e-01, -3.5072e-01,  1.5444e-01,\\n\",\n      \"          -4.2982e-01,  5.2977e-01,  7.5553e-02, -4.6632e-01, -3.8594e-01,\\n\",\n      \"           2.5318e-01,  2.7747e-01,  4.8115e-01,  7.4816e-03, -2.9260e-01,\\n\",\n      \"          -2.1384e-02, -3.1256e-01,  2.7800e-01,  3.9665e-01, -1.6654e-01,\\n\",\n      \"          -3.9723e-01, -4.7709e-01, -6.2903e-01,  2.2307e-01,  4.1874e-02,\\n\",\n      \"           2.0719e-01,  6.7764e-02,  3.2923e-01,  4.4065e-01,  1.6063e-01,\\n\",\n      \"           1.4556e-01,  2.5320e-01,  3.6555e-01, -1.1610e-01, -4.0548e-02,\\n\",\n      \"           2.6207e-01, -2.5660e-01,  2.5825e-01,  5.6414e-01,  4.1154e-01,\\n\",\n      \"          -2.1353e-02, -6.4984e-02,  3.0729e-01, -3.8730e-01],\\n\",\n      \"         [ 5.4114e-02,  1.2911e-01,  1.1079e-01,  2.1384e-01, -3.7324e-02,\\n\",\n      \"           2.1465e-04,  1.8886e-01,  2.1697e-01,  2.6679e-01,  3.3500e-01,\\n\",\n      \"          -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02,  9.6619e-02,\\n\",\n      \"           1.5960e-01,  4.1786e-01, -4.3850e-01,  2.8198e-01, -4.6615e-01,\\n\",\n      \"           1.4454e-01,  6.5908e-02,  8.5281e-02, -4.2819e-02,  5.0067e-01,\\n\",\n      \"           1.7017e-01, -2.7224e-01,  2.5380e-01,  4.1439e-02, -3.5470e-01,\\n\",\n      \"           1.9666e-01, -1.9875e-01, -9.2995e-03,  3.5348e-01,  4.8985e-02,\\n\",\n      \"           1.6634e-01,  2.1250e-01,  1.6368e-01, -2.9762e-01, -1.7645e-01,\\n\",\n      \"          -4.1179e-01,  3.5149e-01,  2.2540e-01,  2.3828e-02, -1.3123e-01,\\n\",\n      \"           2.8975e-01,  1.1899e-01,  1.6702e-01,  1.7360e-01,  1.4900e-01,\\n\",\n      \"          -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\\n\",\n      \"          -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01,  4.7001e-01,\\n\",\n      \"          -4.0074e-01, -5.6701e-01, -3.2914e-01,  2.7732e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0713e-01,  4.5937e-01, -1.6181e-01,  4.3321e-02,  1.1174e-01,\\n\",\n      \"          -6.1644e-01, -5.7113e-01, -5.0487e-01,  3.5190e-01,  4.1288e-02,\\n\",\n      \"          -2.7544e-01, -4.4448e-02, -2.5642e-01,  6.6191e-01, -1.8626e-01,\\n\",\n      \"          -5.6468e-02, -7.5144e-02,  6.2824e-01,  4.6276e-01, -3.3513e-01,\\n\",\n      \"          -3.5146e-01, -1.9119e-01,  8.3969e-02, -2.7791e-01,  2.1230e-01,\\n\",\n      \"          -3.5122e-01,  3.3878e-01,  4.5148e-01, -1.3567e-01, -3.3026e-01,\\n\",\n      \"           5.8611e-01, -3.8844e-01,  2.9644e-01, -1.6744e-01,  4.0907e-02,\\n\",\n      \"           7.5437e-03, -1.6675e-01,  2.5426e-01,  3.3875e-01,  7.0346e-02,\\n\",\n      \"           7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\\n\",\n      \"           5.3298e-02, -5.7836e-02,  3.7722e-02,  4.2650e-01,  3.8631e-01,\\n\",\n      \"          -2.0902e-01,  4.5654e-01, -1.7730e-01, -4.1286e-01,  2.1224e-02,\\n\",\n      \"           2.3993e-01, -6.1541e-01,  5.8383e-01,  3.3904e-01,  2.5489e-01,\\n\",\n      \"          -5.3822e-01, -5.1609e-03,  7.5159e-02, -5.2072e-01],\\n\",\n      \"         [-1.6287e-01, -1.2638e-02,  2.4461e-01,  4.2238e-01, -7.5080e-02,\\n\",\n      \"           6.8997e-02,  5.9353e-02, -4.6653e-01,  2.5298e-01,  2.6466e-01,\\n\",\n      \"          -2.6296e-01, -2.3991e-02, -3.3667e-01,  2.0203e-02, -1.0276e-01,\\n\",\n      \"           3.0682e-01,  3.8102e-01, -1.4313e-01,  2.6840e-01, -5.8352e-01,\\n\",\n      \"          -1.3001e-02, -2.0605e-01,  1.3328e-01, -3.5768e-02,  5.0879e-01,\\n\",\n      \"          -4.9018e-01,  3.4093e-01,  2.6714e-01, -4.5952e-01, -3.8416e-01,\\n\",\n      \"           3.6284e-01,  2.4918e-03,  2.9864e-01,  7.5558e-02, -2.7992e-01,\\n\",\n      \"          -1.2603e-01, -4.7697e-01,  2.0969e-01,  4.8302e-02, -1.4302e-01,\\n\",\n      \"          -4.7573e-01, -2.2340e-01, -3.0772e-01,  4.1387e-01,  1.2074e-01,\\n\",\n      \"           2.5394e-01,  1.6521e-01,  4.2968e-01,  3.1515e-01,  3.1856e-01,\\n\",\n      \"           2.1915e-02, -3.8564e-02,  6.7546e-02, -6.3149e-01,  4.9406e-02,\\n\",\n      \"           1.7295e-01, -1.1359e-01, -1.2223e-01,  4.0665e-01,  5.6251e-01,\\n\",\n      \"           9.3645e-04, -1.5734e-01,  3.2205e-01, -3.8656e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([34, 11])\\n\",\n      \"dec_state: tensor([[[ 1.7589e-01,  2.4391e-01,  5.3143e-02, -1.7293e-01, -2.9055e-01,\\n\",\n      \"          -3.4841e-01, -1.5347e-01, -4.0364e-01, -2.4531e-01,  1.1444e-01,\\n\",\n      \"           1.2992e-01,  1.3576e-01, -5.6660e-04,  2.9642e-01, -3.8533e-01,\\n\",\n      \"           4.6836e-01, -5.0639e-01,  2.7413e-01, -6.5189e-02,  3.9388e-01,\\n\",\n      \"           2.2414e-01, -1.7883e-01, -2.6278e-01,  3.0563e-01,  3.5925e-01,\\n\",\n      \"          -6.0581e-01, -2.4866e-01, -4.6864e-01, -2.0547e-01, -4.3715e-01,\\n\",\n      \"           1.5993e-01, -5.2925e-02,  2.9531e-01, -5.3454e-02,  4.9664e-02,\\n\",\n      \"           8.4741e-02,  5.7760e-02, -4.5966e-01,  1.8791e-02,  4.7860e-01,\\n\",\n      \"           3.5167e-01, -1.4867e-02,  1.9799e-02, -5.7336e-01,  5.7002e-02,\\n\",\n      \"           2.1918e-01, -3.1099e-02,  5.9912e-01,  4.0055e-01,  5.0181e-02,\\n\",\n      \"          -6.4062e-02,  2.4873e-01,  1.7468e-01, -5.4216e-01, -2.0010e-01,\\n\",\n      \"          -3.2376e-01,  6.3976e-02, -2.0373e-01, -4.1056e-02,  2.4488e-02,\\n\",\n      \"          -1.5838e-01, -1.1246e-01, -5.3824e-01,  5.1605e-01],\\n\",\n      \"         [ 3.7598e-01, -1.0106e-01, -8.6892e-02,  3.8593e-01,  3.8202e-01,\\n\",\n      \"          -2.2204e-01,  3.4336e-01, -3.2857e-02, -4.8803e-01,  1.9261e-01,\\n\",\n      \"          -1.2260e-01, -3.5437e-01, -8.2302e-02,  1.8273e-01, -3.7630e-01,\\n\",\n      \"          -7.1433e-01, -1.4909e-01,  1.5454e-01,  7.4649e-02,  1.0798e-01,\\n\",\n      \"           6.3725e-01, -4.1141e-01, -1.3654e-01,  1.5477e-02,  2.8965e-01,\\n\",\n      \"          -3.5360e-01,  6.4699e-01, -5.7809e-01, -7.3216e-01, -1.6523e-01,\\n\",\n      \"          -7.1941e-01, -2.3453e-01, -3.7225e-01,  7.4928e-01, -2.6023e-01,\\n\",\n      \"          -6.5783e-01,  3.4881e-01, -3.5682e-01, -5.2175e-01,  9.0108e-02,\\n\",\n      \"          -2.6713e-02,  5.8166e-01,  2.3491e-01,  2.4307e-01,  1.4522e-01,\\n\",\n      \"           3.5829e-01, -4.8887e-02,  2.3532e-01,  4.3856e-02,  3.6150e-01,\\n\",\n      \"          -5.2905e-02, -3.4787e-01,  7.3304e-01, -4.7650e-01, -5.7155e-02,\\n\",\n      \"          -4.2896e-01, -1.0243e-03,  4.7609e-01,  1.6585e-01, -6.0946e-01,\\n\",\n      \"          -1.9369e-01,  2.4663e-03, -3.6624e-01, -2.0177e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.3727e-01,  7.2181e-02, -4.8407e-02,  3.9534e-01,  1.7992e-01,\\n\",\n      \"           1.4430e-01,  1.3021e-01, -5.1874e-01,  9.1039e-02, -1.9068e-01,\\n\",\n      \"           2.6788e-01,  2.2892e-02, -8.0218e-02,  2.0840e-01,  1.3134e-01,\\n\",\n      \"           2.3112e-01,  4.3599e-02, -2.9930e-01,  2.1027e-01, -3.4507e-02,\\n\",\n      \"          -8.8752e-02, -1.4755e-01,  6.6381e-02, -3.3483e-01, -7.0215e-02,\\n\",\n      \"           4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\\n\",\n      \"           1.1633e-01, -2.9537e-01,  5.5430e-02,  5.4464e-02, -4.3290e-02,\\n\",\n      \"           7.1843e-02, -3.4024e-01, -3.7712e-02,  2.8614e-01, -6.0731e-02,\\n\",\n      \"          -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\\n\",\n      \"           3.7795e-01, -1.3003e-01,  1.7851e-01,  2.4400e-01, -3.0191e-01,\\n\",\n      \"           4.8482e-01,  2.6197e-01,  2.3043e-01, -4.2391e-01, -8.0003e-02,\\n\",\n      \"           2.5831e-01, -3.1049e-01,  1.7894e-01,  2.2598e-01,  1.0081e-01,\\n\",\n      \"          -2.7511e-01,  7.8730e-02, -2.0066e-01, -1.5597e-01],\\n\",\n      \"         [ 2.5820e-01,  1.9188e-01,  4.7999e-01,  6.9774e-02, -2.0267e-01,\\n\",\n      \"           3.7522e-01, -8.6744e-02,  2.5228e-01, -1.2846e-01,  1.0590e-01,\\n\",\n      \"          -2.7586e-01,  1.0311e-01,  1.1307e-01, -1.0545e-01,  2.9488e-01,\\n\",\n      \"           5.4775e-01, -1.6711e-01,  4.6806e-02, -2.4186e-01, -3.5100e-01,\\n\",\n      \"          -2.9758e-01, -3.1168e-01,  1.9277e-01,  1.4047e-01, -7.5636e-02,\\n\",\n      \"          -1.8808e-01, -2.0158e-01,  3.6178e-01, -9.5802e-02, -1.2708e-01,\\n\",\n      \"           1.0763e-01, -5.5428e-02,  1.1961e-01,  2.4258e-01, -2.8356e-01,\\n\",\n      \"          -2.4466e-01, -1.7622e-01, -6.5579e-02,  1.2709e-01,  4.5320e-02,\\n\",\n      \"           9.7881e-02,  2.9991e-01,  2.2304e-01, -3.3725e-01, -7.2100e-02,\\n\",\n      \"          -1.7546e-01, -2.9953e-01,  4.6157e-02, -1.5875e-01, -2.6537e-01,\\n\",\n      \"           3.2382e-01,  9.5382e-03,  2.2192e-01, -2.5515e-01, -4.1426e-01,\\n\",\n      \"          -9.4852e-02, -4.9565e-02,  1.5019e-01,  2.4926e-01,  1.9148e-01,\\n\",\n      \"          -5.3635e-01, -1.5326e-01,  1.6425e-01, -3.9051e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0083e-01, -3.0158e-01, -2.8431e-02,  7.8782e-01,  2.3501e-02,\\n\",\n      \"           9.2542e-02,  3.9450e-01, -6.1034e-03,  2.4454e-01, -3.1812e-01,\\n\",\n      \"           2.2186e-01,  1.3691e-01,  2.2964e-01, -3.7366e-01,  4.4578e-01,\\n\",\n      \"           1.5186e-01,  2.7236e-02,  4.9386e-02,  2.2214e-01, -8.3106e-02,\\n\",\n      \"          -2.9856e-01, -4.7007e-02,  2.0091e-01, -2.0271e-01,  2.0945e-01,\\n\",\n      \"          -1.2809e-01, -3.7861e-01, -1.3235e-01,  3.6467e-02, -2.1870e-01,\\n\",\n      \"          -1.0883e-01, -1.7587e-01,  4.0160e-01,  4.2037e-01,  4.8252e-02,\\n\",\n      \"           2.8059e-01, -4.1559e-01,  6.3770e-01,  3.2591e-01,  9.4536e-02,\\n\",\n      \"          -2.2653e-02, -3.4345e-02,  1.8139e-01, -1.6369e-01,  4.0315e-02,\\n\",\n      \"           3.9302e-01,  2.5815e-01, -1.6280e-01,  3.2198e-01,  3.0073e-01,\\n\",\n      \"           1.7263e-02, -4.5440e-02,  2.6601e-01, -5.0357e-01, -4.8120e-02,\\n\",\n      \"          -1.4780e-01,  2.7241e-02, -1.4115e-01, -8.8778e-03,  6.6657e-01,\\n\",\n      \"          -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\\n\",\n      \"         [ 6.7260e-02,  1.2996e-01,  1.1819e-01, -2.0483e-01, -5.4274e-01,\\n\",\n      \"          -1.1038e-01,  2.4815e-02,  6.9911e-02, -1.4384e-01, -3.7275e-01,\\n\",\n      \"          -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\\n\",\n      \"           5.1307e-01,  2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\\n\",\n      \"          -3.0653e-01, -2.0400e-01,  3.5982e-01,  4.9754e-01,  1.0173e-01,\\n\",\n      \"          -4.0342e-01,  4.9540e-01,  2.5269e-01,  7.8506e-02, -2.3170e-02,\\n\",\n      \"           1.8902e-01,  3.7163e-01, -1.1237e-01,  6.6350e-01, -5.1017e-01,\\n\",\n      \"           6.4472e-02, -5.7414e-02, -8.7294e-02,  2.0384e-02, -2.6563e-02,\\n\",\n      \"           1.7521e-01,  6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\\n\",\n      \"          -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\\n\",\n      \"           3.3169e-01,  2.3594e-01,  3.5904e-02, -4.0302e-01, -3.1485e-01,\\n\",\n      \"           3.4287e-01,  1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\\n\",\n      \"          -6.8716e-01,  5.1406e-02,  2.5545e-01,  2.5696e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.0629e-01, -3.7659e-01,  4.5863e-02,  5.3217e-01, -1.2700e-01,\\n\",\n      \"          -1.4886e-01,  1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\\n\",\n      \"           4.2041e-01, -1.8544e-01,  4.3391e-01, -6.7537e-02,  1.9093e-01,\\n\",\n      \"          -5.8209e-01, -2.1247e-02,  2.4594e-01,  3.7686e-01,  3.0338e-02,\\n\",\n      \"          -4.1501e-01,  1.7103e-01,  1.6851e-02, -1.5981e-01,  2.9293e-01,\\n\",\n      \"          -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\\n\",\n      \"          -1.8605e-01,  1.2303e-01,  6.8677e-01,  3.3999e-01,  2.9310e-01,\\n\",\n      \"           3.4023e-01, -1.6655e-01,  6.5662e-01,  4.0671e-01, -2.8659e-01,\\n\",\n      \"          -4.9588e-01,  1.6012e-01,  2.7112e-01,  2.1752e-01, -3.7658e-01,\\n\",\n      \"           3.0657e-01,  1.9236e-01, -4.6345e-01,  1.7681e-01,  9.2185e-02,\\n\",\n      \"          -1.5306e-01, -4.8642e-01,  5.8779e-01, -6.4074e-01,  2.2483e-01,\\n\",\n      \"          -1.0579e-01,  4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\\n\",\n      \"          -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\\n\",\n      \"         [ 1.0529e-02,  3.5908e-01,  2.3312e-01,  1.9650e-01, -5.9675e-02,\\n\",\n      \"          -1.5658e-01,  1.6122e-01,  1.8782e-01, -1.9782e-01, -2.5424e-01,\\n\",\n      \"          -2.2587e-01,  1.1983e-01,  5.4116e-02, -4.3192e-01, -2.1338e-01,\\n\",\n      \"           5.8897e-01,  4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\\n\",\n      \"          -5.1517e-01, -5.5736e-02,  1.4217e-01,  5.7948e-01, -1.6698e-01,\\n\",\n      \"          -1.8354e-01,  2.5574e-01,  9.2582e-02, -1.5009e-01, -1.5141e-01,\\n\",\n      \"           6.2154e-02,  1.9030e-01,  5.2375e-02,  3.0264e-01, -4.0980e-01,\\n\",\n      \"           9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\\n\",\n      \"           1.7333e-01,  1.3659e-02,  4.6606e-02, -6.6266e-01,  2.8069e-01,\\n\",\n      \"           2.4609e-01,  5.7418e-02,  3.7632e-01,  2.5864e-01,  1.4679e-01,\\n\",\n      \"           4.4736e-01,  4.5973e-01,  8.1457e-02, -5.2304e-01, -4.5289e-01,\\n\",\n      \"           1.7003e-01,  2.5693e-01, -3.7473e-01,  1.5084e-01,  3.6457e-01,\\n\",\n      \"          -4.0353e-02, -6.3108e-02,  9.9259e-02,  1.4259e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 9.5497e-02, -4.1627e-01,  2.8029e-02,  4.1203e-01, -6.8130e-03,\\n\",\n      \"          -2.8840e-01,  3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\\n\",\n      \"           3.4702e-01, -3.8960e-02,  5.7625e-01, -1.9183e-01,  2.6033e-01,\\n\",\n      \"          -4.3174e-01,  3.1093e-02, -1.8470e-01,  6.3293e-01, -5.6075e-02,\\n\",\n      \"          -5.1161e-01, -9.4454e-02,  1.5921e-01, -1.8132e-01, -1.6253e-01,\\n\",\n      \"           1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\\n\",\n      \"          -1.6154e-01,  2.0733e-01,  7.0576e-01,  1.3302e-01, -2.9825e-01,\\n\",\n      \"           2.0994e-01, -5.3865e-02,  3.8838e-01,  4.2451e-01, -5.2417e-01,\\n\",\n      \"          -5.0814e-01,  2.6738e-01,  3.7351e-01,  5.8097e-01, -6.1178e-01,\\n\",\n      \"           2.2877e-01,  2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\\n\",\n      \"           1.4218e-01, -3.0955e-01,  4.6556e-01, -1.5831e-01, -2.1650e-01,\\n\",\n      \"           3.8367e-02,  4.2855e-01,  1.9128e-01,  3.8580e-01,  1.1959e-01,\\n\",\n      \"          -2.9994e-01, -5.2117e-01,  2.1471e-01, -5.7907e-01],\\n\",\n      \"         [-1.0411e-01, -5.0381e-02,  2.7471e-01,  4.8769e-01,  1.4239e-01,\\n\",\n      \"           2.6347e-01,  5.2876e-01,  1.4041e-01, -2.0420e-01,  2.7689e-01,\\n\",\n      \"          -6.2801e-01,  5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\\n\",\n      \"           3.9456e-01,  2.7023e-01, -3.4516e-02,  7.8912e-02, -1.1492e-01,\\n\",\n      \"          -2.2979e-01, -1.7854e-01,  4.5892e-01,  2.8441e-01, -1.0770e-01,\\n\",\n      \"           1.6266e-01,  1.1944e-01,  3.1096e-01, -3.3360e-01, -6.6498e-02,\\n\",\n      \"           1.4587e-01,  3.4419e-01, -5.3772e-04,  4.5331e-01, -5.1342e-01,\\n\",\n      \"           1.3568e-01,  9.8949e-02, -8.0940e-02,  3.8612e-01, -1.3356e-01,\\n\",\n      \"          -1.0952e-01,  3.4308e-01,  1.8789e-01,  8.1325e-02,  9.0352e-02,\\n\",\n      \"           2.2188e-01,  1.5698e-01, -2.0673e-01,  6.6451e-02, -2.0891e-01,\\n\",\n      \"           1.9172e-01,  4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\\n\",\n      \"           2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01,  2.5902e-01,\\n\",\n      \"          -6.0417e-03, -4.4415e-01,  3.1402e-01,  3.1877e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.6335e-03, -2.3985e-01, -3.4736e-02,  8.8921e-02, -2.9755e-01,\\n\",\n      \"          -1.8779e-01,  2.6080e-01, -4.0660e-01,  2.4273e-01, -2.0277e-01,\\n\",\n      \"          -4.9214e-02,  9.4251e-02, -1.2161e-01,  1.5997e-01,  2.0561e-01,\\n\",\n      \"           1.5723e-01, -1.9595e-01, -4.2922e-01,  7.0747e-02,  1.4856e-01,\\n\",\n      \"          -1.5354e-01,  9.6606e-02,  1.7886e-01, -3.8590e-01, -2.9419e-01,\\n\",\n      \"           2.1776e-01,  2.6294e-02, -4.5975e-02,  2.0144e-02, -3.3976e-01,\\n\",\n      \"          -3.2033e-02,  1.9865e-01,  5.3036e-01,  1.5295e-01, -9.2089e-02,\\n\",\n      \"           4.3739e-01,  3.6364e-01,  3.4489e-01,  2.7756e-01, -2.2295e-01,\\n\",\n      \"          -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\\n\",\n      \"           2.5772e-01, -1.0638e-01, -7.3814e-02,  4.7898e-01, -1.9344e-01,\\n\",\n      \"           4.6140e-02,  1.3491e-02,  2.5996e-01,  2.2740e-01, -3.2146e-01,\\n\",\n      \"          -5.9065e-02, -4.3176e-01,  2.7157e-01,  3.1781e-01,  1.6585e-01,\\n\",\n      \"          -3.8220e-01, -4.3346e-01, -5.1061e-01,  1.0843e-01],\\n\",\n      \"         [ 9.6994e-02, -1.7331e-01,  2.1172e-01,  5.1296e-01, -2.1837e-01,\\n\",\n      \"          -1.5871e-02,  4.7803e-01,  1.5512e-01, -4.9505e-01,  2.5299e-03,\\n\",\n      \"          -6.7146e-01,  4.0029e-01, -6.4332e-02,  1.3088e-01,  3.7229e-02,\\n\",\n      \"           2.5459e-01,  7.3664e-01, -5.0367e-01,  1.3755e-01, -1.3922e-01,\\n\",\n      \"          -2.4012e-01,  2.2718e-02,  3.1692e-01, -1.0521e-01,  3.7480e-01,\\n\",\n      \"          -1.3657e-01, -2.5329e-01,  5.7562e-01, -5.2170e-02, -2.5802e-01,\\n\",\n      \"           2.7986e-01,  2.3848e-01,  1.4237e-01,  5.9374e-01, -3.3590e-01,\\n\",\n      \"           1.4647e-01, -6.6258e-02,  1.5446e-01,  3.4899e-01,  1.8101e-01,\\n\",\n      \"          -3.1963e-01,  1.2350e-01,  3.3166e-01, -2.9319e-01, -3.6108e-01,\\n\",\n      \"           3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03,  1.3249e-02,\\n\",\n      \"          -2.0109e-01,  1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\\n\",\n      \"           1.2868e-01,  3.8556e-01, -4.1688e-01, -3.0117e-02,  1.9605e-01,\\n\",\n      \"          -4.5693e-01, -4.9675e-01,  2.4458e-01,  2.3623e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.6365e-01, -2.7898e-01,  2.1363e-01,  2.3062e-01, -1.4550e-01,\\n\",\n      \"           1.6778e-02,  4.2505e-02, -4.5946e-01,  2.4220e-01, -1.9533e-01,\\n\",\n      \"          -1.5048e-01,  6.5674e-02, -3.3663e-01,  1.4862e-01, -3.8167e-02,\\n\",\n      \"           3.1526e-01, -2.9041e-02, -6.7158e-02,  6.2756e-02, -1.9502e-01,\\n\",\n      \"          -7.9184e-02, -1.7278e-01,  1.4336e-01, -3.5072e-01,  1.5444e-01,\\n\",\n      \"          -4.2982e-01,  5.2977e-01,  7.5553e-02, -4.6632e-01, -3.8594e-01,\\n\",\n      \"           2.5318e-01,  2.7747e-01,  4.8115e-01,  7.4816e-03, -2.9260e-01,\\n\",\n      \"          -2.1384e-02, -3.1256e-01,  2.7800e-01,  3.9665e-01, -1.6654e-01,\\n\",\n      \"          -3.9723e-01, -4.7709e-01, -6.2903e-01,  2.2307e-01,  4.1874e-02,\\n\",\n      \"           2.0719e-01,  6.7764e-02,  3.2923e-01,  4.4065e-01,  1.6063e-01,\\n\",\n      \"           1.4556e-01,  2.5320e-01,  3.6555e-01, -1.1610e-01, -4.0548e-02,\\n\",\n      \"           2.6207e-01, -2.5660e-01,  2.5825e-01,  5.6414e-01,  4.1154e-01,\\n\",\n      \"          -2.1353e-02, -6.4984e-02,  3.0729e-01, -3.8730e-01],\\n\",\n      \"         [ 5.4114e-02,  1.2911e-01,  1.1079e-01,  2.1384e-01, -3.7324e-02,\\n\",\n      \"           2.1465e-04,  1.8886e-01,  2.1697e-01,  2.6679e-01,  3.3500e-01,\\n\",\n      \"          -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02,  9.6619e-02,\\n\",\n      \"           1.5960e-01,  4.1786e-01, -4.3850e-01,  2.8198e-01, -4.6615e-01,\\n\",\n      \"           1.4454e-01,  6.5908e-02,  8.5281e-02, -4.2819e-02,  5.0067e-01,\\n\",\n      \"           1.7017e-01, -2.7224e-01,  2.5380e-01,  4.1439e-02, -3.5470e-01,\\n\",\n      \"           1.9666e-01, -1.9875e-01, -9.2995e-03,  3.5348e-01,  4.8985e-02,\\n\",\n      \"           1.6634e-01,  2.1250e-01,  1.6368e-01, -2.9762e-01, -1.7645e-01,\\n\",\n      \"          -4.1179e-01,  3.5149e-01,  2.2540e-01,  2.3828e-02, -1.3123e-01,\\n\",\n      \"           2.8975e-01,  1.1899e-01,  1.6702e-01,  1.7360e-01,  1.4900e-01,\\n\",\n      \"          -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\\n\",\n      \"          -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01,  4.7001e-01,\\n\",\n      \"          -4.0074e-01, -5.6701e-01, -3.2914e-01,  2.7732e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0713e-01,  4.5937e-01, -1.6181e-01,  4.3321e-02,  1.1174e-01,\\n\",\n      \"          -6.1644e-01, -5.7113e-01, -5.0487e-01,  3.5190e-01,  4.1288e-02,\\n\",\n      \"          -2.7544e-01, -4.4448e-02, -2.5642e-01,  6.6191e-01, -1.8626e-01,\\n\",\n      \"          -5.6468e-02, -7.5144e-02,  6.2824e-01,  4.6276e-01, -3.3513e-01,\\n\",\n      \"          -3.5146e-01, -1.9119e-01,  8.3969e-02, -2.7791e-01,  2.1230e-01,\\n\",\n      \"          -3.5122e-01,  3.3878e-01,  4.5148e-01, -1.3567e-01, -3.3026e-01,\\n\",\n      \"           5.8611e-01, -3.8844e-01,  2.9644e-01, -1.6744e-01,  4.0907e-02,\\n\",\n      \"           7.5437e-03, -1.6675e-01,  2.5426e-01,  3.3875e-01,  7.0346e-02,\\n\",\n      \"           7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\\n\",\n      \"           5.3298e-02, -5.7836e-02,  3.7722e-02,  4.2650e-01,  3.8631e-01,\\n\",\n      \"          -2.0902e-01,  4.5654e-01, -1.7730e-01, -4.1286e-01,  2.1224e-02,\\n\",\n      \"           2.3993e-01, -6.1541e-01,  5.8383e-01,  3.3904e-01,  2.5489e-01,\\n\",\n      \"          -5.3822e-01, -5.1609e-03,  7.5159e-02, -5.2072e-01],\\n\",\n      \"         [-1.6287e-01, -1.2638e-02,  2.4461e-01,  4.2238e-01, -7.5080e-02,\\n\",\n      \"           6.8997e-02,  5.9353e-02, -4.6653e-01,  2.5298e-01,  2.6466e-01,\\n\",\n      \"          -2.6296e-01, -2.3991e-02, -3.3667e-01,  2.0203e-02, -1.0276e-01,\\n\",\n      \"           3.0682e-01,  3.8102e-01, -1.4313e-01,  2.6840e-01, -5.8352e-01,\\n\",\n      \"          -1.3001e-02, -2.0605e-01,  1.3328e-01, -3.5768e-02,  5.0879e-01,\\n\",\n      \"          -4.9018e-01,  3.4093e-01,  2.6714e-01, -4.5952e-01, -3.8416e-01,\\n\",\n      \"           3.6284e-01,  2.4918e-03,  2.9864e-01,  7.5558e-02, -2.7992e-01,\\n\",\n      \"          -1.2603e-01, -4.7697e-01,  2.0969e-01,  4.8302e-02, -1.4302e-01,\\n\",\n      \"          -4.7573e-01, -2.2340e-01, -3.0772e-01,  4.1387e-01,  1.2074e-01,\\n\",\n      \"           2.5394e-01,  1.6521e-01,  4.2968e-01,  3.1515e-01,  3.1856e-01,\\n\",\n      \"           2.1915e-02, -3.8564e-02,  6.7546e-02, -6.3149e-01,  4.9406e-02,\\n\",\n      \"           1.7295e-01, -1.1359e-01, -1.2223e-01,  4.0665e-01,  5.6251e-01,\\n\",\n      \"           9.3645e-04, -1.5734e-01,  3.2205e-01, -3.8656e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([12,  3])\\n\",\n      \"dec_state: tensor([[[-0.1012, -0.0762, -0.1476,  0.0793, -0.5507, -0.3517,  0.0855,\\n\",\n      \"           0.1092, -0.4347, -0.1715, -0.3756, -0.1330, -0.1930, -0.0793,\\n\",\n      \"           0.0766,  0.6006, -0.4178, -0.2625, -0.1204,  0.4916,  0.3598,\\n\",\n      \"          -0.1558, -0.2658,  0.2857,  0.3404, -0.0340, -0.3063, -0.0686,\\n\",\n      \"           0.2955, -0.2708,  0.1850,  0.1453,  0.0573, -0.0978,  0.2190,\\n\",\n      \"           0.0472, -0.0070, -0.4712,  0.0308,  0.4580,  0.2355,  0.4664,\\n\",\n      \"          -0.2036, -0.1419,  0.2422,  0.0041, -0.2065,  0.2519,  0.5854,\\n\",\n      \"           0.1112,  0.1149,  0.0664, -0.1631, -0.0092, -0.4894,  0.2247,\\n\",\n      \"          -0.0016, -0.0468, -0.3131, -0.0257,  0.0967,  0.0717, -0.1940,\\n\",\n      \"           0.4291],\\n\",\n      \"         [ 0.7914,  0.2248, -0.3662,  0.2102,  0.3070,  0.0956,  0.0920,\\n\",\n      \"          -0.1820, -0.5064, -0.1938, -0.4492, -0.2407,  0.3199,  0.4416,\\n\",\n      \"          -0.6199, -0.2810,  0.4202,  0.0537, -0.2216,  0.4739,  0.4737,\\n\",\n      \"          -0.5346, -0.2203, -0.0552,  0.6273, -0.3668,  0.6017, -0.7320,\\n\",\n      \"          -0.1341, -0.4821, -0.7457, -0.1939, -0.0062,  0.3788,  0.1583,\\n\",\n      \"          -0.5359,  0.5317, -0.3957, -0.0312,  0.2623, -0.0663,  0.3599,\\n\",\n      \"           0.1110,  0.0418, -0.3274,  0.4923,  0.2166,  0.2875, -0.4395,\\n\",\n      \"           0.3079, -0.3243,  0.1656,  0.2572, -0.4453,  0.3038, -0.3038,\\n\",\n      \"           0.1681,  0.1785, -0.1105, -0.3535, -0.5527,  0.0108, -0.4540,\\n\",\n      \"          -0.4937]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.3727e-01,  7.2181e-02, -4.8407e-02,  3.9534e-01,  1.7992e-01,\\n\",\n      \"           1.4430e-01,  1.3021e-01, -5.1874e-01,  9.1039e-02, -1.9068e-01,\\n\",\n      \"           2.6788e-01,  2.2892e-02, -8.0218e-02,  2.0840e-01,  1.3134e-01,\\n\",\n      \"           2.3112e-01,  4.3599e-02, -2.9930e-01,  2.1027e-01, -3.4507e-02,\\n\",\n      \"          -8.8752e-02, -1.4755e-01,  6.6381e-02, -3.3483e-01, -7.0215e-02,\\n\",\n      \"           4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\\n\",\n      \"           1.1633e-01, -2.9537e-01,  5.5430e-02,  5.4464e-02, -4.3290e-02,\\n\",\n      \"           7.1843e-02, -3.4024e-01, -3.7712e-02,  2.8614e-01, -6.0731e-02,\\n\",\n      \"          -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\\n\",\n      \"           3.7795e-01, -1.3003e-01,  1.7851e-01,  2.4400e-01, -3.0191e-01,\\n\",\n      \"           4.8482e-01,  2.6197e-01,  2.3043e-01, -4.2391e-01, -8.0003e-02,\\n\",\n      \"           2.5831e-01, -3.1049e-01,  1.7894e-01,  2.2598e-01,  1.0081e-01,\\n\",\n      \"          -2.7511e-01,  7.8730e-02, -2.0066e-01, -1.5597e-01],\\n\",\n      \"         [ 2.5820e-01,  1.9188e-01,  4.7999e-01,  6.9774e-02, -2.0267e-01,\\n\",\n      \"           3.7522e-01, -8.6744e-02,  2.5228e-01, -1.2846e-01,  1.0590e-01,\\n\",\n      \"          -2.7586e-01,  1.0311e-01,  1.1307e-01, -1.0545e-01,  2.9488e-01,\\n\",\n      \"           5.4775e-01, -1.6711e-01,  4.6806e-02, -2.4186e-01, -3.5100e-01,\\n\",\n      \"          -2.9758e-01, -3.1168e-01,  1.9277e-01,  1.4047e-01, -7.5636e-02,\\n\",\n      \"          -1.8808e-01, -2.0158e-01,  3.6178e-01, -9.5802e-02, -1.2708e-01,\\n\",\n      \"           1.0763e-01, -5.5428e-02,  1.1961e-01,  2.4258e-01, -2.8356e-01,\\n\",\n      \"          -2.4466e-01, -1.7622e-01, -6.5579e-02,  1.2709e-01,  4.5320e-02,\\n\",\n      \"           9.7881e-02,  2.9991e-01,  2.2304e-01, -3.3725e-01, -7.2100e-02,\\n\",\n      \"          -1.7546e-01, -2.9953e-01,  4.6157e-02, -1.5875e-01, -2.6537e-01,\\n\",\n      \"           3.2382e-01,  9.5382e-03,  2.2192e-01, -2.5515e-01, -4.1426e-01,\\n\",\n      \"          -9.4852e-02, -4.9565e-02,  1.5019e-01,  2.4926e-01,  1.9148e-01,\\n\",\n      \"          -5.3635e-01, -1.5326e-01,  1.6425e-01, -3.9051e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0083e-01, -3.0158e-01, -2.8431e-02,  7.8782e-01,  2.3501e-02,\\n\",\n      \"           9.2542e-02,  3.9450e-01, -6.1034e-03,  2.4454e-01, -3.1812e-01,\\n\",\n      \"           2.2186e-01,  1.3691e-01,  2.2964e-01, -3.7366e-01,  4.4578e-01,\\n\",\n      \"           1.5186e-01,  2.7236e-02,  4.9386e-02,  2.2214e-01, -8.3106e-02,\\n\",\n      \"          -2.9856e-01, -4.7007e-02,  2.0091e-01, -2.0271e-01,  2.0945e-01,\\n\",\n      \"          -1.2809e-01, -3.7861e-01, -1.3235e-01,  3.6467e-02, -2.1870e-01,\\n\",\n      \"          -1.0883e-01, -1.7587e-01,  4.0160e-01,  4.2037e-01,  4.8252e-02,\\n\",\n      \"           2.8059e-01, -4.1559e-01,  6.3770e-01,  3.2591e-01,  9.4536e-02,\\n\",\n      \"          -2.2653e-02, -3.4345e-02,  1.8139e-01, -1.6369e-01,  4.0315e-02,\\n\",\n      \"           3.9302e-01,  2.5815e-01, -1.6280e-01,  3.2198e-01,  3.0073e-01,\\n\",\n      \"           1.7263e-02, -4.5440e-02,  2.6601e-01, -5.0357e-01, -4.8120e-02,\\n\",\n      \"          -1.4780e-01,  2.7241e-02, -1.4115e-01, -8.8778e-03,  6.6657e-01,\\n\",\n      \"          -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\\n\",\n      \"         [ 6.7260e-02,  1.2996e-01,  1.1819e-01, -2.0483e-01, -5.4274e-01,\\n\",\n      \"          -1.1038e-01,  2.4815e-02,  6.9911e-02, -1.4384e-01, -3.7275e-01,\\n\",\n      \"          -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\\n\",\n      \"           5.1307e-01,  2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\\n\",\n      \"          -3.0653e-01, -2.0400e-01,  3.5982e-01,  4.9754e-01,  1.0173e-01,\\n\",\n      \"          -4.0342e-01,  4.9540e-01,  2.5269e-01,  7.8506e-02, -2.3170e-02,\\n\",\n      \"           1.8902e-01,  3.7163e-01, -1.1237e-01,  6.6350e-01, -5.1017e-01,\\n\",\n      \"           6.4472e-02, -5.7414e-02, -8.7294e-02,  2.0384e-02, -2.6563e-02,\\n\",\n      \"           1.7521e-01,  6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\\n\",\n      \"          -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\\n\",\n      \"           3.3169e-01,  2.3594e-01,  3.5904e-02, -4.0302e-01, -3.1485e-01,\\n\",\n      \"           3.4287e-01,  1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\\n\",\n      \"          -6.8716e-01,  5.1406e-02,  2.5545e-01,  2.5696e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.0629e-01, -3.7659e-01,  4.5863e-02,  5.3217e-01, -1.2700e-01,\\n\",\n      \"          -1.4886e-01,  1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\\n\",\n      \"           4.2041e-01, -1.8544e-01,  4.3391e-01, -6.7537e-02,  1.9093e-01,\\n\",\n      \"          -5.8209e-01, -2.1247e-02,  2.4594e-01,  3.7686e-01,  3.0338e-02,\\n\",\n      \"          -4.1501e-01,  1.7103e-01,  1.6851e-02, -1.5981e-01,  2.9293e-01,\\n\",\n      \"          -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\\n\",\n      \"          -1.8605e-01,  1.2303e-01,  6.8677e-01,  3.3999e-01,  2.9310e-01,\\n\",\n      \"           3.4023e-01, -1.6655e-01,  6.5662e-01,  4.0671e-01, -2.8659e-01,\\n\",\n      \"          -4.9588e-01,  1.6012e-01,  2.7112e-01,  2.1752e-01, -3.7658e-01,\\n\",\n      \"           3.0657e-01,  1.9236e-01, -4.6345e-01,  1.7681e-01,  9.2185e-02,\\n\",\n      \"          -1.5306e-01, -4.8642e-01,  5.8779e-01, -6.4074e-01,  2.2483e-01,\\n\",\n      \"          -1.0579e-01,  4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\\n\",\n      \"          -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\\n\",\n      \"         [ 1.0529e-02,  3.5908e-01,  2.3312e-01,  1.9650e-01, -5.9675e-02,\\n\",\n      \"          -1.5658e-01,  1.6122e-01,  1.8782e-01, -1.9782e-01, -2.5424e-01,\\n\",\n      \"          -2.2587e-01,  1.1983e-01,  5.4116e-02, -4.3192e-01, -2.1338e-01,\\n\",\n      \"           5.8897e-01,  4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\\n\",\n      \"          -5.1517e-01, -5.5736e-02,  1.4217e-01,  5.7948e-01, -1.6698e-01,\\n\",\n      \"          -1.8354e-01,  2.5574e-01,  9.2582e-02, -1.5009e-01, -1.5141e-01,\\n\",\n      \"           6.2154e-02,  1.9030e-01,  5.2375e-02,  3.0264e-01, -4.0980e-01,\\n\",\n      \"           9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\\n\",\n      \"           1.7333e-01,  1.3659e-02,  4.6606e-02, -6.6266e-01,  2.8069e-01,\\n\",\n      \"           2.4609e-01,  5.7418e-02,  3.7632e-01,  2.5864e-01,  1.4679e-01,\\n\",\n      \"           4.4736e-01,  4.5973e-01,  8.1457e-02, -5.2304e-01, -4.5289e-01,\\n\",\n      \"           1.7003e-01,  2.5693e-01, -3.7473e-01,  1.5084e-01,  3.6457e-01,\\n\",\n      \"          -4.0353e-02, -6.3108e-02,  9.9259e-02,  1.4259e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 9.5497e-02, -4.1627e-01,  2.8029e-02,  4.1203e-01, -6.8130e-03,\\n\",\n      \"          -2.8840e-01,  3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\\n\",\n      \"           3.4702e-01, -3.8960e-02,  5.7625e-01, -1.9183e-01,  2.6033e-01,\\n\",\n      \"          -4.3174e-01,  3.1093e-02, -1.8470e-01,  6.3293e-01, -5.6075e-02,\\n\",\n      \"          -5.1161e-01, -9.4454e-02,  1.5921e-01, -1.8132e-01, -1.6253e-01,\\n\",\n      \"           1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\\n\",\n      \"          -1.6154e-01,  2.0733e-01,  7.0576e-01,  1.3302e-01, -2.9825e-01,\\n\",\n      \"           2.0994e-01, -5.3865e-02,  3.8838e-01,  4.2451e-01, -5.2417e-01,\\n\",\n      \"          -5.0814e-01,  2.6738e-01,  3.7351e-01,  5.8097e-01, -6.1178e-01,\\n\",\n      \"           2.2877e-01,  2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\\n\",\n      \"           1.4218e-01, -3.0955e-01,  4.6556e-01, -1.5831e-01, -2.1650e-01,\\n\",\n      \"           3.8367e-02,  4.2855e-01,  1.9128e-01,  3.8580e-01,  1.1959e-01,\\n\",\n      \"          -2.9994e-01, -5.2117e-01,  2.1471e-01, -5.7907e-01],\\n\",\n      \"         [-1.0411e-01, -5.0381e-02,  2.7471e-01,  4.8769e-01,  1.4239e-01,\\n\",\n      \"           2.6347e-01,  5.2876e-01,  1.4041e-01, -2.0420e-01,  2.7689e-01,\\n\",\n      \"          -6.2801e-01,  5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\\n\",\n      \"           3.9456e-01,  2.7023e-01, -3.4516e-02,  7.8912e-02, -1.1492e-01,\\n\",\n      \"          -2.2979e-01, -1.7854e-01,  4.5892e-01,  2.8441e-01, -1.0770e-01,\\n\",\n      \"           1.6266e-01,  1.1944e-01,  3.1096e-01, -3.3360e-01, -6.6498e-02,\\n\",\n      \"           1.4587e-01,  3.4419e-01, -5.3772e-04,  4.5331e-01, -5.1342e-01,\\n\",\n      \"           1.3568e-01,  9.8949e-02, -8.0940e-02,  3.8612e-01, -1.3356e-01,\\n\",\n      \"          -1.0952e-01,  3.4308e-01,  1.8789e-01,  8.1325e-02,  9.0352e-02,\\n\",\n      \"           2.2188e-01,  1.5698e-01, -2.0673e-01,  6.6451e-02, -2.0891e-01,\\n\",\n      \"           1.9172e-01,  4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\\n\",\n      \"           2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01,  2.5902e-01,\\n\",\n      \"          -6.0417e-03, -4.4415e-01,  3.1402e-01,  3.1877e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.6335e-03, -2.3985e-01, -3.4736e-02,  8.8921e-02, -2.9755e-01,\\n\",\n      \"          -1.8779e-01,  2.6080e-01, -4.0660e-01,  2.4273e-01, -2.0277e-01,\\n\",\n      \"          -4.9214e-02,  9.4251e-02, -1.2161e-01,  1.5997e-01,  2.0561e-01,\\n\",\n      \"           1.5723e-01, -1.9595e-01, -4.2922e-01,  7.0747e-02,  1.4856e-01,\\n\",\n      \"          -1.5354e-01,  9.6606e-02,  1.7886e-01, -3.8590e-01, -2.9419e-01,\\n\",\n      \"           2.1776e-01,  2.6294e-02, -4.5975e-02,  2.0144e-02, -3.3976e-01,\\n\",\n      \"          -3.2033e-02,  1.9865e-01,  5.3036e-01,  1.5295e-01, -9.2089e-02,\\n\",\n      \"           4.3739e-01,  3.6364e-01,  3.4489e-01,  2.7756e-01, -2.2295e-01,\\n\",\n      \"          -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\\n\",\n      \"           2.5772e-01, -1.0638e-01, -7.3814e-02,  4.7898e-01, -1.9344e-01,\\n\",\n      \"           4.6140e-02,  1.3491e-02,  2.5996e-01,  2.2740e-01, -3.2146e-01,\\n\",\n      \"          -5.9065e-02, -4.3176e-01,  2.7157e-01,  3.1781e-01,  1.6585e-01,\\n\",\n      \"          -3.8220e-01, -4.3346e-01, -5.1061e-01,  1.0843e-01],\\n\",\n      \"         [ 9.6994e-02, -1.7331e-01,  2.1172e-01,  5.1296e-01, -2.1837e-01,\\n\",\n      \"          -1.5871e-02,  4.7803e-01,  1.5512e-01, -4.9505e-01,  2.5299e-03,\\n\",\n      \"          -6.7146e-01,  4.0029e-01, -6.4332e-02,  1.3088e-01,  3.7229e-02,\\n\",\n      \"           2.5459e-01,  7.3664e-01, -5.0367e-01,  1.3755e-01, -1.3922e-01,\\n\",\n      \"          -2.4012e-01,  2.2718e-02,  3.1692e-01, -1.0521e-01,  3.7480e-01,\\n\",\n      \"          -1.3657e-01, -2.5329e-01,  5.7562e-01, -5.2170e-02, -2.5802e-01,\\n\",\n      \"           2.7986e-01,  2.3848e-01,  1.4237e-01,  5.9374e-01, -3.3590e-01,\\n\",\n      \"           1.4647e-01, -6.6258e-02,  1.5446e-01,  3.4899e-01,  1.8101e-01,\\n\",\n      \"          -3.1963e-01,  1.2350e-01,  3.3166e-01, -2.9319e-01, -3.6108e-01,\\n\",\n      \"           3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03,  1.3249e-02,\\n\",\n      \"          -2.0109e-01,  1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\\n\",\n      \"           1.2868e-01,  3.8556e-01, -4.1688e-01, -3.0117e-02,  1.9605e-01,\\n\",\n      \"          -4.5693e-01, -4.9675e-01,  2.4458e-01,  2.3623e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.6365e-01, -2.7898e-01,  2.1363e-01,  2.3062e-01, -1.4550e-01,\\n\",\n      \"           1.6778e-02,  4.2505e-02, -4.5946e-01,  2.4220e-01, -1.9533e-01,\\n\",\n      \"          -1.5048e-01,  6.5674e-02, -3.3663e-01,  1.4862e-01, -3.8167e-02,\\n\",\n      \"           3.1526e-01, -2.9041e-02, -6.7158e-02,  6.2756e-02, -1.9502e-01,\\n\",\n      \"          -7.9184e-02, -1.7278e-01,  1.4336e-01, -3.5072e-01,  1.5444e-01,\\n\",\n      \"          -4.2982e-01,  5.2977e-01,  7.5553e-02, -4.6632e-01, -3.8594e-01,\\n\",\n      \"           2.5318e-01,  2.7747e-01,  4.8115e-01,  7.4816e-03, -2.9260e-01,\\n\",\n      \"          -2.1384e-02, -3.1256e-01,  2.7800e-01,  3.9665e-01, -1.6654e-01,\\n\",\n      \"          -3.9723e-01, -4.7709e-01, -6.2903e-01,  2.2307e-01,  4.1874e-02,\\n\",\n      \"           2.0719e-01,  6.7764e-02,  3.2923e-01,  4.4065e-01,  1.6063e-01,\\n\",\n      \"           1.4556e-01,  2.5320e-01,  3.6555e-01, -1.1610e-01, -4.0548e-02,\\n\",\n      \"           2.6207e-01, -2.5660e-01,  2.5825e-01,  5.6414e-01,  4.1154e-01,\\n\",\n      \"          -2.1353e-02, -6.4984e-02,  3.0729e-01, -3.8730e-01],\\n\",\n      \"         [ 5.4114e-02,  1.2911e-01,  1.1079e-01,  2.1384e-01, -3.7324e-02,\\n\",\n      \"           2.1465e-04,  1.8886e-01,  2.1697e-01,  2.6679e-01,  3.3500e-01,\\n\",\n      \"          -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02,  9.6619e-02,\\n\",\n      \"           1.5960e-01,  4.1786e-01, -4.3850e-01,  2.8198e-01, -4.6615e-01,\\n\",\n      \"           1.4454e-01,  6.5908e-02,  8.5281e-02, -4.2819e-02,  5.0067e-01,\\n\",\n      \"           1.7017e-01, -2.7224e-01,  2.5380e-01,  4.1439e-02, -3.5470e-01,\\n\",\n      \"           1.9666e-01, -1.9875e-01, -9.2995e-03,  3.5348e-01,  4.8985e-02,\\n\",\n      \"           1.6634e-01,  2.1250e-01,  1.6368e-01, -2.9762e-01, -1.7645e-01,\\n\",\n      \"          -4.1179e-01,  3.5149e-01,  2.2540e-01,  2.3828e-02, -1.3123e-01,\\n\",\n      \"           2.8975e-01,  1.1899e-01,  1.6702e-01,  1.7360e-01,  1.4900e-01,\\n\",\n      \"          -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\\n\",\n      \"          -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01,  4.7001e-01,\\n\",\n      \"          -4.0074e-01, -5.6701e-01, -3.2914e-01,  2.7732e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0713e-01,  4.5937e-01, -1.6181e-01,  4.3321e-02,  1.1174e-01,\\n\",\n      \"          -6.1644e-01, -5.7113e-01, -5.0487e-01,  3.5190e-01,  4.1288e-02,\\n\",\n      \"          -2.7544e-01, -4.4448e-02, -2.5642e-01,  6.6191e-01, -1.8626e-01,\\n\",\n      \"          -5.6468e-02, -7.5144e-02,  6.2824e-01,  4.6276e-01, -3.3513e-01,\\n\",\n      \"          -3.5146e-01, -1.9119e-01,  8.3969e-02, -2.7791e-01,  2.1230e-01,\\n\",\n      \"          -3.5122e-01,  3.3878e-01,  4.5148e-01, -1.3567e-01, -3.3026e-01,\\n\",\n      \"           5.8611e-01, -3.8844e-01,  2.9644e-01, -1.6744e-01,  4.0907e-02,\\n\",\n      \"           7.5437e-03, -1.6675e-01,  2.5426e-01,  3.3875e-01,  7.0346e-02,\\n\",\n      \"           7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\\n\",\n      \"           5.3298e-02, -5.7836e-02,  3.7722e-02,  4.2650e-01,  3.8631e-01,\\n\",\n      \"          -2.0902e-01,  4.5654e-01, -1.7730e-01, -4.1286e-01,  2.1224e-02,\\n\",\n      \"           2.3993e-01, -6.1541e-01,  5.8383e-01,  3.3904e-01,  2.5489e-01,\\n\",\n      \"          -5.3822e-01, -5.1609e-03,  7.5159e-02, -5.2072e-01],\\n\",\n      \"         [-1.6287e-01, -1.2638e-02,  2.4461e-01,  4.2238e-01, -7.5080e-02,\\n\",\n      \"           6.8997e-02,  5.9353e-02, -4.6653e-01,  2.5298e-01,  2.6466e-01,\\n\",\n      \"          -2.6296e-01, -2.3991e-02, -3.3667e-01,  2.0203e-02, -1.0276e-01,\\n\",\n      \"           3.0682e-01,  3.8102e-01, -1.4313e-01,  2.6840e-01, -5.8352e-01,\\n\",\n      \"          -1.3001e-02, -2.0605e-01,  1.3328e-01, -3.5768e-02,  5.0879e-01,\\n\",\n      \"          -4.9018e-01,  3.4093e-01,  2.6714e-01, -4.5952e-01, -3.8416e-01,\\n\",\n      \"           3.6284e-01,  2.4918e-03,  2.9864e-01,  7.5558e-02, -2.7992e-01,\\n\",\n      \"          -1.2603e-01, -4.7697e-01,  2.0969e-01,  4.8302e-02, -1.4302e-01,\\n\",\n      \"          -4.7573e-01, -2.2340e-01, -3.0772e-01,  4.1387e-01,  1.2074e-01,\\n\",\n      \"           2.5394e-01,  1.6521e-01,  4.2968e-01,  3.1515e-01,  3.1856e-01,\\n\",\n      \"           2.1915e-02, -3.8564e-02,  6.7546e-02, -6.3149e-01,  4.9406e-02,\\n\",\n      \"           1.7295e-01, -1.1359e-01, -1.2223e-01,  4.0665e-01,  5.6251e-01,\\n\",\n      \"           9.3645e-04, -1.5734e-01,  3.2205e-01, -3.8656e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([2, 2])\\n\",\n      \"dec_state: tensor([[[ 0.1598, -0.5192, -0.4544,  0.1326, -0.4550,  0.0950,  0.5252,\\n\",\n      \"           0.0941, -0.5941,  0.2322,  0.0419, -0.1279,  0.1441, -0.2758,\\n\",\n      \"          -0.4945,  0.0032, -0.0663,  0.1325, -0.1111,  0.2664,  0.4270,\\n\",\n      \"          -0.1420, -0.1837,  0.3318,  0.2055, -0.3246, -0.3387, -0.2512,\\n\",\n      \"          -0.0645, -0.0972, -0.1308,  0.2196, -0.3165,  0.1861, -0.0413,\\n\",\n      \"          -0.3873, -0.1388,  0.1504,  0.2079,  0.1463,  0.2082,  0.5620,\\n\",\n      \"          -0.1028, -0.0043,  0.2547, -0.2518, -0.1784,  0.3456,  0.1439,\\n\",\n      \"          -0.1320, -0.2583,  0.1184, -0.3070, -0.1830, -0.2651, -0.0822,\\n\",\n      \"           0.3493,  0.0058,  0.4257,  0.0453,  0.0591, -0.2668, -0.2254,\\n\",\n      \"           0.1250],\\n\",\n      \"         [ 0.7017, -0.2832, -0.6340,  0.2570, -0.1849,  0.3413,  0.5379,\\n\",\n      \"          -0.0836, -0.5861,  0.2372, -0.1283, -0.2033,  0.4924, -0.3006,\\n\",\n      \"          -0.7412, -0.3611,  0.0551,  0.3086, -0.2630,  0.2548,  0.2453,\\n\",\n      \"          -0.3922, -0.0362,  0.1369,  0.5229, -0.5280,  0.1842, -0.7001,\\n\",\n      \"          -0.4127, -0.2317, -0.7313,  0.1241, -0.4042,  0.5148,  0.0511,\\n\",\n      \"          -0.6836,  0.0130,  0.0684,  0.2320, -0.1575,  0.0111,  0.4927,\\n\",\n      \"           0.0787,  0.2176, -0.1059,  0.0876,  0.1273,  0.3489, -0.4420,\\n\",\n      \"           0.0491, -0.4722,  0.2911,  0.0516, -0.4715,  0.2203, -0.3771,\\n\",\n      \"           0.4890,  0.1657,  0.4695, -0.0928, -0.3612, -0.1525, -0.3337,\\n\",\n      \"          -0.2069]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.3727e-01,  7.2181e-02, -4.8407e-02,  3.9534e-01,  1.7992e-01,\\n\",\n      \"           1.4430e-01,  1.3021e-01, -5.1874e-01,  9.1039e-02, -1.9068e-01,\\n\",\n      \"           2.6788e-01,  2.2892e-02, -8.0218e-02,  2.0840e-01,  1.3134e-01,\\n\",\n      \"           2.3112e-01,  4.3599e-02, -2.9930e-01,  2.1027e-01, -3.4507e-02,\\n\",\n      \"          -8.8752e-02, -1.4755e-01,  6.6381e-02, -3.3483e-01, -7.0215e-02,\\n\",\n      \"           4.1894e-02, -4.7509e-01, -2.2355e-02, -3.3574e-02, -1.0742e-01,\\n\",\n      \"           1.1633e-01, -2.9537e-01,  5.5430e-02,  5.4464e-02, -4.3290e-02,\\n\",\n      \"           7.1843e-02, -3.4024e-01, -3.7712e-02,  2.8614e-01, -6.0731e-02,\\n\",\n      \"          -2.6710e-01, -3.5177e-01, -1.0987e-02, -1.0282e-01, -8.8938e-02,\\n\",\n      \"           3.7795e-01, -1.3003e-01,  1.7851e-01,  2.4400e-01, -3.0191e-01,\\n\",\n      \"           4.8482e-01,  2.6197e-01,  2.3043e-01, -4.2391e-01, -8.0003e-02,\\n\",\n      \"           2.5831e-01, -3.1049e-01,  1.7894e-01,  2.2598e-01,  1.0081e-01,\\n\",\n      \"          -2.7511e-01,  7.8730e-02, -2.0066e-01, -1.5597e-01],\\n\",\n      \"         [ 2.5820e-01,  1.9188e-01,  4.7999e-01,  6.9774e-02, -2.0267e-01,\\n\",\n      \"           3.7522e-01, -8.6744e-02,  2.5228e-01, -1.2846e-01,  1.0590e-01,\\n\",\n      \"          -2.7586e-01,  1.0311e-01,  1.1307e-01, -1.0545e-01,  2.9488e-01,\\n\",\n      \"           5.4775e-01, -1.6711e-01,  4.6806e-02, -2.4186e-01, -3.5100e-01,\\n\",\n      \"          -2.9758e-01, -3.1168e-01,  1.9277e-01,  1.4047e-01, -7.5636e-02,\\n\",\n      \"          -1.8808e-01, -2.0158e-01,  3.6178e-01, -9.5802e-02, -1.2708e-01,\\n\",\n      \"           1.0763e-01, -5.5428e-02,  1.1961e-01,  2.4258e-01, -2.8356e-01,\\n\",\n      \"          -2.4466e-01, -1.7622e-01, -6.5579e-02,  1.2709e-01,  4.5320e-02,\\n\",\n      \"           9.7881e-02,  2.9991e-01,  2.2304e-01, -3.3725e-01, -7.2100e-02,\\n\",\n      \"          -1.7546e-01, -2.9953e-01,  4.6157e-02, -1.5875e-01, -2.6537e-01,\\n\",\n      \"           3.2382e-01,  9.5382e-03,  2.2192e-01, -2.5515e-01, -4.1426e-01,\\n\",\n      \"          -9.4852e-02, -4.9565e-02,  1.5019e-01,  2.4926e-01,  1.9148e-01,\\n\",\n      \"          -5.3635e-01, -1.5326e-01,  1.6425e-01, -3.9051e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0083e-01, -3.0158e-01, -2.8431e-02,  7.8782e-01,  2.3501e-02,\\n\",\n      \"           9.2542e-02,  3.9450e-01, -6.1034e-03,  2.4454e-01, -3.1812e-01,\\n\",\n      \"           2.2186e-01,  1.3691e-01,  2.2964e-01, -3.7366e-01,  4.4578e-01,\\n\",\n      \"           1.5186e-01,  2.7236e-02,  4.9386e-02,  2.2214e-01, -8.3106e-02,\\n\",\n      \"          -2.9856e-01, -4.7007e-02,  2.0091e-01, -2.0271e-01,  2.0945e-01,\\n\",\n      \"          -1.2809e-01, -3.7861e-01, -1.3235e-01,  3.6467e-02, -2.1870e-01,\\n\",\n      \"          -1.0883e-01, -1.7587e-01,  4.0160e-01,  4.2037e-01,  4.8252e-02,\\n\",\n      \"           2.8059e-01, -4.1559e-01,  6.3770e-01,  3.2591e-01,  9.4536e-02,\\n\",\n      \"          -2.2653e-02, -3.4345e-02,  1.8139e-01, -1.6369e-01,  4.0315e-02,\\n\",\n      \"           3.9302e-01,  2.5815e-01, -1.6280e-01,  3.2198e-01,  3.0073e-01,\\n\",\n      \"           1.7263e-02, -4.5440e-02,  2.6601e-01, -5.0357e-01, -4.8120e-02,\\n\",\n      \"          -1.4780e-01,  2.7241e-02, -1.4115e-01, -8.8778e-03,  6.6657e-01,\\n\",\n      \"          -5.2895e-01, -2.7856e-01, -2.5972e-01, -3.5766e-02],\\n\",\n      \"         [ 6.7260e-02,  1.2996e-01,  1.1819e-01, -2.0483e-01, -5.4274e-01,\\n\",\n      \"          -1.1038e-01,  2.4815e-02,  6.9911e-02, -1.4384e-01, -3.7275e-01,\\n\",\n      \"          -1.8653e-01, -3.5665e-02, -1.9185e-01, -2.3021e-01, -1.3643e-01,\\n\",\n      \"           5.1307e-01,  2.3566e-01, -1.3892e-01, -3.9719e-01, -3.5897e-01,\\n\",\n      \"          -3.0653e-01, -2.0400e-01,  3.5982e-01,  4.9754e-01,  1.0173e-01,\\n\",\n      \"          -4.0342e-01,  4.9540e-01,  2.5269e-01,  7.8506e-02, -2.3170e-02,\\n\",\n      \"           1.8902e-01,  3.7163e-01, -1.1237e-01,  6.6350e-01, -5.1017e-01,\\n\",\n      \"           6.4472e-02, -5.7414e-02, -8.7294e-02,  2.0384e-02, -2.6563e-02,\\n\",\n      \"           1.7521e-01,  6.4441e-02, -4.7740e-01, -7.6615e-02, -1.2150e-02,\\n\",\n      \"          -1.3213e-01, -1.8207e-01, -3.2019e-01, -1.6708e-01, -1.3199e-02,\\n\",\n      \"           3.3169e-01,  2.3594e-01,  3.5904e-02, -4.0302e-01, -3.1485e-01,\\n\",\n      \"           3.4287e-01,  1.7439e-01, -4.6533e-01, -2.8719e-01, -2.2285e-01,\\n\",\n      \"          -6.8716e-01,  5.1406e-02,  2.5545e-01,  2.5696e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.0629e-01, -3.7659e-01,  4.5863e-02,  5.3217e-01, -1.2700e-01,\\n\",\n      \"          -1.4886e-01,  1.8039e-01, -4.1970e-01, -1.4894e-01, -6.0325e-01,\\n\",\n      \"           4.2041e-01, -1.8544e-01,  4.3391e-01, -6.7537e-02,  1.9093e-01,\\n\",\n      \"          -5.8209e-01, -2.1247e-02,  2.4594e-01,  3.7686e-01,  3.0338e-02,\\n\",\n      \"          -4.1501e-01,  1.7103e-01,  1.6851e-02, -1.5981e-01,  2.9293e-01,\\n\",\n      \"          -1.0560e-01, -1.7900e-01, -5.9172e-02, -3.4558e-01, -2.1237e-01,\\n\",\n      \"          -1.8605e-01,  1.2303e-01,  6.8677e-01,  3.3999e-01,  2.9310e-01,\\n\",\n      \"           3.4023e-01, -1.6655e-01,  6.5662e-01,  4.0671e-01, -2.8659e-01,\\n\",\n      \"          -4.9588e-01,  1.6012e-01,  2.7112e-01,  2.1752e-01, -3.7658e-01,\\n\",\n      \"           3.0657e-01,  1.9236e-01, -4.6345e-01,  1.7681e-01,  9.2185e-02,\\n\",\n      \"          -1.5306e-01, -4.8642e-01,  5.8779e-01, -6.4074e-01,  2.2483e-01,\\n\",\n      \"          -1.0579e-01,  4.6897e-01, -1.5907e-01, -2.5614e-01, -1.0678e-01,\\n\",\n      \"          -2.4263e-01, -5.8294e-01, -9.1765e-02, -2.2324e-01],\\n\",\n      \"         [ 1.0529e-02,  3.5908e-01,  2.3312e-01,  1.9650e-01, -5.9675e-02,\\n\",\n      \"          -1.5658e-01,  1.6122e-01,  1.8782e-01, -1.9782e-01, -2.5424e-01,\\n\",\n      \"          -2.2587e-01,  1.1983e-01,  5.4116e-02, -4.3192e-01, -2.1338e-01,\\n\",\n      \"           5.8897e-01,  4.0719e-02, -3.1235e-01, -8.8105e-02, -2.7732e-02,\\n\",\n      \"          -5.1517e-01, -5.5736e-02,  1.4217e-01,  5.7948e-01, -1.6698e-01,\\n\",\n      \"          -1.8354e-01,  2.5574e-01,  9.2582e-02, -1.5009e-01, -1.5141e-01,\\n\",\n      \"           6.2154e-02,  1.9030e-01,  5.2375e-02,  3.0264e-01, -4.0980e-01,\\n\",\n      \"           9.8797e-02, -1.0576e-01, -4.7008e-03, -2.5593e-01, -4.0163e-01,\\n\",\n      \"           1.7333e-01,  1.3659e-02,  4.6606e-02, -6.6266e-01,  2.8069e-01,\\n\",\n      \"           2.4609e-01,  5.7418e-02,  3.7632e-01,  2.5864e-01,  1.4679e-01,\\n\",\n      \"           4.4736e-01,  4.5973e-01,  8.1457e-02, -5.2304e-01, -4.5289e-01,\\n\",\n      \"           1.7003e-01,  2.5693e-01, -3.7473e-01,  1.5084e-01,  3.6457e-01,\\n\",\n      \"          -4.0353e-02, -6.3108e-02,  9.9259e-02,  1.4259e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 9.5497e-02, -4.1627e-01,  2.8029e-02,  4.1203e-01, -6.8130e-03,\\n\",\n      \"          -2.8840e-01,  3.1830e-02, -2.3406e-01, -9.4287e-02, -8.8881e-02,\\n\",\n      \"           3.4702e-01, -3.8960e-02,  5.7625e-01, -1.9183e-01,  2.6033e-01,\\n\",\n      \"          -4.3174e-01,  3.1093e-02, -1.8470e-01,  6.3293e-01, -5.6075e-02,\\n\",\n      \"          -5.1161e-01, -9.4454e-02,  1.5921e-01, -1.8132e-01, -1.6253e-01,\\n\",\n      \"           1.1630e-01, -4.0052e-01, -1.1077e-01, -3.9959e-01, -1.8218e-01,\\n\",\n      \"          -1.6154e-01,  2.0733e-01,  7.0576e-01,  1.3302e-01, -2.9825e-01,\\n\",\n      \"           2.0994e-01, -5.3865e-02,  3.8838e-01,  4.2451e-01, -5.2417e-01,\\n\",\n      \"          -5.0814e-01,  2.6738e-01,  3.7351e-01,  5.8097e-01, -6.1178e-01,\\n\",\n      \"           2.2877e-01,  2.1432e-01, -5.3334e-01, -1.7864e-02, -2.7786e-01,\\n\",\n      \"           1.4218e-01, -3.0955e-01,  4.6556e-01, -1.5831e-01, -2.1650e-01,\\n\",\n      \"           3.8367e-02,  4.2855e-01,  1.9128e-01,  3.8580e-01,  1.1959e-01,\\n\",\n      \"          -2.9994e-01, -5.2117e-01,  2.1471e-01, -5.7907e-01],\\n\",\n      \"         [-1.0411e-01, -5.0381e-02,  2.7471e-01,  4.8769e-01,  1.4239e-01,\\n\",\n      \"           2.6347e-01,  5.2876e-01,  1.4041e-01, -2.0420e-01,  2.7689e-01,\\n\",\n      \"          -6.2801e-01,  5.6588e-01, -1.7373e-02, -3.5899e-01, -1.4637e-01,\\n\",\n      \"           3.9456e-01,  2.7023e-01, -3.4516e-02,  7.8912e-02, -1.1492e-01,\\n\",\n      \"          -2.2979e-01, -1.7854e-01,  4.5892e-01,  2.8441e-01, -1.0770e-01,\\n\",\n      \"           1.6266e-01,  1.1944e-01,  3.1096e-01, -3.3360e-01, -6.6498e-02,\\n\",\n      \"           1.4587e-01,  3.4419e-01, -5.3772e-04,  4.5331e-01, -5.1342e-01,\\n\",\n      \"           1.3568e-01,  9.8949e-02, -8.0940e-02,  3.8612e-01, -1.3356e-01,\\n\",\n      \"          -1.0952e-01,  3.4308e-01,  1.8789e-01,  8.1325e-02,  9.0352e-02,\\n\",\n      \"           2.2188e-01,  1.5698e-01, -2.0673e-01,  6.6451e-02, -2.0891e-01,\\n\",\n      \"           1.9172e-01,  4.2463e-01, -9.5938e-02, -3.9992e-01, -4.5947e-02,\\n\",\n      \"           2.7997e-01, -1.7876e-02, -1.3948e-01, -1.5309e-01,  2.5902e-01,\\n\",\n      \"          -6.0417e-03, -4.4415e-01,  3.1402e-01,  3.1877e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.6335e-03, -2.3985e-01, -3.4736e-02,  8.8921e-02, -2.9755e-01,\\n\",\n      \"          -1.8779e-01,  2.6080e-01, -4.0660e-01,  2.4273e-01, -2.0277e-01,\\n\",\n      \"          -4.9214e-02,  9.4251e-02, -1.2161e-01,  1.5997e-01,  2.0561e-01,\\n\",\n      \"           1.5723e-01, -1.9595e-01, -4.2922e-01,  7.0747e-02,  1.4856e-01,\\n\",\n      \"          -1.5354e-01,  9.6606e-02,  1.7886e-01, -3.8590e-01, -2.9419e-01,\\n\",\n      \"           2.1776e-01,  2.6294e-02, -4.5975e-02,  2.0144e-02, -3.3976e-01,\\n\",\n      \"          -3.2033e-02,  1.9865e-01,  5.3036e-01,  1.5295e-01, -9.2089e-02,\\n\",\n      \"           4.3739e-01,  3.6364e-01,  3.4489e-01,  2.7756e-01, -2.2295e-01,\\n\",\n      \"          -2.8804e-01, -4.2103e-01, -3.3407e-01, -5.6083e-01, -2.7639e-01,\\n\",\n      \"           2.5772e-01, -1.0638e-01, -7.3814e-02,  4.7898e-01, -1.9344e-01,\\n\",\n      \"           4.6140e-02,  1.3491e-02,  2.5996e-01,  2.2740e-01, -3.2146e-01,\\n\",\n      \"          -5.9065e-02, -4.3176e-01,  2.7157e-01,  3.1781e-01,  1.6585e-01,\\n\",\n      \"          -3.8220e-01, -4.3346e-01, -5.1061e-01,  1.0843e-01],\\n\",\n      \"         [ 9.6994e-02, -1.7331e-01,  2.1172e-01,  5.1296e-01, -2.1837e-01,\\n\",\n      \"          -1.5871e-02,  4.7803e-01,  1.5512e-01, -4.9505e-01,  2.5299e-03,\\n\",\n      \"          -6.7146e-01,  4.0029e-01, -6.4332e-02,  1.3088e-01,  3.7229e-02,\\n\",\n      \"           2.5459e-01,  7.3664e-01, -5.0367e-01,  1.3755e-01, -1.3922e-01,\\n\",\n      \"          -2.4012e-01,  2.2718e-02,  3.1692e-01, -1.0521e-01,  3.7480e-01,\\n\",\n      \"          -1.3657e-01, -2.5329e-01,  5.7562e-01, -5.2170e-02, -2.5802e-01,\\n\",\n      \"           2.7986e-01,  2.3848e-01,  1.4237e-01,  5.9374e-01, -3.3590e-01,\\n\",\n      \"           1.4647e-01, -6.6258e-02,  1.5446e-01,  3.4899e-01,  1.8101e-01,\\n\",\n      \"          -3.1963e-01,  1.2350e-01,  3.3166e-01, -2.9319e-01, -3.6108e-01,\\n\",\n      \"           3.9392e-02, -1.7986e-01, -1.5658e-01, -6.2244e-03,  1.3249e-02,\\n\",\n      \"          -2.0109e-01,  1.4655e-01, -2.3619e-01, -4.7591e-01, -1.7717e-01,\\n\",\n      \"           1.2868e-01,  3.8556e-01, -4.1688e-01, -3.0117e-02,  1.9605e-01,\\n\",\n      \"          -4.5693e-01, -4.9675e-01,  2.4458e-01,  2.3623e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.6365e-01, -2.7898e-01,  2.1363e-01,  2.3062e-01, -1.4550e-01,\\n\",\n      \"           1.6778e-02,  4.2505e-02, -4.5946e-01,  2.4220e-01, -1.9533e-01,\\n\",\n      \"          -1.5048e-01,  6.5674e-02, -3.3663e-01,  1.4862e-01, -3.8167e-02,\\n\",\n      \"           3.1526e-01, -2.9041e-02, -6.7158e-02,  6.2756e-02, -1.9502e-01,\\n\",\n      \"          -7.9184e-02, -1.7278e-01,  1.4336e-01, -3.5072e-01,  1.5444e-01,\\n\",\n      \"          -4.2982e-01,  5.2977e-01,  7.5553e-02, -4.6632e-01, -3.8594e-01,\\n\",\n      \"           2.5318e-01,  2.7747e-01,  4.8115e-01,  7.4816e-03, -2.9260e-01,\\n\",\n      \"          -2.1384e-02, -3.1256e-01,  2.7800e-01,  3.9665e-01, -1.6654e-01,\\n\",\n      \"          -3.9723e-01, -4.7709e-01, -6.2903e-01,  2.2307e-01,  4.1874e-02,\\n\",\n      \"           2.0719e-01,  6.7764e-02,  3.2923e-01,  4.4065e-01,  1.6063e-01,\\n\",\n      \"           1.4556e-01,  2.5320e-01,  3.6555e-01, -1.1610e-01, -4.0548e-02,\\n\",\n      \"           2.6207e-01, -2.5660e-01,  2.5825e-01,  5.6414e-01,  4.1154e-01,\\n\",\n      \"          -2.1353e-02, -6.4984e-02,  3.0729e-01, -3.8730e-01],\\n\",\n      \"         [ 5.4114e-02,  1.2911e-01,  1.1079e-01,  2.1384e-01, -3.7324e-02,\\n\",\n      \"           2.1465e-04,  1.8886e-01,  2.1697e-01,  2.6679e-01,  3.3500e-01,\\n\",\n      \"          -2.5981e-01, -7.3864e-02, -1.1770e-01, -5.4151e-02,  9.6619e-02,\\n\",\n      \"           1.5960e-01,  4.1786e-01, -4.3850e-01,  2.8198e-01, -4.6615e-01,\\n\",\n      \"           1.4454e-01,  6.5908e-02,  8.5281e-02, -4.2819e-02,  5.0067e-01,\\n\",\n      \"           1.7017e-01, -2.7224e-01,  2.5380e-01,  4.1439e-02, -3.5470e-01,\\n\",\n      \"           1.9666e-01, -1.9875e-01, -9.2995e-03,  3.5348e-01,  4.8985e-02,\\n\",\n      \"           1.6634e-01,  2.1250e-01,  1.6368e-01, -2.9762e-01, -1.7645e-01,\\n\",\n      \"          -4.1179e-01,  3.5149e-01,  2.2540e-01,  2.3828e-02, -1.3123e-01,\\n\",\n      \"           2.8975e-01,  1.1899e-01,  1.6702e-01,  1.7360e-01,  1.4900e-01,\\n\",\n      \"          -1.7971e-01, -4.8574e-01, -2.8011e-01, -5.9505e-01, -4.3345e-03,\\n\",\n      \"          -2.0717e-01, -3.0240e-02, -3.2748e-01, -3.3255e-01,  4.7001e-01,\\n\",\n      \"          -4.0074e-01, -5.6701e-01, -3.2914e-01,  2.7732e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0713e-01,  4.5937e-01, -1.6181e-01,  4.3321e-02,  1.1174e-01,\\n\",\n      \"          -6.1644e-01, -5.7113e-01, -5.0487e-01,  3.5190e-01,  4.1288e-02,\\n\",\n      \"          -2.7544e-01, -4.4448e-02, -2.5642e-01,  6.6191e-01, -1.8626e-01,\\n\",\n      \"          -5.6468e-02, -7.5144e-02,  6.2824e-01,  4.6276e-01, -3.3513e-01,\\n\",\n      \"          -3.5146e-01, -1.9119e-01,  8.3969e-02, -2.7791e-01,  2.1230e-01,\\n\",\n      \"          -3.5122e-01,  3.3878e-01,  4.5148e-01, -1.3567e-01, -3.3026e-01,\\n\",\n      \"           5.8611e-01, -3.8844e-01,  2.9644e-01, -1.6744e-01,  4.0907e-02,\\n\",\n      \"           7.5437e-03, -1.6675e-01,  2.5426e-01,  3.3875e-01,  7.0346e-02,\\n\",\n      \"           7.7705e-02, -8.3761e-01, -1.8834e-01, -3.6823e-02, -1.8322e-01,\\n\",\n      \"           5.3298e-02, -5.7836e-02,  3.7722e-02,  4.2650e-01,  3.8631e-01,\\n\",\n      \"          -2.0902e-01,  4.5654e-01, -1.7730e-01, -4.1286e-01,  2.1224e-02,\\n\",\n      \"           2.3993e-01, -6.1541e-01,  5.8383e-01,  3.3904e-01,  2.5489e-01,\\n\",\n      \"          -5.3822e-01, -5.1609e-03,  7.5159e-02, -5.2072e-01],\\n\",\n      \"         [-1.6287e-01, -1.2638e-02,  2.4461e-01,  4.2238e-01, -7.5080e-02,\\n\",\n      \"           6.8997e-02,  5.9353e-02, -4.6653e-01,  2.5298e-01,  2.6466e-01,\\n\",\n      \"          -2.6296e-01, -2.3991e-02, -3.3667e-01,  2.0203e-02, -1.0276e-01,\\n\",\n      \"           3.0682e-01,  3.8102e-01, -1.4313e-01,  2.6840e-01, -5.8352e-01,\\n\",\n      \"          -1.3001e-02, -2.0605e-01,  1.3328e-01, -3.5768e-02,  5.0879e-01,\\n\",\n      \"          -4.9018e-01,  3.4093e-01,  2.6714e-01, -4.5952e-01, -3.8416e-01,\\n\",\n      \"           3.6284e-01,  2.4918e-03,  2.9864e-01,  7.5558e-02, -2.7992e-01,\\n\",\n      \"          -1.2603e-01, -4.7697e-01,  2.0969e-01,  4.8302e-02, -1.4302e-01,\\n\",\n      \"          -4.7573e-01, -2.2340e-01, -3.0772e-01,  4.1387e-01,  1.2074e-01,\\n\",\n      \"           2.5394e-01,  1.6521e-01,  4.2968e-01,  3.1515e-01,  3.1856e-01,\\n\",\n      \"           2.1915e-02, -3.8564e-02,  6.7546e-02, -6.3149e-01,  4.9406e-02,\\n\",\n      \"           1.7295e-01, -1.1359e-01, -1.2223e-01,  4.0665e-01,  5.6251e-01,\\n\",\n      \"           9.3645e-04, -1.5734e-01,  3.2205e-01, -3.8656e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[ 5,  4, 18, 34,  3,  2,  0],\\n\",\n      \"        [11,  4,  9, 30,  3,  2,  0]])\\n\",\n      \"tensor([[ 8,  4, 10, 11, 32,  3,  2],\\n\",\n      \"        [ 6,  4,  9, 19,  3,  2,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-0.3390,  0.7313, -0.1140,  0.3616, -0.6071, -0.6479, -0.7968,\\n\",\n      \"          -0.6883,  0.6935,  0.1689,  0.1176, -0.3013, -0.2897,  0.6811,\\n\",\n      \"          -0.3148,  0.1621, -0.3967,  0.7452,  0.6786,  0.6220, -0.5628,\\n\",\n      \"          -0.4006,  0.6172,  0.2906,  0.2938, -0.1687, -0.0540,  0.3280,\\n\",\n      \"          -0.2107,  0.0992,  0.3226, -0.5874,  0.6948,  0.2786,  0.2436,\\n\",\n      \"           0.0821,  0.1711,  0.4419, -0.2745, -0.5018,  0.4494, -0.9272,\\n\",\n      \"           0.1226,  0.0702, -0.7144,  0.5768, -0.1645, -0.3152,  0.6749,\\n\",\n      \"           0.6731, -0.6666,  0.8180, -0.4030, -0.1996, -0.0228,  0.0205,\\n\",\n      \"          -0.5821,  0.7078,  0.3460,  0.5973, -0.5928,  0.2317, -0.1003,\\n\",\n      \"          -0.6965],\\n\",\n      \"         [-0.3180,  0.7016, -0.0130,  0.3554, -0.6481, -0.6268, -0.7554,\\n\",\n      \"          -0.6845,  0.6647,  0.2822,  0.0176, -0.3127, -0.2528,  0.6666,\\n\",\n      \"          -0.2626,  0.1340, -0.4595,  0.7440,  0.6881,  0.6730, -0.6045,\\n\",\n      \"          -0.3506,  0.5486,  0.2792,  0.3682, -0.0568, -0.0596,  0.3470,\\n\",\n      \"          -0.1910,  0.2346,  0.2711, -0.5740,  0.7259,  0.4405,  0.1851,\\n\",\n      \"           0.0551,  0.2143,  0.3579, -0.1675, -0.5591,  0.4453, -0.9335,\\n\",\n      \"           0.0994,  0.1098, -0.6904,  0.6650, -0.1407, -0.2936,  0.6418,\\n\",\n      \"           0.6324, -0.6332,  0.7773, -0.2534, -0.1620, -0.0162,  0.0044,\\n\",\n      \"          -0.6060,  0.6763,  0.3150,  0.5389, -0.6203,  0.1455, -0.0923,\\n\",\n      \"          -0.6417]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\\n\",\n      \"           1.0795e-01,  1.1117e-01,  1.0526e-01, -1.9621e-01, -1.7305e-01,\\n\",\n      \"           5.2908e-02, -1.1708e-01, -3.1992e-01,  2.5680e-01,  1.3125e-01,\\n\",\n      \"          -5.8317e-01,  2.9118e-01,  9.6432e-02, -1.2121e-01, -5.2562e-01,\\n\",\n      \"          -4.9280e-01,  9.9200e-04,  1.0100e-01, -1.4418e-01, -9.7080e-04,\\n\",\n      \"           4.9621e-02, -7.5445e-02,  8.9830e-02,  8.4073e-02, -1.0900e-01,\\n\",\n      \"          -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01,  6.5989e-02,\\n\",\n      \"          -1.1115e-01, -1.8222e-01,  2.0451e-02, -9.9988e-02, -3.5648e-01,\\n\",\n      \"           1.4316e-01,  5.8419e-01,  5.7575e-02,  7.9051e-02, -4.5552e-01,\\n\",\n      \"          -2.5276e-01,  3.1515e-01, -7.7021e-02, -2.6506e-02,  3.6586e-01,\\n\",\n      \"           7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\\n\",\n      \"          -2.8730e-02, -3.3728e-01,  1.7582e-01,  2.9807e-02, -3.0381e-01,\\n\",\n      \"           3.6682e-01,  2.1646e-01,  2.1079e-01, -2.2197e-01],\\n\",\n      \"         [-5.9364e-02,  4.9278e-01,  3.9939e-01, -6.4556e-01, -5.4136e-01,\\n\",\n      \"           5.7767e-01, -8.2846e-02,  3.4757e-01, -2.6940e-01, -1.3587e-01,\\n\",\n      \"           2.9661e-01,  1.9267e-01,  3.3508e-01, -2.3874e-01,  1.6769e-01,\\n\",\n      \"           8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\\n\",\n      \"          -1.1036e-01, -2.3516e-01, -3.3576e-01,  6.6362e-02, -4.2507e-01,\\n\",\n      \"          -1.2496e-01,  7.5707e-01,  3.2817e-01,  4.5369e-01,  3.1337e-01,\\n\",\n      \"          -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\\n\",\n      \"           2.0347e-02,  1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\\n\",\n      \"           1.2553e-01, -2.9570e-01,  6.3393e-02,  4.9087e-01,  2.6956e-01,\\n\",\n      \"          -9.9909e-02,  1.1632e-01,  3.3636e-02, -6.5299e-01,  3.1438e-03,\\n\",\n      \"           1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02,  8.3628e-02,\\n\",\n      \"           2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\\n\",\n      \"           4.2149e-01,  3.3780e-02, -6.2170e-02, -1.9143e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.2377e-01, -3.5410e-01, -2.7126e-01,  6.7114e-01, -1.3655e-01,\\n\",\n      \"           1.6070e-01,  3.2438e-01,  4.1661e-01,  1.9747e-01, -2.9179e-01,\\n\",\n      \"           9.6542e-02, -5.5992e-02,  1.0121e-01, -3.8642e-01,  4.1851e-01,\\n\",\n      \"          -1.1139e-01,  2.4136e-01,  2.3179e-01,  5.1139e-02, -4.5248e-01,\\n\",\n      \"          -5.3721e-01,  8.7373e-02,  2.3784e-01,  1.2280e-01,  2.1850e-01,\\n\",\n      \"          -9.6268e-02, -1.6007e-01, -1.3404e-01,  1.6351e-01, -2.4172e-01,\\n\",\n      \"          -2.5418e-01, -9.7521e-02,  2.4446e-01,  3.5432e-01,  9.5840e-02,\\n\",\n      \"           1.5298e-01, -4.6807e-01,  7.6614e-01,  1.1059e-01,  1.0575e-01,\\n\",\n      \"           1.7815e-01,  5.6318e-01,  1.7585e-01, -7.1355e-02, -2.4294e-01,\\n\",\n      \"           3.2790e-02,  2.7889e-01, -4.4913e-01,  7.0002e-02,  5.5741e-01,\\n\",\n      \"          -1.6276e-01, -3.6297e-01,  2.0895e-01, -4.0116e-01, -2.2522e-01,\\n\",\n      \"          -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01,  4.5957e-01,\\n\",\n      \"          -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\\n\",\n      \"         [ 4.5037e-01, -3.6208e-02, -8.8401e-02,  5.8330e-01, -3.7614e-01,\\n\",\n      \"           2.7170e-01,  2.5848e-01,  5.3754e-01,  8.3193e-02, -2.1463e-01,\\n\",\n      \"           2.4849e-01,  9.6076e-02,  4.8274e-01, -5.3474e-01,  4.4389e-01,\\n\",\n      \"           1.8048e-01,  8.1216e-02,  3.8565e-02, -2.1158e-01, -1.0749e-01,\\n\",\n      \"          -2.6261e-01, -3.1016e-02, -7.9159e-02,  2.0517e-01,  4.4546e-02,\\n\",\n      \"          -2.3875e-01,  3.8012e-01, -2.2126e-03,  3.3358e-01,  1.0724e-02,\\n\",\n      \"          -2.5482e-01, -8.6964e-02,  1.7899e-01,  5.1795e-01, -9.8892e-02,\\n\",\n      \"           2.9072e-01, -3.6883e-01,  8.0775e-01, -2.5374e-01,  1.7086e-01,\\n\",\n      \"           1.3368e-01, -6.3352e-02,  1.7475e-01,  1.2112e-01,  3.0679e-01,\\n\",\n      \"           1.3249e-01,  2.5912e-01, -5.0618e-01, -3.6696e-01,  3.8838e-01,\\n\",\n      \"          -1.7201e-01, -4.2089e-01,  1.8540e-01, -3.9560e-01,  9.7645e-02,\\n\",\n      \"          -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01,  5.1789e-01,\\n\",\n      \"          -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\\n\",\n      \"\\n\",\n      \"        [[ 6.1572e-02, -7.8968e-02, -1.2629e-01,  4.9267e-01, -3.3531e-01,\\n\",\n      \"          -4.6577e-01,  4.6988e-01,  4.1398e-01,  3.0156e-01,  1.1518e-01,\\n\",\n      \"           3.1389e-02, -4.6762e-01,  1.8188e-01, -6.1688e-01, -2.6343e-01,\\n\",\n      \"          -3.1576e-01,  4.9902e-01, -2.4268e-01,  1.6815e-01, -1.9693e-01,\\n\",\n      \"          -3.1019e-01,  1.7517e-01,  3.3324e-01,  9.6325e-02,  2.4211e-01,\\n\",\n      \"          -1.1460e-01, -3.7784e-01, -3.6116e-01,  2.4703e-01,  1.2421e-01,\\n\",\n      \"           2.6336e-01, -1.3863e-01,  4.4239e-01,  6.6868e-01,  3.9022e-01,\\n\",\n      \"           1.6709e-01, -3.4177e-01,  7.9374e-01, -2.0875e-01,  1.7250e-01,\\n\",\n      \"           9.2274e-02,  7.5432e-02,  3.1252e-01, -4.9550e-02,  4.5907e-02,\\n\",\n      \"           1.2979e-01,  2.7269e-01, -5.3483e-01, -6.1280e-02,  3.7396e-01,\\n\",\n      \"          -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\\n\",\n      \"           8.6522e-02,  1.7051e-01, -4.1334e-02, -3.5324e-01,  2.7226e-01,\\n\",\n      \"          -5.8631e-01, -5.0842e-01,  3.2943e-02,  2.5173e-01],\\n\",\n      \"         [-6.6955e-02, -1.8796e-01, -9.6617e-02,  4.2052e-01, -2.8605e-01,\\n\",\n      \"          -5.0497e-02,  1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\\n\",\n      \"           4.6530e-01, -2.1460e-01,  5.9005e-01, -2.3882e-01,  2.3549e-01,\\n\",\n      \"          -4.8996e-01,  9.8277e-02,  1.9883e-01,  7.5948e-02, -3.6621e-03,\\n\",\n      \"          -3.5541e-01,  2.3025e-01,  3.2918e-02,  2.3964e-01,  2.0046e-01,\\n\",\n      \"          -8.6032e-02,  3.1096e-01,  3.6305e-02, -1.8553e-01, -7.1272e-02,\\n\",\n      \"          -2.6754e-01,  1.9024e-01,  5.9301e-01,  4.9991e-01,  1.0630e-01,\\n\",\n      \"           2.9337e-01, -2.2475e-01,  7.7874e-01,  3.2949e-01, -1.6518e-01,\\n\",\n      \"          -4.7336e-01,  1.0853e-01,  2.3952e-01,  3.3526e-01, -1.5270e-01,\\n\",\n      \"           1.4827e-01,  1.1312e-01, -6.9810e-01, -3.8128e-01,  9.0495e-02,\\n\",\n      \"          -2.6985e-01, -6.3003e-01,  5.8684e-01, -6.1706e-01,  3.1610e-01,\\n\",\n      \"          -1.5197e-01,  3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\\n\",\n      \"          -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7015e-01,  5.8729e-01,  1.4587e-01,  4.3972e-01, -1.1587e-01,\\n\",\n      \"          -6.3192e-01,  4.2250e-01,  2.0748e-01,  4.9845e-01,  3.0032e-02,\\n\",\n      \"           3.4143e-01, -1.4835e-01,  3.7302e-01,  6.5627e-02, -1.1746e-01,\\n\",\n      \"          -3.5304e-01, -7.3488e-02,  1.5345e-01,  3.8006e-01,  6.6840e-02,\\n\",\n      \"          -4.7847e-01, -4.6739e-02,  2.2526e-01, -1.0725e-03,  4.1146e-01,\\n\",\n      \"          -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01,  1.2527e-01,\\n\",\n      \"           1.1725e-01, -3.7594e-01,  6.2424e-02,  4.3085e-01,  7.0839e-01,\\n\",\n      \"           5.0156e-01, -6.4564e-01,  8.0471e-01, -4.8353e-01,  2.8749e-01,\\n\",\n      \"           5.4820e-02, -4.9795e-01,  3.6530e-01, -1.1493e-01, -2.3898e-02,\\n\",\n      \"           3.6245e-02,  1.0556e-01, -1.0374e-01, -1.8034e-02,  6.6806e-01,\\n\",\n      \"          -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01,  1.8598e-01,\\n\",\n      \"          -6.6235e-02, -1.3134e-01,  5.2580e-01, -3.6212e-01,  2.3866e-01,\\n\",\n      \"          -1.7990e-02,  8.0296e-02, -3.7835e-01, -2.9699e-01],\\n\",\n      \"         [-2.9946e-01,  1.7333e-01,  5.8426e-01,  3.4180e-01, -3.0022e-01,\\n\",\n      \"           1.7389e-01,  4.9503e-01, -8.8328e-02,  1.4499e-01, -9.1872e-02,\\n\",\n      \"           2.5825e-01, -3.0323e-01,  2.7515e-01,  1.3643e-02,  1.8358e-01,\\n\",\n      \"          -2.9342e-01,  1.2102e-01, -3.1372e-03,  4.2592e-01, -3.2323e-01,\\n\",\n      \"          -1.9382e-01,  1.0034e-01, -2.4542e-01,  1.7491e-01,  2.8585e-01,\\n\",\n      \"           2.1878e-01, -2.8580e-01,  2.6377e-01, -5.8683e-02, -1.8648e-02,\\n\",\n      \"           1.5466e-01,  6.1528e-02,  6.1995e-01,  3.3441e-01, -1.5242e-01,\\n\",\n      \"          -4.1493e-01, -2.2674e-01,  3.3035e-01,  4.1771e-01, -2.6339e-01,\\n\",\n      \"           1.6438e-02,  1.3321e-02,  3.6096e-01,  3.5693e-01, -2.7066e-01,\\n\",\n      \"           1.9357e-01,  3.4842e-01, -4.6198e-01, -2.5908e-01,  9.7302e-02,\\n\",\n      \"          -5.1082e-01, -6.0207e-01,  5.3004e-01, -2.6133e-01, -1.3656e-01,\\n\",\n      \"           3.1702e-01, -1.9228e-01,  1.1084e-01, -1.2700e-01,  9.1848e-02,\\n\",\n      \"          -1.2077e-01, -2.3991e-01, -2.2360e-01,  1.1209e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.3006e-03,  5.1264e-01,  1.4625e-01,  1.9990e-01, -9.8293e-04,\\n\",\n      \"          -3.9322e-01,  1.0313e-02,  1.9901e-01,  5.2193e-01,  2.4577e-01,\\n\",\n      \"           3.6912e-01, -4.1717e-01,  1.6650e-01, -1.3958e-01,  5.7864e-02,\\n\",\n      \"           7.9536e-02,  1.9557e-01, -3.7678e-02,  5.0398e-01, -3.0349e-01,\\n\",\n      \"          -2.0343e-02,  1.2007e-02,  3.0268e-02,  2.5128e-02,  4.6688e-01,\\n\",\n      \"           5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\\n\",\n      \"           2.3817e-01, -4.7999e-01, -1.1352e-01,  3.4405e-01,  4.7923e-01,\\n\",\n      \"           3.4116e-01, -1.3998e-01,  5.8126e-01, -5.3983e-01,  9.0539e-03,\\n\",\n      \"          -2.8760e-01,  1.4470e-03,  4.1896e-01,  9.0540e-02,  8.4472e-02,\\n\",\n      \"           2.4745e-01,  2.4676e-01,  1.3342e-01,  2.1588e-01,  4.5192e-01,\\n\",\n      \"          -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01,  1.4840e-01,\\n\",\n      \"          -3.1757e-01, -2.9868e-01,  3.5217e-01, -4.8268e-01,  6.2362e-01,\\n\",\n      \"          -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\\n\",\n      \"         [-6.7714e-02,  4.2866e-01,  3.4476e-01,  1.5000e-01, -3.6190e-02,\\n\",\n      \"           8.3957e-02,  5.5312e-02,  3.0808e-02,  4.4187e-01,  3.5487e-01,\\n\",\n      \"           2.7749e-01, -5.4736e-01,  1.3060e-01, -1.2858e-01,  1.4391e-01,\\n\",\n      \"           2.2495e-02,  2.5716e-01, -1.1392e-01,  5.0622e-01, -5.3849e-01,\\n\",\n      \"           8.1028e-02,  1.1880e-01, -1.9030e-01,  1.6085e-01,  4.2327e-01,\\n\",\n      \"           3.3224e-01, -2.8663e-01,  1.5584e-01,  2.0010e-02, -1.3972e-01,\\n\",\n      \"           3.0517e-01, -3.2512e-01,  2.0605e-01,  3.9866e-01,  7.5201e-02,\\n\",\n      \"          -1.4346e-01,  4.0802e-02,  2.5994e-01, -1.1602e-01, -3.1564e-01,\\n\",\n      \"          -2.4646e-01,  2.8795e-01,  3.0432e-01,  3.9361e-01, -2.6748e-02,\\n\",\n      \"           3.1790e-01,  4.0642e-01, -3.9523e-02,  2.4936e-02,  2.3207e-01,\\n\",\n      \"          -3.6772e-01, -7.2585e-01,  2.2393e-01, -4.9142e-01,  8.1099e-02,\\n\",\n      \"          -2.7510e-01, -3.3252e-01,  2.6320e-04, -3.5465e-01,  5.0127e-01,\\n\",\n      \"          -1.9976e-01, -4.5309e-01, -5.5326e-01,  1.9372e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.7057e-01,  3.2322e-01,  2.4574e-01,  4.5261e-01, -2.0914e-01,\\n\",\n      \"          -1.7835e-01, -1.3981e-01, -7.2055e-01,  4.6101e-01,  1.5611e-01,\\n\",\n      \"           1.9007e-01, -3.4269e-01, -1.1867e-01,  2.6001e-02, -2.9307e-01,\\n\",\n      \"           4.3272e-01,  2.6621e-01,  2.3335e-01,  5.2463e-01, -4.2147e-01,\\n\",\n      \"          -2.7186e-01, -3.1412e-01,  2.4990e-01,  2.9644e-02,  3.8283e-01,\\n\",\n      \"          -6.0349e-01,  4.2053e-01,  7.7588e-02, -5.3387e-01, -1.7636e-01,\\n\",\n      \"           5.6825e-01, -1.9517e-01,  2.9228e-01,  1.5452e-01, -1.3068e-01,\\n\",\n      \"          -1.6854e-01, -6.7126e-01,  5.3163e-01, -1.5279e-01, -4.1532e-03,\\n\",\n      \"          -4.1549e-01, -5.4631e-01, -2.0766e-01,  5.0530e-01,  2.4160e-01,\\n\",\n      \"           3.2883e-01,  6.5491e-02,  4.0148e-01,  3.9996e-01,  5.5935e-01,\\n\",\n      \"          -2.0955e-01,  8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\\n\",\n      \"          -2.2420e-02, -4.3686e-01,  3.6831e-01,  4.9070e-01,  6.7791e-01,\\n\",\n      \"           9.3536e-02,  9.6758e-02,  2.7063e-01, -5.9233e-01],\\n\",\n      \"         [-2.1370e-01,  2.6253e-01,  3.7184e-01,  4.2944e-01, -2.2733e-01,\\n\",\n      \"           8.4641e-02, -1.1203e-01, -7.5004e-01,  4.0968e-01,  2.9284e-01,\\n\",\n      \"           1.0524e-01, -4.5711e-01, -1.3226e-01,  3.6899e-02, -2.9938e-01,\\n\",\n      \"           3.7876e-01,  3.0198e-01,  2.1248e-01,  5.0674e-01, -5.9870e-01,\\n\",\n      \"          -2.2014e-01, -2.7972e-01,  1.8850e-01,  1.3672e-01,  3.6082e-01,\\n\",\n      \"          -5.1068e-01,  3.8401e-01,  2.3140e-01, -4.6272e-01, -2.3285e-01,\\n\",\n      \"           5.9758e-01, -8.0234e-02,  4.1550e-01,  2.3767e-01, -3.2081e-01,\\n\",\n      \"          -2.6955e-01, -6.4333e-01,  3.0121e-01,  1.8572e-01, -2.1806e-01,\\n\",\n      \"          -3.6785e-01, -5.4011e-01, -3.0245e-01,  5.8575e-01,  1.6013e-01,\\n\",\n      \"           3.7621e-01,  1.5080e-01,  3.5251e-01,  2.9042e-01,  4.9547e-01,\\n\",\n      \"          -2.0645e-01,  9.5648e-04,  3.2034e-01, -5.9634e-01, -4.1605e-02,\\n\",\n      \"           2.8428e-02, -4.5341e-01,  1.7124e-01,  4.6399e-01,  5.8401e-01,\\n\",\n      \"           1.8860e-03, -1.1181e-01,  3.3156e-01, -4.8292e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.1405e-01,  7.2646e-01,  2.3313e-02,  2.9391e-01, -4.1278e-02,\\n\",\n      \"          -6.8512e-01, -6.3971e-01, -7.3721e-01,  5.8138e-01,  2.3946e-01,\\n\",\n      \"          -1.2826e-01, -4.2802e-01, -2.4249e-01,  6.9205e-01, -4.7766e-01,\\n\",\n      \"           1.3880e-01, -2.6832e-01,  8.0203e-01,  7.5108e-01, -3.1906e-01,\\n\",\n      \"          -7.2209e-01, -3.2389e-01,  2.3982e-01,  4.4074e-02,  8.8281e-03,\\n\",\n      \"          -5.3503e-01,  1.8058e-01,  5.3126e-01, -1.6590e-01,  4.4685e-02,\\n\",\n      \"           7.8644e-01, -5.1364e-01,  6.8338e-02, -6.5219e-02,  1.0594e-01,\\n\",\n      \"          -4.3814e-02, -5.8792e-01,  5.3987e-01, -2.0544e-02,  3.5673e-02,\\n\",\n      \"           3.8325e-01, -8.9699e-01, -9.8914e-02,  2.7993e-01, -4.2853e-01,\\n\",\n      \"           2.6470e-01, -1.5111e-01,  1.2840e-01,  4.4130e-01,  7.0472e-01,\\n\",\n      \"          -5.4222e-01,  6.3632e-01, -4.5410e-01, -7.3485e-01,  3.9335e-03,\\n\",\n      \"           2.1974e-02, -7.7820e-01,  7.1851e-01,  4.9839e-01,  4.5752e-01,\\n\",\n      \"          -5.6736e-01, -1.1570e-01,  1.7741e-01, -6.8631e-01],\\n\",\n      \"         [-5.2954e-01,  7.1507e-01,  1.1961e-01,  2.7049e-01, -4.1430e-02,\\n\",\n      \"          -6.3285e-01, -6.2980e-01, -7.5369e-01,  5.6139e-01,  3.6687e-01,\\n\",\n      \"          -1.8580e-01, -5.0004e-01, -2.4768e-01,  6.8709e-01, -4.7964e-01,\\n\",\n      \"           9.6180e-02, -2.4753e-01,  7.8835e-01,  7.4328e-01, -4.0307e-01,\\n\",\n      \"          -7.0861e-01, -3.0193e-01,  1.9124e-01,  1.0709e-01, -1.1137e-02,\\n\",\n      \"          -4.5462e-01,  1.6204e-01,  5.9233e-01, -1.0915e-01,  5.0066e-02,\\n\",\n      \"           7.9568e-01, -4.6623e-01,  1.3996e-01,  3.4372e-03, -3.3035e-02,\\n\",\n      \"          -1.1971e-01, -5.7255e-01,  3.7681e-01,  1.9896e-01, -1.2122e-01,\\n\",\n      \"           3.8669e-01, -9.0198e-01, -1.6976e-01,  3.3988e-01, -4.4157e-01,\\n\",\n      \"           3.1625e-01, -1.0426e-01,  1.2102e-01,  3.5134e-01,  6.7499e-01,\\n\",\n      \"          -5.4203e-01,  5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\\n\",\n      \"           5.9193e-02, -7.8978e-01,  6.7157e-01,  4.5797e-01,  4.0904e-01,\\n\",\n      \"          -5.9217e-01, -1.8372e-01,  2.3222e-01, -6.0919e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([8, 6])\\n\",\n      \"dec_state: tensor([[[-0.3870,  0.0146,  0.2262,  0.3875, -0.1863, -0.5908, -0.7491,\\n\",\n      \"          -0.6269,  0.2790,  0.0850,  0.0883,  0.3196, -0.1854,  0.6315,\\n\",\n      \"          -0.1337,  0.0271, -0.1314,  0.1949,  0.3328,  0.5527, -0.2214,\\n\",\n      \"          -0.2441,  0.4878,  0.0992,  0.2338, -0.4575,  0.2352,  0.5637,\\n\",\n      \"          -0.2559,  0.4127,  0.2959, -0.6037,  0.6079,  0.3063, -0.1112,\\n\",\n      \"          -0.0403,  0.2571,  0.4964, -0.3410, -0.1267,  0.0307, -0.7332,\\n\",\n      \"           0.0069, -0.1403, -0.5459,  0.5066, -0.0438, -0.5784,  0.5655,\\n\",\n      \"           0.5807, -0.4233,  0.7786, -0.6466,  0.4768,  0.0244,  0.0239,\\n\",\n      \"          -0.4857,  0.3368,  0.1711,  0.2765, -0.3301,  0.1125, -0.1665,\\n\",\n      \"          -0.2711],\\n\",\n      \"         [-0.3240,  0.1824,  0.4186,  0.1187,  0.0474, -0.4022, -0.2703,\\n\",\n      \"          -0.4224,  0.5533,  0.1276, -0.1419, -0.5163,  0.1098,  0.3714,\\n\",\n      \"          -0.3420, -0.1969, -0.2866,  0.7322,  0.3184,  0.3839, -0.5632,\\n\",\n      \"           0.0961,  0.2589, -0.1661,  0.2507, -0.0378,  0.2592,  0.3025,\\n\",\n      \"          -0.2708, -0.2858,  0.5161, -0.2001,  0.5533,  0.1468,  0.1514,\\n\",\n      \"           0.2717,  0.1727,  0.0795, -0.3983,  0.0196,  0.1431, -0.8477,\\n\",\n      \"          -0.3032, -0.1926, -0.6660,  0.0109, -0.1844, -0.1248,  0.4916,\\n\",\n      \"           0.4975, -0.1204,  0.1012, -0.1936,  0.0269, -0.3707,  0.1165,\\n\",\n      \"          -0.3884, -0.0772,  0.4265, -0.2031, -0.2211,  0.3295, -0.3133,\\n\",\n      \"          -0.1344]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\\n\",\n      \"           1.0795e-01,  1.1117e-01,  1.0526e-01, -1.9621e-01, -1.7305e-01,\\n\",\n      \"           5.2908e-02, -1.1708e-01, -3.1992e-01,  2.5680e-01,  1.3125e-01,\\n\",\n      \"          -5.8317e-01,  2.9118e-01,  9.6432e-02, -1.2121e-01, -5.2562e-01,\\n\",\n      \"          -4.9280e-01,  9.9200e-04,  1.0100e-01, -1.4418e-01, -9.7080e-04,\\n\",\n      \"           4.9621e-02, -7.5445e-02,  8.9830e-02,  8.4073e-02, -1.0900e-01,\\n\",\n      \"          -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01,  6.5989e-02,\\n\",\n      \"          -1.1115e-01, -1.8222e-01,  2.0451e-02, -9.9988e-02, -3.5648e-01,\\n\",\n      \"           1.4316e-01,  5.8419e-01,  5.7575e-02,  7.9051e-02, -4.5552e-01,\\n\",\n      \"          -2.5276e-01,  3.1515e-01, -7.7021e-02, -2.6506e-02,  3.6586e-01,\\n\",\n      \"           7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\\n\",\n      \"          -2.8730e-02, -3.3728e-01,  1.7582e-01,  2.9807e-02, -3.0381e-01,\\n\",\n      \"           3.6682e-01,  2.1646e-01,  2.1079e-01, -2.2197e-01],\\n\",\n      \"         [-5.9364e-02,  4.9278e-01,  3.9939e-01, -6.4556e-01, -5.4136e-01,\\n\",\n      \"           5.7767e-01, -8.2846e-02,  3.4757e-01, -2.6940e-01, -1.3587e-01,\\n\",\n      \"           2.9661e-01,  1.9267e-01,  3.3508e-01, -2.3874e-01,  1.6769e-01,\\n\",\n      \"           8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\\n\",\n      \"          -1.1036e-01, -2.3516e-01, -3.3576e-01,  6.6362e-02, -4.2507e-01,\\n\",\n      \"          -1.2496e-01,  7.5707e-01,  3.2817e-01,  4.5369e-01,  3.1337e-01,\\n\",\n      \"          -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\\n\",\n      \"           2.0347e-02,  1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\\n\",\n      \"           1.2553e-01, -2.9570e-01,  6.3393e-02,  4.9087e-01,  2.6956e-01,\\n\",\n      \"          -9.9909e-02,  1.1632e-01,  3.3636e-02, -6.5299e-01,  3.1438e-03,\\n\",\n      \"           1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02,  8.3628e-02,\\n\",\n      \"           2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\\n\",\n      \"           4.2149e-01,  3.3780e-02, -6.2170e-02, -1.9143e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.2377e-01, -3.5410e-01, -2.7126e-01,  6.7114e-01, -1.3655e-01,\\n\",\n      \"           1.6070e-01,  3.2438e-01,  4.1661e-01,  1.9747e-01, -2.9179e-01,\\n\",\n      \"           9.6542e-02, -5.5992e-02,  1.0121e-01, -3.8642e-01,  4.1851e-01,\\n\",\n      \"          -1.1139e-01,  2.4136e-01,  2.3179e-01,  5.1139e-02, -4.5248e-01,\\n\",\n      \"          -5.3721e-01,  8.7373e-02,  2.3784e-01,  1.2280e-01,  2.1850e-01,\\n\",\n      \"          -9.6268e-02, -1.6007e-01, -1.3404e-01,  1.6351e-01, -2.4172e-01,\\n\",\n      \"          -2.5418e-01, -9.7521e-02,  2.4446e-01,  3.5432e-01,  9.5840e-02,\\n\",\n      \"           1.5298e-01, -4.6807e-01,  7.6614e-01,  1.1059e-01,  1.0575e-01,\\n\",\n      \"           1.7815e-01,  5.6318e-01,  1.7585e-01, -7.1355e-02, -2.4294e-01,\\n\",\n      \"           3.2790e-02,  2.7889e-01, -4.4913e-01,  7.0002e-02,  5.5741e-01,\\n\",\n      \"          -1.6276e-01, -3.6297e-01,  2.0895e-01, -4.0116e-01, -2.2522e-01,\\n\",\n      \"          -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01,  4.5957e-01,\\n\",\n      \"          -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\\n\",\n      \"         [ 4.5037e-01, -3.6208e-02, -8.8401e-02,  5.8330e-01, -3.7614e-01,\\n\",\n      \"           2.7170e-01,  2.5848e-01,  5.3754e-01,  8.3193e-02, -2.1463e-01,\\n\",\n      \"           2.4849e-01,  9.6076e-02,  4.8274e-01, -5.3474e-01,  4.4389e-01,\\n\",\n      \"           1.8048e-01,  8.1216e-02,  3.8565e-02, -2.1158e-01, -1.0749e-01,\\n\",\n      \"          -2.6261e-01, -3.1016e-02, -7.9159e-02,  2.0517e-01,  4.4546e-02,\\n\",\n      \"          -2.3875e-01,  3.8012e-01, -2.2126e-03,  3.3358e-01,  1.0724e-02,\\n\",\n      \"          -2.5482e-01, -8.6964e-02,  1.7899e-01,  5.1795e-01, -9.8892e-02,\\n\",\n      \"           2.9072e-01, -3.6883e-01,  8.0775e-01, -2.5374e-01,  1.7086e-01,\\n\",\n      \"           1.3368e-01, -6.3352e-02,  1.7475e-01,  1.2112e-01,  3.0679e-01,\\n\",\n      \"           1.3249e-01,  2.5912e-01, -5.0618e-01, -3.6696e-01,  3.8838e-01,\\n\",\n      \"          -1.7201e-01, -4.2089e-01,  1.8540e-01, -3.9560e-01,  9.7645e-02,\\n\",\n      \"          -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01,  5.1789e-01,\\n\",\n      \"          -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\\n\",\n      \"\\n\",\n      \"        [[ 6.1572e-02, -7.8968e-02, -1.2629e-01,  4.9267e-01, -3.3531e-01,\\n\",\n      \"          -4.6577e-01,  4.6988e-01,  4.1398e-01,  3.0156e-01,  1.1518e-01,\\n\",\n      \"           3.1389e-02, -4.6762e-01,  1.8188e-01, -6.1688e-01, -2.6343e-01,\\n\",\n      \"          -3.1576e-01,  4.9902e-01, -2.4268e-01,  1.6815e-01, -1.9693e-01,\\n\",\n      \"          -3.1019e-01,  1.7517e-01,  3.3324e-01,  9.6325e-02,  2.4211e-01,\\n\",\n      \"          -1.1460e-01, -3.7784e-01, -3.6116e-01,  2.4703e-01,  1.2421e-01,\\n\",\n      \"           2.6336e-01, -1.3863e-01,  4.4239e-01,  6.6868e-01,  3.9022e-01,\\n\",\n      \"           1.6709e-01, -3.4177e-01,  7.9374e-01, -2.0875e-01,  1.7250e-01,\\n\",\n      \"           9.2274e-02,  7.5432e-02,  3.1252e-01, -4.9550e-02,  4.5907e-02,\\n\",\n      \"           1.2979e-01,  2.7269e-01, -5.3483e-01, -6.1280e-02,  3.7396e-01,\\n\",\n      \"          -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\\n\",\n      \"           8.6522e-02,  1.7051e-01, -4.1334e-02, -3.5324e-01,  2.7226e-01,\\n\",\n      \"          -5.8631e-01, -5.0842e-01,  3.2943e-02,  2.5173e-01],\\n\",\n      \"         [-6.6955e-02, -1.8796e-01, -9.6617e-02,  4.2052e-01, -2.8605e-01,\\n\",\n      \"          -5.0497e-02,  1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\\n\",\n      \"           4.6530e-01, -2.1460e-01,  5.9005e-01, -2.3882e-01,  2.3549e-01,\\n\",\n      \"          -4.8996e-01,  9.8277e-02,  1.9883e-01,  7.5948e-02, -3.6621e-03,\\n\",\n      \"          -3.5541e-01,  2.3025e-01,  3.2918e-02,  2.3964e-01,  2.0046e-01,\\n\",\n      \"          -8.6032e-02,  3.1096e-01,  3.6305e-02, -1.8553e-01, -7.1272e-02,\\n\",\n      \"          -2.6754e-01,  1.9024e-01,  5.9301e-01,  4.9991e-01,  1.0630e-01,\\n\",\n      \"           2.9337e-01, -2.2475e-01,  7.7874e-01,  3.2949e-01, -1.6518e-01,\\n\",\n      \"          -4.7336e-01,  1.0853e-01,  2.3952e-01,  3.3526e-01, -1.5270e-01,\\n\",\n      \"           1.4827e-01,  1.1312e-01, -6.9810e-01, -3.8128e-01,  9.0495e-02,\\n\",\n      \"          -2.6985e-01, -6.3003e-01,  5.8684e-01, -6.1706e-01,  3.1610e-01,\\n\",\n      \"          -1.5197e-01,  3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\\n\",\n      \"          -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7015e-01,  5.8729e-01,  1.4587e-01,  4.3972e-01, -1.1587e-01,\\n\",\n      \"          -6.3192e-01,  4.2250e-01,  2.0748e-01,  4.9845e-01,  3.0032e-02,\\n\",\n      \"           3.4143e-01, -1.4835e-01,  3.7302e-01,  6.5627e-02, -1.1746e-01,\\n\",\n      \"          -3.5304e-01, -7.3488e-02,  1.5345e-01,  3.8006e-01,  6.6840e-02,\\n\",\n      \"          -4.7847e-01, -4.6739e-02,  2.2526e-01, -1.0725e-03,  4.1146e-01,\\n\",\n      \"          -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01,  1.2527e-01,\\n\",\n      \"           1.1725e-01, -3.7594e-01,  6.2424e-02,  4.3085e-01,  7.0839e-01,\\n\",\n      \"           5.0156e-01, -6.4564e-01,  8.0471e-01, -4.8353e-01,  2.8749e-01,\\n\",\n      \"           5.4820e-02, -4.9795e-01,  3.6530e-01, -1.1493e-01, -2.3898e-02,\\n\",\n      \"           3.6245e-02,  1.0556e-01, -1.0374e-01, -1.8034e-02,  6.6806e-01,\\n\",\n      \"          -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01,  1.8598e-01,\\n\",\n      \"          -6.6235e-02, -1.3134e-01,  5.2580e-01, -3.6212e-01,  2.3866e-01,\\n\",\n      \"          -1.7990e-02,  8.0296e-02, -3.7835e-01, -2.9699e-01],\\n\",\n      \"         [-2.9946e-01,  1.7333e-01,  5.8426e-01,  3.4180e-01, -3.0022e-01,\\n\",\n      \"           1.7389e-01,  4.9503e-01, -8.8328e-02,  1.4499e-01, -9.1872e-02,\\n\",\n      \"           2.5825e-01, -3.0323e-01,  2.7515e-01,  1.3643e-02,  1.8358e-01,\\n\",\n      \"          -2.9342e-01,  1.2102e-01, -3.1372e-03,  4.2592e-01, -3.2323e-01,\\n\",\n      \"          -1.9382e-01,  1.0034e-01, -2.4542e-01,  1.7491e-01,  2.8585e-01,\\n\",\n      \"           2.1878e-01, -2.8580e-01,  2.6377e-01, -5.8683e-02, -1.8648e-02,\\n\",\n      \"           1.5466e-01,  6.1528e-02,  6.1995e-01,  3.3441e-01, -1.5242e-01,\\n\",\n      \"          -4.1493e-01, -2.2674e-01,  3.3035e-01,  4.1771e-01, -2.6339e-01,\\n\",\n      \"           1.6438e-02,  1.3321e-02,  3.6096e-01,  3.5693e-01, -2.7066e-01,\\n\",\n      \"           1.9357e-01,  3.4842e-01, -4.6198e-01, -2.5908e-01,  9.7302e-02,\\n\",\n      \"          -5.1082e-01, -6.0207e-01,  5.3004e-01, -2.6133e-01, -1.3656e-01,\\n\",\n      \"           3.1702e-01, -1.9228e-01,  1.1084e-01, -1.2700e-01,  9.1848e-02,\\n\",\n      \"          -1.2077e-01, -2.3991e-01, -2.2360e-01,  1.1209e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.3006e-03,  5.1264e-01,  1.4625e-01,  1.9990e-01, -9.8293e-04,\\n\",\n      \"          -3.9322e-01,  1.0313e-02,  1.9901e-01,  5.2193e-01,  2.4577e-01,\\n\",\n      \"           3.6912e-01, -4.1717e-01,  1.6650e-01, -1.3958e-01,  5.7864e-02,\\n\",\n      \"           7.9536e-02,  1.9557e-01, -3.7678e-02,  5.0398e-01, -3.0349e-01,\\n\",\n      \"          -2.0343e-02,  1.2007e-02,  3.0268e-02,  2.5128e-02,  4.6688e-01,\\n\",\n      \"           5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\\n\",\n      \"           2.3817e-01, -4.7999e-01, -1.1352e-01,  3.4405e-01,  4.7923e-01,\\n\",\n      \"           3.4116e-01, -1.3998e-01,  5.8126e-01, -5.3983e-01,  9.0539e-03,\\n\",\n      \"          -2.8760e-01,  1.4470e-03,  4.1896e-01,  9.0540e-02,  8.4472e-02,\\n\",\n      \"           2.4745e-01,  2.4676e-01,  1.3342e-01,  2.1588e-01,  4.5192e-01,\\n\",\n      \"          -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01,  1.4840e-01,\\n\",\n      \"          -3.1757e-01, -2.9868e-01,  3.5217e-01, -4.8268e-01,  6.2362e-01,\\n\",\n      \"          -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\\n\",\n      \"         [-6.7714e-02,  4.2866e-01,  3.4476e-01,  1.5000e-01, -3.6190e-02,\\n\",\n      \"           8.3957e-02,  5.5312e-02,  3.0808e-02,  4.4187e-01,  3.5487e-01,\\n\",\n      \"           2.7749e-01, -5.4736e-01,  1.3060e-01, -1.2858e-01,  1.4391e-01,\\n\",\n      \"           2.2495e-02,  2.5716e-01, -1.1392e-01,  5.0622e-01, -5.3849e-01,\\n\",\n      \"           8.1028e-02,  1.1880e-01, -1.9030e-01,  1.6085e-01,  4.2327e-01,\\n\",\n      \"           3.3224e-01, -2.8663e-01,  1.5584e-01,  2.0010e-02, -1.3972e-01,\\n\",\n      \"           3.0517e-01, -3.2512e-01,  2.0605e-01,  3.9866e-01,  7.5201e-02,\\n\",\n      \"          -1.4346e-01,  4.0802e-02,  2.5994e-01, -1.1602e-01, -3.1564e-01,\\n\",\n      \"          -2.4646e-01,  2.8795e-01,  3.0432e-01,  3.9361e-01, -2.6748e-02,\\n\",\n      \"           3.1790e-01,  4.0642e-01, -3.9523e-02,  2.4936e-02,  2.3207e-01,\\n\",\n      \"          -3.6772e-01, -7.2585e-01,  2.2393e-01, -4.9142e-01,  8.1099e-02,\\n\",\n      \"          -2.7510e-01, -3.3252e-01,  2.6320e-04, -3.5465e-01,  5.0127e-01,\\n\",\n      \"          -1.9976e-01, -4.5309e-01, -5.5326e-01,  1.9372e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.7057e-01,  3.2322e-01,  2.4574e-01,  4.5261e-01, -2.0914e-01,\\n\",\n      \"          -1.7835e-01, -1.3981e-01, -7.2055e-01,  4.6101e-01,  1.5611e-01,\\n\",\n      \"           1.9007e-01, -3.4269e-01, -1.1867e-01,  2.6001e-02, -2.9307e-01,\\n\",\n      \"           4.3272e-01,  2.6621e-01,  2.3335e-01,  5.2463e-01, -4.2147e-01,\\n\",\n      \"          -2.7186e-01, -3.1412e-01,  2.4990e-01,  2.9644e-02,  3.8283e-01,\\n\",\n      \"          -6.0349e-01,  4.2053e-01,  7.7588e-02, -5.3387e-01, -1.7636e-01,\\n\",\n      \"           5.6825e-01, -1.9517e-01,  2.9228e-01,  1.5452e-01, -1.3068e-01,\\n\",\n      \"          -1.6854e-01, -6.7126e-01,  5.3163e-01, -1.5279e-01, -4.1532e-03,\\n\",\n      \"          -4.1549e-01, -5.4631e-01, -2.0766e-01,  5.0530e-01,  2.4160e-01,\\n\",\n      \"           3.2883e-01,  6.5491e-02,  4.0148e-01,  3.9996e-01,  5.5935e-01,\\n\",\n      \"          -2.0955e-01,  8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\\n\",\n      \"          -2.2420e-02, -4.3686e-01,  3.6831e-01,  4.9070e-01,  6.7791e-01,\\n\",\n      \"           9.3536e-02,  9.6758e-02,  2.7063e-01, -5.9233e-01],\\n\",\n      \"         [-2.1370e-01,  2.6253e-01,  3.7184e-01,  4.2944e-01, -2.2733e-01,\\n\",\n      \"           8.4641e-02, -1.1203e-01, -7.5004e-01,  4.0968e-01,  2.9284e-01,\\n\",\n      \"           1.0524e-01, -4.5711e-01, -1.3226e-01,  3.6899e-02, -2.9938e-01,\\n\",\n      \"           3.7876e-01,  3.0198e-01,  2.1248e-01,  5.0674e-01, -5.9870e-01,\\n\",\n      \"          -2.2014e-01, -2.7972e-01,  1.8850e-01,  1.3672e-01,  3.6082e-01,\\n\",\n      \"          -5.1068e-01,  3.8401e-01,  2.3140e-01, -4.6272e-01, -2.3285e-01,\\n\",\n      \"           5.9758e-01, -8.0234e-02,  4.1550e-01,  2.3767e-01, -3.2081e-01,\\n\",\n      \"          -2.6955e-01, -6.4333e-01,  3.0121e-01,  1.8572e-01, -2.1806e-01,\\n\",\n      \"          -3.6785e-01, -5.4011e-01, -3.0245e-01,  5.8575e-01,  1.6013e-01,\\n\",\n      \"           3.7621e-01,  1.5080e-01,  3.5251e-01,  2.9042e-01,  4.9547e-01,\\n\",\n      \"          -2.0645e-01,  9.5648e-04,  3.2034e-01, -5.9634e-01, -4.1605e-02,\\n\",\n      \"           2.8428e-02, -4.5341e-01,  1.7124e-01,  4.6399e-01,  5.8401e-01,\\n\",\n      \"           1.8860e-03, -1.1181e-01,  3.3156e-01, -4.8292e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.1405e-01,  7.2646e-01,  2.3313e-02,  2.9391e-01, -4.1278e-02,\\n\",\n      \"          -6.8512e-01, -6.3971e-01, -7.3721e-01,  5.8138e-01,  2.3946e-01,\\n\",\n      \"          -1.2826e-01, -4.2802e-01, -2.4249e-01,  6.9205e-01, -4.7766e-01,\\n\",\n      \"           1.3880e-01, -2.6832e-01,  8.0203e-01,  7.5108e-01, -3.1906e-01,\\n\",\n      \"          -7.2209e-01, -3.2389e-01,  2.3982e-01,  4.4074e-02,  8.8281e-03,\\n\",\n      \"          -5.3503e-01,  1.8058e-01,  5.3126e-01, -1.6590e-01,  4.4685e-02,\\n\",\n      \"           7.8644e-01, -5.1364e-01,  6.8338e-02, -6.5219e-02,  1.0594e-01,\\n\",\n      \"          -4.3814e-02, -5.8792e-01,  5.3987e-01, -2.0544e-02,  3.5673e-02,\\n\",\n      \"           3.8325e-01, -8.9699e-01, -9.8914e-02,  2.7993e-01, -4.2853e-01,\\n\",\n      \"           2.6470e-01, -1.5111e-01,  1.2840e-01,  4.4130e-01,  7.0472e-01,\\n\",\n      \"          -5.4222e-01,  6.3632e-01, -4.5410e-01, -7.3485e-01,  3.9335e-03,\\n\",\n      \"           2.1974e-02, -7.7820e-01,  7.1851e-01,  4.9839e-01,  4.5752e-01,\\n\",\n      \"          -5.6736e-01, -1.1570e-01,  1.7741e-01, -6.8631e-01],\\n\",\n      \"         [-5.2954e-01,  7.1507e-01,  1.1961e-01,  2.7049e-01, -4.1430e-02,\\n\",\n      \"          -6.3285e-01, -6.2980e-01, -7.5369e-01,  5.6139e-01,  3.6687e-01,\\n\",\n      \"          -1.8580e-01, -5.0004e-01, -2.4768e-01,  6.8709e-01, -4.7964e-01,\\n\",\n      \"           9.6180e-02, -2.4753e-01,  7.8835e-01,  7.4328e-01, -4.0307e-01,\\n\",\n      \"          -7.0861e-01, -3.0193e-01,  1.9124e-01,  1.0709e-01, -1.1137e-02,\\n\",\n      \"          -4.5462e-01,  1.6204e-01,  5.9233e-01, -1.0915e-01,  5.0066e-02,\\n\",\n      \"           7.9568e-01, -4.6623e-01,  1.3996e-01,  3.4372e-03, -3.3035e-02,\\n\",\n      \"          -1.1971e-01, -5.7255e-01,  3.7681e-01,  1.9896e-01, -1.2122e-01,\\n\",\n      \"           3.8669e-01, -9.0198e-01, -1.6976e-01,  3.3988e-01, -4.4157e-01,\\n\",\n      \"           3.1625e-01, -1.0426e-01,  1.2102e-01,  3.5134e-01,  6.7499e-01,\\n\",\n      \"          -5.4203e-01,  5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\\n\",\n      \"           5.9193e-02, -7.8978e-01,  6.7157e-01,  4.5797e-01,  4.0904e-01,\\n\",\n      \"          -5.9217e-01, -1.8372e-01,  2.3222e-01, -6.0919e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([4, 4])\\n\",\n      \"dec_state: tensor([[[-0.0868,  0.2188, -0.1826,  0.5603, -0.1596, -0.1662, -0.3613,\\n\",\n      \"           0.0304, -0.0323, -0.3273, -0.0967, -0.1743, -0.0240,  0.1761,\\n\",\n      \"          -0.2658,  0.0848,  0.0347,  0.2976, -0.0364,  0.5802, -0.2290,\\n\",\n      \"          -0.2141,  0.4353,  0.1843,  0.2786, -0.5640,  0.2980,  0.1451,\\n\",\n      \"          -0.2970,  0.0357, -0.3452, -0.4721,  0.2027,  0.2155,  0.2494,\\n\",\n      \"           0.2512, -0.1623, -0.0113, -0.4027, -0.0194,  0.0194, -0.4186,\\n\",\n      \"           0.1546,  0.0242, -0.0225, -0.0274,  0.3602,  0.2945,  0.2618,\\n\",\n      \"           0.5189, -0.1896,  0.2425, -0.5667,  0.0585,  0.1053, -0.0271,\\n\",\n      \"          -0.1372, -0.1315, -0.5570,  0.3052, -0.4495,  0.3297, -0.3905,\\n\",\n      \"          -0.3017],\\n\",\n      \"         [-0.0275,  0.2379, -0.0319,  0.4698, -0.1619, -0.0706, -0.0780,\\n\",\n      \"           0.1541,  0.0327, -0.2243, -0.3156, -0.4628,  0.1860, -0.0101,\\n\",\n      \"          -0.4054,  0.0029, -0.0080,  0.5652, -0.1516,  0.5389, -0.5006,\\n\",\n      \"          -0.0446,  0.2613, -0.0280,  0.3845, -0.3965,  0.3268,  0.0406,\\n\",\n      \"          -0.3839, -0.3333, -0.2886, -0.2945,  0.2206,  0.2528,  0.3814,\\n\",\n      \"           0.3828, -0.1332, -0.2654, -0.4855,  0.0869,  0.1276, -0.5049,\\n\",\n      \"          -0.0909, -0.0342, -0.0861, -0.2700,  0.3030,  0.2807,  0.2331,\\n\",\n      \"           0.4310, -0.1804, -0.1778, -0.2705, -0.2316, -0.1448, -0.0105,\\n\",\n      \"          -0.0791, -0.3755, -0.4808,  0.0087, -0.4352,  0.3613, -0.4610,\\n\",\n      \"          -0.2611]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\\n\",\n      \"           1.0795e-01,  1.1117e-01,  1.0526e-01, -1.9621e-01, -1.7305e-01,\\n\",\n      \"           5.2908e-02, -1.1708e-01, -3.1992e-01,  2.5680e-01,  1.3125e-01,\\n\",\n      \"          -5.8317e-01,  2.9118e-01,  9.6432e-02, -1.2121e-01, -5.2562e-01,\\n\",\n      \"          -4.9280e-01,  9.9200e-04,  1.0100e-01, -1.4418e-01, -9.7080e-04,\\n\",\n      \"           4.9621e-02, -7.5445e-02,  8.9830e-02,  8.4073e-02, -1.0900e-01,\\n\",\n      \"          -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01,  6.5989e-02,\\n\",\n      \"          -1.1115e-01, -1.8222e-01,  2.0451e-02, -9.9988e-02, -3.5648e-01,\\n\",\n      \"           1.4316e-01,  5.8419e-01,  5.7575e-02,  7.9051e-02, -4.5552e-01,\\n\",\n      \"          -2.5276e-01,  3.1515e-01, -7.7021e-02, -2.6506e-02,  3.6586e-01,\\n\",\n      \"           7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\\n\",\n      \"          -2.8730e-02, -3.3728e-01,  1.7582e-01,  2.9807e-02, -3.0381e-01,\\n\",\n      \"           3.6682e-01,  2.1646e-01,  2.1079e-01, -2.2197e-01],\\n\",\n      \"         [-5.9364e-02,  4.9278e-01,  3.9939e-01, -6.4556e-01, -5.4136e-01,\\n\",\n      \"           5.7767e-01, -8.2846e-02,  3.4757e-01, -2.6940e-01, -1.3587e-01,\\n\",\n      \"           2.9661e-01,  1.9267e-01,  3.3508e-01, -2.3874e-01,  1.6769e-01,\\n\",\n      \"           8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\\n\",\n      \"          -1.1036e-01, -2.3516e-01, -3.3576e-01,  6.6362e-02, -4.2507e-01,\\n\",\n      \"          -1.2496e-01,  7.5707e-01,  3.2817e-01,  4.5369e-01,  3.1337e-01,\\n\",\n      \"          -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\\n\",\n      \"           2.0347e-02,  1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\\n\",\n      \"           1.2553e-01, -2.9570e-01,  6.3393e-02,  4.9087e-01,  2.6956e-01,\\n\",\n      \"          -9.9909e-02,  1.1632e-01,  3.3636e-02, -6.5299e-01,  3.1438e-03,\\n\",\n      \"           1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02,  8.3628e-02,\\n\",\n      \"           2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\\n\",\n      \"           4.2149e-01,  3.3780e-02, -6.2170e-02, -1.9143e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.2377e-01, -3.5410e-01, -2.7126e-01,  6.7114e-01, -1.3655e-01,\\n\",\n      \"           1.6070e-01,  3.2438e-01,  4.1661e-01,  1.9747e-01, -2.9179e-01,\\n\",\n      \"           9.6542e-02, -5.5992e-02,  1.0121e-01, -3.8642e-01,  4.1851e-01,\\n\",\n      \"          -1.1139e-01,  2.4136e-01,  2.3179e-01,  5.1139e-02, -4.5248e-01,\\n\",\n      \"          -5.3721e-01,  8.7373e-02,  2.3784e-01,  1.2280e-01,  2.1850e-01,\\n\",\n      \"          -9.6268e-02, -1.6007e-01, -1.3404e-01,  1.6351e-01, -2.4172e-01,\\n\",\n      \"          -2.5418e-01, -9.7521e-02,  2.4446e-01,  3.5432e-01,  9.5840e-02,\\n\",\n      \"           1.5298e-01, -4.6807e-01,  7.6614e-01,  1.1059e-01,  1.0575e-01,\\n\",\n      \"           1.7815e-01,  5.6318e-01,  1.7585e-01, -7.1355e-02, -2.4294e-01,\\n\",\n      \"           3.2790e-02,  2.7889e-01, -4.4913e-01,  7.0002e-02,  5.5741e-01,\\n\",\n      \"          -1.6276e-01, -3.6297e-01,  2.0895e-01, -4.0116e-01, -2.2522e-01,\\n\",\n      \"          -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01,  4.5957e-01,\\n\",\n      \"          -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\\n\",\n      \"         [ 4.5037e-01, -3.6208e-02, -8.8401e-02,  5.8330e-01, -3.7614e-01,\\n\",\n      \"           2.7170e-01,  2.5848e-01,  5.3754e-01,  8.3193e-02, -2.1463e-01,\\n\",\n      \"           2.4849e-01,  9.6076e-02,  4.8274e-01, -5.3474e-01,  4.4389e-01,\\n\",\n      \"           1.8048e-01,  8.1216e-02,  3.8565e-02, -2.1158e-01, -1.0749e-01,\\n\",\n      \"          -2.6261e-01, -3.1016e-02, -7.9159e-02,  2.0517e-01,  4.4546e-02,\\n\",\n      \"          -2.3875e-01,  3.8012e-01, -2.2126e-03,  3.3358e-01,  1.0724e-02,\\n\",\n      \"          -2.5482e-01, -8.6964e-02,  1.7899e-01,  5.1795e-01, -9.8892e-02,\\n\",\n      \"           2.9072e-01, -3.6883e-01,  8.0775e-01, -2.5374e-01,  1.7086e-01,\\n\",\n      \"           1.3368e-01, -6.3352e-02,  1.7475e-01,  1.2112e-01,  3.0679e-01,\\n\",\n      \"           1.3249e-01,  2.5912e-01, -5.0618e-01, -3.6696e-01,  3.8838e-01,\\n\",\n      \"          -1.7201e-01, -4.2089e-01,  1.8540e-01, -3.9560e-01,  9.7645e-02,\\n\",\n      \"          -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01,  5.1789e-01,\\n\",\n      \"          -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\\n\",\n      \"\\n\",\n      \"        [[ 6.1572e-02, -7.8968e-02, -1.2629e-01,  4.9267e-01, -3.3531e-01,\\n\",\n      \"          -4.6577e-01,  4.6988e-01,  4.1398e-01,  3.0156e-01,  1.1518e-01,\\n\",\n      \"           3.1389e-02, -4.6762e-01,  1.8188e-01, -6.1688e-01, -2.6343e-01,\\n\",\n      \"          -3.1576e-01,  4.9902e-01, -2.4268e-01,  1.6815e-01, -1.9693e-01,\\n\",\n      \"          -3.1019e-01,  1.7517e-01,  3.3324e-01,  9.6325e-02,  2.4211e-01,\\n\",\n      \"          -1.1460e-01, -3.7784e-01, -3.6116e-01,  2.4703e-01,  1.2421e-01,\\n\",\n      \"           2.6336e-01, -1.3863e-01,  4.4239e-01,  6.6868e-01,  3.9022e-01,\\n\",\n      \"           1.6709e-01, -3.4177e-01,  7.9374e-01, -2.0875e-01,  1.7250e-01,\\n\",\n      \"           9.2274e-02,  7.5432e-02,  3.1252e-01, -4.9550e-02,  4.5907e-02,\\n\",\n      \"           1.2979e-01,  2.7269e-01, -5.3483e-01, -6.1280e-02,  3.7396e-01,\\n\",\n      \"          -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\\n\",\n      \"           8.6522e-02,  1.7051e-01, -4.1334e-02, -3.5324e-01,  2.7226e-01,\\n\",\n      \"          -5.8631e-01, -5.0842e-01,  3.2943e-02,  2.5173e-01],\\n\",\n      \"         [-6.6955e-02, -1.8796e-01, -9.6617e-02,  4.2052e-01, -2.8605e-01,\\n\",\n      \"          -5.0497e-02,  1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\\n\",\n      \"           4.6530e-01, -2.1460e-01,  5.9005e-01, -2.3882e-01,  2.3549e-01,\\n\",\n      \"          -4.8996e-01,  9.8277e-02,  1.9883e-01,  7.5948e-02, -3.6621e-03,\\n\",\n      \"          -3.5541e-01,  2.3025e-01,  3.2918e-02,  2.3964e-01,  2.0046e-01,\\n\",\n      \"          -8.6032e-02,  3.1096e-01,  3.6305e-02, -1.8553e-01, -7.1272e-02,\\n\",\n      \"          -2.6754e-01,  1.9024e-01,  5.9301e-01,  4.9991e-01,  1.0630e-01,\\n\",\n      \"           2.9337e-01, -2.2475e-01,  7.7874e-01,  3.2949e-01, -1.6518e-01,\\n\",\n      \"          -4.7336e-01,  1.0853e-01,  2.3952e-01,  3.3526e-01, -1.5270e-01,\\n\",\n      \"           1.4827e-01,  1.1312e-01, -6.9810e-01, -3.8128e-01,  9.0495e-02,\\n\",\n      \"          -2.6985e-01, -6.3003e-01,  5.8684e-01, -6.1706e-01,  3.1610e-01,\\n\",\n      \"          -1.5197e-01,  3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\\n\",\n      \"          -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7015e-01,  5.8729e-01,  1.4587e-01,  4.3972e-01, -1.1587e-01,\\n\",\n      \"          -6.3192e-01,  4.2250e-01,  2.0748e-01,  4.9845e-01,  3.0032e-02,\\n\",\n      \"           3.4143e-01, -1.4835e-01,  3.7302e-01,  6.5627e-02, -1.1746e-01,\\n\",\n      \"          -3.5304e-01, -7.3488e-02,  1.5345e-01,  3.8006e-01,  6.6840e-02,\\n\",\n      \"          -4.7847e-01, -4.6739e-02,  2.2526e-01, -1.0725e-03,  4.1146e-01,\\n\",\n      \"          -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01,  1.2527e-01,\\n\",\n      \"           1.1725e-01, -3.7594e-01,  6.2424e-02,  4.3085e-01,  7.0839e-01,\\n\",\n      \"           5.0156e-01, -6.4564e-01,  8.0471e-01, -4.8353e-01,  2.8749e-01,\\n\",\n      \"           5.4820e-02, -4.9795e-01,  3.6530e-01, -1.1493e-01, -2.3898e-02,\\n\",\n      \"           3.6245e-02,  1.0556e-01, -1.0374e-01, -1.8034e-02,  6.6806e-01,\\n\",\n      \"          -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01,  1.8598e-01,\\n\",\n      \"          -6.6235e-02, -1.3134e-01,  5.2580e-01, -3.6212e-01,  2.3866e-01,\\n\",\n      \"          -1.7990e-02,  8.0296e-02, -3.7835e-01, -2.9699e-01],\\n\",\n      \"         [-2.9946e-01,  1.7333e-01,  5.8426e-01,  3.4180e-01, -3.0022e-01,\\n\",\n      \"           1.7389e-01,  4.9503e-01, -8.8328e-02,  1.4499e-01, -9.1872e-02,\\n\",\n      \"           2.5825e-01, -3.0323e-01,  2.7515e-01,  1.3643e-02,  1.8358e-01,\\n\",\n      \"          -2.9342e-01,  1.2102e-01, -3.1372e-03,  4.2592e-01, -3.2323e-01,\\n\",\n      \"          -1.9382e-01,  1.0034e-01, -2.4542e-01,  1.7491e-01,  2.8585e-01,\\n\",\n      \"           2.1878e-01, -2.8580e-01,  2.6377e-01, -5.8683e-02, -1.8648e-02,\\n\",\n      \"           1.5466e-01,  6.1528e-02,  6.1995e-01,  3.3441e-01, -1.5242e-01,\\n\",\n      \"          -4.1493e-01, -2.2674e-01,  3.3035e-01,  4.1771e-01, -2.6339e-01,\\n\",\n      \"           1.6438e-02,  1.3321e-02,  3.6096e-01,  3.5693e-01, -2.7066e-01,\\n\",\n      \"           1.9357e-01,  3.4842e-01, -4.6198e-01, -2.5908e-01,  9.7302e-02,\\n\",\n      \"          -5.1082e-01, -6.0207e-01,  5.3004e-01, -2.6133e-01, -1.3656e-01,\\n\",\n      \"           3.1702e-01, -1.9228e-01,  1.1084e-01, -1.2700e-01,  9.1848e-02,\\n\",\n      \"          -1.2077e-01, -2.3991e-01, -2.2360e-01,  1.1209e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.3006e-03,  5.1264e-01,  1.4625e-01,  1.9990e-01, -9.8293e-04,\\n\",\n      \"          -3.9322e-01,  1.0313e-02,  1.9901e-01,  5.2193e-01,  2.4577e-01,\\n\",\n      \"           3.6912e-01, -4.1717e-01,  1.6650e-01, -1.3958e-01,  5.7864e-02,\\n\",\n      \"           7.9536e-02,  1.9557e-01, -3.7678e-02,  5.0398e-01, -3.0349e-01,\\n\",\n      \"          -2.0343e-02,  1.2007e-02,  3.0268e-02,  2.5128e-02,  4.6688e-01,\\n\",\n      \"           5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\\n\",\n      \"           2.3817e-01, -4.7999e-01, -1.1352e-01,  3.4405e-01,  4.7923e-01,\\n\",\n      \"           3.4116e-01, -1.3998e-01,  5.8126e-01, -5.3983e-01,  9.0539e-03,\\n\",\n      \"          -2.8760e-01,  1.4470e-03,  4.1896e-01,  9.0540e-02,  8.4472e-02,\\n\",\n      \"           2.4745e-01,  2.4676e-01,  1.3342e-01,  2.1588e-01,  4.5192e-01,\\n\",\n      \"          -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01,  1.4840e-01,\\n\",\n      \"          -3.1757e-01, -2.9868e-01,  3.5217e-01, -4.8268e-01,  6.2362e-01,\\n\",\n      \"          -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\\n\",\n      \"         [-6.7714e-02,  4.2866e-01,  3.4476e-01,  1.5000e-01, -3.6190e-02,\\n\",\n      \"           8.3957e-02,  5.5312e-02,  3.0808e-02,  4.4187e-01,  3.5487e-01,\\n\",\n      \"           2.7749e-01, -5.4736e-01,  1.3060e-01, -1.2858e-01,  1.4391e-01,\\n\",\n      \"           2.2495e-02,  2.5716e-01, -1.1392e-01,  5.0622e-01, -5.3849e-01,\\n\",\n      \"           8.1028e-02,  1.1880e-01, -1.9030e-01,  1.6085e-01,  4.2327e-01,\\n\",\n      \"           3.3224e-01, -2.8663e-01,  1.5584e-01,  2.0010e-02, -1.3972e-01,\\n\",\n      \"           3.0517e-01, -3.2512e-01,  2.0605e-01,  3.9866e-01,  7.5201e-02,\\n\",\n      \"          -1.4346e-01,  4.0802e-02,  2.5994e-01, -1.1602e-01, -3.1564e-01,\\n\",\n      \"          -2.4646e-01,  2.8795e-01,  3.0432e-01,  3.9361e-01, -2.6748e-02,\\n\",\n      \"           3.1790e-01,  4.0642e-01, -3.9523e-02,  2.4936e-02,  2.3207e-01,\\n\",\n      \"          -3.6772e-01, -7.2585e-01,  2.2393e-01, -4.9142e-01,  8.1099e-02,\\n\",\n      \"          -2.7510e-01, -3.3252e-01,  2.6320e-04, -3.5465e-01,  5.0127e-01,\\n\",\n      \"          -1.9976e-01, -4.5309e-01, -5.5326e-01,  1.9372e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.7057e-01,  3.2322e-01,  2.4574e-01,  4.5261e-01, -2.0914e-01,\\n\",\n      \"          -1.7835e-01, -1.3981e-01, -7.2055e-01,  4.6101e-01,  1.5611e-01,\\n\",\n      \"           1.9007e-01, -3.4269e-01, -1.1867e-01,  2.6001e-02, -2.9307e-01,\\n\",\n      \"           4.3272e-01,  2.6621e-01,  2.3335e-01,  5.2463e-01, -4.2147e-01,\\n\",\n      \"          -2.7186e-01, -3.1412e-01,  2.4990e-01,  2.9644e-02,  3.8283e-01,\\n\",\n      \"          -6.0349e-01,  4.2053e-01,  7.7588e-02, -5.3387e-01, -1.7636e-01,\\n\",\n      \"           5.6825e-01, -1.9517e-01,  2.9228e-01,  1.5452e-01, -1.3068e-01,\\n\",\n      \"          -1.6854e-01, -6.7126e-01,  5.3163e-01, -1.5279e-01, -4.1532e-03,\\n\",\n      \"          -4.1549e-01, -5.4631e-01, -2.0766e-01,  5.0530e-01,  2.4160e-01,\\n\",\n      \"           3.2883e-01,  6.5491e-02,  4.0148e-01,  3.9996e-01,  5.5935e-01,\\n\",\n      \"          -2.0955e-01,  8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\\n\",\n      \"          -2.2420e-02, -4.3686e-01,  3.6831e-01,  4.9070e-01,  6.7791e-01,\\n\",\n      \"           9.3536e-02,  9.6758e-02,  2.7063e-01, -5.9233e-01],\\n\",\n      \"         [-2.1370e-01,  2.6253e-01,  3.7184e-01,  4.2944e-01, -2.2733e-01,\\n\",\n      \"           8.4641e-02, -1.1203e-01, -7.5004e-01,  4.0968e-01,  2.9284e-01,\\n\",\n      \"           1.0524e-01, -4.5711e-01, -1.3226e-01,  3.6899e-02, -2.9938e-01,\\n\",\n      \"           3.7876e-01,  3.0198e-01,  2.1248e-01,  5.0674e-01, -5.9870e-01,\\n\",\n      \"          -2.2014e-01, -2.7972e-01,  1.8850e-01,  1.3672e-01,  3.6082e-01,\\n\",\n      \"          -5.1068e-01,  3.8401e-01,  2.3140e-01, -4.6272e-01, -2.3285e-01,\\n\",\n      \"           5.9758e-01, -8.0234e-02,  4.1550e-01,  2.3767e-01, -3.2081e-01,\\n\",\n      \"          -2.6955e-01, -6.4333e-01,  3.0121e-01,  1.8572e-01, -2.1806e-01,\\n\",\n      \"          -3.6785e-01, -5.4011e-01, -3.0245e-01,  5.8575e-01,  1.6013e-01,\\n\",\n      \"           3.7621e-01,  1.5080e-01,  3.5251e-01,  2.9042e-01,  4.9547e-01,\\n\",\n      \"          -2.0645e-01,  9.5648e-04,  3.2034e-01, -5.9634e-01, -4.1605e-02,\\n\",\n      \"           2.8428e-02, -4.5341e-01,  1.7124e-01,  4.6399e-01,  5.8401e-01,\\n\",\n      \"           1.8860e-03, -1.1181e-01,  3.3156e-01, -4.8292e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.1405e-01,  7.2646e-01,  2.3313e-02,  2.9391e-01, -4.1278e-02,\\n\",\n      \"          -6.8512e-01, -6.3971e-01, -7.3721e-01,  5.8138e-01,  2.3946e-01,\\n\",\n      \"          -1.2826e-01, -4.2802e-01, -2.4249e-01,  6.9205e-01, -4.7766e-01,\\n\",\n      \"           1.3880e-01, -2.6832e-01,  8.0203e-01,  7.5108e-01, -3.1906e-01,\\n\",\n      \"          -7.2209e-01, -3.2389e-01,  2.3982e-01,  4.4074e-02,  8.8281e-03,\\n\",\n      \"          -5.3503e-01,  1.8058e-01,  5.3126e-01, -1.6590e-01,  4.4685e-02,\\n\",\n      \"           7.8644e-01, -5.1364e-01,  6.8338e-02, -6.5219e-02,  1.0594e-01,\\n\",\n      \"          -4.3814e-02, -5.8792e-01,  5.3987e-01, -2.0544e-02,  3.5673e-02,\\n\",\n      \"           3.8325e-01, -8.9699e-01, -9.8914e-02,  2.7993e-01, -4.2853e-01,\\n\",\n      \"           2.6470e-01, -1.5111e-01,  1.2840e-01,  4.4130e-01,  7.0472e-01,\\n\",\n      \"          -5.4222e-01,  6.3632e-01, -4.5410e-01, -7.3485e-01,  3.9335e-03,\\n\",\n      \"           2.1974e-02, -7.7820e-01,  7.1851e-01,  4.9839e-01,  4.5752e-01,\\n\",\n      \"          -5.6736e-01, -1.1570e-01,  1.7741e-01, -6.8631e-01],\\n\",\n      \"         [-5.2954e-01,  7.1507e-01,  1.1961e-01,  2.7049e-01, -4.1430e-02,\\n\",\n      \"          -6.3285e-01, -6.2980e-01, -7.5369e-01,  5.6139e-01,  3.6687e-01,\\n\",\n      \"          -1.8580e-01, -5.0004e-01, -2.4768e-01,  6.8709e-01, -4.7964e-01,\\n\",\n      \"           9.6180e-02, -2.4753e-01,  7.8835e-01,  7.4328e-01, -4.0307e-01,\\n\",\n      \"          -7.0861e-01, -3.0193e-01,  1.9124e-01,  1.0709e-01, -1.1137e-02,\\n\",\n      \"          -4.5462e-01,  1.6204e-01,  5.9233e-01, -1.0915e-01,  5.0066e-02,\\n\",\n      \"           7.9568e-01, -4.6623e-01,  1.3996e-01,  3.4372e-03, -3.3035e-02,\\n\",\n      \"          -1.1971e-01, -5.7255e-01,  3.7681e-01,  1.9896e-01, -1.2122e-01,\\n\",\n      \"           3.8669e-01, -9.0198e-01, -1.6976e-01,  3.3988e-01, -4.4157e-01,\\n\",\n      \"           3.1625e-01, -1.0426e-01,  1.2102e-01,  3.5134e-01,  6.7499e-01,\\n\",\n      \"          -5.4203e-01,  5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\\n\",\n      \"           5.9193e-02, -7.8978e-01,  6.7157e-01,  4.5797e-01,  4.0904e-01,\\n\",\n      \"          -5.9217e-01, -1.8372e-01,  2.3222e-01, -6.0919e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([10,  9])\\n\",\n      \"dec_state: tensor([[[-0.0097,  0.4272,  0.2202,  0.6867,  0.0931, -0.0485, -0.4111,\\n\",\n      \"           0.0775, -0.4581, -0.3938, -0.5451,  0.0102, -0.2225,  0.1565,\\n\",\n      \"          -0.2731,  0.1301,  0.4523,  0.0851,  0.3276,  0.3611, -0.1639,\\n\",\n      \"          -0.5603,  0.1990,  0.3512, -0.0368, -0.3202,  0.5012,  0.0240,\\n\",\n      \"          -0.2715,  0.1164, -0.5094, -0.1654,  0.0062, -0.1278, -0.6038,\\n\",\n      \"           0.5580, -0.2510,  0.0221, -0.4655,  0.0214, -0.1069, -0.0232,\\n\",\n      \"          -0.0834,  0.4616, -0.1138,  0.0213,  0.3675, -0.1400,  0.3013,\\n\",\n      \"           0.2403, -0.0904, -0.1887, -0.5031, -0.2537, -0.3975,  0.1455,\\n\",\n      \"          -0.1847,  0.5543, -0.6072, -0.2217, -0.6659,  0.5137, -0.1449,\\n\",\n      \"           0.3036],\\n\",\n      \"         [ 0.2515,  0.2307, -0.1274,  0.5427,  0.1354,  0.1604,  0.0553,\\n\",\n      \"          -0.0688,  0.2236, -0.2780, -0.4119, -0.5939,  0.0458,  0.0957,\\n\",\n      \"          -0.2799,  0.3553, -0.1319,  0.6715, -0.1900,  0.6442,  0.0032,\\n\",\n      \"          -0.2891, -0.0985,  0.0966,  0.0652, -0.6051, -0.0044, -0.0934,\\n\",\n      \"          -0.5188, -0.2173, -0.1409,  0.0570,  0.0065,  0.2711,  0.0667,\\n\",\n      \"          -0.1444, -0.0983, -0.2624,  0.2168, -0.2709, -0.0084, -0.3294,\\n\",\n      \"           0.0875, -0.1228, -0.3877, -0.2682,  0.3532,  0.2028,  0.2900,\\n\",\n      \"           0.5153, -0.0089,  0.1474,  0.2249, -0.3587,  0.0467, -0.3453,\\n\",\n      \"           0.3051,  0.1550, -0.0072,  0.1444, -0.2980,  0.0621, -0.5981,\\n\",\n      \"           0.2960]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\\n\",\n      \"           1.0795e-01,  1.1117e-01,  1.0526e-01, -1.9621e-01, -1.7305e-01,\\n\",\n      \"           5.2908e-02, -1.1708e-01, -3.1992e-01,  2.5680e-01,  1.3125e-01,\\n\",\n      \"          -5.8317e-01,  2.9118e-01,  9.6432e-02, -1.2121e-01, -5.2562e-01,\\n\",\n      \"          -4.9280e-01,  9.9200e-04,  1.0100e-01, -1.4418e-01, -9.7080e-04,\\n\",\n      \"           4.9621e-02, -7.5445e-02,  8.9830e-02,  8.4073e-02, -1.0900e-01,\\n\",\n      \"          -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01,  6.5989e-02,\\n\",\n      \"          -1.1115e-01, -1.8222e-01,  2.0451e-02, -9.9988e-02, -3.5648e-01,\\n\",\n      \"           1.4316e-01,  5.8419e-01,  5.7575e-02,  7.9051e-02, -4.5552e-01,\\n\",\n      \"          -2.5276e-01,  3.1515e-01, -7.7021e-02, -2.6506e-02,  3.6586e-01,\\n\",\n      \"           7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\\n\",\n      \"          -2.8730e-02, -3.3728e-01,  1.7582e-01,  2.9807e-02, -3.0381e-01,\\n\",\n      \"           3.6682e-01,  2.1646e-01,  2.1079e-01, -2.2197e-01],\\n\",\n      \"         [-5.9364e-02,  4.9278e-01,  3.9939e-01, -6.4556e-01, -5.4136e-01,\\n\",\n      \"           5.7767e-01, -8.2846e-02,  3.4757e-01, -2.6940e-01, -1.3587e-01,\\n\",\n      \"           2.9661e-01,  1.9267e-01,  3.3508e-01, -2.3874e-01,  1.6769e-01,\\n\",\n      \"           8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\\n\",\n      \"          -1.1036e-01, -2.3516e-01, -3.3576e-01,  6.6362e-02, -4.2507e-01,\\n\",\n      \"          -1.2496e-01,  7.5707e-01,  3.2817e-01,  4.5369e-01,  3.1337e-01,\\n\",\n      \"          -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\\n\",\n      \"           2.0347e-02,  1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\\n\",\n      \"           1.2553e-01, -2.9570e-01,  6.3393e-02,  4.9087e-01,  2.6956e-01,\\n\",\n      \"          -9.9909e-02,  1.1632e-01,  3.3636e-02, -6.5299e-01,  3.1438e-03,\\n\",\n      \"           1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02,  8.3628e-02,\\n\",\n      \"           2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\\n\",\n      \"           4.2149e-01,  3.3780e-02, -6.2170e-02, -1.9143e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.2377e-01, -3.5410e-01, -2.7126e-01,  6.7114e-01, -1.3655e-01,\\n\",\n      \"           1.6070e-01,  3.2438e-01,  4.1661e-01,  1.9747e-01, -2.9179e-01,\\n\",\n      \"           9.6542e-02, -5.5992e-02,  1.0121e-01, -3.8642e-01,  4.1851e-01,\\n\",\n      \"          -1.1139e-01,  2.4136e-01,  2.3179e-01,  5.1139e-02, -4.5248e-01,\\n\",\n      \"          -5.3721e-01,  8.7373e-02,  2.3784e-01,  1.2280e-01,  2.1850e-01,\\n\",\n      \"          -9.6268e-02, -1.6007e-01, -1.3404e-01,  1.6351e-01, -2.4172e-01,\\n\",\n      \"          -2.5418e-01, -9.7521e-02,  2.4446e-01,  3.5432e-01,  9.5840e-02,\\n\",\n      \"           1.5298e-01, -4.6807e-01,  7.6614e-01,  1.1059e-01,  1.0575e-01,\\n\",\n      \"           1.7815e-01,  5.6318e-01,  1.7585e-01, -7.1355e-02, -2.4294e-01,\\n\",\n      \"           3.2790e-02,  2.7889e-01, -4.4913e-01,  7.0002e-02,  5.5741e-01,\\n\",\n      \"          -1.6276e-01, -3.6297e-01,  2.0895e-01, -4.0116e-01, -2.2522e-01,\\n\",\n      \"          -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01,  4.5957e-01,\\n\",\n      \"          -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\\n\",\n      \"         [ 4.5037e-01, -3.6208e-02, -8.8401e-02,  5.8330e-01, -3.7614e-01,\\n\",\n      \"           2.7170e-01,  2.5848e-01,  5.3754e-01,  8.3193e-02, -2.1463e-01,\\n\",\n      \"           2.4849e-01,  9.6076e-02,  4.8274e-01, -5.3474e-01,  4.4389e-01,\\n\",\n      \"           1.8048e-01,  8.1216e-02,  3.8565e-02, -2.1158e-01, -1.0749e-01,\\n\",\n      \"          -2.6261e-01, -3.1016e-02, -7.9159e-02,  2.0517e-01,  4.4546e-02,\\n\",\n      \"          -2.3875e-01,  3.8012e-01, -2.2126e-03,  3.3358e-01,  1.0724e-02,\\n\",\n      \"          -2.5482e-01, -8.6964e-02,  1.7899e-01,  5.1795e-01, -9.8892e-02,\\n\",\n      \"           2.9072e-01, -3.6883e-01,  8.0775e-01, -2.5374e-01,  1.7086e-01,\\n\",\n      \"           1.3368e-01, -6.3352e-02,  1.7475e-01,  1.2112e-01,  3.0679e-01,\\n\",\n      \"           1.3249e-01,  2.5912e-01, -5.0618e-01, -3.6696e-01,  3.8838e-01,\\n\",\n      \"          -1.7201e-01, -4.2089e-01,  1.8540e-01, -3.9560e-01,  9.7645e-02,\\n\",\n      \"          -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01,  5.1789e-01,\\n\",\n      \"          -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\\n\",\n      \"\\n\",\n      \"        [[ 6.1572e-02, -7.8968e-02, -1.2629e-01,  4.9267e-01, -3.3531e-01,\\n\",\n      \"          -4.6577e-01,  4.6988e-01,  4.1398e-01,  3.0156e-01,  1.1518e-01,\\n\",\n      \"           3.1389e-02, -4.6762e-01,  1.8188e-01, -6.1688e-01, -2.6343e-01,\\n\",\n      \"          -3.1576e-01,  4.9902e-01, -2.4268e-01,  1.6815e-01, -1.9693e-01,\\n\",\n      \"          -3.1019e-01,  1.7517e-01,  3.3324e-01,  9.6325e-02,  2.4211e-01,\\n\",\n      \"          -1.1460e-01, -3.7784e-01, -3.6116e-01,  2.4703e-01,  1.2421e-01,\\n\",\n      \"           2.6336e-01, -1.3863e-01,  4.4239e-01,  6.6868e-01,  3.9022e-01,\\n\",\n      \"           1.6709e-01, -3.4177e-01,  7.9374e-01, -2.0875e-01,  1.7250e-01,\\n\",\n      \"           9.2274e-02,  7.5432e-02,  3.1252e-01, -4.9550e-02,  4.5907e-02,\\n\",\n      \"           1.2979e-01,  2.7269e-01, -5.3483e-01, -6.1280e-02,  3.7396e-01,\\n\",\n      \"          -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\\n\",\n      \"           8.6522e-02,  1.7051e-01, -4.1334e-02, -3.5324e-01,  2.7226e-01,\\n\",\n      \"          -5.8631e-01, -5.0842e-01,  3.2943e-02,  2.5173e-01],\\n\",\n      \"         [-6.6955e-02, -1.8796e-01, -9.6617e-02,  4.2052e-01, -2.8605e-01,\\n\",\n      \"          -5.0497e-02,  1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\\n\",\n      \"           4.6530e-01, -2.1460e-01,  5.9005e-01, -2.3882e-01,  2.3549e-01,\\n\",\n      \"          -4.8996e-01,  9.8277e-02,  1.9883e-01,  7.5948e-02, -3.6621e-03,\\n\",\n      \"          -3.5541e-01,  2.3025e-01,  3.2918e-02,  2.3964e-01,  2.0046e-01,\\n\",\n      \"          -8.6032e-02,  3.1096e-01,  3.6305e-02, -1.8553e-01, -7.1272e-02,\\n\",\n      \"          -2.6754e-01,  1.9024e-01,  5.9301e-01,  4.9991e-01,  1.0630e-01,\\n\",\n      \"           2.9337e-01, -2.2475e-01,  7.7874e-01,  3.2949e-01, -1.6518e-01,\\n\",\n      \"          -4.7336e-01,  1.0853e-01,  2.3952e-01,  3.3526e-01, -1.5270e-01,\\n\",\n      \"           1.4827e-01,  1.1312e-01, -6.9810e-01, -3.8128e-01,  9.0495e-02,\\n\",\n      \"          -2.6985e-01, -6.3003e-01,  5.8684e-01, -6.1706e-01,  3.1610e-01,\\n\",\n      \"          -1.5197e-01,  3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\\n\",\n      \"          -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7015e-01,  5.8729e-01,  1.4587e-01,  4.3972e-01, -1.1587e-01,\\n\",\n      \"          -6.3192e-01,  4.2250e-01,  2.0748e-01,  4.9845e-01,  3.0032e-02,\\n\",\n      \"           3.4143e-01, -1.4835e-01,  3.7302e-01,  6.5627e-02, -1.1746e-01,\\n\",\n      \"          -3.5304e-01, -7.3488e-02,  1.5345e-01,  3.8006e-01,  6.6840e-02,\\n\",\n      \"          -4.7847e-01, -4.6739e-02,  2.2526e-01, -1.0725e-03,  4.1146e-01,\\n\",\n      \"          -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01,  1.2527e-01,\\n\",\n      \"           1.1725e-01, -3.7594e-01,  6.2424e-02,  4.3085e-01,  7.0839e-01,\\n\",\n      \"           5.0156e-01, -6.4564e-01,  8.0471e-01, -4.8353e-01,  2.8749e-01,\\n\",\n      \"           5.4820e-02, -4.9795e-01,  3.6530e-01, -1.1493e-01, -2.3898e-02,\\n\",\n      \"           3.6245e-02,  1.0556e-01, -1.0374e-01, -1.8034e-02,  6.6806e-01,\\n\",\n      \"          -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01,  1.8598e-01,\\n\",\n      \"          -6.6235e-02, -1.3134e-01,  5.2580e-01, -3.6212e-01,  2.3866e-01,\\n\",\n      \"          -1.7990e-02,  8.0296e-02, -3.7835e-01, -2.9699e-01],\\n\",\n      \"         [-2.9946e-01,  1.7333e-01,  5.8426e-01,  3.4180e-01, -3.0022e-01,\\n\",\n      \"           1.7389e-01,  4.9503e-01, -8.8328e-02,  1.4499e-01, -9.1872e-02,\\n\",\n      \"           2.5825e-01, -3.0323e-01,  2.7515e-01,  1.3643e-02,  1.8358e-01,\\n\",\n      \"          -2.9342e-01,  1.2102e-01, -3.1372e-03,  4.2592e-01, -3.2323e-01,\\n\",\n      \"          -1.9382e-01,  1.0034e-01, -2.4542e-01,  1.7491e-01,  2.8585e-01,\\n\",\n      \"           2.1878e-01, -2.8580e-01,  2.6377e-01, -5.8683e-02, -1.8648e-02,\\n\",\n      \"           1.5466e-01,  6.1528e-02,  6.1995e-01,  3.3441e-01, -1.5242e-01,\\n\",\n      \"          -4.1493e-01, -2.2674e-01,  3.3035e-01,  4.1771e-01, -2.6339e-01,\\n\",\n      \"           1.6438e-02,  1.3321e-02,  3.6096e-01,  3.5693e-01, -2.7066e-01,\\n\",\n      \"           1.9357e-01,  3.4842e-01, -4.6198e-01, -2.5908e-01,  9.7302e-02,\\n\",\n      \"          -5.1082e-01, -6.0207e-01,  5.3004e-01, -2.6133e-01, -1.3656e-01,\\n\",\n      \"           3.1702e-01, -1.9228e-01,  1.1084e-01, -1.2700e-01,  9.1848e-02,\\n\",\n      \"          -1.2077e-01, -2.3991e-01, -2.2360e-01,  1.1209e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.3006e-03,  5.1264e-01,  1.4625e-01,  1.9990e-01, -9.8293e-04,\\n\",\n      \"          -3.9322e-01,  1.0313e-02,  1.9901e-01,  5.2193e-01,  2.4577e-01,\\n\",\n      \"           3.6912e-01, -4.1717e-01,  1.6650e-01, -1.3958e-01,  5.7864e-02,\\n\",\n      \"           7.9536e-02,  1.9557e-01, -3.7678e-02,  5.0398e-01, -3.0349e-01,\\n\",\n      \"          -2.0343e-02,  1.2007e-02,  3.0268e-02,  2.5128e-02,  4.6688e-01,\\n\",\n      \"           5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\\n\",\n      \"           2.3817e-01, -4.7999e-01, -1.1352e-01,  3.4405e-01,  4.7923e-01,\\n\",\n      \"           3.4116e-01, -1.3998e-01,  5.8126e-01, -5.3983e-01,  9.0539e-03,\\n\",\n      \"          -2.8760e-01,  1.4470e-03,  4.1896e-01,  9.0540e-02,  8.4472e-02,\\n\",\n      \"           2.4745e-01,  2.4676e-01,  1.3342e-01,  2.1588e-01,  4.5192e-01,\\n\",\n      \"          -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01,  1.4840e-01,\\n\",\n      \"          -3.1757e-01, -2.9868e-01,  3.5217e-01, -4.8268e-01,  6.2362e-01,\\n\",\n      \"          -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\\n\",\n      \"         [-6.7714e-02,  4.2866e-01,  3.4476e-01,  1.5000e-01, -3.6190e-02,\\n\",\n      \"           8.3957e-02,  5.5312e-02,  3.0808e-02,  4.4187e-01,  3.5487e-01,\\n\",\n      \"           2.7749e-01, -5.4736e-01,  1.3060e-01, -1.2858e-01,  1.4391e-01,\\n\",\n      \"           2.2495e-02,  2.5716e-01, -1.1392e-01,  5.0622e-01, -5.3849e-01,\\n\",\n      \"           8.1028e-02,  1.1880e-01, -1.9030e-01,  1.6085e-01,  4.2327e-01,\\n\",\n      \"           3.3224e-01, -2.8663e-01,  1.5584e-01,  2.0010e-02, -1.3972e-01,\\n\",\n      \"           3.0517e-01, -3.2512e-01,  2.0605e-01,  3.9866e-01,  7.5201e-02,\\n\",\n      \"          -1.4346e-01,  4.0802e-02,  2.5994e-01, -1.1602e-01, -3.1564e-01,\\n\",\n      \"          -2.4646e-01,  2.8795e-01,  3.0432e-01,  3.9361e-01, -2.6748e-02,\\n\",\n      \"           3.1790e-01,  4.0642e-01, -3.9523e-02,  2.4936e-02,  2.3207e-01,\\n\",\n      \"          -3.6772e-01, -7.2585e-01,  2.2393e-01, -4.9142e-01,  8.1099e-02,\\n\",\n      \"          -2.7510e-01, -3.3252e-01,  2.6320e-04, -3.5465e-01,  5.0127e-01,\\n\",\n      \"          -1.9976e-01, -4.5309e-01, -5.5326e-01,  1.9372e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.7057e-01,  3.2322e-01,  2.4574e-01,  4.5261e-01, -2.0914e-01,\\n\",\n      \"          -1.7835e-01, -1.3981e-01, -7.2055e-01,  4.6101e-01,  1.5611e-01,\\n\",\n      \"           1.9007e-01, -3.4269e-01, -1.1867e-01,  2.6001e-02, -2.9307e-01,\\n\",\n      \"           4.3272e-01,  2.6621e-01,  2.3335e-01,  5.2463e-01, -4.2147e-01,\\n\",\n      \"          -2.7186e-01, -3.1412e-01,  2.4990e-01,  2.9644e-02,  3.8283e-01,\\n\",\n      \"          -6.0349e-01,  4.2053e-01,  7.7588e-02, -5.3387e-01, -1.7636e-01,\\n\",\n      \"           5.6825e-01, -1.9517e-01,  2.9228e-01,  1.5452e-01, -1.3068e-01,\\n\",\n      \"          -1.6854e-01, -6.7126e-01,  5.3163e-01, -1.5279e-01, -4.1532e-03,\\n\",\n      \"          -4.1549e-01, -5.4631e-01, -2.0766e-01,  5.0530e-01,  2.4160e-01,\\n\",\n      \"           3.2883e-01,  6.5491e-02,  4.0148e-01,  3.9996e-01,  5.5935e-01,\\n\",\n      \"          -2.0955e-01,  8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\\n\",\n      \"          -2.2420e-02, -4.3686e-01,  3.6831e-01,  4.9070e-01,  6.7791e-01,\\n\",\n      \"           9.3536e-02,  9.6758e-02,  2.7063e-01, -5.9233e-01],\\n\",\n      \"         [-2.1370e-01,  2.6253e-01,  3.7184e-01,  4.2944e-01, -2.2733e-01,\\n\",\n      \"           8.4641e-02, -1.1203e-01, -7.5004e-01,  4.0968e-01,  2.9284e-01,\\n\",\n      \"           1.0524e-01, -4.5711e-01, -1.3226e-01,  3.6899e-02, -2.9938e-01,\\n\",\n      \"           3.7876e-01,  3.0198e-01,  2.1248e-01,  5.0674e-01, -5.9870e-01,\\n\",\n      \"          -2.2014e-01, -2.7972e-01,  1.8850e-01,  1.3672e-01,  3.6082e-01,\\n\",\n      \"          -5.1068e-01,  3.8401e-01,  2.3140e-01, -4.6272e-01, -2.3285e-01,\\n\",\n      \"           5.9758e-01, -8.0234e-02,  4.1550e-01,  2.3767e-01, -3.2081e-01,\\n\",\n      \"          -2.6955e-01, -6.4333e-01,  3.0121e-01,  1.8572e-01, -2.1806e-01,\\n\",\n      \"          -3.6785e-01, -5.4011e-01, -3.0245e-01,  5.8575e-01,  1.6013e-01,\\n\",\n      \"           3.7621e-01,  1.5080e-01,  3.5251e-01,  2.9042e-01,  4.9547e-01,\\n\",\n      \"          -2.0645e-01,  9.5648e-04,  3.2034e-01, -5.9634e-01, -4.1605e-02,\\n\",\n      \"           2.8428e-02, -4.5341e-01,  1.7124e-01,  4.6399e-01,  5.8401e-01,\\n\",\n      \"           1.8860e-03, -1.1181e-01,  3.3156e-01, -4.8292e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.1405e-01,  7.2646e-01,  2.3313e-02,  2.9391e-01, -4.1278e-02,\\n\",\n      \"          -6.8512e-01, -6.3971e-01, -7.3721e-01,  5.8138e-01,  2.3946e-01,\\n\",\n      \"          -1.2826e-01, -4.2802e-01, -2.4249e-01,  6.9205e-01, -4.7766e-01,\\n\",\n      \"           1.3880e-01, -2.6832e-01,  8.0203e-01,  7.5108e-01, -3.1906e-01,\\n\",\n      \"          -7.2209e-01, -3.2389e-01,  2.3982e-01,  4.4074e-02,  8.8281e-03,\\n\",\n      \"          -5.3503e-01,  1.8058e-01,  5.3126e-01, -1.6590e-01,  4.4685e-02,\\n\",\n      \"           7.8644e-01, -5.1364e-01,  6.8338e-02, -6.5219e-02,  1.0594e-01,\\n\",\n      \"          -4.3814e-02, -5.8792e-01,  5.3987e-01, -2.0544e-02,  3.5673e-02,\\n\",\n      \"           3.8325e-01, -8.9699e-01, -9.8914e-02,  2.7993e-01, -4.2853e-01,\\n\",\n      \"           2.6470e-01, -1.5111e-01,  1.2840e-01,  4.4130e-01,  7.0472e-01,\\n\",\n      \"          -5.4222e-01,  6.3632e-01, -4.5410e-01, -7.3485e-01,  3.9335e-03,\\n\",\n      \"           2.1974e-02, -7.7820e-01,  7.1851e-01,  4.9839e-01,  4.5752e-01,\\n\",\n      \"          -5.6736e-01, -1.1570e-01,  1.7741e-01, -6.8631e-01],\\n\",\n      \"         [-5.2954e-01,  7.1507e-01,  1.1961e-01,  2.7049e-01, -4.1430e-02,\\n\",\n      \"          -6.3285e-01, -6.2980e-01, -7.5369e-01,  5.6139e-01,  3.6687e-01,\\n\",\n      \"          -1.8580e-01, -5.0004e-01, -2.4768e-01,  6.8709e-01, -4.7964e-01,\\n\",\n      \"           9.6180e-02, -2.4753e-01,  7.8835e-01,  7.4328e-01, -4.0307e-01,\\n\",\n      \"          -7.0861e-01, -3.0193e-01,  1.9124e-01,  1.0709e-01, -1.1137e-02,\\n\",\n      \"          -4.5462e-01,  1.6204e-01,  5.9233e-01, -1.0915e-01,  5.0066e-02,\\n\",\n      \"           7.9568e-01, -4.6623e-01,  1.3996e-01,  3.4372e-03, -3.3035e-02,\\n\",\n      \"          -1.1971e-01, -5.7255e-01,  3.7681e-01,  1.9896e-01, -1.2122e-01,\\n\",\n      \"           3.8669e-01, -9.0198e-01, -1.6976e-01,  3.3988e-01, -4.4157e-01,\\n\",\n      \"           3.1625e-01, -1.0426e-01,  1.2102e-01,  3.5134e-01,  6.7499e-01,\\n\",\n      \"          -5.4203e-01,  5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\\n\",\n      \"           5.9193e-02, -7.8978e-01,  6.7157e-01,  4.5797e-01,  4.0904e-01,\\n\",\n      \"          -5.9217e-01, -1.8372e-01,  2.3222e-01, -6.0919e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([11, 19])\\n\",\n      \"dec_state: tensor([[[ 0.4297,  0.1001, -0.0154,  0.7597,  0.4330, -0.2184, -0.2589,\\n\",\n      \"          -0.0719, -0.2975,  0.0644, -0.5679, -0.4756, -0.4147,  0.3214,\\n\",\n      \"          -0.2717, -0.2063,  0.4460,  0.0449, -0.1379,  0.4182,  0.1114,\\n\",\n      \"          -0.6634, -0.2660, -0.0345, -0.1869, -0.6228,  0.6105, -0.7084,\\n\",\n      \"          -0.5293, -0.3111, -0.8343, -0.3294, -0.5332,  0.2321, -0.6207,\\n\",\n      \"          -0.2366, -0.0415, -0.4704, -0.7593,  0.1051,  0.0549,  0.2908,\\n\",\n      \"           0.5107,  0.4837,  0.0820,  0.3747, -0.1182,  0.1738,  0.3425,\\n\",\n      \"           0.3758, -0.1644, -0.2597,  0.1060, -0.6594, -0.1430, -0.1560,\\n\",\n      \"          -0.0498,  0.5603, -0.1930, -0.4515, -0.7810,  0.3696, -0.5414,\\n\",\n      \"          -0.0550],\\n\",\n      \"         [ 0.4064,  0.0652,  0.2551,  0.5384,  0.1970, -0.2805,  0.2651,\\n\",\n      \"          -0.1640, -0.4307,  0.0361, -0.3297, -0.4227, -0.3527,  0.0775,\\n\",\n      \"          -0.2936, -0.0034, -0.0736,  0.4469,  0.0608,  0.5598,  0.5397,\\n\",\n      \"          -0.4964, -0.1654, -0.0756,  0.4864, -0.4202,  0.0102, -0.2432,\\n\",\n      \"          -0.1435,  0.0487,  0.1464,  0.1079,  0.1803, -0.1313, -0.1571,\\n\",\n      \"          -0.1500, -0.2284, -0.1051, -0.2413, -0.1930,  0.0884, -0.0215,\\n\",\n      \"           0.1797, -0.1860,  0.0140,  0.1189,  0.2082, -0.0081,  0.4380,\\n\",\n      \"           0.3996, -0.0829,  0.3444,  0.3796, -0.5855, -0.2027,  0.0866,\\n\",\n      \"           0.1340,  0.3613,  0.1134, -0.4265, -0.2056,  0.2601, -0.7792,\\n\",\n      \"           0.5309]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\\n\",\n      \"           1.0795e-01,  1.1117e-01,  1.0526e-01, -1.9621e-01, -1.7305e-01,\\n\",\n      \"           5.2908e-02, -1.1708e-01, -3.1992e-01,  2.5680e-01,  1.3125e-01,\\n\",\n      \"          -5.8317e-01,  2.9118e-01,  9.6432e-02, -1.2121e-01, -5.2562e-01,\\n\",\n      \"          -4.9280e-01,  9.9200e-04,  1.0100e-01, -1.4418e-01, -9.7080e-04,\\n\",\n      \"           4.9621e-02, -7.5445e-02,  8.9830e-02,  8.4073e-02, -1.0900e-01,\\n\",\n      \"          -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01,  6.5989e-02,\\n\",\n      \"          -1.1115e-01, -1.8222e-01,  2.0451e-02, -9.9988e-02, -3.5648e-01,\\n\",\n      \"           1.4316e-01,  5.8419e-01,  5.7575e-02,  7.9051e-02, -4.5552e-01,\\n\",\n      \"          -2.5276e-01,  3.1515e-01, -7.7021e-02, -2.6506e-02,  3.6586e-01,\\n\",\n      \"           7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\\n\",\n      \"          -2.8730e-02, -3.3728e-01,  1.7582e-01,  2.9807e-02, -3.0381e-01,\\n\",\n      \"           3.6682e-01,  2.1646e-01,  2.1079e-01, -2.2197e-01],\\n\",\n      \"         [-5.9364e-02,  4.9278e-01,  3.9939e-01, -6.4556e-01, -5.4136e-01,\\n\",\n      \"           5.7767e-01, -8.2846e-02,  3.4757e-01, -2.6940e-01, -1.3587e-01,\\n\",\n      \"           2.9661e-01,  1.9267e-01,  3.3508e-01, -2.3874e-01,  1.6769e-01,\\n\",\n      \"           8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\\n\",\n      \"          -1.1036e-01, -2.3516e-01, -3.3576e-01,  6.6362e-02, -4.2507e-01,\\n\",\n      \"          -1.2496e-01,  7.5707e-01,  3.2817e-01,  4.5369e-01,  3.1337e-01,\\n\",\n      \"          -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\\n\",\n      \"           2.0347e-02,  1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\\n\",\n      \"           1.2553e-01, -2.9570e-01,  6.3393e-02,  4.9087e-01,  2.6956e-01,\\n\",\n      \"          -9.9909e-02,  1.1632e-01,  3.3636e-02, -6.5299e-01,  3.1438e-03,\\n\",\n      \"           1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02,  8.3628e-02,\\n\",\n      \"           2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\\n\",\n      \"           4.2149e-01,  3.3780e-02, -6.2170e-02, -1.9143e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.2377e-01, -3.5410e-01, -2.7126e-01,  6.7114e-01, -1.3655e-01,\\n\",\n      \"           1.6070e-01,  3.2438e-01,  4.1661e-01,  1.9747e-01, -2.9179e-01,\\n\",\n      \"           9.6542e-02, -5.5992e-02,  1.0121e-01, -3.8642e-01,  4.1851e-01,\\n\",\n      \"          -1.1139e-01,  2.4136e-01,  2.3179e-01,  5.1139e-02, -4.5248e-01,\\n\",\n      \"          -5.3721e-01,  8.7373e-02,  2.3784e-01,  1.2280e-01,  2.1850e-01,\\n\",\n      \"          -9.6268e-02, -1.6007e-01, -1.3404e-01,  1.6351e-01, -2.4172e-01,\\n\",\n      \"          -2.5418e-01, -9.7521e-02,  2.4446e-01,  3.5432e-01,  9.5840e-02,\\n\",\n      \"           1.5298e-01, -4.6807e-01,  7.6614e-01,  1.1059e-01,  1.0575e-01,\\n\",\n      \"           1.7815e-01,  5.6318e-01,  1.7585e-01, -7.1355e-02, -2.4294e-01,\\n\",\n      \"           3.2790e-02,  2.7889e-01, -4.4913e-01,  7.0002e-02,  5.5741e-01,\\n\",\n      \"          -1.6276e-01, -3.6297e-01,  2.0895e-01, -4.0116e-01, -2.2522e-01,\\n\",\n      \"          -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01,  4.5957e-01,\\n\",\n      \"          -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\\n\",\n      \"         [ 4.5037e-01, -3.6208e-02, -8.8401e-02,  5.8330e-01, -3.7614e-01,\\n\",\n      \"           2.7170e-01,  2.5848e-01,  5.3754e-01,  8.3193e-02, -2.1463e-01,\\n\",\n      \"           2.4849e-01,  9.6076e-02,  4.8274e-01, -5.3474e-01,  4.4389e-01,\\n\",\n      \"           1.8048e-01,  8.1216e-02,  3.8565e-02, -2.1158e-01, -1.0749e-01,\\n\",\n      \"          -2.6261e-01, -3.1016e-02, -7.9159e-02,  2.0517e-01,  4.4546e-02,\\n\",\n      \"          -2.3875e-01,  3.8012e-01, -2.2126e-03,  3.3358e-01,  1.0724e-02,\\n\",\n      \"          -2.5482e-01, -8.6964e-02,  1.7899e-01,  5.1795e-01, -9.8892e-02,\\n\",\n      \"           2.9072e-01, -3.6883e-01,  8.0775e-01, -2.5374e-01,  1.7086e-01,\\n\",\n      \"           1.3368e-01, -6.3352e-02,  1.7475e-01,  1.2112e-01,  3.0679e-01,\\n\",\n      \"           1.3249e-01,  2.5912e-01, -5.0618e-01, -3.6696e-01,  3.8838e-01,\\n\",\n      \"          -1.7201e-01, -4.2089e-01,  1.8540e-01, -3.9560e-01,  9.7645e-02,\\n\",\n      \"          -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01,  5.1789e-01,\\n\",\n      \"          -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\\n\",\n      \"\\n\",\n      \"        [[ 6.1572e-02, -7.8968e-02, -1.2629e-01,  4.9267e-01, -3.3531e-01,\\n\",\n      \"          -4.6577e-01,  4.6988e-01,  4.1398e-01,  3.0156e-01,  1.1518e-01,\\n\",\n      \"           3.1389e-02, -4.6762e-01,  1.8188e-01, -6.1688e-01, -2.6343e-01,\\n\",\n      \"          -3.1576e-01,  4.9902e-01, -2.4268e-01,  1.6815e-01, -1.9693e-01,\\n\",\n      \"          -3.1019e-01,  1.7517e-01,  3.3324e-01,  9.6325e-02,  2.4211e-01,\\n\",\n      \"          -1.1460e-01, -3.7784e-01, -3.6116e-01,  2.4703e-01,  1.2421e-01,\\n\",\n      \"           2.6336e-01, -1.3863e-01,  4.4239e-01,  6.6868e-01,  3.9022e-01,\\n\",\n      \"           1.6709e-01, -3.4177e-01,  7.9374e-01, -2.0875e-01,  1.7250e-01,\\n\",\n      \"           9.2274e-02,  7.5432e-02,  3.1252e-01, -4.9550e-02,  4.5907e-02,\\n\",\n      \"           1.2979e-01,  2.7269e-01, -5.3483e-01, -6.1280e-02,  3.7396e-01,\\n\",\n      \"          -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\\n\",\n      \"           8.6522e-02,  1.7051e-01, -4.1334e-02, -3.5324e-01,  2.7226e-01,\\n\",\n      \"          -5.8631e-01, -5.0842e-01,  3.2943e-02,  2.5173e-01],\\n\",\n      \"         [-6.6955e-02, -1.8796e-01, -9.6617e-02,  4.2052e-01, -2.8605e-01,\\n\",\n      \"          -5.0497e-02,  1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\\n\",\n      \"           4.6530e-01, -2.1460e-01,  5.9005e-01, -2.3882e-01,  2.3549e-01,\\n\",\n      \"          -4.8996e-01,  9.8277e-02,  1.9883e-01,  7.5948e-02, -3.6621e-03,\\n\",\n      \"          -3.5541e-01,  2.3025e-01,  3.2918e-02,  2.3964e-01,  2.0046e-01,\\n\",\n      \"          -8.6032e-02,  3.1096e-01,  3.6305e-02, -1.8553e-01, -7.1272e-02,\\n\",\n      \"          -2.6754e-01,  1.9024e-01,  5.9301e-01,  4.9991e-01,  1.0630e-01,\\n\",\n      \"           2.9337e-01, -2.2475e-01,  7.7874e-01,  3.2949e-01, -1.6518e-01,\\n\",\n      \"          -4.7336e-01,  1.0853e-01,  2.3952e-01,  3.3526e-01, -1.5270e-01,\\n\",\n      \"           1.4827e-01,  1.1312e-01, -6.9810e-01, -3.8128e-01,  9.0495e-02,\\n\",\n      \"          -2.6985e-01, -6.3003e-01,  5.8684e-01, -6.1706e-01,  3.1610e-01,\\n\",\n      \"          -1.5197e-01,  3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\\n\",\n      \"          -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7015e-01,  5.8729e-01,  1.4587e-01,  4.3972e-01, -1.1587e-01,\\n\",\n      \"          -6.3192e-01,  4.2250e-01,  2.0748e-01,  4.9845e-01,  3.0032e-02,\\n\",\n      \"           3.4143e-01, -1.4835e-01,  3.7302e-01,  6.5627e-02, -1.1746e-01,\\n\",\n      \"          -3.5304e-01, -7.3488e-02,  1.5345e-01,  3.8006e-01,  6.6840e-02,\\n\",\n      \"          -4.7847e-01, -4.6739e-02,  2.2526e-01, -1.0725e-03,  4.1146e-01,\\n\",\n      \"          -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01,  1.2527e-01,\\n\",\n      \"           1.1725e-01, -3.7594e-01,  6.2424e-02,  4.3085e-01,  7.0839e-01,\\n\",\n      \"           5.0156e-01, -6.4564e-01,  8.0471e-01, -4.8353e-01,  2.8749e-01,\\n\",\n      \"           5.4820e-02, -4.9795e-01,  3.6530e-01, -1.1493e-01, -2.3898e-02,\\n\",\n      \"           3.6245e-02,  1.0556e-01, -1.0374e-01, -1.8034e-02,  6.6806e-01,\\n\",\n      \"          -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01,  1.8598e-01,\\n\",\n      \"          -6.6235e-02, -1.3134e-01,  5.2580e-01, -3.6212e-01,  2.3866e-01,\\n\",\n      \"          -1.7990e-02,  8.0296e-02, -3.7835e-01, -2.9699e-01],\\n\",\n      \"         [-2.9946e-01,  1.7333e-01,  5.8426e-01,  3.4180e-01, -3.0022e-01,\\n\",\n      \"           1.7389e-01,  4.9503e-01, -8.8328e-02,  1.4499e-01, -9.1872e-02,\\n\",\n      \"           2.5825e-01, -3.0323e-01,  2.7515e-01,  1.3643e-02,  1.8358e-01,\\n\",\n      \"          -2.9342e-01,  1.2102e-01, -3.1372e-03,  4.2592e-01, -3.2323e-01,\\n\",\n      \"          -1.9382e-01,  1.0034e-01, -2.4542e-01,  1.7491e-01,  2.8585e-01,\\n\",\n      \"           2.1878e-01, -2.8580e-01,  2.6377e-01, -5.8683e-02, -1.8648e-02,\\n\",\n      \"           1.5466e-01,  6.1528e-02,  6.1995e-01,  3.3441e-01, -1.5242e-01,\\n\",\n      \"          -4.1493e-01, -2.2674e-01,  3.3035e-01,  4.1771e-01, -2.6339e-01,\\n\",\n      \"           1.6438e-02,  1.3321e-02,  3.6096e-01,  3.5693e-01, -2.7066e-01,\\n\",\n      \"           1.9357e-01,  3.4842e-01, -4.6198e-01, -2.5908e-01,  9.7302e-02,\\n\",\n      \"          -5.1082e-01, -6.0207e-01,  5.3004e-01, -2.6133e-01, -1.3656e-01,\\n\",\n      \"           3.1702e-01, -1.9228e-01,  1.1084e-01, -1.2700e-01,  9.1848e-02,\\n\",\n      \"          -1.2077e-01, -2.3991e-01, -2.2360e-01,  1.1209e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.3006e-03,  5.1264e-01,  1.4625e-01,  1.9990e-01, -9.8293e-04,\\n\",\n      \"          -3.9322e-01,  1.0313e-02,  1.9901e-01,  5.2193e-01,  2.4577e-01,\\n\",\n      \"           3.6912e-01, -4.1717e-01,  1.6650e-01, -1.3958e-01,  5.7864e-02,\\n\",\n      \"           7.9536e-02,  1.9557e-01, -3.7678e-02,  5.0398e-01, -3.0349e-01,\\n\",\n      \"          -2.0343e-02,  1.2007e-02,  3.0268e-02,  2.5128e-02,  4.6688e-01,\\n\",\n      \"           5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\\n\",\n      \"           2.3817e-01, -4.7999e-01, -1.1352e-01,  3.4405e-01,  4.7923e-01,\\n\",\n      \"           3.4116e-01, -1.3998e-01,  5.8126e-01, -5.3983e-01,  9.0539e-03,\\n\",\n      \"          -2.8760e-01,  1.4470e-03,  4.1896e-01,  9.0540e-02,  8.4472e-02,\\n\",\n      \"           2.4745e-01,  2.4676e-01,  1.3342e-01,  2.1588e-01,  4.5192e-01,\\n\",\n      \"          -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01,  1.4840e-01,\\n\",\n      \"          -3.1757e-01, -2.9868e-01,  3.5217e-01, -4.8268e-01,  6.2362e-01,\\n\",\n      \"          -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\\n\",\n      \"         [-6.7714e-02,  4.2866e-01,  3.4476e-01,  1.5000e-01, -3.6190e-02,\\n\",\n      \"           8.3957e-02,  5.5312e-02,  3.0808e-02,  4.4187e-01,  3.5487e-01,\\n\",\n      \"           2.7749e-01, -5.4736e-01,  1.3060e-01, -1.2858e-01,  1.4391e-01,\\n\",\n      \"           2.2495e-02,  2.5716e-01, -1.1392e-01,  5.0622e-01, -5.3849e-01,\\n\",\n      \"           8.1028e-02,  1.1880e-01, -1.9030e-01,  1.6085e-01,  4.2327e-01,\\n\",\n      \"           3.3224e-01, -2.8663e-01,  1.5584e-01,  2.0010e-02, -1.3972e-01,\\n\",\n      \"           3.0517e-01, -3.2512e-01,  2.0605e-01,  3.9866e-01,  7.5201e-02,\\n\",\n      \"          -1.4346e-01,  4.0802e-02,  2.5994e-01, -1.1602e-01, -3.1564e-01,\\n\",\n      \"          -2.4646e-01,  2.8795e-01,  3.0432e-01,  3.9361e-01, -2.6748e-02,\\n\",\n      \"           3.1790e-01,  4.0642e-01, -3.9523e-02,  2.4936e-02,  2.3207e-01,\\n\",\n      \"          -3.6772e-01, -7.2585e-01,  2.2393e-01, -4.9142e-01,  8.1099e-02,\\n\",\n      \"          -2.7510e-01, -3.3252e-01,  2.6320e-04, -3.5465e-01,  5.0127e-01,\\n\",\n      \"          -1.9976e-01, -4.5309e-01, -5.5326e-01,  1.9372e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.7057e-01,  3.2322e-01,  2.4574e-01,  4.5261e-01, -2.0914e-01,\\n\",\n      \"          -1.7835e-01, -1.3981e-01, -7.2055e-01,  4.6101e-01,  1.5611e-01,\\n\",\n      \"           1.9007e-01, -3.4269e-01, -1.1867e-01,  2.6001e-02, -2.9307e-01,\\n\",\n      \"           4.3272e-01,  2.6621e-01,  2.3335e-01,  5.2463e-01, -4.2147e-01,\\n\",\n      \"          -2.7186e-01, -3.1412e-01,  2.4990e-01,  2.9644e-02,  3.8283e-01,\\n\",\n      \"          -6.0349e-01,  4.2053e-01,  7.7588e-02, -5.3387e-01, -1.7636e-01,\\n\",\n      \"           5.6825e-01, -1.9517e-01,  2.9228e-01,  1.5452e-01, -1.3068e-01,\\n\",\n      \"          -1.6854e-01, -6.7126e-01,  5.3163e-01, -1.5279e-01, -4.1532e-03,\\n\",\n      \"          -4.1549e-01, -5.4631e-01, -2.0766e-01,  5.0530e-01,  2.4160e-01,\\n\",\n      \"           3.2883e-01,  6.5491e-02,  4.0148e-01,  3.9996e-01,  5.5935e-01,\\n\",\n      \"          -2.0955e-01,  8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\\n\",\n      \"          -2.2420e-02, -4.3686e-01,  3.6831e-01,  4.9070e-01,  6.7791e-01,\\n\",\n      \"           9.3536e-02,  9.6758e-02,  2.7063e-01, -5.9233e-01],\\n\",\n      \"         [-2.1370e-01,  2.6253e-01,  3.7184e-01,  4.2944e-01, -2.2733e-01,\\n\",\n      \"           8.4641e-02, -1.1203e-01, -7.5004e-01,  4.0968e-01,  2.9284e-01,\\n\",\n      \"           1.0524e-01, -4.5711e-01, -1.3226e-01,  3.6899e-02, -2.9938e-01,\\n\",\n      \"           3.7876e-01,  3.0198e-01,  2.1248e-01,  5.0674e-01, -5.9870e-01,\\n\",\n      \"          -2.2014e-01, -2.7972e-01,  1.8850e-01,  1.3672e-01,  3.6082e-01,\\n\",\n      \"          -5.1068e-01,  3.8401e-01,  2.3140e-01, -4.6272e-01, -2.3285e-01,\\n\",\n      \"           5.9758e-01, -8.0234e-02,  4.1550e-01,  2.3767e-01, -3.2081e-01,\\n\",\n      \"          -2.6955e-01, -6.4333e-01,  3.0121e-01,  1.8572e-01, -2.1806e-01,\\n\",\n      \"          -3.6785e-01, -5.4011e-01, -3.0245e-01,  5.8575e-01,  1.6013e-01,\\n\",\n      \"           3.7621e-01,  1.5080e-01,  3.5251e-01,  2.9042e-01,  4.9547e-01,\\n\",\n      \"          -2.0645e-01,  9.5648e-04,  3.2034e-01, -5.9634e-01, -4.1605e-02,\\n\",\n      \"           2.8428e-02, -4.5341e-01,  1.7124e-01,  4.6399e-01,  5.8401e-01,\\n\",\n      \"           1.8860e-03, -1.1181e-01,  3.3156e-01, -4.8292e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.1405e-01,  7.2646e-01,  2.3313e-02,  2.9391e-01, -4.1278e-02,\\n\",\n      \"          -6.8512e-01, -6.3971e-01, -7.3721e-01,  5.8138e-01,  2.3946e-01,\\n\",\n      \"          -1.2826e-01, -4.2802e-01, -2.4249e-01,  6.9205e-01, -4.7766e-01,\\n\",\n      \"           1.3880e-01, -2.6832e-01,  8.0203e-01,  7.5108e-01, -3.1906e-01,\\n\",\n      \"          -7.2209e-01, -3.2389e-01,  2.3982e-01,  4.4074e-02,  8.8281e-03,\\n\",\n      \"          -5.3503e-01,  1.8058e-01,  5.3126e-01, -1.6590e-01,  4.4685e-02,\\n\",\n      \"           7.8644e-01, -5.1364e-01,  6.8338e-02, -6.5219e-02,  1.0594e-01,\\n\",\n      \"          -4.3814e-02, -5.8792e-01,  5.3987e-01, -2.0544e-02,  3.5673e-02,\\n\",\n      \"           3.8325e-01, -8.9699e-01, -9.8914e-02,  2.7993e-01, -4.2853e-01,\\n\",\n      \"           2.6470e-01, -1.5111e-01,  1.2840e-01,  4.4130e-01,  7.0472e-01,\\n\",\n      \"          -5.4222e-01,  6.3632e-01, -4.5410e-01, -7.3485e-01,  3.9335e-03,\\n\",\n      \"           2.1974e-02, -7.7820e-01,  7.1851e-01,  4.9839e-01,  4.5752e-01,\\n\",\n      \"          -5.6736e-01, -1.1570e-01,  1.7741e-01, -6.8631e-01],\\n\",\n      \"         [-5.2954e-01,  7.1507e-01,  1.1961e-01,  2.7049e-01, -4.1430e-02,\\n\",\n      \"          -6.3285e-01, -6.2980e-01, -7.5369e-01,  5.6139e-01,  3.6687e-01,\\n\",\n      \"          -1.8580e-01, -5.0004e-01, -2.4768e-01,  6.8709e-01, -4.7964e-01,\\n\",\n      \"           9.6180e-02, -2.4753e-01,  7.8835e-01,  7.4328e-01, -4.0307e-01,\\n\",\n      \"          -7.0861e-01, -3.0193e-01,  1.9124e-01,  1.0709e-01, -1.1137e-02,\\n\",\n      \"          -4.5462e-01,  1.6204e-01,  5.9233e-01, -1.0915e-01,  5.0066e-02,\\n\",\n      \"           7.9568e-01, -4.6623e-01,  1.3996e-01,  3.4372e-03, -3.3035e-02,\\n\",\n      \"          -1.1971e-01, -5.7255e-01,  3.7681e-01,  1.9896e-01, -1.2122e-01,\\n\",\n      \"           3.8669e-01, -9.0198e-01, -1.6976e-01,  3.3988e-01, -4.4157e-01,\\n\",\n      \"           3.1625e-01, -1.0426e-01,  1.2102e-01,  3.5134e-01,  6.7499e-01,\\n\",\n      \"          -5.4203e-01,  5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\\n\",\n      \"           5.9193e-02, -7.8978e-01,  6.7157e-01,  4.5797e-01,  4.0904e-01,\\n\",\n      \"          -5.9217e-01, -1.8372e-01,  2.3222e-01, -6.0919e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([32,  3])\\n\",\n      \"dec_state: tensor([[[ 0.3883,  0.1638, -0.0061,  0.4029, -0.2220,  0.0700, -0.3988,\\n\",\n      \"           0.2255, -0.1208, -0.1317, -0.6918, -0.6874, -0.4156, -0.4411,\\n\",\n      \"           0.1322, -0.2364,  0.2355, -0.1264, -0.2326,  0.4155,  0.2667,\\n\",\n      \"          -0.6102, -0.3427, -0.0549, -0.2238, -0.3774,  0.2490, -0.6678,\\n\",\n      \"          -0.6849,  0.0265, -0.6866, -0.1361, -0.5776, -0.3081, -0.1779,\\n\",\n      \"          -0.2705,  0.1634, -0.5341, -0.6840, -0.0970,  0.0706,  0.1680,\\n\",\n      \"           0.6566, -0.0024,  0.1957,  0.2654,  0.0173, -0.0829,  0.3614,\\n\",\n      \"           0.2494, -0.0511, -0.0429,  0.4192, -0.7280, -0.0419, -0.2850,\\n\",\n      \"          -0.3033,  0.2350, -0.2822, -0.1057, -0.6686, -0.1277, -0.5874,\\n\",\n      \"          -0.1913],\\n\",\n      \"         [ 0.8328,  0.3856, -0.2559,  0.4384,  0.2451,  0.0511, -0.0338,\\n\",\n      \"          -0.3066, -0.4808, -0.5736, -0.6501, -0.3417,  0.1492,  0.4391,\\n\",\n      \"          -0.7266,  0.0470,  0.5308,  0.3645, -0.4251,  0.7540,  0.4565,\\n\",\n      \"          -0.5981, -0.3122, -0.1348,  0.7729, -0.5404,  0.2069, -0.7500,\\n\",\n      \"           0.1947, -0.2948, -0.2585,  0.0733,  0.4511,  0.3189,  0.0788,\\n\",\n      \"          -0.2883,  0.2654, -0.4561,  0.2647,  0.3649, -0.1079,  0.1416,\\n\",\n      \"           0.2191, -0.3625, -0.4247,  0.4959,  0.3210,  0.3701, -0.0993,\\n\",\n      \"           0.3508, -0.4660,  0.6128,  0.0951, -0.5408,  0.3252,  0.0429,\\n\",\n      \"           0.3279,  0.2015, -0.2449, -0.3183, -0.5226,  0.2963, -0.7731,\\n\",\n      \"          -0.4768]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\\n\",\n      \"           1.0795e-01,  1.1117e-01,  1.0526e-01, -1.9621e-01, -1.7305e-01,\\n\",\n      \"           5.2908e-02, -1.1708e-01, -3.1992e-01,  2.5680e-01,  1.3125e-01,\\n\",\n      \"          -5.8317e-01,  2.9118e-01,  9.6432e-02, -1.2121e-01, -5.2562e-01,\\n\",\n      \"          -4.9280e-01,  9.9200e-04,  1.0100e-01, -1.4418e-01, -9.7080e-04,\\n\",\n      \"           4.9621e-02, -7.5445e-02,  8.9830e-02,  8.4073e-02, -1.0900e-01,\\n\",\n      \"          -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01,  6.5989e-02,\\n\",\n      \"          -1.1115e-01, -1.8222e-01,  2.0451e-02, -9.9988e-02, -3.5648e-01,\\n\",\n      \"           1.4316e-01,  5.8419e-01,  5.7575e-02,  7.9051e-02, -4.5552e-01,\\n\",\n      \"          -2.5276e-01,  3.1515e-01, -7.7021e-02, -2.6506e-02,  3.6586e-01,\\n\",\n      \"           7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\\n\",\n      \"          -2.8730e-02, -3.3728e-01,  1.7582e-01,  2.9807e-02, -3.0381e-01,\\n\",\n      \"           3.6682e-01,  2.1646e-01,  2.1079e-01, -2.2197e-01],\\n\",\n      \"         [-5.9364e-02,  4.9278e-01,  3.9939e-01, -6.4556e-01, -5.4136e-01,\\n\",\n      \"           5.7767e-01, -8.2846e-02,  3.4757e-01, -2.6940e-01, -1.3587e-01,\\n\",\n      \"           2.9661e-01,  1.9267e-01,  3.3508e-01, -2.3874e-01,  1.6769e-01,\\n\",\n      \"           8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\\n\",\n      \"          -1.1036e-01, -2.3516e-01, -3.3576e-01,  6.6362e-02, -4.2507e-01,\\n\",\n      \"          -1.2496e-01,  7.5707e-01,  3.2817e-01,  4.5369e-01,  3.1337e-01,\\n\",\n      \"          -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\\n\",\n      \"           2.0347e-02,  1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\\n\",\n      \"           1.2553e-01, -2.9570e-01,  6.3393e-02,  4.9087e-01,  2.6956e-01,\\n\",\n      \"          -9.9909e-02,  1.1632e-01,  3.3636e-02, -6.5299e-01,  3.1438e-03,\\n\",\n      \"           1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02,  8.3628e-02,\\n\",\n      \"           2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\\n\",\n      \"           4.2149e-01,  3.3780e-02, -6.2170e-02, -1.9143e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.2377e-01, -3.5410e-01, -2.7126e-01,  6.7114e-01, -1.3655e-01,\\n\",\n      \"           1.6070e-01,  3.2438e-01,  4.1661e-01,  1.9747e-01, -2.9179e-01,\\n\",\n      \"           9.6542e-02, -5.5992e-02,  1.0121e-01, -3.8642e-01,  4.1851e-01,\\n\",\n      \"          -1.1139e-01,  2.4136e-01,  2.3179e-01,  5.1139e-02, -4.5248e-01,\\n\",\n      \"          -5.3721e-01,  8.7373e-02,  2.3784e-01,  1.2280e-01,  2.1850e-01,\\n\",\n      \"          -9.6268e-02, -1.6007e-01, -1.3404e-01,  1.6351e-01, -2.4172e-01,\\n\",\n      \"          -2.5418e-01, -9.7521e-02,  2.4446e-01,  3.5432e-01,  9.5840e-02,\\n\",\n      \"           1.5298e-01, -4.6807e-01,  7.6614e-01,  1.1059e-01,  1.0575e-01,\\n\",\n      \"           1.7815e-01,  5.6318e-01,  1.7585e-01, -7.1355e-02, -2.4294e-01,\\n\",\n      \"           3.2790e-02,  2.7889e-01, -4.4913e-01,  7.0002e-02,  5.5741e-01,\\n\",\n      \"          -1.6276e-01, -3.6297e-01,  2.0895e-01, -4.0116e-01, -2.2522e-01,\\n\",\n      \"          -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01,  4.5957e-01,\\n\",\n      \"          -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\\n\",\n      \"         [ 4.5037e-01, -3.6208e-02, -8.8401e-02,  5.8330e-01, -3.7614e-01,\\n\",\n      \"           2.7170e-01,  2.5848e-01,  5.3754e-01,  8.3193e-02, -2.1463e-01,\\n\",\n      \"           2.4849e-01,  9.6076e-02,  4.8274e-01, -5.3474e-01,  4.4389e-01,\\n\",\n      \"           1.8048e-01,  8.1216e-02,  3.8565e-02, -2.1158e-01, -1.0749e-01,\\n\",\n      \"          -2.6261e-01, -3.1016e-02, -7.9159e-02,  2.0517e-01,  4.4546e-02,\\n\",\n      \"          -2.3875e-01,  3.8012e-01, -2.2126e-03,  3.3358e-01,  1.0724e-02,\\n\",\n      \"          -2.5482e-01, -8.6964e-02,  1.7899e-01,  5.1795e-01, -9.8892e-02,\\n\",\n      \"           2.9072e-01, -3.6883e-01,  8.0775e-01, -2.5374e-01,  1.7086e-01,\\n\",\n      \"           1.3368e-01, -6.3352e-02,  1.7475e-01,  1.2112e-01,  3.0679e-01,\\n\",\n      \"           1.3249e-01,  2.5912e-01, -5.0618e-01, -3.6696e-01,  3.8838e-01,\\n\",\n      \"          -1.7201e-01, -4.2089e-01,  1.8540e-01, -3.9560e-01,  9.7645e-02,\\n\",\n      \"          -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01,  5.1789e-01,\\n\",\n      \"          -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\\n\",\n      \"\\n\",\n      \"        [[ 6.1572e-02, -7.8968e-02, -1.2629e-01,  4.9267e-01, -3.3531e-01,\\n\",\n      \"          -4.6577e-01,  4.6988e-01,  4.1398e-01,  3.0156e-01,  1.1518e-01,\\n\",\n      \"           3.1389e-02, -4.6762e-01,  1.8188e-01, -6.1688e-01, -2.6343e-01,\\n\",\n      \"          -3.1576e-01,  4.9902e-01, -2.4268e-01,  1.6815e-01, -1.9693e-01,\\n\",\n      \"          -3.1019e-01,  1.7517e-01,  3.3324e-01,  9.6325e-02,  2.4211e-01,\\n\",\n      \"          -1.1460e-01, -3.7784e-01, -3.6116e-01,  2.4703e-01,  1.2421e-01,\\n\",\n      \"           2.6336e-01, -1.3863e-01,  4.4239e-01,  6.6868e-01,  3.9022e-01,\\n\",\n      \"           1.6709e-01, -3.4177e-01,  7.9374e-01, -2.0875e-01,  1.7250e-01,\\n\",\n      \"           9.2274e-02,  7.5432e-02,  3.1252e-01, -4.9550e-02,  4.5907e-02,\\n\",\n      \"           1.2979e-01,  2.7269e-01, -5.3483e-01, -6.1280e-02,  3.7396e-01,\\n\",\n      \"          -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\\n\",\n      \"           8.6522e-02,  1.7051e-01, -4.1334e-02, -3.5324e-01,  2.7226e-01,\\n\",\n      \"          -5.8631e-01, -5.0842e-01,  3.2943e-02,  2.5173e-01],\\n\",\n      \"         [-6.6955e-02, -1.8796e-01, -9.6617e-02,  4.2052e-01, -2.8605e-01,\\n\",\n      \"          -5.0497e-02,  1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\\n\",\n      \"           4.6530e-01, -2.1460e-01,  5.9005e-01, -2.3882e-01,  2.3549e-01,\\n\",\n      \"          -4.8996e-01,  9.8277e-02,  1.9883e-01,  7.5948e-02, -3.6621e-03,\\n\",\n      \"          -3.5541e-01,  2.3025e-01,  3.2918e-02,  2.3964e-01,  2.0046e-01,\\n\",\n      \"          -8.6032e-02,  3.1096e-01,  3.6305e-02, -1.8553e-01, -7.1272e-02,\\n\",\n      \"          -2.6754e-01,  1.9024e-01,  5.9301e-01,  4.9991e-01,  1.0630e-01,\\n\",\n      \"           2.9337e-01, -2.2475e-01,  7.7874e-01,  3.2949e-01, -1.6518e-01,\\n\",\n      \"          -4.7336e-01,  1.0853e-01,  2.3952e-01,  3.3526e-01, -1.5270e-01,\\n\",\n      \"           1.4827e-01,  1.1312e-01, -6.9810e-01, -3.8128e-01,  9.0495e-02,\\n\",\n      \"          -2.6985e-01, -6.3003e-01,  5.8684e-01, -6.1706e-01,  3.1610e-01,\\n\",\n      \"          -1.5197e-01,  3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\\n\",\n      \"          -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7015e-01,  5.8729e-01,  1.4587e-01,  4.3972e-01, -1.1587e-01,\\n\",\n      \"          -6.3192e-01,  4.2250e-01,  2.0748e-01,  4.9845e-01,  3.0032e-02,\\n\",\n      \"           3.4143e-01, -1.4835e-01,  3.7302e-01,  6.5627e-02, -1.1746e-01,\\n\",\n      \"          -3.5304e-01, -7.3488e-02,  1.5345e-01,  3.8006e-01,  6.6840e-02,\\n\",\n      \"          -4.7847e-01, -4.6739e-02,  2.2526e-01, -1.0725e-03,  4.1146e-01,\\n\",\n      \"          -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01,  1.2527e-01,\\n\",\n      \"           1.1725e-01, -3.7594e-01,  6.2424e-02,  4.3085e-01,  7.0839e-01,\\n\",\n      \"           5.0156e-01, -6.4564e-01,  8.0471e-01, -4.8353e-01,  2.8749e-01,\\n\",\n      \"           5.4820e-02, -4.9795e-01,  3.6530e-01, -1.1493e-01, -2.3898e-02,\\n\",\n      \"           3.6245e-02,  1.0556e-01, -1.0374e-01, -1.8034e-02,  6.6806e-01,\\n\",\n      \"          -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01,  1.8598e-01,\\n\",\n      \"          -6.6235e-02, -1.3134e-01,  5.2580e-01, -3.6212e-01,  2.3866e-01,\\n\",\n      \"          -1.7990e-02,  8.0296e-02, -3.7835e-01, -2.9699e-01],\\n\",\n      \"         [-2.9946e-01,  1.7333e-01,  5.8426e-01,  3.4180e-01, -3.0022e-01,\\n\",\n      \"           1.7389e-01,  4.9503e-01, -8.8328e-02,  1.4499e-01, -9.1872e-02,\\n\",\n      \"           2.5825e-01, -3.0323e-01,  2.7515e-01,  1.3643e-02,  1.8358e-01,\\n\",\n      \"          -2.9342e-01,  1.2102e-01, -3.1372e-03,  4.2592e-01, -3.2323e-01,\\n\",\n      \"          -1.9382e-01,  1.0034e-01, -2.4542e-01,  1.7491e-01,  2.8585e-01,\\n\",\n      \"           2.1878e-01, -2.8580e-01,  2.6377e-01, -5.8683e-02, -1.8648e-02,\\n\",\n      \"           1.5466e-01,  6.1528e-02,  6.1995e-01,  3.3441e-01, -1.5242e-01,\\n\",\n      \"          -4.1493e-01, -2.2674e-01,  3.3035e-01,  4.1771e-01, -2.6339e-01,\\n\",\n      \"           1.6438e-02,  1.3321e-02,  3.6096e-01,  3.5693e-01, -2.7066e-01,\\n\",\n      \"           1.9357e-01,  3.4842e-01, -4.6198e-01, -2.5908e-01,  9.7302e-02,\\n\",\n      \"          -5.1082e-01, -6.0207e-01,  5.3004e-01, -2.6133e-01, -1.3656e-01,\\n\",\n      \"           3.1702e-01, -1.9228e-01,  1.1084e-01, -1.2700e-01,  9.1848e-02,\\n\",\n      \"          -1.2077e-01, -2.3991e-01, -2.2360e-01,  1.1209e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.3006e-03,  5.1264e-01,  1.4625e-01,  1.9990e-01, -9.8293e-04,\\n\",\n      \"          -3.9322e-01,  1.0313e-02,  1.9901e-01,  5.2193e-01,  2.4577e-01,\\n\",\n      \"           3.6912e-01, -4.1717e-01,  1.6650e-01, -1.3958e-01,  5.7864e-02,\\n\",\n      \"           7.9536e-02,  1.9557e-01, -3.7678e-02,  5.0398e-01, -3.0349e-01,\\n\",\n      \"          -2.0343e-02,  1.2007e-02,  3.0268e-02,  2.5128e-02,  4.6688e-01,\\n\",\n      \"           5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\\n\",\n      \"           2.3817e-01, -4.7999e-01, -1.1352e-01,  3.4405e-01,  4.7923e-01,\\n\",\n      \"           3.4116e-01, -1.3998e-01,  5.8126e-01, -5.3983e-01,  9.0539e-03,\\n\",\n      \"          -2.8760e-01,  1.4470e-03,  4.1896e-01,  9.0540e-02,  8.4472e-02,\\n\",\n      \"           2.4745e-01,  2.4676e-01,  1.3342e-01,  2.1588e-01,  4.5192e-01,\\n\",\n      \"          -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01,  1.4840e-01,\\n\",\n      \"          -3.1757e-01, -2.9868e-01,  3.5217e-01, -4.8268e-01,  6.2362e-01,\\n\",\n      \"          -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\\n\",\n      \"         [-6.7714e-02,  4.2866e-01,  3.4476e-01,  1.5000e-01, -3.6190e-02,\\n\",\n      \"           8.3957e-02,  5.5312e-02,  3.0808e-02,  4.4187e-01,  3.5487e-01,\\n\",\n      \"           2.7749e-01, -5.4736e-01,  1.3060e-01, -1.2858e-01,  1.4391e-01,\\n\",\n      \"           2.2495e-02,  2.5716e-01, -1.1392e-01,  5.0622e-01, -5.3849e-01,\\n\",\n      \"           8.1028e-02,  1.1880e-01, -1.9030e-01,  1.6085e-01,  4.2327e-01,\\n\",\n      \"           3.3224e-01, -2.8663e-01,  1.5584e-01,  2.0010e-02, -1.3972e-01,\\n\",\n      \"           3.0517e-01, -3.2512e-01,  2.0605e-01,  3.9866e-01,  7.5201e-02,\\n\",\n      \"          -1.4346e-01,  4.0802e-02,  2.5994e-01, -1.1602e-01, -3.1564e-01,\\n\",\n      \"          -2.4646e-01,  2.8795e-01,  3.0432e-01,  3.9361e-01, -2.6748e-02,\\n\",\n      \"           3.1790e-01,  4.0642e-01, -3.9523e-02,  2.4936e-02,  2.3207e-01,\\n\",\n      \"          -3.6772e-01, -7.2585e-01,  2.2393e-01, -4.9142e-01,  8.1099e-02,\\n\",\n      \"          -2.7510e-01, -3.3252e-01,  2.6320e-04, -3.5465e-01,  5.0127e-01,\\n\",\n      \"          -1.9976e-01, -4.5309e-01, -5.5326e-01,  1.9372e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.7057e-01,  3.2322e-01,  2.4574e-01,  4.5261e-01, -2.0914e-01,\\n\",\n      \"          -1.7835e-01, -1.3981e-01, -7.2055e-01,  4.6101e-01,  1.5611e-01,\\n\",\n      \"           1.9007e-01, -3.4269e-01, -1.1867e-01,  2.6001e-02, -2.9307e-01,\\n\",\n      \"           4.3272e-01,  2.6621e-01,  2.3335e-01,  5.2463e-01, -4.2147e-01,\\n\",\n      \"          -2.7186e-01, -3.1412e-01,  2.4990e-01,  2.9644e-02,  3.8283e-01,\\n\",\n      \"          -6.0349e-01,  4.2053e-01,  7.7588e-02, -5.3387e-01, -1.7636e-01,\\n\",\n      \"           5.6825e-01, -1.9517e-01,  2.9228e-01,  1.5452e-01, -1.3068e-01,\\n\",\n      \"          -1.6854e-01, -6.7126e-01,  5.3163e-01, -1.5279e-01, -4.1532e-03,\\n\",\n      \"          -4.1549e-01, -5.4631e-01, -2.0766e-01,  5.0530e-01,  2.4160e-01,\\n\",\n      \"           3.2883e-01,  6.5491e-02,  4.0148e-01,  3.9996e-01,  5.5935e-01,\\n\",\n      \"          -2.0955e-01,  8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\\n\",\n      \"          -2.2420e-02, -4.3686e-01,  3.6831e-01,  4.9070e-01,  6.7791e-01,\\n\",\n      \"           9.3536e-02,  9.6758e-02,  2.7063e-01, -5.9233e-01],\\n\",\n      \"         [-2.1370e-01,  2.6253e-01,  3.7184e-01,  4.2944e-01, -2.2733e-01,\\n\",\n      \"           8.4641e-02, -1.1203e-01, -7.5004e-01,  4.0968e-01,  2.9284e-01,\\n\",\n      \"           1.0524e-01, -4.5711e-01, -1.3226e-01,  3.6899e-02, -2.9938e-01,\\n\",\n      \"           3.7876e-01,  3.0198e-01,  2.1248e-01,  5.0674e-01, -5.9870e-01,\\n\",\n      \"          -2.2014e-01, -2.7972e-01,  1.8850e-01,  1.3672e-01,  3.6082e-01,\\n\",\n      \"          -5.1068e-01,  3.8401e-01,  2.3140e-01, -4.6272e-01, -2.3285e-01,\\n\",\n      \"           5.9758e-01, -8.0234e-02,  4.1550e-01,  2.3767e-01, -3.2081e-01,\\n\",\n      \"          -2.6955e-01, -6.4333e-01,  3.0121e-01,  1.8572e-01, -2.1806e-01,\\n\",\n      \"          -3.6785e-01, -5.4011e-01, -3.0245e-01,  5.8575e-01,  1.6013e-01,\\n\",\n      \"           3.7621e-01,  1.5080e-01,  3.5251e-01,  2.9042e-01,  4.9547e-01,\\n\",\n      \"          -2.0645e-01,  9.5648e-04,  3.2034e-01, -5.9634e-01, -4.1605e-02,\\n\",\n      \"           2.8428e-02, -4.5341e-01,  1.7124e-01,  4.6399e-01,  5.8401e-01,\\n\",\n      \"           1.8860e-03, -1.1181e-01,  3.3156e-01, -4.8292e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.1405e-01,  7.2646e-01,  2.3313e-02,  2.9391e-01, -4.1278e-02,\\n\",\n      \"          -6.8512e-01, -6.3971e-01, -7.3721e-01,  5.8138e-01,  2.3946e-01,\\n\",\n      \"          -1.2826e-01, -4.2802e-01, -2.4249e-01,  6.9205e-01, -4.7766e-01,\\n\",\n      \"           1.3880e-01, -2.6832e-01,  8.0203e-01,  7.5108e-01, -3.1906e-01,\\n\",\n      \"          -7.2209e-01, -3.2389e-01,  2.3982e-01,  4.4074e-02,  8.8281e-03,\\n\",\n      \"          -5.3503e-01,  1.8058e-01,  5.3126e-01, -1.6590e-01,  4.4685e-02,\\n\",\n      \"           7.8644e-01, -5.1364e-01,  6.8338e-02, -6.5219e-02,  1.0594e-01,\\n\",\n      \"          -4.3814e-02, -5.8792e-01,  5.3987e-01, -2.0544e-02,  3.5673e-02,\\n\",\n      \"           3.8325e-01, -8.9699e-01, -9.8914e-02,  2.7993e-01, -4.2853e-01,\\n\",\n      \"           2.6470e-01, -1.5111e-01,  1.2840e-01,  4.4130e-01,  7.0472e-01,\\n\",\n      \"          -5.4222e-01,  6.3632e-01, -4.5410e-01, -7.3485e-01,  3.9335e-03,\\n\",\n      \"           2.1974e-02, -7.7820e-01,  7.1851e-01,  4.9839e-01,  4.5752e-01,\\n\",\n      \"          -5.6736e-01, -1.1570e-01,  1.7741e-01, -6.8631e-01],\\n\",\n      \"         [-5.2954e-01,  7.1507e-01,  1.1961e-01,  2.7049e-01, -4.1430e-02,\\n\",\n      \"          -6.3285e-01, -6.2980e-01, -7.5369e-01,  5.6139e-01,  3.6687e-01,\\n\",\n      \"          -1.8580e-01, -5.0004e-01, -2.4768e-01,  6.8709e-01, -4.7964e-01,\\n\",\n      \"           9.6180e-02, -2.4753e-01,  7.8835e-01,  7.4328e-01, -4.0307e-01,\\n\",\n      \"          -7.0861e-01, -3.0193e-01,  1.9124e-01,  1.0709e-01, -1.1137e-02,\\n\",\n      \"          -4.5462e-01,  1.6204e-01,  5.9233e-01, -1.0915e-01,  5.0066e-02,\\n\",\n      \"           7.9568e-01, -4.6623e-01,  1.3996e-01,  3.4372e-03, -3.3035e-02,\\n\",\n      \"          -1.1971e-01, -5.7255e-01,  3.7681e-01,  1.9896e-01, -1.2122e-01,\\n\",\n      \"           3.8669e-01, -9.0198e-01, -1.6976e-01,  3.3988e-01, -4.4157e-01,\\n\",\n      \"           3.1625e-01, -1.0426e-01,  1.2102e-01,  3.5134e-01,  6.7499e-01,\\n\",\n      \"          -5.4203e-01,  5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\\n\",\n      \"           5.9193e-02, -7.8978e-01,  6.7157e-01,  4.5797e-01,  4.0904e-01,\\n\",\n      \"          -5.9217e-01, -1.8372e-01,  2.3222e-01, -6.0919e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([3, 2])\\n\",\n      \"dec_state: tensor([[[ 0.8555,  0.4208, -0.3740,  0.3239,  0.0901,  0.2460, -0.5120,\\n\",\n      \"          -0.0692, -0.2222, -0.6369, -0.6939, -0.4502,  0.2507,  0.2511,\\n\",\n      \"          -0.5117,  0.1329,  0.7821, -0.0894, -0.5382,  0.6298,  0.2702,\\n\",\n      \"          -0.6984, -0.3408, -0.1242,  0.5527, -0.5662,  0.2723, -0.8365,\\n\",\n      \"           0.0885, -0.4040, -0.7018, -0.1239,  0.0519,  0.0396,  0.0815,\\n\",\n      \"          -0.2215,  0.4345, -0.6531, -0.0450,  0.2877, -0.1391,  0.2715,\\n\",\n      \"           0.6106, -0.2803, -0.3426,  0.5223,  0.1874,  0.2774, -0.1887,\\n\",\n      \"           0.2847, -0.5420,  0.4056,  0.0796, -0.6485,  0.3558, -0.2136,\\n\",\n      \"           0.0952,  0.1317, -0.3910, -0.0800, -0.7804,  0.0502, -0.6276,\\n\",\n      \"          -0.6284],\\n\",\n      \"         [ 0.7832, -0.3402, -0.5854,  0.4956,  0.0369,  0.3087,  0.4414,\\n\",\n      \"          -0.1486, -0.6391,  0.0851, -0.2355, -0.2542,  0.3088, -0.2354,\\n\",\n      \"          -0.8309, -0.3616,  0.2748,  0.4967, -0.4535,  0.4512,  0.4338,\\n\",\n      \"          -0.4745, -0.1164,  0.0510,  0.5169, -0.6418, -0.1613, -0.6778,\\n\",\n      \"          -0.2253,  0.0449, -0.3989,  0.3154, -0.2950,  0.4590, -0.1039,\\n\",\n      \"          -0.6105,  0.0818,  0.0390,  0.3706,  0.1087, -0.0489,  0.3268,\\n\",\n      \"           0.2186, -0.1775, -0.0587,  0.1037,  0.1924,  0.4687, -0.2062,\\n\",\n      \"           0.0893, -0.4827,  0.4338, -0.1103, -0.5443,  0.1373, -0.1333,\\n\",\n      \"           0.5723,  0.2384,  0.3548, -0.0685, -0.4913,  0.0619, -0.6375,\\n\",\n      \"          -0.2257]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.1687e-01, -1.3320e-01, -3.0486e-01, -6.2633e-02, -5.2539e-02,\\n\",\n      \"           1.0795e-01,  1.1117e-01,  1.0526e-01, -1.9621e-01, -1.7305e-01,\\n\",\n      \"           5.2908e-02, -1.1708e-01, -3.1992e-01,  2.5680e-01,  1.3125e-01,\\n\",\n      \"          -5.8317e-01,  2.9118e-01,  9.6432e-02, -1.2121e-01, -5.2562e-01,\\n\",\n      \"          -4.9280e-01,  9.9200e-04,  1.0100e-01, -1.4418e-01, -9.7080e-04,\\n\",\n      \"           4.9621e-02, -7.5445e-02,  8.9830e-02,  8.4073e-02, -1.0900e-01,\\n\",\n      \"          -1.8147e-01, -1.2375e-01, -5.9085e-02, -3.4106e-01,  6.5989e-02,\\n\",\n      \"          -1.1115e-01, -1.8222e-01,  2.0451e-02, -9.9988e-02, -3.5648e-01,\\n\",\n      \"           1.4316e-01,  5.8419e-01,  5.7575e-02,  7.9051e-02, -4.5552e-01,\\n\",\n      \"          -2.5276e-01,  3.1515e-01, -7.7021e-02, -2.6506e-02,  3.6586e-01,\\n\",\n      \"           7.0843e-02, -4.8112e-01, -2.0606e-01, -2.6560e-01, -4.0159e-01,\\n\",\n      \"          -2.8730e-02, -3.3728e-01,  1.7582e-01,  2.9807e-02, -3.0381e-01,\\n\",\n      \"           3.6682e-01,  2.1646e-01,  2.1079e-01, -2.2197e-01],\\n\",\n      \"         [-5.9364e-02,  4.9278e-01,  3.9939e-01, -6.4556e-01, -5.4136e-01,\\n\",\n      \"           5.7767e-01, -8.2846e-02,  3.4757e-01, -2.6940e-01, -1.3587e-01,\\n\",\n      \"           2.9661e-01,  1.9267e-01,  3.3508e-01, -2.3874e-01,  1.6769e-01,\\n\",\n      \"           8.8394e-02, -5.6895e-02, -1.1560e-01, -4.6082e-01, -2.4362e-02,\\n\",\n      \"          -1.1036e-01, -2.3516e-01, -3.3576e-01,  6.6362e-02, -4.2507e-01,\\n\",\n      \"          -1.2496e-01,  7.5707e-01,  3.2817e-01,  4.5369e-01,  3.1337e-01,\\n\",\n      \"          -2.4653e-01, -1.0900e-01, -4.1468e-01, -1.8646e-02, -1.9113e-01,\\n\",\n      \"           2.0347e-02,  1.9650e-01, -1.5544e-02, -6.5256e-01, -1.7997e-01,\\n\",\n      \"           1.2553e-01, -2.9570e-01,  6.3393e-02,  4.9087e-01,  2.6956e-01,\\n\",\n      \"          -9.9909e-02,  1.1632e-01,  3.3636e-02, -6.5299e-01,  3.1438e-03,\\n\",\n      \"           1.9784e-01, -4.5137e-01, -9.6683e-02, -4.7785e-02,  8.3628e-02,\\n\",\n      \"           2.8900e-01, -3.5175e-01, -2.3106e-01, -1.9751e-01, -2.3149e-01,\\n\",\n      \"           4.2149e-01,  3.3780e-02, -6.2170e-02, -1.9143e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.2377e-01, -3.5410e-01, -2.7126e-01,  6.7114e-01, -1.3655e-01,\\n\",\n      \"           1.6070e-01,  3.2438e-01,  4.1661e-01,  1.9747e-01, -2.9179e-01,\\n\",\n      \"           9.6542e-02, -5.5992e-02,  1.0121e-01, -3.8642e-01,  4.1851e-01,\\n\",\n      \"          -1.1139e-01,  2.4136e-01,  2.3179e-01,  5.1139e-02, -4.5248e-01,\\n\",\n      \"          -5.3721e-01,  8.7373e-02,  2.3784e-01,  1.2280e-01,  2.1850e-01,\\n\",\n      \"          -9.6268e-02, -1.6007e-01, -1.3404e-01,  1.6351e-01, -2.4172e-01,\\n\",\n      \"          -2.5418e-01, -9.7521e-02,  2.4446e-01,  3.5432e-01,  9.5840e-02,\\n\",\n      \"           1.5298e-01, -4.6807e-01,  7.6614e-01,  1.1059e-01,  1.0575e-01,\\n\",\n      \"           1.7815e-01,  5.6318e-01,  1.7585e-01, -7.1355e-02, -2.4294e-01,\\n\",\n      \"           3.2790e-02,  2.7889e-01, -4.4913e-01,  7.0002e-02,  5.5741e-01,\\n\",\n      \"          -1.6276e-01, -3.6297e-01,  2.0895e-01, -4.0116e-01, -2.2522e-01,\\n\",\n      \"          -3.5249e-01, -8.7330e-02, -1.7407e-01, -2.1425e-01,  4.5957e-01,\\n\",\n      \"          -2.3734e-01, -2.0479e-01, -7.0622e-02, -1.5383e-02],\\n\",\n      \"         [ 4.5037e-01, -3.6208e-02, -8.8401e-02,  5.8330e-01, -3.7614e-01,\\n\",\n      \"           2.7170e-01,  2.5848e-01,  5.3754e-01,  8.3193e-02, -2.1463e-01,\\n\",\n      \"           2.4849e-01,  9.6076e-02,  4.8274e-01, -5.3474e-01,  4.4389e-01,\\n\",\n      \"           1.8048e-01,  8.1216e-02,  3.8565e-02, -2.1158e-01, -1.0749e-01,\\n\",\n      \"          -2.6261e-01, -3.1016e-02, -7.9159e-02,  2.0517e-01,  4.4546e-02,\\n\",\n      \"          -2.3875e-01,  3.8012e-01, -2.2126e-03,  3.3358e-01,  1.0724e-02,\\n\",\n      \"          -2.5482e-01, -8.6964e-02,  1.7899e-01,  5.1795e-01, -9.8892e-02,\\n\",\n      \"           2.9072e-01, -3.6883e-01,  8.0775e-01, -2.5374e-01,  1.7086e-01,\\n\",\n      \"           1.3368e-01, -6.3352e-02,  1.7475e-01,  1.2112e-01,  3.0679e-01,\\n\",\n      \"           1.3249e-01,  2.5912e-01, -5.0618e-01, -3.6696e-01,  3.8838e-01,\\n\",\n      \"          -1.7201e-01, -4.2089e-01,  1.8540e-01, -3.9560e-01,  9.7645e-02,\\n\",\n      \"          -1.5531e-01, -1.0024e-01, -5.1246e-01, -3.0544e-01,  5.1789e-01,\\n\",\n      \"          -1.9354e-01, -2.5111e-01, -1.9714e-01, -3.2354e-02]],\\n\",\n      \"\\n\",\n      \"        [[ 6.1572e-02, -7.8968e-02, -1.2629e-01,  4.9267e-01, -3.3531e-01,\\n\",\n      \"          -4.6577e-01,  4.6988e-01,  4.1398e-01,  3.0156e-01,  1.1518e-01,\\n\",\n      \"           3.1389e-02, -4.6762e-01,  1.8188e-01, -6.1688e-01, -2.6343e-01,\\n\",\n      \"          -3.1576e-01,  4.9902e-01, -2.4268e-01,  1.6815e-01, -1.9693e-01,\\n\",\n      \"          -3.1019e-01,  1.7517e-01,  3.3324e-01,  9.6325e-02,  2.4211e-01,\\n\",\n      \"          -1.1460e-01, -3.7784e-01, -3.6116e-01,  2.4703e-01,  1.2421e-01,\\n\",\n      \"           2.6336e-01, -1.3863e-01,  4.4239e-01,  6.6868e-01,  3.9022e-01,\\n\",\n      \"           1.6709e-01, -3.4177e-01,  7.9374e-01, -2.0875e-01,  1.7250e-01,\\n\",\n      \"           9.2274e-02,  7.5432e-02,  3.1252e-01, -4.9550e-02,  4.5907e-02,\\n\",\n      \"           1.2979e-01,  2.7269e-01, -5.3483e-01, -6.1280e-02,  3.7396e-01,\\n\",\n      \"          -3.9102e-01, -3.3962e-01, -3.7767e-01, -2.2754e-01, -2.6761e-01,\\n\",\n      \"           8.6522e-02,  1.7051e-01, -4.1334e-02, -3.5324e-01,  2.7226e-01,\\n\",\n      \"          -5.8631e-01, -5.0842e-01,  3.2943e-02,  2.5173e-01],\\n\",\n      \"         [-6.6955e-02, -1.8796e-01, -9.6617e-02,  4.2052e-01, -2.8605e-01,\\n\",\n      \"          -5.0497e-02,  1.0545e-01, -2.9878e-01, -2.2345e-01, -5.3490e-01,\\n\",\n      \"           4.6530e-01, -2.1460e-01,  5.9005e-01, -2.3882e-01,  2.3549e-01,\\n\",\n      \"          -4.8996e-01,  9.8277e-02,  1.9883e-01,  7.5948e-02, -3.6621e-03,\\n\",\n      \"          -3.5541e-01,  2.3025e-01,  3.2918e-02,  2.3964e-01,  2.0046e-01,\\n\",\n      \"          -8.6032e-02,  3.1096e-01,  3.6305e-02, -1.8553e-01, -7.1272e-02,\\n\",\n      \"          -2.6754e-01,  1.9024e-01,  5.9301e-01,  4.9991e-01,  1.0630e-01,\\n\",\n      \"           2.9337e-01, -2.2475e-01,  7.7874e-01,  3.2949e-01, -1.6518e-01,\\n\",\n      \"          -4.7336e-01,  1.0853e-01,  2.3952e-01,  3.3526e-01, -1.5270e-01,\\n\",\n      \"           1.4827e-01,  1.1312e-01, -6.9810e-01, -3.8128e-01,  9.0495e-02,\\n\",\n      \"          -2.6985e-01, -6.3003e-01,  5.8684e-01, -6.1706e-01,  3.1610e-01,\\n\",\n      \"          -1.5197e-01,  3.6779e-01, -4.4601e-01, -4.8899e-01, -2.2342e-01,\\n\",\n      \"          -5.5231e-02, -5.6126e-01, -9.2266e-02, -1.8618e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7015e-01,  5.8729e-01,  1.4587e-01,  4.3972e-01, -1.1587e-01,\\n\",\n      \"          -6.3192e-01,  4.2250e-01,  2.0748e-01,  4.9845e-01,  3.0032e-02,\\n\",\n      \"           3.4143e-01, -1.4835e-01,  3.7302e-01,  6.5627e-02, -1.1746e-01,\\n\",\n      \"          -3.5304e-01, -7.3488e-02,  1.5345e-01,  3.8006e-01,  6.6840e-02,\\n\",\n      \"          -4.7847e-01, -4.6739e-02,  2.2526e-01, -1.0725e-03,  4.1146e-01,\\n\",\n      \"          -2.8105e-01, -1.8054e-01, -1.0973e-01, -3.4820e-01,  1.2527e-01,\\n\",\n      \"           1.1725e-01, -3.7594e-01,  6.2424e-02,  4.3085e-01,  7.0839e-01,\\n\",\n      \"           5.0156e-01, -6.4564e-01,  8.0471e-01, -4.8353e-01,  2.8749e-01,\\n\",\n      \"           5.4820e-02, -4.9795e-01,  3.6530e-01, -1.1493e-01, -2.3898e-02,\\n\",\n      \"           3.6245e-02,  1.0556e-01, -1.0374e-01, -1.8034e-02,  6.6806e-01,\\n\",\n      \"          -6.0303e-01, -3.0984e-01, -8.5715e-01, -3.2009e-01,  1.8598e-01,\\n\",\n      \"          -6.6235e-02, -1.3134e-01,  5.2580e-01, -3.6212e-01,  2.3866e-01,\\n\",\n      \"          -1.7990e-02,  8.0296e-02, -3.7835e-01, -2.9699e-01],\\n\",\n      \"         [-2.9946e-01,  1.7333e-01,  5.8426e-01,  3.4180e-01, -3.0022e-01,\\n\",\n      \"           1.7389e-01,  4.9503e-01, -8.8328e-02,  1.4499e-01, -9.1872e-02,\\n\",\n      \"           2.5825e-01, -3.0323e-01,  2.7515e-01,  1.3643e-02,  1.8358e-01,\\n\",\n      \"          -2.9342e-01,  1.2102e-01, -3.1372e-03,  4.2592e-01, -3.2323e-01,\\n\",\n      \"          -1.9382e-01,  1.0034e-01, -2.4542e-01,  1.7491e-01,  2.8585e-01,\\n\",\n      \"           2.1878e-01, -2.8580e-01,  2.6377e-01, -5.8683e-02, -1.8648e-02,\\n\",\n      \"           1.5466e-01,  6.1528e-02,  6.1995e-01,  3.3441e-01, -1.5242e-01,\\n\",\n      \"          -4.1493e-01, -2.2674e-01,  3.3035e-01,  4.1771e-01, -2.6339e-01,\\n\",\n      \"           1.6438e-02,  1.3321e-02,  3.6096e-01,  3.5693e-01, -2.7066e-01,\\n\",\n      \"           1.9357e-01,  3.4842e-01, -4.6198e-01, -2.5908e-01,  9.7302e-02,\\n\",\n      \"          -5.1082e-01, -6.0207e-01,  5.3004e-01, -2.6133e-01, -1.3656e-01,\\n\",\n      \"           3.1702e-01, -1.9228e-01,  1.1084e-01, -1.2700e-01,  9.1848e-02,\\n\",\n      \"          -1.2077e-01, -2.3991e-01, -2.2360e-01,  1.1209e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.3006e-03,  5.1264e-01,  1.4625e-01,  1.9990e-01, -9.8293e-04,\\n\",\n      \"          -3.9322e-01,  1.0313e-02,  1.9901e-01,  5.2193e-01,  2.4577e-01,\\n\",\n      \"           3.6912e-01, -4.1717e-01,  1.6650e-01, -1.3958e-01,  5.7864e-02,\\n\",\n      \"           7.9536e-02,  1.9557e-01, -3.7678e-02,  5.0398e-01, -3.0349e-01,\\n\",\n      \"          -2.0343e-02,  1.2007e-02,  3.0268e-02,  2.5128e-02,  4.6688e-01,\\n\",\n      \"           5.4019e-02, -2.2217e-01, -1.0217e-01, -2.0210e-01, -3.0865e-02,\\n\",\n      \"           2.3817e-01, -4.7999e-01, -1.1352e-01,  3.4405e-01,  4.7923e-01,\\n\",\n      \"           3.4116e-01, -1.3998e-01,  5.8126e-01, -5.3983e-01,  9.0539e-03,\\n\",\n      \"          -2.8760e-01,  1.4470e-03,  4.1896e-01,  9.0540e-02,  8.4472e-02,\\n\",\n      \"           2.4745e-01,  2.4676e-01,  1.3342e-01,  2.1588e-01,  4.5192e-01,\\n\",\n      \"          -3.9571e-01, -5.9851e-01, -6.4739e-01, -5.1435e-01,  1.4840e-01,\\n\",\n      \"          -3.1757e-01, -2.9868e-01,  3.5217e-01, -4.8268e-01,  6.2362e-01,\\n\",\n      \"          -8.0523e-02, -2.2044e-01, -6.5126e-01, -7.2174e-02],\\n\",\n      \"         [-6.7714e-02,  4.2866e-01,  3.4476e-01,  1.5000e-01, -3.6190e-02,\\n\",\n      \"           8.3957e-02,  5.5312e-02,  3.0808e-02,  4.4187e-01,  3.5487e-01,\\n\",\n      \"           2.7749e-01, -5.4736e-01,  1.3060e-01, -1.2858e-01,  1.4391e-01,\\n\",\n      \"           2.2495e-02,  2.5716e-01, -1.1392e-01,  5.0622e-01, -5.3849e-01,\\n\",\n      \"           8.1028e-02,  1.1880e-01, -1.9030e-01,  1.6085e-01,  4.2327e-01,\\n\",\n      \"           3.3224e-01, -2.8663e-01,  1.5584e-01,  2.0010e-02, -1.3972e-01,\\n\",\n      \"           3.0517e-01, -3.2512e-01,  2.0605e-01,  3.9866e-01,  7.5201e-02,\\n\",\n      \"          -1.4346e-01,  4.0802e-02,  2.5994e-01, -1.1602e-01, -3.1564e-01,\\n\",\n      \"          -2.4646e-01,  2.8795e-01,  3.0432e-01,  3.9361e-01, -2.6748e-02,\\n\",\n      \"           3.1790e-01,  4.0642e-01, -3.9523e-02,  2.4936e-02,  2.3207e-01,\\n\",\n      \"          -3.6772e-01, -7.2585e-01,  2.2393e-01, -4.9142e-01,  8.1099e-02,\\n\",\n      \"          -2.7510e-01, -3.3252e-01,  2.6320e-04, -3.5465e-01,  5.0127e-01,\\n\",\n      \"          -1.9976e-01, -4.5309e-01, -5.5326e-01,  1.9372e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.7057e-01,  3.2322e-01,  2.4574e-01,  4.5261e-01, -2.0914e-01,\\n\",\n      \"          -1.7835e-01, -1.3981e-01, -7.2055e-01,  4.6101e-01,  1.5611e-01,\\n\",\n      \"           1.9007e-01, -3.4269e-01, -1.1867e-01,  2.6001e-02, -2.9307e-01,\\n\",\n      \"           4.3272e-01,  2.6621e-01,  2.3335e-01,  5.2463e-01, -4.2147e-01,\\n\",\n      \"          -2.7186e-01, -3.1412e-01,  2.4990e-01,  2.9644e-02,  3.8283e-01,\\n\",\n      \"          -6.0349e-01,  4.2053e-01,  7.7588e-02, -5.3387e-01, -1.7636e-01,\\n\",\n      \"           5.6825e-01, -1.9517e-01,  2.9228e-01,  1.5452e-01, -1.3068e-01,\\n\",\n      \"          -1.6854e-01, -6.7126e-01,  5.3163e-01, -1.5279e-01, -4.1532e-03,\\n\",\n      \"          -4.1549e-01, -5.4631e-01, -2.0766e-01,  5.0530e-01,  2.4160e-01,\\n\",\n      \"           3.2883e-01,  6.5491e-02,  4.0148e-01,  3.9996e-01,  5.5935e-01,\\n\",\n      \"          -2.0955e-01,  8.5033e-02, -1.9248e-02, -6.1879e-01, -1.0936e-02,\\n\",\n      \"          -2.2420e-02, -4.3686e-01,  3.6831e-01,  4.9070e-01,  6.7791e-01,\\n\",\n      \"           9.3536e-02,  9.6758e-02,  2.7063e-01, -5.9233e-01],\\n\",\n      \"         [-2.1370e-01,  2.6253e-01,  3.7184e-01,  4.2944e-01, -2.2733e-01,\\n\",\n      \"           8.4641e-02, -1.1203e-01, -7.5004e-01,  4.0968e-01,  2.9284e-01,\\n\",\n      \"           1.0524e-01, -4.5711e-01, -1.3226e-01,  3.6899e-02, -2.9938e-01,\\n\",\n      \"           3.7876e-01,  3.0198e-01,  2.1248e-01,  5.0674e-01, -5.9870e-01,\\n\",\n      \"          -2.2014e-01, -2.7972e-01,  1.8850e-01,  1.3672e-01,  3.6082e-01,\\n\",\n      \"          -5.1068e-01,  3.8401e-01,  2.3140e-01, -4.6272e-01, -2.3285e-01,\\n\",\n      \"           5.9758e-01, -8.0234e-02,  4.1550e-01,  2.3767e-01, -3.2081e-01,\\n\",\n      \"          -2.6955e-01, -6.4333e-01,  3.0121e-01,  1.8572e-01, -2.1806e-01,\\n\",\n      \"          -3.6785e-01, -5.4011e-01, -3.0245e-01,  5.8575e-01,  1.6013e-01,\\n\",\n      \"           3.7621e-01,  1.5080e-01,  3.5251e-01,  2.9042e-01,  4.9547e-01,\\n\",\n      \"          -2.0645e-01,  9.5648e-04,  3.2034e-01, -5.9634e-01, -4.1605e-02,\\n\",\n      \"           2.8428e-02, -4.5341e-01,  1.7124e-01,  4.6399e-01,  5.8401e-01,\\n\",\n      \"           1.8860e-03, -1.1181e-01,  3.3156e-01, -4.8292e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.1405e-01,  7.2646e-01,  2.3313e-02,  2.9391e-01, -4.1278e-02,\\n\",\n      \"          -6.8512e-01, -6.3971e-01, -7.3721e-01,  5.8138e-01,  2.3946e-01,\\n\",\n      \"          -1.2826e-01, -4.2802e-01, -2.4249e-01,  6.9205e-01, -4.7766e-01,\\n\",\n      \"           1.3880e-01, -2.6832e-01,  8.0203e-01,  7.5108e-01, -3.1906e-01,\\n\",\n      \"          -7.2209e-01, -3.2389e-01,  2.3982e-01,  4.4074e-02,  8.8281e-03,\\n\",\n      \"          -5.3503e-01,  1.8058e-01,  5.3126e-01, -1.6590e-01,  4.4685e-02,\\n\",\n      \"           7.8644e-01, -5.1364e-01,  6.8338e-02, -6.5219e-02,  1.0594e-01,\\n\",\n      \"          -4.3814e-02, -5.8792e-01,  5.3987e-01, -2.0544e-02,  3.5673e-02,\\n\",\n      \"           3.8325e-01, -8.9699e-01, -9.8914e-02,  2.7993e-01, -4.2853e-01,\\n\",\n      \"           2.6470e-01, -1.5111e-01,  1.2840e-01,  4.4130e-01,  7.0472e-01,\\n\",\n      \"          -5.4222e-01,  6.3632e-01, -4.5410e-01, -7.3485e-01,  3.9335e-03,\\n\",\n      \"           2.1974e-02, -7.7820e-01,  7.1851e-01,  4.9839e-01,  4.5752e-01,\\n\",\n      \"          -5.6736e-01, -1.1570e-01,  1.7741e-01, -6.8631e-01],\\n\",\n      \"         [-5.2954e-01,  7.1507e-01,  1.1961e-01,  2.7049e-01, -4.1430e-02,\\n\",\n      \"          -6.3285e-01, -6.2980e-01, -7.5369e-01,  5.6139e-01,  3.6687e-01,\\n\",\n      \"          -1.8580e-01, -5.0004e-01, -2.4768e-01,  6.8709e-01, -4.7964e-01,\\n\",\n      \"           9.6180e-02, -2.4753e-01,  7.8835e-01,  7.4328e-01, -4.0307e-01,\\n\",\n      \"          -7.0861e-01, -3.0193e-01,  1.9124e-01,  1.0709e-01, -1.1137e-02,\\n\",\n      \"          -4.5462e-01,  1.6204e-01,  5.9233e-01, -1.0915e-01,  5.0066e-02,\\n\",\n      \"           7.9568e-01, -4.6623e-01,  1.3996e-01,  3.4372e-03, -3.3035e-02,\\n\",\n      \"          -1.1971e-01, -5.7255e-01,  3.7681e-01,  1.9896e-01, -1.2122e-01,\\n\",\n      \"           3.8669e-01, -9.0198e-01, -1.6976e-01,  3.3988e-01, -4.4157e-01,\\n\",\n      \"           3.1625e-01, -1.0426e-01,  1.2102e-01,  3.5134e-01,  6.7499e-01,\\n\",\n      \"          -5.4203e-01,  5.8671e-01, -3.0904e-01, -7.2010e-01, -1.4584e-02,\\n\",\n      \"           5.9193e-02, -7.8978e-01,  6.7157e-01,  4.5797e-01,  4.0904e-01,\\n\",\n      \"          -5.9217e-01, -1.8372e-01,  2.3222e-01, -6.0919e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[ 6, 37,  3,  2,  0,  0,  0],\\n\",\n      \"        [ 5,  4, 45,  3,  2,  0,  0]])\\n\",\n      \"tensor([[ 7,  5, 36,  3,  2,  0,  0],\\n\",\n      \"        [ 8,  4, 27,  3,  2,  0,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-0.6259,  0.9038, -0.0637,  0.3588, -0.6392, -0.6342, -0.8772,\\n\",\n      \"          -0.7924,  0.8551, -0.0995,  0.0404, -0.6707, -0.2762,  0.9423,\\n\",\n      \"          -0.6151,  0.1840, -0.3667,  0.9349,  0.7517,  0.8250, -0.7078,\\n\",\n      \"          -0.4140,  0.5651,  0.5699, -0.0231, -0.3714, -0.3216,  0.4785,\\n\",\n      \"          -0.2017,  0.3203,  0.2604, -0.1770,  0.7900,  0.3640,  0.1645,\\n\",\n      \"           0.3354,  0.2490,  0.5020, -0.0277, -0.5768,  0.5399, -0.9545,\\n\",\n      \"          -0.1607, -0.0372, -0.8542,  0.6075, -0.5180, -0.5131,  0.7556,\\n\",\n      \"           0.8640, -0.7883,  0.9384, -0.8025, -0.3808, -0.2378,  0.2016,\\n\",\n      \"          -0.8277,  0.8520,  0.5395,  0.5721, -0.7908,  0.5575,  0.1903,\\n\",\n      \"          -0.8359],\\n\",\n      \"         [-0.4696,  0.8815, -0.0788,  0.4271, -0.6788, -0.6417, -0.8661,\\n\",\n      \"          -0.7732,  0.8236, -0.0336, -0.0099, -0.6462, -0.3681,  0.9179,\\n\",\n      \"          -0.5502,  0.2671, -0.3668,  0.9270,  0.7971,  0.8322, -0.6464,\\n\",\n      \"          -0.4424,  0.5267,  0.5599,  0.0464, -0.4014, -0.2171,  0.3789,\\n\",\n      \"          -0.2194,  0.2423,  0.3270, -0.2496,  0.8120,  0.3705,  0.0194,\\n\",\n      \"           0.2590,  0.2933,  0.5301, -0.0086, -0.5517,  0.5475, -0.9429,\\n\",\n      \"          -0.1131,  0.0914, -0.8502,  0.6178, -0.4533, -0.5064,  0.7394,\\n\",\n      \"           0.8655, -0.7196,  0.9200, -0.6963, -0.3074, -0.2532,  0.2499,\\n\",\n      \"          -0.8346,  0.8091,  0.5435,  0.4152, -0.7906,  0.5049,  0.2605,\\n\",\n      \"          -0.7976]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.1876e-02,  2.0449e-01,  1.2946e-01,  3.8957e-01, -2.8742e-01,\\n\",\n      \"           1.7324e-01,  4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\\n\",\n      \"           3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02,  3.8296e-01,\\n\",\n      \"          -2.4677e-01,  5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\\n\",\n      \"          -3.5863e-01, -7.6301e-02,  5.3976e-01,  1.8053e-01, -4.6039e-01,\\n\",\n      \"          -4.0647e-01, -9.8147e-02,  5.4672e-01, -8.9772e-02,  4.0746e-02,\\n\",\n      \"           1.1188e-01,  4.1362e-01, -5.6949e-01,  5.2939e-01,  1.5917e-01,\\n\",\n      \"           9.9399e-02, -3.4445e-01,  6.2491e-01, -4.4808e-01,  2.7106e-01,\\n\",\n      \"          -1.6560e-01,  2.6980e-01, -4.7111e-01,  7.4357e-03,  1.1016e-01,\\n\",\n      \"          -2.3606e-01, -3.4845e-01,  1.5072e-01, -3.7065e-02,  3.1512e-01,\\n\",\n      \"           2.5581e-01,  3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\\n\",\n      \"          -1.6842e-01,  2.2732e-02,  3.7792e-01, -1.1966e-01,  9.9072e-02,\\n\",\n      \"          -3.9988e-01,  3.5676e-01,  4.3146e-01, -3.5387e-01],\\n\",\n      \"         [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\\n\",\n      \"           7.9412e-02,  1.8133e-02,  1.2927e-01, -1.6136e-01, -1.5331e-01,\\n\",\n      \"          -8.0777e-02, -1.3801e-01, -4.0392e-01,  3.0119e-01,  1.1731e-01,\\n\",\n      \"          -5.5234e-01,  2.8495e-01,  1.8620e-01, -7.8735e-02, -5.5452e-01,\\n\",\n      \"          -5.3230e-01, -4.6117e-02,  1.0367e-01, -1.2489e-01, -4.1837e-02,\\n\",\n      \"           3.4538e-02, -2.5756e-02,  1.7873e-01,  1.5026e-02, -1.0708e-01,\\n\",\n      \"          -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\\n\",\n      \"          -1.0795e-01, -1.9033e-01,  6.2986e-02, -8.8741e-02, -3.5847e-01,\\n\",\n      \"           1.6159e-01,  6.1150e-01, -3.3382e-02,  9.0885e-02, -5.4511e-01,\\n\",\n      \"          -2.8689e-01,  3.4493e-01, -7.5644e-02, -6.3455e-03,  3.7202e-01,\\n\",\n      \"           1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\\n\",\n      \"           2.6133e-02, -3.4519e-01,  1.9728e-01,  5.4546e-02, -3.1128e-01,\\n\",\n      \"           3.1239e-01,  2.0924e-01,  2.3193e-01, -2.8919e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.2365e-01,  1.3569e-01,  2.7882e-01,  5.3593e-01, -2.3814e-03,\\n\",\n      \"          -4.0386e-02, -4.1100e-01,  3.4883e-02, -1.3455e-01, -3.0311e-01,\\n\",\n      \"           4.1851e-01,  1.5324e-01, -3.9539e-01,  3.2939e-01,  2.9012e-01,\\n\",\n      \"          -2.2305e-01,  2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\\n\",\n      \"          -5.6430e-01,  1.4938e-01,  5.3304e-01,  3.3561e-01, -5.6758e-01,\\n\",\n      \"          -3.1424e-01, -7.4645e-02,  1.6243e-01,  1.7337e-01, -4.2843e-02,\\n\",\n      \"           1.9555e-01, -7.0186e-02,  4.5234e-02, -2.6768e-02,  6.7001e-02,\\n\",\n      \"           1.4401e-01, -5.8669e-01,  6.6726e-01, -9.7634e-02, -4.4069e-01,\\n\",\n      \"           1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01,  8.5537e-02,\\n\",\n      \"          -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01,  3.5808e-01,\\n\",\n      \"           2.4732e-01,  3.4604e-01,  1.8691e-01, -5.2340e-01, -7.8705e-02,\\n\",\n      \"          -3.5208e-01, -3.3275e-01,  3.2585e-01, -2.7377e-01,  4.6864e-01,\\n\",\n      \"          -4.8893e-01,  4.7856e-02,  4.0918e-01, -3.2458e-01],\\n\",\n      \"         [ 2.9272e-01, -2.2613e-01, -3.9943e-01,  7.3033e-01, -1.5350e-01,\\n\",\n      \"           6.4352e-02,  2.0583e-01,  4.9423e-01,  2.8296e-01, -3.0972e-01,\\n\",\n      \"          -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01,  4.3754e-01,\\n\",\n      \"           1.9655e-02,  3.1482e-01,  3.4366e-01,  1.3772e-01, -4.9082e-01,\\n\",\n      \"          -5.8955e-01,  5.5178e-02,  2.8124e-01,  2.5237e-01,  2.1010e-01,\\n\",\n      \"          -1.4519e-01, -3.1231e-02, -4.5927e-02,  8.4576e-02, -2.2813e-01,\\n\",\n      \"          -1.0999e-01, -4.7251e-02,  3.7033e-01,  3.2943e-01, -1.4418e-03,\\n\",\n      \"           9.7710e-02, -5.1259e-01,  8.1932e-01,  1.9363e-01,  2.2118e-01,\\n\",\n      \"           1.5377e-01,  5.8502e-01,  2.8674e-02, -1.4168e-01, -3.3884e-01,\\n\",\n      \"          -1.3351e-01,  2.3175e-01, -5.4281e-01,  1.1601e-01,  6.1183e-01,\\n\",\n      \"          -4.5140e-02, -2.5237e-01,  2.3752e-01, -5.1164e-01, -3.1370e-01,\\n\",\n      \"          -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01,  4.5315e-01,\\n\",\n      \"          -3.8700e-01, -3.3658e-01,  2.4828e-03, -1.1722e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4517e-02,  5.1353e-01,  2.7537e-01,  3.2463e-01, -6.7576e-02,\\n\",\n      \"          -2.0490e-01, -4.6915e-01,  1.5765e-01,  4.4066e-01,  2.8679e-01,\\n\",\n      \"           4.1518e-01, -4.7293e-01, -3.3223e-01,  9.0766e-02,  2.6712e-01,\\n\",\n      \"           1.4399e-01,  4.4340e-01, -4.1589e-01,  6.3286e-02, -6.5724e-01,\\n\",\n      \"          -9.8731e-02,  1.4927e-01,  2.3330e-01,  3.4253e-01, -8.3711e-02,\\n\",\n      \"          -4.2961e-02, -6.9909e-02,  9.9444e-02,  1.9790e-01, -1.3862e-01,\\n\",\n      \"           3.4126e-01, -4.7026e-01, -1.3669e-03,  3.1917e-01,  8.7192e-02,\\n\",\n      \"           1.7769e-01, -2.6164e-01,  5.8675e-01, -3.7114e-01, -4.1631e-01,\\n\",\n      \"          -9.7841e-02,  2.1348e-01, -7.5500e-03, -1.8236e-02,  1.9261e-03,\\n\",\n      \"           1.4379e-01, -6.9110e-02,  9.1750e-02,  1.8012e-01,  3.5871e-01,\\n\",\n      \"           1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\\n\",\n      \"          -3.6182e-01, -3.7487e-01,  2.4039e-01, -4.6122e-01,  6.9476e-01,\\n\",\n      \"          -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\\n\",\n      \"         [ 5.1123e-01, -4.0266e-01, -2.9377e-01,  4.1843e-01, -2.3979e-01,\\n\",\n      \"           2.6047e-02,  2.0101e-01, -1.8941e-01,  1.0405e-02, -1.2233e-01,\\n\",\n      \"           7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01,  3.8687e-01,\\n\",\n      \"          -7.9252e-04, -9.5511e-02,  2.9611e-01,  1.8304e-01, -6.1154e-01,\\n\",\n      \"          -6.3995e-01, -6.1087e-02,  2.2301e-01,  2.3835e-01, -9.4064e-03,\\n\",\n      \"          -3.1463e-02,  5.0872e-01,  5.2994e-02,  1.4707e-01, -1.3801e-01,\\n\",\n      \"           1.6804e-01,  2.6023e-01, -1.6039e-03,  3.9684e-01, -8.6695e-02,\\n\",\n      \"          -1.2471e-01, -6.2766e-01,  5.4049e-01, -8.3060e-02, -9.4193e-02,\\n\",\n      \"           2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\\n\",\n      \"           1.0937e-01,  2.8545e-01, -5.2316e-01, -1.7083e-01,  5.1631e-01,\\n\",\n      \"          -2.0713e-01,  1.1943e-02,  1.9117e-01, -9.0481e-02, -1.7545e-01,\\n\",\n      \"           1.4447e-01, -6.1310e-01,  2.4947e-01, -3.2512e-01, -1.1674e-01,\\n\",\n      \"          -1.5464e-01,  8.5949e-02,  1.9173e-01, -1.8634e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.4599e-01,  3.4493e-01,  3.5540e-01,  5.9247e-01, -4.1207e-01,\\n\",\n      \"          -1.6579e-01, -4.8020e-01, -7.3714e-01,  4.8738e-01,  2.0807e-01,\\n\",\n      \"           3.0116e-01, -4.4130e-01, -4.2788e-01,  2.6977e-01, -2.3329e-01,\\n\",\n      \"           5.3776e-01,  4.9697e-01,  2.9906e-01,  2.7902e-01, -6.9022e-01,\\n\",\n      \"          -4.0519e-01, -1.4059e-01,  4.0009e-01,  3.3875e-01,  3.8020e-02,\\n\",\n      \"          -6.8647e-01,  5.3905e-01,  1.5797e-01, -3.5341e-01, -2.1889e-01,\\n\",\n      \"           6.5958e-01, -1.9601e-01,  5.0115e-01,  2.6124e-01, -3.4608e-01,\\n\",\n      \"          -8.9277e-02, -7.4167e-01,  6.1062e-01,  1.4346e-01, -2.8655e-01,\\n\",\n      \"          -2.5671e-01, -5.9121e-01, -5.0235e-01,  4.6546e-01,  1.5253e-01,\\n\",\n      \"           3.3492e-01, -1.8718e-01,  3.2432e-01,  4.7797e-01,  6.2427e-01,\\n\",\n      \"           1.1437e-02,  3.0348e-01,  1.3757e-01, -7.2873e-01, -2.9603e-01,\\n\",\n      \"           1.8765e-02, -5.9862e-01,  3.6728e-01,  5.7481e-01,  7.0923e-01,\\n\",\n      \"          -2.4748e-01, -9.4674e-02,  5.3589e-01, -6.6785e-01],\\n\",\n      \"         [ 3.1676e-01,  2.6778e-01,  6.5309e-02,  2.8887e-01, -1.7269e-01,\\n\",\n      \"          -4.3300e-02, -1.5170e-01,  4.5494e-03,  4.3829e-01,  3.1757e-01,\\n\",\n      \"           1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01,  2.1333e-01,\\n\",\n      \"           2.4054e-01,  2.3956e-01, -2.2792e-02,  4.7846e-01, -6.9334e-01,\\n\",\n      \"          -2.4033e-01, -3.7174e-02,  2.3895e-02,  2.7962e-01,  2.3990e-01,\\n\",\n      \"           1.0133e-01,  3.8711e-01,  8.3111e-03,  1.7434e-01, -1.9475e-01,\\n\",\n      \"           3.4768e-01, -2.9952e-01, -8.9722e-02,  4.9720e-01,  6.0897e-02,\\n\",\n      \"           4.2339e-02, -2.8452e-01,  5.0351e-01, -3.4962e-01, -2.3853e-01,\\n\",\n      \"          -8.4488e-02,  7.0700e-02, -1.5170e-01,  1.3667e-01, -4.8259e-02,\\n\",\n      \"           2.4410e-01,  3.2302e-01, -4.5496e-02,  2.0975e-01,  5.4169e-01,\\n\",\n      \"          -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\\n\",\n      \"          -2.2768e-01, -5.6263e-01,  1.5331e-01, -4.4642e-01,  5.5733e-01,\\n\",\n      \"          -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.3190e-01,  8.1577e-01,  2.3800e-01,  4.8075e-01, -2.7762e-01,\\n\",\n      \"          -7.0727e-01, -8.0229e-01, -7.6923e-01,  6.7816e-01,  2.7397e-01,\\n\",\n      \"          -1.8307e-02, -6.1159e-01, -5.0091e-01,  8.3182e-01, -4.9736e-01,\\n\",\n      \"           3.3217e-01, -2.1184e-01,  8.8089e-01,  7.3042e-01, -3.0091e-01,\\n\",\n      \"          -8.4643e-01, -1.7723e-01,  3.9327e-01,  3.5607e-01, -3.6149e-01,\\n\",\n      \"          -6.4001e-01,  2.5142e-01,  4.7756e-01, -1.8219e-01,  1.9411e-01,\\n\",\n      \"           8.4554e-01, -4.0670e-01,  2.2843e-01, -2.8213e-02, -1.6706e-01,\\n\",\n      \"           8.4338e-02, -6.9243e-01,  6.5162e-01,  2.2620e-01, -2.4377e-01,\\n\",\n      \"           6.3091e-01, -9.2143e-01, -5.2339e-01,  3.0346e-01, -6.8120e-01,\\n\",\n      \"           3.0847e-01, -3.0962e-01,  8.6166e-02,  5.2663e-01,  7.8582e-01,\\n\",\n      \"          -4.4179e-01,  7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\\n\",\n      \"           5.9648e-02, -8.9259e-01,  7.4582e-01,  6.0832e-01,  4.5425e-01,\\n\",\n      \"          -7.7402e-01,  7.1262e-03,  5.1430e-01, -7.4709e-01],\\n\",\n      \"         [ 1.0309e-01,  1.4890e-01,  2.3418e-01,  5.6161e-01, -4.5344e-01,\\n\",\n      \"          -3.7399e-02, -2.9632e-01, -7.8586e-01,  4.6773e-01,  2.3163e-01,\\n\",\n      \"           1.4635e-01, -6.1039e-01, -4.2175e-01,  2.9848e-02, -2.7098e-01,\\n\",\n      \"           5.8869e-01,  3.3047e-01,  3.8213e-01,  5.6308e-01, -7.1158e-01,\\n\",\n      \"          -4.7782e-01, -2.6972e-01,  3.1826e-01,  3.0689e-01,  2.0002e-01,\\n\",\n      \"          -6.3196e-01,  6.7574e-01,  1.0718e-01, -3.5589e-01, -2.2234e-01,\\n\",\n      \"           6.5694e-01, -4.6705e-02,  4.4457e-01,  3.8695e-01, -4.0593e-01,\\n\",\n      \"          -1.4013e-01, -7.6718e-01,  5.5516e-01,  1.2624e-01, -1.6417e-01,\\n\",\n      \"          -2.5965e-01, -6.6241e-01, -5.8782e-01,  5.3524e-01,  1.1498e-01,\\n\",\n      \"           3.5718e-01,  2.6810e-02,  3.1688e-01,  5.0246e-01,  7.2960e-01,\\n\",\n      \"          -1.6614e-01,  2.5272e-01,  1.4311e-01, -5.7957e-01, -2.1543e-01,\\n\",\n      \"           1.1138e-01, -6.8110e-01,  3.2205e-01,  5.9080e-01,  6.2253e-01,\\n\",\n      \"          -1.1579e-01, -5.8518e-02,  5.1007e-01, -6.3510e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.3295e-01,  8.9806e-01,  1.3076e-01,  3.5989e-01, -1.5338e-01,\\n\",\n      \"          -7.3023e-01, -8.8205e-01, -7.8767e-01,  7.6649e-01,  2.6182e-01,\\n\",\n      \"          -7.9418e-02, -7.0422e-01, -5.5216e-01,  9.3353e-01, -6.1393e-01,\\n\",\n      \"           1.6090e-01, -4.1725e-01,  9.4148e-01,  8.8216e-01, -1.2415e-01,\\n\",\n      \"          -9.2694e-01, -2.1225e-01,  3.8735e-01,  3.5587e-01, -5.2650e-01,\\n\",\n      \"          -5.9547e-01,  3.4167e-03,  6.6310e-01, -1.2849e-01,  2.4384e-01,\\n\",\n      \"           8.9664e-01, -5.5139e-01,  3.2991e-02, -1.9388e-01, -2.2145e-03,\\n\",\n      \"           1.8390e-01, -6.3102e-01,  6.6637e-01,  2.8547e-01, -2.0640e-01,\\n\",\n      \"           7.5508e-01, -9.5772e-01, -4.9472e-01,  1.9963e-01, -8.3145e-01,\\n\",\n      \"           2.6752e-01, -3.2867e-01, -8.0532e-02,  5.5949e-01,  8.5466e-01,\\n\",\n      \"          -6.6808e-01,  7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\\n\",\n      \"           9.2077e-02, -9.4609e-01,  8.4297e-01,  6.4095e-01,  4.2260e-01,\\n\",\n      \"          -8.5386e-01,  1.3420e-01,  4.6493e-01, -7.8761e-01],\\n\",\n      \"         [-4.0157e-01,  7.7822e-01,  1.5185e-01,  4.5991e-01, -2.9712e-01,\\n\",\n      \"          -6.5423e-01, -7.5150e-01, -8.0209e-01,  6.6695e-01,  2.9053e-01,\\n\",\n      \"          -6.2758e-02, -7.0725e-01, -4.9634e-01,  7.8107e-01, -5.0621e-01,\\n\",\n      \"           3.7759e-01, -2.7325e-01,  8.8842e-01,  8.2682e-01, -3.1178e-01,\\n\",\n      \"          -8.5566e-01, -2.9528e-01,  3.2213e-01,  3.4162e-01, -3.0355e-01,\\n\",\n      \"          -5.9389e-01,  3.5483e-01,  4.5676e-01, -1.7409e-01,  2.1121e-01,\\n\",\n      \"           8.4332e-01, -3.1843e-01,  1.7427e-01,  3.4608e-02, -1.8790e-01,\\n\",\n      \"           5.4708e-02, -7.1884e-01,  6.1022e-01,  2.1457e-01, -1.4149e-01,\\n\",\n      \"           6.2510e-01, -9.3106e-01, -5.6068e-01,  3.8099e-01, -6.8192e-01,\\n\",\n      \"           3.3177e-01, -1.8218e-01,  6.8974e-02,  5.4749e-01,  8.4259e-01,\\n\",\n      \"          -5.1681e-01,  7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\\n\",\n      \"           1.3590e-01, -9.1580e-01,  7.2868e-01,  6.2468e-01,  3.9947e-01,\\n\",\n      \"          -7.5519e-01,  1.6911e-02,  4.8992e-01, -7.2295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-8.2138e-01,  9.1111e-01,  4.6997e-02,  2.4762e-01, -3.9914e-02,\\n\",\n      \"          -7.1967e-01, -9.0576e-01, -7.9947e-01,  8.0798e-01,  2.3534e-01,\\n\",\n      \"          -6.0936e-02, -7.4290e-01, -5.8363e-01,  9.5139e-01, -6.7749e-01,\\n\",\n      \"           2.1059e-02, -4.9246e-01,  9.4772e-01,  9.3094e-01, -3.5459e-02,\\n\",\n      \"          -9.4027e-01, -2.4467e-01,  3.8255e-01,  3.4837e-01, -5.9900e-01,\\n\",\n      \"          -5.5247e-01, -1.7942e-01,  7.5872e-01, -9.8738e-02,  2.1996e-01,\\n\",\n      \"           9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01,  1.3646e-01,\\n\",\n      \"           2.4945e-01, -5.7759e-01,  6.7082e-01,  3.2138e-01, -1.7692e-01,\\n\",\n      \"           7.5860e-01, -9.6094e-01, -4.4573e-01,  1.0738e-01, -8.5018e-01,\\n\",\n      \"           2.2871e-01, -3.3403e-01, -2.0607e-01,  5.8237e-01,  8.7589e-01,\\n\",\n      \"          -7.6794e-01,  8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\\n\",\n      \"           1.1904e-01, -9.5598e-01,  8.7078e-01,  6.6721e-01,  4.1586e-01,\\n\",\n      \"          -8.7196e-01,  1.8279e-01,  4.1627e-01, -8.1426e-01],\\n\",\n      \"         [-6.7484e-01,  8.9251e-01,  7.1709e-02,  3.4437e-01, -1.6517e-01,\\n\",\n      \"          -7.1140e-01, -8.6538e-01, -8.0934e-01,  7.5987e-01,  2.7822e-01,\\n\",\n      \"          -8.6837e-02, -7.4919e-01, -5.5023e-01,  9.2409e-01, -6.1562e-01,\\n\",\n      \"           1.9981e-01, -4.5086e-01,  9.4142e-01,  9.1322e-01, -1.2868e-01,\\n\",\n      \"          -9.2935e-01, -3.2165e-01,  3.2718e-01,  3.4869e-01, -5.0915e-01,\\n\",\n      \"          -5.5380e-01,  7.4805e-02,  6.5267e-01, -1.2531e-01,  2.6391e-01,\\n\",\n      \"           8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\\n\",\n      \"           1.6423e-01, -6.5370e-01,  6.3765e-01,  2.7780e-01, -1.1735e-01,\\n\",\n      \"           7.5169e-01, -9.5978e-01, -5.0727e-01,  2.6838e-01, -8.2897e-01,\\n\",\n      \"           2.8772e-01, -2.4363e-01, -9.4374e-02,  5.7713e-01,  8.8612e-01,\\n\",\n      \"          -6.9917e-01,  7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\\n\",\n      \"           1.5778e-01, -9.5314e-01,  8.3813e-01,  6.5658e-01,  4.0131e-01,\\n\",\n      \"          -8.4993e-01,  1.4095e-01,  4.5086e-01, -7.6913e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([7, 8])\\n\",\n      \"dec_state: tensor([[[-0.6088,  0.8966, -0.3065,  0.7645, -0.2120, -0.5961, -0.7106,\\n\",\n      \"          -0.6883,  0.2411, -0.3085,  0.0403, -0.9391,  0.0134,  0.9359,\\n\",\n      \"          -0.7091,  0.2223,  0.6128,  0.6388, -0.6831,  0.7555,  0.2900,\\n\",\n      \"          -0.8395, -0.4271,  0.8032, -0.3970, -0.2301, -0.0010, -0.3356,\\n\",\n      \"          -0.5217, -0.7552, -0.3263,  0.2805,  0.7617,  0.3394, -0.5514,\\n\",\n      \"           0.8154, -0.7602, -0.4501,  0.8503,  0.2331,  0.6352, -0.6340,\\n\",\n      \"          -0.1466,  0.5280, -0.6987, -0.5882, -0.3728, -0.3424,  0.7761,\\n\",\n      \"           0.8829,  0.0782,  0.9111,  0.0023, -0.6859, -0.8333, -0.2541,\\n\",\n      \"          -0.7372,  0.8714, -0.0295, -0.7080, -0.6695,  0.7646, -0.4460,\\n\",\n      \"           0.6746],\\n\",\n      \"         [-0.4304,  0.2344,  0.1403,  0.4570, -0.3502, -0.5268, -0.7541,\\n\",\n      \"          -0.6177,  0.4515, -0.3861, -0.2800,  0.0324, -0.1772,  0.8642,\\n\",\n      \"          -0.4960,  0.1027, -0.0616,  0.5767,  0.4312,  0.7030,  0.0254,\\n\",\n      \"          -0.3713,  0.2536,  0.5114,  0.0992, -0.5877,  0.4117,  0.5679,\\n\",\n      \"          -0.4712,  0.5374,  0.2580, -0.3141,  0.8000,  0.4867, -0.4193,\\n\",\n      \"          -0.0587,  0.4361,  0.5530, -0.0569, -0.0696,  0.0450, -0.6308,\\n\",\n      \"          -0.1116, -0.0331, -0.5124,  0.4732, -0.3884, -0.5433,  0.4897,\\n\",\n      \"           0.7573, -0.2135,  0.8784, -0.7951,  0.4100, -0.2023,  0.2851,\\n\",\n      \"          -0.6821,  0.3037,  0.3883, -0.1664, -0.5209,  0.3831,  0.1278,\\n\",\n      \"          -0.5452]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.1876e-02,  2.0449e-01,  1.2946e-01,  3.8957e-01, -2.8742e-01,\\n\",\n      \"           1.7324e-01,  4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\\n\",\n      \"           3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02,  3.8296e-01,\\n\",\n      \"          -2.4677e-01,  5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\\n\",\n      \"          -3.5863e-01, -7.6301e-02,  5.3976e-01,  1.8053e-01, -4.6039e-01,\\n\",\n      \"          -4.0647e-01, -9.8147e-02,  5.4672e-01, -8.9772e-02,  4.0746e-02,\\n\",\n      \"           1.1188e-01,  4.1362e-01, -5.6949e-01,  5.2939e-01,  1.5917e-01,\\n\",\n      \"           9.9399e-02, -3.4445e-01,  6.2491e-01, -4.4808e-01,  2.7106e-01,\\n\",\n      \"          -1.6560e-01,  2.6980e-01, -4.7111e-01,  7.4357e-03,  1.1016e-01,\\n\",\n      \"          -2.3606e-01, -3.4845e-01,  1.5072e-01, -3.7065e-02,  3.1512e-01,\\n\",\n      \"           2.5581e-01,  3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\\n\",\n      \"          -1.6842e-01,  2.2732e-02,  3.7792e-01, -1.1966e-01,  9.9072e-02,\\n\",\n      \"          -3.9988e-01,  3.5676e-01,  4.3146e-01, -3.5387e-01],\\n\",\n      \"         [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\\n\",\n      \"           7.9412e-02,  1.8133e-02,  1.2927e-01, -1.6136e-01, -1.5331e-01,\\n\",\n      \"          -8.0777e-02, -1.3801e-01, -4.0392e-01,  3.0119e-01,  1.1731e-01,\\n\",\n      \"          -5.5234e-01,  2.8495e-01,  1.8620e-01, -7.8735e-02, -5.5452e-01,\\n\",\n      \"          -5.3230e-01, -4.6117e-02,  1.0367e-01, -1.2489e-01, -4.1837e-02,\\n\",\n      \"           3.4538e-02, -2.5756e-02,  1.7873e-01,  1.5026e-02, -1.0708e-01,\\n\",\n      \"          -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\\n\",\n      \"          -1.0795e-01, -1.9033e-01,  6.2986e-02, -8.8741e-02, -3.5847e-01,\\n\",\n      \"           1.6159e-01,  6.1150e-01, -3.3382e-02,  9.0885e-02, -5.4511e-01,\\n\",\n      \"          -2.8689e-01,  3.4493e-01, -7.5644e-02, -6.3455e-03,  3.7202e-01,\\n\",\n      \"           1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\\n\",\n      \"           2.6133e-02, -3.4519e-01,  1.9728e-01,  5.4546e-02, -3.1128e-01,\\n\",\n      \"           3.1239e-01,  2.0924e-01,  2.3193e-01, -2.8919e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.2365e-01,  1.3569e-01,  2.7882e-01,  5.3593e-01, -2.3814e-03,\\n\",\n      \"          -4.0386e-02, -4.1100e-01,  3.4883e-02, -1.3455e-01, -3.0311e-01,\\n\",\n      \"           4.1851e-01,  1.5324e-01, -3.9539e-01,  3.2939e-01,  2.9012e-01,\\n\",\n      \"          -2.2305e-01,  2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\\n\",\n      \"          -5.6430e-01,  1.4938e-01,  5.3304e-01,  3.3561e-01, -5.6758e-01,\\n\",\n      \"          -3.1424e-01, -7.4645e-02,  1.6243e-01,  1.7337e-01, -4.2843e-02,\\n\",\n      \"           1.9555e-01, -7.0186e-02,  4.5234e-02, -2.6768e-02,  6.7001e-02,\\n\",\n      \"           1.4401e-01, -5.8669e-01,  6.6726e-01, -9.7634e-02, -4.4069e-01,\\n\",\n      \"           1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01,  8.5537e-02,\\n\",\n      \"          -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01,  3.5808e-01,\\n\",\n      \"           2.4732e-01,  3.4604e-01,  1.8691e-01, -5.2340e-01, -7.8705e-02,\\n\",\n      \"          -3.5208e-01, -3.3275e-01,  3.2585e-01, -2.7377e-01,  4.6864e-01,\\n\",\n      \"          -4.8893e-01,  4.7856e-02,  4.0918e-01, -3.2458e-01],\\n\",\n      \"         [ 2.9272e-01, -2.2613e-01, -3.9943e-01,  7.3033e-01, -1.5350e-01,\\n\",\n      \"           6.4352e-02,  2.0583e-01,  4.9423e-01,  2.8296e-01, -3.0972e-01,\\n\",\n      \"          -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01,  4.3754e-01,\\n\",\n      \"           1.9655e-02,  3.1482e-01,  3.4366e-01,  1.3772e-01, -4.9082e-01,\\n\",\n      \"          -5.8955e-01,  5.5178e-02,  2.8124e-01,  2.5237e-01,  2.1010e-01,\\n\",\n      \"          -1.4519e-01, -3.1231e-02, -4.5927e-02,  8.4576e-02, -2.2813e-01,\\n\",\n      \"          -1.0999e-01, -4.7251e-02,  3.7033e-01,  3.2943e-01, -1.4418e-03,\\n\",\n      \"           9.7710e-02, -5.1259e-01,  8.1932e-01,  1.9363e-01,  2.2118e-01,\\n\",\n      \"           1.5377e-01,  5.8502e-01,  2.8674e-02, -1.4168e-01, -3.3884e-01,\\n\",\n      \"          -1.3351e-01,  2.3175e-01, -5.4281e-01,  1.1601e-01,  6.1183e-01,\\n\",\n      \"          -4.5140e-02, -2.5237e-01,  2.3752e-01, -5.1164e-01, -3.1370e-01,\\n\",\n      \"          -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01,  4.5315e-01,\\n\",\n      \"          -3.8700e-01, -3.3658e-01,  2.4828e-03, -1.1722e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4517e-02,  5.1353e-01,  2.7537e-01,  3.2463e-01, -6.7576e-02,\\n\",\n      \"          -2.0490e-01, -4.6915e-01,  1.5765e-01,  4.4066e-01,  2.8679e-01,\\n\",\n      \"           4.1518e-01, -4.7293e-01, -3.3223e-01,  9.0766e-02,  2.6712e-01,\\n\",\n      \"           1.4399e-01,  4.4340e-01, -4.1589e-01,  6.3286e-02, -6.5724e-01,\\n\",\n      \"          -9.8731e-02,  1.4927e-01,  2.3330e-01,  3.4253e-01, -8.3711e-02,\\n\",\n      \"          -4.2961e-02, -6.9909e-02,  9.9444e-02,  1.9790e-01, -1.3862e-01,\\n\",\n      \"           3.4126e-01, -4.7026e-01, -1.3669e-03,  3.1917e-01,  8.7192e-02,\\n\",\n      \"           1.7769e-01, -2.6164e-01,  5.8675e-01, -3.7114e-01, -4.1631e-01,\\n\",\n      \"          -9.7841e-02,  2.1348e-01, -7.5500e-03, -1.8236e-02,  1.9261e-03,\\n\",\n      \"           1.4379e-01, -6.9110e-02,  9.1750e-02,  1.8012e-01,  3.5871e-01,\\n\",\n      \"           1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\\n\",\n      \"          -3.6182e-01, -3.7487e-01,  2.4039e-01, -4.6122e-01,  6.9476e-01,\\n\",\n      \"          -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\\n\",\n      \"         [ 5.1123e-01, -4.0266e-01, -2.9377e-01,  4.1843e-01, -2.3979e-01,\\n\",\n      \"           2.6047e-02,  2.0101e-01, -1.8941e-01,  1.0405e-02, -1.2233e-01,\\n\",\n      \"           7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01,  3.8687e-01,\\n\",\n      \"          -7.9252e-04, -9.5511e-02,  2.9611e-01,  1.8304e-01, -6.1154e-01,\\n\",\n      \"          -6.3995e-01, -6.1087e-02,  2.2301e-01,  2.3835e-01, -9.4064e-03,\\n\",\n      \"          -3.1463e-02,  5.0872e-01,  5.2994e-02,  1.4707e-01, -1.3801e-01,\\n\",\n      \"           1.6804e-01,  2.6023e-01, -1.6039e-03,  3.9684e-01, -8.6695e-02,\\n\",\n      \"          -1.2471e-01, -6.2766e-01,  5.4049e-01, -8.3060e-02, -9.4193e-02,\\n\",\n      \"           2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\\n\",\n      \"           1.0937e-01,  2.8545e-01, -5.2316e-01, -1.7083e-01,  5.1631e-01,\\n\",\n      \"          -2.0713e-01,  1.1943e-02,  1.9117e-01, -9.0481e-02, -1.7545e-01,\\n\",\n      \"           1.4447e-01, -6.1310e-01,  2.4947e-01, -3.2512e-01, -1.1674e-01,\\n\",\n      \"          -1.5464e-01,  8.5949e-02,  1.9173e-01, -1.8634e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.4599e-01,  3.4493e-01,  3.5540e-01,  5.9247e-01, -4.1207e-01,\\n\",\n      \"          -1.6579e-01, -4.8020e-01, -7.3714e-01,  4.8738e-01,  2.0807e-01,\\n\",\n      \"           3.0116e-01, -4.4130e-01, -4.2788e-01,  2.6977e-01, -2.3329e-01,\\n\",\n      \"           5.3776e-01,  4.9697e-01,  2.9906e-01,  2.7902e-01, -6.9022e-01,\\n\",\n      \"          -4.0519e-01, -1.4059e-01,  4.0009e-01,  3.3875e-01,  3.8020e-02,\\n\",\n      \"          -6.8647e-01,  5.3905e-01,  1.5797e-01, -3.5341e-01, -2.1889e-01,\\n\",\n      \"           6.5958e-01, -1.9601e-01,  5.0115e-01,  2.6124e-01, -3.4608e-01,\\n\",\n      \"          -8.9277e-02, -7.4167e-01,  6.1062e-01,  1.4346e-01, -2.8655e-01,\\n\",\n      \"          -2.5671e-01, -5.9121e-01, -5.0235e-01,  4.6546e-01,  1.5253e-01,\\n\",\n      \"           3.3492e-01, -1.8718e-01,  3.2432e-01,  4.7797e-01,  6.2427e-01,\\n\",\n      \"           1.1437e-02,  3.0348e-01,  1.3757e-01, -7.2873e-01, -2.9603e-01,\\n\",\n      \"           1.8765e-02, -5.9862e-01,  3.6728e-01,  5.7481e-01,  7.0923e-01,\\n\",\n      \"          -2.4748e-01, -9.4674e-02,  5.3589e-01, -6.6785e-01],\\n\",\n      \"         [ 3.1676e-01,  2.6778e-01,  6.5309e-02,  2.8887e-01, -1.7269e-01,\\n\",\n      \"          -4.3300e-02, -1.5170e-01,  4.5494e-03,  4.3829e-01,  3.1757e-01,\\n\",\n      \"           1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01,  2.1333e-01,\\n\",\n      \"           2.4054e-01,  2.3956e-01, -2.2792e-02,  4.7846e-01, -6.9334e-01,\\n\",\n      \"          -2.4033e-01, -3.7174e-02,  2.3895e-02,  2.7962e-01,  2.3990e-01,\\n\",\n      \"           1.0133e-01,  3.8711e-01,  8.3111e-03,  1.7434e-01, -1.9475e-01,\\n\",\n      \"           3.4768e-01, -2.9952e-01, -8.9722e-02,  4.9720e-01,  6.0897e-02,\\n\",\n      \"           4.2339e-02, -2.8452e-01,  5.0351e-01, -3.4962e-01, -2.3853e-01,\\n\",\n      \"          -8.4488e-02,  7.0700e-02, -1.5170e-01,  1.3667e-01, -4.8259e-02,\\n\",\n      \"           2.4410e-01,  3.2302e-01, -4.5496e-02,  2.0975e-01,  5.4169e-01,\\n\",\n      \"          -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\\n\",\n      \"          -2.2768e-01, -5.6263e-01,  1.5331e-01, -4.4642e-01,  5.5733e-01,\\n\",\n      \"          -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.3190e-01,  8.1577e-01,  2.3800e-01,  4.8075e-01, -2.7762e-01,\\n\",\n      \"          -7.0727e-01, -8.0229e-01, -7.6923e-01,  6.7816e-01,  2.7397e-01,\\n\",\n      \"          -1.8307e-02, -6.1159e-01, -5.0091e-01,  8.3182e-01, -4.9736e-01,\\n\",\n      \"           3.3217e-01, -2.1184e-01,  8.8089e-01,  7.3042e-01, -3.0091e-01,\\n\",\n      \"          -8.4643e-01, -1.7723e-01,  3.9327e-01,  3.5607e-01, -3.6149e-01,\\n\",\n      \"          -6.4001e-01,  2.5142e-01,  4.7756e-01, -1.8219e-01,  1.9411e-01,\\n\",\n      \"           8.4554e-01, -4.0670e-01,  2.2843e-01, -2.8213e-02, -1.6706e-01,\\n\",\n      \"           8.4338e-02, -6.9243e-01,  6.5162e-01,  2.2620e-01, -2.4377e-01,\\n\",\n      \"           6.3091e-01, -9.2143e-01, -5.2339e-01,  3.0346e-01, -6.8120e-01,\\n\",\n      \"           3.0847e-01, -3.0962e-01,  8.6166e-02,  5.2663e-01,  7.8582e-01,\\n\",\n      \"          -4.4179e-01,  7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\\n\",\n      \"           5.9648e-02, -8.9259e-01,  7.4582e-01,  6.0832e-01,  4.5425e-01,\\n\",\n      \"          -7.7402e-01,  7.1262e-03,  5.1430e-01, -7.4709e-01],\\n\",\n      \"         [ 1.0309e-01,  1.4890e-01,  2.3418e-01,  5.6161e-01, -4.5344e-01,\\n\",\n      \"          -3.7399e-02, -2.9632e-01, -7.8586e-01,  4.6773e-01,  2.3163e-01,\\n\",\n      \"           1.4635e-01, -6.1039e-01, -4.2175e-01,  2.9848e-02, -2.7098e-01,\\n\",\n      \"           5.8869e-01,  3.3047e-01,  3.8213e-01,  5.6308e-01, -7.1158e-01,\\n\",\n      \"          -4.7782e-01, -2.6972e-01,  3.1826e-01,  3.0689e-01,  2.0002e-01,\\n\",\n      \"          -6.3196e-01,  6.7574e-01,  1.0718e-01, -3.5589e-01, -2.2234e-01,\\n\",\n      \"           6.5694e-01, -4.6705e-02,  4.4457e-01,  3.8695e-01, -4.0593e-01,\\n\",\n      \"          -1.4013e-01, -7.6718e-01,  5.5516e-01,  1.2624e-01, -1.6417e-01,\\n\",\n      \"          -2.5965e-01, -6.6241e-01, -5.8782e-01,  5.3524e-01,  1.1498e-01,\\n\",\n      \"           3.5718e-01,  2.6810e-02,  3.1688e-01,  5.0246e-01,  7.2960e-01,\\n\",\n      \"          -1.6614e-01,  2.5272e-01,  1.4311e-01, -5.7957e-01, -2.1543e-01,\\n\",\n      \"           1.1138e-01, -6.8110e-01,  3.2205e-01,  5.9080e-01,  6.2253e-01,\\n\",\n      \"          -1.1579e-01, -5.8518e-02,  5.1007e-01, -6.3510e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.3295e-01,  8.9806e-01,  1.3076e-01,  3.5989e-01, -1.5338e-01,\\n\",\n      \"          -7.3023e-01, -8.8205e-01, -7.8767e-01,  7.6649e-01,  2.6182e-01,\\n\",\n      \"          -7.9418e-02, -7.0422e-01, -5.5216e-01,  9.3353e-01, -6.1393e-01,\\n\",\n      \"           1.6090e-01, -4.1725e-01,  9.4148e-01,  8.8216e-01, -1.2415e-01,\\n\",\n      \"          -9.2694e-01, -2.1225e-01,  3.8735e-01,  3.5587e-01, -5.2650e-01,\\n\",\n      \"          -5.9547e-01,  3.4167e-03,  6.6310e-01, -1.2849e-01,  2.4384e-01,\\n\",\n      \"           8.9664e-01, -5.5139e-01,  3.2991e-02, -1.9388e-01, -2.2145e-03,\\n\",\n      \"           1.8390e-01, -6.3102e-01,  6.6637e-01,  2.8547e-01, -2.0640e-01,\\n\",\n      \"           7.5508e-01, -9.5772e-01, -4.9472e-01,  1.9963e-01, -8.3145e-01,\\n\",\n      \"           2.6752e-01, -3.2867e-01, -8.0532e-02,  5.5949e-01,  8.5466e-01,\\n\",\n      \"          -6.6808e-01,  7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\\n\",\n      \"           9.2077e-02, -9.4609e-01,  8.4297e-01,  6.4095e-01,  4.2260e-01,\\n\",\n      \"          -8.5386e-01,  1.3420e-01,  4.6493e-01, -7.8761e-01],\\n\",\n      \"         [-4.0157e-01,  7.7822e-01,  1.5185e-01,  4.5991e-01, -2.9712e-01,\\n\",\n      \"          -6.5423e-01, -7.5150e-01, -8.0209e-01,  6.6695e-01,  2.9053e-01,\\n\",\n      \"          -6.2758e-02, -7.0725e-01, -4.9634e-01,  7.8107e-01, -5.0621e-01,\\n\",\n      \"           3.7759e-01, -2.7325e-01,  8.8842e-01,  8.2682e-01, -3.1178e-01,\\n\",\n      \"          -8.5566e-01, -2.9528e-01,  3.2213e-01,  3.4162e-01, -3.0355e-01,\\n\",\n      \"          -5.9389e-01,  3.5483e-01,  4.5676e-01, -1.7409e-01,  2.1121e-01,\\n\",\n      \"           8.4332e-01, -3.1843e-01,  1.7427e-01,  3.4608e-02, -1.8790e-01,\\n\",\n      \"           5.4708e-02, -7.1884e-01,  6.1022e-01,  2.1457e-01, -1.4149e-01,\\n\",\n      \"           6.2510e-01, -9.3106e-01, -5.6068e-01,  3.8099e-01, -6.8192e-01,\\n\",\n      \"           3.3177e-01, -1.8218e-01,  6.8974e-02,  5.4749e-01,  8.4259e-01,\\n\",\n      \"          -5.1681e-01,  7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\\n\",\n      \"           1.3590e-01, -9.1580e-01,  7.2868e-01,  6.2468e-01,  3.9947e-01,\\n\",\n      \"          -7.5519e-01,  1.6911e-02,  4.8992e-01, -7.2295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-8.2138e-01,  9.1111e-01,  4.6997e-02,  2.4762e-01, -3.9914e-02,\\n\",\n      \"          -7.1967e-01, -9.0576e-01, -7.9947e-01,  8.0798e-01,  2.3534e-01,\\n\",\n      \"          -6.0936e-02, -7.4290e-01, -5.8363e-01,  9.5139e-01, -6.7749e-01,\\n\",\n      \"           2.1059e-02, -4.9246e-01,  9.4772e-01,  9.3094e-01, -3.5459e-02,\\n\",\n      \"          -9.4027e-01, -2.4467e-01,  3.8255e-01,  3.4837e-01, -5.9900e-01,\\n\",\n      \"          -5.5247e-01, -1.7942e-01,  7.5872e-01, -9.8738e-02,  2.1996e-01,\\n\",\n      \"           9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01,  1.3646e-01,\\n\",\n      \"           2.4945e-01, -5.7759e-01,  6.7082e-01,  3.2138e-01, -1.7692e-01,\\n\",\n      \"           7.5860e-01, -9.6094e-01, -4.4573e-01,  1.0738e-01, -8.5018e-01,\\n\",\n      \"           2.2871e-01, -3.3403e-01, -2.0607e-01,  5.8237e-01,  8.7589e-01,\\n\",\n      \"          -7.6794e-01,  8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\\n\",\n      \"           1.1904e-01, -9.5598e-01,  8.7078e-01,  6.6721e-01,  4.1586e-01,\\n\",\n      \"          -8.7196e-01,  1.8279e-01,  4.1627e-01, -8.1426e-01],\\n\",\n      \"         [-6.7484e-01,  8.9251e-01,  7.1709e-02,  3.4437e-01, -1.6517e-01,\\n\",\n      \"          -7.1140e-01, -8.6538e-01, -8.0934e-01,  7.5987e-01,  2.7822e-01,\\n\",\n      \"          -8.6837e-02, -7.4919e-01, -5.5023e-01,  9.2409e-01, -6.1562e-01,\\n\",\n      \"           1.9981e-01, -4.5086e-01,  9.4142e-01,  9.1322e-01, -1.2868e-01,\\n\",\n      \"          -9.2935e-01, -3.2165e-01,  3.2718e-01,  3.4869e-01, -5.0915e-01,\\n\",\n      \"          -5.5380e-01,  7.4805e-02,  6.5267e-01, -1.2531e-01,  2.6391e-01,\\n\",\n      \"           8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\\n\",\n      \"           1.6423e-01, -6.5370e-01,  6.3765e-01,  2.7780e-01, -1.1735e-01,\\n\",\n      \"           7.5169e-01, -9.5978e-01, -5.0727e-01,  2.6838e-01, -8.2897e-01,\\n\",\n      \"           2.8772e-01, -2.4363e-01, -9.4374e-02,  5.7713e-01,  8.8612e-01,\\n\",\n      \"          -6.9917e-01,  7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\\n\",\n      \"           1.5778e-01, -9.5314e-01,  8.3813e-01,  6.5658e-01,  4.0131e-01,\\n\",\n      \"          -8.4993e-01,  1.4095e-01,  4.5086e-01, -7.6913e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([5, 4])\\n\",\n      \"dec_state: tensor([[[-3.2126e-01,  9.0479e-01, -3.2907e-01,  8.4283e-01, -2.1811e-02,\\n\",\n      \"          -6.7541e-01, -6.6420e-01, -6.8999e-01, -5.9730e-01, -1.7057e-02,\\n\",\n      \"           2.1580e-01, -6.4880e-01,  1.0315e-01,  9.0245e-01, -8.2843e-01,\\n\",\n      \"          -7.6314e-01,  4.4724e-01,  3.3793e-01, -6.7157e-04,  7.0093e-01,\\n\",\n      \"           8.1839e-01, -8.4953e-01,  4.5235e-01,  8.1908e-01, -1.3366e-01,\\n\",\n      \"          -1.2156e-01,  5.1589e-02,  7.4547e-03, -6.6910e-01,  4.0933e-01,\\n\",\n      \"          -2.0464e-01,  8.3119e-01,  7.6107e-01,  6.3430e-01, -6.6145e-01,\\n\",\n      \"          -5.9826e-01,  5.2997e-01, -4.0791e-01,  7.0485e-01,  5.0010e-01,\\n\",\n      \"          -7.3085e-01, -2.1353e-02,  3.6654e-01,  8.8989e-02, -2.4388e-01,\\n\",\n      \"          -8.1770e-02, -4.0816e-01, -1.6085e-01,  2.3457e-01,  6.4654e-01,\\n\",\n      \"          -3.1494e-01,  7.2087e-01,  3.4973e-02, -6.9297e-01, -6.8777e-01,\\n\",\n      \"          -3.1657e-02, -3.2231e-01,  8.6502e-01,  1.0194e-01, -7.7332e-01,\\n\",\n      \"          -6.8654e-01,  7.4251e-01, -6.9232e-01,  5.5781e-01],\\n\",\n      \"         [-2.9801e-02,  4.1288e-01, -2.8246e-01,  7.0448e-01, -1.7863e-01,\\n\",\n      \"          -2.7976e-01, -4.2516e-01,  3.0378e-01,  1.1669e-01, -7.2774e-01,\\n\",\n      \"          -4.7068e-01, -3.4221e-01, -4.1732e-02,  4.7584e-01, -5.9931e-01,\\n\",\n      \"           9.5673e-02,  3.0538e-01,  5.8225e-01, -1.4045e-01,  6.2028e-01,\\n\",\n      \"           1.1573e-01, -4.1269e-01,  1.0898e-01,  5.5439e-01,  3.2796e-01,\\n\",\n      \"          -7.4124e-01,  3.7080e-01,  2.1203e-01, -5.5728e-01,  3.0933e-02,\\n\",\n      \"          -5.0408e-01,  1.0070e-02,  3.4085e-01,  5.0769e-01, -6.1572e-02,\\n\",\n      \"           1.9763e-01,  5.8852e-02,  1.9028e-02, -1.2573e-01,  3.0112e-01,\\n\",\n      \"           6.5239e-02, -2.7908e-01,  1.4922e-01,  1.0424e-01,  1.2584e-01,\\n\",\n      \"          -1.1709e-01,  1.4603e-01,  4.9829e-01,  2.8787e-01,  6.9469e-01,\\n\",\n      \"           9.8223e-02,  4.5809e-01, -7.0812e-01,  9.8694e-02, -2.0518e-01,\\n\",\n      \"           3.1097e-01, -1.0797e-01, -2.7622e-01, -5.2323e-01,  1.6423e-01,\\n\",\n      \"          -5.4509e-01,  5.6389e-01, -2.4477e-01, -5.4765e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.1876e-02,  2.0449e-01,  1.2946e-01,  3.8957e-01, -2.8742e-01,\\n\",\n      \"           1.7324e-01,  4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\\n\",\n      \"           3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02,  3.8296e-01,\\n\",\n      \"          -2.4677e-01,  5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\\n\",\n      \"          -3.5863e-01, -7.6301e-02,  5.3976e-01,  1.8053e-01, -4.6039e-01,\\n\",\n      \"          -4.0647e-01, -9.8147e-02,  5.4672e-01, -8.9772e-02,  4.0746e-02,\\n\",\n      \"           1.1188e-01,  4.1362e-01, -5.6949e-01,  5.2939e-01,  1.5917e-01,\\n\",\n      \"           9.9399e-02, -3.4445e-01,  6.2491e-01, -4.4808e-01,  2.7106e-01,\\n\",\n      \"          -1.6560e-01,  2.6980e-01, -4.7111e-01,  7.4357e-03,  1.1016e-01,\\n\",\n      \"          -2.3606e-01, -3.4845e-01,  1.5072e-01, -3.7065e-02,  3.1512e-01,\\n\",\n      \"           2.5581e-01,  3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\\n\",\n      \"          -1.6842e-01,  2.2732e-02,  3.7792e-01, -1.1966e-01,  9.9072e-02,\\n\",\n      \"          -3.9988e-01,  3.5676e-01,  4.3146e-01, -3.5387e-01],\\n\",\n      \"         [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\\n\",\n      \"           7.9412e-02,  1.8133e-02,  1.2927e-01, -1.6136e-01, -1.5331e-01,\\n\",\n      \"          -8.0777e-02, -1.3801e-01, -4.0392e-01,  3.0119e-01,  1.1731e-01,\\n\",\n      \"          -5.5234e-01,  2.8495e-01,  1.8620e-01, -7.8735e-02, -5.5452e-01,\\n\",\n      \"          -5.3230e-01, -4.6117e-02,  1.0367e-01, -1.2489e-01, -4.1837e-02,\\n\",\n      \"           3.4538e-02, -2.5756e-02,  1.7873e-01,  1.5026e-02, -1.0708e-01,\\n\",\n      \"          -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\\n\",\n      \"          -1.0795e-01, -1.9033e-01,  6.2986e-02, -8.8741e-02, -3.5847e-01,\\n\",\n      \"           1.6159e-01,  6.1150e-01, -3.3382e-02,  9.0885e-02, -5.4511e-01,\\n\",\n      \"          -2.8689e-01,  3.4493e-01, -7.5644e-02, -6.3455e-03,  3.7202e-01,\\n\",\n      \"           1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\\n\",\n      \"           2.6133e-02, -3.4519e-01,  1.9728e-01,  5.4546e-02, -3.1128e-01,\\n\",\n      \"           3.1239e-01,  2.0924e-01,  2.3193e-01, -2.8919e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.2365e-01,  1.3569e-01,  2.7882e-01,  5.3593e-01, -2.3814e-03,\\n\",\n      \"          -4.0386e-02, -4.1100e-01,  3.4883e-02, -1.3455e-01, -3.0311e-01,\\n\",\n      \"           4.1851e-01,  1.5324e-01, -3.9539e-01,  3.2939e-01,  2.9012e-01,\\n\",\n      \"          -2.2305e-01,  2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\\n\",\n      \"          -5.6430e-01,  1.4938e-01,  5.3304e-01,  3.3561e-01, -5.6758e-01,\\n\",\n      \"          -3.1424e-01, -7.4645e-02,  1.6243e-01,  1.7337e-01, -4.2843e-02,\\n\",\n      \"           1.9555e-01, -7.0186e-02,  4.5234e-02, -2.6768e-02,  6.7001e-02,\\n\",\n      \"           1.4401e-01, -5.8669e-01,  6.6726e-01, -9.7634e-02, -4.4069e-01,\\n\",\n      \"           1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01,  8.5537e-02,\\n\",\n      \"          -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01,  3.5808e-01,\\n\",\n      \"           2.4732e-01,  3.4604e-01,  1.8691e-01, -5.2340e-01, -7.8705e-02,\\n\",\n      \"          -3.5208e-01, -3.3275e-01,  3.2585e-01, -2.7377e-01,  4.6864e-01,\\n\",\n      \"          -4.8893e-01,  4.7856e-02,  4.0918e-01, -3.2458e-01],\\n\",\n      \"         [ 2.9272e-01, -2.2613e-01, -3.9943e-01,  7.3033e-01, -1.5350e-01,\\n\",\n      \"           6.4352e-02,  2.0583e-01,  4.9423e-01,  2.8296e-01, -3.0972e-01,\\n\",\n      \"          -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01,  4.3754e-01,\\n\",\n      \"           1.9655e-02,  3.1482e-01,  3.4366e-01,  1.3772e-01, -4.9082e-01,\\n\",\n      \"          -5.8955e-01,  5.5178e-02,  2.8124e-01,  2.5237e-01,  2.1010e-01,\\n\",\n      \"          -1.4519e-01, -3.1231e-02, -4.5927e-02,  8.4576e-02, -2.2813e-01,\\n\",\n      \"          -1.0999e-01, -4.7251e-02,  3.7033e-01,  3.2943e-01, -1.4418e-03,\\n\",\n      \"           9.7710e-02, -5.1259e-01,  8.1932e-01,  1.9363e-01,  2.2118e-01,\\n\",\n      \"           1.5377e-01,  5.8502e-01,  2.8674e-02, -1.4168e-01, -3.3884e-01,\\n\",\n      \"          -1.3351e-01,  2.3175e-01, -5.4281e-01,  1.1601e-01,  6.1183e-01,\\n\",\n      \"          -4.5140e-02, -2.5237e-01,  2.3752e-01, -5.1164e-01, -3.1370e-01,\\n\",\n      \"          -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01,  4.5315e-01,\\n\",\n      \"          -3.8700e-01, -3.3658e-01,  2.4828e-03, -1.1722e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4517e-02,  5.1353e-01,  2.7537e-01,  3.2463e-01, -6.7576e-02,\\n\",\n      \"          -2.0490e-01, -4.6915e-01,  1.5765e-01,  4.4066e-01,  2.8679e-01,\\n\",\n      \"           4.1518e-01, -4.7293e-01, -3.3223e-01,  9.0766e-02,  2.6712e-01,\\n\",\n      \"           1.4399e-01,  4.4340e-01, -4.1589e-01,  6.3286e-02, -6.5724e-01,\\n\",\n      \"          -9.8731e-02,  1.4927e-01,  2.3330e-01,  3.4253e-01, -8.3711e-02,\\n\",\n      \"          -4.2961e-02, -6.9909e-02,  9.9444e-02,  1.9790e-01, -1.3862e-01,\\n\",\n      \"           3.4126e-01, -4.7026e-01, -1.3669e-03,  3.1917e-01,  8.7192e-02,\\n\",\n      \"           1.7769e-01, -2.6164e-01,  5.8675e-01, -3.7114e-01, -4.1631e-01,\\n\",\n      \"          -9.7841e-02,  2.1348e-01, -7.5500e-03, -1.8236e-02,  1.9261e-03,\\n\",\n      \"           1.4379e-01, -6.9110e-02,  9.1750e-02,  1.8012e-01,  3.5871e-01,\\n\",\n      \"           1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\\n\",\n      \"          -3.6182e-01, -3.7487e-01,  2.4039e-01, -4.6122e-01,  6.9476e-01,\\n\",\n      \"          -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\\n\",\n      \"         [ 5.1123e-01, -4.0266e-01, -2.9377e-01,  4.1843e-01, -2.3979e-01,\\n\",\n      \"           2.6047e-02,  2.0101e-01, -1.8941e-01,  1.0405e-02, -1.2233e-01,\\n\",\n      \"           7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01,  3.8687e-01,\\n\",\n      \"          -7.9252e-04, -9.5511e-02,  2.9611e-01,  1.8304e-01, -6.1154e-01,\\n\",\n      \"          -6.3995e-01, -6.1087e-02,  2.2301e-01,  2.3835e-01, -9.4064e-03,\\n\",\n      \"          -3.1463e-02,  5.0872e-01,  5.2994e-02,  1.4707e-01, -1.3801e-01,\\n\",\n      \"           1.6804e-01,  2.6023e-01, -1.6039e-03,  3.9684e-01, -8.6695e-02,\\n\",\n      \"          -1.2471e-01, -6.2766e-01,  5.4049e-01, -8.3060e-02, -9.4193e-02,\\n\",\n      \"           2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\\n\",\n      \"           1.0937e-01,  2.8545e-01, -5.2316e-01, -1.7083e-01,  5.1631e-01,\\n\",\n      \"          -2.0713e-01,  1.1943e-02,  1.9117e-01, -9.0481e-02, -1.7545e-01,\\n\",\n      \"           1.4447e-01, -6.1310e-01,  2.4947e-01, -3.2512e-01, -1.1674e-01,\\n\",\n      \"          -1.5464e-01,  8.5949e-02,  1.9173e-01, -1.8634e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.4599e-01,  3.4493e-01,  3.5540e-01,  5.9247e-01, -4.1207e-01,\\n\",\n      \"          -1.6579e-01, -4.8020e-01, -7.3714e-01,  4.8738e-01,  2.0807e-01,\\n\",\n      \"           3.0116e-01, -4.4130e-01, -4.2788e-01,  2.6977e-01, -2.3329e-01,\\n\",\n      \"           5.3776e-01,  4.9697e-01,  2.9906e-01,  2.7902e-01, -6.9022e-01,\\n\",\n      \"          -4.0519e-01, -1.4059e-01,  4.0009e-01,  3.3875e-01,  3.8020e-02,\\n\",\n      \"          -6.8647e-01,  5.3905e-01,  1.5797e-01, -3.5341e-01, -2.1889e-01,\\n\",\n      \"           6.5958e-01, -1.9601e-01,  5.0115e-01,  2.6124e-01, -3.4608e-01,\\n\",\n      \"          -8.9277e-02, -7.4167e-01,  6.1062e-01,  1.4346e-01, -2.8655e-01,\\n\",\n      \"          -2.5671e-01, -5.9121e-01, -5.0235e-01,  4.6546e-01,  1.5253e-01,\\n\",\n      \"           3.3492e-01, -1.8718e-01,  3.2432e-01,  4.7797e-01,  6.2427e-01,\\n\",\n      \"           1.1437e-02,  3.0348e-01,  1.3757e-01, -7.2873e-01, -2.9603e-01,\\n\",\n      \"           1.8765e-02, -5.9862e-01,  3.6728e-01,  5.7481e-01,  7.0923e-01,\\n\",\n      \"          -2.4748e-01, -9.4674e-02,  5.3589e-01, -6.6785e-01],\\n\",\n      \"         [ 3.1676e-01,  2.6778e-01,  6.5309e-02,  2.8887e-01, -1.7269e-01,\\n\",\n      \"          -4.3300e-02, -1.5170e-01,  4.5494e-03,  4.3829e-01,  3.1757e-01,\\n\",\n      \"           1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01,  2.1333e-01,\\n\",\n      \"           2.4054e-01,  2.3956e-01, -2.2792e-02,  4.7846e-01, -6.9334e-01,\\n\",\n      \"          -2.4033e-01, -3.7174e-02,  2.3895e-02,  2.7962e-01,  2.3990e-01,\\n\",\n      \"           1.0133e-01,  3.8711e-01,  8.3111e-03,  1.7434e-01, -1.9475e-01,\\n\",\n      \"           3.4768e-01, -2.9952e-01, -8.9722e-02,  4.9720e-01,  6.0897e-02,\\n\",\n      \"           4.2339e-02, -2.8452e-01,  5.0351e-01, -3.4962e-01, -2.3853e-01,\\n\",\n      \"          -8.4488e-02,  7.0700e-02, -1.5170e-01,  1.3667e-01, -4.8259e-02,\\n\",\n      \"           2.4410e-01,  3.2302e-01, -4.5496e-02,  2.0975e-01,  5.4169e-01,\\n\",\n      \"          -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\\n\",\n      \"          -2.2768e-01, -5.6263e-01,  1.5331e-01, -4.4642e-01,  5.5733e-01,\\n\",\n      \"          -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.3190e-01,  8.1577e-01,  2.3800e-01,  4.8075e-01, -2.7762e-01,\\n\",\n      \"          -7.0727e-01, -8.0229e-01, -7.6923e-01,  6.7816e-01,  2.7397e-01,\\n\",\n      \"          -1.8307e-02, -6.1159e-01, -5.0091e-01,  8.3182e-01, -4.9736e-01,\\n\",\n      \"           3.3217e-01, -2.1184e-01,  8.8089e-01,  7.3042e-01, -3.0091e-01,\\n\",\n      \"          -8.4643e-01, -1.7723e-01,  3.9327e-01,  3.5607e-01, -3.6149e-01,\\n\",\n      \"          -6.4001e-01,  2.5142e-01,  4.7756e-01, -1.8219e-01,  1.9411e-01,\\n\",\n      \"           8.4554e-01, -4.0670e-01,  2.2843e-01, -2.8213e-02, -1.6706e-01,\\n\",\n      \"           8.4338e-02, -6.9243e-01,  6.5162e-01,  2.2620e-01, -2.4377e-01,\\n\",\n      \"           6.3091e-01, -9.2143e-01, -5.2339e-01,  3.0346e-01, -6.8120e-01,\\n\",\n      \"           3.0847e-01, -3.0962e-01,  8.6166e-02,  5.2663e-01,  7.8582e-01,\\n\",\n      \"          -4.4179e-01,  7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\\n\",\n      \"           5.9648e-02, -8.9259e-01,  7.4582e-01,  6.0832e-01,  4.5425e-01,\\n\",\n      \"          -7.7402e-01,  7.1262e-03,  5.1430e-01, -7.4709e-01],\\n\",\n      \"         [ 1.0309e-01,  1.4890e-01,  2.3418e-01,  5.6161e-01, -4.5344e-01,\\n\",\n      \"          -3.7399e-02, -2.9632e-01, -7.8586e-01,  4.6773e-01,  2.3163e-01,\\n\",\n      \"           1.4635e-01, -6.1039e-01, -4.2175e-01,  2.9848e-02, -2.7098e-01,\\n\",\n      \"           5.8869e-01,  3.3047e-01,  3.8213e-01,  5.6308e-01, -7.1158e-01,\\n\",\n      \"          -4.7782e-01, -2.6972e-01,  3.1826e-01,  3.0689e-01,  2.0002e-01,\\n\",\n      \"          -6.3196e-01,  6.7574e-01,  1.0718e-01, -3.5589e-01, -2.2234e-01,\\n\",\n      \"           6.5694e-01, -4.6705e-02,  4.4457e-01,  3.8695e-01, -4.0593e-01,\\n\",\n      \"          -1.4013e-01, -7.6718e-01,  5.5516e-01,  1.2624e-01, -1.6417e-01,\\n\",\n      \"          -2.5965e-01, -6.6241e-01, -5.8782e-01,  5.3524e-01,  1.1498e-01,\\n\",\n      \"           3.5718e-01,  2.6810e-02,  3.1688e-01,  5.0246e-01,  7.2960e-01,\\n\",\n      \"          -1.6614e-01,  2.5272e-01,  1.4311e-01, -5.7957e-01, -2.1543e-01,\\n\",\n      \"           1.1138e-01, -6.8110e-01,  3.2205e-01,  5.9080e-01,  6.2253e-01,\\n\",\n      \"          -1.1579e-01, -5.8518e-02,  5.1007e-01, -6.3510e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.3295e-01,  8.9806e-01,  1.3076e-01,  3.5989e-01, -1.5338e-01,\\n\",\n      \"          -7.3023e-01, -8.8205e-01, -7.8767e-01,  7.6649e-01,  2.6182e-01,\\n\",\n      \"          -7.9418e-02, -7.0422e-01, -5.5216e-01,  9.3353e-01, -6.1393e-01,\\n\",\n      \"           1.6090e-01, -4.1725e-01,  9.4148e-01,  8.8216e-01, -1.2415e-01,\\n\",\n      \"          -9.2694e-01, -2.1225e-01,  3.8735e-01,  3.5587e-01, -5.2650e-01,\\n\",\n      \"          -5.9547e-01,  3.4167e-03,  6.6310e-01, -1.2849e-01,  2.4384e-01,\\n\",\n      \"           8.9664e-01, -5.5139e-01,  3.2991e-02, -1.9388e-01, -2.2145e-03,\\n\",\n      \"           1.8390e-01, -6.3102e-01,  6.6637e-01,  2.8547e-01, -2.0640e-01,\\n\",\n      \"           7.5508e-01, -9.5772e-01, -4.9472e-01,  1.9963e-01, -8.3145e-01,\\n\",\n      \"           2.6752e-01, -3.2867e-01, -8.0532e-02,  5.5949e-01,  8.5466e-01,\\n\",\n      \"          -6.6808e-01,  7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\\n\",\n      \"           9.2077e-02, -9.4609e-01,  8.4297e-01,  6.4095e-01,  4.2260e-01,\\n\",\n      \"          -8.5386e-01,  1.3420e-01,  4.6493e-01, -7.8761e-01],\\n\",\n      \"         [-4.0157e-01,  7.7822e-01,  1.5185e-01,  4.5991e-01, -2.9712e-01,\\n\",\n      \"          -6.5423e-01, -7.5150e-01, -8.0209e-01,  6.6695e-01,  2.9053e-01,\\n\",\n      \"          -6.2758e-02, -7.0725e-01, -4.9634e-01,  7.8107e-01, -5.0621e-01,\\n\",\n      \"           3.7759e-01, -2.7325e-01,  8.8842e-01,  8.2682e-01, -3.1178e-01,\\n\",\n      \"          -8.5566e-01, -2.9528e-01,  3.2213e-01,  3.4162e-01, -3.0355e-01,\\n\",\n      \"          -5.9389e-01,  3.5483e-01,  4.5676e-01, -1.7409e-01,  2.1121e-01,\\n\",\n      \"           8.4332e-01, -3.1843e-01,  1.7427e-01,  3.4608e-02, -1.8790e-01,\\n\",\n      \"           5.4708e-02, -7.1884e-01,  6.1022e-01,  2.1457e-01, -1.4149e-01,\\n\",\n      \"           6.2510e-01, -9.3106e-01, -5.6068e-01,  3.8099e-01, -6.8192e-01,\\n\",\n      \"           3.3177e-01, -1.8218e-01,  6.8974e-02,  5.4749e-01,  8.4259e-01,\\n\",\n      \"          -5.1681e-01,  7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\\n\",\n      \"           1.3590e-01, -9.1580e-01,  7.2868e-01,  6.2468e-01,  3.9947e-01,\\n\",\n      \"          -7.5519e-01,  1.6911e-02,  4.8992e-01, -7.2295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-8.2138e-01,  9.1111e-01,  4.6997e-02,  2.4762e-01, -3.9914e-02,\\n\",\n      \"          -7.1967e-01, -9.0576e-01, -7.9947e-01,  8.0798e-01,  2.3534e-01,\\n\",\n      \"          -6.0936e-02, -7.4290e-01, -5.8363e-01,  9.5139e-01, -6.7749e-01,\\n\",\n      \"           2.1059e-02, -4.9246e-01,  9.4772e-01,  9.3094e-01, -3.5459e-02,\\n\",\n      \"          -9.4027e-01, -2.4467e-01,  3.8255e-01,  3.4837e-01, -5.9900e-01,\\n\",\n      \"          -5.5247e-01, -1.7942e-01,  7.5872e-01, -9.8738e-02,  2.1996e-01,\\n\",\n      \"           9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01,  1.3646e-01,\\n\",\n      \"           2.4945e-01, -5.7759e-01,  6.7082e-01,  3.2138e-01, -1.7692e-01,\\n\",\n      \"           7.5860e-01, -9.6094e-01, -4.4573e-01,  1.0738e-01, -8.5018e-01,\\n\",\n      \"           2.2871e-01, -3.3403e-01, -2.0607e-01,  5.8237e-01,  8.7589e-01,\\n\",\n      \"          -7.6794e-01,  8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\\n\",\n      \"           1.1904e-01, -9.5598e-01,  8.7078e-01,  6.6721e-01,  4.1586e-01,\\n\",\n      \"          -8.7196e-01,  1.8279e-01,  4.1627e-01, -8.1426e-01],\\n\",\n      \"         [-6.7484e-01,  8.9251e-01,  7.1709e-02,  3.4437e-01, -1.6517e-01,\\n\",\n      \"          -7.1140e-01, -8.6538e-01, -8.0934e-01,  7.5987e-01,  2.7822e-01,\\n\",\n      \"          -8.6837e-02, -7.4919e-01, -5.5023e-01,  9.2409e-01, -6.1562e-01,\\n\",\n      \"           1.9981e-01, -4.5086e-01,  9.4142e-01,  9.1322e-01, -1.2868e-01,\\n\",\n      \"          -9.2935e-01, -3.2165e-01,  3.2718e-01,  3.4869e-01, -5.0915e-01,\\n\",\n      \"          -5.5380e-01,  7.4805e-02,  6.5267e-01, -1.2531e-01,  2.6391e-01,\\n\",\n      \"           8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\\n\",\n      \"           1.6423e-01, -6.5370e-01,  6.3765e-01,  2.7780e-01, -1.1735e-01,\\n\",\n      \"           7.5169e-01, -9.5978e-01, -5.0727e-01,  2.6838e-01, -8.2897e-01,\\n\",\n      \"           2.8772e-01, -2.4363e-01, -9.4374e-02,  5.7713e-01,  8.8612e-01,\\n\",\n      \"          -6.9917e-01,  7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\\n\",\n      \"           1.5778e-01, -9.5314e-01,  8.3813e-01,  6.5658e-01,  4.0131e-01,\\n\",\n      \"          -8.4993e-01,  1.4095e-01,  4.5086e-01, -7.6913e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([36, 27])\\n\",\n      \"dec_state: tensor([[[-0.3143,  0.8710, -0.5114,  0.9222, -0.0524, -0.5398, -0.4574,\\n\",\n      \"           0.0474, -0.7467, -0.3280,  0.1456, -0.4378, -0.3190,  0.6854,\\n\",\n      \"          -0.5919, -0.8004,  0.6810,  0.3592, -0.5673,  0.6039,  0.8170,\\n\",\n      \"          -0.7995,  0.1823,  0.8992,  0.3915, -0.2826, -0.1850, -0.3850,\\n\",\n      \"          -0.6336, -0.0401, -0.2507,  0.8559,  0.4929,  0.6458, -0.5816,\\n\",\n      \"          -0.8461,  0.6243,  0.1166,  0.2525,  0.3932, -0.6374, -0.2549,\\n\",\n      \"           0.1473, -0.1512, -0.3229,  0.0083, -0.3127,  0.3191, -0.0170,\\n\",\n      \"           0.6581, -0.2627,  0.5080, -0.0885, -0.2842, -0.5739,  0.0306,\\n\",\n      \"          -0.0275,  0.9056, -0.0064,  0.0730, -0.5402,  0.7215, -0.4586,\\n\",\n      \"          -0.0296],\\n\",\n      \"         [ 0.0795,  0.0262, -0.4945,  0.3522, -0.0880, -0.3765, -0.6832,\\n\",\n      \"          -0.0057,  0.3327, -0.4342, -0.8054,  0.1542,  0.1170,  0.5856,\\n\",\n      \"          -0.5941, -0.0746,  0.4327,  0.5505,  0.0323,  0.6277,  0.3384,\\n\",\n      \"          -0.2261, -0.2264,  0.6434,  0.0124, -0.6247, -0.0106, -0.1251,\\n\",\n      \"          -0.2800, -0.3021, -0.6639, -0.2086,  0.4391,  0.1723,  0.2482,\\n\",\n      \"           0.0640,  0.3318, -0.2893,  0.0413,  0.5932,  0.1892,  0.3261,\\n\",\n      \"           0.5104,  0.1047,  0.3009,  0.3429, -0.1249,  0.2680,  0.2987,\\n\",\n      \"           0.7436,  0.6435, -0.1224, -0.7309,  0.1020, -0.4057,  0.0686,\\n\",\n      \"          -0.0212, -0.0928,  0.0642,  0.2390, -0.4360,  0.3025, -0.3644,\\n\",\n      \"          -0.1321]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.1876e-02,  2.0449e-01,  1.2946e-01,  3.8957e-01, -2.8742e-01,\\n\",\n      \"           1.7324e-01,  4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\\n\",\n      \"           3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02,  3.8296e-01,\\n\",\n      \"          -2.4677e-01,  5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\\n\",\n      \"          -3.5863e-01, -7.6301e-02,  5.3976e-01,  1.8053e-01, -4.6039e-01,\\n\",\n      \"          -4.0647e-01, -9.8147e-02,  5.4672e-01, -8.9772e-02,  4.0746e-02,\\n\",\n      \"           1.1188e-01,  4.1362e-01, -5.6949e-01,  5.2939e-01,  1.5917e-01,\\n\",\n      \"           9.9399e-02, -3.4445e-01,  6.2491e-01, -4.4808e-01,  2.7106e-01,\\n\",\n      \"          -1.6560e-01,  2.6980e-01, -4.7111e-01,  7.4357e-03,  1.1016e-01,\\n\",\n      \"          -2.3606e-01, -3.4845e-01,  1.5072e-01, -3.7065e-02,  3.1512e-01,\\n\",\n      \"           2.5581e-01,  3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\\n\",\n      \"          -1.6842e-01,  2.2732e-02,  3.7792e-01, -1.1966e-01,  9.9072e-02,\\n\",\n      \"          -3.9988e-01,  3.5676e-01,  4.3146e-01, -3.5387e-01],\\n\",\n      \"         [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\\n\",\n      \"           7.9412e-02,  1.8133e-02,  1.2927e-01, -1.6136e-01, -1.5331e-01,\\n\",\n      \"          -8.0777e-02, -1.3801e-01, -4.0392e-01,  3.0119e-01,  1.1731e-01,\\n\",\n      \"          -5.5234e-01,  2.8495e-01,  1.8620e-01, -7.8735e-02, -5.5452e-01,\\n\",\n      \"          -5.3230e-01, -4.6117e-02,  1.0367e-01, -1.2489e-01, -4.1837e-02,\\n\",\n      \"           3.4538e-02, -2.5756e-02,  1.7873e-01,  1.5026e-02, -1.0708e-01,\\n\",\n      \"          -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\\n\",\n      \"          -1.0795e-01, -1.9033e-01,  6.2986e-02, -8.8741e-02, -3.5847e-01,\\n\",\n      \"           1.6159e-01,  6.1150e-01, -3.3382e-02,  9.0885e-02, -5.4511e-01,\\n\",\n      \"          -2.8689e-01,  3.4493e-01, -7.5644e-02, -6.3455e-03,  3.7202e-01,\\n\",\n      \"           1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\\n\",\n      \"           2.6133e-02, -3.4519e-01,  1.9728e-01,  5.4546e-02, -3.1128e-01,\\n\",\n      \"           3.1239e-01,  2.0924e-01,  2.3193e-01, -2.8919e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.2365e-01,  1.3569e-01,  2.7882e-01,  5.3593e-01, -2.3814e-03,\\n\",\n      \"          -4.0386e-02, -4.1100e-01,  3.4883e-02, -1.3455e-01, -3.0311e-01,\\n\",\n      \"           4.1851e-01,  1.5324e-01, -3.9539e-01,  3.2939e-01,  2.9012e-01,\\n\",\n      \"          -2.2305e-01,  2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\\n\",\n      \"          -5.6430e-01,  1.4938e-01,  5.3304e-01,  3.3561e-01, -5.6758e-01,\\n\",\n      \"          -3.1424e-01, -7.4645e-02,  1.6243e-01,  1.7337e-01, -4.2843e-02,\\n\",\n      \"           1.9555e-01, -7.0186e-02,  4.5234e-02, -2.6768e-02,  6.7001e-02,\\n\",\n      \"           1.4401e-01, -5.8669e-01,  6.6726e-01, -9.7634e-02, -4.4069e-01,\\n\",\n      \"           1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01,  8.5537e-02,\\n\",\n      \"          -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01,  3.5808e-01,\\n\",\n      \"           2.4732e-01,  3.4604e-01,  1.8691e-01, -5.2340e-01, -7.8705e-02,\\n\",\n      \"          -3.5208e-01, -3.3275e-01,  3.2585e-01, -2.7377e-01,  4.6864e-01,\\n\",\n      \"          -4.8893e-01,  4.7856e-02,  4.0918e-01, -3.2458e-01],\\n\",\n      \"         [ 2.9272e-01, -2.2613e-01, -3.9943e-01,  7.3033e-01, -1.5350e-01,\\n\",\n      \"           6.4352e-02,  2.0583e-01,  4.9423e-01,  2.8296e-01, -3.0972e-01,\\n\",\n      \"          -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01,  4.3754e-01,\\n\",\n      \"           1.9655e-02,  3.1482e-01,  3.4366e-01,  1.3772e-01, -4.9082e-01,\\n\",\n      \"          -5.8955e-01,  5.5178e-02,  2.8124e-01,  2.5237e-01,  2.1010e-01,\\n\",\n      \"          -1.4519e-01, -3.1231e-02, -4.5927e-02,  8.4576e-02, -2.2813e-01,\\n\",\n      \"          -1.0999e-01, -4.7251e-02,  3.7033e-01,  3.2943e-01, -1.4418e-03,\\n\",\n      \"           9.7710e-02, -5.1259e-01,  8.1932e-01,  1.9363e-01,  2.2118e-01,\\n\",\n      \"           1.5377e-01,  5.8502e-01,  2.8674e-02, -1.4168e-01, -3.3884e-01,\\n\",\n      \"          -1.3351e-01,  2.3175e-01, -5.4281e-01,  1.1601e-01,  6.1183e-01,\\n\",\n      \"          -4.5140e-02, -2.5237e-01,  2.3752e-01, -5.1164e-01, -3.1370e-01,\\n\",\n      \"          -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01,  4.5315e-01,\\n\",\n      \"          -3.8700e-01, -3.3658e-01,  2.4828e-03, -1.1722e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4517e-02,  5.1353e-01,  2.7537e-01,  3.2463e-01, -6.7576e-02,\\n\",\n      \"          -2.0490e-01, -4.6915e-01,  1.5765e-01,  4.4066e-01,  2.8679e-01,\\n\",\n      \"           4.1518e-01, -4.7293e-01, -3.3223e-01,  9.0766e-02,  2.6712e-01,\\n\",\n      \"           1.4399e-01,  4.4340e-01, -4.1589e-01,  6.3286e-02, -6.5724e-01,\\n\",\n      \"          -9.8731e-02,  1.4927e-01,  2.3330e-01,  3.4253e-01, -8.3711e-02,\\n\",\n      \"          -4.2961e-02, -6.9909e-02,  9.9444e-02,  1.9790e-01, -1.3862e-01,\\n\",\n      \"           3.4126e-01, -4.7026e-01, -1.3669e-03,  3.1917e-01,  8.7192e-02,\\n\",\n      \"           1.7769e-01, -2.6164e-01,  5.8675e-01, -3.7114e-01, -4.1631e-01,\\n\",\n      \"          -9.7841e-02,  2.1348e-01, -7.5500e-03, -1.8236e-02,  1.9261e-03,\\n\",\n      \"           1.4379e-01, -6.9110e-02,  9.1750e-02,  1.8012e-01,  3.5871e-01,\\n\",\n      \"           1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\\n\",\n      \"          -3.6182e-01, -3.7487e-01,  2.4039e-01, -4.6122e-01,  6.9476e-01,\\n\",\n      \"          -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\\n\",\n      \"         [ 5.1123e-01, -4.0266e-01, -2.9377e-01,  4.1843e-01, -2.3979e-01,\\n\",\n      \"           2.6047e-02,  2.0101e-01, -1.8941e-01,  1.0405e-02, -1.2233e-01,\\n\",\n      \"           7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01,  3.8687e-01,\\n\",\n      \"          -7.9252e-04, -9.5511e-02,  2.9611e-01,  1.8304e-01, -6.1154e-01,\\n\",\n      \"          -6.3995e-01, -6.1087e-02,  2.2301e-01,  2.3835e-01, -9.4064e-03,\\n\",\n      \"          -3.1463e-02,  5.0872e-01,  5.2994e-02,  1.4707e-01, -1.3801e-01,\\n\",\n      \"           1.6804e-01,  2.6023e-01, -1.6039e-03,  3.9684e-01, -8.6695e-02,\\n\",\n      \"          -1.2471e-01, -6.2766e-01,  5.4049e-01, -8.3060e-02, -9.4193e-02,\\n\",\n      \"           2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\\n\",\n      \"           1.0937e-01,  2.8545e-01, -5.2316e-01, -1.7083e-01,  5.1631e-01,\\n\",\n      \"          -2.0713e-01,  1.1943e-02,  1.9117e-01, -9.0481e-02, -1.7545e-01,\\n\",\n      \"           1.4447e-01, -6.1310e-01,  2.4947e-01, -3.2512e-01, -1.1674e-01,\\n\",\n      \"          -1.5464e-01,  8.5949e-02,  1.9173e-01, -1.8634e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.4599e-01,  3.4493e-01,  3.5540e-01,  5.9247e-01, -4.1207e-01,\\n\",\n      \"          -1.6579e-01, -4.8020e-01, -7.3714e-01,  4.8738e-01,  2.0807e-01,\\n\",\n      \"           3.0116e-01, -4.4130e-01, -4.2788e-01,  2.6977e-01, -2.3329e-01,\\n\",\n      \"           5.3776e-01,  4.9697e-01,  2.9906e-01,  2.7902e-01, -6.9022e-01,\\n\",\n      \"          -4.0519e-01, -1.4059e-01,  4.0009e-01,  3.3875e-01,  3.8020e-02,\\n\",\n      \"          -6.8647e-01,  5.3905e-01,  1.5797e-01, -3.5341e-01, -2.1889e-01,\\n\",\n      \"           6.5958e-01, -1.9601e-01,  5.0115e-01,  2.6124e-01, -3.4608e-01,\\n\",\n      \"          -8.9277e-02, -7.4167e-01,  6.1062e-01,  1.4346e-01, -2.8655e-01,\\n\",\n      \"          -2.5671e-01, -5.9121e-01, -5.0235e-01,  4.6546e-01,  1.5253e-01,\\n\",\n      \"           3.3492e-01, -1.8718e-01,  3.2432e-01,  4.7797e-01,  6.2427e-01,\\n\",\n      \"           1.1437e-02,  3.0348e-01,  1.3757e-01, -7.2873e-01, -2.9603e-01,\\n\",\n      \"           1.8765e-02, -5.9862e-01,  3.6728e-01,  5.7481e-01,  7.0923e-01,\\n\",\n      \"          -2.4748e-01, -9.4674e-02,  5.3589e-01, -6.6785e-01],\\n\",\n      \"         [ 3.1676e-01,  2.6778e-01,  6.5309e-02,  2.8887e-01, -1.7269e-01,\\n\",\n      \"          -4.3300e-02, -1.5170e-01,  4.5494e-03,  4.3829e-01,  3.1757e-01,\\n\",\n      \"           1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01,  2.1333e-01,\\n\",\n      \"           2.4054e-01,  2.3956e-01, -2.2792e-02,  4.7846e-01, -6.9334e-01,\\n\",\n      \"          -2.4033e-01, -3.7174e-02,  2.3895e-02,  2.7962e-01,  2.3990e-01,\\n\",\n      \"           1.0133e-01,  3.8711e-01,  8.3111e-03,  1.7434e-01, -1.9475e-01,\\n\",\n      \"           3.4768e-01, -2.9952e-01, -8.9722e-02,  4.9720e-01,  6.0897e-02,\\n\",\n      \"           4.2339e-02, -2.8452e-01,  5.0351e-01, -3.4962e-01, -2.3853e-01,\\n\",\n      \"          -8.4488e-02,  7.0700e-02, -1.5170e-01,  1.3667e-01, -4.8259e-02,\\n\",\n      \"           2.4410e-01,  3.2302e-01, -4.5496e-02,  2.0975e-01,  5.4169e-01,\\n\",\n      \"          -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\\n\",\n      \"          -2.2768e-01, -5.6263e-01,  1.5331e-01, -4.4642e-01,  5.5733e-01,\\n\",\n      \"          -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.3190e-01,  8.1577e-01,  2.3800e-01,  4.8075e-01, -2.7762e-01,\\n\",\n      \"          -7.0727e-01, -8.0229e-01, -7.6923e-01,  6.7816e-01,  2.7397e-01,\\n\",\n      \"          -1.8307e-02, -6.1159e-01, -5.0091e-01,  8.3182e-01, -4.9736e-01,\\n\",\n      \"           3.3217e-01, -2.1184e-01,  8.8089e-01,  7.3042e-01, -3.0091e-01,\\n\",\n      \"          -8.4643e-01, -1.7723e-01,  3.9327e-01,  3.5607e-01, -3.6149e-01,\\n\",\n      \"          -6.4001e-01,  2.5142e-01,  4.7756e-01, -1.8219e-01,  1.9411e-01,\\n\",\n      \"           8.4554e-01, -4.0670e-01,  2.2843e-01, -2.8213e-02, -1.6706e-01,\\n\",\n      \"           8.4338e-02, -6.9243e-01,  6.5162e-01,  2.2620e-01, -2.4377e-01,\\n\",\n      \"           6.3091e-01, -9.2143e-01, -5.2339e-01,  3.0346e-01, -6.8120e-01,\\n\",\n      \"           3.0847e-01, -3.0962e-01,  8.6166e-02,  5.2663e-01,  7.8582e-01,\\n\",\n      \"          -4.4179e-01,  7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\\n\",\n      \"           5.9648e-02, -8.9259e-01,  7.4582e-01,  6.0832e-01,  4.5425e-01,\\n\",\n      \"          -7.7402e-01,  7.1262e-03,  5.1430e-01, -7.4709e-01],\\n\",\n      \"         [ 1.0309e-01,  1.4890e-01,  2.3418e-01,  5.6161e-01, -4.5344e-01,\\n\",\n      \"          -3.7399e-02, -2.9632e-01, -7.8586e-01,  4.6773e-01,  2.3163e-01,\\n\",\n      \"           1.4635e-01, -6.1039e-01, -4.2175e-01,  2.9848e-02, -2.7098e-01,\\n\",\n      \"           5.8869e-01,  3.3047e-01,  3.8213e-01,  5.6308e-01, -7.1158e-01,\\n\",\n      \"          -4.7782e-01, -2.6972e-01,  3.1826e-01,  3.0689e-01,  2.0002e-01,\\n\",\n      \"          -6.3196e-01,  6.7574e-01,  1.0718e-01, -3.5589e-01, -2.2234e-01,\\n\",\n      \"           6.5694e-01, -4.6705e-02,  4.4457e-01,  3.8695e-01, -4.0593e-01,\\n\",\n      \"          -1.4013e-01, -7.6718e-01,  5.5516e-01,  1.2624e-01, -1.6417e-01,\\n\",\n      \"          -2.5965e-01, -6.6241e-01, -5.8782e-01,  5.3524e-01,  1.1498e-01,\\n\",\n      \"           3.5718e-01,  2.6810e-02,  3.1688e-01,  5.0246e-01,  7.2960e-01,\\n\",\n      \"          -1.6614e-01,  2.5272e-01,  1.4311e-01, -5.7957e-01, -2.1543e-01,\\n\",\n      \"           1.1138e-01, -6.8110e-01,  3.2205e-01,  5.9080e-01,  6.2253e-01,\\n\",\n      \"          -1.1579e-01, -5.8518e-02,  5.1007e-01, -6.3510e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.3295e-01,  8.9806e-01,  1.3076e-01,  3.5989e-01, -1.5338e-01,\\n\",\n      \"          -7.3023e-01, -8.8205e-01, -7.8767e-01,  7.6649e-01,  2.6182e-01,\\n\",\n      \"          -7.9418e-02, -7.0422e-01, -5.5216e-01,  9.3353e-01, -6.1393e-01,\\n\",\n      \"           1.6090e-01, -4.1725e-01,  9.4148e-01,  8.8216e-01, -1.2415e-01,\\n\",\n      \"          -9.2694e-01, -2.1225e-01,  3.8735e-01,  3.5587e-01, -5.2650e-01,\\n\",\n      \"          -5.9547e-01,  3.4167e-03,  6.6310e-01, -1.2849e-01,  2.4384e-01,\\n\",\n      \"           8.9664e-01, -5.5139e-01,  3.2991e-02, -1.9388e-01, -2.2145e-03,\\n\",\n      \"           1.8390e-01, -6.3102e-01,  6.6637e-01,  2.8547e-01, -2.0640e-01,\\n\",\n      \"           7.5508e-01, -9.5772e-01, -4.9472e-01,  1.9963e-01, -8.3145e-01,\\n\",\n      \"           2.6752e-01, -3.2867e-01, -8.0532e-02,  5.5949e-01,  8.5466e-01,\\n\",\n      \"          -6.6808e-01,  7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\\n\",\n      \"           9.2077e-02, -9.4609e-01,  8.4297e-01,  6.4095e-01,  4.2260e-01,\\n\",\n      \"          -8.5386e-01,  1.3420e-01,  4.6493e-01, -7.8761e-01],\\n\",\n      \"         [-4.0157e-01,  7.7822e-01,  1.5185e-01,  4.5991e-01, -2.9712e-01,\\n\",\n      \"          -6.5423e-01, -7.5150e-01, -8.0209e-01,  6.6695e-01,  2.9053e-01,\\n\",\n      \"          -6.2758e-02, -7.0725e-01, -4.9634e-01,  7.8107e-01, -5.0621e-01,\\n\",\n      \"           3.7759e-01, -2.7325e-01,  8.8842e-01,  8.2682e-01, -3.1178e-01,\\n\",\n      \"          -8.5566e-01, -2.9528e-01,  3.2213e-01,  3.4162e-01, -3.0355e-01,\\n\",\n      \"          -5.9389e-01,  3.5483e-01,  4.5676e-01, -1.7409e-01,  2.1121e-01,\\n\",\n      \"           8.4332e-01, -3.1843e-01,  1.7427e-01,  3.4608e-02, -1.8790e-01,\\n\",\n      \"           5.4708e-02, -7.1884e-01,  6.1022e-01,  2.1457e-01, -1.4149e-01,\\n\",\n      \"           6.2510e-01, -9.3106e-01, -5.6068e-01,  3.8099e-01, -6.8192e-01,\\n\",\n      \"           3.3177e-01, -1.8218e-01,  6.8974e-02,  5.4749e-01,  8.4259e-01,\\n\",\n      \"          -5.1681e-01,  7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\\n\",\n      \"           1.3590e-01, -9.1580e-01,  7.2868e-01,  6.2468e-01,  3.9947e-01,\\n\",\n      \"          -7.5519e-01,  1.6911e-02,  4.8992e-01, -7.2295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-8.2138e-01,  9.1111e-01,  4.6997e-02,  2.4762e-01, -3.9914e-02,\\n\",\n      \"          -7.1967e-01, -9.0576e-01, -7.9947e-01,  8.0798e-01,  2.3534e-01,\\n\",\n      \"          -6.0936e-02, -7.4290e-01, -5.8363e-01,  9.5139e-01, -6.7749e-01,\\n\",\n      \"           2.1059e-02, -4.9246e-01,  9.4772e-01,  9.3094e-01, -3.5459e-02,\\n\",\n      \"          -9.4027e-01, -2.4467e-01,  3.8255e-01,  3.4837e-01, -5.9900e-01,\\n\",\n      \"          -5.5247e-01, -1.7942e-01,  7.5872e-01, -9.8738e-02,  2.1996e-01,\\n\",\n      \"           9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01,  1.3646e-01,\\n\",\n      \"           2.4945e-01, -5.7759e-01,  6.7082e-01,  3.2138e-01, -1.7692e-01,\\n\",\n      \"           7.5860e-01, -9.6094e-01, -4.4573e-01,  1.0738e-01, -8.5018e-01,\\n\",\n      \"           2.2871e-01, -3.3403e-01, -2.0607e-01,  5.8237e-01,  8.7589e-01,\\n\",\n      \"          -7.6794e-01,  8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\\n\",\n      \"           1.1904e-01, -9.5598e-01,  8.7078e-01,  6.6721e-01,  4.1586e-01,\\n\",\n      \"          -8.7196e-01,  1.8279e-01,  4.1627e-01, -8.1426e-01],\\n\",\n      \"         [-6.7484e-01,  8.9251e-01,  7.1709e-02,  3.4437e-01, -1.6517e-01,\\n\",\n      \"          -7.1140e-01, -8.6538e-01, -8.0934e-01,  7.5987e-01,  2.7822e-01,\\n\",\n      \"          -8.6837e-02, -7.4919e-01, -5.5023e-01,  9.2409e-01, -6.1562e-01,\\n\",\n      \"           1.9981e-01, -4.5086e-01,  9.4142e-01,  9.1322e-01, -1.2868e-01,\\n\",\n      \"          -9.2935e-01, -3.2165e-01,  3.2718e-01,  3.4869e-01, -5.0915e-01,\\n\",\n      \"          -5.5380e-01,  7.4805e-02,  6.5267e-01, -1.2531e-01,  2.6391e-01,\\n\",\n      \"           8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\\n\",\n      \"           1.6423e-01, -6.5370e-01,  6.3765e-01,  2.7780e-01, -1.1735e-01,\\n\",\n      \"           7.5169e-01, -9.5978e-01, -5.0727e-01,  2.6838e-01, -8.2897e-01,\\n\",\n      \"           2.8772e-01, -2.4363e-01, -9.4374e-02,  5.7713e-01,  8.8612e-01,\\n\",\n      \"          -6.9917e-01,  7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\\n\",\n      \"           1.5778e-01, -9.5314e-01,  8.3813e-01,  6.5658e-01,  4.0131e-01,\\n\",\n      \"          -8.4993e-01,  1.4095e-01,  4.5086e-01, -7.6913e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([3, 3])\\n\",\n      \"dec_state: tensor([[[ 0.6687,  0.9203, -0.7646,  0.7632,  0.1101, -0.1989, -0.5587,\\n\",\n      \"          -0.2503, -0.6517, -0.8665, -0.5722, -0.5666,  0.5456,  0.8175,\\n\",\n      \"          -0.8757, -0.3300,  0.7637,  0.1723, -0.7469,  0.7212,  0.7864,\\n\",\n      \"          -0.8185, -0.2320,  0.7544,  0.7799, -0.5862,  0.0822, -0.7955,\\n\",\n      \"           0.0430, -0.4943, -0.6038,  0.8119,  0.7657,  0.7116, -0.3648,\\n\",\n      \"          -0.6876,  0.7293, -0.5445,  0.6874,  0.6842, -0.7249,  0.0625,\\n\",\n      \"           0.3571, -0.4527, -0.6794,  0.5604, -0.1622,  0.5990, -0.1978,\\n\",\n      \"           0.6404, -0.7082,  0.7913, -0.0724, -0.4190,  0.3894,  0.0331,\\n\",\n      \"           0.3827,  0.6560, -0.3759,  0.0218, -0.7606,  0.7750, -0.4868,\\n\",\n      \"          -0.8303],\\n\",\n      \"         [ 0.7853,  0.5307, -0.6785,  0.4080,  0.1004, -0.1049, -0.7184,\\n\",\n      \"          -0.2529,  0.1562, -0.8635, -0.8820, -0.2500,  0.4938,  0.7656,\\n\",\n      \"          -0.8623,  0.1309,  0.7997,  0.3942, -0.5866,  0.7746,  0.4193,\\n\",\n      \"          -0.4139, -0.3976,  0.5160,  0.7046, -0.7296,  0.1491, -0.7618,\\n\",\n      \"           0.1596, -0.5170, -0.7418, -0.0086,  0.6479,  0.6756,  0.3398,\\n\",\n      \"          -0.2299,  0.5073, -0.6629,  0.6010,  0.7857, -0.1484,  0.4565,\\n\",\n      \"           0.5620, -0.3122, -0.4368,  0.6640, -0.0494,  0.5833, -0.0127,\\n\",\n      \"           0.6208, -0.4683,  0.4819, -0.4754, -0.1504,  0.3566,  0.0713,\\n\",\n      \"           0.3698,  0.1180, -0.3753,  0.0562, -0.7093,  0.4912, -0.4410,\\n\",\n      \"          -0.8070]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.1876e-02,  2.0449e-01,  1.2946e-01,  3.8957e-01, -2.8742e-01,\\n\",\n      \"           1.7324e-01,  4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\\n\",\n      \"           3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02,  3.8296e-01,\\n\",\n      \"          -2.4677e-01,  5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\\n\",\n      \"          -3.5863e-01, -7.6301e-02,  5.3976e-01,  1.8053e-01, -4.6039e-01,\\n\",\n      \"          -4.0647e-01, -9.8147e-02,  5.4672e-01, -8.9772e-02,  4.0746e-02,\\n\",\n      \"           1.1188e-01,  4.1362e-01, -5.6949e-01,  5.2939e-01,  1.5917e-01,\\n\",\n      \"           9.9399e-02, -3.4445e-01,  6.2491e-01, -4.4808e-01,  2.7106e-01,\\n\",\n      \"          -1.6560e-01,  2.6980e-01, -4.7111e-01,  7.4357e-03,  1.1016e-01,\\n\",\n      \"          -2.3606e-01, -3.4845e-01,  1.5072e-01, -3.7065e-02,  3.1512e-01,\\n\",\n      \"           2.5581e-01,  3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\\n\",\n      \"          -1.6842e-01,  2.2732e-02,  3.7792e-01, -1.1966e-01,  9.9072e-02,\\n\",\n      \"          -3.9988e-01,  3.5676e-01,  4.3146e-01, -3.5387e-01],\\n\",\n      \"         [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\\n\",\n      \"           7.9412e-02,  1.8133e-02,  1.2927e-01, -1.6136e-01, -1.5331e-01,\\n\",\n      \"          -8.0777e-02, -1.3801e-01, -4.0392e-01,  3.0119e-01,  1.1731e-01,\\n\",\n      \"          -5.5234e-01,  2.8495e-01,  1.8620e-01, -7.8735e-02, -5.5452e-01,\\n\",\n      \"          -5.3230e-01, -4.6117e-02,  1.0367e-01, -1.2489e-01, -4.1837e-02,\\n\",\n      \"           3.4538e-02, -2.5756e-02,  1.7873e-01,  1.5026e-02, -1.0708e-01,\\n\",\n      \"          -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\\n\",\n      \"          -1.0795e-01, -1.9033e-01,  6.2986e-02, -8.8741e-02, -3.5847e-01,\\n\",\n      \"           1.6159e-01,  6.1150e-01, -3.3382e-02,  9.0885e-02, -5.4511e-01,\\n\",\n      \"          -2.8689e-01,  3.4493e-01, -7.5644e-02, -6.3455e-03,  3.7202e-01,\\n\",\n      \"           1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\\n\",\n      \"           2.6133e-02, -3.4519e-01,  1.9728e-01,  5.4546e-02, -3.1128e-01,\\n\",\n      \"           3.1239e-01,  2.0924e-01,  2.3193e-01, -2.8919e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.2365e-01,  1.3569e-01,  2.7882e-01,  5.3593e-01, -2.3814e-03,\\n\",\n      \"          -4.0386e-02, -4.1100e-01,  3.4883e-02, -1.3455e-01, -3.0311e-01,\\n\",\n      \"           4.1851e-01,  1.5324e-01, -3.9539e-01,  3.2939e-01,  2.9012e-01,\\n\",\n      \"          -2.2305e-01,  2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\\n\",\n      \"          -5.6430e-01,  1.4938e-01,  5.3304e-01,  3.3561e-01, -5.6758e-01,\\n\",\n      \"          -3.1424e-01, -7.4645e-02,  1.6243e-01,  1.7337e-01, -4.2843e-02,\\n\",\n      \"           1.9555e-01, -7.0186e-02,  4.5234e-02, -2.6768e-02,  6.7001e-02,\\n\",\n      \"           1.4401e-01, -5.8669e-01,  6.6726e-01, -9.7634e-02, -4.4069e-01,\\n\",\n      \"           1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01,  8.5537e-02,\\n\",\n      \"          -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01,  3.5808e-01,\\n\",\n      \"           2.4732e-01,  3.4604e-01,  1.8691e-01, -5.2340e-01, -7.8705e-02,\\n\",\n      \"          -3.5208e-01, -3.3275e-01,  3.2585e-01, -2.7377e-01,  4.6864e-01,\\n\",\n      \"          -4.8893e-01,  4.7856e-02,  4.0918e-01, -3.2458e-01],\\n\",\n      \"         [ 2.9272e-01, -2.2613e-01, -3.9943e-01,  7.3033e-01, -1.5350e-01,\\n\",\n      \"           6.4352e-02,  2.0583e-01,  4.9423e-01,  2.8296e-01, -3.0972e-01,\\n\",\n      \"          -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01,  4.3754e-01,\\n\",\n      \"           1.9655e-02,  3.1482e-01,  3.4366e-01,  1.3772e-01, -4.9082e-01,\\n\",\n      \"          -5.8955e-01,  5.5178e-02,  2.8124e-01,  2.5237e-01,  2.1010e-01,\\n\",\n      \"          -1.4519e-01, -3.1231e-02, -4.5927e-02,  8.4576e-02, -2.2813e-01,\\n\",\n      \"          -1.0999e-01, -4.7251e-02,  3.7033e-01,  3.2943e-01, -1.4418e-03,\\n\",\n      \"           9.7710e-02, -5.1259e-01,  8.1932e-01,  1.9363e-01,  2.2118e-01,\\n\",\n      \"           1.5377e-01,  5.8502e-01,  2.8674e-02, -1.4168e-01, -3.3884e-01,\\n\",\n      \"          -1.3351e-01,  2.3175e-01, -5.4281e-01,  1.1601e-01,  6.1183e-01,\\n\",\n      \"          -4.5140e-02, -2.5237e-01,  2.3752e-01, -5.1164e-01, -3.1370e-01,\\n\",\n      \"          -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01,  4.5315e-01,\\n\",\n      \"          -3.8700e-01, -3.3658e-01,  2.4828e-03, -1.1722e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4517e-02,  5.1353e-01,  2.7537e-01,  3.2463e-01, -6.7576e-02,\\n\",\n      \"          -2.0490e-01, -4.6915e-01,  1.5765e-01,  4.4066e-01,  2.8679e-01,\\n\",\n      \"           4.1518e-01, -4.7293e-01, -3.3223e-01,  9.0766e-02,  2.6712e-01,\\n\",\n      \"           1.4399e-01,  4.4340e-01, -4.1589e-01,  6.3286e-02, -6.5724e-01,\\n\",\n      \"          -9.8731e-02,  1.4927e-01,  2.3330e-01,  3.4253e-01, -8.3711e-02,\\n\",\n      \"          -4.2961e-02, -6.9909e-02,  9.9444e-02,  1.9790e-01, -1.3862e-01,\\n\",\n      \"           3.4126e-01, -4.7026e-01, -1.3669e-03,  3.1917e-01,  8.7192e-02,\\n\",\n      \"           1.7769e-01, -2.6164e-01,  5.8675e-01, -3.7114e-01, -4.1631e-01,\\n\",\n      \"          -9.7841e-02,  2.1348e-01, -7.5500e-03, -1.8236e-02,  1.9261e-03,\\n\",\n      \"           1.4379e-01, -6.9110e-02,  9.1750e-02,  1.8012e-01,  3.5871e-01,\\n\",\n      \"           1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\\n\",\n      \"          -3.6182e-01, -3.7487e-01,  2.4039e-01, -4.6122e-01,  6.9476e-01,\\n\",\n      \"          -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\\n\",\n      \"         [ 5.1123e-01, -4.0266e-01, -2.9377e-01,  4.1843e-01, -2.3979e-01,\\n\",\n      \"           2.6047e-02,  2.0101e-01, -1.8941e-01,  1.0405e-02, -1.2233e-01,\\n\",\n      \"           7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01,  3.8687e-01,\\n\",\n      \"          -7.9252e-04, -9.5511e-02,  2.9611e-01,  1.8304e-01, -6.1154e-01,\\n\",\n      \"          -6.3995e-01, -6.1087e-02,  2.2301e-01,  2.3835e-01, -9.4064e-03,\\n\",\n      \"          -3.1463e-02,  5.0872e-01,  5.2994e-02,  1.4707e-01, -1.3801e-01,\\n\",\n      \"           1.6804e-01,  2.6023e-01, -1.6039e-03,  3.9684e-01, -8.6695e-02,\\n\",\n      \"          -1.2471e-01, -6.2766e-01,  5.4049e-01, -8.3060e-02, -9.4193e-02,\\n\",\n      \"           2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\\n\",\n      \"           1.0937e-01,  2.8545e-01, -5.2316e-01, -1.7083e-01,  5.1631e-01,\\n\",\n      \"          -2.0713e-01,  1.1943e-02,  1.9117e-01, -9.0481e-02, -1.7545e-01,\\n\",\n      \"           1.4447e-01, -6.1310e-01,  2.4947e-01, -3.2512e-01, -1.1674e-01,\\n\",\n      \"          -1.5464e-01,  8.5949e-02,  1.9173e-01, -1.8634e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.4599e-01,  3.4493e-01,  3.5540e-01,  5.9247e-01, -4.1207e-01,\\n\",\n      \"          -1.6579e-01, -4.8020e-01, -7.3714e-01,  4.8738e-01,  2.0807e-01,\\n\",\n      \"           3.0116e-01, -4.4130e-01, -4.2788e-01,  2.6977e-01, -2.3329e-01,\\n\",\n      \"           5.3776e-01,  4.9697e-01,  2.9906e-01,  2.7902e-01, -6.9022e-01,\\n\",\n      \"          -4.0519e-01, -1.4059e-01,  4.0009e-01,  3.3875e-01,  3.8020e-02,\\n\",\n      \"          -6.8647e-01,  5.3905e-01,  1.5797e-01, -3.5341e-01, -2.1889e-01,\\n\",\n      \"           6.5958e-01, -1.9601e-01,  5.0115e-01,  2.6124e-01, -3.4608e-01,\\n\",\n      \"          -8.9277e-02, -7.4167e-01,  6.1062e-01,  1.4346e-01, -2.8655e-01,\\n\",\n      \"          -2.5671e-01, -5.9121e-01, -5.0235e-01,  4.6546e-01,  1.5253e-01,\\n\",\n      \"           3.3492e-01, -1.8718e-01,  3.2432e-01,  4.7797e-01,  6.2427e-01,\\n\",\n      \"           1.1437e-02,  3.0348e-01,  1.3757e-01, -7.2873e-01, -2.9603e-01,\\n\",\n      \"           1.8765e-02, -5.9862e-01,  3.6728e-01,  5.7481e-01,  7.0923e-01,\\n\",\n      \"          -2.4748e-01, -9.4674e-02,  5.3589e-01, -6.6785e-01],\\n\",\n      \"         [ 3.1676e-01,  2.6778e-01,  6.5309e-02,  2.8887e-01, -1.7269e-01,\\n\",\n      \"          -4.3300e-02, -1.5170e-01,  4.5494e-03,  4.3829e-01,  3.1757e-01,\\n\",\n      \"           1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01,  2.1333e-01,\\n\",\n      \"           2.4054e-01,  2.3956e-01, -2.2792e-02,  4.7846e-01, -6.9334e-01,\\n\",\n      \"          -2.4033e-01, -3.7174e-02,  2.3895e-02,  2.7962e-01,  2.3990e-01,\\n\",\n      \"           1.0133e-01,  3.8711e-01,  8.3111e-03,  1.7434e-01, -1.9475e-01,\\n\",\n      \"           3.4768e-01, -2.9952e-01, -8.9722e-02,  4.9720e-01,  6.0897e-02,\\n\",\n      \"           4.2339e-02, -2.8452e-01,  5.0351e-01, -3.4962e-01, -2.3853e-01,\\n\",\n      \"          -8.4488e-02,  7.0700e-02, -1.5170e-01,  1.3667e-01, -4.8259e-02,\\n\",\n      \"           2.4410e-01,  3.2302e-01, -4.5496e-02,  2.0975e-01,  5.4169e-01,\\n\",\n      \"          -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\\n\",\n      \"          -2.2768e-01, -5.6263e-01,  1.5331e-01, -4.4642e-01,  5.5733e-01,\\n\",\n      \"          -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.3190e-01,  8.1577e-01,  2.3800e-01,  4.8075e-01, -2.7762e-01,\\n\",\n      \"          -7.0727e-01, -8.0229e-01, -7.6923e-01,  6.7816e-01,  2.7397e-01,\\n\",\n      \"          -1.8307e-02, -6.1159e-01, -5.0091e-01,  8.3182e-01, -4.9736e-01,\\n\",\n      \"           3.3217e-01, -2.1184e-01,  8.8089e-01,  7.3042e-01, -3.0091e-01,\\n\",\n      \"          -8.4643e-01, -1.7723e-01,  3.9327e-01,  3.5607e-01, -3.6149e-01,\\n\",\n      \"          -6.4001e-01,  2.5142e-01,  4.7756e-01, -1.8219e-01,  1.9411e-01,\\n\",\n      \"           8.4554e-01, -4.0670e-01,  2.2843e-01, -2.8213e-02, -1.6706e-01,\\n\",\n      \"           8.4338e-02, -6.9243e-01,  6.5162e-01,  2.2620e-01, -2.4377e-01,\\n\",\n      \"           6.3091e-01, -9.2143e-01, -5.2339e-01,  3.0346e-01, -6.8120e-01,\\n\",\n      \"           3.0847e-01, -3.0962e-01,  8.6166e-02,  5.2663e-01,  7.8582e-01,\\n\",\n      \"          -4.4179e-01,  7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\\n\",\n      \"           5.9648e-02, -8.9259e-01,  7.4582e-01,  6.0832e-01,  4.5425e-01,\\n\",\n      \"          -7.7402e-01,  7.1262e-03,  5.1430e-01, -7.4709e-01],\\n\",\n      \"         [ 1.0309e-01,  1.4890e-01,  2.3418e-01,  5.6161e-01, -4.5344e-01,\\n\",\n      \"          -3.7399e-02, -2.9632e-01, -7.8586e-01,  4.6773e-01,  2.3163e-01,\\n\",\n      \"           1.4635e-01, -6.1039e-01, -4.2175e-01,  2.9848e-02, -2.7098e-01,\\n\",\n      \"           5.8869e-01,  3.3047e-01,  3.8213e-01,  5.6308e-01, -7.1158e-01,\\n\",\n      \"          -4.7782e-01, -2.6972e-01,  3.1826e-01,  3.0689e-01,  2.0002e-01,\\n\",\n      \"          -6.3196e-01,  6.7574e-01,  1.0718e-01, -3.5589e-01, -2.2234e-01,\\n\",\n      \"           6.5694e-01, -4.6705e-02,  4.4457e-01,  3.8695e-01, -4.0593e-01,\\n\",\n      \"          -1.4013e-01, -7.6718e-01,  5.5516e-01,  1.2624e-01, -1.6417e-01,\\n\",\n      \"          -2.5965e-01, -6.6241e-01, -5.8782e-01,  5.3524e-01,  1.1498e-01,\\n\",\n      \"           3.5718e-01,  2.6810e-02,  3.1688e-01,  5.0246e-01,  7.2960e-01,\\n\",\n      \"          -1.6614e-01,  2.5272e-01,  1.4311e-01, -5.7957e-01, -2.1543e-01,\\n\",\n      \"           1.1138e-01, -6.8110e-01,  3.2205e-01,  5.9080e-01,  6.2253e-01,\\n\",\n      \"          -1.1579e-01, -5.8518e-02,  5.1007e-01, -6.3510e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.3295e-01,  8.9806e-01,  1.3076e-01,  3.5989e-01, -1.5338e-01,\\n\",\n      \"          -7.3023e-01, -8.8205e-01, -7.8767e-01,  7.6649e-01,  2.6182e-01,\\n\",\n      \"          -7.9418e-02, -7.0422e-01, -5.5216e-01,  9.3353e-01, -6.1393e-01,\\n\",\n      \"           1.6090e-01, -4.1725e-01,  9.4148e-01,  8.8216e-01, -1.2415e-01,\\n\",\n      \"          -9.2694e-01, -2.1225e-01,  3.8735e-01,  3.5587e-01, -5.2650e-01,\\n\",\n      \"          -5.9547e-01,  3.4167e-03,  6.6310e-01, -1.2849e-01,  2.4384e-01,\\n\",\n      \"           8.9664e-01, -5.5139e-01,  3.2991e-02, -1.9388e-01, -2.2145e-03,\\n\",\n      \"           1.8390e-01, -6.3102e-01,  6.6637e-01,  2.8547e-01, -2.0640e-01,\\n\",\n      \"           7.5508e-01, -9.5772e-01, -4.9472e-01,  1.9963e-01, -8.3145e-01,\\n\",\n      \"           2.6752e-01, -3.2867e-01, -8.0532e-02,  5.5949e-01,  8.5466e-01,\\n\",\n      \"          -6.6808e-01,  7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\\n\",\n      \"           9.2077e-02, -9.4609e-01,  8.4297e-01,  6.4095e-01,  4.2260e-01,\\n\",\n      \"          -8.5386e-01,  1.3420e-01,  4.6493e-01, -7.8761e-01],\\n\",\n      \"         [-4.0157e-01,  7.7822e-01,  1.5185e-01,  4.5991e-01, -2.9712e-01,\\n\",\n      \"          -6.5423e-01, -7.5150e-01, -8.0209e-01,  6.6695e-01,  2.9053e-01,\\n\",\n      \"          -6.2758e-02, -7.0725e-01, -4.9634e-01,  7.8107e-01, -5.0621e-01,\\n\",\n      \"           3.7759e-01, -2.7325e-01,  8.8842e-01,  8.2682e-01, -3.1178e-01,\\n\",\n      \"          -8.5566e-01, -2.9528e-01,  3.2213e-01,  3.4162e-01, -3.0355e-01,\\n\",\n      \"          -5.9389e-01,  3.5483e-01,  4.5676e-01, -1.7409e-01,  2.1121e-01,\\n\",\n      \"           8.4332e-01, -3.1843e-01,  1.7427e-01,  3.4608e-02, -1.8790e-01,\\n\",\n      \"           5.4708e-02, -7.1884e-01,  6.1022e-01,  2.1457e-01, -1.4149e-01,\\n\",\n      \"           6.2510e-01, -9.3106e-01, -5.6068e-01,  3.8099e-01, -6.8192e-01,\\n\",\n      \"           3.3177e-01, -1.8218e-01,  6.8974e-02,  5.4749e-01,  8.4259e-01,\\n\",\n      \"          -5.1681e-01,  7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\\n\",\n      \"           1.3590e-01, -9.1580e-01,  7.2868e-01,  6.2468e-01,  3.9947e-01,\\n\",\n      \"          -7.5519e-01,  1.6911e-02,  4.8992e-01, -7.2295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-8.2138e-01,  9.1111e-01,  4.6997e-02,  2.4762e-01, -3.9914e-02,\\n\",\n      \"          -7.1967e-01, -9.0576e-01, -7.9947e-01,  8.0798e-01,  2.3534e-01,\\n\",\n      \"          -6.0936e-02, -7.4290e-01, -5.8363e-01,  9.5139e-01, -6.7749e-01,\\n\",\n      \"           2.1059e-02, -4.9246e-01,  9.4772e-01,  9.3094e-01, -3.5459e-02,\\n\",\n      \"          -9.4027e-01, -2.4467e-01,  3.8255e-01,  3.4837e-01, -5.9900e-01,\\n\",\n      \"          -5.5247e-01, -1.7942e-01,  7.5872e-01, -9.8738e-02,  2.1996e-01,\\n\",\n      \"           9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01,  1.3646e-01,\\n\",\n      \"           2.4945e-01, -5.7759e-01,  6.7082e-01,  3.2138e-01, -1.7692e-01,\\n\",\n      \"           7.5860e-01, -9.6094e-01, -4.4573e-01,  1.0738e-01, -8.5018e-01,\\n\",\n      \"           2.2871e-01, -3.3403e-01, -2.0607e-01,  5.8237e-01,  8.7589e-01,\\n\",\n      \"          -7.6794e-01,  8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\\n\",\n      \"           1.1904e-01, -9.5598e-01,  8.7078e-01,  6.6721e-01,  4.1586e-01,\\n\",\n      \"          -8.7196e-01,  1.8279e-01,  4.1627e-01, -8.1426e-01],\\n\",\n      \"         [-6.7484e-01,  8.9251e-01,  7.1709e-02,  3.4437e-01, -1.6517e-01,\\n\",\n      \"          -7.1140e-01, -8.6538e-01, -8.0934e-01,  7.5987e-01,  2.7822e-01,\\n\",\n      \"          -8.6837e-02, -7.4919e-01, -5.5023e-01,  9.2409e-01, -6.1562e-01,\\n\",\n      \"           1.9981e-01, -4.5086e-01,  9.4142e-01,  9.1322e-01, -1.2868e-01,\\n\",\n      \"          -9.2935e-01, -3.2165e-01,  3.2718e-01,  3.4869e-01, -5.0915e-01,\\n\",\n      \"          -5.5380e-01,  7.4805e-02,  6.5267e-01, -1.2531e-01,  2.6391e-01,\\n\",\n      \"           8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\\n\",\n      \"           1.6423e-01, -6.5370e-01,  6.3765e-01,  2.7780e-01, -1.1735e-01,\\n\",\n      \"           7.5169e-01, -9.5978e-01, -5.0727e-01,  2.6838e-01, -8.2897e-01,\\n\",\n      \"           2.8772e-01, -2.4363e-01, -9.4374e-02,  5.7713e-01,  8.8612e-01,\\n\",\n      \"          -6.9917e-01,  7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\\n\",\n      \"           1.5778e-01, -9.5314e-01,  8.3813e-01,  6.5658e-01,  4.0131e-01,\\n\",\n      \"          -8.4993e-01,  1.4095e-01,  4.5086e-01, -7.6913e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([2, 2])\\n\",\n      \"dec_state: tensor([[[ 0.7305,  0.1765, -0.8690,  0.7700,  0.1795,  0.2444,  0.0397,\\n\",\n      \"          -0.1598, -0.6506, -0.3576, -0.1410, -0.4863,  0.6637,  0.0213,\\n\",\n      \"          -0.9238, -0.5097,  0.3969,  0.4407, -0.7275,  0.3024,  0.8105,\\n\",\n      \"          -0.7462, -0.0953,  0.6928,  0.5223, -0.7127, -0.3046, -0.6809,\\n\",\n      \"          -0.4154, -0.0267, -0.6831,  0.8408, -0.2786,  0.7211, -0.4596,\\n\",\n      \"          -0.8411,  0.3416, -0.2901,  0.6556,  0.3592, -0.5158,  0.2672,\\n\",\n      \"           0.3867, -0.2363, -0.0113,  0.2001, -0.2655,  0.6751, -0.2600,\\n\",\n      \"           0.4378, -0.5019,  0.7265, -0.1737, -0.5082,  0.0348, -0.0163,\\n\",\n      \"           0.6712,  0.6123,  0.2717,  0.2270, -0.6987,  0.6071, -0.4897,\\n\",\n      \"          -0.5075],\\n\",\n      \"         [ 0.7946, -0.0830, -0.7912,  0.5376,  0.1329,  0.2198,  0.0797,\\n\",\n      \"          -0.0667, -0.3490, -0.0817, -0.2726, -0.2533,  0.5671,  0.1040,\\n\",\n      \"          -0.9262, -0.3087,  0.4562,  0.5709, -0.6050,  0.4559,  0.7243,\\n\",\n      \"          -0.4190, -0.1422,  0.5758,  0.4150, -0.7974, -0.2648, -0.6885,\\n\",\n      \"          -0.2895, -0.1510, -0.7473,  0.4071, -0.3340,  0.7021, -0.0398,\\n\",\n      \"          -0.6497,  0.2781, -0.2721,  0.6324,  0.4615, -0.1022,  0.5581,\\n\",\n      \"           0.5048, -0.1350,  0.0913,  0.1335, -0.1770,  0.6571, -0.1887,\\n\",\n      \"           0.3187, -0.5232,  0.5346, -0.4838, -0.3089,  0.0187,  0.0253,\\n\",\n      \"           0.6358,  0.3519,  0.2764,  0.1436, -0.6045,  0.3655, -0.4246,\\n\",\n      \"          -0.4193]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.1876e-02,  2.0449e-01,  1.2946e-01,  3.8957e-01, -2.8742e-01,\\n\",\n      \"           1.7324e-01,  4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\\n\",\n      \"           3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02,  3.8296e-01,\\n\",\n      \"          -2.4677e-01,  5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\\n\",\n      \"          -3.5863e-01, -7.6301e-02,  5.3976e-01,  1.8053e-01, -4.6039e-01,\\n\",\n      \"          -4.0647e-01, -9.8147e-02,  5.4672e-01, -8.9772e-02,  4.0746e-02,\\n\",\n      \"           1.1188e-01,  4.1362e-01, -5.6949e-01,  5.2939e-01,  1.5917e-01,\\n\",\n      \"           9.9399e-02, -3.4445e-01,  6.2491e-01, -4.4808e-01,  2.7106e-01,\\n\",\n      \"          -1.6560e-01,  2.6980e-01, -4.7111e-01,  7.4357e-03,  1.1016e-01,\\n\",\n      \"          -2.3606e-01, -3.4845e-01,  1.5072e-01, -3.7065e-02,  3.1512e-01,\\n\",\n      \"           2.5581e-01,  3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\\n\",\n      \"          -1.6842e-01,  2.2732e-02,  3.7792e-01, -1.1966e-01,  9.9072e-02,\\n\",\n      \"          -3.9988e-01,  3.5676e-01,  4.3146e-01, -3.5387e-01],\\n\",\n      \"         [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\\n\",\n      \"           7.9412e-02,  1.8133e-02,  1.2927e-01, -1.6136e-01, -1.5331e-01,\\n\",\n      \"          -8.0777e-02, -1.3801e-01, -4.0392e-01,  3.0119e-01,  1.1731e-01,\\n\",\n      \"          -5.5234e-01,  2.8495e-01,  1.8620e-01, -7.8735e-02, -5.5452e-01,\\n\",\n      \"          -5.3230e-01, -4.6117e-02,  1.0367e-01, -1.2489e-01, -4.1837e-02,\\n\",\n      \"           3.4538e-02, -2.5756e-02,  1.7873e-01,  1.5026e-02, -1.0708e-01,\\n\",\n      \"          -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\\n\",\n      \"          -1.0795e-01, -1.9033e-01,  6.2986e-02, -8.8741e-02, -3.5847e-01,\\n\",\n      \"           1.6159e-01,  6.1150e-01, -3.3382e-02,  9.0885e-02, -5.4511e-01,\\n\",\n      \"          -2.8689e-01,  3.4493e-01, -7.5644e-02, -6.3455e-03,  3.7202e-01,\\n\",\n      \"           1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\\n\",\n      \"           2.6133e-02, -3.4519e-01,  1.9728e-01,  5.4546e-02, -3.1128e-01,\\n\",\n      \"           3.1239e-01,  2.0924e-01,  2.3193e-01, -2.8919e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.2365e-01,  1.3569e-01,  2.7882e-01,  5.3593e-01, -2.3814e-03,\\n\",\n      \"          -4.0386e-02, -4.1100e-01,  3.4883e-02, -1.3455e-01, -3.0311e-01,\\n\",\n      \"           4.1851e-01,  1.5324e-01, -3.9539e-01,  3.2939e-01,  2.9012e-01,\\n\",\n      \"          -2.2305e-01,  2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\\n\",\n      \"          -5.6430e-01,  1.4938e-01,  5.3304e-01,  3.3561e-01, -5.6758e-01,\\n\",\n      \"          -3.1424e-01, -7.4645e-02,  1.6243e-01,  1.7337e-01, -4.2843e-02,\\n\",\n      \"           1.9555e-01, -7.0186e-02,  4.5234e-02, -2.6768e-02,  6.7001e-02,\\n\",\n      \"           1.4401e-01, -5.8669e-01,  6.6726e-01, -9.7634e-02, -4.4069e-01,\\n\",\n      \"           1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01,  8.5537e-02,\\n\",\n      \"          -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01,  3.5808e-01,\\n\",\n      \"           2.4732e-01,  3.4604e-01,  1.8691e-01, -5.2340e-01, -7.8705e-02,\\n\",\n      \"          -3.5208e-01, -3.3275e-01,  3.2585e-01, -2.7377e-01,  4.6864e-01,\\n\",\n      \"          -4.8893e-01,  4.7856e-02,  4.0918e-01, -3.2458e-01],\\n\",\n      \"         [ 2.9272e-01, -2.2613e-01, -3.9943e-01,  7.3033e-01, -1.5350e-01,\\n\",\n      \"           6.4352e-02,  2.0583e-01,  4.9423e-01,  2.8296e-01, -3.0972e-01,\\n\",\n      \"          -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01,  4.3754e-01,\\n\",\n      \"           1.9655e-02,  3.1482e-01,  3.4366e-01,  1.3772e-01, -4.9082e-01,\\n\",\n      \"          -5.8955e-01,  5.5178e-02,  2.8124e-01,  2.5237e-01,  2.1010e-01,\\n\",\n      \"          -1.4519e-01, -3.1231e-02, -4.5927e-02,  8.4576e-02, -2.2813e-01,\\n\",\n      \"          -1.0999e-01, -4.7251e-02,  3.7033e-01,  3.2943e-01, -1.4418e-03,\\n\",\n      \"           9.7710e-02, -5.1259e-01,  8.1932e-01,  1.9363e-01,  2.2118e-01,\\n\",\n      \"           1.5377e-01,  5.8502e-01,  2.8674e-02, -1.4168e-01, -3.3884e-01,\\n\",\n      \"          -1.3351e-01,  2.3175e-01, -5.4281e-01,  1.1601e-01,  6.1183e-01,\\n\",\n      \"          -4.5140e-02, -2.5237e-01,  2.3752e-01, -5.1164e-01, -3.1370e-01,\\n\",\n      \"          -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01,  4.5315e-01,\\n\",\n      \"          -3.8700e-01, -3.3658e-01,  2.4828e-03, -1.1722e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4517e-02,  5.1353e-01,  2.7537e-01,  3.2463e-01, -6.7576e-02,\\n\",\n      \"          -2.0490e-01, -4.6915e-01,  1.5765e-01,  4.4066e-01,  2.8679e-01,\\n\",\n      \"           4.1518e-01, -4.7293e-01, -3.3223e-01,  9.0766e-02,  2.6712e-01,\\n\",\n      \"           1.4399e-01,  4.4340e-01, -4.1589e-01,  6.3286e-02, -6.5724e-01,\\n\",\n      \"          -9.8731e-02,  1.4927e-01,  2.3330e-01,  3.4253e-01, -8.3711e-02,\\n\",\n      \"          -4.2961e-02, -6.9909e-02,  9.9444e-02,  1.9790e-01, -1.3862e-01,\\n\",\n      \"           3.4126e-01, -4.7026e-01, -1.3669e-03,  3.1917e-01,  8.7192e-02,\\n\",\n      \"           1.7769e-01, -2.6164e-01,  5.8675e-01, -3.7114e-01, -4.1631e-01,\\n\",\n      \"          -9.7841e-02,  2.1348e-01, -7.5500e-03, -1.8236e-02,  1.9261e-03,\\n\",\n      \"           1.4379e-01, -6.9110e-02,  9.1750e-02,  1.8012e-01,  3.5871e-01,\\n\",\n      \"           1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\\n\",\n      \"          -3.6182e-01, -3.7487e-01,  2.4039e-01, -4.6122e-01,  6.9476e-01,\\n\",\n      \"          -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\\n\",\n      \"         [ 5.1123e-01, -4.0266e-01, -2.9377e-01,  4.1843e-01, -2.3979e-01,\\n\",\n      \"           2.6047e-02,  2.0101e-01, -1.8941e-01,  1.0405e-02, -1.2233e-01,\\n\",\n      \"           7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01,  3.8687e-01,\\n\",\n      \"          -7.9252e-04, -9.5511e-02,  2.9611e-01,  1.8304e-01, -6.1154e-01,\\n\",\n      \"          -6.3995e-01, -6.1087e-02,  2.2301e-01,  2.3835e-01, -9.4064e-03,\\n\",\n      \"          -3.1463e-02,  5.0872e-01,  5.2994e-02,  1.4707e-01, -1.3801e-01,\\n\",\n      \"           1.6804e-01,  2.6023e-01, -1.6039e-03,  3.9684e-01, -8.6695e-02,\\n\",\n      \"          -1.2471e-01, -6.2766e-01,  5.4049e-01, -8.3060e-02, -9.4193e-02,\\n\",\n      \"           2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\\n\",\n      \"           1.0937e-01,  2.8545e-01, -5.2316e-01, -1.7083e-01,  5.1631e-01,\\n\",\n      \"          -2.0713e-01,  1.1943e-02,  1.9117e-01, -9.0481e-02, -1.7545e-01,\\n\",\n      \"           1.4447e-01, -6.1310e-01,  2.4947e-01, -3.2512e-01, -1.1674e-01,\\n\",\n      \"          -1.5464e-01,  8.5949e-02,  1.9173e-01, -1.8634e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.4599e-01,  3.4493e-01,  3.5540e-01,  5.9247e-01, -4.1207e-01,\\n\",\n      \"          -1.6579e-01, -4.8020e-01, -7.3714e-01,  4.8738e-01,  2.0807e-01,\\n\",\n      \"           3.0116e-01, -4.4130e-01, -4.2788e-01,  2.6977e-01, -2.3329e-01,\\n\",\n      \"           5.3776e-01,  4.9697e-01,  2.9906e-01,  2.7902e-01, -6.9022e-01,\\n\",\n      \"          -4.0519e-01, -1.4059e-01,  4.0009e-01,  3.3875e-01,  3.8020e-02,\\n\",\n      \"          -6.8647e-01,  5.3905e-01,  1.5797e-01, -3.5341e-01, -2.1889e-01,\\n\",\n      \"           6.5958e-01, -1.9601e-01,  5.0115e-01,  2.6124e-01, -3.4608e-01,\\n\",\n      \"          -8.9277e-02, -7.4167e-01,  6.1062e-01,  1.4346e-01, -2.8655e-01,\\n\",\n      \"          -2.5671e-01, -5.9121e-01, -5.0235e-01,  4.6546e-01,  1.5253e-01,\\n\",\n      \"           3.3492e-01, -1.8718e-01,  3.2432e-01,  4.7797e-01,  6.2427e-01,\\n\",\n      \"           1.1437e-02,  3.0348e-01,  1.3757e-01, -7.2873e-01, -2.9603e-01,\\n\",\n      \"           1.8765e-02, -5.9862e-01,  3.6728e-01,  5.7481e-01,  7.0923e-01,\\n\",\n      \"          -2.4748e-01, -9.4674e-02,  5.3589e-01, -6.6785e-01],\\n\",\n      \"         [ 3.1676e-01,  2.6778e-01,  6.5309e-02,  2.8887e-01, -1.7269e-01,\\n\",\n      \"          -4.3300e-02, -1.5170e-01,  4.5494e-03,  4.3829e-01,  3.1757e-01,\\n\",\n      \"           1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01,  2.1333e-01,\\n\",\n      \"           2.4054e-01,  2.3956e-01, -2.2792e-02,  4.7846e-01, -6.9334e-01,\\n\",\n      \"          -2.4033e-01, -3.7174e-02,  2.3895e-02,  2.7962e-01,  2.3990e-01,\\n\",\n      \"           1.0133e-01,  3.8711e-01,  8.3111e-03,  1.7434e-01, -1.9475e-01,\\n\",\n      \"           3.4768e-01, -2.9952e-01, -8.9722e-02,  4.9720e-01,  6.0897e-02,\\n\",\n      \"           4.2339e-02, -2.8452e-01,  5.0351e-01, -3.4962e-01, -2.3853e-01,\\n\",\n      \"          -8.4488e-02,  7.0700e-02, -1.5170e-01,  1.3667e-01, -4.8259e-02,\\n\",\n      \"           2.4410e-01,  3.2302e-01, -4.5496e-02,  2.0975e-01,  5.4169e-01,\\n\",\n      \"          -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\\n\",\n      \"          -2.2768e-01, -5.6263e-01,  1.5331e-01, -4.4642e-01,  5.5733e-01,\\n\",\n      \"          -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.3190e-01,  8.1577e-01,  2.3800e-01,  4.8075e-01, -2.7762e-01,\\n\",\n      \"          -7.0727e-01, -8.0229e-01, -7.6923e-01,  6.7816e-01,  2.7397e-01,\\n\",\n      \"          -1.8307e-02, -6.1159e-01, -5.0091e-01,  8.3182e-01, -4.9736e-01,\\n\",\n      \"           3.3217e-01, -2.1184e-01,  8.8089e-01,  7.3042e-01, -3.0091e-01,\\n\",\n      \"          -8.4643e-01, -1.7723e-01,  3.9327e-01,  3.5607e-01, -3.6149e-01,\\n\",\n      \"          -6.4001e-01,  2.5142e-01,  4.7756e-01, -1.8219e-01,  1.9411e-01,\\n\",\n      \"           8.4554e-01, -4.0670e-01,  2.2843e-01, -2.8213e-02, -1.6706e-01,\\n\",\n      \"           8.4338e-02, -6.9243e-01,  6.5162e-01,  2.2620e-01, -2.4377e-01,\\n\",\n      \"           6.3091e-01, -9.2143e-01, -5.2339e-01,  3.0346e-01, -6.8120e-01,\\n\",\n      \"           3.0847e-01, -3.0962e-01,  8.6166e-02,  5.2663e-01,  7.8582e-01,\\n\",\n      \"          -4.4179e-01,  7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\\n\",\n      \"           5.9648e-02, -8.9259e-01,  7.4582e-01,  6.0832e-01,  4.5425e-01,\\n\",\n      \"          -7.7402e-01,  7.1262e-03,  5.1430e-01, -7.4709e-01],\\n\",\n      \"         [ 1.0309e-01,  1.4890e-01,  2.3418e-01,  5.6161e-01, -4.5344e-01,\\n\",\n      \"          -3.7399e-02, -2.9632e-01, -7.8586e-01,  4.6773e-01,  2.3163e-01,\\n\",\n      \"           1.4635e-01, -6.1039e-01, -4.2175e-01,  2.9848e-02, -2.7098e-01,\\n\",\n      \"           5.8869e-01,  3.3047e-01,  3.8213e-01,  5.6308e-01, -7.1158e-01,\\n\",\n      \"          -4.7782e-01, -2.6972e-01,  3.1826e-01,  3.0689e-01,  2.0002e-01,\\n\",\n      \"          -6.3196e-01,  6.7574e-01,  1.0718e-01, -3.5589e-01, -2.2234e-01,\\n\",\n      \"           6.5694e-01, -4.6705e-02,  4.4457e-01,  3.8695e-01, -4.0593e-01,\\n\",\n      \"          -1.4013e-01, -7.6718e-01,  5.5516e-01,  1.2624e-01, -1.6417e-01,\\n\",\n      \"          -2.5965e-01, -6.6241e-01, -5.8782e-01,  5.3524e-01,  1.1498e-01,\\n\",\n      \"           3.5718e-01,  2.6810e-02,  3.1688e-01,  5.0246e-01,  7.2960e-01,\\n\",\n      \"          -1.6614e-01,  2.5272e-01,  1.4311e-01, -5.7957e-01, -2.1543e-01,\\n\",\n      \"           1.1138e-01, -6.8110e-01,  3.2205e-01,  5.9080e-01,  6.2253e-01,\\n\",\n      \"          -1.1579e-01, -5.8518e-02,  5.1007e-01, -6.3510e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.3295e-01,  8.9806e-01,  1.3076e-01,  3.5989e-01, -1.5338e-01,\\n\",\n      \"          -7.3023e-01, -8.8205e-01, -7.8767e-01,  7.6649e-01,  2.6182e-01,\\n\",\n      \"          -7.9418e-02, -7.0422e-01, -5.5216e-01,  9.3353e-01, -6.1393e-01,\\n\",\n      \"           1.6090e-01, -4.1725e-01,  9.4148e-01,  8.8216e-01, -1.2415e-01,\\n\",\n      \"          -9.2694e-01, -2.1225e-01,  3.8735e-01,  3.5587e-01, -5.2650e-01,\\n\",\n      \"          -5.9547e-01,  3.4167e-03,  6.6310e-01, -1.2849e-01,  2.4384e-01,\\n\",\n      \"           8.9664e-01, -5.5139e-01,  3.2991e-02, -1.9388e-01, -2.2145e-03,\\n\",\n      \"           1.8390e-01, -6.3102e-01,  6.6637e-01,  2.8547e-01, -2.0640e-01,\\n\",\n      \"           7.5508e-01, -9.5772e-01, -4.9472e-01,  1.9963e-01, -8.3145e-01,\\n\",\n      \"           2.6752e-01, -3.2867e-01, -8.0532e-02,  5.5949e-01,  8.5466e-01,\\n\",\n      \"          -6.6808e-01,  7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\\n\",\n      \"           9.2077e-02, -9.4609e-01,  8.4297e-01,  6.4095e-01,  4.2260e-01,\\n\",\n      \"          -8.5386e-01,  1.3420e-01,  4.6493e-01, -7.8761e-01],\\n\",\n      \"         [-4.0157e-01,  7.7822e-01,  1.5185e-01,  4.5991e-01, -2.9712e-01,\\n\",\n      \"          -6.5423e-01, -7.5150e-01, -8.0209e-01,  6.6695e-01,  2.9053e-01,\\n\",\n      \"          -6.2758e-02, -7.0725e-01, -4.9634e-01,  7.8107e-01, -5.0621e-01,\\n\",\n      \"           3.7759e-01, -2.7325e-01,  8.8842e-01,  8.2682e-01, -3.1178e-01,\\n\",\n      \"          -8.5566e-01, -2.9528e-01,  3.2213e-01,  3.4162e-01, -3.0355e-01,\\n\",\n      \"          -5.9389e-01,  3.5483e-01,  4.5676e-01, -1.7409e-01,  2.1121e-01,\\n\",\n      \"           8.4332e-01, -3.1843e-01,  1.7427e-01,  3.4608e-02, -1.8790e-01,\\n\",\n      \"           5.4708e-02, -7.1884e-01,  6.1022e-01,  2.1457e-01, -1.4149e-01,\\n\",\n      \"           6.2510e-01, -9.3106e-01, -5.6068e-01,  3.8099e-01, -6.8192e-01,\\n\",\n      \"           3.3177e-01, -1.8218e-01,  6.8974e-02,  5.4749e-01,  8.4259e-01,\\n\",\n      \"          -5.1681e-01,  7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\\n\",\n      \"           1.3590e-01, -9.1580e-01,  7.2868e-01,  6.2468e-01,  3.9947e-01,\\n\",\n      \"          -7.5519e-01,  1.6911e-02,  4.8992e-01, -7.2295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-8.2138e-01,  9.1111e-01,  4.6997e-02,  2.4762e-01, -3.9914e-02,\\n\",\n      \"          -7.1967e-01, -9.0576e-01, -7.9947e-01,  8.0798e-01,  2.3534e-01,\\n\",\n      \"          -6.0936e-02, -7.4290e-01, -5.8363e-01,  9.5139e-01, -6.7749e-01,\\n\",\n      \"           2.1059e-02, -4.9246e-01,  9.4772e-01,  9.3094e-01, -3.5459e-02,\\n\",\n      \"          -9.4027e-01, -2.4467e-01,  3.8255e-01,  3.4837e-01, -5.9900e-01,\\n\",\n      \"          -5.5247e-01, -1.7942e-01,  7.5872e-01, -9.8738e-02,  2.1996e-01,\\n\",\n      \"           9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01,  1.3646e-01,\\n\",\n      \"           2.4945e-01, -5.7759e-01,  6.7082e-01,  3.2138e-01, -1.7692e-01,\\n\",\n      \"           7.5860e-01, -9.6094e-01, -4.4573e-01,  1.0738e-01, -8.5018e-01,\\n\",\n      \"           2.2871e-01, -3.3403e-01, -2.0607e-01,  5.8237e-01,  8.7589e-01,\\n\",\n      \"          -7.6794e-01,  8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\\n\",\n      \"           1.1904e-01, -9.5598e-01,  8.7078e-01,  6.6721e-01,  4.1586e-01,\\n\",\n      \"          -8.7196e-01,  1.8279e-01,  4.1627e-01, -8.1426e-01],\\n\",\n      \"         [-6.7484e-01,  8.9251e-01,  7.1709e-02,  3.4437e-01, -1.6517e-01,\\n\",\n      \"          -7.1140e-01, -8.6538e-01, -8.0934e-01,  7.5987e-01,  2.7822e-01,\\n\",\n      \"          -8.6837e-02, -7.4919e-01, -5.5023e-01,  9.2409e-01, -6.1562e-01,\\n\",\n      \"           1.9981e-01, -4.5086e-01,  9.4142e-01,  9.1322e-01, -1.2868e-01,\\n\",\n      \"          -9.2935e-01, -3.2165e-01,  3.2718e-01,  3.4869e-01, -5.0915e-01,\\n\",\n      \"          -5.5380e-01,  7.4805e-02,  6.5267e-01, -1.2531e-01,  2.6391e-01,\\n\",\n      \"           8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\\n\",\n      \"           1.6423e-01, -6.5370e-01,  6.3765e-01,  2.7780e-01, -1.1735e-01,\\n\",\n      \"           7.5169e-01, -9.5978e-01, -5.0727e-01,  2.6838e-01, -8.2897e-01,\\n\",\n      \"           2.8772e-01, -2.4363e-01, -9.4374e-02,  5.7713e-01,  8.8612e-01,\\n\",\n      \"          -6.9917e-01,  7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\\n\",\n      \"           1.5778e-01, -9.5314e-01,  8.3813e-01,  6.5658e-01,  4.0131e-01,\\n\",\n      \"          -8.4993e-01,  1.4095e-01,  4.5086e-01, -7.6913e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([0, 0])\\n\",\n      \"dec_state: tensor([[[ 0.5478,  0.6270, -0.0932,  0.4703,  0.0328, -0.1668,  0.2340,\\n\",\n      \"          -0.3174, -0.4669, -0.2234,  0.2033,  0.0077,  0.2677,  0.1675,\\n\",\n      \"          -0.7389, -0.2441, -0.1039, -0.3020, -0.3949,  0.4979,  0.8299,\\n\",\n      \"          -0.7973, -0.1002,  0.5007,  0.6212, -0.4585, -0.4878, -0.3107,\\n\",\n      \"          -0.4607, -0.2419, -0.1300,  0.7893,  0.5032,  0.4747, -0.3833,\\n\",\n      \"          -0.9098, -0.0015, -0.5015,  0.5474,  0.5057, -0.2355,  0.4147,\\n\",\n      \"           0.6655, -0.4008, -0.3051,  0.5390, -0.3308,  0.4527, -0.0093,\\n\",\n      \"           0.6430,  0.1048,  0.7166,  0.0091, -0.4479,  0.2652,  0.1014,\\n\",\n      \"           0.6158,  0.6818,  0.0787,  0.2217, -0.7580,  0.3303, -0.4461,\\n\",\n      \"          -0.4775],\\n\",\n      \"         [ 0.5641,  0.4468, -0.2217,  0.2935, -0.0475, -0.2278,  0.2848,\\n\",\n      \"          -0.2083, -0.3541,  0.0114,  0.0918,  0.1467,  0.1959,  0.2161,\\n\",\n      \"          -0.7512, -0.1897, -0.0375, -0.2088, -0.3218,  0.6184,  0.7965,\\n\",\n      \"          -0.6085, -0.1108,  0.4626,  0.5579, -0.5350, -0.5031, -0.3744,\\n\",\n      \"          -0.3694, -0.3259, -0.2194,  0.4649,  0.4536,  0.4685, -0.2880,\\n\",\n      \"          -0.8278,  0.0381, -0.4658,  0.5720,  0.5992,  0.0186,  0.6226,\\n\",\n      \"           0.6956, -0.3731, -0.2936,  0.4435, -0.2504,  0.4154, -0.0456,\\n\",\n      \"           0.5983,  0.0992,  0.5799, -0.1942, -0.2805,  0.2118,  0.1730,\\n\",\n      \"           0.5788,  0.5082,  0.0737,  0.1005, -0.6963,  0.1312, -0.3543,\\n\",\n      \"          -0.3981]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.1876e-02,  2.0449e-01,  1.2946e-01,  3.8957e-01, -2.8742e-01,\\n\",\n      \"           1.7324e-01,  4.2109e-02, -4.7404e-02, -2.8263e-02, -2.2163e-01,\\n\",\n      \"           3.7986e-01, -9.8054e-02, -5.0742e-01, -1.3952e-02,  3.8296e-01,\\n\",\n      \"          -2.4677e-01,  5.1033e-01, -5.0034e-01, -5.2450e-01, -5.7247e-01,\\n\",\n      \"          -3.5863e-01, -7.6301e-02,  5.3976e-01,  1.8053e-01, -4.6039e-01,\\n\",\n      \"          -4.0647e-01, -9.8147e-02,  5.4672e-01, -8.9772e-02,  4.0746e-02,\\n\",\n      \"           1.1188e-01,  4.1362e-01, -5.6949e-01,  5.2939e-01,  1.5917e-01,\\n\",\n      \"           9.9399e-02, -3.4445e-01,  6.2491e-01, -4.4808e-01,  2.7106e-01,\\n\",\n      \"          -1.6560e-01,  2.6980e-01, -4.7111e-01,  7.4357e-03,  1.1016e-01,\\n\",\n      \"          -2.3606e-01, -3.4845e-01,  1.5072e-01, -3.7065e-02,  3.1512e-01,\\n\",\n      \"           2.5581e-01,  3.8492e-01, -3.4728e-01, -2.8372e-01, -2.5698e-01,\\n\",\n      \"          -1.6842e-01,  2.2732e-02,  3.7792e-01, -1.1966e-01,  9.9072e-02,\\n\",\n      \"          -3.9988e-01,  3.5676e-01,  4.3146e-01, -3.5387e-01],\\n\",\n      \"         [-3.0744e-01, -2.2460e-02, -2.6004e-01, -2.8430e-02, -5.9424e-02,\\n\",\n      \"           7.9412e-02,  1.8133e-02,  1.2927e-01, -1.6136e-01, -1.5331e-01,\\n\",\n      \"          -8.0777e-02, -1.3801e-01, -4.0392e-01,  3.0119e-01,  1.1731e-01,\\n\",\n      \"          -5.5234e-01,  2.8495e-01,  1.8620e-01, -7.8735e-02, -5.5452e-01,\\n\",\n      \"          -5.3230e-01, -4.6117e-02,  1.0367e-01, -1.2489e-01, -4.1837e-02,\\n\",\n      \"           3.4538e-02, -2.5756e-02,  1.7873e-01,  1.5026e-02, -1.0708e-01,\\n\",\n      \"          -8.8611e-02, -1.0124e-01, -9.0690e-02, -3.3579e-01, -2.0109e-02,\\n\",\n      \"          -1.0795e-01, -1.9033e-01,  6.2986e-02, -8.8741e-02, -3.5847e-01,\\n\",\n      \"           1.6159e-01,  6.1150e-01, -3.3382e-02,  9.0885e-02, -5.4511e-01,\\n\",\n      \"          -2.8689e-01,  3.4493e-01, -7.5644e-02, -6.3455e-03,  3.7202e-01,\\n\",\n      \"           1.1957e-01, -4.1139e-01, -2.4165e-01, -3.5045e-01, -4.1144e-01,\\n\",\n      \"           2.6133e-02, -3.4519e-01,  1.9728e-01,  5.4546e-02, -3.1128e-01,\\n\",\n      \"           3.1239e-01,  2.0924e-01,  2.3193e-01, -2.8919e-01]],\\n\",\n      \"\\n\",\n      \"        [[-3.2365e-01,  1.3569e-01,  2.7882e-01,  5.3593e-01, -2.3814e-03,\\n\",\n      \"          -4.0386e-02, -4.1100e-01,  3.4883e-02, -1.3455e-01, -3.0311e-01,\\n\",\n      \"           4.1851e-01,  1.5324e-01, -3.9539e-01,  3.2939e-01,  2.9012e-01,\\n\",\n      \"          -2.2305e-01,  2.7609e-02, -6.0341e-01, -6.0847e-01, -4.7007e-01,\\n\",\n      \"          -5.6430e-01,  1.4938e-01,  5.3304e-01,  3.3561e-01, -5.6758e-01,\\n\",\n      \"          -3.1424e-01, -7.4645e-02,  1.6243e-01,  1.7337e-01, -4.2843e-02,\\n\",\n      \"           1.9555e-01, -7.0186e-02,  4.5234e-02, -2.6768e-02,  6.7001e-02,\\n\",\n      \"           1.4401e-01, -5.8669e-01,  6.6726e-01, -9.7634e-02, -4.4069e-01,\\n\",\n      \"           1.1374e-01, -4.2866e-02, -1.1746e-01, -2.3288e-01,  8.5537e-02,\\n\",\n      \"          -2.3746e-01, -3.1360e-01, -3.0154e-02, -2.1813e-01,  3.5808e-01,\\n\",\n      \"           2.4732e-01,  3.4604e-01,  1.8691e-01, -5.2340e-01, -7.8705e-02,\\n\",\n      \"          -3.5208e-01, -3.3275e-01,  3.2585e-01, -2.7377e-01,  4.6864e-01,\\n\",\n      \"          -4.8893e-01,  4.7856e-02,  4.0918e-01, -3.2458e-01],\\n\",\n      \"         [ 2.9272e-01, -2.2613e-01, -3.9943e-01,  7.3033e-01, -1.5350e-01,\\n\",\n      \"           6.4352e-02,  2.0583e-01,  4.9423e-01,  2.8296e-01, -3.0972e-01,\\n\",\n      \"          -5.8277e-03, -7.6154e-02, -3.7463e-02, -3.6751e-01,  4.3754e-01,\\n\",\n      \"           1.9655e-02,  3.1482e-01,  3.4366e-01,  1.3772e-01, -4.9082e-01,\\n\",\n      \"          -5.8955e-01,  5.5178e-02,  2.8124e-01,  2.5237e-01,  2.1010e-01,\\n\",\n      \"          -1.4519e-01, -3.1231e-02, -4.5927e-02,  8.4576e-02, -2.2813e-01,\\n\",\n      \"          -1.0999e-01, -4.7251e-02,  3.7033e-01,  3.2943e-01, -1.4418e-03,\\n\",\n      \"           9.7710e-02, -5.1259e-01,  8.1932e-01,  1.9363e-01,  2.2118e-01,\\n\",\n      \"           1.5377e-01,  5.8502e-01,  2.8674e-02, -1.4168e-01, -3.3884e-01,\\n\",\n      \"          -1.3351e-01,  2.3175e-01, -5.4281e-01,  1.1601e-01,  6.1183e-01,\\n\",\n      \"          -4.5140e-02, -2.5237e-01,  2.3752e-01, -5.1164e-01, -3.1370e-01,\\n\",\n      \"          -2.8405e-01, -1.4185e-01, -8.3332e-02, -2.2399e-01,  4.5315e-01,\\n\",\n      \"          -3.8700e-01, -3.3658e-01,  2.4828e-03, -1.1722e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4517e-02,  5.1353e-01,  2.7537e-01,  3.2463e-01, -6.7576e-02,\\n\",\n      \"          -2.0490e-01, -4.6915e-01,  1.5765e-01,  4.4066e-01,  2.8679e-01,\\n\",\n      \"           4.1518e-01, -4.7293e-01, -3.3223e-01,  9.0766e-02,  2.6712e-01,\\n\",\n      \"           1.4399e-01,  4.4340e-01, -4.1589e-01,  6.3286e-02, -6.5724e-01,\\n\",\n      \"          -9.8731e-02,  1.4927e-01,  2.3330e-01,  3.4253e-01, -8.3711e-02,\\n\",\n      \"          -4.2961e-02, -6.9909e-02,  9.9444e-02,  1.9790e-01, -1.3862e-01,\\n\",\n      \"           3.4126e-01, -4.7026e-01, -1.3669e-03,  3.1917e-01,  8.7192e-02,\\n\",\n      \"           1.7769e-01, -2.6164e-01,  5.8675e-01, -3.7114e-01, -4.1631e-01,\\n\",\n      \"          -9.7841e-02,  2.1348e-01, -7.5500e-03, -1.8236e-02,  1.9261e-03,\\n\",\n      \"           1.4379e-01, -6.9110e-02,  9.1750e-02,  1.8012e-01,  3.5871e-01,\\n\",\n      \"           1.0046e-01, -3.0280e-01, -2.0588e-02, -6.7416e-01, -9.4843e-02,\\n\",\n      \"          -3.6182e-01, -3.7487e-01,  2.4039e-01, -4.6122e-01,  6.9476e-01,\\n\",\n      \"          -4.5591e-01, -3.9084e-01, -5.6902e-02, -2.1766e-01],\\n\",\n      \"         [ 5.1123e-01, -4.0266e-01, -2.9377e-01,  4.1843e-01, -2.3979e-01,\\n\",\n      \"           2.6047e-02,  2.0101e-01, -1.8941e-01,  1.0405e-02, -1.2233e-01,\\n\",\n      \"           7.2300e-02, -2.1615e-01, -3.1784e-01, -3.4269e-01,  3.8687e-01,\\n\",\n      \"          -7.9252e-04, -9.5511e-02,  2.9611e-01,  1.8304e-01, -6.1154e-01,\\n\",\n      \"          -6.3995e-01, -6.1087e-02,  2.2301e-01,  2.3835e-01, -9.4064e-03,\\n\",\n      \"          -3.1463e-02,  5.0872e-01,  5.2994e-02,  1.4707e-01, -1.3801e-01,\\n\",\n      \"           1.6804e-01,  2.6023e-01, -1.6039e-03,  3.9684e-01, -8.6695e-02,\\n\",\n      \"          -1.2471e-01, -6.2766e-01,  5.4049e-01, -8.3060e-02, -9.4193e-02,\\n\",\n      \"           2.3309e-01, -2.3274e-01, -4.5998e-01, -4.2575e-02, -8.0004e-02,\\n\",\n      \"           1.0937e-01,  2.8545e-01, -5.2316e-01, -1.7083e-01,  5.1631e-01,\\n\",\n      \"          -2.0713e-01,  1.1943e-02,  1.9117e-01, -9.0481e-02, -1.7545e-01,\\n\",\n      \"           1.4447e-01, -6.1310e-01,  2.4947e-01, -3.2512e-01, -1.1674e-01,\\n\",\n      \"          -1.5464e-01,  8.5949e-02,  1.9173e-01, -1.8634e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.4599e-01,  3.4493e-01,  3.5540e-01,  5.9247e-01, -4.1207e-01,\\n\",\n      \"          -1.6579e-01, -4.8020e-01, -7.3714e-01,  4.8738e-01,  2.0807e-01,\\n\",\n      \"           3.0116e-01, -4.4130e-01, -4.2788e-01,  2.6977e-01, -2.3329e-01,\\n\",\n      \"           5.3776e-01,  4.9697e-01,  2.9906e-01,  2.7902e-01, -6.9022e-01,\\n\",\n      \"          -4.0519e-01, -1.4059e-01,  4.0009e-01,  3.3875e-01,  3.8020e-02,\\n\",\n      \"          -6.8647e-01,  5.3905e-01,  1.5797e-01, -3.5341e-01, -2.1889e-01,\\n\",\n      \"           6.5958e-01, -1.9601e-01,  5.0115e-01,  2.6124e-01, -3.4608e-01,\\n\",\n      \"          -8.9277e-02, -7.4167e-01,  6.1062e-01,  1.4346e-01, -2.8655e-01,\\n\",\n      \"          -2.5671e-01, -5.9121e-01, -5.0235e-01,  4.6546e-01,  1.5253e-01,\\n\",\n      \"           3.3492e-01, -1.8718e-01,  3.2432e-01,  4.7797e-01,  6.2427e-01,\\n\",\n      \"           1.1437e-02,  3.0348e-01,  1.3757e-01, -7.2873e-01, -2.9603e-01,\\n\",\n      \"           1.8765e-02, -5.9862e-01,  3.6728e-01,  5.7481e-01,  7.0923e-01,\\n\",\n      \"          -2.4748e-01, -9.4674e-02,  5.3589e-01, -6.6785e-01],\\n\",\n      \"         [ 3.1676e-01,  2.6778e-01,  6.5309e-02,  2.8887e-01, -1.7269e-01,\\n\",\n      \"          -4.3300e-02, -1.5170e-01,  4.5494e-03,  4.3829e-01,  3.1757e-01,\\n\",\n      \"           1.7886e-01, -6.4372e-01, -3.1612e-01, -3.3629e-01,  2.1333e-01,\\n\",\n      \"           2.4054e-01,  2.3956e-01, -2.2792e-02,  4.7846e-01, -6.9334e-01,\\n\",\n      \"          -2.4033e-01, -3.7174e-02,  2.3895e-02,  2.7962e-01,  2.3990e-01,\\n\",\n      \"           1.0133e-01,  3.8711e-01,  8.3111e-03,  1.7434e-01, -1.9475e-01,\\n\",\n      \"           3.4768e-01, -2.9952e-01, -8.9722e-02,  4.9720e-01,  6.0897e-02,\\n\",\n      \"           4.2339e-02, -2.8452e-01,  5.0351e-01, -3.4962e-01, -2.3853e-01,\\n\",\n      \"          -8.4488e-02,  7.0700e-02, -1.5170e-01,  1.3667e-01, -4.8259e-02,\\n\",\n      \"           2.4410e-01,  3.2302e-01, -4.5496e-02,  2.0975e-01,  5.4169e-01,\\n\",\n      \"          -1.7815e-01, -4.5798e-01, -1.8890e-02, -4.1377e-01, -1.3354e-03,\\n\",\n      \"          -2.2768e-01, -5.6263e-01,  1.5331e-01, -4.4642e-01,  5.5733e-01,\\n\",\n      \"          -2.8604e-01, -3.4812e-01, -3.6313e-01, -1.0117e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.3190e-01,  8.1577e-01,  2.3800e-01,  4.8075e-01, -2.7762e-01,\\n\",\n      \"          -7.0727e-01, -8.0229e-01, -7.6923e-01,  6.7816e-01,  2.7397e-01,\\n\",\n      \"          -1.8307e-02, -6.1159e-01, -5.0091e-01,  8.3182e-01, -4.9736e-01,\\n\",\n      \"           3.3217e-01, -2.1184e-01,  8.8089e-01,  7.3042e-01, -3.0091e-01,\\n\",\n      \"          -8.4643e-01, -1.7723e-01,  3.9327e-01,  3.5607e-01, -3.6149e-01,\\n\",\n      \"          -6.4001e-01,  2.5142e-01,  4.7756e-01, -1.8219e-01,  1.9411e-01,\\n\",\n      \"           8.4554e-01, -4.0670e-01,  2.2843e-01, -2.8213e-02, -1.6706e-01,\\n\",\n      \"           8.4338e-02, -6.9243e-01,  6.5162e-01,  2.2620e-01, -2.4377e-01,\\n\",\n      \"           6.3091e-01, -9.2143e-01, -5.2339e-01,  3.0346e-01, -6.8120e-01,\\n\",\n      \"           3.0847e-01, -3.0962e-01,  8.6166e-02,  5.2663e-01,  7.8582e-01,\\n\",\n      \"          -4.4179e-01,  7.1130e-01, -5.0122e-01, -8.2966e-01, -2.6635e-01,\\n\",\n      \"           5.9648e-02, -8.9259e-01,  7.4582e-01,  6.0832e-01,  4.5425e-01,\\n\",\n      \"          -7.7402e-01,  7.1262e-03,  5.1430e-01, -7.4709e-01],\\n\",\n      \"         [ 1.0309e-01,  1.4890e-01,  2.3418e-01,  5.6161e-01, -4.5344e-01,\\n\",\n      \"          -3.7399e-02, -2.9632e-01, -7.8586e-01,  4.6773e-01,  2.3163e-01,\\n\",\n      \"           1.4635e-01, -6.1039e-01, -4.2175e-01,  2.9848e-02, -2.7098e-01,\\n\",\n      \"           5.8869e-01,  3.3047e-01,  3.8213e-01,  5.6308e-01, -7.1158e-01,\\n\",\n      \"          -4.7782e-01, -2.6972e-01,  3.1826e-01,  3.0689e-01,  2.0002e-01,\\n\",\n      \"          -6.3196e-01,  6.7574e-01,  1.0718e-01, -3.5589e-01, -2.2234e-01,\\n\",\n      \"           6.5694e-01, -4.6705e-02,  4.4457e-01,  3.8695e-01, -4.0593e-01,\\n\",\n      \"          -1.4013e-01, -7.6718e-01,  5.5516e-01,  1.2624e-01, -1.6417e-01,\\n\",\n      \"          -2.5965e-01, -6.6241e-01, -5.8782e-01,  5.3524e-01,  1.1498e-01,\\n\",\n      \"           3.5718e-01,  2.6810e-02,  3.1688e-01,  5.0246e-01,  7.2960e-01,\\n\",\n      \"          -1.6614e-01,  2.5272e-01,  1.4311e-01, -5.7957e-01, -2.1543e-01,\\n\",\n      \"           1.1138e-01, -6.8110e-01,  3.2205e-01,  5.9080e-01,  6.2253e-01,\\n\",\n      \"          -1.1579e-01, -5.8518e-02,  5.1007e-01, -6.3510e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.3295e-01,  8.9806e-01,  1.3076e-01,  3.5989e-01, -1.5338e-01,\\n\",\n      \"          -7.3023e-01, -8.8205e-01, -7.8767e-01,  7.6649e-01,  2.6182e-01,\\n\",\n      \"          -7.9418e-02, -7.0422e-01, -5.5216e-01,  9.3353e-01, -6.1393e-01,\\n\",\n      \"           1.6090e-01, -4.1725e-01,  9.4148e-01,  8.8216e-01, -1.2415e-01,\\n\",\n      \"          -9.2694e-01, -2.1225e-01,  3.8735e-01,  3.5587e-01, -5.2650e-01,\\n\",\n      \"          -5.9547e-01,  3.4167e-03,  6.6310e-01, -1.2849e-01,  2.4384e-01,\\n\",\n      \"           8.9664e-01, -5.5139e-01,  3.2991e-02, -1.9388e-01, -2.2145e-03,\\n\",\n      \"           1.8390e-01, -6.3102e-01,  6.6637e-01,  2.8547e-01, -2.0640e-01,\\n\",\n      \"           7.5508e-01, -9.5772e-01, -4.9472e-01,  1.9963e-01, -8.3145e-01,\\n\",\n      \"           2.6752e-01, -3.2867e-01, -8.0532e-02,  5.5949e-01,  8.5466e-01,\\n\",\n      \"          -6.6808e-01,  7.9978e-01, -7.8695e-01, -8.5772e-01, -2.4548e-01,\\n\",\n      \"           9.2077e-02, -9.4609e-01,  8.4297e-01,  6.4095e-01,  4.2260e-01,\\n\",\n      \"          -8.5386e-01,  1.3420e-01,  4.6493e-01, -7.8761e-01],\\n\",\n      \"         [-4.0157e-01,  7.7822e-01,  1.5185e-01,  4.5991e-01, -2.9712e-01,\\n\",\n      \"          -6.5423e-01, -7.5150e-01, -8.0209e-01,  6.6695e-01,  2.9053e-01,\\n\",\n      \"          -6.2758e-02, -7.0725e-01, -4.9634e-01,  7.8107e-01, -5.0621e-01,\\n\",\n      \"           3.7759e-01, -2.7325e-01,  8.8842e-01,  8.2682e-01, -3.1178e-01,\\n\",\n      \"          -8.5566e-01, -2.9528e-01,  3.2213e-01,  3.4162e-01, -3.0355e-01,\\n\",\n      \"          -5.9389e-01,  3.5483e-01,  4.5676e-01, -1.7409e-01,  2.1121e-01,\\n\",\n      \"           8.4332e-01, -3.1843e-01,  1.7427e-01,  3.4608e-02, -1.8790e-01,\\n\",\n      \"           5.4708e-02, -7.1884e-01,  6.1022e-01,  2.1457e-01, -1.4149e-01,\\n\",\n      \"           6.2510e-01, -9.3106e-01, -5.6068e-01,  3.8099e-01, -6.8192e-01,\\n\",\n      \"           3.3177e-01, -1.8218e-01,  6.8974e-02,  5.4749e-01,  8.4259e-01,\\n\",\n      \"          -5.1681e-01,  7.0026e-01, -4.8958e-01, -7.6982e-01, -2.0763e-01,\\n\",\n      \"           1.3590e-01, -9.1580e-01,  7.2868e-01,  6.2468e-01,  3.9947e-01,\\n\",\n      \"          -7.5519e-01,  1.6911e-02,  4.8992e-01, -7.2295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-8.2138e-01,  9.1111e-01,  4.6997e-02,  2.4762e-01, -3.9914e-02,\\n\",\n      \"          -7.1967e-01, -9.0576e-01, -7.9947e-01,  8.0798e-01,  2.3534e-01,\\n\",\n      \"          -6.0936e-02, -7.4290e-01, -5.8363e-01,  9.5139e-01, -6.7749e-01,\\n\",\n      \"           2.1059e-02, -4.9246e-01,  9.4772e-01,  9.3094e-01, -3.5459e-02,\\n\",\n      \"          -9.4027e-01, -2.4467e-01,  3.8255e-01,  3.4837e-01, -5.9900e-01,\\n\",\n      \"          -5.5247e-01, -1.7942e-01,  7.5872e-01, -9.8738e-02,  2.1996e-01,\\n\",\n      \"           9.0884e-01, -6.1717e-01, -9.9001e-02, -2.7844e-01,  1.3646e-01,\\n\",\n      \"           2.4945e-01, -5.7759e-01,  6.7082e-01,  3.2138e-01, -1.7692e-01,\\n\",\n      \"           7.5860e-01, -9.6094e-01, -4.4573e-01,  1.0738e-01, -8.5018e-01,\\n\",\n      \"           2.2871e-01, -3.3403e-01, -2.0607e-01,  5.8237e-01,  8.7589e-01,\\n\",\n      \"          -7.6794e-01,  8.3095e-01, -8.9387e-01, -8.6390e-01, -2.3083e-01,\\n\",\n      \"           1.1904e-01, -9.5598e-01,  8.7078e-01,  6.6721e-01,  4.1586e-01,\\n\",\n      \"          -8.7196e-01,  1.8279e-01,  4.1627e-01, -8.1426e-01],\\n\",\n      \"         [-6.7484e-01,  8.9251e-01,  7.1709e-02,  3.4437e-01, -1.6517e-01,\\n\",\n      \"          -7.1140e-01, -8.6538e-01, -8.0934e-01,  7.5987e-01,  2.7822e-01,\\n\",\n      \"          -8.6837e-02, -7.4919e-01, -5.5023e-01,  9.2409e-01, -6.1562e-01,\\n\",\n      \"           1.9981e-01, -4.5086e-01,  9.4142e-01,  9.1322e-01, -1.2868e-01,\\n\",\n      \"          -9.2935e-01, -3.2165e-01,  3.2718e-01,  3.4869e-01, -5.0915e-01,\\n\",\n      \"          -5.5380e-01,  7.4805e-02,  6.5267e-01, -1.2531e-01,  2.6391e-01,\\n\",\n      \"           8.9663e-01, -5.0882e-01, -1.2541e-02, -1.7065e-01, -5.5295e-03,\\n\",\n      \"           1.6423e-01, -6.5370e-01,  6.3765e-01,  2.7780e-01, -1.1735e-01,\\n\",\n      \"           7.5169e-01, -9.5978e-01, -5.0727e-01,  2.6838e-01, -8.2897e-01,\\n\",\n      \"           2.8772e-01, -2.4363e-01, -9.4374e-02,  5.7713e-01,  8.8612e-01,\\n\",\n      \"          -6.9917e-01,  7.9903e-01, -7.8083e-01, -8.3379e-01, -2.0349e-01,\\n\",\n      \"           1.5778e-01, -9.5314e-01,  8.3813e-01,  6.5658e-01,  4.0131e-01,\\n\",\n      \"          -8.4993e-01,  1.4095e-01,  4.5086e-01, -7.6913e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[ 5,  4, 33,  3,  2,  0,  0],\\n\",\n      \"        [ 6,  7, 14,  3,  2,  0,  0]])\\n\",\n      \"tensor([[ 8,  4, 25,  3,  2,  0,  0],\\n\",\n      \"        [ 7,  5, 14,  3,  2,  0,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-4.3670e-01,  9.4777e-01, -1.7385e-01,  4.9579e-01, -6.9504e-01,\\n\",\n      \"          -5.9010e-01, -9.2350e-01, -8.6755e-01,  8.9859e-01, -1.8200e-01,\\n\",\n      \"           3.3999e-02, -8.5976e-01, -3.9412e-01,  9.6261e-01, -3.7107e-01,\\n\",\n      \"           5.0054e-01,  6.1789e-02,  9.6358e-01,  8.6419e-01,  9.0620e-01,\\n\",\n      \"          -5.8370e-01, -5.3013e-01,  3.7285e-01,  7.0841e-01,  3.8898e-01,\\n\",\n      \"          -6.7260e-01, -1.5048e-01,  1.6080e-01, -5.2752e-01, -2.0620e-02,\\n\",\n      \"           1.9427e-01, -1.2924e-02,  9.0134e-01,  3.3173e-01, -4.3776e-02,\\n\",\n      \"           3.6167e-01,  5.4622e-01,  5.8385e-01,  4.2448e-02, -5.1339e-01,\\n\",\n      \"           3.5934e-01, -9.5561e-01,  8.9173e-02,  2.7137e-02, -9.2118e-01,\\n\",\n      \"           6.1585e-01, -5.3514e-01, -6.8271e-01,  7.9391e-01,  9.3076e-01,\\n\",\n      \"          -6.0840e-01,  9.6516e-01, -9.0046e-01, -3.4634e-01, -4.8159e-01,\\n\",\n      \"           2.1147e-01, -8.6776e-01,  8.8884e-01,  7.4880e-01,  3.0338e-02,\\n\",\n      \"          -9.3489e-01,  7.8679e-01,  5.7054e-01, -8.7889e-01],\\n\",\n      \"         [-4.4147e-01,  9.5890e-01, -1.5506e-01,  4.3114e-01, -7.2710e-01,\\n\",\n      \"          -5.4329e-01, -9.1955e-01, -8.3869e-01,  9.0667e-01, -2.3850e-01,\\n\",\n      \"           1.0897e-03, -8.6243e-01, -3.2419e-01,  9.6832e-01, -3.7585e-01,\\n\",\n      \"           5.0837e-01, -4.8584e-02,  9.6061e-01,  8.2564e-01,  9.1615e-01,\\n\",\n      \"          -6.6934e-01, -6.0196e-01,  4.3660e-01,  7.3187e-01,  3.2358e-01,\\n\",\n      \"          -7.2452e-01, -4.9672e-02,  2.3647e-01, -5.0548e-01,  1.0444e-01,\\n\",\n      \"           8.8377e-02,  5.1788e-02,  8.8942e-01,  3.7130e-01,  6.9498e-04,\\n\",\n      \"           3.4704e-01,  5.2117e-01,  5.2036e-01,  4.2114e-02, -5.6441e-01,\\n\",\n      \"           4.6022e-01, -9.6157e-01,  4.5270e-02,  7.5107e-02, -9.3466e-01,\\n\",\n      \"           7.0916e-01, -5.9698e-01, -6.2150e-01,  8.7624e-01,  9.4506e-01,\\n\",\n      \"          -6.6110e-01,  9.7474e-01, -8.9976e-01, -4.1362e-01, -4.6884e-01,\\n\",\n      \"           3.5543e-01, -8.6955e-01,  9.0149e-01,  7.2950e-01,  3.7875e-01,\\n\",\n      \"          -9.2645e-01,  7.9640e-01,  5.8495e-01, -9.1000e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2890,  0.1556, -0.2685,  0.0012, -0.0716,  0.0172, -0.1474,\\n\",\n      \"           0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724,  0.3325,\\n\",\n      \"           0.1116, -0.5082,  0.3477,  0.2603,  0.0068, -0.6025, -0.5775,\\n\",\n      \"          -0.0787,  0.1094, -0.0924,  0.0407,  0.0145,  0.0717,  0.2579,\\n\",\n      \"          -0.0661, -0.1149,  0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\\n\",\n      \"          -0.1044, -0.1947,  0.1145, -0.0769, -0.3539,  0.1510,  0.6411,\\n\",\n      \"          -0.0553,  0.0845, -0.6039, -0.3417,  0.3798, -0.1020,  0.0173,\\n\",\n      \"           0.3886,  0.1477, -0.3305, -0.2986, -0.4481, -0.4462,  0.1228,\\n\",\n      \"          -0.3850,  0.1912,  0.0674, -0.2659,  0.2090,  0.1939,  0.2671,\\n\",\n      \"          -0.3651],\\n\",\n      \"         [-0.0710,  0.3148,  0.1467,  0.3958, -0.3162,  0.1582,  0.0101,\\n\",\n      \"          -0.0057, -0.0248, -0.2350,  0.3197, -0.1170, -0.5608, -0.0145,\\n\",\n      \"           0.3787, -0.2327,  0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\\n\",\n      \"          -0.2015,  0.5406,  0.2518, -0.4450, -0.4262, -0.0457,  0.5708,\\n\",\n      \"          -0.1106,  0.0239,  0.1353,  0.4127, -0.5620,  0.5556,  0.1576,\\n\",\n      \"           0.0743, -0.3683,  0.6607, -0.4821,  0.2784, -0.1441,  0.2792,\\n\",\n      \"          -0.5013, -0.0068,  0.0980, -0.2505, -0.3301,  0.1433, -0.0295,\\n\",\n      \"           0.3410,  0.2697,  0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\\n\",\n      \"           0.0209,  0.3723, -0.1770,  0.1575, -0.4842,  0.3186,  0.4981,\\n\",\n      \"          -0.3869]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2805, -0.0565, -0.5347,  0.7814, -0.1960, -0.1144,  0.0224,\\n\",\n      \"           0.5690,  0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\\n\",\n      \"           0.4451,  0.1339,  0.4140,  0.4275,  0.2901, -0.5719, -0.6537,\\n\",\n      \"           0.0535,  0.3236,  0.4697,  0.2989, -0.2088,  0.1031,  0.0537,\\n\",\n      \"          -0.0234, -0.2308,  0.0661, -0.0290,  0.5174,  0.2255, -0.0898,\\n\",\n      \"           0.0559, -0.5531,  0.8694,  0.2726,  0.3303,  0.0954,  0.6133,\\n\",\n      \"          -0.0627, -0.2125, -0.4030, -0.3193,  0.2573, -0.6037,  0.1702,\\n\",\n      \"           0.6712,  0.0243, -0.0894,  0.1717, -0.6346, -0.4322, -0.1709,\\n\",\n      \"          -0.2448, -0.0380, -0.2380,  0.5061, -0.5416, -0.4742,  0.0817,\\n\",\n      \"          -0.2495],\\n\",\n      \"         [-0.2146,  0.3102,  0.3063,  0.3200, -0.6042, -0.6355,  0.0326,\\n\",\n      \"           0.1614, -0.1538, -0.6354,  0.2530, -0.2854, -0.6507, -0.2132,\\n\",\n      \"           0.0245,  0.0711,  0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\\n\",\n      \"          -0.2030,  0.5062,  0.7766, -0.2168, -0.6735,  0.7655,  0.4879,\\n\",\n      \"           0.4480,  0.3375,  0.1140,  0.6309, -0.3277,  0.8274, -0.4674,\\n\",\n      \"           0.1451, -0.2880,  0.6146, -0.5080, -0.0806,  0.4445, -0.4506,\\n\",\n      \"          -0.7093,  0.2397,  0.1345, -0.2954, -0.3532,  0.0559,  0.0268,\\n\",\n      \"           0.1805,  0.3976,  0.5215, -0.2548, -0.6891, -0.3597,  0.7438,\\n\",\n      \"           0.2640, -0.0562, -0.6029, -0.1483, -0.6813,  0.0196,  0.5351,\\n\",\n      \"          -0.0903]],\\n\",\n      \"\\n\",\n      \"        [[-0.2415,  0.7097,  0.0926,  0.6104, -0.2053,  0.0463, -0.2585,\\n\",\n      \"           0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\\n\",\n      \"           0.4182, -0.0776,  0.0449,  0.0138,  0.1784, -0.5369,  0.0192,\\n\",\n      \"          -0.2766, -0.2416,  0.3454,  0.4599,  0.2200, -0.0211,  0.2726,\\n\",\n      \"          -0.1927,  0.0486,  0.1538, -0.1676,  0.2175, -0.2153,  0.1954,\\n\",\n      \"          -0.5780, -0.2447,  0.5633,  0.2046,  0.0098,  0.1590,  0.6091,\\n\",\n      \"           0.2573, -0.0760,  0.0456, -0.0988,  0.1492, -0.1859, -0.0842,\\n\",\n      \"           0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\\n\",\n      \"           0.3826,  0.0546, -0.1723,  0.4627, -0.1276, -0.2957, -0.1364,\\n\",\n      \"          -0.5385],\\n\",\n      \"         [-0.2605,  0.3742,  0.3780,  0.3882, -0.4157, -0.1474, -0.3459,\\n\",\n      \"          -0.1452,  0.2388, -0.1367, -0.2496, -0.0807, -0.5850,  0.3555,\\n\",\n      \"           0.1489,  0.2841,  0.3549, -0.0793,  0.2325, -0.4568, -0.4790,\\n\",\n      \"          -0.4872,  0.6107,  0.4140, -0.2444, -0.6675,  0.2835,  0.7947,\\n\",\n      \"           0.1005,  0.4331,  0.2850,  0.3347, -0.2289,  0.5438, -0.5147,\\n\",\n      \"          -0.3536, -0.2994,  0.5414,  0.2631, -0.1074,  0.5495, -0.6653,\\n\",\n      \"          -0.5549,  0.1603,  0.0260, -0.1220, -0.3569,  0.2244,  0.4713,\\n\",\n      \"           0.0967, -0.2427,  0.5279, -0.4483, -0.8291, -0.1444,  0.7616,\\n\",\n      \"          -0.1760,  0.5977, -0.0726, -0.2546, -0.8026, -0.1861,  0.8048,\\n\",\n      \"          -0.8177]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0101,  0.7368,  0.1353,  0.3623, -0.1673, -0.1695, -0.4292,\\n\",\n      \"           0.3395,  0.4179,  0.2769,  0.0541, -0.6404, -0.2328, -0.2319,\\n\",\n      \"           0.3876,  0.3352,  0.4574, -0.0993,  0.5880, -0.7071,  0.2521,\\n\",\n      \"          -0.2288, -0.1628,  0.3605,  0.6020,  0.2196, -0.0099,  0.2126,\\n\",\n      \"          -0.1068, -0.0631,  0.4057, -0.4593,  0.0754,  0.1717,  0.1265,\\n\",\n      \"          -0.2682, -0.0946,  0.5886, -0.2587, -0.1557, -0.1058,  0.6473,\\n\",\n      \"           0.2292,  0.1324, -0.1269,  0.0728,  0.2484, -0.0247,  0.2468,\\n\",\n      \"           0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\\n\",\n      \"          -0.2293,  0.0728, -0.3530,  0.7944, -0.2957, -0.5119, -0.4419,\\n\",\n      \"          -0.3717],\\n\",\n      \"         [ 0.0113,  0.7009,  0.3669,  0.2339, -0.2667, -0.1856, -0.5395,\\n\",\n      \"           0.1107,  0.5073,  0.2647, -0.0704, -0.6602, -0.5361,  0.2408,\\n\",\n      \"           0.2817,  0.3950,  0.5680, -0.2055,  0.5550, -0.6901, -0.1959,\\n\",\n      \"          -0.4332,  0.2280,  0.4189,  0.2258, -0.4593,  0.2202,  0.5288,\\n\",\n      \"           0.0738,  0.2705,  0.4425, -0.4310, -0.2240,  0.4527, -0.2092,\\n\",\n      \"          -0.0978, -0.1509,  0.5826, -0.2875, -0.2302,  0.1348, -0.2252,\\n\",\n      \"          -0.3774,  0.2723, -0.1784,  0.1374, -0.2052,  0.2458,  0.6483,\\n\",\n      \"           0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659,  0.2802,\\n\",\n      \"          -0.4677,  0.4884, -0.2397,  0.6836, -0.7437, -0.4434,  0.2398,\\n\",\n      \"          -0.6909]],\\n\",\n      \"\\n\",\n      \"        [[-0.1499,  0.5642,  0.2436,  0.6794, -0.5401, -0.1918, -0.4804,\\n\",\n      \"          -0.7993,  0.5079,  0.1944,  0.1235, -0.6337, -0.3838,  0.1651,\\n\",\n      \"          -0.0226,  0.7056,  0.5073,  0.4846,  0.7075, -0.7249, -0.5029,\\n\",\n      \"          -0.3810,  0.2479,  0.3878,  0.3729, -0.7414,  0.6079,  0.2253,\\n\",\n      \"          -0.5409, -0.1647,  0.7346, -0.2070,  0.5766,  0.1296, -0.4318,\\n\",\n      \"          -0.1783, -0.7637,  0.6630,  0.2749, -0.0853, -0.2496, -0.5892,\\n\",\n      \"          -0.4976,  0.5714,  0.0305,  0.2431, -0.0632,  0.2296,  0.5531,\\n\",\n      \"           0.7012, -0.2193,  0.3598, -0.0862, -0.7312, -0.3638,  0.1418,\\n\",\n      \"          -0.6391,  0.3536,  0.7525,  0.7845, -0.1925, -0.2130,  0.6129,\\n\",\n      \"          -0.8210],\\n\",\n      \"         [-0.1430,  0.4985,  0.4111,  0.5815, -0.5709, -0.1385, -0.5552,\\n\",\n      \"          -0.6759,  0.5509,  0.1574,  0.0644, -0.6438, -0.5627,  0.4289,\\n\",\n      \"          -0.0483,  0.6774,  0.5765,  0.4106,  0.6559, -0.7302, -0.6284,\\n\",\n      \"          -0.4817,  0.4068,  0.4327,  0.1650, -0.8455,  0.6862,  0.4201,\\n\",\n      \"          -0.4453,  0.0642,  0.7283, -0.1803,  0.4315,  0.2034, -0.5437,\\n\",\n      \"          -0.1295, -0.7425,  0.6695,  0.2883, -0.1398, -0.0725, -0.7465,\\n\",\n      \"          -0.7075,  0.5969,  0.0220,  0.3139, -0.2831,  0.3638,  0.7920,\\n\",\n      \"           0.7428, -0.2189,  0.4677, -0.2263, -0.8023, -0.3903,  0.4736,\\n\",\n      \"          -0.7263,  0.5289,  0.7474,  0.7225, -0.5192, -0.0853,  0.7310,\\n\",\n      \"          -0.8602]],\\n\",\n      \"\\n\",\n      \"        [[-0.4815,  0.9126,  0.1738,  0.5568, -0.4262, -0.7068, -0.8695,\\n\",\n      \"          -0.8301,  0.7604,  0.2362, -0.1668, -0.7793, -0.5133,  0.8693,\\n\",\n      \"          -0.2823,  0.5911, -0.0471,  0.9338,  0.9188, -0.4554, -0.9207,\\n\",\n      \"          -0.4080,  0.2725,  0.4755, -0.1294, -0.7142,  0.3658,  0.4429,\\n\",\n      \"          -0.4493,  0.1301,  0.8900, -0.3870,  0.3769, -0.2069, -0.1930,\\n\",\n      \"           0.1234, -0.7184,  0.7192,  0.3644, -0.1044,  0.7195, -0.9342,\\n\",\n      \"          -0.5897,  0.3508, -0.8337,  0.2371, -0.2133, -0.1291,  0.6067,\\n\",\n      \"           0.8579, -0.5941,  0.7763, -0.7359, -0.8590, -0.3807,  0.1878,\\n\",\n      \"          -0.9442,  0.7712,  0.7813,  0.6701, -0.8621,  0.3011,  0.6963,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [-0.4735,  0.9112,  0.3157,  0.4688, -0.4490, -0.6760, -0.8831,\\n\",\n      \"          -0.7476,  0.7855,  0.2046, -0.1825, -0.7881, -0.6302,  0.9075,\\n\",\n      \"          -0.2902,  0.5753,  0.0178,  0.9260,  0.9011, -0.4670, -0.9303,\\n\",\n      \"          -0.4978,  0.4121,  0.5032, -0.2101, -0.8159,  0.4151,  0.5686,\\n\",\n      \"          -0.3979,  0.2328,  0.8864, -0.3879,  0.2711, -0.1999, -0.2824,\\n\",\n      \"           0.1645, -0.7031,  0.7292,  0.3743, -0.1499,  0.7552, -0.9468,\\n\",\n      \"          -0.7001,  0.3675, -0.8345,  0.2998, -0.3379, -0.0426,  0.8084,\\n\",\n      \"           0.8870, -0.5983,  0.7973, -0.7773, -0.8863, -0.4013,  0.4691,\\n\",\n      \"          -0.9512,  0.8066,  0.7752,  0.6545, -0.9121,  0.3427,  0.7675,\\n\",\n      \"          -0.8953]],\\n\",\n      \"\\n\",\n      \"        [[-0.6765,  0.9525,  0.1030,  0.4227, -0.3215, -0.7217, -0.9419,\\n\",\n      \"          -0.8446,  0.8546,  0.2388, -0.2342, -0.8509, -0.6089,  0.9639,\\n\",\n      \"          -0.4239,  0.4967, -0.2184,  0.9636,  0.9689, -0.3183, -0.9730,\\n\",\n      \"          -0.4344,  0.2963,  0.5202, -0.3317, -0.6881,  0.1724,  0.5905,\\n\",\n      \"          -0.4398,  0.1902,  0.9251, -0.5308,  0.2235, -0.3505,  0.0103,\\n\",\n      \"           0.2907, -0.6651,  0.7546,  0.4169, -0.1121,  0.8568, -0.9631,\\n\",\n      \"          -0.5948,  0.1809, -0.9420,  0.2237, -0.2563, -0.3533,  0.6473,\\n\",\n      \"           0.9275, -0.7550,  0.8779, -0.9219, -0.8924, -0.3938,  0.2219,\\n\",\n      \"          -0.9732,  0.8776,  0.8041,  0.6842, -0.9517,  0.4709,  0.7102,\\n\",\n      \"          -0.9001],\\n\",\n      \"         [-0.6757,  0.9530,  0.2174,  0.3443, -0.3374, -0.7043, -0.9467,\\n\",\n      \"          -0.7903,  0.8670,  0.2115, -0.2482, -0.8579, -0.6793,  0.9696,\\n\",\n      \"          -0.4243,  0.4866, -0.1757,  0.9624,  0.9640, -0.3296, -0.9740,\\n\",\n      \"          -0.5149,  0.4178,  0.5340, -0.3605, -0.7855,  0.2042,  0.6710,\\n\",\n      \"          -0.4170,  0.2421,  0.9241, -0.5300,  0.1449, -0.3548, -0.0612,\\n\",\n      \"           0.3213, -0.6540,  0.7647,  0.4227, -0.1528,  0.8663, -0.9637,\\n\",\n      \"          -0.6518,  0.1862, -0.9404,  0.2761, -0.3477, -0.3001,  0.8170,\\n\",\n      \"           0.9398, -0.7614,  0.8840, -0.9329, -0.9017, -0.4097,  0.4649,\\n\",\n      \"          -0.9736,  0.8814,  0.7989,  0.6698, -0.9634,  0.4825,  0.7578,\\n\",\n      \"          -0.9150]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([8, 7])\\n\",\n      \"dec_state: tensor([[[-0.3375,  0.5665, -0.1433,  0.5329, -0.4554, -0.2751, -0.8289,\\n\",\n      \"          -0.7521,  0.6565, -0.6075, -0.4157, -0.4379, -0.2471,  0.9372,\\n\",\n      \"          -0.2907,  0.1801,  0.3554,  0.7907,  0.5051,  0.8094,  0.3714,\\n\",\n      \"          -0.4722,  0.0097,  0.7927,  0.4571, -0.7646,  0.6370,  0.3720,\\n\",\n      \"          -0.7770,  0.4116,  0.1079,  0.0643,  0.8859,  0.5114, -0.5547,\\n\",\n      \"          -0.2622,  0.6345,  0.5843, -0.0082,  0.1076, -0.3089, -0.4516,\\n\",\n      \"           0.0729, -0.0102, -0.6752,  0.4295, -0.5219, -0.4375,  0.5231,\\n\",\n      \"           0.8968,  0.2725,  0.9456, -0.9242,  0.3015, -0.4931,  0.1808,\\n\",\n      \"          -0.6580,  0.4520,  0.6472, -0.7273, -0.8115,  0.6945,  0.3942,\\n\",\n      \"          -0.4917],\\n\",\n      \"         [-0.4663,  0.9622, -0.4438,  0.8144, -0.2453, -0.5469, -0.8319,\\n\",\n      \"          -0.7853,  0.2960, -0.4449, -0.0732, -0.9767,  0.0172,  0.9705,\\n\",\n      \"          -0.5082,  0.3742,  0.8233,  0.5850, -0.7617,  0.8914,  0.4490,\\n\",\n      \"          -0.8944, -0.6429,  0.9095, -0.1752, -0.6350,  0.1890, -0.6082,\\n\",\n      \"          -0.7683, -0.8908, -0.5094,  0.4696,  0.7839,  0.3915, -0.6233,\\n\",\n      \"           0.7855, -0.8309, -0.6009,  0.8978,  0.4729,  0.6577, -0.6154,\\n\",\n      \"           0.1481,  0.6972, -0.8542, -0.6398, -0.4737, -0.3118,  0.8691,\\n\",\n      \"           0.9563,  0.4222,  0.9727,  0.0492, -0.7655, -0.9177, -0.4357,\\n\",\n      \"          -0.7375,  0.9412,  0.0720, -0.8721, -0.8480,  0.9158, -0.2819,\\n\",\n      \"           0.7720]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2890,  0.1556, -0.2685,  0.0012, -0.0716,  0.0172, -0.1474,\\n\",\n      \"           0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724,  0.3325,\\n\",\n      \"           0.1116, -0.5082,  0.3477,  0.2603,  0.0068, -0.6025, -0.5775,\\n\",\n      \"          -0.0787,  0.1094, -0.0924,  0.0407,  0.0145,  0.0717,  0.2579,\\n\",\n      \"          -0.0661, -0.1149,  0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\\n\",\n      \"          -0.1044, -0.1947,  0.1145, -0.0769, -0.3539,  0.1510,  0.6411,\\n\",\n      \"          -0.0553,  0.0845, -0.6039, -0.3417,  0.3798, -0.1020,  0.0173,\\n\",\n      \"           0.3886,  0.1477, -0.3305, -0.2986, -0.4481, -0.4462,  0.1228,\\n\",\n      \"          -0.3850,  0.1912,  0.0674, -0.2659,  0.2090,  0.1939,  0.2671,\\n\",\n      \"          -0.3651],\\n\",\n      \"         [-0.0710,  0.3148,  0.1467,  0.3958, -0.3162,  0.1582,  0.0101,\\n\",\n      \"          -0.0057, -0.0248, -0.2350,  0.3197, -0.1170, -0.5608, -0.0145,\\n\",\n      \"           0.3787, -0.2327,  0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\\n\",\n      \"          -0.2015,  0.5406,  0.2518, -0.4450, -0.4262, -0.0457,  0.5708,\\n\",\n      \"          -0.1106,  0.0239,  0.1353,  0.4127, -0.5620,  0.5556,  0.1576,\\n\",\n      \"           0.0743, -0.3683,  0.6607, -0.4821,  0.2784, -0.1441,  0.2792,\\n\",\n      \"          -0.5013, -0.0068,  0.0980, -0.2505, -0.3301,  0.1433, -0.0295,\\n\",\n      \"           0.3410,  0.2697,  0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\\n\",\n      \"           0.0209,  0.3723, -0.1770,  0.1575, -0.4842,  0.3186,  0.4981,\\n\",\n      \"          -0.3869]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2805, -0.0565, -0.5347,  0.7814, -0.1960, -0.1144,  0.0224,\\n\",\n      \"           0.5690,  0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\\n\",\n      \"           0.4451,  0.1339,  0.4140,  0.4275,  0.2901, -0.5719, -0.6537,\\n\",\n      \"           0.0535,  0.3236,  0.4697,  0.2989, -0.2088,  0.1031,  0.0537,\\n\",\n      \"          -0.0234, -0.2308,  0.0661, -0.0290,  0.5174,  0.2255, -0.0898,\\n\",\n      \"           0.0559, -0.5531,  0.8694,  0.2726,  0.3303,  0.0954,  0.6133,\\n\",\n      \"          -0.0627, -0.2125, -0.4030, -0.3193,  0.2573, -0.6037,  0.1702,\\n\",\n      \"           0.6712,  0.0243, -0.0894,  0.1717, -0.6346, -0.4322, -0.1709,\\n\",\n      \"          -0.2448, -0.0380, -0.2380,  0.5061, -0.5416, -0.4742,  0.0817,\\n\",\n      \"          -0.2495],\\n\",\n      \"         [-0.2146,  0.3102,  0.3063,  0.3200, -0.6042, -0.6355,  0.0326,\\n\",\n      \"           0.1614, -0.1538, -0.6354,  0.2530, -0.2854, -0.6507, -0.2132,\\n\",\n      \"           0.0245,  0.0711,  0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\\n\",\n      \"          -0.2030,  0.5062,  0.7766, -0.2168, -0.6735,  0.7655,  0.4879,\\n\",\n      \"           0.4480,  0.3375,  0.1140,  0.6309, -0.3277,  0.8274, -0.4674,\\n\",\n      \"           0.1451, -0.2880,  0.6146, -0.5080, -0.0806,  0.4445, -0.4506,\\n\",\n      \"          -0.7093,  0.2397,  0.1345, -0.2954, -0.3532,  0.0559,  0.0268,\\n\",\n      \"           0.1805,  0.3976,  0.5215, -0.2548, -0.6891, -0.3597,  0.7438,\\n\",\n      \"           0.2640, -0.0562, -0.6029, -0.1483, -0.6813,  0.0196,  0.5351,\\n\",\n      \"          -0.0903]],\\n\",\n      \"\\n\",\n      \"        [[-0.2415,  0.7097,  0.0926,  0.6104, -0.2053,  0.0463, -0.2585,\\n\",\n      \"           0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\\n\",\n      \"           0.4182, -0.0776,  0.0449,  0.0138,  0.1784, -0.5369,  0.0192,\\n\",\n      \"          -0.2766, -0.2416,  0.3454,  0.4599,  0.2200, -0.0211,  0.2726,\\n\",\n      \"          -0.1927,  0.0486,  0.1538, -0.1676,  0.2175, -0.2153,  0.1954,\\n\",\n      \"          -0.5780, -0.2447,  0.5633,  0.2046,  0.0098,  0.1590,  0.6091,\\n\",\n      \"           0.2573, -0.0760,  0.0456, -0.0988,  0.1492, -0.1859, -0.0842,\\n\",\n      \"           0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\\n\",\n      \"           0.3826,  0.0546, -0.1723,  0.4627, -0.1276, -0.2957, -0.1364,\\n\",\n      \"          -0.5385],\\n\",\n      \"         [-0.2605,  0.3742,  0.3780,  0.3882, -0.4157, -0.1474, -0.3459,\\n\",\n      \"          -0.1452,  0.2388, -0.1367, -0.2496, -0.0807, -0.5850,  0.3555,\\n\",\n      \"           0.1489,  0.2841,  0.3549, -0.0793,  0.2325, -0.4568, -0.4790,\\n\",\n      \"          -0.4872,  0.6107,  0.4140, -0.2444, -0.6675,  0.2835,  0.7947,\\n\",\n      \"           0.1005,  0.4331,  0.2850,  0.3347, -0.2289,  0.5438, -0.5147,\\n\",\n      \"          -0.3536, -0.2994,  0.5414,  0.2631, -0.1074,  0.5495, -0.6653,\\n\",\n      \"          -0.5549,  0.1603,  0.0260, -0.1220, -0.3569,  0.2244,  0.4713,\\n\",\n      \"           0.0967, -0.2427,  0.5279, -0.4483, -0.8291, -0.1444,  0.7616,\\n\",\n      \"          -0.1760,  0.5977, -0.0726, -0.2546, -0.8026, -0.1861,  0.8048,\\n\",\n      \"          -0.8177]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0101,  0.7368,  0.1353,  0.3623, -0.1673, -0.1695, -0.4292,\\n\",\n      \"           0.3395,  0.4179,  0.2769,  0.0541, -0.6404, -0.2328, -0.2319,\\n\",\n      \"           0.3876,  0.3352,  0.4574, -0.0993,  0.5880, -0.7071,  0.2521,\\n\",\n      \"          -0.2288, -0.1628,  0.3605,  0.6020,  0.2196, -0.0099,  0.2126,\\n\",\n      \"          -0.1068, -0.0631,  0.4057, -0.4593,  0.0754,  0.1717,  0.1265,\\n\",\n      \"          -0.2682, -0.0946,  0.5886, -0.2587, -0.1557, -0.1058,  0.6473,\\n\",\n      \"           0.2292,  0.1324, -0.1269,  0.0728,  0.2484, -0.0247,  0.2468,\\n\",\n      \"           0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\\n\",\n      \"          -0.2293,  0.0728, -0.3530,  0.7944, -0.2957, -0.5119, -0.4419,\\n\",\n      \"          -0.3717],\\n\",\n      \"         [ 0.0113,  0.7009,  0.3669,  0.2339, -0.2667, -0.1856, -0.5395,\\n\",\n      \"           0.1107,  0.5073,  0.2647, -0.0704, -0.6602, -0.5361,  0.2408,\\n\",\n      \"           0.2817,  0.3950,  0.5680, -0.2055,  0.5550, -0.6901, -0.1959,\\n\",\n      \"          -0.4332,  0.2280,  0.4189,  0.2258, -0.4593,  0.2202,  0.5288,\\n\",\n      \"           0.0738,  0.2705,  0.4425, -0.4310, -0.2240,  0.4527, -0.2092,\\n\",\n      \"          -0.0978, -0.1509,  0.5826, -0.2875, -0.2302,  0.1348, -0.2252,\\n\",\n      \"          -0.3774,  0.2723, -0.1784,  0.1374, -0.2052,  0.2458,  0.6483,\\n\",\n      \"           0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659,  0.2802,\\n\",\n      \"          -0.4677,  0.4884, -0.2397,  0.6836, -0.7437, -0.4434,  0.2398,\\n\",\n      \"          -0.6909]],\\n\",\n      \"\\n\",\n      \"        [[-0.1499,  0.5642,  0.2436,  0.6794, -0.5401, -0.1918, -0.4804,\\n\",\n      \"          -0.7993,  0.5079,  0.1944,  0.1235, -0.6337, -0.3838,  0.1651,\\n\",\n      \"          -0.0226,  0.7056,  0.5073,  0.4846,  0.7075, -0.7249, -0.5029,\\n\",\n      \"          -0.3810,  0.2479,  0.3878,  0.3729, -0.7414,  0.6079,  0.2253,\\n\",\n      \"          -0.5409, -0.1647,  0.7346, -0.2070,  0.5766,  0.1296, -0.4318,\\n\",\n      \"          -0.1783, -0.7637,  0.6630,  0.2749, -0.0853, -0.2496, -0.5892,\\n\",\n      \"          -0.4976,  0.5714,  0.0305,  0.2431, -0.0632,  0.2296,  0.5531,\\n\",\n      \"           0.7012, -0.2193,  0.3598, -0.0862, -0.7312, -0.3638,  0.1418,\\n\",\n      \"          -0.6391,  0.3536,  0.7525,  0.7845, -0.1925, -0.2130,  0.6129,\\n\",\n      \"          -0.8210],\\n\",\n      \"         [-0.1430,  0.4985,  0.4111,  0.5815, -0.5709, -0.1385, -0.5552,\\n\",\n      \"          -0.6759,  0.5509,  0.1574,  0.0644, -0.6438, -0.5627,  0.4289,\\n\",\n      \"          -0.0483,  0.6774,  0.5765,  0.4106,  0.6559, -0.7302, -0.6284,\\n\",\n      \"          -0.4817,  0.4068,  0.4327,  0.1650, -0.8455,  0.6862,  0.4201,\\n\",\n      \"          -0.4453,  0.0642,  0.7283, -0.1803,  0.4315,  0.2034, -0.5437,\\n\",\n      \"          -0.1295, -0.7425,  0.6695,  0.2883, -0.1398, -0.0725, -0.7465,\\n\",\n      \"          -0.7075,  0.5969,  0.0220,  0.3139, -0.2831,  0.3638,  0.7920,\\n\",\n      \"           0.7428, -0.2189,  0.4677, -0.2263, -0.8023, -0.3903,  0.4736,\\n\",\n      \"          -0.7263,  0.5289,  0.7474,  0.7225, -0.5192, -0.0853,  0.7310,\\n\",\n      \"          -0.8602]],\\n\",\n      \"\\n\",\n      \"        [[-0.4815,  0.9126,  0.1738,  0.5568, -0.4262, -0.7068, -0.8695,\\n\",\n      \"          -0.8301,  0.7604,  0.2362, -0.1668, -0.7793, -0.5133,  0.8693,\\n\",\n      \"          -0.2823,  0.5911, -0.0471,  0.9338,  0.9188, -0.4554, -0.9207,\\n\",\n      \"          -0.4080,  0.2725,  0.4755, -0.1294, -0.7142,  0.3658,  0.4429,\\n\",\n      \"          -0.4493,  0.1301,  0.8900, -0.3870,  0.3769, -0.2069, -0.1930,\\n\",\n      \"           0.1234, -0.7184,  0.7192,  0.3644, -0.1044,  0.7195, -0.9342,\\n\",\n      \"          -0.5897,  0.3508, -0.8337,  0.2371, -0.2133, -0.1291,  0.6067,\\n\",\n      \"           0.8579, -0.5941,  0.7763, -0.7359, -0.8590, -0.3807,  0.1878,\\n\",\n      \"          -0.9442,  0.7712,  0.7813,  0.6701, -0.8621,  0.3011,  0.6963,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [-0.4735,  0.9112,  0.3157,  0.4688, -0.4490, -0.6760, -0.8831,\\n\",\n      \"          -0.7476,  0.7855,  0.2046, -0.1825, -0.7881, -0.6302,  0.9075,\\n\",\n      \"          -0.2902,  0.5753,  0.0178,  0.9260,  0.9011, -0.4670, -0.9303,\\n\",\n      \"          -0.4978,  0.4121,  0.5032, -0.2101, -0.8159,  0.4151,  0.5686,\\n\",\n      \"          -0.3979,  0.2328,  0.8864, -0.3879,  0.2711, -0.1999, -0.2824,\\n\",\n      \"           0.1645, -0.7031,  0.7292,  0.3743, -0.1499,  0.7552, -0.9468,\\n\",\n      \"          -0.7001,  0.3675, -0.8345,  0.2998, -0.3379, -0.0426,  0.8084,\\n\",\n      \"           0.8870, -0.5983,  0.7973, -0.7773, -0.8863, -0.4013,  0.4691,\\n\",\n      \"          -0.9512,  0.8066,  0.7752,  0.6545, -0.9121,  0.3427,  0.7675,\\n\",\n      \"          -0.8953]],\\n\",\n      \"\\n\",\n      \"        [[-0.6765,  0.9525,  0.1030,  0.4227, -0.3215, -0.7217, -0.9419,\\n\",\n      \"          -0.8446,  0.8546,  0.2388, -0.2342, -0.8509, -0.6089,  0.9639,\\n\",\n      \"          -0.4239,  0.4967, -0.2184,  0.9636,  0.9689, -0.3183, -0.9730,\\n\",\n      \"          -0.4344,  0.2963,  0.5202, -0.3317, -0.6881,  0.1724,  0.5905,\\n\",\n      \"          -0.4398,  0.1902,  0.9251, -0.5308,  0.2235, -0.3505,  0.0103,\\n\",\n      \"           0.2907, -0.6651,  0.7546,  0.4169, -0.1121,  0.8568, -0.9631,\\n\",\n      \"          -0.5948,  0.1809, -0.9420,  0.2237, -0.2563, -0.3533,  0.6473,\\n\",\n      \"           0.9275, -0.7550,  0.8779, -0.9219, -0.8924, -0.3938,  0.2219,\\n\",\n      \"          -0.9732,  0.8776,  0.8041,  0.6842, -0.9517,  0.4709,  0.7102,\\n\",\n      \"          -0.9001],\\n\",\n      \"         [-0.6757,  0.9530,  0.2174,  0.3443, -0.3374, -0.7043, -0.9467,\\n\",\n      \"          -0.7903,  0.8670,  0.2115, -0.2482, -0.8579, -0.6793,  0.9696,\\n\",\n      \"          -0.4243,  0.4866, -0.1757,  0.9624,  0.9640, -0.3296, -0.9740,\\n\",\n      \"          -0.5149,  0.4178,  0.5340, -0.3605, -0.7855,  0.2042,  0.6710,\\n\",\n      \"          -0.4170,  0.2421,  0.9241, -0.5300,  0.1449, -0.3548, -0.0612,\\n\",\n      \"           0.3213, -0.6540,  0.7647,  0.4227, -0.1528,  0.8663, -0.9637,\\n\",\n      \"          -0.6518,  0.1862, -0.9404,  0.2761, -0.3477, -0.3001,  0.8170,\\n\",\n      \"           0.9398, -0.7614,  0.8840, -0.9329, -0.9017, -0.4097,  0.4649,\\n\",\n      \"          -0.9736,  0.8814,  0.7989,  0.6698, -0.9634,  0.4825,  0.7578,\\n\",\n      \"          -0.9150]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([4, 5])\\n\",\n      \"dec_state: tensor([[[ 0.1516,  0.6855, -0.5428,  0.7889, -0.1189, -0.1052, -0.6462,\\n\",\n      \"           0.3409,  0.1948, -0.8624, -0.5786, -0.6640, -0.0866,  0.6784,\\n\",\n      \"          -0.4637, -0.0084,  0.6512,  0.7260, -0.3498,  0.6401,  0.5319,\\n\",\n      \"          -0.5489, -0.2100,  0.8201,  0.7188, -0.8771,  0.5216,  0.0163,\\n\",\n      \"          -0.8341, -0.2778, -0.6940,  0.4632,  0.2154,  0.5742, -0.3565,\\n\",\n      \"          -0.0429,  0.2332, -0.0363, -0.1439,  0.6411, -0.2337,  0.0047,\\n\",\n      \"           0.3709,  0.1526, -0.1735, -0.1681,  0.1299,  0.7200,  0.4245,\\n\",\n      \"           0.8623,  0.4595,  0.7175, -0.8558,  0.0076, -0.5866,  0.2176,\\n\",\n      \"           0.1097, -0.1838, -0.4119, -0.1784, -0.8477,  0.8204, -0.1276,\\n\",\n      \"          -0.4376],\\n\",\n      \"         [-0.0658,  0.9748, -0.5769,  0.8673, -0.0602, -0.5950, -0.8200,\\n\",\n      \"          -0.8208, -0.6082,  0.1077,  0.1922, -0.7446,  0.0970,  0.9569,\\n\",\n      \"          -0.7658, -0.8043,  0.5412,  0.1997, -0.1679,  0.8415,  0.9058,\\n\",\n      \"          -0.9063,  0.5147,  0.9190,  0.4669, -0.5805,  0.1650, -0.1969,\\n\",\n      \"          -0.8384,  0.4500, -0.4407,  0.8871,  0.7072,  0.6933, -0.7082,\\n\",\n      \"          -0.7921,  0.5268, -0.6137,  0.6975,  0.6981, -0.8581,  0.3354,\\n\",\n      \"           0.5848,  0.3619, -0.4141,  0.0527, -0.5226,  0.0446,  0.4591,\\n\",\n      \"           0.8339, -0.1873,  0.8927,  0.0560, -0.7861, -0.8164, -0.1213,\\n\",\n      \"           0.0490,  0.9516,  0.1827, -0.8977, -0.8676,  0.9065, -0.5621,\\n\",\n      \"           0.5651]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2890,  0.1556, -0.2685,  0.0012, -0.0716,  0.0172, -0.1474,\\n\",\n      \"           0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724,  0.3325,\\n\",\n      \"           0.1116, -0.5082,  0.3477,  0.2603,  0.0068, -0.6025, -0.5775,\\n\",\n      \"          -0.0787,  0.1094, -0.0924,  0.0407,  0.0145,  0.0717,  0.2579,\\n\",\n      \"          -0.0661, -0.1149,  0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\\n\",\n      \"          -0.1044, -0.1947,  0.1145, -0.0769, -0.3539,  0.1510,  0.6411,\\n\",\n      \"          -0.0553,  0.0845, -0.6039, -0.3417,  0.3798, -0.1020,  0.0173,\\n\",\n      \"           0.3886,  0.1477, -0.3305, -0.2986, -0.4481, -0.4462,  0.1228,\\n\",\n      \"          -0.3850,  0.1912,  0.0674, -0.2659,  0.2090,  0.1939,  0.2671,\\n\",\n      \"          -0.3651],\\n\",\n      \"         [-0.0710,  0.3148,  0.1467,  0.3958, -0.3162,  0.1582,  0.0101,\\n\",\n      \"          -0.0057, -0.0248, -0.2350,  0.3197, -0.1170, -0.5608, -0.0145,\\n\",\n      \"           0.3787, -0.2327,  0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\\n\",\n      \"          -0.2015,  0.5406,  0.2518, -0.4450, -0.4262, -0.0457,  0.5708,\\n\",\n      \"          -0.1106,  0.0239,  0.1353,  0.4127, -0.5620,  0.5556,  0.1576,\\n\",\n      \"           0.0743, -0.3683,  0.6607, -0.4821,  0.2784, -0.1441,  0.2792,\\n\",\n      \"          -0.5013, -0.0068,  0.0980, -0.2505, -0.3301,  0.1433, -0.0295,\\n\",\n      \"           0.3410,  0.2697,  0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\\n\",\n      \"           0.0209,  0.3723, -0.1770,  0.1575, -0.4842,  0.3186,  0.4981,\\n\",\n      \"          -0.3869]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2805, -0.0565, -0.5347,  0.7814, -0.1960, -0.1144,  0.0224,\\n\",\n      \"           0.5690,  0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\\n\",\n      \"           0.4451,  0.1339,  0.4140,  0.4275,  0.2901, -0.5719, -0.6537,\\n\",\n      \"           0.0535,  0.3236,  0.4697,  0.2989, -0.2088,  0.1031,  0.0537,\\n\",\n      \"          -0.0234, -0.2308,  0.0661, -0.0290,  0.5174,  0.2255, -0.0898,\\n\",\n      \"           0.0559, -0.5531,  0.8694,  0.2726,  0.3303,  0.0954,  0.6133,\\n\",\n      \"          -0.0627, -0.2125, -0.4030, -0.3193,  0.2573, -0.6037,  0.1702,\\n\",\n      \"           0.6712,  0.0243, -0.0894,  0.1717, -0.6346, -0.4322, -0.1709,\\n\",\n      \"          -0.2448, -0.0380, -0.2380,  0.5061, -0.5416, -0.4742,  0.0817,\\n\",\n      \"          -0.2495],\\n\",\n      \"         [-0.2146,  0.3102,  0.3063,  0.3200, -0.6042, -0.6355,  0.0326,\\n\",\n      \"           0.1614, -0.1538, -0.6354,  0.2530, -0.2854, -0.6507, -0.2132,\\n\",\n      \"           0.0245,  0.0711,  0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\\n\",\n      \"          -0.2030,  0.5062,  0.7766, -0.2168, -0.6735,  0.7655,  0.4879,\\n\",\n      \"           0.4480,  0.3375,  0.1140,  0.6309, -0.3277,  0.8274, -0.4674,\\n\",\n      \"           0.1451, -0.2880,  0.6146, -0.5080, -0.0806,  0.4445, -0.4506,\\n\",\n      \"          -0.7093,  0.2397,  0.1345, -0.2954, -0.3532,  0.0559,  0.0268,\\n\",\n      \"           0.1805,  0.3976,  0.5215, -0.2548, -0.6891, -0.3597,  0.7438,\\n\",\n      \"           0.2640, -0.0562, -0.6029, -0.1483, -0.6813,  0.0196,  0.5351,\\n\",\n      \"          -0.0903]],\\n\",\n      \"\\n\",\n      \"        [[-0.2415,  0.7097,  0.0926,  0.6104, -0.2053,  0.0463, -0.2585,\\n\",\n      \"           0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\\n\",\n      \"           0.4182, -0.0776,  0.0449,  0.0138,  0.1784, -0.5369,  0.0192,\\n\",\n      \"          -0.2766, -0.2416,  0.3454,  0.4599,  0.2200, -0.0211,  0.2726,\\n\",\n      \"          -0.1927,  0.0486,  0.1538, -0.1676,  0.2175, -0.2153,  0.1954,\\n\",\n      \"          -0.5780, -0.2447,  0.5633,  0.2046,  0.0098,  0.1590,  0.6091,\\n\",\n      \"           0.2573, -0.0760,  0.0456, -0.0988,  0.1492, -0.1859, -0.0842,\\n\",\n      \"           0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\\n\",\n      \"           0.3826,  0.0546, -0.1723,  0.4627, -0.1276, -0.2957, -0.1364,\\n\",\n      \"          -0.5385],\\n\",\n      \"         [-0.2605,  0.3742,  0.3780,  0.3882, -0.4157, -0.1474, -0.3459,\\n\",\n      \"          -0.1452,  0.2388, -0.1367, -0.2496, -0.0807, -0.5850,  0.3555,\\n\",\n      \"           0.1489,  0.2841,  0.3549, -0.0793,  0.2325, -0.4568, -0.4790,\\n\",\n      \"          -0.4872,  0.6107,  0.4140, -0.2444, -0.6675,  0.2835,  0.7947,\\n\",\n      \"           0.1005,  0.4331,  0.2850,  0.3347, -0.2289,  0.5438, -0.5147,\\n\",\n      \"          -0.3536, -0.2994,  0.5414,  0.2631, -0.1074,  0.5495, -0.6653,\\n\",\n      \"          -0.5549,  0.1603,  0.0260, -0.1220, -0.3569,  0.2244,  0.4713,\\n\",\n      \"           0.0967, -0.2427,  0.5279, -0.4483, -0.8291, -0.1444,  0.7616,\\n\",\n      \"          -0.1760,  0.5977, -0.0726, -0.2546, -0.8026, -0.1861,  0.8048,\\n\",\n      \"          -0.8177]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0101,  0.7368,  0.1353,  0.3623, -0.1673, -0.1695, -0.4292,\\n\",\n      \"           0.3395,  0.4179,  0.2769,  0.0541, -0.6404, -0.2328, -0.2319,\\n\",\n      \"           0.3876,  0.3352,  0.4574, -0.0993,  0.5880, -0.7071,  0.2521,\\n\",\n      \"          -0.2288, -0.1628,  0.3605,  0.6020,  0.2196, -0.0099,  0.2126,\\n\",\n      \"          -0.1068, -0.0631,  0.4057, -0.4593,  0.0754,  0.1717,  0.1265,\\n\",\n      \"          -0.2682, -0.0946,  0.5886, -0.2587, -0.1557, -0.1058,  0.6473,\\n\",\n      \"           0.2292,  0.1324, -0.1269,  0.0728,  0.2484, -0.0247,  0.2468,\\n\",\n      \"           0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\\n\",\n      \"          -0.2293,  0.0728, -0.3530,  0.7944, -0.2957, -0.5119, -0.4419,\\n\",\n      \"          -0.3717],\\n\",\n      \"         [ 0.0113,  0.7009,  0.3669,  0.2339, -0.2667, -0.1856, -0.5395,\\n\",\n      \"           0.1107,  0.5073,  0.2647, -0.0704, -0.6602, -0.5361,  0.2408,\\n\",\n      \"           0.2817,  0.3950,  0.5680, -0.2055,  0.5550, -0.6901, -0.1959,\\n\",\n      \"          -0.4332,  0.2280,  0.4189,  0.2258, -0.4593,  0.2202,  0.5288,\\n\",\n      \"           0.0738,  0.2705,  0.4425, -0.4310, -0.2240,  0.4527, -0.2092,\\n\",\n      \"          -0.0978, -0.1509,  0.5826, -0.2875, -0.2302,  0.1348, -0.2252,\\n\",\n      \"          -0.3774,  0.2723, -0.1784,  0.1374, -0.2052,  0.2458,  0.6483,\\n\",\n      \"           0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659,  0.2802,\\n\",\n      \"          -0.4677,  0.4884, -0.2397,  0.6836, -0.7437, -0.4434,  0.2398,\\n\",\n      \"          -0.6909]],\\n\",\n      \"\\n\",\n      \"        [[-0.1499,  0.5642,  0.2436,  0.6794, -0.5401, -0.1918, -0.4804,\\n\",\n      \"          -0.7993,  0.5079,  0.1944,  0.1235, -0.6337, -0.3838,  0.1651,\\n\",\n      \"          -0.0226,  0.7056,  0.5073,  0.4846,  0.7075, -0.7249, -0.5029,\\n\",\n      \"          -0.3810,  0.2479,  0.3878,  0.3729, -0.7414,  0.6079,  0.2253,\\n\",\n      \"          -0.5409, -0.1647,  0.7346, -0.2070,  0.5766,  0.1296, -0.4318,\\n\",\n      \"          -0.1783, -0.7637,  0.6630,  0.2749, -0.0853, -0.2496, -0.5892,\\n\",\n      \"          -0.4976,  0.5714,  0.0305,  0.2431, -0.0632,  0.2296,  0.5531,\\n\",\n      \"           0.7012, -0.2193,  0.3598, -0.0862, -0.7312, -0.3638,  0.1418,\\n\",\n      \"          -0.6391,  0.3536,  0.7525,  0.7845, -0.1925, -0.2130,  0.6129,\\n\",\n      \"          -0.8210],\\n\",\n      \"         [-0.1430,  0.4985,  0.4111,  0.5815, -0.5709, -0.1385, -0.5552,\\n\",\n      \"          -0.6759,  0.5509,  0.1574,  0.0644, -0.6438, -0.5627,  0.4289,\\n\",\n      \"          -0.0483,  0.6774,  0.5765,  0.4106,  0.6559, -0.7302, -0.6284,\\n\",\n      \"          -0.4817,  0.4068,  0.4327,  0.1650, -0.8455,  0.6862,  0.4201,\\n\",\n      \"          -0.4453,  0.0642,  0.7283, -0.1803,  0.4315,  0.2034, -0.5437,\\n\",\n      \"          -0.1295, -0.7425,  0.6695,  0.2883, -0.1398, -0.0725, -0.7465,\\n\",\n      \"          -0.7075,  0.5969,  0.0220,  0.3139, -0.2831,  0.3638,  0.7920,\\n\",\n      \"           0.7428, -0.2189,  0.4677, -0.2263, -0.8023, -0.3903,  0.4736,\\n\",\n      \"          -0.7263,  0.5289,  0.7474,  0.7225, -0.5192, -0.0853,  0.7310,\\n\",\n      \"          -0.8602]],\\n\",\n      \"\\n\",\n      \"        [[-0.4815,  0.9126,  0.1738,  0.5568, -0.4262, -0.7068, -0.8695,\\n\",\n      \"          -0.8301,  0.7604,  0.2362, -0.1668, -0.7793, -0.5133,  0.8693,\\n\",\n      \"          -0.2823,  0.5911, -0.0471,  0.9338,  0.9188, -0.4554, -0.9207,\\n\",\n      \"          -0.4080,  0.2725,  0.4755, -0.1294, -0.7142,  0.3658,  0.4429,\\n\",\n      \"          -0.4493,  0.1301,  0.8900, -0.3870,  0.3769, -0.2069, -0.1930,\\n\",\n      \"           0.1234, -0.7184,  0.7192,  0.3644, -0.1044,  0.7195, -0.9342,\\n\",\n      \"          -0.5897,  0.3508, -0.8337,  0.2371, -0.2133, -0.1291,  0.6067,\\n\",\n      \"           0.8579, -0.5941,  0.7763, -0.7359, -0.8590, -0.3807,  0.1878,\\n\",\n      \"          -0.9442,  0.7712,  0.7813,  0.6701, -0.8621,  0.3011,  0.6963,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [-0.4735,  0.9112,  0.3157,  0.4688, -0.4490, -0.6760, -0.8831,\\n\",\n      \"          -0.7476,  0.7855,  0.2046, -0.1825, -0.7881, -0.6302,  0.9075,\\n\",\n      \"          -0.2902,  0.5753,  0.0178,  0.9260,  0.9011, -0.4670, -0.9303,\\n\",\n      \"          -0.4978,  0.4121,  0.5032, -0.2101, -0.8159,  0.4151,  0.5686,\\n\",\n      \"          -0.3979,  0.2328,  0.8864, -0.3879,  0.2711, -0.1999, -0.2824,\\n\",\n      \"           0.1645, -0.7031,  0.7292,  0.3743, -0.1499,  0.7552, -0.9468,\\n\",\n      \"          -0.7001,  0.3675, -0.8345,  0.2998, -0.3379, -0.0426,  0.8084,\\n\",\n      \"           0.8870, -0.5983,  0.7973, -0.7773, -0.8863, -0.4013,  0.4691,\\n\",\n      \"          -0.9512,  0.8066,  0.7752,  0.6545, -0.9121,  0.3427,  0.7675,\\n\",\n      \"          -0.8953]],\\n\",\n      \"\\n\",\n      \"        [[-0.6765,  0.9525,  0.1030,  0.4227, -0.3215, -0.7217, -0.9419,\\n\",\n      \"          -0.8446,  0.8546,  0.2388, -0.2342, -0.8509, -0.6089,  0.9639,\\n\",\n      \"          -0.4239,  0.4967, -0.2184,  0.9636,  0.9689, -0.3183, -0.9730,\\n\",\n      \"          -0.4344,  0.2963,  0.5202, -0.3317, -0.6881,  0.1724,  0.5905,\\n\",\n      \"          -0.4398,  0.1902,  0.9251, -0.5308,  0.2235, -0.3505,  0.0103,\\n\",\n      \"           0.2907, -0.6651,  0.7546,  0.4169, -0.1121,  0.8568, -0.9631,\\n\",\n      \"          -0.5948,  0.1809, -0.9420,  0.2237, -0.2563, -0.3533,  0.6473,\\n\",\n      \"           0.9275, -0.7550,  0.8779, -0.9219, -0.8924, -0.3938,  0.2219,\\n\",\n      \"          -0.9732,  0.8776,  0.8041,  0.6842, -0.9517,  0.4709,  0.7102,\\n\",\n      \"          -0.9001],\\n\",\n      \"         [-0.6757,  0.9530,  0.2174,  0.3443, -0.3374, -0.7043, -0.9467,\\n\",\n      \"          -0.7903,  0.8670,  0.2115, -0.2482, -0.8579, -0.6793,  0.9696,\\n\",\n      \"          -0.4243,  0.4866, -0.1757,  0.9624,  0.9640, -0.3296, -0.9740,\\n\",\n      \"          -0.5149,  0.4178,  0.5340, -0.3605, -0.7855,  0.2042,  0.6710,\\n\",\n      \"          -0.4170,  0.2421,  0.9241, -0.5300,  0.1449, -0.3548, -0.0612,\\n\",\n      \"           0.3213, -0.6540,  0.7647,  0.4227, -0.1528,  0.8663, -0.9637,\\n\",\n      \"          -0.6518,  0.1862, -0.9404,  0.2761, -0.3477, -0.3001,  0.8170,\\n\",\n      \"           0.9398, -0.7614,  0.8840, -0.9329, -0.9017, -0.4097,  0.4649,\\n\",\n      \"          -0.9736,  0.8814,  0.7989,  0.6698, -0.9634,  0.4825,  0.7578,\\n\",\n      \"          -0.9150]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([25, 14])\\n\",\n      \"dec_state: tensor([[[-0.2230,  0.8044, -0.2281,  0.5656,  0.2685, -0.0697, -0.2737,\\n\",\n      \"           0.3938, -0.2452, -0.2973, -0.7422, -0.3978,  0.1094,  0.2401,\\n\",\n      \"          -0.6661, -0.4448,  0.5665,  0.1657, -0.4754,  0.5654,  0.7391,\\n\",\n      \"          -0.6415, -0.3738,  0.8769, -0.3916, -0.6936,  0.2050,  0.1224,\\n\",\n      \"          -0.9252, -0.2186, -0.6851,  0.8296,  0.5926,  0.2779, -0.2268,\\n\",\n      \"          -0.6139,  0.4380, -0.1079,  0.2633,  0.6675, -0.3886,  0.3206,\\n\",\n      \"           0.4285, -0.0341, -0.1135, -0.5944, -0.0113,  0.5907, -0.0216,\\n\",\n      \"           0.7136,  0.1097,  0.6913, -0.8351,  0.0489, -0.7000,  0.2243,\\n\",\n      \"           0.2583,  0.3165, -0.3670, -0.6081, -0.7631,  0.2230, -0.7661,\\n\",\n      \"          -0.2716],\\n\",\n      \"         [ 0.2762,  0.9809,  0.0560,  0.8423, -0.1605, -0.5210, -0.8213,\\n\",\n      \"          -0.6437, -0.3015, -0.2981, -0.0517, -0.7277, -0.2456,  0.4444,\\n\",\n      \"          -0.5445, -0.7323,  0.3051, -0.1013, -0.2842,  0.6154,  0.7968,\\n\",\n      \"          -0.9410, -0.1630,  0.9508,  0.5477, -0.6607, -0.3488, -0.6078,\\n\",\n      \"          -0.7493, -0.7611, -0.6751,  0.9211,  0.7540,  0.4700, -0.6965,\\n\",\n      \"          -0.6813, -0.0544, -0.5092,  0.6198,  0.2275, -0.2206, -0.1805,\\n\",\n      \"           0.4600,  0.4376, -0.2174,  0.6236, -0.7953, -0.3368,  0.5151,\\n\",\n      \"           0.7954,  0.1045,  0.9663,  0.0675, -0.7997, -0.7938, -0.1853,\\n\",\n      \"           0.1697,  0.9676,  0.1555, -0.3342, -0.9188,  0.9383, -0.5828,\\n\",\n      \"           0.4698]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"enc_outputs: tensor([[[-0.2890,  0.1556, -0.2685,  0.0012, -0.0716,  0.0172, -0.1474,\\n\",\n      \"           0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724,  0.3325,\\n\",\n      \"           0.1116, -0.5082,  0.3477,  0.2603,  0.0068, -0.6025, -0.5775,\\n\",\n      \"          -0.0787,  0.1094, -0.0924,  0.0407,  0.0145,  0.0717,  0.2579,\\n\",\n      \"          -0.0661, -0.1149,  0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\\n\",\n      \"          -0.1044, -0.1947,  0.1145, -0.0769, -0.3539,  0.1510,  0.6411,\\n\",\n      \"          -0.0553,  0.0845, -0.6039, -0.3417,  0.3798, -0.1020,  0.0173,\\n\",\n      \"           0.3886,  0.1477, -0.3305, -0.2986, -0.4481, -0.4462,  0.1228,\\n\",\n      \"          -0.3850,  0.1912,  0.0674, -0.2659,  0.2090,  0.1939,  0.2671,\\n\",\n      \"          -0.3651],\\n\",\n      \"         [-0.0710,  0.3148,  0.1467,  0.3958, -0.3162,  0.1582,  0.0101,\\n\",\n      \"          -0.0057, -0.0248, -0.2350,  0.3197, -0.1170, -0.5608, -0.0145,\\n\",\n      \"           0.3787, -0.2327,  0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\\n\",\n      \"          -0.2015,  0.5406,  0.2518, -0.4450, -0.4262, -0.0457,  0.5708,\\n\",\n      \"          -0.1106,  0.0239,  0.1353,  0.4127, -0.5620,  0.5556,  0.1576,\\n\",\n      \"           0.0743, -0.3683,  0.6607, -0.4821,  0.2784, -0.1441,  0.2792,\\n\",\n      \"          -0.5013, -0.0068,  0.0980, -0.2505, -0.3301,  0.1433, -0.0295,\\n\",\n      \"           0.3410,  0.2697,  0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\\n\",\n      \"           0.0209,  0.3723, -0.1770,  0.1575, -0.4842,  0.3186,  0.4981,\\n\",\n      \"          -0.3869]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2805, -0.0565, -0.5347,  0.7814, -0.1960, -0.1144,  0.0224,\\n\",\n      \"           0.5690,  0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\\n\",\n      \"           0.4451,  0.1339,  0.4140,  0.4275,  0.2901, -0.5719, -0.6537,\\n\",\n      \"           0.0535,  0.3236,  0.4697,  0.2989, -0.2088,  0.1031,  0.0537,\\n\",\n      \"          -0.0234, -0.2308,  0.0661, -0.0290,  0.5174,  0.2255, -0.0898,\\n\",\n      \"           0.0559, -0.5531,  0.8694,  0.2726,  0.3303,  0.0954,  0.6133,\\n\",\n      \"          -0.0627, -0.2125, -0.4030, -0.3193,  0.2573, -0.6037,  0.1702,\\n\",\n      \"           0.6712,  0.0243, -0.0894,  0.1717, -0.6346, -0.4322, -0.1709,\\n\",\n      \"          -0.2448, -0.0380, -0.2380,  0.5061, -0.5416, -0.4742,  0.0817,\\n\",\n      \"          -0.2495],\\n\",\n      \"         [-0.2146,  0.3102,  0.3063,  0.3200, -0.6042, -0.6355,  0.0326,\\n\",\n      \"           0.1614, -0.1538, -0.6354,  0.2530, -0.2854, -0.6507, -0.2132,\\n\",\n      \"           0.0245,  0.0711,  0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\\n\",\n      \"          -0.2030,  0.5062,  0.7766, -0.2168, -0.6735,  0.7655,  0.4879,\\n\",\n      \"           0.4480,  0.3375,  0.1140,  0.6309, -0.3277,  0.8274, -0.4674,\\n\",\n      \"           0.1451, -0.2880,  0.6146, -0.5080, -0.0806,  0.4445, -0.4506,\\n\",\n      \"          -0.7093,  0.2397,  0.1345, -0.2954, -0.3532,  0.0559,  0.0268,\\n\",\n      \"           0.1805,  0.3976,  0.5215, -0.2548, -0.6891, -0.3597,  0.7438,\\n\",\n      \"           0.2640, -0.0562, -0.6029, -0.1483, -0.6813,  0.0196,  0.5351,\\n\",\n      \"          -0.0903]],\\n\",\n      \"\\n\",\n      \"        [[-0.2415,  0.7097,  0.0926,  0.6104, -0.2053,  0.0463, -0.2585,\\n\",\n      \"           0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\\n\",\n      \"           0.4182, -0.0776,  0.0449,  0.0138,  0.1784, -0.5369,  0.0192,\\n\",\n      \"          -0.2766, -0.2416,  0.3454,  0.4599,  0.2200, -0.0211,  0.2726,\\n\",\n      \"          -0.1927,  0.0486,  0.1538, -0.1676,  0.2175, -0.2153,  0.1954,\\n\",\n      \"          -0.5780, -0.2447,  0.5633,  0.2046,  0.0098,  0.1590,  0.6091,\\n\",\n      \"           0.2573, -0.0760,  0.0456, -0.0988,  0.1492, -0.1859, -0.0842,\\n\",\n      \"           0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\\n\",\n      \"           0.3826,  0.0546, -0.1723,  0.4627, -0.1276, -0.2957, -0.1364,\\n\",\n      \"          -0.5385],\\n\",\n      \"         [-0.2605,  0.3742,  0.3780,  0.3882, -0.4157, -0.1474, -0.3459,\\n\",\n      \"          -0.1452,  0.2388, -0.1367, -0.2496, -0.0807, -0.5850,  0.3555,\\n\",\n      \"           0.1489,  0.2841,  0.3549, -0.0793,  0.2325, -0.4568, -0.4790,\\n\",\n      \"          -0.4872,  0.6107,  0.4140, -0.2444, -0.6675,  0.2835,  0.7947,\\n\",\n      \"           0.1005,  0.4331,  0.2850,  0.3347, -0.2289,  0.5438, -0.5147,\\n\",\n      \"          -0.3536, -0.2994,  0.5414,  0.2631, -0.1074,  0.5495, -0.6653,\\n\",\n      \"          -0.5549,  0.1603,  0.0260, -0.1220, -0.3569,  0.2244,  0.4713,\\n\",\n      \"           0.0967, -0.2427,  0.5279, -0.4483, -0.8291, -0.1444,  0.7616,\\n\",\n      \"          -0.1760,  0.5977, -0.0726, -0.2546, -0.8026, -0.1861,  0.8048,\\n\",\n      \"          -0.8177]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0101,  0.7368,  0.1353,  0.3623, -0.1673, -0.1695, -0.4292,\\n\",\n      \"           0.3395,  0.4179,  0.2769,  0.0541, -0.6404, -0.2328, -0.2319,\\n\",\n      \"           0.3876,  0.3352,  0.4574, -0.0993,  0.5880, -0.7071,  0.2521,\\n\",\n      \"          -0.2288, -0.1628,  0.3605,  0.6020,  0.2196, -0.0099,  0.2126,\\n\",\n      \"          -0.1068, -0.0631,  0.4057, -0.4593,  0.0754,  0.1717,  0.1265,\\n\",\n      \"          -0.2682, -0.0946,  0.5886, -0.2587, -0.1557, -0.1058,  0.6473,\\n\",\n      \"           0.2292,  0.1324, -0.1269,  0.0728,  0.2484, -0.0247,  0.2468,\\n\",\n      \"           0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\\n\",\n      \"          -0.2293,  0.0728, -0.3530,  0.7944, -0.2957, -0.5119, -0.4419,\\n\",\n      \"          -0.3717],\\n\",\n      \"         [ 0.0113,  0.7009,  0.3669,  0.2339, -0.2667, -0.1856, -0.5395,\\n\",\n      \"           0.1107,  0.5073,  0.2647, -0.0704, -0.6602, -0.5361,  0.2408,\\n\",\n      \"           0.2817,  0.3950,  0.5680, -0.2055,  0.5550, -0.6901, -0.1959,\\n\",\n      \"          -0.4332,  0.2280,  0.4189,  0.2258, -0.4593,  0.2202,  0.5288,\\n\",\n      \"           0.0738,  0.2705,  0.4425, -0.4310, -0.2240,  0.4527, -0.2092,\\n\",\n      \"          -0.0978, -0.1509,  0.5826, -0.2875, -0.2302,  0.1348, -0.2252,\\n\",\n      \"          -0.3774,  0.2723, -0.1784,  0.1374, -0.2052,  0.2458,  0.6483,\\n\",\n      \"           0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659,  0.2802,\\n\",\n      \"          -0.4677,  0.4884, -0.2397,  0.6836, -0.7437, -0.4434,  0.2398,\\n\",\n      \"          -0.6909]],\\n\",\n      \"\\n\",\n      \"        [[-0.1499,  0.5642,  0.2436,  0.6794, -0.5401, -0.1918, -0.4804,\\n\",\n      \"          -0.7993,  0.5079,  0.1944,  0.1235, -0.6337, -0.3838,  0.1651,\\n\",\n      \"          -0.0226,  0.7056,  0.5073,  0.4846,  0.7075, -0.7249, -0.5029,\\n\",\n      \"          -0.3810,  0.2479,  0.3878,  0.3729, -0.7414,  0.6079,  0.2253,\\n\",\n      \"          -0.5409, -0.1647,  0.7346, -0.2070,  0.5766,  0.1296, -0.4318,\\n\",\n      \"          -0.1783, -0.7637,  0.6630,  0.2749, -0.0853, -0.2496, -0.5892,\\n\",\n      \"          -0.4976,  0.5714,  0.0305,  0.2431, -0.0632,  0.2296,  0.5531,\\n\",\n      \"           0.7012, -0.2193,  0.3598, -0.0862, -0.7312, -0.3638,  0.1418,\\n\",\n      \"          -0.6391,  0.3536,  0.7525,  0.7845, -0.1925, -0.2130,  0.6129,\\n\",\n      \"          -0.8210],\\n\",\n      \"         [-0.1430,  0.4985,  0.4111,  0.5815, -0.5709, -0.1385, -0.5552,\\n\",\n      \"          -0.6759,  0.5509,  0.1574,  0.0644, -0.6438, -0.5627,  0.4289,\\n\",\n      \"          -0.0483,  0.6774,  0.5765,  0.4106,  0.6559, -0.7302, -0.6284,\\n\",\n      \"          -0.4817,  0.4068,  0.4327,  0.1650, -0.8455,  0.6862,  0.4201,\\n\",\n      \"          -0.4453,  0.0642,  0.7283, -0.1803,  0.4315,  0.2034, -0.5437,\\n\",\n      \"          -0.1295, -0.7425,  0.6695,  0.2883, -0.1398, -0.0725, -0.7465,\\n\",\n      \"          -0.7075,  0.5969,  0.0220,  0.3139, -0.2831,  0.3638,  0.7920,\\n\",\n      \"           0.7428, -0.2189,  0.4677, -0.2263, -0.8023, -0.3903,  0.4736,\\n\",\n      \"          -0.7263,  0.5289,  0.7474,  0.7225, -0.5192, -0.0853,  0.7310,\\n\",\n      \"          -0.8602]],\\n\",\n      \"\\n\",\n      \"        [[-0.4815,  0.9126,  0.1738,  0.5568, -0.4262, -0.7068, -0.8695,\\n\",\n      \"          -0.8301,  0.7604,  0.2362, -0.1668, -0.7793, -0.5133,  0.8693,\\n\",\n      \"          -0.2823,  0.5911, -0.0471,  0.9338,  0.9188, -0.4554, -0.9207,\\n\",\n      \"          -0.4080,  0.2725,  0.4755, -0.1294, -0.7142,  0.3658,  0.4429,\\n\",\n      \"          -0.4493,  0.1301,  0.8900, -0.3870,  0.3769, -0.2069, -0.1930,\\n\",\n      \"           0.1234, -0.7184,  0.7192,  0.3644, -0.1044,  0.7195, -0.9342,\\n\",\n      \"          -0.5897,  0.3508, -0.8337,  0.2371, -0.2133, -0.1291,  0.6067,\\n\",\n      \"           0.8579, -0.5941,  0.7763, -0.7359, -0.8590, -0.3807,  0.1878,\\n\",\n      \"          -0.9442,  0.7712,  0.7813,  0.6701, -0.8621,  0.3011,  0.6963,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [-0.4735,  0.9112,  0.3157,  0.4688, -0.4490, -0.6760, -0.8831,\\n\",\n      \"          -0.7476,  0.7855,  0.2046, -0.1825, -0.7881, -0.6302,  0.9075,\\n\",\n      \"          -0.2902,  0.5753,  0.0178,  0.9260,  0.9011, -0.4670, -0.9303,\\n\",\n      \"          -0.4978,  0.4121,  0.5032, -0.2101, -0.8159,  0.4151,  0.5686,\\n\",\n      \"          -0.3979,  0.2328,  0.8864, -0.3879,  0.2711, -0.1999, -0.2824,\\n\",\n      \"           0.1645, -0.7031,  0.7292,  0.3743, -0.1499,  0.7552, -0.9468,\\n\",\n      \"          -0.7001,  0.3675, -0.8345,  0.2998, -0.3379, -0.0426,  0.8084,\\n\",\n      \"           0.8870, -0.5983,  0.7973, -0.7773, -0.8863, -0.4013,  0.4691,\\n\",\n      \"          -0.9512,  0.8066,  0.7752,  0.6545, -0.9121,  0.3427,  0.7675,\\n\",\n      \"          -0.8953]],\\n\",\n      \"\\n\",\n      \"        [[-0.6765,  0.9525,  0.1030,  0.4227, -0.3215, -0.7217, -0.9419,\\n\",\n      \"          -0.8446,  0.8546,  0.2388, -0.2342, -0.8509, -0.6089,  0.9639,\\n\",\n      \"          -0.4239,  0.4967, -0.2184,  0.9636,  0.9689, -0.3183, -0.9730,\\n\",\n      \"          -0.4344,  0.2963,  0.5202, -0.3317, -0.6881,  0.1724,  0.5905,\\n\",\n      \"          -0.4398,  0.1902,  0.9251, -0.5308,  0.2235, -0.3505,  0.0103,\\n\",\n      \"           0.2907, -0.6651,  0.7546,  0.4169, -0.1121,  0.8568, -0.9631,\\n\",\n      \"          -0.5948,  0.1809, -0.9420,  0.2237, -0.2563, -0.3533,  0.6473,\\n\",\n      \"           0.9275, -0.7550,  0.8779, -0.9219, -0.8924, -0.3938,  0.2219,\\n\",\n      \"          -0.9732,  0.8776,  0.8041,  0.6842, -0.9517,  0.4709,  0.7102,\\n\",\n      \"          -0.9001],\\n\",\n      \"         [-0.6757,  0.9530,  0.2174,  0.3443, -0.3374, -0.7043, -0.9467,\\n\",\n      \"          -0.7903,  0.8670,  0.2115, -0.2482, -0.8579, -0.6793,  0.9696,\\n\",\n      \"          -0.4243,  0.4866, -0.1757,  0.9624,  0.9640, -0.3296, -0.9740,\\n\",\n      \"          -0.5149,  0.4178,  0.5340, -0.3605, -0.7855,  0.2042,  0.6710,\\n\",\n      \"          -0.4170,  0.2421,  0.9241, -0.5300,  0.1449, -0.3548, -0.0612,\\n\",\n      \"           0.3213, -0.6540,  0.7647,  0.4227, -0.1528,  0.8663, -0.9637,\\n\",\n      \"          -0.6518,  0.1862, -0.9404,  0.2761, -0.3477, -0.3001,  0.8170,\\n\",\n      \"           0.9398, -0.7614,  0.8840, -0.9329, -0.9017, -0.4097,  0.4649,\\n\",\n      \"          -0.9736,  0.8814,  0.7989,  0.6698, -0.9634,  0.4825,  0.7578,\\n\",\n      \"          -0.9150]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([3, 3])\\n\",\n      \"dec_state: tensor([[[ 0.8505,  0.9089, -0.6730,  0.6163,  0.2814,  0.0763, -0.4625,\\n\",\n      \"          -0.1917, -0.3058, -0.9284, -0.8566, -0.6571,  0.7263,  0.6950,\\n\",\n      \"          -0.9266, -0.1139,  0.8800,  0.0400, -0.8129,  0.7686,  0.7583,\\n\",\n      \"          -0.6926, -0.5053,  0.7981,  0.8234, -0.8314,  0.1123, -0.8275,\\n\",\n      \"           0.0346, -0.6508, -0.7948,  0.8187,  0.8385,  0.6857, -0.1373,\\n\",\n      \"          -0.7337,  0.6400, -0.7467,  0.7792,  0.9075, -0.6600,  0.4827,\\n\",\n      \"           0.5591, -0.4799, -0.6166,  0.5739, -0.1328,  0.7219, -0.1026,\\n\",\n      \"           0.6668, -0.7492,  0.8918, -0.4799, -0.2638,  0.4481,  0.0668,\\n\",\n      \"           0.6346,  0.5244, -0.5863, -0.5861, -0.8973,  0.5596, -0.7549,\\n\",\n      \"          -0.8987],\\n\",\n      \"         [ 0.8619,  0.9870, -0.6495,  0.8314, -0.0249, -0.2358, -0.8443,\\n\",\n      \"          -0.7277, -0.3218, -0.9384, -0.7715, -0.7908,  0.6517,  0.7737,\\n\",\n      \"          -0.9167, -0.4083,  0.8639, -0.1515, -0.8665,  0.8200,  0.8061,\\n\",\n      \"          -0.9422, -0.5393,  0.8747,  0.9185, -0.8075, -0.0357, -0.9223,\\n\",\n      \"           0.1446, -0.7969, -0.8172,  0.9095,  0.8944,  0.7632, -0.5759,\\n\",\n      \"          -0.8748,  0.4663, -0.7997,  0.8716,  0.7574, -0.6152,  0.4111,\\n\",\n      \"           0.5997, -0.2924, -0.5905,  0.8687, -0.5815,  0.7330,  0.3730,\\n\",\n      \"           0.7982, -0.7559,  0.9823,  0.1169, -0.8266,  0.4500, -0.1826,\\n\",\n      \"           0.6443,  0.8065, -0.4415, -0.4183, -0.9538,  0.9538, -0.5976,\\n\",\n      \"          -0.8467]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2890,  0.1556, -0.2685,  0.0012, -0.0716,  0.0172, -0.1474,\\n\",\n      \"           0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724,  0.3325,\\n\",\n      \"           0.1116, -0.5082,  0.3477,  0.2603,  0.0068, -0.6025, -0.5775,\\n\",\n      \"          -0.0787,  0.1094, -0.0924,  0.0407,  0.0145,  0.0717,  0.2579,\\n\",\n      \"          -0.0661, -0.1149,  0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\\n\",\n      \"          -0.1044, -0.1947,  0.1145, -0.0769, -0.3539,  0.1510,  0.6411,\\n\",\n      \"          -0.0553,  0.0845, -0.6039, -0.3417,  0.3798, -0.1020,  0.0173,\\n\",\n      \"           0.3886,  0.1477, -0.3305, -0.2986, -0.4481, -0.4462,  0.1228,\\n\",\n      \"          -0.3850,  0.1912,  0.0674, -0.2659,  0.2090,  0.1939,  0.2671,\\n\",\n      \"          -0.3651],\\n\",\n      \"         [-0.0710,  0.3148,  0.1467,  0.3958, -0.3162,  0.1582,  0.0101,\\n\",\n      \"          -0.0057, -0.0248, -0.2350,  0.3197, -0.1170, -0.5608, -0.0145,\\n\",\n      \"           0.3787, -0.2327,  0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\\n\",\n      \"          -0.2015,  0.5406,  0.2518, -0.4450, -0.4262, -0.0457,  0.5708,\\n\",\n      \"          -0.1106,  0.0239,  0.1353,  0.4127, -0.5620,  0.5556,  0.1576,\\n\",\n      \"           0.0743, -0.3683,  0.6607, -0.4821,  0.2784, -0.1441,  0.2792,\\n\",\n      \"          -0.5013, -0.0068,  0.0980, -0.2505, -0.3301,  0.1433, -0.0295,\\n\",\n      \"           0.3410,  0.2697,  0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\\n\",\n      \"           0.0209,  0.3723, -0.1770,  0.1575, -0.4842,  0.3186,  0.4981,\\n\",\n      \"          -0.3869]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2805, -0.0565, -0.5347,  0.7814, -0.1960, -0.1144,  0.0224,\\n\",\n      \"           0.5690,  0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\\n\",\n      \"           0.4451,  0.1339,  0.4140,  0.4275,  0.2901, -0.5719, -0.6537,\\n\",\n      \"           0.0535,  0.3236,  0.4697,  0.2989, -0.2088,  0.1031,  0.0537,\\n\",\n      \"          -0.0234, -0.2308,  0.0661, -0.0290,  0.5174,  0.2255, -0.0898,\\n\",\n      \"           0.0559, -0.5531,  0.8694,  0.2726,  0.3303,  0.0954,  0.6133,\\n\",\n      \"          -0.0627, -0.2125, -0.4030, -0.3193,  0.2573, -0.6037,  0.1702,\\n\",\n      \"           0.6712,  0.0243, -0.0894,  0.1717, -0.6346, -0.4322, -0.1709,\\n\",\n      \"          -0.2448, -0.0380, -0.2380,  0.5061, -0.5416, -0.4742,  0.0817,\\n\",\n      \"          -0.2495],\\n\",\n      \"         [-0.2146,  0.3102,  0.3063,  0.3200, -0.6042, -0.6355,  0.0326,\\n\",\n      \"           0.1614, -0.1538, -0.6354,  0.2530, -0.2854, -0.6507, -0.2132,\\n\",\n      \"           0.0245,  0.0711,  0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\\n\",\n      \"          -0.2030,  0.5062,  0.7766, -0.2168, -0.6735,  0.7655,  0.4879,\\n\",\n      \"           0.4480,  0.3375,  0.1140,  0.6309, -0.3277,  0.8274, -0.4674,\\n\",\n      \"           0.1451, -0.2880,  0.6146, -0.5080, -0.0806,  0.4445, -0.4506,\\n\",\n      \"          -0.7093,  0.2397,  0.1345, -0.2954, -0.3532,  0.0559,  0.0268,\\n\",\n      \"           0.1805,  0.3976,  0.5215, -0.2548, -0.6891, -0.3597,  0.7438,\\n\",\n      \"           0.2640, -0.0562, -0.6029, -0.1483, -0.6813,  0.0196,  0.5351,\\n\",\n      \"          -0.0903]],\\n\",\n      \"\\n\",\n      \"        [[-0.2415,  0.7097,  0.0926,  0.6104, -0.2053,  0.0463, -0.2585,\\n\",\n      \"           0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\\n\",\n      \"           0.4182, -0.0776,  0.0449,  0.0138,  0.1784, -0.5369,  0.0192,\\n\",\n      \"          -0.2766, -0.2416,  0.3454,  0.4599,  0.2200, -0.0211,  0.2726,\\n\",\n      \"          -0.1927,  0.0486,  0.1538, -0.1676,  0.2175, -0.2153,  0.1954,\\n\",\n      \"          -0.5780, -0.2447,  0.5633,  0.2046,  0.0098,  0.1590,  0.6091,\\n\",\n      \"           0.2573, -0.0760,  0.0456, -0.0988,  0.1492, -0.1859, -0.0842,\\n\",\n      \"           0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\\n\",\n      \"           0.3826,  0.0546, -0.1723,  0.4627, -0.1276, -0.2957, -0.1364,\\n\",\n      \"          -0.5385],\\n\",\n      \"         [-0.2605,  0.3742,  0.3780,  0.3882, -0.4157, -0.1474, -0.3459,\\n\",\n      \"          -0.1452,  0.2388, -0.1367, -0.2496, -0.0807, -0.5850,  0.3555,\\n\",\n      \"           0.1489,  0.2841,  0.3549, -0.0793,  0.2325, -0.4568, -0.4790,\\n\",\n      \"          -0.4872,  0.6107,  0.4140, -0.2444, -0.6675,  0.2835,  0.7947,\\n\",\n      \"           0.1005,  0.4331,  0.2850,  0.3347, -0.2289,  0.5438, -0.5147,\\n\",\n      \"          -0.3536, -0.2994,  0.5414,  0.2631, -0.1074,  0.5495, -0.6653,\\n\",\n      \"          -0.5549,  0.1603,  0.0260, -0.1220, -0.3569,  0.2244,  0.4713,\\n\",\n      \"           0.0967, -0.2427,  0.5279, -0.4483, -0.8291, -0.1444,  0.7616,\\n\",\n      \"          -0.1760,  0.5977, -0.0726, -0.2546, -0.8026, -0.1861,  0.8048,\\n\",\n      \"          -0.8177]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0101,  0.7368,  0.1353,  0.3623, -0.1673, -0.1695, -0.4292,\\n\",\n      \"           0.3395,  0.4179,  0.2769,  0.0541, -0.6404, -0.2328, -0.2319,\\n\",\n      \"           0.3876,  0.3352,  0.4574, -0.0993,  0.5880, -0.7071,  0.2521,\\n\",\n      \"          -0.2288, -0.1628,  0.3605,  0.6020,  0.2196, -0.0099,  0.2126,\\n\",\n      \"          -0.1068, -0.0631,  0.4057, -0.4593,  0.0754,  0.1717,  0.1265,\\n\",\n      \"          -0.2682, -0.0946,  0.5886, -0.2587, -0.1557, -0.1058,  0.6473,\\n\",\n      \"           0.2292,  0.1324, -0.1269,  0.0728,  0.2484, -0.0247,  0.2468,\\n\",\n      \"           0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\\n\",\n      \"          -0.2293,  0.0728, -0.3530,  0.7944, -0.2957, -0.5119, -0.4419,\\n\",\n      \"          -0.3717],\\n\",\n      \"         [ 0.0113,  0.7009,  0.3669,  0.2339, -0.2667, -0.1856, -0.5395,\\n\",\n      \"           0.1107,  0.5073,  0.2647, -0.0704, -0.6602, -0.5361,  0.2408,\\n\",\n      \"           0.2817,  0.3950,  0.5680, -0.2055,  0.5550, -0.6901, -0.1959,\\n\",\n      \"          -0.4332,  0.2280,  0.4189,  0.2258, -0.4593,  0.2202,  0.5288,\\n\",\n      \"           0.0738,  0.2705,  0.4425, -0.4310, -0.2240,  0.4527, -0.2092,\\n\",\n      \"          -0.0978, -0.1509,  0.5826, -0.2875, -0.2302,  0.1348, -0.2252,\\n\",\n      \"          -0.3774,  0.2723, -0.1784,  0.1374, -0.2052,  0.2458,  0.6483,\\n\",\n      \"           0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659,  0.2802,\\n\",\n      \"          -0.4677,  0.4884, -0.2397,  0.6836, -0.7437, -0.4434,  0.2398,\\n\",\n      \"          -0.6909]],\\n\",\n      \"\\n\",\n      \"        [[-0.1499,  0.5642,  0.2436,  0.6794, -0.5401, -0.1918, -0.4804,\\n\",\n      \"          -0.7993,  0.5079,  0.1944,  0.1235, -0.6337, -0.3838,  0.1651,\\n\",\n      \"          -0.0226,  0.7056,  0.5073,  0.4846,  0.7075, -0.7249, -0.5029,\\n\",\n      \"          -0.3810,  0.2479,  0.3878,  0.3729, -0.7414,  0.6079,  0.2253,\\n\",\n      \"          -0.5409, -0.1647,  0.7346, -0.2070,  0.5766,  0.1296, -0.4318,\\n\",\n      \"          -0.1783, -0.7637,  0.6630,  0.2749, -0.0853, -0.2496, -0.5892,\\n\",\n      \"          -0.4976,  0.5714,  0.0305,  0.2431, -0.0632,  0.2296,  0.5531,\\n\",\n      \"           0.7012, -0.2193,  0.3598, -0.0862, -0.7312, -0.3638,  0.1418,\\n\",\n      \"          -0.6391,  0.3536,  0.7525,  0.7845, -0.1925, -0.2130,  0.6129,\\n\",\n      \"          -0.8210],\\n\",\n      \"         [-0.1430,  0.4985,  0.4111,  0.5815, -0.5709, -0.1385, -0.5552,\\n\",\n      \"          -0.6759,  0.5509,  0.1574,  0.0644, -0.6438, -0.5627,  0.4289,\\n\",\n      \"          -0.0483,  0.6774,  0.5765,  0.4106,  0.6559, -0.7302, -0.6284,\\n\",\n      \"          -0.4817,  0.4068,  0.4327,  0.1650, -0.8455,  0.6862,  0.4201,\\n\",\n      \"          -0.4453,  0.0642,  0.7283, -0.1803,  0.4315,  0.2034, -0.5437,\\n\",\n      \"          -0.1295, -0.7425,  0.6695,  0.2883, -0.1398, -0.0725, -0.7465,\\n\",\n      \"          -0.7075,  0.5969,  0.0220,  0.3139, -0.2831,  0.3638,  0.7920,\\n\",\n      \"           0.7428, -0.2189,  0.4677, -0.2263, -0.8023, -0.3903,  0.4736,\\n\",\n      \"          -0.7263,  0.5289,  0.7474,  0.7225, -0.5192, -0.0853,  0.7310,\\n\",\n      \"          -0.8602]],\\n\",\n      \"\\n\",\n      \"        [[-0.4815,  0.9126,  0.1738,  0.5568, -0.4262, -0.7068, -0.8695,\\n\",\n      \"          -0.8301,  0.7604,  0.2362, -0.1668, -0.7793, -0.5133,  0.8693,\\n\",\n      \"          -0.2823,  0.5911, -0.0471,  0.9338,  0.9188, -0.4554, -0.9207,\\n\",\n      \"          -0.4080,  0.2725,  0.4755, -0.1294, -0.7142,  0.3658,  0.4429,\\n\",\n      \"          -0.4493,  0.1301,  0.8900, -0.3870,  0.3769, -0.2069, -0.1930,\\n\",\n      \"           0.1234, -0.7184,  0.7192,  0.3644, -0.1044,  0.7195, -0.9342,\\n\",\n      \"          -0.5897,  0.3508, -0.8337,  0.2371, -0.2133, -0.1291,  0.6067,\\n\",\n      \"           0.8579, -0.5941,  0.7763, -0.7359, -0.8590, -0.3807,  0.1878,\\n\",\n      \"          -0.9442,  0.7712,  0.7813,  0.6701, -0.8621,  0.3011,  0.6963,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [-0.4735,  0.9112,  0.3157,  0.4688, -0.4490, -0.6760, -0.8831,\\n\",\n      \"          -0.7476,  0.7855,  0.2046, -0.1825, -0.7881, -0.6302,  0.9075,\\n\",\n      \"          -0.2902,  0.5753,  0.0178,  0.9260,  0.9011, -0.4670, -0.9303,\\n\",\n      \"          -0.4978,  0.4121,  0.5032, -0.2101, -0.8159,  0.4151,  0.5686,\\n\",\n      \"          -0.3979,  0.2328,  0.8864, -0.3879,  0.2711, -0.1999, -0.2824,\\n\",\n      \"           0.1645, -0.7031,  0.7292,  0.3743, -0.1499,  0.7552, -0.9468,\\n\",\n      \"          -0.7001,  0.3675, -0.8345,  0.2998, -0.3379, -0.0426,  0.8084,\\n\",\n      \"           0.8870, -0.5983,  0.7973, -0.7773, -0.8863, -0.4013,  0.4691,\\n\",\n      \"          -0.9512,  0.8066,  0.7752,  0.6545, -0.9121,  0.3427,  0.7675,\\n\",\n      \"          -0.8953]],\\n\",\n      \"\\n\",\n      \"        [[-0.6765,  0.9525,  0.1030,  0.4227, -0.3215, -0.7217, -0.9419,\\n\",\n      \"          -0.8446,  0.8546,  0.2388, -0.2342, -0.8509, -0.6089,  0.9639,\\n\",\n      \"          -0.4239,  0.4967, -0.2184,  0.9636,  0.9689, -0.3183, -0.9730,\\n\",\n      \"          -0.4344,  0.2963,  0.5202, -0.3317, -0.6881,  0.1724,  0.5905,\\n\",\n      \"          -0.4398,  0.1902,  0.9251, -0.5308,  0.2235, -0.3505,  0.0103,\\n\",\n      \"           0.2907, -0.6651,  0.7546,  0.4169, -0.1121,  0.8568, -0.9631,\\n\",\n      \"          -0.5948,  0.1809, -0.9420,  0.2237, -0.2563, -0.3533,  0.6473,\\n\",\n      \"           0.9275, -0.7550,  0.8779, -0.9219, -0.8924, -0.3938,  0.2219,\\n\",\n      \"          -0.9732,  0.8776,  0.8041,  0.6842, -0.9517,  0.4709,  0.7102,\\n\",\n      \"          -0.9001],\\n\",\n      \"         [-0.6757,  0.9530,  0.2174,  0.3443, -0.3374, -0.7043, -0.9467,\\n\",\n      \"          -0.7903,  0.8670,  0.2115, -0.2482, -0.8579, -0.6793,  0.9696,\\n\",\n      \"          -0.4243,  0.4866, -0.1757,  0.9624,  0.9640, -0.3296, -0.9740,\\n\",\n      \"          -0.5149,  0.4178,  0.5340, -0.3605, -0.7855,  0.2042,  0.6710,\\n\",\n      \"          -0.4170,  0.2421,  0.9241, -0.5300,  0.1449, -0.3548, -0.0612,\\n\",\n      \"           0.3213, -0.6540,  0.7647,  0.4227, -0.1528,  0.8663, -0.9637,\\n\",\n      \"          -0.6518,  0.1862, -0.9404,  0.2761, -0.3477, -0.3001,  0.8170,\\n\",\n      \"           0.9398, -0.7614,  0.8840, -0.9329, -0.9017, -0.4097,  0.4649,\\n\",\n      \"          -0.9736,  0.8814,  0.7989,  0.6698, -0.9634,  0.4825,  0.7578,\\n\",\n      \"          -0.9150]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([2, 2])\\n\",\n      \"dec_state: tensor([[[ 0.8849,  0.2836, -0.8234,  0.6779,  0.3004,  0.3352, -0.1356,\\n\",\n      \"          -0.3319, -0.5613, -0.1489, -0.1844, -0.5994,  0.7358,  0.2737,\\n\",\n      \"          -0.9406, -0.5427,  0.5354,  0.3354, -0.7963,  0.4866,  0.8927,\\n\",\n      \"          -0.6686, -0.2126,  0.8022,  0.7702, -0.8874, -0.3884, -0.7850,\\n\",\n      \"          -0.5349, -0.3571, -0.7991,  0.8674, -0.4470,  0.7153, -0.3306,\\n\",\n      \"          -0.9095,  0.4458, -0.4413,  0.6870,  0.7346, -0.5003,  0.6056,\\n\",\n      \"           0.5892, -0.2412, -0.1297,  0.2386, -0.2971,  0.7759, -0.1845,\\n\",\n      \"           0.4623, -0.3288,  0.8464, -0.4684, -0.4382, -0.1130, -0.0402,\\n\",\n      \"           0.8277,  0.6788,  0.1914, -0.2805, -0.8894,  0.6132, -0.6770,\\n\",\n      \"          -0.3643],\\n\",\n      \"         [ 0.8890,  0.5920, -0.8401,  0.8488,  0.1269,  0.2323, -0.3219,\\n\",\n      \"          -0.5087, -0.5149, -0.3121, -0.1943, -0.6919,  0.7227,  0.3792,\\n\",\n      \"          -0.9444, -0.6711,  0.4093,  0.2762, -0.8557,  0.4478,  0.9048,\\n\",\n      \"          -0.9032, -0.2361,  0.8552,  0.8124, -0.8698, -0.3768, -0.8290,\\n\",\n      \"          -0.5367, -0.2701, -0.8345,  0.9251, -0.4555,  0.7897, -0.6187,\\n\",\n      \"          -0.9585,  0.2867, -0.5720,  0.7234,  0.6823, -0.4890,  0.6080,\\n\",\n      \"           0.6212, -0.0733, -0.1379,  0.5472, -0.5162,  0.8276,  0.2076,\\n\",\n      \"           0.6824, -0.3189,  0.9272,  0.0139, -0.8377, -0.0353, -0.1917,\\n\",\n      \"           0.8454,  0.7753,  0.2464, -0.1500, -0.9101,  0.9012, -0.5975,\\n\",\n      \"          -0.5094]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2890,  0.1556, -0.2685,  0.0012, -0.0716,  0.0172, -0.1474,\\n\",\n      \"           0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724,  0.3325,\\n\",\n      \"           0.1116, -0.5082,  0.3477,  0.2603,  0.0068, -0.6025, -0.5775,\\n\",\n      \"          -0.0787,  0.1094, -0.0924,  0.0407,  0.0145,  0.0717,  0.2579,\\n\",\n      \"          -0.0661, -0.1149,  0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\\n\",\n      \"          -0.1044, -0.1947,  0.1145, -0.0769, -0.3539,  0.1510,  0.6411,\\n\",\n      \"          -0.0553,  0.0845, -0.6039, -0.3417,  0.3798, -0.1020,  0.0173,\\n\",\n      \"           0.3886,  0.1477, -0.3305, -0.2986, -0.4481, -0.4462,  0.1228,\\n\",\n      \"          -0.3850,  0.1912,  0.0674, -0.2659,  0.2090,  0.1939,  0.2671,\\n\",\n      \"          -0.3651],\\n\",\n      \"         [-0.0710,  0.3148,  0.1467,  0.3958, -0.3162,  0.1582,  0.0101,\\n\",\n      \"          -0.0057, -0.0248, -0.2350,  0.3197, -0.1170, -0.5608, -0.0145,\\n\",\n      \"           0.3787, -0.2327,  0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\\n\",\n      \"          -0.2015,  0.5406,  0.2518, -0.4450, -0.4262, -0.0457,  0.5708,\\n\",\n      \"          -0.1106,  0.0239,  0.1353,  0.4127, -0.5620,  0.5556,  0.1576,\\n\",\n      \"           0.0743, -0.3683,  0.6607, -0.4821,  0.2784, -0.1441,  0.2792,\\n\",\n      \"          -0.5013, -0.0068,  0.0980, -0.2505, -0.3301,  0.1433, -0.0295,\\n\",\n      \"           0.3410,  0.2697,  0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\\n\",\n      \"           0.0209,  0.3723, -0.1770,  0.1575, -0.4842,  0.3186,  0.4981,\\n\",\n      \"          -0.3869]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2805, -0.0565, -0.5347,  0.7814, -0.1960, -0.1144,  0.0224,\\n\",\n      \"           0.5690,  0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\\n\",\n      \"           0.4451,  0.1339,  0.4140,  0.4275,  0.2901, -0.5719, -0.6537,\\n\",\n      \"           0.0535,  0.3236,  0.4697,  0.2989, -0.2088,  0.1031,  0.0537,\\n\",\n      \"          -0.0234, -0.2308,  0.0661, -0.0290,  0.5174,  0.2255, -0.0898,\\n\",\n      \"           0.0559, -0.5531,  0.8694,  0.2726,  0.3303,  0.0954,  0.6133,\\n\",\n      \"          -0.0627, -0.2125, -0.4030, -0.3193,  0.2573, -0.6037,  0.1702,\\n\",\n      \"           0.6712,  0.0243, -0.0894,  0.1717, -0.6346, -0.4322, -0.1709,\\n\",\n      \"          -0.2448, -0.0380, -0.2380,  0.5061, -0.5416, -0.4742,  0.0817,\\n\",\n      \"          -0.2495],\\n\",\n      \"         [-0.2146,  0.3102,  0.3063,  0.3200, -0.6042, -0.6355,  0.0326,\\n\",\n      \"           0.1614, -0.1538, -0.6354,  0.2530, -0.2854, -0.6507, -0.2132,\\n\",\n      \"           0.0245,  0.0711,  0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\\n\",\n      \"          -0.2030,  0.5062,  0.7766, -0.2168, -0.6735,  0.7655,  0.4879,\\n\",\n      \"           0.4480,  0.3375,  0.1140,  0.6309, -0.3277,  0.8274, -0.4674,\\n\",\n      \"           0.1451, -0.2880,  0.6146, -0.5080, -0.0806,  0.4445, -0.4506,\\n\",\n      \"          -0.7093,  0.2397,  0.1345, -0.2954, -0.3532,  0.0559,  0.0268,\\n\",\n      \"           0.1805,  0.3976,  0.5215, -0.2548, -0.6891, -0.3597,  0.7438,\\n\",\n      \"           0.2640, -0.0562, -0.6029, -0.1483, -0.6813,  0.0196,  0.5351,\\n\",\n      \"          -0.0903]],\\n\",\n      \"\\n\",\n      \"        [[-0.2415,  0.7097,  0.0926,  0.6104, -0.2053,  0.0463, -0.2585,\\n\",\n      \"           0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\\n\",\n      \"           0.4182, -0.0776,  0.0449,  0.0138,  0.1784, -0.5369,  0.0192,\\n\",\n      \"          -0.2766, -0.2416,  0.3454,  0.4599,  0.2200, -0.0211,  0.2726,\\n\",\n      \"          -0.1927,  0.0486,  0.1538, -0.1676,  0.2175, -0.2153,  0.1954,\\n\",\n      \"          -0.5780, -0.2447,  0.5633,  0.2046,  0.0098,  0.1590,  0.6091,\\n\",\n      \"           0.2573, -0.0760,  0.0456, -0.0988,  0.1492, -0.1859, -0.0842,\\n\",\n      \"           0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\\n\",\n      \"           0.3826,  0.0546, -0.1723,  0.4627, -0.1276, -0.2957, -0.1364,\\n\",\n      \"          -0.5385],\\n\",\n      \"         [-0.2605,  0.3742,  0.3780,  0.3882, -0.4157, -0.1474, -0.3459,\\n\",\n      \"          -0.1452,  0.2388, -0.1367, -0.2496, -0.0807, -0.5850,  0.3555,\\n\",\n      \"           0.1489,  0.2841,  0.3549, -0.0793,  0.2325, -0.4568, -0.4790,\\n\",\n      \"          -0.4872,  0.6107,  0.4140, -0.2444, -0.6675,  0.2835,  0.7947,\\n\",\n      \"           0.1005,  0.4331,  0.2850,  0.3347, -0.2289,  0.5438, -0.5147,\\n\",\n      \"          -0.3536, -0.2994,  0.5414,  0.2631, -0.1074,  0.5495, -0.6653,\\n\",\n      \"          -0.5549,  0.1603,  0.0260, -0.1220, -0.3569,  0.2244,  0.4713,\\n\",\n      \"           0.0967, -0.2427,  0.5279, -0.4483, -0.8291, -0.1444,  0.7616,\\n\",\n      \"          -0.1760,  0.5977, -0.0726, -0.2546, -0.8026, -0.1861,  0.8048,\\n\",\n      \"          -0.8177]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0101,  0.7368,  0.1353,  0.3623, -0.1673, -0.1695, -0.4292,\\n\",\n      \"           0.3395,  0.4179,  0.2769,  0.0541, -0.6404, -0.2328, -0.2319,\\n\",\n      \"           0.3876,  0.3352,  0.4574, -0.0993,  0.5880, -0.7071,  0.2521,\\n\",\n      \"          -0.2288, -0.1628,  0.3605,  0.6020,  0.2196, -0.0099,  0.2126,\\n\",\n      \"          -0.1068, -0.0631,  0.4057, -0.4593,  0.0754,  0.1717,  0.1265,\\n\",\n      \"          -0.2682, -0.0946,  0.5886, -0.2587, -0.1557, -0.1058,  0.6473,\\n\",\n      \"           0.2292,  0.1324, -0.1269,  0.0728,  0.2484, -0.0247,  0.2468,\\n\",\n      \"           0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\\n\",\n      \"          -0.2293,  0.0728, -0.3530,  0.7944, -0.2957, -0.5119, -0.4419,\\n\",\n      \"          -0.3717],\\n\",\n      \"         [ 0.0113,  0.7009,  0.3669,  0.2339, -0.2667, -0.1856, -0.5395,\\n\",\n      \"           0.1107,  0.5073,  0.2647, -0.0704, -0.6602, -0.5361,  0.2408,\\n\",\n      \"           0.2817,  0.3950,  0.5680, -0.2055,  0.5550, -0.6901, -0.1959,\\n\",\n      \"          -0.4332,  0.2280,  0.4189,  0.2258, -0.4593,  0.2202,  0.5288,\\n\",\n      \"           0.0738,  0.2705,  0.4425, -0.4310, -0.2240,  0.4527, -0.2092,\\n\",\n      \"          -0.0978, -0.1509,  0.5826, -0.2875, -0.2302,  0.1348, -0.2252,\\n\",\n      \"          -0.3774,  0.2723, -0.1784,  0.1374, -0.2052,  0.2458,  0.6483,\\n\",\n      \"           0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659,  0.2802,\\n\",\n      \"          -0.4677,  0.4884, -0.2397,  0.6836, -0.7437, -0.4434,  0.2398,\\n\",\n      \"          -0.6909]],\\n\",\n      \"\\n\",\n      \"        [[-0.1499,  0.5642,  0.2436,  0.6794, -0.5401, -0.1918, -0.4804,\\n\",\n      \"          -0.7993,  0.5079,  0.1944,  0.1235, -0.6337, -0.3838,  0.1651,\\n\",\n      \"          -0.0226,  0.7056,  0.5073,  0.4846,  0.7075, -0.7249, -0.5029,\\n\",\n      \"          -0.3810,  0.2479,  0.3878,  0.3729, -0.7414,  0.6079,  0.2253,\\n\",\n      \"          -0.5409, -0.1647,  0.7346, -0.2070,  0.5766,  0.1296, -0.4318,\\n\",\n      \"          -0.1783, -0.7637,  0.6630,  0.2749, -0.0853, -0.2496, -0.5892,\\n\",\n      \"          -0.4976,  0.5714,  0.0305,  0.2431, -0.0632,  0.2296,  0.5531,\\n\",\n      \"           0.7012, -0.2193,  0.3598, -0.0862, -0.7312, -0.3638,  0.1418,\\n\",\n      \"          -0.6391,  0.3536,  0.7525,  0.7845, -0.1925, -0.2130,  0.6129,\\n\",\n      \"          -0.8210],\\n\",\n      \"         [-0.1430,  0.4985,  0.4111,  0.5815, -0.5709, -0.1385, -0.5552,\\n\",\n      \"          -0.6759,  0.5509,  0.1574,  0.0644, -0.6438, -0.5627,  0.4289,\\n\",\n      \"          -0.0483,  0.6774,  0.5765,  0.4106,  0.6559, -0.7302, -0.6284,\\n\",\n      \"          -0.4817,  0.4068,  0.4327,  0.1650, -0.8455,  0.6862,  0.4201,\\n\",\n      \"          -0.4453,  0.0642,  0.7283, -0.1803,  0.4315,  0.2034, -0.5437,\\n\",\n      \"          -0.1295, -0.7425,  0.6695,  0.2883, -0.1398, -0.0725, -0.7465,\\n\",\n      \"          -0.7075,  0.5969,  0.0220,  0.3139, -0.2831,  0.3638,  0.7920,\\n\",\n      \"           0.7428, -0.2189,  0.4677, -0.2263, -0.8023, -0.3903,  0.4736,\\n\",\n      \"          -0.7263,  0.5289,  0.7474,  0.7225, -0.5192, -0.0853,  0.7310,\\n\",\n      \"          -0.8602]],\\n\",\n      \"\\n\",\n      \"        [[-0.4815,  0.9126,  0.1738,  0.5568, -0.4262, -0.7068, -0.8695,\\n\",\n      \"          -0.8301,  0.7604,  0.2362, -0.1668, -0.7793, -0.5133,  0.8693,\\n\",\n      \"          -0.2823,  0.5911, -0.0471,  0.9338,  0.9188, -0.4554, -0.9207,\\n\",\n      \"          -0.4080,  0.2725,  0.4755, -0.1294, -0.7142,  0.3658,  0.4429,\\n\",\n      \"          -0.4493,  0.1301,  0.8900, -0.3870,  0.3769, -0.2069, -0.1930,\\n\",\n      \"           0.1234, -0.7184,  0.7192,  0.3644, -0.1044,  0.7195, -0.9342,\\n\",\n      \"          -0.5897,  0.3508, -0.8337,  0.2371, -0.2133, -0.1291,  0.6067,\\n\",\n      \"           0.8579, -0.5941,  0.7763, -0.7359, -0.8590, -0.3807,  0.1878,\\n\",\n      \"          -0.9442,  0.7712,  0.7813,  0.6701, -0.8621,  0.3011,  0.6963,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [-0.4735,  0.9112,  0.3157,  0.4688, -0.4490, -0.6760, -0.8831,\\n\",\n      \"          -0.7476,  0.7855,  0.2046, -0.1825, -0.7881, -0.6302,  0.9075,\\n\",\n      \"          -0.2902,  0.5753,  0.0178,  0.9260,  0.9011, -0.4670, -0.9303,\\n\",\n      \"          -0.4978,  0.4121,  0.5032, -0.2101, -0.8159,  0.4151,  0.5686,\\n\",\n      \"          -0.3979,  0.2328,  0.8864, -0.3879,  0.2711, -0.1999, -0.2824,\\n\",\n      \"           0.1645, -0.7031,  0.7292,  0.3743, -0.1499,  0.7552, -0.9468,\\n\",\n      \"          -0.7001,  0.3675, -0.8345,  0.2998, -0.3379, -0.0426,  0.8084,\\n\",\n      \"           0.8870, -0.5983,  0.7973, -0.7773, -0.8863, -0.4013,  0.4691,\\n\",\n      \"          -0.9512,  0.8066,  0.7752,  0.6545, -0.9121,  0.3427,  0.7675,\\n\",\n      \"          -0.8953]],\\n\",\n      \"\\n\",\n      \"        [[-0.6765,  0.9525,  0.1030,  0.4227, -0.3215, -0.7217, -0.9419,\\n\",\n      \"          -0.8446,  0.8546,  0.2388, -0.2342, -0.8509, -0.6089,  0.9639,\\n\",\n      \"          -0.4239,  0.4967, -0.2184,  0.9636,  0.9689, -0.3183, -0.9730,\\n\",\n      \"          -0.4344,  0.2963,  0.5202, -0.3317, -0.6881,  0.1724,  0.5905,\\n\",\n      \"          -0.4398,  0.1902,  0.9251, -0.5308,  0.2235, -0.3505,  0.0103,\\n\",\n      \"           0.2907, -0.6651,  0.7546,  0.4169, -0.1121,  0.8568, -0.9631,\\n\",\n      \"          -0.5948,  0.1809, -0.9420,  0.2237, -0.2563, -0.3533,  0.6473,\\n\",\n      \"           0.9275, -0.7550,  0.8779, -0.9219, -0.8924, -0.3938,  0.2219,\\n\",\n      \"          -0.9732,  0.8776,  0.8041,  0.6842, -0.9517,  0.4709,  0.7102,\\n\",\n      \"          -0.9001],\\n\",\n      \"         [-0.6757,  0.9530,  0.2174,  0.3443, -0.3374, -0.7043, -0.9467,\\n\",\n      \"          -0.7903,  0.8670,  0.2115, -0.2482, -0.8579, -0.6793,  0.9696,\\n\",\n      \"          -0.4243,  0.4866, -0.1757,  0.9624,  0.9640, -0.3296, -0.9740,\\n\",\n      \"          -0.5149,  0.4178,  0.5340, -0.3605, -0.7855,  0.2042,  0.6710,\\n\",\n      \"          -0.4170,  0.2421,  0.9241, -0.5300,  0.1449, -0.3548, -0.0612,\\n\",\n      \"           0.3213, -0.6540,  0.7647,  0.4227, -0.1528,  0.8663, -0.9637,\\n\",\n      \"          -0.6518,  0.1862, -0.9404,  0.2761, -0.3477, -0.3001,  0.8170,\\n\",\n      \"           0.9398, -0.7614,  0.8840, -0.9329, -0.9017, -0.4097,  0.4649,\\n\",\n      \"          -0.9736,  0.8814,  0.7989,  0.6698, -0.9634,  0.4825,  0.7578,\\n\",\n      \"          -0.9150]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([0, 0])\\n\",\n      \"dec_state: tensor([[[ 0.7206,  0.7217, -0.3281,  0.5202,  0.1064, -0.0930, -0.0052,\\n\",\n      \"          -0.5294, -0.4578, -0.1536,  0.1659, -0.1806,  0.2039,  0.4205,\\n\",\n      \"          -0.7213, -0.4749,  0.0229, -0.3143, -0.5038,  0.6731,  0.9268,\\n\",\n      \"          -0.7578, -0.2162,  0.7157,  0.8430, -0.7457, -0.5937, -0.5931,\\n\",\n      \"          -0.6644, -0.5764, -0.2851,  0.8400,  0.5630,  0.5846, -0.4902,\\n\",\n      \"          -0.9598,  0.1132, -0.6057,  0.5636,  0.8117, -0.3320,  0.7005,\\n\",\n      \"           0.7850, -0.4096, -0.4255,  0.6619, -0.3877,  0.5099, -0.0622,\\n\",\n      \"           0.6422,  0.3801,  0.8518, -0.2343, -0.4903,  0.1009,  0.0581,\\n\",\n      \"           0.8097,  0.7621,  0.0341, -0.2831, -0.9247,  0.4542, -0.5336,\\n\",\n      \"          -0.3749],\\n\",\n      \"         [ 0.7630,  0.8500, -0.2590,  0.7070, -0.0394, -0.0799, -0.1031,\\n\",\n      \"          -0.5878, -0.3718, -0.2694,  0.1243, -0.2498,  0.2616,  0.5061,\\n\",\n      \"          -0.7315, -0.5329, -0.1570, -0.4657, -0.5801,  0.6683,  0.9306,\\n\",\n      \"          -0.9180, -0.2548,  0.7504,  0.8630, -0.7250, -0.5068, -0.6007,\\n\",\n      \"          -0.6481, -0.5178, -0.3468,  0.9069,  0.5599,  0.6885, -0.5429,\\n\",\n      \"          -0.9792, -0.0550, -0.6936,  0.5973,  0.7663, -0.2912,  0.7111,\\n\",\n      \"           0.7899, -0.2427, -0.4031,  0.7910, -0.5594,  0.5412,  0.2572,\\n\",\n      \"           0.7828,  0.3476,  0.9183,  0.1526, -0.7453,  0.1504, -0.0506,\\n\",\n      \"           0.8164,  0.8141,  0.0510, -0.1495, -0.9310,  0.7290, -0.5469,\\n\",\n      \"          -0.5112]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2890,  0.1556, -0.2685,  0.0012, -0.0716,  0.0172, -0.1474,\\n\",\n      \"           0.1517, -0.1082, -0.1535, -0.1945, -0.1597, -0.4724,  0.3325,\\n\",\n      \"           0.1116, -0.5082,  0.3477,  0.2603,  0.0068, -0.6025, -0.5775,\\n\",\n      \"          -0.0787,  0.1094, -0.0924,  0.0407,  0.0145,  0.0717,  0.2579,\\n\",\n      \"          -0.0661, -0.1149,  0.0403, -0.0960, -0.0252, -0.3570, -0.1025,\\n\",\n      \"          -0.1044, -0.1947,  0.1145, -0.0769, -0.3539,  0.1510,  0.6411,\\n\",\n      \"          -0.0553,  0.0845, -0.6039, -0.3417,  0.3798, -0.1020,  0.0173,\\n\",\n      \"           0.3886,  0.1477, -0.3305, -0.2986, -0.4481, -0.4462,  0.1228,\\n\",\n      \"          -0.3850,  0.1912,  0.0674, -0.2659,  0.2090,  0.1939,  0.2671,\\n\",\n      \"          -0.3651],\\n\",\n      \"         [-0.0710,  0.3148,  0.1467,  0.3958, -0.3162,  0.1582,  0.0101,\\n\",\n      \"          -0.0057, -0.0248, -0.2350,  0.3197, -0.1170, -0.5608, -0.0145,\\n\",\n      \"           0.3787, -0.2327,  0.5809, -0.5215, -0.5376, -0.6610, -0.4188,\\n\",\n      \"          -0.2015,  0.5406,  0.2518, -0.4450, -0.4262, -0.0457,  0.5708,\\n\",\n      \"          -0.1106,  0.0239,  0.1353,  0.4127, -0.5620,  0.5556,  0.1576,\\n\",\n      \"           0.0743, -0.3683,  0.6607, -0.4821,  0.2784, -0.1441,  0.2792,\\n\",\n      \"          -0.5013, -0.0068,  0.0980, -0.2505, -0.3301,  0.1433, -0.0295,\\n\",\n      \"           0.3410,  0.2697,  0.4542, -0.4004, -0.3565, -0.2597, -0.0960,\\n\",\n      \"           0.0209,  0.3723, -0.1770,  0.1575, -0.4842,  0.3186,  0.4981,\\n\",\n      \"          -0.3869]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2805, -0.0565, -0.5347,  0.7814, -0.1960, -0.1144,  0.0224,\\n\",\n      \"           0.5690,  0.3655, -0.3380, -0.1017, -0.1267, -0.1613, -0.3726,\\n\",\n      \"           0.4451,  0.1339,  0.4140,  0.4275,  0.2901, -0.5719, -0.6537,\\n\",\n      \"           0.0535,  0.3236,  0.4697,  0.2989, -0.2088,  0.1031,  0.0537,\\n\",\n      \"          -0.0234, -0.2308,  0.0661, -0.0290,  0.5174,  0.2255, -0.0898,\\n\",\n      \"           0.0559, -0.5531,  0.8694,  0.2726,  0.3303,  0.0954,  0.6133,\\n\",\n      \"          -0.0627, -0.2125, -0.4030, -0.3193,  0.2573, -0.6037,  0.1702,\\n\",\n      \"           0.6712,  0.0243, -0.0894,  0.1717, -0.6346, -0.4322, -0.1709,\\n\",\n      \"          -0.2448, -0.0380, -0.2380,  0.5061, -0.5416, -0.4742,  0.0817,\\n\",\n      \"          -0.2495],\\n\",\n      \"         [-0.2146,  0.3102,  0.3063,  0.3200, -0.6042, -0.6355,  0.0326,\\n\",\n      \"           0.1614, -0.1538, -0.6354,  0.2530, -0.2854, -0.6507, -0.2132,\\n\",\n      \"           0.0245,  0.0711,  0.7447, -0.5671, -0.5935, -0.6512, -0.3503,\\n\",\n      \"          -0.2030,  0.5062,  0.7766, -0.2168, -0.6735,  0.7655,  0.4879,\\n\",\n      \"           0.4480,  0.3375,  0.1140,  0.6309, -0.3277,  0.8274, -0.4674,\\n\",\n      \"           0.1451, -0.2880,  0.6146, -0.5080, -0.0806,  0.4445, -0.4506,\\n\",\n      \"          -0.7093,  0.2397,  0.1345, -0.2954, -0.3532,  0.0559,  0.0268,\\n\",\n      \"           0.1805,  0.3976,  0.5215, -0.2548, -0.6891, -0.3597,  0.7438,\\n\",\n      \"           0.2640, -0.0562, -0.6029, -0.1483, -0.6813,  0.0196,  0.5351,\\n\",\n      \"          -0.0903]],\\n\",\n      \"\\n\",\n      \"        [[-0.2415,  0.7097,  0.0926,  0.6104, -0.2053,  0.0463, -0.2585,\\n\",\n      \"           0.3354, -0.3738, -0.1244, -0.0612, -0.0745, -0.1188, -0.3298,\\n\",\n      \"           0.4182, -0.0776,  0.0449,  0.0138,  0.1784, -0.5369,  0.0192,\\n\",\n      \"          -0.2766, -0.2416,  0.3454,  0.4599,  0.2200, -0.0211,  0.2726,\\n\",\n      \"          -0.1927,  0.0486,  0.1538, -0.1676,  0.2175, -0.2153,  0.1954,\\n\",\n      \"          -0.5780, -0.2447,  0.5633,  0.2046,  0.0098,  0.1590,  0.6091,\\n\",\n      \"           0.2573, -0.0760,  0.0456, -0.0988,  0.1492, -0.1859, -0.0842,\\n\",\n      \"           0.1210, -0.2174, -0.2203, -0.2447, -0.5194, -0.0165, -0.4840,\\n\",\n      \"           0.3826,  0.0546, -0.1723,  0.4627, -0.1276, -0.2957, -0.1364,\\n\",\n      \"          -0.5385],\\n\",\n      \"         [-0.2605,  0.3742,  0.3780,  0.3882, -0.4157, -0.1474, -0.3459,\\n\",\n      \"          -0.1452,  0.2388, -0.1367, -0.2496, -0.0807, -0.5850,  0.3555,\\n\",\n      \"           0.1489,  0.2841,  0.3549, -0.0793,  0.2325, -0.4568, -0.4790,\\n\",\n      \"          -0.4872,  0.6107,  0.4140, -0.2444, -0.6675,  0.2835,  0.7947,\\n\",\n      \"           0.1005,  0.4331,  0.2850,  0.3347, -0.2289,  0.5438, -0.5147,\\n\",\n      \"          -0.3536, -0.2994,  0.5414,  0.2631, -0.1074,  0.5495, -0.6653,\\n\",\n      \"          -0.5549,  0.1603,  0.0260, -0.1220, -0.3569,  0.2244,  0.4713,\\n\",\n      \"           0.0967, -0.2427,  0.5279, -0.4483, -0.8291, -0.1444,  0.7616,\\n\",\n      \"          -0.1760,  0.5977, -0.0726, -0.2546, -0.8026, -0.1861,  0.8048,\\n\",\n      \"          -0.8177]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0101,  0.7368,  0.1353,  0.3623, -0.1673, -0.1695, -0.4292,\\n\",\n      \"           0.3395,  0.4179,  0.2769,  0.0541, -0.6404, -0.2328, -0.2319,\\n\",\n      \"           0.3876,  0.3352,  0.4574, -0.0993,  0.5880, -0.7071,  0.2521,\\n\",\n      \"          -0.2288, -0.1628,  0.3605,  0.6020,  0.2196, -0.0099,  0.2126,\\n\",\n      \"          -0.1068, -0.0631,  0.4057, -0.4593,  0.0754,  0.1717,  0.1265,\\n\",\n      \"          -0.2682, -0.0946,  0.5886, -0.2587, -0.1557, -0.1058,  0.6473,\\n\",\n      \"           0.2292,  0.1324, -0.1269,  0.0728,  0.2484, -0.0247,  0.2468,\\n\",\n      \"           0.2868, -0.1899, -0.4976, -0.3398, -0.6793, -0.0651, -0.3162,\\n\",\n      \"          -0.2293,  0.0728, -0.3530,  0.7944, -0.2957, -0.5119, -0.4419,\\n\",\n      \"          -0.3717],\\n\",\n      \"         [ 0.0113,  0.7009,  0.3669,  0.2339, -0.2667, -0.1856, -0.5395,\\n\",\n      \"           0.1107,  0.5073,  0.2647, -0.0704, -0.6602, -0.5361,  0.2408,\\n\",\n      \"           0.2817,  0.3950,  0.5680, -0.2055,  0.5550, -0.6901, -0.1959,\\n\",\n      \"          -0.4332,  0.2280,  0.4189,  0.2258, -0.4593,  0.2202,  0.5288,\\n\",\n      \"           0.0738,  0.2705,  0.4425, -0.4310, -0.2240,  0.4527, -0.2092,\\n\",\n      \"          -0.0978, -0.1509,  0.5826, -0.2875, -0.2302,  0.1348, -0.2252,\\n\",\n      \"          -0.3774,  0.2723, -0.1784,  0.1374, -0.2052,  0.2458,  0.6483,\\n\",\n      \"           0.3354, -0.1976, -0.1113, -0.5008, -0.8135, -0.1659,  0.2802,\\n\",\n      \"          -0.4677,  0.4884, -0.2397,  0.6836, -0.7437, -0.4434,  0.2398,\\n\",\n      \"          -0.6909]],\\n\",\n      \"\\n\",\n      \"        [[-0.1499,  0.5642,  0.2436,  0.6794, -0.5401, -0.1918, -0.4804,\\n\",\n      \"          -0.7993,  0.5079,  0.1944,  0.1235, -0.6337, -0.3838,  0.1651,\\n\",\n      \"          -0.0226,  0.7056,  0.5073,  0.4846,  0.7075, -0.7249, -0.5029,\\n\",\n      \"          -0.3810,  0.2479,  0.3878,  0.3729, -0.7414,  0.6079,  0.2253,\\n\",\n      \"          -0.5409, -0.1647,  0.7346, -0.2070,  0.5766,  0.1296, -0.4318,\\n\",\n      \"          -0.1783, -0.7637,  0.6630,  0.2749, -0.0853, -0.2496, -0.5892,\\n\",\n      \"          -0.4976,  0.5714,  0.0305,  0.2431, -0.0632,  0.2296,  0.5531,\\n\",\n      \"           0.7012, -0.2193,  0.3598, -0.0862, -0.7312, -0.3638,  0.1418,\\n\",\n      \"          -0.6391,  0.3536,  0.7525,  0.7845, -0.1925, -0.2130,  0.6129,\\n\",\n      \"          -0.8210],\\n\",\n      \"         [-0.1430,  0.4985,  0.4111,  0.5815, -0.5709, -0.1385, -0.5552,\\n\",\n      \"          -0.6759,  0.5509,  0.1574,  0.0644, -0.6438, -0.5627,  0.4289,\\n\",\n      \"          -0.0483,  0.6774,  0.5765,  0.4106,  0.6559, -0.7302, -0.6284,\\n\",\n      \"          -0.4817,  0.4068,  0.4327,  0.1650, -0.8455,  0.6862,  0.4201,\\n\",\n      \"          -0.4453,  0.0642,  0.7283, -0.1803,  0.4315,  0.2034, -0.5437,\\n\",\n      \"          -0.1295, -0.7425,  0.6695,  0.2883, -0.1398, -0.0725, -0.7465,\\n\",\n      \"          -0.7075,  0.5969,  0.0220,  0.3139, -0.2831,  0.3638,  0.7920,\\n\",\n      \"           0.7428, -0.2189,  0.4677, -0.2263, -0.8023, -0.3903,  0.4736,\\n\",\n      \"          -0.7263,  0.5289,  0.7474,  0.7225, -0.5192, -0.0853,  0.7310,\\n\",\n      \"          -0.8602]],\\n\",\n      \"\\n\",\n      \"        [[-0.4815,  0.9126,  0.1738,  0.5568, -0.4262, -0.7068, -0.8695,\\n\",\n      \"          -0.8301,  0.7604,  0.2362, -0.1668, -0.7793, -0.5133,  0.8693,\\n\",\n      \"          -0.2823,  0.5911, -0.0471,  0.9338,  0.9188, -0.4554, -0.9207,\\n\",\n      \"          -0.4080,  0.2725,  0.4755, -0.1294, -0.7142,  0.3658,  0.4429,\\n\",\n      \"          -0.4493,  0.1301,  0.8900, -0.3870,  0.3769, -0.2069, -0.1930,\\n\",\n      \"           0.1234, -0.7184,  0.7192,  0.3644, -0.1044,  0.7195, -0.9342,\\n\",\n      \"          -0.5897,  0.3508, -0.8337,  0.2371, -0.2133, -0.1291,  0.6067,\\n\",\n      \"           0.8579, -0.5941,  0.7763, -0.7359, -0.8590, -0.3807,  0.1878,\\n\",\n      \"          -0.9442,  0.7712,  0.7813,  0.6701, -0.8621,  0.3011,  0.6963,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [-0.4735,  0.9112,  0.3157,  0.4688, -0.4490, -0.6760, -0.8831,\\n\",\n      \"          -0.7476,  0.7855,  0.2046, -0.1825, -0.7881, -0.6302,  0.9075,\\n\",\n      \"          -0.2902,  0.5753,  0.0178,  0.9260,  0.9011, -0.4670, -0.9303,\\n\",\n      \"          -0.4978,  0.4121,  0.5032, -0.2101, -0.8159,  0.4151,  0.5686,\\n\",\n      \"          -0.3979,  0.2328,  0.8864, -0.3879,  0.2711, -0.1999, -0.2824,\\n\",\n      \"           0.1645, -0.7031,  0.7292,  0.3743, -0.1499,  0.7552, -0.9468,\\n\",\n      \"          -0.7001,  0.3675, -0.8345,  0.2998, -0.3379, -0.0426,  0.8084,\\n\",\n      \"           0.8870, -0.5983,  0.7973, -0.7773, -0.8863, -0.4013,  0.4691,\\n\",\n      \"          -0.9512,  0.8066,  0.7752,  0.6545, -0.9121,  0.3427,  0.7675,\\n\",\n      \"          -0.8953]],\\n\",\n      \"\\n\",\n      \"        [[-0.6765,  0.9525,  0.1030,  0.4227, -0.3215, -0.7217, -0.9419,\\n\",\n      \"          -0.8446,  0.8546,  0.2388, -0.2342, -0.8509, -0.6089,  0.9639,\\n\",\n      \"          -0.4239,  0.4967, -0.2184,  0.9636,  0.9689, -0.3183, -0.9730,\\n\",\n      \"          -0.4344,  0.2963,  0.5202, -0.3317, -0.6881,  0.1724,  0.5905,\\n\",\n      \"          -0.4398,  0.1902,  0.9251, -0.5308,  0.2235, -0.3505,  0.0103,\\n\",\n      \"           0.2907, -0.6651,  0.7546,  0.4169, -0.1121,  0.8568, -0.9631,\\n\",\n      \"          -0.5948,  0.1809, -0.9420,  0.2237, -0.2563, -0.3533,  0.6473,\\n\",\n      \"           0.9275, -0.7550,  0.8779, -0.9219, -0.8924, -0.3938,  0.2219,\\n\",\n      \"          -0.9732,  0.8776,  0.8041,  0.6842, -0.9517,  0.4709,  0.7102,\\n\",\n      \"          -0.9001],\\n\",\n      \"         [-0.6757,  0.9530,  0.2174,  0.3443, -0.3374, -0.7043, -0.9467,\\n\",\n      \"          -0.7903,  0.8670,  0.2115, -0.2482, -0.8579, -0.6793,  0.9696,\\n\",\n      \"          -0.4243,  0.4866, -0.1757,  0.9624,  0.9640, -0.3296, -0.9740,\\n\",\n      \"          -0.5149,  0.4178,  0.5340, -0.3605, -0.7855,  0.2042,  0.6710,\\n\",\n      \"          -0.4170,  0.2421,  0.9241, -0.5300,  0.1449, -0.3548, -0.0612,\\n\",\n      \"           0.3213, -0.6540,  0.7647,  0.4227, -0.1528,  0.8663, -0.9637,\\n\",\n      \"          -0.6518,  0.1862, -0.9404,  0.2761, -0.3477, -0.3001,  0.8170,\\n\",\n      \"           0.9398, -0.7614,  0.8840, -0.9329, -0.9017, -0.4097,  0.4649,\\n\",\n      \"          -0.9736,  0.8814,  0.7989,  0.6698, -0.9634,  0.4825,  0.7578,\\n\",\n      \"          -0.9150]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[ 8, 10, 23, 27,  3,  2,  0],\\n\",\n      \"        [ 5,  4, 42,  3,  2,  0,  0]])\\n\",\n      \"tensor([[ 6,  4, 24, 33,  3,  2,  0],\\n\",\n      \"        [ 8,  4, 29,  3,  2,  0,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-1.9370e-02,  9.4435e-01, -1.4626e-01,  5.7626e-01, -7.8327e-01,\\n\",\n      \"          -5.8816e-01, -9.3752e-01, -8.7685e-01,  8.9270e-01, -1.8368e-01,\\n\",\n      \"           1.7108e-01, -8.4123e-01, -4.6682e-01,  9.2723e-01, -1.0656e-01,\\n\",\n      \"           7.1731e-01,  1.5608e-01,  9.5950e-01,  9.3215e-01,  9.4179e-01,\\n\",\n      \"          -7.1560e-01, -3.6579e-01,  5.0570e-01,  6.5778e-01,  5.7784e-01,\\n\",\n      \"          -7.8652e-01, -2.5455e-02, -1.3982e-01, -4.5903e-01, -1.0105e-01,\\n\",\n      \"          -5.7052e-02, -1.3978e-01,  9.4126e-01,  5.3936e-01, -4.6243e-02,\\n\",\n      \"           5.1475e-01,  6.8898e-01,  5.0055e-01,  1.0343e-01, -7.1219e-01,\\n\",\n      \"           7.3519e-02, -9.6643e-01,  2.4688e-01,  4.2217e-02, -9.4337e-01,\\n\",\n      \"           5.9022e-01, -5.8385e-01, -7.6515e-01,  8.6100e-01,  9.2425e-01,\\n\",\n      \"          -7.0375e-01,  9.5339e-01, -8.3630e-01, -1.5542e-01, -6.2936e-01,\\n\",\n      \"           1.8626e-01, -8.8788e-01,  8.4653e-01,  8.1216e-01,  4.5412e-01,\\n\",\n      \"          -9.3041e-01,  8.0564e-01,  7.7082e-01, -8.7421e-01],\\n\",\n      \"         [-3.3193e-01,  9.8078e-01, -2.3659e-01,  4.7303e-01, -6.4527e-01,\\n\",\n      \"          -5.3057e-01, -9.6771e-01, -9.0554e-01,  9.4604e-01, -2.9873e-01,\\n\",\n      \"           9.4434e-02, -9.3510e-01, -5.5483e-01,  9.8375e-01, -2.1864e-01,\\n\",\n      \"           6.9026e-01,  2.4480e-01,  9.7695e-01,  9.4018e-01,  9.4791e-01,\\n\",\n      \"          -5.5266e-01, -5.6941e-01,  4.9791e-01,  7.4033e-01,  6.6584e-01,\\n\",\n      \"          -7.9681e-01, -1.4152e-01, -1.3080e-01, -5.4054e-01, -4.0669e-01,\\n\",\n      \"          -3.1218e-02,  7.0408e-04,  9.4749e-01,  4.2400e-01,  4.4675e-03,\\n\",\n      \"           5.4005e-01,  7.6490e-01,  6.8828e-01,  1.1556e-01, -5.5039e-01,\\n\",\n      \"          -1.8149e-01, -9.6165e-01,  4.6269e-01, -1.3727e-01, -9.6499e-01,\\n\",\n      \"           5.6910e-01, -6.0132e-01, -8.4214e-01,  8.5596e-01,  9.8562e-01,\\n\",\n      \"          -3.5161e-01,  9.8248e-01, -9.4662e-01, -1.7085e-01, -7.0614e-01,\\n\",\n      \"           2.0749e-01, -9.1938e-01,  9.3703e-01,  8.4729e-01,  1.8676e-01,\\n\",\n      \"          -9.8153e-01,  8.9692e-01,  8.1144e-01, -9.0612e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.7979e-01,  9.4467e-02, -1.0363e-01,  4.6698e-01,  2.1990e-01,\\n\",\n      \"           1.0968e-01,  6.3953e-02, -6.2686e-01,  3.3735e-01, -1.5381e-01,\\n\",\n      \"           4.4057e-01, -1.3544e-01,  3.1925e-02,  2.8315e-01,  1.3914e-01,\\n\",\n      \"           4.8791e-01,  2.2082e-01,  6.2355e-03,  2.7165e-01,  1.7884e-01,\\n\",\n      \"          -5.0191e-01, -1.1003e-01,  2.6037e-01, -1.4109e-01, -4.9608e-01,\\n\",\n      \"           1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\\n\",\n      \"           1.6098e-01, -1.8203e-01,  8.5968e-02,  1.6584e-01, -1.8070e-01,\\n\",\n      \"          -1.0343e-02, -5.9731e-01,  2.7544e-01,  5.4321e-01,  1.2392e-01,\\n\",\n      \"          -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\\n\",\n      \"           3.5685e-01, -2.1323e-01, -1.0543e-01,  2.0594e-01, -2.2193e-02,\\n\",\n      \"           2.7921e-01,  4.1012e-01,  2.2706e-01, -5.1412e-01, -3.2686e-01,\\n\",\n      \"           1.8903e-01, -5.3830e-01,  2.9266e-01,  1.3446e-01,  1.6127e-01,\\n\",\n      \"          -4.3490e-01,  1.0959e-01, -3.0305e-02, -3.5573e-01],\\n\",\n      \"         [-2.6735e-01,  3.3112e-01, -2.7546e-01,  3.3183e-02, -8.5314e-02,\\n\",\n      \"          -4.6477e-02, -2.8822e-01,  1.6451e-01, -7.2843e-02, -1.5546e-01,\\n\",\n      \"          -2.3366e-01, -1.8629e-01, -5.3722e-01,  3.5115e-01,  1.0961e-01,\\n\",\n      \"          -4.6762e-01,  4.1160e-01,  2.9585e-01,  9.0005e-02, -6.4770e-01,\\n\",\n      \"          -6.2316e-01, -1.1505e-01,  1.1418e-01, -7.1088e-02,  1.3812e-01,\\n\",\n      \"          -7.0793e-03,  1.7934e-01,  3.0685e-01, -1.1399e-01, -1.2434e-01,\\n\",\n      \"           1.6922e-01, -1.0212e-01,  4.3567e-02, -3.6941e-01, -1.6724e-01,\\n\",\n      \"          -9.6767e-02, -2.0039e-01,  1.6684e-01, -6.7633e-02, -3.5034e-01,\\n\",\n      \"           1.3738e-01,  6.7207e-01, -8.7835e-02,  7.1087e-02, -6.5737e-01,\\n\",\n      \"          -4.0125e-01,  4.1675e-01, -1.4082e-01,  3.5492e-02,  4.1041e-01,\\n\",\n      \"           1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\\n\",\n      \"           1.9867e-01, -4.3455e-01,  1.8238e-01,  7.0308e-02, -2.2539e-01,\\n\",\n      \"           8.4201e-02,  1.7078e-01,  3.0062e-01, -4.3804e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.8065e-01,  2.6210e-01, -4.0260e-01,  5.8659e-01,  8.2546e-02,\\n\",\n      \"           3.4530e-02,  1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\\n\",\n      \"           1.0646e-01,  4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\\n\",\n      \"          -1.5987e-02, -2.1735e-01, -2.0578e-01,  1.5982e-01,  5.9540e-02,\\n\",\n      \"          -6.4146e-02, -6.8747e-02,  8.1613e-02, -2.4492e-01, -1.3727e-01,\\n\",\n      \"           2.8170e-02,  2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\\n\",\n      \"           3.1014e-01, -2.1871e-01,  2.2693e-01,  9.0831e-02, -1.9375e-01,\\n\",\n      \"          -7.3290e-02, -4.6222e-01, -2.5226e-01,  2.8962e-01,  1.9681e-01,\\n\",\n      \"          -5.0930e-01,  2.7643e-01, -7.9155e-02, -4.1990e-02,  2.0346e-01,\\n\",\n      \"           2.3497e-01, -2.8674e-01, -2.4855e-01,  1.9804e-01,  3.0052e-01,\\n\",\n      \"          -6.0785e-02,  3.1826e-01,  1.9004e-01, -5.7711e-01, -4.9490e-01,\\n\",\n      \"          -8.7735e-02, -1.7347e-03,  2.3653e-01,  2.0227e-02, -1.3482e-01,\\n\",\n      \"           1.6056e-01,  3.6861e-01, -9.3747e-02, -5.8709e-01],\\n\",\n      \"         [ 2.8863e-01,  1.2149e-01, -6.2922e-01,  8.2764e-01, -2.3366e-01,\\n\",\n      \"          -2.9659e-01, -1.3204e-01,  6.2296e-01,  4.1152e-01, -3.6350e-01,\\n\",\n      \"          -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01,  4.4920e-01,\\n\",\n      \"           2.2330e-01,  5.0395e-01,  4.6923e-01,  4.3649e-01, -6.4579e-01,\\n\",\n      \"          -7.1763e-01,  8.1157e-03,  3.5871e-01,  6.4578e-01,  3.9625e-01,\\n\",\n      \"          -2.8031e-01,  2.3281e-01,  1.3482e-01, -1.3590e-01, -2.4081e-01,\\n\",\n      \"           2.4641e-01, -3.3319e-02,  6.3331e-01,  1.2224e-01, -1.5938e-01,\\n\",\n      \"           3.8584e-02, -5.9274e-01,  9.0730e-01,  3.3856e-01,  4.1958e-01,\\n\",\n      \"           3.3964e-02,  6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\\n\",\n      \"          -4.5367e-01,  3.1252e-01, -6.7000e-01,  2.1814e-01,  7.2959e-01,\\n\",\n      \"          -3.7967e-02,  3.6063e-02,  4.0004e-02, -7.2575e-01, -5.1842e-01,\\n\",\n      \"          -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01,  5.4467e-01,\\n\",\n      \"          -6.7269e-01, -5.9413e-01,  1.6626e-01, -3.8840e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7220e-01, -2.4531e-02, -1.6230e-01,  3.7354e-01,  2.7549e-01,\\n\",\n      \"           1.5702e-01,  4.3217e-01, -3.1798e-02, -2.4066e-02,  1.7492e-01,\\n\",\n      \"           3.4950e-01,  6.5571e-01,  3.6861e-02, -5.1874e-01, -2.7192e-01,\\n\",\n      \"           1.2709e-01,  2.2026e-02, -2.0383e-01,  1.1850e-01,  1.7263e-01,\\n\",\n      \"          -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\\n\",\n      \"           5.0656e-01, -4.9259e-02, -1.8042e-01,  2.2685e-02, -1.6907e-02,\\n\",\n      \"           4.9316e-01, -4.0781e-01,  5.2768e-01,  1.4780e-01, -3.1708e-01,\\n\",\n      \"          -5.8049e-02, -4.2868e-01,  1.5513e-01,  4.0871e-01,  6.9345e-02,\\n\",\n      \"          -2.5745e-01,  2.2631e-01, -3.6025e-02, -1.1274e-01,  2.8092e-01,\\n\",\n      \"           2.8765e-01, -1.5027e-01, -4.8283e-01,  1.6113e-01, -1.1905e-01,\\n\",\n      \"           2.6178e-01,  4.1344e-01,  1.8685e-01, -1.6060e-01, -5.5496e-01,\\n\",\n      \"          -2.1107e-02, -1.0227e-01,  3.2287e-01,  9.7470e-02,  2.6766e-01,\\n\",\n      \"           1.8691e-01,  8.5429e-02,  5.3812e-02, -4.7839e-02],\\n\",\n      \"         [ 3.5464e-03,  2.9370e-01, -5.7085e-01,  3.3890e-01, -1.7416e-01,\\n\",\n      \"          -1.8559e-01, -3.1623e-01, -4.1640e-01,  3.5136e-01,  1.9977e-01,\\n\",\n      \"          -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01,  1.6816e-02,\\n\",\n      \"           1.6564e-01,  3.3103e-01,  5.8284e-01,  6.0926e-01, -3.8338e-01,\\n\",\n      \"          -1.2137e-01, -8.2141e-02,  2.6694e-01,  5.6790e-01,  3.6747e-01,\\n\",\n      \"           2.3225e-01,  4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\\n\",\n      \"           2.9217e-01, -2.7284e-01,  6.6239e-01, -2.6185e-01, -3.1728e-01,\\n\",\n      \"           1.4997e-01, -1.1499e-01,  5.4129e-01,  5.1287e-01,  2.2698e-01,\\n\",\n      \"           6.5991e-02,  2.7580e-01, -9.2449e-02,  3.2780e-01,  2.8706e-01,\\n\",\n      \"          -2.4724e-01,  1.3564e-01,  1.2187e-02,  1.0591e-01,  6.9933e-01,\\n\",\n      \"           5.7920e-02,  1.1761e-01,  3.0423e-01, -6.0233e-01, -3.1639e-01,\\n\",\n      \"           1.2788e-01, -3.2039e-01,  2.4106e-01, -5.5253e-02,  1.5497e-01,\\n\",\n      \"          -1.4665e-01, -3.5109e-01,  1.5986e-01, -5.2488e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.7523e-01, -2.3620e-01, -4.9797e-02,  4.1835e-01, -1.5337e-01,\\n\",\n      \"          -4.3592e-01,  6.0074e-02,  1.3534e-01,  1.7858e-01,  1.5966e-01,\\n\",\n      \"           3.3192e-01,  2.5094e-01, -5.0503e-03,  4.2395e-02,  1.9029e-01,\\n\",\n      \"           1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01,  9.0552e-02,\\n\",\n      \"          -4.2521e-01,  3.6821e-01, -1.6868e-01,  2.4873e-01, -3.5418e-01,\\n\",\n      \"           1.5303e-01,  1.4946e-01, -2.1823e-01,  3.2424e-01, -1.1741e-01,\\n\",\n      \"          -2.7139e-02,  2.0159e-02, -1.3201e-01,  8.5273e-02,  3.5133e-03,\\n\",\n      \"          -4.1714e-01, -3.1202e-01, -1.2512e-01,  6.6698e-02, -8.2786e-02,\\n\",\n      \"           1.1544e-01,  1.8986e-01, -7.2979e-01, -1.3826e-01,  1.9034e-01,\\n\",\n      \"          -2.3812e-01, -3.5628e-01, -2.2061e-02,  3.5664e-01,  6.5099e-02,\\n\",\n      \"           4.1999e-01,  1.4260e-01, -2.5012e-01,  1.5174e-01, -3.1281e-01,\\n\",\n      \"          -3.5239e-01,  2.1327e-02, -1.5330e-01, -7.5938e-02,  1.5824e-01,\\n\",\n      \"          -5.2105e-01,  7.9910e-02,  2.9691e-01,  1.0999e-01],\\n\",\n      \"         [ 1.7269e-01,  7.1661e-01, -1.3392e-01,  2.4210e-01, -2.4052e-01,\\n\",\n      \"          -2.5021e-01, -5.2839e-01, -1.0832e-01,  5.5602e-01,  3.8296e-01,\\n\",\n      \"           2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02,  1.5606e-01,\\n\",\n      \"           4.4199e-01,  5.1434e-01,  1.9665e-01,  8.0063e-01, -6.5867e-01,\\n\",\n      \"           9.2088e-02, -7.4456e-02,  8.8930e-02,  5.4215e-01,  5.4784e-01,\\n\",\n      \"           1.8820e-01,  1.0462e-01,  2.0219e-02,  9.1717e-03, -1.8383e-01,\\n\",\n      \"           5.4892e-01, -5.8456e-01,  3.5563e-01,  2.4806e-01, -1.4683e-01,\\n\",\n      \"           1.8306e-01, -6.4206e-02,  5.9534e-01, -4.2084e-02,  5.7999e-02,\\n\",\n      \"          -1.0971e-01,  4.6418e-01, -1.8560e-02,  3.6068e-01, -4.5977e-02,\\n\",\n      \"          -7.6532e-03,  2.3670e-01,  9.5715e-02,  4.4234e-01,  7.5172e-01,\\n\",\n      \"          -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\\n\",\n      \"          -8.5172e-03, -5.9053e-01,  2.6878e-01, -2.2309e-01,  7.8604e-01,\\n\",\n      \"          -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9541e-01,  4.9519e-01,  1.1028e-01,  2.2783e-01, -2.1352e-01,\\n\",\n      \"          -4.2290e-01, -3.8576e-01,  2.2347e-01,  4.9458e-01,  3.3885e-01,\\n\",\n      \"           3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03,  2.2591e-01,\\n\",\n      \"           4.0734e-01,  4.6116e-01, -1.0352e-01,  3.2594e-01, -5.3246e-01,\\n\",\n      \"          -1.2795e-01,  3.0881e-01, -1.5611e-01,  2.7612e-01,  1.5252e-01,\\n\",\n      \"           1.9220e-01,  1.6186e-01, -6.1315e-02,  3.1383e-01, -2.0718e-01,\\n\",\n      \"           3.9542e-01, -5.2364e-01, -1.0867e-01,  4.3802e-01,  6.8734e-02,\\n\",\n      \"          -1.5552e-01, -1.1045e-01,  1.0764e-01, -3.4260e-01, -1.5649e-01,\\n\",\n      \"          -2.2060e-02,  3.6901e-01, -3.2511e-01,  5.9674e-02, -2.2943e-02,\\n\",\n      \"           3.1358e-02, -1.1782e-01,  4.7566e-02,  5.6886e-01,  2.8382e-01,\\n\",\n      \"           2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\\n\",\n      \"          -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01,  7.6172e-01,\\n\",\n      \"          -5.2932e-01, -4.2038e-01, -1.3811e-01,  9.3005e-02],\\n\",\n      \"         [ 4.2985e-03,  5.3781e-01,  9.7958e-02,  6.4659e-01, -5.9524e-01,\\n\",\n      \"          -2.4234e-01, -5.6040e-01, -8.2409e-01,  6.0406e-01,  2.5802e-01,\\n\",\n      \"           1.4920e-01, -7.4744e-01, -5.5557e-01,  3.0839e-01, -2.8524e-04,\\n\",\n      \"           7.6712e-01,  5.3626e-01,  6.4505e-01,  8.5630e-01, -6.8977e-01,\\n\",\n      \"          -7.3681e-01, -3.5756e-01,  3.5687e-01,  5.4350e-01,  3.4881e-01,\\n\",\n      \"          -8.0242e-01,  7.1195e-01,  8.1859e-02, -4.9816e-01, -1.9957e-01,\\n\",\n      \"           8.1895e-01, -3.0832e-01,  6.4616e-01,  2.4095e-01, -5.7400e-01,\\n\",\n      \"           1.5690e-01, -7.8424e-01,  6.9440e-01,  3.7262e-01,  9.6325e-02,\\n\",\n      \"          -2.3760e-01, -6.6459e-01, -6.6820e-01,  6.2534e-01,  8.6112e-02,\\n\",\n      \"           1.6394e-01, -1.9756e-02,  2.5657e-01,  7.1100e-01,  9.1409e-01,\\n\",\n      \"          -2.0942e-01,  4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\\n\",\n      \"           3.6628e-01, -8.2357e-01,  4.8054e-01,  8.2876e-01,  7.8838e-01,\\n\",\n      \"          -3.1700e-01, -2.2284e-01,  7.4938e-01, -8.8767e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.0751e-01,  3.8295e-01,  2.3988e-01,  6.5699e-01, -5.7568e-01,\\n\",\n      \"          -3.6006e-01, -4.8100e-01, -7.9433e-01,  5.6901e-01,  1.7161e-01,\\n\",\n      \"           2.8785e-01, -5.9491e-01, -4.3984e-01,  3.0638e-01,  9.5131e-03,\\n\",\n      \"           7.5487e-01,  5.2016e-01,  5.6168e-01,  5.5644e-01, -6.0117e-01,\\n\",\n      \"          -6.7291e-01, -1.5772e-01,  1.8844e-01,  3.3261e-01,  1.1509e-01,\\n\",\n      \"          -8.2417e-01,  7.0802e-01,  2.9094e-02, -3.2895e-01, -2.3967e-01,\\n\",\n      \"           7.7577e-01, -2.4526e-01,  5.9929e-01,  3.5422e-01, -4.4149e-01,\\n\",\n      \"          -6.9179e-02, -7.8540e-01,  3.7833e-01,  2.8132e-01, -1.9018e-02,\\n\",\n      \"          -1.6282e-01, -6.4327e-01, -7.5924e-01,  4.9658e-01,  8.3237e-02,\\n\",\n      \"           2.1320e-01, -2.6824e-01,  2.1273e-01,  7.7034e-01,  7.6653e-01,\\n\",\n      \"           1.5166e-02,  4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\\n\",\n      \"           2.4408e-01, -6.8280e-01,  3.1720e-01,  8.1391e-01,  7.6437e-01,\\n\",\n      \"          -4.0419e-01, -1.7341e-01,  7.5999e-01, -7.8587e-01],\\n\",\n      \"         [-3.5172e-01,  9.4749e-01,  9.3039e-02,  5.2600e-01, -4.9879e-01,\\n\",\n      \"          -7.1578e-01, -9.3014e-01, -8.5450e-01,  8.4293e-01,  2.8136e-01,\\n\",\n      \"          -1.3557e-01, -8.6492e-01, -6.6690e-01,  9.2696e-01, -1.7106e-01,\\n\",\n      \"           7.2665e-01,  2.6598e-01,  9.6001e-01,  9.6707e-01, -5.8140e-01,\\n\",\n      \"          -9.7127e-01, -4.0630e-01,  3.7375e-01,  5.6344e-01,  7.4631e-02,\\n\",\n      \"          -7.8830e-01,  5.5113e-01,  2.4708e-01, -4.1964e-01, -1.2664e-04,\\n\",\n      \"           9.2945e-01, -5.1485e-01,  4.9163e-01, -8.3042e-02, -1.8104e-01,\\n\",\n      \"           4.5435e-01, -7.3406e-01,  7.6429e-01,  4.7469e-01,  5.3298e-02,\\n\",\n      \"           7.7167e-01, -9.4698e-01, -7.0945e-01,  2.6853e-01, -8.7757e-01,\\n\",\n      \"           1.6556e-01, -1.4299e-01, -3.2505e-01,  7.4663e-01,  9.6821e-01,\\n\",\n      \"          -6.8238e-01,  8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\\n\",\n      \"           4.0388e-01, -9.8040e-01,  8.1152e-01,  8.5002e-01,  7.9787e-01,\\n\",\n      \"          -9.2759e-01,  4.8487e-01,  8.3804e-01, -9.2653e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1554e-01,  9.2967e-01,  2.0494e-01,  5.2804e-01, -4.8765e-01,\\n\",\n      \"          -7.3976e-01, -9.2037e-01, -8.3445e-01,  8.1982e-01,  2.0183e-01,\\n\",\n      \"          -1.4853e-01, -7.8974e-01, -6.0921e-01,  9.2589e-01, -1.7823e-01,\\n\",\n      \"           7.0490e-01,  2.6072e-01,  9.5497e-01,  9.1133e-01, -5.1347e-01,\\n\",\n      \"          -9.5951e-01, -2.3076e-01,  2.1754e-01,  4.3733e-01, -2.9295e-02,\\n\",\n      \"          -8.0489e-01,  5.3086e-01,  2.0390e-01, -3.0930e-01, -3.5179e-03,\\n\",\n      \"           9.1803e-01, -4.7151e-01,  4.4910e-01, -3.0464e-02, -1.2364e-01,\\n\",\n      \"           3.4547e-01, -7.2454e-01,  5.3417e-01,  4.1927e-01, -5.4921e-02,\\n\",\n      \"           7.7939e-01, -9.4286e-01, -7.4250e-01,  1.5274e-01, -8.7349e-01,\\n\",\n      \"           2.0929e-01, -3.1794e-01, -3.3657e-01,  7.9071e-01,  9.1712e-01,\\n\",\n      \"          -5.6772e-01,  8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\\n\",\n      \"           2.9902e-01, -9.6587e-01,  7.5750e-01,  8.3694e-01,  7.7867e-01,\\n\",\n      \"          -9.3306e-01,  4.5615e-01,  8.3903e-01, -8.6171e-01],\\n\",\n      \"         [-5.8363e-01,  9.7749e-01,  8.7658e-02,  3.8939e-01, -4.0473e-01,\\n\",\n      \"          -7.1746e-01, -9.7746e-01, -8.7006e-01,  9.1532e-01,  2.8459e-01,\\n\",\n      \"          -2.2359e-01, -9.1768e-01, -7.4716e-01,  9.8367e-01, -2.7790e-01,\\n\",\n      \"           6.9578e-01,  1.8294e-01,  9.7452e-01,  9.8907e-01, -5.4132e-01,\\n\",\n      \"          -9.9230e-01, -4.4919e-01,  3.8879e-01,  5.6903e-01, -5.8009e-02,\\n\",\n      \"          -7.7496e-01,  4.3154e-01,  3.7605e-01, -4.2439e-01,  6.4348e-02,\\n\",\n      \"           9.4892e-01, -6.6214e-01,  3.6881e-01, -2.0051e-01,  1.2171e-01,\\n\",\n      \"           5.8965e-01, -6.7904e-01,  8.1712e-01,  5.3582e-01,  1.9643e-02,\\n\",\n      \"           9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\\n\",\n      \"           1.6236e-01, -2.0750e-01, -6.0565e-01,  7.7366e-01,  9.8503e-01,\\n\",\n      \"          -8.3358e-01,  9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\\n\",\n      \"           4.3214e-01, -9.8765e-01,  9.0666e-01,  8.6743e-01,  8.4182e-01,\\n\",\n      \"          -9.8590e-01,  6.4342e-01,  8.6847e-01, -9.4970e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([6, 8])\\n\",\n      \"dec_state: tensor([[[-0.0619,  0.7567,  0.1205,  0.3146, -0.0771, -0.2912, -0.4590,\\n\",\n      \"          -0.2875,  0.8902, -0.5149, -0.5401, -0.9433, -0.4106,  0.8431,\\n\",\n      \"          -0.2228,  0.4739,  0.7087,  0.9108,  0.4260,  0.5734, -0.2173,\\n\",\n      \"          -0.0015,  0.0969,  0.8133,  0.0884, -0.8088,  0.6866, -0.1776,\\n\",\n      \"          -0.6920, -0.4790, -0.0390,  0.3798,  0.7590,  0.3759, -0.2608,\\n\",\n      \"           0.1866,  0.4300,  0.3166, -0.0348, -0.0718, -0.0743, -0.7746,\\n\",\n      \"          -0.3630,  0.1001, -0.9035, -0.5317, -0.5655,  0.1288,  0.4192,\\n\",\n      \"           0.9365,  0.6399,  0.6638, -0.8394, -0.1204, -0.9109,  0.2302,\\n\",\n      \"          -0.7248, -0.3916,  0.8350, -0.5572, -0.8456,  0.8621,  0.2662,\\n\",\n      \"           0.2090],\\n\",\n      \"         [-0.2767,  0.8894, -0.3564,  0.5279, -0.4105,  0.0656, -0.9167,\\n\",\n      \"          -0.7913,  0.8128, -0.7535, -0.6824, -0.7956, -0.4263,  0.9789,\\n\",\n      \"          -0.0665,  0.3864,  0.5544,  0.8427,  0.6987,  0.8968,  0.5111,\\n\",\n      \"          -0.5644,  0.1894,  0.8616,  0.5779, -0.8460,  0.7724,  0.1171,\\n\",\n      \"          -0.8536,  0.2645, -0.1319,  0.3148,  0.9148,  0.6079, -0.6065,\\n\",\n      \"          -0.4402,  0.8145,  0.6784, -0.0376,  0.0951, -0.7069, -0.1107,\\n\",\n      \"           0.3654, -0.0601, -0.8398,  0.2703, -0.6797, -0.5191,  0.3495,\\n\",\n      \"           0.9757,  0.6839,  0.9661, -0.9464,  0.3785, -0.7692,  0.0596,\\n\",\n      \"          -0.7438,  0.6235,  0.8007, -0.8292, -0.9440,  0.8517,  0.6813,\\n\",\n      \"          -0.3706]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.7979e-01,  9.4467e-02, -1.0363e-01,  4.6698e-01,  2.1990e-01,\\n\",\n      \"           1.0968e-01,  6.3953e-02, -6.2686e-01,  3.3735e-01, -1.5381e-01,\\n\",\n      \"           4.4057e-01, -1.3544e-01,  3.1925e-02,  2.8315e-01,  1.3914e-01,\\n\",\n      \"           4.8791e-01,  2.2082e-01,  6.2355e-03,  2.7165e-01,  1.7884e-01,\\n\",\n      \"          -5.0191e-01, -1.1003e-01,  2.6037e-01, -1.4109e-01, -4.9608e-01,\\n\",\n      \"           1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\\n\",\n      \"           1.6098e-01, -1.8203e-01,  8.5968e-02,  1.6584e-01, -1.8070e-01,\\n\",\n      \"          -1.0343e-02, -5.9731e-01,  2.7544e-01,  5.4321e-01,  1.2392e-01,\\n\",\n      \"          -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\\n\",\n      \"           3.5685e-01, -2.1323e-01, -1.0543e-01,  2.0594e-01, -2.2193e-02,\\n\",\n      \"           2.7921e-01,  4.1012e-01,  2.2706e-01, -5.1412e-01, -3.2686e-01,\\n\",\n      \"           1.8903e-01, -5.3830e-01,  2.9266e-01,  1.3446e-01,  1.6127e-01,\\n\",\n      \"          -4.3490e-01,  1.0959e-01, -3.0305e-02, -3.5573e-01],\\n\",\n      \"         [-2.6735e-01,  3.3112e-01, -2.7546e-01,  3.3183e-02, -8.5314e-02,\\n\",\n      \"          -4.6477e-02, -2.8822e-01,  1.6451e-01, -7.2843e-02, -1.5546e-01,\\n\",\n      \"          -2.3366e-01, -1.8629e-01, -5.3722e-01,  3.5115e-01,  1.0961e-01,\\n\",\n      \"          -4.6762e-01,  4.1160e-01,  2.9585e-01,  9.0005e-02, -6.4770e-01,\\n\",\n      \"          -6.2316e-01, -1.1505e-01,  1.1418e-01, -7.1088e-02,  1.3812e-01,\\n\",\n      \"          -7.0793e-03,  1.7934e-01,  3.0685e-01, -1.1399e-01, -1.2434e-01,\\n\",\n      \"           1.6922e-01, -1.0212e-01,  4.3567e-02, -3.6941e-01, -1.6724e-01,\\n\",\n      \"          -9.6767e-02, -2.0039e-01,  1.6684e-01, -6.7633e-02, -3.5034e-01,\\n\",\n      \"           1.3738e-01,  6.7207e-01, -8.7835e-02,  7.1087e-02, -6.5737e-01,\\n\",\n      \"          -4.0125e-01,  4.1675e-01, -1.4082e-01,  3.5492e-02,  4.1041e-01,\\n\",\n      \"           1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\\n\",\n      \"           1.9867e-01, -4.3455e-01,  1.8238e-01,  7.0308e-02, -2.2539e-01,\\n\",\n      \"           8.4201e-02,  1.7078e-01,  3.0062e-01, -4.3804e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.8065e-01,  2.6210e-01, -4.0260e-01,  5.8659e-01,  8.2546e-02,\\n\",\n      \"           3.4530e-02,  1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\\n\",\n      \"           1.0646e-01,  4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\\n\",\n      \"          -1.5987e-02, -2.1735e-01, -2.0578e-01,  1.5982e-01,  5.9540e-02,\\n\",\n      \"          -6.4146e-02, -6.8747e-02,  8.1613e-02, -2.4492e-01, -1.3727e-01,\\n\",\n      \"           2.8170e-02,  2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\\n\",\n      \"           3.1014e-01, -2.1871e-01,  2.2693e-01,  9.0831e-02, -1.9375e-01,\\n\",\n      \"          -7.3290e-02, -4.6222e-01, -2.5226e-01,  2.8962e-01,  1.9681e-01,\\n\",\n      \"          -5.0930e-01,  2.7643e-01, -7.9155e-02, -4.1990e-02,  2.0346e-01,\\n\",\n      \"           2.3497e-01, -2.8674e-01, -2.4855e-01,  1.9804e-01,  3.0052e-01,\\n\",\n      \"          -6.0785e-02,  3.1826e-01,  1.9004e-01, -5.7711e-01, -4.9490e-01,\\n\",\n      \"          -8.7735e-02, -1.7347e-03,  2.3653e-01,  2.0227e-02, -1.3482e-01,\\n\",\n      \"           1.6056e-01,  3.6861e-01, -9.3747e-02, -5.8709e-01],\\n\",\n      \"         [ 2.8863e-01,  1.2149e-01, -6.2922e-01,  8.2764e-01, -2.3366e-01,\\n\",\n      \"          -2.9659e-01, -1.3204e-01,  6.2296e-01,  4.1152e-01, -3.6350e-01,\\n\",\n      \"          -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01,  4.4920e-01,\\n\",\n      \"           2.2330e-01,  5.0395e-01,  4.6923e-01,  4.3649e-01, -6.4579e-01,\\n\",\n      \"          -7.1763e-01,  8.1157e-03,  3.5871e-01,  6.4578e-01,  3.9625e-01,\\n\",\n      \"          -2.8031e-01,  2.3281e-01,  1.3482e-01, -1.3590e-01, -2.4081e-01,\\n\",\n      \"           2.4641e-01, -3.3319e-02,  6.3331e-01,  1.2224e-01, -1.5938e-01,\\n\",\n      \"           3.8584e-02, -5.9274e-01,  9.0730e-01,  3.3856e-01,  4.1958e-01,\\n\",\n      \"           3.3964e-02,  6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\\n\",\n      \"          -4.5367e-01,  3.1252e-01, -6.7000e-01,  2.1814e-01,  7.2959e-01,\\n\",\n      \"          -3.7967e-02,  3.6063e-02,  4.0004e-02, -7.2575e-01, -5.1842e-01,\\n\",\n      \"          -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01,  5.4467e-01,\\n\",\n      \"          -6.7269e-01, -5.9413e-01,  1.6626e-01, -3.8840e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7220e-01, -2.4531e-02, -1.6230e-01,  3.7354e-01,  2.7549e-01,\\n\",\n      \"           1.5702e-01,  4.3217e-01, -3.1798e-02, -2.4066e-02,  1.7492e-01,\\n\",\n      \"           3.4950e-01,  6.5571e-01,  3.6861e-02, -5.1874e-01, -2.7192e-01,\\n\",\n      \"           1.2709e-01,  2.2026e-02, -2.0383e-01,  1.1850e-01,  1.7263e-01,\\n\",\n      \"          -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\\n\",\n      \"           5.0656e-01, -4.9259e-02, -1.8042e-01,  2.2685e-02, -1.6907e-02,\\n\",\n      \"           4.9316e-01, -4.0781e-01,  5.2768e-01,  1.4780e-01, -3.1708e-01,\\n\",\n      \"          -5.8049e-02, -4.2868e-01,  1.5513e-01,  4.0871e-01,  6.9345e-02,\\n\",\n      \"          -2.5745e-01,  2.2631e-01, -3.6025e-02, -1.1274e-01,  2.8092e-01,\\n\",\n      \"           2.8765e-01, -1.5027e-01, -4.8283e-01,  1.6113e-01, -1.1905e-01,\\n\",\n      \"           2.6178e-01,  4.1344e-01,  1.8685e-01, -1.6060e-01, -5.5496e-01,\\n\",\n      \"          -2.1107e-02, -1.0227e-01,  3.2287e-01,  9.7470e-02,  2.6766e-01,\\n\",\n      \"           1.8691e-01,  8.5429e-02,  5.3812e-02, -4.7839e-02],\\n\",\n      \"         [ 3.5464e-03,  2.9370e-01, -5.7085e-01,  3.3890e-01, -1.7416e-01,\\n\",\n      \"          -1.8559e-01, -3.1623e-01, -4.1640e-01,  3.5136e-01,  1.9977e-01,\\n\",\n      \"          -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01,  1.6816e-02,\\n\",\n      \"           1.6564e-01,  3.3103e-01,  5.8284e-01,  6.0926e-01, -3.8338e-01,\\n\",\n      \"          -1.2137e-01, -8.2141e-02,  2.6694e-01,  5.6790e-01,  3.6747e-01,\\n\",\n      \"           2.3225e-01,  4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\\n\",\n      \"           2.9217e-01, -2.7284e-01,  6.6239e-01, -2.6185e-01, -3.1728e-01,\\n\",\n      \"           1.4997e-01, -1.1499e-01,  5.4129e-01,  5.1287e-01,  2.2698e-01,\\n\",\n      \"           6.5991e-02,  2.7580e-01, -9.2449e-02,  3.2780e-01,  2.8706e-01,\\n\",\n      \"          -2.4724e-01,  1.3564e-01,  1.2187e-02,  1.0591e-01,  6.9933e-01,\\n\",\n      \"           5.7920e-02,  1.1761e-01,  3.0423e-01, -6.0233e-01, -3.1639e-01,\\n\",\n      \"           1.2788e-01, -3.2039e-01,  2.4106e-01, -5.5253e-02,  1.5497e-01,\\n\",\n      \"          -1.4665e-01, -3.5109e-01,  1.5986e-01, -5.2488e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.7523e-01, -2.3620e-01, -4.9797e-02,  4.1835e-01, -1.5337e-01,\\n\",\n      \"          -4.3592e-01,  6.0074e-02,  1.3534e-01,  1.7858e-01,  1.5966e-01,\\n\",\n      \"           3.3192e-01,  2.5094e-01, -5.0503e-03,  4.2395e-02,  1.9029e-01,\\n\",\n      \"           1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01,  9.0552e-02,\\n\",\n      \"          -4.2521e-01,  3.6821e-01, -1.6868e-01,  2.4873e-01, -3.5418e-01,\\n\",\n      \"           1.5303e-01,  1.4946e-01, -2.1823e-01,  3.2424e-01, -1.1741e-01,\\n\",\n      \"          -2.7139e-02,  2.0159e-02, -1.3201e-01,  8.5273e-02,  3.5133e-03,\\n\",\n      \"          -4.1714e-01, -3.1202e-01, -1.2512e-01,  6.6698e-02, -8.2786e-02,\\n\",\n      \"           1.1544e-01,  1.8986e-01, -7.2979e-01, -1.3826e-01,  1.9034e-01,\\n\",\n      \"          -2.3812e-01, -3.5628e-01, -2.2061e-02,  3.5664e-01,  6.5099e-02,\\n\",\n      \"           4.1999e-01,  1.4260e-01, -2.5012e-01,  1.5174e-01, -3.1281e-01,\\n\",\n      \"          -3.5239e-01,  2.1327e-02, -1.5330e-01, -7.5938e-02,  1.5824e-01,\\n\",\n      \"          -5.2105e-01,  7.9910e-02,  2.9691e-01,  1.0999e-01],\\n\",\n      \"         [ 1.7269e-01,  7.1661e-01, -1.3392e-01,  2.4210e-01, -2.4052e-01,\\n\",\n      \"          -2.5021e-01, -5.2839e-01, -1.0832e-01,  5.5602e-01,  3.8296e-01,\\n\",\n      \"           2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02,  1.5606e-01,\\n\",\n      \"           4.4199e-01,  5.1434e-01,  1.9665e-01,  8.0063e-01, -6.5867e-01,\\n\",\n      \"           9.2088e-02, -7.4456e-02,  8.8930e-02,  5.4215e-01,  5.4784e-01,\\n\",\n      \"           1.8820e-01,  1.0462e-01,  2.0219e-02,  9.1717e-03, -1.8383e-01,\\n\",\n      \"           5.4892e-01, -5.8456e-01,  3.5563e-01,  2.4806e-01, -1.4683e-01,\\n\",\n      \"           1.8306e-01, -6.4206e-02,  5.9534e-01, -4.2084e-02,  5.7999e-02,\\n\",\n      \"          -1.0971e-01,  4.6418e-01, -1.8560e-02,  3.6068e-01, -4.5977e-02,\\n\",\n      \"          -7.6532e-03,  2.3670e-01,  9.5715e-02,  4.4234e-01,  7.5172e-01,\\n\",\n      \"          -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\\n\",\n      \"          -8.5172e-03, -5.9053e-01,  2.6878e-01, -2.2309e-01,  7.8604e-01,\\n\",\n      \"          -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9541e-01,  4.9519e-01,  1.1028e-01,  2.2783e-01, -2.1352e-01,\\n\",\n      \"          -4.2290e-01, -3.8576e-01,  2.2347e-01,  4.9458e-01,  3.3885e-01,\\n\",\n      \"           3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03,  2.2591e-01,\\n\",\n      \"           4.0734e-01,  4.6116e-01, -1.0352e-01,  3.2594e-01, -5.3246e-01,\\n\",\n      \"          -1.2795e-01,  3.0881e-01, -1.5611e-01,  2.7612e-01,  1.5252e-01,\\n\",\n      \"           1.9220e-01,  1.6186e-01, -6.1315e-02,  3.1383e-01, -2.0718e-01,\\n\",\n      \"           3.9542e-01, -5.2364e-01, -1.0867e-01,  4.3802e-01,  6.8734e-02,\\n\",\n      \"          -1.5552e-01, -1.1045e-01,  1.0764e-01, -3.4260e-01, -1.5649e-01,\\n\",\n      \"          -2.2060e-02,  3.6901e-01, -3.2511e-01,  5.9674e-02, -2.2943e-02,\\n\",\n      \"           3.1358e-02, -1.1782e-01,  4.7566e-02,  5.6886e-01,  2.8382e-01,\\n\",\n      \"           2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\\n\",\n      \"          -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01,  7.6172e-01,\\n\",\n      \"          -5.2932e-01, -4.2038e-01, -1.3811e-01,  9.3005e-02],\\n\",\n      \"         [ 4.2985e-03,  5.3781e-01,  9.7958e-02,  6.4659e-01, -5.9524e-01,\\n\",\n      \"          -2.4234e-01, -5.6040e-01, -8.2409e-01,  6.0406e-01,  2.5802e-01,\\n\",\n      \"           1.4920e-01, -7.4744e-01, -5.5557e-01,  3.0839e-01, -2.8524e-04,\\n\",\n      \"           7.6712e-01,  5.3626e-01,  6.4505e-01,  8.5630e-01, -6.8977e-01,\\n\",\n      \"          -7.3681e-01, -3.5756e-01,  3.5687e-01,  5.4350e-01,  3.4881e-01,\\n\",\n      \"          -8.0242e-01,  7.1195e-01,  8.1859e-02, -4.9816e-01, -1.9957e-01,\\n\",\n      \"           8.1895e-01, -3.0832e-01,  6.4616e-01,  2.4095e-01, -5.7400e-01,\\n\",\n      \"           1.5690e-01, -7.8424e-01,  6.9440e-01,  3.7262e-01,  9.6325e-02,\\n\",\n      \"          -2.3760e-01, -6.6459e-01, -6.6820e-01,  6.2534e-01,  8.6112e-02,\\n\",\n      \"           1.6394e-01, -1.9756e-02,  2.5657e-01,  7.1100e-01,  9.1409e-01,\\n\",\n      \"          -2.0942e-01,  4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\\n\",\n      \"           3.6628e-01, -8.2357e-01,  4.8054e-01,  8.2876e-01,  7.8838e-01,\\n\",\n      \"          -3.1700e-01, -2.2284e-01,  7.4938e-01, -8.8767e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.0751e-01,  3.8295e-01,  2.3988e-01,  6.5699e-01, -5.7568e-01,\\n\",\n      \"          -3.6006e-01, -4.8100e-01, -7.9433e-01,  5.6901e-01,  1.7161e-01,\\n\",\n      \"           2.8785e-01, -5.9491e-01, -4.3984e-01,  3.0638e-01,  9.5131e-03,\\n\",\n      \"           7.5487e-01,  5.2016e-01,  5.6168e-01,  5.5644e-01, -6.0117e-01,\\n\",\n      \"          -6.7291e-01, -1.5772e-01,  1.8844e-01,  3.3261e-01,  1.1509e-01,\\n\",\n      \"          -8.2417e-01,  7.0802e-01,  2.9094e-02, -3.2895e-01, -2.3967e-01,\\n\",\n      \"           7.7577e-01, -2.4526e-01,  5.9929e-01,  3.5422e-01, -4.4149e-01,\\n\",\n      \"          -6.9179e-02, -7.8540e-01,  3.7833e-01,  2.8132e-01, -1.9018e-02,\\n\",\n      \"          -1.6282e-01, -6.4327e-01, -7.5924e-01,  4.9658e-01,  8.3237e-02,\\n\",\n      \"           2.1320e-01, -2.6824e-01,  2.1273e-01,  7.7034e-01,  7.6653e-01,\\n\",\n      \"           1.5166e-02,  4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\\n\",\n      \"           2.4408e-01, -6.8280e-01,  3.1720e-01,  8.1391e-01,  7.6437e-01,\\n\",\n      \"          -4.0419e-01, -1.7341e-01,  7.5999e-01, -7.8587e-01],\\n\",\n      \"         [-3.5172e-01,  9.4749e-01,  9.3039e-02,  5.2600e-01, -4.9879e-01,\\n\",\n      \"          -7.1578e-01, -9.3014e-01, -8.5450e-01,  8.4293e-01,  2.8136e-01,\\n\",\n      \"          -1.3557e-01, -8.6492e-01, -6.6690e-01,  9.2696e-01, -1.7106e-01,\\n\",\n      \"           7.2665e-01,  2.6598e-01,  9.6001e-01,  9.6707e-01, -5.8140e-01,\\n\",\n      \"          -9.7127e-01, -4.0630e-01,  3.7375e-01,  5.6344e-01,  7.4631e-02,\\n\",\n      \"          -7.8830e-01,  5.5113e-01,  2.4708e-01, -4.1964e-01, -1.2664e-04,\\n\",\n      \"           9.2945e-01, -5.1485e-01,  4.9163e-01, -8.3042e-02, -1.8104e-01,\\n\",\n      \"           4.5435e-01, -7.3406e-01,  7.6429e-01,  4.7469e-01,  5.3298e-02,\\n\",\n      \"           7.7167e-01, -9.4698e-01, -7.0945e-01,  2.6853e-01, -8.7757e-01,\\n\",\n      \"           1.6556e-01, -1.4299e-01, -3.2505e-01,  7.4663e-01,  9.6821e-01,\\n\",\n      \"          -6.8238e-01,  8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\\n\",\n      \"           4.0388e-01, -9.8040e-01,  8.1152e-01,  8.5002e-01,  7.9787e-01,\\n\",\n      \"          -9.2759e-01,  4.8487e-01,  8.3804e-01, -9.2653e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1554e-01,  9.2967e-01,  2.0494e-01,  5.2804e-01, -4.8765e-01,\\n\",\n      \"          -7.3976e-01, -9.2037e-01, -8.3445e-01,  8.1982e-01,  2.0183e-01,\\n\",\n      \"          -1.4853e-01, -7.8974e-01, -6.0921e-01,  9.2589e-01, -1.7823e-01,\\n\",\n      \"           7.0490e-01,  2.6072e-01,  9.5497e-01,  9.1133e-01, -5.1347e-01,\\n\",\n      \"          -9.5951e-01, -2.3076e-01,  2.1754e-01,  4.3733e-01, -2.9295e-02,\\n\",\n      \"          -8.0489e-01,  5.3086e-01,  2.0390e-01, -3.0930e-01, -3.5179e-03,\\n\",\n      \"           9.1803e-01, -4.7151e-01,  4.4910e-01, -3.0464e-02, -1.2364e-01,\\n\",\n      \"           3.4547e-01, -7.2454e-01,  5.3417e-01,  4.1927e-01, -5.4921e-02,\\n\",\n      \"           7.7939e-01, -9.4286e-01, -7.4250e-01,  1.5274e-01, -8.7349e-01,\\n\",\n      \"           2.0929e-01, -3.1794e-01, -3.3657e-01,  7.9071e-01,  9.1712e-01,\\n\",\n      \"          -5.6772e-01,  8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\\n\",\n      \"           2.9902e-01, -9.6587e-01,  7.5750e-01,  8.3694e-01,  7.7867e-01,\\n\",\n      \"          -9.3306e-01,  4.5615e-01,  8.3903e-01, -8.6171e-01],\\n\",\n      \"         [-5.8363e-01,  9.7749e-01,  8.7658e-02,  3.8939e-01, -4.0473e-01,\\n\",\n      \"          -7.1746e-01, -9.7746e-01, -8.7006e-01,  9.1532e-01,  2.8459e-01,\\n\",\n      \"          -2.2359e-01, -9.1768e-01, -7.4716e-01,  9.8367e-01, -2.7790e-01,\\n\",\n      \"           6.9578e-01,  1.8294e-01,  9.7452e-01,  9.8907e-01, -5.4132e-01,\\n\",\n      \"          -9.9230e-01, -4.4919e-01,  3.8879e-01,  5.6903e-01, -5.8009e-02,\\n\",\n      \"          -7.7496e-01,  4.3154e-01,  3.7605e-01, -4.2439e-01,  6.4348e-02,\\n\",\n      \"           9.4892e-01, -6.6214e-01,  3.6881e-01, -2.0051e-01,  1.2171e-01,\\n\",\n      \"           5.8965e-01, -6.7904e-01,  8.1712e-01,  5.3582e-01,  1.9643e-02,\\n\",\n      \"           9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\\n\",\n      \"           1.6236e-01, -2.0750e-01, -6.0565e-01,  7.7366e-01,  9.8503e-01,\\n\",\n      \"          -8.3358e-01,  9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\\n\",\n      \"           4.3214e-01, -9.8765e-01,  9.0666e-01,  8.6743e-01,  8.4182e-01,\\n\",\n      \"          -9.8590e-01,  6.4342e-01,  8.6847e-01, -9.4970e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([4, 4])\\n\",\n      \"dec_state: tensor([[[ 0.4145,  0.8034, -0.4497,  0.8137,  0.1620, -0.1642, -0.5163,\\n\",\n      \"           0.6276,  0.1669, -0.8109, -0.7122, -0.8870, -0.2438,  0.7051,\\n\",\n      \"          -0.4046,  0.1736,  0.7841,  0.7520, -0.5989,  0.3950,  0.2712,\\n\",\n      \"          -0.3587,  0.0194,  0.8535,  0.5979, -0.8901,  0.5302, -0.2672,\\n\",\n      \"          -0.7822, -0.6777, -0.7786,  0.6688, -0.0781,  0.5255, -0.1296,\\n\",\n      \"           0.1052,  0.2813, -0.1268, -0.2628,  0.5788, -0.0837, -0.1216,\\n\",\n      \"           0.1174,  0.2317, -0.4765, -0.6229,  0.2213,  0.8543,  0.3167,\\n\",\n      \"           0.9137,  0.1647,  0.5662, -0.7528, -0.2908, -0.8550,  0.2875,\\n\",\n      \"          -0.0267, -0.3560, -0.3308, -0.0200, -0.8423,  0.8980, -0.3055,\\n\",\n      \"          -0.0134],\\n\",\n      \"         [ 0.2716,  0.9305, -0.7244,  0.8304,  0.1074,  0.1377, -0.8548,\\n\",\n      \"           0.4808,  0.1763, -0.9296, -0.7709, -0.8660, -0.2169,  0.9077,\\n\",\n      \"          -0.3215,  0.1061,  0.6931,  0.6811, -0.4758,  0.6829,  0.6935,\\n\",\n      \"          -0.6841, -0.0492,  0.8936,  0.8336, -0.9220,  0.4413, -0.2281,\\n\",\n      \"          -0.9198, -0.6208, -0.8434,  0.6866, -0.1222,  0.6724, -0.5153,\\n\",\n      \"          -0.3472,  0.4738,  0.0631, -0.2764,  0.7384, -0.6184,  0.3584,\\n\",\n      \"           0.6517,  0.1828, -0.6488, -0.2904, -0.1656,  0.8305,  0.2865,\\n\",\n      \"           0.9618,  0.7392,  0.8290, -0.8448,  0.0346, -0.8366,  0.0970,\\n\",\n      \"           0.1140,  0.1170, -0.2594, -0.1908, -0.9644,  0.9174,  0.0642,\\n\",\n      \"          -0.2290]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.7979e-01,  9.4467e-02, -1.0363e-01,  4.6698e-01,  2.1990e-01,\\n\",\n      \"           1.0968e-01,  6.3953e-02, -6.2686e-01,  3.3735e-01, -1.5381e-01,\\n\",\n      \"           4.4057e-01, -1.3544e-01,  3.1925e-02,  2.8315e-01,  1.3914e-01,\\n\",\n      \"           4.8791e-01,  2.2082e-01,  6.2355e-03,  2.7165e-01,  1.7884e-01,\\n\",\n      \"          -5.0191e-01, -1.1003e-01,  2.6037e-01, -1.4109e-01, -4.9608e-01,\\n\",\n      \"           1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\\n\",\n      \"           1.6098e-01, -1.8203e-01,  8.5968e-02,  1.6584e-01, -1.8070e-01,\\n\",\n      \"          -1.0343e-02, -5.9731e-01,  2.7544e-01,  5.4321e-01,  1.2392e-01,\\n\",\n      \"          -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\\n\",\n      \"           3.5685e-01, -2.1323e-01, -1.0543e-01,  2.0594e-01, -2.2193e-02,\\n\",\n      \"           2.7921e-01,  4.1012e-01,  2.2706e-01, -5.1412e-01, -3.2686e-01,\\n\",\n      \"           1.8903e-01, -5.3830e-01,  2.9266e-01,  1.3446e-01,  1.6127e-01,\\n\",\n      \"          -4.3490e-01,  1.0959e-01, -3.0305e-02, -3.5573e-01],\\n\",\n      \"         [-2.6735e-01,  3.3112e-01, -2.7546e-01,  3.3183e-02, -8.5314e-02,\\n\",\n      \"          -4.6477e-02, -2.8822e-01,  1.6451e-01, -7.2843e-02, -1.5546e-01,\\n\",\n      \"          -2.3366e-01, -1.8629e-01, -5.3722e-01,  3.5115e-01,  1.0961e-01,\\n\",\n      \"          -4.6762e-01,  4.1160e-01,  2.9585e-01,  9.0005e-02, -6.4770e-01,\\n\",\n      \"          -6.2316e-01, -1.1505e-01,  1.1418e-01, -7.1088e-02,  1.3812e-01,\\n\",\n      \"          -7.0793e-03,  1.7934e-01,  3.0685e-01, -1.1399e-01, -1.2434e-01,\\n\",\n      \"           1.6922e-01, -1.0212e-01,  4.3567e-02, -3.6941e-01, -1.6724e-01,\\n\",\n      \"          -9.6767e-02, -2.0039e-01,  1.6684e-01, -6.7633e-02, -3.5034e-01,\\n\",\n      \"           1.3738e-01,  6.7207e-01, -8.7835e-02,  7.1087e-02, -6.5737e-01,\\n\",\n      \"          -4.0125e-01,  4.1675e-01, -1.4082e-01,  3.5492e-02,  4.1041e-01,\\n\",\n      \"           1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\\n\",\n      \"           1.9867e-01, -4.3455e-01,  1.8238e-01,  7.0308e-02, -2.2539e-01,\\n\",\n      \"           8.4201e-02,  1.7078e-01,  3.0062e-01, -4.3804e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.8065e-01,  2.6210e-01, -4.0260e-01,  5.8659e-01,  8.2546e-02,\\n\",\n      \"           3.4530e-02,  1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\\n\",\n      \"           1.0646e-01,  4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\\n\",\n      \"          -1.5987e-02, -2.1735e-01, -2.0578e-01,  1.5982e-01,  5.9540e-02,\\n\",\n      \"          -6.4146e-02, -6.8747e-02,  8.1613e-02, -2.4492e-01, -1.3727e-01,\\n\",\n      \"           2.8170e-02,  2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\\n\",\n      \"           3.1014e-01, -2.1871e-01,  2.2693e-01,  9.0831e-02, -1.9375e-01,\\n\",\n      \"          -7.3290e-02, -4.6222e-01, -2.5226e-01,  2.8962e-01,  1.9681e-01,\\n\",\n      \"          -5.0930e-01,  2.7643e-01, -7.9155e-02, -4.1990e-02,  2.0346e-01,\\n\",\n      \"           2.3497e-01, -2.8674e-01, -2.4855e-01,  1.9804e-01,  3.0052e-01,\\n\",\n      \"          -6.0785e-02,  3.1826e-01,  1.9004e-01, -5.7711e-01, -4.9490e-01,\\n\",\n      \"          -8.7735e-02, -1.7347e-03,  2.3653e-01,  2.0227e-02, -1.3482e-01,\\n\",\n      \"           1.6056e-01,  3.6861e-01, -9.3747e-02, -5.8709e-01],\\n\",\n      \"         [ 2.8863e-01,  1.2149e-01, -6.2922e-01,  8.2764e-01, -2.3366e-01,\\n\",\n      \"          -2.9659e-01, -1.3204e-01,  6.2296e-01,  4.1152e-01, -3.6350e-01,\\n\",\n      \"          -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01,  4.4920e-01,\\n\",\n      \"           2.2330e-01,  5.0395e-01,  4.6923e-01,  4.3649e-01, -6.4579e-01,\\n\",\n      \"          -7.1763e-01,  8.1157e-03,  3.5871e-01,  6.4578e-01,  3.9625e-01,\\n\",\n      \"          -2.8031e-01,  2.3281e-01,  1.3482e-01, -1.3590e-01, -2.4081e-01,\\n\",\n      \"           2.4641e-01, -3.3319e-02,  6.3331e-01,  1.2224e-01, -1.5938e-01,\\n\",\n      \"           3.8584e-02, -5.9274e-01,  9.0730e-01,  3.3856e-01,  4.1958e-01,\\n\",\n      \"           3.3964e-02,  6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\\n\",\n      \"          -4.5367e-01,  3.1252e-01, -6.7000e-01,  2.1814e-01,  7.2959e-01,\\n\",\n      \"          -3.7967e-02,  3.6063e-02,  4.0004e-02, -7.2575e-01, -5.1842e-01,\\n\",\n      \"          -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01,  5.4467e-01,\\n\",\n      \"          -6.7269e-01, -5.9413e-01,  1.6626e-01, -3.8840e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7220e-01, -2.4531e-02, -1.6230e-01,  3.7354e-01,  2.7549e-01,\\n\",\n      \"           1.5702e-01,  4.3217e-01, -3.1798e-02, -2.4066e-02,  1.7492e-01,\\n\",\n      \"           3.4950e-01,  6.5571e-01,  3.6861e-02, -5.1874e-01, -2.7192e-01,\\n\",\n      \"           1.2709e-01,  2.2026e-02, -2.0383e-01,  1.1850e-01,  1.7263e-01,\\n\",\n      \"          -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\\n\",\n      \"           5.0656e-01, -4.9259e-02, -1.8042e-01,  2.2685e-02, -1.6907e-02,\\n\",\n      \"           4.9316e-01, -4.0781e-01,  5.2768e-01,  1.4780e-01, -3.1708e-01,\\n\",\n      \"          -5.8049e-02, -4.2868e-01,  1.5513e-01,  4.0871e-01,  6.9345e-02,\\n\",\n      \"          -2.5745e-01,  2.2631e-01, -3.6025e-02, -1.1274e-01,  2.8092e-01,\\n\",\n      \"           2.8765e-01, -1.5027e-01, -4.8283e-01,  1.6113e-01, -1.1905e-01,\\n\",\n      \"           2.6178e-01,  4.1344e-01,  1.8685e-01, -1.6060e-01, -5.5496e-01,\\n\",\n      \"          -2.1107e-02, -1.0227e-01,  3.2287e-01,  9.7470e-02,  2.6766e-01,\\n\",\n      \"           1.8691e-01,  8.5429e-02,  5.3812e-02, -4.7839e-02],\\n\",\n      \"         [ 3.5464e-03,  2.9370e-01, -5.7085e-01,  3.3890e-01, -1.7416e-01,\\n\",\n      \"          -1.8559e-01, -3.1623e-01, -4.1640e-01,  3.5136e-01,  1.9977e-01,\\n\",\n      \"          -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01,  1.6816e-02,\\n\",\n      \"           1.6564e-01,  3.3103e-01,  5.8284e-01,  6.0926e-01, -3.8338e-01,\\n\",\n      \"          -1.2137e-01, -8.2141e-02,  2.6694e-01,  5.6790e-01,  3.6747e-01,\\n\",\n      \"           2.3225e-01,  4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\\n\",\n      \"           2.9217e-01, -2.7284e-01,  6.6239e-01, -2.6185e-01, -3.1728e-01,\\n\",\n      \"           1.4997e-01, -1.1499e-01,  5.4129e-01,  5.1287e-01,  2.2698e-01,\\n\",\n      \"           6.5991e-02,  2.7580e-01, -9.2449e-02,  3.2780e-01,  2.8706e-01,\\n\",\n      \"          -2.4724e-01,  1.3564e-01,  1.2187e-02,  1.0591e-01,  6.9933e-01,\\n\",\n      \"           5.7920e-02,  1.1761e-01,  3.0423e-01, -6.0233e-01, -3.1639e-01,\\n\",\n      \"           1.2788e-01, -3.2039e-01,  2.4106e-01, -5.5253e-02,  1.5497e-01,\\n\",\n      \"          -1.4665e-01, -3.5109e-01,  1.5986e-01, -5.2488e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.7523e-01, -2.3620e-01, -4.9797e-02,  4.1835e-01, -1.5337e-01,\\n\",\n      \"          -4.3592e-01,  6.0074e-02,  1.3534e-01,  1.7858e-01,  1.5966e-01,\\n\",\n      \"           3.3192e-01,  2.5094e-01, -5.0503e-03,  4.2395e-02,  1.9029e-01,\\n\",\n      \"           1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01,  9.0552e-02,\\n\",\n      \"          -4.2521e-01,  3.6821e-01, -1.6868e-01,  2.4873e-01, -3.5418e-01,\\n\",\n      \"           1.5303e-01,  1.4946e-01, -2.1823e-01,  3.2424e-01, -1.1741e-01,\\n\",\n      \"          -2.7139e-02,  2.0159e-02, -1.3201e-01,  8.5273e-02,  3.5133e-03,\\n\",\n      \"          -4.1714e-01, -3.1202e-01, -1.2512e-01,  6.6698e-02, -8.2786e-02,\\n\",\n      \"           1.1544e-01,  1.8986e-01, -7.2979e-01, -1.3826e-01,  1.9034e-01,\\n\",\n      \"          -2.3812e-01, -3.5628e-01, -2.2061e-02,  3.5664e-01,  6.5099e-02,\\n\",\n      \"           4.1999e-01,  1.4260e-01, -2.5012e-01,  1.5174e-01, -3.1281e-01,\\n\",\n      \"          -3.5239e-01,  2.1327e-02, -1.5330e-01, -7.5938e-02,  1.5824e-01,\\n\",\n      \"          -5.2105e-01,  7.9910e-02,  2.9691e-01,  1.0999e-01],\\n\",\n      \"         [ 1.7269e-01,  7.1661e-01, -1.3392e-01,  2.4210e-01, -2.4052e-01,\\n\",\n      \"          -2.5021e-01, -5.2839e-01, -1.0832e-01,  5.5602e-01,  3.8296e-01,\\n\",\n      \"           2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02,  1.5606e-01,\\n\",\n      \"           4.4199e-01,  5.1434e-01,  1.9665e-01,  8.0063e-01, -6.5867e-01,\\n\",\n      \"           9.2088e-02, -7.4456e-02,  8.8930e-02,  5.4215e-01,  5.4784e-01,\\n\",\n      \"           1.8820e-01,  1.0462e-01,  2.0219e-02,  9.1717e-03, -1.8383e-01,\\n\",\n      \"           5.4892e-01, -5.8456e-01,  3.5563e-01,  2.4806e-01, -1.4683e-01,\\n\",\n      \"           1.8306e-01, -6.4206e-02,  5.9534e-01, -4.2084e-02,  5.7999e-02,\\n\",\n      \"          -1.0971e-01,  4.6418e-01, -1.8560e-02,  3.6068e-01, -4.5977e-02,\\n\",\n      \"          -7.6532e-03,  2.3670e-01,  9.5715e-02,  4.4234e-01,  7.5172e-01,\\n\",\n      \"          -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\\n\",\n      \"          -8.5172e-03, -5.9053e-01,  2.6878e-01, -2.2309e-01,  7.8604e-01,\\n\",\n      \"          -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9541e-01,  4.9519e-01,  1.1028e-01,  2.2783e-01, -2.1352e-01,\\n\",\n      \"          -4.2290e-01, -3.8576e-01,  2.2347e-01,  4.9458e-01,  3.3885e-01,\\n\",\n      \"           3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03,  2.2591e-01,\\n\",\n      \"           4.0734e-01,  4.6116e-01, -1.0352e-01,  3.2594e-01, -5.3246e-01,\\n\",\n      \"          -1.2795e-01,  3.0881e-01, -1.5611e-01,  2.7612e-01,  1.5252e-01,\\n\",\n      \"           1.9220e-01,  1.6186e-01, -6.1315e-02,  3.1383e-01, -2.0718e-01,\\n\",\n      \"           3.9542e-01, -5.2364e-01, -1.0867e-01,  4.3802e-01,  6.8734e-02,\\n\",\n      \"          -1.5552e-01, -1.1045e-01,  1.0764e-01, -3.4260e-01, -1.5649e-01,\\n\",\n      \"          -2.2060e-02,  3.6901e-01, -3.2511e-01,  5.9674e-02, -2.2943e-02,\\n\",\n      \"           3.1358e-02, -1.1782e-01,  4.7566e-02,  5.6886e-01,  2.8382e-01,\\n\",\n      \"           2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\\n\",\n      \"          -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01,  7.6172e-01,\\n\",\n      \"          -5.2932e-01, -4.2038e-01, -1.3811e-01,  9.3005e-02],\\n\",\n      \"         [ 4.2985e-03,  5.3781e-01,  9.7958e-02,  6.4659e-01, -5.9524e-01,\\n\",\n      \"          -2.4234e-01, -5.6040e-01, -8.2409e-01,  6.0406e-01,  2.5802e-01,\\n\",\n      \"           1.4920e-01, -7.4744e-01, -5.5557e-01,  3.0839e-01, -2.8524e-04,\\n\",\n      \"           7.6712e-01,  5.3626e-01,  6.4505e-01,  8.5630e-01, -6.8977e-01,\\n\",\n      \"          -7.3681e-01, -3.5756e-01,  3.5687e-01,  5.4350e-01,  3.4881e-01,\\n\",\n      \"          -8.0242e-01,  7.1195e-01,  8.1859e-02, -4.9816e-01, -1.9957e-01,\\n\",\n      \"           8.1895e-01, -3.0832e-01,  6.4616e-01,  2.4095e-01, -5.7400e-01,\\n\",\n      \"           1.5690e-01, -7.8424e-01,  6.9440e-01,  3.7262e-01,  9.6325e-02,\\n\",\n      \"          -2.3760e-01, -6.6459e-01, -6.6820e-01,  6.2534e-01,  8.6112e-02,\\n\",\n      \"           1.6394e-01, -1.9756e-02,  2.5657e-01,  7.1100e-01,  9.1409e-01,\\n\",\n      \"          -2.0942e-01,  4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\\n\",\n      \"           3.6628e-01, -8.2357e-01,  4.8054e-01,  8.2876e-01,  7.8838e-01,\\n\",\n      \"          -3.1700e-01, -2.2284e-01,  7.4938e-01, -8.8767e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.0751e-01,  3.8295e-01,  2.3988e-01,  6.5699e-01, -5.7568e-01,\\n\",\n      \"          -3.6006e-01, -4.8100e-01, -7.9433e-01,  5.6901e-01,  1.7161e-01,\\n\",\n      \"           2.8785e-01, -5.9491e-01, -4.3984e-01,  3.0638e-01,  9.5131e-03,\\n\",\n      \"           7.5487e-01,  5.2016e-01,  5.6168e-01,  5.5644e-01, -6.0117e-01,\\n\",\n      \"          -6.7291e-01, -1.5772e-01,  1.8844e-01,  3.3261e-01,  1.1509e-01,\\n\",\n      \"          -8.2417e-01,  7.0802e-01,  2.9094e-02, -3.2895e-01, -2.3967e-01,\\n\",\n      \"           7.7577e-01, -2.4526e-01,  5.9929e-01,  3.5422e-01, -4.4149e-01,\\n\",\n      \"          -6.9179e-02, -7.8540e-01,  3.7833e-01,  2.8132e-01, -1.9018e-02,\\n\",\n      \"          -1.6282e-01, -6.4327e-01, -7.5924e-01,  4.9658e-01,  8.3237e-02,\\n\",\n      \"           2.1320e-01, -2.6824e-01,  2.1273e-01,  7.7034e-01,  7.6653e-01,\\n\",\n      \"           1.5166e-02,  4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\\n\",\n      \"           2.4408e-01, -6.8280e-01,  3.1720e-01,  8.1391e-01,  7.6437e-01,\\n\",\n      \"          -4.0419e-01, -1.7341e-01,  7.5999e-01, -7.8587e-01],\\n\",\n      \"         [-3.5172e-01,  9.4749e-01,  9.3039e-02,  5.2600e-01, -4.9879e-01,\\n\",\n      \"          -7.1578e-01, -9.3014e-01, -8.5450e-01,  8.4293e-01,  2.8136e-01,\\n\",\n      \"          -1.3557e-01, -8.6492e-01, -6.6690e-01,  9.2696e-01, -1.7106e-01,\\n\",\n      \"           7.2665e-01,  2.6598e-01,  9.6001e-01,  9.6707e-01, -5.8140e-01,\\n\",\n      \"          -9.7127e-01, -4.0630e-01,  3.7375e-01,  5.6344e-01,  7.4631e-02,\\n\",\n      \"          -7.8830e-01,  5.5113e-01,  2.4708e-01, -4.1964e-01, -1.2664e-04,\\n\",\n      \"           9.2945e-01, -5.1485e-01,  4.9163e-01, -8.3042e-02, -1.8104e-01,\\n\",\n      \"           4.5435e-01, -7.3406e-01,  7.6429e-01,  4.7469e-01,  5.3298e-02,\\n\",\n      \"           7.7167e-01, -9.4698e-01, -7.0945e-01,  2.6853e-01, -8.7757e-01,\\n\",\n      \"           1.6556e-01, -1.4299e-01, -3.2505e-01,  7.4663e-01,  9.6821e-01,\\n\",\n      \"          -6.8238e-01,  8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\\n\",\n      \"           4.0388e-01, -9.8040e-01,  8.1152e-01,  8.5002e-01,  7.9787e-01,\\n\",\n      \"          -9.2759e-01,  4.8487e-01,  8.3804e-01, -9.2653e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1554e-01,  9.2967e-01,  2.0494e-01,  5.2804e-01, -4.8765e-01,\\n\",\n      \"          -7.3976e-01, -9.2037e-01, -8.3445e-01,  8.1982e-01,  2.0183e-01,\\n\",\n      \"          -1.4853e-01, -7.8974e-01, -6.0921e-01,  9.2589e-01, -1.7823e-01,\\n\",\n      \"           7.0490e-01,  2.6072e-01,  9.5497e-01,  9.1133e-01, -5.1347e-01,\\n\",\n      \"          -9.5951e-01, -2.3076e-01,  2.1754e-01,  4.3733e-01, -2.9295e-02,\\n\",\n      \"          -8.0489e-01,  5.3086e-01,  2.0390e-01, -3.0930e-01, -3.5179e-03,\\n\",\n      \"           9.1803e-01, -4.7151e-01,  4.4910e-01, -3.0464e-02, -1.2364e-01,\\n\",\n      \"           3.4547e-01, -7.2454e-01,  5.3417e-01,  4.1927e-01, -5.4921e-02,\\n\",\n      \"           7.7939e-01, -9.4286e-01, -7.4250e-01,  1.5274e-01, -8.7349e-01,\\n\",\n      \"           2.0929e-01, -3.1794e-01, -3.3657e-01,  7.9071e-01,  9.1712e-01,\\n\",\n      \"          -5.6772e-01,  8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\\n\",\n      \"           2.9902e-01, -9.6587e-01,  7.5750e-01,  8.3694e-01,  7.7867e-01,\\n\",\n      \"          -9.3306e-01,  4.5615e-01,  8.3903e-01, -8.6171e-01],\\n\",\n      \"         [-5.8363e-01,  9.7749e-01,  8.7658e-02,  3.8939e-01, -4.0473e-01,\\n\",\n      \"          -7.1746e-01, -9.7746e-01, -8.7006e-01,  9.1532e-01,  2.8459e-01,\\n\",\n      \"          -2.2359e-01, -9.1768e-01, -7.4716e-01,  9.8367e-01, -2.7790e-01,\\n\",\n      \"           6.9578e-01,  1.8294e-01,  9.7452e-01,  9.8907e-01, -5.4132e-01,\\n\",\n      \"          -9.9230e-01, -4.4919e-01,  3.8879e-01,  5.6903e-01, -5.8009e-02,\\n\",\n      \"          -7.7496e-01,  4.3154e-01,  3.7605e-01, -4.2439e-01,  6.4348e-02,\\n\",\n      \"           9.4892e-01, -6.6214e-01,  3.6881e-01, -2.0051e-01,  1.2171e-01,\\n\",\n      \"           5.8965e-01, -6.7904e-01,  8.1712e-01,  5.3582e-01,  1.9643e-02,\\n\",\n      \"           9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\\n\",\n      \"           1.6236e-01, -2.0750e-01, -6.0565e-01,  7.7366e-01,  9.8503e-01,\\n\",\n      \"          -8.3358e-01,  9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\\n\",\n      \"           4.3214e-01, -9.8765e-01,  9.0666e-01,  8.6743e-01,  8.4182e-01,\\n\",\n      \"          -9.8590e-01,  6.4342e-01,  8.6847e-01, -9.4970e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([24, 29])\\n\",\n      \"dec_state: tensor([[[ 0.6927,  0.7885, -0.7646,  0.8062,  0.3100, -0.0495, -0.5363,\\n\",\n      \"           0.4349,  0.1901, -0.5013, -0.4259, -0.8109,  0.5571,  0.7493,\\n\",\n      \"          -0.5011,  0.3282,  0.5875,  0.1143, -0.5180,  0.6524,  0.5600,\\n\",\n      \"          -0.5203,  0.0943,  0.7639,  0.8379, -0.9109, -0.1592, -0.3479,\\n\",\n      \"          -0.5785, -0.7633, -0.6723,  0.7714,  0.5959,  0.6716, -0.1297,\\n\",\n      \"          -0.4177,  0.5829, -0.2754,  0.0319,  0.5388, -0.1466,  0.2963,\\n\",\n      \"           0.5819,  0.1801, -0.5854, -0.0340, -0.2865,  0.4052,  0.0876,\\n\",\n      \"           0.6361, -0.5384,  0.8541, -0.7245, -0.3613, -0.8596,  0.0126,\\n\",\n      \"           0.2066,  0.1447, -0.0522,  0.0949, -0.8303,  0.3892,  0.0010,\\n\",\n      \"          -0.2699],\\n\",\n      \"         [-0.0484,  0.8194, -0.8151,  0.8807,  0.5156,  0.3591, -0.8820,\\n\",\n      \"           0.2110, -0.0696, -0.9281, -0.7607, -0.8087, -0.5462,  0.8515,\\n\",\n      \"          -0.6799, -0.2686,  0.8810, -0.0436, -0.6276,  0.5586,  0.9290,\\n\",\n      \"          -0.7215, -0.4830,  0.8401,  0.2455, -0.8777,  0.0478, -0.2909,\\n\",\n      \"          -0.9443, -0.8375, -0.8308,  0.9417,  0.0429,  0.5245, -0.6080,\\n\",\n      \"          -0.5695,  0.6645, -0.4080,  0.0527,  0.8649, -0.6208,  0.2713,\\n\",\n      \"           0.7361,  0.2800, -0.6884, -0.4432, -0.7259,  0.7759, -0.1780,\\n\",\n      \"           0.6265,  0.5081,  0.8803, -0.8517, -0.0984, -0.9256,  0.1093,\\n\",\n      \"           0.3689,  0.7440,  0.2925,  0.1899, -0.9518,  0.8312,  0.0973,\\n\",\n      \"          -0.1482]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.7979e-01,  9.4467e-02, -1.0363e-01,  4.6698e-01,  2.1990e-01,\\n\",\n      \"           1.0968e-01,  6.3953e-02, -6.2686e-01,  3.3735e-01, -1.5381e-01,\\n\",\n      \"           4.4057e-01, -1.3544e-01,  3.1925e-02,  2.8315e-01,  1.3914e-01,\\n\",\n      \"           4.8791e-01,  2.2082e-01,  6.2355e-03,  2.7165e-01,  1.7884e-01,\\n\",\n      \"          -5.0191e-01, -1.1003e-01,  2.6037e-01, -1.4109e-01, -4.9608e-01,\\n\",\n      \"           1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\\n\",\n      \"           1.6098e-01, -1.8203e-01,  8.5968e-02,  1.6584e-01, -1.8070e-01,\\n\",\n      \"          -1.0343e-02, -5.9731e-01,  2.7544e-01,  5.4321e-01,  1.2392e-01,\\n\",\n      \"          -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\\n\",\n      \"           3.5685e-01, -2.1323e-01, -1.0543e-01,  2.0594e-01, -2.2193e-02,\\n\",\n      \"           2.7921e-01,  4.1012e-01,  2.2706e-01, -5.1412e-01, -3.2686e-01,\\n\",\n      \"           1.8903e-01, -5.3830e-01,  2.9266e-01,  1.3446e-01,  1.6127e-01,\\n\",\n      \"          -4.3490e-01,  1.0959e-01, -3.0305e-02, -3.5573e-01],\\n\",\n      \"         [-2.6735e-01,  3.3112e-01, -2.7546e-01,  3.3183e-02, -8.5314e-02,\\n\",\n      \"          -4.6477e-02, -2.8822e-01,  1.6451e-01, -7.2843e-02, -1.5546e-01,\\n\",\n      \"          -2.3366e-01, -1.8629e-01, -5.3722e-01,  3.5115e-01,  1.0961e-01,\\n\",\n      \"          -4.6762e-01,  4.1160e-01,  2.9585e-01,  9.0005e-02, -6.4770e-01,\\n\",\n      \"          -6.2316e-01, -1.1505e-01,  1.1418e-01, -7.1088e-02,  1.3812e-01,\\n\",\n      \"          -7.0793e-03,  1.7934e-01,  3.0685e-01, -1.1399e-01, -1.2434e-01,\\n\",\n      \"           1.6922e-01, -1.0212e-01,  4.3567e-02, -3.6941e-01, -1.6724e-01,\\n\",\n      \"          -9.6767e-02, -2.0039e-01,  1.6684e-01, -6.7633e-02, -3.5034e-01,\\n\",\n      \"           1.3738e-01,  6.7207e-01, -8.7835e-02,  7.1087e-02, -6.5737e-01,\\n\",\n      \"          -4.0125e-01,  4.1675e-01, -1.4082e-01,  3.5492e-02,  4.1041e-01,\\n\",\n      \"           1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\\n\",\n      \"           1.9867e-01, -4.3455e-01,  1.8238e-01,  7.0308e-02, -2.2539e-01,\\n\",\n      \"           8.4201e-02,  1.7078e-01,  3.0062e-01, -4.3804e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.8065e-01,  2.6210e-01, -4.0260e-01,  5.8659e-01,  8.2546e-02,\\n\",\n      \"           3.4530e-02,  1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\\n\",\n      \"           1.0646e-01,  4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\\n\",\n      \"          -1.5987e-02, -2.1735e-01, -2.0578e-01,  1.5982e-01,  5.9540e-02,\\n\",\n      \"          -6.4146e-02, -6.8747e-02,  8.1613e-02, -2.4492e-01, -1.3727e-01,\\n\",\n      \"           2.8170e-02,  2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\\n\",\n      \"           3.1014e-01, -2.1871e-01,  2.2693e-01,  9.0831e-02, -1.9375e-01,\\n\",\n      \"          -7.3290e-02, -4.6222e-01, -2.5226e-01,  2.8962e-01,  1.9681e-01,\\n\",\n      \"          -5.0930e-01,  2.7643e-01, -7.9155e-02, -4.1990e-02,  2.0346e-01,\\n\",\n      \"           2.3497e-01, -2.8674e-01, -2.4855e-01,  1.9804e-01,  3.0052e-01,\\n\",\n      \"          -6.0785e-02,  3.1826e-01,  1.9004e-01, -5.7711e-01, -4.9490e-01,\\n\",\n      \"          -8.7735e-02, -1.7347e-03,  2.3653e-01,  2.0227e-02, -1.3482e-01,\\n\",\n      \"           1.6056e-01,  3.6861e-01, -9.3747e-02, -5.8709e-01],\\n\",\n      \"         [ 2.8863e-01,  1.2149e-01, -6.2922e-01,  8.2764e-01, -2.3366e-01,\\n\",\n      \"          -2.9659e-01, -1.3204e-01,  6.2296e-01,  4.1152e-01, -3.6350e-01,\\n\",\n      \"          -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01,  4.4920e-01,\\n\",\n      \"           2.2330e-01,  5.0395e-01,  4.6923e-01,  4.3649e-01, -6.4579e-01,\\n\",\n      \"          -7.1763e-01,  8.1157e-03,  3.5871e-01,  6.4578e-01,  3.9625e-01,\\n\",\n      \"          -2.8031e-01,  2.3281e-01,  1.3482e-01, -1.3590e-01, -2.4081e-01,\\n\",\n      \"           2.4641e-01, -3.3319e-02,  6.3331e-01,  1.2224e-01, -1.5938e-01,\\n\",\n      \"           3.8584e-02, -5.9274e-01,  9.0730e-01,  3.3856e-01,  4.1958e-01,\\n\",\n      \"           3.3964e-02,  6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\\n\",\n      \"          -4.5367e-01,  3.1252e-01, -6.7000e-01,  2.1814e-01,  7.2959e-01,\\n\",\n      \"          -3.7967e-02,  3.6063e-02,  4.0004e-02, -7.2575e-01, -5.1842e-01,\\n\",\n      \"          -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01,  5.4467e-01,\\n\",\n      \"          -6.7269e-01, -5.9413e-01,  1.6626e-01, -3.8840e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7220e-01, -2.4531e-02, -1.6230e-01,  3.7354e-01,  2.7549e-01,\\n\",\n      \"           1.5702e-01,  4.3217e-01, -3.1798e-02, -2.4066e-02,  1.7492e-01,\\n\",\n      \"           3.4950e-01,  6.5571e-01,  3.6861e-02, -5.1874e-01, -2.7192e-01,\\n\",\n      \"           1.2709e-01,  2.2026e-02, -2.0383e-01,  1.1850e-01,  1.7263e-01,\\n\",\n      \"          -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\\n\",\n      \"           5.0656e-01, -4.9259e-02, -1.8042e-01,  2.2685e-02, -1.6907e-02,\\n\",\n      \"           4.9316e-01, -4.0781e-01,  5.2768e-01,  1.4780e-01, -3.1708e-01,\\n\",\n      \"          -5.8049e-02, -4.2868e-01,  1.5513e-01,  4.0871e-01,  6.9345e-02,\\n\",\n      \"          -2.5745e-01,  2.2631e-01, -3.6025e-02, -1.1274e-01,  2.8092e-01,\\n\",\n      \"           2.8765e-01, -1.5027e-01, -4.8283e-01,  1.6113e-01, -1.1905e-01,\\n\",\n      \"           2.6178e-01,  4.1344e-01,  1.8685e-01, -1.6060e-01, -5.5496e-01,\\n\",\n      \"          -2.1107e-02, -1.0227e-01,  3.2287e-01,  9.7470e-02,  2.6766e-01,\\n\",\n      \"           1.8691e-01,  8.5429e-02,  5.3812e-02, -4.7839e-02],\\n\",\n      \"         [ 3.5464e-03,  2.9370e-01, -5.7085e-01,  3.3890e-01, -1.7416e-01,\\n\",\n      \"          -1.8559e-01, -3.1623e-01, -4.1640e-01,  3.5136e-01,  1.9977e-01,\\n\",\n      \"          -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01,  1.6816e-02,\\n\",\n      \"           1.6564e-01,  3.3103e-01,  5.8284e-01,  6.0926e-01, -3.8338e-01,\\n\",\n      \"          -1.2137e-01, -8.2141e-02,  2.6694e-01,  5.6790e-01,  3.6747e-01,\\n\",\n      \"           2.3225e-01,  4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\\n\",\n      \"           2.9217e-01, -2.7284e-01,  6.6239e-01, -2.6185e-01, -3.1728e-01,\\n\",\n      \"           1.4997e-01, -1.1499e-01,  5.4129e-01,  5.1287e-01,  2.2698e-01,\\n\",\n      \"           6.5991e-02,  2.7580e-01, -9.2449e-02,  3.2780e-01,  2.8706e-01,\\n\",\n      \"          -2.4724e-01,  1.3564e-01,  1.2187e-02,  1.0591e-01,  6.9933e-01,\\n\",\n      \"           5.7920e-02,  1.1761e-01,  3.0423e-01, -6.0233e-01, -3.1639e-01,\\n\",\n      \"           1.2788e-01, -3.2039e-01,  2.4106e-01, -5.5253e-02,  1.5497e-01,\\n\",\n      \"          -1.4665e-01, -3.5109e-01,  1.5986e-01, -5.2488e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.7523e-01, -2.3620e-01, -4.9797e-02,  4.1835e-01, -1.5337e-01,\\n\",\n      \"          -4.3592e-01,  6.0074e-02,  1.3534e-01,  1.7858e-01,  1.5966e-01,\\n\",\n      \"           3.3192e-01,  2.5094e-01, -5.0503e-03,  4.2395e-02,  1.9029e-01,\\n\",\n      \"           1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01,  9.0552e-02,\\n\",\n      \"          -4.2521e-01,  3.6821e-01, -1.6868e-01,  2.4873e-01, -3.5418e-01,\\n\",\n      \"           1.5303e-01,  1.4946e-01, -2.1823e-01,  3.2424e-01, -1.1741e-01,\\n\",\n      \"          -2.7139e-02,  2.0159e-02, -1.3201e-01,  8.5273e-02,  3.5133e-03,\\n\",\n      \"          -4.1714e-01, -3.1202e-01, -1.2512e-01,  6.6698e-02, -8.2786e-02,\\n\",\n      \"           1.1544e-01,  1.8986e-01, -7.2979e-01, -1.3826e-01,  1.9034e-01,\\n\",\n      \"          -2.3812e-01, -3.5628e-01, -2.2061e-02,  3.5664e-01,  6.5099e-02,\\n\",\n      \"           4.1999e-01,  1.4260e-01, -2.5012e-01,  1.5174e-01, -3.1281e-01,\\n\",\n      \"          -3.5239e-01,  2.1327e-02, -1.5330e-01, -7.5938e-02,  1.5824e-01,\\n\",\n      \"          -5.2105e-01,  7.9910e-02,  2.9691e-01,  1.0999e-01],\\n\",\n      \"         [ 1.7269e-01,  7.1661e-01, -1.3392e-01,  2.4210e-01, -2.4052e-01,\\n\",\n      \"          -2.5021e-01, -5.2839e-01, -1.0832e-01,  5.5602e-01,  3.8296e-01,\\n\",\n      \"           2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02,  1.5606e-01,\\n\",\n      \"           4.4199e-01,  5.1434e-01,  1.9665e-01,  8.0063e-01, -6.5867e-01,\\n\",\n      \"           9.2088e-02, -7.4456e-02,  8.8930e-02,  5.4215e-01,  5.4784e-01,\\n\",\n      \"           1.8820e-01,  1.0462e-01,  2.0219e-02,  9.1717e-03, -1.8383e-01,\\n\",\n      \"           5.4892e-01, -5.8456e-01,  3.5563e-01,  2.4806e-01, -1.4683e-01,\\n\",\n      \"           1.8306e-01, -6.4206e-02,  5.9534e-01, -4.2084e-02,  5.7999e-02,\\n\",\n      \"          -1.0971e-01,  4.6418e-01, -1.8560e-02,  3.6068e-01, -4.5977e-02,\\n\",\n      \"          -7.6532e-03,  2.3670e-01,  9.5715e-02,  4.4234e-01,  7.5172e-01,\\n\",\n      \"          -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\\n\",\n      \"          -8.5172e-03, -5.9053e-01,  2.6878e-01, -2.2309e-01,  7.8604e-01,\\n\",\n      \"          -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9541e-01,  4.9519e-01,  1.1028e-01,  2.2783e-01, -2.1352e-01,\\n\",\n      \"          -4.2290e-01, -3.8576e-01,  2.2347e-01,  4.9458e-01,  3.3885e-01,\\n\",\n      \"           3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03,  2.2591e-01,\\n\",\n      \"           4.0734e-01,  4.6116e-01, -1.0352e-01,  3.2594e-01, -5.3246e-01,\\n\",\n      \"          -1.2795e-01,  3.0881e-01, -1.5611e-01,  2.7612e-01,  1.5252e-01,\\n\",\n      \"           1.9220e-01,  1.6186e-01, -6.1315e-02,  3.1383e-01, -2.0718e-01,\\n\",\n      \"           3.9542e-01, -5.2364e-01, -1.0867e-01,  4.3802e-01,  6.8734e-02,\\n\",\n      \"          -1.5552e-01, -1.1045e-01,  1.0764e-01, -3.4260e-01, -1.5649e-01,\\n\",\n      \"          -2.2060e-02,  3.6901e-01, -3.2511e-01,  5.9674e-02, -2.2943e-02,\\n\",\n      \"           3.1358e-02, -1.1782e-01,  4.7566e-02,  5.6886e-01,  2.8382e-01,\\n\",\n      \"           2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\\n\",\n      \"          -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01,  7.6172e-01,\\n\",\n      \"          -5.2932e-01, -4.2038e-01, -1.3811e-01,  9.3005e-02],\\n\",\n      \"         [ 4.2985e-03,  5.3781e-01,  9.7958e-02,  6.4659e-01, -5.9524e-01,\\n\",\n      \"          -2.4234e-01, -5.6040e-01, -8.2409e-01,  6.0406e-01,  2.5802e-01,\\n\",\n      \"           1.4920e-01, -7.4744e-01, -5.5557e-01,  3.0839e-01, -2.8524e-04,\\n\",\n      \"           7.6712e-01,  5.3626e-01,  6.4505e-01,  8.5630e-01, -6.8977e-01,\\n\",\n      \"          -7.3681e-01, -3.5756e-01,  3.5687e-01,  5.4350e-01,  3.4881e-01,\\n\",\n      \"          -8.0242e-01,  7.1195e-01,  8.1859e-02, -4.9816e-01, -1.9957e-01,\\n\",\n      \"           8.1895e-01, -3.0832e-01,  6.4616e-01,  2.4095e-01, -5.7400e-01,\\n\",\n      \"           1.5690e-01, -7.8424e-01,  6.9440e-01,  3.7262e-01,  9.6325e-02,\\n\",\n      \"          -2.3760e-01, -6.6459e-01, -6.6820e-01,  6.2534e-01,  8.6112e-02,\\n\",\n      \"           1.6394e-01, -1.9756e-02,  2.5657e-01,  7.1100e-01,  9.1409e-01,\\n\",\n      \"          -2.0942e-01,  4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\\n\",\n      \"           3.6628e-01, -8.2357e-01,  4.8054e-01,  8.2876e-01,  7.8838e-01,\\n\",\n      \"          -3.1700e-01, -2.2284e-01,  7.4938e-01, -8.8767e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.0751e-01,  3.8295e-01,  2.3988e-01,  6.5699e-01, -5.7568e-01,\\n\",\n      \"          -3.6006e-01, -4.8100e-01, -7.9433e-01,  5.6901e-01,  1.7161e-01,\\n\",\n      \"           2.8785e-01, -5.9491e-01, -4.3984e-01,  3.0638e-01,  9.5131e-03,\\n\",\n      \"           7.5487e-01,  5.2016e-01,  5.6168e-01,  5.5644e-01, -6.0117e-01,\\n\",\n      \"          -6.7291e-01, -1.5772e-01,  1.8844e-01,  3.3261e-01,  1.1509e-01,\\n\",\n      \"          -8.2417e-01,  7.0802e-01,  2.9094e-02, -3.2895e-01, -2.3967e-01,\\n\",\n      \"           7.7577e-01, -2.4526e-01,  5.9929e-01,  3.5422e-01, -4.4149e-01,\\n\",\n      \"          -6.9179e-02, -7.8540e-01,  3.7833e-01,  2.8132e-01, -1.9018e-02,\\n\",\n      \"          -1.6282e-01, -6.4327e-01, -7.5924e-01,  4.9658e-01,  8.3237e-02,\\n\",\n      \"           2.1320e-01, -2.6824e-01,  2.1273e-01,  7.7034e-01,  7.6653e-01,\\n\",\n      \"           1.5166e-02,  4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\\n\",\n      \"           2.4408e-01, -6.8280e-01,  3.1720e-01,  8.1391e-01,  7.6437e-01,\\n\",\n      \"          -4.0419e-01, -1.7341e-01,  7.5999e-01, -7.8587e-01],\\n\",\n      \"         [-3.5172e-01,  9.4749e-01,  9.3039e-02,  5.2600e-01, -4.9879e-01,\\n\",\n      \"          -7.1578e-01, -9.3014e-01, -8.5450e-01,  8.4293e-01,  2.8136e-01,\\n\",\n      \"          -1.3557e-01, -8.6492e-01, -6.6690e-01,  9.2696e-01, -1.7106e-01,\\n\",\n      \"           7.2665e-01,  2.6598e-01,  9.6001e-01,  9.6707e-01, -5.8140e-01,\\n\",\n      \"          -9.7127e-01, -4.0630e-01,  3.7375e-01,  5.6344e-01,  7.4631e-02,\\n\",\n      \"          -7.8830e-01,  5.5113e-01,  2.4708e-01, -4.1964e-01, -1.2664e-04,\\n\",\n      \"           9.2945e-01, -5.1485e-01,  4.9163e-01, -8.3042e-02, -1.8104e-01,\\n\",\n      \"           4.5435e-01, -7.3406e-01,  7.6429e-01,  4.7469e-01,  5.3298e-02,\\n\",\n      \"           7.7167e-01, -9.4698e-01, -7.0945e-01,  2.6853e-01, -8.7757e-01,\\n\",\n      \"           1.6556e-01, -1.4299e-01, -3.2505e-01,  7.4663e-01,  9.6821e-01,\\n\",\n      \"          -6.8238e-01,  8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\\n\",\n      \"           4.0388e-01, -9.8040e-01,  8.1152e-01,  8.5002e-01,  7.9787e-01,\\n\",\n      \"          -9.2759e-01,  4.8487e-01,  8.3804e-01, -9.2653e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1554e-01,  9.2967e-01,  2.0494e-01,  5.2804e-01, -4.8765e-01,\\n\",\n      \"          -7.3976e-01, -9.2037e-01, -8.3445e-01,  8.1982e-01,  2.0183e-01,\\n\",\n      \"          -1.4853e-01, -7.8974e-01, -6.0921e-01,  9.2589e-01, -1.7823e-01,\\n\",\n      \"           7.0490e-01,  2.6072e-01,  9.5497e-01,  9.1133e-01, -5.1347e-01,\\n\",\n      \"          -9.5951e-01, -2.3076e-01,  2.1754e-01,  4.3733e-01, -2.9295e-02,\\n\",\n      \"          -8.0489e-01,  5.3086e-01,  2.0390e-01, -3.0930e-01, -3.5179e-03,\\n\",\n      \"           9.1803e-01, -4.7151e-01,  4.4910e-01, -3.0464e-02, -1.2364e-01,\\n\",\n      \"           3.4547e-01, -7.2454e-01,  5.3417e-01,  4.1927e-01, -5.4921e-02,\\n\",\n      \"           7.7939e-01, -9.4286e-01, -7.4250e-01,  1.5274e-01, -8.7349e-01,\\n\",\n      \"           2.0929e-01, -3.1794e-01, -3.3657e-01,  7.9071e-01,  9.1712e-01,\\n\",\n      \"          -5.6772e-01,  8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\\n\",\n      \"           2.9902e-01, -9.6587e-01,  7.5750e-01,  8.3694e-01,  7.7867e-01,\\n\",\n      \"          -9.3306e-01,  4.5615e-01,  8.3903e-01, -8.6171e-01],\\n\",\n      \"         [-5.8363e-01,  9.7749e-01,  8.7658e-02,  3.8939e-01, -4.0473e-01,\\n\",\n      \"          -7.1746e-01, -9.7746e-01, -8.7006e-01,  9.1532e-01,  2.8459e-01,\\n\",\n      \"          -2.2359e-01, -9.1768e-01, -7.4716e-01,  9.8367e-01, -2.7790e-01,\\n\",\n      \"           6.9578e-01,  1.8294e-01,  9.7452e-01,  9.8907e-01, -5.4132e-01,\\n\",\n      \"          -9.9230e-01, -4.4919e-01,  3.8879e-01,  5.6903e-01, -5.8009e-02,\\n\",\n      \"          -7.7496e-01,  4.3154e-01,  3.7605e-01, -4.2439e-01,  6.4348e-02,\\n\",\n      \"           9.4892e-01, -6.6214e-01,  3.6881e-01, -2.0051e-01,  1.2171e-01,\\n\",\n      \"           5.8965e-01, -6.7904e-01,  8.1712e-01,  5.3582e-01,  1.9643e-02,\\n\",\n      \"           9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\\n\",\n      \"           1.6236e-01, -2.0750e-01, -6.0565e-01,  7.7366e-01,  9.8503e-01,\\n\",\n      \"          -8.3358e-01,  9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\\n\",\n      \"           4.3214e-01, -9.8765e-01,  9.0666e-01,  8.6743e-01,  8.4182e-01,\\n\",\n      \"          -9.8590e-01,  6.4342e-01,  8.6847e-01, -9.4970e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([33,  3])\\n\",\n      \"dec_state: tensor([[[ 0.5182,  0.8550,  0.0202,  0.5348,  0.6086,  0.2421, -0.6160,\\n\",\n      \"          -0.6120,  0.3239, -0.2430, -0.6351, -0.7932,  0.2987,  0.6142,\\n\",\n      \"          -0.3324, -0.1350,  0.3692,  0.3308, -0.3650,  0.5529,  0.7938,\\n\",\n      \"          -0.6100,  0.0607,  0.8019, -0.2328, -0.7207, -0.2500, -0.4150,\\n\",\n      \"          -0.8359, -0.0548, -0.7630,  0.6640,  0.2508,  0.5540, -0.2536,\\n\",\n      \"          -0.2516,  0.5941, -0.3543, -0.0780,  0.6334, -0.5385,  0.7027,\\n\",\n      \"           0.5509,  0.1530, -0.6466,  0.4808, -0.2744,  0.6229,  0.1153,\\n\",\n      \"           0.7041,  0.7462,  0.6091, -0.5141, -0.4135, -0.8097, -0.0434,\\n\",\n      \"           0.5605,  0.3620, -0.0721, -0.2368, -0.8302,  0.4081, -0.0624,\\n\",\n      \"          -0.1807],\\n\",\n      \"         [ 0.9238,  0.9541, -0.9438,  0.8747,  0.5348,  0.4564, -0.9074,\\n\",\n      \"          -0.4503, -0.2398, -0.9822, -0.9402, -0.8899,  0.6948,  0.9432,\\n\",\n      \"          -0.9496,  0.0738,  0.9223, -0.2593, -0.8901,  0.7804,  0.9344,\\n\",\n      \"          -0.7592, -0.6855,  0.8324,  0.9295, -0.9197, -0.0066, -0.9104,\\n\",\n      \"           0.0825, -0.9063, -0.8933,  0.9354,  0.8163,  0.8140, -0.5453,\\n\",\n      \"          -0.8374,  0.8016, -0.8202,  0.8062,  0.9671, -0.8535,  0.5729,\\n\",\n      \"           0.8312, -0.5923, -0.8528,  0.7854, -0.6201,  0.8195, -0.2277,\\n\",\n      \"           0.6761, -0.8186,  0.9641, -0.4150, -0.3945,  0.5832, -0.0339,\\n\",\n      \"           0.8038,  0.8231, -0.4201, -0.2177, -0.9808,  0.9044,  0.0414,\\n\",\n      \"          -0.9223]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.7979e-01,  9.4467e-02, -1.0363e-01,  4.6698e-01,  2.1990e-01,\\n\",\n      \"           1.0968e-01,  6.3953e-02, -6.2686e-01,  3.3735e-01, -1.5381e-01,\\n\",\n      \"           4.4057e-01, -1.3544e-01,  3.1925e-02,  2.8315e-01,  1.3914e-01,\\n\",\n      \"           4.8791e-01,  2.2082e-01,  6.2355e-03,  2.7165e-01,  1.7884e-01,\\n\",\n      \"          -5.0191e-01, -1.1003e-01,  2.6037e-01, -1.4109e-01, -4.9608e-01,\\n\",\n      \"           1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\\n\",\n      \"           1.6098e-01, -1.8203e-01,  8.5968e-02,  1.6584e-01, -1.8070e-01,\\n\",\n      \"          -1.0343e-02, -5.9731e-01,  2.7544e-01,  5.4321e-01,  1.2392e-01,\\n\",\n      \"          -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\\n\",\n      \"           3.5685e-01, -2.1323e-01, -1.0543e-01,  2.0594e-01, -2.2193e-02,\\n\",\n      \"           2.7921e-01,  4.1012e-01,  2.2706e-01, -5.1412e-01, -3.2686e-01,\\n\",\n      \"           1.8903e-01, -5.3830e-01,  2.9266e-01,  1.3446e-01,  1.6127e-01,\\n\",\n      \"          -4.3490e-01,  1.0959e-01, -3.0305e-02, -3.5573e-01],\\n\",\n      \"         [-2.6735e-01,  3.3112e-01, -2.7546e-01,  3.3183e-02, -8.5314e-02,\\n\",\n      \"          -4.6477e-02, -2.8822e-01,  1.6451e-01, -7.2843e-02, -1.5546e-01,\\n\",\n      \"          -2.3366e-01, -1.8629e-01, -5.3722e-01,  3.5115e-01,  1.0961e-01,\\n\",\n      \"          -4.6762e-01,  4.1160e-01,  2.9585e-01,  9.0005e-02, -6.4770e-01,\\n\",\n      \"          -6.2316e-01, -1.1505e-01,  1.1418e-01, -7.1088e-02,  1.3812e-01,\\n\",\n      \"          -7.0793e-03,  1.7934e-01,  3.0685e-01, -1.1399e-01, -1.2434e-01,\\n\",\n      \"           1.6922e-01, -1.0212e-01,  4.3567e-02, -3.6941e-01, -1.6724e-01,\\n\",\n      \"          -9.6767e-02, -2.0039e-01,  1.6684e-01, -6.7633e-02, -3.5034e-01,\\n\",\n      \"           1.3738e-01,  6.7207e-01, -8.7835e-02,  7.1087e-02, -6.5737e-01,\\n\",\n      \"          -4.0125e-01,  4.1675e-01, -1.4082e-01,  3.5492e-02,  4.1041e-01,\\n\",\n      \"           1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\\n\",\n      \"           1.9867e-01, -4.3455e-01,  1.8238e-01,  7.0308e-02, -2.2539e-01,\\n\",\n      \"           8.4201e-02,  1.7078e-01,  3.0062e-01, -4.3804e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.8065e-01,  2.6210e-01, -4.0260e-01,  5.8659e-01,  8.2546e-02,\\n\",\n      \"           3.4530e-02,  1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\\n\",\n      \"           1.0646e-01,  4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\\n\",\n      \"          -1.5987e-02, -2.1735e-01, -2.0578e-01,  1.5982e-01,  5.9540e-02,\\n\",\n      \"          -6.4146e-02, -6.8747e-02,  8.1613e-02, -2.4492e-01, -1.3727e-01,\\n\",\n      \"           2.8170e-02,  2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\\n\",\n      \"           3.1014e-01, -2.1871e-01,  2.2693e-01,  9.0831e-02, -1.9375e-01,\\n\",\n      \"          -7.3290e-02, -4.6222e-01, -2.5226e-01,  2.8962e-01,  1.9681e-01,\\n\",\n      \"          -5.0930e-01,  2.7643e-01, -7.9155e-02, -4.1990e-02,  2.0346e-01,\\n\",\n      \"           2.3497e-01, -2.8674e-01, -2.4855e-01,  1.9804e-01,  3.0052e-01,\\n\",\n      \"          -6.0785e-02,  3.1826e-01,  1.9004e-01, -5.7711e-01, -4.9490e-01,\\n\",\n      \"          -8.7735e-02, -1.7347e-03,  2.3653e-01,  2.0227e-02, -1.3482e-01,\\n\",\n      \"           1.6056e-01,  3.6861e-01, -9.3747e-02, -5.8709e-01],\\n\",\n      \"         [ 2.8863e-01,  1.2149e-01, -6.2922e-01,  8.2764e-01, -2.3366e-01,\\n\",\n      \"          -2.9659e-01, -1.3204e-01,  6.2296e-01,  4.1152e-01, -3.6350e-01,\\n\",\n      \"          -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01,  4.4920e-01,\\n\",\n      \"           2.2330e-01,  5.0395e-01,  4.6923e-01,  4.3649e-01, -6.4579e-01,\\n\",\n      \"          -7.1763e-01,  8.1157e-03,  3.5871e-01,  6.4578e-01,  3.9625e-01,\\n\",\n      \"          -2.8031e-01,  2.3281e-01,  1.3482e-01, -1.3590e-01, -2.4081e-01,\\n\",\n      \"           2.4641e-01, -3.3319e-02,  6.3331e-01,  1.2224e-01, -1.5938e-01,\\n\",\n      \"           3.8584e-02, -5.9274e-01,  9.0730e-01,  3.3856e-01,  4.1958e-01,\\n\",\n      \"           3.3964e-02,  6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\\n\",\n      \"          -4.5367e-01,  3.1252e-01, -6.7000e-01,  2.1814e-01,  7.2959e-01,\\n\",\n      \"          -3.7967e-02,  3.6063e-02,  4.0004e-02, -7.2575e-01, -5.1842e-01,\\n\",\n      \"          -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01,  5.4467e-01,\\n\",\n      \"          -6.7269e-01, -5.9413e-01,  1.6626e-01, -3.8840e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7220e-01, -2.4531e-02, -1.6230e-01,  3.7354e-01,  2.7549e-01,\\n\",\n      \"           1.5702e-01,  4.3217e-01, -3.1798e-02, -2.4066e-02,  1.7492e-01,\\n\",\n      \"           3.4950e-01,  6.5571e-01,  3.6861e-02, -5.1874e-01, -2.7192e-01,\\n\",\n      \"           1.2709e-01,  2.2026e-02, -2.0383e-01,  1.1850e-01,  1.7263e-01,\\n\",\n      \"          -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\\n\",\n      \"           5.0656e-01, -4.9259e-02, -1.8042e-01,  2.2685e-02, -1.6907e-02,\\n\",\n      \"           4.9316e-01, -4.0781e-01,  5.2768e-01,  1.4780e-01, -3.1708e-01,\\n\",\n      \"          -5.8049e-02, -4.2868e-01,  1.5513e-01,  4.0871e-01,  6.9345e-02,\\n\",\n      \"          -2.5745e-01,  2.2631e-01, -3.6025e-02, -1.1274e-01,  2.8092e-01,\\n\",\n      \"           2.8765e-01, -1.5027e-01, -4.8283e-01,  1.6113e-01, -1.1905e-01,\\n\",\n      \"           2.6178e-01,  4.1344e-01,  1.8685e-01, -1.6060e-01, -5.5496e-01,\\n\",\n      \"          -2.1107e-02, -1.0227e-01,  3.2287e-01,  9.7470e-02,  2.6766e-01,\\n\",\n      \"           1.8691e-01,  8.5429e-02,  5.3812e-02, -4.7839e-02],\\n\",\n      \"         [ 3.5464e-03,  2.9370e-01, -5.7085e-01,  3.3890e-01, -1.7416e-01,\\n\",\n      \"          -1.8559e-01, -3.1623e-01, -4.1640e-01,  3.5136e-01,  1.9977e-01,\\n\",\n      \"          -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01,  1.6816e-02,\\n\",\n      \"           1.6564e-01,  3.3103e-01,  5.8284e-01,  6.0926e-01, -3.8338e-01,\\n\",\n      \"          -1.2137e-01, -8.2141e-02,  2.6694e-01,  5.6790e-01,  3.6747e-01,\\n\",\n      \"           2.3225e-01,  4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\\n\",\n      \"           2.9217e-01, -2.7284e-01,  6.6239e-01, -2.6185e-01, -3.1728e-01,\\n\",\n      \"           1.4997e-01, -1.1499e-01,  5.4129e-01,  5.1287e-01,  2.2698e-01,\\n\",\n      \"           6.5991e-02,  2.7580e-01, -9.2449e-02,  3.2780e-01,  2.8706e-01,\\n\",\n      \"          -2.4724e-01,  1.3564e-01,  1.2187e-02,  1.0591e-01,  6.9933e-01,\\n\",\n      \"           5.7920e-02,  1.1761e-01,  3.0423e-01, -6.0233e-01, -3.1639e-01,\\n\",\n      \"           1.2788e-01, -3.2039e-01,  2.4106e-01, -5.5253e-02,  1.5497e-01,\\n\",\n      \"          -1.4665e-01, -3.5109e-01,  1.5986e-01, -5.2488e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.7523e-01, -2.3620e-01, -4.9797e-02,  4.1835e-01, -1.5337e-01,\\n\",\n      \"          -4.3592e-01,  6.0074e-02,  1.3534e-01,  1.7858e-01,  1.5966e-01,\\n\",\n      \"           3.3192e-01,  2.5094e-01, -5.0503e-03,  4.2395e-02,  1.9029e-01,\\n\",\n      \"           1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01,  9.0552e-02,\\n\",\n      \"          -4.2521e-01,  3.6821e-01, -1.6868e-01,  2.4873e-01, -3.5418e-01,\\n\",\n      \"           1.5303e-01,  1.4946e-01, -2.1823e-01,  3.2424e-01, -1.1741e-01,\\n\",\n      \"          -2.7139e-02,  2.0159e-02, -1.3201e-01,  8.5273e-02,  3.5133e-03,\\n\",\n      \"          -4.1714e-01, -3.1202e-01, -1.2512e-01,  6.6698e-02, -8.2786e-02,\\n\",\n      \"           1.1544e-01,  1.8986e-01, -7.2979e-01, -1.3826e-01,  1.9034e-01,\\n\",\n      \"          -2.3812e-01, -3.5628e-01, -2.2061e-02,  3.5664e-01,  6.5099e-02,\\n\",\n      \"           4.1999e-01,  1.4260e-01, -2.5012e-01,  1.5174e-01, -3.1281e-01,\\n\",\n      \"          -3.5239e-01,  2.1327e-02, -1.5330e-01, -7.5938e-02,  1.5824e-01,\\n\",\n      \"          -5.2105e-01,  7.9910e-02,  2.9691e-01,  1.0999e-01],\\n\",\n      \"         [ 1.7269e-01,  7.1661e-01, -1.3392e-01,  2.4210e-01, -2.4052e-01,\\n\",\n      \"          -2.5021e-01, -5.2839e-01, -1.0832e-01,  5.5602e-01,  3.8296e-01,\\n\",\n      \"           2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02,  1.5606e-01,\\n\",\n      \"           4.4199e-01,  5.1434e-01,  1.9665e-01,  8.0063e-01, -6.5867e-01,\\n\",\n      \"           9.2088e-02, -7.4456e-02,  8.8930e-02,  5.4215e-01,  5.4784e-01,\\n\",\n      \"           1.8820e-01,  1.0462e-01,  2.0219e-02,  9.1717e-03, -1.8383e-01,\\n\",\n      \"           5.4892e-01, -5.8456e-01,  3.5563e-01,  2.4806e-01, -1.4683e-01,\\n\",\n      \"           1.8306e-01, -6.4206e-02,  5.9534e-01, -4.2084e-02,  5.7999e-02,\\n\",\n      \"          -1.0971e-01,  4.6418e-01, -1.8560e-02,  3.6068e-01, -4.5977e-02,\\n\",\n      \"          -7.6532e-03,  2.3670e-01,  9.5715e-02,  4.4234e-01,  7.5172e-01,\\n\",\n      \"          -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\\n\",\n      \"          -8.5172e-03, -5.9053e-01,  2.6878e-01, -2.2309e-01,  7.8604e-01,\\n\",\n      \"          -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9541e-01,  4.9519e-01,  1.1028e-01,  2.2783e-01, -2.1352e-01,\\n\",\n      \"          -4.2290e-01, -3.8576e-01,  2.2347e-01,  4.9458e-01,  3.3885e-01,\\n\",\n      \"           3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03,  2.2591e-01,\\n\",\n      \"           4.0734e-01,  4.6116e-01, -1.0352e-01,  3.2594e-01, -5.3246e-01,\\n\",\n      \"          -1.2795e-01,  3.0881e-01, -1.5611e-01,  2.7612e-01,  1.5252e-01,\\n\",\n      \"           1.9220e-01,  1.6186e-01, -6.1315e-02,  3.1383e-01, -2.0718e-01,\\n\",\n      \"           3.9542e-01, -5.2364e-01, -1.0867e-01,  4.3802e-01,  6.8734e-02,\\n\",\n      \"          -1.5552e-01, -1.1045e-01,  1.0764e-01, -3.4260e-01, -1.5649e-01,\\n\",\n      \"          -2.2060e-02,  3.6901e-01, -3.2511e-01,  5.9674e-02, -2.2943e-02,\\n\",\n      \"           3.1358e-02, -1.1782e-01,  4.7566e-02,  5.6886e-01,  2.8382e-01,\\n\",\n      \"           2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\\n\",\n      \"          -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01,  7.6172e-01,\\n\",\n      \"          -5.2932e-01, -4.2038e-01, -1.3811e-01,  9.3005e-02],\\n\",\n      \"         [ 4.2985e-03,  5.3781e-01,  9.7958e-02,  6.4659e-01, -5.9524e-01,\\n\",\n      \"          -2.4234e-01, -5.6040e-01, -8.2409e-01,  6.0406e-01,  2.5802e-01,\\n\",\n      \"           1.4920e-01, -7.4744e-01, -5.5557e-01,  3.0839e-01, -2.8524e-04,\\n\",\n      \"           7.6712e-01,  5.3626e-01,  6.4505e-01,  8.5630e-01, -6.8977e-01,\\n\",\n      \"          -7.3681e-01, -3.5756e-01,  3.5687e-01,  5.4350e-01,  3.4881e-01,\\n\",\n      \"          -8.0242e-01,  7.1195e-01,  8.1859e-02, -4.9816e-01, -1.9957e-01,\\n\",\n      \"           8.1895e-01, -3.0832e-01,  6.4616e-01,  2.4095e-01, -5.7400e-01,\\n\",\n      \"           1.5690e-01, -7.8424e-01,  6.9440e-01,  3.7262e-01,  9.6325e-02,\\n\",\n      \"          -2.3760e-01, -6.6459e-01, -6.6820e-01,  6.2534e-01,  8.6112e-02,\\n\",\n      \"           1.6394e-01, -1.9756e-02,  2.5657e-01,  7.1100e-01,  9.1409e-01,\\n\",\n      \"          -2.0942e-01,  4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\\n\",\n      \"           3.6628e-01, -8.2357e-01,  4.8054e-01,  8.2876e-01,  7.8838e-01,\\n\",\n      \"          -3.1700e-01, -2.2284e-01,  7.4938e-01, -8.8767e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.0751e-01,  3.8295e-01,  2.3988e-01,  6.5699e-01, -5.7568e-01,\\n\",\n      \"          -3.6006e-01, -4.8100e-01, -7.9433e-01,  5.6901e-01,  1.7161e-01,\\n\",\n      \"           2.8785e-01, -5.9491e-01, -4.3984e-01,  3.0638e-01,  9.5131e-03,\\n\",\n      \"           7.5487e-01,  5.2016e-01,  5.6168e-01,  5.5644e-01, -6.0117e-01,\\n\",\n      \"          -6.7291e-01, -1.5772e-01,  1.8844e-01,  3.3261e-01,  1.1509e-01,\\n\",\n      \"          -8.2417e-01,  7.0802e-01,  2.9094e-02, -3.2895e-01, -2.3967e-01,\\n\",\n      \"           7.7577e-01, -2.4526e-01,  5.9929e-01,  3.5422e-01, -4.4149e-01,\\n\",\n      \"          -6.9179e-02, -7.8540e-01,  3.7833e-01,  2.8132e-01, -1.9018e-02,\\n\",\n      \"          -1.6282e-01, -6.4327e-01, -7.5924e-01,  4.9658e-01,  8.3237e-02,\\n\",\n      \"           2.1320e-01, -2.6824e-01,  2.1273e-01,  7.7034e-01,  7.6653e-01,\\n\",\n      \"           1.5166e-02,  4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\\n\",\n      \"           2.4408e-01, -6.8280e-01,  3.1720e-01,  8.1391e-01,  7.6437e-01,\\n\",\n      \"          -4.0419e-01, -1.7341e-01,  7.5999e-01, -7.8587e-01],\\n\",\n      \"         [-3.5172e-01,  9.4749e-01,  9.3039e-02,  5.2600e-01, -4.9879e-01,\\n\",\n      \"          -7.1578e-01, -9.3014e-01, -8.5450e-01,  8.4293e-01,  2.8136e-01,\\n\",\n      \"          -1.3557e-01, -8.6492e-01, -6.6690e-01,  9.2696e-01, -1.7106e-01,\\n\",\n      \"           7.2665e-01,  2.6598e-01,  9.6001e-01,  9.6707e-01, -5.8140e-01,\\n\",\n      \"          -9.7127e-01, -4.0630e-01,  3.7375e-01,  5.6344e-01,  7.4631e-02,\\n\",\n      \"          -7.8830e-01,  5.5113e-01,  2.4708e-01, -4.1964e-01, -1.2664e-04,\\n\",\n      \"           9.2945e-01, -5.1485e-01,  4.9163e-01, -8.3042e-02, -1.8104e-01,\\n\",\n      \"           4.5435e-01, -7.3406e-01,  7.6429e-01,  4.7469e-01,  5.3298e-02,\\n\",\n      \"           7.7167e-01, -9.4698e-01, -7.0945e-01,  2.6853e-01, -8.7757e-01,\\n\",\n      \"           1.6556e-01, -1.4299e-01, -3.2505e-01,  7.4663e-01,  9.6821e-01,\\n\",\n      \"          -6.8238e-01,  8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\\n\",\n      \"           4.0388e-01, -9.8040e-01,  8.1152e-01,  8.5002e-01,  7.9787e-01,\\n\",\n      \"          -9.2759e-01,  4.8487e-01,  8.3804e-01, -9.2653e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1554e-01,  9.2967e-01,  2.0494e-01,  5.2804e-01, -4.8765e-01,\\n\",\n      \"          -7.3976e-01, -9.2037e-01, -8.3445e-01,  8.1982e-01,  2.0183e-01,\\n\",\n      \"          -1.4853e-01, -7.8974e-01, -6.0921e-01,  9.2589e-01, -1.7823e-01,\\n\",\n      \"           7.0490e-01,  2.6072e-01,  9.5497e-01,  9.1133e-01, -5.1347e-01,\\n\",\n      \"          -9.5951e-01, -2.3076e-01,  2.1754e-01,  4.3733e-01, -2.9295e-02,\\n\",\n      \"          -8.0489e-01,  5.3086e-01,  2.0390e-01, -3.0930e-01, -3.5179e-03,\\n\",\n      \"           9.1803e-01, -4.7151e-01,  4.4910e-01, -3.0464e-02, -1.2364e-01,\\n\",\n      \"           3.4547e-01, -7.2454e-01,  5.3417e-01,  4.1927e-01, -5.4921e-02,\\n\",\n      \"           7.7939e-01, -9.4286e-01, -7.4250e-01,  1.5274e-01, -8.7349e-01,\\n\",\n      \"           2.0929e-01, -3.1794e-01, -3.3657e-01,  7.9071e-01,  9.1712e-01,\\n\",\n      \"          -5.6772e-01,  8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\\n\",\n      \"           2.9902e-01, -9.6587e-01,  7.5750e-01,  8.3694e-01,  7.7867e-01,\\n\",\n      \"          -9.3306e-01,  4.5615e-01,  8.3903e-01, -8.6171e-01],\\n\",\n      \"         [-5.8363e-01,  9.7749e-01,  8.7658e-02,  3.8939e-01, -4.0473e-01,\\n\",\n      \"          -7.1746e-01, -9.7746e-01, -8.7006e-01,  9.1532e-01,  2.8459e-01,\\n\",\n      \"          -2.2359e-01, -9.1768e-01, -7.4716e-01,  9.8367e-01, -2.7790e-01,\\n\",\n      \"           6.9578e-01,  1.8294e-01,  9.7452e-01,  9.8907e-01, -5.4132e-01,\\n\",\n      \"          -9.9230e-01, -4.4919e-01,  3.8879e-01,  5.6903e-01, -5.8009e-02,\\n\",\n      \"          -7.7496e-01,  4.3154e-01,  3.7605e-01, -4.2439e-01,  6.4348e-02,\\n\",\n      \"           9.4892e-01, -6.6214e-01,  3.6881e-01, -2.0051e-01,  1.2171e-01,\\n\",\n      \"           5.8965e-01, -6.7904e-01,  8.1712e-01,  5.3582e-01,  1.9643e-02,\\n\",\n      \"           9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\\n\",\n      \"           1.6236e-01, -2.0750e-01, -6.0565e-01,  7.7366e-01,  9.8503e-01,\\n\",\n      \"          -8.3358e-01,  9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\\n\",\n      \"           4.3214e-01, -9.8765e-01,  9.0666e-01,  8.6743e-01,  8.4182e-01,\\n\",\n      \"          -9.8590e-01,  6.4342e-01,  8.6847e-01, -9.4970e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([3, 2])\\n\",\n      \"dec_state: tensor([[[ 0.9584,  0.9553, -0.7073,  0.5855,  0.4463,  0.3449, -0.7402,\\n\",\n      \"          -0.7600,  0.0983, -0.9498, -0.9022, -0.8457,  0.8093,  0.8701,\\n\",\n      \"          -0.8842,  0.2358,  0.8940,  0.0260, -0.8790,  0.7189,  0.8049,\\n\",\n      \"          -0.6583, -0.5118,  0.7463,  0.8523, -0.8457,  0.0670, -0.9016,\\n\",\n      \"           0.4506, -0.5295, -0.8394,  0.7062,  0.8052,  0.7948, -0.1778,\\n\",\n      \"          -0.6653,  0.7511, -0.8029,  0.7335,  0.8878, -0.7666,  0.8202,\\n\",\n      \"           0.6667, -0.5413, -0.8153,  0.8738, -0.3011,  0.8524,  0.0128,\\n\",\n      \"           0.6948, -0.8426,  0.8838, -0.0376, -0.5703,  0.6699, -0.1508,\\n\",\n      \"           0.8237,  0.5334, -0.5601, -0.3933, -0.9388,  0.6849, -0.1200,\\n\",\n      \"          -0.8734],\\n\",\n      \"         [ 0.9394,  0.7889, -0.9715,  0.8886,  0.6106,  0.5632, -0.6426,\\n\",\n      \"          -0.4784, -0.5644, -0.1168, -0.1695, -0.8381,  0.6910,  0.6703,\\n\",\n      \"          -0.9463, -0.4975,  0.4547,  0.1361, -0.8559,  0.5702,  0.9736,\\n\",\n      \"          -0.7647, -0.1379,  0.8759,  0.8863, -0.9425, -0.5700, -0.8484,\\n\",\n      \"          -0.6467, -0.6432, -0.8917,  0.9540, -0.6101,  0.8297, -0.6338,\\n\",\n      \"          -0.9613,  0.5814, -0.5614,  0.7208,  0.8563, -0.7520,  0.7071,\\n\",\n      \"           0.8386, -0.2497, -0.4504,  0.5379, -0.6108,  0.8647, -0.2931,\\n\",\n      \"           0.5807,  0.1408,  0.9291, -0.3997, -0.5553, -0.2399, -0.1207,\\n\",\n      \"           0.9243,  0.8799,  0.2313, -0.1422, -0.9783,  0.8954, -0.0865,\\n\",\n      \"          -0.1616]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.7979e-01,  9.4467e-02, -1.0363e-01,  4.6698e-01,  2.1990e-01,\\n\",\n      \"           1.0968e-01,  6.3953e-02, -6.2686e-01,  3.3735e-01, -1.5381e-01,\\n\",\n      \"           4.4057e-01, -1.3544e-01,  3.1925e-02,  2.8315e-01,  1.3914e-01,\\n\",\n      \"           4.8791e-01,  2.2082e-01,  6.2355e-03,  2.7165e-01,  1.7884e-01,\\n\",\n      \"          -5.0191e-01, -1.1003e-01,  2.6037e-01, -1.4109e-01, -4.9608e-01,\\n\",\n      \"           1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\\n\",\n      \"           1.6098e-01, -1.8203e-01,  8.5968e-02,  1.6584e-01, -1.8070e-01,\\n\",\n      \"          -1.0343e-02, -5.9731e-01,  2.7544e-01,  5.4321e-01,  1.2392e-01,\\n\",\n      \"          -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\\n\",\n      \"           3.5685e-01, -2.1323e-01, -1.0543e-01,  2.0594e-01, -2.2193e-02,\\n\",\n      \"           2.7921e-01,  4.1012e-01,  2.2706e-01, -5.1412e-01, -3.2686e-01,\\n\",\n      \"           1.8903e-01, -5.3830e-01,  2.9266e-01,  1.3446e-01,  1.6127e-01,\\n\",\n      \"          -4.3490e-01,  1.0959e-01, -3.0305e-02, -3.5573e-01],\\n\",\n      \"         [-2.6735e-01,  3.3112e-01, -2.7546e-01,  3.3183e-02, -8.5314e-02,\\n\",\n      \"          -4.6477e-02, -2.8822e-01,  1.6451e-01, -7.2843e-02, -1.5546e-01,\\n\",\n      \"          -2.3366e-01, -1.8629e-01, -5.3722e-01,  3.5115e-01,  1.0961e-01,\\n\",\n      \"          -4.6762e-01,  4.1160e-01,  2.9585e-01,  9.0005e-02, -6.4770e-01,\\n\",\n      \"          -6.2316e-01, -1.1505e-01,  1.1418e-01, -7.1088e-02,  1.3812e-01,\\n\",\n      \"          -7.0793e-03,  1.7934e-01,  3.0685e-01, -1.1399e-01, -1.2434e-01,\\n\",\n      \"           1.6922e-01, -1.0212e-01,  4.3567e-02, -3.6941e-01, -1.6724e-01,\\n\",\n      \"          -9.6767e-02, -2.0039e-01,  1.6684e-01, -6.7633e-02, -3.5034e-01,\\n\",\n      \"           1.3738e-01,  6.7207e-01, -8.7835e-02,  7.1087e-02, -6.5737e-01,\\n\",\n      \"          -4.0125e-01,  4.1675e-01, -1.4082e-01,  3.5492e-02,  4.1041e-01,\\n\",\n      \"           1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\\n\",\n      \"           1.9867e-01, -4.3455e-01,  1.8238e-01,  7.0308e-02, -2.2539e-01,\\n\",\n      \"           8.4201e-02,  1.7078e-01,  3.0062e-01, -4.3804e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.8065e-01,  2.6210e-01, -4.0260e-01,  5.8659e-01,  8.2546e-02,\\n\",\n      \"           3.4530e-02,  1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\\n\",\n      \"           1.0646e-01,  4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\\n\",\n      \"          -1.5987e-02, -2.1735e-01, -2.0578e-01,  1.5982e-01,  5.9540e-02,\\n\",\n      \"          -6.4146e-02, -6.8747e-02,  8.1613e-02, -2.4492e-01, -1.3727e-01,\\n\",\n      \"           2.8170e-02,  2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\\n\",\n      \"           3.1014e-01, -2.1871e-01,  2.2693e-01,  9.0831e-02, -1.9375e-01,\\n\",\n      \"          -7.3290e-02, -4.6222e-01, -2.5226e-01,  2.8962e-01,  1.9681e-01,\\n\",\n      \"          -5.0930e-01,  2.7643e-01, -7.9155e-02, -4.1990e-02,  2.0346e-01,\\n\",\n      \"           2.3497e-01, -2.8674e-01, -2.4855e-01,  1.9804e-01,  3.0052e-01,\\n\",\n      \"          -6.0785e-02,  3.1826e-01,  1.9004e-01, -5.7711e-01, -4.9490e-01,\\n\",\n      \"          -8.7735e-02, -1.7347e-03,  2.3653e-01,  2.0227e-02, -1.3482e-01,\\n\",\n      \"           1.6056e-01,  3.6861e-01, -9.3747e-02, -5.8709e-01],\\n\",\n      \"         [ 2.8863e-01,  1.2149e-01, -6.2922e-01,  8.2764e-01, -2.3366e-01,\\n\",\n      \"          -2.9659e-01, -1.3204e-01,  6.2296e-01,  4.1152e-01, -3.6350e-01,\\n\",\n      \"          -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01,  4.4920e-01,\\n\",\n      \"           2.2330e-01,  5.0395e-01,  4.6923e-01,  4.3649e-01, -6.4579e-01,\\n\",\n      \"          -7.1763e-01,  8.1157e-03,  3.5871e-01,  6.4578e-01,  3.9625e-01,\\n\",\n      \"          -2.8031e-01,  2.3281e-01,  1.3482e-01, -1.3590e-01, -2.4081e-01,\\n\",\n      \"           2.4641e-01, -3.3319e-02,  6.3331e-01,  1.2224e-01, -1.5938e-01,\\n\",\n      \"           3.8584e-02, -5.9274e-01,  9.0730e-01,  3.3856e-01,  4.1958e-01,\\n\",\n      \"           3.3964e-02,  6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\\n\",\n      \"          -4.5367e-01,  3.1252e-01, -6.7000e-01,  2.1814e-01,  7.2959e-01,\\n\",\n      \"          -3.7967e-02,  3.6063e-02,  4.0004e-02, -7.2575e-01, -5.1842e-01,\\n\",\n      \"          -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01,  5.4467e-01,\\n\",\n      \"          -6.7269e-01, -5.9413e-01,  1.6626e-01, -3.8840e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7220e-01, -2.4531e-02, -1.6230e-01,  3.7354e-01,  2.7549e-01,\\n\",\n      \"           1.5702e-01,  4.3217e-01, -3.1798e-02, -2.4066e-02,  1.7492e-01,\\n\",\n      \"           3.4950e-01,  6.5571e-01,  3.6861e-02, -5.1874e-01, -2.7192e-01,\\n\",\n      \"           1.2709e-01,  2.2026e-02, -2.0383e-01,  1.1850e-01,  1.7263e-01,\\n\",\n      \"          -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\\n\",\n      \"           5.0656e-01, -4.9259e-02, -1.8042e-01,  2.2685e-02, -1.6907e-02,\\n\",\n      \"           4.9316e-01, -4.0781e-01,  5.2768e-01,  1.4780e-01, -3.1708e-01,\\n\",\n      \"          -5.8049e-02, -4.2868e-01,  1.5513e-01,  4.0871e-01,  6.9345e-02,\\n\",\n      \"          -2.5745e-01,  2.2631e-01, -3.6025e-02, -1.1274e-01,  2.8092e-01,\\n\",\n      \"           2.8765e-01, -1.5027e-01, -4.8283e-01,  1.6113e-01, -1.1905e-01,\\n\",\n      \"           2.6178e-01,  4.1344e-01,  1.8685e-01, -1.6060e-01, -5.5496e-01,\\n\",\n      \"          -2.1107e-02, -1.0227e-01,  3.2287e-01,  9.7470e-02,  2.6766e-01,\\n\",\n      \"           1.8691e-01,  8.5429e-02,  5.3812e-02, -4.7839e-02],\\n\",\n      \"         [ 3.5464e-03,  2.9370e-01, -5.7085e-01,  3.3890e-01, -1.7416e-01,\\n\",\n      \"          -1.8559e-01, -3.1623e-01, -4.1640e-01,  3.5136e-01,  1.9977e-01,\\n\",\n      \"          -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01,  1.6816e-02,\\n\",\n      \"           1.6564e-01,  3.3103e-01,  5.8284e-01,  6.0926e-01, -3.8338e-01,\\n\",\n      \"          -1.2137e-01, -8.2141e-02,  2.6694e-01,  5.6790e-01,  3.6747e-01,\\n\",\n      \"           2.3225e-01,  4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\\n\",\n      \"           2.9217e-01, -2.7284e-01,  6.6239e-01, -2.6185e-01, -3.1728e-01,\\n\",\n      \"           1.4997e-01, -1.1499e-01,  5.4129e-01,  5.1287e-01,  2.2698e-01,\\n\",\n      \"           6.5991e-02,  2.7580e-01, -9.2449e-02,  3.2780e-01,  2.8706e-01,\\n\",\n      \"          -2.4724e-01,  1.3564e-01,  1.2187e-02,  1.0591e-01,  6.9933e-01,\\n\",\n      \"           5.7920e-02,  1.1761e-01,  3.0423e-01, -6.0233e-01, -3.1639e-01,\\n\",\n      \"           1.2788e-01, -3.2039e-01,  2.4106e-01, -5.5253e-02,  1.5497e-01,\\n\",\n      \"          -1.4665e-01, -3.5109e-01,  1.5986e-01, -5.2488e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.7523e-01, -2.3620e-01, -4.9797e-02,  4.1835e-01, -1.5337e-01,\\n\",\n      \"          -4.3592e-01,  6.0074e-02,  1.3534e-01,  1.7858e-01,  1.5966e-01,\\n\",\n      \"           3.3192e-01,  2.5094e-01, -5.0503e-03,  4.2395e-02,  1.9029e-01,\\n\",\n      \"           1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01,  9.0552e-02,\\n\",\n      \"          -4.2521e-01,  3.6821e-01, -1.6868e-01,  2.4873e-01, -3.5418e-01,\\n\",\n      \"           1.5303e-01,  1.4946e-01, -2.1823e-01,  3.2424e-01, -1.1741e-01,\\n\",\n      \"          -2.7139e-02,  2.0159e-02, -1.3201e-01,  8.5273e-02,  3.5133e-03,\\n\",\n      \"          -4.1714e-01, -3.1202e-01, -1.2512e-01,  6.6698e-02, -8.2786e-02,\\n\",\n      \"           1.1544e-01,  1.8986e-01, -7.2979e-01, -1.3826e-01,  1.9034e-01,\\n\",\n      \"          -2.3812e-01, -3.5628e-01, -2.2061e-02,  3.5664e-01,  6.5099e-02,\\n\",\n      \"           4.1999e-01,  1.4260e-01, -2.5012e-01,  1.5174e-01, -3.1281e-01,\\n\",\n      \"          -3.5239e-01,  2.1327e-02, -1.5330e-01, -7.5938e-02,  1.5824e-01,\\n\",\n      \"          -5.2105e-01,  7.9910e-02,  2.9691e-01,  1.0999e-01],\\n\",\n      \"         [ 1.7269e-01,  7.1661e-01, -1.3392e-01,  2.4210e-01, -2.4052e-01,\\n\",\n      \"          -2.5021e-01, -5.2839e-01, -1.0832e-01,  5.5602e-01,  3.8296e-01,\\n\",\n      \"           2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02,  1.5606e-01,\\n\",\n      \"           4.4199e-01,  5.1434e-01,  1.9665e-01,  8.0063e-01, -6.5867e-01,\\n\",\n      \"           9.2088e-02, -7.4456e-02,  8.8930e-02,  5.4215e-01,  5.4784e-01,\\n\",\n      \"           1.8820e-01,  1.0462e-01,  2.0219e-02,  9.1717e-03, -1.8383e-01,\\n\",\n      \"           5.4892e-01, -5.8456e-01,  3.5563e-01,  2.4806e-01, -1.4683e-01,\\n\",\n      \"           1.8306e-01, -6.4206e-02,  5.9534e-01, -4.2084e-02,  5.7999e-02,\\n\",\n      \"          -1.0971e-01,  4.6418e-01, -1.8560e-02,  3.6068e-01, -4.5977e-02,\\n\",\n      \"          -7.6532e-03,  2.3670e-01,  9.5715e-02,  4.4234e-01,  7.5172e-01,\\n\",\n      \"          -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\\n\",\n      \"          -8.5172e-03, -5.9053e-01,  2.6878e-01, -2.2309e-01,  7.8604e-01,\\n\",\n      \"          -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9541e-01,  4.9519e-01,  1.1028e-01,  2.2783e-01, -2.1352e-01,\\n\",\n      \"          -4.2290e-01, -3.8576e-01,  2.2347e-01,  4.9458e-01,  3.3885e-01,\\n\",\n      \"           3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03,  2.2591e-01,\\n\",\n      \"           4.0734e-01,  4.6116e-01, -1.0352e-01,  3.2594e-01, -5.3246e-01,\\n\",\n      \"          -1.2795e-01,  3.0881e-01, -1.5611e-01,  2.7612e-01,  1.5252e-01,\\n\",\n      \"           1.9220e-01,  1.6186e-01, -6.1315e-02,  3.1383e-01, -2.0718e-01,\\n\",\n      \"           3.9542e-01, -5.2364e-01, -1.0867e-01,  4.3802e-01,  6.8734e-02,\\n\",\n      \"          -1.5552e-01, -1.1045e-01,  1.0764e-01, -3.4260e-01, -1.5649e-01,\\n\",\n      \"          -2.2060e-02,  3.6901e-01, -3.2511e-01,  5.9674e-02, -2.2943e-02,\\n\",\n      \"           3.1358e-02, -1.1782e-01,  4.7566e-02,  5.6886e-01,  2.8382e-01,\\n\",\n      \"           2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\\n\",\n      \"          -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01,  7.6172e-01,\\n\",\n      \"          -5.2932e-01, -4.2038e-01, -1.3811e-01,  9.3005e-02],\\n\",\n      \"         [ 4.2985e-03,  5.3781e-01,  9.7958e-02,  6.4659e-01, -5.9524e-01,\\n\",\n      \"          -2.4234e-01, -5.6040e-01, -8.2409e-01,  6.0406e-01,  2.5802e-01,\\n\",\n      \"           1.4920e-01, -7.4744e-01, -5.5557e-01,  3.0839e-01, -2.8524e-04,\\n\",\n      \"           7.6712e-01,  5.3626e-01,  6.4505e-01,  8.5630e-01, -6.8977e-01,\\n\",\n      \"          -7.3681e-01, -3.5756e-01,  3.5687e-01,  5.4350e-01,  3.4881e-01,\\n\",\n      \"          -8.0242e-01,  7.1195e-01,  8.1859e-02, -4.9816e-01, -1.9957e-01,\\n\",\n      \"           8.1895e-01, -3.0832e-01,  6.4616e-01,  2.4095e-01, -5.7400e-01,\\n\",\n      \"           1.5690e-01, -7.8424e-01,  6.9440e-01,  3.7262e-01,  9.6325e-02,\\n\",\n      \"          -2.3760e-01, -6.6459e-01, -6.6820e-01,  6.2534e-01,  8.6112e-02,\\n\",\n      \"           1.6394e-01, -1.9756e-02,  2.5657e-01,  7.1100e-01,  9.1409e-01,\\n\",\n      \"          -2.0942e-01,  4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\\n\",\n      \"           3.6628e-01, -8.2357e-01,  4.8054e-01,  8.2876e-01,  7.8838e-01,\\n\",\n      \"          -3.1700e-01, -2.2284e-01,  7.4938e-01, -8.8767e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.0751e-01,  3.8295e-01,  2.3988e-01,  6.5699e-01, -5.7568e-01,\\n\",\n      \"          -3.6006e-01, -4.8100e-01, -7.9433e-01,  5.6901e-01,  1.7161e-01,\\n\",\n      \"           2.8785e-01, -5.9491e-01, -4.3984e-01,  3.0638e-01,  9.5131e-03,\\n\",\n      \"           7.5487e-01,  5.2016e-01,  5.6168e-01,  5.5644e-01, -6.0117e-01,\\n\",\n      \"          -6.7291e-01, -1.5772e-01,  1.8844e-01,  3.3261e-01,  1.1509e-01,\\n\",\n      \"          -8.2417e-01,  7.0802e-01,  2.9094e-02, -3.2895e-01, -2.3967e-01,\\n\",\n      \"           7.7577e-01, -2.4526e-01,  5.9929e-01,  3.5422e-01, -4.4149e-01,\\n\",\n      \"          -6.9179e-02, -7.8540e-01,  3.7833e-01,  2.8132e-01, -1.9018e-02,\\n\",\n      \"          -1.6282e-01, -6.4327e-01, -7.5924e-01,  4.9658e-01,  8.3237e-02,\\n\",\n      \"           2.1320e-01, -2.6824e-01,  2.1273e-01,  7.7034e-01,  7.6653e-01,\\n\",\n      \"           1.5166e-02,  4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\\n\",\n      \"           2.4408e-01, -6.8280e-01,  3.1720e-01,  8.1391e-01,  7.6437e-01,\\n\",\n      \"          -4.0419e-01, -1.7341e-01,  7.5999e-01, -7.8587e-01],\\n\",\n      \"         [-3.5172e-01,  9.4749e-01,  9.3039e-02,  5.2600e-01, -4.9879e-01,\\n\",\n      \"          -7.1578e-01, -9.3014e-01, -8.5450e-01,  8.4293e-01,  2.8136e-01,\\n\",\n      \"          -1.3557e-01, -8.6492e-01, -6.6690e-01,  9.2696e-01, -1.7106e-01,\\n\",\n      \"           7.2665e-01,  2.6598e-01,  9.6001e-01,  9.6707e-01, -5.8140e-01,\\n\",\n      \"          -9.7127e-01, -4.0630e-01,  3.7375e-01,  5.6344e-01,  7.4631e-02,\\n\",\n      \"          -7.8830e-01,  5.5113e-01,  2.4708e-01, -4.1964e-01, -1.2664e-04,\\n\",\n      \"           9.2945e-01, -5.1485e-01,  4.9163e-01, -8.3042e-02, -1.8104e-01,\\n\",\n      \"           4.5435e-01, -7.3406e-01,  7.6429e-01,  4.7469e-01,  5.3298e-02,\\n\",\n      \"           7.7167e-01, -9.4698e-01, -7.0945e-01,  2.6853e-01, -8.7757e-01,\\n\",\n      \"           1.6556e-01, -1.4299e-01, -3.2505e-01,  7.4663e-01,  9.6821e-01,\\n\",\n      \"          -6.8238e-01,  8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\\n\",\n      \"           4.0388e-01, -9.8040e-01,  8.1152e-01,  8.5002e-01,  7.9787e-01,\\n\",\n      \"          -9.2759e-01,  4.8487e-01,  8.3804e-01, -9.2653e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1554e-01,  9.2967e-01,  2.0494e-01,  5.2804e-01, -4.8765e-01,\\n\",\n      \"          -7.3976e-01, -9.2037e-01, -8.3445e-01,  8.1982e-01,  2.0183e-01,\\n\",\n      \"          -1.4853e-01, -7.8974e-01, -6.0921e-01,  9.2589e-01, -1.7823e-01,\\n\",\n      \"           7.0490e-01,  2.6072e-01,  9.5497e-01,  9.1133e-01, -5.1347e-01,\\n\",\n      \"          -9.5951e-01, -2.3076e-01,  2.1754e-01,  4.3733e-01, -2.9295e-02,\\n\",\n      \"          -8.0489e-01,  5.3086e-01,  2.0390e-01, -3.0930e-01, -3.5179e-03,\\n\",\n      \"           9.1803e-01, -4.7151e-01,  4.4910e-01, -3.0464e-02, -1.2364e-01,\\n\",\n      \"           3.4547e-01, -7.2454e-01,  5.3417e-01,  4.1927e-01, -5.4921e-02,\\n\",\n      \"           7.7939e-01, -9.4286e-01, -7.4250e-01,  1.5274e-01, -8.7349e-01,\\n\",\n      \"           2.0929e-01, -3.1794e-01, -3.3657e-01,  7.9071e-01,  9.1712e-01,\\n\",\n      \"          -5.6772e-01,  8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\\n\",\n      \"           2.9902e-01, -9.6587e-01,  7.5750e-01,  8.3694e-01,  7.7867e-01,\\n\",\n      \"          -9.3306e-01,  4.5615e-01,  8.3903e-01, -8.6171e-01],\\n\",\n      \"         [-5.8363e-01,  9.7749e-01,  8.7658e-02,  3.8939e-01, -4.0473e-01,\\n\",\n      \"          -7.1746e-01, -9.7746e-01, -8.7006e-01,  9.1532e-01,  2.8459e-01,\\n\",\n      \"          -2.2359e-01, -9.1768e-01, -7.4716e-01,  9.8367e-01, -2.7790e-01,\\n\",\n      \"           6.9578e-01,  1.8294e-01,  9.7452e-01,  9.8907e-01, -5.4132e-01,\\n\",\n      \"          -9.9230e-01, -4.4919e-01,  3.8879e-01,  5.6903e-01, -5.8009e-02,\\n\",\n      \"          -7.7496e-01,  4.3154e-01,  3.7605e-01, -4.2439e-01,  6.4348e-02,\\n\",\n      \"           9.4892e-01, -6.6214e-01,  3.6881e-01, -2.0051e-01,  1.2171e-01,\\n\",\n      \"           5.8965e-01, -6.7904e-01,  8.1712e-01,  5.3582e-01,  1.9643e-02,\\n\",\n      \"           9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\\n\",\n      \"           1.6236e-01, -2.0750e-01, -6.0565e-01,  7.7366e-01,  9.8503e-01,\\n\",\n      \"          -8.3358e-01,  9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\\n\",\n      \"           4.3214e-01, -9.8765e-01,  9.0666e-01,  8.6743e-01,  8.4182e-01,\\n\",\n      \"          -9.8590e-01,  6.4342e-01,  8.6847e-01, -9.4970e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([2, 0])\\n\",\n      \"dec_state: tensor([[[ 0.9492,  0.4958, -0.8661,  0.6525,  0.3826,  0.4732, -0.4449,\\n\",\n      \"          -0.4575, -0.4844, -0.0536, -0.1678, -0.7254,  0.7717,  0.2866,\\n\",\n      \"          -0.9169, -0.4057,  0.4435,  0.2687, -0.8291,  0.4151,  0.9229,\\n\",\n      \"          -0.6596, -0.0876,  0.7720,  0.8076, -0.8941, -0.4788, -0.7861,\\n\",\n      \"          -0.4401, -0.2553, -0.8156,  0.8218, -0.5714,  0.8059, -0.3616,\\n\",\n      \"          -0.9009,  0.5881, -0.4394,  0.6594,  0.6780, -0.6028,  0.8678,\\n\",\n      \"           0.6286, -0.2517, -0.3931,  0.4382, -0.3543,  0.8900, -0.1302,\\n\",\n      \"           0.5429, -0.2846,  0.8574, -0.0661, -0.6545, -0.1313, -0.1873,\\n\",\n      \"           0.9176,  0.6840,  0.1398, -0.1266, -0.9289,  0.7019, -0.2242,\\n\",\n      \"          -0.1567],\\n\",\n      \"         [ 0.8223,  0.9313, -0.5080,  0.7840,  0.4779,  0.0884, -0.4934,\\n\",\n      \"          -0.6590, -0.4266, -0.2454,  0.0538, -0.5875,  0.0826,  0.7437,\\n\",\n      \"          -0.6807, -0.5100, -0.1482, -0.4833, -0.5372,  0.7344,  0.9808,\\n\",\n      \"          -0.8303, -0.2022,  0.8598,  0.9230, -0.8902, -0.7257, -0.7277,\\n\",\n      \"          -0.8253, -0.8102, -0.4117,  0.9394,  0.6001,  0.7650, -0.7051,\\n\",\n      \"          -0.9867,  0.1870, -0.6687,  0.5281,  0.9002, -0.6937,  0.8102,\\n\",\n      \"           0.9252, -0.4697, -0.6218,  0.8511, -0.6754,  0.5406, -0.1697,\\n\",\n      \"           0.7036,  0.6849,  0.9378, -0.1460, -0.6613, -0.0625, -0.0273,\\n\",\n      \"           0.9042,  0.9120,  0.0894, -0.2853, -0.9855,  0.8102, -0.1600,\\n\",\n      \"          -0.1852]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-3.7979e-01,  9.4467e-02, -1.0363e-01,  4.6698e-01,  2.1990e-01,\\n\",\n      \"           1.0968e-01,  6.3953e-02, -6.2686e-01,  3.3735e-01, -1.5381e-01,\\n\",\n      \"           4.4057e-01, -1.3544e-01,  3.1925e-02,  2.8315e-01,  1.3914e-01,\\n\",\n      \"           4.8791e-01,  2.2082e-01,  6.2355e-03,  2.7165e-01,  1.7884e-01,\\n\",\n      \"          -5.0191e-01, -1.1003e-01,  2.6037e-01, -1.4109e-01, -4.9608e-01,\\n\",\n      \"           1.0589e-01, -4.2896e-01, -2.7165e-01, -2.0417e-02, -4.6298e-02,\\n\",\n      \"           1.6098e-01, -1.8203e-01,  8.5968e-02,  1.6584e-01, -1.8070e-01,\\n\",\n      \"          -1.0343e-02, -5.9731e-01,  2.7544e-01,  5.4321e-01,  1.2392e-01,\\n\",\n      \"          -2.7090e-01, -5.0479e-01, -1.3601e-01, -1.0042e-01, -1.2146e-01,\\n\",\n      \"           3.5685e-01, -2.1323e-01, -1.0543e-01,  2.0594e-01, -2.2193e-02,\\n\",\n      \"           2.7921e-01,  4.1012e-01,  2.2706e-01, -5.1412e-01, -3.2686e-01,\\n\",\n      \"           1.8903e-01, -5.3830e-01,  2.9266e-01,  1.3446e-01,  1.6127e-01,\\n\",\n      \"          -4.3490e-01,  1.0959e-01, -3.0305e-02, -3.5573e-01],\\n\",\n      \"         [-2.6735e-01,  3.3112e-01, -2.7546e-01,  3.3183e-02, -8.5314e-02,\\n\",\n      \"          -4.6477e-02, -2.8822e-01,  1.6451e-01, -7.2843e-02, -1.5546e-01,\\n\",\n      \"          -2.3366e-01, -1.8629e-01, -5.3722e-01,  3.5115e-01,  1.0961e-01,\\n\",\n      \"          -4.6762e-01,  4.1160e-01,  2.9585e-01,  9.0005e-02, -6.4770e-01,\\n\",\n      \"          -6.2316e-01, -1.1505e-01,  1.1418e-01, -7.1088e-02,  1.3812e-01,\\n\",\n      \"          -7.0793e-03,  1.7934e-01,  3.0685e-01, -1.1399e-01, -1.2434e-01,\\n\",\n      \"           1.6922e-01, -1.0212e-01,  4.3567e-02, -3.6941e-01, -1.6724e-01,\\n\",\n      \"          -9.6767e-02, -2.0039e-01,  1.6684e-01, -6.7633e-02, -3.5034e-01,\\n\",\n      \"           1.3738e-01,  6.7207e-01, -8.7835e-02,  7.1087e-02, -6.5737e-01,\\n\",\n      \"          -4.0125e-01,  4.1675e-01, -1.4082e-01,  3.5492e-02,  4.1041e-01,\\n\",\n      \"           1.5684e-01, -2.6661e-01, -3.6163e-01, -5.2216e-01, -4.7135e-01,\\n\",\n      \"           1.9867e-01, -4.3455e-01,  1.8238e-01,  7.0308e-02, -2.2539e-01,\\n\",\n      \"           8.4201e-02,  1.7078e-01,  3.0062e-01, -4.3804e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.8065e-01,  2.6210e-01, -4.0260e-01,  5.8659e-01,  8.2546e-02,\\n\",\n      \"           3.4530e-02,  1.8199e-01, -3.5448e-01, -4.7521e-02, -1.7793e-01,\\n\",\n      \"           1.0646e-01,  4.0979e-01, -3.1894e-01, -5.8222e-02, -5.4845e-02,\\n\",\n      \"          -1.5987e-02, -2.1735e-01, -2.0578e-01,  1.5982e-01,  5.9540e-02,\\n\",\n      \"          -6.4146e-02, -6.8747e-02,  8.1613e-02, -2.4492e-01, -1.3727e-01,\\n\",\n      \"           2.8170e-02,  2.2673e-01, -4.4250e-01, -9.1334e-05, -2.2066e-01,\\n\",\n      \"           3.1014e-01, -2.1871e-01,  2.2693e-01,  9.0831e-02, -1.9375e-01,\\n\",\n      \"          -7.3290e-02, -4.6222e-01, -2.5226e-01,  2.8962e-01,  1.9681e-01,\\n\",\n      \"          -5.0930e-01,  2.7643e-01, -7.9155e-02, -4.1990e-02,  2.0346e-01,\\n\",\n      \"           2.3497e-01, -2.8674e-01, -2.4855e-01,  1.9804e-01,  3.0052e-01,\\n\",\n      \"          -6.0785e-02,  3.1826e-01,  1.9004e-01, -5.7711e-01, -4.9490e-01,\\n\",\n      \"          -8.7735e-02, -1.7347e-03,  2.3653e-01,  2.0227e-02, -1.3482e-01,\\n\",\n      \"           1.6056e-01,  3.6861e-01, -9.3747e-02, -5.8709e-01],\\n\",\n      \"         [ 2.8863e-01,  1.2149e-01, -6.2922e-01,  8.2764e-01, -2.3366e-01,\\n\",\n      \"          -2.9659e-01, -1.3204e-01,  6.2296e-01,  4.1152e-01, -3.6350e-01,\\n\",\n      \"          -1.3787e-01, -2.3170e-01, -2.6925e-01, -4.0469e-01,  4.4920e-01,\\n\",\n      \"           2.2330e-01,  5.0395e-01,  4.6923e-01,  4.3649e-01, -6.4579e-01,\\n\",\n      \"          -7.1763e-01,  8.1157e-03,  3.5871e-01,  6.4578e-01,  3.9625e-01,\\n\",\n      \"          -2.8031e-01,  2.3281e-01,  1.3482e-01, -1.3590e-01, -2.4081e-01,\\n\",\n      \"           2.4641e-01, -3.3319e-02,  6.3331e-01,  1.2224e-01, -1.5938e-01,\\n\",\n      \"           3.8584e-02, -5.9274e-01,  9.0730e-01,  3.3856e-01,  4.1958e-01,\\n\",\n      \"           3.3964e-02,  6.4350e-01, -1.7241e-01, -2.7080e-01, -4.7070e-01,\\n\",\n      \"          -4.5367e-01,  3.1252e-01, -6.7000e-01,  2.1814e-01,  7.2959e-01,\\n\",\n      \"          -3.7967e-02,  3.6063e-02,  4.0004e-02, -7.2575e-01, -5.1842e-01,\\n\",\n      \"          -7.3177e-02, -3.6105e-01, -8.5451e-04, -2.7255e-01,  5.4467e-01,\\n\",\n      \"          -6.7269e-01, -5.9413e-01,  1.6626e-01, -3.8840e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.7220e-01, -2.4531e-02, -1.6230e-01,  3.7354e-01,  2.7549e-01,\\n\",\n      \"           1.5702e-01,  4.3217e-01, -3.1798e-02, -2.4066e-02,  1.7492e-01,\\n\",\n      \"           3.4950e-01,  6.5571e-01,  3.6861e-02, -5.1874e-01, -2.7192e-01,\\n\",\n      \"           1.2709e-01,  2.2026e-02, -2.0383e-01,  1.1850e-01,  1.7263e-01,\\n\",\n      \"          -2.1255e-01, -1.3641e-01, -1.9693e-01, -4.2958e-01, -1.4969e-01,\\n\",\n      \"           5.0656e-01, -4.9259e-02, -1.8042e-01,  2.2685e-02, -1.6907e-02,\\n\",\n      \"           4.9316e-01, -4.0781e-01,  5.2768e-01,  1.4780e-01, -3.1708e-01,\\n\",\n      \"          -5.8049e-02, -4.2868e-01,  1.5513e-01,  4.0871e-01,  6.9345e-02,\\n\",\n      \"          -2.5745e-01,  2.2631e-01, -3.6025e-02, -1.1274e-01,  2.8092e-01,\\n\",\n      \"           2.8765e-01, -1.5027e-01, -4.8283e-01,  1.6113e-01, -1.1905e-01,\\n\",\n      \"           2.6178e-01,  4.1344e-01,  1.8685e-01, -1.6060e-01, -5.5496e-01,\\n\",\n      \"          -2.1107e-02, -1.0227e-01,  3.2287e-01,  9.7470e-02,  2.6766e-01,\\n\",\n      \"           1.8691e-01,  8.5429e-02,  5.3812e-02, -4.7839e-02],\\n\",\n      \"         [ 3.5464e-03,  2.9370e-01, -5.7085e-01,  3.3890e-01, -1.7416e-01,\\n\",\n      \"          -1.8559e-01, -3.1623e-01, -4.1640e-01,  3.5136e-01,  1.9977e-01,\\n\",\n      \"          -1.5890e-01, -2.7119e-01, -4.3067e-01, -1.4177e-01,  1.6816e-02,\\n\",\n      \"           1.6564e-01,  3.3103e-01,  5.8284e-01,  6.0926e-01, -3.8338e-01,\\n\",\n      \"          -1.2137e-01, -8.2141e-02,  2.6694e-01,  5.6790e-01,  3.6747e-01,\\n\",\n      \"           2.3225e-01,  4.0637e-02, -1.1258e-01, -1.2776e-02, -1.2512e-01,\\n\",\n      \"           2.9217e-01, -2.7284e-01,  6.6239e-01, -2.6185e-01, -3.1728e-01,\\n\",\n      \"           1.4997e-01, -1.1499e-01,  5.4129e-01,  5.1287e-01,  2.2698e-01,\\n\",\n      \"           6.5991e-02,  2.7580e-01, -9.2449e-02,  3.2780e-01,  2.8706e-01,\\n\",\n      \"          -2.4724e-01,  1.3564e-01,  1.2187e-02,  1.0591e-01,  6.9933e-01,\\n\",\n      \"           5.7920e-02,  1.1761e-01,  3.0423e-01, -6.0233e-01, -3.1639e-01,\\n\",\n      \"           1.2788e-01, -3.2039e-01,  2.4106e-01, -5.5253e-02,  1.5497e-01,\\n\",\n      \"          -1.4665e-01, -3.5109e-01,  1.5986e-01, -5.2488e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.7523e-01, -2.3620e-01, -4.9797e-02,  4.1835e-01, -1.5337e-01,\\n\",\n      \"          -4.3592e-01,  6.0074e-02,  1.3534e-01,  1.7858e-01,  1.5966e-01,\\n\",\n      \"           3.3192e-01,  2.5094e-01, -5.0503e-03,  4.2395e-02,  1.9029e-01,\\n\",\n      \"           1.3829e-01, -2.3328e-02, -5.0787e-02, -5.2126e-01,  9.0552e-02,\\n\",\n      \"          -4.2521e-01,  3.6821e-01, -1.6868e-01,  2.4873e-01, -3.5418e-01,\\n\",\n      \"           1.5303e-01,  1.4946e-01, -2.1823e-01,  3.2424e-01, -1.1741e-01,\\n\",\n      \"          -2.7139e-02,  2.0159e-02, -1.3201e-01,  8.5273e-02,  3.5133e-03,\\n\",\n      \"          -4.1714e-01, -3.1202e-01, -1.2512e-01,  6.6698e-02, -8.2786e-02,\\n\",\n      \"           1.1544e-01,  1.8986e-01, -7.2979e-01, -1.3826e-01,  1.9034e-01,\\n\",\n      \"          -2.3812e-01, -3.5628e-01, -2.2061e-02,  3.5664e-01,  6.5099e-02,\\n\",\n      \"           4.1999e-01,  1.4260e-01, -2.5012e-01,  1.5174e-01, -3.1281e-01,\\n\",\n      \"          -3.5239e-01,  2.1327e-02, -1.5330e-01, -7.5938e-02,  1.5824e-01,\\n\",\n      \"          -5.2105e-01,  7.9910e-02,  2.9691e-01,  1.0999e-01],\\n\",\n      \"         [ 1.7269e-01,  7.1661e-01, -1.3392e-01,  2.4210e-01, -2.4052e-01,\\n\",\n      \"          -2.5021e-01, -5.2839e-01, -1.0832e-01,  5.5602e-01,  3.8296e-01,\\n\",\n      \"           2.1409e-02, -7.4206e-01, -4.7806e-01, -5.7138e-02,  1.5606e-01,\\n\",\n      \"           4.4199e-01,  5.1434e-01,  1.9665e-01,  8.0063e-01, -6.5867e-01,\\n\",\n      \"           9.2088e-02, -7.4456e-02,  8.8930e-02,  5.4215e-01,  5.4784e-01,\\n\",\n      \"           1.8820e-01,  1.0462e-01,  2.0219e-02,  9.1717e-03, -1.8383e-01,\\n\",\n      \"           5.4892e-01, -5.8456e-01,  3.5563e-01,  2.4806e-01, -1.4683e-01,\\n\",\n      \"           1.8306e-01, -6.4206e-02,  5.9534e-01, -4.2084e-02,  5.7999e-02,\\n\",\n      \"          -1.0971e-01,  4.6418e-01, -1.8560e-02,  3.6068e-01, -4.5977e-02,\\n\",\n      \"          -7.6532e-03,  2.3670e-01,  9.5715e-02,  4.4234e-01,  7.5172e-01,\\n\",\n      \"          -7.8928e-02, -3.0632e-01, -1.7022e-01, -7.2358e-01, -3.1443e-01,\\n\",\n      \"          -8.5172e-03, -5.9053e-01,  2.6878e-01, -2.2309e-01,  7.8604e-01,\\n\",\n      \"          -3.9476e-01, -5.3977e-01, -2.4486e-01, -4.5489e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9541e-01,  4.9519e-01,  1.1028e-01,  2.2783e-01, -2.1352e-01,\\n\",\n      \"          -4.2290e-01, -3.8576e-01,  2.2347e-01,  4.9458e-01,  3.3885e-01,\\n\",\n      \"           3.4428e-01, -5.7708e-01, -2.5956e-01, -3.5769e-03,  2.2591e-01,\\n\",\n      \"           4.0734e-01,  4.6116e-01, -1.0352e-01,  3.2594e-01, -5.3246e-01,\\n\",\n      \"          -1.2795e-01,  3.0881e-01, -1.5611e-01,  2.7612e-01,  1.5252e-01,\\n\",\n      \"           1.9220e-01,  1.6186e-01, -6.1315e-02,  3.1383e-01, -2.0718e-01,\\n\",\n      \"           3.9542e-01, -5.2364e-01, -1.0867e-01,  4.3802e-01,  6.8734e-02,\\n\",\n      \"          -1.5552e-01, -1.1045e-01,  1.0764e-01, -3.4260e-01, -1.5649e-01,\\n\",\n      \"          -2.2060e-02,  3.6901e-01, -3.2511e-01,  5.9674e-02, -2.2943e-02,\\n\",\n      \"           3.1358e-02, -1.1782e-01,  4.7566e-02,  5.6886e-01,  2.8382e-01,\\n\",\n      \"           2.0568e-01, -3.0685e-01, -3.6679e-01, -4.5066e-01, -2.2938e-01,\\n\",\n      \"          -3.0440e-01, -2.9114e-01, -1.2339e-01, -2.9037e-01,  7.6172e-01,\\n\",\n      \"          -5.2932e-01, -4.2038e-01, -1.3811e-01,  9.3005e-02],\\n\",\n      \"         [ 4.2985e-03,  5.3781e-01,  9.7958e-02,  6.4659e-01, -5.9524e-01,\\n\",\n      \"          -2.4234e-01, -5.6040e-01, -8.2409e-01,  6.0406e-01,  2.5802e-01,\\n\",\n      \"           1.4920e-01, -7.4744e-01, -5.5557e-01,  3.0839e-01, -2.8524e-04,\\n\",\n      \"           7.6712e-01,  5.3626e-01,  6.4505e-01,  8.5630e-01, -6.8977e-01,\\n\",\n      \"          -7.3681e-01, -3.5756e-01,  3.5687e-01,  5.4350e-01,  3.4881e-01,\\n\",\n      \"          -8.0242e-01,  7.1195e-01,  8.1859e-02, -4.9816e-01, -1.9957e-01,\\n\",\n      \"           8.1895e-01, -3.0832e-01,  6.4616e-01,  2.4095e-01, -5.7400e-01,\\n\",\n      \"           1.5690e-01, -7.8424e-01,  6.9440e-01,  3.7262e-01,  9.6325e-02,\\n\",\n      \"          -2.3760e-01, -6.6459e-01, -6.6820e-01,  6.2534e-01,  8.6112e-02,\\n\",\n      \"           1.6394e-01, -1.9756e-02,  2.5657e-01,  7.1100e-01,  9.1409e-01,\\n\",\n      \"          -2.0942e-01,  4.9856e-01, -1.5596e-01, -7.7948e-01, -5.3638e-01,\\n\",\n      \"           3.6628e-01, -8.2357e-01,  4.8054e-01,  8.2876e-01,  7.8838e-01,\\n\",\n      \"          -3.1700e-01, -2.2284e-01,  7.4938e-01, -8.8767e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.0751e-01,  3.8295e-01,  2.3988e-01,  6.5699e-01, -5.7568e-01,\\n\",\n      \"          -3.6006e-01, -4.8100e-01, -7.9433e-01,  5.6901e-01,  1.7161e-01,\\n\",\n      \"           2.8785e-01, -5.9491e-01, -4.3984e-01,  3.0638e-01,  9.5131e-03,\\n\",\n      \"           7.5487e-01,  5.2016e-01,  5.6168e-01,  5.5644e-01, -6.0117e-01,\\n\",\n      \"          -6.7291e-01, -1.5772e-01,  1.8844e-01,  3.3261e-01,  1.1509e-01,\\n\",\n      \"          -8.2417e-01,  7.0802e-01,  2.9094e-02, -3.2895e-01, -2.3967e-01,\\n\",\n      \"           7.7577e-01, -2.4526e-01,  5.9929e-01,  3.5422e-01, -4.4149e-01,\\n\",\n      \"          -6.9179e-02, -7.8540e-01,  3.7833e-01,  2.8132e-01, -1.9018e-02,\\n\",\n      \"          -1.6282e-01, -6.4327e-01, -7.5924e-01,  4.9658e-01,  8.3237e-02,\\n\",\n      \"           2.1320e-01, -2.6824e-01,  2.1273e-01,  7.7034e-01,  7.6653e-01,\\n\",\n      \"           1.5166e-02,  4.7220e-01, -2.3272e-01, -6.5162e-01, -5.2393e-01,\\n\",\n      \"           2.4408e-01, -6.8280e-01,  3.1720e-01,  8.1391e-01,  7.6437e-01,\\n\",\n      \"          -4.0419e-01, -1.7341e-01,  7.5999e-01, -7.8587e-01],\\n\",\n      \"         [-3.5172e-01,  9.4749e-01,  9.3039e-02,  5.2600e-01, -4.9879e-01,\\n\",\n      \"          -7.1578e-01, -9.3014e-01, -8.5450e-01,  8.4293e-01,  2.8136e-01,\\n\",\n      \"          -1.3557e-01, -8.6492e-01, -6.6690e-01,  9.2696e-01, -1.7106e-01,\\n\",\n      \"           7.2665e-01,  2.6598e-01,  9.6001e-01,  9.6707e-01, -5.8140e-01,\\n\",\n      \"          -9.7127e-01, -4.0630e-01,  3.7375e-01,  5.6344e-01,  7.4631e-02,\\n\",\n      \"          -7.8830e-01,  5.5113e-01,  2.4708e-01, -4.1964e-01, -1.2664e-04,\\n\",\n      \"           9.2945e-01, -5.1485e-01,  4.9163e-01, -8.3042e-02, -1.8104e-01,\\n\",\n      \"           4.5435e-01, -7.3406e-01,  7.6429e-01,  4.7469e-01,  5.3298e-02,\\n\",\n      \"           7.7167e-01, -9.4698e-01, -7.0945e-01,  2.6853e-01, -8.7757e-01,\\n\",\n      \"           1.6556e-01, -1.4299e-01, -3.2505e-01,  7.4663e-01,  9.6821e-01,\\n\",\n      \"          -6.8238e-01,  8.2749e-01, -8.4530e-01, -8.8006e-01, -5.4159e-01,\\n\",\n      \"           4.0388e-01, -9.8040e-01,  8.1152e-01,  8.5002e-01,  7.9787e-01,\\n\",\n      \"          -9.2759e-01,  4.8487e-01,  8.3804e-01, -9.2653e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1554e-01,  9.2967e-01,  2.0494e-01,  5.2804e-01, -4.8765e-01,\\n\",\n      \"          -7.3976e-01, -9.2037e-01, -8.3445e-01,  8.1982e-01,  2.0183e-01,\\n\",\n      \"          -1.4853e-01, -7.8974e-01, -6.0921e-01,  9.2589e-01, -1.7823e-01,\\n\",\n      \"           7.0490e-01,  2.6072e-01,  9.5497e-01,  9.1133e-01, -5.1347e-01,\\n\",\n      \"          -9.5951e-01, -2.3076e-01,  2.1754e-01,  4.3733e-01, -2.9295e-02,\\n\",\n      \"          -8.0489e-01,  5.3086e-01,  2.0390e-01, -3.0930e-01, -3.5179e-03,\\n\",\n      \"           9.1803e-01, -4.7151e-01,  4.4910e-01, -3.0464e-02, -1.2364e-01,\\n\",\n      \"           3.4547e-01, -7.2454e-01,  5.3417e-01,  4.1927e-01, -5.4921e-02,\\n\",\n      \"           7.7939e-01, -9.4286e-01, -7.4250e-01,  1.5274e-01, -8.7349e-01,\\n\",\n      \"           2.0929e-01, -3.1794e-01, -3.3657e-01,  7.9071e-01,  9.1712e-01,\\n\",\n      \"          -5.6772e-01,  8.1152e-01, -8.4379e-01, -8.4141e-01, -5.2900e-01,\\n\",\n      \"           2.9902e-01, -9.6587e-01,  7.5750e-01,  8.3694e-01,  7.7867e-01,\\n\",\n      \"          -9.3306e-01,  4.5615e-01,  8.3903e-01, -8.6171e-01],\\n\",\n      \"         [-5.8363e-01,  9.7749e-01,  8.7658e-02,  3.8939e-01, -4.0473e-01,\\n\",\n      \"          -7.1746e-01, -9.7746e-01, -8.7006e-01,  9.1532e-01,  2.8459e-01,\\n\",\n      \"          -2.2359e-01, -9.1768e-01, -7.4716e-01,  9.8367e-01, -2.7790e-01,\\n\",\n      \"           6.9578e-01,  1.8294e-01,  9.7452e-01,  9.8907e-01, -5.4132e-01,\\n\",\n      \"          -9.9230e-01, -4.4919e-01,  3.8879e-01,  5.6903e-01, -5.8009e-02,\\n\",\n      \"          -7.7496e-01,  4.3154e-01,  3.7605e-01, -4.2439e-01,  6.4348e-02,\\n\",\n      \"           9.4892e-01, -6.6214e-01,  3.6881e-01, -2.0051e-01,  1.2171e-01,\\n\",\n      \"           5.8965e-01, -6.7904e-01,  8.1712e-01,  5.3582e-01,  1.9643e-02,\\n\",\n      \"           9.0655e-01, -9.6689e-01, -6.8337e-01, -1.5295e-02, -9.7122e-01,\\n\",\n      \"           1.6236e-01, -2.0750e-01, -6.0565e-01,  7.7366e-01,  9.8503e-01,\\n\",\n      \"          -8.3358e-01,  9.1527e-01, -9.6859e-01, -9.0538e-01, -5.4670e-01,\\n\",\n      \"           4.3214e-01, -9.8765e-01,  9.0666e-01,  8.6743e-01,  8.4182e-01,\\n\",\n      \"          -9.8590e-01,  6.4342e-01,  8.6847e-01, -9.4970e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[ 5,  4, 20,  3,  2,  0,  0],\\n\",\n      \"        [ 8, 29, 26, 44,  3,  2,  0]])\\n\",\n      \"tensor([[ 8,  4, 20,  3,  2,  0,  0],\\n\",\n      \"        [ 6,  4, 30, 10, 17,  3,  2]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-0.4926,  0.9920, -0.0134,  0.4109, -0.6246, -0.3218, -0.9875,\\n\",\n      \"          -0.9226,  0.9716, -0.5513,  0.3783, -0.9762, -0.7466,  0.9917,\\n\",\n      \"           0.0698,  0.8021,  0.1127,  0.9836,  0.9717,  0.9573, -0.6240,\\n\",\n      \"          -0.4236,  0.6281,  0.7880,  0.7974, -0.9134, -0.4135, -0.1915,\\n\",\n      \"          -0.4179, -0.5657, -0.1617, -0.0803,  0.9626,  0.2555,  0.0035,\\n\",\n      \"           0.7511,  0.8956,  0.7793,  0.1154, -0.7133, -0.6264, -0.9765,\\n\",\n      \"           0.4175, -0.2215, -0.9883,  0.7281, -0.6475, -0.9267,  0.8927,\\n\",\n      \"           0.9929, -0.0055,  0.9890, -0.9765,  0.0757, -0.8288,  0.3630,\\n\",\n      \"          -0.9335,  0.9559,  0.9264,  0.4917, -0.9947,  0.9554,  0.9351,\\n\",\n      \"          -0.9154],\\n\",\n      \"         [-0.3423,  0.9772, -0.0741,  0.4744, -0.7412, -0.4294, -0.9642,\\n\",\n      \"          -0.9050,  0.9385, -0.4653,  0.3780, -0.9104, -0.5640,  0.9500,\\n\",\n      \"           0.1902,  0.8184, -0.0577,  0.9693,  0.9564,  0.9593, -0.8002,\\n\",\n      \"          -0.5135,  0.5238,  0.6573,  0.7244, -0.8918, -0.3326, -0.2079,\\n\",\n      \"          -0.4092, -0.1156, -0.2562, -0.2294,  0.9625,  0.4493, -0.0326,\\n\",\n      \"           0.7391,  0.8534,  0.7361,  0.0724, -0.7808, -0.3482, -0.9739,\\n\",\n      \"           0.3307, -0.0813, -0.9740,  0.7500, -0.6390, -0.8583,  0.8414,\\n\",\n      \"           0.9475, -0.5059,  0.9664, -0.9141,  0.1086, -0.7362,  0.3423,\\n\",\n      \"          -0.9195,  0.9080,  0.8940,  0.6829, -0.9433,  0.9062,  0.8874,\\n\",\n      \"          -0.9241]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2643,  0.4564, -0.2593,  0.0541, -0.0949, -0.0707, -0.4059,\\n\",\n      \"           0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895,  0.3679,\\n\",\n      \"           0.1058, -0.4368,  0.4438,  0.3126,  0.1805, -0.6815, -0.6550,\\n\",\n      \"          -0.1472,  0.1178, -0.0509,  0.2158, -0.0236,  0.2572,  0.3204,\\n\",\n      \"          -0.1213, -0.1323,  0.2779, -0.1086,  0.0890, -0.4043, -0.2370,\\n\",\n      \"          -0.0740, -0.2013,  0.2110, -0.0625, -0.3476,  0.1305,  0.7000,\\n\",\n      \"          -0.1356,  0.0533, -0.6974, -0.4555,  0.4434, -0.1698,  0.0568,\\n\",\n      \"           0.4341,  0.1590, -0.1960, -0.4161, -0.5756, -0.4891,  0.2558,\\n\",\n      \"          -0.4767,  0.1833,  0.0714, -0.2048, -0.0357,  0.1653,  0.3216,\\n\",\n      \"          -0.4956],\\n\",\n      \"         [-0.3986,  0.1077, -0.1079,  0.4751,  0.2374,  0.0763,  0.0478,\\n\",\n      \"          -0.6380,  0.3585, -0.1490,  0.4389, -0.1711,  0.0351,  0.3032,\\n\",\n      \"           0.1507,  0.5181,  0.2568,  0.0916,  0.2709,  0.1861, -0.5871,\\n\",\n      \"          -0.1010,  0.2366, -0.1209, -0.5268,  0.0956, -0.4196, -0.2877,\\n\",\n      \"          -0.0054, -0.0399,  0.1611, -0.1701,  0.1080,  0.1541, -0.1976,\\n\",\n      \"          -0.0249, -0.6249,  0.3139,  0.5532,  0.1371, -0.2370, -0.5140,\\n\",\n      \"          -0.1603, -0.1353, -0.1096,  0.3353, -0.2182, -0.1288,  0.1954,\\n\",\n      \"           0.0314,  0.2198,  0.4391,  0.2029, -0.5140, -0.3188,  0.2105,\\n\",\n      \"          -0.5609,  0.2901,  0.1407,  0.1191, -0.4545,  0.1350,  0.0812,\\n\",\n      \"          -0.3816]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3048,  0.2614, -0.6713,  0.8613, -0.2512, -0.4346, -0.2634,\\n\",\n      \"           0.6591,  0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\\n\",\n      \"           0.4387,  0.2709,  0.5605,  0.4969,  0.5650, -0.6975, -0.7697,\\n\",\n      \"          -0.0075,  0.3626,  0.7565,  0.4823, -0.3389,  0.3312,  0.1820,\\n\",\n      \"          -0.1854, -0.2484,  0.3879, -0.0510,  0.7113,  0.0262, -0.2328,\\n\",\n      \"           0.0428, -0.6167,  0.9327,  0.3825,  0.4738,  0.0045,  0.6714,\\n\",\n      \"          -0.2780, -0.3274, -0.5227, -0.5403,  0.3292, -0.7134,  0.2665,\\n\",\n      \"           0.7792, -0.1701,  0.1585, -0.1340, -0.7831, -0.5599,  0.0010,\\n\",\n      \"          -0.4418,  0.0466, -0.2996,  0.5337, -0.7619, -0.6692,  0.2525,\\n\",\n      \"          -0.4926],\\n\",\n      \"         [-0.5449,  0.2779,  0.6267, -0.0066, -0.3411, -0.4215,  0.1982,\\n\",\n      \"          -0.4431,  0.6065, -0.3576,  0.1459,  0.1405, -0.3065,  0.3954,\\n\",\n      \"          -0.0139,  0.5789,  0.3313,  0.1777, -0.2895, -0.0424, -0.7719,\\n\",\n      \"          -0.1613,  0.3021, -0.0137, -0.1981, -0.1518,  0.0221, -0.0543,\\n\",\n      \"           0.4869, -0.0376,  0.6679, -0.2354,  0.1546,  0.4744, -0.0194,\\n\",\n      \"           0.2567, -0.0445,  0.2706,  0.2981,  0.0486,  0.3991, -0.7287,\\n\",\n      \"          -0.2562, -0.6029, -0.2513,  0.2143,  0.0921,  0.0526,  0.3929,\\n\",\n      \"          -0.1046, -0.1321,  0.5571, -0.0703, -0.4639, -0.5332,  0.7051,\\n\",\n      \"          -0.4131,  0.4652,  0.3511, -0.1030, -0.6763, -0.2386,  0.4719,\\n\",\n      \"          -0.1979]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3278, -0.2888, -0.0956,  0.7314, -0.2450, -0.5831, -0.0397,\\n\",\n      \"           0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\\n\",\n      \"           0.3975,  0.4884,  0.6930,  0.1510,  0.5433, -0.6360, -0.6441,\\n\",\n      \"           0.1115,  0.1613,  0.7858,  0.4847, -0.5446,  0.7429,  0.2655,\\n\",\n      \"          -0.0490, -0.1175,  0.0364,  0.1196,  0.5943,  0.2333, -0.5645,\\n\",\n      \"          -0.3604, -0.6270,  0.6515, -0.0406,  0.2102, -0.1837,  0.2619,\\n\",\n      \"          -0.4548,  0.1320, -0.4382, -0.2788,  0.2147, -0.5275,  0.1388,\\n\",\n      \"           0.4512,  0.1896, -0.0293, -0.1224, -0.7348, -0.3286,  0.3086,\\n\",\n      \"          -0.3752,  0.0572, -0.4160,  0.1187, -0.5770, -0.6388,  0.1324,\\n\",\n      \"          -0.5198],\\n\",\n      \"         [-0.5405,  0.0124,  0.3095,  0.0026,  0.3472, -0.0643, -0.2726,\\n\",\n      \"          -0.1709,  0.3799, -0.5057,  0.6329, -0.0685,  0.4347,  0.3791,\\n\",\n      \"           0.4154,  0.4034,  0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\\n\",\n      \"          -0.2282, -0.2110,  0.0466, -0.1903, -0.2866,  0.2155,  0.1366,\\n\",\n      \"           0.3826, -0.0260,  0.4968, -0.0116, -0.4877,  0.4981, -0.1737,\\n\",\n      \"          -0.4543, -0.0929,  0.1796,  0.0635,  0.0320, -0.3178, -0.5188,\\n\",\n      \"           0.2668, -0.2357, -0.0332, -0.5571, -0.2157,  0.1033,  0.2126,\\n\",\n      \"          -0.4119,  0.1621,  0.1569,  0.3292, -0.1883, -0.5136,  0.4836,\\n\",\n      \"           0.1629,  0.4135,  0.0817,  0.0296, -0.5296, -0.3845,  0.2176,\\n\",\n      \"          -0.4257]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2165,  0.6643,  0.2134,  0.4667, -0.3658, -0.5918, -0.5354,\\n\",\n      \"           0.5185,  0.5647,  0.1890,  0.1068, -0.8998, -0.5254, -0.2879,\\n\",\n      \"           0.3621,  0.6158,  0.8000, -0.0707,  0.8353, -0.7904, -0.4499,\\n\",\n      \"           0.1003,  0.0254,  0.7849,  0.6487, -0.4766,  0.6924,  0.2688,\\n\",\n      \"          -0.0224, -0.1641,  0.5357, -0.5526,  0.3533,  0.4206, -0.2618,\\n\",\n      \"          -0.0252, -0.4151,  0.7307, -0.2902,  0.0149, -0.1347,  0.4171,\\n\",\n      \"          -0.3612,  0.2912, -0.5252, -0.2134,  0.2129, -0.0995,  0.5832,\\n\",\n      \"           0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193,  0.2697,\\n\",\n      \"          -0.7581,  0.1343, -0.4379,  0.8081, -0.7057, -0.7356, -0.2213,\\n\",\n      \"          -0.5394],\\n\",\n      \"         [-0.1251,  0.1434,  0.3819,  0.0779,  0.3546,  0.1264,  0.1404,\\n\",\n      \"          -0.1140,  0.3947, -0.4812,  0.6593, -0.0573,  0.3087,  0.0349,\\n\",\n      \"           0.4715,  0.0450,  0.1793, -0.4911, -0.6166,  0.0762, -0.3557,\\n\",\n      \"          -0.2982, -0.1911,  0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\\n\",\n      \"           0.1761, -0.1146,  0.1655,  0.1192, -0.0237,  0.4926,  0.1029,\\n\",\n      \"          -0.2940, -0.1968,  0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\\n\",\n      \"           0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\\n\",\n      \"          -0.1560,  0.3103, -0.2179,  0.0748,  0.2780,  0.0437,  0.1274,\\n\",\n      \"           0.2246,  0.3854, -0.3852,  0.4846,  0.0769,  0.1051, -0.1136,\\n\",\n      \"          -0.2083]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0053,  0.5089,  0.3900,  0.7339, -0.6606, -0.5602, -0.6067,\\n\",\n      \"          -0.7727,  0.6455,  0.0913,  0.2039, -0.9017, -0.6111,  0.2212,\\n\",\n      \"           0.2289,  0.8321,  0.7837,  0.6047,  0.8988, -0.8065, -0.8648,\\n\",\n      \"          -0.1608,  0.2545,  0.7868,  0.4106, -0.9213,  0.8644,  0.2484,\\n\",\n      \"          -0.4612, -0.1559,  0.8484, -0.3135,  0.6978,  0.2730, -0.6825,\\n\",\n      \"           0.1366, -0.8899,  0.8244,  0.3284,  0.0805, -0.2395, -0.6767,\\n\",\n      \"          -0.8209,  0.6211, -0.3285, -0.0912, -0.0389,  0.1991,  0.8258,\\n\",\n      \"           0.9217, -0.2170,  0.5347, -0.4071, -0.8464, -0.5593,  0.6256,\\n\",\n      \"          -0.9049,  0.4595,  0.9074,  0.7990, -0.5945, -0.3470,  0.8762,\\n\",\n      \"          -0.9404],\\n\",\n      \"         [ 0.0394,  0.7293,  0.1861,  0.0881,  0.0371, -0.1677, -0.4362,\\n\",\n      \"           0.1219,  0.6134, -0.0385,  0.6175, -0.7031, -0.0738, -0.1346,\\n\",\n      \"           0.5209,  0.4806,  0.6178, -0.3499,  0.3256, -0.4866, -0.1101,\\n\",\n      \"          -0.2557, -0.1716,  0.2299,  0.3704, -0.2004,  0.0048,  0.0728,\\n\",\n      \"           0.1695, -0.1895,  0.5252, -0.4673, -0.0011,  0.5633,  0.0540,\\n\",\n      \"          -0.0333, -0.0936,  0.6006, -0.4610, -0.1716, -0.3625,  0.0738,\\n\",\n      \"           0.2130, -0.0040, -0.1681, -0.0567,  0.0414, -0.0399,  0.3204,\\n\",\n      \"           0.1606,  0.0895, -0.4445, -0.1933, -0.5708,  0.0026,  0.1022,\\n\",\n      \"          -0.1998,  0.2881, -0.4914,  0.8336, -0.2190, -0.4052, -0.4005,\\n\",\n      \"          -0.2036]],\\n\",\n      \"\\n\",\n      \"        [[-0.4344,  0.9695,  0.3881,  0.5407, -0.5645, -0.7304, -0.9651,\\n\",\n      \"          -0.8371,  0.9021,  0.1183,  0.0341, -0.9520, -0.7408,  0.9443,\\n\",\n      \"           0.1162,  0.8202,  0.6560,  0.9675,  0.9835, -0.7582, -0.9880,\\n\",\n      \"          -0.2225,  0.2812,  0.7177,  0.2373, -0.9129,  0.7111,  0.3292,\\n\",\n      \"          -0.3043,  0.0067,  0.9513, -0.5549,  0.5781, -0.2277, -0.1309,\\n\",\n      \"           0.6114, -0.8130,  0.8737,  0.4949,  0.0302,  0.8304, -0.9538,\\n\",\n      \"          -0.8416,  0.0377, -0.9450, -0.0728, -0.1449, -0.4713,  0.8478,\\n\",\n      \"           0.9788, -0.7699,  0.8377, -0.9320, -0.9075, -0.5798,  0.6564,\\n\",\n      \"          -0.9924,  0.8009,  0.9216,  0.8556, -0.9676,  0.6107,  0.9332,\\n\",\n      \"          -0.9650],\\n\",\n      \"         [-0.1282,  0.6072,  0.2948,  0.5892, -0.5330, -0.2869, -0.5384,\\n\",\n      \"          -0.7949,  0.6626, -0.0911,  0.4917, -0.7266, -0.3492,  0.2605,\\n\",\n      \"           0.2942,  0.8206,  0.6406,  0.5368,  0.5708, -0.5419, -0.7469,\\n\",\n      \"          -0.3980,  0.1402,  0.3024,  0.2058, -0.9050,  0.7186,  0.1156,\\n\",\n      \"          -0.3964, -0.1969,  0.8352, -0.2601,  0.6729,  0.3602, -0.5379,\\n\",\n      \"           0.1174, -0.8353,  0.7244,  0.2288, -0.0560, -0.4192, -0.7514,\\n\",\n      \"          -0.6763,  0.4741, -0.0413,  0.0924, -0.2348,  0.1453,  0.6766,\\n\",\n      \"           0.7962, -0.1368,  0.4839, -0.2126, -0.7452, -0.4184,  0.5247,\\n\",\n      \"          -0.6722,  0.5168,  0.8884,  0.8025, -0.1871, -0.1701,  0.8400,\\n\",\n      \"          -0.8880]],\\n\",\n      \"\\n\",\n      \"        [[-0.6811,  0.9904,  0.3873,  0.3274, -0.4650, -0.6639, -0.9928,\\n\",\n      \"          -0.8714,  0.9532,  0.1302, -0.0052, -0.9700, -0.8229,  0.9916,\\n\",\n      \"           0.0321,  0.8120,  0.6073,  0.9809,  0.9954, -0.7496, -0.9976,\\n\",\n      \"          -0.2798,  0.3025,  0.6563,  0.1430, -0.9052,  0.6155,  0.3971,\\n\",\n      \"          -0.2514,  0.0549,  0.9648, -0.7167,  0.4741, -0.3832,  0.2246,\\n\",\n      \"           0.7622, -0.7477,  0.9110,  0.5800, -0.0079,  0.9455, -0.9695,\\n\",\n      \"          -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456,  0.8637,\\n\",\n      \"           0.9926, -0.8969,  0.9267, -0.9887, -0.9147, -0.5940,  0.6758,\\n\",\n      \"          -0.9929,  0.9099,  0.9321,  0.9038, -0.9955,  0.7793,  0.9528,\\n\",\n      \"          -0.9790],\\n\",\n      \"         [-0.5124,  0.9718,  0.2896,  0.4127, -0.4482, -0.6861, -0.9578,\\n\",\n      \"          -0.8474,  0.8905, -0.0578,  0.1265, -0.8802, -0.5990,  0.9483,\\n\",\n      \"           0.1486,  0.8054,  0.5295,  0.9644,  0.9343, -0.5344, -0.9767,\\n\",\n      \"          -0.4396,  0.1733,  0.4361,  0.1193, -0.8925,  0.5645,  0.2105,\\n\",\n      \"          -0.2591, -0.0061,  0.9448, -0.4838,  0.5449, -0.2025, -0.1123,\\n\",\n      \"           0.5975, -0.7673,  0.8066,  0.4332, -0.1005,  0.7939, -0.9577,\\n\",\n      \"          -0.7584, -0.0506, -0.9229,  0.0987, -0.3074, -0.4775,  0.7187,\\n\",\n      \"           0.9429, -0.7517,  0.8196, -0.8877, -0.8825, -0.4664,  0.5667,\\n\",\n      \"          -0.9790,  0.8117,  0.9049,  0.8489, -0.9360,  0.6337,  0.9125,\\n\",\n      \"          -0.9336]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([8, 6])\\n\",\n      \"dec_state: tensor([[[-0.5139,  0.9409, -0.3217,  0.4704, -0.4016,  0.4840, -0.9614,\\n\",\n      \"          -0.8322,  0.9107, -0.8418, -0.8032, -0.9381, -0.7349,  0.9903,\\n\",\n      \"           0.2152,  0.5106,  0.5862,  0.8732,  0.8532,  0.9498,  0.5924,\\n\",\n      \"          -0.5415,  0.4497,  0.8890,  0.5513, -0.9287,  0.7908, -0.0236,\\n\",\n      \"          -0.8752,  0.2560, -0.3973,  0.3735,  0.8994,  0.4945, -0.7113,\\n\",\n      \"          -0.4124,  0.9170,  0.7610, -0.2253, -0.1687, -0.8996,  0.1181,\\n\",\n      \"           0.0071,  0.0781, -0.9366,  0.3674, -0.7966, -0.7370,  0.1168,\\n\",\n      \"           0.9909,  0.8914,  0.9797, -0.9665,  0.5208, -0.8893,  0.1033,\\n\",\n      \"          -0.7771,  0.6786,  0.9126, -0.8588, -0.9866,  0.9258,  0.8691,\\n\",\n      \"          -0.2268],\\n\",\n      \"         [-0.3547,  0.8473,  0.1931,  0.2897, -0.0424,  0.0313, -0.5243,\\n\",\n      \"          -0.2753,  0.9347, -0.7126, -0.6475, -0.9686, -0.5810,  0.9238,\\n\",\n      \"           0.0477,  0.5437,  0.7361,  0.9091,  0.5509,  0.7893, -0.1386,\\n\",\n      \"           0.0350,  0.0471,  0.8609,  0.0062, -0.9019,  0.6731, -0.2110,\\n\",\n      \"          -0.7027, -0.5051, -0.2774,  0.3881,  0.7472,  0.3543, -0.3488,\\n\",\n      \"           0.2362,  0.6532,  0.5327, -0.2058, -0.2741, -0.3495, -0.7365,\\n\",\n      \"          -0.4693,  0.2411, -0.9539, -0.5723, -0.7329,  0.1148,  0.3159,\\n\",\n      \"           0.9596,  0.8297,  0.7788, -0.9345, -0.0642, -0.9583,  0.2603,\\n\",\n      \"          -0.7771, -0.3859,  0.9046, -0.5980, -0.9246,  0.9335,  0.5049,\\n\",\n      \"           0.3799]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2643,  0.4564, -0.2593,  0.0541, -0.0949, -0.0707, -0.4059,\\n\",\n      \"           0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895,  0.3679,\\n\",\n      \"           0.1058, -0.4368,  0.4438,  0.3126,  0.1805, -0.6815, -0.6550,\\n\",\n      \"          -0.1472,  0.1178, -0.0509,  0.2158, -0.0236,  0.2572,  0.3204,\\n\",\n      \"          -0.1213, -0.1323,  0.2779, -0.1086,  0.0890, -0.4043, -0.2370,\\n\",\n      \"          -0.0740, -0.2013,  0.2110, -0.0625, -0.3476,  0.1305,  0.7000,\\n\",\n      \"          -0.1356,  0.0533, -0.6974, -0.4555,  0.4434, -0.1698,  0.0568,\\n\",\n      \"           0.4341,  0.1590, -0.1960, -0.4161, -0.5756, -0.4891,  0.2558,\\n\",\n      \"          -0.4767,  0.1833,  0.0714, -0.2048, -0.0357,  0.1653,  0.3216,\\n\",\n      \"          -0.4956],\\n\",\n      \"         [-0.3986,  0.1077, -0.1079,  0.4751,  0.2374,  0.0763,  0.0478,\\n\",\n      \"          -0.6380,  0.3585, -0.1490,  0.4389, -0.1711,  0.0351,  0.3032,\\n\",\n      \"           0.1507,  0.5181,  0.2568,  0.0916,  0.2709,  0.1861, -0.5871,\\n\",\n      \"          -0.1010,  0.2366, -0.1209, -0.5268,  0.0956, -0.4196, -0.2877,\\n\",\n      \"          -0.0054, -0.0399,  0.1611, -0.1701,  0.1080,  0.1541, -0.1976,\\n\",\n      \"          -0.0249, -0.6249,  0.3139,  0.5532,  0.1371, -0.2370, -0.5140,\\n\",\n      \"          -0.1603, -0.1353, -0.1096,  0.3353, -0.2182, -0.1288,  0.1954,\\n\",\n      \"           0.0314,  0.2198,  0.4391,  0.2029, -0.5140, -0.3188,  0.2105,\\n\",\n      \"          -0.5609,  0.2901,  0.1407,  0.1191, -0.4545,  0.1350,  0.0812,\\n\",\n      \"          -0.3816]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3048,  0.2614, -0.6713,  0.8613, -0.2512, -0.4346, -0.2634,\\n\",\n      \"           0.6591,  0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\\n\",\n      \"           0.4387,  0.2709,  0.5605,  0.4969,  0.5650, -0.6975, -0.7697,\\n\",\n      \"          -0.0075,  0.3626,  0.7565,  0.4823, -0.3389,  0.3312,  0.1820,\\n\",\n      \"          -0.1854, -0.2484,  0.3879, -0.0510,  0.7113,  0.0262, -0.2328,\\n\",\n      \"           0.0428, -0.6167,  0.9327,  0.3825,  0.4738,  0.0045,  0.6714,\\n\",\n      \"          -0.2780, -0.3274, -0.5227, -0.5403,  0.3292, -0.7134,  0.2665,\\n\",\n      \"           0.7792, -0.1701,  0.1585, -0.1340, -0.7831, -0.5599,  0.0010,\\n\",\n      \"          -0.4418,  0.0466, -0.2996,  0.5337, -0.7619, -0.6692,  0.2525,\\n\",\n      \"          -0.4926],\\n\",\n      \"         [-0.5449,  0.2779,  0.6267, -0.0066, -0.3411, -0.4215,  0.1982,\\n\",\n      \"          -0.4431,  0.6065, -0.3576,  0.1459,  0.1405, -0.3065,  0.3954,\\n\",\n      \"          -0.0139,  0.5789,  0.3313,  0.1777, -0.2895, -0.0424, -0.7719,\\n\",\n      \"          -0.1613,  0.3021, -0.0137, -0.1981, -0.1518,  0.0221, -0.0543,\\n\",\n      \"           0.4869, -0.0376,  0.6679, -0.2354,  0.1546,  0.4744, -0.0194,\\n\",\n      \"           0.2567, -0.0445,  0.2706,  0.2981,  0.0486,  0.3991, -0.7287,\\n\",\n      \"          -0.2562, -0.6029, -0.2513,  0.2143,  0.0921,  0.0526,  0.3929,\\n\",\n      \"          -0.1046, -0.1321,  0.5571, -0.0703, -0.4639, -0.5332,  0.7051,\\n\",\n      \"          -0.4131,  0.4652,  0.3511, -0.1030, -0.6763, -0.2386,  0.4719,\\n\",\n      \"          -0.1979]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3278, -0.2888, -0.0956,  0.7314, -0.2450, -0.5831, -0.0397,\\n\",\n      \"           0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\\n\",\n      \"           0.3975,  0.4884,  0.6930,  0.1510,  0.5433, -0.6360, -0.6441,\\n\",\n      \"           0.1115,  0.1613,  0.7858,  0.4847, -0.5446,  0.7429,  0.2655,\\n\",\n      \"          -0.0490, -0.1175,  0.0364,  0.1196,  0.5943,  0.2333, -0.5645,\\n\",\n      \"          -0.3604, -0.6270,  0.6515, -0.0406,  0.2102, -0.1837,  0.2619,\\n\",\n      \"          -0.4548,  0.1320, -0.4382, -0.2788,  0.2147, -0.5275,  0.1388,\\n\",\n      \"           0.4512,  0.1896, -0.0293, -0.1224, -0.7348, -0.3286,  0.3086,\\n\",\n      \"          -0.3752,  0.0572, -0.4160,  0.1187, -0.5770, -0.6388,  0.1324,\\n\",\n      \"          -0.5198],\\n\",\n      \"         [-0.5405,  0.0124,  0.3095,  0.0026,  0.3472, -0.0643, -0.2726,\\n\",\n      \"          -0.1709,  0.3799, -0.5057,  0.6329, -0.0685,  0.4347,  0.3791,\\n\",\n      \"           0.4154,  0.4034,  0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\\n\",\n      \"          -0.2282, -0.2110,  0.0466, -0.1903, -0.2866,  0.2155,  0.1366,\\n\",\n      \"           0.3826, -0.0260,  0.4968, -0.0116, -0.4877,  0.4981, -0.1737,\\n\",\n      \"          -0.4543, -0.0929,  0.1796,  0.0635,  0.0320, -0.3178, -0.5188,\\n\",\n      \"           0.2668, -0.2357, -0.0332, -0.5571, -0.2157,  0.1033,  0.2126,\\n\",\n      \"          -0.4119,  0.1621,  0.1569,  0.3292, -0.1883, -0.5136,  0.4836,\\n\",\n      \"           0.1629,  0.4135,  0.0817,  0.0296, -0.5296, -0.3845,  0.2176,\\n\",\n      \"          -0.4257]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2165,  0.6643,  0.2134,  0.4667, -0.3658, -0.5918, -0.5354,\\n\",\n      \"           0.5185,  0.5647,  0.1890,  0.1068, -0.8998, -0.5254, -0.2879,\\n\",\n      \"           0.3621,  0.6158,  0.8000, -0.0707,  0.8353, -0.7904, -0.4499,\\n\",\n      \"           0.1003,  0.0254,  0.7849,  0.6487, -0.4766,  0.6924,  0.2688,\\n\",\n      \"          -0.0224, -0.1641,  0.5357, -0.5526,  0.3533,  0.4206, -0.2618,\\n\",\n      \"          -0.0252, -0.4151,  0.7307, -0.2902,  0.0149, -0.1347,  0.4171,\\n\",\n      \"          -0.3612,  0.2912, -0.5252, -0.2134,  0.2129, -0.0995,  0.5832,\\n\",\n      \"           0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193,  0.2697,\\n\",\n      \"          -0.7581,  0.1343, -0.4379,  0.8081, -0.7057, -0.7356, -0.2213,\\n\",\n      \"          -0.5394],\\n\",\n      \"         [-0.1251,  0.1434,  0.3819,  0.0779,  0.3546,  0.1264,  0.1404,\\n\",\n      \"          -0.1140,  0.3947, -0.4812,  0.6593, -0.0573,  0.3087,  0.0349,\\n\",\n      \"           0.4715,  0.0450,  0.1793, -0.4911, -0.6166,  0.0762, -0.3557,\\n\",\n      \"          -0.2982, -0.1911,  0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\\n\",\n      \"           0.1761, -0.1146,  0.1655,  0.1192, -0.0237,  0.4926,  0.1029,\\n\",\n      \"          -0.2940, -0.1968,  0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\\n\",\n      \"           0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\\n\",\n      \"          -0.1560,  0.3103, -0.2179,  0.0748,  0.2780,  0.0437,  0.1274,\\n\",\n      \"           0.2246,  0.3854, -0.3852,  0.4846,  0.0769,  0.1051, -0.1136,\\n\",\n      \"          -0.2083]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0053,  0.5089,  0.3900,  0.7339, -0.6606, -0.5602, -0.6067,\\n\",\n      \"          -0.7727,  0.6455,  0.0913,  0.2039, -0.9017, -0.6111,  0.2212,\\n\",\n      \"           0.2289,  0.8321,  0.7837,  0.6047,  0.8988, -0.8065, -0.8648,\\n\",\n      \"          -0.1608,  0.2545,  0.7868,  0.4106, -0.9213,  0.8644,  0.2484,\\n\",\n      \"          -0.4612, -0.1559,  0.8484, -0.3135,  0.6978,  0.2730, -0.6825,\\n\",\n      \"           0.1366, -0.8899,  0.8244,  0.3284,  0.0805, -0.2395, -0.6767,\\n\",\n      \"          -0.8209,  0.6211, -0.3285, -0.0912, -0.0389,  0.1991,  0.8258,\\n\",\n      \"           0.9217, -0.2170,  0.5347, -0.4071, -0.8464, -0.5593,  0.6256,\\n\",\n      \"          -0.9049,  0.4595,  0.9074,  0.7990, -0.5945, -0.3470,  0.8762,\\n\",\n      \"          -0.9404],\\n\",\n      \"         [ 0.0394,  0.7293,  0.1861,  0.0881,  0.0371, -0.1677, -0.4362,\\n\",\n      \"           0.1219,  0.6134, -0.0385,  0.6175, -0.7031, -0.0738, -0.1346,\\n\",\n      \"           0.5209,  0.4806,  0.6178, -0.3499,  0.3256, -0.4866, -0.1101,\\n\",\n      \"          -0.2557, -0.1716,  0.2299,  0.3704, -0.2004,  0.0048,  0.0728,\\n\",\n      \"           0.1695, -0.1895,  0.5252, -0.4673, -0.0011,  0.5633,  0.0540,\\n\",\n      \"          -0.0333, -0.0936,  0.6006, -0.4610, -0.1716, -0.3625,  0.0738,\\n\",\n      \"           0.2130, -0.0040, -0.1681, -0.0567,  0.0414, -0.0399,  0.3204,\\n\",\n      \"           0.1606,  0.0895, -0.4445, -0.1933, -0.5708,  0.0026,  0.1022,\\n\",\n      \"          -0.1998,  0.2881, -0.4914,  0.8336, -0.2190, -0.4052, -0.4005,\\n\",\n      \"          -0.2036]],\\n\",\n      \"\\n\",\n      \"        [[-0.4344,  0.9695,  0.3881,  0.5407, -0.5645, -0.7304, -0.9651,\\n\",\n      \"          -0.8371,  0.9021,  0.1183,  0.0341, -0.9520, -0.7408,  0.9443,\\n\",\n      \"           0.1162,  0.8202,  0.6560,  0.9675,  0.9835, -0.7582, -0.9880,\\n\",\n      \"          -0.2225,  0.2812,  0.7177,  0.2373, -0.9129,  0.7111,  0.3292,\\n\",\n      \"          -0.3043,  0.0067,  0.9513, -0.5549,  0.5781, -0.2277, -0.1309,\\n\",\n      \"           0.6114, -0.8130,  0.8737,  0.4949,  0.0302,  0.8304, -0.9538,\\n\",\n      \"          -0.8416,  0.0377, -0.9450, -0.0728, -0.1449, -0.4713,  0.8478,\\n\",\n      \"           0.9788, -0.7699,  0.8377, -0.9320, -0.9075, -0.5798,  0.6564,\\n\",\n      \"          -0.9924,  0.8009,  0.9216,  0.8556, -0.9676,  0.6107,  0.9332,\\n\",\n      \"          -0.9650],\\n\",\n      \"         [-0.1282,  0.6072,  0.2948,  0.5892, -0.5330, -0.2869, -0.5384,\\n\",\n      \"          -0.7949,  0.6626, -0.0911,  0.4917, -0.7266, -0.3492,  0.2605,\\n\",\n      \"           0.2942,  0.8206,  0.6406,  0.5368,  0.5708, -0.5419, -0.7469,\\n\",\n      \"          -0.3980,  0.1402,  0.3024,  0.2058, -0.9050,  0.7186,  0.1156,\\n\",\n      \"          -0.3964, -0.1969,  0.8352, -0.2601,  0.6729,  0.3602, -0.5379,\\n\",\n      \"           0.1174, -0.8353,  0.7244,  0.2288, -0.0560, -0.4192, -0.7514,\\n\",\n      \"          -0.6763,  0.4741, -0.0413,  0.0924, -0.2348,  0.1453,  0.6766,\\n\",\n      \"           0.7962, -0.1368,  0.4839, -0.2126, -0.7452, -0.4184,  0.5247,\\n\",\n      \"          -0.6722,  0.5168,  0.8884,  0.8025, -0.1871, -0.1701,  0.8400,\\n\",\n      \"          -0.8880]],\\n\",\n      \"\\n\",\n      \"        [[-0.6811,  0.9904,  0.3873,  0.3274, -0.4650, -0.6639, -0.9928,\\n\",\n      \"          -0.8714,  0.9532,  0.1302, -0.0052, -0.9700, -0.8229,  0.9916,\\n\",\n      \"           0.0321,  0.8120,  0.6073,  0.9809,  0.9954, -0.7496, -0.9976,\\n\",\n      \"          -0.2798,  0.3025,  0.6563,  0.1430, -0.9052,  0.6155,  0.3971,\\n\",\n      \"          -0.2514,  0.0549,  0.9648, -0.7167,  0.4741, -0.3832,  0.2246,\\n\",\n      \"           0.7622, -0.7477,  0.9110,  0.5800, -0.0079,  0.9455, -0.9695,\\n\",\n      \"          -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456,  0.8637,\\n\",\n      \"           0.9926, -0.8969,  0.9267, -0.9887, -0.9147, -0.5940,  0.6758,\\n\",\n      \"          -0.9929,  0.9099,  0.9321,  0.9038, -0.9955,  0.7793,  0.9528,\\n\",\n      \"          -0.9790],\\n\",\n      \"         [-0.5124,  0.9718,  0.2896,  0.4127, -0.4482, -0.6861, -0.9578,\\n\",\n      \"          -0.8474,  0.8905, -0.0578,  0.1265, -0.8802, -0.5990,  0.9483,\\n\",\n      \"           0.1486,  0.8054,  0.5295,  0.9644,  0.9343, -0.5344, -0.9767,\\n\",\n      \"          -0.4396,  0.1733,  0.4361,  0.1193, -0.8925,  0.5645,  0.2105,\\n\",\n      \"          -0.2591, -0.0061,  0.9448, -0.4838,  0.5449, -0.2025, -0.1123,\\n\",\n      \"           0.5975, -0.7673,  0.8066,  0.4332, -0.1005,  0.7939, -0.9577,\\n\",\n      \"          -0.7584, -0.0506, -0.9229,  0.0987, -0.3074, -0.4775,  0.7187,\\n\",\n      \"           0.9429, -0.7517,  0.8196, -0.8877, -0.8825, -0.4664,  0.5667,\\n\",\n      \"          -0.9790,  0.8117,  0.9049,  0.8489, -0.9360,  0.6337,  0.9125,\\n\",\n      \"          -0.9336]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([4, 4])\\n\",\n      \"dec_state: tensor([[[ 0.0796,  0.9682, -0.7527,  0.8133,  0.2772,  0.4978, -0.9438,\\n\",\n      \"           0.6606,  0.2549, -0.9438, -0.8334, -0.9528, -0.5584,  0.9678,\\n\",\n      \"          -0.1009,  0.0722,  0.6236,  0.5182, -0.5272,  0.8076,  0.7732,\\n\",\n      \"          -0.6861,  0.3266,  0.9141,  0.8528, -0.9582,  0.1103, -0.2931,\\n\",\n      \"          -0.9479, -0.7433, -0.9283,  0.7458, -0.5844,  0.5738, -0.6793,\\n\",\n      \"          -0.2414,  0.7205, -0.0237, -0.5301,  0.6319, -0.8319,  0.5190,\\n\",\n      \"           0.4824,  0.4247, -0.8986,  0.1010, -0.4749,  0.8812,  0.0745,\\n\",\n      \"           0.9867,  0.8860,  0.9199, -0.8845,  0.0510, -0.9061,  0.1090,\\n\",\n      \"           0.3053,  0.4337, -0.1061,  0.1150, -0.9923,  0.9623,  0.2676,\\n\",\n      \"           0.0627],\\n\",\n      \"         [ 0.1687,  0.8924, -0.4456,  0.7989,  0.3635,  0.1462, -0.5898,\\n\",\n      \"           0.7363,  0.1451, -0.8782, -0.8000, -0.9470, -0.4383,  0.8810,\\n\",\n      \"          -0.1840,  0.0953,  0.7361,  0.6337, -0.6791,  0.6116,  0.4443,\\n\",\n      \"          -0.3215,  0.1995,  0.8931,  0.6602, -0.9392,  0.2457, -0.2745,\\n\",\n      \"          -0.8256, -0.7514, -0.8865,  0.7326, -0.4395,  0.5348, -0.2743,\\n\",\n      \"           0.1293,  0.5859, -0.0478, -0.4765,  0.5430, -0.3438, -0.0167,\\n\",\n      \"           0.1033,  0.4039, -0.7716, -0.3153, -0.0248,  0.8970,  0.2419,\\n\",\n      \"           0.9496,  0.3994,  0.7277, -0.8746, -0.2984, -0.9034,  0.2863,\\n\",\n      \"           0.1145,  0.0483, -0.2792,  0.2694, -0.9456,  0.9549, -0.1658,\\n\",\n      \"           0.1617]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2643,  0.4564, -0.2593,  0.0541, -0.0949, -0.0707, -0.4059,\\n\",\n      \"           0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895,  0.3679,\\n\",\n      \"           0.1058, -0.4368,  0.4438,  0.3126,  0.1805, -0.6815, -0.6550,\\n\",\n      \"          -0.1472,  0.1178, -0.0509,  0.2158, -0.0236,  0.2572,  0.3204,\\n\",\n      \"          -0.1213, -0.1323,  0.2779, -0.1086,  0.0890, -0.4043, -0.2370,\\n\",\n      \"          -0.0740, -0.2013,  0.2110, -0.0625, -0.3476,  0.1305,  0.7000,\\n\",\n      \"          -0.1356,  0.0533, -0.6974, -0.4555,  0.4434, -0.1698,  0.0568,\\n\",\n      \"           0.4341,  0.1590, -0.1960, -0.4161, -0.5756, -0.4891,  0.2558,\\n\",\n      \"          -0.4767,  0.1833,  0.0714, -0.2048, -0.0357,  0.1653,  0.3216,\\n\",\n      \"          -0.4956],\\n\",\n      \"         [-0.3986,  0.1077, -0.1079,  0.4751,  0.2374,  0.0763,  0.0478,\\n\",\n      \"          -0.6380,  0.3585, -0.1490,  0.4389, -0.1711,  0.0351,  0.3032,\\n\",\n      \"           0.1507,  0.5181,  0.2568,  0.0916,  0.2709,  0.1861, -0.5871,\\n\",\n      \"          -0.1010,  0.2366, -0.1209, -0.5268,  0.0956, -0.4196, -0.2877,\\n\",\n      \"          -0.0054, -0.0399,  0.1611, -0.1701,  0.1080,  0.1541, -0.1976,\\n\",\n      \"          -0.0249, -0.6249,  0.3139,  0.5532,  0.1371, -0.2370, -0.5140,\\n\",\n      \"          -0.1603, -0.1353, -0.1096,  0.3353, -0.2182, -0.1288,  0.1954,\\n\",\n      \"           0.0314,  0.2198,  0.4391,  0.2029, -0.5140, -0.3188,  0.2105,\\n\",\n      \"          -0.5609,  0.2901,  0.1407,  0.1191, -0.4545,  0.1350,  0.0812,\\n\",\n      \"          -0.3816]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3048,  0.2614, -0.6713,  0.8613, -0.2512, -0.4346, -0.2634,\\n\",\n      \"           0.6591,  0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\\n\",\n      \"           0.4387,  0.2709,  0.5605,  0.4969,  0.5650, -0.6975, -0.7697,\\n\",\n      \"          -0.0075,  0.3626,  0.7565,  0.4823, -0.3389,  0.3312,  0.1820,\\n\",\n      \"          -0.1854, -0.2484,  0.3879, -0.0510,  0.7113,  0.0262, -0.2328,\\n\",\n      \"           0.0428, -0.6167,  0.9327,  0.3825,  0.4738,  0.0045,  0.6714,\\n\",\n      \"          -0.2780, -0.3274, -0.5227, -0.5403,  0.3292, -0.7134,  0.2665,\\n\",\n      \"           0.7792, -0.1701,  0.1585, -0.1340, -0.7831, -0.5599,  0.0010,\\n\",\n      \"          -0.4418,  0.0466, -0.2996,  0.5337, -0.7619, -0.6692,  0.2525,\\n\",\n      \"          -0.4926],\\n\",\n      \"         [-0.5449,  0.2779,  0.6267, -0.0066, -0.3411, -0.4215,  0.1982,\\n\",\n      \"          -0.4431,  0.6065, -0.3576,  0.1459,  0.1405, -0.3065,  0.3954,\\n\",\n      \"          -0.0139,  0.5789,  0.3313,  0.1777, -0.2895, -0.0424, -0.7719,\\n\",\n      \"          -0.1613,  0.3021, -0.0137, -0.1981, -0.1518,  0.0221, -0.0543,\\n\",\n      \"           0.4869, -0.0376,  0.6679, -0.2354,  0.1546,  0.4744, -0.0194,\\n\",\n      \"           0.2567, -0.0445,  0.2706,  0.2981,  0.0486,  0.3991, -0.7287,\\n\",\n      \"          -0.2562, -0.6029, -0.2513,  0.2143,  0.0921,  0.0526,  0.3929,\\n\",\n      \"          -0.1046, -0.1321,  0.5571, -0.0703, -0.4639, -0.5332,  0.7051,\\n\",\n      \"          -0.4131,  0.4652,  0.3511, -0.1030, -0.6763, -0.2386,  0.4719,\\n\",\n      \"          -0.1979]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3278, -0.2888, -0.0956,  0.7314, -0.2450, -0.5831, -0.0397,\\n\",\n      \"           0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\\n\",\n      \"           0.3975,  0.4884,  0.6930,  0.1510,  0.5433, -0.6360, -0.6441,\\n\",\n      \"           0.1115,  0.1613,  0.7858,  0.4847, -0.5446,  0.7429,  0.2655,\\n\",\n      \"          -0.0490, -0.1175,  0.0364,  0.1196,  0.5943,  0.2333, -0.5645,\\n\",\n      \"          -0.3604, -0.6270,  0.6515, -0.0406,  0.2102, -0.1837,  0.2619,\\n\",\n      \"          -0.4548,  0.1320, -0.4382, -0.2788,  0.2147, -0.5275,  0.1388,\\n\",\n      \"           0.4512,  0.1896, -0.0293, -0.1224, -0.7348, -0.3286,  0.3086,\\n\",\n      \"          -0.3752,  0.0572, -0.4160,  0.1187, -0.5770, -0.6388,  0.1324,\\n\",\n      \"          -0.5198],\\n\",\n      \"         [-0.5405,  0.0124,  0.3095,  0.0026,  0.3472, -0.0643, -0.2726,\\n\",\n      \"          -0.1709,  0.3799, -0.5057,  0.6329, -0.0685,  0.4347,  0.3791,\\n\",\n      \"           0.4154,  0.4034,  0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\\n\",\n      \"          -0.2282, -0.2110,  0.0466, -0.1903, -0.2866,  0.2155,  0.1366,\\n\",\n      \"           0.3826, -0.0260,  0.4968, -0.0116, -0.4877,  0.4981, -0.1737,\\n\",\n      \"          -0.4543, -0.0929,  0.1796,  0.0635,  0.0320, -0.3178, -0.5188,\\n\",\n      \"           0.2668, -0.2357, -0.0332, -0.5571, -0.2157,  0.1033,  0.2126,\\n\",\n      \"          -0.4119,  0.1621,  0.1569,  0.3292, -0.1883, -0.5136,  0.4836,\\n\",\n      \"           0.1629,  0.4135,  0.0817,  0.0296, -0.5296, -0.3845,  0.2176,\\n\",\n      \"          -0.4257]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2165,  0.6643,  0.2134,  0.4667, -0.3658, -0.5918, -0.5354,\\n\",\n      \"           0.5185,  0.5647,  0.1890,  0.1068, -0.8998, -0.5254, -0.2879,\\n\",\n      \"           0.3621,  0.6158,  0.8000, -0.0707,  0.8353, -0.7904, -0.4499,\\n\",\n      \"           0.1003,  0.0254,  0.7849,  0.6487, -0.4766,  0.6924,  0.2688,\\n\",\n      \"          -0.0224, -0.1641,  0.5357, -0.5526,  0.3533,  0.4206, -0.2618,\\n\",\n      \"          -0.0252, -0.4151,  0.7307, -0.2902,  0.0149, -0.1347,  0.4171,\\n\",\n      \"          -0.3612,  0.2912, -0.5252, -0.2134,  0.2129, -0.0995,  0.5832,\\n\",\n      \"           0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193,  0.2697,\\n\",\n      \"          -0.7581,  0.1343, -0.4379,  0.8081, -0.7057, -0.7356, -0.2213,\\n\",\n      \"          -0.5394],\\n\",\n      \"         [-0.1251,  0.1434,  0.3819,  0.0779,  0.3546,  0.1264,  0.1404,\\n\",\n      \"          -0.1140,  0.3947, -0.4812,  0.6593, -0.0573,  0.3087,  0.0349,\\n\",\n      \"           0.4715,  0.0450,  0.1793, -0.4911, -0.6166,  0.0762, -0.3557,\\n\",\n      \"          -0.2982, -0.1911,  0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\\n\",\n      \"           0.1761, -0.1146,  0.1655,  0.1192, -0.0237,  0.4926,  0.1029,\\n\",\n      \"          -0.2940, -0.1968,  0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\\n\",\n      \"           0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\\n\",\n      \"          -0.1560,  0.3103, -0.2179,  0.0748,  0.2780,  0.0437,  0.1274,\\n\",\n      \"           0.2246,  0.3854, -0.3852,  0.4846,  0.0769,  0.1051, -0.1136,\\n\",\n      \"          -0.2083]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0053,  0.5089,  0.3900,  0.7339, -0.6606, -0.5602, -0.6067,\\n\",\n      \"          -0.7727,  0.6455,  0.0913,  0.2039, -0.9017, -0.6111,  0.2212,\\n\",\n      \"           0.2289,  0.8321,  0.7837,  0.6047,  0.8988, -0.8065, -0.8648,\\n\",\n      \"          -0.1608,  0.2545,  0.7868,  0.4106, -0.9213,  0.8644,  0.2484,\\n\",\n      \"          -0.4612, -0.1559,  0.8484, -0.3135,  0.6978,  0.2730, -0.6825,\\n\",\n      \"           0.1366, -0.8899,  0.8244,  0.3284,  0.0805, -0.2395, -0.6767,\\n\",\n      \"          -0.8209,  0.6211, -0.3285, -0.0912, -0.0389,  0.1991,  0.8258,\\n\",\n      \"           0.9217, -0.2170,  0.5347, -0.4071, -0.8464, -0.5593,  0.6256,\\n\",\n      \"          -0.9049,  0.4595,  0.9074,  0.7990, -0.5945, -0.3470,  0.8762,\\n\",\n      \"          -0.9404],\\n\",\n      \"         [ 0.0394,  0.7293,  0.1861,  0.0881,  0.0371, -0.1677, -0.4362,\\n\",\n      \"           0.1219,  0.6134, -0.0385,  0.6175, -0.7031, -0.0738, -0.1346,\\n\",\n      \"           0.5209,  0.4806,  0.6178, -0.3499,  0.3256, -0.4866, -0.1101,\\n\",\n      \"          -0.2557, -0.1716,  0.2299,  0.3704, -0.2004,  0.0048,  0.0728,\\n\",\n      \"           0.1695, -0.1895,  0.5252, -0.4673, -0.0011,  0.5633,  0.0540,\\n\",\n      \"          -0.0333, -0.0936,  0.6006, -0.4610, -0.1716, -0.3625,  0.0738,\\n\",\n      \"           0.2130, -0.0040, -0.1681, -0.0567,  0.0414, -0.0399,  0.3204,\\n\",\n      \"           0.1606,  0.0895, -0.4445, -0.1933, -0.5708,  0.0026,  0.1022,\\n\",\n      \"          -0.1998,  0.2881, -0.4914,  0.8336, -0.2190, -0.4052, -0.4005,\\n\",\n      \"          -0.2036]],\\n\",\n      \"\\n\",\n      \"        [[-0.4344,  0.9695,  0.3881,  0.5407, -0.5645, -0.7304, -0.9651,\\n\",\n      \"          -0.8371,  0.9021,  0.1183,  0.0341, -0.9520, -0.7408,  0.9443,\\n\",\n      \"           0.1162,  0.8202,  0.6560,  0.9675,  0.9835, -0.7582, -0.9880,\\n\",\n      \"          -0.2225,  0.2812,  0.7177,  0.2373, -0.9129,  0.7111,  0.3292,\\n\",\n      \"          -0.3043,  0.0067,  0.9513, -0.5549,  0.5781, -0.2277, -0.1309,\\n\",\n      \"           0.6114, -0.8130,  0.8737,  0.4949,  0.0302,  0.8304, -0.9538,\\n\",\n      \"          -0.8416,  0.0377, -0.9450, -0.0728, -0.1449, -0.4713,  0.8478,\\n\",\n      \"           0.9788, -0.7699,  0.8377, -0.9320, -0.9075, -0.5798,  0.6564,\\n\",\n      \"          -0.9924,  0.8009,  0.9216,  0.8556, -0.9676,  0.6107,  0.9332,\\n\",\n      \"          -0.9650],\\n\",\n      \"         [-0.1282,  0.6072,  0.2948,  0.5892, -0.5330, -0.2869, -0.5384,\\n\",\n      \"          -0.7949,  0.6626, -0.0911,  0.4917, -0.7266, -0.3492,  0.2605,\\n\",\n      \"           0.2942,  0.8206,  0.6406,  0.5368,  0.5708, -0.5419, -0.7469,\\n\",\n      \"          -0.3980,  0.1402,  0.3024,  0.2058, -0.9050,  0.7186,  0.1156,\\n\",\n      \"          -0.3964, -0.1969,  0.8352, -0.2601,  0.6729,  0.3602, -0.5379,\\n\",\n      \"           0.1174, -0.8353,  0.7244,  0.2288, -0.0560, -0.4192, -0.7514,\\n\",\n      \"          -0.6763,  0.4741, -0.0413,  0.0924, -0.2348,  0.1453,  0.6766,\\n\",\n      \"           0.7962, -0.1368,  0.4839, -0.2126, -0.7452, -0.4184,  0.5247,\\n\",\n      \"          -0.6722,  0.5168,  0.8884,  0.8025, -0.1871, -0.1701,  0.8400,\\n\",\n      \"          -0.8880]],\\n\",\n      \"\\n\",\n      \"        [[-0.6811,  0.9904,  0.3873,  0.3274, -0.4650, -0.6639, -0.9928,\\n\",\n      \"          -0.8714,  0.9532,  0.1302, -0.0052, -0.9700, -0.8229,  0.9916,\\n\",\n      \"           0.0321,  0.8120,  0.6073,  0.9809,  0.9954, -0.7496, -0.9976,\\n\",\n      \"          -0.2798,  0.3025,  0.6563,  0.1430, -0.9052,  0.6155,  0.3971,\\n\",\n      \"          -0.2514,  0.0549,  0.9648, -0.7167,  0.4741, -0.3832,  0.2246,\\n\",\n      \"           0.7622, -0.7477,  0.9110,  0.5800, -0.0079,  0.9455, -0.9695,\\n\",\n      \"          -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456,  0.8637,\\n\",\n      \"           0.9926, -0.8969,  0.9267, -0.9887, -0.9147, -0.5940,  0.6758,\\n\",\n      \"          -0.9929,  0.9099,  0.9321,  0.9038, -0.9955,  0.7793,  0.9528,\\n\",\n      \"          -0.9790],\\n\",\n      \"         [-0.5124,  0.9718,  0.2896,  0.4127, -0.4482, -0.6861, -0.9578,\\n\",\n      \"          -0.8474,  0.8905, -0.0578,  0.1265, -0.8802, -0.5990,  0.9483,\\n\",\n      \"           0.1486,  0.8054,  0.5295,  0.9644,  0.9343, -0.5344, -0.9767,\\n\",\n      \"          -0.4396,  0.1733,  0.4361,  0.1193, -0.8925,  0.5645,  0.2105,\\n\",\n      \"          -0.2591, -0.0061,  0.9448, -0.4838,  0.5449, -0.2025, -0.1123,\\n\",\n      \"           0.5975, -0.7673,  0.8066,  0.4332, -0.1005,  0.7939, -0.9577,\\n\",\n      \"          -0.7584, -0.0506, -0.9229,  0.0987, -0.3074, -0.4775,  0.7187,\\n\",\n      \"           0.9429, -0.7517,  0.8196, -0.8877, -0.8825, -0.4664,  0.5667,\\n\",\n      \"          -0.9790,  0.8117,  0.9049,  0.8489, -0.9360,  0.6337,  0.9125,\\n\",\n      \"          -0.9336]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([20, 30])\\n\",\n      \"dec_state: tensor([[[ 0.4745,  0.9762, -0.8598,  0.8400,  0.6505,  0.6636, -0.7727,\\n\",\n      \"           0.2102, -0.5082, -0.4561, -0.0538, -0.9111, -0.6578,  0.9547,\\n\",\n      \"          -0.2309, -0.3372,  0.2878, -0.2481, -0.7266,  0.7281,  0.9745,\\n\",\n      \"          -0.7803,  0.3708,  0.9464,  0.9260, -0.9284, -0.4815, -0.7679,\\n\",\n      \"          -0.8446, -0.7406, -0.8924,  0.7532,  0.4614,  0.5389, -0.7065,\\n\",\n      \"          -0.7184,  0.3893, -0.2018, -0.2994,  0.6826, -0.8677,  0.7264,\\n\",\n      \"           0.7340,  0.3544, -0.7882,  0.5901, -0.7388,  0.8485,  0.0589,\\n\",\n      \"           0.9639,  0.7774,  0.9588, -0.4676, -0.5464, -0.8136, -0.2098,\\n\",\n      \"           0.5777,  0.8557, -0.0411, -0.1038, -0.9810,  0.9668,  0.2124,\\n\",\n      \"          -0.4334],\\n\",\n      \"         [ 0.3633,  0.9521, -0.5004,  0.7246,  0.4697,  0.5263, -0.7805,\\n\",\n      \"          -0.1471,  0.3911, -0.3922, -0.9429, -0.8670,  0.3088,  0.9616,\\n\",\n      \"          -0.2001, -0.2349,  0.7130,  0.2369, -0.0729,  0.6765,  0.7163,\\n\",\n      \"          -0.2702, -0.4376,  0.9381,  0.6016, -0.9418,  0.3252, -0.5904,\\n\",\n      \"          -0.2976, -0.2988, -0.4439,  0.7373,  0.6474,  0.5106, -0.1087,\\n\",\n      \"          -0.0405,  0.7924, -0.1458, -0.4020,  0.5518, -0.4919,  0.1441,\\n\",\n      \"           0.6316, -0.2103, -0.6101,  0.3307,  0.2009,  0.6321, -0.1175,\\n\",\n      \"           0.9239, -0.1104,  0.8300, -0.3840, -0.6672, -0.0366, -0.0285,\\n\",\n      \"           0.5695,  0.5802, -0.1769, -0.3600, -0.9563,  0.9571, -0.2749,\\n\",\n      \"          -0.6171]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2643,  0.4564, -0.2593,  0.0541, -0.0949, -0.0707, -0.4059,\\n\",\n      \"           0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895,  0.3679,\\n\",\n      \"           0.1058, -0.4368,  0.4438,  0.3126,  0.1805, -0.6815, -0.6550,\\n\",\n      \"          -0.1472,  0.1178, -0.0509,  0.2158, -0.0236,  0.2572,  0.3204,\\n\",\n      \"          -0.1213, -0.1323,  0.2779, -0.1086,  0.0890, -0.4043, -0.2370,\\n\",\n      \"          -0.0740, -0.2013,  0.2110, -0.0625, -0.3476,  0.1305,  0.7000,\\n\",\n      \"          -0.1356,  0.0533, -0.6974, -0.4555,  0.4434, -0.1698,  0.0568,\\n\",\n      \"           0.4341,  0.1590, -0.1960, -0.4161, -0.5756, -0.4891,  0.2558,\\n\",\n      \"          -0.4767,  0.1833,  0.0714, -0.2048, -0.0357,  0.1653,  0.3216,\\n\",\n      \"          -0.4956],\\n\",\n      \"         [-0.3986,  0.1077, -0.1079,  0.4751,  0.2374,  0.0763,  0.0478,\\n\",\n      \"          -0.6380,  0.3585, -0.1490,  0.4389, -0.1711,  0.0351,  0.3032,\\n\",\n      \"           0.1507,  0.5181,  0.2568,  0.0916,  0.2709,  0.1861, -0.5871,\\n\",\n      \"          -0.1010,  0.2366, -0.1209, -0.5268,  0.0956, -0.4196, -0.2877,\\n\",\n      \"          -0.0054, -0.0399,  0.1611, -0.1701,  0.1080,  0.1541, -0.1976,\\n\",\n      \"          -0.0249, -0.6249,  0.3139,  0.5532,  0.1371, -0.2370, -0.5140,\\n\",\n      \"          -0.1603, -0.1353, -0.1096,  0.3353, -0.2182, -0.1288,  0.1954,\\n\",\n      \"           0.0314,  0.2198,  0.4391,  0.2029, -0.5140, -0.3188,  0.2105,\\n\",\n      \"          -0.5609,  0.2901,  0.1407,  0.1191, -0.4545,  0.1350,  0.0812,\\n\",\n      \"          -0.3816]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3048,  0.2614, -0.6713,  0.8613, -0.2512, -0.4346, -0.2634,\\n\",\n      \"           0.6591,  0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\\n\",\n      \"           0.4387,  0.2709,  0.5605,  0.4969,  0.5650, -0.6975, -0.7697,\\n\",\n      \"          -0.0075,  0.3626,  0.7565,  0.4823, -0.3389,  0.3312,  0.1820,\\n\",\n      \"          -0.1854, -0.2484,  0.3879, -0.0510,  0.7113,  0.0262, -0.2328,\\n\",\n      \"           0.0428, -0.6167,  0.9327,  0.3825,  0.4738,  0.0045,  0.6714,\\n\",\n      \"          -0.2780, -0.3274, -0.5227, -0.5403,  0.3292, -0.7134,  0.2665,\\n\",\n      \"           0.7792, -0.1701,  0.1585, -0.1340, -0.7831, -0.5599,  0.0010,\\n\",\n      \"          -0.4418,  0.0466, -0.2996,  0.5337, -0.7619, -0.6692,  0.2525,\\n\",\n      \"          -0.4926],\\n\",\n      \"         [-0.5449,  0.2779,  0.6267, -0.0066, -0.3411, -0.4215,  0.1982,\\n\",\n      \"          -0.4431,  0.6065, -0.3576,  0.1459,  0.1405, -0.3065,  0.3954,\\n\",\n      \"          -0.0139,  0.5789,  0.3313,  0.1777, -0.2895, -0.0424, -0.7719,\\n\",\n      \"          -0.1613,  0.3021, -0.0137, -0.1981, -0.1518,  0.0221, -0.0543,\\n\",\n      \"           0.4869, -0.0376,  0.6679, -0.2354,  0.1546,  0.4744, -0.0194,\\n\",\n      \"           0.2567, -0.0445,  0.2706,  0.2981,  0.0486,  0.3991, -0.7287,\\n\",\n      \"          -0.2562, -0.6029, -0.2513,  0.2143,  0.0921,  0.0526,  0.3929,\\n\",\n      \"          -0.1046, -0.1321,  0.5571, -0.0703, -0.4639, -0.5332,  0.7051,\\n\",\n      \"          -0.4131,  0.4652,  0.3511, -0.1030, -0.6763, -0.2386,  0.4719,\\n\",\n      \"          -0.1979]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3278, -0.2888, -0.0956,  0.7314, -0.2450, -0.5831, -0.0397,\\n\",\n      \"           0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\\n\",\n      \"           0.3975,  0.4884,  0.6930,  0.1510,  0.5433, -0.6360, -0.6441,\\n\",\n      \"           0.1115,  0.1613,  0.7858,  0.4847, -0.5446,  0.7429,  0.2655,\\n\",\n      \"          -0.0490, -0.1175,  0.0364,  0.1196,  0.5943,  0.2333, -0.5645,\\n\",\n      \"          -0.3604, -0.6270,  0.6515, -0.0406,  0.2102, -0.1837,  0.2619,\\n\",\n      \"          -0.4548,  0.1320, -0.4382, -0.2788,  0.2147, -0.5275,  0.1388,\\n\",\n      \"           0.4512,  0.1896, -0.0293, -0.1224, -0.7348, -0.3286,  0.3086,\\n\",\n      \"          -0.3752,  0.0572, -0.4160,  0.1187, -0.5770, -0.6388,  0.1324,\\n\",\n      \"          -0.5198],\\n\",\n      \"         [-0.5405,  0.0124,  0.3095,  0.0026,  0.3472, -0.0643, -0.2726,\\n\",\n      \"          -0.1709,  0.3799, -0.5057,  0.6329, -0.0685,  0.4347,  0.3791,\\n\",\n      \"           0.4154,  0.4034,  0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\\n\",\n      \"          -0.2282, -0.2110,  0.0466, -0.1903, -0.2866,  0.2155,  0.1366,\\n\",\n      \"           0.3826, -0.0260,  0.4968, -0.0116, -0.4877,  0.4981, -0.1737,\\n\",\n      \"          -0.4543, -0.0929,  0.1796,  0.0635,  0.0320, -0.3178, -0.5188,\\n\",\n      \"           0.2668, -0.2357, -0.0332, -0.5571, -0.2157,  0.1033,  0.2126,\\n\",\n      \"          -0.4119,  0.1621,  0.1569,  0.3292, -0.1883, -0.5136,  0.4836,\\n\",\n      \"           0.1629,  0.4135,  0.0817,  0.0296, -0.5296, -0.3845,  0.2176,\\n\",\n      \"          -0.4257]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2165,  0.6643,  0.2134,  0.4667, -0.3658, -0.5918, -0.5354,\\n\",\n      \"           0.5185,  0.5647,  0.1890,  0.1068, -0.8998, -0.5254, -0.2879,\\n\",\n      \"           0.3621,  0.6158,  0.8000, -0.0707,  0.8353, -0.7904, -0.4499,\\n\",\n      \"           0.1003,  0.0254,  0.7849,  0.6487, -0.4766,  0.6924,  0.2688,\\n\",\n      \"          -0.0224, -0.1641,  0.5357, -0.5526,  0.3533,  0.4206, -0.2618,\\n\",\n      \"          -0.0252, -0.4151,  0.7307, -0.2902,  0.0149, -0.1347,  0.4171,\\n\",\n      \"          -0.3612,  0.2912, -0.5252, -0.2134,  0.2129, -0.0995,  0.5832,\\n\",\n      \"           0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193,  0.2697,\\n\",\n      \"          -0.7581,  0.1343, -0.4379,  0.8081, -0.7057, -0.7356, -0.2213,\\n\",\n      \"          -0.5394],\\n\",\n      \"         [-0.1251,  0.1434,  0.3819,  0.0779,  0.3546,  0.1264,  0.1404,\\n\",\n      \"          -0.1140,  0.3947, -0.4812,  0.6593, -0.0573,  0.3087,  0.0349,\\n\",\n      \"           0.4715,  0.0450,  0.1793, -0.4911, -0.6166,  0.0762, -0.3557,\\n\",\n      \"          -0.2982, -0.1911,  0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\\n\",\n      \"           0.1761, -0.1146,  0.1655,  0.1192, -0.0237,  0.4926,  0.1029,\\n\",\n      \"          -0.2940, -0.1968,  0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\\n\",\n      \"           0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\\n\",\n      \"          -0.1560,  0.3103, -0.2179,  0.0748,  0.2780,  0.0437,  0.1274,\\n\",\n      \"           0.2246,  0.3854, -0.3852,  0.4846,  0.0769,  0.1051, -0.1136,\\n\",\n      \"          -0.2083]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0053,  0.5089,  0.3900,  0.7339, -0.6606, -0.5602, -0.6067,\\n\",\n      \"          -0.7727,  0.6455,  0.0913,  0.2039, -0.9017, -0.6111,  0.2212,\\n\",\n      \"           0.2289,  0.8321,  0.7837,  0.6047,  0.8988, -0.8065, -0.8648,\\n\",\n      \"          -0.1608,  0.2545,  0.7868,  0.4106, -0.9213,  0.8644,  0.2484,\\n\",\n      \"          -0.4612, -0.1559,  0.8484, -0.3135,  0.6978,  0.2730, -0.6825,\\n\",\n      \"           0.1366, -0.8899,  0.8244,  0.3284,  0.0805, -0.2395, -0.6767,\\n\",\n      \"          -0.8209,  0.6211, -0.3285, -0.0912, -0.0389,  0.1991,  0.8258,\\n\",\n      \"           0.9217, -0.2170,  0.5347, -0.4071, -0.8464, -0.5593,  0.6256,\\n\",\n      \"          -0.9049,  0.4595,  0.9074,  0.7990, -0.5945, -0.3470,  0.8762,\\n\",\n      \"          -0.9404],\\n\",\n      \"         [ 0.0394,  0.7293,  0.1861,  0.0881,  0.0371, -0.1677, -0.4362,\\n\",\n      \"           0.1219,  0.6134, -0.0385,  0.6175, -0.7031, -0.0738, -0.1346,\\n\",\n      \"           0.5209,  0.4806,  0.6178, -0.3499,  0.3256, -0.4866, -0.1101,\\n\",\n      \"          -0.2557, -0.1716,  0.2299,  0.3704, -0.2004,  0.0048,  0.0728,\\n\",\n      \"           0.1695, -0.1895,  0.5252, -0.4673, -0.0011,  0.5633,  0.0540,\\n\",\n      \"          -0.0333, -0.0936,  0.6006, -0.4610, -0.1716, -0.3625,  0.0738,\\n\",\n      \"           0.2130, -0.0040, -0.1681, -0.0567,  0.0414, -0.0399,  0.3204,\\n\",\n      \"           0.1606,  0.0895, -0.4445, -0.1933, -0.5708,  0.0026,  0.1022,\\n\",\n      \"          -0.1998,  0.2881, -0.4914,  0.8336, -0.2190, -0.4052, -0.4005,\\n\",\n      \"          -0.2036]],\\n\",\n      \"\\n\",\n      \"        [[-0.4344,  0.9695,  0.3881,  0.5407, -0.5645, -0.7304, -0.9651,\\n\",\n      \"          -0.8371,  0.9021,  0.1183,  0.0341, -0.9520, -0.7408,  0.9443,\\n\",\n      \"           0.1162,  0.8202,  0.6560,  0.9675,  0.9835, -0.7582, -0.9880,\\n\",\n      \"          -0.2225,  0.2812,  0.7177,  0.2373, -0.9129,  0.7111,  0.3292,\\n\",\n      \"          -0.3043,  0.0067,  0.9513, -0.5549,  0.5781, -0.2277, -0.1309,\\n\",\n      \"           0.6114, -0.8130,  0.8737,  0.4949,  0.0302,  0.8304, -0.9538,\\n\",\n      \"          -0.8416,  0.0377, -0.9450, -0.0728, -0.1449, -0.4713,  0.8478,\\n\",\n      \"           0.9788, -0.7699,  0.8377, -0.9320, -0.9075, -0.5798,  0.6564,\\n\",\n      \"          -0.9924,  0.8009,  0.9216,  0.8556, -0.9676,  0.6107,  0.9332,\\n\",\n      \"          -0.9650],\\n\",\n      \"         [-0.1282,  0.6072,  0.2948,  0.5892, -0.5330, -0.2869, -0.5384,\\n\",\n      \"          -0.7949,  0.6626, -0.0911,  0.4917, -0.7266, -0.3492,  0.2605,\\n\",\n      \"           0.2942,  0.8206,  0.6406,  0.5368,  0.5708, -0.5419, -0.7469,\\n\",\n      \"          -0.3980,  0.1402,  0.3024,  0.2058, -0.9050,  0.7186,  0.1156,\\n\",\n      \"          -0.3964, -0.1969,  0.8352, -0.2601,  0.6729,  0.3602, -0.5379,\\n\",\n      \"           0.1174, -0.8353,  0.7244,  0.2288, -0.0560, -0.4192, -0.7514,\\n\",\n      \"          -0.6763,  0.4741, -0.0413,  0.0924, -0.2348,  0.1453,  0.6766,\\n\",\n      \"           0.7962, -0.1368,  0.4839, -0.2126, -0.7452, -0.4184,  0.5247,\\n\",\n      \"          -0.6722,  0.5168,  0.8884,  0.8025, -0.1871, -0.1701,  0.8400,\\n\",\n      \"          -0.8880]],\\n\",\n      \"\\n\",\n      \"        [[-0.6811,  0.9904,  0.3873,  0.3274, -0.4650, -0.6639, -0.9928,\\n\",\n      \"          -0.8714,  0.9532,  0.1302, -0.0052, -0.9700, -0.8229,  0.9916,\\n\",\n      \"           0.0321,  0.8120,  0.6073,  0.9809,  0.9954, -0.7496, -0.9976,\\n\",\n      \"          -0.2798,  0.3025,  0.6563,  0.1430, -0.9052,  0.6155,  0.3971,\\n\",\n      \"          -0.2514,  0.0549,  0.9648, -0.7167,  0.4741, -0.3832,  0.2246,\\n\",\n      \"           0.7622, -0.7477,  0.9110,  0.5800, -0.0079,  0.9455, -0.9695,\\n\",\n      \"          -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456,  0.8637,\\n\",\n      \"           0.9926, -0.8969,  0.9267, -0.9887, -0.9147, -0.5940,  0.6758,\\n\",\n      \"          -0.9929,  0.9099,  0.9321,  0.9038, -0.9955,  0.7793,  0.9528,\\n\",\n      \"          -0.9790],\\n\",\n      \"         [-0.5124,  0.9718,  0.2896,  0.4127, -0.4482, -0.6861, -0.9578,\\n\",\n      \"          -0.8474,  0.8905, -0.0578,  0.1265, -0.8802, -0.5990,  0.9483,\\n\",\n      \"           0.1486,  0.8054,  0.5295,  0.9644,  0.9343, -0.5344, -0.9767,\\n\",\n      \"          -0.4396,  0.1733,  0.4361,  0.1193, -0.8925,  0.5645,  0.2105,\\n\",\n      \"          -0.2591, -0.0061,  0.9448, -0.4838,  0.5449, -0.2025, -0.1123,\\n\",\n      \"           0.5975, -0.7673,  0.8066,  0.4332, -0.1005,  0.7939, -0.9577,\\n\",\n      \"          -0.7584, -0.0506, -0.9229,  0.0987, -0.3074, -0.4775,  0.7187,\\n\",\n      \"           0.9429, -0.7517,  0.8196, -0.8877, -0.8825, -0.4664,  0.5667,\\n\",\n      \"          -0.9790,  0.8117,  0.9049,  0.8489, -0.9360,  0.6337,  0.9125,\\n\",\n      \"          -0.9336]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([ 3, 10])\\n\",\n      \"dec_state: tensor([[[ 0.9675,  0.9950, -0.9747,  0.8476,  0.6370,  0.7311, -0.8292,\\n\",\n      \"          -0.6075, -0.5237, -0.9787, -0.9234, -0.9562,  0.7290,  0.9848,\\n\",\n      \"          -0.9251,  0.2634,  0.9100, -0.4863, -0.9281,  0.8350,  0.9749,\\n\",\n      \"          -0.8100, -0.5942,  0.9447,  0.9911, -0.9574, -0.2966, -0.9715,\\n\",\n      \"           0.3229, -0.9199, -0.9485,  0.7993,  0.8781,  0.7897, -0.6803,\\n\",\n      \"          -0.9194,  0.7959, -0.8251,  0.8078,  0.9282, -0.9545,  0.8820,\\n\",\n      \"           0.8327, -0.7403, -0.8768,  0.9604, -0.7537,  0.8649, -0.0060,\\n\",\n      \"           0.9434, -0.6593,  0.9924, -0.0629, -0.7333,  0.7517, -0.3501,\\n\",\n      \"           0.8994,  0.9069, -0.5802, -0.4604, -0.9910,  0.9829,  0.1885,\\n\",\n      \"          -0.9428],\\n\",\n      \"         [ 0.4521,  0.9671, -0.3110,  0.8059,  0.5287,  0.5715, -0.7969,\\n\",\n      \"          -0.3119, -0.5655, -0.5520, -0.9124, -0.8175, -0.0574,  0.9427,\\n\",\n      \"          -0.1483, -0.3554,  0.7209,  0.0421,  0.4747,  0.6754,  0.7630,\\n\",\n      \"          -0.6651,  0.0765,  0.9462,  0.7016, -0.8410,  0.6747, -0.3824,\\n\",\n      \"          -0.8534, -0.1669, -0.7617,  0.7729, -0.0133,  0.5920, -0.8166,\\n\",\n      \"          -0.2365,  0.4625, -0.2046, -0.5206,  0.5503, -0.8044,  0.6519,\\n\",\n      \"           0.3966,  0.6324, -0.6258,  0.7918, -0.3238,  0.1636, -0.1141,\\n\",\n      \"           0.8460,  0.5613,  0.8064, -0.4614, -0.7809, -0.6873,  0.0832,\\n\",\n      \"           0.6001,  0.9496, -0.2755, -0.6704, -0.9783,  0.9698, -0.2972,\\n\",\n      \"           0.1391]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"enc_outputs: tensor([[[-0.2643,  0.4564, -0.2593,  0.0541, -0.0949, -0.0707, -0.4059,\\n\",\n      \"           0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895,  0.3679,\\n\",\n      \"           0.1058, -0.4368,  0.4438,  0.3126,  0.1805, -0.6815, -0.6550,\\n\",\n      \"          -0.1472,  0.1178, -0.0509,  0.2158, -0.0236,  0.2572,  0.3204,\\n\",\n      \"          -0.1213, -0.1323,  0.2779, -0.1086,  0.0890, -0.4043, -0.2370,\\n\",\n      \"          -0.0740, -0.2013,  0.2110, -0.0625, -0.3476,  0.1305,  0.7000,\\n\",\n      \"          -0.1356,  0.0533, -0.6974, -0.4555,  0.4434, -0.1698,  0.0568,\\n\",\n      \"           0.4341,  0.1590, -0.1960, -0.4161, -0.5756, -0.4891,  0.2558,\\n\",\n      \"          -0.4767,  0.1833,  0.0714, -0.2048, -0.0357,  0.1653,  0.3216,\\n\",\n      \"          -0.4956],\\n\",\n      \"         [-0.3986,  0.1077, -0.1079,  0.4751,  0.2374,  0.0763,  0.0478,\\n\",\n      \"          -0.6380,  0.3585, -0.1490,  0.4389, -0.1711,  0.0351,  0.3032,\\n\",\n      \"           0.1507,  0.5181,  0.2568,  0.0916,  0.2709,  0.1861, -0.5871,\\n\",\n      \"          -0.1010,  0.2366, -0.1209, -0.5268,  0.0956, -0.4196, -0.2877,\\n\",\n      \"          -0.0054, -0.0399,  0.1611, -0.1701,  0.1080,  0.1541, -0.1976,\\n\",\n      \"          -0.0249, -0.6249,  0.3139,  0.5532,  0.1371, -0.2370, -0.5140,\\n\",\n      \"          -0.1603, -0.1353, -0.1096,  0.3353, -0.2182, -0.1288,  0.1954,\\n\",\n      \"           0.0314,  0.2198,  0.4391,  0.2029, -0.5140, -0.3188,  0.2105,\\n\",\n      \"          -0.5609,  0.2901,  0.1407,  0.1191, -0.4545,  0.1350,  0.0812,\\n\",\n      \"          -0.3816]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3048,  0.2614, -0.6713,  0.8613, -0.2512, -0.4346, -0.2634,\\n\",\n      \"           0.6591,  0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\\n\",\n      \"           0.4387,  0.2709,  0.5605,  0.4969,  0.5650, -0.6975, -0.7697,\\n\",\n      \"          -0.0075,  0.3626,  0.7565,  0.4823, -0.3389,  0.3312,  0.1820,\\n\",\n      \"          -0.1854, -0.2484,  0.3879, -0.0510,  0.7113,  0.0262, -0.2328,\\n\",\n      \"           0.0428, -0.6167,  0.9327,  0.3825,  0.4738,  0.0045,  0.6714,\\n\",\n      \"          -0.2780, -0.3274, -0.5227, -0.5403,  0.3292, -0.7134,  0.2665,\\n\",\n      \"           0.7792, -0.1701,  0.1585, -0.1340, -0.7831, -0.5599,  0.0010,\\n\",\n      \"          -0.4418,  0.0466, -0.2996,  0.5337, -0.7619, -0.6692,  0.2525,\\n\",\n      \"          -0.4926],\\n\",\n      \"         [-0.5449,  0.2779,  0.6267, -0.0066, -0.3411, -0.4215,  0.1982,\\n\",\n      \"          -0.4431,  0.6065, -0.3576,  0.1459,  0.1405, -0.3065,  0.3954,\\n\",\n      \"          -0.0139,  0.5789,  0.3313,  0.1777, -0.2895, -0.0424, -0.7719,\\n\",\n      \"          -0.1613,  0.3021, -0.0137, -0.1981, -0.1518,  0.0221, -0.0543,\\n\",\n      \"           0.4869, -0.0376,  0.6679, -0.2354,  0.1546,  0.4744, -0.0194,\\n\",\n      \"           0.2567, -0.0445,  0.2706,  0.2981,  0.0486,  0.3991, -0.7287,\\n\",\n      \"          -0.2562, -0.6029, -0.2513,  0.2143,  0.0921,  0.0526,  0.3929,\\n\",\n      \"          -0.1046, -0.1321,  0.5571, -0.0703, -0.4639, -0.5332,  0.7051,\\n\",\n      \"          -0.4131,  0.4652,  0.3511, -0.1030, -0.6763, -0.2386,  0.4719,\\n\",\n      \"          -0.1979]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3278, -0.2888, -0.0956,  0.7314, -0.2450, -0.5831, -0.0397,\\n\",\n      \"           0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\\n\",\n      \"           0.3975,  0.4884,  0.6930,  0.1510,  0.5433, -0.6360, -0.6441,\\n\",\n      \"           0.1115,  0.1613,  0.7858,  0.4847, -0.5446,  0.7429,  0.2655,\\n\",\n      \"          -0.0490, -0.1175,  0.0364,  0.1196,  0.5943,  0.2333, -0.5645,\\n\",\n      \"          -0.3604, -0.6270,  0.6515, -0.0406,  0.2102, -0.1837,  0.2619,\\n\",\n      \"          -0.4548,  0.1320, -0.4382, -0.2788,  0.2147, -0.5275,  0.1388,\\n\",\n      \"           0.4512,  0.1896, -0.0293, -0.1224, -0.7348, -0.3286,  0.3086,\\n\",\n      \"          -0.3752,  0.0572, -0.4160,  0.1187, -0.5770, -0.6388,  0.1324,\\n\",\n      \"          -0.5198],\\n\",\n      \"         [-0.5405,  0.0124,  0.3095,  0.0026,  0.3472, -0.0643, -0.2726,\\n\",\n      \"          -0.1709,  0.3799, -0.5057,  0.6329, -0.0685,  0.4347,  0.3791,\\n\",\n      \"           0.4154,  0.4034,  0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\\n\",\n      \"          -0.2282, -0.2110,  0.0466, -0.1903, -0.2866,  0.2155,  0.1366,\\n\",\n      \"           0.3826, -0.0260,  0.4968, -0.0116, -0.4877,  0.4981, -0.1737,\\n\",\n      \"          -0.4543, -0.0929,  0.1796,  0.0635,  0.0320, -0.3178, -0.5188,\\n\",\n      \"           0.2668, -0.2357, -0.0332, -0.5571, -0.2157,  0.1033,  0.2126,\\n\",\n      \"          -0.4119,  0.1621,  0.1569,  0.3292, -0.1883, -0.5136,  0.4836,\\n\",\n      \"           0.1629,  0.4135,  0.0817,  0.0296, -0.5296, -0.3845,  0.2176,\\n\",\n      \"          -0.4257]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2165,  0.6643,  0.2134,  0.4667, -0.3658, -0.5918, -0.5354,\\n\",\n      \"           0.5185,  0.5647,  0.1890,  0.1068, -0.8998, -0.5254, -0.2879,\\n\",\n      \"           0.3621,  0.6158,  0.8000, -0.0707,  0.8353, -0.7904, -0.4499,\\n\",\n      \"           0.1003,  0.0254,  0.7849,  0.6487, -0.4766,  0.6924,  0.2688,\\n\",\n      \"          -0.0224, -0.1641,  0.5357, -0.5526,  0.3533,  0.4206, -0.2618,\\n\",\n      \"          -0.0252, -0.4151,  0.7307, -0.2902,  0.0149, -0.1347,  0.4171,\\n\",\n      \"          -0.3612,  0.2912, -0.5252, -0.2134,  0.2129, -0.0995,  0.5832,\\n\",\n      \"           0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193,  0.2697,\\n\",\n      \"          -0.7581,  0.1343, -0.4379,  0.8081, -0.7057, -0.7356, -0.2213,\\n\",\n      \"          -0.5394],\\n\",\n      \"         [-0.1251,  0.1434,  0.3819,  0.0779,  0.3546,  0.1264,  0.1404,\\n\",\n      \"          -0.1140,  0.3947, -0.4812,  0.6593, -0.0573,  0.3087,  0.0349,\\n\",\n      \"           0.4715,  0.0450,  0.1793, -0.4911, -0.6166,  0.0762, -0.3557,\\n\",\n      \"          -0.2982, -0.1911,  0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\\n\",\n      \"           0.1761, -0.1146,  0.1655,  0.1192, -0.0237,  0.4926,  0.1029,\\n\",\n      \"          -0.2940, -0.1968,  0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\\n\",\n      \"           0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\\n\",\n      \"          -0.1560,  0.3103, -0.2179,  0.0748,  0.2780,  0.0437,  0.1274,\\n\",\n      \"           0.2246,  0.3854, -0.3852,  0.4846,  0.0769,  0.1051, -0.1136,\\n\",\n      \"          -0.2083]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0053,  0.5089,  0.3900,  0.7339, -0.6606, -0.5602, -0.6067,\\n\",\n      \"          -0.7727,  0.6455,  0.0913,  0.2039, -0.9017, -0.6111,  0.2212,\\n\",\n      \"           0.2289,  0.8321,  0.7837,  0.6047,  0.8988, -0.8065, -0.8648,\\n\",\n      \"          -0.1608,  0.2545,  0.7868,  0.4106, -0.9213,  0.8644,  0.2484,\\n\",\n      \"          -0.4612, -0.1559,  0.8484, -0.3135,  0.6978,  0.2730, -0.6825,\\n\",\n      \"           0.1366, -0.8899,  0.8244,  0.3284,  0.0805, -0.2395, -0.6767,\\n\",\n      \"          -0.8209,  0.6211, -0.3285, -0.0912, -0.0389,  0.1991,  0.8258,\\n\",\n      \"           0.9217, -0.2170,  0.5347, -0.4071, -0.8464, -0.5593,  0.6256,\\n\",\n      \"          -0.9049,  0.4595,  0.9074,  0.7990, -0.5945, -0.3470,  0.8762,\\n\",\n      \"          -0.9404],\\n\",\n      \"         [ 0.0394,  0.7293,  0.1861,  0.0881,  0.0371, -0.1677, -0.4362,\\n\",\n      \"           0.1219,  0.6134, -0.0385,  0.6175, -0.7031, -0.0738, -0.1346,\\n\",\n      \"           0.5209,  0.4806,  0.6178, -0.3499,  0.3256, -0.4866, -0.1101,\\n\",\n      \"          -0.2557, -0.1716,  0.2299,  0.3704, -0.2004,  0.0048,  0.0728,\\n\",\n      \"           0.1695, -0.1895,  0.5252, -0.4673, -0.0011,  0.5633,  0.0540,\\n\",\n      \"          -0.0333, -0.0936,  0.6006, -0.4610, -0.1716, -0.3625,  0.0738,\\n\",\n      \"           0.2130, -0.0040, -0.1681, -0.0567,  0.0414, -0.0399,  0.3204,\\n\",\n      \"           0.1606,  0.0895, -0.4445, -0.1933, -0.5708,  0.0026,  0.1022,\\n\",\n      \"          -0.1998,  0.2881, -0.4914,  0.8336, -0.2190, -0.4052, -0.4005,\\n\",\n      \"          -0.2036]],\\n\",\n      \"\\n\",\n      \"        [[-0.4344,  0.9695,  0.3881,  0.5407, -0.5645, -0.7304, -0.9651,\\n\",\n      \"          -0.8371,  0.9021,  0.1183,  0.0341, -0.9520, -0.7408,  0.9443,\\n\",\n      \"           0.1162,  0.8202,  0.6560,  0.9675,  0.9835, -0.7582, -0.9880,\\n\",\n      \"          -0.2225,  0.2812,  0.7177,  0.2373, -0.9129,  0.7111,  0.3292,\\n\",\n      \"          -0.3043,  0.0067,  0.9513, -0.5549,  0.5781, -0.2277, -0.1309,\\n\",\n      \"           0.6114, -0.8130,  0.8737,  0.4949,  0.0302,  0.8304, -0.9538,\\n\",\n      \"          -0.8416,  0.0377, -0.9450, -0.0728, -0.1449, -0.4713,  0.8478,\\n\",\n      \"           0.9788, -0.7699,  0.8377, -0.9320, -0.9075, -0.5798,  0.6564,\\n\",\n      \"          -0.9924,  0.8009,  0.9216,  0.8556, -0.9676,  0.6107,  0.9332,\\n\",\n      \"          -0.9650],\\n\",\n      \"         [-0.1282,  0.6072,  0.2948,  0.5892, -0.5330, -0.2869, -0.5384,\\n\",\n      \"          -0.7949,  0.6626, -0.0911,  0.4917, -0.7266, -0.3492,  0.2605,\\n\",\n      \"           0.2942,  0.8206,  0.6406,  0.5368,  0.5708, -0.5419, -0.7469,\\n\",\n      \"          -0.3980,  0.1402,  0.3024,  0.2058, -0.9050,  0.7186,  0.1156,\\n\",\n      \"          -0.3964, -0.1969,  0.8352, -0.2601,  0.6729,  0.3602, -0.5379,\\n\",\n      \"           0.1174, -0.8353,  0.7244,  0.2288, -0.0560, -0.4192, -0.7514,\\n\",\n      \"          -0.6763,  0.4741, -0.0413,  0.0924, -0.2348,  0.1453,  0.6766,\\n\",\n      \"           0.7962, -0.1368,  0.4839, -0.2126, -0.7452, -0.4184,  0.5247,\\n\",\n      \"          -0.6722,  0.5168,  0.8884,  0.8025, -0.1871, -0.1701,  0.8400,\\n\",\n      \"          -0.8880]],\\n\",\n      \"\\n\",\n      \"        [[-0.6811,  0.9904,  0.3873,  0.3274, -0.4650, -0.6639, -0.9928,\\n\",\n      \"          -0.8714,  0.9532,  0.1302, -0.0052, -0.9700, -0.8229,  0.9916,\\n\",\n      \"           0.0321,  0.8120,  0.6073,  0.9809,  0.9954, -0.7496, -0.9976,\\n\",\n      \"          -0.2798,  0.3025,  0.6563,  0.1430, -0.9052,  0.6155,  0.3971,\\n\",\n      \"          -0.2514,  0.0549,  0.9648, -0.7167,  0.4741, -0.3832,  0.2246,\\n\",\n      \"           0.7622, -0.7477,  0.9110,  0.5800, -0.0079,  0.9455, -0.9695,\\n\",\n      \"          -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456,  0.8637,\\n\",\n      \"           0.9926, -0.8969,  0.9267, -0.9887, -0.9147, -0.5940,  0.6758,\\n\",\n      \"          -0.9929,  0.9099,  0.9321,  0.9038, -0.9955,  0.7793,  0.9528,\\n\",\n      \"          -0.9790],\\n\",\n      \"         [-0.5124,  0.9718,  0.2896,  0.4127, -0.4482, -0.6861, -0.9578,\\n\",\n      \"          -0.8474,  0.8905, -0.0578,  0.1265, -0.8802, -0.5990,  0.9483,\\n\",\n      \"           0.1486,  0.8054,  0.5295,  0.9644,  0.9343, -0.5344, -0.9767,\\n\",\n      \"          -0.4396,  0.1733,  0.4361,  0.1193, -0.8925,  0.5645,  0.2105,\\n\",\n      \"          -0.2591, -0.0061,  0.9448, -0.4838,  0.5449, -0.2025, -0.1123,\\n\",\n      \"           0.5975, -0.7673,  0.8066,  0.4332, -0.1005,  0.7939, -0.9577,\\n\",\n      \"          -0.7584, -0.0506, -0.9229,  0.0987, -0.3074, -0.4775,  0.7187,\\n\",\n      \"           0.9429, -0.7517,  0.8196, -0.8877, -0.8825, -0.4664,  0.5667,\\n\",\n      \"          -0.9790,  0.8117,  0.9049,  0.8489, -0.9360,  0.6337,  0.9125,\\n\",\n      \"          -0.9336]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([ 2, 17])\\n\",\n      \"dec_state: tensor([[[ 0.9473,  0.9313, -0.9878,  0.8604,  0.7372,  0.7617, -0.7951,\\n\",\n      \"          -0.5794, -0.6665,  0.1700, -0.0295, -0.9323,  0.5450,  0.8378,\\n\",\n      \"          -0.9391, -0.5223,  0.3825, -0.1205, -0.8696,  0.7332,  0.9912,\\n\",\n      \"          -0.8306,  0.1641,  0.9563,  0.9380, -0.9691, -0.7445, -0.8984,\\n\",\n      \"          -0.7164, -0.8286, -0.9550,  0.8958, -0.7718,  0.8139, -0.7418,\\n\",\n      \"          -0.9858,  0.6880, -0.6520,  0.6791,  0.8826, -0.9081,  0.9235,\\n\",\n      \"           0.8571, -0.2061, -0.7047,  0.8744, -0.8011,  0.8993, -0.1427,\\n\",\n      \"           0.8784,  0.5005,  0.9764, -0.0972, -0.8108, -0.3337, -0.3959,\\n\",\n      \"           0.9712,  0.9506,  0.2212, -0.1489, -0.9927,  0.9782,  0.0623,\\n\",\n      \"           0.1165],\\n\",\n      \"         [ 0.6426,  0.9839, -0.4883,  0.7742,  0.7518,  0.7075, -0.7008,\\n\",\n      \"          -0.6732,  0.2228, -0.1950, -0.3983, -0.5712,  0.0978,  0.9339,\\n\",\n      \"           0.4096, -0.6226,  0.4763, -0.2598, -0.2107,  0.8241,  0.8496,\\n\",\n      \"          -0.6863, -0.4066,  0.3727,  0.6547, -0.7730, -0.5617, -0.5953,\\n\",\n      \"          -0.9063, -0.2914, -0.5167,  0.7813,  0.3135,  0.6645, -0.8230,\\n\",\n      \"          -0.6250,  0.8137, -0.2644, -0.2032,  0.5774, -0.6422,  0.6087,\\n\",\n      \"           0.9017,  0.4752, -0.5230,  0.8664, -0.7029,  0.7444,  0.0427,\\n\",\n      \"           0.8753, -0.1979,  0.9174,  0.1496, -0.3512, -0.7734, -0.1080,\\n\",\n      \"           0.7142,  0.8879, -0.1547,  0.3519, -0.9723,  0.9193, -0.2451,\\n\",\n      \"          -0.6447]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2643,  0.4564, -0.2593,  0.0541, -0.0949, -0.0707, -0.4059,\\n\",\n      \"           0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895,  0.3679,\\n\",\n      \"           0.1058, -0.4368,  0.4438,  0.3126,  0.1805, -0.6815, -0.6550,\\n\",\n      \"          -0.1472,  0.1178, -0.0509,  0.2158, -0.0236,  0.2572,  0.3204,\\n\",\n      \"          -0.1213, -0.1323,  0.2779, -0.1086,  0.0890, -0.4043, -0.2370,\\n\",\n      \"          -0.0740, -0.2013,  0.2110, -0.0625, -0.3476,  0.1305,  0.7000,\\n\",\n      \"          -0.1356,  0.0533, -0.6974, -0.4555,  0.4434, -0.1698,  0.0568,\\n\",\n      \"           0.4341,  0.1590, -0.1960, -0.4161, -0.5756, -0.4891,  0.2558,\\n\",\n      \"          -0.4767,  0.1833,  0.0714, -0.2048, -0.0357,  0.1653,  0.3216,\\n\",\n      \"          -0.4956],\\n\",\n      \"         [-0.3986,  0.1077, -0.1079,  0.4751,  0.2374,  0.0763,  0.0478,\\n\",\n      \"          -0.6380,  0.3585, -0.1490,  0.4389, -0.1711,  0.0351,  0.3032,\\n\",\n      \"           0.1507,  0.5181,  0.2568,  0.0916,  0.2709,  0.1861, -0.5871,\\n\",\n      \"          -0.1010,  0.2366, -0.1209, -0.5268,  0.0956, -0.4196, -0.2877,\\n\",\n      \"          -0.0054, -0.0399,  0.1611, -0.1701,  0.1080,  0.1541, -0.1976,\\n\",\n      \"          -0.0249, -0.6249,  0.3139,  0.5532,  0.1371, -0.2370, -0.5140,\\n\",\n      \"          -0.1603, -0.1353, -0.1096,  0.3353, -0.2182, -0.1288,  0.1954,\\n\",\n      \"           0.0314,  0.2198,  0.4391,  0.2029, -0.5140, -0.3188,  0.2105,\\n\",\n      \"          -0.5609,  0.2901,  0.1407,  0.1191, -0.4545,  0.1350,  0.0812,\\n\",\n      \"          -0.3816]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3048,  0.2614, -0.6713,  0.8613, -0.2512, -0.4346, -0.2634,\\n\",\n      \"           0.6591,  0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\\n\",\n      \"           0.4387,  0.2709,  0.5605,  0.4969,  0.5650, -0.6975, -0.7697,\\n\",\n      \"          -0.0075,  0.3626,  0.7565,  0.4823, -0.3389,  0.3312,  0.1820,\\n\",\n      \"          -0.1854, -0.2484,  0.3879, -0.0510,  0.7113,  0.0262, -0.2328,\\n\",\n      \"           0.0428, -0.6167,  0.9327,  0.3825,  0.4738,  0.0045,  0.6714,\\n\",\n      \"          -0.2780, -0.3274, -0.5227, -0.5403,  0.3292, -0.7134,  0.2665,\\n\",\n      \"           0.7792, -0.1701,  0.1585, -0.1340, -0.7831, -0.5599,  0.0010,\\n\",\n      \"          -0.4418,  0.0466, -0.2996,  0.5337, -0.7619, -0.6692,  0.2525,\\n\",\n      \"          -0.4926],\\n\",\n      \"         [-0.5449,  0.2779,  0.6267, -0.0066, -0.3411, -0.4215,  0.1982,\\n\",\n      \"          -0.4431,  0.6065, -0.3576,  0.1459,  0.1405, -0.3065,  0.3954,\\n\",\n      \"          -0.0139,  0.5789,  0.3313,  0.1777, -0.2895, -0.0424, -0.7719,\\n\",\n      \"          -0.1613,  0.3021, -0.0137, -0.1981, -0.1518,  0.0221, -0.0543,\\n\",\n      \"           0.4869, -0.0376,  0.6679, -0.2354,  0.1546,  0.4744, -0.0194,\\n\",\n      \"           0.2567, -0.0445,  0.2706,  0.2981,  0.0486,  0.3991, -0.7287,\\n\",\n      \"          -0.2562, -0.6029, -0.2513,  0.2143,  0.0921,  0.0526,  0.3929,\\n\",\n      \"          -0.1046, -0.1321,  0.5571, -0.0703, -0.4639, -0.5332,  0.7051,\\n\",\n      \"          -0.4131,  0.4652,  0.3511, -0.1030, -0.6763, -0.2386,  0.4719,\\n\",\n      \"          -0.1979]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3278, -0.2888, -0.0956,  0.7314, -0.2450, -0.5831, -0.0397,\\n\",\n      \"           0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\\n\",\n      \"           0.3975,  0.4884,  0.6930,  0.1510,  0.5433, -0.6360, -0.6441,\\n\",\n      \"           0.1115,  0.1613,  0.7858,  0.4847, -0.5446,  0.7429,  0.2655,\\n\",\n      \"          -0.0490, -0.1175,  0.0364,  0.1196,  0.5943,  0.2333, -0.5645,\\n\",\n      \"          -0.3604, -0.6270,  0.6515, -0.0406,  0.2102, -0.1837,  0.2619,\\n\",\n      \"          -0.4548,  0.1320, -0.4382, -0.2788,  0.2147, -0.5275,  0.1388,\\n\",\n      \"           0.4512,  0.1896, -0.0293, -0.1224, -0.7348, -0.3286,  0.3086,\\n\",\n      \"          -0.3752,  0.0572, -0.4160,  0.1187, -0.5770, -0.6388,  0.1324,\\n\",\n      \"          -0.5198],\\n\",\n      \"         [-0.5405,  0.0124,  0.3095,  0.0026,  0.3472, -0.0643, -0.2726,\\n\",\n      \"          -0.1709,  0.3799, -0.5057,  0.6329, -0.0685,  0.4347,  0.3791,\\n\",\n      \"           0.4154,  0.4034,  0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\\n\",\n      \"          -0.2282, -0.2110,  0.0466, -0.1903, -0.2866,  0.2155,  0.1366,\\n\",\n      \"           0.3826, -0.0260,  0.4968, -0.0116, -0.4877,  0.4981, -0.1737,\\n\",\n      \"          -0.4543, -0.0929,  0.1796,  0.0635,  0.0320, -0.3178, -0.5188,\\n\",\n      \"           0.2668, -0.2357, -0.0332, -0.5571, -0.2157,  0.1033,  0.2126,\\n\",\n      \"          -0.4119,  0.1621,  0.1569,  0.3292, -0.1883, -0.5136,  0.4836,\\n\",\n      \"           0.1629,  0.4135,  0.0817,  0.0296, -0.5296, -0.3845,  0.2176,\\n\",\n      \"          -0.4257]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2165,  0.6643,  0.2134,  0.4667, -0.3658, -0.5918, -0.5354,\\n\",\n      \"           0.5185,  0.5647,  0.1890,  0.1068, -0.8998, -0.5254, -0.2879,\\n\",\n      \"           0.3621,  0.6158,  0.8000, -0.0707,  0.8353, -0.7904, -0.4499,\\n\",\n      \"           0.1003,  0.0254,  0.7849,  0.6487, -0.4766,  0.6924,  0.2688,\\n\",\n      \"          -0.0224, -0.1641,  0.5357, -0.5526,  0.3533,  0.4206, -0.2618,\\n\",\n      \"          -0.0252, -0.4151,  0.7307, -0.2902,  0.0149, -0.1347,  0.4171,\\n\",\n      \"          -0.3612,  0.2912, -0.5252, -0.2134,  0.2129, -0.0995,  0.5832,\\n\",\n      \"           0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193,  0.2697,\\n\",\n      \"          -0.7581,  0.1343, -0.4379,  0.8081, -0.7057, -0.7356, -0.2213,\\n\",\n      \"          -0.5394],\\n\",\n      \"         [-0.1251,  0.1434,  0.3819,  0.0779,  0.3546,  0.1264,  0.1404,\\n\",\n      \"          -0.1140,  0.3947, -0.4812,  0.6593, -0.0573,  0.3087,  0.0349,\\n\",\n      \"           0.4715,  0.0450,  0.1793, -0.4911, -0.6166,  0.0762, -0.3557,\\n\",\n      \"          -0.2982, -0.1911,  0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\\n\",\n      \"           0.1761, -0.1146,  0.1655,  0.1192, -0.0237,  0.4926,  0.1029,\\n\",\n      \"          -0.2940, -0.1968,  0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\\n\",\n      \"           0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\\n\",\n      \"          -0.1560,  0.3103, -0.2179,  0.0748,  0.2780,  0.0437,  0.1274,\\n\",\n      \"           0.2246,  0.3854, -0.3852,  0.4846,  0.0769,  0.1051, -0.1136,\\n\",\n      \"          -0.2083]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0053,  0.5089,  0.3900,  0.7339, -0.6606, -0.5602, -0.6067,\\n\",\n      \"          -0.7727,  0.6455,  0.0913,  0.2039, -0.9017, -0.6111,  0.2212,\\n\",\n      \"           0.2289,  0.8321,  0.7837,  0.6047,  0.8988, -0.8065, -0.8648,\\n\",\n      \"          -0.1608,  0.2545,  0.7868,  0.4106, -0.9213,  0.8644,  0.2484,\\n\",\n      \"          -0.4612, -0.1559,  0.8484, -0.3135,  0.6978,  0.2730, -0.6825,\\n\",\n      \"           0.1366, -0.8899,  0.8244,  0.3284,  0.0805, -0.2395, -0.6767,\\n\",\n      \"          -0.8209,  0.6211, -0.3285, -0.0912, -0.0389,  0.1991,  0.8258,\\n\",\n      \"           0.9217, -0.2170,  0.5347, -0.4071, -0.8464, -0.5593,  0.6256,\\n\",\n      \"          -0.9049,  0.4595,  0.9074,  0.7990, -0.5945, -0.3470,  0.8762,\\n\",\n      \"          -0.9404],\\n\",\n      \"         [ 0.0394,  0.7293,  0.1861,  0.0881,  0.0371, -0.1677, -0.4362,\\n\",\n      \"           0.1219,  0.6134, -0.0385,  0.6175, -0.7031, -0.0738, -0.1346,\\n\",\n      \"           0.5209,  0.4806,  0.6178, -0.3499,  0.3256, -0.4866, -0.1101,\\n\",\n      \"          -0.2557, -0.1716,  0.2299,  0.3704, -0.2004,  0.0048,  0.0728,\\n\",\n      \"           0.1695, -0.1895,  0.5252, -0.4673, -0.0011,  0.5633,  0.0540,\\n\",\n      \"          -0.0333, -0.0936,  0.6006, -0.4610, -0.1716, -0.3625,  0.0738,\\n\",\n      \"           0.2130, -0.0040, -0.1681, -0.0567,  0.0414, -0.0399,  0.3204,\\n\",\n      \"           0.1606,  0.0895, -0.4445, -0.1933, -0.5708,  0.0026,  0.1022,\\n\",\n      \"          -0.1998,  0.2881, -0.4914,  0.8336, -0.2190, -0.4052, -0.4005,\\n\",\n      \"          -0.2036]],\\n\",\n      \"\\n\",\n      \"        [[-0.4344,  0.9695,  0.3881,  0.5407, -0.5645, -0.7304, -0.9651,\\n\",\n      \"          -0.8371,  0.9021,  0.1183,  0.0341, -0.9520, -0.7408,  0.9443,\\n\",\n      \"           0.1162,  0.8202,  0.6560,  0.9675,  0.9835, -0.7582, -0.9880,\\n\",\n      \"          -0.2225,  0.2812,  0.7177,  0.2373, -0.9129,  0.7111,  0.3292,\\n\",\n      \"          -0.3043,  0.0067,  0.9513, -0.5549,  0.5781, -0.2277, -0.1309,\\n\",\n      \"           0.6114, -0.8130,  0.8737,  0.4949,  0.0302,  0.8304, -0.9538,\\n\",\n      \"          -0.8416,  0.0377, -0.9450, -0.0728, -0.1449, -0.4713,  0.8478,\\n\",\n      \"           0.9788, -0.7699,  0.8377, -0.9320, -0.9075, -0.5798,  0.6564,\\n\",\n      \"          -0.9924,  0.8009,  0.9216,  0.8556, -0.9676,  0.6107,  0.9332,\\n\",\n      \"          -0.9650],\\n\",\n      \"         [-0.1282,  0.6072,  0.2948,  0.5892, -0.5330, -0.2869, -0.5384,\\n\",\n      \"          -0.7949,  0.6626, -0.0911,  0.4917, -0.7266, -0.3492,  0.2605,\\n\",\n      \"           0.2942,  0.8206,  0.6406,  0.5368,  0.5708, -0.5419, -0.7469,\\n\",\n      \"          -0.3980,  0.1402,  0.3024,  0.2058, -0.9050,  0.7186,  0.1156,\\n\",\n      \"          -0.3964, -0.1969,  0.8352, -0.2601,  0.6729,  0.3602, -0.5379,\\n\",\n      \"           0.1174, -0.8353,  0.7244,  0.2288, -0.0560, -0.4192, -0.7514,\\n\",\n      \"          -0.6763,  0.4741, -0.0413,  0.0924, -0.2348,  0.1453,  0.6766,\\n\",\n      \"           0.7962, -0.1368,  0.4839, -0.2126, -0.7452, -0.4184,  0.5247,\\n\",\n      \"          -0.6722,  0.5168,  0.8884,  0.8025, -0.1871, -0.1701,  0.8400,\\n\",\n      \"          -0.8880]],\\n\",\n      \"\\n\",\n      \"        [[-0.6811,  0.9904,  0.3873,  0.3274, -0.4650, -0.6639, -0.9928,\\n\",\n      \"          -0.8714,  0.9532,  0.1302, -0.0052, -0.9700, -0.8229,  0.9916,\\n\",\n      \"           0.0321,  0.8120,  0.6073,  0.9809,  0.9954, -0.7496, -0.9976,\\n\",\n      \"          -0.2798,  0.3025,  0.6563,  0.1430, -0.9052,  0.6155,  0.3971,\\n\",\n      \"          -0.2514,  0.0549,  0.9648, -0.7167,  0.4741, -0.3832,  0.2246,\\n\",\n      \"           0.7622, -0.7477,  0.9110,  0.5800, -0.0079,  0.9455, -0.9695,\\n\",\n      \"          -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456,  0.8637,\\n\",\n      \"           0.9926, -0.8969,  0.9267, -0.9887, -0.9147, -0.5940,  0.6758,\\n\",\n      \"          -0.9929,  0.9099,  0.9321,  0.9038, -0.9955,  0.7793,  0.9528,\\n\",\n      \"          -0.9790],\\n\",\n      \"         [-0.5124,  0.9718,  0.2896,  0.4127, -0.4482, -0.6861, -0.9578,\\n\",\n      \"          -0.8474,  0.8905, -0.0578,  0.1265, -0.8802, -0.5990,  0.9483,\\n\",\n      \"           0.1486,  0.8054,  0.5295,  0.9644,  0.9343, -0.5344, -0.9767,\\n\",\n      \"          -0.4396,  0.1733,  0.4361,  0.1193, -0.8925,  0.5645,  0.2105,\\n\",\n      \"          -0.2591, -0.0061,  0.9448, -0.4838,  0.5449, -0.2025, -0.1123,\\n\",\n      \"           0.5975, -0.7673,  0.8066,  0.4332, -0.1005,  0.7939, -0.9577,\\n\",\n      \"          -0.7584, -0.0506, -0.9229,  0.0987, -0.3074, -0.4775,  0.7187,\\n\",\n      \"           0.9429, -0.7517,  0.8196, -0.8877, -0.8825, -0.4664,  0.5667,\\n\",\n      \"          -0.9790,  0.8117,  0.9049,  0.8489, -0.9360,  0.6337,  0.9125,\\n\",\n      \"          -0.9336]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([0, 3])\\n\",\n      \"dec_state: tensor([[[ 0.8097,  0.9807, -0.5462,  0.8230,  0.6204,  0.3045, -0.7535,\\n\",\n      \"          -0.7529, -0.4538, -0.0772,  0.0774, -0.8304, -0.1688,  0.8799,\\n\",\n      \"          -0.6240, -0.5604, -0.2984, -0.6839, -0.5286,  0.8215,  0.9930,\\n\",\n      \"          -0.8797,  0.0036,  0.9480,  0.9603, -0.9550, -0.8359, -0.8252,\\n\",\n      \"          -0.8870, -0.9193, -0.6331,  0.9240,  0.5765,  0.8151, -0.8125,\\n\",\n      \"          -0.9959,  0.2778, -0.7424,  0.3983,  0.9119, -0.8981,  0.9438,\\n\",\n      \"           0.9369, -0.4342, -0.7896,  0.9679, -0.8482,  0.4907, -0.1305,\\n\",\n      \"           0.9044,  0.8544,  0.9818,  0.1068, -0.8502, -0.1496, -0.2723,\\n\",\n      \"           0.9544,  0.9635,  0.1782, -0.3288, -0.9951,  0.9554, -0.0371,\\n\",\n      \"           0.0669],\\n\",\n      \"         [ 0.9699,  0.9933, -0.9143,  0.7897,  0.5972,  0.7305, -0.7894,\\n\",\n      \"          -0.8153, -0.0742, -0.9665, -0.9167, -0.8744,  0.8145,  0.9783,\\n\",\n      \"          -0.8479,  0.2889,  0.9157, -0.5162, -0.9029,  0.8752,  0.8663,\\n\",\n      \"          -0.7132, -0.7083,  0.4087,  0.9704, -0.8894, -0.0921, -0.9487,\\n\",\n      \"           0.6293, -0.6837, -0.8540,  0.8121,  0.8732,  0.8424, -0.7468,\\n\",\n      \"          -0.8581,  0.9040, -0.8174,  0.8055,  0.8808, -0.8516,  0.8065,\\n\",\n      \"           0.9222, -0.7025, -0.7066,  0.9834, -0.6614,  0.8967, -0.0178,\\n\",\n      \"           0.8621, -0.8259,  0.9808,  0.3341, -0.6238,  0.7816, -0.2329,\\n\",\n      \"           0.9073,  0.8753, -0.6417, -0.0985, -0.9876,  0.9572, -0.2586,\\n\",\n      \"          -0.9395]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-0.2643,  0.4564, -0.2593,  0.0541, -0.0949, -0.0707, -0.4059,\\n\",\n      \"           0.1712, -0.0359, -0.1571, -0.2287, -0.2139, -0.5895,  0.3679,\\n\",\n      \"           0.1058, -0.4368,  0.4438,  0.3126,  0.1805, -0.6815, -0.6550,\\n\",\n      \"          -0.1472,  0.1178, -0.0509,  0.2158, -0.0236,  0.2572,  0.3204,\\n\",\n      \"          -0.1213, -0.1323,  0.2779, -0.1086,  0.0890, -0.4043, -0.2370,\\n\",\n      \"          -0.0740, -0.2013,  0.2110, -0.0625, -0.3476,  0.1305,  0.7000,\\n\",\n      \"          -0.1356,  0.0533, -0.6974, -0.4555,  0.4434, -0.1698,  0.0568,\\n\",\n      \"           0.4341,  0.1590, -0.1960, -0.4161, -0.5756, -0.4891,  0.2558,\\n\",\n      \"          -0.4767,  0.1833,  0.0714, -0.2048, -0.0357,  0.1653,  0.3216,\\n\",\n      \"          -0.4956],\\n\",\n      \"         [-0.3986,  0.1077, -0.1079,  0.4751,  0.2374,  0.0763,  0.0478,\\n\",\n      \"          -0.6380,  0.3585, -0.1490,  0.4389, -0.1711,  0.0351,  0.3032,\\n\",\n      \"           0.1507,  0.5181,  0.2568,  0.0916,  0.2709,  0.1861, -0.5871,\\n\",\n      \"          -0.1010,  0.2366, -0.1209, -0.5268,  0.0956, -0.4196, -0.2877,\\n\",\n      \"          -0.0054, -0.0399,  0.1611, -0.1701,  0.1080,  0.1541, -0.1976,\\n\",\n      \"          -0.0249, -0.6249,  0.3139,  0.5532,  0.1371, -0.2370, -0.5140,\\n\",\n      \"          -0.1603, -0.1353, -0.1096,  0.3353, -0.2182, -0.1288,  0.1954,\\n\",\n      \"           0.0314,  0.2198,  0.4391,  0.2029, -0.5140, -0.3188,  0.2105,\\n\",\n      \"          -0.5609,  0.2901,  0.1407,  0.1191, -0.4545,  0.1350,  0.0812,\\n\",\n      \"          -0.3816]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3048,  0.2614, -0.6713,  0.8613, -0.2512, -0.4346, -0.2634,\\n\",\n      \"           0.6591,  0.4523, -0.3877, -0.1362, -0.3461, -0.3531, -0.4247,\\n\",\n      \"           0.4387,  0.2709,  0.5605,  0.4969,  0.5650, -0.6975, -0.7697,\\n\",\n      \"          -0.0075,  0.3626,  0.7565,  0.4823, -0.3389,  0.3312,  0.1820,\\n\",\n      \"          -0.1854, -0.2484,  0.3879, -0.0510,  0.7113,  0.0262, -0.2328,\\n\",\n      \"           0.0428, -0.6167,  0.9327,  0.3825,  0.4738,  0.0045,  0.6714,\\n\",\n      \"          -0.2780, -0.3274, -0.5227, -0.5403,  0.3292, -0.7134,  0.2665,\\n\",\n      \"           0.7792, -0.1701,  0.1585, -0.1340, -0.7831, -0.5599,  0.0010,\\n\",\n      \"          -0.4418,  0.0466, -0.2996,  0.5337, -0.7619, -0.6692,  0.2525,\\n\",\n      \"          -0.4926],\\n\",\n      \"         [-0.5449,  0.2779,  0.6267, -0.0066, -0.3411, -0.4215,  0.1982,\\n\",\n      \"          -0.4431,  0.6065, -0.3576,  0.1459,  0.1405, -0.3065,  0.3954,\\n\",\n      \"          -0.0139,  0.5789,  0.3313,  0.1777, -0.2895, -0.0424, -0.7719,\\n\",\n      \"          -0.1613,  0.3021, -0.0137, -0.1981, -0.1518,  0.0221, -0.0543,\\n\",\n      \"           0.4869, -0.0376,  0.6679, -0.2354,  0.1546,  0.4744, -0.0194,\\n\",\n      \"           0.2567, -0.0445,  0.2706,  0.2981,  0.0486,  0.3991, -0.7287,\\n\",\n      \"          -0.2562, -0.6029, -0.2513,  0.2143,  0.0921,  0.0526,  0.3929,\\n\",\n      \"          -0.1046, -0.1321,  0.5571, -0.0703, -0.4639, -0.5332,  0.7051,\\n\",\n      \"          -0.4131,  0.4652,  0.3511, -0.1030, -0.6763, -0.2386,  0.4719,\\n\",\n      \"          -0.1979]],\\n\",\n      \"\\n\",\n      \"        [[ 0.3278, -0.2888, -0.0956,  0.7314, -0.2450, -0.5831, -0.0397,\\n\",\n      \"           0.5836, -0.1886, -0.1166, -0.0567, -0.6136, -0.4502, -0.4130,\\n\",\n      \"           0.3975,  0.4884,  0.6930,  0.1510,  0.5433, -0.6360, -0.6441,\\n\",\n      \"           0.1115,  0.1613,  0.7858,  0.4847, -0.5446,  0.7429,  0.2655,\\n\",\n      \"          -0.0490, -0.1175,  0.0364,  0.1196,  0.5943,  0.2333, -0.5645,\\n\",\n      \"          -0.3604, -0.6270,  0.6515, -0.0406,  0.2102, -0.1837,  0.2619,\\n\",\n      \"          -0.4548,  0.1320, -0.4382, -0.2788,  0.2147, -0.5275,  0.1388,\\n\",\n      \"           0.4512,  0.1896, -0.0293, -0.1224, -0.7348, -0.3286,  0.3086,\\n\",\n      \"          -0.3752,  0.0572, -0.4160,  0.1187, -0.5770, -0.6388,  0.1324,\\n\",\n      \"          -0.5198],\\n\",\n      \"         [-0.5405,  0.0124,  0.3095,  0.0026,  0.3472, -0.0643, -0.2726,\\n\",\n      \"          -0.1709,  0.3799, -0.5057,  0.6329, -0.0685,  0.4347,  0.3791,\\n\",\n      \"           0.4154,  0.4034,  0.2572, -0.3255, -0.5720, -0.2042, -0.4831,\\n\",\n      \"          -0.2282, -0.2110,  0.0466, -0.1903, -0.2866,  0.2155,  0.1366,\\n\",\n      \"           0.3826, -0.0260,  0.4968, -0.0116, -0.4877,  0.4981, -0.1737,\\n\",\n      \"          -0.4543, -0.0929,  0.1796,  0.0635,  0.0320, -0.3178, -0.5188,\\n\",\n      \"           0.2668, -0.2357, -0.0332, -0.5571, -0.2157,  0.1033,  0.2126,\\n\",\n      \"          -0.4119,  0.1621,  0.1569,  0.3292, -0.1883, -0.5136,  0.4836,\\n\",\n      \"           0.1629,  0.4135,  0.0817,  0.0296, -0.5296, -0.3845,  0.2176,\\n\",\n      \"          -0.4257]],\\n\",\n      \"\\n\",\n      \"        [[ 0.2165,  0.6643,  0.2134,  0.4667, -0.3658, -0.5918, -0.5354,\\n\",\n      \"           0.5185,  0.5647,  0.1890,  0.1068, -0.8998, -0.5254, -0.2879,\\n\",\n      \"           0.3621,  0.6158,  0.8000, -0.0707,  0.8353, -0.7904, -0.4499,\\n\",\n      \"           0.1003,  0.0254,  0.7849,  0.6487, -0.4766,  0.6924,  0.2688,\\n\",\n      \"          -0.0224, -0.1641,  0.5357, -0.5526,  0.3533,  0.4206, -0.2618,\\n\",\n      \"          -0.0252, -0.4151,  0.7307, -0.2902,  0.0149, -0.1347,  0.4171,\\n\",\n      \"          -0.3612,  0.2912, -0.5252, -0.2134,  0.2129, -0.0995,  0.5832,\\n\",\n      \"           0.6448, -0.0108, -0.3854, -0.4084, -0.8172, -0.3193,  0.2697,\\n\",\n      \"          -0.7581,  0.1343, -0.4379,  0.8081, -0.7057, -0.7356, -0.2213,\\n\",\n      \"          -0.5394],\\n\",\n      \"         [-0.1251,  0.1434,  0.3819,  0.0779,  0.3546,  0.1264,  0.1404,\\n\",\n      \"          -0.1140,  0.3947, -0.4812,  0.6593, -0.0573,  0.3087,  0.0349,\\n\",\n      \"           0.4715,  0.0450,  0.1793, -0.4911, -0.6166,  0.0762, -0.3557,\\n\",\n      \"          -0.2982, -0.1911,  0.1784, -0.0380, -0.3652, -0.0827, -0.0339,\\n\",\n      \"           0.1761, -0.1146,  0.1655,  0.1192, -0.0237,  0.4926,  0.1029,\\n\",\n      \"          -0.2940, -0.1968,  0.5524, -0.4117, -0.0270, -0.4546, -0.3759,\\n\",\n      \"           0.4777, -0.2467, -0.1640, -0.2011, -0.1360, -0.0507, -0.3036,\\n\",\n      \"          -0.1560,  0.3103, -0.2179,  0.0748,  0.2780,  0.0437,  0.1274,\\n\",\n      \"           0.2246,  0.3854, -0.3852,  0.4846,  0.0769,  0.1051, -0.1136,\\n\",\n      \"          -0.2083]],\\n\",\n      \"\\n\",\n      \"        [[ 0.0053,  0.5089,  0.3900,  0.7339, -0.6606, -0.5602, -0.6067,\\n\",\n      \"          -0.7727,  0.6455,  0.0913,  0.2039, -0.9017, -0.6111,  0.2212,\\n\",\n      \"           0.2289,  0.8321,  0.7837,  0.6047,  0.8988, -0.8065, -0.8648,\\n\",\n      \"          -0.1608,  0.2545,  0.7868,  0.4106, -0.9213,  0.8644,  0.2484,\\n\",\n      \"          -0.4612, -0.1559,  0.8484, -0.3135,  0.6978,  0.2730, -0.6825,\\n\",\n      \"           0.1366, -0.8899,  0.8244,  0.3284,  0.0805, -0.2395, -0.6767,\\n\",\n      \"          -0.8209,  0.6211, -0.3285, -0.0912, -0.0389,  0.1991,  0.8258,\\n\",\n      \"           0.9217, -0.2170,  0.5347, -0.4071, -0.8464, -0.5593,  0.6256,\\n\",\n      \"          -0.9049,  0.4595,  0.9074,  0.7990, -0.5945, -0.3470,  0.8762,\\n\",\n      \"          -0.9404],\\n\",\n      \"         [ 0.0394,  0.7293,  0.1861,  0.0881,  0.0371, -0.1677, -0.4362,\\n\",\n      \"           0.1219,  0.6134, -0.0385,  0.6175, -0.7031, -0.0738, -0.1346,\\n\",\n      \"           0.5209,  0.4806,  0.6178, -0.3499,  0.3256, -0.4866, -0.1101,\\n\",\n      \"          -0.2557, -0.1716,  0.2299,  0.3704, -0.2004,  0.0048,  0.0728,\\n\",\n      \"           0.1695, -0.1895,  0.5252, -0.4673, -0.0011,  0.5633,  0.0540,\\n\",\n      \"          -0.0333, -0.0936,  0.6006, -0.4610, -0.1716, -0.3625,  0.0738,\\n\",\n      \"           0.2130, -0.0040, -0.1681, -0.0567,  0.0414, -0.0399,  0.3204,\\n\",\n      \"           0.1606,  0.0895, -0.4445, -0.1933, -0.5708,  0.0026,  0.1022,\\n\",\n      \"          -0.1998,  0.2881, -0.4914,  0.8336, -0.2190, -0.4052, -0.4005,\\n\",\n      \"          -0.2036]],\\n\",\n      \"\\n\",\n      \"        [[-0.4344,  0.9695,  0.3881,  0.5407, -0.5645, -0.7304, -0.9651,\\n\",\n      \"          -0.8371,  0.9021,  0.1183,  0.0341, -0.9520, -0.7408,  0.9443,\\n\",\n      \"           0.1162,  0.8202,  0.6560,  0.9675,  0.9835, -0.7582, -0.9880,\\n\",\n      \"          -0.2225,  0.2812,  0.7177,  0.2373, -0.9129,  0.7111,  0.3292,\\n\",\n      \"          -0.3043,  0.0067,  0.9513, -0.5549,  0.5781, -0.2277, -0.1309,\\n\",\n      \"           0.6114, -0.8130,  0.8737,  0.4949,  0.0302,  0.8304, -0.9538,\\n\",\n      \"          -0.8416,  0.0377, -0.9450, -0.0728, -0.1449, -0.4713,  0.8478,\\n\",\n      \"           0.9788, -0.7699,  0.8377, -0.9320, -0.9075, -0.5798,  0.6564,\\n\",\n      \"          -0.9924,  0.8009,  0.9216,  0.8556, -0.9676,  0.6107,  0.9332,\\n\",\n      \"          -0.9650],\\n\",\n      \"         [-0.1282,  0.6072,  0.2948,  0.5892, -0.5330, -0.2869, -0.5384,\\n\",\n      \"          -0.7949,  0.6626, -0.0911,  0.4917, -0.7266, -0.3492,  0.2605,\\n\",\n      \"           0.2942,  0.8206,  0.6406,  0.5368,  0.5708, -0.5419, -0.7469,\\n\",\n      \"          -0.3980,  0.1402,  0.3024,  0.2058, -0.9050,  0.7186,  0.1156,\\n\",\n      \"          -0.3964, -0.1969,  0.8352, -0.2601,  0.6729,  0.3602, -0.5379,\\n\",\n      \"           0.1174, -0.8353,  0.7244,  0.2288, -0.0560, -0.4192, -0.7514,\\n\",\n      \"          -0.6763,  0.4741, -0.0413,  0.0924, -0.2348,  0.1453,  0.6766,\\n\",\n      \"           0.7962, -0.1368,  0.4839, -0.2126, -0.7452, -0.4184,  0.5247,\\n\",\n      \"          -0.6722,  0.5168,  0.8884,  0.8025, -0.1871, -0.1701,  0.8400,\\n\",\n      \"          -0.8880]],\\n\",\n      \"\\n\",\n      \"        [[-0.6811,  0.9904,  0.3873,  0.3274, -0.4650, -0.6639, -0.9928,\\n\",\n      \"          -0.8714,  0.9532,  0.1302, -0.0052, -0.9700, -0.8229,  0.9916,\\n\",\n      \"           0.0321,  0.8120,  0.6073,  0.9809,  0.9954, -0.7496, -0.9976,\\n\",\n      \"          -0.2798,  0.3025,  0.6563,  0.1430, -0.9052,  0.6155,  0.3971,\\n\",\n      \"          -0.2514,  0.0549,  0.9648, -0.7167,  0.4741, -0.3832,  0.2246,\\n\",\n      \"           0.7622, -0.7477,  0.9110,  0.5800, -0.0079,  0.9455, -0.9695,\\n\",\n      \"          -0.8042, -0.3303, -0.9884, -0.0528, -0.2156, -0.7456,  0.8637,\\n\",\n      \"           0.9926, -0.8969,  0.9267, -0.9887, -0.9147, -0.5940,  0.6758,\\n\",\n      \"          -0.9929,  0.9099,  0.9321,  0.9038, -0.9955,  0.7793,  0.9528,\\n\",\n      \"          -0.9790],\\n\",\n      \"         [-0.5124,  0.9718,  0.2896,  0.4127, -0.4482, -0.6861, -0.9578,\\n\",\n      \"          -0.8474,  0.8905, -0.0578,  0.1265, -0.8802, -0.5990,  0.9483,\\n\",\n      \"           0.1486,  0.8054,  0.5295,  0.9644,  0.9343, -0.5344, -0.9767,\\n\",\n      \"          -0.4396,  0.1733,  0.4361,  0.1193, -0.8925,  0.5645,  0.2105,\\n\",\n      \"          -0.2591, -0.0061,  0.9448, -0.4838,  0.5449, -0.2025, -0.1123,\\n\",\n      \"           0.5975, -0.7673,  0.8066,  0.4332, -0.1005,  0.7939, -0.9577,\\n\",\n      \"          -0.7584, -0.0506, -0.9229,  0.0987, -0.3074, -0.4775,  0.7187,\\n\",\n      \"           0.9429, -0.7517,  0.8196, -0.8877, -0.8825, -0.4664,  0.5667,\\n\",\n      \"          -0.9790,  0.8117,  0.9049,  0.8489, -0.9360,  0.6337,  0.9125,\\n\",\n      \"          -0.9336]]], grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[11,  4, 43, 36, 15,  3,  2],\\n\",\n      \"        [ 5, 10, 40,  3,  2,  0,  0]])\\n\",\n      \"tensor([[ 6,  4, 10, 26, 28,  3,  2],\\n\",\n      \"        [ 8,  4, 37,  3,  2,  0,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[ 0.0257,  0.7608,  0.1952,  0.7084, -0.8220, -0.2114, -0.8578,\\n\",\n      \"          -0.9145,  0.7701, -0.3977,  0.6470, -0.8317, -0.6330,  0.4551,\\n\",\n      \"           0.2623,  0.8356, -0.6958,  0.7413,  0.8811,  0.9719, -0.8166,\\n\",\n      \"          -0.2714,  0.5886,  0.6910,  0.8099, -0.9161, -0.4103, -0.4174,\\n\",\n      \"          -0.5292, -0.1998,  0.0554, -0.4264,  0.9613,  0.5796, -0.2952,\\n\",\n      \"           0.6730,  0.8346,  0.7296, -0.0293, -0.8009, -0.5521, -0.9475,\\n\",\n      \"           0.0497,  0.5486, -0.8027,  0.8599, -0.6222, -0.8526,  0.8965,\\n\",\n      \"           0.9290, -0.5913,  0.9314, -0.6346,  0.3842, -0.6670,  0.4931,\\n\",\n      \"          -0.7555,  0.7366,  0.9262,  0.7989, -0.4921,  0.6782,  0.8984,\\n\",\n      \"          -0.9151],\\n\",\n      \"         [-0.7170,  0.9946,  0.2001,  0.0835, -0.6144, -0.1523, -0.9858,\\n\",\n      \"          -0.9394,  0.9803, -0.6567,  0.7709, -0.9762, -0.8259,  0.9954,\\n\",\n      \"           0.1657,  0.7995, -0.4178,  0.9870,  0.9865,  0.9567, -0.8958,\\n\",\n      \"          -0.4879,  0.6675,  0.6189,  0.8001, -0.9052, -0.7355, -0.2388,\\n\",\n      \"          -0.1095, -0.2719, -0.0088, -0.6197,  0.9563, -0.0013,  0.2816,\\n\",\n      \"           0.9368,  0.9279,  0.8263,  0.0327, -0.8375, -0.7684, -0.9716,\\n\",\n      \"           0.1923, -0.3077, -0.9891,  0.6632, -0.7312, -0.9647,  0.8973,\\n\",\n      \"           0.9924, -0.0549,  0.9862, -0.9876,  0.2897, -0.8521,  0.5444,\\n\",\n      \"          -0.9373,  0.9275,  0.9599,  0.7495, -0.9927,  0.9667,  0.9693,\\n\",\n      \"          -0.9140]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-2.1643e-01,  4.0703e-01,  3.2634e-01, -5.0862e-01, -5.9415e-01,\\n\",\n      \"           5.1934e-01,  2.3474e-02,  5.2337e-01, -3.0883e-01, -1.4427e-01,\\n\",\n      \"           4.1089e-01,  2.8636e-01,  4.1313e-01, -2.1515e-01,  1.8673e-01,\\n\",\n      \"          -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\\n\",\n      \"           6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\\n\",\n      \"          -9.0624e-02,  8.4112e-01,  4.1783e-01,  4.2457e-01,  4.4339e-01,\\n\",\n      \"          -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\\n\",\n      \"          -1.0899e-01,  2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\\n\",\n      \"          -1.1454e-01, -1.9440e-01,  1.8098e-01,  3.7718e-01,  4.4388e-01,\\n\",\n      \"          -1.9044e-01,  1.2831e-01,  9.2631e-02, -5.9981e-01, -1.7597e-01,\\n\",\n      \"           2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02,  1.3814e-01,\\n\",\n      \"           4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\\n\",\n      \"           4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\\n\",\n      \"         [-2.7921e-01,  5.5246e-01, -2.3130e-01,  6.0324e-02, -1.0443e-01,\\n\",\n      \"          -9.6127e-02, -4.8838e-01,  1.7342e-01, -1.6244e-03, -1.5950e-01,\\n\",\n      \"          -2.0051e-01, -2.3869e-01, -6.2903e-01,  3.7441e-01,  1.1054e-01,\\n\",\n      \"          -4.1060e-01,  4.7134e-01,  3.1578e-01,  2.8223e-01, -7.0127e-01,\\n\",\n      \"          -6.8227e-01, -1.6815e-01,  1.2664e-01, -3.3500e-02,  2.8114e-01,\\n\",\n      \"          -3.8212e-02,  3.1934e-01,  3.1801e-01, -1.0009e-01, -1.3935e-01,\\n\",\n      \"           3.5000e-01, -1.1332e-01,  1.6779e-01, -4.4952e-01, -2.7263e-01,\\n\",\n      \"          -2.6393e-02, -2.0009e-01,  2.5008e-01, -5.6962e-02, -3.3716e-01,\\n\",\n      \"           1.2111e-01,  7.2555e-01, -1.6554e-01,  3.0319e-02, -7.2813e-01,\\n\",\n      \"          -5.0258e-01,  4.6271e-01, -2.0600e-01,  7.9482e-02,  4.5408e-01,\\n\",\n      \"           1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\\n\",\n      \"           3.1461e-01, -5.0918e-01,  1.8147e-01,  6.9853e-02, -1.7200e-01,\\n\",\n      \"          -1.3063e-01,  1.5399e-01,  3.4001e-01, -5.4762e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.9094e-01,  2.9604e-01, -6.4331e-01,  8.5796e-01, -5.0427e-01,\\n\",\n      \"          -3.9154e-01,  1.1564e-01,  7.4492e-01,  2.2174e-01, -3.8437e-01,\\n\",\n      \"           3.4773e-01,  2.4916e-02,  3.9094e-01, -6.5730e-01,  5.5876e-01,\\n\",\n      \"           4.9713e-01,  4.2008e-01,  1.7297e-01,  2.0467e-01, -4.0904e-01,\\n\",\n      \"          -3.2362e-01,  1.3526e-01,  5.7380e-02,  8.0937e-01,  4.6005e-01,\\n\",\n      \"          -4.4897e-01,  8.0193e-01,  2.0982e-01,  5.7502e-02,  1.6175e-01,\\n\",\n      \"           1.6195e-01,  6.5908e-02,  8.0127e-01,  2.1267e-01, -3.2248e-01,\\n\",\n      \"           6.1880e-02, -6.0822e-01,  9.2528e-01,  1.5635e-01,  6.5912e-01,\\n\",\n      \"          -2.5814e-01,  6.9864e-02, -6.9100e-02, -2.0400e-01,  4.4236e-01,\\n\",\n      \"          -3.8749e-01,  2.2603e-01, -7.3010e-01, -6.7803e-02,  6.0987e-01,\\n\",\n      \"          -2.3944e-01, -2.2402e-01,  3.4141e-02, -7.5317e-01, -1.9034e-01,\\n\",\n      \"           1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01,  4.8121e-01,\\n\",\n      \"          -6.4265e-01, -7.2166e-01,  6.8618e-02, -1.7256e-01],\\n\",\n      \"         [-4.2395e-01,  4.3782e-01, -3.7864e-01,  4.6429e-01, -1.9293e-01,\\n\",\n      \"          -1.8951e-01, -2.7415e-01,  1.4951e-01, -3.3036e-01, -6.2952e-02,\\n\",\n      \"          -2.8961e-01,  2.6387e-01, -6.7616e-01,  8.8255e-03, -1.3174e-02,\\n\",\n      \"          -5.0924e-01, -5.3128e-02, -1.0846e-01,  4.2621e-01, -6.4251e-01,\\n\",\n      \"          -1.9010e-01, -8.9229e-02, -1.8645e-02,  1.4834e-01,  4.4270e-01,\\n\",\n      \"          -1.6318e-01,  5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\\n\",\n      \"           4.5368e-01, -2.8125e-01,  2.3815e-01, -3.6399e-01, -2.3326e-01,\\n\",\n      \"          -1.2933e-01, -3.3350e-01,  4.6229e-02, -1.8867e-01, -8.2094e-02,\\n\",\n      \"          -2.6307e-01,  7.5736e-01, -2.3453e-03,  1.3690e-01, -1.8830e-01,\\n\",\n      \"          -3.6770e-01,  2.2573e-03, -2.6534e-01,  1.3679e-01,  5.0285e-01,\\n\",\n      \"          -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\\n\",\n      \"           6.7031e-02, -6.5419e-02,  1.1711e-01,  3.5437e-02, -3.1980e-01,\\n\",\n      \"           2.7608e-01,  4.2805e-01,  1.0529e-01, -6.9090e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.6467e-01, -2.1472e-02, -2.3705e-01,  8.1433e-01,  1.1691e-01,\\n\",\n      \"          -5.2326e-01,  2.7152e-01,  7.2288e-01, -2.7715e-01, -5.5603e-02,\\n\",\n      \"           6.1393e-01, -3.2977e-02,  2.7468e-01, -5.7310e-01,  4.7398e-01,\\n\",\n      \"           3.3744e-01,  3.9739e-01, -3.0474e-02,  1.2378e-01, -3.6966e-02,\\n\",\n      \"          -5.7119e-01,  4.0540e-01,  7.2925e-02,  6.0944e-01,  3.6532e-01,\\n\",\n      \"          -5.7006e-01,  6.2813e-01,  1.8211e-01, -1.2571e-01,  2.1051e-01,\\n\",\n      \"           2.2644e-01,  2.3753e-01,  1.0566e-01,  3.3964e-01, -9.8686e-02,\\n\",\n      \"           7.1103e-02, -5.1788e-01,  8.2421e-01,  4.0273e-01,  5.9817e-01,\\n\",\n      \"          -5.9287e-01,  5.6128e-02, -3.0473e-01,  1.4045e-01,  1.7209e-01,\\n\",\n      \"          -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\\n\",\n      \"           2.0601e-01,  3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\\n\",\n      \"          -1.6437e-01,  9.7025e-02, -2.7640e-01, -1.8737e-01,  2.3292e-01,\\n\",\n      \"          -4.5736e-01, -5.6993e-01,  3.8426e-01, -5.8431e-01],\\n\",\n      \"         [ 2.9292e-02,  4.2082e-01,  1.1496e-01, -1.3269e-01, -4.9844e-01,\\n\",\n      \"          -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\\n\",\n      \"          -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01,  3.1475e-02,\\n\",\n      \"          -3.9173e-01,  1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\\n\",\n      \"           3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02,  3.3985e-01,\\n\",\n      \"           4.4148e-02,  7.0217e-02, -9.1169e-02,  2.0149e-01, -5.0179e-01,\\n\",\n      \"           4.1926e-01, -2.3867e-01, -2.1852e-01,  4.9277e-02, -4.5147e-02,\\n\",\n      \"          -1.3929e-01, -2.5047e-01,  4.9927e-01, -3.6437e-01, -3.5151e-01,\\n\",\n      \"          -1.4846e-01,  2.4364e-01, -2.1723e-01, -4.6918e-02,  1.4216e-01,\\n\",\n      \"          -5.0783e-02, -2.6806e-01,  8.9650e-03,  3.0882e-01, -5.4537e-02,\\n\",\n      \"          -1.0623e-01,  8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\\n\",\n      \"           3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\\n\",\n      \"           3.3971e-01,  8.3942e-02, -1.2739e-01, -6.4155e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9462e-01, -2.2764e-01, -3.7951e-02,  4.0051e-01, -2.9822e-01,\\n\",\n      \"           1.9265e-01,  9.7957e-02,  3.4318e-01,  6.5615e-02,  1.4674e-01,\\n\",\n      \"           1.9097e-01, -1.9940e-01,  1.4437e-01, -2.2148e-01,  5.6047e-01,\\n\",\n      \"           5.2499e-01,  4.4121e-01, -2.5948e-01,  1.0898e-01, -2.9630e-01,\\n\",\n      \"          -1.4722e-01,  2.0510e-01,  3.2749e-02,  5.3201e-01,  5.3504e-01,\\n\",\n      \"          -5.3038e-01,  6.1319e-01,  1.6065e-01, -3.3821e-02,  1.9661e-01,\\n\",\n      \"           5.2853e-01, -2.7200e-01,  1.5528e-01,  2.8527e-01, -1.4127e-01,\\n\",\n      \"           1.4125e-02, -2.4507e-01,  5.8318e-01,  2.6271e-01,  6.1537e-01,\\n\",\n      \"           5.7424e-02,  1.5592e-01, -1.7715e-01,  1.8923e-01,  4.4712e-01,\\n\",\n      \"          -3.3768e-01, -1.8343e-01, -5.5573e-02,  4.3081e-01,  8.3409e-02,\\n\",\n      \"           2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\\n\",\n      \"           4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01,  3.5492e-01,\\n\",\n      \"          -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\\n\",\n      \"         [ 5.8269e-02,  8.0529e-01,  3.1633e-01,  3.5130e-02, -4.0030e-01,\\n\",\n      \"          -5.2046e-01, -5.7112e-01,  1.2411e-01,  5.1932e-01,  8.1681e-02,\\n\",\n      \"          -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01,  2.6595e-01,\\n\",\n      \"           2.8538e-01,  5.4966e-01, -2.2023e-01,  6.2513e-01, -7.1846e-01,\\n\",\n      \"           1.5489e-01, -2.3305e-01, -2.8478e-01,  4.7244e-02,  6.0448e-01,\\n\",\n      \"          -2.4189e-02,  1.3727e-01,  4.3836e-02,  1.9764e-01, -4.9993e-01,\\n\",\n      \"           6.4335e-01, -6.3273e-01, -1.7085e-01,  3.6792e-01, -1.1653e-02,\\n\",\n      \"           5.9266e-02, -1.4715e-01,  6.0236e-01, -5.3754e-01, -3.3864e-01,\\n\",\n      \"          -1.6203e-01,  4.6025e-01, -1.2995e-01,  1.5817e-01, -1.0733e-01,\\n\",\n      \"          -7.5994e-02, -1.4720e-01,  7.4298e-02,  6.0721e-01,  3.2473e-01,\\n\",\n      \"          -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\\n\",\n      \"           2.0282e-01, -5.1651e-01,  1.3683e-03, -2.0047e-01,  7.6022e-01,\\n\",\n      \"          -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.4355e-01,  9.7544e-02,  4.9027e-02,  3.3419e-01,  1.2388e-01,\\n\",\n      \"           7.1731e-02,  1.8976e-01,  4.4490e-01, -2.9891e-01,  2.0516e-01,\\n\",\n      \"          -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02,  5.4330e-02,\\n\",\n      \"           4.1832e-01,  3.2749e-01,  5.0725e-02,  5.7945e-03, -1.6877e-01,\\n\",\n      \"          -4.3551e-02,  7.4475e-02,  5.0754e-01,  5.8456e-01,  3.5108e-01,\\n\",\n      \"          -3.2765e-01,  6.2981e-01, -2.1042e-01, -1.5040e-02,  3.9792e-01,\\n\",\n      \"           3.3859e-01, -2.2759e-01,  4.8875e-03,  2.0304e-01, -1.8557e-01,\\n\",\n      \"           5.1139e-01, -6.3578e-02,  3.7445e-01,  2.5876e-01,  3.2321e-01,\\n\",\n      \"           3.3812e-01,  4.8470e-01, -3.5065e-02,  5.6784e-01,  6.2865e-01,\\n\",\n      \"          -3.4431e-01, -3.1394e-01,  2.1078e-01,  5.3845e-01,  3.1855e-01,\\n\",\n      \"           4.3601e-01, -3.4167e-03, -4.5149e-02,  4.3369e-02,  4.9973e-02,\\n\",\n      \"           5.7321e-01, -6.1557e-02,  1.4944e-01, -1.7503e-02,  1.5900e-01,\\n\",\n      \"          -1.2167e-01, -4.7770e-01,  4.0990e-02, -1.3854e-01],\\n\",\n      \"         [-1.2090e-01,  6.5291e-01,  4.9012e-01,  6.3469e-01, -6.1991e-01,\\n\",\n      \"          -4.5836e-01, -6.4770e-01, -8.5862e-01,  6.3087e-01, -1.7720e-02,\\n\",\n      \"           1.7558e-01, -8.4372e-01, -6.0052e-01,  3.6973e-01,  1.8317e-01,\\n\",\n      \"           7.5792e-01,  5.6800e-01,  6.3874e-01,  7.7846e-01, -7.3676e-01,\\n\",\n      \"          -8.1896e-01, -3.2437e-01, -5.9558e-02,  1.6930e-01,  4.0612e-01,\\n\",\n      \"          -9.0851e-01,  7.4943e-01,  7.0389e-02, -3.3322e-01, -3.4272e-01,\\n\",\n      \"           8.7254e-01, -3.7895e-01,  5.6617e-01,  2.2784e-01, -5.8411e-01,\\n\",\n      \"           2.4766e-01, -8.4705e-01,  7.5885e-01,  2.6971e-01, -2.0708e-01,\\n\",\n      \"          -2.3187e-01, -6.6556e-01, -7.9039e-01,  5.7092e-01, -9.1081e-03,\\n\",\n      \"           3.3079e-02, -3.3478e-01,  2.8295e-01,  7.9911e-01,  8.7098e-01,\\n\",\n      \"          -3.8057e-01,  5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\\n\",\n      \"           6.5749e-01, -8.2280e-01,  4.0088e-01,  9.4624e-01,  7.4583e-01,\\n\",\n      \"          -1.8822e-01, -1.5356e-01,  9.0531e-01, -9.4046e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4370e-01,  6.9390e-01,  3.4906e-01,  1.8600e-01, -1.0352e-01,\\n\",\n      \"          -1.8402e-01, -4.7587e-01,  3.9898e-01,  4.0702e-01,  3.4950e-01,\\n\",\n      \"           5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02,  2.1085e-01,\\n\",\n      \"           5.8135e-01,  6.0812e-01, -4.3868e-02,  5.5309e-01, -5.7745e-01,\\n\",\n      \"           1.1744e-01,  2.9086e-02,  1.2145e-01,  5.4306e-01,  6.4010e-01,\\n\",\n      \"          -2.5673e-01,  6.0993e-01, -7.3052e-03,  7.7005e-02,  2.6385e-01,\\n\",\n      \"           6.2501e-01, -6.7076e-01, -9.6880e-02,  3.9839e-01, -1.2475e-01,\\n\",\n      \"           3.5841e-01, -4.1073e-02,  5.3352e-01, -2.4644e-01,  7.5658e-02,\\n\",\n      \"           1.7233e-01,  5.7383e-01, -8.7162e-02,  4.8839e-01,  1.1819e-01,\\n\",\n      \"          -1.4091e-01, -1.5005e-01,  2.0554e-01,  7.3376e-01,  5.7186e-01,\\n\",\n      \"           2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\\n\",\n      \"           4.2501e-01, -4.6323e-01,  1.3973e-01, -2.1567e-01,  8.0603e-01,\\n\",\n      \"          -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\\n\",\n      \"         [-6.1965e-01,  9.8332e-01,  5.0493e-01,  2.8111e-01, -5.3563e-01,\\n\",\n      \"          -5.9760e-01, -9.7713e-01, -9.0046e-01,  9.2203e-01,  3.4881e-04,\\n\",\n      \"           3.0716e-01, -9.3601e-01, -7.7404e-01,  9.6783e-01,  1.1720e-01,\\n\",\n      \"           7.5584e-01,  5.2906e-01,  9.7504e-01,  9.7287e-01, -7.2797e-01,\\n\",\n      \"          -9.8892e-01, -3.6624e-01, -1.9580e-02,  3.4981e-01,  3.2603e-01,\\n\",\n      \"          -9.0325e-01,  5.5451e-01,  1.3807e-01, -2.0965e-02, -4.0570e-02,\\n\",\n      \"           9.6092e-01, -5.8279e-01,  4.7798e-01, -4.6821e-01,  2.7388e-03,\\n\",\n      \"           7.5130e-01, -7.7676e-01,  8.5018e-01,  5.0395e-01, -2.3900e-01,\\n\",\n      \"           8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\\n\",\n      \"           4.2121e-02, -3.8591e-01, -4.9300e-01,  8.2269e-01,  9.6996e-01,\\n\",\n      \"          -8.6781e-01,  8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\\n\",\n      \"           6.9462e-01, -9.9058e-01,  7.5560e-01,  9.5516e-01,  8.5390e-01,\\n\",\n      \"          -9.3777e-01,  7.3466e-01,  9.5822e-01, -9.6689e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.2412e-02,  5.5587e-01,  5.2648e-01,  6.8613e-01, -5.2126e-01,\\n\",\n      \"          -2.6911e-01, -6.0472e-01, -8.5598e-01,  5.5327e-01,  1.5888e-01,\\n\",\n      \"           1.6669e-01, -7.6833e-01, -4.9673e-01,  4.0409e-01,  1.4775e-01,\\n\",\n      \"           8.2823e-01,  6.1798e-01,  6.2634e-01,  7.0638e-01, -6.3201e-01,\\n\",\n      \"          -8.1080e-01, -1.9344e-01,  2.3377e-01,  5.5736e-01,  4.0636e-01,\\n\",\n      \"          -9.2914e-01,  8.4626e-01,  4.3793e-02, -4.0619e-01,  1.3983e-01,\\n\",\n      \"           8.7200e-01, -3.6435e-01,  5.4387e-01,  1.9864e-01, -6.3067e-01,\\n\",\n      \"           3.2501e-01, -8.2716e-01,  7.3380e-01,  3.2731e-01,  1.1471e-01,\\n\",\n      \"           4.2973e-02, -5.7053e-01, -7.6254e-01,  6.5678e-01,  1.9348e-01,\\n\",\n      \"           9.6505e-03, -3.7881e-01,  3.7071e-01,  8.6609e-01,  9.2239e-01,\\n\",\n      \"          -2.5739e-01,  5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\\n\",\n      \"           7.2268e-01, -7.9991e-01,  4.7691e-01,  9.3956e-01,  7.7451e-01,\\n\",\n      \"          -3.3390e-01, -2.0639e-01,  9.0730e-01, -9.1102e-01],\\n\",\n      \"         [-8.2056e-01,  9.9517e-01,  5.2822e-01, -2.9103e-02, -4.4076e-01,\\n\",\n      \"          -5.0182e-01, -9.9669e-01, -9.2137e-01,  9.6995e-01,  9.8441e-03,\\n\",\n      \"           3.5683e-01, -9.7109e-01, -8.6985e-01,  9.9538e-01,  6.6071e-02,\\n\",\n      \"           7.5521e-01,  5.4956e-01,  9.8520e-01,  9.9528e-01, -7.4652e-01,\\n\",\n      \"          -9.9837e-01, -4.0200e-01,  1.3232e-02,  4.5854e-01,  2.7352e-01,\\n\",\n      \"          -8.9861e-01,  4.5760e-01,  1.9683e-01,  9.8737e-02,  5.9758e-02,\\n\",\n      \"           9.7392e-01, -7.3979e-01,  3.9800e-01, -6.4981e-01,  3.9077e-01,\\n\",\n      \"           8.7535e-01, -7.1771e-01,  9.1071e-01,  6.2887e-01, -2.6265e-01,\\n\",\n      \"           9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\\n\",\n      \"           5.0785e-02, -4.2154e-01, -7.8124e-01,  8.4035e-01,  9.9191e-01,\\n\",\n      \"          -9.3793e-01,  9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\\n\",\n      \"           7.2309e-01, -9.9203e-01,  8.8789e-01,  9.6214e-01,  9.1157e-01,\\n\",\n      \"          -9.9297e-01,  8.7711e-01,  9.7576e-01, -9.8162e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([6, 8])\\n\",\n      \"dec_state: tensor([[[-0.0897,  0.6267,  0.3705,  0.4170, -0.2316,  0.2110, -0.2141,\\n\",\n      \"          -0.2169,  0.8292, -0.7173, -0.6847, -0.9468, -0.6876,  0.4888,\\n\",\n      \"           0.1389,  0.5996,  0.6330,  0.7681,  0.7616,  0.7816, -0.3708,\\n\",\n      \"           0.4293,  0.3216,  0.8708, -0.1233, -0.9128,  0.6912, -0.3638,\\n\",\n      \"          -0.8211, -0.4372,  0.1206,  0.2035,  0.8014,  0.4522, -0.5063,\\n\",\n      \"           0.3544,  0.6205,  0.5835, -0.4024, -0.4807, -0.4116, -0.7531,\\n\",\n      \"          -0.7665,  0.7638, -0.8251, -0.6089, -0.5825, -0.2108,  0.1335,\\n\",\n      \"           0.9424,  0.8174,  0.4705, -0.8583,  0.2764, -0.9442,  0.3900,\\n\",\n      \"          -0.6942, -0.7099,  0.9335, -0.6479, -0.5481,  0.8296,  0.7493,\\n\",\n      \"           0.2921],\\n\",\n      \"         [-0.7378,  0.9054, -0.1446,  0.1767, -0.4181,  0.6337, -0.9301,\\n\",\n      \"          -0.7388,  0.9611, -0.8653, -0.7742, -0.9592, -0.8655,  0.9938,\\n\",\n      \"           0.5080,  0.6663,  0.4038,  0.9180,  0.9493,  0.9487,  0.4128,\\n\",\n      \"          -0.4383,  0.6572,  0.7638,  0.2550, -0.9172,  0.7786, -0.0015,\\n\",\n      \"          -0.8239,  0.5808, -0.2157, -0.2151,  0.8969,  0.2925, -0.7788,\\n\",\n      \"           0.1941,  0.9427,  0.8163, -0.4540, -0.6312, -0.9330,  0.4678,\\n\",\n      \"          -0.6296,  0.0969, -0.9291, -0.0245, -0.8531, -0.8951, -0.1613,\\n\",\n      \"           0.9895,  0.9187,  0.9624, -0.9843,  0.6982, -0.8912,  0.2347,\\n\",\n      \"          -0.8581,  0.2964,  0.9550, -0.8392, -0.9868,  0.8875,  0.9393,\\n\",\n      \"          -0.1283]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-2.1643e-01,  4.0703e-01,  3.2634e-01, -5.0862e-01, -5.9415e-01,\\n\",\n      \"           5.1934e-01,  2.3474e-02,  5.2337e-01, -3.0883e-01, -1.4427e-01,\\n\",\n      \"           4.1089e-01,  2.8636e-01,  4.1313e-01, -2.1515e-01,  1.8673e-01,\\n\",\n      \"          -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\\n\",\n      \"           6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\\n\",\n      \"          -9.0624e-02,  8.4112e-01,  4.1783e-01,  4.2457e-01,  4.4339e-01,\\n\",\n      \"          -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\\n\",\n      \"          -1.0899e-01,  2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\\n\",\n      \"          -1.1454e-01, -1.9440e-01,  1.8098e-01,  3.7718e-01,  4.4388e-01,\\n\",\n      \"          -1.9044e-01,  1.2831e-01,  9.2631e-02, -5.9981e-01, -1.7597e-01,\\n\",\n      \"           2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02,  1.3814e-01,\\n\",\n      \"           4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\\n\",\n      \"           4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\\n\",\n      \"         [-2.7921e-01,  5.5246e-01, -2.3130e-01,  6.0324e-02, -1.0443e-01,\\n\",\n      \"          -9.6127e-02, -4.8838e-01,  1.7342e-01, -1.6244e-03, -1.5950e-01,\\n\",\n      \"          -2.0051e-01, -2.3869e-01, -6.2903e-01,  3.7441e-01,  1.1054e-01,\\n\",\n      \"          -4.1060e-01,  4.7134e-01,  3.1578e-01,  2.8223e-01, -7.0127e-01,\\n\",\n      \"          -6.8227e-01, -1.6815e-01,  1.2664e-01, -3.3500e-02,  2.8114e-01,\\n\",\n      \"          -3.8212e-02,  3.1934e-01,  3.1801e-01, -1.0009e-01, -1.3935e-01,\\n\",\n      \"           3.5000e-01, -1.1332e-01,  1.6779e-01, -4.4952e-01, -2.7263e-01,\\n\",\n      \"          -2.6393e-02, -2.0009e-01,  2.5008e-01, -5.6962e-02, -3.3716e-01,\\n\",\n      \"           1.2111e-01,  7.2555e-01, -1.6554e-01,  3.0319e-02, -7.2813e-01,\\n\",\n      \"          -5.0258e-01,  4.6271e-01, -2.0600e-01,  7.9482e-02,  4.5408e-01,\\n\",\n      \"           1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\\n\",\n      \"           3.1461e-01, -5.0918e-01,  1.8147e-01,  6.9853e-02, -1.7200e-01,\\n\",\n      \"          -1.3063e-01,  1.5399e-01,  3.4001e-01, -5.4762e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.9094e-01,  2.9604e-01, -6.4331e-01,  8.5796e-01, -5.0427e-01,\\n\",\n      \"          -3.9154e-01,  1.1564e-01,  7.4492e-01,  2.2174e-01, -3.8437e-01,\\n\",\n      \"           3.4773e-01,  2.4916e-02,  3.9094e-01, -6.5730e-01,  5.5876e-01,\\n\",\n      \"           4.9713e-01,  4.2008e-01,  1.7297e-01,  2.0467e-01, -4.0904e-01,\\n\",\n      \"          -3.2362e-01,  1.3526e-01,  5.7380e-02,  8.0937e-01,  4.6005e-01,\\n\",\n      \"          -4.4897e-01,  8.0193e-01,  2.0982e-01,  5.7502e-02,  1.6175e-01,\\n\",\n      \"           1.6195e-01,  6.5908e-02,  8.0127e-01,  2.1267e-01, -3.2248e-01,\\n\",\n      \"           6.1880e-02, -6.0822e-01,  9.2528e-01,  1.5635e-01,  6.5912e-01,\\n\",\n      \"          -2.5814e-01,  6.9864e-02, -6.9100e-02, -2.0400e-01,  4.4236e-01,\\n\",\n      \"          -3.8749e-01,  2.2603e-01, -7.3010e-01, -6.7803e-02,  6.0987e-01,\\n\",\n      \"          -2.3944e-01, -2.2402e-01,  3.4141e-02, -7.5317e-01, -1.9034e-01,\\n\",\n      \"           1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01,  4.8121e-01,\\n\",\n      \"          -6.4265e-01, -7.2166e-01,  6.8618e-02, -1.7256e-01],\\n\",\n      \"         [-4.2395e-01,  4.3782e-01, -3.7864e-01,  4.6429e-01, -1.9293e-01,\\n\",\n      \"          -1.8951e-01, -2.7415e-01,  1.4951e-01, -3.3036e-01, -6.2952e-02,\\n\",\n      \"          -2.8961e-01,  2.6387e-01, -6.7616e-01,  8.8255e-03, -1.3174e-02,\\n\",\n      \"          -5.0924e-01, -5.3128e-02, -1.0846e-01,  4.2621e-01, -6.4251e-01,\\n\",\n      \"          -1.9010e-01, -8.9229e-02, -1.8645e-02,  1.4834e-01,  4.4270e-01,\\n\",\n      \"          -1.6318e-01,  5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\\n\",\n      \"           4.5368e-01, -2.8125e-01,  2.3815e-01, -3.6399e-01, -2.3326e-01,\\n\",\n      \"          -1.2933e-01, -3.3350e-01,  4.6229e-02, -1.8867e-01, -8.2094e-02,\\n\",\n      \"          -2.6307e-01,  7.5736e-01, -2.3453e-03,  1.3690e-01, -1.8830e-01,\\n\",\n      \"          -3.6770e-01,  2.2573e-03, -2.6534e-01,  1.3679e-01,  5.0285e-01,\\n\",\n      \"          -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\\n\",\n      \"           6.7031e-02, -6.5419e-02,  1.1711e-01,  3.5437e-02, -3.1980e-01,\\n\",\n      \"           2.7608e-01,  4.2805e-01,  1.0529e-01, -6.9090e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.6467e-01, -2.1472e-02, -2.3705e-01,  8.1433e-01,  1.1691e-01,\\n\",\n      \"          -5.2326e-01,  2.7152e-01,  7.2288e-01, -2.7715e-01, -5.5603e-02,\\n\",\n      \"           6.1393e-01, -3.2977e-02,  2.7468e-01, -5.7310e-01,  4.7398e-01,\\n\",\n      \"           3.3744e-01,  3.9739e-01, -3.0474e-02,  1.2378e-01, -3.6966e-02,\\n\",\n      \"          -5.7119e-01,  4.0540e-01,  7.2925e-02,  6.0944e-01,  3.6532e-01,\\n\",\n      \"          -5.7006e-01,  6.2813e-01,  1.8211e-01, -1.2571e-01,  2.1051e-01,\\n\",\n      \"           2.2644e-01,  2.3753e-01,  1.0566e-01,  3.3964e-01, -9.8686e-02,\\n\",\n      \"           7.1103e-02, -5.1788e-01,  8.2421e-01,  4.0273e-01,  5.9817e-01,\\n\",\n      \"          -5.9287e-01,  5.6128e-02, -3.0473e-01,  1.4045e-01,  1.7209e-01,\\n\",\n      \"          -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\\n\",\n      \"           2.0601e-01,  3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\\n\",\n      \"          -1.6437e-01,  9.7025e-02, -2.7640e-01, -1.8737e-01,  2.3292e-01,\\n\",\n      \"          -4.5736e-01, -5.6993e-01,  3.8426e-01, -5.8431e-01],\\n\",\n      \"         [ 2.9292e-02,  4.2082e-01,  1.1496e-01, -1.3269e-01, -4.9844e-01,\\n\",\n      \"          -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\\n\",\n      \"          -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01,  3.1475e-02,\\n\",\n      \"          -3.9173e-01,  1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\\n\",\n      \"           3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02,  3.3985e-01,\\n\",\n      \"           4.4148e-02,  7.0217e-02, -9.1169e-02,  2.0149e-01, -5.0179e-01,\\n\",\n      \"           4.1926e-01, -2.3867e-01, -2.1852e-01,  4.9277e-02, -4.5147e-02,\\n\",\n      \"          -1.3929e-01, -2.5047e-01,  4.9927e-01, -3.6437e-01, -3.5151e-01,\\n\",\n      \"          -1.4846e-01,  2.4364e-01, -2.1723e-01, -4.6918e-02,  1.4216e-01,\\n\",\n      \"          -5.0783e-02, -2.6806e-01,  8.9650e-03,  3.0882e-01, -5.4537e-02,\\n\",\n      \"          -1.0623e-01,  8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\\n\",\n      \"           3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\\n\",\n      \"           3.3971e-01,  8.3942e-02, -1.2739e-01, -6.4155e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9462e-01, -2.2764e-01, -3.7951e-02,  4.0051e-01, -2.9822e-01,\\n\",\n      \"           1.9265e-01,  9.7957e-02,  3.4318e-01,  6.5615e-02,  1.4674e-01,\\n\",\n      \"           1.9097e-01, -1.9940e-01,  1.4437e-01, -2.2148e-01,  5.6047e-01,\\n\",\n      \"           5.2499e-01,  4.4121e-01, -2.5948e-01,  1.0898e-01, -2.9630e-01,\\n\",\n      \"          -1.4722e-01,  2.0510e-01,  3.2749e-02,  5.3201e-01,  5.3504e-01,\\n\",\n      \"          -5.3038e-01,  6.1319e-01,  1.6065e-01, -3.3821e-02,  1.9661e-01,\\n\",\n      \"           5.2853e-01, -2.7200e-01,  1.5528e-01,  2.8527e-01, -1.4127e-01,\\n\",\n      \"           1.4125e-02, -2.4507e-01,  5.8318e-01,  2.6271e-01,  6.1537e-01,\\n\",\n      \"           5.7424e-02,  1.5592e-01, -1.7715e-01,  1.8923e-01,  4.4712e-01,\\n\",\n      \"          -3.3768e-01, -1.8343e-01, -5.5573e-02,  4.3081e-01,  8.3409e-02,\\n\",\n      \"           2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\\n\",\n      \"           4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01,  3.5492e-01,\\n\",\n      \"          -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\\n\",\n      \"         [ 5.8269e-02,  8.0529e-01,  3.1633e-01,  3.5130e-02, -4.0030e-01,\\n\",\n      \"          -5.2046e-01, -5.7112e-01,  1.2411e-01,  5.1932e-01,  8.1681e-02,\\n\",\n      \"          -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01,  2.6595e-01,\\n\",\n      \"           2.8538e-01,  5.4966e-01, -2.2023e-01,  6.2513e-01, -7.1846e-01,\\n\",\n      \"           1.5489e-01, -2.3305e-01, -2.8478e-01,  4.7244e-02,  6.0448e-01,\\n\",\n      \"          -2.4189e-02,  1.3727e-01,  4.3836e-02,  1.9764e-01, -4.9993e-01,\\n\",\n      \"           6.4335e-01, -6.3273e-01, -1.7085e-01,  3.6792e-01, -1.1653e-02,\\n\",\n      \"           5.9266e-02, -1.4715e-01,  6.0236e-01, -5.3754e-01, -3.3864e-01,\\n\",\n      \"          -1.6203e-01,  4.6025e-01, -1.2995e-01,  1.5817e-01, -1.0733e-01,\\n\",\n      \"          -7.5994e-02, -1.4720e-01,  7.4298e-02,  6.0721e-01,  3.2473e-01,\\n\",\n      \"          -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\\n\",\n      \"           2.0282e-01, -5.1651e-01,  1.3683e-03, -2.0047e-01,  7.6022e-01,\\n\",\n      \"          -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.4355e-01,  9.7544e-02,  4.9027e-02,  3.3419e-01,  1.2388e-01,\\n\",\n      \"           7.1731e-02,  1.8976e-01,  4.4490e-01, -2.9891e-01,  2.0516e-01,\\n\",\n      \"          -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02,  5.4330e-02,\\n\",\n      \"           4.1832e-01,  3.2749e-01,  5.0725e-02,  5.7945e-03, -1.6877e-01,\\n\",\n      \"          -4.3551e-02,  7.4475e-02,  5.0754e-01,  5.8456e-01,  3.5108e-01,\\n\",\n      \"          -3.2765e-01,  6.2981e-01, -2.1042e-01, -1.5040e-02,  3.9792e-01,\\n\",\n      \"           3.3859e-01, -2.2759e-01,  4.8875e-03,  2.0304e-01, -1.8557e-01,\\n\",\n      \"           5.1139e-01, -6.3578e-02,  3.7445e-01,  2.5876e-01,  3.2321e-01,\\n\",\n      \"           3.3812e-01,  4.8470e-01, -3.5065e-02,  5.6784e-01,  6.2865e-01,\\n\",\n      \"          -3.4431e-01, -3.1394e-01,  2.1078e-01,  5.3845e-01,  3.1855e-01,\\n\",\n      \"           4.3601e-01, -3.4167e-03, -4.5149e-02,  4.3369e-02,  4.9973e-02,\\n\",\n      \"           5.7321e-01, -6.1557e-02,  1.4944e-01, -1.7503e-02,  1.5900e-01,\\n\",\n      \"          -1.2167e-01, -4.7770e-01,  4.0990e-02, -1.3854e-01],\\n\",\n      \"         [-1.2090e-01,  6.5291e-01,  4.9012e-01,  6.3469e-01, -6.1991e-01,\\n\",\n      \"          -4.5836e-01, -6.4770e-01, -8.5862e-01,  6.3087e-01, -1.7720e-02,\\n\",\n      \"           1.7558e-01, -8.4372e-01, -6.0052e-01,  3.6973e-01,  1.8317e-01,\\n\",\n      \"           7.5792e-01,  5.6800e-01,  6.3874e-01,  7.7846e-01, -7.3676e-01,\\n\",\n      \"          -8.1896e-01, -3.2437e-01, -5.9558e-02,  1.6930e-01,  4.0612e-01,\\n\",\n      \"          -9.0851e-01,  7.4943e-01,  7.0389e-02, -3.3322e-01, -3.4272e-01,\\n\",\n      \"           8.7254e-01, -3.7895e-01,  5.6617e-01,  2.2784e-01, -5.8411e-01,\\n\",\n      \"           2.4766e-01, -8.4705e-01,  7.5885e-01,  2.6971e-01, -2.0708e-01,\\n\",\n      \"          -2.3187e-01, -6.6556e-01, -7.9039e-01,  5.7092e-01, -9.1081e-03,\\n\",\n      \"           3.3079e-02, -3.3478e-01,  2.8295e-01,  7.9911e-01,  8.7098e-01,\\n\",\n      \"          -3.8057e-01,  5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\\n\",\n      \"           6.5749e-01, -8.2280e-01,  4.0088e-01,  9.4624e-01,  7.4583e-01,\\n\",\n      \"          -1.8822e-01, -1.5356e-01,  9.0531e-01, -9.4046e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4370e-01,  6.9390e-01,  3.4906e-01,  1.8600e-01, -1.0352e-01,\\n\",\n      \"          -1.8402e-01, -4.7587e-01,  3.9898e-01,  4.0702e-01,  3.4950e-01,\\n\",\n      \"           5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02,  2.1085e-01,\\n\",\n      \"           5.8135e-01,  6.0812e-01, -4.3868e-02,  5.5309e-01, -5.7745e-01,\\n\",\n      \"           1.1744e-01,  2.9086e-02,  1.2145e-01,  5.4306e-01,  6.4010e-01,\\n\",\n      \"          -2.5673e-01,  6.0993e-01, -7.3052e-03,  7.7005e-02,  2.6385e-01,\\n\",\n      \"           6.2501e-01, -6.7076e-01, -9.6880e-02,  3.9839e-01, -1.2475e-01,\\n\",\n      \"           3.5841e-01, -4.1073e-02,  5.3352e-01, -2.4644e-01,  7.5658e-02,\\n\",\n      \"           1.7233e-01,  5.7383e-01, -8.7162e-02,  4.8839e-01,  1.1819e-01,\\n\",\n      \"          -1.4091e-01, -1.5005e-01,  2.0554e-01,  7.3376e-01,  5.7186e-01,\\n\",\n      \"           2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\\n\",\n      \"           4.2501e-01, -4.6323e-01,  1.3973e-01, -2.1567e-01,  8.0603e-01,\\n\",\n      \"          -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\\n\",\n      \"         [-6.1965e-01,  9.8332e-01,  5.0493e-01,  2.8111e-01, -5.3563e-01,\\n\",\n      \"          -5.9760e-01, -9.7713e-01, -9.0046e-01,  9.2203e-01,  3.4881e-04,\\n\",\n      \"           3.0716e-01, -9.3601e-01, -7.7404e-01,  9.6783e-01,  1.1720e-01,\\n\",\n      \"           7.5584e-01,  5.2906e-01,  9.7504e-01,  9.7287e-01, -7.2797e-01,\\n\",\n      \"          -9.8892e-01, -3.6624e-01, -1.9580e-02,  3.4981e-01,  3.2603e-01,\\n\",\n      \"          -9.0325e-01,  5.5451e-01,  1.3807e-01, -2.0965e-02, -4.0570e-02,\\n\",\n      \"           9.6092e-01, -5.8279e-01,  4.7798e-01, -4.6821e-01,  2.7388e-03,\\n\",\n      \"           7.5130e-01, -7.7676e-01,  8.5018e-01,  5.0395e-01, -2.3900e-01,\\n\",\n      \"           8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\\n\",\n      \"           4.2121e-02, -3.8591e-01, -4.9300e-01,  8.2269e-01,  9.6996e-01,\\n\",\n      \"          -8.6781e-01,  8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\\n\",\n      \"           6.9462e-01, -9.9058e-01,  7.5560e-01,  9.5516e-01,  8.5390e-01,\\n\",\n      \"          -9.3777e-01,  7.3466e-01,  9.5822e-01, -9.6689e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.2412e-02,  5.5587e-01,  5.2648e-01,  6.8613e-01, -5.2126e-01,\\n\",\n      \"          -2.6911e-01, -6.0472e-01, -8.5598e-01,  5.5327e-01,  1.5888e-01,\\n\",\n      \"           1.6669e-01, -7.6833e-01, -4.9673e-01,  4.0409e-01,  1.4775e-01,\\n\",\n      \"           8.2823e-01,  6.1798e-01,  6.2634e-01,  7.0638e-01, -6.3201e-01,\\n\",\n      \"          -8.1080e-01, -1.9344e-01,  2.3377e-01,  5.5736e-01,  4.0636e-01,\\n\",\n      \"          -9.2914e-01,  8.4626e-01,  4.3793e-02, -4.0619e-01,  1.3983e-01,\\n\",\n      \"           8.7200e-01, -3.6435e-01,  5.4387e-01,  1.9864e-01, -6.3067e-01,\\n\",\n      \"           3.2501e-01, -8.2716e-01,  7.3380e-01,  3.2731e-01,  1.1471e-01,\\n\",\n      \"           4.2973e-02, -5.7053e-01, -7.6254e-01,  6.5678e-01,  1.9348e-01,\\n\",\n      \"           9.6505e-03, -3.7881e-01,  3.7071e-01,  8.6609e-01,  9.2239e-01,\\n\",\n      \"          -2.5739e-01,  5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\\n\",\n      \"           7.2268e-01, -7.9991e-01,  4.7691e-01,  9.3956e-01,  7.7451e-01,\\n\",\n      \"          -3.3390e-01, -2.0639e-01,  9.0730e-01, -9.1102e-01],\\n\",\n      \"         [-8.2056e-01,  9.9517e-01,  5.2822e-01, -2.9103e-02, -4.4076e-01,\\n\",\n      \"          -5.0182e-01, -9.9669e-01, -9.2137e-01,  9.6995e-01,  9.8441e-03,\\n\",\n      \"           3.5683e-01, -9.7109e-01, -8.6985e-01,  9.9538e-01,  6.6071e-02,\\n\",\n      \"           7.5521e-01,  5.4956e-01,  9.8520e-01,  9.9528e-01, -7.4652e-01,\\n\",\n      \"          -9.9837e-01, -4.0200e-01,  1.3232e-02,  4.5854e-01,  2.7352e-01,\\n\",\n      \"          -8.9861e-01,  4.5760e-01,  1.9683e-01,  9.8737e-02,  5.9758e-02,\\n\",\n      \"           9.7392e-01, -7.3979e-01,  3.9800e-01, -6.4981e-01,  3.9077e-01,\\n\",\n      \"           8.7535e-01, -7.1771e-01,  9.1071e-01,  6.2887e-01, -2.6265e-01,\\n\",\n      \"           9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\\n\",\n      \"           5.0785e-02, -4.2154e-01, -7.8124e-01,  8.4035e-01,  9.9191e-01,\\n\",\n      \"          -9.3793e-01,  9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\\n\",\n      \"           7.2309e-01, -9.9203e-01,  8.8789e-01,  9.6214e-01,  9.1157e-01,\\n\",\n      \"          -9.9297e-01,  8.7711e-01,  9.7576e-01, -9.8162e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([4, 4])\\n\",\n      \"dec_state: tensor([[[ 0.2905,  0.7527, -0.3698,  0.8555,  0.3202,  0.1867, -0.3535,\\n\",\n      \"           0.8386,  0.3149, -0.8806, -0.8028, -0.8874, -0.6217,  0.6163,\\n\",\n      \"          -0.1134, -0.0066,  0.6359,  0.4521, -0.4873,  0.4565,  0.1907,\\n\",\n      \"          -0.0065,  0.4648,  0.8977,  0.5536, -0.9439,  0.1522, -0.3966,\\n\",\n      \"          -0.8704, -0.7110, -0.7356,  0.6488, -0.5709,  0.5956, -0.2854,\\n\",\n      \"           0.5041,  0.6281, -0.0127, -0.7029,  0.4197, -0.3893, -0.0770,\\n\",\n      \"          -0.2616,  0.8185, -0.6111, -0.2423,  0.4200,  0.8558,  0.0696,\\n\",\n      \"           0.9317,  0.6333,  0.3468, -0.8823, -0.0382, -0.8931,  0.4541,\\n\",\n      \"           0.0938, -0.4317, -0.3229,  0.5745, -0.8075,  0.9039,  0.0605,\\n\",\n      \"           0.4151],\\n\",\n      \"         [-0.2466,  0.9434, -0.6804,  0.7498,  0.4127,  0.5988, -0.8999,\\n\",\n      \"           0.8206,  0.6626, -0.9415, -0.7087, -0.9617, -0.7467,  0.9744,\\n\",\n      \"           0.2873,  0.2443,  0.5766,  0.4519, -0.4098,  0.7439,  0.6236,\\n\",\n      \"          -0.6022,  0.5878,  0.7996,  0.6750, -0.9445, -0.3073, -0.1177,\\n\",\n      \"          -0.9240, -0.6052, -0.9059,  0.5095, -0.7330,  0.3895, -0.6937,\\n\",\n      \"           0.5939,  0.8552, -0.0792, -0.7615,  0.2399, -0.8582,  0.7504,\\n\",\n      \"           0.0160,  0.5213, -0.8885, -0.0969, -0.5700,  0.8626, -0.1957,\\n\",\n      \"           0.9831,  0.9048,  0.8710, -0.9554,  0.3049, -0.8610,  0.2506,\\n\",\n      \"           0.3594,  0.0410, -0.1012,  0.6145, -0.9915,  0.9478,  0.3932,\\n\",\n      \"           0.4312]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-2.1643e-01,  4.0703e-01,  3.2634e-01, -5.0862e-01, -5.9415e-01,\\n\",\n      \"           5.1934e-01,  2.3474e-02,  5.2337e-01, -3.0883e-01, -1.4427e-01,\\n\",\n      \"           4.1089e-01,  2.8636e-01,  4.1313e-01, -2.1515e-01,  1.8673e-01,\\n\",\n      \"          -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\\n\",\n      \"           6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\\n\",\n      \"          -9.0624e-02,  8.4112e-01,  4.1783e-01,  4.2457e-01,  4.4339e-01,\\n\",\n      \"          -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\\n\",\n      \"          -1.0899e-01,  2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\\n\",\n      \"          -1.1454e-01, -1.9440e-01,  1.8098e-01,  3.7718e-01,  4.4388e-01,\\n\",\n      \"          -1.9044e-01,  1.2831e-01,  9.2631e-02, -5.9981e-01, -1.7597e-01,\\n\",\n      \"           2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02,  1.3814e-01,\\n\",\n      \"           4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\\n\",\n      \"           4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\\n\",\n      \"         [-2.7921e-01,  5.5246e-01, -2.3130e-01,  6.0324e-02, -1.0443e-01,\\n\",\n      \"          -9.6127e-02, -4.8838e-01,  1.7342e-01, -1.6244e-03, -1.5950e-01,\\n\",\n      \"          -2.0051e-01, -2.3869e-01, -6.2903e-01,  3.7441e-01,  1.1054e-01,\\n\",\n      \"          -4.1060e-01,  4.7134e-01,  3.1578e-01,  2.8223e-01, -7.0127e-01,\\n\",\n      \"          -6.8227e-01, -1.6815e-01,  1.2664e-01, -3.3500e-02,  2.8114e-01,\\n\",\n      \"          -3.8212e-02,  3.1934e-01,  3.1801e-01, -1.0009e-01, -1.3935e-01,\\n\",\n      \"           3.5000e-01, -1.1332e-01,  1.6779e-01, -4.4952e-01, -2.7263e-01,\\n\",\n      \"          -2.6393e-02, -2.0009e-01,  2.5008e-01, -5.6962e-02, -3.3716e-01,\\n\",\n      \"           1.2111e-01,  7.2555e-01, -1.6554e-01,  3.0319e-02, -7.2813e-01,\\n\",\n      \"          -5.0258e-01,  4.6271e-01, -2.0600e-01,  7.9482e-02,  4.5408e-01,\\n\",\n      \"           1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\\n\",\n      \"           3.1461e-01, -5.0918e-01,  1.8147e-01,  6.9853e-02, -1.7200e-01,\\n\",\n      \"          -1.3063e-01,  1.5399e-01,  3.4001e-01, -5.4762e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.9094e-01,  2.9604e-01, -6.4331e-01,  8.5796e-01, -5.0427e-01,\\n\",\n      \"          -3.9154e-01,  1.1564e-01,  7.4492e-01,  2.2174e-01, -3.8437e-01,\\n\",\n      \"           3.4773e-01,  2.4916e-02,  3.9094e-01, -6.5730e-01,  5.5876e-01,\\n\",\n      \"           4.9713e-01,  4.2008e-01,  1.7297e-01,  2.0467e-01, -4.0904e-01,\\n\",\n      \"          -3.2362e-01,  1.3526e-01,  5.7380e-02,  8.0937e-01,  4.6005e-01,\\n\",\n      \"          -4.4897e-01,  8.0193e-01,  2.0982e-01,  5.7502e-02,  1.6175e-01,\\n\",\n      \"           1.6195e-01,  6.5908e-02,  8.0127e-01,  2.1267e-01, -3.2248e-01,\\n\",\n      \"           6.1880e-02, -6.0822e-01,  9.2528e-01,  1.5635e-01,  6.5912e-01,\\n\",\n      \"          -2.5814e-01,  6.9864e-02, -6.9100e-02, -2.0400e-01,  4.4236e-01,\\n\",\n      \"          -3.8749e-01,  2.2603e-01, -7.3010e-01, -6.7803e-02,  6.0987e-01,\\n\",\n      \"          -2.3944e-01, -2.2402e-01,  3.4141e-02, -7.5317e-01, -1.9034e-01,\\n\",\n      \"           1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01,  4.8121e-01,\\n\",\n      \"          -6.4265e-01, -7.2166e-01,  6.8618e-02, -1.7256e-01],\\n\",\n      \"         [-4.2395e-01,  4.3782e-01, -3.7864e-01,  4.6429e-01, -1.9293e-01,\\n\",\n      \"          -1.8951e-01, -2.7415e-01,  1.4951e-01, -3.3036e-01, -6.2952e-02,\\n\",\n      \"          -2.8961e-01,  2.6387e-01, -6.7616e-01,  8.8255e-03, -1.3174e-02,\\n\",\n      \"          -5.0924e-01, -5.3128e-02, -1.0846e-01,  4.2621e-01, -6.4251e-01,\\n\",\n      \"          -1.9010e-01, -8.9229e-02, -1.8645e-02,  1.4834e-01,  4.4270e-01,\\n\",\n      \"          -1.6318e-01,  5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\\n\",\n      \"           4.5368e-01, -2.8125e-01,  2.3815e-01, -3.6399e-01, -2.3326e-01,\\n\",\n      \"          -1.2933e-01, -3.3350e-01,  4.6229e-02, -1.8867e-01, -8.2094e-02,\\n\",\n      \"          -2.6307e-01,  7.5736e-01, -2.3453e-03,  1.3690e-01, -1.8830e-01,\\n\",\n      \"          -3.6770e-01,  2.2573e-03, -2.6534e-01,  1.3679e-01,  5.0285e-01,\\n\",\n      \"          -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\\n\",\n      \"           6.7031e-02, -6.5419e-02,  1.1711e-01,  3.5437e-02, -3.1980e-01,\\n\",\n      \"           2.7608e-01,  4.2805e-01,  1.0529e-01, -6.9090e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.6467e-01, -2.1472e-02, -2.3705e-01,  8.1433e-01,  1.1691e-01,\\n\",\n      \"          -5.2326e-01,  2.7152e-01,  7.2288e-01, -2.7715e-01, -5.5603e-02,\\n\",\n      \"           6.1393e-01, -3.2977e-02,  2.7468e-01, -5.7310e-01,  4.7398e-01,\\n\",\n      \"           3.3744e-01,  3.9739e-01, -3.0474e-02,  1.2378e-01, -3.6966e-02,\\n\",\n      \"          -5.7119e-01,  4.0540e-01,  7.2925e-02,  6.0944e-01,  3.6532e-01,\\n\",\n      \"          -5.7006e-01,  6.2813e-01,  1.8211e-01, -1.2571e-01,  2.1051e-01,\\n\",\n      \"           2.2644e-01,  2.3753e-01,  1.0566e-01,  3.3964e-01, -9.8686e-02,\\n\",\n      \"           7.1103e-02, -5.1788e-01,  8.2421e-01,  4.0273e-01,  5.9817e-01,\\n\",\n      \"          -5.9287e-01,  5.6128e-02, -3.0473e-01,  1.4045e-01,  1.7209e-01,\\n\",\n      \"          -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\\n\",\n      \"           2.0601e-01,  3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\\n\",\n      \"          -1.6437e-01,  9.7025e-02, -2.7640e-01, -1.8737e-01,  2.3292e-01,\\n\",\n      \"          -4.5736e-01, -5.6993e-01,  3.8426e-01, -5.8431e-01],\\n\",\n      \"         [ 2.9292e-02,  4.2082e-01,  1.1496e-01, -1.3269e-01, -4.9844e-01,\\n\",\n      \"          -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\\n\",\n      \"          -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01,  3.1475e-02,\\n\",\n      \"          -3.9173e-01,  1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\\n\",\n      \"           3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02,  3.3985e-01,\\n\",\n      \"           4.4148e-02,  7.0217e-02, -9.1169e-02,  2.0149e-01, -5.0179e-01,\\n\",\n      \"           4.1926e-01, -2.3867e-01, -2.1852e-01,  4.9277e-02, -4.5147e-02,\\n\",\n      \"          -1.3929e-01, -2.5047e-01,  4.9927e-01, -3.6437e-01, -3.5151e-01,\\n\",\n      \"          -1.4846e-01,  2.4364e-01, -2.1723e-01, -4.6918e-02,  1.4216e-01,\\n\",\n      \"          -5.0783e-02, -2.6806e-01,  8.9650e-03,  3.0882e-01, -5.4537e-02,\\n\",\n      \"          -1.0623e-01,  8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\\n\",\n      \"           3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\\n\",\n      \"           3.3971e-01,  8.3942e-02, -1.2739e-01, -6.4155e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9462e-01, -2.2764e-01, -3.7951e-02,  4.0051e-01, -2.9822e-01,\\n\",\n      \"           1.9265e-01,  9.7957e-02,  3.4318e-01,  6.5615e-02,  1.4674e-01,\\n\",\n      \"           1.9097e-01, -1.9940e-01,  1.4437e-01, -2.2148e-01,  5.6047e-01,\\n\",\n      \"           5.2499e-01,  4.4121e-01, -2.5948e-01,  1.0898e-01, -2.9630e-01,\\n\",\n      \"          -1.4722e-01,  2.0510e-01,  3.2749e-02,  5.3201e-01,  5.3504e-01,\\n\",\n      \"          -5.3038e-01,  6.1319e-01,  1.6065e-01, -3.3821e-02,  1.9661e-01,\\n\",\n      \"           5.2853e-01, -2.7200e-01,  1.5528e-01,  2.8527e-01, -1.4127e-01,\\n\",\n      \"           1.4125e-02, -2.4507e-01,  5.8318e-01,  2.6271e-01,  6.1537e-01,\\n\",\n      \"           5.7424e-02,  1.5592e-01, -1.7715e-01,  1.8923e-01,  4.4712e-01,\\n\",\n      \"          -3.3768e-01, -1.8343e-01, -5.5573e-02,  4.3081e-01,  8.3409e-02,\\n\",\n      \"           2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\\n\",\n      \"           4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01,  3.5492e-01,\\n\",\n      \"          -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\\n\",\n      \"         [ 5.8269e-02,  8.0529e-01,  3.1633e-01,  3.5130e-02, -4.0030e-01,\\n\",\n      \"          -5.2046e-01, -5.7112e-01,  1.2411e-01,  5.1932e-01,  8.1681e-02,\\n\",\n      \"          -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01,  2.6595e-01,\\n\",\n      \"           2.8538e-01,  5.4966e-01, -2.2023e-01,  6.2513e-01, -7.1846e-01,\\n\",\n      \"           1.5489e-01, -2.3305e-01, -2.8478e-01,  4.7244e-02,  6.0448e-01,\\n\",\n      \"          -2.4189e-02,  1.3727e-01,  4.3836e-02,  1.9764e-01, -4.9993e-01,\\n\",\n      \"           6.4335e-01, -6.3273e-01, -1.7085e-01,  3.6792e-01, -1.1653e-02,\\n\",\n      \"           5.9266e-02, -1.4715e-01,  6.0236e-01, -5.3754e-01, -3.3864e-01,\\n\",\n      \"          -1.6203e-01,  4.6025e-01, -1.2995e-01,  1.5817e-01, -1.0733e-01,\\n\",\n      \"          -7.5994e-02, -1.4720e-01,  7.4298e-02,  6.0721e-01,  3.2473e-01,\\n\",\n      \"          -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\\n\",\n      \"           2.0282e-01, -5.1651e-01,  1.3683e-03, -2.0047e-01,  7.6022e-01,\\n\",\n      \"          -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.4355e-01,  9.7544e-02,  4.9027e-02,  3.3419e-01,  1.2388e-01,\\n\",\n      \"           7.1731e-02,  1.8976e-01,  4.4490e-01, -2.9891e-01,  2.0516e-01,\\n\",\n      \"          -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02,  5.4330e-02,\\n\",\n      \"           4.1832e-01,  3.2749e-01,  5.0725e-02,  5.7945e-03, -1.6877e-01,\\n\",\n      \"          -4.3551e-02,  7.4475e-02,  5.0754e-01,  5.8456e-01,  3.5108e-01,\\n\",\n      \"          -3.2765e-01,  6.2981e-01, -2.1042e-01, -1.5040e-02,  3.9792e-01,\\n\",\n      \"           3.3859e-01, -2.2759e-01,  4.8875e-03,  2.0304e-01, -1.8557e-01,\\n\",\n      \"           5.1139e-01, -6.3578e-02,  3.7445e-01,  2.5876e-01,  3.2321e-01,\\n\",\n      \"           3.3812e-01,  4.8470e-01, -3.5065e-02,  5.6784e-01,  6.2865e-01,\\n\",\n      \"          -3.4431e-01, -3.1394e-01,  2.1078e-01,  5.3845e-01,  3.1855e-01,\\n\",\n      \"           4.3601e-01, -3.4167e-03, -4.5149e-02,  4.3369e-02,  4.9973e-02,\\n\",\n      \"           5.7321e-01, -6.1557e-02,  1.4944e-01, -1.7503e-02,  1.5900e-01,\\n\",\n      \"          -1.2167e-01, -4.7770e-01,  4.0990e-02, -1.3854e-01],\\n\",\n      \"         [-1.2090e-01,  6.5291e-01,  4.9012e-01,  6.3469e-01, -6.1991e-01,\\n\",\n      \"          -4.5836e-01, -6.4770e-01, -8.5862e-01,  6.3087e-01, -1.7720e-02,\\n\",\n      \"           1.7558e-01, -8.4372e-01, -6.0052e-01,  3.6973e-01,  1.8317e-01,\\n\",\n      \"           7.5792e-01,  5.6800e-01,  6.3874e-01,  7.7846e-01, -7.3676e-01,\\n\",\n      \"          -8.1896e-01, -3.2437e-01, -5.9558e-02,  1.6930e-01,  4.0612e-01,\\n\",\n      \"          -9.0851e-01,  7.4943e-01,  7.0389e-02, -3.3322e-01, -3.4272e-01,\\n\",\n      \"           8.7254e-01, -3.7895e-01,  5.6617e-01,  2.2784e-01, -5.8411e-01,\\n\",\n      \"           2.4766e-01, -8.4705e-01,  7.5885e-01,  2.6971e-01, -2.0708e-01,\\n\",\n      \"          -2.3187e-01, -6.6556e-01, -7.9039e-01,  5.7092e-01, -9.1081e-03,\\n\",\n      \"           3.3079e-02, -3.3478e-01,  2.8295e-01,  7.9911e-01,  8.7098e-01,\\n\",\n      \"          -3.8057e-01,  5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\\n\",\n      \"           6.5749e-01, -8.2280e-01,  4.0088e-01,  9.4624e-01,  7.4583e-01,\\n\",\n      \"          -1.8822e-01, -1.5356e-01,  9.0531e-01, -9.4046e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4370e-01,  6.9390e-01,  3.4906e-01,  1.8600e-01, -1.0352e-01,\\n\",\n      \"          -1.8402e-01, -4.7587e-01,  3.9898e-01,  4.0702e-01,  3.4950e-01,\\n\",\n      \"           5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02,  2.1085e-01,\\n\",\n      \"           5.8135e-01,  6.0812e-01, -4.3868e-02,  5.5309e-01, -5.7745e-01,\\n\",\n      \"           1.1744e-01,  2.9086e-02,  1.2145e-01,  5.4306e-01,  6.4010e-01,\\n\",\n      \"          -2.5673e-01,  6.0993e-01, -7.3052e-03,  7.7005e-02,  2.6385e-01,\\n\",\n      \"           6.2501e-01, -6.7076e-01, -9.6880e-02,  3.9839e-01, -1.2475e-01,\\n\",\n      \"           3.5841e-01, -4.1073e-02,  5.3352e-01, -2.4644e-01,  7.5658e-02,\\n\",\n      \"           1.7233e-01,  5.7383e-01, -8.7162e-02,  4.8839e-01,  1.1819e-01,\\n\",\n      \"          -1.4091e-01, -1.5005e-01,  2.0554e-01,  7.3376e-01,  5.7186e-01,\\n\",\n      \"           2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\\n\",\n      \"           4.2501e-01, -4.6323e-01,  1.3973e-01, -2.1567e-01,  8.0603e-01,\\n\",\n      \"          -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\\n\",\n      \"         [-6.1965e-01,  9.8332e-01,  5.0493e-01,  2.8111e-01, -5.3563e-01,\\n\",\n      \"          -5.9760e-01, -9.7713e-01, -9.0046e-01,  9.2203e-01,  3.4881e-04,\\n\",\n      \"           3.0716e-01, -9.3601e-01, -7.7404e-01,  9.6783e-01,  1.1720e-01,\\n\",\n      \"           7.5584e-01,  5.2906e-01,  9.7504e-01,  9.7287e-01, -7.2797e-01,\\n\",\n      \"          -9.8892e-01, -3.6624e-01, -1.9580e-02,  3.4981e-01,  3.2603e-01,\\n\",\n      \"          -9.0325e-01,  5.5451e-01,  1.3807e-01, -2.0965e-02, -4.0570e-02,\\n\",\n      \"           9.6092e-01, -5.8279e-01,  4.7798e-01, -4.6821e-01,  2.7388e-03,\\n\",\n      \"           7.5130e-01, -7.7676e-01,  8.5018e-01,  5.0395e-01, -2.3900e-01,\\n\",\n      \"           8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\\n\",\n      \"           4.2121e-02, -3.8591e-01, -4.9300e-01,  8.2269e-01,  9.6996e-01,\\n\",\n      \"          -8.6781e-01,  8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\\n\",\n      \"           6.9462e-01, -9.9058e-01,  7.5560e-01,  9.5516e-01,  8.5390e-01,\\n\",\n      \"          -9.3777e-01,  7.3466e-01,  9.5822e-01, -9.6689e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.2412e-02,  5.5587e-01,  5.2648e-01,  6.8613e-01, -5.2126e-01,\\n\",\n      \"          -2.6911e-01, -6.0472e-01, -8.5598e-01,  5.5327e-01,  1.5888e-01,\\n\",\n      \"           1.6669e-01, -7.6833e-01, -4.9673e-01,  4.0409e-01,  1.4775e-01,\\n\",\n      \"           8.2823e-01,  6.1798e-01,  6.2634e-01,  7.0638e-01, -6.3201e-01,\\n\",\n      \"          -8.1080e-01, -1.9344e-01,  2.3377e-01,  5.5736e-01,  4.0636e-01,\\n\",\n      \"          -9.2914e-01,  8.4626e-01,  4.3793e-02, -4.0619e-01,  1.3983e-01,\\n\",\n      \"           8.7200e-01, -3.6435e-01,  5.4387e-01,  1.9864e-01, -6.3067e-01,\\n\",\n      \"           3.2501e-01, -8.2716e-01,  7.3380e-01,  3.2731e-01,  1.1471e-01,\\n\",\n      \"           4.2973e-02, -5.7053e-01, -7.6254e-01,  6.5678e-01,  1.9348e-01,\\n\",\n      \"           9.6505e-03, -3.7881e-01,  3.7071e-01,  8.6609e-01,  9.2239e-01,\\n\",\n      \"          -2.5739e-01,  5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\\n\",\n      \"           7.2268e-01, -7.9991e-01,  4.7691e-01,  9.3956e-01,  7.7451e-01,\\n\",\n      \"          -3.3390e-01, -2.0639e-01,  9.0730e-01, -9.1102e-01],\\n\",\n      \"         [-8.2056e-01,  9.9517e-01,  5.2822e-01, -2.9103e-02, -4.4076e-01,\\n\",\n      \"          -5.0182e-01, -9.9669e-01, -9.2137e-01,  9.6995e-01,  9.8441e-03,\\n\",\n      \"           3.5683e-01, -9.7109e-01, -8.6985e-01,  9.9538e-01,  6.6071e-02,\\n\",\n      \"           7.5521e-01,  5.4956e-01,  9.8520e-01,  9.9528e-01, -7.4652e-01,\\n\",\n      \"          -9.9837e-01, -4.0200e-01,  1.3232e-02,  4.5854e-01,  2.7352e-01,\\n\",\n      \"          -8.9861e-01,  4.5760e-01,  1.9683e-01,  9.8737e-02,  5.9758e-02,\\n\",\n      \"           9.7392e-01, -7.3979e-01,  3.9800e-01, -6.4981e-01,  3.9077e-01,\\n\",\n      \"           8.7535e-01, -7.1771e-01,  9.1071e-01,  6.2887e-01, -2.6265e-01,\\n\",\n      \"           9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\\n\",\n      \"           5.0785e-02, -4.2154e-01, -7.8124e-01,  8.4035e-01,  9.9191e-01,\\n\",\n      \"          -9.3793e-01,  9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\\n\",\n      \"           7.2309e-01, -9.9203e-01,  8.8789e-01,  9.6214e-01,  9.1157e-01,\\n\",\n      \"          -9.9297e-01,  8.7711e-01,  9.7576e-01, -9.8162e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([10, 37])\\n\",\n      \"dec_state: tensor([[[ 0.3433,  0.8954, -0.3030,  0.9019,  0.4173,  0.3451, -0.3994,\\n\",\n      \"           0.1875, -0.5598, -0.5549, -0.8549, -0.6657, -0.6926,  0.6528,\\n\",\n      \"          -0.0358, -0.4273,  0.5484,  0.1493,  0.2043,  0.3952,  0.4672,\\n\",\n      \"          -0.6498,  0.4227,  0.9514,  0.5742, -0.8121,  0.7690, -0.4353,\\n\",\n      \"          -0.9444, -0.2032, -0.8103,  0.6320, -0.2872,  0.6642, -0.9037,\\n\",\n      \"           0.1142,  0.3284, -0.0162, -0.7696,  0.4079, -0.7704,  0.5194,\\n\",\n      \"          -0.2941,  0.9458, -0.6177,  0.6220,  0.0854,  0.2091, -0.1943,\\n\",\n      \"           0.8021,  0.5769,  0.4077, -0.6804, -0.4940, -0.9389,  0.3685,\\n\",\n      \"           0.2158,  0.8728, -0.2725, -0.4201, -0.9082,  0.9383, -0.2267,\\n\",\n      \"           0.5393],\\n\",\n      \"         [ 0.1324,  0.9620, -0.8676,  0.8176,  0.6529,  0.5220, -0.8891,\\n\",\n      \"          -0.3921,  0.2496, -0.8212,  0.1635, -0.9842, -0.4843,  0.9775,\\n\",\n      \"          -0.1468, -0.1055,  0.5927, -0.1739, -0.8540,  0.6892,  0.8912,\\n\",\n      \"          -0.7970,  0.1485,  0.8176,  0.4366, -0.9416, -0.6095, -0.4789,\\n\",\n      \"          -0.5344, -0.8225, -0.9548,  0.0068, -0.6093,  0.5889, -0.7728,\\n\",\n      \"          -0.1830,  0.8481,  0.2855, -0.5969,  0.4605, -0.8975,  0.7737,\\n\",\n      \"           0.7115,  0.8576, -0.9221,  0.5046, -0.7604,  0.1902, -0.2841,\\n\",\n      \"           0.9726,  0.5623,  0.9471, -0.3761, -0.4791, -0.5147, -0.1659,\\n\",\n      \"           0.7009,  0.7900, -0.3937, -0.1217, -0.9941,  0.9232,  0.3653,\\n\",\n      \"          -0.1000]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-2.1643e-01,  4.0703e-01,  3.2634e-01, -5.0862e-01, -5.9415e-01,\\n\",\n      \"           5.1934e-01,  2.3474e-02,  5.2337e-01, -3.0883e-01, -1.4427e-01,\\n\",\n      \"           4.1089e-01,  2.8636e-01,  4.1313e-01, -2.1515e-01,  1.8673e-01,\\n\",\n      \"          -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\\n\",\n      \"           6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\\n\",\n      \"          -9.0624e-02,  8.4112e-01,  4.1783e-01,  4.2457e-01,  4.4339e-01,\\n\",\n      \"          -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\\n\",\n      \"          -1.0899e-01,  2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\\n\",\n      \"          -1.1454e-01, -1.9440e-01,  1.8098e-01,  3.7718e-01,  4.4388e-01,\\n\",\n      \"          -1.9044e-01,  1.2831e-01,  9.2631e-02, -5.9981e-01, -1.7597e-01,\\n\",\n      \"           2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02,  1.3814e-01,\\n\",\n      \"           4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\\n\",\n      \"           4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\\n\",\n      \"         [-2.7921e-01,  5.5246e-01, -2.3130e-01,  6.0324e-02, -1.0443e-01,\\n\",\n      \"          -9.6127e-02, -4.8838e-01,  1.7342e-01, -1.6244e-03, -1.5950e-01,\\n\",\n      \"          -2.0051e-01, -2.3869e-01, -6.2903e-01,  3.7441e-01,  1.1054e-01,\\n\",\n      \"          -4.1060e-01,  4.7134e-01,  3.1578e-01,  2.8223e-01, -7.0127e-01,\\n\",\n      \"          -6.8227e-01, -1.6815e-01,  1.2664e-01, -3.3500e-02,  2.8114e-01,\\n\",\n      \"          -3.8212e-02,  3.1934e-01,  3.1801e-01, -1.0009e-01, -1.3935e-01,\\n\",\n      \"           3.5000e-01, -1.1332e-01,  1.6779e-01, -4.4952e-01, -2.7263e-01,\\n\",\n      \"          -2.6393e-02, -2.0009e-01,  2.5008e-01, -5.6962e-02, -3.3716e-01,\\n\",\n      \"           1.2111e-01,  7.2555e-01, -1.6554e-01,  3.0319e-02, -7.2813e-01,\\n\",\n      \"          -5.0258e-01,  4.6271e-01, -2.0600e-01,  7.9482e-02,  4.5408e-01,\\n\",\n      \"           1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\\n\",\n      \"           3.1461e-01, -5.0918e-01,  1.8147e-01,  6.9853e-02, -1.7200e-01,\\n\",\n      \"          -1.3063e-01,  1.5399e-01,  3.4001e-01, -5.4762e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.9094e-01,  2.9604e-01, -6.4331e-01,  8.5796e-01, -5.0427e-01,\\n\",\n      \"          -3.9154e-01,  1.1564e-01,  7.4492e-01,  2.2174e-01, -3.8437e-01,\\n\",\n      \"           3.4773e-01,  2.4916e-02,  3.9094e-01, -6.5730e-01,  5.5876e-01,\\n\",\n      \"           4.9713e-01,  4.2008e-01,  1.7297e-01,  2.0467e-01, -4.0904e-01,\\n\",\n      \"          -3.2362e-01,  1.3526e-01,  5.7380e-02,  8.0937e-01,  4.6005e-01,\\n\",\n      \"          -4.4897e-01,  8.0193e-01,  2.0982e-01,  5.7502e-02,  1.6175e-01,\\n\",\n      \"           1.6195e-01,  6.5908e-02,  8.0127e-01,  2.1267e-01, -3.2248e-01,\\n\",\n      \"           6.1880e-02, -6.0822e-01,  9.2528e-01,  1.5635e-01,  6.5912e-01,\\n\",\n      \"          -2.5814e-01,  6.9864e-02, -6.9100e-02, -2.0400e-01,  4.4236e-01,\\n\",\n      \"          -3.8749e-01,  2.2603e-01, -7.3010e-01, -6.7803e-02,  6.0987e-01,\\n\",\n      \"          -2.3944e-01, -2.2402e-01,  3.4141e-02, -7.5317e-01, -1.9034e-01,\\n\",\n      \"           1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01,  4.8121e-01,\\n\",\n      \"          -6.4265e-01, -7.2166e-01,  6.8618e-02, -1.7256e-01],\\n\",\n      \"         [-4.2395e-01,  4.3782e-01, -3.7864e-01,  4.6429e-01, -1.9293e-01,\\n\",\n      \"          -1.8951e-01, -2.7415e-01,  1.4951e-01, -3.3036e-01, -6.2952e-02,\\n\",\n      \"          -2.8961e-01,  2.6387e-01, -6.7616e-01,  8.8255e-03, -1.3174e-02,\\n\",\n      \"          -5.0924e-01, -5.3128e-02, -1.0846e-01,  4.2621e-01, -6.4251e-01,\\n\",\n      \"          -1.9010e-01, -8.9229e-02, -1.8645e-02,  1.4834e-01,  4.4270e-01,\\n\",\n      \"          -1.6318e-01,  5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\\n\",\n      \"           4.5368e-01, -2.8125e-01,  2.3815e-01, -3.6399e-01, -2.3326e-01,\\n\",\n      \"          -1.2933e-01, -3.3350e-01,  4.6229e-02, -1.8867e-01, -8.2094e-02,\\n\",\n      \"          -2.6307e-01,  7.5736e-01, -2.3453e-03,  1.3690e-01, -1.8830e-01,\\n\",\n      \"          -3.6770e-01,  2.2573e-03, -2.6534e-01,  1.3679e-01,  5.0285e-01,\\n\",\n      \"          -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\\n\",\n      \"           6.7031e-02, -6.5419e-02,  1.1711e-01,  3.5437e-02, -3.1980e-01,\\n\",\n      \"           2.7608e-01,  4.2805e-01,  1.0529e-01, -6.9090e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.6467e-01, -2.1472e-02, -2.3705e-01,  8.1433e-01,  1.1691e-01,\\n\",\n      \"          -5.2326e-01,  2.7152e-01,  7.2288e-01, -2.7715e-01, -5.5603e-02,\\n\",\n      \"           6.1393e-01, -3.2977e-02,  2.7468e-01, -5.7310e-01,  4.7398e-01,\\n\",\n      \"           3.3744e-01,  3.9739e-01, -3.0474e-02,  1.2378e-01, -3.6966e-02,\\n\",\n      \"          -5.7119e-01,  4.0540e-01,  7.2925e-02,  6.0944e-01,  3.6532e-01,\\n\",\n      \"          -5.7006e-01,  6.2813e-01,  1.8211e-01, -1.2571e-01,  2.1051e-01,\\n\",\n      \"           2.2644e-01,  2.3753e-01,  1.0566e-01,  3.3964e-01, -9.8686e-02,\\n\",\n      \"           7.1103e-02, -5.1788e-01,  8.2421e-01,  4.0273e-01,  5.9817e-01,\\n\",\n      \"          -5.9287e-01,  5.6128e-02, -3.0473e-01,  1.4045e-01,  1.7209e-01,\\n\",\n      \"          -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\\n\",\n      \"           2.0601e-01,  3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\\n\",\n      \"          -1.6437e-01,  9.7025e-02, -2.7640e-01, -1.8737e-01,  2.3292e-01,\\n\",\n      \"          -4.5736e-01, -5.6993e-01,  3.8426e-01, -5.8431e-01],\\n\",\n      \"         [ 2.9292e-02,  4.2082e-01,  1.1496e-01, -1.3269e-01, -4.9844e-01,\\n\",\n      \"          -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\\n\",\n      \"          -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01,  3.1475e-02,\\n\",\n      \"          -3.9173e-01,  1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\\n\",\n      \"           3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02,  3.3985e-01,\\n\",\n      \"           4.4148e-02,  7.0217e-02, -9.1169e-02,  2.0149e-01, -5.0179e-01,\\n\",\n      \"           4.1926e-01, -2.3867e-01, -2.1852e-01,  4.9277e-02, -4.5147e-02,\\n\",\n      \"          -1.3929e-01, -2.5047e-01,  4.9927e-01, -3.6437e-01, -3.5151e-01,\\n\",\n      \"          -1.4846e-01,  2.4364e-01, -2.1723e-01, -4.6918e-02,  1.4216e-01,\\n\",\n      \"          -5.0783e-02, -2.6806e-01,  8.9650e-03,  3.0882e-01, -5.4537e-02,\\n\",\n      \"          -1.0623e-01,  8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\\n\",\n      \"           3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\\n\",\n      \"           3.3971e-01,  8.3942e-02, -1.2739e-01, -6.4155e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9462e-01, -2.2764e-01, -3.7951e-02,  4.0051e-01, -2.9822e-01,\\n\",\n      \"           1.9265e-01,  9.7957e-02,  3.4318e-01,  6.5615e-02,  1.4674e-01,\\n\",\n      \"           1.9097e-01, -1.9940e-01,  1.4437e-01, -2.2148e-01,  5.6047e-01,\\n\",\n      \"           5.2499e-01,  4.4121e-01, -2.5948e-01,  1.0898e-01, -2.9630e-01,\\n\",\n      \"          -1.4722e-01,  2.0510e-01,  3.2749e-02,  5.3201e-01,  5.3504e-01,\\n\",\n      \"          -5.3038e-01,  6.1319e-01,  1.6065e-01, -3.3821e-02,  1.9661e-01,\\n\",\n      \"           5.2853e-01, -2.7200e-01,  1.5528e-01,  2.8527e-01, -1.4127e-01,\\n\",\n      \"           1.4125e-02, -2.4507e-01,  5.8318e-01,  2.6271e-01,  6.1537e-01,\\n\",\n      \"           5.7424e-02,  1.5592e-01, -1.7715e-01,  1.8923e-01,  4.4712e-01,\\n\",\n      \"          -3.3768e-01, -1.8343e-01, -5.5573e-02,  4.3081e-01,  8.3409e-02,\\n\",\n      \"           2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\\n\",\n      \"           4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01,  3.5492e-01,\\n\",\n      \"          -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\\n\",\n      \"         [ 5.8269e-02,  8.0529e-01,  3.1633e-01,  3.5130e-02, -4.0030e-01,\\n\",\n      \"          -5.2046e-01, -5.7112e-01,  1.2411e-01,  5.1932e-01,  8.1681e-02,\\n\",\n      \"          -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01,  2.6595e-01,\\n\",\n      \"           2.8538e-01,  5.4966e-01, -2.2023e-01,  6.2513e-01, -7.1846e-01,\\n\",\n      \"           1.5489e-01, -2.3305e-01, -2.8478e-01,  4.7244e-02,  6.0448e-01,\\n\",\n      \"          -2.4189e-02,  1.3727e-01,  4.3836e-02,  1.9764e-01, -4.9993e-01,\\n\",\n      \"           6.4335e-01, -6.3273e-01, -1.7085e-01,  3.6792e-01, -1.1653e-02,\\n\",\n      \"           5.9266e-02, -1.4715e-01,  6.0236e-01, -5.3754e-01, -3.3864e-01,\\n\",\n      \"          -1.6203e-01,  4.6025e-01, -1.2995e-01,  1.5817e-01, -1.0733e-01,\\n\",\n      \"          -7.5994e-02, -1.4720e-01,  7.4298e-02,  6.0721e-01,  3.2473e-01,\\n\",\n      \"          -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\\n\",\n      \"           2.0282e-01, -5.1651e-01,  1.3683e-03, -2.0047e-01,  7.6022e-01,\\n\",\n      \"          -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.4355e-01,  9.7544e-02,  4.9027e-02,  3.3419e-01,  1.2388e-01,\\n\",\n      \"           7.1731e-02,  1.8976e-01,  4.4490e-01, -2.9891e-01,  2.0516e-01,\\n\",\n      \"          -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02,  5.4330e-02,\\n\",\n      \"           4.1832e-01,  3.2749e-01,  5.0725e-02,  5.7945e-03, -1.6877e-01,\\n\",\n      \"          -4.3551e-02,  7.4475e-02,  5.0754e-01,  5.8456e-01,  3.5108e-01,\\n\",\n      \"          -3.2765e-01,  6.2981e-01, -2.1042e-01, -1.5040e-02,  3.9792e-01,\\n\",\n      \"           3.3859e-01, -2.2759e-01,  4.8875e-03,  2.0304e-01, -1.8557e-01,\\n\",\n      \"           5.1139e-01, -6.3578e-02,  3.7445e-01,  2.5876e-01,  3.2321e-01,\\n\",\n      \"           3.3812e-01,  4.8470e-01, -3.5065e-02,  5.6784e-01,  6.2865e-01,\\n\",\n      \"          -3.4431e-01, -3.1394e-01,  2.1078e-01,  5.3845e-01,  3.1855e-01,\\n\",\n      \"           4.3601e-01, -3.4167e-03, -4.5149e-02,  4.3369e-02,  4.9973e-02,\\n\",\n      \"           5.7321e-01, -6.1557e-02,  1.4944e-01, -1.7503e-02,  1.5900e-01,\\n\",\n      \"          -1.2167e-01, -4.7770e-01,  4.0990e-02, -1.3854e-01],\\n\",\n      \"         [-1.2090e-01,  6.5291e-01,  4.9012e-01,  6.3469e-01, -6.1991e-01,\\n\",\n      \"          -4.5836e-01, -6.4770e-01, -8.5862e-01,  6.3087e-01, -1.7720e-02,\\n\",\n      \"           1.7558e-01, -8.4372e-01, -6.0052e-01,  3.6973e-01,  1.8317e-01,\\n\",\n      \"           7.5792e-01,  5.6800e-01,  6.3874e-01,  7.7846e-01, -7.3676e-01,\\n\",\n      \"          -8.1896e-01, -3.2437e-01, -5.9558e-02,  1.6930e-01,  4.0612e-01,\\n\",\n      \"          -9.0851e-01,  7.4943e-01,  7.0389e-02, -3.3322e-01, -3.4272e-01,\\n\",\n      \"           8.7254e-01, -3.7895e-01,  5.6617e-01,  2.2784e-01, -5.8411e-01,\\n\",\n      \"           2.4766e-01, -8.4705e-01,  7.5885e-01,  2.6971e-01, -2.0708e-01,\\n\",\n      \"          -2.3187e-01, -6.6556e-01, -7.9039e-01,  5.7092e-01, -9.1081e-03,\\n\",\n      \"           3.3079e-02, -3.3478e-01,  2.8295e-01,  7.9911e-01,  8.7098e-01,\\n\",\n      \"          -3.8057e-01,  5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\\n\",\n      \"           6.5749e-01, -8.2280e-01,  4.0088e-01,  9.4624e-01,  7.4583e-01,\\n\",\n      \"          -1.8822e-01, -1.5356e-01,  9.0531e-01, -9.4046e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4370e-01,  6.9390e-01,  3.4906e-01,  1.8600e-01, -1.0352e-01,\\n\",\n      \"          -1.8402e-01, -4.7587e-01,  3.9898e-01,  4.0702e-01,  3.4950e-01,\\n\",\n      \"           5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02,  2.1085e-01,\\n\",\n      \"           5.8135e-01,  6.0812e-01, -4.3868e-02,  5.5309e-01, -5.7745e-01,\\n\",\n      \"           1.1744e-01,  2.9086e-02,  1.2145e-01,  5.4306e-01,  6.4010e-01,\\n\",\n      \"          -2.5673e-01,  6.0993e-01, -7.3052e-03,  7.7005e-02,  2.6385e-01,\\n\",\n      \"           6.2501e-01, -6.7076e-01, -9.6880e-02,  3.9839e-01, -1.2475e-01,\\n\",\n      \"           3.5841e-01, -4.1073e-02,  5.3352e-01, -2.4644e-01,  7.5658e-02,\\n\",\n      \"           1.7233e-01,  5.7383e-01, -8.7162e-02,  4.8839e-01,  1.1819e-01,\\n\",\n      \"          -1.4091e-01, -1.5005e-01,  2.0554e-01,  7.3376e-01,  5.7186e-01,\\n\",\n      \"           2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\\n\",\n      \"           4.2501e-01, -4.6323e-01,  1.3973e-01, -2.1567e-01,  8.0603e-01,\\n\",\n      \"          -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\\n\",\n      \"         [-6.1965e-01,  9.8332e-01,  5.0493e-01,  2.8111e-01, -5.3563e-01,\\n\",\n      \"          -5.9760e-01, -9.7713e-01, -9.0046e-01,  9.2203e-01,  3.4881e-04,\\n\",\n      \"           3.0716e-01, -9.3601e-01, -7.7404e-01,  9.6783e-01,  1.1720e-01,\\n\",\n      \"           7.5584e-01,  5.2906e-01,  9.7504e-01,  9.7287e-01, -7.2797e-01,\\n\",\n      \"          -9.8892e-01, -3.6624e-01, -1.9580e-02,  3.4981e-01,  3.2603e-01,\\n\",\n      \"          -9.0325e-01,  5.5451e-01,  1.3807e-01, -2.0965e-02, -4.0570e-02,\\n\",\n      \"           9.6092e-01, -5.8279e-01,  4.7798e-01, -4.6821e-01,  2.7388e-03,\\n\",\n      \"           7.5130e-01, -7.7676e-01,  8.5018e-01,  5.0395e-01, -2.3900e-01,\\n\",\n      \"           8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\\n\",\n      \"           4.2121e-02, -3.8591e-01, -4.9300e-01,  8.2269e-01,  9.6996e-01,\\n\",\n      \"          -8.6781e-01,  8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\\n\",\n      \"           6.9462e-01, -9.9058e-01,  7.5560e-01,  9.5516e-01,  8.5390e-01,\\n\",\n      \"          -9.3777e-01,  7.3466e-01,  9.5822e-01, -9.6689e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.2412e-02,  5.5587e-01,  5.2648e-01,  6.8613e-01, -5.2126e-01,\\n\",\n      \"          -2.6911e-01, -6.0472e-01, -8.5598e-01,  5.5327e-01,  1.5888e-01,\\n\",\n      \"           1.6669e-01, -7.6833e-01, -4.9673e-01,  4.0409e-01,  1.4775e-01,\\n\",\n      \"           8.2823e-01,  6.1798e-01,  6.2634e-01,  7.0638e-01, -6.3201e-01,\\n\",\n      \"          -8.1080e-01, -1.9344e-01,  2.3377e-01,  5.5736e-01,  4.0636e-01,\\n\",\n      \"          -9.2914e-01,  8.4626e-01,  4.3793e-02, -4.0619e-01,  1.3983e-01,\\n\",\n      \"           8.7200e-01, -3.6435e-01,  5.4387e-01,  1.9864e-01, -6.3067e-01,\\n\",\n      \"           3.2501e-01, -8.2716e-01,  7.3380e-01,  3.2731e-01,  1.1471e-01,\\n\",\n      \"           4.2973e-02, -5.7053e-01, -7.6254e-01,  6.5678e-01,  1.9348e-01,\\n\",\n      \"           9.6505e-03, -3.7881e-01,  3.7071e-01,  8.6609e-01,  9.2239e-01,\\n\",\n      \"          -2.5739e-01,  5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\\n\",\n      \"           7.2268e-01, -7.9991e-01,  4.7691e-01,  9.3956e-01,  7.7451e-01,\\n\",\n      \"          -3.3390e-01, -2.0639e-01,  9.0730e-01, -9.1102e-01],\\n\",\n      \"         [-8.2056e-01,  9.9517e-01,  5.2822e-01, -2.9103e-02, -4.4076e-01,\\n\",\n      \"          -5.0182e-01, -9.9669e-01, -9.2137e-01,  9.6995e-01,  9.8441e-03,\\n\",\n      \"           3.5683e-01, -9.7109e-01, -8.6985e-01,  9.9538e-01,  6.6071e-02,\\n\",\n      \"           7.5521e-01,  5.4956e-01,  9.8520e-01,  9.9528e-01, -7.4652e-01,\\n\",\n      \"          -9.9837e-01, -4.0200e-01,  1.3232e-02,  4.5854e-01,  2.7352e-01,\\n\",\n      \"          -8.9861e-01,  4.5760e-01,  1.9683e-01,  9.8737e-02,  5.9758e-02,\\n\",\n      \"           9.7392e-01, -7.3979e-01,  3.9800e-01, -6.4981e-01,  3.9077e-01,\\n\",\n      \"           8.7535e-01, -7.1771e-01,  9.1071e-01,  6.2887e-01, -2.6265e-01,\\n\",\n      \"           9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\\n\",\n      \"           5.0785e-02, -4.2154e-01, -7.8124e-01,  8.4035e-01,  9.9191e-01,\\n\",\n      \"          -9.3793e-01,  9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\\n\",\n      \"           7.2309e-01, -9.9203e-01,  8.8789e-01,  9.6214e-01,  9.1157e-01,\\n\",\n      \"          -9.9297e-01,  8.7711e-01,  9.7576e-01, -9.8162e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([26,  3])\\n\",\n      \"dec_state: tensor([[[ 2.5443e-01,  9.3441e-01, -1.4811e-01,  8.8686e-01,  3.9753e-01,\\n\",\n      \"           4.6698e-01, -4.8882e-01,  2.3902e-02, -9.2307e-02, -9.1608e-02,\\n\",\n      \"           3.8625e-01, -6.3666e-01, -3.8628e-01,  5.3947e-01, -5.7806e-01,\\n\",\n      \"          -8.1972e-01, -2.0817e-01, -1.2631e-02, -1.4117e-01,  6.0960e-01,\\n\",\n      \"           6.7891e-01, -5.9534e-01,  5.9256e-01,  7.0495e-01,  5.8889e-01,\\n\",\n      \"          -6.8780e-01,  3.5270e-01, -1.4734e-01, -9.8256e-01, -2.2464e-01,\\n\",\n      \"          -7.0441e-01,  8.7418e-01,  8.2788e-02,  6.9129e-01, -6.8910e-01,\\n\",\n      \"          -8.2131e-01,  6.7698e-01, -1.3681e-01, -8.2368e-01,  4.8132e-01,\\n\",\n      \"          -7.6487e-01,  5.5576e-01, -8.8099e-02,  7.7983e-02, -6.1413e-01,\\n\",\n      \"           7.4257e-01, -2.0542e-01,  3.5646e-02, -4.4742e-03,  8.5738e-01,\\n\",\n      \"           5.4925e-01,  4.1615e-01, -6.6714e-01, -1.3500e-01, -9.5288e-01,\\n\",\n      \"           1.1565e-01,  1.2564e-01, -5.4328e-02,  3.9482e-04,  1.1906e-01,\\n\",\n      \"          -9.1687e-01,  8.5418e-01,  2.6917e-01, -4.4784e-01],\\n\",\n      \"         [ 9.4176e-01,  9.9342e-01, -9.7945e-01,  8.2937e-01,  6.5405e-01,\\n\",\n      \"           6.3548e-01, -9.1585e-01, -7.1653e-01, -4.3733e-02, -9.8246e-01,\\n\",\n      \"          -9.0997e-01, -9.8530e-01,  7.5978e-01,  9.9149e-01, -9.2831e-01,\\n\",\n      \"           5.5637e-01,  9.2717e-01, -6.1696e-01, -9.2115e-01,  7.9475e-01,\\n\",\n      \"           9.0632e-01, -8.2382e-01, -5.5702e-01,  8.2265e-01,  9.6157e-01,\\n\",\n      \"          -9.5956e-01, -5.3701e-01, -9.4306e-01,  6.2341e-01, -9.2066e-01,\\n\",\n      \"          -9.6659e-01,  1.9108e-01,  7.5630e-01,  8.0602e-01, -7.2513e-01,\\n\",\n      \"          -7.8743e-01,  9.2776e-01, -7.7533e-01,  7.3539e-01,  8.1868e-01,\\n\",\n      \"          -9.7479e-01,  9.3603e-01,  8.2834e-01, -7.0802e-01, -9.5417e-01,\\n\",\n      \"           9.5953e-01, -8.1502e-01,  8.3311e-01, -3.2695e-01,  9.4064e-01,\\n\",\n      \"          -6.5685e-01,  9.9154e-01,  1.7855e-02, -7.0035e-01,  8.9563e-01,\\n\",\n      \"          -3.0076e-01,  9.4889e-01,  7.9818e-01, -7.0864e-01, -4.6977e-01,\\n\",\n      \"          -9.9756e-01,  9.6643e-01,  3.4380e-01, -8.8210e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-2.1643e-01,  4.0703e-01,  3.2634e-01, -5.0862e-01, -5.9415e-01,\\n\",\n      \"           5.1934e-01,  2.3474e-02,  5.2337e-01, -3.0883e-01, -1.4427e-01,\\n\",\n      \"           4.1089e-01,  2.8636e-01,  4.1313e-01, -2.1515e-01,  1.8673e-01,\\n\",\n      \"          -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\\n\",\n      \"           6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\\n\",\n      \"          -9.0624e-02,  8.4112e-01,  4.1783e-01,  4.2457e-01,  4.4339e-01,\\n\",\n      \"          -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\\n\",\n      \"          -1.0899e-01,  2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\\n\",\n      \"          -1.1454e-01, -1.9440e-01,  1.8098e-01,  3.7718e-01,  4.4388e-01,\\n\",\n      \"          -1.9044e-01,  1.2831e-01,  9.2631e-02, -5.9981e-01, -1.7597e-01,\\n\",\n      \"           2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02,  1.3814e-01,\\n\",\n      \"           4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\\n\",\n      \"           4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\\n\",\n      \"         [-2.7921e-01,  5.5246e-01, -2.3130e-01,  6.0324e-02, -1.0443e-01,\\n\",\n      \"          -9.6127e-02, -4.8838e-01,  1.7342e-01, -1.6244e-03, -1.5950e-01,\\n\",\n      \"          -2.0051e-01, -2.3869e-01, -6.2903e-01,  3.7441e-01,  1.1054e-01,\\n\",\n      \"          -4.1060e-01,  4.7134e-01,  3.1578e-01,  2.8223e-01, -7.0127e-01,\\n\",\n      \"          -6.8227e-01, -1.6815e-01,  1.2664e-01, -3.3500e-02,  2.8114e-01,\\n\",\n      \"          -3.8212e-02,  3.1934e-01,  3.1801e-01, -1.0009e-01, -1.3935e-01,\\n\",\n      \"           3.5000e-01, -1.1332e-01,  1.6779e-01, -4.4952e-01, -2.7263e-01,\\n\",\n      \"          -2.6393e-02, -2.0009e-01,  2.5008e-01, -5.6962e-02, -3.3716e-01,\\n\",\n      \"           1.2111e-01,  7.2555e-01, -1.6554e-01,  3.0319e-02, -7.2813e-01,\\n\",\n      \"          -5.0258e-01,  4.6271e-01, -2.0600e-01,  7.9482e-02,  4.5408e-01,\\n\",\n      \"           1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\\n\",\n      \"           3.1461e-01, -5.0918e-01,  1.8147e-01,  6.9853e-02, -1.7200e-01,\\n\",\n      \"          -1.3063e-01,  1.5399e-01,  3.4001e-01, -5.4762e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.9094e-01,  2.9604e-01, -6.4331e-01,  8.5796e-01, -5.0427e-01,\\n\",\n      \"          -3.9154e-01,  1.1564e-01,  7.4492e-01,  2.2174e-01, -3.8437e-01,\\n\",\n      \"           3.4773e-01,  2.4916e-02,  3.9094e-01, -6.5730e-01,  5.5876e-01,\\n\",\n      \"           4.9713e-01,  4.2008e-01,  1.7297e-01,  2.0467e-01, -4.0904e-01,\\n\",\n      \"          -3.2362e-01,  1.3526e-01,  5.7380e-02,  8.0937e-01,  4.6005e-01,\\n\",\n      \"          -4.4897e-01,  8.0193e-01,  2.0982e-01,  5.7502e-02,  1.6175e-01,\\n\",\n      \"           1.6195e-01,  6.5908e-02,  8.0127e-01,  2.1267e-01, -3.2248e-01,\\n\",\n      \"           6.1880e-02, -6.0822e-01,  9.2528e-01,  1.5635e-01,  6.5912e-01,\\n\",\n      \"          -2.5814e-01,  6.9864e-02, -6.9100e-02, -2.0400e-01,  4.4236e-01,\\n\",\n      \"          -3.8749e-01,  2.2603e-01, -7.3010e-01, -6.7803e-02,  6.0987e-01,\\n\",\n      \"          -2.3944e-01, -2.2402e-01,  3.4141e-02, -7.5317e-01, -1.9034e-01,\\n\",\n      \"           1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01,  4.8121e-01,\\n\",\n      \"          -6.4265e-01, -7.2166e-01,  6.8618e-02, -1.7256e-01],\\n\",\n      \"         [-4.2395e-01,  4.3782e-01, -3.7864e-01,  4.6429e-01, -1.9293e-01,\\n\",\n      \"          -1.8951e-01, -2.7415e-01,  1.4951e-01, -3.3036e-01, -6.2952e-02,\\n\",\n      \"          -2.8961e-01,  2.6387e-01, -6.7616e-01,  8.8255e-03, -1.3174e-02,\\n\",\n      \"          -5.0924e-01, -5.3128e-02, -1.0846e-01,  4.2621e-01, -6.4251e-01,\\n\",\n      \"          -1.9010e-01, -8.9229e-02, -1.8645e-02,  1.4834e-01,  4.4270e-01,\\n\",\n      \"          -1.6318e-01,  5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\\n\",\n      \"           4.5368e-01, -2.8125e-01,  2.3815e-01, -3.6399e-01, -2.3326e-01,\\n\",\n      \"          -1.2933e-01, -3.3350e-01,  4.6229e-02, -1.8867e-01, -8.2094e-02,\\n\",\n      \"          -2.6307e-01,  7.5736e-01, -2.3453e-03,  1.3690e-01, -1.8830e-01,\\n\",\n      \"          -3.6770e-01,  2.2573e-03, -2.6534e-01,  1.3679e-01,  5.0285e-01,\\n\",\n      \"          -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\\n\",\n      \"           6.7031e-02, -6.5419e-02,  1.1711e-01,  3.5437e-02, -3.1980e-01,\\n\",\n      \"           2.7608e-01,  4.2805e-01,  1.0529e-01, -6.9090e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.6467e-01, -2.1472e-02, -2.3705e-01,  8.1433e-01,  1.1691e-01,\\n\",\n      \"          -5.2326e-01,  2.7152e-01,  7.2288e-01, -2.7715e-01, -5.5603e-02,\\n\",\n      \"           6.1393e-01, -3.2977e-02,  2.7468e-01, -5.7310e-01,  4.7398e-01,\\n\",\n      \"           3.3744e-01,  3.9739e-01, -3.0474e-02,  1.2378e-01, -3.6966e-02,\\n\",\n      \"          -5.7119e-01,  4.0540e-01,  7.2925e-02,  6.0944e-01,  3.6532e-01,\\n\",\n      \"          -5.7006e-01,  6.2813e-01,  1.8211e-01, -1.2571e-01,  2.1051e-01,\\n\",\n      \"           2.2644e-01,  2.3753e-01,  1.0566e-01,  3.3964e-01, -9.8686e-02,\\n\",\n      \"           7.1103e-02, -5.1788e-01,  8.2421e-01,  4.0273e-01,  5.9817e-01,\\n\",\n      \"          -5.9287e-01,  5.6128e-02, -3.0473e-01,  1.4045e-01,  1.7209e-01,\\n\",\n      \"          -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\\n\",\n      \"           2.0601e-01,  3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\\n\",\n      \"          -1.6437e-01,  9.7025e-02, -2.7640e-01, -1.8737e-01,  2.3292e-01,\\n\",\n      \"          -4.5736e-01, -5.6993e-01,  3.8426e-01, -5.8431e-01],\\n\",\n      \"         [ 2.9292e-02,  4.2082e-01,  1.1496e-01, -1.3269e-01, -4.9844e-01,\\n\",\n      \"          -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\\n\",\n      \"          -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01,  3.1475e-02,\\n\",\n      \"          -3.9173e-01,  1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\\n\",\n      \"           3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02,  3.3985e-01,\\n\",\n      \"           4.4148e-02,  7.0217e-02, -9.1169e-02,  2.0149e-01, -5.0179e-01,\\n\",\n      \"           4.1926e-01, -2.3867e-01, -2.1852e-01,  4.9277e-02, -4.5147e-02,\\n\",\n      \"          -1.3929e-01, -2.5047e-01,  4.9927e-01, -3.6437e-01, -3.5151e-01,\\n\",\n      \"          -1.4846e-01,  2.4364e-01, -2.1723e-01, -4.6918e-02,  1.4216e-01,\\n\",\n      \"          -5.0783e-02, -2.6806e-01,  8.9650e-03,  3.0882e-01, -5.4537e-02,\\n\",\n      \"          -1.0623e-01,  8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\\n\",\n      \"           3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\\n\",\n      \"           3.3971e-01,  8.3942e-02, -1.2739e-01, -6.4155e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9462e-01, -2.2764e-01, -3.7951e-02,  4.0051e-01, -2.9822e-01,\\n\",\n      \"           1.9265e-01,  9.7957e-02,  3.4318e-01,  6.5615e-02,  1.4674e-01,\\n\",\n      \"           1.9097e-01, -1.9940e-01,  1.4437e-01, -2.2148e-01,  5.6047e-01,\\n\",\n      \"           5.2499e-01,  4.4121e-01, -2.5948e-01,  1.0898e-01, -2.9630e-01,\\n\",\n      \"          -1.4722e-01,  2.0510e-01,  3.2749e-02,  5.3201e-01,  5.3504e-01,\\n\",\n      \"          -5.3038e-01,  6.1319e-01,  1.6065e-01, -3.3821e-02,  1.9661e-01,\\n\",\n      \"           5.2853e-01, -2.7200e-01,  1.5528e-01,  2.8527e-01, -1.4127e-01,\\n\",\n      \"           1.4125e-02, -2.4507e-01,  5.8318e-01,  2.6271e-01,  6.1537e-01,\\n\",\n      \"           5.7424e-02,  1.5592e-01, -1.7715e-01,  1.8923e-01,  4.4712e-01,\\n\",\n      \"          -3.3768e-01, -1.8343e-01, -5.5573e-02,  4.3081e-01,  8.3409e-02,\\n\",\n      \"           2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\\n\",\n      \"           4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01,  3.5492e-01,\\n\",\n      \"          -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\\n\",\n      \"         [ 5.8269e-02,  8.0529e-01,  3.1633e-01,  3.5130e-02, -4.0030e-01,\\n\",\n      \"          -5.2046e-01, -5.7112e-01,  1.2411e-01,  5.1932e-01,  8.1681e-02,\\n\",\n      \"          -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01,  2.6595e-01,\\n\",\n      \"           2.8538e-01,  5.4966e-01, -2.2023e-01,  6.2513e-01, -7.1846e-01,\\n\",\n      \"           1.5489e-01, -2.3305e-01, -2.8478e-01,  4.7244e-02,  6.0448e-01,\\n\",\n      \"          -2.4189e-02,  1.3727e-01,  4.3836e-02,  1.9764e-01, -4.9993e-01,\\n\",\n      \"           6.4335e-01, -6.3273e-01, -1.7085e-01,  3.6792e-01, -1.1653e-02,\\n\",\n      \"           5.9266e-02, -1.4715e-01,  6.0236e-01, -5.3754e-01, -3.3864e-01,\\n\",\n      \"          -1.6203e-01,  4.6025e-01, -1.2995e-01,  1.5817e-01, -1.0733e-01,\\n\",\n      \"          -7.5994e-02, -1.4720e-01,  7.4298e-02,  6.0721e-01,  3.2473e-01,\\n\",\n      \"          -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\\n\",\n      \"           2.0282e-01, -5.1651e-01,  1.3683e-03, -2.0047e-01,  7.6022e-01,\\n\",\n      \"          -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.4355e-01,  9.7544e-02,  4.9027e-02,  3.3419e-01,  1.2388e-01,\\n\",\n      \"           7.1731e-02,  1.8976e-01,  4.4490e-01, -2.9891e-01,  2.0516e-01,\\n\",\n      \"          -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02,  5.4330e-02,\\n\",\n      \"           4.1832e-01,  3.2749e-01,  5.0725e-02,  5.7945e-03, -1.6877e-01,\\n\",\n      \"          -4.3551e-02,  7.4475e-02,  5.0754e-01,  5.8456e-01,  3.5108e-01,\\n\",\n      \"          -3.2765e-01,  6.2981e-01, -2.1042e-01, -1.5040e-02,  3.9792e-01,\\n\",\n      \"           3.3859e-01, -2.2759e-01,  4.8875e-03,  2.0304e-01, -1.8557e-01,\\n\",\n      \"           5.1139e-01, -6.3578e-02,  3.7445e-01,  2.5876e-01,  3.2321e-01,\\n\",\n      \"           3.3812e-01,  4.8470e-01, -3.5065e-02,  5.6784e-01,  6.2865e-01,\\n\",\n      \"          -3.4431e-01, -3.1394e-01,  2.1078e-01,  5.3845e-01,  3.1855e-01,\\n\",\n      \"           4.3601e-01, -3.4167e-03, -4.5149e-02,  4.3369e-02,  4.9973e-02,\\n\",\n      \"           5.7321e-01, -6.1557e-02,  1.4944e-01, -1.7503e-02,  1.5900e-01,\\n\",\n      \"          -1.2167e-01, -4.7770e-01,  4.0990e-02, -1.3854e-01],\\n\",\n      \"         [-1.2090e-01,  6.5291e-01,  4.9012e-01,  6.3469e-01, -6.1991e-01,\\n\",\n      \"          -4.5836e-01, -6.4770e-01, -8.5862e-01,  6.3087e-01, -1.7720e-02,\\n\",\n      \"           1.7558e-01, -8.4372e-01, -6.0052e-01,  3.6973e-01,  1.8317e-01,\\n\",\n      \"           7.5792e-01,  5.6800e-01,  6.3874e-01,  7.7846e-01, -7.3676e-01,\\n\",\n      \"          -8.1896e-01, -3.2437e-01, -5.9558e-02,  1.6930e-01,  4.0612e-01,\\n\",\n      \"          -9.0851e-01,  7.4943e-01,  7.0389e-02, -3.3322e-01, -3.4272e-01,\\n\",\n      \"           8.7254e-01, -3.7895e-01,  5.6617e-01,  2.2784e-01, -5.8411e-01,\\n\",\n      \"           2.4766e-01, -8.4705e-01,  7.5885e-01,  2.6971e-01, -2.0708e-01,\\n\",\n      \"          -2.3187e-01, -6.6556e-01, -7.9039e-01,  5.7092e-01, -9.1081e-03,\\n\",\n      \"           3.3079e-02, -3.3478e-01,  2.8295e-01,  7.9911e-01,  8.7098e-01,\\n\",\n      \"          -3.8057e-01,  5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\\n\",\n      \"           6.5749e-01, -8.2280e-01,  4.0088e-01,  9.4624e-01,  7.4583e-01,\\n\",\n      \"          -1.8822e-01, -1.5356e-01,  9.0531e-01, -9.4046e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4370e-01,  6.9390e-01,  3.4906e-01,  1.8600e-01, -1.0352e-01,\\n\",\n      \"          -1.8402e-01, -4.7587e-01,  3.9898e-01,  4.0702e-01,  3.4950e-01,\\n\",\n      \"           5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02,  2.1085e-01,\\n\",\n      \"           5.8135e-01,  6.0812e-01, -4.3868e-02,  5.5309e-01, -5.7745e-01,\\n\",\n      \"           1.1744e-01,  2.9086e-02,  1.2145e-01,  5.4306e-01,  6.4010e-01,\\n\",\n      \"          -2.5673e-01,  6.0993e-01, -7.3052e-03,  7.7005e-02,  2.6385e-01,\\n\",\n      \"           6.2501e-01, -6.7076e-01, -9.6880e-02,  3.9839e-01, -1.2475e-01,\\n\",\n      \"           3.5841e-01, -4.1073e-02,  5.3352e-01, -2.4644e-01,  7.5658e-02,\\n\",\n      \"           1.7233e-01,  5.7383e-01, -8.7162e-02,  4.8839e-01,  1.1819e-01,\\n\",\n      \"          -1.4091e-01, -1.5005e-01,  2.0554e-01,  7.3376e-01,  5.7186e-01,\\n\",\n      \"           2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\\n\",\n      \"           4.2501e-01, -4.6323e-01,  1.3973e-01, -2.1567e-01,  8.0603e-01,\\n\",\n      \"          -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\\n\",\n      \"         [-6.1965e-01,  9.8332e-01,  5.0493e-01,  2.8111e-01, -5.3563e-01,\\n\",\n      \"          -5.9760e-01, -9.7713e-01, -9.0046e-01,  9.2203e-01,  3.4881e-04,\\n\",\n      \"           3.0716e-01, -9.3601e-01, -7.7404e-01,  9.6783e-01,  1.1720e-01,\\n\",\n      \"           7.5584e-01,  5.2906e-01,  9.7504e-01,  9.7287e-01, -7.2797e-01,\\n\",\n      \"          -9.8892e-01, -3.6624e-01, -1.9580e-02,  3.4981e-01,  3.2603e-01,\\n\",\n      \"          -9.0325e-01,  5.5451e-01,  1.3807e-01, -2.0965e-02, -4.0570e-02,\\n\",\n      \"           9.6092e-01, -5.8279e-01,  4.7798e-01, -4.6821e-01,  2.7388e-03,\\n\",\n      \"           7.5130e-01, -7.7676e-01,  8.5018e-01,  5.0395e-01, -2.3900e-01,\\n\",\n      \"           8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\\n\",\n      \"           4.2121e-02, -3.8591e-01, -4.9300e-01,  8.2269e-01,  9.6996e-01,\\n\",\n      \"          -8.6781e-01,  8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\\n\",\n      \"           6.9462e-01, -9.9058e-01,  7.5560e-01,  9.5516e-01,  8.5390e-01,\\n\",\n      \"          -9.3777e-01,  7.3466e-01,  9.5822e-01, -9.6689e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.2412e-02,  5.5587e-01,  5.2648e-01,  6.8613e-01, -5.2126e-01,\\n\",\n      \"          -2.6911e-01, -6.0472e-01, -8.5598e-01,  5.5327e-01,  1.5888e-01,\\n\",\n      \"           1.6669e-01, -7.6833e-01, -4.9673e-01,  4.0409e-01,  1.4775e-01,\\n\",\n      \"           8.2823e-01,  6.1798e-01,  6.2634e-01,  7.0638e-01, -6.3201e-01,\\n\",\n      \"          -8.1080e-01, -1.9344e-01,  2.3377e-01,  5.5736e-01,  4.0636e-01,\\n\",\n      \"          -9.2914e-01,  8.4626e-01,  4.3793e-02, -4.0619e-01,  1.3983e-01,\\n\",\n      \"           8.7200e-01, -3.6435e-01,  5.4387e-01,  1.9864e-01, -6.3067e-01,\\n\",\n      \"           3.2501e-01, -8.2716e-01,  7.3380e-01,  3.2731e-01,  1.1471e-01,\\n\",\n      \"           4.2973e-02, -5.7053e-01, -7.6254e-01,  6.5678e-01,  1.9348e-01,\\n\",\n      \"           9.6505e-03, -3.7881e-01,  3.7071e-01,  8.6609e-01,  9.2239e-01,\\n\",\n      \"          -2.5739e-01,  5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\\n\",\n      \"           7.2268e-01, -7.9991e-01,  4.7691e-01,  9.3956e-01,  7.7451e-01,\\n\",\n      \"          -3.3390e-01, -2.0639e-01,  9.0730e-01, -9.1102e-01],\\n\",\n      \"         [-8.2056e-01,  9.9517e-01,  5.2822e-01, -2.9103e-02, -4.4076e-01,\\n\",\n      \"          -5.0182e-01, -9.9669e-01, -9.2137e-01,  9.6995e-01,  9.8441e-03,\\n\",\n      \"           3.5683e-01, -9.7109e-01, -8.6985e-01,  9.9538e-01,  6.6071e-02,\\n\",\n      \"           7.5521e-01,  5.4956e-01,  9.8520e-01,  9.9528e-01, -7.4652e-01,\\n\",\n      \"          -9.9837e-01, -4.0200e-01,  1.3232e-02,  4.5854e-01,  2.7352e-01,\\n\",\n      \"          -8.9861e-01,  4.5760e-01,  1.9683e-01,  9.8737e-02,  5.9758e-02,\\n\",\n      \"           9.7392e-01, -7.3979e-01,  3.9800e-01, -6.4981e-01,  3.9077e-01,\\n\",\n      \"           8.7535e-01, -7.1771e-01,  9.1071e-01,  6.2887e-01, -2.6265e-01,\\n\",\n      \"           9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\\n\",\n      \"           5.0785e-02, -4.2154e-01, -7.8124e-01,  8.4035e-01,  9.9191e-01,\\n\",\n      \"          -9.3793e-01,  9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\\n\",\n      \"           7.2309e-01, -9.9203e-01,  8.8789e-01,  9.6214e-01,  9.1157e-01,\\n\",\n      \"          -9.9297e-01,  8.7711e-01,  9.7576e-01, -9.8162e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([28,  2])\\n\",\n      \"dec_state: tensor([[[ 0.5929,  0.9413, -0.4474,  0.6368,  0.1584,  0.1510, -0.4441,\\n\",\n      \"          -0.4447, -0.3229,  0.3370,  0.3735, -0.6848, -0.4189,  0.6778,\\n\",\n      \"          -0.0119, -0.6504,  0.1010, -0.1092,  0.0990,  0.2028,  0.7993,\\n\",\n      \"          -0.4219, -0.0430,  0.7870,  0.8594, -0.7964,  0.0760, -0.4125,\\n\",\n      \"          -0.9274, -0.7032, -0.8200,  0.8397,  0.1113,  0.5135, -0.5960,\\n\",\n      \"          -0.9122, -0.2452, -0.0936, -0.8362,  0.4241, -0.6692,  0.6282,\\n\",\n      \"           0.2046,  0.2960, -0.7272,  0.9069, -0.7497,  0.0452, -0.0437,\\n\",\n      \"           0.8568,  0.9283,  0.8003, -0.4407, -0.1657, -0.9317,  0.0627,\\n\",\n      \"           0.4709,  0.3962,  0.4406, -0.3298, -0.9537,  0.9154,  0.4361,\\n\",\n      \"          -0.1999],\\n\",\n      \"         [ 0.9130,  0.9409, -0.9889,  0.8433,  0.8135,  0.7436, -0.8369,\\n\",\n      \"          -0.3012, -0.4915,  0.4903,  0.2320, -0.9684,  0.3459,  0.8612,\\n\",\n      \"          -0.8816, -0.4265,  0.2553, -0.3614, -0.8600,  0.6848,  0.9756,\\n\",\n      \"          -0.8391,  0.3875,  0.8714,  0.8733, -0.9678, -0.8699, -0.8267,\\n\",\n      \"          -0.6952, -0.7876, -0.9635,  0.5961, -0.8376,  0.8284, -0.7938,\\n\",\n      \"          -0.9668,  0.7737, -0.5902,  0.3953,  0.7439, -0.9295,  0.9644,\\n\",\n      \"           0.8366,  0.0040, -0.7236,  0.8897, -0.8685,  0.8830, -0.4147,\\n\",\n      \"           0.8422,  0.6123,  0.9734, -0.1308, -0.7782, -0.2841, -0.3551,\\n\",\n      \"           0.9874,  0.9087,  0.3092,  0.0663, -0.9973,  0.9688,  0.2132,\\n\",\n      \"           0.4271]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-2.1643e-01,  4.0703e-01,  3.2634e-01, -5.0862e-01, -5.9415e-01,\\n\",\n      \"           5.1934e-01,  2.3474e-02,  5.2337e-01, -3.0883e-01, -1.4427e-01,\\n\",\n      \"           4.1089e-01,  2.8636e-01,  4.1313e-01, -2.1515e-01,  1.8673e-01,\\n\",\n      \"          -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\\n\",\n      \"           6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\\n\",\n      \"          -9.0624e-02,  8.4112e-01,  4.1783e-01,  4.2457e-01,  4.4339e-01,\\n\",\n      \"          -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\\n\",\n      \"          -1.0899e-01,  2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\\n\",\n      \"          -1.1454e-01, -1.9440e-01,  1.8098e-01,  3.7718e-01,  4.4388e-01,\\n\",\n      \"          -1.9044e-01,  1.2831e-01,  9.2631e-02, -5.9981e-01, -1.7597e-01,\\n\",\n      \"           2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02,  1.3814e-01,\\n\",\n      \"           4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\\n\",\n      \"           4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\\n\",\n      \"         [-2.7921e-01,  5.5246e-01, -2.3130e-01,  6.0324e-02, -1.0443e-01,\\n\",\n      \"          -9.6127e-02, -4.8838e-01,  1.7342e-01, -1.6244e-03, -1.5950e-01,\\n\",\n      \"          -2.0051e-01, -2.3869e-01, -6.2903e-01,  3.7441e-01,  1.1054e-01,\\n\",\n      \"          -4.1060e-01,  4.7134e-01,  3.1578e-01,  2.8223e-01, -7.0127e-01,\\n\",\n      \"          -6.8227e-01, -1.6815e-01,  1.2664e-01, -3.3500e-02,  2.8114e-01,\\n\",\n      \"          -3.8212e-02,  3.1934e-01,  3.1801e-01, -1.0009e-01, -1.3935e-01,\\n\",\n      \"           3.5000e-01, -1.1332e-01,  1.6779e-01, -4.4952e-01, -2.7263e-01,\\n\",\n      \"          -2.6393e-02, -2.0009e-01,  2.5008e-01, -5.6962e-02, -3.3716e-01,\\n\",\n      \"           1.2111e-01,  7.2555e-01, -1.6554e-01,  3.0319e-02, -7.2813e-01,\\n\",\n      \"          -5.0258e-01,  4.6271e-01, -2.0600e-01,  7.9482e-02,  4.5408e-01,\\n\",\n      \"           1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\\n\",\n      \"           3.1461e-01, -5.0918e-01,  1.8147e-01,  6.9853e-02, -1.7200e-01,\\n\",\n      \"          -1.3063e-01,  1.5399e-01,  3.4001e-01, -5.4762e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.9094e-01,  2.9604e-01, -6.4331e-01,  8.5796e-01, -5.0427e-01,\\n\",\n      \"          -3.9154e-01,  1.1564e-01,  7.4492e-01,  2.2174e-01, -3.8437e-01,\\n\",\n      \"           3.4773e-01,  2.4916e-02,  3.9094e-01, -6.5730e-01,  5.5876e-01,\\n\",\n      \"           4.9713e-01,  4.2008e-01,  1.7297e-01,  2.0467e-01, -4.0904e-01,\\n\",\n      \"          -3.2362e-01,  1.3526e-01,  5.7380e-02,  8.0937e-01,  4.6005e-01,\\n\",\n      \"          -4.4897e-01,  8.0193e-01,  2.0982e-01,  5.7502e-02,  1.6175e-01,\\n\",\n      \"           1.6195e-01,  6.5908e-02,  8.0127e-01,  2.1267e-01, -3.2248e-01,\\n\",\n      \"           6.1880e-02, -6.0822e-01,  9.2528e-01,  1.5635e-01,  6.5912e-01,\\n\",\n      \"          -2.5814e-01,  6.9864e-02, -6.9100e-02, -2.0400e-01,  4.4236e-01,\\n\",\n      \"          -3.8749e-01,  2.2603e-01, -7.3010e-01, -6.7803e-02,  6.0987e-01,\\n\",\n      \"          -2.3944e-01, -2.2402e-01,  3.4141e-02, -7.5317e-01, -1.9034e-01,\\n\",\n      \"           1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01,  4.8121e-01,\\n\",\n      \"          -6.4265e-01, -7.2166e-01,  6.8618e-02, -1.7256e-01],\\n\",\n      \"         [-4.2395e-01,  4.3782e-01, -3.7864e-01,  4.6429e-01, -1.9293e-01,\\n\",\n      \"          -1.8951e-01, -2.7415e-01,  1.4951e-01, -3.3036e-01, -6.2952e-02,\\n\",\n      \"          -2.8961e-01,  2.6387e-01, -6.7616e-01,  8.8255e-03, -1.3174e-02,\\n\",\n      \"          -5.0924e-01, -5.3128e-02, -1.0846e-01,  4.2621e-01, -6.4251e-01,\\n\",\n      \"          -1.9010e-01, -8.9229e-02, -1.8645e-02,  1.4834e-01,  4.4270e-01,\\n\",\n      \"          -1.6318e-01,  5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\\n\",\n      \"           4.5368e-01, -2.8125e-01,  2.3815e-01, -3.6399e-01, -2.3326e-01,\\n\",\n      \"          -1.2933e-01, -3.3350e-01,  4.6229e-02, -1.8867e-01, -8.2094e-02,\\n\",\n      \"          -2.6307e-01,  7.5736e-01, -2.3453e-03,  1.3690e-01, -1.8830e-01,\\n\",\n      \"          -3.6770e-01,  2.2573e-03, -2.6534e-01,  1.3679e-01,  5.0285e-01,\\n\",\n      \"          -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\\n\",\n      \"           6.7031e-02, -6.5419e-02,  1.1711e-01,  3.5437e-02, -3.1980e-01,\\n\",\n      \"           2.7608e-01,  4.2805e-01,  1.0529e-01, -6.9090e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.6467e-01, -2.1472e-02, -2.3705e-01,  8.1433e-01,  1.1691e-01,\\n\",\n      \"          -5.2326e-01,  2.7152e-01,  7.2288e-01, -2.7715e-01, -5.5603e-02,\\n\",\n      \"           6.1393e-01, -3.2977e-02,  2.7468e-01, -5.7310e-01,  4.7398e-01,\\n\",\n      \"           3.3744e-01,  3.9739e-01, -3.0474e-02,  1.2378e-01, -3.6966e-02,\\n\",\n      \"          -5.7119e-01,  4.0540e-01,  7.2925e-02,  6.0944e-01,  3.6532e-01,\\n\",\n      \"          -5.7006e-01,  6.2813e-01,  1.8211e-01, -1.2571e-01,  2.1051e-01,\\n\",\n      \"           2.2644e-01,  2.3753e-01,  1.0566e-01,  3.3964e-01, -9.8686e-02,\\n\",\n      \"           7.1103e-02, -5.1788e-01,  8.2421e-01,  4.0273e-01,  5.9817e-01,\\n\",\n      \"          -5.9287e-01,  5.6128e-02, -3.0473e-01,  1.4045e-01,  1.7209e-01,\\n\",\n      \"          -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\\n\",\n      \"           2.0601e-01,  3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\\n\",\n      \"          -1.6437e-01,  9.7025e-02, -2.7640e-01, -1.8737e-01,  2.3292e-01,\\n\",\n      \"          -4.5736e-01, -5.6993e-01,  3.8426e-01, -5.8431e-01],\\n\",\n      \"         [ 2.9292e-02,  4.2082e-01,  1.1496e-01, -1.3269e-01, -4.9844e-01,\\n\",\n      \"          -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\\n\",\n      \"          -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01,  3.1475e-02,\\n\",\n      \"          -3.9173e-01,  1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\\n\",\n      \"           3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02,  3.3985e-01,\\n\",\n      \"           4.4148e-02,  7.0217e-02, -9.1169e-02,  2.0149e-01, -5.0179e-01,\\n\",\n      \"           4.1926e-01, -2.3867e-01, -2.1852e-01,  4.9277e-02, -4.5147e-02,\\n\",\n      \"          -1.3929e-01, -2.5047e-01,  4.9927e-01, -3.6437e-01, -3.5151e-01,\\n\",\n      \"          -1.4846e-01,  2.4364e-01, -2.1723e-01, -4.6918e-02,  1.4216e-01,\\n\",\n      \"          -5.0783e-02, -2.6806e-01,  8.9650e-03,  3.0882e-01, -5.4537e-02,\\n\",\n      \"          -1.0623e-01,  8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\\n\",\n      \"           3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\\n\",\n      \"           3.3971e-01,  8.3942e-02, -1.2739e-01, -6.4155e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9462e-01, -2.2764e-01, -3.7951e-02,  4.0051e-01, -2.9822e-01,\\n\",\n      \"           1.9265e-01,  9.7957e-02,  3.4318e-01,  6.5615e-02,  1.4674e-01,\\n\",\n      \"           1.9097e-01, -1.9940e-01,  1.4437e-01, -2.2148e-01,  5.6047e-01,\\n\",\n      \"           5.2499e-01,  4.4121e-01, -2.5948e-01,  1.0898e-01, -2.9630e-01,\\n\",\n      \"          -1.4722e-01,  2.0510e-01,  3.2749e-02,  5.3201e-01,  5.3504e-01,\\n\",\n      \"          -5.3038e-01,  6.1319e-01,  1.6065e-01, -3.3821e-02,  1.9661e-01,\\n\",\n      \"           5.2853e-01, -2.7200e-01,  1.5528e-01,  2.8527e-01, -1.4127e-01,\\n\",\n      \"           1.4125e-02, -2.4507e-01,  5.8318e-01,  2.6271e-01,  6.1537e-01,\\n\",\n      \"           5.7424e-02,  1.5592e-01, -1.7715e-01,  1.8923e-01,  4.4712e-01,\\n\",\n      \"          -3.3768e-01, -1.8343e-01, -5.5573e-02,  4.3081e-01,  8.3409e-02,\\n\",\n      \"           2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\\n\",\n      \"           4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01,  3.5492e-01,\\n\",\n      \"          -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\\n\",\n      \"         [ 5.8269e-02,  8.0529e-01,  3.1633e-01,  3.5130e-02, -4.0030e-01,\\n\",\n      \"          -5.2046e-01, -5.7112e-01,  1.2411e-01,  5.1932e-01,  8.1681e-02,\\n\",\n      \"          -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01,  2.6595e-01,\\n\",\n      \"           2.8538e-01,  5.4966e-01, -2.2023e-01,  6.2513e-01, -7.1846e-01,\\n\",\n      \"           1.5489e-01, -2.3305e-01, -2.8478e-01,  4.7244e-02,  6.0448e-01,\\n\",\n      \"          -2.4189e-02,  1.3727e-01,  4.3836e-02,  1.9764e-01, -4.9993e-01,\\n\",\n      \"           6.4335e-01, -6.3273e-01, -1.7085e-01,  3.6792e-01, -1.1653e-02,\\n\",\n      \"           5.9266e-02, -1.4715e-01,  6.0236e-01, -5.3754e-01, -3.3864e-01,\\n\",\n      \"          -1.6203e-01,  4.6025e-01, -1.2995e-01,  1.5817e-01, -1.0733e-01,\\n\",\n      \"          -7.5994e-02, -1.4720e-01,  7.4298e-02,  6.0721e-01,  3.2473e-01,\\n\",\n      \"          -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\\n\",\n      \"           2.0282e-01, -5.1651e-01,  1.3683e-03, -2.0047e-01,  7.6022e-01,\\n\",\n      \"          -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.4355e-01,  9.7544e-02,  4.9027e-02,  3.3419e-01,  1.2388e-01,\\n\",\n      \"           7.1731e-02,  1.8976e-01,  4.4490e-01, -2.9891e-01,  2.0516e-01,\\n\",\n      \"          -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02,  5.4330e-02,\\n\",\n      \"           4.1832e-01,  3.2749e-01,  5.0725e-02,  5.7945e-03, -1.6877e-01,\\n\",\n      \"          -4.3551e-02,  7.4475e-02,  5.0754e-01,  5.8456e-01,  3.5108e-01,\\n\",\n      \"          -3.2765e-01,  6.2981e-01, -2.1042e-01, -1.5040e-02,  3.9792e-01,\\n\",\n      \"           3.3859e-01, -2.2759e-01,  4.8875e-03,  2.0304e-01, -1.8557e-01,\\n\",\n      \"           5.1139e-01, -6.3578e-02,  3.7445e-01,  2.5876e-01,  3.2321e-01,\\n\",\n      \"           3.3812e-01,  4.8470e-01, -3.5065e-02,  5.6784e-01,  6.2865e-01,\\n\",\n      \"          -3.4431e-01, -3.1394e-01,  2.1078e-01,  5.3845e-01,  3.1855e-01,\\n\",\n      \"           4.3601e-01, -3.4167e-03, -4.5149e-02,  4.3369e-02,  4.9973e-02,\\n\",\n      \"           5.7321e-01, -6.1557e-02,  1.4944e-01, -1.7503e-02,  1.5900e-01,\\n\",\n      \"          -1.2167e-01, -4.7770e-01,  4.0990e-02, -1.3854e-01],\\n\",\n      \"         [-1.2090e-01,  6.5291e-01,  4.9012e-01,  6.3469e-01, -6.1991e-01,\\n\",\n      \"          -4.5836e-01, -6.4770e-01, -8.5862e-01,  6.3087e-01, -1.7720e-02,\\n\",\n      \"           1.7558e-01, -8.4372e-01, -6.0052e-01,  3.6973e-01,  1.8317e-01,\\n\",\n      \"           7.5792e-01,  5.6800e-01,  6.3874e-01,  7.7846e-01, -7.3676e-01,\\n\",\n      \"          -8.1896e-01, -3.2437e-01, -5.9558e-02,  1.6930e-01,  4.0612e-01,\\n\",\n      \"          -9.0851e-01,  7.4943e-01,  7.0389e-02, -3.3322e-01, -3.4272e-01,\\n\",\n      \"           8.7254e-01, -3.7895e-01,  5.6617e-01,  2.2784e-01, -5.8411e-01,\\n\",\n      \"           2.4766e-01, -8.4705e-01,  7.5885e-01,  2.6971e-01, -2.0708e-01,\\n\",\n      \"          -2.3187e-01, -6.6556e-01, -7.9039e-01,  5.7092e-01, -9.1081e-03,\\n\",\n      \"           3.3079e-02, -3.3478e-01,  2.8295e-01,  7.9911e-01,  8.7098e-01,\\n\",\n      \"          -3.8057e-01,  5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\\n\",\n      \"           6.5749e-01, -8.2280e-01,  4.0088e-01,  9.4624e-01,  7.4583e-01,\\n\",\n      \"          -1.8822e-01, -1.5356e-01,  9.0531e-01, -9.4046e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4370e-01,  6.9390e-01,  3.4906e-01,  1.8600e-01, -1.0352e-01,\\n\",\n      \"          -1.8402e-01, -4.7587e-01,  3.9898e-01,  4.0702e-01,  3.4950e-01,\\n\",\n      \"           5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02,  2.1085e-01,\\n\",\n      \"           5.8135e-01,  6.0812e-01, -4.3868e-02,  5.5309e-01, -5.7745e-01,\\n\",\n      \"           1.1744e-01,  2.9086e-02,  1.2145e-01,  5.4306e-01,  6.4010e-01,\\n\",\n      \"          -2.5673e-01,  6.0993e-01, -7.3052e-03,  7.7005e-02,  2.6385e-01,\\n\",\n      \"           6.2501e-01, -6.7076e-01, -9.6880e-02,  3.9839e-01, -1.2475e-01,\\n\",\n      \"           3.5841e-01, -4.1073e-02,  5.3352e-01, -2.4644e-01,  7.5658e-02,\\n\",\n      \"           1.7233e-01,  5.7383e-01, -8.7162e-02,  4.8839e-01,  1.1819e-01,\\n\",\n      \"          -1.4091e-01, -1.5005e-01,  2.0554e-01,  7.3376e-01,  5.7186e-01,\\n\",\n      \"           2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\\n\",\n      \"           4.2501e-01, -4.6323e-01,  1.3973e-01, -2.1567e-01,  8.0603e-01,\\n\",\n      \"          -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\\n\",\n      \"         [-6.1965e-01,  9.8332e-01,  5.0493e-01,  2.8111e-01, -5.3563e-01,\\n\",\n      \"          -5.9760e-01, -9.7713e-01, -9.0046e-01,  9.2203e-01,  3.4881e-04,\\n\",\n      \"           3.0716e-01, -9.3601e-01, -7.7404e-01,  9.6783e-01,  1.1720e-01,\\n\",\n      \"           7.5584e-01,  5.2906e-01,  9.7504e-01,  9.7287e-01, -7.2797e-01,\\n\",\n      \"          -9.8892e-01, -3.6624e-01, -1.9580e-02,  3.4981e-01,  3.2603e-01,\\n\",\n      \"          -9.0325e-01,  5.5451e-01,  1.3807e-01, -2.0965e-02, -4.0570e-02,\\n\",\n      \"           9.6092e-01, -5.8279e-01,  4.7798e-01, -4.6821e-01,  2.7388e-03,\\n\",\n      \"           7.5130e-01, -7.7676e-01,  8.5018e-01,  5.0395e-01, -2.3900e-01,\\n\",\n      \"           8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\\n\",\n      \"           4.2121e-02, -3.8591e-01, -4.9300e-01,  8.2269e-01,  9.6996e-01,\\n\",\n      \"          -8.6781e-01,  8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\\n\",\n      \"           6.9462e-01, -9.9058e-01,  7.5560e-01,  9.5516e-01,  8.5390e-01,\\n\",\n      \"          -9.3777e-01,  7.3466e-01,  9.5822e-01, -9.6689e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.2412e-02,  5.5587e-01,  5.2648e-01,  6.8613e-01, -5.2126e-01,\\n\",\n      \"          -2.6911e-01, -6.0472e-01, -8.5598e-01,  5.5327e-01,  1.5888e-01,\\n\",\n      \"           1.6669e-01, -7.6833e-01, -4.9673e-01,  4.0409e-01,  1.4775e-01,\\n\",\n      \"           8.2823e-01,  6.1798e-01,  6.2634e-01,  7.0638e-01, -6.3201e-01,\\n\",\n      \"          -8.1080e-01, -1.9344e-01,  2.3377e-01,  5.5736e-01,  4.0636e-01,\\n\",\n      \"          -9.2914e-01,  8.4626e-01,  4.3793e-02, -4.0619e-01,  1.3983e-01,\\n\",\n      \"           8.7200e-01, -3.6435e-01,  5.4387e-01,  1.9864e-01, -6.3067e-01,\\n\",\n      \"           3.2501e-01, -8.2716e-01,  7.3380e-01,  3.2731e-01,  1.1471e-01,\\n\",\n      \"           4.2973e-02, -5.7053e-01, -7.6254e-01,  6.5678e-01,  1.9348e-01,\\n\",\n      \"           9.6505e-03, -3.7881e-01,  3.7071e-01,  8.6609e-01,  9.2239e-01,\\n\",\n      \"          -2.5739e-01,  5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\\n\",\n      \"           7.2268e-01, -7.9991e-01,  4.7691e-01,  9.3956e-01,  7.7451e-01,\\n\",\n      \"          -3.3390e-01, -2.0639e-01,  9.0730e-01, -9.1102e-01],\\n\",\n      \"         [-8.2056e-01,  9.9517e-01,  5.2822e-01, -2.9103e-02, -4.4076e-01,\\n\",\n      \"          -5.0182e-01, -9.9669e-01, -9.2137e-01,  9.6995e-01,  9.8441e-03,\\n\",\n      \"           3.5683e-01, -9.7109e-01, -8.6985e-01,  9.9538e-01,  6.6071e-02,\\n\",\n      \"           7.5521e-01,  5.4956e-01,  9.8520e-01,  9.9528e-01, -7.4652e-01,\\n\",\n      \"          -9.9837e-01, -4.0200e-01,  1.3232e-02,  4.5854e-01,  2.7352e-01,\\n\",\n      \"          -8.9861e-01,  4.5760e-01,  1.9683e-01,  9.8737e-02,  5.9758e-02,\\n\",\n      \"           9.7392e-01, -7.3979e-01,  3.9800e-01, -6.4981e-01,  3.9077e-01,\\n\",\n      \"           8.7535e-01, -7.1771e-01,  9.1071e-01,  6.2887e-01, -2.6265e-01,\\n\",\n      \"           9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\\n\",\n      \"           5.0785e-02, -4.2154e-01, -7.8124e-01,  8.4035e-01,  9.9191e-01,\\n\",\n      \"          -9.3793e-01,  9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\\n\",\n      \"           7.2309e-01, -9.9203e-01,  8.8789e-01,  9.6214e-01,  9.1157e-01,\\n\",\n      \"          -9.9297e-01,  8.7711e-01,  9.7576e-01, -9.8162e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([3, 0])\\n\",\n      \"dec_state: tensor([[[ 0.9781,  0.9872, -0.9264,  0.6691,  0.0951,  0.3156, -0.6320,\\n\",\n      \"          -0.7366, -0.4670, -0.9615, -0.9010, -0.8785,  0.7344,  0.9201,\\n\",\n      \"          -0.9227,  0.3516,  0.9201, -0.4521, -0.8692,  0.6034,  0.8072,\\n\",\n      \"          -0.4677, -0.6117,  0.7930,  0.9824, -0.8906, -0.1189, -0.9387,\\n\",\n      \"           0.7411, -0.8231, -0.8983,  0.8603,  0.8638,  0.8514, -0.5059,\\n\",\n      \"          -0.8946,  0.6783, -0.8250,  0.6805,  0.8581, -0.8626,  0.8645,\\n\",\n      \"           0.3882, -0.7911, -0.8356,  0.9895, -0.4922,  0.8056, -0.0756,\\n\",\n      \"           0.8191, -0.8261,  0.9629, -0.0070, -0.5062,  0.8791, -0.1445,\\n\",\n      \"           0.8673,  0.5193, -0.5945, -0.4677, -0.9788,  0.9610,  0.4043,\\n\",\n      \"          -0.9366],\\n\",\n      \"         [ 0.7331,  0.9824, -0.4263,  0.8007,  0.7327,  0.3563, -0.7526,\\n\",\n      \"          -0.5364, -0.3909,  0.2115,  0.3455, -0.9110, -0.3309,  0.8979,\\n\",\n      \"          -0.2999, -0.3954, -0.4487, -0.8195, -0.4908,  0.7663,  0.9840,\\n\",\n      \"          -0.8888,  0.2278,  0.8943,  0.9196, -0.9582, -0.9077, -0.7245,\\n\",\n      \"          -0.8709, -0.8953, -0.6125,  0.7328,  0.3806,  0.8263, -0.8462,\\n\",\n      \"          -0.9920,  0.3422, -0.6997, -0.0449,  0.7883, -0.9241,  0.9713,\\n\",\n      \"           0.9226, -0.2699, -0.7932,  0.9691, -0.9056,  0.4422, -0.3167,\\n\",\n      \"           0.8821,  0.8931,  0.9782,  0.1177, -0.8298,  0.0827, -0.2664,\\n\",\n      \"           0.9633,  0.9341,  0.3331, -0.1655, -0.9979,  0.9480,  0.1138,\\n\",\n      \"           0.3794]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-2.1643e-01,  4.0703e-01,  3.2634e-01, -5.0862e-01, -5.9415e-01,\\n\",\n      \"           5.1934e-01,  2.3474e-02,  5.2337e-01, -3.0883e-01, -1.4427e-01,\\n\",\n      \"           4.1089e-01,  2.8636e-01,  4.1313e-01, -2.1515e-01,  1.8673e-01,\\n\",\n      \"          -9.7177e-02, -7.7767e-02, -1.3903e-01, -3.4906e-01, -3.2411e-01,\\n\",\n      \"           6.6046e-02, -1.5016e-01, -3.4564e-01, -3.7342e-02, -3.0720e-01,\\n\",\n      \"          -9.0624e-02,  8.4112e-01,  4.1783e-01,  4.2457e-01,  4.4339e-01,\\n\",\n      \"          -2.0081e-01, -9.1651e-02, -3.2706e-01, -3.6660e-02, -3.3224e-01,\\n\",\n      \"          -1.0899e-01,  2.0355e-01, -1.2084e-01, -6.0874e-01, -1.7584e-01,\\n\",\n      \"          -1.1454e-01, -1.9440e-01,  1.8098e-01,  3.7718e-01,  4.4388e-01,\\n\",\n      \"          -1.9044e-01,  1.2831e-01,  9.2631e-02, -5.9981e-01, -1.7597e-01,\\n\",\n      \"           2.8905e-01, -5.9710e-01, -8.2622e-02, -1.4479e-02,  1.3814e-01,\\n\",\n      \"           4.3607e-01, -2.8907e-01, -3.2067e-01, -3.7578e-01, -2.5730e-01,\\n\",\n      \"           4.2941e-01, -1.0349e-02, -1.8103e-01, -3.8896e-02],\\n\",\n      \"         [-2.7921e-01,  5.5246e-01, -2.3130e-01,  6.0324e-02, -1.0443e-01,\\n\",\n      \"          -9.6127e-02, -4.8838e-01,  1.7342e-01, -1.6244e-03, -1.5950e-01,\\n\",\n      \"          -2.0051e-01, -2.3869e-01, -6.2903e-01,  3.7441e-01,  1.1054e-01,\\n\",\n      \"          -4.1060e-01,  4.7134e-01,  3.1578e-01,  2.8223e-01, -7.0127e-01,\\n\",\n      \"          -6.8227e-01, -1.6815e-01,  1.2664e-01, -3.3500e-02,  2.8114e-01,\\n\",\n      \"          -3.8212e-02,  3.1934e-01,  3.1801e-01, -1.0009e-01, -1.3935e-01,\\n\",\n      \"           3.5000e-01, -1.1332e-01,  1.6779e-01, -4.4952e-01, -2.7263e-01,\\n\",\n      \"          -2.6393e-02, -2.0009e-01,  2.5008e-01, -5.6962e-02, -3.3716e-01,\\n\",\n      \"           1.2111e-01,  7.2555e-01, -1.6554e-01,  3.0319e-02, -7.2813e-01,\\n\",\n      \"          -5.0258e-01,  4.6271e-01, -2.0600e-01,  7.9482e-02,  4.5408e-01,\\n\",\n      \"           1.4758e-01, -1.4856e-01, -4.6430e-01, -6.1799e-01, -5.1198e-01,\\n\",\n      \"           3.1461e-01, -5.0918e-01,  1.8147e-01,  6.9853e-02, -1.7200e-01,\\n\",\n      \"          -1.3063e-01,  1.5399e-01,  3.4001e-01, -5.4762e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.9094e-01,  2.9604e-01, -6.4331e-01,  8.5796e-01, -5.0427e-01,\\n\",\n      \"          -3.9154e-01,  1.1564e-01,  7.4492e-01,  2.2174e-01, -3.8437e-01,\\n\",\n      \"           3.4773e-01,  2.4916e-02,  3.9094e-01, -6.5730e-01,  5.5876e-01,\\n\",\n      \"           4.9713e-01,  4.2008e-01,  1.7297e-01,  2.0467e-01, -4.0904e-01,\\n\",\n      \"          -3.2362e-01,  1.3526e-01,  5.7380e-02,  8.0937e-01,  4.6005e-01,\\n\",\n      \"          -4.4897e-01,  8.0193e-01,  2.0982e-01,  5.7502e-02,  1.6175e-01,\\n\",\n      \"           1.6195e-01,  6.5908e-02,  8.0127e-01,  2.1267e-01, -3.2248e-01,\\n\",\n      \"           6.1880e-02, -6.0822e-01,  9.2528e-01,  1.5635e-01,  6.5912e-01,\\n\",\n      \"          -2.5814e-01,  6.9864e-02, -6.9100e-02, -2.0400e-01,  4.4236e-01,\\n\",\n      \"          -3.8749e-01,  2.2603e-01, -7.3010e-01, -6.7803e-02,  6.0987e-01,\\n\",\n      \"          -2.3944e-01, -2.2402e-01,  3.4141e-02, -7.5317e-01, -1.9034e-01,\\n\",\n      \"           1.5136e-01, -2.6498e-01, -2.8058e-01, -5.9542e-01,  4.8121e-01,\\n\",\n      \"          -6.4265e-01, -7.2166e-01,  6.8618e-02, -1.7256e-01],\\n\",\n      \"         [-4.2395e-01,  4.3782e-01, -3.7864e-01,  4.6429e-01, -1.9293e-01,\\n\",\n      \"          -1.8951e-01, -2.7415e-01,  1.4951e-01, -3.3036e-01, -6.2952e-02,\\n\",\n      \"          -2.8961e-01,  2.6387e-01, -6.7616e-01,  8.8255e-03, -1.3174e-02,\\n\",\n      \"          -5.0924e-01, -5.3128e-02, -1.0846e-01,  4.2621e-01, -6.4251e-01,\\n\",\n      \"          -1.9010e-01, -8.9229e-02, -1.8645e-02,  1.4834e-01,  4.4270e-01,\\n\",\n      \"          -1.6318e-01,  5.5555e-01, -1.1368e-01, -1.0803e-01, -3.4122e-01,\\n\",\n      \"           4.5368e-01, -2.8125e-01,  2.3815e-01, -3.6399e-01, -2.3326e-01,\\n\",\n      \"          -1.2933e-01, -3.3350e-01,  4.6229e-02, -1.8867e-01, -8.2094e-02,\\n\",\n      \"          -2.6307e-01,  7.5736e-01, -2.3453e-03,  1.3690e-01, -1.8830e-01,\\n\",\n      \"          -3.6770e-01,  2.2573e-03, -2.6534e-01,  1.3679e-01,  5.0285e-01,\\n\",\n      \"          -1.5940e-01, -1.4204e-01, -2.8678e-01, -6.3483e-01, -6.0581e-01,\\n\",\n      \"           6.7031e-02, -6.5419e-02,  1.1711e-01,  3.5437e-02, -3.1980e-01,\\n\",\n      \"           2.7608e-01,  4.2805e-01,  1.0529e-01, -6.9090e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.6467e-01, -2.1472e-02, -2.3705e-01,  8.1433e-01,  1.1691e-01,\\n\",\n      \"          -5.2326e-01,  2.7152e-01,  7.2288e-01, -2.7715e-01, -5.5603e-02,\\n\",\n      \"           6.1393e-01, -3.2977e-02,  2.7468e-01, -5.7310e-01,  4.7398e-01,\\n\",\n      \"           3.3744e-01,  3.9739e-01, -3.0474e-02,  1.2378e-01, -3.6966e-02,\\n\",\n      \"          -5.7119e-01,  4.0540e-01,  7.2925e-02,  6.0944e-01,  3.6532e-01,\\n\",\n      \"          -5.7006e-01,  6.2813e-01,  1.8211e-01, -1.2571e-01,  2.1051e-01,\\n\",\n      \"           2.2644e-01,  2.3753e-01,  1.0566e-01,  3.3964e-01, -9.8686e-02,\\n\",\n      \"           7.1103e-02, -5.1788e-01,  8.2421e-01,  4.0273e-01,  5.9817e-01,\\n\",\n      \"          -5.9287e-01,  5.6128e-02, -3.0473e-01,  1.4045e-01,  1.7209e-01,\\n\",\n      \"          -4.7570e-01, -3.1454e-01, -3.6460e-01, -5.8336e-02, -8.1671e-03,\\n\",\n      \"           2.0601e-01,  3.8089e-02, -2.1870e-01, -2.7971e-01, -2.2319e-01,\\n\",\n      \"          -1.6437e-01,  9.7025e-02, -2.7640e-01, -1.8737e-01,  2.3292e-01,\\n\",\n      \"          -4.5736e-01, -5.6993e-01,  3.8426e-01, -5.8431e-01],\\n\",\n      \"         [ 2.9292e-02,  4.2082e-01,  1.1496e-01, -1.3269e-01, -4.9844e-01,\\n\",\n      \"          -5.7923e-01, -8.3161e-02, -1.2942e-01, -8.4708e-02, -1.6823e-01,\\n\",\n      \"          -3.0197e-01, -1.9315e-01, -6.4002e-01, -2.2176e-01,  3.1475e-02,\\n\",\n      \"          -3.9173e-01,  1.8868e-01, -3.0336e-01, -1.3409e-01, -4.6737e-01,\\n\",\n      \"           3.8329e-03, -2.6798e-01, -2.8107e-01, -8.3681e-02,  3.3985e-01,\\n\",\n      \"           4.4148e-02,  7.0217e-02, -9.1169e-02,  2.0149e-01, -5.0179e-01,\\n\",\n      \"           4.1926e-01, -2.3867e-01, -2.1852e-01,  4.9277e-02, -4.5147e-02,\\n\",\n      \"          -1.3929e-01, -2.5047e-01,  4.9927e-01, -3.6437e-01, -3.5151e-01,\\n\",\n      \"          -1.4846e-01,  2.4364e-01, -2.1723e-01, -4.6918e-02,  1.4216e-01,\\n\",\n      \"          -5.0783e-02, -2.6806e-01,  8.9650e-03,  3.0882e-01, -5.4537e-02,\\n\",\n      \"          -1.0623e-01,  8.0949e-02, -2.3668e-01, -3.7966e-01, -6.6548e-01,\\n\",\n      \"           3.5590e-01, -8.2465e-02, -5.2212e-02, -1.5022e-02, -1.3178e-01,\\n\",\n      \"           3.3971e-01,  8.3942e-02, -1.2739e-01, -6.4155e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.9462e-01, -2.2764e-01, -3.7951e-02,  4.0051e-01, -2.9822e-01,\\n\",\n      \"           1.9265e-01,  9.7957e-02,  3.4318e-01,  6.5615e-02,  1.4674e-01,\\n\",\n      \"           1.9097e-01, -1.9940e-01,  1.4437e-01, -2.2148e-01,  5.6047e-01,\\n\",\n      \"           5.2499e-01,  4.4121e-01, -2.5948e-01,  1.0898e-01, -2.9630e-01,\\n\",\n      \"          -1.4722e-01,  2.0510e-01,  3.2749e-02,  5.3201e-01,  5.3504e-01,\\n\",\n      \"          -5.3038e-01,  6.1319e-01,  1.6065e-01, -3.3821e-02,  1.9661e-01,\\n\",\n      \"           5.2853e-01, -2.7200e-01,  1.5528e-01,  2.8527e-01, -1.4127e-01,\\n\",\n      \"           1.4125e-02, -2.4507e-01,  5.8318e-01,  2.6271e-01,  6.1537e-01,\\n\",\n      \"           5.7424e-02,  1.5592e-01, -1.7715e-01,  1.8923e-01,  4.4712e-01,\\n\",\n      \"          -3.3768e-01, -1.8343e-01, -5.5573e-02,  4.3081e-01,  8.3409e-02,\\n\",\n      \"           2.4867e-02, -1.9542e-01, -7.3514e-02, -4.1130e-01, -3.7073e-02,\\n\",\n      \"           4.7966e-01, -3.2639e-01, -1.5676e-01, -5.5780e-01,  3.5492e-01,\\n\",\n      \"          -1.2342e-01, -6.7168e-01, -2.7152e-01, -2.9299e-01],\\n\",\n      \"         [ 5.8269e-02,  8.0529e-01,  3.1633e-01,  3.5130e-02, -4.0030e-01,\\n\",\n      \"          -5.2046e-01, -5.7112e-01,  1.2411e-01,  5.1932e-01,  8.1681e-02,\\n\",\n      \"          -2.4537e-02, -8.2807e-01, -6.3803e-01, -1.5186e-01,  2.6595e-01,\\n\",\n      \"           2.8538e-01,  5.4966e-01, -2.2023e-01,  6.2513e-01, -7.1846e-01,\\n\",\n      \"           1.5489e-01, -2.3305e-01, -2.8478e-01,  4.7244e-02,  6.0448e-01,\\n\",\n      \"          -2.4189e-02,  1.3727e-01,  4.3836e-02,  1.9764e-01, -4.9993e-01,\\n\",\n      \"           6.4335e-01, -6.3273e-01, -1.7085e-01,  3.6792e-01, -1.1653e-02,\\n\",\n      \"           5.9266e-02, -1.4715e-01,  6.0236e-01, -5.3754e-01, -3.3864e-01,\\n\",\n      \"          -1.6203e-01,  4.6025e-01, -1.2995e-01,  1.5817e-01, -1.0733e-01,\\n\",\n      \"          -7.5994e-02, -1.4720e-01,  7.4298e-02,  6.0721e-01,  3.2473e-01,\\n\",\n      \"          -2.2472e-01, -2.8747e-01, -5.0387e-01, -7.2287e-01, -3.0435e-01,\\n\",\n      \"           2.0282e-01, -5.1651e-01,  1.3683e-03, -2.0047e-01,  7.6022e-01,\\n\",\n      \"          -2.0057e-01, -3.8691e-01, -3.9838e-01, -5.7123e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 2.4355e-01,  9.7544e-02,  4.9027e-02,  3.3419e-01,  1.2388e-01,\\n\",\n      \"           7.1731e-02,  1.8976e-01,  4.4490e-01, -2.9891e-01,  2.0516e-01,\\n\",\n      \"          -2.0126e-01, -1.9081e-01, -2.6789e-01, -2.7736e-02,  5.4330e-02,\\n\",\n      \"           4.1832e-01,  3.2749e-01,  5.0725e-02,  5.7945e-03, -1.6877e-01,\\n\",\n      \"          -4.3551e-02,  7.4475e-02,  5.0754e-01,  5.8456e-01,  3.5108e-01,\\n\",\n      \"          -3.2765e-01,  6.2981e-01, -2.1042e-01, -1.5040e-02,  3.9792e-01,\\n\",\n      \"           3.3859e-01, -2.2759e-01,  4.8875e-03,  2.0304e-01, -1.8557e-01,\\n\",\n      \"           5.1139e-01, -6.3578e-02,  3.7445e-01,  2.5876e-01,  3.2321e-01,\\n\",\n      \"           3.3812e-01,  4.8470e-01, -3.5065e-02,  5.6784e-01,  6.2865e-01,\\n\",\n      \"          -3.4431e-01, -3.1394e-01,  2.1078e-01,  5.3845e-01,  3.1855e-01,\\n\",\n      \"           4.3601e-01, -3.4167e-03, -4.5149e-02,  4.3369e-02,  4.9973e-02,\\n\",\n      \"           5.7321e-01, -6.1557e-02,  1.4944e-01, -1.7503e-02,  1.5900e-01,\\n\",\n      \"          -1.2167e-01, -4.7770e-01,  4.0990e-02, -1.3854e-01],\\n\",\n      \"         [-1.2090e-01,  6.5291e-01,  4.9012e-01,  6.3469e-01, -6.1991e-01,\\n\",\n      \"          -4.5836e-01, -6.4770e-01, -8.5862e-01,  6.3087e-01, -1.7720e-02,\\n\",\n      \"           1.7558e-01, -8.4372e-01, -6.0052e-01,  3.6973e-01,  1.8317e-01,\\n\",\n      \"           7.5792e-01,  5.6800e-01,  6.3874e-01,  7.7846e-01, -7.3676e-01,\\n\",\n      \"          -8.1896e-01, -3.2437e-01, -5.9558e-02,  1.6930e-01,  4.0612e-01,\\n\",\n      \"          -9.0851e-01,  7.4943e-01,  7.0389e-02, -3.3322e-01, -3.4272e-01,\\n\",\n      \"           8.7254e-01, -3.7895e-01,  5.6617e-01,  2.2784e-01, -5.8411e-01,\\n\",\n      \"           2.4766e-01, -8.4705e-01,  7.5885e-01,  2.6971e-01, -2.0708e-01,\\n\",\n      \"          -2.3187e-01, -6.6556e-01, -7.9039e-01,  5.7092e-01, -9.1081e-03,\\n\",\n      \"           3.3079e-02, -3.3478e-01,  2.8295e-01,  7.9911e-01,  8.7098e-01,\\n\",\n      \"          -3.8057e-01,  5.8935e-01, -5.6518e-01, -7.7754e-01, -5.1280e-01,\\n\",\n      \"           6.5749e-01, -8.2280e-01,  4.0088e-01,  9.4624e-01,  7.4583e-01,\\n\",\n      \"          -1.8822e-01, -1.5356e-01,  9.0531e-01, -9.4046e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 1.4370e-01,  6.9390e-01,  3.4906e-01,  1.8600e-01, -1.0352e-01,\\n\",\n      \"          -1.8402e-01, -4.7587e-01,  3.9898e-01,  4.0702e-01,  3.4950e-01,\\n\",\n      \"           5.6260e-03, -7.4929e-01, -4.2060e-01, -2.0264e-02,  2.1085e-01,\\n\",\n      \"           5.8135e-01,  6.0812e-01, -4.3868e-02,  5.5309e-01, -5.7745e-01,\\n\",\n      \"           1.1744e-01,  2.9086e-02,  1.2145e-01,  5.4306e-01,  6.4010e-01,\\n\",\n      \"          -2.5673e-01,  6.0993e-01, -7.3052e-03,  7.7005e-02,  2.6385e-01,\\n\",\n      \"           6.2501e-01, -6.7076e-01, -9.6880e-02,  3.9839e-01, -1.2475e-01,\\n\",\n      \"           3.5841e-01, -4.1073e-02,  5.3352e-01, -2.4644e-01,  7.5658e-02,\\n\",\n      \"           1.7233e-01,  5.7383e-01, -8.7162e-02,  4.8839e-01,  1.1819e-01,\\n\",\n      \"          -1.4091e-01, -1.5005e-01,  2.0554e-01,  7.3376e-01,  5.7186e-01,\\n\",\n      \"           2.6028e-02, -2.9824e-01, -3.6087e-01, -5.5298e-01, -1.6187e-02,\\n\",\n      \"           4.2501e-01, -4.6323e-01,  1.3973e-01, -2.1567e-01,  8.0603e-01,\\n\",\n      \"          -3.8699e-01, -5.5782e-01, -3.0351e-01, -2.0439e-01],\\n\",\n      \"         [-6.1965e-01,  9.8332e-01,  5.0493e-01,  2.8111e-01, -5.3563e-01,\\n\",\n      \"          -5.9760e-01, -9.7713e-01, -9.0046e-01,  9.2203e-01,  3.4881e-04,\\n\",\n      \"           3.0716e-01, -9.3601e-01, -7.7404e-01,  9.6783e-01,  1.1720e-01,\\n\",\n      \"           7.5584e-01,  5.2906e-01,  9.7504e-01,  9.7287e-01, -7.2797e-01,\\n\",\n      \"          -9.8892e-01, -3.6624e-01, -1.9580e-02,  3.4981e-01,  3.2603e-01,\\n\",\n      \"          -9.0325e-01,  5.5451e-01,  1.3807e-01, -2.0965e-02, -4.0570e-02,\\n\",\n      \"           9.6092e-01, -5.8279e-01,  4.7798e-01, -4.6821e-01,  2.7388e-03,\\n\",\n      \"           7.5130e-01, -7.7676e-01,  8.5018e-01,  5.0395e-01, -2.3900e-01,\\n\",\n      \"           8.0446e-01, -9.5505e-01, -8.3147e-01, -2.5971e-01, -9.3569e-01,\\n\",\n      \"           4.2121e-02, -3.8591e-01, -4.9300e-01,  8.2269e-01,  9.6996e-01,\\n\",\n      \"          -8.6781e-01,  8.4427e-01, -9.6247e-01, -8.8629e-01, -5.4184e-01,\\n\",\n      \"           6.9462e-01, -9.9058e-01,  7.5560e-01,  9.5516e-01,  8.5390e-01,\\n\",\n      \"          -9.3777e-01,  7.3466e-01,  9.5822e-01, -9.6689e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.2412e-02,  5.5587e-01,  5.2648e-01,  6.8613e-01, -5.2126e-01,\\n\",\n      \"          -2.6911e-01, -6.0472e-01, -8.5598e-01,  5.5327e-01,  1.5888e-01,\\n\",\n      \"           1.6669e-01, -7.6833e-01, -4.9673e-01,  4.0409e-01,  1.4775e-01,\\n\",\n      \"           8.2823e-01,  6.1798e-01,  6.2634e-01,  7.0638e-01, -6.3201e-01,\\n\",\n      \"          -8.1080e-01, -1.9344e-01,  2.3377e-01,  5.5736e-01,  4.0636e-01,\\n\",\n      \"          -9.2914e-01,  8.4626e-01,  4.3793e-02, -4.0619e-01,  1.3983e-01,\\n\",\n      \"           8.7200e-01, -3.6435e-01,  5.4387e-01,  1.9864e-01, -6.3067e-01,\\n\",\n      \"           3.2501e-01, -8.2716e-01,  7.3380e-01,  3.2731e-01,  1.1471e-01,\\n\",\n      \"           4.2973e-02, -5.7053e-01, -7.6254e-01,  6.5678e-01,  1.9348e-01,\\n\",\n      \"           9.6505e-03, -3.7881e-01,  3.7071e-01,  8.6609e-01,  9.2239e-01,\\n\",\n      \"          -2.5739e-01,  5.5963e-01, -4.5618e-01, -7.0519e-01, -3.6819e-01,\\n\",\n      \"           7.2268e-01, -7.9991e-01,  4.7691e-01,  9.3956e-01,  7.7451e-01,\\n\",\n      \"          -3.3390e-01, -2.0639e-01,  9.0730e-01, -9.1102e-01],\\n\",\n      \"         [-8.2056e-01,  9.9517e-01,  5.2822e-01, -2.9103e-02, -4.4076e-01,\\n\",\n      \"          -5.0182e-01, -9.9669e-01, -9.2137e-01,  9.6995e-01,  9.8441e-03,\\n\",\n      \"           3.5683e-01, -9.7109e-01, -8.6985e-01,  9.9538e-01,  6.6071e-02,\\n\",\n      \"           7.5521e-01,  5.4956e-01,  9.8520e-01,  9.9528e-01, -7.4652e-01,\\n\",\n      \"          -9.9837e-01, -4.0200e-01,  1.3232e-02,  4.5854e-01,  2.7352e-01,\\n\",\n      \"          -8.9861e-01,  4.5760e-01,  1.9683e-01,  9.8737e-02,  5.9758e-02,\\n\",\n      \"           9.7392e-01, -7.3979e-01,  3.9800e-01, -6.4981e-01,  3.9077e-01,\\n\",\n      \"           8.7535e-01, -7.1771e-01,  9.1071e-01,  6.2887e-01, -2.6265e-01,\\n\",\n      \"           9.4851e-01, -9.7104e-01, -7.9083e-01, -6.3949e-01, -9.9075e-01,\\n\",\n      \"           5.0785e-02, -4.2154e-01, -7.8124e-01,  8.4035e-01,  9.9191e-01,\\n\",\n      \"          -9.3793e-01,  9.2640e-01, -9.9360e-01, -9.0172e-01, -5.6599e-01,\\n\",\n      \"           7.2309e-01, -9.9203e-01,  8.8789e-01,  9.6214e-01,  9.1157e-01,\\n\",\n      \"          -9.9297e-01,  8.7711e-01,  9.7576e-01, -9.8162e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[11,  4,  9, 35,  3,  2,  0],\\n\",\n      \"        [ 6, 39, 25,  3,  2,  0,  0]])\\n\",\n      \"tensor([[ 6,  4,  9, 35,  3,  2,  0],\\n\",\n      \"        [ 7,  5, 16,  3,  2,  0,  0]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-0.7086,  0.9864,  0.4316,  0.3359, -0.7541, -0.2385, -0.9812,\\n\",\n      \"          -0.9489,  0.9693, -0.7433,  0.8606, -0.9586, -0.7341,  0.9724,\\n\",\n      \"           0.2809,  0.8833, -0.6994,  0.9830,  0.9846,  0.9719, -0.9650,\\n\",\n      \"           0.1856,  0.5594,  0.7060,  0.8065, -0.9380, -0.8137, -0.4220,\\n\",\n      \"           0.0434,  0.0744,  0.1208, -0.4253,  0.9681, -0.1435,  0.2724,\\n\",\n      \"           0.9532,  0.9454,  0.9305,  0.0953, -0.8152, -0.7740, -0.9828,\\n\",\n      \"          -0.2652, -0.2975, -0.9859,  0.7865, -0.7123, -0.9517,  0.8805,\\n\",\n      \"           0.9874, -0.0171,  0.9657, -0.9784,  0.4981, -0.8841,  0.8066,\\n\",\n      \"          -0.9717,  0.8449,  0.9646,  0.9102, -0.9598,  0.9566,  0.9814,\\n\",\n      \"          -0.9235],\\n\",\n      \"         [-0.8397,  0.9960,  0.4729, -0.0268, -0.7020, -0.0726, -0.9869,\\n\",\n      \"          -0.9534,  0.9876, -0.7383,  0.9066, -0.9758, -0.8542,  0.9970,\\n\",\n      \"           0.1612,  0.8199, -0.7832,  0.9880,  0.9931,  0.9700, -0.9806,\\n\",\n      \"          -0.3277,  0.7004,  0.5226,  0.7892, -0.9199, -0.8712, -0.3203,\\n\",\n      \"           0.2282,  0.0508,  0.0774, -0.7647,  0.9547, -0.2877,  0.5706,\\n\",\n      \"           0.9751,  0.9509,  0.9144,  0.0244, -0.8293, -0.8266, -0.9754,\\n\",\n      \"          -0.0330, -0.4672, -0.9917,  0.7625, -0.7441, -0.9754,  0.8904,\\n\",\n      \"           0.9947,  0.0110,  0.9852, -0.9944,  0.5031, -0.8573,  0.7893,\\n\",\n      \"          -0.9513,  0.9107,  0.9759,  0.9326, -0.9955,  0.9780,  0.9884,\\n\",\n      \"          -0.9271]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.8919e-01,  3.4259e-01,  3.1522e-01, -4.7506e-01, -5.8994e-01,\\n\",\n      \"           5.1473e-01,  5.6873e-02,  5.4040e-01, -3.3129e-01, -1.3599e-01,\\n\",\n      \"           4.1210e-01,  2.9224e-01,  4.4804e-01, -2.0969e-01,  1.8312e-01,\\n\",\n      \"          -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\\n\",\n      \"           9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\\n\",\n      \"          -7.9656e-02,  8.3929e-01,  4.3339e-01,  3.9920e-01,  4.5494e-01,\\n\",\n      \"          -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\\n\",\n      \"          -1.3184e-01,  2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\\n\",\n      \"          -1.2202e-01, -1.8331e-01,  1.9878e-01,  3.4604e-01,  4.5695e-01,\\n\",\n      \"          -1.2873e-01,  1.2538e-01,  9.8116e-02, -5.7898e-01, -1.9313e-01,\\n\",\n      \"           3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02,  1.4781e-01,\\n\",\n      \"           4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\\n\",\n      \"           4.2793e-01, -1.4875e-02, -1.8840e-01,  1.0795e-02],\\n\",\n      \"         [-5.6161e-02,  5.1079e-01,  2.5469e-01,  4.0636e-01, -3.6313e-01,\\n\",\n      \"           1.5495e-01, -9.8928e-02,  1.4182e-01, -7.7240e-02, -2.6764e-01,\\n\",\n      \"           2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02,  3.2069e-01,\\n\",\n      \"          -1.9700e-01,  6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\\n\",\n      \"          -6.0447e-01, -5.2675e-01,  5.4918e-01,  3.0957e-01, -3.8066e-01,\\n\",\n      \"          -5.1973e-01,  7.1569e-02,  5.6027e-01, -1.1235e-02,  1.3392e-02,\\n\",\n      \"           1.8581e-01,  3.8664e-01, -6.3076e-01,  6.1353e-01,  1.7132e-01,\\n\",\n      \"          -2.1614e-02, -4.0260e-01,  7.6765e-01, -6.0879e-01,  2.6077e-01,\\n\",\n      \"          -7.0112e-02,  3.3747e-01, -6.6588e-01, -2.1261e-01,  7.7419e-02,\\n\",\n      \"          -3.0452e-01, -3.6169e-01,  2.3957e-01, -2.0789e-02,  4.0888e-01,\\n\",\n      \"           1.9174e-01,  6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\\n\",\n      \"           1.3132e-01,  3.5580e-02,  3.3620e-01, -3.2242e-01,  2.6653e-01,\\n\",\n      \"          -6.5847e-01,  3.5521e-01,  6.4256e-01, -4.4652e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0272e-01,  2.5549e-01, -6.7423e-01,  8.7988e-01, -4.8633e-01,\\n\",\n      \"          -4.3515e-01,  1.2682e-01,  7.5875e-01,  1.4521e-01, -3.9192e-01,\\n\",\n      \"           3.5380e-01, -1.7771e-03,  4.2796e-01, -6.6608e-01,  5.5359e-01,\\n\",\n      \"           4.9745e-01,  3.8194e-01,  1.6847e-01,  1.9478e-01, -3.7168e-01,\\n\",\n      \"          -3.1005e-01,  2.3350e-01,  1.3845e-02,  8.2973e-01,  4.7779e-01,\\n\",\n      \"          -4.5664e-01,  8.1294e-01,  2.1875e-01,  3.5033e-02,  2.0797e-01,\\n\",\n      \"           1.3223e-01,  9.8914e-02,  8.1988e-01,  1.6974e-01, -3.2957e-01,\\n\",\n      \"           2.3152e-02, -5.8926e-01,  9.2784e-01,  1.8358e-01,  6.9385e-01,\\n\",\n      \"          -2.9518e-01,  9.3706e-02, -7.4089e-02, -2.3288e-01,  4.5474e-01,\\n\",\n      \"          -3.7577e-01,  1.8794e-01, -7.1556e-01, -5.2221e-03,  6.3141e-01,\\n\",\n      \"          -3.0712e-01, -1.7799e-01,  3.4922e-02, -7.6832e-01, -1.5140e-01,\\n\",\n      \"           1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01,  3.7399e-01,\\n\",\n      \"          -6.4216e-01, -7.3713e-01,  1.1034e-01, -1.4378e-01],\\n\",\n      \"         [-3.0783e-01,  7.0619e-01,  2.8843e-01,  3.4486e-01, -3.1416e-02,\\n\",\n      \"          -5.5595e-01, -2.5893e-01,  3.7422e-01,  3.1599e-01, -1.7643e-02,\\n\",\n      \"           2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02,  1.7674e-01,\\n\",\n      \"          -2.6358e-01,  6.5556e-01, -6.6972e-01,  2.4392e-01, -5.5597e-01,\\n\",\n      \"          -5.4574e-01, -4.5712e-01,  2.6134e-01,  4.2726e-01, -1.7113e-02,\\n\",\n      \"          -5.0937e-01,  6.9873e-02,  2.8159e-01,  4.4168e-02, -5.9215e-02,\\n\",\n      \"           5.3164e-01,  1.4104e-01, -1.7418e-01,  6.2521e-01,  3.4052e-01,\\n\",\n      \"          -1.7095e-01, -3.7818e-01,  6.7129e-01,  3.5225e-03,  2.0033e-01,\\n\",\n      \"           2.6244e-01,  1.0848e-01, -4.6903e-03, -8.2113e-02,  1.2762e-01,\\n\",\n      \"          -1.8695e-01, -2.9354e-01,  2.2579e-01,  1.6966e-02,  3.7529e-01,\\n\",\n      \"          -4.1212e-02,  5.5560e-01, -4.2108e-01, -5.6336e-01,  2.0530e-02,\\n\",\n      \"           3.1856e-01, -1.6777e-01,  2.0985e-01, -3.4052e-01,  6.5363e-01,\\n\",\n      \"          -6.8536e-01, -9.1188e-02,  4.7263e-01, -4.1575e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3091e-01,  4.7975e-02, -6.4154e-01,  7.8851e-01, -2.6898e-01,\\n\",\n      \"          -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\\n\",\n      \"           6.2292e-01, -5.1763e-01,  5.1943e-01, -4.2000e-01,  5.3167e-01,\\n\",\n      \"          -2.8981e-01,  4.0898e-01,  3.6800e-01,  5.1437e-01, -2.4354e-01,\\n\",\n      \"          -4.3747e-01,  5.0437e-01,  2.3844e-01,  8.9447e-01,  3.0840e-01,\\n\",\n      \"          -2.6264e-01,  7.8487e-01,  2.0361e-01, -4.4836e-01,  2.9879e-01,\\n\",\n      \"           3.2300e-02,  3.8987e-01,  8.8484e-01,  2.8142e-01, -5.2596e-01,\\n\",\n      \"          -2.4904e-02, -6.4482e-01,  9.4409e-01,  7.2259e-01,  6.7215e-01,\\n\",\n      \"          -8.2231e-01,  1.9351e-01, -8.7342e-02,  7.0266e-02,  9.5666e-02,\\n\",\n      \"          -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02,  4.4018e-01,\\n\",\n      \"          -3.8727e-01, -4.3340e-01,  5.1425e-01, -8.3512e-01, -3.8365e-02,\\n\",\n      \"           6.5514e-02,  1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\\n\",\n      \"          -4.2758e-01, -8.9924e-01,  1.4681e-01, -5.5334e-01],\\n\",\n      \"         [-3.9027e-01,  6.9603e-01,  4.5691e-01,  1.6166e-01,  7.7914e-02,\\n\",\n      \"          -3.6820e-01,  3.5885e-01,  2.6877e-01, -4.4138e-01, -1.6789e-02,\\n\",\n      \"          -1.9538e-01,  1.2826e-01, -7.0902e-01,  5.8229e-01, -5.2308e-02,\\n\",\n      \"          -4.3843e-01,  5.0442e-01,  1.8963e-01,  2.9756e-01, -2.1835e-01,\\n\",\n      \"          -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\\n\",\n      \"           1.9278e-01,  9.0932e-02, -5.2118e-02,  4.5367e-01,  1.5111e-01,\\n\",\n      \"           5.1936e-01,  3.5247e-02, -3.8751e-02, -1.4526e-01,  5.1607e-01,\\n\",\n      \"           2.3604e-02, -4.8188e-02,  7.6434e-01,  3.3253e-01, -2.4698e-01,\\n\",\n      \"           4.3771e-03,  1.0644e-02,  8.0129e-02, -4.2507e-01, -5.0781e-01,\\n\",\n      \"          -1.4674e-01, -2.0134e-01, -3.1696e-01,  1.2785e-01,  3.3862e-02,\\n\",\n      \"          -1.8421e-02,  5.6756e-01, -1.9796e-01, -2.4455e-01,  6.6150e-02,\\n\",\n      \"           4.8072e-01, -5.5249e-01,  3.9305e-01,  3.4074e-02,  1.3419e-01,\\n\",\n      \"          -5.0839e-01,  3.6208e-01,  5.5418e-01, -3.4569e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.4933e-01, -7.1931e-02,  5.0550e-03,  3.1785e-01, -2.0353e-01,\\n\",\n      \"          -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\\n\",\n      \"           6.0992e-01, -3.2334e-01,  9.8982e-02, -6.3662e-03,  2.9666e-01,\\n\",\n      \"           2.6827e-01,  2.6206e-01,  1.5524e-01, -1.4986e-01, -3.7728e-01,\\n\",\n      \"          -2.4287e-01,  5.9968e-01, -1.5402e-02,  7.1346e-01,  6.4422e-02,\\n\",\n      \"          -3.3859e-01,  7.1390e-01,  2.8849e-02,  1.9976e-01,  4.0740e-01,\\n\",\n      \"          -2.5490e-01,  4.9943e-01,  2.1258e-01,  3.8105e-02, -7.4817e-01,\\n\",\n      \"          -4.9476e-01, -3.4258e-01,  8.5370e-01, -4.7424e-02,  2.3023e-03,\\n\",\n      \"           7.6213e-02, -2.0977e-01, -5.4353e-01,  7.5130e-02,  4.5926e-02,\\n\",\n      \"          -2.5807e-01, -4.3763e-01,  5.4502e-04, -3.5419e-01,  3.9410e-01,\\n\",\n      \"           9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\\n\",\n      \"          -1.8388e-01, -3.3026e-01,  4.2534e-01, -6.2395e-01, -4.9245e-01,\\n\",\n      \"          -4.3765e-01, -8.1805e-01,  3.7798e-01, -2.5220e-01],\\n\",\n      \"         [-1.9273e-01,  9.1169e-01,  4.3890e-01,  1.0174e-01, -1.9656e-02,\\n\",\n      \"          -3.9100e-01, -6.5023e-01,  3.5940e-01,  4.9301e-01,  1.7146e-01,\\n\",\n      \"           7.3839e-02, -7.8011e-01, -6.7214e-01,  3.3858e-01,  1.7792e-01,\\n\",\n      \"           2.6100e-01,  6.7196e-01, -3.3304e-02,  7.4288e-01, -5.9793e-01,\\n\",\n      \"          -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02,  3.9973e-01,\\n\",\n      \"           1.0201e-01,  1.4956e-01,  6.1471e-02,  3.4410e-01,  4.2557e-02,\\n\",\n      \"           6.9241e-01, -6.9050e-01, -9.9599e-02,  2.7794e-01,  2.8065e-01,\\n\",\n      \"           7.2173e-02,  6.3955e-03,  7.8340e-01, -1.9722e-01, -2.8579e-01,\\n\",\n      \"          -6.8728e-02,  3.1987e-01,  8.2484e-02, -1.4364e-01, -4.0027e-01,\\n\",\n      \"          -1.0889e-01, -1.0124e-01, -3.7705e-02,  6.1753e-01,  3.5287e-01,\\n\",\n      \"          -2.5209e-01,  7.4057e-02, -5.3195e-01, -6.3228e-01,  1.0961e-01,\\n\",\n      \"           3.5351e-01, -6.0642e-01,  3.5917e-01, -1.7134e-01,  8.0014e-01,\\n\",\n      \"          -6.3953e-01, -3.3486e-01,  1.1678e-01, -3.5628e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.3718e-01,  7.2870e-01,  3.3308e-01,  2.0858e-01, -2.3181e-01,\\n\",\n      \"          -6.6301e-01, -6.4745e-01,  1.3262e-01,  4.8326e-01,  6.6392e-02,\\n\",\n      \"           6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02,  3.4328e-01,\\n\",\n      \"           5.9002e-01,  6.3913e-01, -9.9936e-02,  6.0167e-01, -6.4984e-01,\\n\",\n      \"          -1.3278e-01,  5.5604e-01, -2.1617e-01,  6.7785e-01,  4.6192e-01,\\n\",\n      \"          -2.8609e-01,  6.6761e-01,  1.2330e-01,  1.9491e-01,  2.3275e-01,\\n\",\n      \"           4.1373e-01, -6.0354e-01,  8.9942e-02,  3.4765e-01, -4.1777e-01,\\n\",\n      \"           8.5970e-03, -2.2424e-01,  8.6788e-01, -2.3015e-01, -1.3828e-01,\\n\",\n      \"           5.8865e-02,  1.4415e-01, -4.8419e-01,  1.6516e-01, -2.7493e-01,\\n\",\n      \"          -2.1732e-01, -2.4245e-01,  1.6697e-01,  4.6947e-01,  5.7996e-01,\\n\",\n      \"          -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\\n\",\n      \"           2.2014e-01, -6.1083e-01,  4.0197e-01, -6.2808e-01,  7.9478e-01,\\n\",\n      \"          -5.4961e-01, -6.7529e-01,  1.5489e-02, -2.9274e-01],\\n\",\n      \"         [-3.6078e-01,  6.9189e-01,  6.1440e-01,  6.4958e-01, -4.3455e-01,\\n\",\n      \"          -3.5583e-01, -7.3222e-01, -8.7517e-01,  6.3373e-01, -2.2112e-03,\\n\",\n      \"           2.9666e-01, -7.9231e-01, -5.1286e-01,  5.6895e-01,  1.2489e-01,\\n\",\n      \"           7.5713e-01,  6.4310e-01,  6.4566e-01,  8.3428e-01, -6.3758e-01,\\n\",\n      \"          -8.9328e-01, -1.6739e-01, -1.3025e-01,  5.3928e-02,  2.3477e-01,\\n\",\n      \"          -9.2187e-01,  7.0911e-01,  4.6542e-02, -2.4542e-01,  1.0799e-02,\\n\",\n      \"           8.8081e-01, -3.7415e-01,  5.2033e-01,  1.5552e-02, -5.1183e-01,\\n\",\n      \"           2.1724e-01, -8.0264e-01,  8.7225e-01,  5.0256e-01, -1.8578e-01,\\n\",\n      \"          -1.4407e-01, -6.4479e-01, -7.9479e-01,  4.0860e-01, -2.7567e-01,\\n\",\n      \"           9.1192e-04, -3.5091e-01,  3.0913e-01,  8.0915e-01,  8.8322e-01,\\n\",\n      \"          -4.6345e-01,  6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\\n\",\n      \"           7.7383e-01, -8.5906e-01,  5.4155e-01,  9.6536e-01,  7.4088e-01,\\n\",\n      \"          -5.4469e-01, -8.6252e-02,  9.5525e-01, -9.2331e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0418e-01,  5.5571e-01,  5.8886e-01,  6.7950e-01, -5.3868e-01,\\n\",\n      \"          -6.0882e-01, -7.3359e-01, -8.8612e-01,  6.2786e-01, -5.4523e-02,\\n\",\n      \"           5.7679e-01, -8.6235e-01, -3.5407e-01,  3.5055e-01,  2.2463e-01,\\n\",\n      \"           8.5547e-01,  6.4569e-01,  6.2466e-01,  7.5043e-01, -6.7614e-01,\\n\",\n      \"          -8.8315e-01,  3.6020e-01, -9.6990e-02,  6.7707e-01,  2.9608e-01,\\n\",\n      \"          -9.3966e-01,  8.0311e-01,  8.0575e-02, -2.5028e-01,  1.8937e-01,\\n\",\n      \"           8.5196e-01, -3.1190e-01,  5.9931e-01,  1.1915e-01, -7.4333e-01,\\n\",\n      \"           2.9976e-01, -8.6610e-01,  9.2273e-01,  4.9476e-01, -6.9907e-02,\\n\",\n      \"          -3.3817e-02, -6.8751e-01, -8.7660e-01,  4.9436e-01, -1.5151e-01,\\n\",\n      \"          -1.1269e-01, -4.6676e-01,  4.0701e-01,  7.6854e-01,  9.3047e-01,\\n\",\n      \"          -4.3576e-01,  5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\\n\",\n      \"           7.7006e-01, -8.6413e-01,  5.6022e-01,  9.5810e-01,  7.2682e-01,\\n\",\n      \"          -4.5427e-01, -2.5659e-01,  9.5853e-01, -9.2379e-01],\\n\",\n      \"         [-7.7460e-01,  9.9026e-01,  6.3722e-01,  2.0712e-01, -3.6535e-01,\\n\",\n      \"          -5.1381e-01, -9.8802e-01, -9.2029e-01,  9.4324e-01,  1.2037e-02,\\n\",\n      \"           5.6740e-01, -9.2826e-01, -7.5338e-01,  9.8160e-01,  8.7260e-02,\\n\",\n      \"           7.5755e-01,  6.3618e-01,  9.7823e-01,  9.8206e-01, -6.6112e-01,\\n\",\n      \"          -9.9476e-01, -2.1120e-01, -9.0182e-02,  2.4394e-01,  2.6934e-01,\\n\",\n      \"          -9.1776e-01,  4.5227e-01,  9.6771e-02,  2.4004e-01,  1.9161e-01,\\n\",\n      \"           9.6763e-01, -6.2995e-01,  4.5209e-01, -7.3755e-01,  1.7895e-01,\\n\",\n      \"           8.2790e-01, -7.4495e-01,  9.3048e-01,  6.8724e-01, -2.2175e-01,\\n\",\n      \"           7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\\n\",\n      \"           1.0962e-02, -3.9790e-01, -5.0389e-01,  8.2996e-01,  9.7687e-01,\\n\",\n      \"          -9.1826e-01,  8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\\n\",\n      \"           8.0700e-01, -9.9238e-01,  7.9356e-01,  9.7202e-01,  8.6634e-01,\\n\",\n      \"          -9.6564e-01,  8.0110e-01,  9.8311e-01, -9.5971e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.8544e-01,  9.8591e-01,  6.1879e-01,  2.5189e-01, -4.5887e-01,\\n\",\n      \"          -5.9831e-01, -9.8791e-01, -9.2568e-01,  9.4309e-01, -3.7440e-02,\\n\",\n      \"           6.7137e-01, -9.4777e-01, -6.6153e-01,  9.7169e-01,  1.8339e-01,\\n\",\n      \"           8.5464e-01,  6.4561e-01,  9.7789e-01,  9.7138e-01, -6.9134e-01,\\n\",\n      \"          -9.9371e-01,  2.8951e-01, -5.6722e-02,  5.8515e-01,  3.1130e-01,\\n\",\n      \"          -9.3571e-01,  5.6603e-01,  1.3169e-01,  2.1265e-01,  2.8412e-01,\\n\",\n      \"           9.6472e-01, -6.0069e-01,  5.2081e-01, -7.0690e-01,  7.3823e-02,\\n\",\n      \"           8.5549e-01, -7.9405e-01,  9.5622e-01,  6.7850e-01, -1.1331e-01,\\n\",\n      \"           8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\\n\",\n      \"          -9.5556e-02, -4.8684e-01, -4.8504e-01,  7.9844e-01,  9.8674e-01,\\n\",\n      \"          -9.1737e-01,  7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\\n\",\n      \"           8.0822e-01, -9.9301e-01,  8.0589e-01,  9.6631e-01,  8.5895e-01,\\n\",\n      \"          -9.5692e-01,  7.8279e-01,  9.8394e-01, -9.6014e-01],\\n\",\n      \"         [-8.9920e-01,  9.9750e-01,  6.7051e-01, -1.4098e-01, -2.9074e-01,\\n\",\n      \"          -4.4487e-01, -9.9862e-01, -9.4112e-01,  9.8095e-01,  1.8637e-02,\\n\",\n      \"           6.6284e-01, -9.7143e-01, -8.7824e-01,  9.9706e-01,  5.6382e-02,\\n\",\n      \"           7.5856e-01,  6.5313e-01,  9.8820e-01,  9.9701e-01, -6.9944e-01,\\n\",\n      \"          -9.9922e-01, -2.5071e-01, -5.8678e-02,  3.5966e-01,  2.8802e-01,\\n\",\n      \"          -9.1436e-01,  3.4018e-01,  1.3987e-01,  4.1294e-01,  2.1804e-01,\\n\",\n      \"           9.8001e-01, -7.9156e-01,  3.8970e-01, -8.6485e-01,  5.5832e-01,\\n\",\n      \"           9.3225e-01, -6.9751e-01,  9.6238e-01,  7.7753e-01, -2.4782e-01,\\n\",\n      \"           9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\\n\",\n      \"           2.0784e-02, -4.3880e-01, -8.0816e-01,  8.4524e-01,  9.9437e-01,\\n\",\n      \"          -9.5786e-01,  9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\\n\",\n      \"           8.3064e-01, -9.9141e-01,  8.9800e-01,  9.7707e-01,  9.1796e-01,\\n\",\n      \"          -9.9589e-01,  9.2743e-01,  9.9109e-01, -9.7968e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([6, 7])\\n\",\n      \"dec_state: tensor([[[-0.7206,  0.6213,  0.5436,  0.1886, -0.2994,  0.3783,  0.0315,\\n\",\n      \"          -0.1871,  0.9745, -0.8764, -0.8257, -0.9830, -0.7669,  0.9504,\\n\",\n      \"           0.3022,  0.6895,  0.7214,  0.9409,  0.9041,  0.8821, -0.5206,\\n\",\n      \"           0.6129,  0.2903,  0.8618, -0.4258, -0.9400,  0.6022, -0.2002,\\n\",\n      \"          -0.5942, -0.1767,  0.1013,  0.3639,  0.8019, -0.1549, -0.4371,\\n\",\n      \"           0.7334,  0.7135,  0.8354, -0.5387, -0.7037, -0.5146, -0.6751,\\n\",\n      \"          -0.9065,  0.4725, -0.9622, -0.7213, -0.8347, -0.4516, -0.2353,\\n\",\n      \"           0.9881,  0.9388,  0.4682, -0.9875,  0.4803, -0.9889,  0.6287,\\n\",\n      \"          -0.9317, -0.8271,  0.9675, -0.4700, -0.9530,  0.9604,  0.9259,\\n\",\n      \"           0.3347],\\n\",\n      \"         [-0.8522,  0.9939, -0.1190,  0.7899, -0.0856, -0.2731, -0.9515,\\n\",\n      \"          -0.9057,  0.4352, -0.7740,  0.1122, -0.9964, -0.5755,  0.9971,\\n\",\n      \"           0.1951,  0.6782,  0.9266, -0.2149, -0.6926,  0.9757,  0.3361,\\n\",\n      \"          -0.9201, -0.8640,  0.7603, -0.7016, -0.9080, -0.2927, -0.7655,\\n\",\n      \"          -0.6946, -0.9294, -0.7387, -0.0666,  0.5382, -0.2275, -0.8607,\\n\",\n      \"           0.9876, -0.9522, -0.5782,  0.9243,  0.0298,  0.4144, -0.5416,\\n\",\n      \"          -0.1760,  0.8995, -0.9746, -0.8764, -0.8308, -0.5480,  0.7530,\\n\",\n      \"           0.9936,  0.9133,  0.9833,  0.8200, -0.8087, -0.9930, -0.8474,\\n\",\n      \"          -0.8603,  0.9635,  0.5955, -0.8644, -0.9778,  0.9941,  0.4020,\\n\",\n      \"           0.9467]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.8919e-01,  3.4259e-01,  3.1522e-01, -4.7506e-01, -5.8994e-01,\\n\",\n      \"           5.1473e-01,  5.6873e-02,  5.4040e-01, -3.3129e-01, -1.3599e-01,\\n\",\n      \"           4.1210e-01,  2.9224e-01,  4.4804e-01, -2.0969e-01,  1.8312e-01,\\n\",\n      \"          -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\\n\",\n      \"           9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\\n\",\n      \"          -7.9656e-02,  8.3929e-01,  4.3339e-01,  3.9920e-01,  4.5494e-01,\\n\",\n      \"          -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\\n\",\n      \"          -1.3184e-01,  2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\\n\",\n      \"          -1.2202e-01, -1.8331e-01,  1.9878e-01,  3.4604e-01,  4.5695e-01,\\n\",\n      \"          -1.2873e-01,  1.2538e-01,  9.8116e-02, -5.7898e-01, -1.9313e-01,\\n\",\n      \"           3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02,  1.4781e-01,\\n\",\n      \"           4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\\n\",\n      \"           4.2793e-01, -1.4875e-02, -1.8840e-01,  1.0795e-02],\\n\",\n      \"         [-5.6161e-02,  5.1079e-01,  2.5469e-01,  4.0636e-01, -3.6313e-01,\\n\",\n      \"           1.5495e-01, -9.8928e-02,  1.4182e-01, -7.7240e-02, -2.6764e-01,\\n\",\n      \"           2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02,  3.2069e-01,\\n\",\n      \"          -1.9700e-01,  6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\\n\",\n      \"          -6.0447e-01, -5.2675e-01,  5.4918e-01,  3.0957e-01, -3.8066e-01,\\n\",\n      \"          -5.1973e-01,  7.1569e-02,  5.6027e-01, -1.1235e-02,  1.3392e-02,\\n\",\n      \"           1.8581e-01,  3.8664e-01, -6.3076e-01,  6.1353e-01,  1.7132e-01,\\n\",\n      \"          -2.1614e-02, -4.0260e-01,  7.6765e-01, -6.0879e-01,  2.6077e-01,\\n\",\n      \"          -7.0112e-02,  3.3747e-01, -6.6588e-01, -2.1261e-01,  7.7419e-02,\\n\",\n      \"          -3.0452e-01, -3.6169e-01,  2.3957e-01, -2.0789e-02,  4.0888e-01,\\n\",\n      \"           1.9174e-01,  6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\\n\",\n      \"           1.3132e-01,  3.5580e-02,  3.3620e-01, -3.2242e-01,  2.6653e-01,\\n\",\n      \"          -6.5847e-01,  3.5521e-01,  6.4256e-01, -4.4652e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0272e-01,  2.5549e-01, -6.7423e-01,  8.7988e-01, -4.8633e-01,\\n\",\n      \"          -4.3515e-01,  1.2682e-01,  7.5875e-01,  1.4521e-01, -3.9192e-01,\\n\",\n      \"           3.5380e-01, -1.7771e-03,  4.2796e-01, -6.6608e-01,  5.5359e-01,\\n\",\n      \"           4.9745e-01,  3.8194e-01,  1.6847e-01,  1.9478e-01, -3.7168e-01,\\n\",\n      \"          -3.1005e-01,  2.3350e-01,  1.3845e-02,  8.2973e-01,  4.7779e-01,\\n\",\n      \"          -4.5664e-01,  8.1294e-01,  2.1875e-01,  3.5033e-02,  2.0797e-01,\\n\",\n      \"           1.3223e-01,  9.8914e-02,  8.1988e-01,  1.6974e-01, -3.2957e-01,\\n\",\n      \"           2.3152e-02, -5.8926e-01,  9.2784e-01,  1.8358e-01,  6.9385e-01,\\n\",\n      \"          -2.9518e-01,  9.3706e-02, -7.4089e-02, -2.3288e-01,  4.5474e-01,\\n\",\n      \"          -3.7577e-01,  1.8794e-01, -7.1556e-01, -5.2221e-03,  6.3141e-01,\\n\",\n      \"          -3.0712e-01, -1.7799e-01,  3.4922e-02, -7.6832e-01, -1.5140e-01,\\n\",\n      \"           1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01,  3.7399e-01,\\n\",\n      \"          -6.4216e-01, -7.3713e-01,  1.1034e-01, -1.4378e-01],\\n\",\n      \"         [-3.0783e-01,  7.0619e-01,  2.8843e-01,  3.4486e-01, -3.1416e-02,\\n\",\n      \"          -5.5595e-01, -2.5893e-01,  3.7422e-01,  3.1599e-01, -1.7643e-02,\\n\",\n      \"           2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02,  1.7674e-01,\\n\",\n      \"          -2.6358e-01,  6.5556e-01, -6.6972e-01,  2.4392e-01, -5.5597e-01,\\n\",\n      \"          -5.4574e-01, -4.5712e-01,  2.6134e-01,  4.2726e-01, -1.7113e-02,\\n\",\n      \"          -5.0937e-01,  6.9873e-02,  2.8159e-01,  4.4168e-02, -5.9215e-02,\\n\",\n      \"           5.3164e-01,  1.4104e-01, -1.7418e-01,  6.2521e-01,  3.4052e-01,\\n\",\n      \"          -1.7095e-01, -3.7818e-01,  6.7129e-01,  3.5225e-03,  2.0033e-01,\\n\",\n      \"           2.6244e-01,  1.0848e-01, -4.6903e-03, -8.2113e-02,  1.2762e-01,\\n\",\n      \"          -1.8695e-01, -2.9354e-01,  2.2579e-01,  1.6966e-02,  3.7529e-01,\\n\",\n      \"          -4.1212e-02,  5.5560e-01, -4.2108e-01, -5.6336e-01,  2.0530e-02,\\n\",\n      \"           3.1856e-01, -1.6777e-01,  2.0985e-01, -3.4052e-01,  6.5363e-01,\\n\",\n      \"          -6.8536e-01, -9.1188e-02,  4.7263e-01, -4.1575e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3091e-01,  4.7975e-02, -6.4154e-01,  7.8851e-01, -2.6898e-01,\\n\",\n      \"          -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\\n\",\n      \"           6.2292e-01, -5.1763e-01,  5.1943e-01, -4.2000e-01,  5.3167e-01,\\n\",\n      \"          -2.8981e-01,  4.0898e-01,  3.6800e-01,  5.1437e-01, -2.4354e-01,\\n\",\n      \"          -4.3747e-01,  5.0437e-01,  2.3844e-01,  8.9447e-01,  3.0840e-01,\\n\",\n      \"          -2.6264e-01,  7.8487e-01,  2.0361e-01, -4.4836e-01,  2.9879e-01,\\n\",\n      \"           3.2300e-02,  3.8987e-01,  8.8484e-01,  2.8142e-01, -5.2596e-01,\\n\",\n      \"          -2.4904e-02, -6.4482e-01,  9.4409e-01,  7.2259e-01,  6.7215e-01,\\n\",\n      \"          -8.2231e-01,  1.9351e-01, -8.7342e-02,  7.0266e-02,  9.5666e-02,\\n\",\n      \"          -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02,  4.4018e-01,\\n\",\n      \"          -3.8727e-01, -4.3340e-01,  5.1425e-01, -8.3512e-01, -3.8365e-02,\\n\",\n      \"           6.5514e-02,  1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\\n\",\n      \"          -4.2758e-01, -8.9924e-01,  1.4681e-01, -5.5334e-01],\\n\",\n      \"         [-3.9027e-01,  6.9603e-01,  4.5691e-01,  1.6166e-01,  7.7914e-02,\\n\",\n      \"          -3.6820e-01,  3.5885e-01,  2.6877e-01, -4.4138e-01, -1.6789e-02,\\n\",\n      \"          -1.9538e-01,  1.2826e-01, -7.0902e-01,  5.8229e-01, -5.2308e-02,\\n\",\n      \"          -4.3843e-01,  5.0442e-01,  1.8963e-01,  2.9756e-01, -2.1835e-01,\\n\",\n      \"          -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\\n\",\n      \"           1.9278e-01,  9.0932e-02, -5.2118e-02,  4.5367e-01,  1.5111e-01,\\n\",\n      \"           5.1936e-01,  3.5247e-02, -3.8751e-02, -1.4526e-01,  5.1607e-01,\\n\",\n      \"           2.3604e-02, -4.8188e-02,  7.6434e-01,  3.3253e-01, -2.4698e-01,\\n\",\n      \"           4.3771e-03,  1.0644e-02,  8.0129e-02, -4.2507e-01, -5.0781e-01,\\n\",\n      \"          -1.4674e-01, -2.0134e-01, -3.1696e-01,  1.2785e-01,  3.3862e-02,\\n\",\n      \"          -1.8421e-02,  5.6756e-01, -1.9796e-01, -2.4455e-01,  6.6150e-02,\\n\",\n      \"           4.8072e-01, -5.5249e-01,  3.9305e-01,  3.4074e-02,  1.3419e-01,\\n\",\n      \"          -5.0839e-01,  3.6208e-01,  5.5418e-01, -3.4569e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.4933e-01, -7.1931e-02,  5.0550e-03,  3.1785e-01, -2.0353e-01,\\n\",\n      \"          -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\\n\",\n      \"           6.0992e-01, -3.2334e-01,  9.8982e-02, -6.3662e-03,  2.9666e-01,\\n\",\n      \"           2.6827e-01,  2.6206e-01,  1.5524e-01, -1.4986e-01, -3.7728e-01,\\n\",\n      \"          -2.4287e-01,  5.9968e-01, -1.5402e-02,  7.1346e-01,  6.4422e-02,\\n\",\n      \"          -3.3859e-01,  7.1390e-01,  2.8849e-02,  1.9976e-01,  4.0740e-01,\\n\",\n      \"          -2.5490e-01,  4.9943e-01,  2.1258e-01,  3.8105e-02, -7.4817e-01,\\n\",\n      \"          -4.9476e-01, -3.4258e-01,  8.5370e-01, -4.7424e-02,  2.3023e-03,\\n\",\n      \"           7.6213e-02, -2.0977e-01, -5.4353e-01,  7.5130e-02,  4.5926e-02,\\n\",\n      \"          -2.5807e-01, -4.3763e-01,  5.4502e-04, -3.5419e-01,  3.9410e-01,\\n\",\n      \"           9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\\n\",\n      \"          -1.8388e-01, -3.3026e-01,  4.2534e-01, -6.2395e-01, -4.9245e-01,\\n\",\n      \"          -4.3765e-01, -8.1805e-01,  3.7798e-01, -2.5220e-01],\\n\",\n      \"         [-1.9273e-01,  9.1169e-01,  4.3890e-01,  1.0174e-01, -1.9656e-02,\\n\",\n      \"          -3.9100e-01, -6.5023e-01,  3.5940e-01,  4.9301e-01,  1.7146e-01,\\n\",\n      \"           7.3839e-02, -7.8011e-01, -6.7214e-01,  3.3858e-01,  1.7792e-01,\\n\",\n      \"           2.6100e-01,  6.7196e-01, -3.3304e-02,  7.4288e-01, -5.9793e-01,\\n\",\n      \"          -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02,  3.9973e-01,\\n\",\n      \"           1.0201e-01,  1.4956e-01,  6.1471e-02,  3.4410e-01,  4.2557e-02,\\n\",\n      \"           6.9241e-01, -6.9050e-01, -9.9599e-02,  2.7794e-01,  2.8065e-01,\\n\",\n      \"           7.2173e-02,  6.3955e-03,  7.8340e-01, -1.9722e-01, -2.8579e-01,\\n\",\n      \"          -6.8728e-02,  3.1987e-01,  8.2484e-02, -1.4364e-01, -4.0027e-01,\\n\",\n      \"          -1.0889e-01, -1.0124e-01, -3.7705e-02,  6.1753e-01,  3.5287e-01,\\n\",\n      \"          -2.5209e-01,  7.4057e-02, -5.3195e-01, -6.3228e-01,  1.0961e-01,\\n\",\n      \"           3.5351e-01, -6.0642e-01,  3.5917e-01, -1.7134e-01,  8.0014e-01,\\n\",\n      \"          -6.3953e-01, -3.3486e-01,  1.1678e-01, -3.5628e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.3718e-01,  7.2870e-01,  3.3308e-01,  2.0858e-01, -2.3181e-01,\\n\",\n      \"          -6.6301e-01, -6.4745e-01,  1.3262e-01,  4.8326e-01,  6.6392e-02,\\n\",\n      \"           6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02,  3.4328e-01,\\n\",\n      \"           5.9002e-01,  6.3913e-01, -9.9936e-02,  6.0167e-01, -6.4984e-01,\\n\",\n      \"          -1.3278e-01,  5.5604e-01, -2.1617e-01,  6.7785e-01,  4.6192e-01,\\n\",\n      \"          -2.8609e-01,  6.6761e-01,  1.2330e-01,  1.9491e-01,  2.3275e-01,\\n\",\n      \"           4.1373e-01, -6.0354e-01,  8.9942e-02,  3.4765e-01, -4.1777e-01,\\n\",\n      \"           8.5970e-03, -2.2424e-01,  8.6788e-01, -2.3015e-01, -1.3828e-01,\\n\",\n      \"           5.8865e-02,  1.4415e-01, -4.8419e-01,  1.6516e-01, -2.7493e-01,\\n\",\n      \"          -2.1732e-01, -2.4245e-01,  1.6697e-01,  4.6947e-01,  5.7996e-01,\\n\",\n      \"          -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\\n\",\n      \"           2.2014e-01, -6.1083e-01,  4.0197e-01, -6.2808e-01,  7.9478e-01,\\n\",\n      \"          -5.4961e-01, -6.7529e-01,  1.5489e-02, -2.9274e-01],\\n\",\n      \"         [-3.6078e-01,  6.9189e-01,  6.1440e-01,  6.4958e-01, -4.3455e-01,\\n\",\n      \"          -3.5583e-01, -7.3222e-01, -8.7517e-01,  6.3373e-01, -2.2112e-03,\\n\",\n      \"           2.9666e-01, -7.9231e-01, -5.1286e-01,  5.6895e-01,  1.2489e-01,\\n\",\n      \"           7.5713e-01,  6.4310e-01,  6.4566e-01,  8.3428e-01, -6.3758e-01,\\n\",\n      \"          -8.9328e-01, -1.6739e-01, -1.3025e-01,  5.3928e-02,  2.3477e-01,\\n\",\n      \"          -9.2187e-01,  7.0911e-01,  4.6542e-02, -2.4542e-01,  1.0799e-02,\\n\",\n      \"           8.8081e-01, -3.7415e-01,  5.2033e-01,  1.5552e-02, -5.1183e-01,\\n\",\n      \"           2.1724e-01, -8.0264e-01,  8.7225e-01,  5.0256e-01, -1.8578e-01,\\n\",\n      \"          -1.4407e-01, -6.4479e-01, -7.9479e-01,  4.0860e-01, -2.7567e-01,\\n\",\n      \"           9.1192e-04, -3.5091e-01,  3.0913e-01,  8.0915e-01,  8.8322e-01,\\n\",\n      \"          -4.6345e-01,  6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\\n\",\n      \"           7.7383e-01, -8.5906e-01,  5.4155e-01,  9.6536e-01,  7.4088e-01,\\n\",\n      \"          -5.4469e-01, -8.6252e-02,  9.5525e-01, -9.2331e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0418e-01,  5.5571e-01,  5.8886e-01,  6.7950e-01, -5.3868e-01,\\n\",\n      \"          -6.0882e-01, -7.3359e-01, -8.8612e-01,  6.2786e-01, -5.4523e-02,\\n\",\n      \"           5.7679e-01, -8.6235e-01, -3.5407e-01,  3.5055e-01,  2.2463e-01,\\n\",\n      \"           8.5547e-01,  6.4569e-01,  6.2466e-01,  7.5043e-01, -6.7614e-01,\\n\",\n      \"          -8.8315e-01,  3.6020e-01, -9.6990e-02,  6.7707e-01,  2.9608e-01,\\n\",\n      \"          -9.3966e-01,  8.0311e-01,  8.0575e-02, -2.5028e-01,  1.8937e-01,\\n\",\n      \"           8.5196e-01, -3.1190e-01,  5.9931e-01,  1.1915e-01, -7.4333e-01,\\n\",\n      \"           2.9976e-01, -8.6610e-01,  9.2273e-01,  4.9476e-01, -6.9907e-02,\\n\",\n      \"          -3.3817e-02, -6.8751e-01, -8.7660e-01,  4.9436e-01, -1.5151e-01,\\n\",\n      \"          -1.1269e-01, -4.6676e-01,  4.0701e-01,  7.6854e-01,  9.3047e-01,\\n\",\n      \"          -4.3576e-01,  5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\\n\",\n      \"           7.7006e-01, -8.6413e-01,  5.6022e-01,  9.5810e-01,  7.2682e-01,\\n\",\n      \"          -4.5427e-01, -2.5659e-01,  9.5853e-01, -9.2379e-01],\\n\",\n      \"         [-7.7460e-01,  9.9026e-01,  6.3722e-01,  2.0712e-01, -3.6535e-01,\\n\",\n      \"          -5.1381e-01, -9.8802e-01, -9.2029e-01,  9.4324e-01,  1.2037e-02,\\n\",\n      \"           5.6740e-01, -9.2826e-01, -7.5338e-01,  9.8160e-01,  8.7260e-02,\\n\",\n      \"           7.5755e-01,  6.3618e-01,  9.7823e-01,  9.8206e-01, -6.6112e-01,\\n\",\n      \"          -9.9476e-01, -2.1120e-01, -9.0182e-02,  2.4394e-01,  2.6934e-01,\\n\",\n      \"          -9.1776e-01,  4.5227e-01,  9.6771e-02,  2.4004e-01,  1.9161e-01,\\n\",\n      \"           9.6763e-01, -6.2995e-01,  4.5209e-01, -7.3755e-01,  1.7895e-01,\\n\",\n      \"           8.2790e-01, -7.4495e-01,  9.3048e-01,  6.8724e-01, -2.2175e-01,\\n\",\n      \"           7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\\n\",\n      \"           1.0962e-02, -3.9790e-01, -5.0389e-01,  8.2996e-01,  9.7687e-01,\\n\",\n      \"          -9.1826e-01,  8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\\n\",\n      \"           8.0700e-01, -9.9238e-01,  7.9356e-01,  9.7202e-01,  8.6634e-01,\\n\",\n      \"          -9.6564e-01,  8.0110e-01,  9.8311e-01, -9.5971e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.8544e-01,  9.8591e-01,  6.1879e-01,  2.5189e-01, -4.5887e-01,\\n\",\n      \"          -5.9831e-01, -9.8791e-01, -9.2568e-01,  9.4309e-01, -3.7440e-02,\\n\",\n      \"           6.7137e-01, -9.4777e-01, -6.6153e-01,  9.7169e-01,  1.8339e-01,\\n\",\n      \"           8.5464e-01,  6.4561e-01,  9.7789e-01,  9.7138e-01, -6.9134e-01,\\n\",\n      \"          -9.9371e-01,  2.8951e-01, -5.6722e-02,  5.8515e-01,  3.1130e-01,\\n\",\n      \"          -9.3571e-01,  5.6603e-01,  1.3169e-01,  2.1265e-01,  2.8412e-01,\\n\",\n      \"           9.6472e-01, -6.0069e-01,  5.2081e-01, -7.0690e-01,  7.3823e-02,\\n\",\n      \"           8.5549e-01, -7.9405e-01,  9.5622e-01,  6.7850e-01, -1.1331e-01,\\n\",\n      \"           8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\\n\",\n      \"          -9.5556e-02, -4.8684e-01, -4.8504e-01,  7.9844e-01,  9.8674e-01,\\n\",\n      \"          -9.1737e-01,  7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\\n\",\n      \"           8.0822e-01, -9.9301e-01,  8.0589e-01,  9.6631e-01,  8.5895e-01,\\n\",\n      \"          -9.5692e-01,  7.8279e-01,  9.8394e-01, -9.6014e-01],\\n\",\n      \"         [-8.9920e-01,  9.9750e-01,  6.7051e-01, -1.4098e-01, -2.9074e-01,\\n\",\n      \"          -4.4487e-01, -9.9862e-01, -9.4112e-01,  9.8095e-01,  1.8637e-02,\\n\",\n      \"           6.6284e-01, -9.7143e-01, -8.7824e-01,  9.9706e-01,  5.6382e-02,\\n\",\n      \"           7.5856e-01,  6.5313e-01,  9.8820e-01,  9.9701e-01, -6.9944e-01,\\n\",\n      \"          -9.9922e-01, -2.5071e-01, -5.8678e-02,  3.5966e-01,  2.8802e-01,\\n\",\n      \"          -9.1436e-01,  3.4018e-01,  1.3987e-01,  4.1294e-01,  2.1804e-01,\\n\",\n      \"           9.8001e-01, -7.9156e-01,  3.8970e-01, -8.6485e-01,  5.5832e-01,\\n\",\n      \"           9.3225e-01, -6.9751e-01,  9.6238e-01,  7.7753e-01, -2.4782e-01,\\n\",\n      \"           9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\\n\",\n      \"           2.0784e-02, -4.3880e-01, -8.0816e-01,  8.4524e-01,  9.9437e-01,\\n\",\n      \"          -9.5786e-01,  9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\\n\",\n      \"           8.3064e-01, -9.9141e-01,  8.9800e-01,  9.7707e-01,  9.1796e-01,\\n\",\n      \"          -9.9589e-01,  9.2743e-01,  9.9109e-01, -9.7968e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([4, 5])\\n\",\n      \"dec_state: tensor([[[-2.7810e-01,  7.1171e-01, -2.7313e-01,  7.6555e-01,  3.4180e-01,\\n\",\n      \"           3.5267e-01, -1.3704e-01,  9.0907e-01,  7.8109e-01, -9.1659e-01,\\n\",\n      \"          -7.7033e-01, -9.1442e-01, -7.4031e-01,  9.0447e-01,  1.3443e-01,\\n\",\n      \"           2.0248e-01,  6.8207e-01,  2.9731e-01, -3.5775e-01,  4.4347e-01,\\n\",\n      \"           7.3741e-02,  2.7375e-01,  4.7917e-01,  8.8413e-01,  3.1077e-01,\\n\",\n      \"          -9.5665e-01, -3.8454e-01, -2.0550e-01, -7.9606e-01, -5.4857e-01,\\n\",\n      \"          -7.7557e-01,  7.3961e-01, -7.6450e-01,  8.2028e-02, -2.6826e-01,\\n\",\n      \"           8.4217e-01,  7.3362e-01,  3.2418e-01, -8.3903e-01,  6.7045e-02,\\n\",\n      \"          -4.6349e-01,  1.0682e-01, -4.4147e-01,  6.4809e-01, -7.4248e-01,\\n\",\n      \"          -4.1258e-01,  8.1582e-04,  8.5063e-01, -2.6916e-01,  9.8050e-01,\\n\",\n      \"           8.5923e-01,  2.7114e-01, -9.7982e-01,  1.1645e-01, -9.2062e-01,\\n\",\n      \"           6.9792e-01,  5.5972e-02, -6.4944e-01, -3.0894e-02,  8.3212e-01,\\n\",\n      \"          -9.6305e-01,  9.7050e-01,  3.6046e-01,  6.2982e-01],\\n\",\n      \"         [-3.3856e-01,  9.9583e-01, -4.7812e-01,  8.1460e-01,  1.5086e-01,\\n\",\n      \"          -3.5992e-01, -9.6214e-01, -8.8878e-01, -6.7300e-01,  8.2048e-01,\\n\",\n      \"           6.9674e-01, -9.2415e-01, -7.5604e-01,  9.9507e-01, -3.1252e-01,\\n\",\n      \"          -8.8202e-01, -2.5001e-01, -7.8275e-01, -3.4824e-01,  8.7833e-01,\\n\",\n      \"           9.3924e-01, -9.3320e-01,  9.2575e-01,  8.4394e-01,  3.0872e-01,\\n\",\n      \"          -9.0865e-01, -6.2167e-01,  3.3885e-01, -8.8385e-01,  5.7011e-01,\\n\",\n      \"          -7.8066e-01,  7.8853e-01, -1.3503e-01,  4.1457e-01, -9.0867e-01,\\n\",\n      \"          -9.3144e-01,  6.6141e-01, -5.3103e-01,  4.2167e-01,  5.2227e-02,\\n\",\n      \"          -9.8603e-01,  8.6814e-01,  6.8602e-01,  6.3384e-01, -5.5447e-01,\\n\",\n      \"           5.5702e-01, -8.7117e-01,  3.0328e-01, -2.8999e-01,  7.6483e-01,\\n\",\n      \"           6.8244e-01,  9.2904e-01,  4.5833e-01, -8.4362e-01, -8.8799e-01,\\n\",\n      \"          -3.9211e-01,  6.4285e-01,  9.8265e-01,  7.0090e-01, -8.2531e-01,\\n\",\n      \"          -9.7944e-01,  9.9252e-01,  2.3537e-01,  9.3108e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.8919e-01,  3.4259e-01,  3.1522e-01, -4.7506e-01, -5.8994e-01,\\n\",\n      \"           5.1473e-01,  5.6873e-02,  5.4040e-01, -3.3129e-01, -1.3599e-01,\\n\",\n      \"           4.1210e-01,  2.9224e-01,  4.4804e-01, -2.0969e-01,  1.8312e-01,\\n\",\n      \"          -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\\n\",\n      \"           9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\\n\",\n      \"          -7.9656e-02,  8.3929e-01,  4.3339e-01,  3.9920e-01,  4.5494e-01,\\n\",\n      \"          -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\\n\",\n      \"          -1.3184e-01,  2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\\n\",\n      \"          -1.2202e-01, -1.8331e-01,  1.9878e-01,  3.4604e-01,  4.5695e-01,\\n\",\n      \"          -1.2873e-01,  1.2538e-01,  9.8116e-02, -5.7898e-01, -1.9313e-01,\\n\",\n      \"           3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02,  1.4781e-01,\\n\",\n      \"           4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\\n\",\n      \"           4.2793e-01, -1.4875e-02, -1.8840e-01,  1.0795e-02],\\n\",\n      \"         [-5.6161e-02,  5.1079e-01,  2.5469e-01,  4.0636e-01, -3.6313e-01,\\n\",\n      \"           1.5495e-01, -9.8928e-02,  1.4182e-01, -7.7240e-02, -2.6764e-01,\\n\",\n      \"           2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02,  3.2069e-01,\\n\",\n      \"          -1.9700e-01,  6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\\n\",\n      \"          -6.0447e-01, -5.2675e-01,  5.4918e-01,  3.0957e-01, -3.8066e-01,\\n\",\n      \"          -5.1973e-01,  7.1569e-02,  5.6027e-01, -1.1235e-02,  1.3392e-02,\\n\",\n      \"           1.8581e-01,  3.8664e-01, -6.3076e-01,  6.1353e-01,  1.7132e-01,\\n\",\n      \"          -2.1614e-02, -4.0260e-01,  7.6765e-01, -6.0879e-01,  2.6077e-01,\\n\",\n      \"          -7.0112e-02,  3.3747e-01, -6.6588e-01, -2.1261e-01,  7.7419e-02,\\n\",\n      \"          -3.0452e-01, -3.6169e-01,  2.3957e-01, -2.0789e-02,  4.0888e-01,\\n\",\n      \"           1.9174e-01,  6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\\n\",\n      \"           1.3132e-01,  3.5580e-02,  3.3620e-01, -3.2242e-01,  2.6653e-01,\\n\",\n      \"          -6.5847e-01,  3.5521e-01,  6.4256e-01, -4.4652e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0272e-01,  2.5549e-01, -6.7423e-01,  8.7988e-01, -4.8633e-01,\\n\",\n      \"          -4.3515e-01,  1.2682e-01,  7.5875e-01,  1.4521e-01, -3.9192e-01,\\n\",\n      \"           3.5380e-01, -1.7771e-03,  4.2796e-01, -6.6608e-01,  5.5359e-01,\\n\",\n      \"           4.9745e-01,  3.8194e-01,  1.6847e-01,  1.9478e-01, -3.7168e-01,\\n\",\n      \"          -3.1005e-01,  2.3350e-01,  1.3845e-02,  8.2973e-01,  4.7779e-01,\\n\",\n      \"          -4.5664e-01,  8.1294e-01,  2.1875e-01,  3.5033e-02,  2.0797e-01,\\n\",\n      \"           1.3223e-01,  9.8914e-02,  8.1988e-01,  1.6974e-01, -3.2957e-01,\\n\",\n      \"           2.3152e-02, -5.8926e-01,  9.2784e-01,  1.8358e-01,  6.9385e-01,\\n\",\n      \"          -2.9518e-01,  9.3706e-02, -7.4089e-02, -2.3288e-01,  4.5474e-01,\\n\",\n      \"          -3.7577e-01,  1.8794e-01, -7.1556e-01, -5.2221e-03,  6.3141e-01,\\n\",\n      \"          -3.0712e-01, -1.7799e-01,  3.4922e-02, -7.6832e-01, -1.5140e-01,\\n\",\n      \"           1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01,  3.7399e-01,\\n\",\n      \"          -6.4216e-01, -7.3713e-01,  1.1034e-01, -1.4378e-01],\\n\",\n      \"         [-3.0783e-01,  7.0619e-01,  2.8843e-01,  3.4486e-01, -3.1416e-02,\\n\",\n      \"          -5.5595e-01, -2.5893e-01,  3.7422e-01,  3.1599e-01, -1.7643e-02,\\n\",\n      \"           2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02,  1.7674e-01,\\n\",\n      \"          -2.6358e-01,  6.5556e-01, -6.6972e-01,  2.4392e-01, -5.5597e-01,\\n\",\n      \"          -5.4574e-01, -4.5712e-01,  2.6134e-01,  4.2726e-01, -1.7113e-02,\\n\",\n      \"          -5.0937e-01,  6.9873e-02,  2.8159e-01,  4.4168e-02, -5.9215e-02,\\n\",\n      \"           5.3164e-01,  1.4104e-01, -1.7418e-01,  6.2521e-01,  3.4052e-01,\\n\",\n      \"          -1.7095e-01, -3.7818e-01,  6.7129e-01,  3.5225e-03,  2.0033e-01,\\n\",\n      \"           2.6244e-01,  1.0848e-01, -4.6903e-03, -8.2113e-02,  1.2762e-01,\\n\",\n      \"          -1.8695e-01, -2.9354e-01,  2.2579e-01,  1.6966e-02,  3.7529e-01,\\n\",\n      \"          -4.1212e-02,  5.5560e-01, -4.2108e-01, -5.6336e-01,  2.0530e-02,\\n\",\n      \"           3.1856e-01, -1.6777e-01,  2.0985e-01, -3.4052e-01,  6.5363e-01,\\n\",\n      \"          -6.8536e-01, -9.1188e-02,  4.7263e-01, -4.1575e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3091e-01,  4.7975e-02, -6.4154e-01,  7.8851e-01, -2.6898e-01,\\n\",\n      \"          -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\\n\",\n      \"           6.2292e-01, -5.1763e-01,  5.1943e-01, -4.2000e-01,  5.3167e-01,\\n\",\n      \"          -2.8981e-01,  4.0898e-01,  3.6800e-01,  5.1437e-01, -2.4354e-01,\\n\",\n      \"          -4.3747e-01,  5.0437e-01,  2.3844e-01,  8.9447e-01,  3.0840e-01,\\n\",\n      \"          -2.6264e-01,  7.8487e-01,  2.0361e-01, -4.4836e-01,  2.9879e-01,\\n\",\n      \"           3.2300e-02,  3.8987e-01,  8.8484e-01,  2.8142e-01, -5.2596e-01,\\n\",\n      \"          -2.4904e-02, -6.4482e-01,  9.4409e-01,  7.2259e-01,  6.7215e-01,\\n\",\n      \"          -8.2231e-01,  1.9351e-01, -8.7342e-02,  7.0266e-02,  9.5666e-02,\\n\",\n      \"          -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02,  4.4018e-01,\\n\",\n      \"          -3.8727e-01, -4.3340e-01,  5.1425e-01, -8.3512e-01, -3.8365e-02,\\n\",\n      \"           6.5514e-02,  1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\\n\",\n      \"          -4.2758e-01, -8.9924e-01,  1.4681e-01, -5.5334e-01],\\n\",\n      \"         [-3.9027e-01,  6.9603e-01,  4.5691e-01,  1.6166e-01,  7.7914e-02,\\n\",\n      \"          -3.6820e-01,  3.5885e-01,  2.6877e-01, -4.4138e-01, -1.6789e-02,\\n\",\n      \"          -1.9538e-01,  1.2826e-01, -7.0902e-01,  5.8229e-01, -5.2308e-02,\\n\",\n      \"          -4.3843e-01,  5.0442e-01,  1.8963e-01,  2.9756e-01, -2.1835e-01,\\n\",\n      \"          -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\\n\",\n      \"           1.9278e-01,  9.0932e-02, -5.2118e-02,  4.5367e-01,  1.5111e-01,\\n\",\n      \"           5.1936e-01,  3.5247e-02, -3.8751e-02, -1.4526e-01,  5.1607e-01,\\n\",\n      \"           2.3604e-02, -4.8188e-02,  7.6434e-01,  3.3253e-01, -2.4698e-01,\\n\",\n      \"           4.3771e-03,  1.0644e-02,  8.0129e-02, -4.2507e-01, -5.0781e-01,\\n\",\n      \"          -1.4674e-01, -2.0134e-01, -3.1696e-01,  1.2785e-01,  3.3862e-02,\\n\",\n      \"          -1.8421e-02,  5.6756e-01, -1.9796e-01, -2.4455e-01,  6.6150e-02,\\n\",\n      \"           4.8072e-01, -5.5249e-01,  3.9305e-01,  3.4074e-02,  1.3419e-01,\\n\",\n      \"          -5.0839e-01,  3.6208e-01,  5.5418e-01, -3.4569e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.4933e-01, -7.1931e-02,  5.0550e-03,  3.1785e-01, -2.0353e-01,\\n\",\n      \"          -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\\n\",\n      \"           6.0992e-01, -3.2334e-01,  9.8982e-02, -6.3662e-03,  2.9666e-01,\\n\",\n      \"           2.6827e-01,  2.6206e-01,  1.5524e-01, -1.4986e-01, -3.7728e-01,\\n\",\n      \"          -2.4287e-01,  5.9968e-01, -1.5402e-02,  7.1346e-01,  6.4422e-02,\\n\",\n      \"          -3.3859e-01,  7.1390e-01,  2.8849e-02,  1.9976e-01,  4.0740e-01,\\n\",\n      \"          -2.5490e-01,  4.9943e-01,  2.1258e-01,  3.8105e-02, -7.4817e-01,\\n\",\n      \"          -4.9476e-01, -3.4258e-01,  8.5370e-01, -4.7424e-02,  2.3023e-03,\\n\",\n      \"           7.6213e-02, -2.0977e-01, -5.4353e-01,  7.5130e-02,  4.5926e-02,\\n\",\n      \"          -2.5807e-01, -4.3763e-01,  5.4502e-04, -3.5419e-01,  3.9410e-01,\\n\",\n      \"           9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\\n\",\n      \"          -1.8388e-01, -3.3026e-01,  4.2534e-01, -6.2395e-01, -4.9245e-01,\\n\",\n      \"          -4.3765e-01, -8.1805e-01,  3.7798e-01, -2.5220e-01],\\n\",\n      \"         [-1.9273e-01,  9.1169e-01,  4.3890e-01,  1.0174e-01, -1.9656e-02,\\n\",\n      \"          -3.9100e-01, -6.5023e-01,  3.5940e-01,  4.9301e-01,  1.7146e-01,\\n\",\n      \"           7.3839e-02, -7.8011e-01, -6.7214e-01,  3.3858e-01,  1.7792e-01,\\n\",\n      \"           2.6100e-01,  6.7196e-01, -3.3304e-02,  7.4288e-01, -5.9793e-01,\\n\",\n      \"          -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02,  3.9973e-01,\\n\",\n      \"           1.0201e-01,  1.4956e-01,  6.1471e-02,  3.4410e-01,  4.2557e-02,\\n\",\n      \"           6.9241e-01, -6.9050e-01, -9.9599e-02,  2.7794e-01,  2.8065e-01,\\n\",\n      \"           7.2173e-02,  6.3955e-03,  7.8340e-01, -1.9722e-01, -2.8579e-01,\\n\",\n      \"          -6.8728e-02,  3.1987e-01,  8.2484e-02, -1.4364e-01, -4.0027e-01,\\n\",\n      \"          -1.0889e-01, -1.0124e-01, -3.7705e-02,  6.1753e-01,  3.5287e-01,\\n\",\n      \"          -2.5209e-01,  7.4057e-02, -5.3195e-01, -6.3228e-01,  1.0961e-01,\\n\",\n      \"           3.5351e-01, -6.0642e-01,  3.5917e-01, -1.7134e-01,  8.0014e-01,\\n\",\n      \"          -6.3953e-01, -3.3486e-01,  1.1678e-01, -3.5628e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.3718e-01,  7.2870e-01,  3.3308e-01,  2.0858e-01, -2.3181e-01,\\n\",\n      \"          -6.6301e-01, -6.4745e-01,  1.3262e-01,  4.8326e-01,  6.6392e-02,\\n\",\n      \"           6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02,  3.4328e-01,\\n\",\n      \"           5.9002e-01,  6.3913e-01, -9.9936e-02,  6.0167e-01, -6.4984e-01,\\n\",\n      \"          -1.3278e-01,  5.5604e-01, -2.1617e-01,  6.7785e-01,  4.6192e-01,\\n\",\n      \"          -2.8609e-01,  6.6761e-01,  1.2330e-01,  1.9491e-01,  2.3275e-01,\\n\",\n      \"           4.1373e-01, -6.0354e-01,  8.9942e-02,  3.4765e-01, -4.1777e-01,\\n\",\n      \"           8.5970e-03, -2.2424e-01,  8.6788e-01, -2.3015e-01, -1.3828e-01,\\n\",\n      \"           5.8865e-02,  1.4415e-01, -4.8419e-01,  1.6516e-01, -2.7493e-01,\\n\",\n      \"          -2.1732e-01, -2.4245e-01,  1.6697e-01,  4.6947e-01,  5.7996e-01,\\n\",\n      \"          -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\\n\",\n      \"           2.2014e-01, -6.1083e-01,  4.0197e-01, -6.2808e-01,  7.9478e-01,\\n\",\n      \"          -5.4961e-01, -6.7529e-01,  1.5489e-02, -2.9274e-01],\\n\",\n      \"         [-3.6078e-01,  6.9189e-01,  6.1440e-01,  6.4958e-01, -4.3455e-01,\\n\",\n      \"          -3.5583e-01, -7.3222e-01, -8.7517e-01,  6.3373e-01, -2.2112e-03,\\n\",\n      \"           2.9666e-01, -7.9231e-01, -5.1286e-01,  5.6895e-01,  1.2489e-01,\\n\",\n      \"           7.5713e-01,  6.4310e-01,  6.4566e-01,  8.3428e-01, -6.3758e-01,\\n\",\n      \"          -8.9328e-01, -1.6739e-01, -1.3025e-01,  5.3928e-02,  2.3477e-01,\\n\",\n      \"          -9.2187e-01,  7.0911e-01,  4.6542e-02, -2.4542e-01,  1.0799e-02,\\n\",\n      \"           8.8081e-01, -3.7415e-01,  5.2033e-01,  1.5552e-02, -5.1183e-01,\\n\",\n      \"           2.1724e-01, -8.0264e-01,  8.7225e-01,  5.0256e-01, -1.8578e-01,\\n\",\n      \"          -1.4407e-01, -6.4479e-01, -7.9479e-01,  4.0860e-01, -2.7567e-01,\\n\",\n      \"           9.1192e-04, -3.5091e-01,  3.0913e-01,  8.0915e-01,  8.8322e-01,\\n\",\n      \"          -4.6345e-01,  6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\\n\",\n      \"           7.7383e-01, -8.5906e-01,  5.4155e-01,  9.6536e-01,  7.4088e-01,\\n\",\n      \"          -5.4469e-01, -8.6252e-02,  9.5525e-01, -9.2331e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0418e-01,  5.5571e-01,  5.8886e-01,  6.7950e-01, -5.3868e-01,\\n\",\n      \"          -6.0882e-01, -7.3359e-01, -8.8612e-01,  6.2786e-01, -5.4523e-02,\\n\",\n      \"           5.7679e-01, -8.6235e-01, -3.5407e-01,  3.5055e-01,  2.2463e-01,\\n\",\n      \"           8.5547e-01,  6.4569e-01,  6.2466e-01,  7.5043e-01, -6.7614e-01,\\n\",\n      \"          -8.8315e-01,  3.6020e-01, -9.6990e-02,  6.7707e-01,  2.9608e-01,\\n\",\n      \"          -9.3966e-01,  8.0311e-01,  8.0575e-02, -2.5028e-01,  1.8937e-01,\\n\",\n      \"           8.5196e-01, -3.1190e-01,  5.9931e-01,  1.1915e-01, -7.4333e-01,\\n\",\n      \"           2.9976e-01, -8.6610e-01,  9.2273e-01,  4.9476e-01, -6.9907e-02,\\n\",\n      \"          -3.3817e-02, -6.8751e-01, -8.7660e-01,  4.9436e-01, -1.5151e-01,\\n\",\n      \"          -1.1269e-01, -4.6676e-01,  4.0701e-01,  7.6854e-01,  9.3047e-01,\\n\",\n      \"          -4.3576e-01,  5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\\n\",\n      \"           7.7006e-01, -8.6413e-01,  5.6022e-01,  9.5810e-01,  7.2682e-01,\\n\",\n      \"          -4.5427e-01, -2.5659e-01,  9.5853e-01, -9.2379e-01],\\n\",\n      \"         [-7.7460e-01,  9.9026e-01,  6.3722e-01,  2.0712e-01, -3.6535e-01,\\n\",\n      \"          -5.1381e-01, -9.8802e-01, -9.2029e-01,  9.4324e-01,  1.2037e-02,\\n\",\n      \"           5.6740e-01, -9.2826e-01, -7.5338e-01,  9.8160e-01,  8.7260e-02,\\n\",\n      \"           7.5755e-01,  6.3618e-01,  9.7823e-01,  9.8206e-01, -6.6112e-01,\\n\",\n      \"          -9.9476e-01, -2.1120e-01, -9.0182e-02,  2.4394e-01,  2.6934e-01,\\n\",\n      \"          -9.1776e-01,  4.5227e-01,  9.6771e-02,  2.4004e-01,  1.9161e-01,\\n\",\n      \"           9.6763e-01, -6.2995e-01,  4.5209e-01, -7.3755e-01,  1.7895e-01,\\n\",\n      \"           8.2790e-01, -7.4495e-01,  9.3048e-01,  6.8724e-01, -2.2175e-01,\\n\",\n      \"           7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\\n\",\n      \"           1.0962e-02, -3.9790e-01, -5.0389e-01,  8.2996e-01,  9.7687e-01,\\n\",\n      \"          -9.1826e-01,  8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\\n\",\n      \"           8.0700e-01, -9.9238e-01,  7.9356e-01,  9.7202e-01,  8.6634e-01,\\n\",\n      \"          -9.6564e-01,  8.0110e-01,  9.8311e-01, -9.5971e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.8544e-01,  9.8591e-01,  6.1879e-01,  2.5189e-01, -4.5887e-01,\\n\",\n      \"          -5.9831e-01, -9.8791e-01, -9.2568e-01,  9.4309e-01, -3.7440e-02,\\n\",\n      \"           6.7137e-01, -9.4777e-01, -6.6153e-01,  9.7169e-01,  1.8339e-01,\\n\",\n      \"           8.5464e-01,  6.4561e-01,  9.7789e-01,  9.7138e-01, -6.9134e-01,\\n\",\n      \"          -9.9371e-01,  2.8951e-01, -5.6722e-02,  5.8515e-01,  3.1130e-01,\\n\",\n      \"          -9.3571e-01,  5.6603e-01,  1.3169e-01,  2.1265e-01,  2.8412e-01,\\n\",\n      \"           9.6472e-01, -6.0069e-01,  5.2081e-01, -7.0690e-01,  7.3823e-02,\\n\",\n      \"           8.5549e-01, -7.9405e-01,  9.5622e-01,  6.7850e-01, -1.1331e-01,\\n\",\n      \"           8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\\n\",\n      \"          -9.5556e-02, -4.8684e-01, -4.8504e-01,  7.9844e-01,  9.8674e-01,\\n\",\n      \"          -9.1737e-01,  7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\\n\",\n      \"           8.0822e-01, -9.9301e-01,  8.0589e-01,  9.6631e-01,  8.5895e-01,\\n\",\n      \"          -9.5692e-01,  7.8279e-01,  9.8394e-01, -9.6014e-01],\\n\",\n      \"         [-8.9920e-01,  9.9750e-01,  6.7051e-01, -1.4098e-01, -2.9074e-01,\\n\",\n      \"          -4.4487e-01, -9.9862e-01, -9.4112e-01,  9.8095e-01,  1.8637e-02,\\n\",\n      \"           6.6284e-01, -9.7143e-01, -8.7824e-01,  9.9706e-01,  5.6382e-02,\\n\",\n      \"           7.5856e-01,  6.5313e-01,  9.8820e-01,  9.9701e-01, -6.9944e-01,\\n\",\n      \"          -9.9922e-01, -2.5071e-01, -5.8678e-02,  3.5966e-01,  2.8802e-01,\\n\",\n      \"          -9.1436e-01,  3.4018e-01,  1.3987e-01,  4.1294e-01,  2.1804e-01,\\n\",\n      \"           9.8001e-01, -7.9156e-01,  3.8970e-01, -8.6485e-01,  5.5832e-01,\\n\",\n      \"           9.3225e-01, -6.9751e-01,  9.6238e-01,  7.7753e-01, -2.4782e-01,\\n\",\n      \"           9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\\n\",\n      \"           2.0784e-02, -4.3880e-01, -8.0816e-01,  8.4524e-01,  9.9437e-01,\\n\",\n      \"          -9.5786e-01,  9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\\n\",\n      \"           8.3064e-01, -9.9141e-01,  8.9800e-01,  9.7707e-01,  9.1796e-01,\\n\",\n      \"          -9.9589e-01,  9.2743e-01,  9.9109e-01, -9.7968e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([ 9, 16])\\n\",\n      \"dec_state: tensor([[[ 1.5593e-01,  8.1538e-01, -3.6497e-01,  8.8808e-01,  7.6804e-01,\\n\",\n      \"           6.2933e-01, -4.3407e-01, -2.4707e-01,  8.0896e-01, -2.5596e-01,\\n\",\n      \"          -2.0056e-01, -9.4520e-01, -7.8362e-01,  9.3027e-01,  1.4214e-01,\\n\",\n      \"           3.4872e-01,  7.8860e-02,  2.7197e-01,  3.8271e-02,  6.1823e-01,\\n\",\n      \"           7.8682e-01, -2.2098e-01, -2.9453e-01,  9.2332e-01, -7.7141e-02,\\n\",\n      \"          -9.5939e-01, -7.8923e-01, -3.5838e-01, -9.0791e-01, -7.3123e-01,\\n\",\n      \"          -8.1233e-01,  8.8035e-01, -7.7860e-01,  1.9996e-01, -5.8175e-01,\\n\",\n      \"          -4.0078e-01,  7.9030e-01,  9.5569e-02, -2.7349e-01,  8.6122e-02,\\n\",\n      \"          -6.3186e-01,  2.0622e-01, -3.3416e-02,  7.4579e-01, -9.0951e-01,\\n\",\n      \"           2.7161e-01, -1.8137e-01,  5.1107e-01, -3.1445e-01,  9.8160e-01,\\n\",\n      \"           9.2928e-01,  5.7448e-01,  1.0923e-01, -4.1756e-01, -9.1596e-01,\\n\",\n      \"           3.5990e-01,  6.1700e-01,  6.7893e-01,  2.7484e-01,  8.4586e-01,\\n\",\n      \"          -9.6343e-01,  9.4907e-01, -7.3367e-04,  8.7368e-01],\\n\",\n      \"         [ 1.5506e-01,  9.5286e-01, -8.4584e-01,  8.0375e-01,  3.6434e-01,\\n\",\n      \"           3.2145e-01, -9.6351e-01, -3.5896e-01,  1.5227e-01, -6.0061e-01,\\n\",\n      \"           2.7456e-01, -8.8560e-01, -5.5677e-01,  9.8420e-01, -2.1473e-01,\\n\",\n      \"          -2.5911e-01, -7.4126e-01, -7.8248e-01, -1.3465e-01,  8.4065e-01,\\n\",\n      \"           9.0986e-01, -8.9844e-01,  7.4929e-01,  8.4345e-01,  7.4428e-01,\\n\",\n      \"          -9.3815e-01, -8.6996e-01,  1.6196e-01, -6.7586e-01, -5.0763e-01,\\n\",\n      \"          -5.4835e-01,  7.7233e-01,  2.1631e-01,  5.6712e-01, -9.0730e-01,\\n\",\n      \"          -8.9161e-01,  6.7888e-01, -1.7903e-01, -4.3390e-01, -9.8104e-02,\\n\",\n      \"          -9.9298e-01,  9.7058e-01,  3.5279e-01,  4.8655e-01, -5.3989e-01,\\n\",\n      \"           8.5492e-01, -9.7274e-01, -2.3209e-01, -4.7310e-01,  7.0984e-01,\\n\",\n      \"           7.6395e-01,  9.1796e-01,  2.2627e-01, -8.4193e-01, -6.3268e-01,\\n\",\n      \"          -2.0735e-01,  7.8627e-01,  7.8691e-01,  7.4850e-01, -5.6272e-01,\\n\",\n      \"          -9.8460e-01,  9.9408e-01,  2.6500e-01,  1.3678e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.8919e-01,  3.4259e-01,  3.1522e-01, -4.7506e-01, -5.8994e-01,\\n\",\n      \"           5.1473e-01,  5.6873e-02,  5.4040e-01, -3.3129e-01, -1.3599e-01,\\n\",\n      \"           4.1210e-01,  2.9224e-01,  4.4804e-01, -2.0969e-01,  1.8312e-01,\\n\",\n      \"          -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\\n\",\n      \"           9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\\n\",\n      \"          -7.9656e-02,  8.3929e-01,  4.3339e-01,  3.9920e-01,  4.5494e-01,\\n\",\n      \"          -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\\n\",\n      \"          -1.3184e-01,  2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\\n\",\n      \"          -1.2202e-01, -1.8331e-01,  1.9878e-01,  3.4604e-01,  4.5695e-01,\\n\",\n      \"          -1.2873e-01,  1.2538e-01,  9.8116e-02, -5.7898e-01, -1.9313e-01,\\n\",\n      \"           3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02,  1.4781e-01,\\n\",\n      \"           4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\\n\",\n      \"           4.2793e-01, -1.4875e-02, -1.8840e-01,  1.0795e-02],\\n\",\n      \"         [-5.6161e-02,  5.1079e-01,  2.5469e-01,  4.0636e-01, -3.6313e-01,\\n\",\n      \"           1.5495e-01, -9.8928e-02,  1.4182e-01, -7.7240e-02, -2.6764e-01,\\n\",\n      \"           2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02,  3.2069e-01,\\n\",\n      \"          -1.9700e-01,  6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\\n\",\n      \"          -6.0447e-01, -5.2675e-01,  5.4918e-01,  3.0957e-01, -3.8066e-01,\\n\",\n      \"          -5.1973e-01,  7.1569e-02,  5.6027e-01, -1.1235e-02,  1.3392e-02,\\n\",\n      \"           1.8581e-01,  3.8664e-01, -6.3076e-01,  6.1353e-01,  1.7132e-01,\\n\",\n      \"          -2.1614e-02, -4.0260e-01,  7.6765e-01, -6.0879e-01,  2.6077e-01,\\n\",\n      \"          -7.0112e-02,  3.3747e-01, -6.6588e-01, -2.1261e-01,  7.7419e-02,\\n\",\n      \"          -3.0452e-01, -3.6169e-01,  2.3957e-01, -2.0789e-02,  4.0888e-01,\\n\",\n      \"           1.9174e-01,  6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\\n\",\n      \"           1.3132e-01,  3.5580e-02,  3.3620e-01, -3.2242e-01,  2.6653e-01,\\n\",\n      \"          -6.5847e-01,  3.5521e-01,  6.4256e-01, -4.4652e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0272e-01,  2.5549e-01, -6.7423e-01,  8.7988e-01, -4.8633e-01,\\n\",\n      \"          -4.3515e-01,  1.2682e-01,  7.5875e-01,  1.4521e-01, -3.9192e-01,\\n\",\n      \"           3.5380e-01, -1.7771e-03,  4.2796e-01, -6.6608e-01,  5.5359e-01,\\n\",\n      \"           4.9745e-01,  3.8194e-01,  1.6847e-01,  1.9478e-01, -3.7168e-01,\\n\",\n      \"          -3.1005e-01,  2.3350e-01,  1.3845e-02,  8.2973e-01,  4.7779e-01,\\n\",\n      \"          -4.5664e-01,  8.1294e-01,  2.1875e-01,  3.5033e-02,  2.0797e-01,\\n\",\n      \"           1.3223e-01,  9.8914e-02,  8.1988e-01,  1.6974e-01, -3.2957e-01,\\n\",\n      \"           2.3152e-02, -5.8926e-01,  9.2784e-01,  1.8358e-01,  6.9385e-01,\\n\",\n      \"          -2.9518e-01,  9.3706e-02, -7.4089e-02, -2.3288e-01,  4.5474e-01,\\n\",\n      \"          -3.7577e-01,  1.8794e-01, -7.1556e-01, -5.2221e-03,  6.3141e-01,\\n\",\n      \"          -3.0712e-01, -1.7799e-01,  3.4922e-02, -7.6832e-01, -1.5140e-01,\\n\",\n      \"           1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01,  3.7399e-01,\\n\",\n      \"          -6.4216e-01, -7.3713e-01,  1.1034e-01, -1.4378e-01],\\n\",\n      \"         [-3.0783e-01,  7.0619e-01,  2.8843e-01,  3.4486e-01, -3.1416e-02,\\n\",\n      \"          -5.5595e-01, -2.5893e-01,  3.7422e-01,  3.1599e-01, -1.7643e-02,\\n\",\n      \"           2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02,  1.7674e-01,\\n\",\n      \"          -2.6358e-01,  6.5556e-01, -6.6972e-01,  2.4392e-01, -5.5597e-01,\\n\",\n      \"          -5.4574e-01, -4.5712e-01,  2.6134e-01,  4.2726e-01, -1.7113e-02,\\n\",\n      \"          -5.0937e-01,  6.9873e-02,  2.8159e-01,  4.4168e-02, -5.9215e-02,\\n\",\n      \"           5.3164e-01,  1.4104e-01, -1.7418e-01,  6.2521e-01,  3.4052e-01,\\n\",\n      \"          -1.7095e-01, -3.7818e-01,  6.7129e-01,  3.5225e-03,  2.0033e-01,\\n\",\n      \"           2.6244e-01,  1.0848e-01, -4.6903e-03, -8.2113e-02,  1.2762e-01,\\n\",\n      \"          -1.8695e-01, -2.9354e-01,  2.2579e-01,  1.6966e-02,  3.7529e-01,\\n\",\n      \"          -4.1212e-02,  5.5560e-01, -4.2108e-01, -5.6336e-01,  2.0530e-02,\\n\",\n      \"           3.1856e-01, -1.6777e-01,  2.0985e-01, -3.4052e-01,  6.5363e-01,\\n\",\n      \"          -6.8536e-01, -9.1188e-02,  4.7263e-01, -4.1575e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3091e-01,  4.7975e-02, -6.4154e-01,  7.8851e-01, -2.6898e-01,\\n\",\n      \"          -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\\n\",\n      \"           6.2292e-01, -5.1763e-01,  5.1943e-01, -4.2000e-01,  5.3167e-01,\\n\",\n      \"          -2.8981e-01,  4.0898e-01,  3.6800e-01,  5.1437e-01, -2.4354e-01,\\n\",\n      \"          -4.3747e-01,  5.0437e-01,  2.3844e-01,  8.9447e-01,  3.0840e-01,\\n\",\n      \"          -2.6264e-01,  7.8487e-01,  2.0361e-01, -4.4836e-01,  2.9879e-01,\\n\",\n      \"           3.2300e-02,  3.8987e-01,  8.8484e-01,  2.8142e-01, -5.2596e-01,\\n\",\n      \"          -2.4904e-02, -6.4482e-01,  9.4409e-01,  7.2259e-01,  6.7215e-01,\\n\",\n      \"          -8.2231e-01,  1.9351e-01, -8.7342e-02,  7.0266e-02,  9.5666e-02,\\n\",\n      \"          -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02,  4.4018e-01,\\n\",\n      \"          -3.8727e-01, -4.3340e-01,  5.1425e-01, -8.3512e-01, -3.8365e-02,\\n\",\n      \"           6.5514e-02,  1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\\n\",\n      \"          -4.2758e-01, -8.9924e-01,  1.4681e-01, -5.5334e-01],\\n\",\n      \"         [-3.9027e-01,  6.9603e-01,  4.5691e-01,  1.6166e-01,  7.7914e-02,\\n\",\n      \"          -3.6820e-01,  3.5885e-01,  2.6877e-01, -4.4138e-01, -1.6789e-02,\\n\",\n      \"          -1.9538e-01,  1.2826e-01, -7.0902e-01,  5.8229e-01, -5.2308e-02,\\n\",\n      \"          -4.3843e-01,  5.0442e-01,  1.8963e-01,  2.9756e-01, -2.1835e-01,\\n\",\n      \"          -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\\n\",\n      \"           1.9278e-01,  9.0932e-02, -5.2118e-02,  4.5367e-01,  1.5111e-01,\\n\",\n      \"           5.1936e-01,  3.5247e-02, -3.8751e-02, -1.4526e-01,  5.1607e-01,\\n\",\n      \"           2.3604e-02, -4.8188e-02,  7.6434e-01,  3.3253e-01, -2.4698e-01,\\n\",\n      \"           4.3771e-03,  1.0644e-02,  8.0129e-02, -4.2507e-01, -5.0781e-01,\\n\",\n      \"          -1.4674e-01, -2.0134e-01, -3.1696e-01,  1.2785e-01,  3.3862e-02,\\n\",\n      \"          -1.8421e-02,  5.6756e-01, -1.9796e-01, -2.4455e-01,  6.6150e-02,\\n\",\n      \"           4.8072e-01, -5.5249e-01,  3.9305e-01,  3.4074e-02,  1.3419e-01,\\n\",\n      \"          -5.0839e-01,  3.6208e-01,  5.5418e-01, -3.4569e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.4933e-01, -7.1931e-02,  5.0550e-03,  3.1785e-01, -2.0353e-01,\\n\",\n      \"          -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\\n\",\n      \"           6.0992e-01, -3.2334e-01,  9.8982e-02, -6.3662e-03,  2.9666e-01,\\n\",\n      \"           2.6827e-01,  2.6206e-01,  1.5524e-01, -1.4986e-01, -3.7728e-01,\\n\",\n      \"          -2.4287e-01,  5.9968e-01, -1.5402e-02,  7.1346e-01,  6.4422e-02,\\n\",\n      \"          -3.3859e-01,  7.1390e-01,  2.8849e-02,  1.9976e-01,  4.0740e-01,\\n\",\n      \"          -2.5490e-01,  4.9943e-01,  2.1258e-01,  3.8105e-02, -7.4817e-01,\\n\",\n      \"          -4.9476e-01, -3.4258e-01,  8.5370e-01, -4.7424e-02,  2.3023e-03,\\n\",\n      \"           7.6213e-02, -2.0977e-01, -5.4353e-01,  7.5130e-02,  4.5926e-02,\\n\",\n      \"          -2.5807e-01, -4.3763e-01,  5.4502e-04, -3.5419e-01,  3.9410e-01,\\n\",\n      \"           9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\\n\",\n      \"          -1.8388e-01, -3.3026e-01,  4.2534e-01, -6.2395e-01, -4.9245e-01,\\n\",\n      \"          -4.3765e-01, -8.1805e-01,  3.7798e-01, -2.5220e-01],\\n\",\n      \"         [-1.9273e-01,  9.1169e-01,  4.3890e-01,  1.0174e-01, -1.9656e-02,\\n\",\n      \"          -3.9100e-01, -6.5023e-01,  3.5940e-01,  4.9301e-01,  1.7146e-01,\\n\",\n      \"           7.3839e-02, -7.8011e-01, -6.7214e-01,  3.3858e-01,  1.7792e-01,\\n\",\n      \"           2.6100e-01,  6.7196e-01, -3.3304e-02,  7.4288e-01, -5.9793e-01,\\n\",\n      \"          -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02,  3.9973e-01,\\n\",\n      \"           1.0201e-01,  1.4956e-01,  6.1471e-02,  3.4410e-01,  4.2557e-02,\\n\",\n      \"           6.9241e-01, -6.9050e-01, -9.9599e-02,  2.7794e-01,  2.8065e-01,\\n\",\n      \"           7.2173e-02,  6.3955e-03,  7.8340e-01, -1.9722e-01, -2.8579e-01,\\n\",\n      \"          -6.8728e-02,  3.1987e-01,  8.2484e-02, -1.4364e-01, -4.0027e-01,\\n\",\n      \"          -1.0889e-01, -1.0124e-01, -3.7705e-02,  6.1753e-01,  3.5287e-01,\\n\",\n      \"          -2.5209e-01,  7.4057e-02, -5.3195e-01, -6.3228e-01,  1.0961e-01,\\n\",\n      \"           3.5351e-01, -6.0642e-01,  3.5917e-01, -1.7134e-01,  8.0014e-01,\\n\",\n      \"          -6.3953e-01, -3.3486e-01,  1.1678e-01, -3.5628e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.3718e-01,  7.2870e-01,  3.3308e-01,  2.0858e-01, -2.3181e-01,\\n\",\n      \"          -6.6301e-01, -6.4745e-01,  1.3262e-01,  4.8326e-01,  6.6392e-02,\\n\",\n      \"           6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02,  3.4328e-01,\\n\",\n      \"           5.9002e-01,  6.3913e-01, -9.9936e-02,  6.0167e-01, -6.4984e-01,\\n\",\n      \"          -1.3278e-01,  5.5604e-01, -2.1617e-01,  6.7785e-01,  4.6192e-01,\\n\",\n      \"          -2.8609e-01,  6.6761e-01,  1.2330e-01,  1.9491e-01,  2.3275e-01,\\n\",\n      \"           4.1373e-01, -6.0354e-01,  8.9942e-02,  3.4765e-01, -4.1777e-01,\\n\",\n      \"           8.5970e-03, -2.2424e-01,  8.6788e-01, -2.3015e-01, -1.3828e-01,\\n\",\n      \"           5.8865e-02,  1.4415e-01, -4.8419e-01,  1.6516e-01, -2.7493e-01,\\n\",\n      \"          -2.1732e-01, -2.4245e-01,  1.6697e-01,  4.6947e-01,  5.7996e-01,\\n\",\n      \"          -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\\n\",\n      \"           2.2014e-01, -6.1083e-01,  4.0197e-01, -6.2808e-01,  7.9478e-01,\\n\",\n      \"          -5.4961e-01, -6.7529e-01,  1.5489e-02, -2.9274e-01],\\n\",\n      \"         [-3.6078e-01,  6.9189e-01,  6.1440e-01,  6.4958e-01, -4.3455e-01,\\n\",\n      \"          -3.5583e-01, -7.3222e-01, -8.7517e-01,  6.3373e-01, -2.2112e-03,\\n\",\n      \"           2.9666e-01, -7.9231e-01, -5.1286e-01,  5.6895e-01,  1.2489e-01,\\n\",\n      \"           7.5713e-01,  6.4310e-01,  6.4566e-01,  8.3428e-01, -6.3758e-01,\\n\",\n      \"          -8.9328e-01, -1.6739e-01, -1.3025e-01,  5.3928e-02,  2.3477e-01,\\n\",\n      \"          -9.2187e-01,  7.0911e-01,  4.6542e-02, -2.4542e-01,  1.0799e-02,\\n\",\n      \"           8.8081e-01, -3.7415e-01,  5.2033e-01,  1.5552e-02, -5.1183e-01,\\n\",\n      \"           2.1724e-01, -8.0264e-01,  8.7225e-01,  5.0256e-01, -1.8578e-01,\\n\",\n      \"          -1.4407e-01, -6.4479e-01, -7.9479e-01,  4.0860e-01, -2.7567e-01,\\n\",\n      \"           9.1192e-04, -3.5091e-01,  3.0913e-01,  8.0915e-01,  8.8322e-01,\\n\",\n      \"          -4.6345e-01,  6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\\n\",\n      \"           7.7383e-01, -8.5906e-01,  5.4155e-01,  9.6536e-01,  7.4088e-01,\\n\",\n      \"          -5.4469e-01, -8.6252e-02,  9.5525e-01, -9.2331e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0418e-01,  5.5571e-01,  5.8886e-01,  6.7950e-01, -5.3868e-01,\\n\",\n      \"          -6.0882e-01, -7.3359e-01, -8.8612e-01,  6.2786e-01, -5.4523e-02,\\n\",\n      \"           5.7679e-01, -8.6235e-01, -3.5407e-01,  3.5055e-01,  2.2463e-01,\\n\",\n      \"           8.5547e-01,  6.4569e-01,  6.2466e-01,  7.5043e-01, -6.7614e-01,\\n\",\n      \"          -8.8315e-01,  3.6020e-01, -9.6990e-02,  6.7707e-01,  2.9608e-01,\\n\",\n      \"          -9.3966e-01,  8.0311e-01,  8.0575e-02, -2.5028e-01,  1.8937e-01,\\n\",\n      \"           8.5196e-01, -3.1190e-01,  5.9931e-01,  1.1915e-01, -7.4333e-01,\\n\",\n      \"           2.9976e-01, -8.6610e-01,  9.2273e-01,  4.9476e-01, -6.9907e-02,\\n\",\n      \"          -3.3817e-02, -6.8751e-01, -8.7660e-01,  4.9436e-01, -1.5151e-01,\\n\",\n      \"          -1.1269e-01, -4.6676e-01,  4.0701e-01,  7.6854e-01,  9.3047e-01,\\n\",\n      \"          -4.3576e-01,  5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\\n\",\n      \"           7.7006e-01, -8.6413e-01,  5.6022e-01,  9.5810e-01,  7.2682e-01,\\n\",\n      \"          -4.5427e-01, -2.5659e-01,  9.5853e-01, -9.2379e-01],\\n\",\n      \"         [-7.7460e-01,  9.9026e-01,  6.3722e-01,  2.0712e-01, -3.6535e-01,\\n\",\n      \"          -5.1381e-01, -9.8802e-01, -9.2029e-01,  9.4324e-01,  1.2037e-02,\\n\",\n      \"           5.6740e-01, -9.2826e-01, -7.5338e-01,  9.8160e-01,  8.7260e-02,\\n\",\n      \"           7.5755e-01,  6.3618e-01,  9.7823e-01,  9.8206e-01, -6.6112e-01,\\n\",\n      \"          -9.9476e-01, -2.1120e-01, -9.0182e-02,  2.4394e-01,  2.6934e-01,\\n\",\n      \"          -9.1776e-01,  4.5227e-01,  9.6771e-02,  2.4004e-01,  1.9161e-01,\\n\",\n      \"           9.6763e-01, -6.2995e-01,  4.5209e-01, -7.3755e-01,  1.7895e-01,\\n\",\n      \"           8.2790e-01, -7.4495e-01,  9.3048e-01,  6.8724e-01, -2.2175e-01,\\n\",\n      \"           7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\\n\",\n      \"           1.0962e-02, -3.9790e-01, -5.0389e-01,  8.2996e-01,  9.7687e-01,\\n\",\n      \"          -9.1826e-01,  8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\\n\",\n      \"           8.0700e-01, -9.9238e-01,  7.9356e-01,  9.7202e-01,  8.6634e-01,\\n\",\n      \"          -9.6564e-01,  8.0110e-01,  9.8311e-01, -9.5971e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.8544e-01,  9.8591e-01,  6.1879e-01,  2.5189e-01, -4.5887e-01,\\n\",\n      \"          -5.9831e-01, -9.8791e-01, -9.2568e-01,  9.4309e-01, -3.7440e-02,\\n\",\n      \"           6.7137e-01, -9.4777e-01, -6.6153e-01,  9.7169e-01,  1.8339e-01,\\n\",\n      \"           8.5464e-01,  6.4561e-01,  9.7789e-01,  9.7138e-01, -6.9134e-01,\\n\",\n      \"          -9.9371e-01,  2.8951e-01, -5.6722e-02,  5.8515e-01,  3.1130e-01,\\n\",\n      \"          -9.3571e-01,  5.6603e-01,  1.3169e-01,  2.1265e-01,  2.8412e-01,\\n\",\n      \"           9.6472e-01, -6.0069e-01,  5.2081e-01, -7.0690e-01,  7.3823e-02,\\n\",\n      \"           8.5549e-01, -7.9405e-01,  9.5622e-01,  6.7850e-01, -1.1331e-01,\\n\",\n      \"           8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\\n\",\n      \"          -9.5556e-02, -4.8684e-01, -4.8504e-01,  7.9844e-01,  9.8674e-01,\\n\",\n      \"          -9.1737e-01,  7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\\n\",\n      \"           8.0822e-01, -9.9301e-01,  8.0589e-01,  9.6631e-01,  8.5895e-01,\\n\",\n      \"          -9.5692e-01,  7.8279e-01,  9.8394e-01, -9.6014e-01],\\n\",\n      \"         [-8.9920e-01,  9.9750e-01,  6.7051e-01, -1.4098e-01, -2.9074e-01,\\n\",\n      \"          -4.4487e-01, -9.9862e-01, -9.4112e-01,  9.8095e-01,  1.8637e-02,\\n\",\n      \"           6.6284e-01, -9.7143e-01, -8.7824e-01,  9.9706e-01,  5.6382e-02,\\n\",\n      \"           7.5856e-01,  6.5313e-01,  9.8820e-01,  9.9701e-01, -6.9944e-01,\\n\",\n      \"          -9.9922e-01, -2.5071e-01, -5.8678e-02,  3.5966e-01,  2.8802e-01,\\n\",\n      \"          -9.1436e-01,  3.4018e-01,  1.3987e-01,  4.1294e-01,  2.1804e-01,\\n\",\n      \"           9.8001e-01, -7.9156e-01,  3.8970e-01, -8.6485e-01,  5.5832e-01,\\n\",\n      \"           9.3225e-01, -6.9751e-01,  9.6238e-01,  7.7753e-01, -2.4782e-01,\\n\",\n      \"           9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\\n\",\n      \"           2.0784e-02, -4.3880e-01, -8.0816e-01,  8.4524e-01,  9.9437e-01,\\n\",\n      \"          -9.5786e-01,  9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\\n\",\n      \"           8.3064e-01, -9.9141e-01,  8.9800e-01,  9.7707e-01,  9.1796e-01,\\n\",\n      \"          -9.9589e-01,  9.2743e-01,  9.9109e-01, -9.7968e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([35,  3])\\n\",\n      \"dec_state: tensor([[[ 0.0437,  0.8838, -0.5099,  0.9333,  0.8595,  0.2709, -0.4947,\\n\",\n      \"          -0.1552,  0.1409,  0.1759,  0.0381, -0.9476, -0.7727,  0.9591,\\n\",\n      \"           0.0912, -0.5724, -0.2711, -0.2081, -0.1020,  0.3201,  0.9040,\\n\",\n      \"          -0.6168, -0.2384,  0.9606,  0.0552, -0.9490, -0.2995, -0.2387,\\n\",\n      \"          -0.9680, -0.8060, -0.9364,  0.9444, -0.5460,  0.2709, -0.7637,\\n\",\n      \"          -0.3229,  0.4756,  0.1718, -0.4249,  0.3767, -0.9116,  0.3961,\\n\",\n      \"          -0.1639,  0.9565, -0.7257,  0.2342, -0.6689,  0.7434, -0.2387,\\n\",\n      \"           0.8791,  0.9164,  0.5889,  0.1713, -0.6688, -0.9673,  0.4337,\\n\",\n      \"           0.6931,  0.9069,  0.1904, -0.3460, -0.9666,  0.9479, -0.2954,\\n\",\n      \"           0.8358],\\n\",\n      \"         [ 0.9267,  0.9916, -0.9838,  0.8134,  0.3738,  0.4784, -0.9718,\\n\",\n      \"          -0.6757, -0.0420, -0.9827, -0.9157, -0.9572,  0.7918,  0.9940,\\n\",\n      \"          -0.9156,  0.6227,  0.8849, -0.8912, -0.8784,  0.8479,  0.9073,\\n\",\n      \"          -0.9039, -0.4469,  0.8465,  0.9772, -0.9671, -0.7374, -0.8966,\\n\",\n      \"           0.7598, -0.8174, -0.8970,  0.7962,  0.8284,  0.8269, -0.8430,\\n\",\n      \"          -0.9350,  0.8772, -0.8370,  0.7547,  0.6418, -0.9946,  0.9911,\\n\",\n      \"           0.5518, -0.8215, -0.7248,  0.9898, -0.9105,  0.8065, -0.4984,\\n\",\n      \"           0.7439, -0.6121,  0.9914,  0.3904, -0.8923,  0.9391, -0.3469,\\n\",\n      \"           0.9762,  0.7133, -0.4687, -0.5409, -0.9918,  0.9968,  0.2559,\\n\",\n      \"          -0.8974]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.8919e-01,  3.4259e-01,  3.1522e-01, -4.7506e-01, -5.8994e-01,\\n\",\n      \"           5.1473e-01,  5.6873e-02,  5.4040e-01, -3.3129e-01, -1.3599e-01,\\n\",\n      \"           4.1210e-01,  2.9224e-01,  4.4804e-01, -2.0969e-01,  1.8312e-01,\\n\",\n      \"          -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\\n\",\n      \"           9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\\n\",\n      \"          -7.9656e-02,  8.3929e-01,  4.3339e-01,  3.9920e-01,  4.5494e-01,\\n\",\n      \"          -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\\n\",\n      \"          -1.3184e-01,  2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\\n\",\n      \"          -1.2202e-01, -1.8331e-01,  1.9878e-01,  3.4604e-01,  4.5695e-01,\\n\",\n      \"          -1.2873e-01,  1.2538e-01,  9.8116e-02, -5.7898e-01, -1.9313e-01,\\n\",\n      \"           3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02,  1.4781e-01,\\n\",\n      \"           4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\\n\",\n      \"           4.2793e-01, -1.4875e-02, -1.8840e-01,  1.0795e-02],\\n\",\n      \"         [-5.6161e-02,  5.1079e-01,  2.5469e-01,  4.0636e-01, -3.6313e-01,\\n\",\n      \"           1.5495e-01, -9.8928e-02,  1.4182e-01, -7.7240e-02, -2.6764e-01,\\n\",\n      \"           2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02,  3.2069e-01,\\n\",\n      \"          -1.9700e-01,  6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\\n\",\n      \"          -6.0447e-01, -5.2675e-01,  5.4918e-01,  3.0957e-01, -3.8066e-01,\\n\",\n      \"          -5.1973e-01,  7.1569e-02,  5.6027e-01, -1.1235e-02,  1.3392e-02,\\n\",\n      \"           1.8581e-01,  3.8664e-01, -6.3076e-01,  6.1353e-01,  1.7132e-01,\\n\",\n      \"          -2.1614e-02, -4.0260e-01,  7.6765e-01, -6.0879e-01,  2.6077e-01,\\n\",\n      \"          -7.0112e-02,  3.3747e-01, -6.6588e-01, -2.1261e-01,  7.7419e-02,\\n\",\n      \"          -3.0452e-01, -3.6169e-01,  2.3957e-01, -2.0789e-02,  4.0888e-01,\\n\",\n      \"           1.9174e-01,  6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\\n\",\n      \"           1.3132e-01,  3.5580e-02,  3.3620e-01, -3.2242e-01,  2.6653e-01,\\n\",\n      \"          -6.5847e-01,  3.5521e-01,  6.4256e-01, -4.4652e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0272e-01,  2.5549e-01, -6.7423e-01,  8.7988e-01, -4.8633e-01,\\n\",\n      \"          -4.3515e-01,  1.2682e-01,  7.5875e-01,  1.4521e-01, -3.9192e-01,\\n\",\n      \"           3.5380e-01, -1.7771e-03,  4.2796e-01, -6.6608e-01,  5.5359e-01,\\n\",\n      \"           4.9745e-01,  3.8194e-01,  1.6847e-01,  1.9478e-01, -3.7168e-01,\\n\",\n      \"          -3.1005e-01,  2.3350e-01,  1.3845e-02,  8.2973e-01,  4.7779e-01,\\n\",\n      \"          -4.5664e-01,  8.1294e-01,  2.1875e-01,  3.5033e-02,  2.0797e-01,\\n\",\n      \"           1.3223e-01,  9.8914e-02,  8.1988e-01,  1.6974e-01, -3.2957e-01,\\n\",\n      \"           2.3152e-02, -5.8926e-01,  9.2784e-01,  1.8358e-01,  6.9385e-01,\\n\",\n      \"          -2.9518e-01,  9.3706e-02, -7.4089e-02, -2.3288e-01,  4.5474e-01,\\n\",\n      \"          -3.7577e-01,  1.8794e-01, -7.1556e-01, -5.2221e-03,  6.3141e-01,\\n\",\n      \"          -3.0712e-01, -1.7799e-01,  3.4922e-02, -7.6832e-01, -1.5140e-01,\\n\",\n      \"           1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01,  3.7399e-01,\\n\",\n      \"          -6.4216e-01, -7.3713e-01,  1.1034e-01, -1.4378e-01],\\n\",\n      \"         [-3.0783e-01,  7.0619e-01,  2.8843e-01,  3.4486e-01, -3.1416e-02,\\n\",\n      \"          -5.5595e-01, -2.5893e-01,  3.7422e-01,  3.1599e-01, -1.7643e-02,\\n\",\n      \"           2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02,  1.7674e-01,\\n\",\n      \"          -2.6358e-01,  6.5556e-01, -6.6972e-01,  2.4392e-01, -5.5597e-01,\\n\",\n      \"          -5.4574e-01, -4.5712e-01,  2.6134e-01,  4.2726e-01, -1.7113e-02,\\n\",\n      \"          -5.0937e-01,  6.9873e-02,  2.8159e-01,  4.4168e-02, -5.9215e-02,\\n\",\n      \"           5.3164e-01,  1.4104e-01, -1.7418e-01,  6.2521e-01,  3.4052e-01,\\n\",\n      \"          -1.7095e-01, -3.7818e-01,  6.7129e-01,  3.5225e-03,  2.0033e-01,\\n\",\n      \"           2.6244e-01,  1.0848e-01, -4.6903e-03, -8.2113e-02,  1.2762e-01,\\n\",\n      \"          -1.8695e-01, -2.9354e-01,  2.2579e-01,  1.6966e-02,  3.7529e-01,\\n\",\n      \"          -4.1212e-02,  5.5560e-01, -4.2108e-01, -5.6336e-01,  2.0530e-02,\\n\",\n      \"           3.1856e-01, -1.6777e-01,  2.0985e-01, -3.4052e-01,  6.5363e-01,\\n\",\n      \"          -6.8536e-01, -9.1188e-02,  4.7263e-01, -4.1575e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3091e-01,  4.7975e-02, -6.4154e-01,  7.8851e-01, -2.6898e-01,\\n\",\n      \"          -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\\n\",\n      \"           6.2292e-01, -5.1763e-01,  5.1943e-01, -4.2000e-01,  5.3167e-01,\\n\",\n      \"          -2.8981e-01,  4.0898e-01,  3.6800e-01,  5.1437e-01, -2.4354e-01,\\n\",\n      \"          -4.3747e-01,  5.0437e-01,  2.3844e-01,  8.9447e-01,  3.0840e-01,\\n\",\n      \"          -2.6264e-01,  7.8487e-01,  2.0361e-01, -4.4836e-01,  2.9879e-01,\\n\",\n      \"           3.2300e-02,  3.8987e-01,  8.8484e-01,  2.8142e-01, -5.2596e-01,\\n\",\n      \"          -2.4904e-02, -6.4482e-01,  9.4409e-01,  7.2259e-01,  6.7215e-01,\\n\",\n      \"          -8.2231e-01,  1.9351e-01, -8.7342e-02,  7.0266e-02,  9.5666e-02,\\n\",\n      \"          -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02,  4.4018e-01,\\n\",\n      \"          -3.8727e-01, -4.3340e-01,  5.1425e-01, -8.3512e-01, -3.8365e-02,\\n\",\n      \"           6.5514e-02,  1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\\n\",\n      \"          -4.2758e-01, -8.9924e-01,  1.4681e-01, -5.5334e-01],\\n\",\n      \"         [-3.9027e-01,  6.9603e-01,  4.5691e-01,  1.6166e-01,  7.7914e-02,\\n\",\n      \"          -3.6820e-01,  3.5885e-01,  2.6877e-01, -4.4138e-01, -1.6789e-02,\\n\",\n      \"          -1.9538e-01,  1.2826e-01, -7.0902e-01,  5.8229e-01, -5.2308e-02,\\n\",\n      \"          -4.3843e-01,  5.0442e-01,  1.8963e-01,  2.9756e-01, -2.1835e-01,\\n\",\n      \"          -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\\n\",\n      \"           1.9278e-01,  9.0932e-02, -5.2118e-02,  4.5367e-01,  1.5111e-01,\\n\",\n      \"           5.1936e-01,  3.5247e-02, -3.8751e-02, -1.4526e-01,  5.1607e-01,\\n\",\n      \"           2.3604e-02, -4.8188e-02,  7.6434e-01,  3.3253e-01, -2.4698e-01,\\n\",\n      \"           4.3771e-03,  1.0644e-02,  8.0129e-02, -4.2507e-01, -5.0781e-01,\\n\",\n      \"          -1.4674e-01, -2.0134e-01, -3.1696e-01,  1.2785e-01,  3.3862e-02,\\n\",\n      \"          -1.8421e-02,  5.6756e-01, -1.9796e-01, -2.4455e-01,  6.6150e-02,\\n\",\n      \"           4.8072e-01, -5.5249e-01,  3.9305e-01,  3.4074e-02,  1.3419e-01,\\n\",\n      \"          -5.0839e-01,  3.6208e-01,  5.5418e-01, -3.4569e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.4933e-01, -7.1931e-02,  5.0550e-03,  3.1785e-01, -2.0353e-01,\\n\",\n      \"          -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\\n\",\n      \"           6.0992e-01, -3.2334e-01,  9.8982e-02, -6.3662e-03,  2.9666e-01,\\n\",\n      \"           2.6827e-01,  2.6206e-01,  1.5524e-01, -1.4986e-01, -3.7728e-01,\\n\",\n      \"          -2.4287e-01,  5.9968e-01, -1.5402e-02,  7.1346e-01,  6.4422e-02,\\n\",\n      \"          -3.3859e-01,  7.1390e-01,  2.8849e-02,  1.9976e-01,  4.0740e-01,\\n\",\n      \"          -2.5490e-01,  4.9943e-01,  2.1258e-01,  3.8105e-02, -7.4817e-01,\\n\",\n      \"          -4.9476e-01, -3.4258e-01,  8.5370e-01, -4.7424e-02,  2.3023e-03,\\n\",\n      \"           7.6213e-02, -2.0977e-01, -5.4353e-01,  7.5130e-02,  4.5926e-02,\\n\",\n      \"          -2.5807e-01, -4.3763e-01,  5.4502e-04, -3.5419e-01,  3.9410e-01,\\n\",\n      \"           9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\\n\",\n      \"          -1.8388e-01, -3.3026e-01,  4.2534e-01, -6.2395e-01, -4.9245e-01,\\n\",\n      \"          -4.3765e-01, -8.1805e-01,  3.7798e-01, -2.5220e-01],\\n\",\n      \"         [-1.9273e-01,  9.1169e-01,  4.3890e-01,  1.0174e-01, -1.9656e-02,\\n\",\n      \"          -3.9100e-01, -6.5023e-01,  3.5940e-01,  4.9301e-01,  1.7146e-01,\\n\",\n      \"           7.3839e-02, -7.8011e-01, -6.7214e-01,  3.3858e-01,  1.7792e-01,\\n\",\n      \"           2.6100e-01,  6.7196e-01, -3.3304e-02,  7.4288e-01, -5.9793e-01,\\n\",\n      \"          -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02,  3.9973e-01,\\n\",\n      \"           1.0201e-01,  1.4956e-01,  6.1471e-02,  3.4410e-01,  4.2557e-02,\\n\",\n      \"           6.9241e-01, -6.9050e-01, -9.9599e-02,  2.7794e-01,  2.8065e-01,\\n\",\n      \"           7.2173e-02,  6.3955e-03,  7.8340e-01, -1.9722e-01, -2.8579e-01,\\n\",\n      \"          -6.8728e-02,  3.1987e-01,  8.2484e-02, -1.4364e-01, -4.0027e-01,\\n\",\n      \"          -1.0889e-01, -1.0124e-01, -3.7705e-02,  6.1753e-01,  3.5287e-01,\\n\",\n      \"          -2.5209e-01,  7.4057e-02, -5.3195e-01, -6.3228e-01,  1.0961e-01,\\n\",\n      \"           3.5351e-01, -6.0642e-01,  3.5917e-01, -1.7134e-01,  8.0014e-01,\\n\",\n      \"          -6.3953e-01, -3.3486e-01,  1.1678e-01, -3.5628e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.3718e-01,  7.2870e-01,  3.3308e-01,  2.0858e-01, -2.3181e-01,\\n\",\n      \"          -6.6301e-01, -6.4745e-01,  1.3262e-01,  4.8326e-01,  6.6392e-02,\\n\",\n      \"           6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02,  3.4328e-01,\\n\",\n      \"           5.9002e-01,  6.3913e-01, -9.9936e-02,  6.0167e-01, -6.4984e-01,\\n\",\n      \"          -1.3278e-01,  5.5604e-01, -2.1617e-01,  6.7785e-01,  4.6192e-01,\\n\",\n      \"          -2.8609e-01,  6.6761e-01,  1.2330e-01,  1.9491e-01,  2.3275e-01,\\n\",\n      \"           4.1373e-01, -6.0354e-01,  8.9942e-02,  3.4765e-01, -4.1777e-01,\\n\",\n      \"           8.5970e-03, -2.2424e-01,  8.6788e-01, -2.3015e-01, -1.3828e-01,\\n\",\n      \"           5.8865e-02,  1.4415e-01, -4.8419e-01,  1.6516e-01, -2.7493e-01,\\n\",\n      \"          -2.1732e-01, -2.4245e-01,  1.6697e-01,  4.6947e-01,  5.7996e-01,\\n\",\n      \"          -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\\n\",\n      \"           2.2014e-01, -6.1083e-01,  4.0197e-01, -6.2808e-01,  7.9478e-01,\\n\",\n      \"          -5.4961e-01, -6.7529e-01,  1.5489e-02, -2.9274e-01],\\n\",\n      \"         [-3.6078e-01,  6.9189e-01,  6.1440e-01,  6.4958e-01, -4.3455e-01,\\n\",\n      \"          -3.5583e-01, -7.3222e-01, -8.7517e-01,  6.3373e-01, -2.2112e-03,\\n\",\n      \"           2.9666e-01, -7.9231e-01, -5.1286e-01,  5.6895e-01,  1.2489e-01,\\n\",\n      \"           7.5713e-01,  6.4310e-01,  6.4566e-01,  8.3428e-01, -6.3758e-01,\\n\",\n      \"          -8.9328e-01, -1.6739e-01, -1.3025e-01,  5.3928e-02,  2.3477e-01,\\n\",\n      \"          -9.2187e-01,  7.0911e-01,  4.6542e-02, -2.4542e-01,  1.0799e-02,\\n\",\n      \"           8.8081e-01, -3.7415e-01,  5.2033e-01,  1.5552e-02, -5.1183e-01,\\n\",\n      \"           2.1724e-01, -8.0264e-01,  8.7225e-01,  5.0256e-01, -1.8578e-01,\\n\",\n      \"          -1.4407e-01, -6.4479e-01, -7.9479e-01,  4.0860e-01, -2.7567e-01,\\n\",\n      \"           9.1192e-04, -3.5091e-01,  3.0913e-01,  8.0915e-01,  8.8322e-01,\\n\",\n      \"          -4.6345e-01,  6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\\n\",\n      \"           7.7383e-01, -8.5906e-01,  5.4155e-01,  9.6536e-01,  7.4088e-01,\\n\",\n      \"          -5.4469e-01, -8.6252e-02,  9.5525e-01, -9.2331e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0418e-01,  5.5571e-01,  5.8886e-01,  6.7950e-01, -5.3868e-01,\\n\",\n      \"          -6.0882e-01, -7.3359e-01, -8.8612e-01,  6.2786e-01, -5.4523e-02,\\n\",\n      \"           5.7679e-01, -8.6235e-01, -3.5407e-01,  3.5055e-01,  2.2463e-01,\\n\",\n      \"           8.5547e-01,  6.4569e-01,  6.2466e-01,  7.5043e-01, -6.7614e-01,\\n\",\n      \"          -8.8315e-01,  3.6020e-01, -9.6990e-02,  6.7707e-01,  2.9608e-01,\\n\",\n      \"          -9.3966e-01,  8.0311e-01,  8.0575e-02, -2.5028e-01,  1.8937e-01,\\n\",\n      \"           8.5196e-01, -3.1190e-01,  5.9931e-01,  1.1915e-01, -7.4333e-01,\\n\",\n      \"           2.9976e-01, -8.6610e-01,  9.2273e-01,  4.9476e-01, -6.9907e-02,\\n\",\n      \"          -3.3817e-02, -6.8751e-01, -8.7660e-01,  4.9436e-01, -1.5151e-01,\\n\",\n      \"          -1.1269e-01, -4.6676e-01,  4.0701e-01,  7.6854e-01,  9.3047e-01,\\n\",\n      \"          -4.3576e-01,  5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\\n\",\n      \"           7.7006e-01, -8.6413e-01,  5.6022e-01,  9.5810e-01,  7.2682e-01,\\n\",\n      \"          -4.5427e-01, -2.5659e-01,  9.5853e-01, -9.2379e-01],\\n\",\n      \"         [-7.7460e-01,  9.9026e-01,  6.3722e-01,  2.0712e-01, -3.6535e-01,\\n\",\n      \"          -5.1381e-01, -9.8802e-01, -9.2029e-01,  9.4324e-01,  1.2037e-02,\\n\",\n      \"           5.6740e-01, -9.2826e-01, -7.5338e-01,  9.8160e-01,  8.7260e-02,\\n\",\n      \"           7.5755e-01,  6.3618e-01,  9.7823e-01,  9.8206e-01, -6.6112e-01,\\n\",\n      \"          -9.9476e-01, -2.1120e-01, -9.0182e-02,  2.4394e-01,  2.6934e-01,\\n\",\n      \"          -9.1776e-01,  4.5227e-01,  9.6771e-02,  2.4004e-01,  1.9161e-01,\\n\",\n      \"           9.6763e-01, -6.2995e-01,  4.5209e-01, -7.3755e-01,  1.7895e-01,\\n\",\n      \"           8.2790e-01, -7.4495e-01,  9.3048e-01,  6.8724e-01, -2.2175e-01,\\n\",\n      \"           7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\\n\",\n      \"           1.0962e-02, -3.9790e-01, -5.0389e-01,  8.2996e-01,  9.7687e-01,\\n\",\n      \"          -9.1826e-01,  8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\\n\",\n      \"           8.0700e-01, -9.9238e-01,  7.9356e-01,  9.7202e-01,  8.6634e-01,\\n\",\n      \"          -9.6564e-01,  8.0110e-01,  9.8311e-01, -9.5971e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.8544e-01,  9.8591e-01,  6.1879e-01,  2.5189e-01, -4.5887e-01,\\n\",\n      \"          -5.9831e-01, -9.8791e-01, -9.2568e-01,  9.4309e-01, -3.7440e-02,\\n\",\n      \"           6.7137e-01, -9.4777e-01, -6.6153e-01,  9.7169e-01,  1.8339e-01,\\n\",\n      \"           8.5464e-01,  6.4561e-01,  9.7789e-01,  9.7138e-01, -6.9134e-01,\\n\",\n      \"          -9.9371e-01,  2.8951e-01, -5.6722e-02,  5.8515e-01,  3.1130e-01,\\n\",\n      \"          -9.3571e-01,  5.6603e-01,  1.3169e-01,  2.1265e-01,  2.8412e-01,\\n\",\n      \"           9.6472e-01, -6.0069e-01,  5.2081e-01, -7.0690e-01,  7.3823e-02,\\n\",\n      \"           8.5549e-01, -7.9405e-01,  9.5622e-01,  6.7850e-01, -1.1331e-01,\\n\",\n      \"           8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\\n\",\n      \"          -9.5556e-02, -4.8684e-01, -4.8504e-01,  7.9844e-01,  9.8674e-01,\\n\",\n      \"          -9.1737e-01,  7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\\n\",\n      \"           8.0822e-01, -9.9301e-01,  8.0589e-01,  9.6631e-01,  8.5895e-01,\\n\",\n      \"          -9.5692e-01,  7.8279e-01,  9.8394e-01, -9.6014e-01],\\n\",\n      \"         [-8.9920e-01,  9.9750e-01,  6.7051e-01, -1.4098e-01, -2.9074e-01,\\n\",\n      \"          -4.4487e-01, -9.9862e-01, -9.4112e-01,  9.8095e-01,  1.8637e-02,\\n\",\n      \"           6.6284e-01, -9.7143e-01, -8.7824e-01,  9.9706e-01,  5.6382e-02,\\n\",\n      \"           7.5856e-01,  6.5313e-01,  9.8820e-01,  9.9701e-01, -6.9944e-01,\\n\",\n      \"          -9.9922e-01, -2.5071e-01, -5.8678e-02,  3.5966e-01,  2.8802e-01,\\n\",\n      \"          -9.1436e-01,  3.4018e-01,  1.3987e-01,  4.1294e-01,  2.1804e-01,\\n\",\n      \"           9.8001e-01, -7.9156e-01,  3.8970e-01, -8.6485e-01,  5.5832e-01,\\n\",\n      \"           9.3225e-01, -6.9751e-01,  9.6238e-01,  7.7753e-01, -2.4782e-01,\\n\",\n      \"           9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\\n\",\n      \"           2.0784e-02, -4.3880e-01, -8.0816e-01,  8.4524e-01,  9.9437e-01,\\n\",\n      \"          -9.5786e-01,  9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\\n\",\n      \"           8.3064e-01, -9.9141e-01,  8.9800e-01,  9.7707e-01,  9.1796e-01,\\n\",\n      \"          -9.9589e-01,  9.2743e-01,  9.9109e-01, -9.7968e-01]]],\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([3, 2])\\n\",\n      \"dec_state: tensor([[[ 0.9502,  0.9803, -0.9556,  0.9371,  0.7209,  0.4109, -0.6240,\\n\",\n      \"          -0.6508, -0.0789, -0.9733, -0.9201, -0.9665,  0.7747,  0.9893,\\n\",\n      \"          -0.9453,  0.6420,  0.9026, -0.6839, -0.8657,  0.6164,  0.9007,\\n\",\n      \"          -0.6406, -0.6550,  0.9572,  0.9462, -0.9686, -0.5413, -0.9424,\\n\",\n      \"           0.7813, -0.8729, -0.9535,  0.9504,  0.8639,  0.6936, -0.7287,\\n\",\n      \"          -0.8804,  0.8292, -0.7553,  0.6777,  0.8122, -0.9759,  0.7852,\\n\",\n      \"           0.1651, -0.7995, -0.8487,  0.9599, -0.7238,  0.8786, -0.2760,\\n\",\n      \"           0.8642, -0.7897,  0.9662,  0.3951, -0.8005,  0.9013,  0.2070,\\n\",\n      \"           0.9395,  0.7273, -0.6872, -0.4580, -0.9870,  0.9769, -0.2916,\\n\",\n      \"          -0.8772],\\n\",\n      \"         [ 0.8773,  0.9191, -0.9887,  0.8248,  0.6969,  0.6947, -0.9124,\\n\",\n      \"          -0.2113, -0.4510,  0.6187,  0.3257, -0.9483,  0.1856,  0.8217,\\n\",\n      \"          -0.8419, -0.5020,  0.0926, -0.7470, -0.8294,  0.5920,  0.9677,\\n\",\n      \"          -0.9038,  0.5266,  0.8788,  0.8326, -0.9745, -0.9224, -0.7375,\\n\",\n      \"          -0.6705, -0.6764, -0.9493,  0.8804, -0.8656,  0.8468, -0.8748,\\n\",\n      \"          -0.9830,  0.6597, -0.5575,  0.1694,  0.5271, -0.9530,  0.9913,\\n\",\n      \"           0.6616,  0.1434, -0.6065,  0.9357, -0.9044,  0.8698, -0.5611,\\n\",\n      \"           0.6501,  0.6818,  0.9711,  0.1038, -0.9143, -0.1904, -0.3511,\\n\",\n      \"           0.9946,  0.8698,  0.4346,  0.2902, -0.9932,  0.9916,  0.1558,\\n\",\n      \"           0.4944]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.8919e-01,  3.4259e-01,  3.1522e-01, -4.7506e-01, -5.8994e-01,\\n\",\n      \"           5.1473e-01,  5.6873e-02,  5.4040e-01, -3.3129e-01, -1.3599e-01,\\n\",\n      \"           4.1210e-01,  2.9224e-01,  4.4804e-01, -2.0969e-01,  1.8312e-01,\\n\",\n      \"          -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\\n\",\n      \"           9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\\n\",\n      \"          -7.9656e-02,  8.3929e-01,  4.3339e-01,  3.9920e-01,  4.5494e-01,\\n\",\n      \"          -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\\n\",\n      \"          -1.3184e-01,  2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\\n\",\n      \"          -1.2202e-01, -1.8331e-01,  1.9878e-01,  3.4604e-01,  4.5695e-01,\\n\",\n      \"          -1.2873e-01,  1.2538e-01,  9.8116e-02, -5.7898e-01, -1.9313e-01,\\n\",\n      \"           3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02,  1.4781e-01,\\n\",\n      \"           4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\\n\",\n      \"           4.2793e-01, -1.4875e-02, -1.8840e-01,  1.0795e-02],\\n\",\n      \"         [-5.6161e-02,  5.1079e-01,  2.5469e-01,  4.0636e-01, -3.6313e-01,\\n\",\n      \"           1.5495e-01, -9.8928e-02,  1.4182e-01, -7.7240e-02, -2.6764e-01,\\n\",\n      \"           2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02,  3.2069e-01,\\n\",\n      \"          -1.9700e-01,  6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\\n\",\n      \"          -6.0447e-01, -5.2675e-01,  5.4918e-01,  3.0957e-01, -3.8066e-01,\\n\",\n      \"          -5.1973e-01,  7.1569e-02,  5.6027e-01, -1.1235e-02,  1.3392e-02,\\n\",\n      \"           1.8581e-01,  3.8664e-01, -6.3076e-01,  6.1353e-01,  1.7132e-01,\\n\",\n      \"          -2.1614e-02, -4.0260e-01,  7.6765e-01, -6.0879e-01,  2.6077e-01,\\n\",\n      \"          -7.0112e-02,  3.3747e-01, -6.6588e-01, -2.1261e-01,  7.7419e-02,\\n\",\n      \"          -3.0452e-01, -3.6169e-01,  2.3957e-01, -2.0789e-02,  4.0888e-01,\\n\",\n      \"           1.9174e-01,  6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\\n\",\n      \"           1.3132e-01,  3.5580e-02,  3.3620e-01, -3.2242e-01,  2.6653e-01,\\n\",\n      \"          -6.5847e-01,  3.5521e-01,  6.4256e-01, -4.4652e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0272e-01,  2.5549e-01, -6.7423e-01,  8.7988e-01, -4.8633e-01,\\n\",\n      \"          -4.3515e-01,  1.2682e-01,  7.5875e-01,  1.4521e-01, -3.9192e-01,\\n\",\n      \"           3.5380e-01, -1.7771e-03,  4.2796e-01, -6.6608e-01,  5.5359e-01,\\n\",\n      \"           4.9745e-01,  3.8194e-01,  1.6847e-01,  1.9478e-01, -3.7168e-01,\\n\",\n      \"          -3.1005e-01,  2.3350e-01,  1.3845e-02,  8.2973e-01,  4.7779e-01,\\n\",\n      \"          -4.5664e-01,  8.1294e-01,  2.1875e-01,  3.5033e-02,  2.0797e-01,\\n\",\n      \"           1.3223e-01,  9.8914e-02,  8.1988e-01,  1.6974e-01, -3.2957e-01,\\n\",\n      \"           2.3152e-02, -5.8926e-01,  9.2784e-01,  1.8358e-01,  6.9385e-01,\\n\",\n      \"          -2.9518e-01,  9.3706e-02, -7.4089e-02, -2.3288e-01,  4.5474e-01,\\n\",\n      \"          -3.7577e-01,  1.8794e-01, -7.1556e-01, -5.2221e-03,  6.3141e-01,\\n\",\n      \"          -3.0712e-01, -1.7799e-01,  3.4922e-02, -7.6832e-01, -1.5140e-01,\\n\",\n      \"           1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01,  3.7399e-01,\\n\",\n      \"          -6.4216e-01, -7.3713e-01,  1.1034e-01, -1.4378e-01],\\n\",\n      \"         [-3.0783e-01,  7.0619e-01,  2.8843e-01,  3.4486e-01, -3.1416e-02,\\n\",\n      \"          -5.5595e-01, -2.5893e-01,  3.7422e-01,  3.1599e-01, -1.7643e-02,\\n\",\n      \"           2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02,  1.7674e-01,\\n\",\n      \"          -2.6358e-01,  6.5556e-01, -6.6972e-01,  2.4392e-01, -5.5597e-01,\\n\",\n      \"          -5.4574e-01, -4.5712e-01,  2.6134e-01,  4.2726e-01, -1.7113e-02,\\n\",\n      \"          -5.0937e-01,  6.9873e-02,  2.8159e-01,  4.4168e-02, -5.9215e-02,\\n\",\n      \"           5.3164e-01,  1.4104e-01, -1.7418e-01,  6.2521e-01,  3.4052e-01,\\n\",\n      \"          -1.7095e-01, -3.7818e-01,  6.7129e-01,  3.5225e-03,  2.0033e-01,\\n\",\n      \"           2.6244e-01,  1.0848e-01, -4.6903e-03, -8.2113e-02,  1.2762e-01,\\n\",\n      \"          -1.8695e-01, -2.9354e-01,  2.2579e-01,  1.6966e-02,  3.7529e-01,\\n\",\n      \"          -4.1212e-02,  5.5560e-01, -4.2108e-01, -5.6336e-01,  2.0530e-02,\\n\",\n      \"           3.1856e-01, -1.6777e-01,  2.0985e-01, -3.4052e-01,  6.5363e-01,\\n\",\n      \"          -6.8536e-01, -9.1188e-02,  4.7263e-01, -4.1575e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3091e-01,  4.7975e-02, -6.4154e-01,  7.8851e-01, -2.6898e-01,\\n\",\n      \"          -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\\n\",\n      \"           6.2292e-01, -5.1763e-01,  5.1943e-01, -4.2000e-01,  5.3167e-01,\\n\",\n      \"          -2.8981e-01,  4.0898e-01,  3.6800e-01,  5.1437e-01, -2.4354e-01,\\n\",\n      \"          -4.3747e-01,  5.0437e-01,  2.3844e-01,  8.9447e-01,  3.0840e-01,\\n\",\n      \"          -2.6264e-01,  7.8487e-01,  2.0361e-01, -4.4836e-01,  2.9879e-01,\\n\",\n      \"           3.2300e-02,  3.8987e-01,  8.8484e-01,  2.8142e-01, -5.2596e-01,\\n\",\n      \"          -2.4904e-02, -6.4482e-01,  9.4409e-01,  7.2259e-01,  6.7215e-01,\\n\",\n      \"          -8.2231e-01,  1.9351e-01, -8.7342e-02,  7.0266e-02,  9.5666e-02,\\n\",\n      \"          -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02,  4.4018e-01,\\n\",\n      \"          -3.8727e-01, -4.3340e-01,  5.1425e-01, -8.3512e-01, -3.8365e-02,\\n\",\n      \"           6.5514e-02,  1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\\n\",\n      \"          -4.2758e-01, -8.9924e-01,  1.4681e-01, -5.5334e-01],\\n\",\n      \"         [-3.9027e-01,  6.9603e-01,  4.5691e-01,  1.6166e-01,  7.7914e-02,\\n\",\n      \"          -3.6820e-01,  3.5885e-01,  2.6877e-01, -4.4138e-01, -1.6789e-02,\\n\",\n      \"          -1.9538e-01,  1.2826e-01, -7.0902e-01,  5.8229e-01, -5.2308e-02,\\n\",\n      \"          -4.3843e-01,  5.0442e-01,  1.8963e-01,  2.9756e-01, -2.1835e-01,\\n\",\n      \"          -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\\n\",\n      \"           1.9278e-01,  9.0932e-02, -5.2118e-02,  4.5367e-01,  1.5111e-01,\\n\",\n      \"           5.1936e-01,  3.5247e-02, -3.8751e-02, -1.4526e-01,  5.1607e-01,\\n\",\n      \"           2.3604e-02, -4.8188e-02,  7.6434e-01,  3.3253e-01, -2.4698e-01,\\n\",\n      \"           4.3771e-03,  1.0644e-02,  8.0129e-02, -4.2507e-01, -5.0781e-01,\\n\",\n      \"          -1.4674e-01, -2.0134e-01, -3.1696e-01,  1.2785e-01,  3.3862e-02,\\n\",\n      \"          -1.8421e-02,  5.6756e-01, -1.9796e-01, -2.4455e-01,  6.6150e-02,\\n\",\n      \"           4.8072e-01, -5.5249e-01,  3.9305e-01,  3.4074e-02,  1.3419e-01,\\n\",\n      \"          -5.0839e-01,  3.6208e-01,  5.5418e-01, -3.4569e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.4933e-01, -7.1931e-02,  5.0550e-03,  3.1785e-01, -2.0353e-01,\\n\",\n      \"          -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\\n\",\n      \"           6.0992e-01, -3.2334e-01,  9.8982e-02, -6.3662e-03,  2.9666e-01,\\n\",\n      \"           2.6827e-01,  2.6206e-01,  1.5524e-01, -1.4986e-01, -3.7728e-01,\\n\",\n      \"          -2.4287e-01,  5.9968e-01, -1.5402e-02,  7.1346e-01,  6.4422e-02,\\n\",\n      \"          -3.3859e-01,  7.1390e-01,  2.8849e-02,  1.9976e-01,  4.0740e-01,\\n\",\n      \"          -2.5490e-01,  4.9943e-01,  2.1258e-01,  3.8105e-02, -7.4817e-01,\\n\",\n      \"          -4.9476e-01, -3.4258e-01,  8.5370e-01, -4.7424e-02,  2.3023e-03,\\n\",\n      \"           7.6213e-02, -2.0977e-01, -5.4353e-01,  7.5130e-02,  4.5926e-02,\\n\",\n      \"          -2.5807e-01, -4.3763e-01,  5.4502e-04, -3.5419e-01,  3.9410e-01,\\n\",\n      \"           9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\\n\",\n      \"          -1.8388e-01, -3.3026e-01,  4.2534e-01, -6.2395e-01, -4.9245e-01,\\n\",\n      \"          -4.3765e-01, -8.1805e-01,  3.7798e-01, -2.5220e-01],\\n\",\n      \"         [-1.9273e-01,  9.1169e-01,  4.3890e-01,  1.0174e-01, -1.9656e-02,\\n\",\n      \"          -3.9100e-01, -6.5023e-01,  3.5940e-01,  4.9301e-01,  1.7146e-01,\\n\",\n      \"           7.3839e-02, -7.8011e-01, -6.7214e-01,  3.3858e-01,  1.7792e-01,\\n\",\n      \"           2.6100e-01,  6.7196e-01, -3.3304e-02,  7.4288e-01, -5.9793e-01,\\n\",\n      \"          -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02,  3.9973e-01,\\n\",\n      \"           1.0201e-01,  1.4956e-01,  6.1471e-02,  3.4410e-01,  4.2557e-02,\\n\",\n      \"           6.9241e-01, -6.9050e-01, -9.9599e-02,  2.7794e-01,  2.8065e-01,\\n\",\n      \"           7.2173e-02,  6.3955e-03,  7.8340e-01, -1.9722e-01, -2.8579e-01,\\n\",\n      \"          -6.8728e-02,  3.1987e-01,  8.2484e-02, -1.4364e-01, -4.0027e-01,\\n\",\n      \"          -1.0889e-01, -1.0124e-01, -3.7705e-02,  6.1753e-01,  3.5287e-01,\\n\",\n      \"          -2.5209e-01,  7.4057e-02, -5.3195e-01, -6.3228e-01,  1.0961e-01,\\n\",\n      \"           3.5351e-01, -6.0642e-01,  3.5917e-01, -1.7134e-01,  8.0014e-01,\\n\",\n      \"          -6.3953e-01, -3.3486e-01,  1.1678e-01, -3.5628e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.3718e-01,  7.2870e-01,  3.3308e-01,  2.0858e-01, -2.3181e-01,\\n\",\n      \"          -6.6301e-01, -6.4745e-01,  1.3262e-01,  4.8326e-01,  6.6392e-02,\\n\",\n      \"           6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02,  3.4328e-01,\\n\",\n      \"           5.9002e-01,  6.3913e-01, -9.9936e-02,  6.0167e-01, -6.4984e-01,\\n\",\n      \"          -1.3278e-01,  5.5604e-01, -2.1617e-01,  6.7785e-01,  4.6192e-01,\\n\",\n      \"          -2.8609e-01,  6.6761e-01,  1.2330e-01,  1.9491e-01,  2.3275e-01,\\n\",\n      \"           4.1373e-01, -6.0354e-01,  8.9942e-02,  3.4765e-01, -4.1777e-01,\\n\",\n      \"           8.5970e-03, -2.2424e-01,  8.6788e-01, -2.3015e-01, -1.3828e-01,\\n\",\n      \"           5.8865e-02,  1.4415e-01, -4.8419e-01,  1.6516e-01, -2.7493e-01,\\n\",\n      \"          -2.1732e-01, -2.4245e-01,  1.6697e-01,  4.6947e-01,  5.7996e-01,\\n\",\n      \"          -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\\n\",\n      \"           2.2014e-01, -6.1083e-01,  4.0197e-01, -6.2808e-01,  7.9478e-01,\\n\",\n      \"          -5.4961e-01, -6.7529e-01,  1.5489e-02, -2.9274e-01],\\n\",\n      \"         [-3.6078e-01,  6.9189e-01,  6.1440e-01,  6.4958e-01, -4.3455e-01,\\n\",\n      \"          -3.5583e-01, -7.3222e-01, -8.7517e-01,  6.3373e-01, -2.2112e-03,\\n\",\n      \"           2.9666e-01, -7.9231e-01, -5.1286e-01,  5.6895e-01,  1.2489e-01,\\n\",\n      \"           7.5713e-01,  6.4310e-01,  6.4566e-01,  8.3428e-01, -6.3758e-01,\\n\",\n      \"          -8.9328e-01, -1.6739e-01, -1.3025e-01,  5.3928e-02,  2.3477e-01,\\n\",\n      \"          -9.2187e-01,  7.0911e-01,  4.6542e-02, -2.4542e-01,  1.0799e-02,\\n\",\n      \"           8.8081e-01, -3.7415e-01,  5.2033e-01,  1.5552e-02, -5.1183e-01,\\n\",\n      \"           2.1724e-01, -8.0264e-01,  8.7225e-01,  5.0256e-01, -1.8578e-01,\\n\",\n      \"          -1.4407e-01, -6.4479e-01, -7.9479e-01,  4.0860e-01, -2.7567e-01,\\n\",\n      \"           9.1192e-04, -3.5091e-01,  3.0913e-01,  8.0915e-01,  8.8322e-01,\\n\",\n      \"          -4.6345e-01,  6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\\n\",\n      \"           7.7383e-01, -8.5906e-01,  5.4155e-01,  9.6536e-01,  7.4088e-01,\\n\",\n      \"          -5.4469e-01, -8.6252e-02,  9.5525e-01, -9.2331e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0418e-01,  5.5571e-01,  5.8886e-01,  6.7950e-01, -5.3868e-01,\\n\",\n      \"          -6.0882e-01, -7.3359e-01, -8.8612e-01,  6.2786e-01, -5.4523e-02,\\n\",\n      \"           5.7679e-01, -8.6235e-01, -3.5407e-01,  3.5055e-01,  2.2463e-01,\\n\",\n      \"           8.5547e-01,  6.4569e-01,  6.2466e-01,  7.5043e-01, -6.7614e-01,\\n\",\n      \"          -8.8315e-01,  3.6020e-01, -9.6990e-02,  6.7707e-01,  2.9608e-01,\\n\",\n      \"          -9.3966e-01,  8.0311e-01,  8.0575e-02, -2.5028e-01,  1.8937e-01,\\n\",\n      \"           8.5196e-01, -3.1190e-01,  5.9931e-01,  1.1915e-01, -7.4333e-01,\\n\",\n      \"           2.9976e-01, -8.6610e-01,  9.2273e-01,  4.9476e-01, -6.9907e-02,\\n\",\n      \"          -3.3817e-02, -6.8751e-01, -8.7660e-01,  4.9436e-01, -1.5151e-01,\\n\",\n      \"          -1.1269e-01, -4.6676e-01,  4.0701e-01,  7.6854e-01,  9.3047e-01,\\n\",\n      \"          -4.3576e-01,  5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\\n\",\n      \"           7.7006e-01, -8.6413e-01,  5.6022e-01,  9.5810e-01,  7.2682e-01,\\n\",\n      \"          -4.5427e-01, -2.5659e-01,  9.5853e-01, -9.2379e-01],\\n\",\n      \"         [-7.7460e-01,  9.9026e-01,  6.3722e-01,  2.0712e-01, -3.6535e-01,\\n\",\n      \"          -5.1381e-01, -9.8802e-01, -9.2029e-01,  9.4324e-01,  1.2037e-02,\\n\",\n      \"           5.6740e-01, -9.2826e-01, -7.5338e-01,  9.8160e-01,  8.7260e-02,\\n\",\n      \"           7.5755e-01,  6.3618e-01,  9.7823e-01,  9.8206e-01, -6.6112e-01,\\n\",\n      \"          -9.9476e-01, -2.1120e-01, -9.0182e-02,  2.4394e-01,  2.6934e-01,\\n\",\n      \"          -9.1776e-01,  4.5227e-01,  9.6771e-02,  2.4004e-01,  1.9161e-01,\\n\",\n      \"           9.6763e-01, -6.2995e-01,  4.5209e-01, -7.3755e-01,  1.7895e-01,\\n\",\n      \"           8.2790e-01, -7.4495e-01,  9.3048e-01,  6.8724e-01, -2.2175e-01,\\n\",\n      \"           7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\\n\",\n      \"           1.0962e-02, -3.9790e-01, -5.0389e-01,  8.2996e-01,  9.7687e-01,\\n\",\n      \"          -9.1826e-01,  8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\\n\",\n      \"           8.0700e-01, -9.9238e-01,  7.9356e-01,  9.7202e-01,  8.6634e-01,\\n\",\n      \"          -9.6564e-01,  8.0110e-01,  9.8311e-01, -9.5971e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.8544e-01,  9.8591e-01,  6.1879e-01,  2.5189e-01, -4.5887e-01,\\n\",\n      \"          -5.9831e-01, -9.8791e-01, -9.2568e-01,  9.4309e-01, -3.7440e-02,\\n\",\n      \"           6.7137e-01, -9.4777e-01, -6.6153e-01,  9.7169e-01,  1.8339e-01,\\n\",\n      \"           8.5464e-01,  6.4561e-01,  9.7789e-01,  9.7138e-01, -6.9134e-01,\\n\",\n      \"          -9.9371e-01,  2.8951e-01, -5.6722e-02,  5.8515e-01,  3.1130e-01,\\n\",\n      \"          -9.3571e-01,  5.6603e-01,  1.3169e-01,  2.1265e-01,  2.8412e-01,\\n\",\n      \"           9.6472e-01, -6.0069e-01,  5.2081e-01, -7.0690e-01,  7.3823e-02,\\n\",\n      \"           8.5549e-01, -7.9405e-01,  9.5622e-01,  6.7850e-01, -1.1331e-01,\\n\",\n      \"           8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\\n\",\n      \"          -9.5556e-02, -4.8684e-01, -4.8504e-01,  7.9844e-01,  9.8674e-01,\\n\",\n      \"          -9.1737e-01,  7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\\n\",\n      \"           8.0822e-01, -9.9301e-01,  8.0589e-01,  9.6631e-01,  8.5895e-01,\\n\",\n      \"          -9.5692e-01,  7.8279e-01,  9.8394e-01, -9.6014e-01],\\n\",\n      \"         [-8.9920e-01,  9.9750e-01,  6.7051e-01, -1.4098e-01, -2.9074e-01,\\n\",\n      \"          -4.4487e-01, -9.9862e-01, -9.4112e-01,  9.8095e-01,  1.8637e-02,\\n\",\n      \"           6.6284e-01, -9.7143e-01, -8.7824e-01,  9.9706e-01,  5.6382e-02,\\n\",\n      \"           7.5856e-01,  6.5313e-01,  9.8820e-01,  9.9701e-01, -6.9944e-01,\\n\",\n      \"          -9.9922e-01, -2.5071e-01, -5.8678e-02,  3.5966e-01,  2.8802e-01,\\n\",\n      \"          -9.1436e-01,  3.4018e-01,  1.3987e-01,  4.1294e-01,  2.1804e-01,\\n\",\n      \"           9.8001e-01, -7.9156e-01,  3.8970e-01, -8.6485e-01,  5.5832e-01,\\n\",\n      \"           9.3225e-01, -6.9751e-01,  9.6238e-01,  7.7753e-01, -2.4782e-01,\\n\",\n      \"           9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\\n\",\n      \"           2.0784e-02, -4.3880e-01, -8.0816e-01,  8.4524e-01,  9.9437e-01,\\n\",\n      \"          -9.5786e-01,  9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\\n\",\n      \"           8.3064e-01, -9.9141e-01,  8.9800e-01,  9.7707e-01,  9.1796e-01,\\n\",\n      \"          -9.9589e-01,  9.2743e-01,  9.9109e-01, -9.7968e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([2, 0])\\n\",\n      \"dec_state: tensor([[[ 0.8995,  0.8487, -0.9818,  0.9413,  0.8170,  0.6225, -0.7073,\\n\",\n      \"          -0.1602, -0.4977,  0.6484,  0.2149, -0.9204,  0.1784,  0.7809,\\n\",\n      \"          -0.8653, -0.5335,  0.1459, -0.6125, -0.7749,  0.4917,  0.9715,\\n\",\n      \"          -0.6713,  0.3599,  0.9623,  0.8225, -0.9753, -0.8747, -0.7821,\\n\",\n      \"          -0.6621, -0.6381, -0.9593,  0.9729, -0.8560,  0.7317, -0.7857,\\n\",\n      \"          -0.9795,  0.7271, -0.4167,  0.1108,  0.6148, -0.9151,  0.8749,\\n\",\n      \"           0.3905, -0.0315, -0.6576,  0.9035, -0.7950,  0.8983, -0.3758,\\n\",\n      \"           0.7781,  0.6765,  0.9403,  0.1260, -0.8515, -0.3543,  0.0768,\\n\",\n      \"           0.9834,  0.8436,  0.2376,  0.3288, -0.9894,  0.9747, -0.3122,\\n\",\n      \"           0.5298],\\n\",\n      \"         [ 0.6142,  0.9755, -0.1985,  0.7866,  0.6444,  0.4275, -0.8127,\\n\",\n      \"          -0.4725, -0.3550,  0.3867,  0.4586, -0.8898, -0.4211,  0.8709,\\n\",\n      \"          -0.1648, -0.3474, -0.5829, -0.9487, -0.4425,  0.6818,  0.9701,\\n\",\n      \"          -0.9265,  0.3958,  0.8958,  0.8823, -0.9589, -0.9212, -0.6418,\\n\",\n      \"          -0.8328, -0.8333, -0.6297,  0.9049,  0.2459,  0.8434, -0.8643,\\n\",\n      \"          -0.9952,  0.1259, -0.6513, -0.3223,  0.5902, -0.9408,  0.9836,\\n\",\n      \"           0.8432, -0.1127, -0.7061,  0.9817, -0.9302,  0.3571, -0.4570,\\n\",\n      \"           0.7650,  0.9148,  0.9743,  0.2532, -0.9064,  0.2125, -0.2501,\\n\",\n      \"           0.9681,  0.9013,  0.4841,  0.1279, -0.9949,  0.9674,  0.0852,\\n\",\n      \"           0.4460]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-1.8919e-01,  3.4259e-01,  3.1522e-01, -4.7506e-01, -5.8994e-01,\\n\",\n      \"           5.1473e-01,  5.6873e-02,  5.4040e-01, -3.3129e-01, -1.3599e-01,\\n\",\n      \"           4.1210e-01,  2.9224e-01,  4.4804e-01, -2.0969e-01,  1.8312e-01,\\n\",\n      \"          -1.4617e-01, -1.0839e-01, -1.4217e-01, -3.4626e-01, -2.8172e-01,\\n\",\n      \"           9.8216e-02, -1.5324e-01, -3.6166e-01, -3.9966e-02, -3.2614e-01,\\n\",\n      \"          -7.9656e-02,  8.3929e-01,  4.3339e-01,  3.9920e-01,  4.5494e-01,\\n\",\n      \"          -2.1263e-01, -8.2652e-02, -3.2802e-01, -2.2534e-02, -3.2698e-01,\\n\",\n      \"          -1.3184e-01,  2.0526e-01, -1.3301e-01, -6.0556e-01, -1.7219e-01,\\n\",\n      \"          -1.2202e-01, -1.8331e-01,  1.9878e-01,  3.4604e-01,  4.5695e-01,\\n\",\n      \"          -1.2873e-01,  1.2538e-01,  9.8116e-02, -5.7898e-01, -1.9313e-01,\\n\",\n      \"           3.1467e-01, -6.0506e-01, -3.5705e-02, -1.0685e-02,  1.4781e-01,\\n\",\n      \"           4.2928e-01, -2.5344e-01, -3.1932e-01, -3.7712e-01, -2.8030e-01,\\n\",\n      \"           4.2793e-01, -1.4875e-02, -1.8840e-01,  1.0795e-02],\\n\",\n      \"         [-5.6161e-02,  5.1079e-01,  2.5469e-01,  4.0636e-01, -3.6313e-01,\\n\",\n      \"           1.5495e-01, -9.8928e-02,  1.4182e-01, -7.7240e-02, -2.6764e-01,\\n\",\n      \"           2.3695e-01, -1.7556e-01, -7.2949e-01, -3.2526e-02,  3.2069e-01,\\n\",\n      \"          -1.9700e-01,  6.9298e-01, -6.0817e-01, -6.3867e-01, -7.6016e-01,\\n\",\n      \"          -6.0447e-01, -5.2675e-01,  5.4918e-01,  3.0957e-01, -3.8066e-01,\\n\",\n      \"          -5.1973e-01,  7.1569e-02,  5.6027e-01, -1.1235e-02,  1.3392e-02,\\n\",\n      \"           1.8581e-01,  3.8664e-01, -6.3076e-01,  6.1353e-01,  1.7132e-01,\\n\",\n      \"          -2.1614e-02, -4.0260e-01,  7.6765e-01, -6.0879e-01,  2.6077e-01,\\n\",\n      \"          -7.0112e-02,  3.3747e-01, -6.6588e-01, -2.1261e-01,  7.7419e-02,\\n\",\n      \"          -3.0452e-01, -3.6169e-01,  2.3957e-01, -2.0789e-02,  4.0888e-01,\\n\",\n      \"           1.9174e-01,  6.1540e-01, -4.9171e-01, -2.9082e-01, -1.7577e-01,\\n\",\n      \"           1.3132e-01,  3.5580e-02,  3.3620e-01, -3.2242e-01,  2.6653e-01,\\n\",\n      \"          -6.5847e-01,  3.5521e-01,  6.4256e-01, -4.4652e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.0272e-01,  2.5549e-01, -6.7423e-01,  8.7988e-01, -4.8633e-01,\\n\",\n      \"          -4.3515e-01,  1.2682e-01,  7.5875e-01,  1.4521e-01, -3.9192e-01,\\n\",\n      \"           3.5380e-01, -1.7771e-03,  4.2796e-01, -6.6608e-01,  5.5359e-01,\\n\",\n      \"           4.9745e-01,  3.8194e-01,  1.6847e-01,  1.9478e-01, -3.7168e-01,\\n\",\n      \"          -3.1005e-01,  2.3350e-01,  1.3845e-02,  8.2973e-01,  4.7779e-01,\\n\",\n      \"          -4.5664e-01,  8.1294e-01,  2.1875e-01,  3.5033e-02,  2.0797e-01,\\n\",\n      \"           1.3223e-01,  9.8914e-02,  8.1988e-01,  1.6974e-01, -3.2957e-01,\\n\",\n      \"           2.3152e-02, -5.8926e-01,  9.2784e-01,  1.8358e-01,  6.9385e-01,\\n\",\n      \"          -2.9518e-01,  9.3706e-02, -7.4089e-02, -2.3288e-01,  4.5474e-01,\\n\",\n      \"          -3.7577e-01,  1.8794e-01, -7.1556e-01, -5.2221e-03,  6.3141e-01,\\n\",\n      \"          -3.0712e-01, -1.7799e-01,  3.4922e-02, -7.6832e-01, -1.5140e-01,\\n\",\n      \"           1.5724e-01, -2.3550e-01, -2.2791e-01, -6.2023e-01,  3.7399e-01,\\n\",\n      \"          -6.4216e-01, -7.3713e-01,  1.1034e-01, -1.4378e-01],\\n\",\n      \"         [-3.0783e-01,  7.0619e-01,  2.8843e-01,  3.4486e-01, -3.1416e-02,\\n\",\n      \"          -5.5595e-01, -2.5893e-01,  3.7422e-01,  3.1599e-01, -1.7643e-02,\\n\",\n      \"           2.1798e-01, -5.2315e-01, -4.3296e-01, -5.5530e-02,  1.7674e-01,\\n\",\n      \"          -2.6358e-01,  6.5556e-01, -6.6972e-01,  2.4392e-01, -5.5597e-01,\\n\",\n      \"          -5.4574e-01, -4.5712e-01,  2.6134e-01,  4.2726e-01, -1.7113e-02,\\n\",\n      \"          -5.0937e-01,  6.9873e-02,  2.8159e-01,  4.4168e-02, -5.9215e-02,\\n\",\n      \"           5.3164e-01,  1.4104e-01, -1.7418e-01,  6.2521e-01,  3.4052e-01,\\n\",\n      \"          -1.7095e-01, -3.7818e-01,  6.7129e-01,  3.5225e-03,  2.0033e-01,\\n\",\n      \"           2.6244e-01,  1.0848e-01, -4.6903e-03, -8.2113e-02,  1.2762e-01,\\n\",\n      \"          -1.8695e-01, -2.9354e-01,  2.2579e-01,  1.6966e-02,  3.7529e-01,\\n\",\n      \"          -4.1212e-02,  5.5560e-01, -4.2108e-01, -5.6336e-01,  2.0530e-02,\\n\",\n      \"           3.1856e-01, -1.6777e-01,  2.0985e-01, -3.4052e-01,  6.5363e-01,\\n\",\n      \"          -6.8536e-01, -9.1188e-02,  4.7263e-01, -4.1575e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.3091e-01,  4.7975e-02, -6.4154e-01,  7.8851e-01, -2.6898e-01,\\n\",\n      \"          -6.9209e-01, -5.3878e-02, -2.2980e-01, -9.9202e-02, -7.3913e-01,\\n\",\n      \"           6.2292e-01, -5.1763e-01,  5.1943e-01, -4.2000e-01,  5.3167e-01,\\n\",\n      \"          -2.8981e-01,  4.0898e-01,  3.6800e-01,  5.1437e-01, -2.4354e-01,\\n\",\n      \"          -4.3747e-01,  5.0437e-01,  2.3844e-01,  8.9447e-01,  3.0840e-01,\\n\",\n      \"          -2.6264e-01,  7.8487e-01,  2.0361e-01, -4.4836e-01,  2.9879e-01,\\n\",\n      \"           3.2300e-02,  3.8987e-01,  8.8484e-01,  2.8142e-01, -5.2596e-01,\\n\",\n      \"          -2.4904e-02, -6.4482e-01,  9.4409e-01,  7.2259e-01,  6.7215e-01,\\n\",\n      \"          -8.2231e-01,  1.9351e-01, -8.7342e-02,  7.0266e-02,  9.5666e-02,\\n\",\n      \"          -4.1059e-01, -1.8918e-01, -7.5185e-01, -6.5737e-02,  4.4018e-01,\\n\",\n      \"          -3.8727e-01, -4.3340e-01,  5.1425e-01, -8.3512e-01, -3.8365e-02,\\n\",\n      \"           6.5514e-02,  1.8441e-01, -1.1127e-01, -7.3023e-01, -3.8566e-01,\\n\",\n      \"          -4.2758e-01, -8.9924e-01,  1.4681e-01, -5.5334e-01],\\n\",\n      \"         [-3.9027e-01,  6.9603e-01,  4.5691e-01,  1.6166e-01,  7.7914e-02,\\n\",\n      \"          -3.6820e-01,  3.5885e-01,  2.6877e-01, -4.4138e-01, -1.6789e-02,\\n\",\n      \"          -1.9538e-01,  1.2826e-01, -7.0902e-01,  5.8229e-01, -5.2308e-02,\\n\",\n      \"          -4.3843e-01,  5.0442e-01,  1.8963e-01,  2.9756e-01, -2.1835e-01,\\n\",\n      \"          -3.4547e-01, -8.0413e-02, -1.5954e-01, -2.6831e-01, -2.8556e-02,\\n\",\n      \"           1.9278e-01,  9.0932e-02, -5.2118e-02,  4.5367e-01,  1.5111e-01,\\n\",\n      \"           5.1936e-01,  3.5247e-02, -3.8751e-02, -1.4526e-01,  5.1607e-01,\\n\",\n      \"           2.3604e-02, -4.8188e-02,  7.6434e-01,  3.3253e-01, -2.4698e-01,\\n\",\n      \"           4.3771e-03,  1.0644e-02,  8.0129e-02, -4.2507e-01, -5.0781e-01,\\n\",\n      \"          -1.4674e-01, -2.0134e-01, -3.1696e-01,  1.2785e-01,  3.3862e-02,\\n\",\n      \"          -1.8421e-02,  5.6756e-01, -1.9796e-01, -2.4455e-01,  6.6150e-02,\\n\",\n      \"           4.8072e-01, -5.5249e-01,  3.9305e-01,  3.4074e-02,  1.3419e-01,\\n\",\n      \"          -5.0839e-01,  3.6208e-01,  5.5418e-01, -3.4569e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.4933e-01, -7.1931e-02,  5.0550e-03,  3.1785e-01, -2.0353e-01,\\n\",\n      \"          -6.8080e-01, -4.6165e-02, -2.1875e-01, -1.7740e-01, -2.9399e-01,\\n\",\n      \"           6.0992e-01, -3.2334e-01,  9.8982e-02, -6.3662e-03,  2.9666e-01,\\n\",\n      \"           2.6827e-01,  2.6206e-01,  1.5524e-01, -1.4986e-01, -3.7728e-01,\\n\",\n      \"          -2.4287e-01,  5.9968e-01, -1.5402e-02,  7.1346e-01,  6.4422e-02,\\n\",\n      \"          -3.3859e-01,  7.1390e-01,  2.8849e-02,  1.9976e-01,  4.0740e-01,\\n\",\n      \"          -2.5490e-01,  4.9943e-01,  2.1258e-01,  3.8105e-02, -7.4817e-01,\\n\",\n      \"          -4.9476e-01, -3.4258e-01,  8.5370e-01, -4.7424e-02,  2.3023e-03,\\n\",\n      \"           7.6213e-02, -2.0977e-01, -5.4353e-01,  7.5130e-02,  4.5926e-02,\\n\",\n      \"          -2.5807e-01, -4.3763e-01,  5.4502e-04, -3.5419e-01,  3.9410e-01,\\n\",\n      \"           9.4088e-02, -1.4100e-01, -5.6084e-02, -5.1439e-01, -3.2885e-01,\\n\",\n      \"          -1.8388e-01, -3.3026e-01,  4.2534e-01, -6.2395e-01, -4.9245e-01,\\n\",\n      \"          -4.3765e-01, -8.1805e-01,  3.7798e-01, -2.5220e-01],\\n\",\n      \"         [-1.9273e-01,  9.1169e-01,  4.3890e-01,  1.0174e-01, -1.9656e-02,\\n\",\n      \"          -3.9100e-01, -6.5023e-01,  3.5940e-01,  4.9301e-01,  1.7146e-01,\\n\",\n      \"           7.3839e-02, -7.8011e-01, -6.7214e-01,  3.3858e-01,  1.7792e-01,\\n\",\n      \"           2.6100e-01,  6.7196e-01, -3.3304e-02,  7.4288e-01, -5.9793e-01,\\n\",\n      \"          -1.1030e-01, -8.3867e-02, -2.5065e-01, -9.6581e-02,  3.9973e-01,\\n\",\n      \"           1.0201e-01,  1.4956e-01,  6.1471e-02,  3.4410e-01,  4.2557e-02,\\n\",\n      \"           6.9241e-01, -6.9050e-01, -9.9599e-02,  2.7794e-01,  2.8065e-01,\\n\",\n      \"           7.2173e-02,  6.3955e-03,  7.8340e-01, -1.9722e-01, -2.8579e-01,\\n\",\n      \"          -6.8728e-02,  3.1987e-01,  8.2484e-02, -1.4364e-01, -4.0027e-01,\\n\",\n      \"          -1.0889e-01, -1.0124e-01, -3.7705e-02,  6.1753e-01,  3.5287e-01,\\n\",\n      \"          -2.5209e-01,  7.4057e-02, -5.3195e-01, -6.3228e-01,  1.0961e-01,\\n\",\n      \"           3.5351e-01, -6.0642e-01,  3.5917e-01, -1.7134e-01,  8.0014e-01,\\n\",\n      \"          -6.3953e-01, -3.3486e-01,  1.1678e-01, -3.5628e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.3718e-01,  7.2870e-01,  3.3308e-01,  2.0858e-01, -2.3181e-01,\\n\",\n      \"          -6.6301e-01, -6.4745e-01,  1.3262e-01,  4.8326e-01,  6.6392e-02,\\n\",\n      \"           6.1360e-01, -8.4980e-01, -2.3443e-01, -6.9061e-02,  3.4328e-01,\\n\",\n      \"           5.9002e-01,  6.3913e-01, -9.9936e-02,  6.0167e-01, -6.4984e-01,\\n\",\n      \"          -1.3278e-01,  5.5604e-01, -2.1617e-01,  6.7785e-01,  4.6192e-01,\\n\",\n      \"          -2.8609e-01,  6.6761e-01,  1.2330e-01,  1.9491e-01,  2.3275e-01,\\n\",\n      \"           4.1373e-01, -6.0354e-01,  8.9942e-02,  3.4765e-01, -4.1777e-01,\\n\",\n      \"           8.5970e-03, -2.2424e-01,  8.6788e-01, -2.3015e-01, -1.3828e-01,\\n\",\n      \"           5.8865e-02,  1.4415e-01, -4.8419e-01,  1.6516e-01, -2.7493e-01,\\n\",\n      \"          -2.1732e-01, -2.4245e-01,  1.6697e-01,  4.6947e-01,  5.7996e-01,\\n\",\n      \"          -1.6524e-01, -3.6363e-01, -3.9166e-01, -7.4398e-01, -1.1223e-01,\\n\",\n      \"           2.2014e-01, -6.1083e-01,  4.0197e-01, -6.2808e-01,  7.9478e-01,\\n\",\n      \"          -5.4961e-01, -6.7529e-01,  1.5489e-02, -2.9274e-01],\\n\",\n      \"         [-3.6078e-01,  6.9189e-01,  6.1440e-01,  6.4958e-01, -4.3455e-01,\\n\",\n      \"          -3.5583e-01, -7.3222e-01, -8.7517e-01,  6.3373e-01, -2.2112e-03,\\n\",\n      \"           2.9666e-01, -7.9231e-01, -5.1286e-01,  5.6895e-01,  1.2489e-01,\\n\",\n      \"           7.5713e-01,  6.4310e-01,  6.4566e-01,  8.3428e-01, -6.3758e-01,\\n\",\n      \"          -8.9328e-01, -1.6739e-01, -1.3025e-01,  5.3928e-02,  2.3477e-01,\\n\",\n      \"          -9.2187e-01,  7.0911e-01,  4.6542e-02, -2.4542e-01,  1.0799e-02,\\n\",\n      \"           8.8081e-01, -3.7415e-01,  5.2033e-01,  1.5552e-02, -5.1183e-01,\\n\",\n      \"           2.1724e-01, -8.0264e-01,  8.7225e-01,  5.0256e-01, -1.8578e-01,\\n\",\n      \"          -1.4407e-01, -6.4479e-01, -7.9479e-01,  4.0860e-01, -2.7567e-01,\\n\",\n      \"           9.1192e-04, -3.5091e-01,  3.0913e-01,  8.0915e-01,  8.8322e-01,\\n\",\n      \"          -4.6345e-01,  6.3591e-01, -6.5697e-01, -6.9368e-01, -2.0269e-01,\\n\",\n      \"           7.7383e-01, -8.5906e-01,  5.4155e-01,  9.6536e-01,  7.4088e-01,\\n\",\n      \"          -5.4469e-01, -8.6252e-02,  9.5525e-01, -9.2331e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0418e-01,  5.5571e-01,  5.8886e-01,  6.7950e-01, -5.3868e-01,\\n\",\n      \"          -6.0882e-01, -7.3359e-01, -8.8612e-01,  6.2786e-01, -5.4523e-02,\\n\",\n      \"           5.7679e-01, -8.6235e-01, -3.5407e-01,  3.5055e-01,  2.2463e-01,\\n\",\n      \"           8.5547e-01,  6.4569e-01,  6.2466e-01,  7.5043e-01, -6.7614e-01,\\n\",\n      \"          -8.8315e-01,  3.6020e-01, -9.6990e-02,  6.7707e-01,  2.9608e-01,\\n\",\n      \"          -9.3966e-01,  8.0311e-01,  8.0575e-02, -2.5028e-01,  1.8937e-01,\\n\",\n      \"           8.5196e-01, -3.1190e-01,  5.9931e-01,  1.1915e-01, -7.4333e-01,\\n\",\n      \"           2.9976e-01, -8.6610e-01,  9.2273e-01,  4.9476e-01, -6.9907e-02,\\n\",\n      \"          -3.3817e-02, -6.8751e-01, -8.7660e-01,  4.9436e-01, -1.5151e-01,\\n\",\n      \"          -1.1269e-01, -4.6676e-01,  4.0701e-01,  7.6854e-01,  9.3047e-01,\\n\",\n      \"          -4.3576e-01,  5.4075e-01, -5.6223e-01, -7.9304e-01, -3.7365e-01,\\n\",\n      \"           7.7006e-01, -8.6413e-01,  5.6022e-01,  9.5810e-01,  7.2682e-01,\\n\",\n      \"          -4.5427e-01, -2.5659e-01,  9.5853e-01, -9.2379e-01],\\n\",\n      \"         [-7.7460e-01,  9.9026e-01,  6.3722e-01,  2.0712e-01, -3.6535e-01,\\n\",\n      \"          -5.1381e-01, -9.8802e-01, -9.2029e-01,  9.4324e-01,  1.2037e-02,\\n\",\n      \"           5.6740e-01, -9.2826e-01, -7.5338e-01,  9.8160e-01,  8.7260e-02,\\n\",\n      \"           7.5755e-01,  6.3618e-01,  9.7823e-01,  9.8206e-01, -6.6112e-01,\\n\",\n      \"          -9.9476e-01, -2.1120e-01, -9.0182e-02,  2.4394e-01,  2.6934e-01,\\n\",\n      \"          -9.1776e-01,  4.5227e-01,  9.6771e-02,  2.4004e-01,  1.9161e-01,\\n\",\n      \"           9.6763e-01, -6.2995e-01,  4.5209e-01, -7.3755e-01,  1.7895e-01,\\n\",\n      \"           8.2790e-01, -7.4495e-01,  9.3048e-01,  6.8724e-01, -2.2175e-01,\\n\",\n      \"           7.9517e-01, -9.5673e-01, -8.3908e-01, -5.2680e-01, -9.5845e-01,\\n\",\n      \"           1.0962e-02, -3.9790e-01, -5.0389e-01,  8.2996e-01,  9.7687e-01,\\n\",\n      \"          -9.1826e-01,  8.3338e-01, -9.7856e-01, -8.6441e-01, -2.7988e-01,\\n\",\n      \"           8.0700e-01, -9.9238e-01,  7.9356e-01,  9.7202e-01,  8.6634e-01,\\n\",\n      \"          -9.6564e-01,  8.0110e-01,  9.8311e-01, -9.5971e-01]],\\n\",\n      \"\\n\",\n      \"        [[-7.8544e-01,  9.8591e-01,  6.1879e-01,  2.5189e-01, -4.5887e-01,\\n\",\n      \"          -5.9831e-01, -9.8791e-01, -9.2568e-01,  9.4309e-01, -3.7440e-02,\\n\",\n      \"           6.7137e-01, -9.4777e-01, -6.6153e-01,  9.7169e-01,  1.8339e-01,\\n\",\n      \"           8.5464e-01,  6.4561e-01,  9.7789e-01,  9.7138e-01, -6.9134e-01,\\n\",\n      \"          -9.9371e-01,  2.8951e-01, -5.6722e-02,  5.8515e-01,  3.1130e-01,\\n\",\n      \"          -9.3571e-01,  5.6603e-01,  1.3169e-01,  2.1265e-01,  2.8412e-01,\\n\",\n      \"           9.6472e-01, -6.0069e-01,  5.2081e-01, -7.0690e-01,  7.3823e-02,\\n\",\n      \"           8.5549e-01, -7.9405e-01,  9.5622e-01,  6.7850e-01, -1.1331e-01,\\n\",\n      \"           8.2412e-01, -9.5768e-01, -8.9138e-01, -4.8455e-01, -9.5326e-01,\\n\",\n      \"          -9.5556e-02, -4.8684e-01, -4.8504e-01,  7.9844e-01,  9.8674e-01,\\n\",\n      \"          -9.1737e-01,  7.9073e-01, -9.7261e-01, -8.9051e-01, -4.3107e-01,\\n\",\n      \"           8.0822e-01, -9.9301e-01,  8.0589e-01,  9.6631e-01,  8.5895e-01,\\n\",\n      \"          -9.5692e-01,  7.8279e-01,  9.8394e-01, -9.6014e-01],\\n\",\n      \"         [-8.9920e-01,  9.9750e-01,  6.7051e-01, -1.4098e-01, -2.9074e-01,\\n\",\n      \"          -4.4487e-01, -9.9862e-01, -9.4112e-01,  9.8095e-01,  1.8637e-02,\\n\",\n      \"           6.6284e-01, -9.7143e-01, -8.7824e-01,  9.9706e-01,  5.6382e-02,\\n\",\n      \"           7.5856e-01,  6.5313e-01,  9.8820e-01,  9.9701e-01, -6.9944e-01,\\n\",\n      \"          -9.9922e-01, -2.5071e-01, -5.8678e-02,  3.5966e-01,  2.8802e-01,\\n\",\n      \"          -9.1436e-01,  3.4018e-01,  1.3987e-01,  4.1294e-01,  2.1804e-01,\\n\",\n      \"           9.8001e-01, -7.9156e-01,  3.8970e-01, -8.6485e-01,  5.5832e-01,\\n\",\n      \"           9.3225e-01, -6.9751e-01,  9.6238e-01,  7.7753e-01, -2.4782e-01,\\n\",\n      \"           9.4437e-01, -9.7226e-01, -7.7137e-01, -8.3638e-01, -9.9389e-01,\\n\",\n      \"           2.0784e-02, -4.3880e-01, -8.0816e-01,  8.4524e-01,  9.9437e-01,\\n\",\n      \"          -9.5786e-01,  9.1246e-01, -9.9631e-01, -8.9484e-01, -3.4813e-01,\\n\",\n      \"           8.3064e-01, -9.9141e-01,  8.9800e-01,  9.7707e-01,  9.1796e-01,\\n\",\n      \"          -9.9589e-01,  9.2743e-01,  9.9109e-01, -9.7968e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 0.])\\n\",\n      \"------------------------------\\n\",\n      \"tensor([[ 6,  7, 22, 32, 17,  3,  2],\\n\",\n      \"        [ 8, 10, 28,  9, 16,  3,  2]])\\n\",\n      \"tensor([[ 7,  5, 23, 22,  3,  2,  0],\\n\",\n      \"        [ 6,  4, 13,  9, 15,  3,  2]])\\n\",\n      \"序列第 [0]个单词\\n\",\n      \"解码器输入dec_input: tensor([1, 1])\\n\",\n      \"dec_state: tensor([[[-0.3774,  0.8298,  0.5828,  0.5908, -0.8710, -0.2361, -0.9175,\\n\",\n      \"          -0.9190,  0.7905, -0.5800,  0.9189, -0.8954, -0.7169,  0.3808,\\n\",\n      \"           0.2816,  0.8387, -0.9332,  0.6512,  0.8832,  0.9834, -0.9143,\\n\",\n      \"          -0.4106,  0.7529,  0.3553,  0.7945, -0.9574, -0.8182, -0.3939,\\n\",\n      \"          -0.3954,  0.2221,  0.1966, -0.5541,  0.9405,  0.2179,  0.1027,\\n\",\n      \"           0.8220,  0.9010,  0.8358, -0.1127, -0.8718, -0.5992, -0.9633,\\n\",\n      \"          -0.1513,  0.5325, -0.9306,  0.8735, -0.7471, -0.9183,  0.8745,\\n\",\n      \"           0.9078, -0.8457,  0.9495, -0.8475,  0.5729, -0.6502,  0.8238,\\n\",\n      \"          -0.7890,  0.6428,  0.9725,  0.9527, -0.6826,  0.7575,  0.9699,\\n\",\n      \"          -0.9511],\\n\",\n      \"         [-0.5162,  0.7963,  0.5833,  0.6184, -0.8239, -0.2652, -0.9220,\\n\",\n      \"          -0.9531,  0.8101, -0.7137,  0.9250, -0.8846, -0.5295,  0.5542,\\n\",\n      \"           0.3271,  0.8636, -0.8552,  0.7838,  0.9709,  0.9755, -0.9442,\\n\",\n      \"           0.2424,  0.4293,  0.5719,  0.7542, -0.9200, -0.8459, -0.3651,\\n\",\n      \"          -0.3915,  0.3918,  0.1574, -0.4432,  0.9716,  0.2659, -0.0901,\\n\",\n      \"           0.8275,  0.9018,  0.7706,  0.0455, -0.7900, -0.6035, -0.9510,\\n\",\n      \"          -0.1729,  0.3693, -0.9309,  0.8266, -0.6342, -0.8883,  0.8489,\\n\",\n      \"           0.9198, -0.7913,  0.9118, -0.8554,  0.5371, -0.8256,  0.8453,\\n\",\n      \"          -0.8342,  0.6933,  0.9627,  0.9020, -0.6181,  0.7121,  0.9641,\\n\",\n      \"          -0.9233]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.8794e-02,  5.3342e-01,  2.7767e-01,  3.9600e-01, -3.6861e-01,\\n\",\n      \"           1.5557e-01, -1.0969e-01,  1.7756e-01, -1.0504e-01, -2.7521e-01,\\n\",\n      \"           2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03,  3.0370e-01,\\n\",\n      \"          -1.8936e-01,  6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\\n\",\n      \"          -6.2699e-01, -5.6061e-01,  5.4069e-01,  2.7735e-01, -3.8531e-01,\\n\",\n      \"          -5.4473e-01,  6.6829e-02,  5.7072e-01,  3.5158e-02,  1.8771e-02,\\n\",\n      \"           1.7612e-01,  3.9111e-01, -6.5084e-01,  6.1659e-01,  1.7997e-01,\\n\",\n      \"          -3.9050e-02, -3.8968e-01,  7.8072e-01, -6.3102e-01,  2.3746e-01,\\n\",\n      \"          -5.4918e-02,  3.5109e-01, -6.9286e-01, -2.8419e-01,  7.8028e-02,\\n\",\n      \"          -3.1589e-01, -3.9509e-01,  2.7848e-01, -1.8915e-02,  4.0646e-01,\\n\",\n      \"           1.8700e-01,  6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\\n\",\n      \"           1.7482e-01,  5.1712e-02,  3.2650e-01, -3.3498e-01,  2.5596e-01,\\n\",\n      \"          -6.6363e-01,  3.9568e-01,  6.6326e-01, -4.5198e-01],\\n\",\n      \"         [-4.4663e-01,  4.9992e-02, -1.1279e-01,  5.5714e-01,  2.9287e-01,\\n\",\n      \"           5.3430e-02, -3.2958e-02, -6.9619e-01,  3.7287e-01, -1.1730e-01,\\n\",\n      \"           4.7527e-01, -1.4236e-01,  1.0980e-01,  3.4374e-01,  4.4925e-02,\\n\",\n      \"           5.4476e-01,  1.3434e-01,  2.4798e-01,  1.4511e-01,  2.8671e-01,\\n\",\n      \"          -7.2405e-01, -4.0333e-02,  1.2978e-01, -1.1822e-01, -6.4893e-01,\\n\",\n      \"           1.3198e-01, -5.2837e-01, -3.7102e-01,  6.7838e-02,  8.5206e-02,\\n\",\n      \"           1.3851e-01, -3.6910e-02,  3.1990e-02,  9.5910e-02, -2.7345e-01,\\n\",\n      \"          -9.7926e-02, -6.3590e-01,  3.5229e-01,  6.0026e-01,  8.7420e-02,\\n\",\n      \"          -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\\n\",\n      \"           3.1581e-01, -3.0370e-01,  6.5536e-02,  1.5106e-01,  1.2373e-01,\\n\",\n      \"           1.4191e-01,  5.0884e-01,  1.8682e-01, -4.1712e-01, -1.7723e-01,\\n\",\n      \"           2.8597e-01, -5.5452e-01,  2.8961e-01,  2.7804e-01, -1.9407e-01,\\n\",\n      \"          -4.4526e-01,  3.7736e-01,  3.5711e-01, -3.5176e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1324e-01,  5.2025e-01,  5.0695e-01,  3.2545e-01, -5.7762e-01,\\n\",\n      \"          -7.3069e-01, -1.0028e-01,  4.7019e-01, -3.5687e-01, -7.2285e-01,\\n\",\n      \"           2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01,  4.3462e-02,\\n\",\n      \"           3.6790e-02,  7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\\n\",\n      \"          -4.6593e-01, -5.6537e-01,  5.0546e-01,  8.1896e-01, -2.9426e-01,\\n\",\n      \"          -7.9558e-01,  8.4542e-01,  5.4046e-01,  5.8609e-01,  5.0922e-01,\\n\",\n      \"          -1.6546e-01,  6.0234e-01, -5.6518e-01,  8.5887e-01, -4.5587e-01,\\n\",\n      \"          -3.5113e-02, -3.1436e-01,  7.4797e-01, -6.6369e-01, -2.0690e-01,\\n\",\n      \"           7.0571e-01, -4.6216e-01, -7.8772e-01,  3.5452e-01,  2.6347e-01,\\n\",\n      \"          -4.1197e-01, -4.6747e-01,  4.9282e-01,  6.8443e-02,  2.7213e-02,\\n\",\n      \"           3.8875e-01,  6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\\n\",\n      \"           8.9968e-01,  4.0096e-01,  9.4859e-02, -7.1174e-01,  3.0494e-02,\\n\",\n      \"          -7.4953e-01,  8.1606e-02,  6.2147e-01, -2.7554e-01],\\n\",\n      \"         [-4.6765e-01,  3.5594e-01, -4.6087e-01,  6.5994e-01,  1.5107e-01,\\n\",\n      \"          -4.9836e-02,  3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\\n\",\n      \"           8.9305e-02,  4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\\n\",\n      \"           1.2247e-01, -7.1975e-02, -4.5834e-02,  8.9275e-02,  1.3229e-01,\\n\",\n      \"          -3.2071e-01,  8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\\n\",\n      \"           5.4388e-02,  2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\\n\",\n      \"           2.7214e-01, -1.7248e-01,  2.0683e-01, -7.7345e-03, -2.9245e-01,\\n\",\n      \"          -1.5008e-01, -4.2409e-01, -2.4032e-01,  2.3066e-01,  1.9569e-01,\\n\",\n      \"          -3.6902e-01,  2.6708e-01, -1.5023e-01, -1.7348e-01,  3.3117e-01,\\n\",\n      \"           1.2738e-01, -2.8993e-01, -1.2677e-01,  1.4847e-01,  3.7645e-01,\\n\",\n      \"          -1.9285e-01,  4.2530e-01,  2.1337e-01, -5.1065e-01, -3.3662e-01,\\n\",\n      \"           1.3590e-02,  2.5094e-02,  2.0697e-01,  1.3003e-01, -4.5041e-01,\\n\",\n      \"           1.9167e-01,  5.0020e-01,  1.3076e-01, -4.9900e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8282e-02,  4.8322e-01, -4.5622e-02,  2.9975e-01, -1.3149e-02,\\n\",\n      \"          -7.4066e-01,  1.9927e-01,  7.5937e-01, -1.8768e-01, -1.1899e-01,\\n\",\n      \"          -2.0289e-01,  3.6612e-01, -5.8996e-01, -5.1666e-01,  5.3625e-03,\\n\",\n      \"           3.3709e-01,  7.8384e-01, -7.4147e-01,  1.6300e-01, -7.4821e-01,\\n\",\n      \"          -3.9660e-01, -4.5093e-01,  1.7294e-01,  9.2179e-01,  3.1065e-01,\\n\",\n      \"          -3.7260e-01,  6.1350e-01,  2.4377e-01,  5.7021e-01,  5.0771e-01,\\n\",\n      \"          -5.7705e-01, -1.0129e-02, -3.0245e-02,  7.3764e-01, -6.2183e-01,\\n\",\n      \"           8.5102e-02,  4.4259e-02,  5.7435e-01, -1.3313e-01,  9.5835e-02,\\n\",\n      \"           7.3970e-01, -8.5254e-02, -2.9058e-01,  6.6853e-01,  1.4284e-01,\\n\",\n      \"          -4.4259e-01, -3.5658e-01,  3.1570e-02,  4.1088e-01,  5.8174e-01,\\n\",\n      \"           1.7225e-01,  5.0016e-01, -2.3336e-01,  1.1785e-01, -8.1593e-03,\\n\",\n      \"           9.0696e-01,  5.1017e-02,  2.1235e-01, -3.1208e-01,  3.0785e-01,\\n\",\n      \"          -7.9104e-01, -4.6839e-01,  5.5536e-01, -1.8962e-01],\\n\",\n      \"         [-2.9474e-01,  4.1033e-01, -1.0640e-01,  2.2170e-01,  3.7699e-01,\\n\",\n      \"           1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\\n\",\n      \"          -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\\n\",\n      \"           5.2941e-01, -6.7271e-02,  4.9393e-01, -3.1223e-01, -1.9308e-01,\\n\",\n      \"           4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01,  2.1149e-02,\\n\",\n      \"           3.4688e-02, -2.6599e-02,  5.6323e-02, -2.3462e-01, -2.7575e-02,\\n\",\n      \"           3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\\n\",\n      \"           3.9748e-02, -5.5766e-02, -1.8779e-01,  3.7293e-01, -4.3215e-01,\\n\",\n      \"          -3.2607e-01,  4.7629e-01,  1.2417e-01,  8.7553e-02,  7.4922e-02,\\n\",\n      \"           1.6414e-02, -3.7098e-01,  1.1215e-01,  5.0214e-01,  8.5971e-02,\\n\",\n      \"          -1.8960e-01,  1.6976e-01,  5.8928e-02, -3.7863e-01, -1.9777e-02,\\n\",\n      \"           6.0712e-02,  3.4529e-01,  1.6618e-01, -2.3556e-01,  9.5518e-02,\\n\",\n      \"           3.2406e-01,  6.3608e-02,  1.7180e-01, -2.6295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.4039e-02,  8.8844e-01,  3.3888e-01, -9.1417e-02,  7.9695e-02,\\n\",\n      \"          -2.3450e-01, -4.4034e-01,  6.3989e-01,  3.7835e-02,  3.9992e-01,\\n\",\n      \"          -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\\n\",\n      \"           3.3464e-01,  6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\\n\",\n      \"          -2.7994e-01, -6.0982e-01,  1.4235e-01,  2.2770e-01,  1.7566e-01,\\n\",\n      \"          -5.3978e-01,  4.8615e-01,  3.1977e-01,  4.6543e-01,  3.2679e-01,\\n\",\n      \"           3.8429e-01, -4.0738e-01, -4.7408e-01,  1.6175e-01,  2.3650e-01,\\n\",\n      \"          -6.0986e-01, -1.1444e-01,  8.2822e-01, -3.4007e-01, -3.5199e-01,\\n\",\n      \"           8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01,  8.2066e-02,\\n\",\n      \"          -4.1364e-01, -5.2925e-01,  5.9958e-01,  3.0593e-01,  5.9111e-01,\\n\",\n      \"           3.8023e-01,  2.2484e-01, -5.9437e-01,  4.3079e-01, -2.0735e-01,\\n\",\n      \"           8.2035e-01, -4.0924e-02,  5.6995e-01,  1.0385e-01,  4.4414e-01,\\n\",\n      \"          -8.6832e-01, -2.6419e-01,  8.3170e-01, -7.2663e-01],\\n\",\n      \"         [-5.8141e-01,  1.1048e-01, -6.2374e-01,  5.0587e-01,  2.5336e-01,\\n\",\n      \"          -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\\n\",\n      \"           4.2063e-01, -2.4931e-01,  3.9692e-01, -1.5809e-01,  3.2859e-01,\\n\",\n      \"          -2.9822e-01, -1.9858e-02,  5.5853e-01,  7.8639e-02,  4.8963e-02,\\n\",\n      \"          -2.2860e-01,  4.3759e-01,  2.3944e-01,  4.2009e-01,  1.3628e-01,\\n\",\n      \"           1.3792e-01,  1.2585e-01,  5.8101e-02, -5.4331e-01, -7.2530e-03,\\n\",\n      \"           8.0666e-02, -2.2224e-02,  6.3223e-01,  9.6790e-02, -4.9236e-01,\\n\",\n      \"          -8.0862e-02, -2.6275e-01,  4.9909e-01,  7.1494e-01,  3.2871e-01,\\n\",\n      \"          -7.4854e-01,  5.1980e-01,  1.2756e-01,  1.5925e-01, -1.1948e-01,\\n\",\n      \"          -9.3237e-02, -3.0931e-01, -4.2692e-01,  2.9031e-01,  2.0414e-02,\\n\",\n      \"          -3.2254e-01, -3.8900e-01,  5.7919e-01, -7.3999e-01,  1.2747e-01,\\n\",\n      \"          -1.9365e-02,  4.8622e-01,  6.7972e-02, -6.2490e-01, -5.0826e-01,\\n\",\n      \"           2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.6193e-01,  5.5425e-01,  5.4040e-01, -3.0972e-01, -1.3313e-01,\\n\",\n      \"          -6.7800e-01, -4.0654e-01,  4.6998e-01,  1.0506e-02, -4.1220e-01,\\n\",\n      \"          -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\\n\",\n      \"           7.3778e-02,  3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\\n\",\n      \"          -4.0731e-01, -4.5251e-01,  2.7892e-01,  6.7418e-02, -1.8913e-01,\\n\",\n      \"          -7.8529e-01,  7.4795e-02,  3.1780e-01, -5.6582e-02, -2.6386e-02,\\n\",\n      \"           5.4243e-01, -1.1841e-01, -3.2193e-01,  4.1168e-01,  6.0450e-01,\\n\",\n      \"          -1.9057e-01, -1.6040e-01,  5.1988e-01,  2.5761e-01, -2.8185e-01,\\n\",\n      \"           1.6285e-01, -9.2601e-02, -2.9516e-01,  1.5801e-01, -3.4487e-01,\\n\",\n      \"          -2.4956e-01, -4.2876e-01,  4.0097e-01,  7.6141e-02,  6.9152e-02,\\n\",\n      \"          -1.9961e-01,  1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\\n\",\n      \"           7.0492e-01,  7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\\n\",\n      \"          -7.6009e-01,  2.2291e-01,  6.5275e-01, -8.7851e-01],\\n\",\n      \"         [-5.2118e-01,  5.0256e-01, -5.8167e-01,  1.1051e-01,  1.7868e-01,\\n\",\n      \"          -4.7288e-01, -5.4152e-01, -7.2585e-01,  4.8291e-01, -3.2155e-01,\\n\",\n      \"           5.4432e-01, -3.7827e-01,  1.8096e-01,  5.5709e-01,  3.6829e-01,\\n\",\n      \"          -4.2694e-01, -1.1016e-01,  3.8142e-01,  7.3456e-01,  1.3955e-01,\\n\",\n      \"          -6.2690e-01,  4.6662e-01,  9.9586e-03,  4.4347e-01, -1.2285e-01,\\n\",\n      \"           2.4158e-01, -1.9818e-02,  3.2224e-02, -4.5263e-03,  9.7170e-02,\\n\",\n      \"          -2.6790e-02,  3.4196e-01,  5.5448e-01, -2.6957e-01, -4.7481e-01,\\n\",\n      \"           2.5820e-01, -1.6188e-01,  1.8216e-01,  4.3528e-01,  4.1423e-02,\\n\",\n      \"           3.8483e-01,  2.9323e-01, -3.9919e-02,  2.4917e-02, -6.6221e-01,\\n\",\n      \"           4.4238e-02, -1.3296e-01, -5.2108e-01,  4.3413e-02,  2.4199e-01,\\n\",\n      \"           1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\\n\",\n      \"          -2.2352e-01, -4.5641e-01,  6.2054e-04, -6.1068e-01, -2.4117e-02,\\n\",\n      \"          -6.6375e-01, -2.8839e-01,  9.2161e-03, -1.7272e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.2020e-01,  8.7811e-01,  6.2669e-01, -1.2818e-01, -1.8441e-01,\\n\",\n      \"          -6.0717e-01, -7.9754e-01,  5.0410e-01,  4.0985e-01, -6.4446e-02,\\n\",\n      \"           1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01,  1.8644e-01,\\n\",\n      \"           4.3668e-01,  6.4194e-01, -4.0182e-01,  5.6554e-01, -5.9408e-01,\\n\",\n      \"          -2.6671e-01, -4.0951e-01, -1.2089e-01,  1.1193e-01,  3.2120e-01,\\n\",\n      \"          -6.5532e-01,  1.4062e-01,  2.8029e-01,  8.2498e-02, -1.1054e-01,\\n\",\n      \"           7.0519e-01, -6.9252e-01, -2.9735e-01,  3.8513e-01,  3.2410e-01,\\n\",\n      \"          -7.1698e-03, -4.7982e-02,  6.5625e-01, -2.5359e-01, -3.1089e-01,\\n\",\n      \"           1.1211e-01,  2.1855e-01, -1.9636e-01,  1.6137e-01, -5.1002e-01,\\n\",\n      \"          -3.1695e-01, -3.5947e-01,  3.2188e-01,  5.8348e-01,  3.8076e-01,\\n\",\n      \"          -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01,  6.6140e-02,\\n\",\n      \"           6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01,  7.7110e-01,\\n\",\n      \"          -7.8675e-01, -3.0830e-01,  2.2900e-01, -7.8719e-01],\\n\",\n      \"         [-4.0451e-01,  8.7136e-01,  2.0729e-01, -1.9370e-02, -4.0648e-02,\\n\",\n      \"          -4.8286e-01, -8.0573e-01, -2.4901e-01,  5.7310e-01, -5.8490e-02,\\n\",\n      \"           6.0313e-01, -8.4063e-01, -2.5698e-01,  3.3939e-01,  3.4959e-01,\\n\",\n      \"           3.7069e-01,  4.3289e-01,  9.9988e-02,  9.0438e-01, -3.6257e-01,\\n\",\n      \"          -4.4119e-01,  4.2917e-01, -2.6990e-01,  4.2311e-01,  2.7980e-01,\\n\",\n      \"           1.9899e-01,  8.3125e-02,  1.3034e-01,  9.0406e-02, -2.5047e-02,\\n\",\n      \"           5.0993e-01, -6.0698e-01,  2.0975e-01,  2.8351e-01, -1.9944e-01,\\n\",\n      \"           2.5476e-01, -6.0071e-02,  4.2573e-01,  3.9131e-03, -9.8624e-02,\\n\",\n      \"           1.9323e-01,  5.3431e-01, -1.0846e-01,  8.3219e-02, -5.1852e-01,\\n\",\n      \"          -1.0182e-01,  8.0068e-03, -9.8824e-02,  5.1580e-01,  4.8648e-01,\\n\",\n      \"          -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\\n\",\n      \"           2.1330e-01, -6.1276e-01,  1.6057e-01, -6.3184e-01,  8.1466e-01,\\n\",\n      \"          -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0104e-01,  6.5426e-01,  7.7138e-01,  5.6748e-01, -4.7691e-01,\\n\",\n      \"          -5.2622e-01, -8.1877e-01, -8.8119e-01,  6.0301e-01, -1.5291e-01,\\n\",\n      \"           4.0511e-01, -8.7244e-01, -3.8247e-01,  3.3862e-01,  1.2650e-01,\\n\",\n      \"           7.8641e-01,  6.1568e-01,  4.3722e-01,  7.2865e-01, -6.2760e-01,\\n\",\n      \"          -9.0425e-01, -3.7571e-01, -8.7384e-02,  2.0393e-01,  1.7595e-01,\\n\",\n      \"          -9.6426e-01,  6.6673e-01,  1.5598e-01, -2.9040e-01,  5.8154e-02,\\n\",\n      \"           8.7598e-01, -3.7915e-01,  3.1616e-01, -1.1750e-01, -5.0382e-01,\\n\",\n      \"           2.9781e-01, -8.1428e-01,  8.4853e-01,  6.1756e-01, -2.0564e-01,\\n\",\n      \"           1.9886e-02, -5.7905e-01, -8.4476e-01,  5.3807e-01, -3.7935e-01,\\n\",\n      \"          -2.3593e-01, -5.5078e-01,  5.0617e-01,  7.8397e-01,  8.9721e-01,\\n\",\n      \"          -5.4892e-01,  5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\\n\",\n      \"           9.1601e-01, -8.3470e-01,  3.3360e-01,  9.7394e-01,  6.7423e-01,\\n\",\n      \"          -6.3171e-01, -5.4024e-02,  9.7447e-01, -9.5411e-01],\\n\",\n      \"         [-5.6495e-01,  6.4817e-01,  6.1315e-01,  6.0038e-01, -4.1307e-01,\\n\",\n      \"          -4.5898e-01, -8.2032e-01, -9.4217e-01,  6.8682e-01, -1.7263e-01,\\n\",\n      \"           6.3151e-01, -8.4917e-01, -2.9447e-01,  5.2271e-01,  2.1862e-01,\\n\",\n      \"           8.2034e-01,  4.7811e-01,  6.8474e-01,  9.2941e-01, -4.2096e-01,\\n\",\n      \"          -9.4001e-01,  3.0864e-01, -1.8619e-01,  4.4706e-01,  1.4602e-01,\\n\",\n      \"          -9.2286e-01,  6.6321e-01,  5.4442e-02, -3.0118e-01,  8.8396e-02,\\n\",\n      \"           8.6066e-01, -2.5356e-01,  5.8141e-01, -1.4684e-03, -6.8510e-01,\\n\",\n      \"           4.2343e-01, -8.3636e-01,  7.4505e-01,  6.3347e-01, -5.5176e-02,\\n\",\n      \"           8.0538e-02, -5.6538e-01, -8.6216e-01,  4.8400e-01, -3.9852e-01,\\n\",\n      \"          -5.4495e-02, -3.7059e-01,  3.6633e-01,  7.5105e-01,  9.1164e-01,\\n\",\n      \"          -5.1931e-01,  5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\\n\",\n      \"           8.3216e-01, -8.5892e-01,  4.5073e-01,  9.6752e-01,  7.1628e-01,\\n\",\n      \"          -5.6690e-01, -2.2989e-01,  9.6539e-01, -9.2093e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [1]个单词\\n\",\n      \"解码器输入dec_input: tensor([7, 6])\\n\",\n      \"dec_state: tensor([[[-0.5102,  0.8771, -0.2442,  0.9024, -0.4286, -0.3775, -0.8722,\\n\",\n      \"          -0.8776,  0.1165, -0.6138,  0.2049, -0.9887, -0.5307,  0.4958,\\n\",\n      \"           0.3538,  0.6369,  0.9051, -0.5532, -0.7011,  0.9636,  0.0967,\\n\",\n      \"          -0.9163, -0.8002,  0.6493, -0.7218, -0.8909, -0.1443, -0.8289,\\n\",\n      \"          -0.8881, -0.9089, -0.6799, -0.1224,  0.4952,  0.2456, -0.9079,\\n\",\n      \"           0.9706, -0.9750, -0.6236,  0.9406,  0.0480,  0.7411, -0.7231,\\n\",\n      \"          -0.3255,  0.9657, -0.9355, -0.8542, -0.7350, -0.3847,  0.7847,\\n\",\n      \"           0.9373,  0.7433,  0.9584,  0.8982, -0.8137, -0.9826, -0.9029,\\n\",\n      \"          -0.7516,  0.9434,  0.5079, -0.8678, -0.6594,  0.9515,  0.3266,\\n\",\n      \"           0.9325],\\n\",\n      \"         [-0.5484,  0.1851,  0.7322,  0.2293, -0.5323,  0.2891,  0.4596,\\n\",\n      \"          -0.1542,  0.8479, -0.8913, -0.8320, -0.9569, -0.5919,  0.5446,\\n\",\n      \"           0.4355,  0.7648,  0.6359,  0.7958,  0.9329,  0.8640, -0.7288,\\n\",\n      \"           0.7995,  0.2762,  0.7086, -0.5940, -0.9159,  0.7217,  0.1596,\\n\",\n      \"          -0.7953,  0.1864,  0.5813,  0.1335,  0.8808,  0.2021, -0.6036,\\n\",\n      \"           0.8467,  0.7382,  0.7422, -0.5570, -0.7721, -0.1497, -0.5056,\\n\",\n      \"          -0.8932,  0.6739, -0.8887, -0.6932, -0.8435, -0.4990, -0.4113,\\n\",\n      \"           0.9345,  0.8662,  0.1490, -0.9727,  0.6743, -0.9851,  0.7450,\\n\",\n      \"          -0.8179, -0.8800,  0.9644, -0.6839, -0.6258,  0.8323,  0.9456,\\n\",\n      \"           0.0950]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.8794e-02,  5.3342e-01,  2.7767e-01,  3.9600e-01, -3.6861e-01,\\n\",\n      \"           1.5557e-01, -1.0969e-01,  1.7756e-01, -1.0504e-01, -2.7521e-01,\\n\",\n      \"           2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03,  3.0370e-01,\\n\",\n      \"          -1.8936e-01,  6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\\n\",\n      \"          -6.2699e-01, -5.6061e-01,  5.4069e-01,  2.7735e-01, -3.8531e-01,\\n\",\n      \"          -5.4473e-01,  6.6829e-02,  5.7072e-01,  3.5158e-02,  1.8771e-02,\\n\",\n      \"           1.7612e-01,  3.9111e-01, -6.5084e-01,  6.1659e-01,  1.7997e-01,\\n\",\n      \"          -3.9050e-02, -3.8968e-01,  7.8072e-01, -6.3102e-01,  2.3746e-01,\\n\",\n      \"          -5.4918e-02,  3.5109e-01, -6.9286e-01, -2.8419e-01,  7.8028e-02,\\n\",\n      \"          -3.1589e-01, -3.9509e-01,  2.7848e-01, -1.8915e-02,  4.0646e-01,\\n\",\n      \"           1.8700e-01,  6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\\n\",\n      \"           1.7482e-01,  5.1712e-02,  3.2650e-01, -3.3498e-01,  2.5596e-01,\\n\",\n      \"          -6.6363e-01,  3.9568e-01,  6.6326e-01, -4.5198e-01],\\n\",\n      \"         [-4.4663e-01,  4.9992e-02, -1.1279e-01,  5.5714e-01,  2.9287e-01,\\n\",\n      \"           5.3430e-02, -3.2958e-02, -6.9619e-01,  3.7287e-01, -1.1730e-01,\\n\",\n      \"           4.7527e-01, -1.4236e-01,  1.0980e-01,  3.4374e-01,  4.4925e-02,\\n\",\n      \"           5.4476e-01,  1.3434e-01,  2.4798e-01,  1.4511e-01,  2.8671e-01,\\n\",\n      \"          -7.2405e-01, -4.0333e-02,  1.2978e-01, -1.1822e-01, -6.4893e-01,\\n\",\n      \"           1.3198e-01, -5.2837e-01, -3.7102e-01,  6.7838e-02,  8.5206e-02,\\n\",\n      \"           1.3851e-01, -3.6910e-02,  3.1990e-02,  9.5910e-02, -2.7345e-01,\\n\",\n      \"          -9.7926e-02, -6.3590e-01,  3.5229e-01,  6.0026e-01,  8.7420e-02,\\n\",\n      \"          -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\\n\",\n      \"           3.1581e-01, -3.0370e-01,  6.5536e-02,  1.5106e-01,  1.2373e-01,\\n\",\n      \"           1.4191e-01,  5.0884e-01,  1.8682e-01, -4.1712e-01, -1.7723e-01,\\n\",\n      \"           2.8597e-01, -5.5452e-01,  2.8961e-01,  2.7804e-01, -1.9407e-01,\\n\",\n      \"          -4.4526e-01,  3.7736e-01,  3.5711e-01, -3.5176e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1324e-01,  5.2025e-01,  5.0695e-01,  3.2545e-01, -5.7762e-01,\\n\",\n      \"          -7.3069e-01, -1.0028e-01,  4.7019e-01, -3.5687e-01, -7.2285e-01,\\n\",\n      \"           2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01,  4.3462e-02,\\n\",\n      \"           3.6790e-02,  7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\\n\",\n      \"          -4.6593e-01, -5.6537e-01,  5.0546e-01,  8.1896e-01, -2.9426e-01,\\n\",\n      \"          -7.9558e-01,  8.4542e-01,  5.4046e-01,  5.8609e-01,  5.0922e-01,\\n\",\n      \"          -1.6546e-01,  6.0234e-01, -5.6518e-01,  8.5887e-01, -4.5587e-01,\\n\",\n      \"          -3.5113e-02, -3.1436e-01,  7.4797e-01, -6.6369e-01, -2.0690e-01,\\n\",\n      \"           7.0571e-01, -4.6216e-01, -7.8772e-01,  3.5452e-01,  2.6347e-01,\\n\",\n      \"          -4.1197e-01, -4.6747e-01,  4.9282e-01,  6.8443e-02,  2.7213e-02,\\n\",\n      \"           3.8875e-01,  6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\\n\",\n      \"           8.9968e-01,  4.0096e-01,  9.4859e-02, -7.1174e-01,  3.0494e-02,\\n\",\n      \"          -7.4953e-01,  8.1606e-02,  6.2147e-01, -2.7554e-01],\\n\",\n      \"         [-4.6765e-01,  3.5594e-01, -4.6087e-01,  6.5994e-01,  1.5107e-01,\\n\",\n      \"          -4.9836e-02,  3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\\n\",\n      \"           8.9305e-02,  4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\\n\",\n      \"           1.2247e-01, -7.1975e-02, -4.5834e-02,  8.9275e-02,  1.3229e-01,\\n\",\n      \"          -3.2071e-01,  8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\\n\",\n      \"           5.4388e-02,  2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\\n\",\n      \"           2.7214e-01, -1.7248e-01,  2.0683e-01, -7.7345e-03, -2.9245e-01,\\n\",\n      \"          -1.5008e-01, -4.2409e-01, -2.4032e-01,  2.3066e-01,  1.9569e-01,\\n\",\n      \"          -3.6902e-01,  2.6708e-01, -1.5023e-01, -1.7348e-01,  3.3117e-01,\\n\",\n      \"           1.2738e-01, -2.8993e-01, -1.2677e-01,  1.4847e-01,  3.7645e-01,\\n\",\n      \"          -1.9285e-01,  4.2530e-01,  2.1337e-01, -5.1065e-01, -3.3662e-01,\\n\",\n      \"           1.3590e-02,  2.5094e-02,  2.0697e-01,  1.3003e-01, -4.5041e-01,\\n\",\n      \"           1.9167e-01,  5.0020e-01,  1.3076e-01, -4.9900e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8282e-02,  4.8322e-01, -4.5622e-02,  2.9975e-01, -1.3149e-02,\\n\",\n      \"          -7.4066e-01,  1.9927e-01,  7.5937e-01, -1.8768e-01, -1.1899e-01,\\n\",\n      \"          -2.0289e-01,  3.6612e-01, -5.8996e-01, -5.1666e-01,  5.3625e-03,\\n\",\n      \"           3.3709e-01,  7.8384e-01, -7.4147e-01,  1.6300e-01, -7.4821e-01,\\n\",\n      \"          -3.9660e-01, -4.5093e-01,  1.7294e-01,  9.2179e-01,  3.1065e-01,\\n\",\n      \"          -3.7260e-01,  6.1350e-01,  2.4377e-01,  5.7021e-01,  5.0771e-01,\\n\",\n      \"          -5.7705e-01, -1.0129e-02, -3.0245e-02,  7.3764e-01, -6.2183e-01,\\n\",\n      \"           8.5102e-02,  4.4259e-02,  5.7435e-01, -1.3313e-01,  9.5835e-02,\\n\",\n      \"           7.3970e-01, -8.5254e-02, -2.9058e-01,  6.6853e-01,  1.4284e-01,\\n\",\n      \"          -4.4259e-01, -3.5658e-01,  3.1570e-02,  4.1088e-01,  5.8174e-01,\\n\",\n      \"           1.7225e-01,  5.0016e-01, -2.3336e-01,  1.1785e-01, -8.1593e-03,\\n\",\n      \"           9.0696e-01,  5.1017e-02,  2.1235e-01, -3.1208e-01,  3.0785e-01,\\n\",\n      \"          -7.9104e-01, -4.6839e-01,  5.5536e-01, -1.8962e-01],\\n\",\n      \"         [-2.9474e-01,  4.1033e-01, -1.0640e-01,  2.2170e-01,  3.7699e-01,\\n\",\n      \"           1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\\n\",\n      \"          -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\\n\",\n      \"           5.2941e-01, -6.7271e-02,  4.9393e-01, -3.1223e-01, -1.9308e-01,\\n\",\n      \"           4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01,  2.1149e-02,\\n\",\n      \"           3.4688e-02, -2.6599e-02,  5.6323e-02, -2.3462e-01, -2.7575e-02,\\n\",\n      \"           3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\\n\",\n      \"           3.9748e-02, -5.5766e-02, -1.8779e-01,  3.7293e-01, -4.3215e-01,\\n\",\n      \"          -3.2607e-01,  4.7629e-01,  1.2417e-01,  8.7553e-02,  7.4922e-02,\\n\",\n      \"           1.6414e-02, -3.7098e-01,  1.1215e-01,  5.0214e-01,  8.5971e-02,\\n\",\n      \"          -1.8960e-01,  1.6976e-01,  5.8928e-02, -3.7863e-01, -1.9777e-02,\\n\",\n      \"           6.0712e-02,  3.4529e-01,  1.6618e-01, -2.3556e-01,  9.5518e-02,\\n\",\n      \"           3.2406e-01,  6.3608e-02,  1.7180e-01, -2.6295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.4039e-02,  8.8844e-01,  3.3888e-01, -9.1417e-02,  7.9695e-02,\\n\",\n      \"          -2.3450e-01, -4.4034e-01,  6.3989e-01,  3.7835e-02,  3.9992e-01,\\n\",\n      \"          -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\\n\",\n      \"           3.3464e-01,  6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\\n\",\n      \"          -2.7994e-01, -6.0982e-01,  1.4235e-01,  2.2770e-01,  1.7566e-01,\\n\",\n      \"          -5.3978e-01,  4.8615e-01,  3.1977e-01,  4.6543e-01,  3.2679e-01,\\n\",\n      \"           3.8429e-01, -4.0738e-01, -4.7408e-01,  1.6175e-01,  2.3650e-01,\\n\",\n      \"          -6.0986e-01, -1.1444e-01,  8.2822e-01, -3.4007e-01, -3.5199e-01,\\n\",\n      \"           8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01,  8.2066e-02,\\n\",\n      \"          -4.1364e-01, -5.2925e-01,  5.9958e-01,  3.0593e-01,  5.9111e-01,\\n\",\n      \"           3.8023e-01,  2.2484e-01, -5.9437e-01,  4.3079e-01, -2.0735e-01,\\n\",\n      \"           8.2035e-01, -4.0924e-02,  5.6995e-01,  1.0385e-01,  4.4414e-01,\\n\",\n      \"          -8.6832e-01, -2.6419e-01,  8.3170e-01, -7.2663e-01],\\n\",\n      \"         [-5.8141e-01,  1.1048e-01, -6.2374e-01,  5.0587e-01,  2.5336e-01,\\n\",\n      \"          -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\\n\",\n      \"           4.2063e-01, -2.4931e-01,  3.9692e-01, -1.5809e-01,  3.2859e-01,\\n\",\n      \"          -2.9822e-01, -1.9858e-02,  5.5853e-01,  7.8639e-02,  4.8963e-02,\\n\",\n      \"          -2.2860e-01,  4.3759e-01,  2.3944e-01,  4.2009e-01,  1.3628e-01,\\n\",\n      \"           1.3792e-01,  1.2585e-01,  5.8101e-02, -5.4331e-01, -7.2530e-03,\\n\",\n      \"           8.0666e-02, -2.2224e-02,  6.3223e-01,  9.6790e-02, -4.9236e-01,\\n\",\n      \"          -8.0862e-02, -2.6275e-01,  4.9909e-01,  7.1494e-01,  3.2871e-01,\\n\",\n      \"          -7.4854e-01,  5.1980e-01,  1.2756e-01,  1.5925e-01, -1.1948e-01,\\n\",\n      \"          -9.3237e-02, -3.0931e-01, -4.2692e-01,  2.9031e-01,  2.0414e-02,\\n\",\n      \"          -3.2254e-01, -3.8900e-01,  5.7919e-01, -7.3999e-01,  1.2747e-01,\\n\",\n      \"          -1.9365e-02,  4.8622e-01,  6.7972e-02, -6.2490e-01, -5.0826e-01,\\n\",\n      \"           2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.6193e-01,  5.5425e-01,  5.4040e-01, -3.0972e-01, -1.3313e-01,\\n\",\n      \"          -6.7800e-01, -4.0654e-01,  4.6998e-01,  1.0506e-02, -4.1220e-01,\\n\",\n      \"          -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\\n\",\n      \"           7.3778e-02,  3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\\n\",\n      \"          -4.0731e-01, -4.5251e-01,  2.7892e-01,  6.7418e-02, -1.8913e-01,\\n\",\n      \"          -7.8529e-01,  7.4795e-02,  3.1780e-01, -5.6582e-02, -2.6386e-02,\\n\",\n      \"           5.4243e-01, -1.1841e-01, -3.2193e-01,  4.1168e-01,  6.0450e-01,\\n\",\n      \"          -1.9057e-01, -1.6040e-01,  5.1988e-01,  2.5761e-01, -2.8185e-01,\\n\",\n      \"           1.6285e-01, -9.2601e-02, -2.9516e-01,  1.5801e-01, -3.4487e-01,\\n\",\n      \"          -2.4956e-01, -4.2876e-01,  4.0097e-01,  7.6141e-02,  6.9152e-02,\\n\",\n      \"          -1.9961e-01,  1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\\n\",\n      \"           7.0492e-01,  7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\\n\",\n      \"          -7.6009e-01,  2.2291e-01,  6.5275e-01, -8.7851e-01],\\n\",\n      \"         [-5.2118e-01,  5.0256e-01, -5.8167e-01,  1.1051e-01,  1.7868e-01,\\n\",\n      \"          -4.7288e-01, -5.4152e-01, -7.2585e-01,  4.8291e-01, -3.2155e-01,\\n\",\n      \"           5.4432e-01, -3.7827e-01,  1.8096e-01,  5.5709e-01,  3.6829e-01,\\n\",\n      \"          -4.2694e-01, -1.1016e-01,  3.8142e-01,  7.3456e-01,  1.3955e-01,\\n\",\n      \"          -6.2690e-01,  4.6662e-01,  9.9586e-03,  4.4347e-01, -1.2285e-01,\\n\",\n      \"           2.4158e-01, -1.9818e-02,  3.2224e-02, -4.5263e-03,  9.7170e-02,\\n\",\n      \"          -2.6790e-02,  3.4196e-01,  5.5448e-01, -2.6957e-01, -4.7481e-01,\\n\",\n      \"           2.5820e-01, -1.6188e-01,  1.8216e-01,  4.3528e-01,  4.1423e-02,\\n\",\n      \"           3.8483e-01,  2.9323e-01, -3.9919e-02,  2.4917e-02, -6.6221e-01,\\n\",\n      \"           4.4238e-02, -1.3296e-01, -5.2108e-01,  4.3413e-02,  2.4199e-01,\\n\",\n      \"           1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\\n\",\n      \"          -2.2352e-01, -4.5641e-01,  6.2054e-04, -6.1068e-01, -2.4117e-02,\\n\",\n      \"          -6.6375e-01, -2.8839e-01,  9.2161e-03, -1.7272e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.2020e-01,  8.7811e-01,  6.2669e-01, -1.2818e-01, -1.8441e-01,\\n\",\n      \"          -6.0717e-01, -7.9754e-01,  5.0410e-01,  4.0985e-01, -6.4446e-02,\\n\",\n      \"           1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01,  1.8644e-01,\\n\",\n      \"           4.3668e-01,  6.4194e-01, -4.0182e-01,  5.6554e-01, -5.9408e-01,\\n\",\n      \"          -2.6671e-01, -4.0951e-01, -1.2089e-01,  1.1193e-01,  3.2120e-01,\\n\",\n      \"          -6.5532e-01,  1.4062e-01,  2.8029e-01,  8.2498e-02, -1.1054e-01,\\n\",\n      \"           7.0519e-01, -6.9252e-01, -2.9735e-01,  3.8513e-01,  3.2410e-01,\\n\",\n      \"          -7.1698e-03, -4.7982e-02,  6.5625e-01, -2.5359e-01, -3.1089e-01,\\n\",\n      \"           1.1211e-01,  2.1855e-01, -1.9636e-01,  1.6137e-01, -5.1002e-01,\\n\",\n      \"          -3.1695e-01, -3.5947e-01,  3.2188e-01,  5.8348e-01,  3.8076e-01,\\n\",\n      \"          -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01,  6.6140e-02,\\n\",\n      \"           6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01,  7.7110e-01,\\n\",\n      \"          -7.8675e-01, -3.0830e-01,  2.2900e-01, -7.8719e-01],\\n\",\n      \"         [-4.0451e-01,  8.7136e-01,  2.0729e-01, -1.9370e-02, -4.0648e-02,\\n\",\n      \"          -4.8286e-01, -8.0573e-01, -2.4901e-01,  5.7310e-01, -5.8490e-02,\\n\",\n      \"           6.0313e-01, -8.4063e-01, -2.5698e-01,  3.3939e-01,  3.4959e-01,\\n\",\n      \"           3.7069e-01,  4.3289e-01,  9.9988e-02,  9.0438e-01, -3.6257e-01,\\n\",\n      \"          -4.4119e-01,  4.2917e-01, -2.6990e-01,  4.2311e-01,  2.7980e-01,\\n\",\n      \"           1.9899e-01,  8.3125e-02,  1.3034e-01,  9.0406e-02, -2.5047e-02,\\n\",\n      \"           5.0993e-01, -6.0698e-01,  2.0975e-01,  2.8351e-01, -1.9944e-01,\\n\",\n      \"           2.5476e-01, -6.0071e-02,  4.2573e-01,  3.9131e-03, -9.8624e-02,\\n\",\n      \"           1.9323e-01,  5.3431e-01, -1.0846e-01,  8.3219e-02, -5.1852e-01,\\n\",\n      \"          -1.0182e-01,  8.0068e-03, -9.8824e-02,  5.1580e-01,  4.8648e-01,\\n\",\n      \"          -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\\n\",\n      \"           2.1330e-01, -6.1276e-01,  1.6057e-01, -6.3184e-01,  8.1466e-01,\\n\",\n      \"          -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0104e-01,  6.5426e-01,  7.7138e-01,  5.6748e-01, -4.7691e-01,\\n\",\n      \"          -5.2622e-01, -8.1877e-01, -8.8119e-01,  6.0301e-01, -1.5291e-01,\\n\",\n      \"           4.0511e-01, -8.7244e-01, -3.8247e-01,  3.3862e-01,  1.2650e-01,\\n\",\n      \"           7.8641e-01,  6.1568e-01,  4.3722e-01,  7.2865e-01, -6.2760e-01,\\n\",\n      \"          -9.0425e-01, -3.7571e-01, -8.7384e-02,  2.0393e-01,  1.7595e-01,\\n\",\n      \"          -9.6426e-01,  6.6673e-01,  1.5598e-01, -2.9040e-01,  5.8154e-02,\\n\",\n      \"           8.7598e-01, -3.7915e-01,  3.1616e-01, -1.1750e-01, -5.0382e-01,\\n\",\n      \"           2.9781e-01, -8.1428e-01,  8.4853e-01,  6.1756e-01, -2.0564e-01,\\n\",\n      \"           1.9886e-02, -5.7905e-01, -8.4476e-01,  5.3807e-01, -3.7935e-01,\\n\",\n      \"          -2.3593e-01, -5.5078e-01,  5.0617e-01,  7.8397e-01,  8.9721e-01,\\n\",\n      \"          -5.4892e-01,  5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\\n\",\n      \"           9.1601e-01, -8.3470e-01,  3.3360e-01,  9.7394e-01,  6.7423e-01,\\n\",\n      \"          -6.3171e-01, -5.4024e-02,  9.7447e-01, -9.5411e-01],\\n\",\n      \"         [-5.6495e-01,  6.4817e-01,  6.1315e-01,  6.0038e-01, -4.1307e-01,\\n\",\n      \"          -4.5898e-01, -8.2032e-01, -9.4217e-01,  6.8682e-01, -1.7263e-01,\\n\",\n      \"           6.3151e-01, -8.4917e-01, -2.9447e-01,  5.2271e-01,  2.1862e-01,\\n\",\n      \"           8.2034e-01,  4.7811e-01,  6.8474e-01,  9.2941e-01, -4.2096e-01,\\n\",\n      \"          -9.4001e-01,  3.0864e-01, -1.8619e-01,  4.4706e-01,  1.4602e-01,\\n\",\n      \"          -9.2286e-01,  6.6321e-01,  5.4442e-02, -3.0118e-01,  8.8396e-02,\\n\",\n      \"           8.6066e-01, -2.5356e-01,  5.8141e-01, -1.4684e-03, -6.8510e-01,\\n\",\n      \"           4.2343e-01, -8.3636e-01,  7.4505e-01,  6.3347e-01, -5.5176e-02,\\n\",\n      \"           8.0538e-02, -5.6538e-01, -8.6216e-01,  4.8400e-01, -3.9852e-01,\\n\",\n      \"          -5.4495e-02, -3.7059e-01,  3.6633e-01,  7.5105e-01,  9.1164e-01,\\n\",\n      \"          -5.1931e-01,  5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\\n\",\n      \"           8.3216e-01, -8.5892e-01,  4.5073e-01,  9.6752e-01,  7.1628e-01,\\n\",\n      \"          -5.6690e-01, -2.2989e-01,  9.6539e-01, -9.2093e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [2]个单词\\n\",\n      \"解码器输入dec_input: tensor([5, 4])\\n\",\n      \"dec_state: tensor([[[-0.1248,  0.9734, -0.5179,  0.9144, -0.2426, -0.4548, -0.9040,\\n\",\n      \"          -0.8647, -0.7707,  0.8588,  0.7136, -0.7407, -0.7878,  0.5900,\\n\",\n      \"          -0.1967, -0.8885, -0.5129, -0.9004, -0.4600,  0.7695,  0.9033,\\n\",\n      \"          -0.9275,  0.9257,  0.7588,  0.3407, -0.8890, -0.4075,  0.4819,\\n\",\n      \"          -0.8529,  0.6489, -0.7330,  0.7292, -0.3136,  0.6681, -0.9408,\\n\",\n      \"          -0.9399,  0.3219, -0.5772,  0.5230, -0.0848, -0.9829,  0.8293,\\n\",\n      \"           0.5171,  0.8241, -0.3710,  0.5126, -0.7610,  0.5399, -0.2418,\\n\",\n      \"           0.4762,  0.3113,  0.8741,  0.6809, -0.8477, -0.8277, -0.2922,\\n\",\n      \"           0.7007,  0.9725,  0.6816, -0.7695, -0.6875,  0.9524,  0.1617,\\n\",\n      \"           0.8997],\\n\",\n      \"         [-0.2271,  0.2629,  0.1473,  0.7591,  0.1817,  0.2074,  0.2649,\\n\",\n      \"           0.9412,  0.8214, -0.9373, -0.7219, -0.8170, -0.5721,  0.5137,\\n\",\n      \"           0.3798,  0.3332,  0.6180,  0.1114, -0.3531,  0.1805, -0.2881,\\n\",\n      \"           0.5491,  0.4241,  0.7365,  0.1013, -0.9430, -0.3158,  0.2007,\\n\",\n      \"          -0.8332, -0.1643, -0.7123,  0.5356, -0.7456,  0.3297, -0.1868,\\n\",\n      \"           0.9340,  0.7403,  0.5124, -0.8519, -0.3194, -0.0055,  0.3685,\\n\",\n      \"          -0.6437,  0.7319, -0.2311, -0.7918,  0.1952,  0.8460, -0.4433,\\n\",\n      \"           0.9049,  0.7665, -0.1793, -0.9849,  0.4243, -0.9020,  0.7944,\\n\",\n      \"           0.1320, -0.8462, -0.3261,  0.8438, -0.7552,  0.8830,  0.3403,\\n\",\n      \"           0.5135]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.8794e-02,  5.3342e-01,  2.7767e-01,  3.9600e-01, -3.6861e-01,\\n\",\n      \"           1.5557e-01, -1.0969e-01,  1.7756e-01, -1.0504e-01, -2.7521e-01,\\n\",\n      \"           2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03,  3.0370e-01,\\n\",\n      \"          -1.8936e-01,  6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\\n\",\n      \"          -6.2699e-01, -5.6061e-01,  5.4069e-01,  2.7735e-01, -3.8531e-01,\\n\",\n      \"          -5.4473e-01,  6.6829e-02,  5.7072e-01,  3.5158e-02,  1.8771e-02,\\n\",\n      \"           1.7612e-01,  3.9111e-01, -6.5084e-01,  6.1659e-01,  1.7997e-01,\\n\",\n      \"          -3.9050e-02, -3.8968e-01,  7.8072e-01, -6.3102e-01,  2.3746e-01,\\n\",\n      \"          -5.4918e-02,  3.5109e-01, -6.9286e-01, -2.8419e-01,  7.8028e-02,\\n\",\n      \"          -3.1589e-01, -3.9509e-01,  2.7848e-01, -1.8915e-02,  4.0646e-01,\\n\",\n      \"           1.8700e-01,  6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\\n\",\n      \"           1.7482e-01,  5.1712e-02,  3.2650e-01, -3.3498e-01,  2.5596e-01,\\n\",\n      \"          -6.6363e-01,  3.9568e-01,  6.6326e-01, -4.5198e-01],\\n\",\n      \"         [-4.4663e-01,  4.9992e-02, -1.1279e-01,  5.5714e-01,  2.9287e-01,\\n\",\n      \"           5.3430e-02, -3.2958e-02, -6.9619e-01,  3.7287e-01, -1.1730e-01,\\n\",\n      \"           4.7527e-01, -1.4236e-01,  1.0980e-01,  3.4374e-01,  4.4925e-02,\\n\",\n      \"           5.4476e-01,  1.3434e-01,  2.4798e-01,  1.4511e-01,  2.8671e-01,\\n\",\n      \"          -7.2405e-01, -4.0333e-02,  1.2978e-01, -1.1822e-01, -6.4893e-01,\\n\",\n      \"           1.3198e-01, -5.2837e-01, -3.7102e-01,  6.7838e-02,  8.5206e-02,\\n\",\n      \"           1.3851e-01, -3.6910e-02,  3.1990e-02,  9.5910e-02, -2.7345e-01,\\n\",\n      \"          -9.7926e-02, -6.3590e-01,  3.5229e-01,  6.0026e-01,  8.7420e-02,\\n\",\n      \"          -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\\n\",\n      \"           3.1581e-01, -3.0370e-01,  6.5536e-02,  1.5106e-01,  1.2373e-01,\\n\",\n      \"           1.4191e-01,  5.0884e-01,  1.8682e-01, -4.1712e-01, -1.7723e-01,\\n\",\n      \"           2.8597e-01, -5.5452e-01,  2.8961e-01,  2.7804e-01, -1.9407e-01,\\n\",\n      \"          -4.4526e-01,  3.7736e-01,  3.5711e-01, -3.5176e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1324e-01,  5.2025e-01,  5.0695e-01,  3.2545e-01, -5.7762e-01,\\n\",\n      \"          -7.3069e-01, -1.0028e-01,  4.7019e-01, -3.5687e-01, -7.2285e-01,\\n\",\n      \"           2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01,  4.3462e-02,\\n\",\n      \"           3.6790e-02,  7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\\n\",\n      \"          -4.6593e-01, -5.6537e-01,  5.0546e-01,  8.1896e-01, -2.9426e-01,\\n\",\n      \"          -7.9558e-01,  8.4542e-01,  5.4046e-01,  5.8609e-01,  5.0922e-01,\\n\",\n      \"          -1.6546e-01,  6.0234e-01, -5.6518e-01,  8.5887e-01, -4.5587e-01,\\n\",\n      \"          -3.5113e-02, -3.1436e-01,  7.4797e-01, -6.6369e-01, -2.0690e-01,\\n\",\n      \"           7.0571e-01, -4.6216e-01, -7.8772e-01,  3.5452e-01,  2.6347e-01,\\n\",\n      \"          -4.1197e-01, -4.6747e-01,  4.9282e-01,  6.8443e-02,  2.7213e-02,\\n\",\n      \"           3.8875e-01,  6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\\n\",\n      \"           8.9968e-01,  4.0096e-01,  9.4859e-02, -7.1174e-01,  3.0494e-02,\\n\",\n      \"          -7.4953e-01,  8.1606e-02,  6.2147e-01, -2.7554e-01],\\n\",\n      \"         [-4.6765e-01,  3.5594e-01, -4.6087e-01,  6.5994e-01,  1.5107e-01,\\n\",\n      \"          -4.9836e-02,  3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\\n\",\n      \"           8.9305e-02,  4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\\n\",\n      \"           1.2247e-01, -7.1975e-02, -4.5834e-02,  8.9275e-02,  1.3229e-01,\\n\",\n      \"          -3.2071e-01,  8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\\n\",\n      \"           5.4388e-02,  2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\\n\",\n      \"           2.7214e-01, -1.7248e-01,  2.0683e-01, -7.7345e-03, -2.9245e-01,\\n\",\n      \"          -1.5008e-01, -4.2409e-01, -2.4032e-01,  2.3066e-01,  1.9569e-01,\\n\",\n      \"          -3.6902e-01,  2.6708e-01, -1.5023e-01, -1.7348e-01,  3.3117e-01,\\n\",\n      \"           1.2738e-01, -2.8993e-01, -1.2677e-01,  1.4847e-01,  3.7645e-01,\\n\",\n      \"          -1.9285e-01,  4.2530e-01,  2.1337e-01, -5.1065e-01, -3.3662e-01,\\n\",\n      \"           1.3590e-02,  2.5094e-02,  2.0697e-01,  1.3003e-01, -4.5041e-01,\\n\",\n      \"           1.9167e-01,  5.0020e-01,  1.3076e-01, -4.9900e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8282e-02,  4.8322e-01, -4.5622e-02,  2.9975e-01, -1.3149e-02,\\n\",\n      \"          -7.4066e-01,  1.9927e-01,  7.5937e-01, -1.8768e-01, -1.1899e-01,\\n\",\n      \"          -2.0289e-01,  3.6612e-01, -5.8996e-01, -5.1666e-01,  5.3625e-03,\\n\",\n      \"           3.3709e-01,  7.8384e-01, -7.4147e-01,  1.6300e-01, -7.4821e-01,\\n\",\n      \"          -3.9660e-01, -4.5093e-01,  1.7294e-01,  9.2179e-01,  3.1065e-01,\\n\",\n      \"          -3.7260e-01,  6.1350e-01,  2.4377e-01,  5.7021e-01,  5.0771e-01,\\n\",\n      \"          -5.7705e-01, -1.0129e-02, -3.0245e-02,  7.3764e-01, -6.2183e-01,\\n\",\n      \"           8.5102e-02,  4.4259e-02,  5.7435e-01, -1.3313e-01,  9.5835e-02,\\n\",\n      \"           7.3970e-01, -8.5254e-02, -2.9058e-01,  6.6853e-01,  1.4284e-01,\\n\",\n      \"          -4.4259e-01, -3.5658e-01,  3.1570e-02,  4.1088e-01,  5.8174e-01,\\n\",\n      \"           1.7225e-01,  5.0016e-01, -2.3336e-01,  1.1785e-01, -8.1593e-03,\\n\",\n      \"           9.0696e-01,  5.1017e-02,  2.1235e-01, -3.1208e-01,  3.0785e-01,\\n\",\n      \"          -7.9104e-01, -4.6839e-01,  5.5536e-01, -1.8962e-01],\\n\",\n      \"         [-2.9474e-01,  4.1033e-01, -1.0640e-01,  2.2170e-01,  3.7699e-01,\\n\",\n      \"           1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\\n\",\n      \"          -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\\n\",\n      \"           5.2941e-01, -6.7271e-02,  4.9393e-01, -3.1223e-01, -1.9308e-01,\\n\",\n      \"           4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01,  2.1149e-02,\\n\",\n      \"           3.4688e-02, -2.6599e-02,  5.6323e-02, -2.3462e-01, -2.7575e-02,\\n\",\n      \"           3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\\n\",\n      \"           3.9748e-02, -5.5766e-02, -1.8779e-01,  3.7293e-01, -4.3215e-01,\\n\",\n      \"          -3.2607e-01,  4.7629e-01,  1.2417e-01,  8.7553e-02,  7.4922e-02,\\n\",\n      \"           1.6414e-02, -3.7098e-01,  1.1215e-01,  5.0214e-01,  8.5971e-02,\\n\",\n      \"          -1.8960e-01,  1.6976e-01,  5.8928e-02, -3.7863e-01, -1.9777e-02,\\n\",\n      \"           6.0712e-02,  3.4529e-01,  1.6618e-01, -2.3556e-01,  9.5518e-02,\\n\",\n      \"           3.2406e-01,  6.3608e-02,  1.7180e-01, -2.6295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.4039e-02,  8.8844e-01,  3.3888e-01, -9.1417e-02,  7.9695e-02,\\n\",\n      \"          -2.3450e-01, -4.4034e-01,  6.3989e-01,  3.7835e-02,  3.9992e-01,\\n\",\n      \"          -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\\n\",\n      \"           3.3464e-01,  6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\\n\",\n      \"          -2.7994e-01, -6.0982e-01,  1.4235e-01,  2.2770e-01,  1.7566e-01,\\n\",\n      \"          -5.3978e-01,  4.8615e-01,  3.1977e-01,  4.6543e-01,  3.2679e-01,\\n\",\n      \"           3.8429e-01, -4.0738e-01, -4.7408e-01,  1.6175e-01,  2.3650e-01,\\n\",\n      \"          -6.0986e-01, -1.1444e-01,  8.2822e-01, -3.4007e-01, -3.5199e-01,\\n\",\n      \"           8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01,  8.2066e-02,\\n\",\n      \"          -4.1364e-01, -5.2925e-01,  5.9958e-01,  3.0593e-01,  5.9111e-01,\\n\",\n      \"           3.8023e-01,  2.2484e-01, -5.9437e-01,  4.3079e-01, -2.0735e-01,\\n\",\n      \"           8.2035e-01, -4.0924e-02,  5.6995e-01,  1.0385e-01,  4.4414e-01,\\n\",\n      \"          -8.6832e-01, -2.6419e-01,  8.3170e-01, -7.2663e-01],\\n\",\n      \"         [-5.8141e-01,  1.1048e-01, -6.2374e-01,  5.0587e-01,  2.5336e-01,\\n\",\n      \"          -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\\n\",\n      \"           4.2063e-01, -2.4931e-01,  3.9692e-01, -1.5809e-01,  3.2859e-01,\\n\",\n      \"          -2.9822e-01, -1.9858e-02,  5.5853e-01,  7.8639e-02,  4.8963e-02,\\n\",\n      \"          -2.2860e-01,  4.3759e-01,  2.3944e-01,  4.2009e-01,  1.3628e-01,\\n\",\n      \"           1.3792e-01,  1.2585e-01,  5.8101e-02, -5.4331e-01, -7.2530e-03,\\n\",\n      \"           8.0666e-02, -2.2224e-02,  6.3223e-01,  9.6790e-02, -4.9236e-01,\\n\",\n      \"          -8.0862e-02, -2.6275e-01,  4.9909e-01,  7.1494e-01,  3.2871e-01,\\n\",\n      \"          -7.4854e-01,  5.1980e-01,  1.2756e-01,  1.5925e-01, -1.1948e-01,\\n\",\n      \"          -9.3237e-02, -3.0931e-01, -4.2692e-01,  2.9031e-01,  2.0414e-02,\\n\",\n      \"          -3.2254e-01, -3.8900e-01,  5.7919e-01, -7.3999e-01,  1.2747e-01,\\n\",\n      \"          -1.9365e-02,  4.8622e-01,  6.7972e-02, -6.2490e-01, -5.0826e-01,\\n\",\n      \"           2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.6193e-01,  5.5425e-01,  5.4040e-01, -3.0972e-01, -1.3313e-01,\\n\",\n      \"          -6.7800e-01, -4.0654e-01,  4.6998e-01,  1.0506e-02, -4.1220e-01,\\n\",\n      \"          -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\\n\",\n      \"           7.3778e-02,  3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\\n\",\n      \"          -4.0731e-01, -4.5251e-01,  2.7892e-01,  6.7418e-02, -1.8913e-01,\\n\",\n      \"          -7.8529e-01,  7.4795e-02,  3.1780e-01, -5.6582e-02, -2.6386e-02,\\n\",\n      \"           5.4243e-01, -1.1841e-01, -3.2193e-01,  4.1168e-01,  6.0450e-01,\\n\",\n      \"          -1.9057e-01, -1.6040e-01,  5.1988e-01,  2.5761e-01, -2.8185e-01,\\n\",\n      \"           1.6285e-01, -9.2601e-02, -2.9516e-01,  1.5801e-01, -3.4487e-01,\\n\",\n      \"          -2.4956e-01, -4.2876e-01,  4.0097e-01,  7.6141e-02,  6.9152e-02,\\n\",\n      \"          -1.9961e-01,  1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\\n\",\n      \"           7.0492e-01,  7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\\n\",\n      \"          -7.6009e-01,  2.2291e-01,  6.5275e-01, -8.7851e-01],\\n\",\n      \"         [-5.2118e-01,  5.0256e-01, -5.8167e-01,  1.1051e-01,  1.7868e-01,\\n\",\n      \"          -4.7288e-01, -5.4152e-01, -7.2585e-01,  4.8291e-01, -3.2155e-01,\\n\",\n      \"           5.4432e-01, -3.7827e-01,  1.8096e-01,  5.5709e-01,  3.6829e-01,\\n\",\n      \"          -4.2694e-01, -1.1016e-01,  3.8142e-01,  7.3456e-01,  1.3955e-01,\\n\",\n      \"          -6.2690e-01,  4.6662e-01,  9.9586e-03,  4.4347e-01, -1.2285e-01,\\n\",\n      \"           2.4158e-01, -1.9818e-02,  3.2224e-02, -4.5263e-03,  9.7170e-02,\\n\",\n      \"          -2.6790e-02,  3.4196e-01,  5.5448e-01, -2.6957e-01, -4.7481e-01,\\n\",\n      \"           2.5820e-01, -1.6188e-01,  1.8216e-01,  4.3528e-01,  4.1423e-02,\\n\",\n      \"           3.8483e-01,  2.9323e-01, -3.9919e-02,  2.4917e-02, -6.6221e-01,\\n\",\n      \"           4.4238e-02, -1.3296e-01, -5.2108e-01,  4.3413e-02,  2.4199e-01,\\n\",\n      \"           1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\\n\",\n      \"          -2.2352e-01, -4.5641e-01,  6.2054e-04, -6.1068e-01, -2.4117e-02,\\n\",\n      \"          -6.6375e-01, -2.8839e-01,  9.2161e-03, -1.7272e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.2020e-01,  8.7811e-01,  6.2669e-01, -1.2818e-01, -1.8441e-01,\\n\",\n      \"          -6.0717e-01, -7.9754e-01,  5.0410e-01,  4.0985e-01, -6.4446e-02,\\n\",\n      \"           1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01,  1.8644e-01,\\n\",\n      \"           4.3668e-01,  6.4194e-01, -4.0182e-01,  5.6554e-01, -5.9408e-01,\\n\",\n      \"          -2.6671e-01, -4.0951e-01, -1.2089e-01,  1.1193e-01,  3.2120e-01,\\n\",\n      \"          -6.5532e-01,  1.4062e-01,  2.8029e-01,  8.2498e-02, -1.1054e-01,\\n\",\n      \"           7.0519e-01, -6.9252e-01, -2.9735e-01,  3.8513e-01,  3.2410e-01,\\n\",\n      \"          -7.1698e-03, -4.7982e-02,  6.5625e-01, -2.5359e-01, -3.1089e-01,\\n\",\n      \"           1.1211e-01,  2.1855e-01, -1.9636e-01,  1.6137e-01, -5.1002e-01,\\n\",\n      \"          -3.1695e-01, -3.5947e-01,  3.2188e-01,  5.8348e-01,  3.8076e-01,\\n\",\n      \"          -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01,  6.6140e-02,\\n\",\n      \"           6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01,  7.7110e-01,\\n\",\n      \"          -7.8675e-01, -3.0830e-01,  2.2900e-01, -7.8719e-01],\\n\",\n      \"         [-4.0451e-01,  8.7136e-01,  2.0729e-01, -1.9370e-02, -4.0648e-02,\\n\",\n      \"          -4.8286e-01, -8.0573e-01, -2.4901e-01,  5.7310e-01, -5.8490e-02,\\n\",\n      \"           6.0313e-01, -8.4063e-01, -2.5698e-01,  3.3939e-01,  3.4959e-01,\\n\",\n      \"           3.7069e-01,  4.3289e-01,  9.9988e-02,  9.0438e-01, -3.6257e-01,\\n\",\n      \"          -4.4119e-01,  4.2917e-01, -2.6990e-01,  4.2311e-01,  2.7980e-01,\\n\",\n      \"           1.9899e-01,  8.3125e-02,  1.3034e-01,  9.0406e-02, -2.5047e-02,\\n\",\n      \"           5.0993e-01, -6.0698e-01,  2.0975e-01,  2.8351e-01, -1.9944e-01,\\n\",\n      \"           2.5476e-01, -6.0071e-02,  4.2573e-01,  3.9131e-03, -9.8624e-02,\\n\",\n      \"           1.9323e-01,  5.3431e-01, -1.0846e-01,  8.3219e-02, -5.1852e-01,\\n\",\n      \"          -1.0182e-01,  8.0068e-03, -9.8824e-02,  5.1580e-01,  4.8648e-01,\\n\",\n      \"          -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\\n\",\n      \"           2.1330e-01, -6.1276e-01,  1.6057e-01, -6.3184e-01,  8.1466e-01,\\n\",\n      \"          -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0104e-01,  6.5426e-01,  7.7138e-01,  5.6748e-01, -4.7691e-01,\\n\",\n      \"          -5.2622e-01, -8.1877e-01, -8.8119e-01,  6.0301e-01, -1.5291e-01,\\n\",\n      \"           4.0511e-01, -8.7244e-01, -3.8247e-01,  3.3862e-01,  1.2650e-01,\\n\",\n      \"           7.8641e-01,  6.1568e-01,  4.3722e-01,  7.2865e-01, -6.2760e-01,\\n\",\n      \"          -9.0425e-01, -3.7571e-01, -8.7384e-02,  2.0393e-01,  1.7595e-01,\\n\",\n      \"          -9.6426e-01,  6.6673e-01,  1.5598e-01, -2.9040e-01,  5.8154e-02,\\n\",\n      \"           8.7598e-01, -3.7915e-01,  3.1616e-01, -1.1750e-01, -5.0382e-01,\\n\",\n      \"           2.9781e-01, -8.1428e-01,  8.4853e-01,  6.1756e-01, -2.0564e-01,\\n\",\n      \"           1.9886e-02, -5.7905e-01, -8.4476e-01,  5.3807e-01, -3.7935e-01,\\n\",\n      \"          -2.3593e-01, -5.5078e-01,  5.0617e-01,  7.8397e-01,  8.9721e-01,\\n\",\n      \"          -5.4892e-01,  5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\\n\",\n      \"           9.1601e-01, -8.3470e-01,  3.3360e-01,  9.7394e-01,  6.7423e-01,\\n\",\n      \"          -6.3171e-01, -5.4024e-02,  9.7447e-01, -9.5411e-01],\\n\",\n      \"         [-5.6495e-01,  6.4817e-01,  6.1315e-01,  6.0038e-01, -4.1307e-01,\\n\",\n      \"          -4.5898e-01, -8.2032e-01, -9.4217e-01,  6.8682e-01, -1.7263e-01,\\n\",\n      \"           6.3151e-01, -8.4917e-01, -2.9447e-01,  5.2271e-01,  2.1862e-01,\\n\",\n      \"           8.2034e-01,  4.7811e-01,  6.8474e-01,  9.2941e-01, -4.2096e-01,\\n\",\n      \"          -9.4001e-01,  3.0864e-01, -1.8619e-01,  4.4706e-01,  1.4602e-01,\\n\",\n      \"          -9.2286e-01,  6.6321e-01,  5.4442e-02, -3.0118e-01,  8.8396e-02,\\n\",\n      \"           8.6066e-01, -2.5356e-01,  5.8141e-01, -1.4684e-03, -6.8510e-01,\\n\",\n      \"           4.2343e-01, -8.3636e-01,  7.4505e-01,  6.3347e-01, -5.5176e-02,\\n\",\n      \"           8.0538e-02, -5.6538e-01, -8.6216e-01,  4.8400e-01, -3.9852e-01,\\n\",\n      \"          -5.4495e-02, -3.7059e-01,  3.6633e-01,  7.5105e-01,  9.1164e-01,\\n\",\n      \"          -5.1931e-01,  5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\\n\",\n      \"           8.3216e-01, -8.5892e-01,  4.5073e-01,  9.6752e-01,  7.1628e-01,\\n\",\n      \"          -5.6690e-01, -2.2989e-01,  9.6539e-01, -9.2093e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [3]个单词\\n\",\n      \"解码器输入dec_input: tensor([23, 13])\\n\",\n      \"dec_state: tensor([[[-0.3075,  0.9776, -0.1374,  0.9173, -0.0681, -0.0627, -0.8882,\\n\",\n      \"          -0.4850,  0.2096,  0.4473,  0.8303, -0.9300, -0.7826,  0.6701,\\n\",\n      \"           0.1106, -0.8504, -0.8767, -0.8756,  0.3436,  0.3406,  0.6921,\\n\",\n      \"          -0.9232,  0.1135,  0.7108,  0.3015, -0.9442, -0.3562, -0.1146,\\n\",\n      \"          -0.8740, -0.7501, -0.9313,  0.7121, -0.7791,  0.6097, -0.8515,\\n\",\n      \"          -0.9187, -0.3870, -0.4611, -0.8759, -0.2160, -0.8301, -0.1328,\\n\",\n      \"           0.5965,  0.4782, -0.4282,  0.8980, -0.9544, -0.6619, -0.1295,\\n\",\n      \"           0.6311,  0.6208,  0.9412,  0.4865, -0.6264, -0.6609, -0.0761,\\n\",\n      \"           0.4115,  0.8649,  0.4995,  0.8572, -0.7776,  0.9725,  0.1579,\\n\",\n      \"          -0.0298],\\n\",\n      \"         [-0.3127,  0.3841,  0.0529,  0.7032,  0.3144, -0.0457, -0.0803,\\n\",\n      \"           0.5239,  0.7078,  0.1544, -0.0519, -0.1958, -0.7839,  0.6822,\\n\",\n      \"           0.5921, -0.2754,  0.5713, -0.5310,  0.1596,  0.2388,  0.1047,\\n\",\n      \"           0.3554,  0.1222,  0.7967,  0.0724, -0.9273,  0.3223,  0.5250,\\n\",\n      \"          -0.8409, -0.0423, -0.7459, -0.5837,  0.1937,  0.1084, -0.6085,\\n\",\n      \"           0.6656,  0.7403,  0.3555, -0.8745, -0.6315, -0.3822,  0.3251,\\n\",\n      \"          -0.0409,  0.7151, -0.0570,  0.1886, -0.4104,  0.5041, -0.5659,\\n\",\n      \"           0.6758,  0.7600, -0.0874, -0.4080,  0.0296, -0.7997,  0.1983,\\n\",\n      \"           0.3291,  0.1187,  0.5398, -0.4012, -0.7429,  0.3576,  0.4571,\\n\",\n      \"           0.3737]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.8794e-02,  5.3342e-01,  2.7767e-01,  3.9600e-01, -3.6861e-01,\\n\",\n      \"           1.5557e-01, -1.0969e-01,  1.7756e-01, -1.0504e-01, -2.7521e-01,\\n\",\n      \"           2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03,  3.0370e-01,\\n\",\n      \"          -1.8936e-01,  6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\\n\",\n      \"          -6.2699e-01, -5.6061e-01,  5.4069e-01,  2.7735e-01, -3.8531e-01,\\n\",\n      \"          -5.4473e-01,  6.6829e-02,  5.7072e-01,  3.5158e-02,  1.8771e-02,\\n\",\n      \"           1.7612e-01,  3.9111e-01, -6.5084e-01,  6.1659e-01,  1.7997e-01,\\n\",\n      \"          -3.9050e-02, -3.8968e-01,  7.8072e-01, -6.3102e-01,  2.3746e-01,\\n\",\n      \"          -5.4918e-02,  3.5109e-01, -6.9286e-01, -2.8419e-01,  7.8028e-02,\\n\",\n      \"          -3.1589e-01, -3.9509e-01,  2.7848e-01, -1.8915e-02,  4.0646e-01,\\n\",\n      \"           1.8700e-01,  6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\\n\",\n      \"           1.7482e-01,  5.1712e-02,  3.2650e-01, -3.3498e-01,  2.5596e-01,\\n\",\n      \"          -6.6363e-01,  3.9568e-01,  6.6326e-01, -4.5198e-01],\\n\",\n      \"         [-4.4663e-01,  4.9992e-02, -1.1279e-01,  5.5714e-01,  2.9287e-01,\\n\",\n      \"           5.3430e-02, -3.2958e-02, -6.9619e-01,  3.7287e-01, -1.1730e-01,\\n\",\n      \"           4.7527e-01, -1.4236e-01,  1.0980e-01,  3.4374e-01,  4.4925e-02,\\n\",\n      \"           5.4476e-01,  1.3434e-01,  2.4798e-01,  1.4511e-01,  2.8671e-01,\\n\",\n      \"          -7.2405e-01, -4.0333e-02,  1.2978e-01, -1.1822e-01, -6.4893e-01,\\n\",\n      \"           1.3198e-01, -5.2837e-01, -3.7102e-01,  6.7838e-02,  8.5206e-02,\\n\",\n      \"           1.3851e-01, -3.6910e-02,  3.1990e-02,  9.5910e-02, -2.7345e-01,\\n\",\n      \"          -9.7926e-02, -6.3590e-01,  3.5229e-01,  6.0026e-01,  8.7420e-02,\\n\",\n      \"          -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\\n\",\n      \"           3.1581e-01, -3.0370e-01,  6.5536e-02,  1.5106e-01,  1.2373e-01,\\n\",\n      \"           1.4191e-01,  5.0884e-01,  1.8682e-01, -4.1712e-01, -1.7723e-01,\\n\",\n      \"           2.8597e-01, -5.5452e-01,  2.8961e-01,  2.7804e-01, -1.9407e-01,\\n\",\n      \"          -4.4526e-01,  3.7736e-01,  3.5711e-01, -3.5176e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1324e-01,  5.2025e-01,  5.0695e-01,  3.2545e-01, -5.7762e-01,\\n\",\n      \"          -7.3069e-01, -1.0028e-01,  4.7019e-01, -3.5687e-01, -7.2285e-01,\\n\",\n      \"           2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01,  4.3462e-02,\\n\",\n      \"           3.6790e-02,  7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\\n\",\n      \"          -4.6593e-01, -5.6537e-01,  5.0546e-01,  8.1896e-01, -2.9426e-01,\\n\",\n      \"          -7.9558e-01,  8.4542e-01,  5.4046e-01,  5.8609e-01,  5.0922e-01,\\n\",\n      \"          -1.6546e-01,  6.0234e-01, -5.6518e-01,  8.5887e-01, -4.5587e-01,\\n\",\n      \"          -3.5113e-02, -3.1436e-01,  7.4797e-01, -6.6369e-01, -2.0690e-01,\\n\",\n      \"           7.0571e-01, -4.6216e-01, -7.8772e-01,  3.5452e-01,  2.6347e-01,\\n\",\n      \"          -4.1197e-01, -4.6747e-01,  4.9282e-01,  6.8443e-02,  2.7213e-02,\\n\",\n      \"           3.8875e-01,  6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\\n\",\n      \"           8.9968e-01,  4.0096e-01,  9.4859e-02, -7.1174e-01,  3.0494e-02,\\n\",\n      \"          -7.4953e-01,  8.1606e-02,  6.2147e-01, -2.7554e-01],\\n\",\n      \"         [-4.6765e-01,  3.5594e-01, -4.6087e-01,  6.5994e-01,  1.5107e-01,\\n\",\n      \"          -4.9836e-02,  3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\\n\",\n      \"           8.9305e-02,  4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\\n\",\n      \"           1.2247e-01, -7.1975e-02, -4.5834e-02,  8.9275e-02,  1.3229e-01,\\n\",\n      \"          -3.2071e-01,  8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\\n\",\n      \"           5.4388e-02,  2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\\n\",\n      \"           2.7214e-01, -1.7248e-01,  2.0683e-01, -7.7345e-03, -2.9245e-01,\\n\",\n      \"          -1.5008e-01, -4.2409e-01, -2.4032e-01,  2.3066e-01,  1.9569e-01,\\n\",\n      \"          -3.6902e-01,  2.6708e-01, -1.5023e-01, -1.7348e-01,  3.3117e-01,\\n\",\n      \"           1.2738e-01, -2.8993e-01, -1.2677e-01,  1.4847e-01,  3.7645e-01,\\n\",\n      \"          -1.9285e-01,  4.2530e-01,  2.1337e-01, -5.1065e-01, -3.3662e-01,\\n\",\n      \"           1.3590e-02,  2.5094e-02,  2.0697e-01,  1.3003e-01, -4.5041e-01,\\n\",\n      \"           1.9167e-01,  5.0020e-01,  1.3076e-01, -4.9900e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8282e-02,  4.8322e-01, -4.5622e-02,  2.9975e-01, -1.3149e-02,\\n\",\n      \"          -7.4066e-01,  1.9927e-01,  7.5937e-01, -1.8768e-01, -1.1899e-01,\\n\",\n      \"          -2.0289e-01,  3.6612e-01, -5.8996e-01, -5.1666e-01,  5.3625e-03,\\n\",\n      \"           3.3709e-01,  7.8384e-01, -7.4147e-01,  1.6300e-01, -7.4821e-01,\\n\",\n      \"          -3.9660e-01, -4.5093e-01,  1.7294e-01,  9.2179e-01,  3.1065e-01,\\n\",\n      \"          -3.7260e-01,  6.1350e-01,  2.4377e-01,  5.7021e-01,  5.0771e-01,\\n\",\n      \"          -5.7705e-01, -1.0129e-02, -3.0245e-02,  7.3764e-01, -6.2183e-01,\\n\",\n      \"           8.5102e-02,  4.4259e-02,  5.7435e-01, -1.3313e-01,  9.5835e-02,\\n\",\n      \"           7.3970e-01, -8.5254e-02, -2.9058e-01,  6.6853e-01,  1.4284e-01,\\n\",\n      \"          -4.4259e-01, -3.5658e-01,  3.1570e-02,  4.1088e-01,  5.8174e-01,\\n\",\n      \"           1.7225e-01,  5.0016e-01, -2.3336e-01,  1.1785e-01, -8.1593e-03,\\n\",\n      \"           9.0696e-01,  5.1017e-02,  2.1235e-01, -3.1208e-01,  3.0785e-01,\\n\",\n      \"          -7.9104e-01, -4.6839e-01,  5.5536e-01, -1.8962e-01],\\n\",\n      \"         [-2.9474e-01,  4.1033e-01, -1.0640e-01,  2.2170e-01,  3.7699e-01,\\n\",\n      \"           1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\\n\",\n      \"          -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\\n\",\n      \"           5.2941e-01, -6.7271e-02,  4.9393e-01, -3.1223e-01, -1.9308e-01,\\n\",\n      \"           4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01,  2.1149e-02,\\n\",\n      \"           3.4688e-02, -2.6599e-02,  5.6323e-02, -2.3462e-01, -2.7575e-02,\\n\",\n      \"           3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\\n\",\n      \"           3.9748e-02, -5.5766e-02, -1.8779e-01,  3.7293e-01, -4.3215e-01,\\n\",\n      \"          -3.2607e-01,  4.7629e-01,  1.2417e-01,  8.7553e-02,  7.4922e-02,\\n\",\n      \"           1.6414e-02, -3.7098e-01,  1.1215e-01,  5.0214e-01,  8.5971e-02,\\n\",\n      \"          -1.8960e-01,  1.6976e-01,  5.8928e-02, -3.7863e-01, -1.9777e-02,\\n\",\n      \"           6.0712e-02,  3.4529e-01,  1.6618e-01, -2.3556e-01,  9.5518e-02,\\n\",\n      \"           3.2406e-01,  6.3608e-02,  1.7180e-01, -2.6295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.4039e-02,  8.8844e-01,  3.3888e-01, -9.1417e-02,  7.9695e-02,\\n\",\n      \"          -2.3450e-01, -4.4034e-01,  6.3989e-01,  3.7835e-02,  3.9992e-01,\\n\",\n      \"          -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\\n\",\n      \"           3.3464e-01,  6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\\n\",\n      \"          -2.7994e-01, -6.0982e-01,  1.4235e-01,  2.2770e-01,  1.7566e-01,\\n\",\n      \"          -5.3978e-01,  4.8615e-01,  3.1977e-01,  4.6543e-01,  3.2679e-01,\\n\",\n      \"           3.8429e-01, -4.0738e-01, -4.7408e-01,  1.6175e-01,  2.3650e-01,\\n\",\n      \"          -6.0986e-01, -1.1444e-01,  8.2822e-01, -3.4007e-01, -3.5199e-01,\\n\",\n      \"           8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01,  8.2066e-02,\\n\",\n      \"          -4.1364e-01, -5.2925e-01,  5.9958e-01,  3.0593e-01,  5.9111e-01,\\n\",\n      \"           3.8023e-01,  2.2484e-01, -5.9437e-01,  4.3079e-01, -2.0735e-01,\\n\",\n      \"           8.2035e-01, -4.0924e-02,  5.6995e-01,  1.0385e-01,  4.4414e-01,\\n\",\n      \"          -8.6832e-01, -2.6419e-01,  8.3170e-01, -7.2663e-01],\\n\",\n      \"         [-5.8141e-01,  1.1048e-01, -6.2374e-01,  5.0587e-01,  2.5336e-01,\\n\",\n      \"          -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\\n\",\n      \"           4.2063e-01, -2.4931e-01,  3.9692e-01, -1.5809e-01,  3.2859e-01,\\n\",\n      \"          -2.9822e-01, -1.9858e-02,  5.5853e-01,  7.8639e-02,  4.8963e-02,\\n\",\n      \"          -2.2860e-01,  4.3759e-01,  2.3944e-01,  4.2009e-01,  1.3628e-01,\\n\",\n      \"           1.3792e-01,  1.2585e-01,  5.8101e-02, -5.4331e-01, -7.2530e-03,\\n\",\n      \"           8.0666e-02, -2.2224e-02,  6.3223e-01,  9.6790e-02, -4.9236e-01,\\n\",\n      \"          -8.0862e-02, -2.6275e-01,  4.9909e-01,  7.1494e-01,  3.2871e-01,\\n\",\n      \"          -7.4854e-01,  5.1980e-01,  1.2756e-01,  1.5925e-01, -1.1948e-01,\\n\",\n      \"          -9.3237e-02, -3.0931e-01, -4.2692e-01,  2.9031e-01,  2.0414e-02,\\n\",\n      \"          -3.2254e-01, -3.8900e-01,  5.7919e-01, -7.3999e-01,  1.2747e-01,\\n\",\n      \"          -1.9365e-02,  4.8622e-01,  6.7972e-02, -6.2490e-01, -5.0826e-01,\\n\",\n      \"           2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.6193e-01,  5.5425e-01,  5.4040e-01, -3.0972e-01, -1.3313e-01,\\n\",\n      \"          -6.7800e-01, -4.0654e-01,  4.6998e-01,  1.0506e-02, -4.1220e-01,\\n\",\n      \"          -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\\n\",\n      \"           7.3778e-02,  3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\\n\",\n      \"          -4.0731e-01, -4.5251e-01,  2.7892e-01,  6.7418e-02, -1.8913e-01,\\n\",\n      \"          -7.8529e-01,  7.4795e-02,  3.1780e-01, -5.6582e-02, -2.6386e-02,\\n\",\n      \"           5.4243e-01, -1.1841e-01, -3.2193e-01,  4.1168e-01,  6.0450e-01,\\n\",\n      \"          -1.9057e-01, -1.6040e-01,  5.1988e-01,  2.5761e-01, -2.8185e-01,\\n\",\n      \"           1.6285e-01, -9.2601e-02, -2.9516e-01,  1.5801e-01, -3.4487e-01,\\n\",\n      \"          -2.4956e-01, -4.2876e-01,  4.0097e-01,  7.6141e-02,  6.9152e-02,\\n\",\n      \"          -1.9961e-01,  1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\\n\",\n      \"           7.0492e-01,  7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\\n\",\n      \"          -7.6009e-01,  2.2291e-01,  6.5275e-01, -8.7851e-01],\\n\",\n      \"         [-5.2118e-01,  5.0256e-01, -5.8167e-01,  1.1051e-01,  1.7868e-01,\\n\",\n      \"          -4.7288e-01, -5.4152e-01, -7.2585e-01,  4.8291e-01, -3.2155e-01,\\n\",\n      \"           5.4432e-01, -3.7827e-01,  1.8096e-01,  5.5709e-01,  3.6829e-01,\\n\",\n      \"          -4.2694e-01, -1.1016e-01,  3.8142e-01,  7.3456e-01,  1.3955e-01,\\n\",\n      \"          -6.2690e-01,  4.6662e-01,  9.9586e-03,  4.4347e-01, -1.2285e-01,\\n\",\n      \"           2.4158e-01, -1.9818e-02,  3.2224e-02, -4.5263e-03,  9.7170e-02,\\n\",\n      \"          -2.6790e-02,  3.4196e-01,  5.5448e-01, -2.6957e-01, -4.7481e-01,\\n\",\n      \"           2.5820e-01, -1.6188e-01,  1.8216e-01,  4.3528e-01,  4.1423e-02,\\n\",\n      \"           3.8483e-01,  2.9323e-01, -3.9919e-02,  2.4917e-02, -6.6221e-01,\\n\",\n      \"           4.4238e-02, -1.3296e-01, -5.2108e-01,  4.3413e-02,  2.4199e-01,\\n\",\n      \"           1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\\n\",\n      \"          -2.2352e-01, -4.5641e-01,  6.2054e-04, -6.1068e-01, -2.4117e-02,\\n\",\n      \"          -6.6375e-01, -2.8839e-01,  9.2161e-03, -1.7272e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.2020e-01,  8.7811e-01,  6.2669e-01, -1.2818e-01, -1.8441e-01,\\n\",\n      \"          -6.0717e-01, -7.9754e-01,  5.0410e-01,  4.0985e-01, -6.4446e-02,\\n\",\n      \"           1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01,  1.8644e-01,\\n\",\n      \"           4.3668e-01,  6.4194e-01, -4.0182e-01,  5.6554e-01, -5.9408e-01,\\n\",\n      \"          -2.6671e-01, -4.0951e-01, -1.2089e-01,  1.1193e-01,  3.2120e-01,\\n\",\n      \"          -6.5532e-01,  1.4062e-01,  2.8029e-01,  8.2498e-02, -1.1054e-01,\\n\",\n      \"           7.0519e-01, -6.9252e-01, -2.9735e-01,  3.8513e-01,  3.2410e-01,\\n\",\n      \"          -7.1698e-03, -4.7982e-02,  6.5625e-01, -2.5359e-01, -3.1089e-01,\\n\",\n      \"           1.1211e-01,  2.1855e-01, -1.9636e-01,  1.6137e-01, -5.1002e-01,\\n\",\n      \"          -3.1695e-01, -3.5947e-01,  3.2188e-01,  5.8348e-01,  3.8076e-01,\\n\",\n      \"          -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01,  6.6140e-02,\\n\",\n      \"           6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01,  7.7110e-01,\\n\",\n      \"          -7.8675e-01, -3.0830e-01,  2.2900e-01, -7.8719e-01],\\n\",\n      \"         [-4.0451e-01,  8.7136e-01,  2.0729e-01, -1.9370e-02, -4.0648e-02,\\n\",\n      \"          -4.8286e-01, -8.0573e-01, -2.4901e-01,  5.7310e-01, -5.8490e-02,\\n\",\n      \"           6.0313e-01, -8.4063e-01, -2.5698e-01,  3.3939e-01,  3.4959e-01,\\n\",\n      \"           3.7069e-01,  4.3289e-01,  9.9988e-02,  9.0438e-01, -3.6257e-01,\\n\",\n      \"          -4.4119e-01,  4.2917e-01, -2.6990e-01,  4.2311e-01,  2.7980e-01,\\n\",\n      \"           1.9899e-01,  8.3125e-02,  1.3034e-01,  9.0406e-02, -2.5047e-02,\\n\",\n      \"           5.0993e-01, -6.0698e-01,  2.0975e-01,  2.8351e-01, -1.9944e-01,\\n\",\n      \"           2.5476e-01, -6.0071e-02,  4.2573e-01,  3.9131e-03, -9.8624e-02,\\n\",\n      \"           1.9323e-01,  5.3431e-01, -1.0846e-01,  8.3219e-02, -5.1852e-01,\\n\",\n      \"          -1.0182e-01,  8.0068e-03, -9.8824e-02,  5.1580e-01,  4.8648e-01,\\n\",\n      \"          -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\\n\",\n      \"           2.1330e-01, -6.1276e-01,  1.6057e-01, -6.3184e-01,  8.1466e-01,\\n\",\n      \"          -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0104e-01,  6.5426e-01,  7.7138e-01,  5.6748e-01, -4.7691e-01,\\n\",\n      \"          -5.2622e-01, -8.1877e-01, -8.8119e-01,  6.0301e-01, -1.5291e-01,\\n\",\n      \"           4.0511e-01, -8.7244e-01, -3.8247e-01,  3.3862e-01,  1.2650e-01,\\n\",\n      \"           7.8641e-01,  6.1568e-01,  4.3722e-01,  7.2865e-01, -6.2760e-01,\\n\",\n      \"          -9.0425e-01, -3.7571e-01, -8.7384e-02,  2.0393e-01,  1.7595e-01,\\n\",\n      \"          -9.6426e-01,  6.6673e-01,  1.5598e-01, -2.9040e-01,  5.8154e-02,\\n\",\n      \"           8.7598e-01, -3.7915e-01,  3.1616e-01, -1.1750e-01, -5.0382e-01,\\n\",\n      \"           2.9781e-01, -8.1428e-01,  8.4853e-01,  6.1756e-01, -2.0564e-01,\\n\",\n      \"           1.9886e-02, -5.7905e-01, -8.4476e-01,  5.3807e-01, -3.7935e-01,\\n\",\n      \"          -2.3593e-01, -5.5078e-01,  5.0617e-01,  7.8397e-01,  8.9721e-01,\\n\",\n      \"          -5.4892e-01,  5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\\n\",\n      \"           9.1601e-01, -8.3470e-01,  3.3360e-01,  9.7394e-01,  6.7423e-01,\\n\",\n      \"          -6.3171e-01, -5.4024e-02,  9.7447e-01, -9.5411e-01],\\n\",\n      \"         [-5.6495e-01,  6.4817e-01,  6.1315e-01,  6.0038e-01, -4.1307e-01,\\n\",\n      \"          -4.5898e-01, -8.2032e-01, -9.4217e-01,  6.8682e-01, -1.7263e-01,\\n\",\n      \"           6.3151e-01, -8.4917e-01, -2.9447e-01,  5.2271e-01,  2.1862e-01,\\n\",\n      \"           8.2034e-01,  4.7811e-01,  6.8474e-01,  9.2941e-01, -4.2096e-01,\\n\",\n      \"          -9.4001e-01,  3.0864e-01, -1.8619e-01,  4.4706e-01,  1.4602e-01,\\n\",\n      \"          -9.2286e-01,  6.6321e-01,  5.4442e-02, -3.0118e-01,  8.8396e-02,\\n\",\n      \"           8.6066e-01, -2.5356e-01,  5.8141e-01, -1.4684e-03, -6.8510e-01,\\n\",\n      \"           4.2343e-01, -8.3636e-01,  7.4505e-01,  6.3347e-01, -5.5176e-02,\\n\",\n      \"           8.0538e-02, -5.6538e-01, -8.6216e-01,  4.8400e-01, -3.9852e-01,\\n\",\n      \"          -5.4495e-02, -3.7059e-01,  3.6633e-01,  7.5105e-01,  9.1164e-01,\\n\",\n      \"          -5.1931e-01,  5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\\n\",\n      \"           8.3216e-01, -8.5892e-01,  4.5073e-01,  9.6752e-01,  7.1628e-01,\\n\",\n      \"          -5.6690e-01, -2.2989e-01,  9.6539e-01, -9.2093e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [4]个单词\\n\",\n      \"解码器输入dec_input: tensor([22,  9])\\n\",\n      \"dec_state: tensor([[[-0.3367,  0.8923, -0.4362,  0.8838,  0.4453,  0.3998, -0.7963,\\n\",\n      \"           0.1455,  0.4692, -0.4375, -0.1632, -0.9619, -0.7158,  0.6808,\\n\",\n      \"           0.0093, -0.4446, -0.8983, -0.5874, -0.2650,  0.6057,  0.4927,\\n\",\n      \"          -0.8993,  0.5555,  0.7892,  0.5625, -0.9220, -0.7776, -0.3255,\\n\",\n      \"          -0.9072, -0.5854, -0.8839,  0.7639,  0.0249,  0.6477, -0.7281,\\n\",\n      \"          -0.8317,  0.5472, -0.0640, -0.9533, -0.5750, -0.3701, -0.0992,\\n\",\n      \"           0.4957,  0.4315, -0.6219,  0.9187, -0.9761, -0.6713,  0.0438,\\n\",\n      \"           0.6649,  0.1394,  0.7033,  0.2590, -0.8198, -0.7666, -0.1088,\\n\",\n      \"           0.3651,  0.4913,  0.5911,  0.8541, -0.7342,  0.9547,  0.0896,\\n\",\n      \"          -0.0423],\\n\",\n      \"         [ 0.0384,  0.5980, -0.0104,  0.8848,  0.7510,  0.3383, -0.3988,\\n\",\n      \"           0.0831,  0.7640, -0.1490, -0.0752, -0.6116, -0.7376,  0.7719,\\n\",\n      \"           0.6491,  0.0703, -0.0218, -0.0756, -0.0145,  0.3848,  0.6203,\\n\",\n      \"           0.0160, -0.2018,  0.8233, -0.2942, -0.9315, -0.6497,  0.2754,\\n\",\n      \"          -0.8982, -0.4249, -0.6003,  0.1473, -0.5484,  0.2651, -0.6002,\\n\",\n      \"          -0.2391,  0.6637,  0.3562, -0.0432, -0.4881, -0.4381,  0.3546,\\n\",\n      \"           0.1039,  0.6856, -0.6636,  0.0796, -0.3539,  0.3958, -0.5594,\\n\",\n      \"           0.7981,  0.8941,  0.2880,  0.3014, -0.2678, -0.8450,  0.1873,\\n\",\n      \"           0.7214,  0.5735,  0.3525,  0.5950, -0.7695,  0.6803,  0.0368,\\n\",\n      \"           0.8036]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.8794e-02,  5.3342e-01,  2.7767e-01,  3.9600e-01, -3.6861e-01,\\n\",\n      \"           1.5557e-01, -1.0969e-01,  1.7756e-01, -1.0504e-01, -2.7521e-01,\\n\",\n      \"           2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03,  3.0370e-01,\\n\",\n      \"          -1.8936e-01,  6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\\n\",\n      \"          -6.2699e-01, -5.6061e-01,  5.4069e-01,  2.7735e-01, -3.8531e-01,\\n\",\n      \"          -5.4473e-01,  6.6829e-02,  5.7072e-01,  3.5158e-02,  1.8771e-02,\\n\",\n      \"           1.7612e-01,  3.9111e-01, -6.5084e-01,  6.1659e-01,  1.7997e-01,\\n\",\n      \"          -3.9050e-02, -3.8968e-01,  7.8072e-01, -6.3102e-01,  2.3746e-01,\\n\",\n      \"          -5.4918e-02,  3.5109e-01, -6.9286e-01, -2.8419e-01,  7.8028e-02,\\n\",\n      \"          -3.1589e-01, -3.9509e-01,  2.7848e-01, -1.8915e-02,  4.0646e-01,\\n\",\n      \"           1.8700e-01,  6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\\n\",\n      \"           1.7482e-01,  5.1712e-02,  3.2650e-01, -3.3498e-01,  2.5596e-01,\\n\",\n      \"          -6.6363e-01,  3.9568e-01,  6.6326e-01, -4.5198e-01],\\n\",\n      \"         [-4.4663e-01,  4.9992e-02, -1.1279e-01,  5.5714e-01,  2.9287e-01,\\n\",\n      \"           5.3430e-02, -3.2958e-02, -6.9619e-01,  3.7287e-01, -1.1730e-01,\\n\",\n      \"           4.7527e-01, -1.4236e-01,  1.0980e-01,  3.4374e-01,  4.4925e-02,\\n\",\n      \"           5.4476e-01,  1.3434e-01,  2.4798e-01,  1.4511e-01,  2.8671e-01,\\n\",\n      \"          -7.2405e-01, -4.0333e-02,  1.2978e-01, -1.1822e-01, -6.4893e-01,\\n\",\n      \"           1.3198e-01, -5.2837e-01, -3.7102e-01,  6.7838e-02,  8.5206e-02,\\n\",\n      \"           1.3851e-01, -3.6910e-02,  3.1990e-02,  9.5910e-02, -2.7345e-01,\\n\",\n      \"          -9.7926e-02, -6.3590e-01,  3.5229e-01,  6.0026e-01,  8.7420e-02,\\n\",\n      \"          -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\\n\",\n      \"           3.1581e-01, -3.0370e-01,  6.5536e-02,  1.5106e-01,  1.2373e-01,\\n\",\n      \"           1.4191e-01,  5.0884e-01,  1.8682e-01, -4.1712e-01, -1.7723e-01,\\n\",\n      \"           2.8597e-01, -5.5452e-01,  2.8961e-01,  2.7804e-01, -1.9407e-01,\\n\",\n      \"          -4.4526e-01,  3.7736e-01,  3.5711e-01, -3.5176e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1324e-01,  5.2025e-01,  5.0695e-01,  3.2545e-01, -5.7762e-01,\\n\",\n      \"          -7.3069e-01, -1.0028e-01,  4.7019e-01, -3.5687e-01, -7.2285e-01,\\n\",\n      \"           2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01,  4.3462e-02,\\n\",\n      \"           3.6790e-02,  7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\\n\",\n      \"          -4.6593e-01, -5.6537e-01,  5.0546e-01,  8.1896e-01, -2.9426e-01,\\n\",\n      \"          -7.9558e-01,  8.4542e-01,  5.4046e-01,  5.8609e-01,  5.0922e-01,\\n\",\n      \"          -1.6546e-01,  6.0234e-01, -5.6518e-01,  8.5887e-01, -4.5587e-01,\\n\",\n      \"          -3.5113e-02, -3.1436e-01,  7.4797e-01, -6.6369e-01, -2.0690e-01,\\n\",\n      \"           7.0571e-01, -4.6216e-01, -7.8772e-01,  3.5452e-01,  2.6347e-01,\\n\",\n      \"          -4.1197e-01, -4.6747e-01,  4.9282e-01,  6.8443e-02,  2.7213e-02,\\n\",\n      \"           3.8875e-01,  6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\\n\",\n      \"           8.9968e-01,  4.0096e-01,  9.4859e-02, -7.1174e-01,  3.0494e-02,\\n\",\n      \"          -7.4953e-01,  8.1606e-02,  6.2147e-01, -2.7554e-01],\\n\",\n      \"         [-4.6765e-01,  3.5594e-01, -4.6087e-01,  6.5994e-01,  1.5107e-01,\\n\",\n      \"          -4.9836e-02,  3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\\n\",\n      \"           8.9305e-02,  4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\\n\",\n      \"           1.2247e-01, -7.1975e-02, -4.5834e-02,  8.9275e-02,  1.3229e-01,\\n\",\n      \"          -3.2071e-01,  8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\\n\",\n      \"           5.4388e-02,  2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\\n\",\n      \"           2.7214e-01, -1.7248e-01,  2.0683e-01, -7.7345e-03, -2.9245e-01,\\n\",\n      \"          -1.5008e-01, -4.2409e-01, -2.4032e-01,  2.3066e-01,  1.9569e-01,\\n\",\n      \"          -3.6902e-01,  2.6708e-01, -1.5023e-01, -1.7348e-01,  3.3117e-01,\\n\",\n      \"           1.2738e-01, -2.8993e-01, -1.2677e-01,  1.4847e-01,  3.7645e-01,\\n\",\n      \"          -1.9285e-01,  4.2530e-01,  2.1337e-01, -5.1065e-01, -3.3662e-01,\\n\",\n      \"           1.3590e-02,  2.5094e-02,  2.0697e-01,  1.3003e-01, -4.5041e-01,\\n\",\n      \"           1.9167e-01,  5.0020e-01,  1.3076e-01, -4.9900e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8282e-02,  4.8322e-01, -4.5622e-02,  2.9975e-01, -1.3149e-02,\\n\",\n      \"          -7.4066e-01,  1.9927e-01,  7.5937e-01, -1.8768e-01, -1.1899e-01,\\n\",\n      \"          -2.0289e-01,  3.6612e-01, -5.8996e-01, -5.1666e-01,  5.3625e-03,\\n\",\n      \"           3.3709e-01,  7.8384e-01, -7.4147e-01,  1.6300e-01, -7.4821e-01,\\n\",\n      \"          -3.9660e-01, -4.5093e-01,  1.7294e-01,  9.2179e-01,  3.1065e-01,\\n\",\n      \"          -3.7260e-01,  6.1350e-01,  2.4377e-01,  5.7021e-01,  5.0771e-01,\\n\",\n      \"          -5.7705e-01, -1.0129e-02, -3.0245e-02,  7.3764e-01, -6.2183e-01,\\n\",\n      \"           8.5102e-02,  4.4259e-02,  5.7435e-01, -1.3313e-01,  9.5835e-02,\\n\",\n      \"           7.3970e-01, -8.5254e-02, -2.9058e-01,  6.6853e-01,  1.4284e-01,\\n\",\n      \"          -4.4259e-01, -3.5658e-01,  3.1570e-02,  4.1088e-01,  5.8174e-01,\\n\",\n      \"           1.7225e-01,  5.0016e-01, -2.3336e-01,  1.1785e-01, -8.1593e-03,\\n\",\n      \"           9.0696e-01,  5.1017e-02,  2.1235e-01, -3.1208e-01,  3.0785e-01,\\n\",\n      \"          -7.9104e-01, -4.6839e-01,  5.5536e-01, -1.8962e-01],\\n\",\n      \"         [-2.9474e-01,  4.1033e-01, -1.0640e-01,  2.2170e-01,  3.7699e-01,\\n\",\n      \"           1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\\n\",\n      \"          -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\\n\",\n      \"           5.2941e-01, -6.7271e-02,  4.9393e-01, -3.1223e-01, -1.9308e-01,\\n\",\n      \"           4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01,  2.1149e-02,\\n\",\n      \"           3.4688e-02, -2.6599e-02,  5.6323e-02, -2.3462e-01, -2.7575e-02,\\n\",\n      \"           3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\\n\",\n      \"           3.9748e-02, -5.5766e-02, -1.8779e-01,  3.7293e-01, -4.3215e-01,\\n\",\n      \"          -3.2607e-01,  4.7629e-01,  1.2417e-01,  8.7553e-02,  7.4922e-02,\\n\",\n      \"           1.6414e-02, -3.7098e-01,  1.1215e-01,  5.0214e-01,  8.5971e-02,\\n\",\n      \"          -1.8960e-01,  1.6976e-01,  5.8928e-02, -3.7863e-01, -1.9777e-02,\\n\",\n      \"           6.0712e-02,  3.4529e-01,  1.6618e-01, -2.3556e-01,  9.5518e-02,\\n\",\n      \"           3.2406e-01,  6.3608e-02,  1.7180e-01, -2.6295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.4039e-02,  8.8844e-01,  3.3888e-01, -9.1417e-02,  7.9695e-02,\\n\",\n      \"          -2.3450e-01, -4.4034e-01,  6.3989e-01,  3.7835e-02,  3.9992e-01,\\n\",\n      \"          -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\\n\",\n      \"           3.3464e-01,  6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\\n\",\n      \"          -2.7994e-01, -6.0982e-01,  1.4235e-01,  2.2770e-01,  1.7566e-01,\\n\",\n      \"          -5.3978e-01,  4.8615e-01,  3.1977e-01,  4.6543e-01,  3.2679e-01,\\n\",\n      \"           3.8429e-01, -4.0738e-01, -4.7408e-01,  1.6175e-01,  2.3650e-01,\\n\",\n      \"          -6.0986e-01, -1.1444e-01,  8.2822e-01, -3.4007e-01, -3.5199e-01,\\n\",\n      \"           8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01,  8.2066e-02,\\n\",\n      \"          -4.1364e-01, -5.2925e-01,  5.9958e-01,  3.0593e-01,  5.9111e-01,\\n\",\n      \"           3.8023e-01,  2.2484e-01, -5.9437e-01,  4.3079e-01, -2.0735e-01,\\n\",\n      \"           8.2035e-01, -4.0924e-02,  5.6995e-01,  1.0385e-01,  4.4414e-01,\\n\",\n      \"          -8.6832e-01, -2.6419e-01,  8.3170e-01, -7.2663e-01],\\n\",\n      \"         [-5.8141e-01,  1.1048e-01, -6.2374e-01,  5.0587e-01,  2.5336e-01,\\n\",\n      \"          -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\\n\",\n      \"           4.2063e-01, -2.4931e-01,  3.9692e-01, -1.5809e-01,  3.2859e-01,\\n\",\n      \"          -2.9822e-01, -1.9858e-02,  5.5853e-01,  7.8639e-02,  4.8963e-02,\\n\",\n      \"          -2.2860e-01,  4.3759e-01,  2.3944e-01,  4.2009e-01,  1.3628e-01,\\n\",\n      \"           1.3792e-01,  1.2585e-01,  5.8101e-02, -5.4331e-01, -7.2530e-03,\\n\",\n      \"           8.0666e-02, -2.2224e-02,  6.3223e-01,  9.6790e-02, -4.9236e-01,\\n\",\n      \"          -8.0862e-02, -2.6275e-01,  4.9909e-01,  7.1494e-01,  3.2871e-01,\\n\",\n      \"          -7.4854e-01,  5.1980e-01,  1.2756e-01,  1.5925e-01, -1.1948e-01,\\n\",\n      \"          -9.3237e-02, -3.0931e-01, -4.2692e-01,  2.9031e-01,  2.0414e-02,\\n\",\n      \"          -3.2254e-01, -3.8900e-01,  5.7919e-01, -7.3999e-01,  1.2747e-01,\\n\",\n      \"          -1.9365e-02,  4.8622e-01,  6.7972e-02, -6.2490e-01, -5.0826e-01,\\n\",\n      \"           2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.6193e-01,  5.5425e-01,  5.4040e-01, -3.0972e-01, -1.3313e-01,\\n\",\n      \"          -6.7800e-01, -4.0654e-01,  4.6998e-01,  1.0506e-02, -4.1220e-01,\\n\",\n      \"          -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\\n\",\n      \"           7.3778e-02,  3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\\n\",\n      \"          -4.0731e-01, -4.5251e-01,  2.7892e-01,  6.7418e-02, -1.8913e-01,\\n\",\n      \"          -7.8529e-01,  7.4795e-02,  3.1780e-01, -5.6582e-02, -2.6386e-02,\\n\",\n      \"           5.4243e-01, -1.1841e-01, -3.2193e-01,  4.1168e-01,  6.0450e-01,\\n\",\n      \"          -1.9057e-01, -1.6040e-01,  5.1988e-01,  2.5761e-01, -2.8185e-01,\\n\",\n      \"           1.6285e-01, -9.2601e-02, -2.9516e-01,  1.5801e-01, -3.4487e-01,\\n\",\n      \"          -2.4956e-01, -4.2876e-01,  4.0097e-01,  7.6141e-02,  6.9152e-02,\\n\",\n      \"          -1.9961e-01,  1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\\n\",\n      \"           7.0492e-01,  7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\\n\",\n      \"          -7.6009e-01,  2.2291e-01,  6.5275e-01, -8.7851e-01],\\n\",\n      \"         [-5.2118e-01,  5.0256e-01, -5.8167e-01,  1.1051e-01,  1.7868e-01,\\n\",\n      \"          -4.7288e-01, -5.4152e-01, -7.2585e-01,  4.8291e-01, -3.2155e-01,\\n\",\n      \"           5.4432e-01, -3.7827e-01,  1.8096e-01,  5.5709e-01,  3.6829e-01,\\n\",\n      \"          -4.2694e-01, -1.1016e-01,  3.8142e-01,  7.3456e-01,  1.3955e-01,\\n\",\n      \"          -6.2690e-01,  4.6662e-01,  9.9586e-03,  4.4347e-01, -1.2285e-01,\\n\",\n      \"           2.4158e-01, -1.9818e-02,  3.2224e-02, -4.5263e-03,  9.7170e-02,\\n\",\n      \"          -2.6790e-02,  3.4196e-01,  5.5448e-01, -2.6957e-01, -4.7481e-01,\\n\",\n      \"           2.5820e-01, -1.6188e-01,  1.8216e-01,  4.3528e-01,  4.1423e-02,\\n\",\n      \"           3.8483e-01,  2.9323e-01, -3.9919e-02,  2.4917e-02, -6.6221e-01,\\n\",\n      \"           4.4238e-02, -1.3296e-01, -5.2108e-01,  4.3413e-02,  2.4199e-01,\\n\",\n      \"           1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\\n\",\n      \"          -2.2352e-01, -4.5641e-01,  6.2054e-04, -6.1068e-01, -2.4117e-02,\\n\",\n      \"          -6.6375e-01, -2.8839e-01,  9.2161e-03, -1.7272e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.2020e-01,  8.7811e-01,  6.2669e-01, -1.2818e-01, -1.8441e-01,\\n\",\n      \"          -6.0717e-01, -7.9754e-01,  5.0410e-01,  4.0985e-01, -6.4446e-02,\\n\",\n      \"           1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01,  1.8644e-01,\\n\",\n      \"           4.3668e-01,  6.4194e-01, -4.0182e-01,  5.6554e-01, -5.9408e-01,\\n\",\n      \"          -2.6671e-01, -4.0951e-01, -1.2089e-01,  1.1193e-01,  3.2120e-01,\\n\",\n      \"          -6.5532e-01,  1.4062e-01,  2.8029e-01,  8.2498e-02, -1.1054e-01,\\n\",\n      \"           7.0519e-01, -6.9252e-01, -2.9735e-01,  3.8513e-01,  3.2410e-01,\\n\",\n      \"          -7.1698e-03, -4.7982e-02,  6.5625e-01, -2.5359e-01, -3.1089e-01,\\n\",\n      \"           1.1211e-01,  2.1855e-01, -1.9636e-01,  1.6137e-01, -5.1002e-01,\\n\",\n      \"          -3.1695e-01, -3.5947e-01,  3.2188e-01,  5.8348e-01,  3.8076e-01,\\n\",\n      \"          -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01,  6.6140e-02,\\n\",\n      \"           6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01,  7.7110e-01,\\n\",\n      \"          -7.8675e-01, -3.0830e-01,  2.2900e-01, -7.8719e-01],\\n\",\n      \"         [-4.0451e-01,  8.7136e-01,  2.0729e-01, -1.9370e-02, -4.0648e-02,\\n\",\n      \"          -4.8286e-01, -8.0573e-01, -2.4901e-01,  5.7310e-01, -5.8490e-02,\\n\",\n      \"           6.0313e-01, -8.4063e-01, -2.5698e-01,  3.3939e-01,  3.4959e-01,\\n\",\n      \"           3.7069e-01,  4.3289e-01,  9.9988e-02,  9.0438e-01, -3.6257e-01,\\n\",\n      \"          -4.4119e-01,  4.2917e-01, -2.6990e-01,  4.2311e-01,  2.7980e-01,\\n\",\n      \"           1.9899e-01,  8.3125e-02,  1.3034e-01,  9.0406e-02, -2.5047e-02,\\n\",\n      \"           5.0993e-01, -6.0698e-01,  2.0975e-01,  2.8351e-01, -1.9944e-01,\\n\",\n      \"           2.5476e-01, -6.0071e-02,  4.2573e-01,  3.9131e-03, -9.8624e-02,\\n\",\n      \"           1.9323e-01,  5.3431e-01, -1.0846e-01,  8.3219e-02, -5.1852e-01,\\n\",\n      \"          -1.0182e-01,  8.0068e-03, -9.8824e-02,  5.1580e-01,  4.8648e-01,\\n\",\n      \"          -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\\n\",\n      \"           2.1330e-01, -6.1276e-01,  1.6057e-01, -6.3184e-01,  8.1466e-01,\\n\",\n      \"          -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0104e-01,  6.5426e-01,  7.7138e-01,  5.6748e-01, -4.7691e-01,\\n\",\n      \"          -5.2622e-01, -8.1877e-01, -8.8119e-01,  6.0301e-01, -1.5291e-01,\\n\",\n      \"           4.0511e-01, -8.7244e-01, -3.8247e-01,  3.3862e-01,  1.2650e-01,\\n\",\n      \"           7.8641e-01,  6.1568e-01,  4.3722e-01,  7.2865e-01, -6.2760e-01,\\n\",\n      \"          -9.0425e-01, -3.7571e-01, -8.7384e-02,  2.0393e-01,  1.7595e-01,\\n\",\n      \"          -9.6426e-01,  6.6673e-01,  1.5598e-01, -2.9040e-01,  5.8154e-02,\\n\",\n      \"           8.7598e-01, -3.7915e-01,  3.1616e-01, -1.1750e-01, -5.0382e-01,\\n\",\n      \"           2.9781e-01, -8.1428e-01,  8.4853e-01,  6.1756e-01, -2.0564e-01,\\n\",\n      \"           1.9886e-02, -5.7905e-01, -8.4476e-01,  5.3807e-01, -3.7935e-01,\\n\",\n      \"          -2.3593e-01, -5.5078e-01,  5.0617e-01,  7.8397e-01,  8.9721e-01,\\n\",\n      \"          -5.4892e-01,  5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\\n\",\n      \"           9.1601e-01, -8.3470e-01,  3.3360e-01,  9.7394e-01,  6.7423e-01,\\n\",\n      \"          -6.3171e-01, -5.4024e-02,  9.7447e-01, -9.5411e-01],\\n\",\n      \"         [-5.6495e-01,  6.4817e-01,  6.1315e-01,  6.0038e-01, -4.1307e-01,\\n\",\n      \"          -4.5898e-01, -8.2032e-01, -9.4217e-01,  6.8682e-01, -1.7263e-01,\\n\",\n      \"           6.3151e-01, -8.4917e-01, -2.9447e-01,  5.2271e-01,  2.1862e-01,\\n\",\n      \"           8.2034e-01,  4.7811e-01,  6.8474e-01,  9.2941e-01, -4.2096e-01,\\n\",\n      \"          -9.4001e-01,  3.0864e-01, -1.8619e-01,  4.4706e-01,  1.4602e-01,\\n\",\n      \"          -9.2286e-01,  6.6321e-01,  5.4442e-02, -3.0118e-01,  8.8396e-02,\\n\",\n      \"           8.6066e-01, -2.5356e-01,  5.8141e-01, -1.4684e-03, -6.8510e-01,\\n\",\n      \"           4.2343e-01, -8.3636e-01,  7.4505e-01,  6.3347e-01, -5.5176e-02,\\n\",\n      \"           8.0538e-02, -5.6538e-01, -8.6216e-01,  4.8400e-01, -3.9852e-01,\\n\",\n      \"          -5.4495e-02, -3.7059e-01,  3.6633e-01,  7.5105e-01,  9.1164e-01,\\n\",\n      \"          -5.1931e-01,  5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\\n\",\n      \"           8.3216e-01, -8.5892e-01,  4.5073e-01,  9.6752e-01,  7.1628e-01,\\n\",\n      \"          -5.6690e-01, -2.2989e-01,  9.6539e-01, -9.2093e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [5]个单词\\n\",\n      \"解码器输入dec_input: tensor([ 3, 15])\\n\",\n      \"dec_state: tensor([[[ 0.9376,  0.9796, -0.9724,  0.8919,  0.2452,  0.4933, -0.8507,\\n\",\n      \"          -0.4310,  0.1226, -0.9720, -0.9620, -0.9773,  0.7710,  0.9302,\\n\",\n      \"          -0.9179,  0.6201,  0.8571, -0.8821, -0.8776,  0.6627,  0.5104,\\n\",\n      \"          -0.9036, -0.4885,  0.7935,  0.9652, -0.9507, -0.1816, -0.9444,\\n\",\n      \"           0.8940, -0.7134, -0.9545,  0.7820,  0.8247,  0.8818, -0.5374,\\n\",\n      \"          -0.9111,  0.8311, -0.8450,  0.8396,  0.5005, -0.7956,  0.6962,\\n\",\n      \"           0.6243, -0.7406, -0.7826,  0.9927, -0.8054,  0.8480, -0.0056,\\n\",\n      \"           0.6803, -0.8839,  0.9667,  0.4806, -0.8863,  0.9699, -0.3309,\\n\",\n      \"           0.9134,  0.4165, -0.5281, -0.1904, -0.8443,  0.9792,  0.0811,\\n\",\n      \"          -0.9178],\\n\",\n      \"         [ 0.5424,  0.7369, -0.2433,  0.7250,  0.7523,  0.2888, -0.5094,\\n\",\n      \"          -0.0754,  0.4618, -0.6091, -0.2164, -0.2908, -0.7601,  0.7786,\\n\",\n      \"           0.4238, -0.0468,  0.4545, -0.0505, -0.2010, -0.0385,  0.7828,\\n\",\n      \"          -0.2725,  0.5833,  0.7771, -0.2824, -0.8375,  0.0299,  0.2532,\\n\",\n      \"          -0.6545, -0.1112, -0.6816,  0.5323, -0.9026,  0.3828, -0.6406,\\n\",\n      \"          -0.6973,  0.5383,  0.1959, -0.0330, -0.3161, -0.8132,  0.5772,\\n\",\n      \"           0.3413,  0.6147, -0.2265,  0.4392, -0.4982,  0.6388, -0.5994,\\n\",\n      \"           0.7427,  0.8387,  0.2817,  0.0079, -0.2049, -0.5776,  0.3742,\\n\",\n      \"           0.1367,  0.5171,  0.2580,  0.6392, -0.8136,  0.6977,  0.0528,\\n\",\n      \"           0.6994]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.8794e-02,  5.3342e-01,  2.7767e-01,  3.9600e-01, -3.6861e-01,\\n\",\n      \"           1.5557e-01, -1.0969e-01,  1.7756e-01, -1.0504e-01, -2.7521e-01,\\n\",\n      \"           2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03,  3.0370e-01,\\n\",\n      \"          -1.8936e-01,  6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\\n\",\n      \"          -6.2699e-01, -5.6061e-01,  5.4069e-01,  2.7735e-01, -3.8531e-01,\\n\",\n      \"          -5.4473e-01,  6.6829e-02,  5.7072e-01,  3.5158e-02,  1.8771e-02,\\n\",\n      \"           1.7612e-01,  3.9111e-01, -6.5084e-01,  6.1659e-01,  1.7997e-01,\\n\",\n      \"          -3.9050e-02, -3.8968e-01,  7.8072e-01, -6.3102e-01,  2.3746e-01,\\n\",\n      \"          -5.4918e-02,  3.5109e-01, -6.9286e-01, -2.8419e-01,  7.8028e-02,\\n\",\n      \"          -3.1589e-01, -3.9509e-01,  2.7848e-01, -1.8915e-02,  4.0646e-01,\\n\",\n      \"           1.8700e-01,  6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\\n\",\n      \"           1.7482e-01,  5.1712e-02,  3.2650e-01, -3.3498e-01,  2.5596e-01,\\n\",\n      \"          -6.6363e-01,  3.9568e-01,  6.6326e-01, -4.5198e-01],\\n\",\n      \"         [-4.4663e-01,  4.9992e-02, -1.1279e-01,  5.5714e-01,  2.9287e-01,\\n\",\n      \"           5.3430e-02, -3.2958e-02, -6.9619e-01,  3.7287e-01, -1.1730e-01,\\n\",\n      \"           4.7527e-01, -1.4236e-01,  1.0980e-01,  3.4374e-01,  4.4925e-02,\\n\",\n      \"           5.4476e-01,  1.3434e-01,  2.4798e-01,  1.4511e-01,  2.8671e-01,\\n\",\n      \"          -7.2405e-01, -4.0333e-02,  1.2978e-01, -1.1822e-01, -6.4893e-01,\\n\",\n      \"           1.3198e-01, -5.2837e-01, -3.7102e-01,  6.7838e-02,  8.5206e-02,\\n\",\n      \"           1.3851e-01, -3.6910e-02,  3.1990e-02,  9.5910e-02, -2.7345e-01,\\n\",\n      \"          -9.7926e-02, -6.3590e-01,  3.5229e-01,  6.0026e-01,  8.7420e-02,\\n\",\n      \"          -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\\n\",\n      \"           3.1581e-01, -3.0370e-01,  6.5536e-02,  1.5106e-01,  1.2373e-01,\\n\",\n      \"           1.4191e-01,  5.0884e-01,  1.8682e-01, -4.1712e-01, -1.7723e-01,\\n\",\n      \"           2.8597e-01, -5.5452e-01,  2.8961e-01,  2.7804e-01, -1.9407e-01,\\n\",\n      \"          -4.4526e-01,  3.7736e-01,  3.5711e-01, -3.5176e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1324e-01,  5.2025e-01,  5.0695e-01,  3.2545e-01, -5.7762e-01,\\n\",\n      \"          -7.3069e-01, -1.0028e-01,  4.7019e-01, -3.5687e-01, -7.2285e-01,\\n\",\n      \"           2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01,  4.3462e-02,\\n\",\n      \"           3.6790e-02,  7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\\n\",\n      \"          -4.6593e-01, -5.6537e-01,  5.0546e-01,  8.1896e-01, -2.9426e-01,\\n\",\n      \"          -7.9558e-01,  8.4542e-01,  5.4046e-01,  5.8609e-01,  5.0922e-01,\\n\",\n      \"          -1.6546e-01,  6.0234e-01, -5.6518e-01,  8.5887e-01, -4.5587e-01,\\n\",\n      \"          -3.5113e-02, -3.1436e-01,  7.4797e-01, -6.6369e-01, -2.0690e-01,\\n\",\n      \"           7.0571e-01, -4.6216e-01, -7.8772e-01,  3.5452e-01,  2.6347e-01,\\n\",\n      \"          -4.1197e-01, -4.6747e-01,  4.9282e-01,  6.8443e-02,  2.7213e-02,\\n\",\n      \"           3.8875e-01,  6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\\n\",\n      \"           8.9968e-01,  4.0096e-01,  9.4859e-02, -7.1174e-01,  3.0494e-02,\\n\",\n      \"          -7.4953e-01,  8.1606e-02,  6.2147e-01, -2.7554e-01],\\n\",\n      \"         [-4.6765e-01,  3.5594e-01, -4.6087e-01,  6.5994e-01,  1.5107e-01,\\n\",\n      \"          -4.9836e-02,  3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\\n\",\n      \"           8.9305e-02,  4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\\n\",\n      \"           1.2247e-01, -7.1975e-02, -4.5834e-02,  8.9275e-02,  1.3229e-01,\\n\",\n      \"          -3.2071e-01,  8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\\n\",\n      \"           5.4388e-02,  2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\\n\",\n      \"           2.7214e-01, -1.7248e-01,  2.0683e-01, -7.7345e-03, -2.9245e-01,\\n\",\n      \"          -1.5008e-01, -4.2409e-01, -2.4032e-01,  2.3066e-01,  1.9569e-01,\\n\",\n      \"          -3.6902e-01,  2.6708e-01, -1.5023e-01, -1.7348e-01,  3.3117e-01,\\n\",\n      \"           1.2738e-01, -2.8993e-01, -1.2677e-01,  1.4847e-01,  3.7645e-01,\\n\",\n      \"          -1.9285e-01,  4.2530e-01,  2.1337e-01, -5.1065e-01, -3.3662e-01,\\n\",\n      \"           1.3590e-02,  2.5094e-02,  2.0697e-01,  1.3003e-01, -4.5041e-01,\\n\",\n      \"           1.9167e-01,  5.0020e-01,  1.3076e-01, -4.9900e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8282e-02,  4.8322e-01, -4.5622e-02,  2.9975e-01, -1.3149e-02,\\n\",\n      \"          -7.4066e-01,  1.9927e-01,  7.5937e-01, -1.8768e-01, -1.1899e-01,\\n\",\n      \"          -2.0289e-01,  3.6612e-01, -5.8996e-01, -5.1666e-01,  5.3625e-03,\\n\",\n      \"           3.3709e-01,  7.8384e-01, -7.4147e-01,  1.6300e-01, -7.4821e-01,\\n\",\n      \"          -3.9660e-01, -4.5093e-01,  1.7294e-01,  9.2179e-01,  3.1065e-01,\\n\",\n      \"          -3.7260e-01,  6.1350e-01,  2.4377e-01,  5.7021e-01,  5.0771e-01,\\n\",\n      \"          -5.7705e-01, -1.0129e-02, -3.0245e-02,  7.3764e-01, -6.2183e-01,\\n\",\n      \"           8.5102e-02,  4.4259e-02,  5.7435e-01, -1.3313e-01,  9.5835e-02,\\n\",\n      \"           7.3970e-01, -8.5254e-02, -2.9058e-01,  6.6853e-01,  1.4284e-01,\\n\",\n      \"          -4.4259e-01, -3.5658e-01,  3.1570e-02,  4.1088e-01,  5.8174e-01,\\n\",\n      \"           1.7225e-01,  5.0016e-01, -2.3336e-01,  1.1785e-01, -8.1593e-03,\\n\",\n      \"           9.0696e-01,  5.1017e-02,  2.1235e-01, -3.1208e-01,  3.0785e-01,\\n\",\n      \"          -7.9104e-01, -4.6839e-01,  5.5536e-01, -1.8962e-01],\\n\",\n      \"         [-2.9474e-01,  4.1033e-01, -1.0640e-01,  2.2170e-01,  3.7699e-01,\\n\",\n      \"           1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\\n\",\n      \"          -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\\n\",\n      \"           5.2941e-01, -6.7271e-02,  4.9393e-01, -3.1223e-01, -1.9308e-01,\\n\",\n      \"           4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01,  2.1149e-02,\\n\",\n      \"           3.4688e-02, -2.6599e-02,  5.6323e-02, -2.3462e-01, -2.7575e-02,\\n\",\n      \"           3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\\n\",\n      \"           3.9748e-02, -5.5766e-02, -1.8779e-01,  3.7293e-01, -4.3215e-01,\\n\",\n      \"          -3.2607e-01,  4.7629e-01,  1.2417e-01,  8.7553e-02,  7.4922e-02,\\n\",\n      \"           1.6414e-02, -3.7098e-01,  1.1215e-01,  5.0214e-01,  8.5971e-02,\\n\",\n      \"          -1.8960e-01,  1.6976e-01,  5.8928e-02, -3.7863e-01, -1.9777e-02,\\n\",\n      \"           6.0712e-02,  3.4529e-01,  1.6618e-01, -2.3556e-01,  9.5518e-02,\\n\",\n      \"           3.2406e-01,  6.3608e-02,  1.7180e-01, -2.6295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.4039e-02,  8.8844e-01,  3.3888e-01, -9.1417e-02,  7.9695e-02,\\n\",\n      \"          -2.3450e-01, -4.4034e-01,  6.3989e-01,  3.7835e-02,  3.9992e-01,\\n\",\n      \"          -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\\n\",\n      \"           3.3464e-01,  6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\\n\",\n      \"          -2.7994e-01, -6.0982e-01,  1.4235e-01,  2.2770e-01,  1.7566e-01,\\n\",\n      \"          -5.3978e-01,  4.8615e-01,  3.1977e-01,  4.6543e-01,  3.2679e-01,\\n\",\n      \"           3.8429e-01, -4.0738e-01, -4.7408e-01,  1.6175e-01,  2.3650e-01,\\n\",\n      \"          -6.0986e-01, -1.1444e-01,  8.2822e-01, -3.4007e-01, -3.5199e-01,\\n\",\n      \"           8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01,  8.2066e-02,\\n\",\n      \"          -4.1364e-01, -5.2925e-01,  5.9958e-01,  3.0593e-01,  5.9111e-01,\\n\",\n      \"           3.8023e-01,  2.2484e-01, -5.9437e-01,  4.3079e-01, -2.0735e-01,\\n\",\n      \"           8.2035e-01, -4.0924e-02,  5.6995e-01,  1.0385e-01,  4.4414e-01,\\n\",\n      \"          -8.6832e-01, -2.6419e-01,  8.3170e-01, -7.2663e-01],\\n\",\n      \"         [-5.8141e-01,  1.1048e-01, -6.2374e-01,  5.0587e-01,  2.5336e-01,\\n\",\n      \"          -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\\n\",\n      \"           4.2063e-01, -2.4931e-01,  3.9692e-01, -1.5809e-01,  3.2859e-01,\\n\",\n      \"          -2.9822e-01, -1.9858e-02,  5.5853e-01,  7.8639e-02,  4.8963e-02,\\n\",\n      \"          -2.2860e-01,  4.3759e-01,  2.3944e-01,  4.2009e-01,  1.3628e-01,\\n\",\n      \"           1.3792e-01,  1.2585e-01,  5.8101e-02, -5.4331e-01, -7.2530e-03,\\n\",\n      \"           8.0666e-02, -2.2224e-02,  6.3223e-01,  9.6790e-02, -4.9236e-01,\\n\",\n      \"          -8.0862e-02, -2.6275e-01,  4.9909e-01,  7.1494e-01,  3.2871e-01,\\n\",\n      \"          -7.4854e-01,  5.1980e-01,  1.2756e-01,  1.5925e-01, -1.1948e-01,\\n\",\n      \"          -9.3237e-02, -3.0931e-01, -4.2692e-01,  2.9031e-01,  2.0414e-02,\\n\",\n      \"          -3.2254e-01, -3.8900e-01,  5.7919e-01, -7.3999e-01,  1.2747e-01,\\n\",\n      \"          -1.9365e-02,  4.8622e-01,  6.7972e-02, -6.2490e-01, -5.0826e-01,\\n\",\n      \"           2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.6193e-01,  5.5425e-01,  5.4040e-01, -3.0972e-01, -1.3313e-01,\\n\",\n      \"          -6.7800e-01, -4.0654e-01,  4.6998e-01,  1.0506e-02, -4.1220e-01,\\n\",\n      \"          -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\\n\",\n      \"           7.3778e-02,  3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\\n\",\n      \"          -4.0731e-01, -4.5251e-01,  2.7892e-01,  6.7418e-02, -1.8913e-01,\\n\",\n      \"          -7.8529e-01,  7.4795e-02,  3.1780e-01, -5.6582e-02, -2.6386e-02,\\n\",\n      \"           5.4243e-01, -1.1841e-01, -3.2193e-01,  4.1168e-01,  6.0450e-01,\\n\",\n      \"          -1.9057e-01, -1.6040e-01,  5.1988e-01,  2.5761e-01, -2.8185e-01,\\n\",\n      \"           1.6285e-01, -9.2601e-02, -2.9516e-01,  1.5801e-01, -3.4487e-01,\\n\",\n      \"          -2.4956e-01, -4.2876e-01,  4.0097e-01,  7.6141e-02,  6.9152e-02,\\n\",\n      \"          -1.9961e-01,  1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\\n\",\n      \"           7.0492e-01,  7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\\n\",\n      \"          -7.6009e-01,  2.2291e-01,  6.5275e-01, -8.7851e-01],\\n\",\n      \"         [-5.2118e-01,  5.0256e-01, -5.8167e-01,  1.1051e-01,  1.7868e-01,\\n\",\n      \"          -4.7288e-01, -5.4152e-01, -7.2585e-01,  4.8291e-01, -3.2155e-01,\\n\",\n      \"           5.4432e-01, -3.7827e-01,  1.8096e-01,  5.5709e-01,  3.6829e-01,\\n\",\n      \"          -4.2694e-01, -1.1016e-01,  3.8142e-01,  7.3456e-01,  1.3955e-01,\\n\",\n      \"          -6.2690e-01,  4.6662e-01,  9.9586e-03,  4.4347e-01, -1.2285e-01,\\n\",\n      \"           2.4158e-01, -1.9818e-02,  3.2224e-02, -4.5263e-03,  9.7170e-02,\\n\",\n      \"          -2.6790e-02,  3.4196e-01,  5.5448e-01, -2.6957e-01, -4.7481e-01,\\n\",\n      \"           2.5820e-01, -1.6188e-01,  1.8216e-01,  4.3528e-01,  4.1423e-02,\\n\",\n      \"           3.8483e-01,  2.9323e-01, -3.9919e-02,  2.4917e-02, -6.6221e-01,\\n\",\n      \"           4.4238e-02, -1.3296e-01, -5.2108e-01,  4.3413e-02,  2.4199e-01,\\n\",\n      \"           1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\\n\",\n      \"          -2.2352e-01, -4.5641e-01,  6.2054e-04, -6.1068e-01, -2.4117e-02,\\n\",\n      \"          -6.6375e-01, -2.8839e-01,  9.2161e-03, -1.7272e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.2020e-01,  8.7811e-01,  6.2669e-01, -1.2818e-01, -1.8441e-01,\\n\",\n      \"          -6.0717e-01, -7.9754e-01,  5.0410e-01,  4.0985e-01, -6.4446e-02,\\n\",\n      \"           1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01,  1.8644e-01,\\n\",\n      \"           4.3668e-01,  6.4194e-01, -4.0182e-01,  5.6554e-01, -5.9408e-01,\\n\",\n      \"          -2.6671e-01, -4.0951e-01, -1.2089e-01,  1.1193e-01,  3.2120e-01,\\n\",\n      \"          -6.5532e-01,  1.4062e-01,  2.8029e-01,  8.2498e-02, -1.1054e-01,\\n\",\n      \"           7.0519e-01, -6.9252e-01, -2.9735e-01,  3.8513e-01,  3.2410e-01,\\n\",\n      \"          -7.1698e-03, -4.7982e-02,  6.5625e-01, -2.5359e-01, -3.1089e-01,\\n\",\n      \"           1.1211e-01,  2.1855e-01, -1.9636e-01,  1.6137e-01, -5.1002e-01,\\n\",\n      \"          -3.1695e-01, -3.5947e-01,  3.2188e-01,  5.8348e-01,  3.8076e-01,\\n\",\n      \"          -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01,  6.6140e-02,\\n\",\n      \"           6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01,  7.7110e-01,\\n\",\n      \"          -7.8675e-01, -3.0830e-01,  2.2900e-01, -7.8719e-01],\\n\",\n      \"         [-4.0451e-01,  8.7136e-01,  2.0729e-01, -1.9370e-02, -4.0648e-02,\\n\",\n      \"          -4.8286e-01, -8.0573e-01, -2.4901e-01,  5.7310e-01, -5.8490e-02,\\n\",\n      \"           6.0313e-01, -8.4063e-01, -2.5698e-01,  3.3939e-01,  3.4959e-01,\\n\",\n      \"           3.7069e-01,  4.3289e-01,  9.9988e-02,  9.0438e-01, -3.6257e-01,\\n\",\n      \"          -4.4119e-01,  4.2917e-01, -2.6990e-01,  4.2311e-01,  2.7980e-01,\\n\",\n      \"           1.9899e-01,  8.3125e-02,  1.3034e-01,  9.0406e-02, -2.5047e-02,\\n\",\n      \"           5.0993e-01, -6.0698e-01,  2.0975e-01,  2.8351e-01, -1.9944e-01,\\n\",\n      \"           2.5476e-01, -6.0071e-02,  4.2573e-01,  3.9131e-03, -9.8624e-02,\\n\",\n      \"           1.9323e-01,  5.3431e-01, -1.0846e-01,  8.3219e-02, -5.1852e-01,\\n\",\n      \"          -1.0182e-01,  8.0068e-03, -9.8824e-02,  5.1580e-01,  4.8648e-01,\\n\",\n      \"          -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\\n\",\n      \"           2.1330e-01, -6.1276e-01,  1.6057e-01, -6.3184e-01,  8.1466e-01,\\n\",\n      \"          -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0104e-01,  6.5426e-01,  7.7138e-01,  5.6748e-01, -4.7691e-01,\\n\",\n      \"          -5.2622e-01, -8.1877e-01, -8.8119e-01,  6.0301e-01, -1.5291e-01,\\n\",\n      \"           4.0511e-01, -8.7244e-01, -3.8247e-01,  3.3862e-01,  1.2650e-01,\\n\",\n      \"           7.8641e-01,  6.1568e-01,  4.3722e-01,  7.2865e-01, -6.2760e-01,\\n\",\n      \"          -9.0425e-01, -3.7571e-01, -8.7384e-02,  2.0393e-01,  1.7595e-01,\\n\",\n      \"          -9.6426e-01,  6.6673e-01,  1.5598e-01, -2.9040e-01,  5.8154e-02,\\n\",\n      \"           8.7598e-01, -3.7915e-01,  3.1616e-01, -1.1750e-01, -5.0382e-01,\\n\",\n      \"           2.9781e-01, -8.1428e-01,  8.4853e-01,  6.1756e-01, -2.0564e-01,\\n\",\n      \"           1.9886e-02, -5.7905e-01, -8.4476e-01,  5.3807e-01, -3.7935e-01,\\n\",\n      \"          -2.3593e-01, -5.5078e-01,  5.0617e-01,  7.8397e-01,  8.9721e-01,\\n\",\n      \"          -5.4892e-01,  5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\\n\",\n      \"           9.1601e-01, -8.3470e-01,  3.3360e-01,  9.7394e-01,  6.7423e-01,\\n\",\n      \"          -6.3171e-01, -5.4024e-02,  9.7447e-01, -9.5411e-01],\\n\",\n      \"         [-5.6495e-01,  6.4817e-01,  6.1315e-01,  6.0038e-01, -4.1307e-01,\\n\",\n      \"          -4.5898e-01, -8.2032e-01, -9.4217e-01,  6.8682e-01, -1.7263e-01,\\n\",\n      \"           6.3151e-01, -8.4917e-01, -2.9447e-01,  5.2271e-01,  2.1862e-01,\\n\",\n      \"           8.2034e-01,  4.7811e-01,  6.8474e-01,  9.2941e-01, -4.2096e-01,\\n\",\n      \"          -9.4001e-01,  3.0864e-01, -1.8619e-01,  4.4706e-01,  1.4602e-01,\\n\",\n      \"          -9.2286e-01,  6.6321e-01,  5.4442e-02, -3.0118e-01,  8.8396e-02,\\n\",\n      \"           8.6066e-01, -2.5356e-01,  5.8141e-01, -1.4684e-03, -6.8510e-01,\\n\",\n      \"           4.2343e-01, -8.3636e-01,  7.4505e-01,  6.3347e-01, -5.5176e-02,\\n\",\n      \"           8.0538e-02, -5.6538e-01, -8.6216e-01,  4.8400e-01, -3.9852e-01,\\n\",\n      \"          -5.4495e-02, -3.7059e-01,  3.6633e-01,  7.5105e-01,  9.1164e-01,\\n\",\n      \"          -5.1931e-01,  5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\\n\",\n      \"           8.3216e-01, -8.5892e-01,  4.5073e-01,  9.6752e-01,  7.1628e-01,\\n\",\n      \"          -5.6690e-01, -2.2989e-01,  9.6539e-01, -9.2093e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([1., 1.])\\n\",\n      \"------------------------------\\n\",\n      \"序列第 [6]个单词\\n\",\n      \"解码器输入dec_input: tensor([2, 3])\\n\",\n      \"dec_state: tensor([[[ 0.8209,  0.7986, -0.9837,  0.8991,  0.4713,  0.6574, -0.7928,\\n\",\n      \"          -0.0398, -0.4576,  0.7194,  0.2264, -0.9104, -0.0025,  0.5939,\\n\",\n      \"          -0.7994, -0.6152, -0.2568, -0.8597, -0.8599,  0.2942,  0.8585,\\n\",\n      \"          -0.9027,  0.6063,  0.8351,  0.8415, -0.9625, -0.7276, -0.7362,\\n\",\n      \"          -0.5936, -0.4966, -0.9679,  0.8667, -0.8565,  0.8970, -0.6430,\\n\",\n      \"          -0.9874,  0.3493, -0.6256,  0.1346,  0.2767, -0.8283,  0.8472,\\n\",\n      \"           0.6499,  0.2199, -0.6108,  0.9233, -0.7930,  0.9059, -0.1878,\\n\",\n      \"           0.5122,  0.2273,  0.9304,  0.2608, -0.9083,  0.2096, -0.3775,\\n\",\n      \"           0.9846,  0.7496,  0.4626,  0.4490, -0.8833,  0.9756, -0.0237,\\n\",\n      \"           0.3978],\\n\",\n      \"         [ 0.9671,  0.9512, -0.9036,  0.7454,  0.5689,  0.3857, -0.6949,\\n\",\n      \"          -0.5445,  0.1886, -0.9821, -0.9260, -0.7862,  0.8587,  0.9579,\\n\",\n      \"          -0.8831,  0.7689,  0.9219, -0.6811, -0.8718,  0.2782,  0.7653,\\n\",\n      \"          -0.3095, -0.5300,  0.7707,  0.8851, -0.9231, -0.0859, -0.8823,\\n\",\n      \"           0.8568, -0.3876, -0.8632,  0.5919,  0.7728,  0.7856, -0.5792,\\n\",\n      \"          -0.7832,  0.8091, -0.7551,  0.6608,  0.5444, -0.9246,  0.8543,\\n\",\n      \"           0.4954, -0.8090, -0.6873,  0.9595, -0.5523,  0.9020, -0.6096,\\n\",\n      \"           0.6262, -0.9305,  0.8850,  0.3623, -0.5265,  0.9479,  0.1956,\\n\",\n      \"           0.8632,  0.4190, -0.7615, -0.0942, -0.9305,  0.8813,  0.0495,\\n\",\n      \"          -0.7991]]], grad_fn=<StackBackward>) torch.Size([1, 2, 64])\\n\",\n      \"enc_outputs: tensor([[[-6.8794e-02,  5.3342e-01,  2.7767e-01,  3.9600e-01, -3.6861e-01,\\n\",\n      \"           1.5557e-01, -1.0969e-01,  1.7756e-01, -1.0504e-01, -2.7521e-01,\\n\",\n      \"           2.2603e-01, -1.7662e-01, -7.5199e-01, -9.4281e-03,  3.0370e-01,\\n\",\n      \"          -1.8936e-01,  6.9624e-01, -6.2619e-01, -6.6464e-01, -7.6773e-01,\\n\",\n      \"          -6.2699e-01, -5.6061e-01,  5.4069e-01,  2.7735e-01, -3.8531e-01,\\n\",\n      \"          -5.4473e-01,  6.6829e-02,  5.7072e-01,  3.5158e-02,  1.8771e-02,\\n\",\n      \"           1.7612e-01,  3.9111e-01, -6.5084e-01,  6.1659e-01,  1.7997e-01,\\n\",\n      \"          -3.9050e-02, -3.8968e-01,  7.8072e-01, -6.3102e-01,  2.3746e-01,\\n\",\n      \"          -5.4918e-02,  3.5109e-01, -6.9286e-01, -2.8419e-01,  7.8028e-02,\\n\",\n      \"          -3.1589e-01, -3.9509e-01,  2.7848e-01, -1.8915e-02,  4.0646e-01,\\n\",\n      \"           1.8700e-01,  6.5176e-01, -5.0449e-01, -2.4889e-01, -1.5691e-01,\\n\",\n      \"           1.7482e-01,  5.1712e-02,  3.2650e-01, -3.3498e-01,  2.5596e-01,\\n\",\n      \"          -6.6363e-01,  3.9568e-01,  6.6326e-01, -4.5198e-01],\\n\",\n      \"         [-4.4663e-01,  4.9992e-02, -1.1279e-01,  5.5714e-01,  2.9287e-01,\\n\",\n      \"           5.3430e-02, -3.2958e-02, -6.9619e-01,  3.7287e-01, -1.1730e-01,\\n\",\n      \"           4.7527e-01, -1.4236e-01,  1.0980e-01,  3.4374e-01,  4.4925e-02,\\n\",\n      \"           5.4476e-01,  1.3434e-01,  2.4798e-01,  1.4511e-01,  2.8671e-01,\\n\",\n      \"          -7.2405e-01, -4.0333e-02,  1.2978e-01, -1.1822e-01, -6.4893e-01,\\n\",\n      \"           1.3198e-01, -5.2837e-01, -3.7102e-01,  6.7838e-02,  8.5206e-02,\\n\",\n      \"           1.3851e-01, -3.6910e-02,  3.1990e-02,  9.5910e-02, -2.7345e-01,\\n\",\n      \"          -9.7926e-02, -6.3590e-01,  3.5229e-01,  6.0026e-01,  8.7420e-02,\\n\",\n      \"          -7.2166e-02, -5.1574e-01, -2.4970e-01, -2.4935e-01, -4.6854e-02,\\n\",\n      \"           3.1581e-01, -3.0370e-01,  6.5536e-02,  1.5106e-01,  1.2373e-01,\\n\",\n      \"           1.4191e-01,  5.0884e-01,  1.8682e-01, -4.1712e-01, -1.7723e-01,\\n\",\n      \"           2.8597e-01, -5.5452e-01,  2.8961e-01,  2.7804e-01, -1.9407e-01,\\n\",\n      \"          -4.4526e-01,  3.7736e-01,  3.5711e-01, -3.5176e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.1324e-01,  5.2025e-01,  5.0695e-01,  3.2545e-01, -5.7762e-01,\\n\",\n      \"          -7.3069e-01, -1.0028e-01,  4.7019e-01, -3.5687e-01, -7.2285e-01,\\n\",\n      \"           2.1156e-01, -3.1981e-01, -7.4337e-01, -1.4606e-01,  4.3462e-02,\\n\",\n      \"           3.6790e-02,  7.8898e-01, -7.5441e-01, -7.2592e-01, -7.5320e-01,\\n\",\n      \"          -4.6593e-01, -5.6537e-01,  5.0546e-01,  8.1896e-01, -2.9426e-01,\\n\",\n      \"          -7.9558e-01,  8.4542e-01,  5.4046e-01,  5.8609e-01,  5.0922e-01,\\n\",\n      \"          -1.6546e-01,  6.0234e-01, -5.6518e-01,  8.5887e-01, -4.5587e-01,\\n\",\n      \"          -3.5113e-02, -3.1436e-01,  7.4797e-01, -6.6369e-01, -2.0690e-01,\\n\",\n      \"           7.0571e-01, -4.6216e-01, -7.8772e-01,  3.5452e-01,  2.6347e-01,\\n\",\n      \"          -4.1197e-01, -4.6747e-01,  4.9282e-01,  6.8443e-02,  2.7213e-02,\\n\",\n      \"           3.8875e-01,  6.6186e-01, -2.5722e-01, -6.1337e-01, -2.0625e-01,\\n\",\n      \"           8.9968e-01,  4.0096e-01,  9.4859e-02, -7.1174e-01,  3.0494e-02,\\n\",\n      \"          -7.4953e-01,  8.1606e-02,  6.2147e-01, -2.7554e-01],\\n\",\n      \"         [-4.6765e-01,  3.5594e-01, -4.6087e-01,  6.5994e-01,  1.5107e-01,\\n\",\n      \"          -4.9836e-02,  3.5115e-02, -3.9070e-01, -1.1452e-01, -1.5585e-01,\\n\",\n      \"           8.9305e-02,  4.6974e-01, -2.6669e-01, -6.2534e-02, -1.5652e-01,\\n\",\n      \"           1.2247e-01, -7.1975e-02, -4.5834e-02,  8.9275e-02,  1.3229e-01,\\n\",\n      \"          -3.2071e-01,  8.7874e-02, -2.3838e-01, -2.2204e-01, -2.9577e-01,\\n\",\n      \"           5.4388e-02,  2.2746e-01, -4.6536e-01, -2.5546e-02, -1.9452e-01,\\n\",\n      \"           2.7214e-01, -1.7248e-01,  2.0683e-01, -7.7345e-03, -2.9245e-01,\\n\",\n      \"          -1.5008e-01, -4.2409e-01, -2.4032e-01,  2.3066e-01,  1.9569e-01,\\n\",\n      \"          -3.6902e-01,  2.6708e-01, -1.5023e-01, -1.7348e-01,  3.3117e-01,\\n\",\n      \"           1.2738e-01, -2.8993e-01, -1.2677e-01,  1.4847e-01,  3.7645e-01,\\n\",\n      \"          -1.9285e-01,  4.2530e-01,  2.1337e-01, -5.1065e-01, -3.3662e-01,\\n\",\n      \"           1.3590e-02,  2.5094e-02,  2.0697e-01,  1.3003e-01, -4.5041e-01,\\n\",\n      \"           1.9167e-01,  5.0020e-01,  1.3076e-01, -4.9900e-01]],\\n\",\n      \"\\n\",\n      \"        [[-2.8282e-02,  4.8322e-01, -4.5622e-02,  2.9975e-01, -1.3149e-02,\\n\",\n      \"          -7.4066e-01,  1.9927e-01,  7.5937e-01, -1.8768e-01, -1.1899e-01,\\n\",\n      \"          -2.0289e-01,  3.6612e-01, -5.8996e-01, -5.1666e-01,  5.3625e-03,\\n\",\n      \"           3.3709e-01,  7.8384e-01, -7.4147e-01,  1.6300e-01, -7.4821e-01,\\n\",\n      \"          -3.9660e-01, -4.5093e-01,  1.7294e-01,  9.2179e-01,  3.1065e-01,\\n\",\n      \"          -3.7260e-01,  6.1350e-01,  2.4377e-01,  5.7021e-01,  5.0771e-01,\\n\",\n      \"          -5.7705e-01, -1.0129e-02, -3.0245e-02,  7.3764e-01, -6.2183e-01,\\n\",\n      \"           8.5102e-02,  4.4259e-02,  5.7435e-01, -1.3313e-01,  9.5835e-02,\\n\",\n      \"           7.3970e-01, -8.5254e-02, -2.9058e-01,  6.6853e-01,  1.4284e-01,\\n\",\n      \"          -4.4259e-01, -3.5658e-01,  3.1570e-02,  4.1088e-01,  5.8174e-01,\\n\",\n      \"           1.7225e-01,  5.0016e-01, -2.3336e-01,  1.1785e-01, -8.1593e-03,\\n\",\n      \"           9.0696e-01,  5.1017e-02,  2.1235e-01, -3.1208e-01,  3.0785e-01,\\n\",\n      \"          -7.9104e-01, -4.6839e-01,  5.5536e-01, -1.8962e-01],\\n\",\n      \"         [-2.9474e-01,  4.1033e-01, -1.0640e-01,  2.2170e-01,  3.7699e-01,\\n\",\n      \"           1.9043e-01, -3.4484e-01, -5.3781e-01, -3.7305e-02, -2.3520e-01,\\n\",\n      \"          -2.3882e-01, -8.7126e-02, -2.4908e-01, -3.0191e-01, -2.0278e-01,\\n\",\n      \"           5.2941e-01, -6.7271e-02,  4.9393e-01, -3.1223e-01, -1.9308e-01,\\n\",\n      \"           4.1566e-03, -6.7093e-02, -8.6377e-02, -1.2252e-01,  2.1149e-02,\\n\",\n      \"           3.4688e-02, -2.6599e-02,  5.6323e-02, -2.3462e-01, -2.7575e-02,\\n\",\n      \"           3.2069e-01, -6.3108e-01, -7.3093e-02, -1.2567e-01, -2.0038e-01,\\n\",\n      \"           3.9748e-02, -5.5766e-02, -1.8779e-01,  3.7293e-01, -4.3215e-01,\\n\",\n      \"          -3.2607e-01,  4.7629e-01,  1.2417e-01,  8.7553e-02,  7.4922e-02,\\n\",\n      \"           1.6414e-02, -3.7098e-01,  1.1215e-01,  5.0214e-01,  8.5971e-02,\\n\",\n      \"          -1.8960e-01,  1.6976e-01,  5.8928e-02, -3.7863e-01, -1.9777e-02,\\n\",\n      \"           6.0712e-02,  3.4529e-01,  1.6618e-01, -2.3556e-01,  9.5518e-02,\\n\",\n      \"           3.2406e-01,  6.3608e-02,  1.7180e-01, -2.6295e-01]],\\n\",\n      \"\\n\",\n      \"        [[-5.4039e-02,  8.8844e-01,  3.3888e-01, -9.1417e-02,  7.9695e-02,\\n\",\n      \"          -2.3450e-01, -4.4034e-01,  6.3989e-01,  3.7835e-02,  3.9992e-01,\\n\",\n      \"          -1.2922e-01, -2.8209e-01, -7.5116e-01, -1.3301e-01, -1.3841e-02,\\n\",\n      \"           3.3464e-01,  6.7167e-01, -5.8192e-01, -5.3838e-01, -4.5958e-01,\\n\",\n      \"          -2.7994e-01, -6.0982e-01,  1.4235e-01,  2.2770e-01,  1.7566e-01,\\n\",\n      \"          -5.3978e-01,  4.8615e-01,  3.1977e-01,  4.6543e-01,  3.2679e-01,\\n\",\n      \"           3.8429e-01, -4.0738e-01, -4.7408e-01,  1.6175e-01,  2.3650e-01,\\n\",\n      \"          -6.0986e-01, -1.1444e-01,  8.2822e-01, -3.4007e-01, -3.5199e-01,\\n\",\n      \"           8.1582e-01, -8.2625e-02, -3.7135e-01, -3.0699e-01,  8.2066e-02,\\n\",\n      \"          -4.1364e-01, -5.2925e-01,  5.9958e-01,  3.0593e-01,  5.9111e-01,\\n\",\n      \"           3.8023e-01,  2.2484e-01, -5.9437e-01,  4.3079e-01, -2.0735e-01,\\n\",\n      \"           8.2035e-01, -4.0924e-02,  5.6995e-01,  1.0385e-01,  4.4414e-01,\\n\",\n      \"          -8.6832e-01, -2.6419e-01,  8.3170e-01, -7.2663e-01],\\n\",\n      \"         [-5.8141e-01,  1.1048e-01, -6.2374e-01,  5.0587e-01,  2.5336e-01,\\n\",\n      \"          -3.6213e-01, -3.3914e-01, -6.8324e-01, -2.1284e-01, -7.8385e-01,\\n\",\n      \"           4.2063e-01, -2.4931e-01,  3.9692e-01, -1.5809e-01,  3.2859e-01,\\n\",\n      \"          -2.9822e-01, -1.9858e-02,  5.5853e-01,  7.8639e-02,  4.8963e-02,\\n\",\n      \"          -2.2860e-01,  4.3759e-01,  2.3944e-01,  4.2009e-01,  1.3628e-01,\\n\",\n      \"           1.3792e-01,  1.2585e-01,  5.8101e-02, -5.4331e-01, -7.2530e-03,\\n\",\n      \"           8.0666e-02, -2.2224e-02,  6.3223e-01,  9.6790e-02, -4.9236e-01,\\n\",\n      \"          -8.0862e-02, -2.6275e-01,  4.9909e-01,  7.1494e-01,  3.2871e-01,\\n\",\n      \"          -7.4854e-01,  5.1980e-01,  1.2756e-01,  1.5925e-01, -1.1948e-01,\\n\",\n      \"          -9.3237e-02, -3.0931e-01, -4.2692e-01,  2.9031e-01,  2.0414e-02,\\n\",\n      \"          -3.2254e-01, -3.8900e-01,  5.7919e-01, -7.3999e-01,  1.2747e-01,\\n\",\n      \"          -1.9365e-02,  4.8622e-01,  6.7972e-02, -6.2490e-01, -5.0826e-01,\\n\",\n      \"           2.0377e-01, -6.3195e-01, -1.3254e-02, -3.4463e-01]],\\n\",\n      \"\\n\",\n      \"        [[ 3.6193e-01,  5.5425e-01,  5.4040e-01, -3.0972e-01, -1.3313e-01,\\n\",\n      \"          -6.7800e-01, -4.0654e-01,  4.6998e-01,  1.0506e-02, -4.1220e-01,\\n\",\n      \"          -4.3569e-02, -4.5413e-01, -3.2791e-01, -2.5498e-01, -1.8405e-02,\\n\",\n      \"           7.3778e-02,  3.9892e-01, -2.9007e-01, -2.9495e-01, -2.9316e-01,\\n\",\n      \"          -4.0731e-01, -4.5251e-01,  2.7892e-01,  6.7418e-02, -1.8913e-01,\\n\",\n      \"          -7.8529e-01,  7.4795e-02,  3.1780e-01, -5.6582e-02, -2.6386e-02,\\n\",\n      \"           5.4243e-01, -1.1841e-01, -3.2193e-01,  4.1168e-01,  6.0450e-01,\\n\",\n      \"          -1.9057e-01, -1.6040e-01,  5.1988e-01,  2.5761e-01, -2.8185e-01,\\n\",\n      \"           1.6285e-01, -9.2601e-02, -2.9516e-01,  1.5801e-01, -3.4487e-01,\\n\",\n      \"          -2.4956e-01, -4.2876e-01,  4.0097e-01,  7.6141e-02,  6.9152e-02,\\n\",\n      \"          -1.9961e-01,  1.2702e-02, -5.5001e-01, -1.0109e-01, -2.0339e-01,\\n\",\n      \"           7.0492e-01,  7.7601e-02, -3.2176e-01, -2.2643e-01, -1.1626e-01,\\n\",\n      \"          -7.6009e-01,  2.2291e-01,  6.5275e-01, -8.7851e-01],\\n\",\n      \"         [-5.2118e-01,  5.0256e-01, -5.8167e-01,  1.1051e-01,  1.7868e-01,\\n\",\n      \"          -4.7288e-01, -5.4152e-01, -7.2585e-01,  4.8291e-01, -3.2155e-01,\\n\",\n      \"           5.4432e-01, -3.7827e-01,  1.8096e-01,  5.5709e-01,  3.6829e-01,\\n\",\n      \"          -4.2694e-01, -1.1016e-01,  3.8142e-01,  7.3456e-01,  1.3955e-01,\\n\",\n      \"          -6.2690e-01,  4.6662e-01,  9.9586e-03,  4.4347e-01, -1.2285e-01,\\n\",\n      \"           2.4158e-01, -1.9818e-02,  3.2224e-02, -4.5263e-03,  9.7170e-02,\\n\",\n      \"          -2.6790e-02,  3.4196e-01,  5.5448e-01, -2.6957e-01, -4.7481e-01,\\n\",\n      \"           2.5820e-01, -1.6188e-01,  1.8216e-01,  4.3528e-01,  4.1423e-02,\\n\",\n      \"           3.8483e-01,  2.9323e-01, -3.9919e-02,  2.4917e-02, -6.6221e-01,\\n\",\n      \"           4.4238e-02, -1.3296e-01, -5.2108e-01,  4.3413e-02,  2.4199e-01,\\n\",\n      \"           1.0092e-01, -1.1106e-01, -2.3730e-01, -6.6698e-01, -2.1424e-01,\\n\",\n      \"          -2.2352e-01, -4.5641e-01,  6.2054e-04, -6.1068e-01, -2.4117e-02,\\n\",\n      \"          -6.6375e-01, -2.8839e-01,  9.2161e-03, -1.7272e-01]],\\n\",\n      \"\\n\",\n      \"        [[-1.2020e-01,  8.7811e-01,  6.2669e-01, -1.2818e-01, -1.8441e-01,\\n\",\n      \"          -6.0717e-01, -7.9754e-01,  5.0410e-01,  4.0985e-01, -6.4446e-02,\\n\",\n      \"           1.7908e-01, -8.6310e-01, -5.2263e-01, -1.7080e-01,  1.8644e-01,\\n\",\n      \"           4.3668e-01,  6.4194e-01, -4.0182e-01,  5.6554e-01, -5.9408e-01,\\n\",\n      \"          -2.6671e-01, -4.0951e-01, -1.2089e-01,  1.1193e-01,  3.2120e-01,\\n\",\n      \"          -6.5532e-01,  1.4062e-01,  2.8029e-01,  8.2498e-02, -1.1054e-01,\\n\",\n      \"           7.0519e-01, -6.9252e-01, -2.9735e-01,  3.8513e-01,  3.2410e-01,\\n\",\n      \"          -7.1698e-03, -4.7982e-02,  6.5625e-01, -2.5359e-01, -3.1089e-01,\\n\",\n      \"           1.1211e-01,  2.1855e-01, -1.9636e-01,  1.6137e-01, -5.1002e-01,\\n\",\n      \"          -3.1695e-01, -3.5947e-01,  3.2188e-01,  5.8348e-01,  3.8076e-01,\\n\",\n      \"          -3.4665e-01, -2.1503e-01, -6.9933e-01, -6.3417e-01,  6.6140e-02,\\n\",\n      \"           6.9092e-01, -4.8082e-01, -1.1246e-01, -3.2179e-01,  7.7110e-01,\\n\",\n      \"          -7.8675e-01, -3.0830e-01,  2.2900e-01, -7.8719e-01],\\n\",\n      \"         [-4.0451e-01,  8.7136e-01,  2.0729e-01, -1.9370e-02, -4.0648e-02,\\n\",\n      \"          -4.8286e-01, -8.0573e-01, -2.4901e-01,  5.7310e-01, -5.8490e-02,\\n\",\n      \"           6.0313e-01, -8.4063e-01, -2.5698e-01,  3.3939e-01,  3.4959e-01,\\n\",\n      \"           3.7069e-01,  4.3289e-01,  9.9988e-02,  9.0438e-01, -3.6257e-01,\\n\",\n      \"          -4.4119e-01,  4.2917e-01, -2.6990e-01,  4.2311e-01,  2.7980e-01,\\n\",\n      \"           1.9899e-01,  8.3125e-02,  1.3034e-01,  9.0406e-02, -2.5047e-02,\\n\",\n      \"           5.0993e-01, -6.0698e-01,  2.0975e-01,  2.8351e-01, -1.9944e-01,\\n\",\n      \"           2.5476e-01, -6.0071e-02,  4.2573e-01,  3.9131e-03, -9.8624e-02,\\n\",\n      \"           1.9323e-01,  5.3431e-01, -1.0846e-01,  8.3219e-02, -5.1852e-01,\\n\",\n      \"          -1.0182e-01,  8.0068e-03, -9.8824e-02,  5.1580e-01,  4.8648e-01,\\n\",\n      \"          -2.4675e-01, -3.2148e-01, -5.9006e-01, -7.7849e-01, -1.2654e-02,\\n\",\n      \"           2.1330e-01, -6.1276e-01,  1.6057e-01, -6.3184e-01,  8.1466e-01,\\n\",\n      \"          -6.8983e-01, -5.3710e-01, -2.5887e-01, -2.1918e-01]],\\n\",\n      \"\\n\",\n      \"        [[-4.0104e-01,  6.5426e-01,  7.7138e-01,  5.6748e-01, -4.7691e-01,\\n\",\n      \"          -5.2622e-01, -8.1877e-01, -8.8119e-01,  6.0301e-01, -1.5291e-01,\\n\",\n      \"           4.0511e-01, -8.7244e-01, -3.8247e-01,  3.3862e-01,  1.2650e-01,\\n\",\n      \"           7.8641e-01,  6.1568e-01,  4.3722e-01,  7.2865e-01, -6.2760e-01,\\n\",\n      \"          -9.0425e-01, -3.7571e-01, -8.7384e-02,  2.0393e-01,  1.7595e-01,\\n\",\n      \"          -9.6426e-01,  6.6673e-01,  1.5598e-01, -2.9040e-01,  5.8154e-02,\\n\",\n      \"           8.7598e-01, -3.7915e-01,  3.1616e-01, -1.1750e-01, -5.0382e-01,\\n\",\n      \"           2.9781e-01, -8.1428e-01,  8.4853e-01,  6.1756e-01, -2.0564e-01,\\n\",\n      \"           1.9886e-02, -5.7905e-01, -8.4476e-01,  5.3807e-01, -3.7935e-01,\\n\",\n      \"          -2.3593e-01, -5.5078e-01,  5.0617e-01,  7.8397e-01,  8.9721e-01,\\n\",\n      \"          -5.4892e-01,  5.6047e-01, -7.9087e-01, -6.6602e-01, -1.5376e-01,\\n\",\n      \"           9.1601e-01, -8.3470e-01,  3.3360e-01,  9.7394e-01,  6.7423e-01,\\n\",\n      \"          -6.3171e-01, -5.4024e-02,  9.7447e-01, -9.5411e-01],\\n\",\n      \"         [-5.6495e-01,  6.4817e-01,  6.1315e-01,  6.0038e-01, -4.1307e-01,\\n\",\n      \"          -4.5898e-01, -8.2032e-01, -9.4217e-01,  6.8682e-01, -1.7263e-01,\\n\",\n      \"           6.3151e-01, -8.4917e-01, -2.9447e-01,  5.2271e-01,  2.1862e-01,\\n\",\n      \"           8.2034e-01,  4.7811e-01,  6.8474e-01,  9.2941e-01, -4.2096e-01,\\n\",\n      \"          -9.4001e-01,  3.0864e-01, -1.8619e-01,  4.4706e-01,  1.4602e-01,\\n\",\n      \"          -9.2286e-01,  6.6321e-01,  5.4442e-02, -3.0118e-01,  8.8396e-02,\\n\",\n      \"           8.6066e-01, -2.5356e-01,  5.8141e-01, -1.4684e-03, -6.8510e-01,\\n\",\n      \"           4.2343e-01, -8.3636e-01,  7.4505e-01,  6.3347e-01, -5.5176e-02,\\n\",\n      \"           8.0538e-02, -5.6538e-01, -8.6216e-01,  4.8400e-01, -3.9852e-01,\\n\",\n      \"          -5.4495e-02, -3.7059e-01,  3.6633e-01,  7.5105e-01,  9.1164e-01,\\n\",\n      \"          -5.1931e-01,  5.2907e-01, -7.2728e-01, -7.8908e-01, -2.7272e-01,\\n\",\n      \"           8.3216e-01, -8.5892e-01,  4.5073e-01,  9.6752e-01,  7.1628e-01,\\n\",\n      \"          -5.6690e-01, -2.2989e-01,  9.6539e-01, -9.2093e-01]]],\\n\",\n      \"       grad_fn=<StackBackward>)\\n\",\n      \"mask tensor([0., 1.])\\n\",\n      \"------------------------------\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"embed_size, num_hiddens, num_layers = 64, 64, 1\\n\",\n    \"attention_size, drop_prob, lr, batch_size, num_epochs = 10, 0.5, 0.01, 2, 50\\n\",\n    \"encoder = Encoder(len(in_vocab), embed_size, num_hiddens, num_layers,\\n\",\n    \"                  drop_prob)\\n\",\n    \"decoder = Decoder(len(out_vocab), embed_size, num_hiddens, num_layers,\\n\",\n    \"                  attention_size, drop_prob)\\n\",\n    \"train(encoder, decoder, dataset, lr, batch_size, num_epochs)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 4 预测不定长的序列\\n\",\n    \"- 主流有3种方法来生成解码器在每个时间步的输出。这里我们实现最简单的贪婪搜索(greedy search)。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def translate(encoder, decoder, input_seq, max_seq_len):\\n\",\n    \"    in_tokens = input_seq.split(' ')\\n\",\n    \"    in_tokens += [EOS] + [PAD] * (max_seq_len - len(in_tokens) - 1)\\n\",\n    \"    enc_input = torch.tensor([[in_vocab.stoi[tk] for tk in in_tokens]]) # batch=1\\n\",\n    \"    enc_state = encoder.begin_state()\\n\",\n    \"    enc_output, enc_state = encoder(enc_input, enc_state)\\n\",\n    \"    dec_input = torch.tensor([out_vocab.stoi[BOS]])\\n\",\n    \"    dec_state = decoder.begin_state(enc_state)\\n\",\n    \"    output_tokens = []\\n\",\n    \"    for _ in range(max_seq_len):\\n\",\n    \"        dec_output, dec_state = decoder(dec_input, dec_state, enc_output)\\n\",\n    \"        pred = dec_output.argmax(dim=1)\\n\",\n    \"        pred_token = out_vocab.itos[int(pred.item())]\\n\",\n    \"        if pred_token == EOS:  # 当任一时间步搜索出EOS时，输出序列即完成\\n\",\n    \"            break\\n\",\n    \"        else:\\n\",\n    \"            output_tokens.append(pred_token)\\n\",\n    \"            dec_input = pred\\n\",\n    \"    return output_tokens\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"- 简单测试一下模型。输入法语句子“ils regardent.”，翻译后的英语句子应该是“they are watching.”。\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 19,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"['they', 'are', 'watching', '.']\"\n      ]\n     },\n     \"execution_count\": 19,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"input_seq = 'ils regardent .'\\n\",\n    \"translate(encoder, decoder, input_seq, max_seq_len)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 5 评价翻译结果\\n\",\n    \"- bleu\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 20,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def bleu(pred_tokens, label_tokens, k):\\n\",\n    \"    len_pred, len_label = len(pred_tokens), len(label_tokens)\\n\",\n    \"    score = math.exp(min(0, 1 - len_label / len_pred))\\n\",\n    \"    for n in range(1, k + 1):\\n\",\n    \"        num_matches, label_subs = 0, collections.defaultdict(int)\\n\",\n    \"        for i in range(len_label - n + 1):\\n\",\n    \"            label_subs[''.join(label_tokens[i: i + n])] += 1\\n\",\n    \"        for i in range(len_pred - n + 1):\\n\",\n    \"            if label_subs[''.join(pred_tokens[i: i + n])] > 0:\\n\",\n    \"                num_matches += 1\\n\",\n    \"                label_subs[''.join(pred_tokens[i: i + n])] -= 1\\n\",\n    \"        score *= math.pow(num_matches / (len_pred - n + 1), math.pow(0.5, n))\\n\",\n    \"    return score\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 我爱你 +<BOS>\\n\",\n    \"# 我爱你 + <I>\\n\",\n    \"# 我爱你 + <love>\\n\",\n    \"# 我爱你 + <you>\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P012translate/torch_test.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 21,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1., 2., 3., 4.],\\n\",\n       \"        [4., 3., 2., 1.]])\"\n      ]\n     },\n     \"execution_count\": 21,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x = torch.tensor([[1,2,3,4],\\n\",\n    \"                 [4,3,2,1]], dtype=torch.float32)\\n\",\n    \"x\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 22,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([3, 0])\"\n      ]\n     },\n     \"execution_count\": 22,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x.argmax(dim=1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.float32\"\n      ]\n     },\n     \"execution_count\": 23,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x.dtype\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[0.0321, 0.0871, 0.2369, 0.6439],\\n\",\n       \"        [0.6439, 0.2369, 0.0871, 0.0321]])\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x.softmax(dim=1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 25,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([3, 0])\"\n      ]\n     },\n     \"execution_count\": 25,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x.argmax(dim=1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 26,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"#unsqueeze, cat, permute\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"torch.Size([1, 2, 4])\"\n      ]\n     },\n     \"execution_count\": 30,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"# squeeze 挤压\\n\",\n    \"x.unsqueeze(dim=0).size()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-0.1562, -1.2787,  0.9936, -1.1843]])\"\n      ]\n     },\n     \"execution_count\": 31,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y = torch.randn(1, 4)\\n\",\n    \"y\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 32,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[1., 2., 3., 4.],\\n\",\n       \"        [4., 3., 2., 1.]])\"\n      ]\n     },\n     \"execution_count\": 32,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"x\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 38,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[ 1.0000,  2.0000,  3.0000,  4.0000],\\n\",\n       \"        [ 4.0000,  3.0000,  2.0000,  1.0000],\\n\",\n       \"        [-0.1562, -1.2787,  0.9936, -1.1843]])\"\n      ]\n     },\n     \"execution_count\": 38,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.cat((x, y), dim=0)   # 第一个参数是元组\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 39,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[-0.8324,  1.8248, -0.8726,  0.3803]])\"\n      ]\n     },\n     \"execution_count\": 39,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"y = torch.randn(1, 4)\\n\",\n    \"y\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 40,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"tensor([[ 1.0000,  2.0000,  3.0000,  4.0000],\\n\",\n       \"        [ 4.0000,  3.0000,  2.0000,  1.0000],\\n\",\n       \"        [-0.8324,  1.8248, -0.8726,  0.3803]])\"\n      ]\n     },\n     \"execution_count\": 40,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"torch.cat((x, y), dim=0)  # 合并，其余维度相同\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "P013BertCode/bertTrainTest.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## bert源码测试\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import re\\n\",\n    \"import math\\n\",\n    \"import torch\\n\",\n    \"import numpy as np\\n\",\n    \"import torch.nn as nn\\n\",\n    \"import torch.optim as optim\\n\",\n    \"from random import *\\n\",\n    \"from torch.autograd import Variable\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# BERT参数\\n\",\n    \"maxlen = 30\\n\",\n    \"batch_size = 6\\n\",\n    \"max_pred = 5    # 句子中最大mask的字数\\n\",\n    \"n_layers = 6\\n\",\n    \"n_heads = 12\\n\",\n    \"d_model = 768\\n\",\n    \"d_ff = 768*4    # 4*d_model, FeedForward dimension\\n\",\n    \"d_k = d_v = 64  # dimension of K(=Q), V\\n\",\n    \"n_segments = 2\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"## 数据预处理\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"text = (\\n\",\n    \"    'Hello, how are you? I am Romeo.\\\\n'\\n\",\n    \"    'Hello, Romeo My name is Juliet. Nice to meet you.\\\\n'\\n\",\n    \"    'Nice meet you too. How are you today?\\\\n'\\n\",\n    \"    'Great. My baseball team won the competition.\\\\n'\\n\",\n    \"    'Oh Congratulations, Juliet\\\\n'\\n\",\n    \"    'Thanks you Romeo'\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# 过滤掉标点符号\\n\",\n    \"sentences = re.sub(\\\"[.,!?\\\\\\\\-]\\\", '', text.lower()).split('\\\\n') # filter '.', ',', '?', '!'\\n\",\n    \"# 词汇表\\n\",\n    \"word_list = list(set(\\\" \\\".join(sentences).split()))\\n\",\n    \"# 构建字典\\n\",\n    \"word_dict = {'[PAD]' : 0, '[CLS]' : 1, '[SEP]' : 2, '[MASK]' : 3} # 先加入四个特殊字符\\n\",\n    \"for i, w in enumerate(word_list):\\n\",\n    \"    word_dict[w] = i + 4\\n\",\n    \"number_dict = {i: w for i, w in enumerate(word_dict)}  # 将字符——>数字的字典反转为数字——>字典的编码\\n\",\n    \"vocab_size = len(word_dict)\\n\",\n    \"#将句子的字符列表转化为索引列表\\n\",\n    \"token_list = list()\\n\",\n    \"for sentence in sentences:\\n\",\n    \"    arr = [word_dict[s] for s in sentence.split()]\\n\",\n    \"    token_list.append(arr)\\n\",\n    \"\\n\",\n    \"#生成一个batch。\\n\",\n    \"# sample IsNext and NotNext to be same in small batch size\\n\",\n    \"def make_batch():\\n\",\n    \"    batch = []\\n\",\n    \"    positive = negative = 0\\n\",\n    \"    while positive != batch_size / 2 or negative != batch_size / 2:\\n\",\n    \"        tokens_a_index, tokens_b_index = randrange(len(sentences)), randrange(len(sentences)) # sample random index in sentences\\n\",\n    \"        tokens_a, tokens_b = token_list[tokens_a_index], token_list[tokens_b_index]\\n\",\n    \"        #输入：[CLS]句子1[SEP]句子2[SEP]\\n\",\n    \"        input_ids = [word_dict['[CLS]']] + tokens_a + [word_dict['[SEP]']] + tokens_b + [word_dict['[SEP]']]\\n\",\n    \"        #段ID\\n\",\n    \"        segment_ids = [0] * (1 + len(tokens_a) + 1) + [1] * (len(tokens_b) + 1)\\n\",\n    \"\\n\",\n    \"        # MASK LM\\n\",\n    \"        n_pred =  min(max_pred, max(1, int(round(len(input_ids) * 0.15)))) # 15 % of tokens in one sentence\\n\",\n    \"        cand_maked_pos = [i for i, token in enumerate(input_ids)\\n\",\n    \"                          if token != word_dict['[CLS]'] and token != word_dict['[SEP]']]\\n\",\n    \"        shuffle(cand_maked_pos)  # 打乱顺序，然后去前几个词作为要预测的词\\n\",\n    \"        masked_tokens, masked_pos = [], []\\n\",\n    \"        for pos in cand_maked_pos[:n_pred]:\\n\",\n    \"            masked_pos.append(pos)\\n\",\n    \"            masked_tokens.append(input_ids[pos])\\n\",\n    \"            if random() < 0.8:    # 80%\\n\",\n    \"                input_ids[pos] = word_dict['[MASK]'] # make mask\\n\",\n    \"            elif random() < 0.5:  # 10%\\n\",\n    \"                index = randint(0, vocab_size - 1) # random index in vocabulary\\n\",\n    \"                input_ids[pos] = word_dict[number_dict[index]] # replace\\n\",\n    \"\\n\",\n    \"        # Zero Paddings\\n\",\n    \"        n_pad = maxlen - len(input_ids)\\n\",\n    \"        input_ids.extend([0] * n_pad)\\n\",\n    \"        segment_ids.extend([0] * n_pad)\\n\",\n    \"\\n\",\n    \"        # Zero Padding (100% - 15%) tokens\\n\",\n    \"        # mask列表的填充\\n\",\n    \"        if max_pred > n_pred:\\n\",\n    \"            n_pad = max_pred - n_pred\\n\",\n    \"            masked_tokens.extend([0] * n_pad)\\n\",\n    \"            masked_pos.extend([0] * n_pad)\\n\",\n    \"        #segment_ids=input_ids=[maxlen],masked_tokens=masked_pos=[max_pred]\\n\",\n    \"        if tokens_a_index + 1 == tokens_b_index and positive < batch_size / 2:\\n\",\n    \"            batch.append([input_ids, segment_ids, masked_tokens, masked_pos, True]) # IsNext：句子b是句子a的下一个句子\\n\",\n    \"            positive += 1\\n\",\n    \"        elif tokens_a_index + 1 != tokens_b_index and negative < batch_size / 2:\\n\",\n    \"            batch.append([input_ids, segment_ids, masked_tokens, masked_pos, False]) # NotNext：句子b不是句子a的下一个句子\\n\",\n    \"            negative += 1\\n\",\n    \"    return batch\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# 将填充位置mask掉\\n\",\n    \"def get_attn_pad_mask(seq_q, seq_k):\\n\",\n    \"    #seq_q=seq_k=[bact_size,maxlen]\\n\",\n    \"    batch_size, len_q = seq_q.size()\\n\",\n    \"    batch_size, len_k = seq_k.size()\\n\",\n    \"    # eq(zero) is PAD token\\n\",\n    \"    pad_attn_mask = seq_k.data.eq(0).unsqueeze(1)  # batch_size x 1 x len_k(=len_q), one is masking\\n\",\n    \"    return pad_attn_mask.expand(batch_size, len_q, len_k)  # batch_size x len_q x len_k\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def gelu(x):\\n\",\n    \"    \\\"Implementation of the gelu activation function by Hugging Face\\\"\\n\",\n    \"    return x * 0.5 * (1.0 + torch.erf(x / math.sqrt(2.0)))\\n\",\n    \"\\n\",\n    \"# Embeding类\\n\",\n    \"class Embedding(nn.Module):\\n\",\n    \"    def __init__(self):\\n\",\n    \"        super(Embedding, self).__init__()\\n\",\n    \"        self.tok_embed = nn.Embedding(vocab_size, d_model)  # token embedding\\n\",\n    \"        self.pos_embed = nn.Embedding(maxlen, d_model)      # position embedding\\n\",\n    \"        self.seg_embed = nn.Embedding(n_segments, d_model)  # segment(token type) embedding\\n\",\n    \"        self.norm = nn.LayerNorm(d_model)\\n\",\n    \"\\n\",\n    \"    def forward(self, x, seg):\\n\",\n    \"        #x=seg=[bact_size,maxlen]\\n\",\n    \"        seq_len = x.size(1)\\n\",\n    \"        pos = torch.arange(seq_len, dtype=torch.long)\\n\",\n    \"        pos = pos.unsqueeze(0).expand_as(x)  # (seq_len,) -> (batch_size, seq_len)\\n\",\n    \"        print(\\\"POS Embedding:\\\", self.pos_embed(pos).size())\\n\",\n    \"        print(\\\"SEG Embedding:\\\", self.seg_embed(seg).size())\\n\",\n    \"        embedding = self.tok_embed(x) + self.pos_embed(pos) + self.seg_embed(seg)\\n\",\n    \"        return self.norm(embedding)\\n\",\n    \"\\n\",\n    \"    \\n\",\n    \"class ScaledDotProductAttention(nn.Module):\\n\",\n    \"    def __init__(self):\\n\",\n    \"        super(ScaledDotProductAttention, self).__init__()\\n\",\n    \"\\n\",\n    \"    def forward(self, Q, K, V, attn_mask):\\n\",\n    \"        scores = torch.matmul(Q, K.transpose(-1, -2)) / np.sqrt(d_k) # scores : [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\\n\",\n    \"        scores.masked_fill_(attn_mask, -1e9) # 将mask矩阵中为1的位置赋值为负无穷.\\n\",\n    \"        attn = nn.Softmax(dim=-1)(scores)    # [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\\n\",\n    \"        context = torch.matmul(attn, V)      # [batch_size x n_heads x len_q x d_v]\\n\",\n    \"        return context, attn\\n\",\n    \"    \\n\",\n    \"    \\n\",\n    \"# 多头Attention子层\\n\",\n    \"class MultiHeadAttention(nn.Module):\\n\",\n    \"    def __init__(self):\\n\",\n    \"        super(MultiHeadAttention, self).__init__()\\n\",\n    \"        self.W_Q = nn.Linear(d_model, d_k * n_heads)\\n\",\n    \"        self.W_K = nn.Linear(d_model, d_k * n_heads)\\n\",\n    \"        self.W_V = nn.Linear(d_model, d_v * n_heads)\\n\",\n    \"    def forward(self, Q, K, V, attn_mask):\\n\",\n    \"        # q: [batch_size x len_q x d_model], k: [batch_size x len_k x d_model], v: [batch_size x len_k x d_model]\\n\",\n    \"        # attn_mask=[batch_size x maxlen x maxlen]\\n\",\n    \"        residual, batch_size = Q, Q.size(0)\\n\",\n    \"        # (B, S, D) -proj-> (B, S, D) -split-> (B, S, H, W) -trans-> (B, H, S, W)\\n\",\n    \"        q_s = self.W_Q(Q).view(batch_size, -1, n_heads, d_k).transpose(1,2)  # q_s: [batch_size x n_heads x len_q x d_k]\\n\",\n    \"        k_s = self.W_K(K).view(batch_size, -1, n_heads, d_k).transpose(1,2)  # k_s: [batch_size x n_heads x len_k x d_k]\\n\",\n    \"        v_s = self.W_V(V).view(batch_size, -1, n_heads, d_v).transpose(1,2)  # v_s: [batch_size x n_heads x len_k x d_v]\\n\",\n    \"\\n\",\n    \"        attn_mask = attn_mask.unsqueeze(1).repeat(1, n_heads, 1, 1) # attn_mask : [batch_size x n_heads x len_q x len_k]\\n\",\n    \"\\n\",\n    \"        # context: [batch_size x n_heads x len_q x d_v], attn: [batch_size x n_heads x len_q(=len_k) x len_k(=len_q)]\\n\",\n    \"        context, attn = ScaledDotProductAttention()(q_s, k_s, v_s, attn_mask)\\n\",\n    \"        context = context.transpose(1, 2).contiguous().view(batch_size, -1, n_heads * d_v) # context: [batch_size x len_q x n_heads * d_v]\\n\",\n    \"        output = nn.Linear(n_heads * d_v, d_model)(context) # batch_size x len_q x d_model]\\n\",\n    \"        return nn.LayerNorm(d_model)(output + residual), attn # output: [batch_size x len_q x d_model]\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# FNN子层\\n\",\n    \"class PoswiseFeedForwardNet(nn.Module):\\n\",\n    \"    def __init__(self):\\n\",\n    \"        super(PoswiseFeedForwardNet, self).__init__()\\n\",\n    \"        self.fc1 = nn.Linear(d_model, d_ff)\\n\",\n    \"        self.fc2 = nn.Linear(d_ff, d_model)\\n\",\n    \"\\n\",\n    \"    def forward(self, x):\\n\",\n    \"        # (batch_size, len_seq, d_model) -> (batch_size, len_seq, d_ff) -> (batch_size, len_seq, d_model)\\n\",\n    \"        return self.fc2(gelu(self.fc1(x)))\\n\",\n    \"\\n\",\n    \"    \\n\",\n    \"# Encoder的每层\\n\",\n    \"class EncoderLayer(nn.Module):\\n\",\n    \"    def __init__(self):\\n\",\n    \"        super(EncoderLayer, self).__init__()\\n\",\n    \"        self.enc_self_attn = MultiHeadAttention()\\n\",\n    \"        self.pos_ffn = PoswiseFeedForwardNet()\\n\",\n    \"    #enc_inputs = [bact_size,maxlen,d_model] enc_self_attn_mask=[batch_size x maxlen x maxlen]\\n\",\n    \"    def forward(self, enc_inputs, enc_self_attn_mask):\\n\",\n    \"        enc_outputs, attn = self.enc_self_attn(enc_inputs, enc_inputs, enc_inputs, enc_self_attn_mask) # enc_inputs to same Q,K,V\\n\",\n    \"        enc_outputs = self.pos_ffn(enc_outputs) # enc_outputs: [batch_size x len_q x d_model]\\n\",\n    \"        return enc_outputs, attn\\n\",\n    \"\\n\",\n    \"    \\n\",\n    \"class BERT(nn.Module):\\n\",\n    \"    def __init__(self):\\n\",\n    \"        super(BERT, self).__init__()\\n\",\n    \"        self.embedding = Embedding()\\n\",\n    \"        self.layers = nn.ModuleList([EncoderLayer() for _ in range(n_layers)])\\n\",\n    \"        self.fc = nn.Linear(d_model, d_model)\\n\",\n    \"        self.activ1 = nn.Tanh()\\n\",\n    \"        self.linear = nn.Linear(d_model, d_model)\\n\",\n    \"        self.activ2 = gelu\\n\",\n    \"        self.norm = nn.LayerNorm(d_model)\\n\",\n    \"        self.classifier = nn.Linear(d_model, 2)\\n\",\n    \"        # decoder is shared with embedding layer  softmax层与embedding层参数共享。\\n\",\n    \"        embed_weight = self.embedding.tok_embed.weight\\n\",\n    \"        n_vocab, n_dim = embed_weight.size()\\n\",\n    \"        self.decoder = nn.Linear(n_dim, n_vocab, bias=False)\\n\",\n    \"        self.decoder.weight = embed_weight\\n\",\n    \"        self.decoder_bias = nn.Parameter(torch.zeros(n_vocab))\\n\",\n    \"\\n\",\n    \"    def forward(self, input_ids, segment_ids, masked_pos):\\n\",\n    \"        # input_ids=segment_ids=[bact_size,maxlen]\\n\",\n    \"        # masked_pos=[batch_size,max_pred]\\n\",\n    \"        # output=[bact_size,maxlen,d_model]\\n\",\n    \"        output = self.embedding(input_ids, segment_ids)#tok_embed+pos_embed+.seg_embed+norm\\n\",\n    \"        # enc_self_attn_mask=batch_size x maxlen x maxlen\\n\",\n    \"        enc_self_attn_mask = get_attn_pad_mask(input_ids, input_ids)\\n\",\n    \"        for layer in self.layers:\\n\",\n    \"            output, enc_self_attn = layer(output, enc_self_attn_mask)\\n\",\n    \"        # output : [batch_size, len, d_model], attn : [batch_size, n_heads, d_mode, d_model]\\n\",\n    \"        # it will be decided by first token(CLS)\\n\",\n    \"        h_pooled = self.activ1(self.fc(output[:, 0])) # [batch_size, d_model] 取出句子开始标志CLS最后隐藏层输出用来预测两个句子是否为前后关系\\n\",\n    \"        logits_clsf = self.classifier(h_pooled)       # [batch_size, 2] #前后句子的预测，是个二分类\\n\",\n    \"\\n\",\n    \"        masked_pos = masked_pos[:, :, None].expand(-1, -1, output.size(-1)) # [batch_size, max_pred, d_model]\\n\",\n    \"        # get masked position from final output of transformer.\\n\",\n    \"        # 取出需要预测词的隐藏层状态向量\\n\",\n    \"        h_masked = torch.gather(output, 1, masked_pos) # masking position [batch_size, max_pred, d_model]\\n\",\n    \"        h_masked = self.norm(self.activ2(self.linear(h_masked)))\\n\",\n    \"        logits_lm = self.decoder(h_masked) + self.decoder_bias # [batch_size, max_pred, n_vocab]\\n\",\n    \"\\n\",\n    \"        return logits_lm, logits_clsf\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model = BERT()\\n\",\n    \"criterion = nn.CrossEntropyLoss()  # 交叉熵loss函数\\n\",\n    \"optimizer = optim.Adam(model.parameters(), lr=0.001) # 优化器\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"input_ids: tensor([[ 1,  6, 11, 27,  9, 15, 12, 27, 13,  2,  3, 27, 25,  2,  0,  0,  0,  0,\\n\",\n      \"          0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0],\\n\",\n      \"        [ 1,  3, 15, 12, 27, 21, 28,  3,  2, 14, 20, 10,  2,  0,  0,  0,  0,  0,\\n\",\n      \"          0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0],\\n\",\n      \"        [ 1, 19, 15, 12, 27, 21,  3, 25,  2,  3, 20, 10,  2,  0,  0,  0,  0,  0,\\n\",\n      \"          0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0],\\n\",\n      \"        [ 1,  6, 11,  3,  9, 15, 12, 27,  3,  2, 23,  3,  4,  8, 24, 22,  5,  2,\\n\",\n      \"          0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0],\\n\",\n      \"        [ 1, 19, 25, 17, 18,  7, 10,  6, 16, 11, 27,  2,  6, 11, 27,  9, 15, 12,\\n\",\n      \"          3, 13,  2,  0,  0,  0,  0,  0,  0,  0,  0,  0],\\n\",\n      \"        [ 1, 19,  3, 17, 18,  3, 10,  6, 16, 11, 27,  2,  6,  3, 27,  9, 15, 12,\\n\",\n      \"         27, 13,  2,  0,  0,  0,  0,  0,  0,  0,  0,  0]])\\n\",\n      \"segment_ids: tensor([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\\n\",\n      \"         0, 0, 0, 0, 0, 0],\\n\",\n      \"        [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\\n\",\n      \"         0, 0, 0, 0, 0, 0],\\n\",\n      \"        [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\\n\",\n      \"         0, 0, 0, 0, 0, 0],\\n\",\n      \"        [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0,\\n\",\n      \"         0, 0, 0, 0, 0, 0],\\n\",\n      \"        [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0,\\n\",\n      \"         0, 0, 0, 0, 0, 0],\\n\",\n      \"        [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0,\\n\",\n      \"         0, 0, 0, 0, 0, 0]])\\n\",\n      \"masked_pos: tensor([[10,  4,  0,  0,  0],\\n\",\n      \"        [ 7,  1,  0,  0,  0],\\n\",\n      \"        [ 9,  6,  0,  0,  0],\\n\",\n      \"        [11,  8,  3,  0,  0],\\n\",\n      \"        [ 2, 18, 15,  0,  0],\\n\",\n      \"        [ 5, 13,  2,  0,  0]])\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"batch = make_batch()# 生成一个batch_data\\n\",\n    \"# input_ids=segment_ids=[bact_size,maxlen]\\n\",\n    \"# masked_tokens=masked_pos=[batch_size,max_pred]\\n\",\n    \"# isNext=[batch_size]\\n\",\n    \"input_ids, segment_ids, masked_tokens, masked_pos, isNext = zip(*batch)\\n\",\n    \"input_ids, segment_ids, masked_tokens, masked_pos, isNext = \\\\\\n\",\n    \"    torch.LongTensor(input_ids),  torch.LongTensor(segment_ids), torch.LongTensor(masked_tokens), \\\\\\n\",\n    \"    torch.LongTensor(masked_pos), torch.LongTensor(isNext)\\n\",\n    \"\\n\",\n    \"print(\\\"input_ids:\\\", input_ids)\\n\",\n    \"print(\\\"segment_ids:\\\", segment_ids)\\n\",\n    \"print(\\\"masked_pos:\\\", masked_pos)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0010 cost = 42.226273\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0020 cost = 24.461336\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0030 cost = 18.636894\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0040 cost = 7.536493\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0050 cost = 4.593762\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0060 cost = 4.424582\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0070 cost = 3.395122\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0080 cost = 3.978588\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0090 cost = 3.647416\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"POS Embedding: torch.Size([6, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([6, 30, 768])\\n\",\n      \"Epoch: 0100 cost = 4.097142\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Hello, how are you? I am Romeo.\\n\",\n      \"Hello, Romeo My name is Juliet. Nice to meet you.\\n\",\n      \"Nice meet you too. How are you today?\\n\",\n      \"Great. My baseball team won the competition.\\n\",\n      \"Oh Congratulations, Juliet\\n\",\n      \"Thanks you Romeo\\n\",\n      \"['[CLS]', 'nice', 'meet', 'you', 'too', 'how', 'are', 'you', 'today', '[SEP]', '[MASK]', 'you', 'romeo', '[SEP]']\\n\",\n      \"POS Embedding: torch.Size([1, 30, 768])\\n\",\n      \"SEG Embedding: torch.Size([1, 30, 768])\\n\",\n      \"masked tokens list :  [26, 9]\\n\",\n      \"predict masked tokens list :  [9]\\n\",\n      \"isNext :  False\\n\",\n      \"predict isNext :  True\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for epoch in range(100):\\n\",\n    \"    optimizer.zero_grad()\\n\",\n    \"    # logits_lm=[batch_size, max_pred, n_vocab]\\n\",\n    \"    # logits_clsf=[batch_size, 2]\\n\",\n    \"    logits_lm, logits_clsf = model(input_ids, segment_ids, masked_pos)\\n\",\n    \"    loss_lm = criterion(logits_lm.transpose(1, 2), masked_tokens) # for masked LM\\n\",\n    \"    loss_lm = (loss_lm.float()).mean()\\n\",\n    \"    loss_clsf = criterion(logits_clsf, isNext) # for sentence classification\\n\",\n    \"    loss = loss_lm + loss_clsf\\n\",\n    \"    if (epoch + 1) % 10 == 0:\\n\",\n    \"        print('Epoch:', '%04d' % (epoch + 1), 'cost =', '{:.6f}'.format(loss))\\n\",\n    \"    loss.backward()\\n\",\n    \"    optimizer.step()\\n\",\n    \"\\n\",\n    \"# Predict mask tokens and isNext\\n\",\n    \"input_ids, segment_ids, masked_tokens, masked_pos, isNext = batch[0]\\n\",\n    \"print(text)\\n\",\n    \"print([number_dict[w] for w in input_ids if number_dict[w] != '[PAD]'])\\n\",\n    \"\\n\",\n    \"logits_lm, logits_clsf = model(torch.LongTensor([input_ids]), \\\\\\n\",\n    \"                               torch.LongTensor([segment_ids]), torch.LongTensor([masked_pos]))\\n\",\n    \"\\n\",\n    \"logits_lm = logits_lm.data.max(2)[1][0].data.numpy()  # 最大值索引[max_pred]\\n\",\n    \"print('masked tokens list : ',[pos for pos in masked_tokens if pos != 0])\\n\",\n    \"print('predict masked tokens list : ',[pos for pos in logits_lm if pos != 0])\\n\",\n    \"\\n\",\n    \"logits_clsf = logits_clsf.data.max(1)[1].data.numpy()[0]\\n\",\n    \"print('isNext : ', True if isNext else False)\\n\",\n    \"print('predict isNext : ',True if logits_clsf else False)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 4\n}\n"
  },
  {
    "path": "P014Aho-Corasick-algorithm/AC.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Collecting pyahocorasick\\n\",\n      \"  Downloading pyahocorasick-1.4.2.tar.gz (321 kB)\\n\",\n      \"\\u001b[K     |████████████████████████████████| 321 kB 62 kB/s eta 0:00:011    |██                              | 20 kB 257 kB/s eta 0:00:02     |█████████████████████████▌      | 256 kB 132 kB/s eta 0:00:01\\n\",\n      \"\\u001b[?25hBuilding wheels for collected packages: pyahocorasick\\n\",\n      \"  Building wheel for pyahocorasick (setup.py) ... \\u001b[?25ldone\\n\",\n      \"\\u001b[?25h  Created wheel for pyahocorasick: filename=pyahocorasick-1.4.2-cp36-cp36m-linux_x86_64.whl size=92655 sha256=8c217f2ae8126f412e2d2acf33c9205fa94c6d4109454a990e243e4de574814d\\n\",\n      \"  Stored in directory: /home/dc/.cache/pip/wheels/13/37/bd/c904d816433e1f65c97ca85c56823f1a7cb0dcaf3af2b17798\\n\",\n      \"Successfully built pyahocorasick\\n\",\n      \"Installing collected packages: pyahocorasick\\n\",\n      \"Successfully installed pyahocorasick-1.4.2\\n\",\n      \"\\u001b[33mWARNING: You are using pip version 20.2.3; however, version 21.0.1 is available.\\n\",\n      \"You should consider upgrading via the '/usr/local/anaconda2/envs/pt-tf-env/bin/python -m pip install --upgrade pip' command.\\u001b[0m\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"! pip install pyahocorasick\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import ahocorasick\\n\",\n    \"import time\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \" \\n\",\n    \" \\n\",\n    \"class AhocorasickNer:\\n\",\n    \"    def __init__(self, user_dict_path):\\n\",\n    \"        self.user_dict_path = user_dict_path\\n\",\n    \"        self.actree = ahocorasick.Automaton()\\n\",\n    \" \\n\",\n    \" \\n\",\n    \"    def add_keywords(self):\\n\",\n    \"        flag = 0\\n\",\n    \"        with open(self.user_dict_path, \\\"r\\\", encoding=\\\"utf-8\\\") as file:\\n\",\n    \"            for line in file:\\n\",\n    \"                word, flag = line.strip(), flag + 1\\n\",\n    \"                self.actree.add_word(word, (flag, word))\\n\",\n    \"        self.actree.make_automaton()\\n\",\n    \" \\n\",\n    \" \\n\",\n    \"    def get_ner_results(self, sentence):\\n\",\n    \"        ner_results = []\\n\",\n    \"        # i的形式为(index1,(index2,word))\\n\",\n    \"        # index1: 提取后的结果在sentence中的末尾索引\\n\",\n    \"        # index2: 提取后的结果在self.actree中的索引\\n\",\n    \"        for i in self.actree.iter(sentence):\\n\",\n    \"            ner_results.append((i[1], i[0] + 1 - len(i[1][1]), i[0] + 1))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class AcTree(object):\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 14,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ac = ahocorasick.Automaton()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 15,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"True\"\n      ]\n     },\n     \"execution_count\": 15,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ac.add_word(\\\"喜马拉雅APP\\\", (1, \\\"喜马拉雅APP\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 16,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"True\"\n      ]\n     },\n     \"execution_count\": 16,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ac.add_word(\\\"喜马拉雅山\\\", (0, \\\"喜马拉雅山\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 28,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"True\"\n      ]\n     },\n     \"execution_count\": 28,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ac.add_word(\\\"喜马拉雅\\\", (0, \\\"喜马拉雅\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 17,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"True\"\n      ]\n     },\n     \"execution_count\": 17,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ac.add_word(\\\"毛主席\\\", (1, \\\"毛主席\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 24,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"False\"\n      ]\n     },\n     \"execution_count\": 24,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"ac.add_word(\\\"毛主席\\\", (1.2, \\\"毛主席\\\"))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 18,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"s = \\\"毛主席在喜马拉雅山上收听喜马拉雅APP, 喜马拉雅山真美丽啊\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 29,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"ac.make_automaton()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 30,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"毛主席 (0, 2) 1.2\\n\",\n      \"喜马拉雅 (4, 7) 0\\n\",\n      \"喜马拉雅山 (4, 8) 0\\n\",\n      \"喜马拉雅 (12, 15) 0\\n\",\n      \"喜马拉雅APP (12, 18) 1\\n\",\n      \"喜马拉雅 (21, 24) 0\\n\",\n      \"喜马拉雅山 (21, 25) 0\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for i in ac.iter(s):\\n\",\n    \"    word = i[-1][-1]\\n\",\n    \"    start_idx = i[0]-len(word) + 1\\n\",\n    \"    end_idx = i[0]\\n\",\n    \"    weights = i[-1][0]\\n\",\n    \"    print(word, (start_idx, end_idx), weights)\\n\",\n    \"    #print(i)\\n\",\n    \"#     print(s[i[0]-i[0]])\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"-词-权重-类别\\n\",\n    \"1 如何解决一个词对应的类别很多\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# \\n\",\n    \"- 短文本处理-娇喘\\n\",\n    \"- 文本多分类-AC自动机\\n\",\n    \"- 模型多分类\\n\",\n    \"- 侵权- 向量搜索\\n\",\n    \"- 如何解决少数民族\\n\",\n    \"- \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import gensim\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"?gensim.models.Word2Vec.load\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "named_entity_recognition/.gitignore",
    "content": "__pycache__\nmodels/__pycache__\n"
  },
  {
    "path": "named_entity_recognition/README.md",
    "content": "# 中文命名实体识别\n\n\n\n## 数据集\n\n本项目尝试使用了多种不同的模型（包括HMM，CRF，Bi-LSTM，Bi-LSTM+CRF）来解决中文命名实体识别问题，数据集用的是论文ACL 2018[Chinese NER using Lattice LSTM](https://github.com/jiesutd/LatticeLSTM)中收集的简历数据，数据的格式如下，它的每一行由一个字及其对应的标注组成，标注集采用BIOES，句子之间用一个空行隔开。\n\n```\n美\tB-LOC\n国\tE-LOC\n的\tO\n华\tB-PER\n莱\tI-PER\n士\tE-PER\n\n我\tO\n跟\tO\n他\tO\n谈\tO\n笑\tO\n风\tO\n生\tO \n```\n\n该数据集就位于项目目录下的`ResumeNER`文件夹里。\n\n## 运行结果\n\n下面是四种不同的模型以及这Ensemble这四个模型预测结果的准确率（取最好）：\n\n|      | HMM    | CRF    | BiLSTM | BiLSTM+CRF | Ensemble |\n| ---- | ------ | ------ | ------ | ---------- | -------- |\n| 召回率  | 91.22% | 95.43% | 95.32% | 95.72%     | 95.65%   |\n| 准确率  | 91.49% | 95.43% | 95.37% | 95.74%     | 95.69%   |\n| F1分数 | 91.30% | 95.42% | 95.32% | 95.70%     | 95.64%   |\n\n最后一列Ensemble是将这四个模型的预测结果结合起来，使用“投票表决”的方法得出最后的预测结果。\n\n（Ensemble的三个指标均不如BiLSTM+CRF，可以认为在Ensemble过程中，是其他三个模型拖累了BiLSTM+CRF）\n\n具体的输出可以查看`output.txt`文件。\n\n\n\n## 快速开始\n\n首先安装依赖项：\n\n```\npip3 install -r requirement.txt\n```\n\n安装完毕之后，直接使用\n\n```\npython3 main.py\n```\n\n即可训练以及评估模型，评估模型将会打印出模型的精确率、召回率、F1分数值以及混淆矩阵，如果想要修改相关模型参数或者是训练参数，可以在`./models/config.py`文件中进行设置。\n\n训练完毕之后，如果想要加载并评估模型，运行如下命令：\n\n```shell\npython3 test.py\n```\n\n下面是这些模型的简单介绍（github网页对数学公式的支持不太好，涉及公式的部分无法正常显示，[我的博客](https://zhuanlan.zhihu.com/p/61227299)  有对这些模型以及代码更加详细的介绍）：\n\n\n\n## 隐马尔可夫模型（Hidden Markov Model，HMM）\t \n\n隐马尔可夫模型描述由一个隐藏的马尔科夫链随机生成不可观测的状态随机序列，再由各个状态生成一个观测而产生观测随机序列的过程（李航 统计学习方法）。隐马尔可夫模型由初始状态分布，状态转移概率矩阵以及观测概率矩阵所确定。\n\n命名实体识别本质上可以看成是一种序列标注问题，在使用HMM解决命名实体识别这种序列标注问题的时候，我们所能观测到的是字组成的序列（观测序列），观测不到的是每个字对应的标注（状态序列）。\n\n**初始状态分布**就是每一个标注的初始化概率，**状态转移概率矩阵**就是由某一个标注转移到下一个标注的概率（就是若前一个词的标注为$tag_i$ ，则下一个词的标注为$tag_j$的概率为 $M_{ij}$），**观测概率矩阵**就是指在\n\n某个标注下，生成某个词的概率。\n\nHMM模型的训练过程对应隐马尔可夫模型的学习问题（李航 统计学习方法），\n\n实际上就是根据训练数据根据最大似然的方法估计模型的三个要素，即上文提到的初始状态分布、状态转移概率矩阵以及观测概率矩阵，模型训练完毕之后，利用模型进行解码，即对给定观测序列，求它对应的状态序列，这里就是对给定的句子，求句子中的每个字对应的标注，针对这个解码问题，我们使用的是维特比（viterbi）算法。\n\n具体的细节可以查看 `models/hmm.py`文件。\n\n\n\n\n\n## 条件随机场（Conditional Random Field, CRF)\n\n HMM模型中存在两个假设，一是输出观察值之间严格独立，二是状态转移过程中当前状态只与前一状态有关。也就是说，在命名实体识别的场景下，HMM认为观测到的句子中的每个字都是相互独立的，而且当前时刻的标注只与前一时刻的标注相关。但实际上，命名实体识别往往需要更多的特征，比如词性，词的上下文等等，同时当前时刻的标注应该与前一时刻以及后一时刻的标注都相关联。由于这两个假设的存在，显然HMM模型在解决命名实体识别的问题上是存在缺陷的。\n\n条件随机场通过引入自定义的特征函数，不仅可以表达观测之间的依赖，还可表示当前观测与前后多个状态之间的复杂依赖，可以有效克服HMM模型面临的问题。\n\n为了建立一个条件随机场，我们首先要定义一个特征函数集，该函数集内的每个特征函数都以标注序列作为输入，提取的特征作为输出。假设该函数集为：\n\n![函数集](./imgs/func_set.png)\n\n其中$x=(x_1, ..., x_m)$表示观测序列，$s = (s_1, ...., s_m)$表示状态序列。然后，条件随机场使用对数线性模型来计算给定观测序列下状态序列的条件概率：\n\n![log_linear_crf](./imgs/log_linear_crf.png)\n\n其中$s^{'}$是是所有可能的状态序列，$w$是条件随机场模型的参数，可以把它看成是每个特征函数的权重。CRF模型的训练其实就是对参数$w$的估计。假设我们有$n$个已经标注好的数据$\\{(x^i, s^i)\\}_{i=1}^n$，\n\n则其对数似然函数的正则化形式如下：\n\n![log_likehood_crf](./imgs/log_likehood_crf.png)\n\n那么，最优参数$w^*$就是：\n\n![w_crf](./imgs/w_crf.png)\n\n模型训练结束之后，对给定的观测序列$x$，它对应的最优状态序列应该是：\n\n![decode_crf](./imgs/decode_crf.png)\n\n解码的时候与HMM类似，也可以采用维特比算法。\n\n具体的细节可以查看 `models/crf.py`文件。\n\n\n\n\n\n## Bi-LSTM\n\n除了以上两种基于概率图模型的方法，LSTM也常常被用来解决序列标注问题。和HMM、CRF不同的是，LSTM是依靠神经网络超强的非线性拟合能力，在训练时将样本通过高维空间中的复杂非线性变换，学习到从样本到标注的函数，之后使用这个函数为指定的样本预测每个token的标注。下方就是使用双向LSTM（双向能够更好的捕捉序列之间的依赖关系）进行序列标注的示意图：\n\n\n\n![biLSTM_NER](./imgs/biLSTM_NER.png)\n\n\n\n基于双向LSTM的序列标注模型实现可以查看`models/bilstm.py`文件。\n\n\n\n##  Bi-LSTM+CRF\n\nLSTM的优点是能够通过双向的设置学习到观测序列（输入的字）之间的依赖，在训练过程中，LSTM能够根据目标（比如识别实体）自动提取观测序列的特征，但是缺点是无法学习到状态序列（输出的标注）之间的关系，要知道，在命名实体识别任务中，标注之间是有一定的关系的，比如B类标注（表示某实体的开头）后面不会再接一个B类标注，所以LSTM在解决NER这类序列标注任务时，虽然可以省去很繁杂的特征工程，但是也存在无法学习到标注上下文的缺点。\n\n相反，CRF的优点就是能对隐含状态建模，学习状态序列的特点，但它的缺点是需要手动提取序列特征。所以一般的做法是，在LSTM后面再加一层CRF，以获得两者的优点。\n\n具体的实现请查看`models/bilstm_crf.py`\n\n\n\n## 代码中一些需要注意的点\n\n* HMM模型中要处理OOV(Out of vocabulary)的问题，就是测试集里面有些字是不在训练集里面的，\n  这个时候通过观测概率矩阵是无法查询到OOV对应的各种状态的概率的，处理这个问题可以将OOV对应的状态的概率分布设为均匀分布。\n* HMM的三个参数（即状态转移概率矩阵、观测概率矩阵以及初始状态概率矩阵）在使用监督学习方法进行估计的过程中，如果有些项从未出现，那么该项对应的位置就为0，而在使用维特比算法进行解码的时候，计算过程需要将这些值相乘，那么如果其中有为0的项，那么整条路径的概率也变成0了。此外，解码过程中多个小概率相乘很可能出现下溢的情况，为了解决这两个问题，我们给那些从未出现过的项赋予一个很小的数(如0.00000001)，同时在进行解码的时候将模型的三个参数都映射到对数空间，这样既可以避免下溢，又可以简化乘法运算。\n* CRF中将训练数据以及测试数据作为模型的输入之前，都需要先用特征函数提取特征！\n* Bi-LSTM+CRF模型可以参考：[Neural Architectures for Named Entity Recognition](https://arxiv.org/pdf/1603.01360.pdf)，可以重点看一下里面的损失函数的定义。代码里面关于损失函数的计算采用的是类似动态规划的方法，不是很好理解，这里推荐看一下以下这些博客：\n\n  * [CRF Layer on the Top of BiLSTM - 5](https://createmomo.github.io/2017/11/11/CRF-Layer-on-the-Top-of-BiLSTM-5/)\n  * [Bi-LSTM-CRF for Sequence Labeling PENG](https://zhuanlan.zhihu.com/p/27338210) \n  * [Pytorch Bi-LSTM + CRF 代码详解](https://blog.csdn.net/cuihuijun1hao/article/details/79405740)\n\n\n\n\n## TODO\n\n* BI-LSTM+CRF 比起Bi-LSTM效果并没有好很多，一种可能的解释是：\n  - 数据集太小，不足够让模型学习到转移矩阵（后续尝试在更大的数据集上测试一下结果）\n* 尝试更加复杂的模型，参考论文[Chinese NER using Lattice LSTM](https://github.com/jiesutd/LatticeLSTM)\n* 更详细的评估结果：打印混淆矩阵，同时输出每种类别的召回率、准确率、F1指标，便于分析。\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
  },
  {
    "path": "named_entity_recognition/ResumeNER/dev.char.bmes",
    "content": "吴 B-NAME\n重 M-NAME\n阳 E-NAME\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n工 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n特 O\n殊 O\n津 O\n贴 O\n， O\n历 O\n任 O\n邮 B-ORG\n电 M-ORG\n部 M-ORG\n侯 M-ORG\n马 M-ORG\n电 M-ORG\n缆 M-ORG\n厂 E-ORG\n仪 B-TITLE\n表 M-TITLE\n试 M-TITLE\n制 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n光 B-TITLE\n缆 M-TITLE\n分 M-TITLE\n厂 M-TITLE\n副 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n所 M-TITLE\n副 M-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n获 O\n得 O\n过 O\n山 O\n西 O\n省 O\n科 O\n技 O\n先 O\n进 O\n工 O\n作 O\n者 O\n、 O\n邮 O\n电 O\n部 O\n成 O\n绩 O\n优 O\n异 O\n高 O\n级 O\n工 O\n程 O\n师 O\n等 O\n多 O\n种 O\n荣 O\n誉 O\n称 O\n号 O\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n受 O\n聘 O\n为 O\n公 B-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n资 M-TITLE\n深 M-TITLE\n技 M-TITLE\n术 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n； O\n\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n技 M-ORG\n会 M-ORG\n堂 E-ORG\n专 B-TITLE\n家 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n新 M-ORG\n时 M-ORG\n代 M-ORG\n国 M-ORG\n际 M-ORG\n文 M-ORG\n化 M-ORG\n出 M-ORG\n版 M-ORG\n社 E-ORG\n科 B-TITLE\n技 M-TITLE\n专 M-TITLE\n家 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n。 O\n\n谢 B-NAME\n卫 M-NAME\n东 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n国 B-TITLE\n家 M-TITLE\n注 M-TITLE\n册 M-TITLE\n造 M-TITLE\n价 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n5 O\n月 O\n至 O\n今 O\n在 O\n厦 B-ORG\n门 M-ORG\n泛 M-ORG\n华 M-ORG\n集 M-ORG\n团 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n集 B-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n集 B-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n云 B-ORG\n南 M-ORG\n罗 M-ORG\n平 M-ORG\n锌 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n喻 B-NAME\n晓 M-NAME\n春 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n高 B-EDU\n中 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n至 O\n1 O\n9 O\n8 O\n3 O\n年 O\n， O\n在 O\n兰 B-ORG\n州 M-ORG\n军 M-ORG\n区 M-ORG\n8 M-ORG\n4 M-ORG\n5 M-ORG\n6 M-ORG\n4 M-ORG\n部 M-ORG\n队 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n至 O\n1 O\n9 O\n8 O\n6 O\n年 O\n， O\n在 O\n国 B-ORG\n营 M-ORG\n1 M-ORG\n3 M-ORG\n5 M-ORG\n工 M-ORG\n厂 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n， O\n在 O\n甘 B-ORG\n肃 M-ORG\n省 M-ORG\n畜 M-ORG\n产 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n至 O\n今 O\n， O\n在 O\n上 B-ORG\n海 M-ORG\n百 M-ORG\n润 M-ORG\n香 M-ORG\n精 M-ORG\n香 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n； O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n百 M-ORG\n润 M-ORG\n香 M-ORG\n精 M-ORG\n香 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n烟 B-TITLE\n草 M-TITLE\n销 M-TITLE\n售 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n赵 B-NAME\n伟 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n兰 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n系 E-ORG\n硕 B-EDU\n士 E-EDU\n毕 O\n业 O\n， O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-TITLE\n济 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n甘 B-ORG\n肃 M-ORG\n省 M-ORG\n建 M-ORG\n工 M-ORG\n局 E-ORG\n工 B-TITLE\n人 E-TITLE\n， O\n兰 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n系 E-ORG\n讲 B-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n杭 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n系 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n瑞 B-ORG\n士 M-ORG\n联 M-ORG\n邦 M-ORG\n理 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n及 O\n德 B-ORG\n国 M-ORG\n明 M-ORG\n思 M-ORG\n特 M-ORG\n大 M-ORG\n学 E-ORG\n客 B-TITLE\n座 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n任 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n国 B-ORG\n际 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n， O\n兼 O\n任 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n委 M-ORG\n政 M-ORG\n策 M-ORG\n研 M-ORG\n究 M-ORG\n室 E-ORG\n特 B-TITLE\n邀 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n经 M-ORG\n济 M-ORG\n合 M-ORG\n作 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n世 M-ORG\n界 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n欧 M-ORG\n洲 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n经 M-ORG\n济 M-ORG\n史 M-ORG\n学 M-ORG\n会 M-ORG\n外 M-ORG\n国 M-ORG\n经 M-ORG\n济 M-ORG\n史 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n留 M-ORG\n学 M-ORG\n基 M-ORG\n金 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n评 B-TITLE\n审 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n社 M-ORG\n科 M-ORG\n规 M-ORG\n划 M-ORG\n学 M-ORG\n科 M-ORG\n组 E-ORG\n专 B-TITLE\n家 E-TITLE\n。 O\n\n金 B-NAME\n美 M-NAME\n欧 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n温 B-ORG\n州 M-ORG\n金 M-ORG\n龙 M-ORG\n船 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n任 O\n金 B-ORG\n龙 M-ORG\n机 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n林 B-NAME\n金 M-NAME\n和 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n0 O\n月 O\n进 O\n入 O\n江 B-ORG\n苏 M-ORG\n东 M-ORG\n华 M-ORG\n测 M-ORG\n试 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n斐 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n税 M-TITLE\n务 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n， O\n在 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n地 M-ORG\n矿 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n从 O\n事 O\n会 B-TITLE\n计 E-TITLE\n工 O\n作 O\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n， O\n在 O\n山 B-ORG\n东 M-ORG\n正 M-ORG\n源 M-ORG\n和 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n和 O\n深 B-ORG\n圳 M-ORG\n天 M-ORG\n健 M-ORG\n信 M-ORG\n德 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n担 O\n任 O\n审 B-TITLE\n计 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n， O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n天 M-ORG\n音 M-ORG\n通 M-ORG\n信 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n正 O\n式 O\n加 O\n入 O\n博 B-ORG\n彦 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n博 B-ORG\n彦 M-ORG\n科 M-ORG\n技 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n李 B-NAME\n海 M-NAME\n鹰 E-NAME\n先 O\n生 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n7 O\n年 O\n8 O\n月 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n2 O\n月 O\n任 O\n河 B-ORG\n南 M-ORG\n辉 M-ORG\n煌 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n2 O\n月 O\n至 O\n今 O\n担 O\n任 O\n辉 B-ORG\n煌 M-ORG\n科 M-ORG\n技 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n最 O\n近 O\n5 O\n年 O\n无 O\n在 O\n其 O\n他 O\n单 O\n位 O\n担 O\n任 O\n董 O\n事 O\n、 O\n监 O\n事 O\n、 O\n高 O\n级 O\n管 O\n理 O\n人 O\n员 O\n的 O\n情 O\n况 O\n。 O\n\n段 B-NAME\n志 M-NAME\n平 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n4 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n担 O\n任 O\n甘 B-ORG\n肃 M-ORG\n定 M-ORG\n西 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n质 B-TITLE\n监 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n企 B-TITLE\n管 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n代 B-TITLE\n理 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n兰 B-ORG\n州 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n恒 B-ORG\n康 M-ORG\n医 M-ORG\n疗 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n恒 B-ORG\n康 M-ORG\n医 M-ORG\n疗 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n黄 B-NAME\n家 M-NAME\n学 E-NAME\n， O\n男 O\n， O\n美 B-ORG\n国 M-ORG\n俄 M-ORG\n克 M-ORG\n拉 M-ORG\n何 M-ORG\n马 M-ORG\n大 M-ORG\n学 M-ORG\n健 M-ORG\n康 M-ORG\n医 M-ORG\n学 M-ORG\n中 M-ORG\n心 E-ORG\n微 B-PRO\n生 M-PRO\n物 M-PRO\n与 M-PRO\n免 M-PRO\n疫 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n2 O\n月 O\n任 O\n中 B-ORG\n源 M-ORG\n协 M-ORG\n和 M-ORG\n细 M-ORG\n胞 M-ORG\n基 M-ORG\n因 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n中 B-ORG\n源 M-ORG\n协 M-ORG\n和 M-ORG\n细 M-ORG\n胞 M-ORG\n基 M-ORG\n因 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n质 M-TITLE\n量 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n朱 B-NAME\n慈 M-NAME\n蕴 E-NAME\n女 O\n士 O\n： O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n博 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n天 B-ORG\n津 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n讲 B-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n8 O\n月 O\n至 O\n今 O\n在 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n任 O\n教 O\n， O\n受 O\n聘 O\n为 O\n责 B-TITLE\n任 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n， O\n参 O\n加 O\n由 O\n中 O\n国 O\n证 O\n监 O\n会 O\n培 O\n训 O\n中 O\n心 O\n与 O\n清 O\n华 O\n大 O\n学 O\n经 O\n管 O\n院 O\n联 O\n合 O\n举 O\n办 O\n的 O\n独 O\n立 O\n董 O\n事 O\n培 O\n训 O\n班 O\n， O\n并 O\n获 O\n结 O\n业 O\n证 O\n书 O\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n鼎 B-ORG\n捷 M-ORG\n软 M-ORG\n件 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n被 O\n选 O\n为 O\n海 B-TITLE\n淀 M-TITLE\n区 M-TITLE\n第 M-TITLE\n十 M-TITLE\n三 M-TITLE\n届 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n并 O\n出 O\n任 O\n海 B-ORG\n淀 M-ORG\n区 M-ORG\n第 M-ORG\n十 M-ORG\n三 M-ORG\n届 M-ORG\n人 M-ORG\n大 M-ORG\n财 M-ORG\n经 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n继 O\n续 O\n当 O\n选 O\n海 B-TITLE\n淀 M-TITLE\n区 M-TITLE\n第 M-TITLE\n十 M-TITLE\n四 M-TITLE\n届 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n财 B-ORG\n经 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n继 O\n续 O\n当 O\n选 O\n海 B-TITLE\n淀 M-TITLE\n区 M-TITLE\n第 M-TITLE\n十 M-TITLE\n五 M-TITLE\n届 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n财 B-ORG\n经 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n获 O\n全 O\n国 O\n第 O\n二 O\n届 O\n杰 O\n出 O\n中 O\n青 O\n年 O\n法 O\n学 O\n家 O\n提 O\n名 O\n奖 O\n、 O\n天 O\n津 O\n市 O\n政 O\n府 O\n第 O\n五 O\n届 O\n社 O\n会 O\n科 O\n学 O\n优 O\n秀 O\n成 O\n果 O\n二 O\n等 O\n奖 O\n、 O\n北 O\n京 O\n市 O\n第 O\n六 O\n届 O\n哲 O\n学 O\n社 O\n会 O\n科 O\n学 O\n二 O\n等 O\n奖 O\n、 O\n第 O\n四 O\n届 O\n吴 O\n玉 O\n章 O\n奖 O\n优 O\n秀 O\n奖 O\n、 O\n第 O\n三 O\n届 O\n中 O\n国 O\n高 O\n校 O\n人 O\n文 O\n社 O\n会 O\n科 O\n学 O\n研 O\n究 O\n优 O\n秀 O\n成 O\n果 O\n三 O\n等 O\n奖 O\n、 O\n1 O\n9 O\n9 O\n9 O\n年 O\n度 O\n美 O\n国 O\nC O\no O\nl O\nb O\ny O\n科 O\n学 O\n文 O\n化 O\n信 O\n息 O\n中 O\n心 O\n优 O\n秀 O\n论 O\n文 O\n奖 O\n、 O\n第 O\n一 O\n届 O\n“ O\n中 O\n国 O\n法 O\n学 O\n优 O\n秀 O\n成 O\n果 O\n奖 O\n” O\n论 O\n文 O\n类 O\n三 O\n等 O\n奖 O\n（ O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n1 O\n月 O\n） O\n、 O\n第 O\n二 O\n届 O\n“ O\n中 O\n国 O\n法 O\n学 O\n优 O\n秀 O\n成 O\n果 O\n奖 O\n” O\n专 O\n著 O\n二 O\n等 O\n奖 O\n（ O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n1 O\n月 O\n） O\n等 O\n。 O\n\n吴 B-NAME\n纹 E-NAME\n， O\n女 O\n， O\n毕 O\n业 O\n于 O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\n职 O\n深 B-ORG\n圳 M-ORG\n科 M-ORG\n兴 M-ORG\n生 M-ORG\n物 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n职 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n北 M-ORG\n大 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n7 O\n月 O\n起 O\n任 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n国 M-ORG\n农 M-ORG\n大 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n袁 B-NAME\n国 M-NAME\n强 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n宏 B-ORG\n图 M-ORG\n高 M-ORG\n科 M-ORG\n光 M-ORG\n电 M-ORG\n线 M-ORG\n缆 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n( O\n8 O\n3 O\n9 O\n0 O\n厂 O\n) O\n计 B-TITLE\n划 M-TITLE\n员 E-TITLE\n、 O\n供 B-TITLE\n销 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n军 B-TITLE\n品 M-TITLE\n分 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n宏 B-ORG\n图 M-ORG\n高 M-ORG\n科 M-ORG\n光 M-ORG\n电 M-ORG\n线 M-ORG\n缆 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n海 B-ORG\n南 M-ORG\n电 M-ORG\n缆 M-ORG\n厂 E-ORG\n( O\n海 B-ORG\n南 M-ORG\n通 M-ORG\n信 M-ORG\n电 M-ORG\n缆 M-ORG\n厂 E-ORG\n) O\n厂 B-TITLE\n长 E-TITLE\n。 O\n\n罗 B-NAME\n玫 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n3 O\n月 O\n生 O\n， O\n美 B-ORG\n国 M-ORG\n加 M-ORG\n州 M-ORG\n伯 M-ORG\n克 M-ORG\n利 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-EDU\n士 E-EDU\n。 O\n\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n美 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n、 O\n美 B-ORG\n国 M-ORG\n金 M-ORG\n融 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n专 M-ORG\n业 M-ORG\n硕 M-ORG\n士 M-ORG\nM M-ORG\nP M-ORG\nA M-ORG\nc M-ORG\nc E-ORG\n项 B-TITLE\n目 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n兼 O\n任 O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\n会 M-ORG\n计 M-ORG\n协 M-ORG\n会 M-ORG\n期 M-ORG\n刊 M-ORG\n《 M-ORG\nA M-ORG\nc M-ORG\nc M-ORG\no M-ORG\nu M-ORG\nn M-ORG\nt M-ORG\ni M-ORG\nn M-ORG\ng M-ORG\nP M-ORG\ne M-ORG\nr M-ORG\ns M-ORG\np M-ORG\ne M-ORG\nc M-ORG\nt M-ORG\ni M-ORG\nv M-ORG\ne M-ORG\ns M-ORG\n》 E-ORG\n副 B-TITLE\n主 M-TITLE\n编 E-TITLE\n、 O\n《 B-ORG\nJ M-ORG\no M-ORG\nu M-ORG\nr M-ORG\nn M-ORG\na M-ORG\nl M-ORG\no M-ORG\nf M-ORG\nA M-ORG\nc M-ORG\nc M-ORG\no M-ORG\nu M-ORG\nn M-ORG\nt M-ORG\ni M-ORG\nn M-ORG\ng M-ORG\na M-ORG\nn M-ORG\nd M-ORG\nP M-ORG\nu M-ORG\nb M-ORG\nl M-ORG\ni M-ORG\nc M-ORG\nP M-ORG\no M-ORG\nl M-ORG\ni M-ORG\nc M-ORG\ny M-ORG\n》 E-ORG\n审 B-TITLE\n稿 M-TITLE\n人 E-TITLE\n。 O\n\n司 B-NAME\n增 M-NAME\n勤 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n枣 B-ORG\n庄 M-ORG\n市 M-ORG\n电 M-ORG\n力 M-ORG\n局 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n鲁 M-ORG\n能 M-ORG\n燃 M-ORG\n料 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n泰 B-ORG\n安 M-ORG\n高 M-ORG\n压 M-ORG\n开 M-ORG\n关 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n厂 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n鲁 M-ORG\n能 M-ORG\n泰 M-ORG\n山 M-ORG\n电 M-ORG\n缆 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n华 B-ORG\n能 M-ORG\n泰 M-ORG\n山 M-ORG\n电 M-ORG\n力 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n新 M-ORG\n能 M-ORG\n泰 M-ORG\n山 M-ORG\n发 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n章 B-NAME\n小 M-NAME\n龙 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n美 B-ORG\n国 M-ORG\n亚 M-ORG\n利 M-ORG\n桑 M-ORG\n那 M-ORG\n州 M-ORG\n立 M-ORG\n大 M-ORG\n学 M-ORG\n凯 M-ORG\n瑞 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n份 O\n至 O\n今 O\n一 O\n直 O\n担 O\n任 O\n江 B-ORG\n苏 M-ORG\n恩 M-ORG\n华 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n兼 O\n任 O\n上 B-ORG\n海 M-ORG\n彤 M-ORG\n源 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n胡 B-NAME\n钢 M-NAME\n亮 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n9 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 E-EDU\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n浙 B-ORG\n江 M-ORG\n康 M-ORG\n恩 M-ORG\n贝 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n杭 B-ORG\n州 M-ORG\n茵 M-ORG\n诺 M-ORG\n邦 M-ORG\n医 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n康 M-ORG\n恩 M-ORG\n贝 M-ORG\n健 M-ORG\n康 M-ORG\n产 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n报 O\n告 O\n期 O\n内 O\n因 O\n监 O\n事 O\n会 O\n换 O\n届 O\n已 O\n不 O\n在 O\n浙 B-ORG\n江 M-ORG\n康 M-ORG\n恩 M-ORG\n贝 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n职 O\n。 O\n\n赵 B-NAME\n振 M-NAME\n营 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n3 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n辽 B-LOC\n宁 M-LOC\n海 M-LOC\n城 M-LOC\n人 E-LOC\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n湘 B-ORG\n潭 M-ORG\n钢 M-ORG\n铁 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n宣 M-TITLE\n传 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n第 B-ORG\n二 M-ORG\n炼 M-ORG\n钢 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n湘 B-ORG\n潭 M-ORG\n钢 M-ORG\n铁 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n菱 M-ORG\n管 M-ORG\n线 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n湘 B-TITLE\n钢 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n党 M-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n菱 M-ORG\n钢 M-ORG\n铁 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n湘 B-ORG\n潭 M-ORG\n钢 M-ORG\n铁 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n菱 M-ORG\n湘 M-ORG\n钢 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n菱 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n三 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n韩 B-NAME\n文 M-NAME\n武 E-NAME\n（ O\n离 O\n任 O\n） O\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n华 M-ORG\n元 M-ORG\n机 M-ORG\n电 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n及 M-TITLE\n税 M-TITLE\n务 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n华 B-ORG\n夏 M-ORG\n控 M-ORG\n股 E-ORG\n出 B-TITLE\n纳 E-TITLE\n、 O\n会 B-TITLE\n计 E-TITLE\n； O\n\n九 B-ORG\n通 M-ORG\n投 M-ORG\n资 E-ORG\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n华 B-ORG\n夏 M-ORG\n控 M-ORG\n股 E-ORG\n财 B-TITLE\n务 M-TITLE\n高 M-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n华 B-ORG\n夏 M-ORG\n幸 M-ORG\n福 E-ORG\n财 B-TITLE\n务 M-TITLE\n高 M-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n期 O\n间 O\n任 O\n华 B-ORG\n夏 M-ORG\n幸 M-ORG\n福 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n吴 B-NAME\n幼 M-NAME\n光 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n宁 B-ORG\n波 M-ORG\n雅 M-ORG\n戈 M-ORG\n尔 M-ORG\n制 M-ORG\n衣 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n， O\n雅 B-ORG\n戈 M-ORG\n尔 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n雅 B-ORG\n戈 M-ORG\n尔 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n龙 B-NAME\n虹 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n助 B-TITLE\n教 E-TITLE\n、 O\n支 B-TITLE\n部 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n管 B-TITLE\n理 M-TITLE\n学 M-TITLE\n院 M-TITLE\n讲 M-TITLE\n师 E-TITLE\n、 O\n室 B-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n支 B-TITLE\n部 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n支 B-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n院 B-TITLE\n工 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n管 B-ORG\n理 M-ORG\n与 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n室 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n系 B-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n支 B-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n院 B-TITLE\n工 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n盛 B-ORG\n京 M-ORG\n银 M-ORG\n行 M-ORG\n北 M-ORG\n京 M-ORG\n分 M-ORG\n行 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n盛 B-ORG\n京 M-ORG\n银 M-ORG\n行 M-ORG\n北 M-ORG\n京 M-ORG\n分 M-ORG\n行 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n东 B-ORG\n北 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n姓 O\n名 O\n： O\n苏 B-NAME\n壮 M-NAME\n强 E-NAME\n性 O\n别 O\n： O\n男 O\n民 O\n族 O\n： O\n汉 S-RACE\n出 O\n生 O\n年 O\n月 O\n： O\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n0 O\n月 O\n2 O\n3 O\n日 O\n教 O\n育 O\n程 O\n度 O\n： O\n大 B-EDU\n学 E-EDU\n健 O\n康 O\n状 O\n况 O\n： O\n良 O\n好 O\n1 O\n9 O\n8 O\n9 O\n年 O\n9 O\n月 O\n- O\n- O\n1 O\n9 O\n9 O\n3 O\n年 O\n9 O\n月 O\n汕 B-ORG\n头 M-ORG\n大 M-ORG\n学 E-ORG\n学 B-TITLE\n生 E-TITLE\n1 O\n9 O\n9 O\n3 O\n年 O\n1 O\n0 O\n月 O\n- O\n- O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n0 O\n月 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n联 M-ORG\n美 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n0 O\n月 O\n— O\n至 O\n今 O\n沈 B-ORG\n阳 M-ORG\n房 M-ORG\n产 M-ORG\n实 M-ORG\n业 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n2 O\n0 O\n0 O\n4 O\n年 O\n5 O\n月 O\n— O\n— O\n— O\n至 O\n今 O\n中 B-ORG\n体 M-ORG\n产 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n\n郑 B-NAME\n培 M-NAME\n敏 E-NAME\n： O\n男 O\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n荣 M-ORG\n正 M-ORG\n投 M-ORG\n资 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n首 B-TITLE\n席 M-TITLE\n合 M-TITLE\n伙 M-TITLE\n人 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n海 M-ORG\n诚 E-ORG\n、 O\n创 B-ORG\n元 M-ORG\n科 M-ORG\n技 E-ORG\n、 O\n东 B-ORG\n方 M-ORG\n明 M-ORG\n珠 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n投 B-ORG\n资 M-ORG\n银 M-ORG\n行 M-ORG\n业 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n吴 B-NAME\n健 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n1 O\n1 O\n月 O\n1 O\n5 O\n日 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n江 B-ORG\n阴 M-ORG\n职 M-ORG\n教 M-ORG\n中 M-ORG\n心 E-ORG\n会 B-TITLE\n计 E-TITLE\n； O\n\n江 B-ORG\n阴 M-ORG\n市 M-ORG\n教 M-ORG\n育 M-ORG\n局 E-ORG\n计 B-TITLE\n财 M-TITLE\n审 M-TITLE\n计 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n江 B-ORG\n阴 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n国 B-TITLE\n库 M-TITLE\n集 M-TITLE\n中 M-TITLE\n支 M-TITLE\n付 M-TITLE\n中 M-TITLE\n心 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n江 B-ORG\n南 M-ORG\n水 M-ORG\n务 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n南 M-ORG\n水 M-ORG\n务 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n江 B-ORG\n阴 M-ORG\n市 M-ORG\n市 M-ORG\n属 M-ORG\n集 M-ORG\n体 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n办 M-ORG\n公 M-ORG\n室 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n杨 B-NAME\n小 M-NAME\n勇 E-NAME\n先 O\n生 O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n1 O\n9 O\n6 O\n3 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n就 O\n职 O\n于 O\n太 B-ORG\n原 M-ORG\n重 M-ORG\n机 M-ORG\n学 M-ORG\n院 E-ORG\n、 O\n山 B-ORG\n西 M-ORG\n省 M-ORG\n高 M-ORG\n校 M-ORG\n工 M-ORG\n委 E-ORG\n、 O\n山 B-ORG\n西 M-ORG\n省 M-ORG\n委 M-ORG\n组 M-ORG\n织 M-ORG\n部 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n2 O\n月 O\n任 O\n山 B-ORG\n西 M-ORG\n省 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n， O\n任 O\n国 B-ORG\n信 M-ORG\n集 M-ORG\n团 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n2 O\n月 O\n至 O\n今 O\n任 O\n山 B-ORG\n西 M-ORG\n信 M-ORG\n托 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n兼 O\n任 O\n汇 B-ORG\n丰 M-ORG\n晋 M-ORG\n信 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n国 B-ORG\n信 M-ORG\n集 M-ORG\n团 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n任 O\n山 B-ORG\n西 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n2 O\n月 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n汉 E-NAME\n先 O\n生 O\n， O\n董 B-TITLE\n事 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n， O\n广 O\n东 O\n省 O\n五 O\n一 O\n劳 O\n动 O\n奖 O\n章 O\n获 O\n得 O\n者 O\n、 O\n广 B-ORG\n东 M-ORG\n海 M-ORG\n洋 M-ORG\n大 M-ORG\n学 E-ORG\n客 B-TITLE\n座 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n湛 B-ORG\n江 M-ORG\n市 E-ORG\n人 B-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n、 O\n湛 B-ORG\n江 M-ORG\n市 M-ORG\n水 M-ORG\n产 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n。 O\n\n陈 O\n汉 O\n拥 O\n2 O\n0 O\n年 O\n的 O\n水 O\n产 O\n从 O\n业 O\n经 O\n历 O\n， O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n就 O\n职 O\n于 O\n湛 B-ORG\n江 M-ORG\n市 M-ORG\n坡 M-ORG\n头 M-ORG\n外 M-ORG\n经 M-ORG\n冷 M-ORG\n冻 M-ORG\n厂 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n参 O\n与 O\n创 O\n立 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n与 O\n其 O\n他 O\n持 O\n有 O\n公 O\n司 O\n5 O\n% O\n以 O\n上 O\n股 O\n份 O\n的 O\n股 O\n东 O\n、 O\n实 O\n际 O\n控 O\n制 O\n人 O\n、 O\n其 O\n他 O\n董 O\n事 O\n、 O\n监 O\n事 O\n、 O\n高 O\n级 O\n管 O\n理 O\n人 O\n员 O\n不 O\n存 O\n在 O\n关 O\n联 O\n关 O\n系 O\n。 O\n\n李 B-NAME\n苏 M-NAME\n龙 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n晋 B-ORG\n城 M-ORG\n煤 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n管 M-TITLE\n理 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n山 B-ORG\n西 M-ORG\n煤 M-ORG\n炭 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n山 B-ORG\n煤 M-ORG\n国 M-ORG\n际 M-ORG\n能 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n汤 B-NAME\n巨 M-NAME\n祥 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n西 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n法 M-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n江 B-ORG\n仓 M-ORG\n能 M-ORG\n源 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n五 B-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n罗 B-NAME\n世 M-NAME\n容 E-NAME\n， O\n女 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n9 O\n月 O\n生 O\n。 O\n\n北 B-ORG\n京 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n毕 O\n业 O\n， O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n6 O\n月 O\n， O\n就 O\n职 O\n于 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n轻 M-ORG\n工 M-ORG\n厅 E-ORG\n， O\n任 O\n财 B-TITLE\n经 M-TITLE\n教 M-TITLE\n研 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n6 O\n月 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n7 O\n月 O\n， O\n就 O\n职 O\n于 O\n海 B-ORG\n南 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n证 O\n券 O\n部 O\n， O\n任 O\n主 B-TITLE\n办 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n2 O\n月 O\n， O\n就 O\n职 O\n于 O\n长 B-ORG\n城 M-ORG\n证 M-ORG\n券 M-ORG\n（ M-ORG\n汇 M-ORG\n通 M-ORG\n） M-ORG\n深 M-ORG\n圳 M-ORG\n二 M-ORG\n部 E-ORG\n， O\n任 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n2 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n3 O\n月 O\n， O\n就 O\n职 O\n于 O\n长 B-ORG\n城 M-ORG\n证 M-ORG\n券 M-ORG\n成 M-ORG\n都 M-ORG\n营 M-ORG\n业 M-ORG\n部 E-ORG\n， O\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n3 O\n月 O\n， O\n就 O\n职 O\n于 O\n长 B-ORG\n城 M-ORG\n证 M-ORG\n券 M-ORG\n深 M-ORG\n圳 M-ORG\n一 M-ORG\n部 E-ORG\n， O\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n长 B-ORG\n城 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n赵 B-NAME\n国 M-NAME\n民 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n于 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA M-EDU\n硕 M-EDU\n士 E-EDU\n。 O\n\n先 O\n后 O\n就 O\n职 O\n于 O\n杭 B-ORG\n州 M-ORG\n市 M-ORG\n公 M-ORG\n安 M-ORG\n局 E-ORG\n、 O\n杭 B-ORG\n州 M-ORG\n华 M-ORG\n特 M-ORG\n移 M-ORG\n动 M-ORG\n通 M-ORG\n讯 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n浙 B-ORG\n江 M-ORG\n通 M-ORG\n普 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n和 O\n上 B-ORG\n海 M-ORG\n欣 M-ORG\n民 M-ORG\n通 M-ORG\n信 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n为 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n科 B-TITLE\n学 M-TITLE\n技 M-TITLE\n术 M-TITLE\n创 M-TITLE\n新 M-TITLE\n类 M-TITLE\n评 M-TITLE\n审 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n人 M-ORG\n事 M-ORG\n局 E-ORG\n电 B-TITLE\n子 M-TITLE\n工 M-TITLE\n程 M-TITLE\n类 M-TITLE\n职 M-TITLE\n称 M-TITLE\n评 M-TITLE\n审 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n科 B-TITLE\n技 M-TITLE\n管 M-TITLE\n理 M-TITLE\n类 M-TITLE\n评 M-TITLE\n审 M-TITLE\n专 M-TITLE\n家 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n9 O\n日 O\n起 O\n任 O\n三 B-ORG\n维 M-ORG\n通 M-ORG\n信 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n上 B-ORG\n海 M-ORG\n三 M-ORG\n维 M-ORG\n通 M-ORG\n信 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n广 B-ORG\n州 M-ORG\n逸 M-ORG\n信 M-ORG\n电 M-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n马 B-NAME\n忠 M-NAME\n礼 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n起 O\n出 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n马 S-NAME\n先 O\n生 O\n1 O\n9 O\n7 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n伦 B-ORG\n敦 M-ORG\n大 M-ORG\n学 E-ORG\n生 B-PRO\n物 M-PRO\n化 M-PRO\n工 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n现 O\n任 O\n香 B-ORG\n港 M-ORG\n大 M-ORG\n庆 M-ORG\n石 M-ORG\n油 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n并 O\n担 O\n任 O\n中 B-ORG\n华 M-ORG\n全 M-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n业 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n（ B-TITLE\n第 M-TITLE\n九 M-TITLE\n届 M-TITLE\n） M-TITLE\n执 M-TITLE\n行 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n治 M-ORG\n协 M-ORG\n商 M-ORG\n会 M-ORG\n议 M-ORG\n江 M-ORG\n苏 M-ORG\n省 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n（ B-TITLE\n第 M-TITLE\n九 M-TITLE\n届 M-TITLE\n） M-TITLE\n常 M-TITLE\n务 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n华 M-ORG\n总 M-ORG\n商 M-ORG\n会 E-ORG\n会 B-TITLE\n董 E-TITLE\n。 O\n\n马 S-NAME\n先 O\n生 O\n长 O\n期 O\n从 O\n事 O\n企 O\n业 O\n经 O\n营 O\n管 O\n理 O\n工 O\n作 O\n， O\n具 O\n有 O\n先 O\n进 O\n的 O\n企 O\n业 O\n管 O\n理 O\n理 O\n念 O\n和 O\n经 O\n验 O\n。 O\n\n汪 B-NAME\n春 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n8 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n公 M-ORG\n路 M-ORG\n勘 M-ORG\n察 M-ORG\n规 M-ORG\n划 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n公 B-TITLE\n路 M-TITLE\n规 M-TITLE\n划 M-TITLE\n室 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n和 O\n咨 B-TITLE\n询 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n交 M-ORG\n通 M-ORG\n集 M-ORG\n团 E-ORG\n投 B-TITLE\n资 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n主 B-TITLE\n管 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n9 O\n月 O\n调 O\n至 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n起 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n胡 B-NAME\n立 M-NAME\n君 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n生 O\n， O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-TITLE\n士 M-TITLE\n后 E-TITLE\n， O\n中 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\nM B-ORG\nB M-ORG\nA M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n经 M-ORG\n济 M-ORG\n系 M-ORG\n统 M-ORG\n工 M-ORG\n程 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n业 M-ORG\n经 M-ORG\n济 M-ORG\n协 M-ORG\n会 E-ORG\n个 B-TITLE\n人 M-TITLE\n会 M-TITLE\n员 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n体 M-ORG\n育 M-ORG\n局 M-ORG\n咨 M-ORG\n询 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n特 B-TITLE\n聘 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\nA B-ORG\nc M-ORG\na M-ORG\nd M-ORG\ne M-ORG\nm M-ORG\ny M-ORG\n0 M-ORG\nf M-ORG\nm M-ORG\na M-ORG\nn M-ORG\na M-ORG\ng M-ORG\ne M-ORG\nm M-ORG\ne M-ORG\nn M-ORG\nt E-ORG\n会 B-TITLE\n员 E-TITLE\n（ O\n美 B-ORG\n国 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n会 E-ORG\n） O\n。 O\n\n湖 B-ORG\n北 M-ORG\n三 M-ORG\n环 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n俞 B-NAME\n光 M-NAME\n耀 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n万 M-ORG\n丰 M-ORG\n奥 M-ORG\n威 M-ORG\n汽 M-ORG\n轮 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n公 B-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n曾 O\n任 O\n浙 B-ORG\n江 M-ORG\n万 M-ORG\n丰 M-ORG\n奥 M-ORG\n威 M-ORG\n汽 M-ORG\n轮 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n万 B-ORG\n丰 M-ORG\n奥 M-ORG\n特 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n万 M-ORG\n丰 M-ORG\n奥 M-ORG\n威 M-ORG\n汽 M-ORG\n轮 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n制 B-TITLE\n造 M-TITLE\n中 M-TITLE\n心 M-TITLE\n内 M-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n外 B-TITLE\n协 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n所 O\n获 O\n荣 O\n誉 O\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n新 O\n昌 O\n县 O\n总 O\n工 O\n会 O\n优 O\n秀 O\n工 O\n会 O\n工 O\n作 O\n者 O\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n新 O\n昌 O\n县 O\n总 O\n工 O\n会 O\n优 O\n秀 O\n工 O\n会 O\n工 O\n作 O\n者 O\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n绍 O\n兴 O\n市 O\n工 O\n会 O\n积 O\n极 O\n工 O\n作 O\n者 O\n。 O\n\n朱 B-NAME\n培 M-NAME\n禄 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n宁 M-ORG\n德 M-ORG\n市 M-ORG\n经 M-ORG\n贸 M-ORG\n委 E-ORG\n技 B-TITLE\n术 M-TITLE\n进 M-TITLE\n步 M-TITLE\n与 M-TITLE\n装 M-TITLE\n备 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n宁 M-ORG\n德 M-ORG\n市 M-ORG\n经 M-ORG\n贸 M-ORG\n委 E-ORG\n电 B-TITLE\n力 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n宁 M-ORG\n德 M-ORG\n市 M-ORG\n经 M-ORG\n贸 M-ORG\n委 E-ORG\n能 B-TITLE\n源 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n闽 M-ORG\n东 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n肖 B-NAME\n荣 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n油 B-TITLE\n气 M-TITLE\n集 M-TITLE\n输 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n至 O\n1 O\n9 O\n8 O\n9 O\n年 O\n在 O\n河 B-ORG\n南 M-ORG\n油 M-ORG\n田 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n1 O\n月 O\n在 O\n中 B-ORG\n国 M-ORG\n石 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n河 M-ORG\n南 M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n局 M-ORG\n勘 M-ORG\n察 M-ORG\n设 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n工 O\n作 O\n， O\n先 O\n后 O\n担 O\n任 O\n工 B-TITLE\n艺 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n院 B-TITLE\n副 M-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n院 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n等 O\n职 O\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n7 O\n月 O\n起 O\n历 O\n任 O\n惠 B-ORG\n博 M-ORG\n普 M-ORG\n有 M-ORG\n限 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n自 O\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n华 B-ORG\n油 M-ORG\n惠 M-ORG\n博 M-ORG\n普 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n成 O\n立 O\n至 O\n今 O\n， O\n担 O\n任 O\n华 B-ORG\n油 M-ORG\n惠 M-ORG\n博 M-ORG\n普 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n贾 B-NAME\n一 M-NAME\n览 E-NAME\n出 O\n生 O\n年 O\n月 O\n： O\n1 O\n9 O\n7 O\n3 O\n年 O\n1 O\n1 O\n月 O\n性 O\n别 O\n： O\n女 O\n政 O\n治 O\n面 O\n貌 O\n： O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n学 O\n历 O\n： O\n大 B-EDU\n学 E-EDU\n主 O\n要 O\n工 O\n作 O\n经 O\n历 O\n： O\n1 O\n9 O\n9 O\n5 O\n年 O\n毕 O\n业 O\n于 O\n上 B-ORG\n海 M-ORG\n对 M-ORG\n外 M-ORG\n贸 M-ORG\n易 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n获 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n- O\n至 O\n今 O\n浙 B-ORG\n江 M-ORG\n东 M-ORG\n方 M-ORG\n集 M-ORG\n团 M-ORG\n嘉 M-ORG\n业 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n销 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n东 M-ORG\n方 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n三 B-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n赵 B-NAME\n智 M-NAME\n文 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n国 B-ORG\n际 M-ORG\n金 M-ORG\n融 E-ORG\n博 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n任 O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 M-ORG\n金 M-ORG\n融 M-ORG\n系 E-ORG\n教 B-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n任 O\n渤 B-ORG\n海 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n今 O\n任 O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 M-ORG\n滨 M-ORG\n海 M-ORG\n学 M-ORG\n院 M-ORG\n金 M-ORG\n融 M-ORG\n学 M-ORG\n系 E-ORG\n系 B-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n荣 B-NAME\n森 M-NAME\n林 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n0 O\n月 O\n进 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n7 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n艳 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n在 O\n读 O\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n嘉 M-ORG\n麟 M-ORG\n杰 M-ORG\n纺 M-ORG\n织 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n嘉 B-ORG\n麟 M-ORG\n杰 M-ORG\n运 M-ORG\n动 M-ORG\n用 M-ORG\n品 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\nS B-ORG\nC M-ORG\nT M-ORG\nJ M-ORG\na M-ORG\np E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\nS B-ORG\nN M-ORG\nE M-ORG\nu M-ORG\nr M-ORG\no E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\nC B-ORG\nA M-ORG\nP M-ORG\nA M-ORG\nK E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n普 B-ORG\n澜 M-ORG\n特 M-ORG\n复 M-ORG\n合 M-ORG\n面 M-ORG\n料 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n申 M-ORG\n时 M-ORG\n广 M-ORG\n告 M-ORG\n传 M-ORG\n播 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n嘉 M-ORG\n乐 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n销 B-TITLE\n售 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n肖 B-NAME\n壮 M-NAME\n勇 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n洛 B-ORG\n阳 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n襄 B-ORG\n阳 M-ORG\n汽 M-ORG\n车 M-ORG\n轴 M-ORG\n承 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n产 B-TITLE\n品 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n张 B-NAME\n耀 M-NAME\n明 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n4 O\n3 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n工 M-TITLE\n程 M-TITLE\n院 M-TITLE\n院 M-TITLE\n士 E-TITLE\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n。 O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n玻 M-ORG\n璃 M-ORG\n纤 M-ORG\n维 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n彤 M-ORG\n天 M-ORG\n科 M-ORG\n技 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n材 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n材 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n技 M-TITLE\n术 M-TITLE\n专 M-TITLE\n家 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n市 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n。 O\n\n兼 O\n任 O\n南 B-ORG\n京 M-ORG\n市 M-ORG\n科 M-ORG\n协 E-ORG\n主 B-TITLE\n席 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n春 M-ORG\n辉 M-ORG\n科 M-ORG\n技 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n硅 M-ORG\n酸 M-ORG\n盐 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n玻 M-ORG\n璃 M-ORG\n纤 M-ORG\n维 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n等 O\n职 O\n。 O\n\n曾 O\n获 O\n国 O\n家 O\n科 O\n技 O\n发 O\n明 O\n二 O\n等 O\n奖 O\n1 O\n项 O\n、 O\n国 O\n家 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n3 O\n项 O\n、 O\n三 O\n等 O\n奖 O\n2 O\n项 O\n， O\n杜 O\n邦 O\n科 O\n技 O\n奖 O\n1 O\n项 O\n。 O\n\n王 B-NAME\n荣 M-NAME\n海 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n未 O\n拥 O\n有 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n获 O\n安 O\n徽 O\n省 O\n青 O\n年 O\n科 O\n技 O\n奖 O\n、 O\n安 O\n徽 O\n省 O\n科 O\n学 O\n技 O\n术 O\n进 O\n步 O\n一 O\n等 O\n奖 O\n2 O\n次 O\n、 O\n安 O\n徽 O\n省 O\n科 O\n学 O\n技 O\n术 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n1 O\n次 O\n。 O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n安 M-ORG\n科 M-ORG\n生 M-ORG\n物 M-ORG\n工 M-ORG\n程 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n其 O\n担 O\n任 O\n安 B-ORG\n徽 M-ORG\n安 M-ORG\n科 M-ORG\n生 M-ORG\n物 M-ORG\n工 M-ORG\n程 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n的 O\n任 O\n期 O\n为 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n1 O\n月 O\n5 O\n日 O\n至 O\n2 O\n0 O\n1 O\n6 O\n年 O\n1 O\n1 O\n月 O\n4 O\n日 O\n。 O\n\n徐 B-NAME\n壮 M-NAME\n城 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n出 O\n生 O\n， O\n法 B-PRO\n律 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n卡 M-ORG\n金 M-ORG\n亚 M-ORG\n珠 M-ORG\n宝 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n仲 M-ORG\n裁 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n仲 B-TITLE\n裁 M-TITLE\n员 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n深 M-ORG\n宝 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n5 O\n月 O\n任 O\n杭 B-ORG\n州 M-ORG\n天 M-ORG\n目 M-ORG\n山 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n昆 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n4 O\n7 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n缆 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n高 B-TITLE\n级 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n露 B-ORG\n笑 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n上 M-ORG\n风 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n利 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n2 O\n月 O\n1 O\n0 O\n日 O\n换 O\n届 O\n离 O\n任 O\n。 O\n\n吴 B-NAME\n慕 M-NAME\n涛 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n4 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n、 M-TITLE\n二 M-TITLE\n、 M-TITLE\n三 M-TITLE\n届 M-TITLE\n、 M-TITLE\n四 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n等 O\n职 O\n。 O\n\n曾 O\n获 O\n全 O\n国 O\n优 O\n秀 O\n会 O\n计 O\n称 O\n号 O\n。 O\n\n王 B-NAME\n阿 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n未 O\n有 O\n任 O\n何 O\n国 O\n家 O\n和 O\n地 O\n区 O\n的 O\n永 O\n久 O\n海 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n西 B-ORG\n南 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n畜 B-PRO\n牧 M-PRO\n兽 M-PRO\n医 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n6 O\n月 O\n历 O\n任 O\n广 B-ORG\n东 M-ORG\n大 M-ORG\n华 M-ORG\n农 M-ORG\n动 M-ORG\n物 M-ORG\n保 M-ORG\n健 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n营 B-TITLE\n销 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n至 O\n今 O\n历 O\n任 O\n广 B-ORG\n东 M-ORG\n大 M-ORG\n华 M-ORG\n农 M-ORG\n动 M-ORG\n物 M-ORG\n保 M-ORG\n健 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n秦 B-NAME\n庆 M-NAME\n华 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n5 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n先 O\n后 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n公 M-ORG\n安 M-ORG\n局 E-ORG\n刑 B-TITLE\n侦 M-TITLE\n处 M-TITLE\n干 M-TITLE\n警 E-TITLE\n、 O\n二 B-TITLE\n级 M-TITLE\n警 M-TITLE\n司 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n海 M-ORG\n问 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n- O\n2 O\n0 O\n0 O\n1 O\n为 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n星 M-ORG\n河 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n- O\n2 O\n0 O\n0 O\n4 O\n年 O\n为 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n鑫 M-ORG\n兴 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n- O\n2 O\n0 O\n1 O\n2 O\n年 O\n为 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n凯 M-ORG\n文 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n- O\n2 O\n0 O\n1 O\n4 O\n年 O\n北 B-ORG\n京 M-ORG\n国 M-ORG\n枫 M-ORG\n凯 M-ORG\n文 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n- O\n2 O\n0 O\n1 O\n5 O\n年 O\n为 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n首 M-ORG\n信 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n蓝 M-ORG\n丰 M-ORG\n生 M-ORG\n物 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n陆 B-NAME\n建 M-NAME\n峰 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n医 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n9 O\n1 O\n年 O\n7 O\n月 O\n在 O\n第 B-ORG\n二 M-ORG\n军 M-ORG\n医 M-ORG\n大 M-ORG\n学 M-ORG\n医 M-ORG\n疗 M-ORG\n系 E-ORG\n学 O\n习 O\n。 O\n\n现 O\n在 O\n国 B-ORG\n投 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n职 O\n。 O\n\n曾 O\n先 O\n后 O\n在 O\n北 B-ORG\n京 M-ORG\n军 M-ORG\n区 M-ORG\n5 M-ORG\n1 M-ORG\n0 M-ORG\n2 M-ORG\n9 M-ORG\n部 M-ORG\n队 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n军 M-ORG\n区 M-ORG\n2 M-ORG\n6 M-ORG\n0 M-ORG\n医 M-ORG\n院 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n军 M-ORG\n区 M-ORG\n总 M-ORG\n医 M-ORG\n院 E-ORG\n、 O\n国 B-ORG\n投 M-ORG\n药 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n刘 B-NAME\n斌 E-NAME\n， O\n男 O\n， O\n历 O\n任 O\n山 B-ORG\n东 M-ORG\n明 M-ORG\n允 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n金 B-ORG\n杜 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n金 M-ORG\n杜 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n金 B-ORG\n杜 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n四 M-ORG\n川 M-ORG\n分 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n、 O\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n刘 B-NAME\n军 M-NAME\n凯 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n4 O\n月 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n1 O\n月 O\n任 O\n黄 B-ORG\n山 M-ORG\n市 M-ORG\n天 M-ORG\n目 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n4 O\n月 O\n任 O\n杭 B-ORG\n州 M-ORG\n天 M-ORG\n目 M-ORG\n山 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n卢 B-NAME\n林 E-NAME\n先 O\n生 O\n， O\n国 B-ORG\n民 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n中 M-ORG\n兴 M-ORG\n维 M-ORG\n先 M-ORG\n通 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n中 B-ORG\n兴 M-ORG\n通 M-ORG\n讯 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n中 M-TITLE\n心 M-TITLE\n成 M-TITLE\n本 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n二 B-TITLE\n级 M-TITLE\n业 M-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n无 B-ORG\n锡 M-ORG\n市 M-ORG\n中 M-ORG\n兴 M-ORG\n光 M-ORG\n电 M-ORG\n子 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n4 O\n月 O\n至 O\n今 O\n在 O\n国 B-ORG\n民 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n张 B-NAME\n原 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n9 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n6 O\n月 O\n- O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n担 O\n任 O\n新 B-ORG\n纶 M-ORG\n科 M-ORG\n技 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n5 O\n年 O\n4 O\n月 O\n任 O\n新 B-ORG\n纶 M-ORG\n科 M-ORG\n技 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n； O\n\n兼 O\n任 O\n东 B-ORG\n莞 M-ORG\n首 M-ORG\n道 M-ORG\n超 M-ORG\n净 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n新 B-ORG\n纶 M-ORG\n科 M-ORG\n技 M-ORG\n（ M-ORG\n香 M-ORG\n港 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n大 B-ORG\n连 M-ORG\n洁 M-ORG\n净 M-ORG\n易 M-ORG\n超 M-ORG\n净 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n洁 M-ORG\n净 M-ORG\n易 M-ORG\n超 M-ORG\n净 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n合 B-ORG\n肥 M-ORG\n洁 M-ORG\n易 M-ORG\n超 M-ORG\n净 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n西 B-ORG\n安 M-ORG\n洁 M-ORG\n净 M-ORG\n易 M-ORG\n超 M-ORG\n净 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n成 B-ORG\n都 M-ORG\n洁 M-ORG\n净 M-ORG\n易 M-ORG\n超 M-ORG\n净 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n厦 B-ORG\n门 M-ORG\n洁 M-ORG\n净 M-ORG\n易 M-ORG\n超 M-ORG\n净 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n金 M-ORG\n麒 M-ORG\n麟 M-ORG\n环 M-ORG\n境 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n新 M-ORG\n纶 M-ORG\n先 M-ORG\n进 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n长 B-ORG\n江 M-ORG\n新 M-ORG\n纶 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n红 M-ORG\n尊 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n新 B-ORG\n纶 M-ORG\n科 M-ORG\n技 M-ORG\n（ M-ORG\n日 M-ORG\n本 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n平 M-NAME\n春 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n华 B-ORG\n侨 M-ORG\n城 M-ORG\n经 M-ORG\n济 M-ORG\n发 M-ORG\n展 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n策 B-TITLE\n划 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n华 M-ORG\n侨 M-ORG\n城 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n裁 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n华 B-ORG\n侨 M-ORG\n城 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n欢 M-ORG\n乐 M-ORG\n谷 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n侨 M-ORG\n城 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n兼 O\n） O\n， O\n上 B-ORG\n海 M-ORG\n华 M-ORG\n侨 M-ORG\n城 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n锦 B-ORG\n绣 M-ORG\n中 M-ORG\n华 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n世 M-ORG\n界 M-ORG\n之 M-ORG\n窗 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n华 B-ORG\n侨 M-ORG\n城 M-ORG\n酒 M-ORG\n店 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n华 M-ORG\n侨 M-ORG\n城 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n华 B-ORG\n侨 M-ORG\n城 M-ORG\n集 M-ORG\n团 E-ORG\n党 B-TITLE\n委 M-TITLE\n常 M-TITLE\n委 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n同 O\n时 O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n旅 M-ORG\n游 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n旅 M-ORG\n游 M-ORG\n景 M-ORG\n区 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n上 M-ORG\n市 M-ORG\n公 M-ORG\n司 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n上 M-ORG\n市 M-ORG\n公 M-ORG\n司 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n质 M-ORG\n量 M-ORG\n强 M-ORG\n市 M-ORG\n促 M-ORG\n进 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n暨 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n深 M-ORG\n圳 M-ORG\n旅 M-ORG\n游 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n。 O\n\n杨 B-NAME\n永 M-NAME\n圣 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n湖 B-LOC\n南 M-LOC\n汉 M-LOC\n寿 M-LOC\n人 E-LOC\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n直 M-ORG\n属 M-ORG\n粮 M-ORG\n食 M-ORG\n企 M-ORG\n业 M-ORG\n生 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n指 M-ORG\n导 M-ORG\n办 M-ORG\n公 M-ORG\n室 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n， O\n任 O\n湖 B-ORG\n南 M-ORG\n粮 M-ORG\n食 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n至 O\n今 O\n， O\n任 O\n金 B-ORG\n健 M-ORG\n米 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n袁 B-NAME\n会 M-NAME\n琼 E-NAME\n（ O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n） O\n： O\n女 O\n， O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n0 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n2 O\n月 O\n， O\n任 O\n职 O\n于 O\n翔 B-ORG\n宇 M-ORG\n鞋 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n0 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n5 O\n月 O\n， O\n任 O\n职 O\n于 O\n南 B-ORG\n通 M-ORG\n特 M-ORG\n伟 M-ORG\n箱 M-ORG\n包 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n， O\n任 O\n欣 B-ORG\n旺 M-ORG\n达 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n， O\n任 O\n欣 B-ORG\n旺 M-ORG\n达 E-ORG\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n欣 B-ORG\n旺 M-ORG\n达 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n欣 B-ORG\n旺 M-ORG\n达 E-ORG\n秘 B-TITLE\n书 M-TITLE\n处 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n欣 B-ORG\n旺 M-ORG\n达 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n夏 B-NAME\n茂 E-NAME\n先 O\n生 O\n， O\n曾 O\n任 O\n安 B-ORG\n凯 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n化 M-ORG\n工 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n兰 B-ORG\n德 M-ORG\n电 M-ORG\n器 M-ORG\n科 M-ORG\n技 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n浦 B-ORG\n发 M-ORG\n机 M-ORG\n电 M-ORG\n制 M-ORG\n造 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n合 B-ORG\n肥 M-ORG\n科 M-ORG\n创 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n合 B-ORG\n肥 M-ORG\n市 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n风 M-ORG\n险 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n湖 B-ORG\n北 M-ORG\n广 M-ORG\n济 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n孟 B-NAME\n建 M-NAME\n立 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n毕 O\n业 O\n于 O\n海 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n聚 M-ORG\n飞 M-ORG\n光 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n务 M-TITLE\n专 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n聚 M-ORG\n飞 M-ORG\n光 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n林 B-NAME\n义 M-NAME\n相 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n0 O\n起 O\n任 O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n券 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n. O\n3 O\n月 O\n- O\n今 O\n， O\n天 B-ORG\n相 M-ORG\n投 M-ORG\n资 M-ORG\n顾 M-ORG\n问 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n. O\n6 O\n月 O\n- O\n今 O\n， O\n注 B-ORG\n册 M-ORG\n国 M-ORG\n际 M-ORG\n投 M-ORG\n资 M-ORG\n分 M-ORG\n析 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n（ O\nA B-ORG\nC M-ORG\nI M-ORG\nI M-ORG\nA E-ORG\n） O\n主 B-TITLE\n席 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n. O\n1 O\n0 O\n- O\n今 O\n， O\n太 B-ORG\n钢 M-ORG\n不 M-ORG\n锈 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n姚 B-NAME\n长 M-NAME\n清 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n5 O\n年 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n吉 B-NAME\n冬 M-NAME\n梅 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n先 O\n后 O\n任 O\n职 O\n益 B-ORG\n世 M-ORG\n咨 M-ORG\n询 M-ORG\n（ M-ORG\n中 M-ORG\n国 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n东 B-ORG\n方 M-ORG\n国 M-ORG\n际 M-ORG\n创 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n海 B-ORG\n通 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n投 M-ORG\n资 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n部 M-ORG\n及 M-ORG\n国 M-ORG\n际 M-ORG\n业 M-ORG\n务 M-ORG\n部 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n0 O\n月 O\n起 O\n加 O\n盟 O\n海 B-ORG\n富 M-ORG\n产 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n投 B-TITLE\n资 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n为 O\n担 O\n任 O\n中 B-ORG\n比 M-ORG\n基 M-ORG\n金 E-ORG\n投 O\n资 O\n的 O\n金 B-ORG\n风 M-ORG\n科 M-ORG\n技 E-ORG\n、 O\n宁 B-ORG\n波 M-ORG\n摩 M-ORG\n士 E-ORG\n、 O\n海 B-ORG\n利 M-ORG\n得 E-ORG\n、 O\n浙 B-ORG\n江 M-ORG\n双 M-ORG\n箭 E-ORG\n、 O\n国 B-ORG\n德 M-ORG\n电 M-ORG\n气 E-ORG\n等 O\n项 O\n目 O\n的 O\n负 B-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n王 B-NAME\n焕 M-NAME\n然 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n7 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n。 O\n\n曾 O\n任 O\n合 B-ORG\n肥 M-ORG\n新 M-ORG\n华 M-ORG\n书 M-ORG\n店 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n新 M-ORG\n华 M-ORG\n发 M-ORG\n行 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n新 M-ORG\n华 M-ORG\n传 M-ORG\n媒 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n获 O\n2 O\n0 O\n1 O\n1 O\n年 O\n安 O\n徽 O\n省 O\n宣 O\n传 O\n文 O\n化 O\n系 O\n统 O\n“ O\n六 O\n个 O\n一 O\n批 O\n” O\n文 O\n化 O\n产 O\n业 O\n经 O\n营 O\n管 O\n理 O\n拔 O\n尖 O\n人 O\n才 O\n。 O\n\n许 B-NAME\n炎 M-NAME\n平 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n燕 M-ORG\n京 M-ORG\n惠 M-ORG\n泉 M-ORG\n啤 M-ORG\n酒 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n燕 M-ORG\n京 M-ORG\n惠 M-ORG\n泉 M-ORG\n啤 M-ORG\n酒 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n被 O\n授 O\n予 O\n“ O\n全 B-TITLE\n国 M-TITLE\n劳 M-TITLE\n动 M-TITLE\n模 M-TITLE\n范 E-TITLE\n” O\n。 O\n\n仇 B-NAME\n成 M-NAME\n丰 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n、 O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n海 B-ORG\n通 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n员 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n永 M-ORG\n怡 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n东 B-ORG\n方 M-ORG\n日 M-ORG\n升 M-ORG\n证 M-ORG\n券 E-ORG\n事 B-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n0 O\n月 O\n起 O\n就 O\n职 O\n于 O\n东 B-ORG\n方 M-ORG\n日 M-ORG\n升 E-ORG\n， O\n现 O\n任 O\n东 B-ORG\n方 M-ORG\n日 M-ORG\n升 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n东 B-ORG\n方 M-ORG\n日 M-ORG\n升 M-ORG\n（ M-ORG\n宁 M-ORG\n波 M-ORG\n） M-ORG\n电 M-ORG\n力 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n东 B-ORG\n方 M-ORG\n日 M-ORG\n升 M-ORG\n（ M-ORG\n郧 M-ORG\n县 M-ORG\n） M-ORG\n光 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n双 M-ORG\n宇 M-ORG\n电 M-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n天 M-NAME\n立 E-NAME\n： O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n重 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n军 B-TITLE\n工 M-TITLE\n专 M-TITLE\n家 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n委 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n第 M-ORG\n一 M-ORG\n重 M-ORG\n型 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n恒 M-ORG\n天 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n兵 M-ORG\n器 M-ORG\n装 M-ORG\n备 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n重 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n韩 B-NAME\n公 M-NAME\n博 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n至 O\n今 O\n服 O\n务 O\n于 O\n康 B-ORG\n力 M-ORG\n电 M-ORG\n梯 E-ORG\n， O\n现 O\n任 O\n康 B-ORG\n力 M-ORG\n电 M-ORG\n梯 M-ORG\n销 M-ORG\n售 M-ORG\n中 M-ORG\n心 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n文 M-NAME\n华 E-NAME\n： O\n2 O\n0 O\n0 O\n6 O\n年 O\n8 O\n月 O\n- O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n， O\n湖 B-ORG\n北 M-ORG\n人 M-ORG\n民 M-ORG\n出 M-ORG\n版 M-ORG\n社 E-ORG\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n， O\n湖 B-ORG\n北 M-ORG\n人 M-ORG\n民 M-ORG\n出 M-ORG\n版 M-ORG\n社 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n蒋 B-NAME\n吉 M-NAME\n军 E-NAME\n： O\n男 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n1 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n煤 B-TITLE\n化 M-TITLE\n工 M-TITLE\n项 M-TITLE\n目 M-TITLE\n指 M-TITLE\n挥 M-TITLE\n部 M-TITLE\n副 M-TITLE\n指 M-TITLE\n挥 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n8 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n符 B-NAME\n冬 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n月 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n同 B-ORG\n济 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n黑 B-ORG\n牡 M-ORG\n丹 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n前 B-TITLE\n织 M-TITLE\n车 M-TITLE\n间 M-TITLE\n染 M-TITLE\n色 M-TITLE\n值 M-TITLE\n车 M-TITLE\n工 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n常 B-ORG\n州 M-ORG\n服 M-ORG\n装 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n常 B-ORG\n州 M-ORG\n大 M-ORG\n成 M-ORG\n纺 M-ORG\n织 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n等 O\n职 O\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n5 O\n月 O\n起 O\n， O\n任 O\n常 B-ORG\n州 M-ORG\n纺 M-ORG\n织 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n孙 B-NAME\n茜 E-NAME\n女 O\n士 O\n， O\n加 B-CONT\n拿 M-CONT\n大 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 M-ORG\n生 M-ORG\n物 M-ORG\n系 E-ORG\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n2 O\n月 O\n任 O\n职 O\n于 O\n爱 B-ORG\n博 M-ORG\n生 M-ORG\n化 M-ORG\n制 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n担 O\n任 O\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n职 O\n于 O\n威 B-ORG\n海 M-ORG\n利 M-ORG\n德 M-ORG\n尔 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n担 O\n任 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n7 O\n月 O\n， O\n担 O\n任 O\n北 B-ORG\n京 M-ORG\n利 M-ORG\n德 M-ORG\n曼 M-ORG\n生 M-ORG\n化 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n今 O\n， O\n担 O\n任 O\n北 B-ORG\n京 M-ORG\n迈 M-ORG\n迪 M-ORG\n卡 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n7 O\n月 O\n至 O\n今 O\n， O\n担 O\n任 O\n北 B-ORG\n京 M-ORG\n利 M-ORG\n德 M-ORG\n曼 M-ORG\n生 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n冯 B-NAME\n冠 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n科 M-ORG\n技 M-ORG\n处 E-ORG\n处 B-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n清 M-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n清 M-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n校 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n校 M-ORG\n务 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n清 M-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n飞 M-ORG\n乐 M-ORG\n音 M-ORG\n响 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n力 M-ORG\n合 M-ORG\n天 M-ORG\n使 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n方 B-NAME\n琳 E-NAME\n： O\n女 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n营 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n纺 M-ORG\n织 M-ORG\n品 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n纺 M-ORG\n织 M-ORG\n品 M-ORG\n批 M-ORG\n发 M-ORG\n站 E-ORG\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n市 M-ORG\n工 M-ORG\n业 M-ORG\n品 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n四 M-ORG\n茂 M-ORG\n纺 M-ORG\n织 M-ORG\n站 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n武 M-ORG\n商 M-ORG\n量 M-ORG\n贩 M-ORG\n连 M-ORG\n锁 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n武 B-ORG\n商 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n冯 B-NAME\n元 M-NAME\n发 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n人 M-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n管 M-TITLE\n理 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n8 O\n7 O\n年 O\n9 O\n月 O\n于 O\n郴 B-ORG\n州 M-ORG\n市 M-ORG\n副 M-ORG\n食 M-ORG\n品 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n计 B-TITLE\n划 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n1 O\n月 O\n于 O\n郴 B-ORG\n州 M-ORG\n市 M-ORG\n建 M-ORG\n设 M-ORG\n银 M-ORG\n行 E-ORG\n任 O\n会 B-TITLE\n计 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n0 O\n月 O\n任 O\n北 B-ORG\n湖 M-ORG\n区 M-ORG\n建 M-ORG\n设 M-ORG\n银 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n9 O\n月 O\n任 O\n郴 B-ORG\n州 M-ORG\n市 M-ORG\n高 M-ORG\n等 M-ORG\n级 M-ORG\n公 M-ORG\n路 M-ORG\n指 M-ORG\n挥 M-ORG\n部 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n任 O\n郴 B-ORG\n州 M-ORG\n市 M-ORG\n建 M-ORG\n设 M-ORG\n银 M-ORG\n行 E-ORG\n贷 B-TITLE\n款 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n任 O\n郴 B-ORG\n州 M-ORG\n市 M-ORG\n金 M-ORG\n贵 M-ORG\n银 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n0 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n郴 B-ORG\n州 M-ORG\n市 M-ORG\n金 M-ORG\n贵 M-ORG\n银 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n赵 B-NAME\n文 M-NAME\n权 E-NAME\n先 O\n生 O\n， O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n历 O\n任 O\n路 B-ORG\n村 M-ORG\n咨 M-ORG\n询 M-ORG\n策 M-ORG\n划 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n雅 B-ORG\n宝 M-ORG\n拍 M-ORG\n卖 M-ORG\n网 E-ORG\n首 B-TITLE\n席 M-TITLE\n运 M-TITLE\n营 M-TITLE\n官 E-TITLE\n， O\n并 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n公 M-ORG\n共 M-ORG\n关 M-ORG\n系 M-ORG\n协 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n公 M-ORG\n共 M-ORG\n关 M-ORG\n系 M-ORG\n协 M-ORG\n会 M-ORG\n公 M-ORG\n关 M-ORG\n公 M-ORG\n司 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n2 O\n0 O\n0 O\n7 O\n年 O\n、 O\n2 O\n0 O\n0 O\n8 O\n年 O\n年 B-TITLE\n度 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n传 M-ORG\n媒 M-ORG\n大 M-ORG\n学 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n2 M-ORG\n0 M-ORG\n0 M-ORG\n8 M-ORG\n年 M-ORG\n奥 M-ORG\n运 M-ORG\n会 E-ORG\n奥 B-TITLE\n林 M-TITLE\n匹 M-TITLE\n克 M-TITLE\n火 M-TITLE\n炬 M-TITLE\n接 M-TITLE\n力 M-TITLE\n火 M-TITLE\n炬 M-TITLE\n手 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n6 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n， O\n以 O\n及 O\n2 O\n0 O\n0 O\n3 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n任 O\n蓝 B-ORG\n色 M-ORG\n光 M-ORG\n标 E-ORG\n公 B-TITLE\n共 M-TITLE\n关 M-TITLE\n系 M-TITLE\n机 M-TITLE\n构 M-TITLE\n首 M-TITLE\n席 M-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n蓝 B-ORG\n色 M-ORG\n光 M-ORG\n标 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n起 O\n担 O\n任 O\n有 B-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n起 O\n担 O\n任 O\n蓝 B-ORG\n色 M-ORG\n光 M-ORG\n标 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n至 O\n今 O\n。 O\n\n何 B-NAME\n刚 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n丝 M-ORG\n绸 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n直 B-TITLE\n属 M-TITLE\n企 M-TITLE\n业 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n办 M-TITLE\n会 M-TITLE\n计 E-TITLE\n， O\n杭 B-ORG\n州 M-ORG\n网 M-ORG\n通 M-ORG\n信 M-ORG\n息 M-ORG\n港 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n华 B-ORG\n夏 M-ORG\n视 M-ORG\n联 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n华 B-ORG\n数 M-ORG\n传 M-ORG\n媒 M-ORG\n网 M-ORG\n络 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n华 B-ORG\n数 M-ORG\n传 M-ORG\n媒 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n何 B-NAME\n梅 M-NAME\n芬 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n5 O\n月 O\n出 O\n生 O\n。 O\n\n东 B-ORG\n北 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n金 B-PRO\n属 M-PRO\n压 M-PRO\n力 M-PRO\n加 M-PRO\n工 M-PRO\n专 M-PRO\n业 E-PRO\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n文 M-ORG\n大 M-ORG\n学 E-ORG\n专 B-PRO\n业 M-PRO\n会 M-PRO\n计 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n宝 B-ORG\n山 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n宝 M-ORG\n信 M-ORG\n软 M-ORG\n件 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n斌 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n上 B-ORG\n海 M-ORG\n振 M-ORG\n华 M-ORG\n重 M-ORG\n工 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n质 B-TITLE\n管 M-TITLE\n部 M-TITLE\n项 M-TITLE\n目 M-TITLE\n质 M-TITLE\n量 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n质 B-TITLE\n管 M-TITLE\n部 M-TITLE\n轮 M-TITLE\n胎 M-TITLE\n吊 M-TITLE\n室 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n质 B-TITLE\n管 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n质 B-ORG\n检 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n质 B-TITLE\n量 M-TITLE\n安 M-TITLE\n全 M-TITLE\n办 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n质 B-TITLE\n量 M-TITLE\n安 M-TITLE\n全 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n监 B-TITLE\n事 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n振 M-ORG\n华 M-ORG\n重 M-ORG\n工 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n振 M-ORG\n华 M-ORG\n船 M-ORG\n运 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n文 M-NAME\n兴 E-NAME\n： O\n1 O\n9 O\n5 O\n8 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n李 S-NAME\n先 O\n生 O\n自 O\n1 O\n9 O\n9 O\n9 O\n年 O\n7 O\n月 O\n至 O\n今 O\n， O\n历 O\n任 O\n北 B-ORG\n京 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n会 B-TITLE\n计 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n院 B-TITLE\n党 M-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n中 M-ORG\n国 M-ORG\n交 M-ORG\n通 M-ORG\n运 M-ORG\n输 M-ORG\n价 M-ORG\n格 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n； O\n\n国 B-ORG\n家 M-ORG\n政 M-ORG\n府 M-ORG\n价 M-ORG\n格 M-ORG\n工 M-ORG\n作 M-ORG\n专 M-ORG\n家 M-ORG\n咨 M-ORG\n询 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n等 O\n。 O\n\n张 B-NAME\n文 M-NAME\n春 E-NAME\n先 O\n生 O\n， O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n先 O\n后 O\n在 O\n东 B-ORG\n北 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n和 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n政 M-ORG\n金 M-ORG\n融 M-ORG\n系 E-ORG\n学 O\n习 O\n， O\n分 O\n别 O\n获 O\n得 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n、 O\n硕 B-EDU\n士 E-EDU\n、 O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n政 M-ORG\n学 M-ORG\n院 E-ORG\n讲 B-TITLE\n师 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n政 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n政 M-ORG\n金 M-ORG\n融 M-ORG\n学 M-ORG\n院 M-ORG\n财 M-ORG\n政 M-ORG\n系 E-ORG\n副 B-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n周 B-NAME\n博 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n昆 B-ORG\n山 M-ORG\n新 M-ORG\n宁 M-ORG\n公 M-ORG\n共 M-ORG\n保 M-ORG\n税 M-ORG\n仓 M-ORG\n储 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 O\n务 O\n部 O\n、 O\n苏 B-ORG\n州 M-ORG\n新 M-ORG\n宁 M-ORG\n公 M-ORG\n共 M-ORG\n保 M-ORG\n税 M-ORG\n仓 M-ORG\n储 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n5 O\n月 O\n期 O\n间 O\n任 O\n江 B-ORG\n苏 M-ORG\n新 M-ORG\n宁 M-ORG\n现 M-ORG\n代 M-ORG\n物 M-ORG\n流 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n； O\n\n现 O\n担 O\n任 O\n江 B-ORG\n苏 M-ORG\n新 M-ORG\n宁 M-ORG\n现 M-ORG\n代 M-ORG\n物 M-ORG\n流 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n存 M-NAME\n方 E-NAME\n： O\n男 O\n， O\n曾 O\n任 O\n福 B-ORG\n成 M-ORG\n酿 M-ORG\n酒 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n谢 B-NAME\n敏 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n曾 O\n任 O\n云 B-ORG\n南 M-ORG\n沾 M-ORG\n益 M-ORG\n化 M-ORG\n肥 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n沾 B-ORG\n化 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n大 M-ORG\n为 M-ORG\n制 M-ORG\n焦 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n泸 M-ORG\n西 M-ORG\n大 M-ORG\n为 M-ORG\n焦 M-ORG\n化 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n范 B-NAME\n五 M-NAME\n亭 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n职 O\n于 O\n北 B-ORG\n京 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n仪 M-ORG\n器 M-ORG\n仪 M-ORG\n表 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n香 B-ORG\n港 M-ORG\n兴 M-ORG\n华 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n香 B-ORG\n港 M-ORG\n艺 M-ORG\n高 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n起 O\n进 O\n入 O\n武 B-ORG\n汉 M-ORG\n高 M-ORG\n德 M-ORG\n光 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n（ O\n前 O\n身 O\n红 B-ORG\n外 M-ORG\n有 M-ORG\n限 E-ORG\n） O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n武 B-ORG\n汉 M-ORG\n高 M-ORG\n德 M-ORG\n红 M-ORG\n外 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n前 B-ORG\n视 M-ORG\n远 M-ORG\n景 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n寻 B-NAME\n冬 M-NAME\n生 E-NAME\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n5 O\n月 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n粮 M-ORG\n油 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n第 M-ORG\n一 M-ORG\n大 M-ORG\n道 M-ORG\n置 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n百 M-ORG\n岁 M-ORG\n置 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n曾 O\n任 O\n长 B-ORG\n沙 M-ORG\n市 M-ORG\n计 M-ORG\n划 M-ORG\n委 M-ORG\n员 M-ORG\n会 M-ORG\n基 M-ORG\n建 M-ORG\n计 M-ORG\n划 M-ORG\n科 E-ORG\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n物 B-TITLE\n资 M-TITLE\n计 M-TITLE\n划 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n粮 M-ORG\n油 E-ORG\n基 B-TITLE\n建 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n刘 B-NAME\n孟 M-NAME\n林 E-NAME\n先 O\n生 O\n， O\n监 B-TITLE\n事 E-TITLE\n。 O\n\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n集 B-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n规 B-TITLE\n划 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n广 M-ORG\n安 M-ORG\n泰 M-ORG\n丰 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n原 B-ORG\n渠 M-ORG\n江 M-ORG\n电 M-ORG\n力 E-ORG\n证 B-TITLE\n券 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n股 B-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n物 B-ORG\n资 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n为 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n成 M-NAME\n森 E-NAME\n先 O\n生 O\n： O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n任 O\n北 B-ORG\n京 M-ORG\n城 M-ORG\n市 M-ORG\n开 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n任 O\n北 B-ORG\n京 M-ORG\n城 M-ORG\n市 M-ORG\n开 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n首 M-ORG\n都 M-ORG\n开 M-ORG\n发 M-ORG\n控 M-ORG\n股 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n置 B-TITLE\n业 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n市 M-TITLE\n场 M-TITLE\n总 M-TITLE\n监 E-TITLE\n\n董 B-NAME\n焱 E-NAME\n， O\n女 O\n， O\n群 B-TITLE\n众 E-TITLE\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n国 B-TITLE\n家 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n天 B-ORG\n津 M-ORG\n泰 M-ORG\n达 M-ORG\n城 M-ORG\n市 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n职 M-TITLE\n员 E-TITLE\n、 O\n主 B-TITLE\n管 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n泰 M-ORG\n达 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n风 B-TITLE\n险 M-TITLE\n控 M-TITLE\n制 M-TITLE\n中 M-TITLE\n心 M-TITLE\n合 M-TITLE\n规 M-TITLE\n内 M-TITLE\n审 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n郭 B-NAME\n丽 E-NAME\n女 O\n士 O\n： O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n最 O\n近 O\n五 O\n年 O\n任 O\n大 B-ORG\n恒 M-ORG\n科 M-ORG\n技 E-ORG\n企 B-TITLE\n管 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n煊 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n近 O\n五 O\n年 O\n一 O\n直 O\n在 O\n江 B-ORG\n苏 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 E-ORG\n任 O\n高 B-TITLE\n级 M-TITLE\n投 M-TITLE\n资 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n康 B-ORG\n达 M-ORG\n新 M-ORG\n材 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n兆 M-NAME\n君 E-NAME\n， O\n男 O\n， O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n东 B-ORG\n北 M-ORG\n林 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n校 B-TITLE\n党 M-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n青 B-ORG\n岛 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n农 M-ORG\n林 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n刘 B-NAME\n近 M-NAME\n荣 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n3 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n主 B-TITLE\n管 M-TITLE\n药 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n泰 B-ORG\n盛 M-ORG\n制 M-ORG\n药 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n刘 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n8 O\n0 O\n年 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n任 O\n职 O\n于 O\n大 B-ORG\n同 M-ORG\n市 M-ORG\n利 M-ORG\n群 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n， O\n历 O\n任 O\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n加 O\n入 O\n泰 B-ORG\n盛 M-ORG\n制 M-ORG\n药 E-ORG\n， O\n历 O\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n由 O\n其 O\n主 O\n持 O\n的 O\n曲 O\n颈 O\n易 O\n折 O\n安 O\n瓶 O\n拉 O\n丝 O\n灌 O\n封 O\n工 O\n艺 O\n改 O\n造 O\n曾 O\n获 O\n大 O\n同 O\n市 O\n科 O\n学 O\n技 O\n术 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n， O\n大 O\n剂 O\n量 O\n5 O\n0 O\nm O\ng O\n亚 O\n叶 O\n酸 O\n钙 O\n生 O\n产 O\n新 O\n工 O\n艺 O\n获 O\n大 O\n同 O\n市 O\n科 O\n学 O\n技 O\n术 O\n进 O\n步 O\n一 O\n等 O\n奖 O\n。 O\n\n刘 S-NAME\n先 O\n生 O\n曾 O\n于 O\n1 O\n9 O\n9 O\n3 O\n年 O\n荣 O\n获 O\n大 O\n同 O\n市 O\n劳 O\n动 O\n模 O\n范 O\n称 O\n号 O\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n由 O\n山 O\n西 O\n省 O\n社 O\n会 O\n主 O\n义 O\n劳 O\n动 O\n竞 O\n赛 O\n委 O\n员 O\n会 O\n授 O\n予 O\n二 O\n等 O\n功 O\n嘉 O\n奖 O\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n荣 O\n获 O\n山 O\n西 O\n省 O\n五 O\n一 O\n劳 O\n动 O\n奖 O\n章 O\n称 O\n号 O\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n评 O\n为 O\n大 O\n同 O\n市 O\n“ O\n优 O\n秀 O\n人 O\n才 O\n” O\n。 O\n\n彭 B-NAME\n伟 M-NAME\n哲 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n副 B-TITLE\n编 M-TITLE\n审 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n起 O\n历 O\n任 O\n辽 B-ORG\n宁 M-ORG\n美 M-ORG\n术 M-ORG\n出 M-ORG\n版 M-ORG\n社 E-ORG\n编 B-TITLE\n辑 E-TITLE\n、 O\n编 B-TITLE\n辑 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n编 M-TITLE\n辑 E-TITLE\n兼 O\n《 B-ORG\n美 M-ORG\n术 M-ORG\n大 M-ORG\n观 M-ORG\n》 M-ORG\n杂 M-ORG\n志 E-ORG\n执 B-TITLE\n行 M-TITLE\n主 M-TITLE\n编 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n8 O\n月 O\n至 O\n今 O\n兼 O\n任 O\n出 B-TITLE\n版 M-TITLE\n传 M-TITLE\n媒 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n孙 B-NAME\n喆 M-NAME\n浩 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n7 O\n月 O\n6 O\n日 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n上 B-ORG\n海 M-ORG\n华 M-ORG\n谊 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n三 M-ORG\n爱 M-ORG\n富 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n巴 M-ORG\n斯 M-ORG\n夫 M-ORG\n聚 M-ORG\n氨 M-ORG\n酯 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n曙 M-NAME\n光 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n宾 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n生 O\n于 O\n1 O\n9 O\n7 O\n0 O\n年 O\n1 O\n1 O\n月 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n- O\n1 O\n9 O\n9 O\n8 O\n年 O\n在 O\n西 B-ORG\n安 M-ORG\n电 M-ORG\n视 M-ORG\n台 M-ORG\n《 M-ORG\n证 M-ORG\n券 M-ORG\n天 M-ORG\n地 M-ORG\n》 M-ORG\n栏 M-ORG\n目 E-ORG\n担 O\n任 O\n主 B-TITLE\n持 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n在 O\n北 B-ORG\n京 M-ORG\n均 M-ORG\n利 M-ORG\n（ M-ORG\n国 M-ORG\n际 M-ORG\n） M-ORG\n实 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n- O\n2 O\n0 O\n0 O\n4 O\n年 O\n在 O\n西 B-ORG\n安 M-ORG\n鼎 M-ORG\n天 M-ORG\n济 M-ORG\n农 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n至 O\n今 O\n在 O\n铜 B-ORG\n城 M-ORG\n集 M-ORG\n团 E-ORG\n任 O\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n童 B-NAME\n志 M-NAME\n胜 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n进 O\n入 O\n海 B-ORG\n航 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n长 B-ORG\n江 M-ORG\n租 M-ORG\n赁 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n渤 M-ORG\n海 M-ORG\n租 M-ORG\n赁 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n浦 B-ORG\n航 M-ORG\n租 M-ORG\n赁 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n兼 O\n任 O\n浦 B-ORG\n航 M-ORG\n租 M-ORG\n赁 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n及 O\n横 B-ORG\n琴 M-ORG\n国 M-ORG\n际 M-ORG\n融 M-ORG\n资 M-ORG\n租 M-ORG\n赁 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n邱 B-NAME\n政 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n2 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n双 O\n专 O\n业 O\n。 O\n\n历 O\n任 O\n妮 B-ORG\n维 M-ORG\n雅 M-ORG\n（ M-ORG\n上 M-ORG\n海 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n成 B-TITLE\n都 M-TITLE\n销 M-TITLE\n售 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n成 B-ORG\n都 M-ORG\n明 M-ORG\n霞 M-ORG\n事 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n销 B-TITLE\n售 M-TITLE\n一 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n美 B-ORG\n晨 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n大 B-TITLE\n华 M-TITLE\n西 M-TITLE\n7 M-TITLE\n省 M-TITLE\n区 M-TITLE\n域 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n恒 B-ORG\n康 M-ORG\n医 M-ORG\n疗 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n日 B-ORG\n化 E-ORG\n事 B-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n邱 B-NAME\n政 E-NAME\n先 O\n生 O\n在 O\n商 O\n业 O\n快 O\n消 O\n行 O\n业 O\n、 O\n口 O\n腔 O\n行 O\n业 O\n拥 O\n有 O\n丰 O\n富 O\n的 O\n工 O\n作 O\n经 O\n验 O\n。 O\n\n杨 B-NAME\n春 M-NAME\n枝 E-NAME\n， O\n女 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n3 O\n年 O\n1 O\n2 O\n月 O\n1 O\n1 O\n日 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n专 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n伊 B-ORG\n春 M-ORG\n市 M-ORG\n消 M-ORG\n防 M-ORG\n器 M-ORG\n材 M-ORG\n厂 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n伊 B-ORG\n春 M-ORG\n光 M-ORG\n明 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n营 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n伊 B-ORG\n春 M-ORG\n光 M-ORG\n明 M-ORG\n家 M-ORG\n具 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n光 B-ORG\n明 M-ORG\n集 M-ORG\n团 M-ORG\n家 M-ORG\n具 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n伊 B-ORG\n春 M-ORG\n青 M-ORG\n峰 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n伊 B-ORG\n春 M-ORG\n青 M-ORG\n山 M-ORG\n木 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n顾 B-NAME\n建 M-NAME\n国 E-NAME\n先 O\n生 O\n： O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n正 B-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n马 B-ORG\n钢 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n顾 S-NAME\n先 O\n生 O\n1 O\n9 O\n9 O\n3 O\n年 O\n9 O\n月 O\n起 O\n出 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n7 O\n月 O\n起 O\n出 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n6 O\n月 O\n出 O\n任 O\n马 B-ORG\n钢 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n出 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n9 O\n月 O\n马 B-ORG\n钢 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n改 O\n制 O\n为 O\n马 B-ORG\n钢 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n顾 S-NAME\n先 O\n生 O\n出 O\n任 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n顾 S-NAME\n先 O\n生 O\n1 O\n9 O\n9 O\n9 O\n年 O\n9 O\n月 O\n不 O\n再 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n何 B-NAME\n次 M-NAME\n琴 E-NAME\n女 O\n士 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n河 B-ORG\n北 M-ORG\n省 M-ORG\n邯 M-ORG\n郸 M-ORG\n地 M-ORG\n区 M-ORG\n( M-ORG\n市 M-ORG\n) M-ORG\n商 M-ORG\n业 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n冶 M-ORG\n金 M-ORG\n厅 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n等 O\n职 O\n， O\n现 O\n为 O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n。 O\n\n有 O\n着 O\n丰 O\n富 O\n的 O\n企 O\n业 O\n财 O\n务 O\n管 O\n理 O\n经 O\n验 O\n。 O\n\n赵 B-NAME\n黎 M-NAME\n明 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n出 O\n生 O\n， O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n历 O\n任 O\n天 B-ORG\n津 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n等 O\n职 O\n； O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n大 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n经 M-ORG\n济 M-ORG\n及 M-ORG\n管 M-ORG\n理 M-ORG\n博 M-ORG\n士 M-ORG\n点 E-ORG\n学 B-TITLE\n术 M-TITLE\n带 M-TITLE\n头 M-TITLE\n人 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n技 M-ORG\n术 M-ORG\n经 M-ORG\n济 M-ORG\n与 M-ORG\n管 M-ORG\n理 M-ORG\n现 M-ORG\n代 M-ORG\n化 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n颁 O\n发 O\n的 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n； O\n\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n"
  },
  {
    "path": "named_entity_recognition/ResumeNER/test.char.bmes",
    "content": "常 B-NAME\n建 M-NAME\n良 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n工 B-PRO\n科 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n物 M-ORG\n资 M-ORG\n学 M-ORG\n院 E-ORG\n客 B-TITLE\n座 M-TITLE\n副 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n8 O\n月 O\n— O\n1 O\n9 O\n9 O\n3 O\n年 O\n在 O\n国 B-ORG\n家 M-ORG\n物 M-ORG\n资 M-ORG\n局 E-ORG\n、 O\n物 B-ORG\n资 M-ORG\n部 E-ORG\n、 O\n国 B-ORG\n内 M-ORG\n贸 M-ORG\n易 M-ORG\n部 M-ORG\n金 M-ORG\n属 M-ORG\n材 M-ORG\n料 M-ORG\n流 M-ORG\n通 M-ORG\n司 E-ORG\n从 O\n事 O\n国 O\n家 O\n统 O\n配 O\n钢 O\n材 O\n中 O\n特 O\n种 O\n钢 O\n材 O\n品 O\n种 O\n的 O\n全 O\n国 O\n调 O\n拔 O\n分 O\n配 O\n工 O\n作 O\n， O\n先 O\n后 O\n任 O\n科 B-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n、 O\n主 B-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n5 O\n月 O\n— O\n1 O\n9 O\n9 O\n9 O\n年 O\n5 O\n月 O\n受 O\n国 B-ORG\n内 M-ORG\n贸 M-ORG\n易 M-ORG\n部 E-ORG\n委 O\n派 O\n到 O\n国 B-ORG\n内 M-ORG\n贸 M-ORG\n易 M-ORG\n部 E-ORG\n、 O\n冶 B-ORG\n金 M-ORG\n部 E-ORG\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n政 M-ORG\n府 M-ORG\n共 M-ORG\n同 M-ORG\n领 M-ORG\n导 M-ORG\n组 M-ORG\n建 M-ORG\n的 M-ORG\n北 M-ORG\n洋 M-ORG\n( M-ORG\n天 M-ORG\n津 M-ORG\n) M-ORG\n钢 M-ORG\n材 M-ORG\n批 M-ORG\n发 M-ORG\n交 M-ORG\n易 M-ORG\n市 M-ORG\n场 E-ORG\n任 O\n理 B-TITLE\n事 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n5 O\n月 O\n— O\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n任 O\n天 B-ORG\n津 M-ORG\n一 M-ORG\n德 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n5 O\n月 O\n任 O\n天 B-ORG\n津 M-ORG\n一 M-ORG\n德 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n陈 B-NAME\n学 M-NAME\n军 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n7 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 E-EDU\n毕 O\n业 O\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n7 O\n月 O\n进 O\n入 O\n无 B-ORG\n锡 M-ORG\n威 M-ORG\n孚 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n采 B-TITLE\n供 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n党 B-TITLE\n委 M-TITLE\n工 M-TITLE\n作 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n。 O\n\n无 B-ORG\n锡 M-ORG\n威 M-ORG\n孚 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n五 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n第 B-TITLE\n七 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n大 B-ORG\n股 M-ORG\n东 M-ORG\n无 M-ORG\n锡 M-ORG\n产 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n局 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n无 B-ORG\n锡 M-ORG\n威 M-ORG\n孚 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n陈 B-NAME\n栋 M-NAME\n梁 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n航 M-ORG\n供 M-ORG\n销 M-ORG\n汉 M-ORG\n中 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n（ O\n经 B-TITLE\n理 E-TITLE\n） O\n、 O\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n汉 B-ORG\n航 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n审 M-TITLE\n计 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 M-ORG\n长 M-ORG\n空 M-ORG\n精 M-ORG\n密 M-ORG\n机 M-ORG\n械 M-ORG\n制 M-ORG\n造 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n兼 O\n任 O\n陕 B-ORG\n西 M-ORG\n华 M-ORG\n燕 M-ORG\n航 M-ORG\n空 M-ORG\n仪 M-ORG\n表 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n陕 B-ORG\n西 M-ORG\n千 M-ORG\n山 M-ORG\n航 M-ORG\n空 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n航 M-ORG\n电 M-ORG\n测 M-ORG\n仪 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n韩 B-NAME\n震 M-NAME\n东 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n4 O\n8 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n历 O\n任 O\n青 B-ORG\n岛 M-ORG\n海 M-ORG\n尔 M-ORG\n电 M-ORG\n冰 M-ORG\n箱 M-ORG\n总 M-ORG\n厂 E-ORG\n生 B-TITLE\n产 M-TITLE\n技 M-TITLE\n术 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n青 B-ORG\n岛 M-ORG\n海 M-ORG\n尔 M-ORG\n电 M-ORG\n冰 M-ORG\n柜 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n海 B-ORG\n尔 M-ORG\n集 M-ORG\n团 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n现 O\n任 O\n海 B-ORG\n尔 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n青 B-ORG\n岛 M-ORG\n海 M-ORG\n尔 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n张 B-NAME\n克 M-NAME\n勤 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n江 B-LOC\n苏 M-LOC\n如 M-LOC\n皋 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n1 O\n1 O\n月 O\n入 O\n党 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n0 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n南 B-ORG\n通 M-ORG\n精 M-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n苏 B-NAME\n洋 E-NAME\n： O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n和 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n汇 M-ORG\n洋 M-ORG\n企 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n岳 M-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n。 O\n\n徐 B-NAME\n献 M-NAME\n礼 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n河 B-LOC\n南 M-LOC\n平 M-LOC\n舆 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n9 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n6 O\n月 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n共 M-ORG\n产 M-ORG\n党 E-ORG\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n（ O\n新 B-ORG\n疆 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n） O\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n李 B-NAME\n超 E-NAME\n， O\n男 O\n， O\n成 B-ORG\n都 M-ORG\n电 M-ORG\n力 M-ORG\n职 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n发 O\n电 B-EDU\n厂 M-EDU\n及 M-EDU\n电 M-EDU\n力 M-EDU\n系 M-EDU\n统 M-EDU\n专 M-EDU\n业 E-EDU\n毕 O\n业 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n大 B-ORG\n连 M-ORG\n市 M-ORG\n电 M-ORG\n力 M-ORG\n发 M-ORG\n展 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n大 B-ORG\n连 M-ORG\n市 M-ORG\n电 M-ORG\n力 M-ORG\n发 M-ORG\n展 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n虞 B-NAME\n兔 M-NAME\n良 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n浙 B-LOC\n江 M-LOC\n绍 M-LOC\n兴 M-LOC\n人 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\nM B-EDU\nB M-EDU\nA E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n虞 B-NAME\n兔 M-NAME\n良 E-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n8 O\n9 O\n年 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n老 M-ORG\n凤 M-ORG\n祥 M-ORG\n首 M-ORG\n饰 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n华 M-ORG\n雅 M-ORG\n金 M-ORG\n银 M-ORG\n珠 M-ORG\n宝 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n2 O\n月 O\n， O\n任 O\n日 B-ORG\n月 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n至 O\n今 O\n， O\n任 O\n日 B-ORG\n月 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n5 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n明 M-ORG\n牌 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n明 M-ORG\n牌 M-ORG\n珠 M-ORG\n宝 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n明 M-ORG\n牌 M-ORG\n珠 M-ORG\n宝 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n政 E-NAME\n先 O\n生 O\n， O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n， O\n任 O\n杭 B-ORG\n州 M-ORG\n巨 M-ORG\n星 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n李 B-NAME\n士 M-NAME\n训 E-NAME\n， O\n男 O\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n华 B-ORG\n中 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n5 B-TITLE\n级 M-TITLE\n教 M-TITLE\n育 M-TITLE\n职 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n华 B-ORG\n中 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n财 M-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n华 B-ORG\n工 M-ORG\n科 M-ORG\n技 M-ORG\n产 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n华 M-ORG\n工 M-ORG\n正 M-ORG\n源 M-ORG\n光 M-ORG\n子 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n华 B-ORG\n工 M-ORG\n科 M-ORG\n技 M-ORG\n产 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n五 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n召 M-TITLE\n集 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n任 O\n武 B-ORG\n汉 M-ORG\n华 M-ORG\n中 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n产 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n天 M-ORG\n喻 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n华 B-ORG\n工 M-ORG\n科 M-ORG\n技 M-ORG\n产 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n召 M-TITLE\n集 M-TITLE\n人 E-TITLE\n。 O\n\n陈 B-NAME\n启 M-NAME\n卫 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n8 O\n月 O\n北 B-ORG\n京 M-ORG\n联 M-ORG\n合 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 M-ORG\n财 M-ORG\n会 M-ORG\n系 E-ORG\n工 B-PRO\n业 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n获 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n获 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 E-ORG\n（ O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n） O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 M-TITLE\n科 M-TITLE\n职 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n化 M-ORG\n伯 M-ORG\n利 M-ORG\n兹 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n财 M-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n会 M-TITLE\n部 M-TITLE\n投 M-TITLE\n资 M-TITLE\n科 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n化 M-ORG\n国 M-ORG\n际 M-ORG\n实 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n石 M-ORG\n油 M-ORG\n中 M-ORG\n心 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n化 B-ORG\n肥 M-ORG\n中 M-ORG\n心 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n西 B-ORG\n北 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n风 B-TITLE\n险 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n保 B-TITLE\n险 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n风 B-TITLE\n险 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n化 M-ORG\n蓝 M-ORG\n天 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n英 M-ORG\n特 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n倩 E-NAME\n女 O\n士 O\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n乐 B-ORG\n普 M-ORG\n医 M-ORG\n疗 E-ORG\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n赫 B-NAME\n崇 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n满 B-RACE\n族 E-RACE\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n通 B-ORG\n化 M-ORG\n市 M-ORG\n纸 M-ORG\n箱 M-ORG\n厂 E-ORG\n供 B-TITLE\n销 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n通 B-ORG\n化 M-ORG\n新 M-ORG\n星 M-ORG\n生 M-ORG\n物 M-ORG\n提 M-ORG\n取 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n通 B-ORG\n化 M-ORG\n长 M-ORG\n生 M-ORG\n农 M-ORG\n业 M-ORG\n经 M-ORG\n济 M-ORG\n开 M-ORG\n发 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n。 O\n\n蔡 B-NAME\n辉 M-NAME\n益 E-NAME\n， O\n男 O\n， O\n金 B-ORG\n新 M-ORG\n农 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n重 B-LOC\n庆 M-LOC\n市 M-LOC\n璧 M-LOC\n山 M-LOC\n县 M-LOC\n人 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n博 B-EDU\n士 E-EDU\n毕 O\n业 O\n； O\n\n美 B-ORG\n国 M-ORG\n明 M-ORG\n尼 M-ORG\n苏 M-ORG\n达 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-TITLE\n士 M-TITLE\n后 E-TITLE\n； O\n\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n公 M-ORG\n共 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\nM B-EDU\nP M-EDU\nA E-EDU\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n饲 M-ORG\n料 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n动 B-TITLE\n物 M-TITLE\n营 M-TITLE\n养 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n所 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n所 B-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n2 O\n月 O\n2 O\n8 O\n日 O\n辞 O\n去 O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n职 O\n务 O\n（ O\n尚 O\n未 O\n生 O\n效 O\n） O\n。 O\n\n怀 B-NAME\n进 M-NAME\n鹏 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n2 O\n月 O\n任 O\n北 B-ORG\n京 M-ORG\n航 M-ORG\n空 M-ORG\n航 M-ORG\n天 M-ORG\n大 M-ORG\n学 E-ORG\n副 B-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n航 M-ORG\n空 M-ORG\n航 M-ORG\n天 M-ORG\n大 M-ORG\n学 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n校 M-TITLE\n长 E-TITLE\n， O\n国 B-TITLE\n家 M-TITLE\n8 M-TITLE\n6 M-TITLE\n3 M-TITLE\n计 M-TITLE\n划 M-TITLE\n计 M-TITLE\n算 M-TITLE\n机 M-TITLE\n技 M-TITLE\n术 M-TITLE\n主 M-TITLE\n题 M-TITLE\n首 M-TITLE\n席 M-TITLE\n科 M-TITLE\n学 M-TITLE\n家 E-TITLE\n， O\n国 B-TITLE\n家 M-TITLE\n信 M-TITLE\n息 M-TITLE\n化 M-TITLE\n专 M-TITLE\n家 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n成 M-TITLE\n员 E-TITLE\n。 O\n\n于 B-NAME\n学 M-NAME\n东 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n先 O\n后 O\n任 O\n沈 B-ORG\n阳 M-ORG\n热 M-ORG\n电 M-ORG\n厂 E-ORG\n生 B-TITLE\n技 M-TITLE\n处 M-TITLE\n专 M-TITLE\n业 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n锅 O\n炉 B-TITLE\n分 M-TITLE\n场 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n生 B-TITLE\n技 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n山 M-ORG\n热 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n金 B-ORG\n山 M-ORG\n热 M-ORG\n电 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n山 M-ORG\n热 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n金 B-ORG\n山 M-ORG\n热 M-ORG\n电 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n山 M-ORG\n热 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n南 B-ORG\n票 M-ORG\n劣 M-ORG\n质 M-ORG\n煤 M-ORG\n热 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n山 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n丹 B-ORG\n东 M-ORG\n金 M-ORG\n山 M-ORG\n热 M-ORG\n电 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n山 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n华 B-ORG\n电 M-ORG\n金 M-ORG\n山 M-ORG\n能 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n山 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n山 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n骆 B-NAME\n飞 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n宝 M-ORG\n鸟 M-ORG\n服 M-ORG\n饰 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n报 M-ORG\n喜 M-ORG\n鸟 M-ORG\n服 M-ORG\n饰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n宝 M-ORG\n鸟 M-ORG\n服 M-ORG\n饰 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n宝 M-ORG\n鸟 M-ORG\n纺 M-ORG\n织 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n定 M-TITLE\n代 M-TITLE\n表 M-TITLE\n人 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n宝 M-ORG\n鸟 M-ORG\n服 M-ORG\n饰 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n定 M-TITLE\n代 M-TITLE\n表 M-TITLE\n人 E-TITLE\n。 O\n\n盛 B-NAME\n志 M-NAME\n豪 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n石 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n公 B-TITLE\n用 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n计 M-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n石 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n水 B-TITLE\n厂 M-TITLE\n财 M-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n石 M-ORG\n化 M-ORG\n水 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n实 M-ORG\n业 M-ORG\n东 M-ORG\n滩 M-ORG\n投 M-ORG\n资 M-ORG\n开 M-ORG\n发 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n廖 B-NAME\n廷 M-NAME\n建 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n， O\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n城 M-ORG\n建 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n城 M-ORG\n建 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n于 B-NAME\n恩 M-NAME\n军 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n毕 O\n业 O\n于 O\n甘 B-ORG\n肃 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n和 O\n中 B-ORG\n欧 M-ORG\n国 M-ORG\n际 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n。 O\n\n现 O\n任 O\nT B-ORG\nC M-ORG\nL M-ORG\n集 M-ORG\n团 E-ORG\n助 B-TITLE\n理 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n及 O\nT B-ORG\nC M-ORG\nL M-ORG\n通 M-ORG\n讯 E-ORG\n首 B-TITLE\n席 M-TITLE\n运 M-TITLE\n营 M-TITLE\n官 E-TITLE\n、 O\nT B-ORG\nC M-ORG\nL M-ORG\n财 M-ORG\n务 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n于 B-NAME\n恩 M-NAME\n军 E-NAME\n先 O\n生 O\n于 O\n2 O\n0 O\n0 O\n0 O\n年 O\n8 O\n月 O\n开 O\n始 O\n服 O\n务 O\n于 O\n本 B-ORG\n集 M-ORG\n团 E-ORG\n。 O\n\n从 O\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n至 O\n今 O\n一 O\n直 O\n担 O\n任 O\nT B-ORG\nC M-ORG\nL M-ORG\n通 M-ORG\n讯 M-ORG\n科 M-ORG\n技 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n运 M-TITLE\n营 M-TITLE\n官 E-TITLE\n， O\n兼 O\n任 O\n翰 B-ORG\n林 M-ORG\n汇 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n并 O\n于 O\n2 O\n0 O\n0 O\n6 O\n年 O\n9 O\n月 O\n出 O\n任 O\nT B-ORG\nC M-ORG\nL M-ORG\n集 M-ORG\n团 E-ORG\n助 B-TITLE\n理 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n职 O\n务 O\n； O\n\n于 B-NAME\n恩 M-NAME\n军 E-NAME\n先 O\n生 O\n2 O\n0 O\n0 O\n2 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n间 O\n曾 O\n任 O\n翰 B-ORG\n林 M-ORG\n汇 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n9 O\n月 O\n间 O\n任 O\nT B-ORG\nC M-ORG\nL M-ORG\n电 M-ORG\n脑 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n7 O\n月 O\n间 O\n于 B-NAME\n恩 M-NAME\n军 E-NAME\n先 O\n生 O\n曾 O\n就 O\n职 O\n于 O\n海 B-ORG\n信 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n吕 B-NAME\n丙 M-NAME\n芳 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n2 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n、 O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n二 B-TITLE\n级 M-TITLE\n注 M-TITLE\n册 M-TITLE\n建 M-TITLE\n造 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n淄 B-ORG\n博 M-ORG\n龙 M-ORG\n泉 M-ORG\n管 M-ORG\n道 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n龙 M-ORG\n泉 M-ORG\n管 M-ORG\n道 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n有 M-NAME\n为 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n4 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n辽 B-ORG\n宁 M-ORG\n核 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n顾 B-TITLE\n问 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n任 O\n大 B-ORG\n连 M-ORG\n大 M-ORG\n杨 M-ORG\n创 M-ORG\n世 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n七 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n新 M-NAME\n春 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n德 B-ORG\n国 M-ORG\n洪 M-ORG\n堡 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n中 B-ORG\n山 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n专 O\n家 O\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n山 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n。 O\n\n长 O\n期 O\n从 O\n事 O\n企 O\n业 O\n战 O\n略 O\n管 O\n理 O\n、 O\n家 O\n族 O\n企 O\n业 O\n管 O\n理 O\n和 O\n创 O\n业 O\n管 O\n理 O\n的 O\n研 O\n究 O\n与 O\n教 O\n学 O\n。 O\n\n入 O\n选 O\n国 O\n家 O\n人 O\n事 O\n部 O\n、 O\n科 O\n技 O\n部 O\n、 O\n教 O\n育 O\n部 O\n等 O\n批 O\n准 O\n的 O\n\" O\n新 O\n世 O\n纪 O\n百 O\n千 O\n万 O\n人 O\n才 O\n工 O\n程 O\n国 O\n家 O\n级 O\n人 O\n选 O\n\" O\n( O\n2 O\n0 O\n0 O\n5 O\n) O\n和 O\n教 O\n育 O\n部 O\n新 O\n世 O\n纪 O\n优 O\n秀 O\n人 O\n才 O\n( O\n2 O\n0 O\n0 O\n4 O\n) O\n， O\n第 O\n四 O\n届 O\n全 O\n国 O\nM O\nB O\nA O\n专 O\n业 O\n学 O\n位 O\n教 O\n育 O\n指 O\n导 O\n委 O\n员 O\n会 O\n委 O\n员 O\n。 O\n\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n企 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n企 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n现 M-ORG\n代 M-ORG\n化 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n家 M-ORG\n族 M-ORG\n企 M-ORG\n业 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n以 O\n及 O\n广 B-ORG\n东 M-ORG\n海 M-ORG\n大 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n东 M-ORG\n方 M-ORG\n宾 M-ORG\n馆 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n广 B-ORG\n州 M-ORG\n东 M-ORG\n华 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n和 O\n广 B-ORG\n东 M-ORG\n银 M-ORG\n禧 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n等 O\n职 O\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n2 O\n3 O\n日 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n黄 B-NAME\n学 M-NAME\n敏 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n博 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n“ B-ORG\n环 M-ORG\n三 M-ORG\n” M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n督 B-TITLE\n察 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n闽 M-ORG\n东 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n闽 M-ORG\n东 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n闽 M-ORG\n东 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n阎 B-NAME\n前 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n曾 O\n任 O\n贵 B-ORG\n阳 M-ORG\n市 M-ORG\n床 M-ORG\n单 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n珠 B-ORG\n海 M-ORG\n市 M-ORG\n纺 M-ORG\n织 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n珠 B-ORG\n海 M-ORG\n经 M-ORG\n济 M-ORG\n特 M-ORG\n区 M-ORG\n富 M-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n任 O\n珠 B-ORG\n海 M-ORG\n经 M-ORG\n济 M-ORG\n特 M-ORG\n区 M-ORG\n富 M-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n局 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n珠 B-ORG\n海 M-ORG\n功 M-ORG\n控 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n珠 B-ORG\n海 M-ORG\n裕 M-ORG\n华 M-ORG\n聚 M-ORG\n酯 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n珠 B-ORG\n海 M-ORG\n碧 M-ORG\n辟 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n珠 B-ORG\n海 M-ORG\n市 M-ORG\n石 M-ORG\n油 M-ORG\n和 M-ORG\n化 M-ORG\n工 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n天 M-NAME\n宇 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n医 M-ORG\n药 M-ORG\n保 M-ORG\n健 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n政 B-TITLE\n治 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n至 O\n今 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n医 M-ORG\n药 M-ORG\n保 M-ORG\n健 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n群 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n医 M-ORG\n药 M-ORG\n保 M-ORG\n健 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n医 M-ORG\n药 M-ORG\n健 M-ORG\n康 M-ORG\n产 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n宝 M-NAME\n杰 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n。 O\n\n毕 O\n业 O\n于 O\n解 B-ORG\n放 M-ORG\n军 M-ORG\n南 M-ORG\n京 M-ORG\n政 M-ORG\n治 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n南 B-ORG\n京 M-ORG\n政 M-ORG\n治 M-ORG\n学 M-ORG\n院 E-ORG\n机 B-TITLE\n关 M-TITLE\n干 M-TITLE\n部 E-TITLE\n、 O\n学 B-TITLE\n员 M-TITLE\n队 M-TITLE\n干 M-TITLE\n部 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n军 M-ORG\n区 M-ORG\n舟 M-ORG\n桥 M-ORG\n第 M-ORG\n8 M-ORG\n5 M-ORG\n团 E-ORG\n宣 B-TITLE\n传 M-TITLE\n干 M-TITLE\n事 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n军 M-ORG\n事 M-ORG\n检 M-ORG\n察 M-ORG\n院 E-ORG\n检 B-TITLE\n察 M-TITLE\n员 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n军 M-ORG\n区 M-ORG\n军 M-ORG\n事 M-ORG\n检 M-ORG\n察 M-ORG\n院 E-ORG\n检 B-TITLE\n察 M-TITLE\n员 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n企 M-ORG\n业 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n企 M-ORG\n业 M-ORG\n家 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n员 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n友 M-ORG\n基 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n特 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n兼 O\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n特 B-ORG\n发 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n特 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n兼 O\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n现 O\n任 O\n特 B-ORG\n发 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n樊 B-NAME\n晔 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n纺 M-ORG\n织 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n报 O\n告 O\n期 O\n内 O\n因 O\n公 O\n司 O\n另 O\n有 O\n任 O\n用 O\n辞 O\n去 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n姜 B-NAME\n华 M-NAME\n方 E-NAME\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n。 O\n\n现 O\n任 O\n无 B-ORG\n锡 M-ORG\n小 M-ORG\n天 M-ORG\n鹅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n营 B-TITLE\n运 M-TITLE\n与 M-TITLE\n人 M-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n曾 O\n任 O\n无 B-ORG\n锡 M-ORG\n小 M-ORG\n天 M-ORG\n鹅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n供 B-TITLE\n应 M-TITLE\n链 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n海 B-TITLE\n外 M-TITLE\n支 M-TITLE\n持 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n美 B-ORG\n的 M-ORG\n电 M-ORG\n器 M-ORG\n中 M-ORG\n央 M-ORG\n空 M-ORG\n调 M-ORG\n营 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n区 B-TITLE\n域 M-TITLE\n销 M-TITLE\n售 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n合 B-ORG\n肥 M-ORG\n华 M-ORG\n凌 M-ORG\n电 M-ORG\n器 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n采 B-TITLE\n购 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n合 B-ORG\n肥 M-ORG\n荣 M-ORG\n事 M-ORG\n达 M-ORG\n洗 M-ORG\n衣 M-ORG\n设 M-ORG\n备 M-ORG\n制 M-ORG\n造 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n供 B-TITLE\n应 M-TITLE\n链 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n总 O\n监 O\n等 O\n职 O\n。 O\n\n钱 B-NAME\n森 M-NAME\n力 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n自 O\n2 O\n0 O\n1 O\n0 O\n年 O\n起 O\n历 O\n任 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n方 M-ORG\n圆 M-ORG\n回 M-ORG\n转 M-ORG\n支 M-ORG\n承 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n浏 B-ORG\n阳 M-ORG\n方 M-ORG\n圆 M-ORG\n液 M-ORG\n压 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n方 M-ORG\n圆 M-ORG\n动 M-ORG\n力 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n方 B-ORG\n圆 M-ORG\n支 M-ORG\n承 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n长 B-ORG\n沙 M-ORG\n方 M-ORG\n圆 M-ORG\n回 M-ORG\n转 M-ORG\n支 M-ORG\n承 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n浏 B-ORG\n阳 M-ORG\n方 M-ORG\n圆 M-ORG\n液 M-ORG\n压 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n方 M-ORG\n圆 M-ORG\n动 M-ORG\n力 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n同 M-ORG\n盛 M-ORG\n环 M-ORG\n件 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n惊 B-ORG\n天 M-ORG\n智 M-ORG\n能 M-ORG\n装 M-ORG\n备 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n凤 M-NAME\n山 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n新 B-ORG\n加 M-ORG\n坡 M-ORG\n南 M-ORG\n洋 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n公 B-PRO\n共 M-PRO\n关 M-PRO\n系 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n昆 B-ORG\n明 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n选 B-PRO\n矿 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n8 O\n月 O\n， O\n先 O\n后 O\n任 O\n大 B-ORG\n冶 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n公 M-ORG\n司 M-ORG\n赤 M-ORG\n马 M-ORG\n山 M-ORG\n矿 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n矿 M-TITLE\n长 E-TITLE\n、 O\n矿 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n8 O\n月 O\n， O\n任 O\n大 B-ORG\n冶 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n公 M-ORG\n司 M-ORG\n铜 M-ORG\n录 M-ORG\n山 M-ORG\n矿 E-ORG\n矿 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n月 O\n， O\n任 O\n大 B-ORG\n冶 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n， O\n任 O\n黄 B-ORG\n石 M-ORG\n市 M-ORG\n纪 M-ORG\n委 E-ORG\n副 B-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n大 B-ORG\n冶 M-ORG\n市 M-ORG\n委 E-ORG\n副 B-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n市 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n1 O\n月 O\n， O\n任 O\n黄 B-ORG\n石 M-ORG\n市 M-ORG\n委 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n， O\n任 O\n黄 B-ORG\n石 M-ORG\n市 M-ORG\n民 M-ORG\n政 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n起 O\n， O\n任 O\n华 B-ORG\n新 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n华 B-ORG\n新 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n华 B-ORG\n新 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n起 O\n， O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n， O\n出 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n张 B-NAME\n凌 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n5 O\n6 O\n年 O\n1 O\n月 O\n， O\n博 B-EDU\n士 E-EDU\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n朝 M-ORG\n阳 M-ORG\n区 M-ORG\n人 M-ORG\n民 M-ORG\n检 M-ORG\n察 M-ORG\n院 E-ORG\n副 B-TITLE\n检 M-TITLE\n察 M-TITLE\n长 E-TITLE\n、 O\n检 B-TITLE\n察 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n日 B-ORG\n本 M-ORG\n丰 M-ORG\n田 M-ORG\n汽 M-ORG\n车 M-ORG\n金 M-ORG\n融 M-ORG\n公 M-ORG\n司 E-ORG\n特 B-TITLE\n别 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n华 B-ORG\n电 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n亚 B-ORG\n洲 M-ORG\n法 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n犯 M-ORG\n罪 M-ORG\n学 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n全 B-ORG\n国 M-ORG\n犯 M-ORG\n罪 M-ORG\n被 M-ORG\n害 M-ORG\n人 M-ORG\n学 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n蓝 M-ORG\n鹏 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n兼 B-TITLE\n职 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n郑 B-ORG\n州 M-ORG\n华 M-ORG\n晶 M-ORG\n金 M-ORG\n刚 M-ORG\n石 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n自 O\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n起 O\n担 O\n任 O\n泸 B-ORG\n州 M-ORG\n老 M-ORG\n窖 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n方 B-NAME\n翥 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n重 B-ORG\n庆 M-ORG\n国 M-ORG\n际 M-ORG\n实 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n办 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n现 O\n任 O\n重 B-ORG\n庆 M-ORG\n国 M-ORG\n际 M-ORG\n实 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n薛 B-NAME\n崐 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n原 O\n任 O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n九 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n历 O\n任 O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n客 M-ORG\n运 M-ORG\n总 M-ORG\n站 E-ORG\n货 B-TITLE\n运 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n商 M-ORG\n务 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n江 M-ORG\n北 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n集 M-ORG\n装 M-ORG\n箱 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n业 M-ORG\n务 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n江 M-ORG\n北 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n港 M-ORG\n九 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n九 M-ORG\n龙 M-ORG\n坡 M-ORG\n集 M-ORG\n装 M-ORG\n箱 M-ORG\n码 M-ORG\n头 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n肖 B-NAME\n笛 M-NAME\n波 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n桂 B-ORG\n林 M-ORG\n市 M-ORG\n经 M-ORG\n济 M-ORG\n体 M-ORG\n制 M-ORG\n改 M-ORG\n革 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n企 B-TITLE\n业 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n2 O\n月 O\n任 O\n桂 B-ORG\n林 M-ORG\n集 M-ORG\n琦 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n2 O\n月 O\n历 O\n任 O\n桂 B-ORG\n林 M-ORG\n集 M-ORG\n琦 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n； O\n\n任 O\n桂 B-ORG\n林 M-ORG\n集 M-ORG\n琦 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n桂 B-ORG\n林 M-ORG\n集 M-ORG\n琦 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n齐 B-NAME\n东 M-NAME\n绮 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n毕 O\n业 O\n于 O\n河 B-ORG\n北 M-ORG\n化 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n基 B-PRO\n本 M-PRO\n有 M-PRO\n机 M-PRO\n合 M-PRO\n成 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n执 B-TITLE\n业 M-TITLE\n药 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n先 O\n后 O\n任 O\n河 B-ORG\n北 M-ORG\n省 M-ORG\n医 M-ORG\n药 M-ORG\n工 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n华 B-ORG\n泰 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n3 B-ORG\n0 M-ORG\n1 M-ORG\n医 M-ORG\n院 M-ORG\n技 M-ORG\n术 M-ORG\n开 M-ORG\n发 M-ORG\n中 M-ORG\n心 E-ORG\n多 B-TITLE\n肽 M-TITLE\n室 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n烟 B-ORG\n台 M-ORG\n东 M-ORG\n诚 M-ORG\n药 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n北 B-ORG\n方 M-ORG\n制 M-ORG\n药 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n曹 B-NAME\n国 M-NAME\n其 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n8 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n浙 B-LOC\n江 M-LOC\n绍 M-LOC\n兴 M-LOC\n人 E-LOC\n， O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n明 M-ORG\n牌 M-ORG\n首 M-ORG\n饰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n日 M-ORG\n月 M-ORG\n首 M-ORG\n饰 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n至 O\n今 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n明 M-ORG\n牌 M-ORG\n珠 M-ORG\n宝 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n明 M-ORG\n牌 M-ORG\n珠 M-ORG\n宝 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n郭 B-NAME\n忠 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n。 O\n\n先 O\n后 O\n在 O\n广 B-ORG\n州 M-ORG\n军 M-ORG\n区 M-ORG\n十 M-ORG\n三 M-ORG\n师 M-ORG\n8 M-ORG\n6 M-ORG\n3 M-ORG\n4 M-ORG\n8 M-ORG\n总 M-ORG\n队 E-ORG\n服 O\n役 O\n、 O\n湖 B-ORG\n北 M-ORG\n宜 M-ORG\n昌 M-ORG\n毛 M-ORG\n涤 M-ORG\n纶 M-ORG\n厂 E-ORG\n、 O\n海 B-ORG\n南 M-ORG\n中 M-ORG\n国 M-ORG\n城 E-ORG\n任 O\n销 B-TITLE\n售 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n东 B-ORG\n莞 M-ORG\n长 M-ORG\n安 M-ORG\n海 M-ORG\n悦 M-ORG\n花 M-ORG\n园 M-ORG\n大 M-ORG\n酒 M-ORG\n店 E-ORG\n、 O\n三 B-ORG\n九 M-ORG\n大 M-ORG\n酒 M-ORG\n店 E-ORG\n任 O\n主 B-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n行 B-TITLE\n政 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n现 O\n在 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n明 M-ORG\n伦 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n钟 B-NAME\n明 M-NAME\n强 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n生 O\n， O\n工 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n浙 B-ORG\n江 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n学 M-ORG\n与 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 M-ORG\n高 M-ORG\n分 M-ORG\n子 M-ORG\n材 M-ORG\n料 M-ORG\n与 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n； O\n\n“ B-ORG\n材 M-ORG\n料 M-ORG\n化 M-ORG\n工 M-ORG\n” M-ORG\n专 M-ORG\n业 M-ORG\n博 M-ORG\n士 M-ORG\n点 E-ORG\n负 B-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n“ B-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n学 M-ORG\n与 M-ORG\n工 M-ORG\n程 M-ORG\n” M-ORG\n浙 M-ORG\n江 M-ORG\n省 M-ORG\n重 M-ORG\n中 M-ORG\n之 M-ORG\n重 M-ORG\n学 M-ORG\n科 E-ORG\n负 B-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n塑 M-ORG\n料 M-ORG\n改 M-ORG\n性 M-ORG\n与 M-ORG\n加 M-ORG\n工 M-ORG\n技 M-ORG\n术 M-ORG\n研 M-ORG\n究 M-ORG\n重 M-ORG\n点 M-ORG\n实 M-ORG\n验 M-ORG\n室 E-ORG\n主 B-TITLE\n任 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n腐 M-ORG\n蚀 M-ORG\n与 M-ORG\n防 M-ORG\n护 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n化 M-ORG\n学 M-ORG\n建 M-ORG\n材 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n粘 M-ORG\n接 M-ORG\n技 M-ORG\n术 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n建 M-ORG\n设 M-ORG\n厅 M-ORG\n科 M-ORG\n技 M-ORG\n委 M-ORG\n化 M-ORG\n学 M-ORG\n建 M-ORG\n材 M-ORG\n节 M-ORG\n材 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n“ M-ORG\n十 M-ORG\n二 M-ORG\n五 M-ORG\n” M-ORG\n重 M-ORG\n大 M-ORG\n科 M-ORG\n技 M-ORG\n专 M-ORG\n项 M-ORG\n“ M-ORG\n纺 M-ORG\n织 M-ORG\n、 M-ORG\n皮 M-ORG\n革 M-ORG\n与 M-ORG\n塑 M-ORG\n料 M-ORG\n” M-ORG\n转 M-ORG\n化 M-ORG\n工 M-ORG\n程 E-ORG\n专 B-TITLE\n家 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n。 O\n\n道 B-ORG\n明 M-ORG\n光 M-ORG\n学 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n兼 O\n任 O\n浙 B-ORG\n江 M-ORG\n赞 M-ORG\n宇 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n尚 B-NAME\n兴 M-NAME\n中 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n任 O\n一 B-ORG\n汽 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n任 O\n一 B-ORG\n汽 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n一 B-ORG\n汽 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n赵 B-NAME\n学 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n大 B-EDU\n专 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n毕 O\n业 O\n于 O\n兰 B-ORG\n州 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n曾 O\n任 O\n嘉 B-ORG\n峪 M-ORG\n关 M-ORG\n市 M-ORG\n委 E-ORG\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n酒 B-ORG\n钢 M-ORG\n党 M-ORG\n委 E-ORG\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n甘 B-ORG\n肃 M-ORG\n省 M-ORG\n人 M-ORG\n才 M-ORG\n交 M-ORG\n流 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n甘 B-ORG\n肃 M-ORG\n省 M-ORG\n人 M-ORG\n事 M-ORG\n局 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n酒 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n驻 M-ORG\n兰 M-ORG\n州 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n酒 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n兰 B-ORG\n钢 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n酒 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n兰 B-ORG\n钢 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n酒 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n财 M-TITLE\n务 M-TITLE\n审 M-TITLE\n计 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n甘 B-ORG\n肃 M-ORG\n酒 M-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n宏 M-ORG\n兴 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n赵 B-NAME\n晋 M-NAME\n蓉 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n邮 B-ORG\n电 M-ORG\n部 M-ORG\n成 M-ORG\n都 M-ORG\n电 M-ORG\n缆 M-ORG\n厂 E-ORG\n生 B-TITLE\n产 M-TITLE\n处 M-TITLE\n、 M-TITLE\n供 M-TITLE\n应 M-TITLE\n处 M-TITLE\n、 M-TITLE\n销 M-TITLE\n售 M-TITLE\n处 M-TITLE\n、 M-TITLE\n原 M-TITLE\n料 M-TITLE\n分 M-TITLE\n析 M-TITLE\n处 M-TITLE\n、 M-TITLE\n计 M-TITLE\n量 M-TITLE\n处 M-TITLE\n、 M-TITLE\n科 M-TITLE\n研 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n汇 M-ORG\n源 M-ORG\n光 M-ORG\n通 M-ORG\n信 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n四 B-ORG\n川 M-ORG\n汇 M-ORG\n源 M-ORG\n光 M-ORG\n通 M-ORG\n信 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n文 M-NAME\n忠 E-NAME\n， O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n0 O\n月 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n至 O\n今 O\n， O\n任 O\n青 B-ORG\n海 M-ORG\n华 M-ORG\n鼎 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n张 B-NAME\n军 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n出 O\n生 O\n， O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n历 O\n任 O\n空 B-ORG\n军 M-ORG\n华 M-ORG\n英 M-ORG\n寻 M-ORG\n呼 M-ORG\n网 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n英 M-ORG\n台 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n空 B-ORG\n军 M-ORG\n通 M-ORG\n信 M-ORG\n支 M-ORG\n援 M-ORG\n国 M-ORG\n家 M-ORG\n经 M-ORG\n济 M-ORG\n建 M-ORG\n设 M-ORG\n办 M-ORG\n公 M-ORG\n室 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n今 O\n任 O\n北 B-ORG\n京 M-ORG\n北 M-ORG\n纬 M-ORG\n通 M-ORG\n信 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n起 O\n任 O\n北 B-ORG\n京 M-ORG\n北 M-ORG\n纬 M-ORG\n通 M-ORG\n信 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n徐 B-NAME\n聆 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n上 M-ORG\n投 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n历 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n第 M-ORG\n四 M-ORG\n建 M-ORG\n筑 M-ORG\n工 M-ORG\n程 M-ORG\n公 M-ORG\n司 E-ORG\n机 B-TITLE\n械 M-TITLE\n施 M-TITLE\n工 M-TITLE\n队 M-TITLE\n会 M-TITLE\n计 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n上 M-ORG\n投 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n会 M-TITLE\n计 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n等 O\n。 O\n\n刘 B-NAME\n东 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n信 M-ORG\n达 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 M-ORG\n北 M-ORG\n京 M-ORG\n证 M-ORG\n券 M-ORG\n营 M-ORG\n业 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n证 B-ORG\n券 M-ORG\n业 M-ORG\n务 M-ORG\n总 M-ORG\n部 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n北 B-ORG\n京 M-ORG\n营 M-ORG\n业 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n宏 B-ORG\n源 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n证 B-ORG\n券 M-ORG\n业 M-ORG\n务 M-ORG\n总 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n宏 B-ORG\n源 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n袁 B-NAME\n湛 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n太 B-ORG\n原 M-ORG\n机 M-ORG\n械 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n本 B-EDU\n科 E-EDU\n， O\n中 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n8 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n襄 B-ORG\n阳 M-ORG\n汽 M-ORG\n车 M-ORG\n轴 M-ORG\n承 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n人 M-TITLE\n事 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n组 M-TITLE\n织 M-TITLE\n部 M-TITLE\n干 M-TITLE\n部 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n部 B-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n襄 B-ORG\n阳 M-ORG\n汽 M-ORG\n车 M-ORG\n轴 M-ORG\n承 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n规 M-TITLE\n划 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n无 O\n简 O\n历 O\n信 O\n息 O\n\n郑 B-NAME\n保 M-NAME\n安 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n毕 O\n业 O\n于 O\n山 B-ORG\n东 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n院 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n系 E-ORG\n， O\n获 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n毕 O\n业 O\n于 O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n管 B-PRO\n理 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n任 O\n山 B-ORG\n东 M-ORG\n齐 M-ORG\n鲁 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n任 O\n山 B-ORG\n东 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n任 O\n山 B-ORG\n东 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n加 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n并 O\n作 O\n为 O\n重 O\n要 O\n成 O\n员 O\n参 O\n与 O\n了 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n的 O\n海 O\n外 O\n上 O\n市 O\n工 O\n作 O\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n持 O\n有 O\n香 B-ORG\n港 M-ORG\n秘 M-ORG\n书 M-ORG\n公 M-ORG\n会 E-ORG\n与 O\n深 B-ORG\n圳 M-ORG\n证 M-ORG\n券 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n颁 O\n发 O\n的 O\n董 O\n事 O\n会 O\n秘 O\n书 O\n资 O\n格 O\n证 O\n书 O\n。 O\n\n季 B-NAME\n茜 E-NAME\n， O\n女 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n主 O\n要 O\n工 O\n作 O\n经 O\n历 O\n： O\n曾 O\n就 O\n职 O\n于 O\n平 B-ORG\n煤 M-ORG\n集 M-ORG\n团 E-ORG\n工 O\n作 O\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n月 O\n在 O\n珠 B-ORG\n海 M-ORG\n经 M-ORG\n济 M-ORG\n特 M-ORG\n区 M-ORG\n富 M-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 O\n公 O\n室 O\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n2 O\n月 O\n至 O\n今 O\n在 O\n珠 B-ORG\n海 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 O\n事 O\n局 O\n秘 O\n书 O\n处 O\n工 O\n作 O\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n0 O\n月 O\n起 O\n任 O\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n郑 B-NAME\n泗 M-NAME\n滨 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n； O\n\n历 O\n任 O\n浙 B-ORG\n江 M-ORG\n松 M-ORG\n阳 M-ORG\n啤 M-ORG\n酒 M-ORG\n厂 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n太 M-ORG\n电 M-ORG\n子 M-ORG\n（ M-ORG\n深 M-ORG\n圳 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n拓 M-ORG\n邦 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n电 B-TITLE\n控 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n拓 M-ORG\n邦 M-ORG\n软 M-ORG\n件 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n拓 M-ORG\n邦 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n红 M-NAME\n帆 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n6 O\n月 O\n2 O\n4 O\n日 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-ORG\n国 M-ORG\n民 M-ORG\n主 M-ORG\n建 M-ORG\n国 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n瑞 M-ORG\n江 M-ORG\n南 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n7 O\n月 O\n— O\n— O\n1 O\n9 O\n9 O\n9 O\n年 O\n6 O\n月 O\n， O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n院 E-ORG\n（ O\n原 O\n杭 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n金 M-ORG\n融 M-ORG\n与 M-ORG\n经 M-ORG\n贸 M-ORG\n学 M-ORG\n院 E-ORG\n、 O\n杭 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n金 M-ORG\n系 E-ORG\n、 O\n杭 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n系 E-ORG\n） O\n担 O\n任 O\n财 B-TITLE\n政 M-TITLE\n专 M-TITLE\n业 M-TITLE\n、 M-TITLE\n会 M-TITLE\n计 M-TITLE\n专 M-TITLE\n业 M-TITLE\n专 M-TITLE\n业 M-TITLE\n课 M-TITLE\n程 M-TITLE\n教 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n6 O\n月 O\n至 O\n今 O\n， O\n在 O\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n瑞 M-ORG\n江 M-ORG\n南 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n原 O\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n瑞 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n浙 B-ORG\n江 M-ORG\n浙 M-ORG\n瑞 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n） O\n工 O\n作 O\n， O\n历 O\n任 O\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n瑞 M-ORG\n江 M-ORG\n南 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n浙 B-ORG\n江 M-ORG\n世 M-ORG\n纪 M-ORG\n华 M-ORG\n通 M-ORG\n车 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n国 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n南 B-ORG\n京 M-ORG\n化 M-ORG\n工 M-ORG\n动 M-ORG\n力 M-ORG\n专 M-ORG\n科 M-ORG\n学 M-ORG\n校 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n系 E-ORG\n会 B-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n全 B-ORG\n国 M-ORG\n高 M-ORG\n等 M-ORG\n教 M-ORG\n育 M-ORG\n自 M-ORG\n学 M-ORG\n考 M-ORG\n试 E-ORG\n会 B-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n西 B-ORG\n柏 M-ORG\n坡 M-ORG\n发 M-ORG\n电 M-ORG\n总 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n河 B-ORG\n北 M-ORG\n省 M-ORG\n电 M-ORG\n力 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n华 M-ORG\n电 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n预 M-TITLE\n算 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n级 M-TITLE\n职 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n华 M-ORG\n电 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n预 M-TITLE\n算 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n， O\n国 B-ORG\n电 M-ORG\n南 M-ORG\n京 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n、 M-TITLE\n第 M-TITLE\n五 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n华 M-ORG\n电 M-ORG\n工 M-ORG\n程 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n马 B-NAME\n建 M-NAME\n伟 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n生 O\n于 O\n辽 B-LOC\n宁 M-LOC\n省 M-LOC\n鞍 M-LOC\n山 M-LOC\n市 E-LOC\n。 O\n\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n材 M-ORG\n料 M-ORG\n物 M-ORG\n理 M-ORG\n系 E-ORG\n金 B-PRO\n属 M-PRO\n物 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n硕 B-EDU\n士 E-EDU\n毕 O\n业 O\n于 O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\n安 M-ORG\n大 M-ORG\n略 M-ORG\n省 M-ORG\n皇 M-ORG\n后 M-ORG\n大 M-ORG\n学 M-ORG\n材 M-ORG\n料 M-ORG\n和 M-ORG\n冶 M-ORG\n金 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n。 O\n\n华 B-ORG\n菱 M-ORG\n钢 M-ORG\n铁 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n曾 O\n任 O\n安 B-ORG\n赛 M-ORG\n乐 M-ORG\n米 M-ORG\n塔 M-ORG\n尔 E-ORG\n研 B-TITLE\n究 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n。 O\n\n郑 B-NAME\n长 M-NAME\n山 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n党 B-TITLE\n校 M-TITLE\n研 M-TITLE\n究 M-TITLE\n生 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n青 B-ORG\n海 M-ORG\n盐 M-ORG\n湖 M-ORG\n工 M-ORG\n业 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n青 B-ORG\n海 M-ORG\n盐 M-ORG\n湖 M-ORG\n钾 M-ORG\n肥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n任 O\n青 B-ORG\n海 M-ORG\n省 M-ORG\n内 M-ORG\n部 M-ORG\n审 M-ORG\n计 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n今 O\n任 O\n全 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n审 M-ORG\n计 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n。 O\n\n虞 B-NAME\n斌 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n华 M-ORG\n谊 M-ORG\n集 M-ORG\n团 M-ORG\n企 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n华 M-ORG\n谊 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n闵 M-ORG\n行 M-ORG\n华 M-ORG\n谊 M-ORG\n小 M-ORG\n额 M-ORG\n贷 M-ORG\n款 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n氯 M-ORG\n碱 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n季 B-NAME\n贵 M-NAME\n荣 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n航 M-ORG\n空 M-ORG\n技 M-ORG\n术 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n计 B-TITLE\n划 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n洪 M-ORG\n都 M-ORG\n航 M-ORG\n空 M-ORG\n工 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n四 B-ORG\n维 M-ORG\n航 M-ORG\n空 M-ORG\n遥 M-ORG\n感 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n四 B-ORG\n维 M-ORG\n图 M-ORG\n新 M-ORG\n（ M-ORG\n香 M-ORG\n港 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n航 M-ORG\n国 M-ORG\n际 M-ORG\n香 M-ORG\n港 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n、 O\n杭 B-ORG\n州 M-ORG\n海 M-ORG\n联 M-ORG\n热 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n主 B-TITLE\n席 E-TITLE\n。 O\n\n刘 B-NAME\n国 M-NAME\n平 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n1 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n彭 B-ORG\n浦 M-ORG\n机 M-ORG\n器 M-ORG\n厂 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n鼓 M-ORG\n风 M-ORG\n机 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n气 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n管 B-TITLE\n理 M-TITLE\n二 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n企 B-TITLE\n业 M-TITLE\n重 M-TITLE\n组 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n机 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n印 M-ORG\n刷 M-ORG\n包 M-ORG\n装 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n无 O\n简 O\n历 O\n信 O\n息 O\n\n吴 B-NAME\n安 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n曾 O\n任 O\n长 B-ORG\n春 M-ORG\n高 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n产 M-ORG\n业 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n现 O\n任 O\n长 B-ORG\n春 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n长 B-ORG\n春 M-ORG\n高 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n产 M-ORG\n业 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n外 M-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n曲 B-NAME\n云 M-NAME\n虹 E-NAME\n女 O\n士 O\n： O\n监 B-TITLE\n事 E-TITLE\n（ O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 E-TITLE\n） O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n( O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n) O\n， O\n中 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n任 O\n大 B-ORG\n连 M-ORG\n天 M-ORG\n宝 M-ORG\n绿 M-ORG\n色 M-ORG\n食 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n兰 M-NAME\n芬 E-NAME\n， O\n女 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n机 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n机 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n黄 B-NAME\n国 M-NAME\n安 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n至 O\n1 O\n9 O\n9 O\n0 O\n年 O\n在 O\n饶 B-ORG\n平 M-ORG\n县 M-ORG\n木 M-ORG\n材 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n任 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n在 O\n饶 B-ORG\n平 M-ORG\n县 M-ORG\n汇 M-ORG\n润 M-ORG\n工 M-ORG\n艺 M-ORG\n木 M-ORG\n制 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n任 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n至 O\n今 O\n在 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n宜 M-ORG\n华 M-ORG\n木 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n现 O\n任 O\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n蒯 B-NAME\n振 M-NAME\n宪 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n外 M-ORG\n高 M-ORG\n桥 M-ORG\n保 M-ORG\n税 M-ORG\n区 M-ORG\n三 M-ORG\n联 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n党 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n外 M-ORG\n高 M-ORG\n桥 M-ORG\n现 M-ORG\n代 M-ORG\n服 M-ORG\n务 M-ORG\n贸 M-ORG\n易 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n雷 B-NAME\n声 M-NAME\n洪 E-NAME\n， O\n男 O\n， O\n3 O\n4 O\n岁 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n车 B-TITLE\n间 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n设 B-TITLE\n备 M-TITLE\n管 M-TITLE\n理 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n制 B-TITLE\n造 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n制 B-TITLE\n造 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n徐 B-NAME\n兵 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n2 O\n年 O\n9 O\n月 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n光 B-ORG\n正 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n起 O\n任 O\n职 O\n于 O\n新 B-ORG\n疆 M-ORG\n建 M-ORG\n筑 M-ORG\n设 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n， O\n曾 O\n担 O\n任 O\n所 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n职 O\n务 O\n。 O\n\n现 O\n任 O\n光 B-ORG\n正 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n新 B-ORG\n疆 M-ORG\n建 M-ORG\n筑 M-ORG\n设 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n覃 B-NAME\n清 M-NAME\n元 E-NAME\n先 O\n生 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n4 O\n7 O\n年 O\n5 O\n月 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n初 B-EDU\n中 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n— O\n1 O\n9 O\n7 O\n8 O\n年 O\n在 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n8 M-ORG\n0 M-ORG\n2 M-ORG\n3 M-ORG\n部 M-ORG\n队 E-ORG\n和 O\n空 B-ORG\n九 M-ORG\n军 E-ORG\n服 O\n役 O\n； O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n— O\n1 O\n9 O\n9 O\n2 O\n年 O\n在 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n绵 M-ORG\n阳 M-ORG\n市 M-ORG\n汽 M-ORG\n车 M-ORG\n运 M-ORG\n输 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n— O\n2 O\n0 O\n0 O\n1 O\n年 O\n在 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n绵 M-ORG\n阳 M-ORG\n市 M-ORG\n汽 M-ORG\n车 M-ORG\n运 M-ORG\n输 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n经 B-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n— O\n2 O\n0 O\n0 O\n5 O\n年 O\n在 O\n四 B-ORG\n川 M-ORG\n富 M-ORG\n临 M-ORG\n捷 M-ORG\n达 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n经 B-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n— O\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n任 O\n富 B-ORG\n临 M-ORG\n实 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n任 O\n期 O\n为 O\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n3 O\n0 O\n日 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n7 O\n月 O\n3 O\n0 O\n日 O\n。 O\n\n蒋 B-NAME\n艺 E-NAME\n， O\n女 O\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n起 O\n任 O\n广 B-ORG\n州 M-ORG\n汇 M-ORG\n崃 M-ORG\n商 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n5 O\n月 O\n任 O\n东 B-ORG\n凌 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n任 O\n东 B-ORG\n凌 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n5 O\n月 O\n起 O\n任 O\n广 B-ORG\n州 M-ORG\n植 M-ORG\n之 M-ORG\n元 M-ORG\n油 M-ORG\n脂 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n任 O\n广 B-ORG\n州 M-ORG\n东 M-ORG\n凌 M-ORG\n粮 M-ORG\n油 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n东 M-ORG\n广 M-ORG\n州 M-ORG\n东 M-ORG\n凌 M-ORG\n实 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n起 O\n任 O\n广 B-ORG\n州 M-ORG\n东 M-ORG\n凌 M-ORG\n粮 M-ORG\n油 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n曾 B-NAME\n嵘 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n； O\n\n工 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n机 M-ORG\n系 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n曾 B-NAME\n嵘 E-NAME\n先 O\n生 O\n1 O\n9 O\n9 O\n0 O\n～ O\n1 O\n9 O\n9 O\n5 O\n年 O\n就 O\n读 O\n于 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n机 M-ORG\n系 E-ORG\n， O\n后 O\n直 O\n接 O\n推 O\n荐 O\n攻 O\n读 O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n7 O\n月 O\n博 B-EDU\n士 E-EDU\n毕 O\n业 O\n， O\n获 O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n今 O\n在 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n机 M-ORG\n系 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n讲 B-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n曾 B-NAME\n嵘 E-NAME\n先 O\n生 O\n为 O\n输 O\n配 O\n电 O\n领 O\n域 O\n的 O\n专 O\n家 O\n， O\n主 O\n要 O\n从 O\n事 O\n超 O\n、 O\n特 O\n高 O\n压 O\n交 O\n直 O\n流 O\n输 O\n电 O\n中 O\n的 O\n电 O\n磁 O\n暂 O\n态 O\n及 O\n其 O\n防 O\n护 O\n、 O\n电 O\n磁 O\n环 O\n境 O\n， O\n配 O\n电 O\n系 O\n统 O\n自 O\n动 O\n化 O\n及 O\n其 O\n管 O\n理 O\n系 O\n统 O\n等 O\n的 O\n研 O\n究 O\n工 O\n作 O\n。 O\n\n曾 B-NAME\n嵘 E-NAME\n先 O\n生 O\n先 O\n后 O\n负 O\n责 O\n和 O\n参 O\n加 O\n了 O\n国 O\n家 O\n自 O\n然 O\n科 O\n学 O\n基 O\n金 O\n重 O\n点 O\n项 O\n目 O\n、 O\n“ O\n9 O\n7 O\n3 O\n计 O\n划 O\n” O\n、 O\n“ O\n8 O\n6 O\n3 O\n计 O\n划 O\n” O\n、 O\n“ O\n十 O\n一 O\n五 O\n” O\n科 O\n技 O\n支 O\n撑 O\n计 O\n划 O\n、 O\n直 O\n流 O\n输 O\n电 O\n国 O\n产 O\n化 O\n与 O\n特 O\n高 O\n压 O\n输 O\n电 O\n等 O\n几 O\n十 O\n项 O\n科 O\n研 O\n项 O\n目 O\n， O\n获 O\n中 O\n国 O\n电 O\n力 O\n科 O\n技 O\n进 O\n步 O\n一 O\n等 O\n奖 O\n1 O\n项 O\n， O\n教 O\n育 O\n部 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n1 O\n项 O\n， O\n中 O\n国 O\n能 O\n源 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n1 O\n项 O\n， O\n中 O\n国 O\n电 O\n力 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n2 O\n项 O\n、 O\n三 O\n等 O\n奖 O\n多 O\n项 O\n， O\n国 O\n家 O\n电 O\n网 O\n科 O\n技 O\n进 O\n步 O\n特 O\n等 O\n奖 O\n1 O\n项 O\n， O\n北 O\n京 O\n市 O\n教 O\n学 O\n成 O\n果 O\n一 O\n等 O\n奖 O\n等 O\n奖 O\n项 O\n多 O\n项 O\n。 O\n\n曾 B-NAME\n嵘 E-NAME\n先 O\n生 O\n现 O\n为 O\nI B-TITLE\nE M-TITLE\nT M-TITLE\nF M-TITLE\ne M-TITLE\nl M-TITLE\nl M-TITLE\no M-TITLE\nw E-TITLE\n， O\nI B-TITLE\nE M-TITLE\nE M-TITLE\nE M-TITLE\ns M-TITLE\ne M-TITLE\nn M-TITLE\ni M-TITLE\no M-TITLE\nr M-TITLE\nm M-TITLE\ne M-TITLE\nm M-TITLE\nb M-TITLE\ne M-TITLE\nr E-TITLE\n， O\nC B-TITLE\nI M-TITLE\nG M-TITLE\nR M-TITLE\nE M-TITLE\nS M-TITLE\nC M-TITLE\nC M-TITLE\n3 M-TITLE\nm M-TITLE\ne M-TITLE\nm M-TITLE\nb M-TITLE\ne M-TITLE\nr E-TITLE\n， O\nI B-TITLE\nE M-TITLE\nC M-TITLE\nT M-TITLE\nC M-TITLE\n2 M-TITLE\n2 M-TITLE\n/ M-TITLE\nM M-TITLE\nT M-TITLE\n1 M-TITLE\n5 M-TITLE\n、 M-TITLE\nT M-TITLE\nC M-TITLE\n2 M-TITLE\n2 M-TITLE\n/ M-TITLE\nW M-TITLE\nG M-TITLE\n1 M-TITLE\n6 M-TITLE\nm M-TITLE\ne M-TITLE\nm M-TITLE\nb M-TITLE\ne M-TITLE\nr E-TITLE\n、 O\n全 B-ORG\n国 M-ORG\n高 M-ORG\n压 M-ORG\n直 M-ORG\n流 M-ORG\n输 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n标 M-ORG\n准 M-ORG\n化 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n机 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n会 M-ORG\n高 M-ORG\n压 M-ORG\n专 M-ORG\n委 M-ORG\n会 E-ORG\n高 B-TITLE\n压 M-TITLE\n测 M-TITLE\n试 M-TITLE\n技 M-TITLE\n术 M-TITLE\n及 M-TITLE\n设 M-TITLE\n备 M-TITLE\n学 M-TITLE\n组 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n等 O\n。 O\n\n陈 B-NAME\n中 M-NAME\n革 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n2 O\n月 O\n任 O\n奥 B-ORG\n瑞 M-ORG\n金 M-ORG\n包 M-ORG\n装 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n2 O\n月 O\n至 O\n今 O\n任 O\n奥 B-ORG\n瑞 M-ORG\n金 M-ORG\n包 M-ORG\n装 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n湖 B-ORG\n北 M-ORG\n奥 M-ORG\n瑞 M-ORG\n金 M-ORG\n制 M-ORG\n罐 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n赵 B-NAME\n成 M-NAME\n彦 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n共 M-ORG\n产 M-ORG\n党 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n. O\n0 O\n6 O\n至 O\n今 O\n任 O\n徐 B-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n徐 B-ORG\n州 M-ORG\n徐 M-ORG\n工 M-ORG\n随 M-ORG\n车 M-ORG\n起 M-ORG\n重 M-ORG\n机 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n徐 B-ORG\n州 M-ORG\n徐 M-ORG\n工 M-ORG\n筑 M-ORG\n路 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n徐 B-ORG\n州 M-ORG\n重 M-ORG\n型 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n徐 B-ORG\n州 M-ORG\n徐 M-ORG\n工 M-ORG\n挖 M-ORG\n掘 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n徐 B-ORG\n工 M-ORG\n重 M-ORG\n庆 M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n徐 B-ORG\n州 M-ORG\n徐 M-ORG\n工 M-ORG\n物 M-ORG\n资 M-ORG\n供 M-ORG\n应 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n沈 B-NAME\n健 M-NAME\n斌 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n株 M-ORG\n洲 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n株 B-ORG\n洲 M-ORG\n市 M-ORG\n计 M-ORG\n划 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n经 B-TITLE\n济 M-TITLE\n信 M-TITLE\n息 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n中 B-ORG\n共 M-ORG\n株 M-ORG\n洲 M-ORG\n市 M-ORG\n委 E-ORG\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n株 B-ORG\n洲 M-ORG\n市 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n投 M-ORG\n资 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n宪 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n汉 B-ORG\n商 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n陈 B-NAME\n光 M-NAME\n优 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n生 O\n。 O\n\n毕 O\n业 O\n于 O\n福 B-ORG\n建 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 E-ORG\n。 O\n\n任 O\n永 B-ORG\n辉 M-ORG\n超 M-ORG\n市 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n管 O\n公 O\n司 O\n安 O\n徽 O\n、 O\n江 O\n苏 O\n及 O\n河 O\n南 O\n区 O\n域 O\n公 O\n共 O\n事 O\n务 O\n及 O\n投 O\n资 O\n。 O\n\n历 O\n任 O\n永 B-ORG\n辉 M-ORG\n超 M-ORG\n市 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n（ M-ORG\n前 M-ORG\n福 M-ORG\n建 M-ORG\n永 M-ORG\n辉 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n） M-ORG\n上 M-ORG\n渡 M-ORG\n店 E-ORG\n学 B-TITLE\n习 M-TITLE\n店 M-TITLE\n助 E-TITLE\n、 O\n店 B-TITLE\n助 E-TITLE\n， O\n仓 B-TITLE\n山 M-TITLE\n片 M-TITLE\n区 M-TITLE\n区 M-TITLE\n域 M-TITLE\n店 M-TITLE\n助 E-TITLE\n、 O\n店 B-TITLE\n长 E-TITLE\n， O\n闽 B-TITLE\n南 M-TITLE\n地 M-TITLE\n区 M-TITLE\n区 M-TITLE\n域 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n安 B-TITLE\n徽 M-TITLE\n区 M-TITLE\n域 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n沈 B-NAME\n灵 M-NAME\n佳 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n9 O\n月 O\n生 O\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n担 O\n任 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n医 M-ORG\n药 M-ORG\n工 M-ORG\n业 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n丽 M-ORG\n益 M-ORG\n医 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n丽 M-ORG\n益 M-ORG\n医 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n2 O\n月 O\n任 O\n江 B-ORG\n苏 M-ORG\n恒 M-ORG\n瑞 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n龙 B-NAME\n伟 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n重 B-ORG\n庆 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n0 O\n月 O\n- O\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n在 O\n博 B-ORG\n世 M-ORG\n电 M-ORG\n动 M-ORG\n工 M-ORG\n具 M-ORG\n（ M-ORG\n中 M-ORG\n国 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n中 B-TITLE\n国 M-TITLE\n西 M-TITLE\n部 M-TITLE\n大 M-TITLE\n区 M-TITLE\n销 M-TITLE\n售 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n今 O\n在 O\n锐 B-ORG\n奇 M-ORG\n股 M-ORG\n份 E-ORG\n任 O\n销 B-TITLE\n售 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n锐 B-ORG\n奇 M-ORG\n股 M-ORG\n份 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n严 B-NAME\n文 M-NAME\n俊 E-NAME\n先 O\n生 O\n简 O\n历 O\n严 B-NAME\n文 M-NAME\n俊 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n大 M-ORG\n学 E-ORG\n汽 B-PRO\n车 M-PRO\n设 M-PRO\n计 M-PRO\n与 M-PRO\n制 M-PRO\n造 M-PRO\n专 M-PRO\n业 E-PRO\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n重 B-ORG\n汽 M-ORG\n技 M-ORG\n术 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n重 M-ORG\n型 M-ORG\n汽 M-ORG\n车 M-ORG\n集 M-ORG\n团 M-ORG\n济 M-ORG\n南 M-ORG\n卡 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n重 M-ORG\n汽 M-ORG\n集 M-ORG\n团 M-ORG\n济 M-ORG\n南 M-ORG\n卡 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n严 B-NAME\n文 M-NAME\n俊 E-NAME\n先 O\n生 O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n重 M-ORG\n汽 M-ORG\n集 M-ORG\n团 M-ORG\n济 M-ORG\n南 M-ORG\n卡 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n秦 B-NAME\n文 M-NAME\n莉 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n2 O\n月 O\n生 O\n， O\n法 B-PRO\n律 E-PRO\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n四 B-TITLE\n级 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n民 B-TITLE\n革 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n在 O\n上 B-ORG\n海 M-ORG\n卢 M-ORG\n湾 M-ORG\n区 M-ORG\n人 M-ORG\n民 M-ORG\n检 M-ORG\n察 M-ORG\n院 E-ORG\n起 O\n诉 O\n科 O\n、 O\n上 B-ORG\n海 M-ORG\n沪 M-ORG\n江 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n任 B-TITLE\n职 E-TITLE\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n华 M-ORG\n通 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n董 B-NAME\n明 E-NAME\n先 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n加 O\n入 O\n长 B-ORG\n城 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n先 O\n后 O\n在 O\n营 B-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n公 B-TITLE\n关 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n长 B-ORG\n城 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n营 B-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n， O\n现 O\n任 O\n营 B-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n长 B-ORG\n城 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n林 B-NAME\n万 M-NAME\n祥 E-NAME\n， O\n男 O\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n。 O\n\n历 O\n任 O\n西 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n现 M-ORG\n代 M-ORG\n会 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n； O\n\n西 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n博 M-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n四 B-ORG\n川 M-ORG\n天 M-ORG\n一 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n四 B-ORG\n川 M-ORG\n国 M-ORG\n栋 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n成 B-ORG\n都 M-ORG\n市 M-ORG\n新 M-ORG\n筑 M-ORG\n路 M-ORG\n桥 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n四 B-ORG\n川 M-ORG\n川 M-ORG\n大 M-ORG\n智 M-ORG\n胜 M-ORG\n软 M-ORG\n件 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n四 B-ORG\n川 M-ORG\n九 M-ORG\n洲 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n谢 B-NAME\n中 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n8 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n兴 B-ORG\n宁 M-ORG\n通 M-ORG\n用 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n明 M-ORG\n珠 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n三 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n明 M-ORG\n珠 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n司 B-NAME\n国 M-NAME\n晨 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n5 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n筑 M-ORG\n材 M-ORG\n料 M-ORG\n工 M-ORG\n业 M-ORG\n建 M-ORG\n设 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n唐 M-ORG\n山 M-ORG\n安 M-ORG\n装 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n筑 M-ORG\n材 M-ORG\n料 M-ORG\n工 M-ORG\n业 M-ORG\n建 M-ORG\n设 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n材 M-ORG\n建 M-ORG\n设 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n材 M-ORG\n国 M-ORG\n际 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n现 O\n兼 O\n任 O\n中 B-ORG\n材 M-ORG\n建 M-ORG\n设 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n材 M-ORG\n工 M-ORG\n程 M-ORG\n建 M-ORG\n设 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n。 O\n\n是 O\n推 O\n动 O\n建 O\n材 O\n工 O\n程 O\n建 O\n设 O\n领 O\n域 O\n国 O\n内 O\n外 O\n工 O\n程 O\n总 O\n承 O\n包 O\n模 O\n式 O\n的 O\n实 O\n践 O\n者 O\n和 O\n代 O\n表 O\n人 O\n物 O\n。 O\n\n陆 B-NAME\n兆 M-NAME\n奎 E-NAME\n， O\n男 O\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n公 B-ORG\n司 M-ORG\n所 M-ORG\n属 M-ORG\n厂 M-ORG\n东 M-ORG\n江 M-ORG\n糖 M-ORG\n厂 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n谢 B-NAME\n孔 M-NAME\n标 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n中 B-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n大 M-ORG\n学 E-ORG\n毕 O\n业 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n执 B-TITLE\n业 M-TITLE\n药 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n， O\n担 O\n任 O\n山 B-ORG\n东 M-ORG\n鲁 M-ORG\n抗 M-ORG\n医 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n赛 M-ORG\n特 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n月 O\n任 O\n山 B-ORG\n东 M-ORG\n鲁 M-ORG\n抗 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n制 B-TITLE\n剂 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n兼 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n2 O\n9 O\n日 O\n辞 O\n去 O\n山 B-ORG\n东 M-ORG\n鲁 M-ORG\n抗 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n李 B-NAME\n兵 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n万 M-ORG\n众 M-ORG\n空 M-ORG\n调 M-ORG\n国 M-ORG\n际 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n设 B-TITLE\n计 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n加 B-ORG\n冷 M-ORG\n有 M-ORG\n限 E-ORG\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n厦 B-ORG\n门 M-ORG\n松 M-ORG\n芝 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n加 M-ORG\n冷 M-ORG\n松 M-ORG\n芝 M-ORG\n汽 M-ORG\n车 M-ORG\n空 M-ORG\n调 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n义 B-ORG\n兴 M-ORG\n投 M-ORG\n资 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n任 B-NAME\n建 M-NAME\n成 E-NAME\n， O\n男 O\n， O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n班 E-EDU\n毕 O\n业 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n在 O\n天 B-ORG\n津 M-ORG\n三 M-ORG\n建 M-ORG\n建 M-ORG\n筑 M-ORG\n工 M-ORG\n程 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n产 M-ORG\n业 M-ORG\n园 M-ORG\n区 M-ORG\n开 M-ORG\n发 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n产 M-ORG\n业 M-ORG\n园 M-ORG\n区 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n侯 B-NAME\n玉 M-NAME\n清 E-NAME\n先 O\n生 O\n： O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n任 O\n期 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n2 O\n9 O\n日 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n西 B-ORG\n安 M-ORG\n电 M-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n在 O\n江 B-ORG\n西 M-ORG\n有 M-ORG\n线 M-ORG\n电 M-ORG\n厂 E-ORG\n、 O\n广 B-ORG\n州 M-ORG\n通 M-ORG\n信 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n第 O\n五 O\n研 O\n究 O\n室 O\n工 O\n作 O\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n起 O\n就 O\n职 O\n于 O\n广 B-ORG\n州 M-ORG\n杰 M-ORG\n赛 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n先 O\n后 O\n任 O\n职 O\n于 O\n通 B-ORG\n信 M-ORG\n设 M-ORG\n备 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n技 B-ORG\n术 M-ORG\n中 M-ORG\n心 E-ORG\n、 O\n网 B-ORG\n络 M-ORG\n通 M-ORG\n信 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n等 O\n部 O\n门 O\n， O\n现 O\n任 O\n职 O\n于 O\n网 B-ORG\n络 M-ORG\n通 M-ORG\n信 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n辉 M-NAME\n峰 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n9 O\n月 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n国 M-TITLE\n际 M-TITLE\n商 M-TITLE\n务 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n轻 M-ORG\n工 M-ORG\n业 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 M-ORG\n日 M-ORG\n用 M-ORG\n品 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n轻 M-ORG\n工 M-ORG\n国 M-ORG\n际 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n五 M-ORG\n金 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n轻 M-ORG\n工 M-ORG\n业 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n轻 M-ORG\n工 M-ORG\n国 M-ORG\n际 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n兰 M-ORG\n生 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n、 M-TITLE\n第 M-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n兰 M-ORG\n生 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n营 B-TITLE\n运 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n东 M-ORG\n浩 M-ORG\n兰 M-ORG\n生 M-ORG\n国 M-ORG\n际 M-ORG\n服 M-ORG\n务 M-ORG\n贸 M-ORG\n易 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n兰 M-ORG\n生 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n邵 B-NAME\n毅 M-NAME\n平 E-NAME\n， O\n女 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n7 O\n月 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n浙 B-ORG\n江 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 E-ORG\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n硕 B-TITLE\n士 M-TITLE\n研 M-TITLE\n究 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n个 B-TITLE\n人 M-TITLE\n会 M-TITLE\n员 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n会 M-ORG\n计 M-ORG\n制 M-ORG\n度 M-ORG\n与 M-ORG\n会 M-ORG\n计 M-ORG\n准 M-ORG\n则 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n先 O\n后 O\n在 O\n《 O\n数 O\n量 O\n经 O\n济 O\n技 O\n术 O\n经 O\n济 O\n研 O\n究 O\n》 O\n、 O\n《 O\n财 O\n务 O\n与 O\n会 O\n计 O\n》 O\n、 O\n《 O\n财 O\n经 O\n论 O\n丛 O\n》 O\n、 O\n《 O\n当 O\n代 O\n财 O\n经 O\n》 O\n、 O\n《 O\n四 O\n川 O\n会 O\n计 O\n》 O\n、 O\n《 O\n上 O\n海 O\n会 O\n计 O\n》 O\n、 O\n《 O\n广 O\n西 O\n会 O\n计 O\n》 O\n与 O\n《 O\n浙 O\n江 O\n财 O\n税 O\n与 O\n会 O\n计 O\n》 O\n等 O\n多 O\n家 O\n刊 O\n物 O\n上 O\n公 O\n开 O\n发 O\n表 O\n学 O\n术 O\n论 O\n文 O\n三 O\n十 O\n余 O\n篇 O\n， O\n并 O\n主 O\n持 O\n或 O\n参 O\n与 O\n过 O\n中 O\n国 O\n会 O\n计 O\n学 O\n会 O\n课 O\n题 O\n、 O\n省 O\n教 O\n育 O\n厅 O\n课 O\n题 O\n和 O\n浙 O\n江 O\n财 O\n经 O\n学 O\n院 O\n课 O\n题 O\n近 O\n十 O\n项 O\n。 O\n\n邵 B-NAME\n毅 M-NAME\n平 E-NAME\n女 O\n士 O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n利 M-ORG\n欧 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n同 O\n时 O\n担 O\n任 O\n浙 B-ORG\n江 M-ORG\n海 M-ORG\n正 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n浙 B-ORG\n江 M-ORG\n江 M-ORG\n山 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n浙 B-ORG\n江 M-ORG\n海 M-ORG\n利 M-ORG\n得 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n的 O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n景 M-NAME\n升 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n6 O\n月 O\n出 O\n生 O\n。 O\n\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n曾 O\n任 O\n东 B-ORG\n北 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n政 M-ORG\n税 M-ORG\n务 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n东 B-ORG\n北 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n内 M-ORG\n部 M-ORG\n控 M-ORG\n制 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n协 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n大 B-ORG\n连 M-ORG\n市 M-ORG\n政 M-ORG\n府 E-ORG\n采 B-TITLE\n购 M-TITLE\n评 M-TITLE\n标 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n大 B-ORG\n连 M-ORG\n市 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n房 M-TITLE\n地 M-TITLE\n产 M-TITLE\n估 M-TITLE\n价 M-TITLE\n师 E-TITLE\n、 O\n司 B-TITLE\n法 M-TITLE\n鉴 M-TITLE\n定 M-TITLE\n人 E-TITLE\n。 O\n\n沈 B-NAME\n振 M-NAME\n云 E-NAME\n先 O\n生 O\n简 O\n历 O\n： O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n秦 B-ORG\n皇 M-ORG\n岛 M-ORG\n耀 M-ORG\n华 M-ORG\n国 M-ORG\n投 M-ORG\n浮 M-ORG\n法 M-ORG\n玻 M-ORG\n璃 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n装 B-TITLE\n备 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n沈 B-ORG\n阳 M-ORG\n耀 M-ORG\n华 M-ORG\n玻 M-ORG\n璃 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n集 B-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n\n李 B-NAME\n英 M-NAME\n杰 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n企 B-TITLE\n业 M-TITLE\n策 M-TITLE\n划 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n高 B-NAME\n海 M-NAME\n龙 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n7 O\n月 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n9 O\n月 O\n起 O\n任 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n巢 M-ORG\n湖 M-ORG\n水 M-ORG\n泥 M-ORG\n厂 M-ORG\n学 M-ORG\n校 E-ORG\n教 B-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n8 O\n月 O\n任 O\n安 B-ORG\n徽 M-ORG\n巢 M-ORG\n东 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n室 M-TITLE\n职 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n起 O\n任 O\n安 B-ORG\n徽 M-ORG\n巢 M-ORG\n东 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n起 O\n任 O\n职 O\n于 O\n苏 B-ORG\n州 M-ORG\n新 M-ORG\n海 M-ORG\n宜 M-ORG\n通 M-ORG\n信 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n曾 O\n任 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n起 O\n任 O\n董 B-TITLE\n事 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n兼 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n易 M-ORG\n思 M-ORG\n博 M-ORG\n软 M-ORG\n件 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n海 M-ORG\n汇 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n新 M-ORG\n海 M-ORG\n宜 M-ORG\n光 M-ORG\n电 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n罗 B-NAME\n利 M-NAME\n成 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n5 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n金 B-ORG\n科 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n曾 O\n任 O\n职 O\n于 O\n重 B-ORG\n庆 M-ORG\n荣 M-ORG\n昌 M-ORG\n建 M-ORG\n设 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n重 B-ORG\n庆 M-ORG\n荣 M-ORG\n昌 M-ORG\n电 M-ORG\n厂 E-ORG\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n历 O\n任 O\n金 B-ORG\n科 M-ORG\n集 M-ORG\n团 M-ORG\n规 M-ORG\n划 M-ORG\n设 M-ORG\n计 M-ORG\n中 M-ORG\n心 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n金 B-ORG\n科 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n8 O\n月 O\n至 O\n今 O\n， O\n任 O\n金 B-ORG\n科 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n， O\n任 O\n金 B-ORG\n科 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n其 O\n中 O\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n任 O\n金 B-ORG\n科 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n2 O\n月 O\n， O\n任 O\n金 B-ORG\n科 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n江 M-ORG\n苏 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n起 O\n， O\n任 O\n金 B-ORG\n科 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n喻 B-NAME\n昌 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n农 B-ORG\n工 M-ORG\n民 M-ORG\n主 M-ORG\n党 E-ORG\n党 B-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n于 O\n武 B-ORG\n汉 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n（ O\n原 O\n武 B-ORG\n汉 M-ORG\n建 M-ORG\n筑 M-ORG\n材 M-ORG\n料 M-ORG\n工 M-ORG\n业 M-ORG\n学 M-ORG\n院 E-ORG\n） O\n工 B-PRO\n业 M-PRO\n自 M-PRO\n动 M-PRO\n化 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n3 O\n月 O\n获 O\n冶 B-ORG\n金 M-ORG\n部 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n化 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n2 O\n6 O\n日 O\n起 O\n任 O\n北 B-ORG\n京 M-ORG\n金 M-ORG\n自 M-ORG\n天 M-ORG\n正 M-ORG\n智 M-ORG\n能 M-ORG\n控 M-ORG\n制 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n总 M-TITLE\n监 E-TITLE\n兼 O\n市 B-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n中 M-TITLE\n心 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n李 B-NAME\n建 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n东 B-ORG\n营 M-ORG\n市 M-ORG\n造 M-ORG\n纸 M-ORG\n厂 E-ORG\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n技 M-TITLE\n术 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n。 O\n\n华 B-ORG\n泰 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n； O\n\n山 B-ORG\n东 M-ORG\n华 M-ORG\n泰 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n华 B-ORG\n泰 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n当 O\n选 O\n为 O\n全 B-TITLE\n国 M-TITLE\n劳 M-TITLE\n动 M-TITLE\n模 M-TITLE\n范 E-TITLE\n； O\n\n全 B-TITLE\n国 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n经 M-TITLE\n营 M-TITLE\n管 M-TITLE\n理 M-TITLE\n工 M-TITLE\n作 M-TITLE\n者 E-TITLE\n； O\n\n全 B-TITLE\n国 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n党 M-TITLE\n务 M-TITLE\n工 M-TITLE\n作 M-TITLE\n者 E-TITLE\n； O\n\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n中 M-TITLE\n国 M-TITLE\n“ M-TITLE\n创 M-TITLE\n业 M-TITLE\n企 M-TITLE\n业 M-TITLE\n家 M-TITLE\n” E-TITLE\n； O\n\n南 B-ORG\n京 M-ORG\n林 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n特 B-TITLE\n聘 M-TITLE\n教 M-TITLE\n授 E-TITLE\n； O\n\n山 B-ORG\n东 M-ORG\n省 M-ORG\n工 M-ORG\n商 M-ORG\n联 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n造 M-ORG\n纸 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n造 M-ORG\n纸 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n全 B-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n联 M-ORG\n纸 M-ORG\n业 M-ORG\n商 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n； O\n\n并 O\n荣 O\n获 O\n“ O\n五 O\n一 O\n劳 O\n动 O\n奖 O\n章 O\n” O\n， O\n是 O\n第 B-TITLE\n九 M-TITLE\n、 M-TITLE\n十 M-TITLE\n、 M-TITLE\n十 M-TITLE\n一 M-TITLE\n、 M-TITLE\n十 M-TITLE\n二 M-TITLE\n届 M-TITLE\n全 M-TITLE\n国 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n华 M-ORG\n泰 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n栾 B-NAME\n永 M-NAME\n良 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n崇 M-ORG\n文 M-ORG\n区 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n崇 M-ORG\n远 M-ORG\n投 M-ORG\n资 M-ORG\n经 M-ORG\n营 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n建 M-ORG\n远 M-ORG\n投 M-ORG\n资 M-ORG\n经 M-ORG\n营 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n曹 B-NAME\n春 M-NAME\n昱 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n4 O\n年 O\n2 O\n月 O\n， O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n至 O\n今 O\n在 O\n中 B-ORG\n国 M-ORG\n制 M-ORG\n浆 M-ORG\n造 M-ORG\n纸 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n工 O\n作 O\n， O\n任 O\n院 B-TITLE\n长 E-TITLE\n。 O\n\n曹 B-NAME\n巍 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n专 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n至 O\n今 O\n历 O\n任 O\n江 B-ORG\n苏 M-ORG\n中 M-ORG\n泰 M-ORG\n桥 M-ORG\n梁 M-ORG\n钢 M-ORG\n构 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n中 M-ORG\n泰 M-ORG\n桥 M-ORG\n梁 M-ORG\n钢 M-ORG\n构 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n贺 B-NAME\n竹 M-NAME\n磬 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n博 B-EDU\n士 E-EDU\n， O\n副 B-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n获 O\n西 B-ORG\n安 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n在 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n华 M-ORG\n建 M-ORG\n公 M-ORG\n路 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n曾 O\n在 O\n长 B-ORG\n庆 M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n局 E-ORG\n、 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n集 M-ORG\n团 M-ORG\n博 M-ORG\n士 M-ORG\n后 M-ORG\n工 M-ORG\n作 M-ORG\n站 E-ORG\n工 O\n作 O\n， O\n现 O\n任 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n华 M-ORG\n建 M-ORG\n公 M-ORG\n路 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n四 B-ORG\n川 M-ORG\n成 M-ORG\n渝 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n公 M-ORG\n路 M-ORG\n学 M-ORG\n会 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n分 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n及 O\n中 B-ORG\n国 M-ORG\n公 M-ORG\n路 M-ORG\n学 M-ORG\n会 E-ORG\n青 B-TITLE\n年 M-TITLE\n专 M-TITLE\n家 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n1 O\n日 O\n起 O\n至 O\n今 O\n任 O\n楚 B-ORG\n天 M-ORG\n高 M-ORG\n速 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n金 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n3 O\n月 O\n生 O\n。 O\n\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n会 B-PRO\n计 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n货 B-PRO\n币 M-PRO\n银 M-PRO\n行 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n法 B-ORG\n国 M-ORG\n巴 M-ORG\n黎 M-ORG\nH M-ORG\nE M-ORG\nC M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n（ O\n教 O\n育 O\n部 O\n留 O\n学 O\n认 O\n证 O\n） O\n； O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n双 M-ORG\n鹤 M-ORG\n药 M-ORG\n业 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n双 M-ORG\n鹤 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n金 B-TITLE\n鹤 M-TITLE\n工 M-TITLE\n程 M-TITLE\n（ M-TITLE\n信 M-TITLE\n息 M-TITLE\n化 M-TITLE\n建 M-TITLE\n设 M-TITLE\n） M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n兼 O\n） O\n， O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n西 B-ORG\n藏 M-ORG\n奇 M-ORG\n正 M-ORG\n藏 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n西 B-ORG\n藏 M-ORG\n宇 M-ORG\n妥 M-ORG\n藏 M-ORG\n药 M-ORG\n产 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n奇 M-ORG\n正 M-ORG\n天 M-ORG\n麦 M-ORG\n力 M-ORG\n健 M-ORG\n康 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n甘 B-ORG\n南 M-ORG\n佛 M-ORG\n阁 M-ORG\n藏 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n马 B-NAME\n武 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n南 M-ORG\n武 M-ORG\n陵 M-ORG\n旅 M-ORG\n游 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n金 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n鸿 M-ORG\n仪 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n总 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n嘉 M-ORG\n瑞 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n嘉 M-ORG\n瑞 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n"
  },
  {
    "path": "named_entity_recognition/ResumeNER/train.char.bmes",
    "content": "高 B-NAME\n勇 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n美 B-ORG\n国 M-ORG\n项 M-ORG\n目 M-ORG\n管 M-ORG\n理 M-ORG\n协 M-ORG\n会 E-ORG\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n员 E-TITLE\n（ O\nP B-TITLE\nM M-TITLE\nI M-TITLE\nM M-TITLE\ne M-TITLE\nm M-TITLE\nb M-TITLE\ne M-TITLE\nr E-TITLE\n） O\n、 O\n注 B-TITLE\n册 M-TITLE\n项 M-TITLE\n目 M-TITLE\n管 M-TITLE\n理 M-TITLE\n专 M-TITLE\n家 E-TITLE\n（ O\nP B-TITLE\nM M-TITLE\nP E-TITLE\n） O\n、 O\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n任 O\n人 B-ORG\n和 M-ORG\n投 M-ORG\n资 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n至 O\n今 O\n任 O\n山 B-ORG\n东 M-ORG\n三 M-ORG\n维 M-ORG\n石 M-ORG\n化 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n雁 M-NAME\n冰 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n兰 B-ORG\n州 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n会 B-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n科 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n国 B-PRO\n际 M-PRO\n贸 M-PRO\n易 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n- O\n1 O\n9 O\n9 O\n5 O\n年 O\n5 O\n月 O\n任 O\n甘 B-ORG\n肃 M-ORG\n省 M-ORG\n友 M-ORG\n谊 M-ORG\n公 M-ORG\n司 E-ORG\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n第 B-TITLE\n二 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n5 O\n月 O\n- O\n- O\n2 O\n0 O\n1 O\n0 O\n年 O\n2 O\n月 O\n历 O\n任 O\n华 B-ORG\n为 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n华 M-ORG\n为 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n河 B-ORG\n北 M-ORG\n华 M-ORG\n为 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n乌 B-ORG\n克 M-ORG\n兰 M-ORG\n华 M-ORG\n为 E-ORG\n财 B-TITLE\n经 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n长 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n鼎 M-ORG\n汉 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n陈 B-NAME\n云 M-NAME\n峰 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n， O\n获 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n于 O\n外 B-ORG\n交 M-ORG\n部 E-ORG\n财 B-TITLE\n务 M-TITLE\n司 M-TITLE\n二 M-TITLE\n处 E-TITLE\n工 O\n作 O\n； O\n\n先 O\n后 O\n担 O\n任 O\n北 B-ORG\n京 M-ORG\n中 M-ORG\n银 M-ORG\n信 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n和 O\n凤 B-ORG\n凰 M-ORG\n城 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n保 M-ORG\n福 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n新 M-ORG\n天 M-ORG\n麓 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n以 O\n及 O\n北 B-ORG\n京 M-ORG\n中 M-ORG\n经 M-ORG\n大 M-ORG\n厦 M-ORG\n物 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n博 M-ORG\n雅 M-ORG\n苑 M-ORG\n置 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n及 O\n集 B-ORG\n团 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n曾 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n帆 E-NAME\n， O\n男 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n杨 B-NAME\n帆 E-NAME\n先 O\n生 O\n曾 O\n任 O\n天 B-ORG\n津 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n物 M-ORG\n价 M-ORG\n局 E-ORG\n涉 B-TITLE\n外 M-TITLE\n价 M-TITLE\n格 M-TITLE\n司 M-TITLE\n进 M-TITLE\n出 M-TITLE\n口 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n湖 B-ORG\n北 M-ORG\n天 M-ORG\n华 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n贾 B-NAME\n志 M-NAME\n颖 E-NAME\n女 O\n士 O\n： O\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n化 M-ORG\n工 M-ORG\n原 M-ORG\n料 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n分 M-TITLE\n公 M-TITLE\n司 M-TITLE\n会 M-TITLE\n计 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n新 M-ORG\n星 M-ORG\n文 M-ORG\n教 M-ORG\n学 M-ORG\n具 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\nG B-ORG\nM M-ORG\nP M-ORG\nT M-ORG\n（ M-ORG\n天 M-ORG\n津 M-ORG\n） M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n赛 M-ORG\n象 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 E-TITLE\n， O\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n赛 M-ORG\n象 M-ORG\n酒 M-ORG\n店 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n段 B-NAME\n继 M-NAME\n东 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n山 B-ORG\n东 M-ORG\n齐 M-ORG\n鲁 M-ORG\n制 M-ORG\n药 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n贵 B-ORG\n州 M-ORG\n神 M-ORG\n奇 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n昆 B-ORG\n明 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n仁 B-ORG\n和 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n时 M-ORG\n代 M-ORG\n方 M-ORG\n略 M-ORG\n企 M-ORG\n业 M-ORG\n咨 M-ORG\n询 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n礼 M-NAME\n进 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n吉 B-ORG\n林 M-ORG\n大 M-ORG\n学 E-ORG\n数 B-PRO\n量 M-PRO\n经 M-PRO\n济 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n软 M-ORG\n件 M-ORG\n与 M-ORG\n技 M-ORG\n术 M-ORG\n服 M-ORG\n务 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n群 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n兼 O\n纪 B-TITLE\n检 M-TITLE\n监 M-TITLE\n察 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n子 M-ORG\n纪 M-ORG\n检 M-ORG\n监 M-ORG\n察 M-ORG\n部 M-ORG\n（ M-ORG\n审 M-ORG\n计 M-ORG\n部 M-ORG\n） M-ORG\n一 M-ORG\n处 E-ORG\n处 B-TITLE\n长 E-TITLE\n， O\n报 O\n告 O\n期 O\n内 O\n辞 O\n去 O\n中 B-ORG\n国 M-ORG\n软 M-ORG\n件 M-ORG\n与 M-ORG\n技 M-ORG\n术 M-ORG\n服 M-ORG\n务 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n职 O\n务 O\n。 O\n\n谢 B-NAME\n永 M-NAME\n林 E-NAME\n， O\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n获 O\n得 O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n理 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n企 B-PRO\n业 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n现 O\n任 O\n平 B-ORG\n安 M-ORG\n银 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n0 O\n月 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n平 M-ORG\n安 M-ORG\n保 M-ORG\n险 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n历 O\n任 O\n江 B-ORG\n苏 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n业 M-TITLE\n务 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n平 B-ORG\n安 M-ORG\n产 M-ORG\n险 M-ORG\n南 M-ORG\n京 M-ORG\n分 M-ORG\n公 M-ORG\n司 M-ORG\n大 M-ORG\n厂 M-ORG\n支 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n， O\n平 B-ORG\n安 M-ORG\n寿 M-ORG\n险 M-ORG\n无 M-ORG\n锡 M-ORG\n支 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n， O\n平 B-ORG\n安 M-ORG\n寿 M-ORG\n险 M-ORG\n南 M-ORG\n京 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n险 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n， O\n平 B-ORG\n安 M-ORG\n寿 M-ORG\n险 M-ORG\n杭 M-ORG\n州 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n， O\n平 B-ORG\n安 M-ORG\n集 M-ORG\n团 M-ORG\n发 M-ORG\n展 M-ORG\n改 M-ORG\n革 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n平 B-ORG\n安 M-ORG\n寿 M-ORG\n险 E-ORG\n市 B-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n3 O\n月 O\n加 O\n入 O\n原 O\n平 B-ORG\n安 M-ORG\n银 M-ORG\n行 E-ORG\n， O\n历 O\n任 O\n运 B-TITLE\n营 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n任 O\n原 O\n平 B-ORG\n安 M-ORG\n银 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n， O\n并 O\n自 O\n2 O\n0 O\n0 O\n7 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n任 O\n原 O\n平 B-ORG\n安 M-ORG\n银 M-ORG\n行 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n7 O\n月 O\n加 O\n入 O\n深 B-ORG\n圳 M-ORG\n发 M-ORG\n展 M-ORG\n银 M-ORG\n行 E-ORG\n， O\n任 O\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n。 O\n\n罗 B-NAME\n军 E-NAME\n： O\n男 O\n， O\n汉 S-RACE\n， O\n党 B-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n曾 O\n任 O\n公 B-ORG\n司 M-ORG\n变 M-ORG\n压 M-ORG\n器 M-ORG\n厂 M-ORG\n销 M-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n销 B-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 M-ORG\n销 M-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 M-ORG\n变 M-ORG\n压 M-ORG\n器 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n。 O\n\n孙 B-NAME\n醒 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n出 O\n生 O\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n高 M-ORG\n科 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n河 B-ORG\n南 M-ORG\n硕 M-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n曾 O\n任 O\n河 B-ORG\n南 M-ORG\n联 M-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n梁 B-NAME\n明 M-NAME\n煅 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n2 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n民 B-ORG\n进 E-ORG\n会 B-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n房 M-TITLE\n地 M-TITLE\n产 M-TITLE\n估 M-TITLE\n价 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n所 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n厦 B-ORG\n门 M-ORG\n市 M-ORG\n大 M-ORG\n学 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n同 O\n时 O\n兼 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n高 M-ORG\n级 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n评 M-ORG\n审 M-ORG\n委 M-ORG\n员 M-ORG\n会 M-ORG\n评 M-ORG\n审 M-ORG\n专 M-ORG\n家 M-ORG\n库 E-ORG\n第 B-TITLE\n八 M-TITLE\n、 M-TITLE\n九 M-TITLE\n届 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n协 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n土 M-ORG\n地 M-ORG\n估 M-ORG\n价 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n厦 B-ORG\n门 M-ORG\n市 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n厦 B-ORG\n门 M-ORG\n市 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n中 M-ORG\n介 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n及 O\n专 B-TITLE\n家 M-TITLE\n组 M-TITLE\n副 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n厦 B-ORG\n门 M-ORG\n市 M-ORG\n十 M-ORG\n一 M-ORG\n届 M-ORG\n政 M-ORG\n协 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n民 B-ORG\n进 M-ORG\n厦 M-ORG\n门 M-ORG\n市 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n起 O\n兼 O\n任 O\n厦 B-ORG\n门 M-ORG\n厦 M-ORG\n工 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n厦 B-ORG\n门 M-ORG\n厦 M-ORG\n工 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n由 O\n于 O\n工 O\n作 O\n调 O\n动 O\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n1 O\n9 O\n日 O\n起 O\n不 O\n再 O\n担 O\n任 O\n厦 B-ORG\n门 M-ORG\n厦 M-ORG\n工 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n艳 M-NAME\n萍 E-NAME\n女 O\n士 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n北 B-ORG\n京 M-ORG\n证 M-ORG\n券 M-ORG\n投 M-ORG\n资 M-ORG\n银 M-ORG\n行 E-ORG\n业 B-TITLE\n务 M-TITLE\n一 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n江 M-ORG\n泉 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n周 B-NAME\n云 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n2 O\n月 O\n进 O\n入 O\n双 B-ORG\n成 M-ORG\n药 M-ORG\n业 E-ORG\n财 O\n务 O\n部 O\n工 O\n作 O\n， O\n先 O\n后 O\n担 O\n任 O\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n双 B-ORG\n成 M-ORG\n药 M-ORG\n业 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n吴 B-NAME\n国 M-NAME\n芝 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n济 B-ORG\n南 M-ORG\n市 M-ORG\n委 M-ORG\n党 M-ORG\n校 E-ORG\n教 B-TITLE\n师 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n财 M-ORG\n政 M-ORG\n学 M-ORG\n校 E-ORG\n教 B-TITLE\n师 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n方 M-ORG\n正 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n中 M-ORG\n山 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n和 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n（ M-ORG\n特 M-ORG\n殊 M-ORG\n普 M-ORG\n通 M-ORG\n合 M-ORG\n伙 M-ORG\n） M-ORG\n烟 M-ORG\n台 M-ORG\n芝 M-ORG\n罘 M-ORG\n分 M-ORG\n所 E-ORG\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n瑞 M-ORG\n康 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n肖 B-NAME\n春 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n4 O\n8 O\n岁 O\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n1 O\n2 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n青 B-ORG\n岛 M-ORG\n工 M-ORG\n具 M-ORG\n四 M-ORG\n厂 E-ORG\n（ O\n青 B-ORG\n岛 M-ORG\n海 M-ORG\n尔 M-ORG\n电 M-ORG\n冰 M-ORG\n箱 M-ORG\n厂 E-ORG\n前 O\n身 O\n） O\n工 B-TITLE\n人 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n青 B-ORG\n岛 M-ORG\n海 M-ORG\n尔 M-ORG\n电 M-ORG\n冰 M-ORG\n箱 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n管 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n分 B-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n青 B-ORG\n岛 M-ORG\n海 M-ORG\n尔 M-ORG\n电 M-ORG\n冰 M-ORG\n柜 M-ORG\n总 M-ORG\n厂 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n青 B-ORG\n岛 M-ORG\n海 M-ORG\n尔 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n律 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n7 O\n月 O\n至 O\n今 O\n， O\n任 O\n青 B-ORG\n岛 M-ORG\n金 M-ORG\n王 M-ORG\n应 M-ORG\n用 M-ORG\n化 M-ORG\n学 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n秦 B-NAME\n和 M-NAME\n清 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n9 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n一 M-ORG\n六 M-ORG\n九 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n科 B-TITLE\n研 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n0 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n一 M-ORG\n六 M-ORG\n九 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n科 B-TITLE\n技 M-TITLE\n质 M-TITLE\n量 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n研 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n0 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n一 M-ORG\n六 M-ORG\n九 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n3 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n一 M-ORG\n六 M-ORG\n九 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n一 M-ORG\n六 M-ORG\n九 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n7 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n一 M-ORG\n六 M-ORG\n九 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n， O\n任 O\n湖 B-ORG\n南 M-ORG\n神 M-ORG\n斧 M-ORG\n民 M-ORG\n爆 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n谢 B-NAME\n名 M-NAME\n优 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n担 O\n任 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n东 M-ORG\n风 M-ORG\n印 M-ORG\n刷 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n汕 B-ORG\n头 M-ORG\n东 M-ORG\n风 M-ORG\n印 M-ORG\n刷 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n邓 B-NAME\n中 M-NAME\n富 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n任 O\n新 B-ORG\n希 M-ORG\n望 M-ORG\n农 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n至 O\n今 O\n任 O\n新 B-ORG\n希 M-ORG\n望 M-ORG\n乳 M-ORG\n业 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n3 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n5 O\n月 O\n至 O\n今 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n宏 M-NAME\n伟 E-NAME\n先 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n城 M-ORG\n市 M-ORG\n开 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n建 M-TITLE\n筑 M-TITLE\n师 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n首 M-ORG\n都 M-ORG\n开 M-ORG\n发 M-ORG\n控 M-ORG\n股 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n规 M-TITLE\n划 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n首 M-ORG\n都 M-ORG\n开 M-ORG\n发 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n孙 B-NAME\n红 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n任 O\n西 B-ORG\n安 M-ORG\n饮 M-ORG\n食 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n曾 O\n荣 O\n获 O\n全 O\n国 O\n商 O\n业 O\n系 O\n统 O\n优 O\n秀 O\n政 O\n工 O\n干 O\n部 O\n、 O\n西 O\n安 O\n市 O\n优 O\n秀 O\n思 O\n想 O\n政 O\n治 O\n工 O\n作 O\n者 O\n、 O\n西 O\n安 O\n市 O\n劳 O\n动 O\n模 O\n范 O\n等 O\n称 O\n号 O\n。 O\n\n张 B-NAME\n同 M-NAME\n松 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n生 O\n， O\n高 B-EDU\n中 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n无 B-TITLE\n损 M-TITLE\n检 M-TITLE\n测 M-TITLE\n助 M-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n无 B-TITLE\n损 M-TITLE\n检 M-TITLE\n测 M-TITLE\n高 M-TITLE\n级 M-TITLE\n检 M-TITLE\n验 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n至 O\n今 O\n任 O\n江 B-ORG\n苏 M-ORG\n玉 M-ORG\n龙 M-ORG\n钢 M-ORG\n管 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n先 O\n后 O\n担 O\n任 O\n质 B-TITLE\n检 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n精 B-TITLE\n密 M-TITLE\n质 M-TITLE\n保 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n职 O\n务 O\n， O\n现 O\n在 O\n公 O\n司 O\n质 O\n保 O\n部 O\n工 O\n作 O\n。 O\n\n袁 B-NAME\n中 M-NAME\n强 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n在 O\n锂 O\n行 O\n业 O\n从 O\n事 O\n技 O\n术 O\n工 O\n作 O\n二 O\n十 O\n余 O\n年 O\n， O\n对 O\n锂 O\n化 O\n工 O\n设 O\n备 O\n有 O\n着 O\n丰 O\n富 O\n的 O\n实 O\n践 O\n经 O\n验 O\n和 O\n理 O\n论 O\n水 O\n平 O\n， O\n钻 O\n研 O\n能 O\n力 O\n很 O\n强 O\n。 O\n\n历 O\n任 O\n新 B-ORG\n疆 M-ORG\n锂 M-ORG\n盐 M-ORG\n厂 E-ORG\n车 B-TITLE\n间 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n工 B-TITLE\n段 M-TITLE\n长 E-TITLE\n、 O\n设 B-TITLE\n备 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n机 B-TITLE\n动 M-TITLE\n能 M-TITLE\n源 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n锂 M-ORG\n盐 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n党 M-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n5 O\n月 O\n起 O\n任 O\n赣 B-ORG\n锋 M-ORG\n有 M-ORG\n限 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n邓 B-NAME\n一 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n5 O\n月 O\n2 O\n9 O\n日 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n重 B-ORG\n庆 M-ORG\n万 M-ORG\n里 M-ORG\n蓄 M-ORG\n电 M-ORG\n池 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n改 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n敏 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n武 M-ORG\n装 M-ORG\n部 M-ORG\n队 M-ORG\n装 M-ORG\n甲 M-ORG\n兵 M-ORG\n训 M-ORG\n练 M-ORG\n基 M-ORG\n地 E-ORG\n技 B-TITLE\n师 E-TITLE\n、 O\n教 B-TITLE\n员 E-TITLE\n、 O\n合 B-ORG\n肥 M-ORG\n江 M-ORG\n淮 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n造 M-ORG\n厂 E-ORG\n纪 B-TITLE\n检 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n江 B-ORG\n汽 M-ORG\n集 M-ORG\n团 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n等 O\n职 O\n， O\n近 O\n五 O\n年 O\n主 O\n要 O\n就 O\n任 O\n安 B-ORG\n徽 M-ORG\n江 M-ORG\n淮 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n吴 B-NAME\n建 M-NAME\n南 E-NAME\n， O\n男 O\n， O\n西 B-ORG\n安 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n美 B-ORG\n国 M-ORG\nS M-ORG\ny M-ORG\nr M-ORG\na M-ORG\nc M-ORG\nu M-ORG\ns M-ORG\ne M-ORG\n大 M-ORG\n学 M-ORG\nM M-ORG\na M-ORG\nx M-ORG\nw M-ORG\ne M-ORG\nl M-ORG\nl M-ORG\n公 M-ORG\n民 M-ORG\n与 M-ORG\n公 M-ORG\n共 M-ORG\n事 M-ORG\n务 M-ORG\n学 M-ORG\n院 E-ORG\n公 B-PRO\n共 M-PRO\n管 M-PRO\n理 M-PRO\n学 E-PRO\n博 B-TITLE\n士 M-TITLE\n后 E-TITLE\n， O\n现 O\n任 O\n西 B-ORG\n安 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n公 M-ORG\n共 M-ORG\n政 M-ORG\n策 M-ORG\n与 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n敷 M-NAME\n彪 E-NAME\n， O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n会 B-PRO\n计 E-PRO\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n化 M-ORG\n工 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n厂 B-TITLE\n部 M-TITLE\n副 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n电 B-ORG\n气 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n资 B-TITLE\n金 M-TITLE\n计 M-TITLE\n划 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n电 B-ORG\n气 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n； O\n\n电 B-ORG\n气 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n电 B-ORG\n气 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n公 M-ORG\n司 E-ORG\n管 B-TITLE\n理 M-TITLE\n四 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n电 B-ORG\n气 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n预 M-TITLE\n算 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n林 B-NAME\n钟 M-NAME\n高 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n5 O\n月 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n、 O\n硕 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n安 B-TITLE\n徽 M-TITLE\n省 M-TITLE\n政 M-TITLE\n协 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n专 O\n家 O\n津 O\n贴 O\n。 O\n\n历 O\n任 O\n安 B-ORG\n徽 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n系 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n商 B-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n管 B-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n校 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n安 B-ORG\n徽 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n， O\n福 B-ORG\n州 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n安 B-ORG\n徽 M-ORG\n大 M-ORG\n学 E-ORG\n兼 B-TITLE\n职 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n兼 B-TITLE\n职 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 M-ORG\n财 M-ORG\n务 M-ORG\n成 M-ORG\n本 M-ORG\n分 M-ORG\n会 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n陆 B-NAME\n江 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n现 O\n任 O\n厦 B-ORG\n门 M-ORG\n象 M-ORG\n屿 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n资 B-TITLE\n金 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n曾 O\n任 O\n厦 B-ORG\n门 M-ORG\n象 M-ORG\n屿 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n贸 B-TITLE\n易 M-TITLE\n中 M-TITLE\n心 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n房 B-NAME\n晓 M-NAME\n焱 E-NAME\n先 O\n生 O\n， O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n负 O\n责 O\n公 B-ORG\n司 E-ORG\n生 O\n产 O\n管 O\n理 O\n、 O\n质 O\n量 O\n控 O\n制 O\n、 O\n设 O\n备 O\n管 O\n理 O\n、 O\n采 O\n购 O\n以 O\n及 O\n生 O\n产 O\n安 O\n全 O\n； O\n\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n加 O\n入 O\n公 B-ORG\n司 E-ORG\n， O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n参 O\n股 O\n公 O\n司 O\n广 B-ORG\n州 M-ORG\n普 M-ORG\n笙 M-ORG\n音 M-ORG\n箱 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n筹 B-TITLE\n建 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\nP B-TITLE\nM M-TITLE\nC M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n木 B-TITLE\n工 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n音 B-TITLE\n响 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n木 B-TITLE\n箱 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n在 O\n生 O\n产 O\n制 O\n造 O\n管 O\n理 O\n方 O\n面 O\n具 O\n有 O\n丰 O\n富 O\n的 O\n经 O\n验 O\n。 O\n\n周 B-NAME\n伟 M-NAME\n兴 E-NAME\n： O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n正 M-ORG\n泰 M-ORG\n橡 M-ORG\n胶 M-ORG\n厂 E-ORG\n轮 B-TITLE\n胎 M-TITLE\n车 M-TITLE\n间 M-TITLE\n团 M-TITLE\n总 M-TITLE\n支 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n橡 M-ORG\n胶 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n住 B-TITLE\n宅 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n回 M-ORG\n力 M-ORG\n宾 M-ORG\n馆 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n党 B-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n轮 M-ORG\n胎 M-ORG\n橡 M-ORG\n胶 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n乘 M-ORG\n用 M-ORG\n轮 M-ORG\n胎 M-ORG\n厂 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n钢 B-ORG\n丝 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n欣 B-ORG\n业 M-ORG\n实 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n河 B-ORG\n南 M-ORG\n洛 M-ORG\n阳 M-ORG\n海 M-ORG\n虹 M-ORG\n轮 M-ORG\n胎 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n上 B-ORG\n海 M-ORG\n凯 M-ORG\n迪 M-ORG\n企 M-ORG\n业 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n1 O\n0 O\n日 O\n- O\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n9 O\n日 O\n任 O\n武 B-ORG\n汉 M-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n1 O\n日 O\n起 O\n任 O\n武 B-ORG\n汉 M-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n长 M-NAME\n安 E-NAME\n先 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n任 O\n西 B-ORG\n安 M-ORG\n常 M-ORG\n宁 M-ORG\n宫 M-ORG\n会 M-ORG\n议 M-ORG\n培 M-ORG\n训 M-ORG\n中 M-ORG\n心 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n2 O\n日 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n西 B-ORG\n安 M-ORG\n常 M-ORG\n宁 M-ORG\n宫 M-ORG\n会 M-ORG\n议 M-ORG\n培 M-ORG\n训 M-ORG\n中 M-ORG\n心 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n2 O\n日 O\n至 O\n今 O\n任 O\n西 B-ORG\n安 M-ORG\n饮 M-ORG\n食 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n黄 B-NAME\n涛 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n最 O\n近 O\n五 O\n年 O\n历 O\n任 O\n潍 B-ORG\n坊 M-ORG\n亚 M-ORG\n星 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n潍 B-ORG\n坊 M-ORG\n亚 M-ORG\n星 M-ORG\n化 M-ORG\n学 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n曾 O\n任 O\n潍 B-ORG\n坊 M-ORG\n亚 M-ORG\n星 M-ORG\n化 M-ORG\n学 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n胡 B-NAME\n三 M-NAME\n忠 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n供 M-ORG\n销 M-ORG\n社 E-ORG\n基 B-TITLE\n层 M-TITLE\n工 M-TITLE\n作 M-TITLE\n处 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n再 M-ORG\n生 M-ORG\n资 M-ORG\n源 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n上 M-ORG\n海 M-ORG\n皮 M-ORG\n鞋 M-ORG\n经 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n天 M-ORG\n策 M-ORG\n文 M-ORG\n化 M-ORG\n传 M-ORG\n播 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n特 M-ORG\n尔 M-ORG\n佳 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n胡 B-NAME\n三 M-NAME\n忠 E-NAME\n先 O\n生 O\n自 O\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n今 O\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n特 M-ORG\n尔 M-ORG\n佳 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n伯 M-NAME\n富 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n月 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n河 B-ORG\n南 M-ORG\n东 M-ORG\n方 M-ORG\n银 M-ORG\n星 M-ORG\n投 M-ORG\n资 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n徐 B-NAME\n菲 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n法 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n再 M-ORG\n担 M-ORG\n保 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n力 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n保 M-ORG\n险 M-ORG\n公 M-ORG\n司 M-ORG\n上 M-ORG\n海 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n石 B-NAME\n卫 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n9 O\n月 O\n5 O\n日 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n产 B-PRO\n业 M-PRO\n经 M-PRO\n济 M-PRO\n学 E-PRO\n研 B-EDU\n究 M-EDU\n生 E-EDU\n、 O\n化 B-PRO\n学 M-PRO\n工 M-PRO\n程 E-PRO\n硕 B-EDU\n士 M-EDU\n在 M-EDU\n读 E-EDU\n。 O\n\n曾 O\n任 O\n天 B-ORG\n原 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n计 B-TITLE\n量 M-TITLE\n室 M-TITLE\n设 M-TITLE\n备 M-TITLE\n员 E-TITLE\n、 O\n主 B-TITLE\n任 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n天 B-ORG\n原 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n化 M-ORG\n学 M-ORG\n工 M-ORG\n业 M-ORG\n技 M-ORG\n术 M-ORG\n监 M-ORG\n督 M-ORG\n所 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n现 O\n任 O\n电 B-ORG\n化 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n\n高 B-NAME\n欣 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n国 B-ORG\n家 M-ORG\n民 M-ORG\n爆 M-ORG\n专 M-ORG\n家 M-ORG\n库 E-ORG\n成 B-TITLE\n员 E-TITLE\n， O\n国 B-ORG\n家 M-ORG\n民 M-ORG\n爆 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n获 O\n“ O\n四 O\n川 O\n省 O\n五 O\n一 O\n劳 O\n动 O\n奖 O\n章 O\n” O\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n获 O\n“ O\n四 O\n川 O\n省 O\n劳 O\n动 O\n模 O\n范 O\n” O\n称 O\n号 O\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n当 O\n选 O\n为 O\n四 B-TITLE\n川 M-TITLE\n省 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n， O\n历 O\n任 O\n重 B-ORG\n庆 M-ORG\n国 M-ORG\n营 M-ORG\n2 M-ORG\n0 M-ORG\n4 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n雪 M-ORG\n峰 M-ORG\n民 M-ORG\n爆 M-ORG\n器 M-ORG\n材 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n主 B-TITLE\n管 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n设 B-TITLE\n计 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n， O\n历 O\n任 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n雅 M-ORG\n化 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n， O\n任 O\n四 B-ORG\n川 M-ORG\n雅 M-ORG\n化 M-ORG\n实 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n至 O\n今 O\n， O\n任 O\n四 B-ORG\n川 M-ORG\n雅 M-ORG\n化 M-ORG\n实 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n丁 B-NAME\n爱 M-NAME\n兵 E-NAME\n女 O\n士 O\n： O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n历 O\n任 O\n任 O\n银 B-ORG\n川 M-ORG\n新 M-ORG\n华 M-ORG\n百 M-ORG\n货 M-ORG\n商 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n东 M-ORG\n方 M-ORG\n红 M-ORG\n店 E-ORG\n一 B-TITLE\n楼 M-TITLE\n商 M-TITLE\n品 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n商 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n1 O\n月 O\n任 O\n银 B-ORG\n川 M-ORG\n新 M-ORG\n华 M-ORG\n百 M-ORG\n货 M-ORG\n商 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n五 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n志 M-NAME\n坚 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n某 M-ORG\n部 M-ORG\n司 M-ORG\n令 M-ORG\n部 M-ORG\n通 M-ORG\n信 M-ORG\n营 E-ORG\n连 B-TITLE\n长 E-TITLE\n、 O\n司 B-TITLE\n令 M-TITLE\n部 M-TITLE\n参 M-TITLE\n谋 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n第 M-ORG\n二 M-ORG\n炮 M-ORG\n兵 M-ORG\n神 M-ORG\n剑 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n企 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n神 M-ORG\n剑 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n神 B-ORG\n剑 M-ORG\n化 M-ORG\n工 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n神 B-ORG\n剑 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n第 M-TITLE\n一 M-TITLE\n、 M-TITLE\n二 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n学 M-ORG\n会 M-ORG\n涂 M-ORG\n料 M-ORG\n涂 M-ORG\n装 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n现 O\n任 O\n神 B-ORG\n剑 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 S-NAME\n先 O\n生 O\n曾 O\n先 O\n后 O\n荣 O\n立 O\n三 O\n等 O\n功 O\n三 O\n次 O\n、 O\n二 O\n等 O\n功 O\n一 O\n次 O\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n被 O\n评 O\n为 O\n“ O\n全 B-TITLE\n军 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n企 M-TITLE\n业 M-TITLE\n家 E-TITLE\n” O\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n获 O\n授 O\n上 B-TITLE\n校 M-TITLE\n军 M-TITLE\n衔 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n当 O\n选 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n繁 M-ORG\n昌 M-ORG\n县 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n被 O\n评 O\n为 O\n“ O\n安 B-TITLE\n徽 M-TITLE\n省 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n青 M-TITLE\n年 M-TITLE\n企 M-TITLE\n业 M-TITLE\n家 E-TITLE\n” O\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n当 O\n选 O\n安 B-TITLE\n徽 M-TITLE\n省 M-TITLE\n芜 M-TITLE\n湖 M-TITLE\n市 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n被 O\n评 O\n为 O\n“ O\n安 B-TITLE\n徽 M-TITLE\n省 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n民 M-TITLE\n营 M-TITLE\n科 M-TITLE\n技 M-TITLE\n企 M-TITLE\n家 E-TITLE\n” O\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n被 O\n评 O\n为 O\n“ O\n安 B-TITLE\n徽 M-TITLE\n省 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n军 M-TITLE\n转 M-TITLE\n干 M-TITLE\n部 E-TITLE\n” O\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n被 O\n评 O\n为 O\n“ O\n芜 B-TITLE\n湖 M-TITLE\n市 M-TITLE\n首 M-TITLE\n届 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n中 M-TITLE\n国 M-TITLE\n特 M-TITLE\n色 M-TITLE\n社 M-TITLE\n会 M-TITLE\n主 M-TITLE\n义 M-TITLE\n事 M-TITLE\n业 M-TITLE\n建 M-TITLE\n设 M-TITLE\n者 E-TITLE\n” O\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n荣 O\n获 O\n“ O\n芜 B-TITLE\n湖 M-TITLE\n改 M-TITLE\n革 M-TITLE\n开 M-TITLE\n放 M-TITLE\n3 M-TITLE\n0 M-TITLE\n周 M-TITLE\n年 M-TITLE\n纪 M-TITLE\n念 M-TITLE\n勋 M-TITLE\n章 E-TITLE\n” O\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n被 O\n评 O\n为 O\n“ O\n芜 B-TITLE\n湖 M-TITLE\n市 M-TITLE\n第 M-TITLE\n二 M-TITLE\n届 M-TITLE\n优 M-TITLE\n秀 M-TITLE\n中 M-TITLE\n国 M-TITLE\n特 M-TITLE\n色 M-TITLE\n社 M-TITLE\n会 M-TITLE\n主 M-TITLE\n义 M-TITLE\n事 M-TITLE\n业 M-TITLE\n建 M-TITLE\n设 M-TITLE\n者 E-TITLE\n” O\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n被 O\n评 O\n为 O\n“ O\n芜 B-TITLE\n湖 M-TITLE\n市 M-TITLE\n突 M-TITLE\n出 M-TITLE\n贡 M-TITLE\n献 M-TITLE\n的 M-TITLE\n创 M-TITLE\n新 M-TITLE\n型 M-TITLE\n人 M-TITLE\n才 E-TITLE\n” O\n。 O\n\n倪 B-NAME\n为 M-NAME\n民 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n9 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n云 B-LOC\n南 M-LOC\n建 M-LOC\n水 M-LOC\n人 E-LOC\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n5 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n云 B-ORG\n南 M-ORG\n铝 M-ORG\n厂 M-ORG\n电 M-ORG\n解 M-ORG\n一 M-ORG\n分 M-ORG\n厂 E-ORG\n二 B-TITLE\n车 M-TITLE\n间 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n铝 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n电 M-ORG\n解 M-ORG\n二 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n铝 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n魏 B-NAME\n毅 M-NAME\n军 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n曾 O\n任 O\n攀 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n炼 M-ORG\n铁 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n安 B-TITLE\n全 M-TITLE\n环 M-TITLE\n保 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n物 B-TITLE\n质 M-TITLE\n供 M-TITLE\n应 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n计 M-TITLE\n划 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n攀 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n四 M-ORG\n川 M-ORG\n长 M-ORG\n城 M-ORG\n特 M-ORG\n殊 M-ORG\n钢 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n攀 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n四 M-ORG\n川 M-ORG\n长 M-ORG\n城 M-ORG\n特 M-ORG\n殊 M-ORG\n钢 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n马 B-NAME\n兴 M-NAME\n亚 E-NAME\n： O\n1 O\n9 O\n5 O\n0 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n获 O\n山 O\n西 O\n省 O\n科 O\n委 O\n“ O\n财 O\n务 O\n专 O\n家 O\n” O\n称 O\n号 O\n。 O\n\n曾 O\n任 O\n潞 B-ORG\n安 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n， O\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n建 B-TITLE\n立 M-TITLE\n现 M-TITLE\n代 M-TITLE\n企 M-TITLE\n业 M-TITLE\n制 M-TITLE\n度 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n潞 B-ORG\n安 M-ORG\n矿 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n股 B-TITLE\n份 M-TITLE\n制 M-TITLE\n改 M-TITLE\n造 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n公 M-TITLE\n司 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n郭 B-ORG\n庄 M-ORG\n煤 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n潞 B-ORG\n安 M-ORG\n环 M-ORG\n能 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n弘 B-ORG\n峰 M-ORG\n焦 M-ORG\n化 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n上 B-ORG\n庄 M-ORG\n煤 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n潞 B-ORG\n安 M-ORG\n环 M-ORG\n能 M-ORG\n焦 M-ORG\n化 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n太 B-ORG\n原 M-ORG\n市 M-ORG\n梗 M-ORG\n阳 M-ORG\n实 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n8 O\n月 O\n任 O\n山 B-ORG\n东 M-ORG\n宏 M-ORG\n达 M-ORG\n矿 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n彭 B-NAME\n毅 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n。 O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n战 B-TITLE\n士 E-TITLE\n、 O\n工 B-TITLE\n人 E-TITLE\n、 O\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n党 M-TITLE\n支 M-TITLE\n部 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n书 B-TITLE\n记 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n4 O\n至 O\n今 O\n历 O\n任 O\n济 B-ORG\n南 M-ORG\n轻 M-ORG\n骑 M-ORG\n摩 M-ORG\n托 M-ORG\n车 M-ORG\n总 M-ORG\n厂 M-ORG\n发 M-ORG\n动 M-ORG\n机 M-ORG\n厂 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n轻 B-ORG\n骑 M-ORG\n集 M-ORG\n团 M-ORG\n青 M-ORG\n岛 M-ORG\n轻 M-ORG\n骑 M-ORG\n摩 M-ORG\n托 M-ORG\n车 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n青 B-ORG\n岛 M-ORG\n工 M-ORG\n业 M-ORG\n园 E-ORG\n） O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n轻 B-ORG\n骑 M-ORG\n集 M-ORG\n团 E-ORG\n摩 B-TITLE\n托 M-TITLE\n车 M-TITLE\n本 M-TITLE\n部 M-TITLE\n本 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n企 B-TITLE\n划 M-TITLE\n本 M-TITLE\n部 M-TITLE\n本 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n郜 B-NAME\n卫 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 E-EDU\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n医 M-ORG\n药 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） E-ORG\n监 B-TITLE\n察 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n医 M-ORG\n药 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n察 M-TITLE\n室 M-TITLE\n纪 M-TITLE\n检 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n先 M-ORG\n锋 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n冻 B-TITLE\n干 M-TITLE\n车 M-TITLE\n间 M-TITLE\n筹 M-TITLE\n建 M-TITLE\n组 M-TITLE\n组 M-TITLE\n长 E-TITLE\n。 O\n\n肖 B-NAME\n艳 M-NAME\n君 E-NAME\n： O\n女 O\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 E-ORG\n法 B-PRO\n律 E-PRO\n硕 B-EDU\n士 E-EDU\n及 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n高 B-PRO\n级 M-PRO\n管 M-PRO\n理 M-PRO\n人 M-PRO\n员 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n先 O\n后 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n航 M-ORG\n空 M-ORG\n公 M-ORG\n司 E-ORG\n培 B-TITLE\n训 M-TITLE\n部 M-TITLE\n教 M-TITLE\n员 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n科 B-TITLE\n级 M-TITLE\n组 M-TITLE\n织 M-TITLE\n员 E-TITLE\n、 O\n支 B-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n干 B-TITLE\n部 M-TITLE\n培 M-TITLE\n训 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n培 M-TITLE\n训 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n1 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n顾 B-NAME\n政 M-NAME\n巍 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n近 O\n5 O\n年 O\n曾 O\n任 O\n江 B-ORG\n苏 M-ORG\n综 M-ORG\n艺 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n综 M-ORG\n艺 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n亚 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n西 B-ORG\n北 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n计 B-PRO\n算 M-PRO\n机 M-PRO\n应 M-PRO\n用 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n6 O\n/ O\n0 O\n2 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 M-ORG\n一 M-ORG\n飞 M-ORG\n院 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n/ O\n0 O\n5 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 E-ORG\n飞 B-TITLE\n机 M-TITLE\n分 M-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n/ O\n0 O\n6 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 E-ORG\n飞 B-TITLE\n机 M-TITLE\n分 M-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n/ O\n0 O\n8 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 E-ORG\n飞 B-TITLE\n机 M-TITLE\n分 M-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n/ O\n0 O\n9 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 E-ORG\n飞 B-TITLE\n机 M-TITLE\n分 M-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n航 M-ORG\n空 M-ORG\n装 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n/ O\n1 O\n2 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 E-ORG\n飞 B-TITLE\n机 M-TITLE\n分 M-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n西 B-ORG\n飞 M-ORG\n国 M-ORG\n际 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n航 M-ORG\n空 M-ORG\n装 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n/ O\n1 O\n2 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 E-ORG\n飞 B-TITLE\n机 M-TITLE\n分 M-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n飞 M-ORG\n机 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n分 B-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n航 M-ORG\n空 M-ORG\n装 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n/ O\n0 O\n4 O\n， O\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 E-ORG\n飞 B-TITLE\n机 M-TITLE\n分 M-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n飞 M-ORG\n机 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n分 B-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 M-ORG\n西 M-ORG\n飞 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n航 M-ORG\n空 M-ORG\n装 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n4 O\n/ O\n0 O\n5 O\n， O\n中 B-ORG\n航 M-ORG\n飞 M-ORG\n机 E-ORG\n分 B-TITLE\n党 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n组 M-TITLE\n长 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n工 M-ORG\n业 M-ORG\n西 M-ORG\n飞 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n中 B-ORG\n航 M-ORG\n航 M-ORG\n空 M-ORG\n装 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n易 B-NAME\n睿 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n学 E-ORG\n电 B-PRO\n子 M-PRO\n与 M-PRO\n通 M-PRO\n讯 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n1 O\n月 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n冠 M-ORG\n日 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n加 O\n入 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n同 M-ORG\n洲 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 E-TITLE\n， O\n兼 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n飞 M-ORG\n看 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n1 O\n5 O\n日 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n易 B-NAME\n睿 E-NAME\n先 O\n生 O\n与 O\n公 O\n司 O\n或 O\n其 O\n控 O\n股 O\n股 O\n东 O\n及 O\n实 O\n际 O\n控 O\n制 O\n人 O\n不 O\n存 O\n在 O\n关 O\n联 O\n关 O\n系 O\n， O\n未 O\n持 O\n有 O\n公 O\n司 O\n股 O\n票 O\n， O\n没 O\n有 O\n受 O\n过 O\n证 O\n监 O\n会 O\n及 O\n其 O\n他 O\n有 O\n关 O\n部 O\n门 O\n的 O\n处 O\n罚 O\n和 O\n证 O\n券 O\n交 O\n易 O\n所 O\n惩 O\n戒 O\n。 O\n\n樊 B-NAME\n军 E-NAME\n先 O\n生 O\n， O\n亚 B-ORG\n威 M-ORG\n股 M-ORG\n份 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n公 M-CONT\n民 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n质 B-TITLE\n量 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n江 B-ORG\n苏 M-ORG\n亚 M-ORG\n威 M-ORG\n机 M-ORG\n床 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n品 B-TITLE\n质 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n数 B-ORG\n控 M-ORG\n冲 M-ORG\n床 M-ORG\n分 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n兼 O\n综 B-TITLE\n管 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n亚 M-ORG\n威 M-ORG\n机 M-ORG\n床 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n折 B-ORG\n剪 M-ORG\n机 M-ORG\n床 M-ORG\n分 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n兼 O\n综 B-TITLE\n管 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n亚 M-ORG\n威 M-ORG\n机 M-ORG\n床 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n钣 B-ORG\n金 M-ORG\n装 M-ORG\n备 E-ORG\n事 B-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n综 B-TITLE\n管 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n赵 B-NAME\n志 M-NAME\n锠 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n美 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n美 B-ORG\n国 M-ORG\n南 M-ORG\n加 M-ORG\n州 M-ORG\n大 M-ORG\n学 E-ORG\n学 B-EDU\n士 E-EDU\n及 O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n拥 O\n有 O\n丰 O\n富 O\n的 O\n金 O\n融 O\n证 O\n券 O\n和 O\n财 O\n务 O\n管 O\n理 O\n经 O\n验 O\n以 O\n及 O\n企 O\n业 O\n管 O\n治 O\n经 O\n验 O\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n月 O\n起 O\n任 O\n（ B-ORG\n香 M-ORG\n港 M-ORG\n） M-ORG\n丰 M-ORG\n诚 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n并 O\n曾 O\n担 O\n任 O\n香 B-ORG\n港 M-ORG\n证 M-ORG\n监 M-ORG\n会 M-ORG\n收 M-ORG\n购 M-ORG\n及 M-ORG\n合 M-ORG\n并 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n证 M-ORG\n监 M-ORG\n会 M-ORG\n程 M-ORG\n序 M-ORG\n覆 M-ORG\n检 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n交 M-ORG\n易 M-ORG\n所 M-ORG\n主 M-ORG\n板 M-ORG\n上 M-ORG\n市 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n和 O\n创 B-ORG\n业 M-ORG\n板 M-ORG\n上 M-ORG\n市 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n等 O\n职 O\n， O\n现 O\n亦 O\n兼 O\n任 O\n香 B-ORG\n港 M-ORG\n特 M-ORG\n别 M-ORG\n行 M-ORG\n政 M-ORG\n区 M-ORG\n大 M-ORG\n学 M-ORG\n教 M-ORG\n育 M-ORG\n资 M-ORG\n助 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n自 O\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n2 O\n月 O\n起 O\n担 O\n任 O\n深 B-ORG\n圳 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n（ O\n1 O\n9 O\n9 O\n6 O\n- O\n2 O\n0 O\n0 O\n2 O\n年 O\n期 O\n间 O\n任 O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n） O\n。 O\n\n谢 B-NAME\n获 M-NAME\n宝 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n现 O\n任 O\n华 B-ORG\n灿 M-ORG\n光 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n起 O\n担 O\n任 O\n华 B-ORG\n灿 M-ORG\n光 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n目 O\n前 O\n同 O\n时 O\n担 O\n任 O\n武 B-ORG\n锅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n商 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n森 M-ORG\n马 M-ORG\n服 M-ORG\n饰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n中 M-ORG\n博 M-ORG\n生 M-ORG\n物 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n非 O\n上 O\n市 O\n公 O\n司 O\n） O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n及 O\n汉 B-ORG\n口 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n非 O\n上 O\n市 O\n公 O\n司 O\n） O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n醒 E-NAME\n： O\n男 O\n， O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n干 M-ORG\n部 M-ORG\n学 M-ORG\n院 E-ORG\n。 O\n\n自 O\n2 O\n0 O\n0 O\n7 O\n年 O\n3 O\n月 O\n起 O\n在 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n东 M-ORG\n南 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n至 O\n今 O\n， O\n历 O\n任 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n证 B-ORG\n券 M-ORG\n投 M-ORG\n资 M-ORG\n部 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n曾 B-NAME\n谦 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n9 O\n月 O\n任 O\n职 O\n于 O\n衡 B-ORG\n阳 M-ORG\n纺 M-ORG\n织 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n4 O\n月 O\n任 O\n职 O\n于 O\n广 B-ORG\n州 M-ORG\n华 M-ORG\n冠 M-ORG\n龙 M-ORG\n伟 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n8 O\n月 O\n任 O\n利 B-ORG\n亚 M-ORG\n德 M-ORG\n有 M-ORG\n限 M-ORG\n营 M-ORG\n销 M-ORG\n中 M-ORG\n心 E-ORG\n经 B-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n7 O\n月 O\n任 O\n北 B-ORG\n京 M-ORG\n巴 M-ORG\n可 M-ORG\n利 M-ORG\n亚 M-ORG\n德 M-ORG\n电 M-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n销 B-TITLE\n售 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n利 B-ORG\n亚 M-ORG\n德 M-ORG\n有 M-ORG\n限 E-ORG\n/ O\n利 B-ORG\n亚 M-ORG\n德 M-ORG\n光 E-ORG\n电 B-TITLE\n营 M-TITLE\n销 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n马 B-NAME\n开 M-NAME\n翔 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n国 B-PRO\n际 M-PRO\n经 M-PRO\n济 M-PRO\n法 E-PRO\n、 O\n国 B-PRO\n际 M-PRO\n企 M-PRO\n业 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n\n2 O\n0 O\n0 O\n1 O\n- O\n2 O\n0 O\n0 O\n2 O\n年 O\n获 O\nU B-ORG\nn M-ORG\ni M-ORG\nv M-ORG\ne M-ORG\nr M-ORG\ns M-ORG\ni M-ORG\nt M-ORG\ny M-ORG\no M-ORG\nf M-ORG\nH M-ORG\ne M-ORG\nr M-ORG\nt M-ORG\nf M-ORG\no M-ORG\nr M-ORG\nd M-ORG\ns M-ORG\nh M-ORG\ni M-ORG\nr M-ORG\ne M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n法 B-PRO\n律 E-PRO\n、 O\n财 B-PRO\n务 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n在 O\n上 B-ORG\n海 M-ORG\n圣 M-ORG\n博 M-ORG\n华 M-ORG\n康 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n月 O\n在 O\n上 B-ORG\n海 M-ORG\n浦 M-ORG\n东 M-ORG\n现 M-ORG\n代 M-ORG\n产 M-ORG\n业 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 O\n资 O\n经 O\n营 O\n部 O\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n6 O\n月 O\n在 O\n上 B-ORG\n海 M-ORG\n金 M-ORG\n桥 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 O\n资 O\n管 O\n理 O\n部 O\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n6 O\n至 O\n今 O\n历 O\n任 O\n上 B-ORG\n海 M-ORG\n外 M-ORG\n高 M-ORG\n桥 M-ORG\n保 M-ORG\n税 M-ORG\n区 M-ORG\n开 M-ORG\n发 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n春 M-NAME\n凤 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n6 O\n月 O\n就 O\n职 O\n于 O\n利 B-ORG\n德 M-ORG\n科 M-ORG\n技 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n就 O\n职 O\n于 O\n上 B-ORG\n海 M-ORG\n赋 M-ORG\n唐 M-ORG\n贸 M-ORG\n易 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n利 B-ORG\n德 M-ORG\n科 M-ORG\n技 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n0 O\n月 O\n任 O\n方 B-ORG\n正 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n方 B-ORG\n正 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n赤 M-NAME\n雷 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n广 B-LOC\n东 M-LOC\n龙 M-LOC\n川 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n国 B-TITLE\n家 M-TITLE\n注 M-TITLE\n册 M-TITLE\n监 M-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n1 O\n0 O\n月 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n历 O\n任 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n地 M-ORG\n质 M-ORG\n矿 M-ORG\n产 M-ORG\n局 E-ORG\n干 B-TITLE\n部 E-TITLE\n、 O\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n大 M-TITLE\n队 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n地 M-ORG\n矿 M-ORG\n建 M-ORG\n设 M-ORG\n工 M-ORG\n程 M-ORG\n监 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n万 M-ORG\n裕 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n万 M-ORG\n裕 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n西 M-ORG\n安 M-ORG\n代 M-ORG\n表 M-ORG\n处 E-ORG\n首 B-TITLE\n席 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n万 B-ORG\n裕 M-ORG\n文 M-ORG\n化 M-ORG\n产 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n行 B-TITLE\n政 M-TITLE\n人 M-TITLE\n事 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n万 B-ORG\n裕 M-ORG\n文 M-ORG\n化 M-ORG\n产 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n陕 B-ORG\n西 M-ORG\n金 M-ORG\n叶 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n程 B-NAME\n文 M-NAME\n旦 E-NAME\n先 O\n生 O\n， O\n5 O\n7 O\n岁 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n未 O\n有 O\n任 O\n何 O\n国 O\n家 O\n和 O\n地 O\n区 O\n的 O\n永 O\n久 O\n海 O\n外 O\n居 O\n留 O\n权 O\n； O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n起 O\n历 O\n任 O\n物 B-ORG\n构 M-ORG\n所 E-ORG\n助 B-TITLE\n理 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n曾 O\n任 O\n福 B-ORG\n晶 M-ORG\n有 M-ORG\n限 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n6 O\n月 O\n起 O\n任 O\n福 B-ORG\n建 M-ORG\n福 M-ORG\n晶 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n万 B-NAME\n启 M-NAME\n成 E-NAME\n： O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n5 O\n年 O\n， O\n湖 B-LOC\n北 M-LOC\n谷 M-LOC\n城 M-LOC\n县 M-LOC\n人 E-LOC\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n湖 B-ORG\n北 M-ORG\n华 M-ORG\n光 M-ORG\n器 M-ORG\n材 M-ORG\n厂 E-ORG\n二 B-TITLE\n车 M-TITLE\n间 M-TITLE\n助 M-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n湖 B-ORG\n北 M-ORG\n华 M-ORG\n光 M-ORG\n器 M-ORG\n材 M-ORG\n厂 E-ORG\n四 B-TITLE\n车 M-TITLE\n间 M-TITLE\n副 M-TITLE\n总 E-TITLE\n兼 O\n主 B-TITLE\n任 E-TITLE\n、 O\n书 B-TITLE\n记 E-TITLE\n， O\n湖 B-ORG\n北 M-ORG\n华 M-ORG\n光 M-ORG\n器 M-ORG\n材 M-ORG\n厂 M-ORG\n高 M-ORG\n温 M-ORG\n元 M-ORG\n件 M-ORG\n分 M-ORG\n厂 E-ORG\n副 B-TITLE\n总 E-TITLE\n兼 O\n厂 B-TITLE\n长 E-TITLE\n、 O\n书 B-TITLE\n记 E-TITLE\n， O\n襄 B-ORG\n樊 M-ORG\n华 M-ORG\n天 M-ORG\n元 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n襄 B-ORG\n樊 M-ORG\n华 M-ORG\n天 M-ORG\n元 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n鞠 B-NAME\n在 M-NAME\n云 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n铁 B-ORG\n道 M-ORG\n部 M-ORG\n中 M-ORG\n国 M-ORG\n铁 M-ORG\n路 M-ORG\n机 M-ORG\n车 M-ORG\n车 M-ORG\n辆 M-ORG\n工 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n盈 M-ORG\n恒 M-ORG\n通 M-ORG\n铁 M-ORG\n路 M-ORG\n机 M-ORG\n车 M-ORG\n车 M-ORG\n辆 M-ORG\n配 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 O\n三 O\n届 O\n、 O\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n月 O\n1 O\n4 O\n日 O\n起 O\n不 O\n再 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n吕 B-NAME\n晓 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n9 O\n月 O\n任 O\n陕 B-ORG\n西 M-ORG\n省 M-ORG\n新 M-ORG\n闻 M-ORG\n出 M-ORG\n版 M-ORG\n广 M-ORG\n电 M-ORG\n局 E-ORG\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n4 O\n月 O\n任 O\n广 B-ORG\n电 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n5 O\n月 O\n起 O\n任 O\n广 B-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n9 O\n月 O\n任 O\n广 B-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n9 O\n月 O\n任 O\n广 B-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n起 O\n任 O\n陕 B-ORG\n西 M-ORG\n广 M-ORG\n电 M-ORG\n网 M-ORG\n络 M-ORG\n传 M-ORG\n媒 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n任 O\n陕 B-ORG\n西 M-ORG\n广 M-ORG\n电 M-ORG\n网 M-ORG\n络 M-ORG\n传 M-ORG\n媒 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n任 O\n陕 B-ORG\n西 M-ORG\n广 M-ORG\n电 M-ORG\n网 M-ORG\n络 M-ORG\n传 M-ORG\n媒 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n石 B-NAME\n海 M-NAME\n宁 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n总 B-ORG\n调 M-ORG\n度 M-ORG\n室 E-ORG\n总 B-TITLE\n调 M-TITLE\n度 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n柳 B-ORG\n州 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n兆 M-NAME\n善 E-NAME\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n中 B-ORG\n海 M-ORG\n油 M-ORG\n服 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n8 O\n8 O\n年 O\n8 O\n月 O\n任 O\n青 B-ORG\n岛 M-ORG\n红 M-ORG\n旗 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n基 B-TITLE\n建 M-TITLE\n科 M-TITLE\n、 M-TITLE\n财 M-TITLE\n务 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n6 O\n月 O\n任 O\n青 B-ORG\n岛 M-ORG\n红 M-ORG\n旗 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n6 O\n月 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n3 O\n月 O\n任 O\n青 B-ORG\n岛 M-ORG\n红 M-ORG\n旗 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n3 O\n月 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n7 O\n月 O\n任 O\n青 B-ORG\n岛 M-ORG\n广 M-ORG\n益 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n月 O\n任 O\n青 B-ORG\n岛 M-ORG\n华 M-ORG\n辰 M-ORG\n化 M-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n1 O\n1 O\n月 O\n任 O\n青 B-ORG\n岛 M-ORG\n华 M-ORG\n辰 M-ORG\n化 M-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n1 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n1 O\n2 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n1 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n海 M-ORG\n洋 M-ORG\n石 M-ORG\n油 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n销 M-ORG\n售 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n为 O\n中 B-ORG\n国 M-ORG\n海 M-ORG\n洋 M-ORG\n石 M-ORG\n油 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n派 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n任 O\n中 B-ORG\n国 M-ORG\n海 M-ORG\n洋 M-ORG\n石 M-ORG\n油 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n海 M-ORG\n石 M-ORG\n油 M-ORG\n财 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n海 M-ORG\n油 M-ORG\n自 M-ORG\n保 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n海 M-ORG\n石 M-ORG\n油 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n海 M-ORG\n信 M-ORG\n托 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n任 O\n中 B-ORG\n海 M-ORG\n油 M-ORG\n服 E-ORG\n和 O\n海 B-ORG\n油 M-ORG\n发 M-ORG\n展 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n1 O\n月 O\n任 O\n中 B-ORG\n海 M-ORG\n油 M-ORG\n山 M-ORG\n西 M-ORG\n能 M-ORG\n源 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n张 B-NAME\n振 M-NAME\n生 E-NAME\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n- O\n2 O\n0 O\n0 O\n0 O\n年 O\n任 O\n吉 B-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n建 M-ORG\n设 M-ORG\n公 M-ORG\n司 M-ORG\n安 M-ORG\n装 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n1 O\n月 O\n- O\n2 O\n0 O\n0 O\n2 O\n年 O\n任 O\n吉 B-ORG\n林 M-ORG\n化 M-ORG\n建 M-ORG\n安 M-ORG\n装 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n- O\n2 O\n0 O\n0 O\n5 O\n年 O\n任 O\n吉 B-ORG\n林 M-ORG\n化 M-ORG\n建 M-ORG\n安 M-ORG\n装 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n油 M-ORG\n化 M-ORG\n建 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n\n吴 B-NAME\n开 M-NAME\n贤 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n具 O\n有 O\n多 O\n年 O\n的 O\n工 O\n业 O\n电 O\n气 O\n行 O\n业 O\n经 O\n验 O\n， O\n曾 O\n在 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n电 M-ORG\n气 M-ORG\n控 M-ORG\n制 M-ORG\n设 M-ORG\n备 M-ORG\n厂 E-ORG\n从 O\n事 O\n采 O\n购 O\n、 O\n销 O\n售 O\n等 O\n工 O\n作 O\n， O\n后 O\n创 O\n立 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n达 M-ORG\n濠 M-ORG\n机 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n任 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n创 O\n立 O\n众 B-ORG\n业 M-ORG\n达 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n至 O\n今 O\n任 O\n众 B-ORG\n业 M-ORG\n达 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n起 O\n兼 O\n任 O\n广 B-ORG\n东 M-ORG\n依 M-ORG\n力 M-ORG\n得 M-ORG\n北 M-ORG\n美 M-ORG\n电 M-ORG\n气 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n学 M-NAME\n斌 E-NAME\n先 O\n生 O\n， O\n生 O\n于 O\n1 O\n9 O\n4 O\n5 O\n年 O\n1 O\n2 O\n月 O\n， O\n高 B-EDU\n中 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n参 O\n军 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n任 O\n青 B-ORG\n岛 M-ORG\n市 M-ORG\n家 M-ORG\n用 M-ORG\n电 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n组 B-TITLE\n织 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n加 O\n入 O\n青 B-ORG\n岛 M-ORG\n澳 M-ORG\n柯 M-ORG\n玛 M-ORG\n集 M-ORG\n团 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n人 B-TITLE\n事 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n青 B-ORG\n岛 M-ORG\n澳 M-ORG\n柯 M-ORG\n玛 M-ORG\n集 M-ORG\n团 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n青 B-ORG\n岛 M-ORG\n澳 M-ORG\n柯 M-ORG\n玛 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n志 M-NAME\n华 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n以 O\n来 O\n， O\n任 O\n香 B-ORG\n溢 M-ORG\n融 M-ORG\n通 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n商 B-TITLE\n贸 M-TITLE\n管 M-TITLE\n理 M-TITLE\n总 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n香 B-ORG\n溢 M-ORG\n融 M-ORG\n通 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n舒 B-NAME\n涛 E-NAME\n女 O\n士 O\n： O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n长 B-ORG\n沙 M-ORG\n通 M-ORG\n程 M-ORG\n商 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n审 M-TITLE\n计 M-TITLE\n专 M-TITLE\n员 E-TITLE\n， O\n通 B-ORG\n程 M-ORG\n商 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n超 B-TITLE\n市 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n通 B-TITLE\n程 M-TITLE\n商 M-TITLE\n业 M-TITLE\n公 M-TITLE\n司 M-TITLE\n审 M-TITLE\n计 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n长 B-ORG\n沙 M-ORG\n通 M-ORG\n程 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n公 B-ORG\n司 M-ORG\n分 M-ORG\n公 M-ORG\n司 M-ORG\n长 M-ORG\n沙 M-ORG\n通 M-ORG\n程 M-ORG\n商 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n张 B-NAME\n凯 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n7 O\n年 O\n1 O\n1 O\n月 O\n， O\n双 B-EDU\n学 M-EDU\n士 E-EDU\n。 O\n\n张 B-NAME\n凯 E-NAME\n先 O\n生 O\n曾 O\n任 O\n天 B-ORG\n津 M-ORG\n富 M-ORG\n源 M-ORG\n食 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n住 B-ORG\n友 M-ORG\n电 M-ORG\n工 M-ORG\n（ M-ORG\n天 M-ORG\n津 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n瑞 B-ORG\n普 M-ORG\n生 M-ORG\n物 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n瑞 M-ORG\n普 M-ORG\n生 M-ORG\n物 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n赵 B-NAME\n沛 E-NAME\n先 O\n生 O\n， O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n煤 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n金 M-ORG\n属 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n曾 O\n任 O\n安 B-ORG\n泰 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n安 M-ORG\n泰 M-ORG\n钢 M-ORG\n研 M-ORG\n超 M-ORG\n硬 M-ORG\n材 M-ORG\n料 M-ORG\n制 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n河 B-ORG\n冶 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n联 M-ORG\n先 M-ORG\n进 M-ORG\n钢 M-ORG\n铁 M-ORG\n材 M-ORG\n料 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n系 B-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n冶 B-ORG\n金 M-ORG\n工 M-ORG\n业 M-ORG\n部 M-ORG\n科 M-ORG\n技 M-ORG\n司 E-ORG\n处 B-TITLE\n长 E-TITLE\n、 O\n钢 B-ORG\n铁 M-ORG\n研 M-ORG\n究 M-ORG\n总 M-ORG\n院 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n工 B-TITLE\n程 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n钢 B-ORG\n铁 M-ORG\n研 M-ORG\n究 M-ORG\n总 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n新 B-ORG\n冶 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n钢 M-ORG\n研 M-ORG\n新 M-ORG\n冶 M-ORG\n工 M-ORG\n程 M-ORG\n设 M-ORG\n计 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n赵 S-NAME\n先 O\n生 O\n是 O\n工 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n英 B-ORG\n国 M-ORG\n利 M-ORG\n兹 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-TITLE\n士 M-TITLE\n后 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n。 O\n\n赵 S-NAME\n先 O\n生 O\n精 O\n通 O\n冶 O\n金 O\n工 O\n艺 O\n和 O\n材 O\n料 O\n科 O\n学 O\n， O\n熟 O\n悉 O\n国 O\n内 O\n外 O\n的 O\n冶 O\n金 O\n企 O\n业 O\n和 O\n研 O\n究 O\n机 O\n构 O\n， O\n对 O\n该 O\n领 O\n域 O\n技 O\n术 O\n发 O\n展 O\n和 O\n市 O\n场 O\n趋 O\n势 O\n有 O\n充 O\n分 O\n的 O\n了 O\n解 O\n， O\n并 O\n具 O\n有 O\n大 O\n型 O\n高 O\n科 O\n技 O\n企 O\n业 O\n和 O\n上 O\n市 O\n公 O\n司 O\n的 O\n经 O\n营 O\n管 O\n理 O\n经 O\n验 O\n。 O\n\n赵 B-NAME\n燕 M-NAME\n红 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n财 M-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n任 O\n职 O\n于 O\n海 B-ORG\n信 M-ORG\n（ M-ORG\n南 M-ORG\n京 M-ORG\n） M-ORG\n电 M-ORG\n器 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n材 B-TITLE\n料 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n综 M-TITLE\n合 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n成 B-TITLE\n本 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n成 B-TITLE\n本 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n起 O\n任 O\n山 B-ORG\n西 M-ORG\n振 M-ORG\n东 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n起 O\n任 O\n山 B-ORG\n西 M-ORG\n振 M-ORG\n东 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n孙 B-NAME\n凯 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n8 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 E-ORG\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n， O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n曾 O\n任 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n平 M-ORG\n庄 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n刘 B-NAME\n华 M-NAME\n蓉 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n就 O\n职 O\n于 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n汽 M-ORG\n车 M-ORG\n离 M-ORG\n合 M-ORG\n器 M-ORG\n厂 E-ORG\n、 O\n桑 B-ORG\n德 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n至 O\n今 O\n任 O\n职 O\n于 O\n桑 B-ORG\n德 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n启 B-ORG\n迪 M-ORG\n桑 M-ORG\n德 M-ORG\n环 M-ORG\n境 M-ORG\n资 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n召 M-TITLE\n集 M-TITLE\n人 E-TITLE\n。 O\n\n方 B-NAME\n驰 E-NAME\n： O\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n0 O\n月 O\n2 O\n4 O\n日 O\n出 O\n生 O\n， O\n党 B-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n东 B-ORG\n风 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n商 M-ORG\n品 M-ORG\n研 M-ORG\n发 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n东 B-ORG\n风 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n商 M-ORG\n品 M-ORG\n研 M-ORG\n发 M-ORG\n院 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n穆 B-NAME\n学 M-NAME\n奎 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n河 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n医 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n在 B-EDU\n读 M-EDU\n硕 M-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n医 B-TITLE\n学 M-TITLE\n生 M-TITLE\n物 M-TITLE\n学 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n新 B-ORG\n乡 M-ORG\n市 M-ORG\n卫 M-ORG\n生 M-ORG\n防 M-ORG\n疫 M-ORG\n站 E-ORG\n医 B-TITLE\n师 E-TITLE\n、 O\n华 B-ORG\n兰 M-ORG\n生 M-ORG\n物 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n销 B-TITLE\n售 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n徐 B-NAME\n金 M-NAME\n发 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n出 O\n生 O\n， O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 E-ORG\n管 B-PRO\n理 M-PRO\n学 M-PRO\n科 E-PRO\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n香 B-ORG\n港 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n访 M-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n。 O\n\n曾 O\n任 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n千 M-ORG\n里 M-ORG\n山 M-ORG\n钢 M-ORG\n铁 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n兼 O\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n与 M-TITLE\n市 M-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n学 M-TITLE\n系 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n杭 M-ORG\n萧 M-ORG\n钢 M-ORG\n构 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n企 M-ORG\n业 M-ORG\n成 M-ORG\n长 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n杭 B-ORG\n州 M-ORG\n市 M-ORG\n企 M-ORG\n业 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n、 O\n杭 B-ORG\n州 M-ORG\n市 M-ORG\n企 M-ORG\n业 M-ORG\n家 M-ORG\n协 M-ORG\n会 E-ORG\n、 O\n杭 B-ORG\n州 M-ORG\n市 M-ORG\n工 M-ORG\n业 M-ORG\n经 M-ORG\n济 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n等 O\n三 O\n会 O\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n。 O\n\n唐 B-NAME\n国 M-NAME\n平 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n起 O\n任 O\n贵 B-ORG\n州 M-ORG\n轮 M-ORG\n胎 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n贵 B-ORG\n州 M-ORG\n前 M-ORG\n进 M-ORG\n橡 M-ORG\n胶 M-ORG\n内 M-ORG\n胎 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n和 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n月 O\n分 O\n别 O\n辞 O\n去 O\n贵 B-ORG\n州 M-ORG\n前 M-ORG\n进 M-ORG\n橡 M-ORG\n胶 M-ORG\n内 M-ORG\n胎 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n和 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n李 B-NAME\n祥 M-NAME\n凌 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n有 O\n阿 O\n根 O\n廷 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n4 O\n7 O\n年 O\n2 O\n月 O\n生 O\n， O\n大 B-EDU\n专 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n担 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n轻 M-ORG\n工 M-ORG\n机 M-ORG\n械 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n今 O\n担 O\n任 O\n福 B-ORG\n建 M-ORG\n海 M-ORG\n源 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n兼 O\n任 O\n海 B-ORG\n诚 M-ORG\n投 M-ORG\n资 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n海 B-ORG\n源 M-ORG\n实 M-ORG\n业 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n目 O\n前 O\n还 O\n担 O\n任 O\n福 B-ORG\n州 M-ORG\n市 M-ORG\n民 M-ORG\n营 M-ORG\n企 M-ORG\n业 M-ORG\n家 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n。 O\n\n陈 B-NAME\n占 M-NAME\n飞 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n曾 O\n任 O\n国 B-ORG\n营 M-ORG\n第 M-ORG\n八 M-ORG\n四 M-ORG\n三 M-ORG\n厂 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n西 B-ORG\n安 M-ORG\n秦 M-ORG\n川 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n发 M-ORG\n展 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n陕 B-ORG\n西 M-ORG\n省 M-ORG\n技 M-ORG\n术 M-ORG\n进 M-ORG\n步 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 E-TITLE\n。 O\n\n现 O\n任 O\n陕 B-ORG\n西 M-ORG\n省 M-ORG\n技 M-ORG\n术 M-ORG\n进 M-ORG\n步 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n王 B-NAME\n玉 M-NAME\n田 E-NAME\n先 O\n生 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n召 M-TITLE\n集 M-TITLE\n人 E-TITLE\n， O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n宣 B-ORG\n化 M-ORG\n钢 M-ORG\n铁 M-ORG\n公 M-ORG\n司 E-ORG\n机 B-TITLE\n电 M-TITLE\n车 M-TITLE\n间 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n矿 B-ORG\n冶 M-ORG\n总 M-ORG\n院 E-ORG\n自 B-TITLE\n动 M-TITLE\n化 M-TITLE\n室 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n矿 B-ORG\n冶 M-ORG\n总 M-ORG\n院 E-ORG\n人 B-TITLE\n事 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n北 B-ORG\n矿 M-ORG\n磁 M-ORG\n材 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n现 O\n兼 O\n任 O\n矿 B-ORG\n冶 M-ORG\n总 M-ORG\n院 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n徐 B-NAME\n兰 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n8 O\n月 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n盐 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n盐 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n纪 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n一 B-ORG\n平 M-ORG\n浪 M-ORG\n盐 M-ORG\n矿 E-ORG\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n盐 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n雷 B-NAME\n蕾 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n8 O\n年 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n深 B-ORG\n圳 M-ORG\n泰 M-ORG\n格 M-ORG\n阿 M-ORG\n玛 M-ORG\n皮 M-ORG\n草 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n中 M-ORG\n汇 M-ORG\n圆 M-ORG\n通 M-ORG\n投 M-ORG\n资 M-ORG\n咨 M-ORG\n询 M-ORG\n集 M-ORG\n团 E-ORG\n会 B-TITLE\n计 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n华 B-ORG\n夏 M-ORG\n西 M-ORG\n部 M-ORG\n经 M-ORG\n济 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n昆 B-ORG\n百 M-ORG\n大 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n， O\n华 B-ORG\n夏 M-ORG\n同 M-ORG\n和 M-ORG\n置 M-ORG\n地 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n行 B-TITLE\n政 M-TITLE\n财 M-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n华 B-ORG\n夏 M-ORG\n西 M-ORG\n部 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n行 B-TITLE\n政 M-TITLE\n人 M-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n华 B-ORG\n夏 M-ORG\n西 M-ORG\n部 E-ORG\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n昆 B-ORG\n百 M-ORG\n大 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n蔡 B-NAME\n景 M-NAME\n川 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n信 B-TITLE\n息 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n信 B-TITLE\n息 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n至 O\n今 O\n担 O\n任 O\n国 B-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n高 B-NAME\n靖 M-NAME\n桓 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n火 M-ORG\n电 M-ORG\n建 M-ORG\n设 M-ORG\n公 M-ORG\n司 M-ORG\n北 M-ORG\n仑 M-ORG\n电 M-ORG\n厂 E-ORG\n、 O\n台 B-ORG\n州 M-ORG\n电 M-ORG\n厂 E-ORG\n项 B-TITLE\n目 M-TITLE\n物 M-TITLE\n资 M-TITLE\n处 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n华 M-ORG\n能 M-ORG\n工 M-ORG\n程 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n耀 M-ORG\n江 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n公 M-ORG\n司 E-ORG\n耀 O\n江 O\n国 O\n际 O\n大 O\n厦 O\n、 O\n耀 O\n江 O\n福 O\n村 O\n、 O\n耀 O\n江 O\n喜 O\n得 O\n宝 O\n花 O\n园 O\n等 O\n项 B-TITLE\n目 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n项 B-TITLE\n目 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n耀 M-ORG\n海 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n王 B-NAME\n江 M-NAME\n安 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n起 O\n， O\n曾 O\n任 O\n安 B-ORG\n徽 M-ORG\n江 M-ORG\n淮 M-ORG\n汽 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n销 M-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n企 B-TITLE\n划 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n安 B-ORG\n徽 M-ORG\n江 M-ORG\n淮 M-ORG\n客 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n江 M-ORG\n淮 M-ORG\n汽 M-ORG\n车 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n江 M-ORG\n淮 M-ORG\n客 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n孙 B-NAME\n向 M-NAME\n浩 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n荣 O\n获 O\n上 O\n海 O\n市 O\n科 O\n技 O\n进 O\n步 O\n三 O\n等 O\n奖 O\n。 O\n\n曾 O\n供 O\n职 O\n于 O\n烟 B-ORG\n台 M-ORG\n万 M-ORG\n华 M-ORG\n合 M-ORG\n成 M-ORG\n革 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n从 O\n事 O\n研 O\n发 O\n工 O\n作 O\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n华 M-ORG\n峰 M-ORG\n超 M-ORG\n纤 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n张 B-NAME\n立 M-NAME\n和 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n北 B-LOC\n京 M-LOC\n市 M-LOC\n丰 M-LOC\n台 M-LOC\n区 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n1 O\n2 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n3 O\n月 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n共 M-ORG\n产 M-ORG\n党 E-ORG\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n7 O\n月 O\n山 B-ORG\n西 M-ORG\n省 M-ORG\n党 M-ORG\n委 M-ORG\n校 E-ORG\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n公 B-PRO\n共 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n大 B-ORG\n同 M-ORG\n煤 M-ORG\n矿 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n党 B-TITLE\n纪 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n工 O\n作 O\n简 O\n历 O\n1 O\n9 O\n6 O\n8 O\n. O\n1 O\n2 O\n山 B-ORG\n西 M-ORG\n省 M-ORG\n山 M-ORG\n阴 M-ORG\n县 E-ORG\n插 O\n队 O\n， O\n大 B-ORG\n同 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n晋 B-TITLE\n华 M-TITLE\n宫 M-TITLE\n矿 M-TITLE\n工 M-TITLE\n人 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n8 O\n. O\n0 O\n7 O\n大 B-ORG\n同 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n晋 B-TITLE\n华 M-TITLE\n宫 M-TITLE\n矿 M-TITLE\n党 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n1 O\n9 O\n8 O\n2 O\n. O\n1 O\n0 O\n大 B-ORG\n同 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n晋 B-TITLE\n华 M-TITLE\n宫 M-TITLE\n矿 M-TITLE\n党 M-TITLE\n办 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n5 O\n. O\n0 O\n4 O\n大 B-ORG\n同 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n晋 B-TITLE\n华 M-TITLE\n宫 M-TITLE\n矿 M-TITLE\n矿 M-TITLE\n办 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n8 O\n. O\n0 O\n7 O\n大 B-ORG\n同 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n晋 B-TITLE\n华 M-TITLE\n宫 M-TITLE\n矿 M-TITLE\n副 M-TITLE\n矿 M-TITLE\n长 E-TITLE\n1 O\n9 O\n9 O\n2 O\n. O\n1 O\n2 O\n武 B-ORG\n警 M-ORG\n水 M-ORG\n电 M-ORG\n指 M-ORG\n挥 M-ORG\n部 M-ORG\n企 M-ORG\n业 M-ORG\n局 E-ORG\n大 B-TITLE\n校 E-TITLE\n、 O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n1 O\n9 O\n9 O\n9 O\n. O\n1 O\n1 O\n大 B-ORG\n同 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n2 O\n0 O\n0 O\n0 O\n. O\n0 O\n6 O\n大 B-ORG\n同 M-ORG\n煤 M-ORG\n矿 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n常 M-TITLE\n委 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n2 O\n0 O\n0 O\n7 O\n. O\n0 O\n6 O\n大 B-ORG\n同 M-ORG\n煤 M-ORG\n矿 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n\n苏 B-NAME\n春 M-NAME\n轩 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n。 O\n\n曾 O\n任 O\n天 B-ORG\n茂 M-ORG\n集 M-ORG\n团 M-ORG\n总 M-ORG\n工 M-ORG\n办 M-ORG\n试 M-ORG\n制 M-ORG\n中 M-ORG\n心 M-ORG\n项 M-ORG\n目 M-ORG\n部 M-ORG\n、 M-ORG\n公 M-ORG\n司 M-ORG\n试 M-ORG\n制 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n原 B-ORG\n料 M-ORG\n药 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n现 O\n任 O\n天 B-ORG\n茂 M-ORG\n集 M-ORG\n团 E-ORG\nC B-TITLE\n4 M-TITLE\n烯 M-TITLE\n烃 M-TITLE\n催 M-TITLE\n化 M-TITLE\n裂 M-TITLE\n解 M-TITLE\n制 M-TITLE\n丙 M-TITLE\n烯 M-TITLE\n项 M-TITLE\n目 M-TITLE\n部 M-TITLE\n技 M-TITLE\n术 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n刘 B-NAME\n时 M-NAME\n祯 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n安 B-ORG\n德 M-ORG\n鲁 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n泰 B-ORG\n科 M-ORG\n电 M-ORG\n子 M-ORG\n能 M-ORG\n源 M-ORG\n集 M-ORG\n团 E-ORG\n亚 B-TITLE\n太 M-TITLE\n区 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n泰 B-ORG\n科 M-ORG\n电 M-ORG\n子 M-ORG\n电 M-ORG\n源 M-ORG\n系 M-ORG\n统 E-ORG\n全 B-TITLE\n球 M-TITLE\n研 M-TITLE\n究 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n阿 B-ORG\n尔 M-ORG\n法 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n发 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\nE B-ORG\nx M-ORG\ni M-ORG\nd M-ORG\ne M-ORG\n电 M-ORG\n子 M-ORG\n集 M-ORG\n团 E-ORG\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n加 O\n入 O\n正 B-ORG\n泰 E-ORG\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n正 M-ORG\n泰 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n1 O\n8 O\n日 O\n辞 O\n去 O\n浙 B-ORG\n江 M-ORG\n正 M-ORG\n泰 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n职 O\n务 O\n。 O\n\n张 B-NAME\n慧 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n就 O\n读 O\n于 O\n湖 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n， O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n近 O\n5 O\n年 O\n任 O\n上 B-ORG\n海 M-ORG\n爱 M-ORG\n建 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n战 B-TITLE\n略 M-TITLE\n管 M-TITLE\n理 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n大 B-ORG\n湖 M-ORG\n水 M-ORG\n殖 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n大 B-ORG\n湖 M-ORG\n水 M-ORG\n殖 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n开 B-NAME\n晓 M-NAME\n彬 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n现 O\n任 O\n国 B-ORG\n投 M-ORG\n新 M-ORG\n集 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n曲 B-NAME\n禄 M-NAME\n生 E-NAME\n： O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n助 B-TITLE\n理 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n大 B-ORG\n连 M-ORG\n衬 M-ORG\n衫 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n大 B-ORG\n连 M-ORG\n亚 M-ORG\n瑟 M-ORG\n王 M-ORG\n服 M-ORG\n饰 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n磊 M-NAME\n乐 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n广 B-LOC\n东 M-LOC\n新 M-LOC\n会 M-LOC\n人 E-LOC\n。 O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n3 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n起 O\n至 O\n今 O\n一 O\n直 O\n从 O\n事 O\n财 O\n务 O\n工 O\n作 O\n， O\n具 O\n有 O\n3 O\n0 O\n多 O\n年 O\n的 O\n财 O\n务 O\n管 O\n理 O\n经 O\n验 O\n， O\n分 O\n别 O\n于 O\n2 O\n0 O\n0 O\n0 O\n年 O\n及 O\n2 O\n0 O\n0 O\n2 O\n年 O\n被 O\n新 B-ORG\n会 M-ORG\n市 M-ORG\n国 M-ORG\n家 M-ORG\n税 M-ORG\n务 M-ORG\n局 E-ORG\n和 O\n新 B-ORG\n会 M-ORG\n市 M-ORG\n地 M-ORG\n方 M-ORG\n税 M-ORG\n务 M-ORG\n所 E-ORG\n聘 O\n为 O\n特 B-TITLE\n邀 M-TITLE\n检 M-TITLE\n察 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n2 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n夏 B-NAME\n小 M-NAME\n强 E-NAME\n， O\n现 O\n任 O\n东 B-ORG\n方 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n毕 O\n业 O\n于 O\n合 B-ORG\n肥 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n月 O\n西 B-ORG\n南 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n。 O\n\n历 O\n任 O\n东 B-ORG\n电 M-ORG\n厂 E-ORG\n厂 B-TITLE\n办 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n股 B-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n办 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n外 B-TITLE\n事 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n兼 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n焊 B-ORG\n接 M-ORG\n分 M-ORG\n厂 E-ORG\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n重 B-ORG\n金 M-ORG\n工 M-ORG\n分 M-ORG\n厂 E-ORG\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n金 B-ORG\n属 M-ORG\n结 M-ORG\n构 M-ORG\n件 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n股 B-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n企 B-TITLE\n管 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n拥 O\n有 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n高 B-NAME\n圣 M-NAME\n平 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n博 B-TITLE\n士 M-TITLE\n后 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n民 M-ORG\n商 M-ORG\n事 M-ORG\n法 M-ORG\n律 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n专 B-TITLE\n职 M-TITLE\n研 M-TITLE\n究 M-TITLE\n人 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n、 O\nE B-TITLE\nM M-TITLE\nB M-TITLE\nA M-TITLE\n商 M-TITLE\n法 M-TITLE\n教 M-TITLE\n员 E-TITLE\n， O\n世 B-ORG\n行 M-ORG\n集 M-ORG\n团 M-ORG\n国 M-ORG\n际 M-ORG\n金 M-ORG\n融 M-ORG\n公 M-ORG\n司 E-ORG\n中 B-TITLE\n国 M-TITLE\n法 M-TITLE\n律 M-TITLE\n专 M-TITLE\n家 E-TITLE\n。 O\n\n参 O\n与 O\n《 O\n中 O\n华 O\n人 O\n民 O\n共 O\n和 O\n国 O\n物 O\n权 O\n法 O\n》 O\n、 O\n《 O\n中 O\n华 O\n人 O\n民 O\n共 O\n和 O\n国 O\n融 O\n资 O\n租 O\n赁 O\n法 O\n》 O\n的 O\n论 O\n证 O\n与 O\n起 O\n草 O\n工 O\n作 O\n， O\n是 O\n全 B-ORG\n国 M-ORG\n人 M-ORG\n大 M-ORG\n财 M-ORG\n经 M-ORG\n委 E-ORG\n《 O\n中 O\n华 O\n人 O\n民 O\n共 O\n和 O\n国 O\n融 O\n资 O\n租 O\n赁 O\n法 O\n》 O\n立 B-TITLE\n法 M-TITLE\n小 M-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n。 O\n\n获 O\n上 B-TITLE\n市 M-TITLE\n公 M-TITLE\n司 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 M-TITLE\n培 M-TITLE\n训 M-TITLE\n结 M-TITLE\n业 M-TITLE\n证 M-TITLE\n书 E-TITLE\n， O\n现 O\n任 O\n广 B-ORG\n州 M-ORG\n杰 M-ORG\n赛 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n兼 O\n任 O\n苏 B-ORG\n州 M-ORG\n宝 M-ORG\n鑫 M-ORG\n科 M-ORG\n技 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n上 B-ORG\n海 M-ORG\n汉 M-ORG\n钟 M-ORG\n精 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n迪 M-ORG\n信 M-ORG\n通 M-ORG\n商 M-ORG\n贸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n曲 B-NAME\n晓 M-NAME\n辉 E-NAME\n， O\n女 O\n， O\n生 O\n于 O\n1 O\n9 O\n5 O\n4 O\n年 O\n1 O\n1 O\n月 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n； O\n\n中 O\n国 O\n第 O\n一 O\n位 O\n会 B-PRO\n计 M-PRO\n学 E-PRO\n女 O\n博 B-EDU\n士 E-EDU\n和 O\n第 O\n一 O\n位 O\n会 B-PRO\n计 M-PRO\n学 E-PRO\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n女 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n全 B-EDU\n国 M-EDU\n会 M-EDU\n计 M-EDU\n硕 M-EDU\n士 M-EDU\n专 M-EDU\n业 M-EDU\n学 M-EDU\n位 E-EDU\n（ O\nM B-EDU\nP M-EDU\nA M-EDU\nc M-EDU\nc E-EDU\n） O\n论 B-TITLE\n证 M-TITLE\n发 M-TITLE\n起 M-TITLE\n人 E-TITLE\n。 O\n\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 E-ORG\n社 B-TITLE\n会 M-TITLE\n学 M-TITLE\n部 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n财 B-ORG\n政 M-ORG\n部 M-ORG\n会 M-ORG\n计 M-ORG\n准 M-ORG\n则 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n咨 B-TITLE\n询 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n全 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n专 M-ORG\n业 M-ORG\n学 M-ORG\n位 M-ORG\n教 M-ORG\n育 M-ORG\n指 M-ORG\n导 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n兼 O\n学 B-ORG\n位 M-ORG\n论 M-ORG\n文 M-ORG\n指 M-ORG\n导 M-ORG\n工 M-ORG\n作 M-ORG\n分 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n教 B-ORG\n育 M-ORG\n部 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n管 B-TITLE\n理 M-TITLE\n学 M-TITLE\n部 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n国 B-ORG\n家 M-ORG\n社 M-ORG\n科 M-ORG\n基 M-ORG\n金 M-ORG\n项 M-ORG\n目 E-ORG\n评 B-TITLE\n委 E-TITLE\n、 O\n教 B-ORG\n育 M-ORG\n部 M-ORG\n中 M-ORG\n外 M-ORG\n合 M-ORG\n作 M-ORG\n办 M-ORG\n学 M-ORG\n项 M-ORG\n目 E-ORG\n评 B-TITLE\n审 M-TITLE\n专 M-TITLE\n家 E-TITLE\n。 O\n\n现 O\n任 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n发 M-ORG\n展 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n务 M-ORG\n管 M-ORG\n理 M-ORG\n与 M-ORG\n会 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n云 B-ORG\n南 M-ORG\n白 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n戴 B-NAME\n大 M-NAME\n双 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n获 O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n与 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n部 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n项 B-TITLE\n目 M-TITLE\n管 M-TITLE\n理 M-TITLE\n研 M-TITLE\n究 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n与 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n部 E-ORG\n学 B-TITLE\n术 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n项 M-ORG\n目 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n大 B-ORG\n连 M-ORG\n项 M-ORG\n目 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n， O\n具 O\n有 O\n国 B-ORG\n际 M-ORG\n项 M-ORG\n目 M-ORG\n管 M-ORG\n理 M-ORG\n协 M-ORG\n会 M-ORG\n( M-ORG\nI M-ORG\nP M-ORG\nM M-ORG\nA M-ORG\n) E-ORG\n“ O\n项 B-TITLE\n目 M-TITLE\n管 M-TITLE\n理 M-TITLE\n专 M-TITLE\n家 E-TITLE\n” O\n资 O\n质 O\n和 O\n国 B-ORG\n际 M-ORG\n项 M-ORG\n目 M-ORG\n管 M-ORG\n理 M-ORG\n协 M-ORG\n会 E-ORG\n评 B-TITLE\n估 M-TITLE\n师 E-TITLE\n； O\n\n兼 O\n任 O\n大 B-ORG\n连 M-ORG\n国 M-ORG\n际 M-ORG\n合 M-ORG\n作 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n大 B-ORG\n连 M-ORG\n热 M-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n0 O\n0 O\n年 O\n以 O\n来 O\n曾 O\n任 O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n大 B-ORG\n连 M-ORG\n市 M-ORG\n妇 M-ORG\n联 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n0 O\n4 O\n月 O\n至 O\n今 O\n， O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n会 M-NAME\n生 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n历 O\n任 O\n最 B-ORG\n高 M-ORG\n人 M-ORG\n民 M-ORG\n法 M-ORG\n院 M-ORG\n办 M-ORG\n公 M-ORG\n厅 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n一 B-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n法 M-TITLE\n官 E-TITLE\n、 O\n最 B-ORG\n高 M-ORG\n人 M-ORG\n民 M-ORG\n法 M-ORG\n院 E-ORG\n新 B-TITLE\n闻 M-TITLE\n发 M-TITLE\n言 M-TITLE\n人 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n高 M-ORG\n级 M-ORG\n人 M-ORG\n民 M-ORG\n法 M-ORG\n院 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n汽 M-ORG\n车 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n地 B-ORG\n平 M-ORG\n线 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n朱 B-NAME\n国 M-NAME\n章 E-NAME\n先 O\n生 O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n宁 B-ORG\n波 M-ORG\n冶 M-ORG\n金 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n城 M-ORG\n建 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n历 O\n任 O\n鄞 B-ORG\n县 M-ORG\n电 M-ORG\n子 M-ORG\n门 M-ORG\n窗 M-ORG\n厂 E-ORG\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n鄞 B-ORG\n县 M-ORG\n彩 M-ORG\n印 M-ORG\n包 M-ORG\n装 M-ORG\n用 M-ORG\n品 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n东 M-ORG\n方 M-ORG\n印 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n广 M-ORG\n博 M-ORG\n文 M-ORG\n具 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n宁 B-ORG\n波 M-ORG\n广 M-ORG\n博 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n广 M-ORG\n博 M-ORG\n建 M-ORG\n设 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n广 M-ORG\n枫 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n广 M-ORG\n博 M-ORG\n纳 M-ORG\n米 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n广 M-ORG\n宏 M-ORG\n商 M-ORG\n贸 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n卫 M-NAME\n国 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n陕 B-LOC\n西 M-LOC\n咸 M-LOC\n阳 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n6 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n在 O\n公 B-ORG\n司 M-ORG\n熔 M-ORG\n炼 M-ORG\n分 M-ORG\n厂 E-ORG\n、 O\n工 O\n艺 O\n处 O\n工 O\n作 O\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n技 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n技 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n科 B-TITLE\n技 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n刘 B-NAME\n道 M-NAME\n仁 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n7 O\n4 O\n年 O\n1 O\n月 O\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n武 B-ORG\n汉 M-ORG\n冶 M-ORG\n金 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n资 M-ORG\n源 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n湖 B-ORG\n北 M-ORG\n郧 M-ORG\n阳 M-ORG\n金 M-ORG\n牛 M-ORG\n集 M-ORG\n团 M-ORG\n矿 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n冶 M-ORG\n金 M-ORG\n设 M-ORG\n计 M-ORG\n院 M-ORG\n属 M-ORG\n诚 M-ORG\n信 M-ORG\n监 M-ORG\n理 M-ORG\n公 M-ORG\n司 E-ORG\n矿 B-TITLE\n山 M-TITLE\n工 M-TITLE\n程 M-TITLE\n监 M-TITLE\n理 M-TITLE\n员 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n南 B-ORG\n方 M-ORG\n科 M-ORG\n学 M-ORG\n城 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n项 M-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n安 B-ORG\n徽 M-ORG\n淮 M-ORG\n北 M-ORG\n徐 M-ORG\n楼 M-ORG\n矿 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n科 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n安 B-TITLE\n全 M-TITLE\n科 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n任 O\n金 B-ORG\n叶 M-ORG\n珠 M-ORG\n宝 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n矿 B-TITLE\n业 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n金 B-ORG\n叶 M-ORG\n珠 M-ORG\n宝 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n丁 B-NAME\n衬 M-NAME\n欢 E-NAME\n： O\n女 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n初 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n近 O\n5 O\n年 O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n众 M-ORG\n生 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n林 B-NAME\n楚 M-NAME\n彬 E-NAME\n： O\n男 O\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n程 M-PRO\n物 M-PRO\n理 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n美 B-ORG\n国 M-ORG\n北 M-ORG\n卡 M-ORG\n罗 M-ORG\n来 M-ORG\n纳 M-ORG\n州 M-ORG\n立 M-ORG\n大 M-ORG\n学 E-ORG\n计 B-PRO\n算 M-PRO\n机 M-PRO\n工 M-PRO\n程 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\n北 M-ORG\n方 M-ORG\n电 M-ORG\n信 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n软 M-TITLE\n件 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n美 B-ORG\n国 M-ORG\n优 M-ORG\n利 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n华 B-ORG\n晨 M-ORG\n集 M-ORG\n团 E-ORG\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n新 M-ORG\n大 M-ORG\n陆 M-ORG\n电 M-ORG\n脑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n证 M-ORG\n通 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n证 B-ORG\n通 M-ORG\n金 M-ORG\n信 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n卢 B-NAME\n立 M-NAME\n勇 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n5 O\n月 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n毕 O\n业 O\n于 O\n河 B-ORG\n北 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n石 B-PRO\n油 M-PRO\n炼 M-PRO\n制 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n石 B-ORG\n家 M-ORG\n庄 M-ORG\n炼 M-ORG\n油 M-ORG\n厂 E-ORG\n副 B-TITLE\n总 M-TITLE\n调 M-TITLE\n度 M-TITLE\n长 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n现 O\n任 O\n石 B-ORG\n家 M-ORG\n庄 M-ORG\n炼 M-ORG\n油 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n石 B-ORG\n家 M-ORG\n庄 M-ORG\n炼 M-ORG\n油 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n丁 B-NAME\n笑 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n工 O\n作 O\n经 O\n历 O\n： O\n1 O\n9 O\n9 O\n7 O\n- O\n1 O\n9 O\n9 O\n8 O\n年 O\n在 O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 M-ORG\n新 M-ORG\n北 M-ORG\n高 M-ORG\n公 M-ORG\n司 E-ORG\n财 O\n务 O\n部 O\n任 O\n职 O\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n- O\n2 O\n0 O\n0 O\n0 O\n年 O\n在 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n雄 M-ORG\n震 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 O\n产 O\n管 O\n理 O\n部 O\n任 O\n职 O\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n任 O\n厦 B-ORG\n门 M-ORG\n雄 M-ORG\n震 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n至 O\n今 O\n任 O\n厦 B-ORG\n门 M-ORG\n雄 M-ORG\n震 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n孙 B-NAME\n伟 M-NAME\n强 E-NAME\n， O\n男 O\n， O\n现 O\n任 O\n天 B-ORG\n创 M-ORG\n置 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n天 M-ORG\n创 M-ORG\n世 M-ORG\n缘 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n天 M-ORG\n创 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n光 M-NAME\n保 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n营 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n一 M-ORG\n六 M-ORG\n九 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n神 M-ORG\n斧 M-ORG\n民 M-ORG\n爆 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n神 M-ORG\n斧 M-ORG\n民 M-ORG\n爆 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n新 M-ORG\n天 M-ORG\n地 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n新 M-ORG\n天 M-ORG\n地 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n金 B-NAME\n向 M-NAME\n宝 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n最 O\n近 O\n5 O\n年 O\n， O\n任 O\n东 B-ORG\n方 M-ORG\n金 M-ORG\n钰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n策 B-TITLE\n划 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n东 B-ORG\n方 M-ORG\n金 M-ORG\n钰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n于 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n0 O\n月 O\n辞 O\n去 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n职 O\n务 O\n。 O\n\n赖 B-NAME\n国 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n福 B-ORG\n建 M-ORG\n龙 M-ORG\n岩 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n校 E-ORG\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n6 O\n月 O\n毕 O\n业 O\n于 O\n中 B-ORG\n央 M-ORG\n党 M-ORG\n校 E-ORG\n（ O\n函 O\n授 O\n） O\n经 B-PRO\n管 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n曾 O\n任 O\n漳 B-ORG\n州 M-ORG\n片 M-ORG\n仔 M-ORG\n癀 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n漳 B-ORG\n州 M-ORG\n片 M-ORG\n仔 M-ORG\n癀 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n2 O\n月 O\n任 O\n漳 B-ORG\n州 M-ORG\n片 M-ORG\n仔 M-ORG\n癀 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n任 O\n漳 B-ORG\n州 M-ORG\n片 M-ORG\n仔 M-ORG\n癀 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n醒 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n锦 B-ORG\n江 M-ORG\n国 M-ORG\n际 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n机 B-TITLE\n关 M-TITLE\n总 M-TITLE\n部 M-TITLE\n党 M-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n锦 M-ORG\n江 M-ORG\n国 M-ORG\n际 M-ORG\n实 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n昌 M-NAME\n东 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n高 B-EDU\n中 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n， O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n总 M-ORG\n裁 M-ORG\n高 M-ORG\n级 M-ORG\n研 M-ORG\n修 M-ORG\n班 E-ORG\n结 O\n业 O\n。 O\n\n曾 O\n任 O\n新 B-ORG\n界 M-ORG\n有 M-ORG\n限 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n新 B-ORG\n界 M-ORG\n泵 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n老 M-ORG\n百 M-ORG\n姓 M-ORG\n泵 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n新 M-ORG\n界 M-ORG\n机 M-ORG\n械 M-ORG\n配 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n台 B-ORG\n州 M-ORG\n鑫 M-ORG\n特 M-ORG\n物 M-ORG\n资 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n素 M-NAME\n玲 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n大 M-ORG\n学 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n会 B-TITLE\n计 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n兼 O\n职 O\n安 B-ORG\n徽 M-ORG\n合 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n皖 M-ORG\n能 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n唐 B-NAME\n长 M-NAME\n虹 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n信 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n实 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n中 B-ORG\n卫 M-ORG\n国 M-ORG\n脉 M-ORG\n通 M-ORG\n信 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n七 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n通 M-ORG\n信 M-ORG\n服 M-ORG\n务 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n风 B-TITLE\n险 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n业 M-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n向 M-NAME\n宁 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n8 O\n月 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n进 O\n入 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n中 M-ORG\n原 M-ORG\n内 M-ORG\n配 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n刘 S-NAME\n先 O\n生 O\n现 O\n任 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n中 M-ORG\n原 M-ORG\n内 M-ORG\n配 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n飞 M-ORG\n燕 M-ORG\n活 M-ORG\n塞 M-ORG\n环 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n安 B-ORG\n徽 M-ORG\n中 M-ORG\n原 M-ORG\n内 M-ORG\n配 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n中 M-ORG\n原 M-ORG\n内 M-ORG\n配 M-ORG\n轴 M-ORG\n瓦 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n步 M-NAME\n林 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n4 O\n5 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n毕 M-EDU\n业 E-EDU\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n统 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n华 B-ORG\n域 M-ORG\n汽 M-ORG\n车 M-ORG\n系 M-ORG\n统 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n徐 B-NAME\n旭 M-NAME\n珠 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n； O\n\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n营 B-ORG\n财 M-ORG\n投 M-ORG\n资 E-ORG\n顾 B-TITLE\n问 E-TITLE\n， O\n东 B-ORG\n吴 M-ORG\n期 M-ORG\n货 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n苏 B-ORG\n州 M-ORG\n市 M-ORG\n再 M-ORG\n生 M-ORG\n资 M-ORG\n源 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n东 B-ORG\n吴 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n至 O\n1 O\n9 O\n8 O\n4 O\n年 O\n在 O\n苏 B-ORG\n州 M-ORG\n东 M-ORG\n风 M-ORG\n丝 M-ORG\n织 M-ORG\n厂 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n主 M-TITLE\n办 M-TITLE\n会 M-TITLE\n计 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n在 O\n苏 B-ORG\n州 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n任 O\n科 B-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n在 O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n高 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n风 M-ORG\n险 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 M-ORG\n苏 M-ORG\n州 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n起 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n在 O\n营 B-ORG\n财 M-ORG\n投 M-ORG\n资 E-ORG\n历 O\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n起 O\n至 O\n今 O\n， O\n营 B-ORG\n财 M-ORG\n投 M-ORG\n资 E-ORG\n顾 B-TITLE\n问 E-TITLE\n。 O\n\n张 B-NAME\n忠 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n北 M-ORG\n车 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n亦 O\n任 O\n中 B-ORG\n国 M-ORG\n保 M-ORG\n利 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 S-NAME\n先 O\n生 O\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n兵 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n3 M-ORG\n3 M-ORG\n3 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n发 B-TITLE\n展 M-TITLE\n规 M-TITLE\n划 M-TITLE\n局 M-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n兵 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n6 O\n月 O\n起 O\n出 O\n任 O\n中 B-ORG\n国 M-ORG\n北 M-ORG\n车 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n起 O\n任 O\n中 B-ORG\n国 M-ORG\n保 M-ORG\n利 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n监 B-TITLE\n事 E-TITLE\n： O\n王 B-NAME\n凤 M-NAME\n仙 E-NAME\n， O\n女 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n1 O\n月 O\n- O\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n， O\n任 O\n白 B-ORG\n鸽 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n- O\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n白 B-ORG\n鸽 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n律 M-TITLE\n审 M-TITLE\n计 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n白 B-ORG\n鸽 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n高 B-NAME\n涛 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n硕 B-EDU\n士 E-EDU\n在 O\n读 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n北 M-ORG\n通 M-ORG\n发 M-ORG\n科 M-ORG\n技 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n业 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n部 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n湖 B-ORG\n北 M-ORG\n国 M-ORG\n创 M-ORG\n高 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n韩 B-NAME\n复 M-NAME\n龄 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n0 O\n月 O\n， O\n先 O\n后 O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n获 O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n、 O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n波 B-ORG\n兰 M-ORG\n西 M-ORG\n里 M-ORG\n西 M-ORG\n亚 M-ORG\n大 M-ORG\n学 E-ORG\n获 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n经 B-TITLE\n济 M-TITLE\n学 M-TITLE\n博 M-TITLE\n士 M-TITLE\n后 E-TITLE\n， O\n荷 B-ORG\n兰 M-ORG\n蒂 M-ORG\n尔 M-ORG\n堡 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n、 O\n澳 B-ORG\n大 M-ORG\n利 M-ORG\n亚 M-ORG\n维 M-ORG\n多 M-ORG\n利 M-ORG\n亚 M-ORG\n大 M-ORG\n学 E-ORG\n（ O\nV B-ORG\ni M-ORG\nc M-ORG\nt M-ORG\no M-ORG\nr M-ORG\ni M-ORG\na M-ORG\nU M-ORG\nn M-ORG\ni M-ORG\nv M-ORG\ne M-ORG\nr M-ORG\ns M-ORG\ni M-ORG\nt M-ORG\ny E-ORG\n） O\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n。 O\n\n曾 O\n在 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n券 M-ORG\n市 M-ORG\n场 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n中 M-ORG\n心 E-ORG\n等 O\n机 O\n构 O\n任 O\n职 O\n， O\n兼 O\n任 O\n全 B-ORG\n国 M-ORG\n人 M-ORG\n大 M-ORG\n财 M-ORG\n经 M-ORG\n委 E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n研 M-ORG\n究 M-ORG\n局 E-ORG\n咨 B-TITLE\n询 M-TITLE\n专 M-TITLE\n家 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n银 M-ORG\n行 E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 E-ORG\n理 B-TITLE\n财 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n政 M-ORG\n府 E-ORG\n、 O\n河 B-ORG\n北 M-ORG\n省 M-ORG\n政 M-ORG\n府 E-ORG\n顾 B-TITLE\n问 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n央 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n金 M-ORG\n融 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n应 B-TITLE\n用 M-TITLE\n金 M-TITLE\n融 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n荆 B-NAME\n云 M-NAME\n涛 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n9 O\n年 O\n生 O\n人 O\n， O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n毕 O\n业 O\n于 O\n哈 B-ORG\n尔 M-ORG\n滨 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n动 B-PRO\n力 M-PRO\n工 M-PRO\n程 M-PRO\n系 M-PRO\n热 M-PRO\n能 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n哈 B-ORG\n尔 M-ORG\n滨 M-ORG\n空 M-ORG\n调 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n销 B-TITLE\n售 M-TITLE\n处 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n2 O\n1 O\n日 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n3 O\n日 O\n期 O\n间 O\n， O\n受 O\n董 O\n事 O\n会 O\n指 O\n定 O\n代 O\n行 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n职 O\n责 O\n） O\n、 O\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n尔 M-ORG\n华 M-ORG\n杰 M-ORG\n机 M-ORG\n电 M-ORG\n装 M-ORG\n备 M-ORG\n制 M-ORG\n造 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n天 M-ORG\n勃 M-ORG\n能 M-ORG\n源 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n3 O\n0 O\n日 O\n起 O\n代 O\n行 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n职 O\n权 O\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n1 O\n3 O\n日 O\n， O\n因 O\n工 O\n作 O\n调 O\n动 O\n， O\n辞 O\n去 O\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n郝 B-NAME\n立 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n陕 B-ORG\n西 M-ORG\n彩 M-ORG\n虹 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n玻 M-ORG\n璃 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n陕 B-ORG\n西 M-ORG\n彩 M-ORG\n虹 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n战 B-TITLE\n略 M-TITLE\n规 M-TITLE\n划 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n职 O\n务 O\n。 O\n\n现 O\n任 O\n青 B-ORG\n海 M-ORG\n省 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n青 B-ORG\n海 M-ORG\n省 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n西 B-ORG\n宁 M-ORG\n特 M-ORG\n殊 M-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n青 B-ORG\n海 M-ORG\n四 M-ORG\n维 M-ORG\n信 M-ORG\n用 M-ORG\n担 M-ORG\n保 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n万 B-NAME\n曾 M-NAME\n炜 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n博 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n浦 M-ORG\n东 M-ORG\n新 M-ORG\n区 M-ORG\n综 M-ORG\n合 M-ORG\n规 M-ORG\n划 M-ORG\n土 M-ORG\n地 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n浦 B-ORG\n东 M-ORG\n新 M-ORG\n区 M-ORG\n综 M-ORG\n合 M-ORG\n计 M-ORG\n划 M-ORG\n局 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n公 M-ORG\n积 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n中 M-ORG\n心 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n张 M-ORG\n江 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n园 M-ORG\n区 M-ORG\n开 M-ORG\n发 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n、 M-TITLE\n三 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n金 M-ORG\n丰 M-ORG\n投 M-ORG\n资 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n上 B-ORG\n海 M-ORG\n张 M-ORG\n江 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n园 M-ORG\n区 M-ORG\n开 M-ORG\n发 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n浦 B-ORG\n东 M-ORG\n改 M-ORG\n革 M-ORG\n与 M-ORG\n发 M-ORG\n展 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n， O\n万 B-NAME\n曾 M-NAME\n炜 E-NAME\n董 B-TITLE\n事 E-TITLE\n因 O\n个 O\n人 O\n原 O\n因 O\n无 O\n法 O\n履 O\n行 O\n公 O\n司 O\n董 O\n事 O\n职 O\n责 O\n， O\n公 O\n司 O\n股 O\n东 O\n大 O\n会 O\n免 O\n去 O\n其 O\n董 O\n事 O\n职 O\n务 O\n。 O\n\n李 B-NAME\n罗 M-NAME\n生 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n长 B-ORG\n沙 M-ORG\n矿 M-ORG\n冶 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n金 B-ORG\n瑞 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n长 B-ORG\n沙 M-ORG\n金 M-ORG\n石 M-ORG\n粉 M-ORG\n体 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n杨 B-NAME\n兴 M-NAME\n全 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n. O\n1 O\n2 O\n生 O\n， O\n甘 B-LOC\n肃 M-LOC\n古 M-LOC\n浪 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n留 O\n石 B-ORG\n河 M-ORG\n子 M-ORG\n大 M-ORG\n学 E-ORG\n任 O\n教 O\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n9 O\n月 O\n考 O\n取 O\n中 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n获 O\n管 B-PRO\n理 M-PRO\n学 M-PRO\n（ M-PRO\n会 M-PRO\n计 M-PRO\n学 M-PRO\n） E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n现 O\n为 O\n石 B-ORG\n河 M-ORG\n子 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n顾 B-NAME\n启 M-NAME\n峰 E-NAME\n先 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n同 M-ORG\n济 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n并 O\n获 O\n工 B-PRO\n程 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n于 O\n同 B-ORG\n济 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n班 E-ORG\n毕 O\n业 O\n。 O\n\n从 O\n1 O\n9 O\n8 O\n8 O\n年 O\n起 O\n， O\n顾 S-NAME\n先 O\n生 O\n在 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n第 M-ORG\n三 M-ORG\n市 M-ORG\n政 M-ORG\n工 M-ORG\n程 M-ORG\n公 M-ORG\n司 E-ORG\n负 O\n责 O\n监 O\n督 O\n济 O\n青 O\n高 O\n速 O\n公 O\n路 O\n、 O\n沪 O\n宁 O\n高 O\n速 O\n公 O\n路 O\n及 O\n唐 O\n津 O\n高 O\n速 O\n公 O\n路 O\n的 O\n建 O\n设 O\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n任 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n政 M-ORG\n三 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n担 O\n任 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n政 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n顾 S-NAME\n先 O\n生 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n于 O\n2 O\n0 O\n0 O\n2 O\n年 O\n后 O\n开 O\n始 O\n兼 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n2 O\n月 O\n辞 O\n去 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n职 O\n务 O\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n7 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n自 O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n2 O\n月 O\n开 O\n始 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n顾 S-NAME\n先 O\n生 O\n从 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n马 B-NAME\n崇 M-NAME\n贤 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n6 O\n月 O\n生 O\n， O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n， O\n毕 O\n业 O\n于 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n大 M-ORG\n学 E-ORG\n计 B-PRO\n划 M-PRO\n统 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n民 B-ORG\n航 M-ORG\n内 M-ORG\n蒙 M-ORG\n古 M-ORG\n区 M-ORG\n局 E-ORG\n机 B-TITLE\n务 M-TITLE\n科 M-TITLE\n计 M-TITLE\n划 M-TITLE\n员 E-TITLE\n、 O\n国 B-ORG\n航 M-ORG\n内 M-ORG\n蒙 M-ORG\n古 M-ORG\n分 M-ORG\n公 M-ORG\n司 M-ORG\n航 M-ORG\n修 M-ORG\n厂 E-ORG\n航 B-TITLE\n材 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n支 B-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n蓝 B-ORG\n天 M-ORG\n旅 M-ORG\n客 M-ORG\n服 M-ORG\n务 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n6 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n湖 M-ORG\n北 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n兼 O\n任 O\n山 B-ORG\n东 M-ORG\n航 M-ORG\n空 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n和 O\n山 B-ORG\n东 M-ORG\n航 M-ORG\n空 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n任 B-NAME\n宇 M-NAME\n光 E-NAME\n： O\n女 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n财 B-ORG\n政 M-ORG\n部 M-ORG\n工 M-ORG\n交 M-ORG\n司 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n局 M-ORG\n企 M-ORG\n业 M-ORG\n司 E-ORG\n处 B-TITLE\n长 E-TITLE\n、 O\n财 B-ORG\n政 M-ORG\n部 M-ORG\n财 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n司 E-ORG\n处 B-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n方 M-ORG\n财 M-ORG\n务 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n并 O\n兼 O\n任 O\n中 B-ORG\n纺 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n南 B-ORG\n京 M-ORG\n新 M-ORG\n街 M-ORG\n口 M-ORG\n百 M-ORG\n货 M-ORG\n商 M-ORG\n店 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n柯 B-NAME\n桂 M-NAME\n苑 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n2 O\n年 O\n1 O\n0 O\n月 O\n3 O\n0 O\n日 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n籍 O\n贯 O\n温 B-LOC\n岭 E-LOC\n。 O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n毕 O\n业 O\n于 O\n温 B-ORG\n州 M-ORG\n师 M-ORG\n范 M-ORG\n学 M-ORG\n院 E-ORG\n。 O\n\n历 O\n任 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n温 M-ORG\n州 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n温 B-ORG\n岭 M-ORG\n化 M-ORG\n肥 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n， O\n温 B-ORG\n岭 M-ORG\n县 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n副 B-TITLE\n县 M-TITLE\n长 E-TITLE\n、 O\n温 B-ORG\n岭 M-ORG\n市 M-ORG\n委 E-ORG\n常 B-TITLE\n委 E-TITLE\n、 O\n温 B-ORG\n岭 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n市 M-TITLE\n长 E-TITLE\n、 O\n温 B-ORG\n岭 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n调 B-TITLE\n研 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n退 O\n休 O\n。 O\n\n夏 B-NAME\n峰 E-NAME\n： O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n畜 M-TITLE\n牧 M-TITLE\n师 E-TITLE\n， O\n毕 O\n业 O\n于 O\n沈 B-ORG\n阳 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n畜 M-ORG\n牧 M-ORG\n学 M-ORG\n校 E-ORG\n教 B-TITLE\n师 E-TITLE\n， O\n国 B-ORG\n家 M-ORG\n土 M-ORG\n地 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n教 B-TITLE\n育 M-TITLE\n处 M-TITLE\n干 M-TITLE\n部 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n牧 M-ORG\n工 M-ORG\n商 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n华 M-ORG\n联 M-ORG\n鸡 M-ORG\n场 E-ORG\n副 B-TITLE\n场 M-TITLE\n长 E-TITLE\n、 O\n禽 B-TITLE\n蛋 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n西 B-TITLE\n北 M-TITLE\n地 M-TITLE\n区 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n家 B-ORG\n禽 M-ORG\n育 M-ORG\n种 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n办 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n总 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n党 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n牧 M-ORG\n工 M-ORG\n商 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n牧 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n戚 B-NAME\n亚 M-NAME\n红 E-NAME\n， O\n女 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n戚 B-NAME\n亚 M-NAME\n红 E-NAME\n女 O\n士 O\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n加 O\n入 O\n杭 B-ORG\n州 M-ORG\n顺 M-ORG\n网 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n现 O\n担 O\n任 O\n杭 B-ORG\n州 M-ORG\n顺 M-ORG\n网 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n兼 O\n综 B-TITLE\n合 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陆 B-NAME\n长 M-NAME\n荣 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n中 M-ORG\n心 M-ORG\n大 M-ORG\n酒 M-ORG\n店 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n成 M-TITLE\n本 M-TITLE\n控 M-TITLE\n制 M-TITLE\n组 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n综 M-TITLE\n合 M-TITLE\n分 M-TITLE\n析 M-TITLE\n组 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n审 B-TITLE\n计 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n黄 M-ORG\n山 M-ORG\n国 M-ORG\n际 M-ORG\n大 M-ORG\n酒 M-ORG\n店 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n紫 M-ORG\n金 M-ORG\n山 M-ORG\n大 M-ORG\n酒 M-ORG\n店 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n吴 B-NAME\n鹰 E-NAME\n先 O\n生 O\n， O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n美 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n出 O\n生 O\n， O\n美 B-ORG\n国 M-ORG\n新 M-ORG\n泽 M-ORG\n西 M-ORG\n州 M-ORG\n理 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n硕 B-EDU\n士 E-EDU\n。 O\n\n历 O\n任 O\n美 B-ORG\n国 M-ORG\n贝 M-ORG\n尔 M-ORG\n实 M-ORG\n验 M-ORG\n室 E-ORG\n高 B-TITLE\n级 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n项 B-TITLE\n目 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\nU B-ORG\nT M-ORG\n斯 M-ORG\n康 M-ORG\n达 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\nU B-ORG\nT M-ORG\n斯 M-ORG\n康 M-ORG\n达 M-ORG\n（ M-ORG\n中 M-ORG\n国 M-ORG\n） M-ORG\n中 M-ORG\n国 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n任 O\n和 B-ORG\n利 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 E-ORG\n资 B-TITLE\n深 M-TITLE\n合 M-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n任 O\n华 B-ORG\n谊 M-ORG\n兄 M-ORG\n弟 M-ORG\n传 M-ORG\n媒 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n等 O\n。 O\n\n高 B-NAME\n忠 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n5 O\n8 O\n年 O\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n毕 O\n业 O\n于 O\n西 B-ORG\n北 M-ORG\n纺 M-ORG\n织 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n新 B-ORG\n疆 M-ORG\n金 M-ORG\n纺 M-ORG\n纺 M-ORG\n织 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n新 B-ORG\n疆 M-ORG\n八 M-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n， O\n新 B-ORG\n疆 M-ORG\n贝 M-ORG\n正 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n新 B-ORG\n疆 M-ORG\n风 M-ORG\n能 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n毅 M-NAME\n刚 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n自 B-TITLE\n动 M-TITLE\n化 M-TITLE\n仪 M-TITLE\n表 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n河 B-ORG\n南 M-ORG\n油 M-ORG\n田 M-ORG\n采 M-ORG\n油 M-ORG\n二 M-ORG\n厂 E-ORG\n仪 B-TITLE\n表 M-TITLE\n自 M-TITLE\n动 M-TITLE\n化 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n石 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n河 M-ORG\n南 M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n局 M-ORG\n勘 M-ORG\n察 M-ORG\n设 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n仪 B-TITLE\n表 M-TITLE\n自 M-TITLE\n动 M-TITLE\n化 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n等 O\n职 O\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n8 O\n月 O\n起 O\n到 O\n惠 B-ORG\n博 M-ORG\n普 M-ORG\n有 M-ORG\n限 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n工 B-TITLE\n控 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n设 B-TITLE\n计 M-TITLE\n所 M-TITLE\n副 M-TITLE\n所 M-TITLE\n长 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n华 B-ORG\n油 M-ORG\n惠 M-ORG\n博 M-ORG\n普 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n油 B-TITLE\n气 M-TITLE\n工 M-TITLE\n程 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n8 O\n月 O\n起 O\n担 O\n任 O\n华 B-ORG\n油 M-ORG\n惠 M-ORG\n博 M-ORG\n普 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n蒋 B-NAME\n毅 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n6 O\n月 O\n在 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n技 M-ORG\n经 M-ORG\n营 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n学 O\n习 O\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n在 O\n北 B-ORG\n京 M-ORG\n城 M-ORG\n建 M-ORG\n集 M-ORG\n团 M-ORG\n建 M-ORG\n筑 M-ORG\n设 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n担 O\n任 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n至 O\n今 O\n在 O\n北 B-ORG\n京 M-ORG\n京 M-ORG\n贸 M-ORG\n运 M-ORG\n通 M-ORG\n物 M-ORG\n流 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n担 O\n任 O\n物 B-TITLE\n流 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n乔 B-NAME\n小 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n正 B-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n房 M-ORG\n发 M-ORG\n展 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n天 B-ORG\n房 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n天 B-ORG\n房 M-ORG\n发 M-ORG\n展 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n欣 B-ORG\n苑 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n金 B-NAME\n德 M-NAME\n环 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n大 M-ORG\n昂 M-ORG\n立 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n并 O\n兼 O\n任 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n金 M-ORG\n融 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n海 B-ORG\n证 M-ORG\n期 M-ORG\n货 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n兴 B-ORG\n业 M-ORG\n期 M-ORG\n货 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n光 B-ORG\n大 M-ORG\n保 M-ORG\n德 M-ORG\n信 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n书 M-NAME\n剑 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n北 B-ORG\n京 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n于 O\n2 O\n0 O\n1 O\n4 O\n年 O\n5 O\n月 O\n加 O\n入 O\n北 B-ORG\n京 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 O\n事 O\n会 O\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n8 O\n月 O\n担 O\n任 O\n本 B-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n， O\n杨 S-NAME\n先 O\n生 O\n于 O\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n今 O\n担 O\n任 O\n本 B-ORG\n行 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n期 O\n间 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n兼 O\n任 O\n中 B-ORG\n加 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n7 O\n月 O\n至 O\n今 O\n兼 O\n任 O\n本 B-ORG\n行 M-ORG\n石 M-ORG\n家 M-ORG\n庄 M-ORG\n分 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n担 O\n任 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n2 O\n月 O\n担 O\n任 O\n学 B-ORG\n院 M-ORG\n路 M-ORG\n支 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n担 O\n任 O\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n担 O\n任 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n4 O\n月 O\n担 O\n任 O\n业 B-TITLE\n务 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n银 M-TITLE\n行 M-TITLE\n卡 M-TITLE\n业 M-TITLE\n务 M-TITLE\n组 M-TITLE\n组 M-TITLE\n长 E-TITLE\n。 O\n\n杨 S-NAME\n先 O\n生 O\n为 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n获 O\n吉 B-ORG\n林 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n获 O\n吉 B-ORG\n林 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n获 O\n中 B-ORG\n央 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n邬 B-NAME\n红 M-NAME\n华 E-NAME\n： O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n（ O\n后 O\n） O\n， O\n高 B-TITLE\n级 M-TITLE\n国 M-TITLE\n际 M-TITLE\n商 M-TITLE\n务 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n财 M-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n北 M-ORG\n普 M-ORG\n康 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n嘉 M-ORG\n诚 M-ORG\n铝 M-ORG\n业 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n盛 M-ORG\n佳 M-ORG\n铝 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n湖 B-ORG\n北 M-ORG\n银 M-ORG\n泰 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n武 B-ORG\n商 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n高 B-NAME\n峰 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n， O\n就 O\n读 O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n获 O\n工 B-PRO\n程 M-PRO\n力 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n， O\n任 O\n职 O\n哈 B-ORG\n尔 M-ORG\n滨 M-ORG\n市 M-ORG\n锅 M-ORG\n炉 M-ORG\n厂 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n就 O\n读 O\n哈 B-ORG\n尔 M-ORG\n滨 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n获 O\n计 B-PRO\n算 M-PRO\n机 M-PRO\n应 M-PRO\n用 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n销 B-TITLE\n售 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n王 B-NAME\n坚 M-NAME\n能 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n东 B-ORG\n北 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n动 B-PRO\n物 M-PRO\n营 M-PRO\n养 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n畜 M-TITLE\n牧 M-TITLE\n师 E-TITLE\n。 O\n\n近 O\n五 O\n年 O\n来 O\n， O\n一 O\n直 O\n担 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n金 M-ORG\n新 M-ORG\n农 M-ORG\n饲 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n黄 B-NAME\n生 M-NAME\n荣 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n加 O\n入 O\n线 O\n路 O\n板 O\n行 O\n业 O\n， O\n任 O\n职 O\nC B-TITLE\nA M-TITLE\nM M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n先 O\n后 O\n担 O\n任 O\n惠 B-ORG\n州 M-ORG\n中 M-ORG\n京 M-ORG\n电 M-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n及 O\n开 B-TITLE\n发 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n， O\n现 O\n任 O\n惠 B-ORG\n州 M-ORG\n中 M-ORG\n京 M-ORG\n电 M-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n兼 O\n任 O\n产 B-TITLE\n品 M-TITLE\n评 M-TITLE\n估 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n袁 B-NAME\n端 M-NAME\n淇 E-NAME\n先 O\n生 O\n： O\n曾 O\n用 O\n名 O\n袁 B-NAME\n彪 E-NAME\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-ORG\n国 M-ORG\n青 M-ORG\n年 M-ORG\n企 M-ORG\n业 M-ORG\n家 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n新 M-ORG\n五 M-ORG\n丰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n新 M-ORG\n永 M-ORG\n联 M-ORG\n物 M-ORG\n流 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n粮 M-ORG\n油 M-ORG\n食 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n单 B-TITLE\n证 M-TITLE\n员 E-TITLE\n、 O\n业 B-TITLE\n务 M-TITLE\n员 E-TITLE\n、 O\n蔬 B-TITLE\n菜 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n进 B-TITLE\n口 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n。 O\n\n泰 B-ORG\n国 M-ORG\nC M-ORG\n. M-ORG\nH M-ORG\n. M-ORG\nI M-ORG\nn M-ORG\nt M-ORG\ne M-ORG\nr M-ORG\nn M-ORG\na M-ORG\nt M-ORG\ni M-ORG\no M-ORG\nn M-ORG\na M-ORG\nl M-ORG\nT M-ORG\nr M-ORG\na M-ORG\nd M-ORG\ni M-ORG\nn M-ORG\ng M-ORG\nC M-ORG\no M-ORG\n. M-ORG\n， M-ORG\nL M-ORG\nt M-ORG\nd M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n土 M-ORG\n产 M-ORG\n畜 M-ORG\n产 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n进 B-TITLE\n口 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n应 B-TITLE\n收 M-TITLE\n账 M-TITLE\n款 M-TITLE\n催 M-TITLE\n收 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n湖 B-ORG\n南 M-ORG\n新 M-ORG\n五 M-ORG\n丰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n工 B-TITLE\n程 M-TITLE\n建 M-TITLE\n设 M-TITLE\n项 M-TITLE\n目 M-TITLE\n指 M-TITLE\n挥 M-TITLE\n长 E-TITLE\n。 O\n\n湖 B-ORG\n北 M-ORG\n长 M-ORG\n阳 M-ORG\n锰 M-ORG\n业 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n株 B-ORG\n洲 M-ORG\n兆 M-ORG\n富 M-ORG\n投 M-ORG\n资 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n株 B-ORG\n洲 M-ORG\n兆 M-ORG\n富 M-ORG\n成 M-ORG\n长 M-ORG\n企 M-ORG\n业 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n湖 B-ORG\n南 M-ORG\n胜 M-ORG\n景 M-ORG\n山 M-ORG\n河 M-ORG\n生 M-ORG\n物 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n运 B-TITLE\n营 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n湖 B-ORG\n南 M-ORG\n众 M-ORG\n益 M-ORG\n文 M-ORG\n化 M-ORG\n传 M-ORG\n媒 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n四 M-ORG\n海 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n湖 B-ORG\n南 M-ORG\n优 M-ORG\n鲜 M-ORG\n食 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n范 B-NAME\n小 M-NAME\n平 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n9 O\n年 O\n， O\n文 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n- O\n1 O\n9 O\n8 O\n8 O\n年 O\n从 O\n事 O\n教 O\n育 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n在 O\n泸 B-ORG\n天 M-ORG\n化 E-ORG\n从 O\n事 O\n管 O\n理 O\n工 O\n作 O\n。 O\n\n曾 O\n任 O\n广 B-ORG\n东 M-ORG\n德 M-ORG\n美 M-ORG\n精 M-ORG\n细 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n宜 B-ORG\n宾 M-ORG\n天 M-ORG\n原 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n德 M-ORG\n美 M-ORG\n精 M-ORG\n细 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n湖 B-ORG\n南 M-ORG\n尤 M-ORG\n特 M-ORG\n尔 M-ORG\n生 M-ORG\n化 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n和 O\n广 B-ORG\n东 M-ORG\n瑞 M-ORG\n图 M-ORG\n万 M-ORG\n方 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n日 M-ORG\n丰 M-ORG\n电 M-ORG\n缆 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n顺 M-ORG\n德 M-ORG\n德 M-ORG\n美 M-ORG\n德 M-ORG\n鑫 M-ORG\n产 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n合 M-ORG\n伙 M-ORG\n企 M-ORG\n业 M-ORG\n（ M-ORG\n有 M-ORG\n限 M-ORG\n合 M-ORG\n伙 M-ORG\n） E-ORG\n普 B-TITLE\n通 M-TITLE\n合 M-TITLE\n伙 M-TITLE\n人 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n欧 M-ORG\n浦 M-ORG\n钢 M-ORG\n铁 M-ORG\n物 M-ORG\n流 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n和 O\n欧 B-ORG\n浦 M-ORG\n支 M-ORG\n付 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n珠 B-ORG\n海 M-ORG\n市 M-ORG\n永 M-ORG\n康 M-ORG\n达 M-ORG\n股 M-ORG\n权 M-ORG\n投 M-ORG\n资 M-ORG\n基 M-ORG\n金 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n康 M-ORG\n宝 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n担 O\n任 O\n辽 B-ORG\n宁 M-ORG\n奥 M-ORG\n克 M-ORG\n化 M-ORG\n学 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n三 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n付 B-NAME\n宇 M-NAME\n卓 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n毕 O\n业 O\n于 O\n哈 B-ORG\n尔 M-ORG\n滨 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n计 B-PRO\n算 M-PRO\n机 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n得 O\n计 B-PRO\n算 M-PRO\n机 M-PRO\n系 M-PRO\n统 M-PRO\n与 M-PRO\n结 M-PRO\n构 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n曾 O\n任 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n省 M-ORG\n计 M-ORG\n算 M-ORG\n中 M-ORG\n心 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n主 B-TITLE\n任 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n系 E-ORG\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n集 M-ORG\n成 M-ORG\n电 M-ORG\n路 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n单 B-TITLE\n位 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\nC M-ORG\no M-ORG\nn M-ORG\nc M-ORG\no M-ORG\nr M-ORG\nd M-ORG\ni M-ORG\na M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n， O\n华 B-ORG\n盛 M-ORG\n顿 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n微 M-ORG\n电 M-ORG\n子 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n教 M-ORG\n务 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n集 M-ORG\n成 M-ORG\n电 M-ORG\n路 M-ORG\n人 M-ORG\n才 M-ORG\n培 M-ORG\n养 M-ORG\n基 M-ORG\n地 M-ORG\n上 M-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n基 M-ORG\n地 E-ORG\n执 B-TITLE\n行 M-TITLE\n人 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n经 M-ORG\n委 M-ORG\n集 M-ORG\n成 M-ORG\n电 M-ORG\n路 M-ORG\n项 M-ORG\n目 M-ORG\n组 E-ORG\n专 B-TITLE\n家 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n集 M-ORG\n成 M-ORG\n电 M-ORG\n路 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n中 B-ORG\n颖 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n蔚 M-NAME\n东 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-ORG\n国 M-ORG\n民 M-ORG\n主 M-ORG\n建 M-ORG\n国 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n天 B-ORG\n津 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n渤 M-ORG\n海 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 M-ORG\n战 M-ORG\n略 M-ORG\n发 M-ORG\n展 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n证 M-ORG\n券 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n理 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n工 M-ORG\n商 M-ORG\n业 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n劝 M-ORG\n业 M-ORG\n场 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n芳 E-NAME\n， O\n女 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n生 O\n。 O\n\n毕 O\n业 O\n于 O\n中 B-ORG\n共 M-ORG\n四 M-ORG\n川 M-ORG\n省 M-ORG\n委 M-ORG\n党 M-ORG\n校 E-ORG\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n自 B-ORG\n贡 M-ORG\n市 M-ORG\n双 M-ORG\n峰 M-ORG\n电 M-ORG\n子 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n自 M-ORG\n贡 M-ORG\n汇 M-ORG\n东 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n四 B-ORG\n川 M-ORG\n自 M-ORG\n贡 M-ORG\n汇 M-ORG\n东 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n自 M-ORG\n贡 M-ORG\n汇 M-ORG\n东 M-ORG\n大 M-ORG\n酒 M-ORG\n店 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n大 M-ORG\n西 M-ORG\n洋 M-ORG\n焊 M-ORG\n接 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n康 B-NAME\n亚 M-NAME\n斌 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n曾 O\n就 O\n职 O\n西 B-ORG\n安 M-ORG\n新 M-ORG\n兴 M-ORG\n电 M-ORG\n器 M-ORG\n厂 E-ORG\n， O\n现 O\n任 O\n陕 B-ORG\n西 M-ORG\n炼 M-ORG\n石 M-ORG\n矿 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n陕 B-ORG\n西 M-ORG\n炼 M-ORG\n石 M-ORG\n有 M-ORG\n色 M-ORG\n资 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n宏 M-NAME\n鹰 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n新 B-ORG\n筑 M-ORG\n股 M-ORG\n份 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n新 B-ORG\n筑 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n新 B-ORG\n筑 M-ORG\n股 M-ORG\n份 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n成 B-ORG\n都 M-ORG\n新 M-ORG\n诚 M-ORG\n融 M-ORG\n资 M-ORG\n担 M-ORG\n保 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n袁 B-NAME\n怀 M-NAME\n中 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n供 O\n职 O\n于 O\n上 B-ORG\n海 M-ORG\n证 M-ORG\n券 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n。 O\n\n现 O\n任 O\n融 B-ORG\n德 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n国 M-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n特 B-TITLE\n聘 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n朗 B-ORG\n姿 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n健 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n人 M-ORG\n大 E-ORG\n地 B-TITLE\n方 M-TITLE\n立 M-TITLE\n法 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n专 M-TITLE\n家 M-TITLE\n库 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n客 B-TITLE\n座 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n律 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n合 B-ORG\n肥 M-ORG\n仲 M-ORG\n裁 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n仲 B-TITLE\n裁 M-TITLE\n员 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n健 M-ORG\n友 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n科 B-ORG\n大 M-ORG\n讯 M-ORG\n飞 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n同 O\n时 O\n担 O\n任 O\n安 B-ORG\n徽 M-ORG\n六 M-ORG\n国 M-ORG\n华 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n艾 B-NAME\n力 M-NAME\n· M-NAME\n巴 M-NAME\n拉 M-NAME\n提 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n维 B-RACE\n吾 M-RACE\n尔 M-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n新 B-ORG\n疆 M-ORG\n八 M-ORG\n一 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n八 B-ORG\n钢 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n退 B-TITLE\n服 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n姜 B-NAME\n少 M-NAME\n军 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n兰 B-ORG\n溪 M-ORG\n市 M-ORG\n建 M-ORG\n筑 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n科 B-TITLE\n长 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n企 M-ORG\n成 M-ORG\n机 M-ORG\n电 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 M-ORG\n分 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n， O\n兰 B-ORG\n溪 M-ORG\n市 M-ORG\n建 M-ORG\n筑 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n科 M-ORG\n宇 M-ORG\n金 M-ORG\n属 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n海 B-ORG\n亮 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n科 M-ORG\n宇 M-ORG\n金 M-ORG\n属 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n福 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n， O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n先 O\n后 O\n任 O\n广 B-ORG\n州 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n工 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n恒 M-ORG\n丰 M-ORG\n发 M-ORG\n展 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n工 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 E-ORG\n策 B-TITLE\n划 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n法 B-TITLE\n律 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n工 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n凯 M-ORG\n得 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n广 B-ORG\n州 M-ORG\n凯 M-ORG\n得 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n兼 O\n任 O\n广 B-ORG\n州 M-ORG\n凯 M-ORG\n得 M-ORG\n文 M-ORG\n化 M-ORG\n娱 M-ORG\n乐 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n广 B-ORG\n州 M-ORG\n凯 M-ORG\n得 M-ORG\n体 M-ORG\n育 M-ORG\n文 M-ORG\n化 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n科 M-ORG\n技 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n知 M-ORG\n识 M-ORG\n城 M-ORG\n投 M-ORG\n资 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n新 M-ORG\n广 M-ORG\n州 M-ORG\n广 M-ORG\n州 M-ORG\n知 M-ORG\n识 M-ORG\n城 M-ORG\n投 M-ORG\n资 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n牛 B-NAME\n海 M-NAME\n艇 E-NAME\n， O\n男 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n； O\n\n现 O\n任 O\n古 B-ORG\n井 M-ORG\n贡 M-ORG\n酒 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n古 B-ORG\n井 M-ORG\n集 M-ORG\n团 E-ORG\n纪 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n历 O\n任 O\n古 B-ORG\n井 M-ORG\n集 M-ORG\n团 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n人 M-TITLE\n事 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n党 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n安 B-TITLE\n全 M-TITLE\n管 M-TITLE\n理 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n陈 B-NAME\n国 M-NAME\n宏 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n福 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n与 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n兼 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n顾 B-TITLE\n问 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n软 M-ORG\n科 M-ORG\n学 M-ORG\n专 M-ORG\n家 M-ORG\n顾 M-ORG\n问 M-ORG\n组 E-ORG\n成 B-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n企 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n业 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n技 M-ORG\n术 M-ORG\n经 M-ORG\n济 M-ORG\n与 M-ORG\n管 M-ORG\n理 M-ORG\n现 M-ORG\n代 M-ORG\n化 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n《 B-ORG\n中 M-ORG\n国 M-ORG\n管 M-ORG\n理 M-ORG\n科 M-ORG\n学 M-ORG\n》 E-ORG\n、 O\n《 B-ORG\n研 M-ORG\n究 M-ORG\n与 M-ORG\n发 M-ORG\n展 M-ORG\n管 M-ORG\n理 M-ORG\n》 E-ORG\n等 O\n国 O\n内 O\n权 O\n威 O\n刊 O\n物 O\n编 O\n委 O\n； O\n\n曾 O\n任 O\n福 B-ORG\n建 M-ORG\n福 M-ORG\n能 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n福 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n学 B-TITLE\n术 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n吕 B-NAME\n廷 M-NAME\n杰 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n博 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n邮 M-ORG\n电 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n师 E-TITLE\n。 O\n\n兼 O\n任 O\n罗 B-ORG\n顿 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n江 B-ORG\n西 M-ORG\n赣 M-ORG\n南 M-ORG\n果 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n华 B-ORG\n夏 M-ORG\n建 M-ORG\n通 M-ORG\n科 M-ORG\n技 M-ORG\n开 M-ORG\n发 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n兼 O\n任 O\n信 B-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n部 M-ORG\n第 M-ORG\n2 M-ORG\n2 M-ORG\n届 M-ORG\n万 M-ORG\n国 M-ORG\n邮 M-ORG\n联 M-ORG\n大 M-ORG\n会 E-ORG\n主 B-TITLE\n席 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n通 M-ORG\n信 M-ORG\n学 M-ORG\n会 E-ORG\n会 B-TITLE\n士 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n运 M-ORG\n筹 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n互 M-ORG\n联 M-ORG\n网 M-ORG\n学 M-ORG\n会 E-ORG\n高 B-TITLE\n级 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n、 O\n信 B-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n部 M-ORG\n通 M-ORG\n信 M-ORG\n科 M-ORG\n技 M-ORG\n委 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n邮 M-ORG\n政 M-ORG\n科 M-ORG\n技 M-ORG\n委 E-ORG\n常 B-TITLE\n委 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n邮 M-ORG\n电 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n， O\n罗 B-ORG\n顿 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n赣 M-ORG\n南 M-ORG\n果 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n华 B-ORG\n夏 M-ORG\n建 M-ORG\n通 M-ORG\n科 M-ORG\n技 M-ORG\n开 M-ORG\n发 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n亿 B-ORG\n阳 M-ORG\n信 M-ORG\n通 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n武 M-NAME\n龙 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n4 O\n0 O\n年 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n国 B-TITLE\n家 M-TITLE\n注 M-TITLE\n册 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 M-TITLE\n（ M-TITLE\n投 M-TITLE\n资 M-TITLE\n） E-TITLE\n， O\n曾 O\n任 O\n第 B-TITLE\n十 M-TITLE\n届 M-TITLE\n全 M-TITLE\n国 M-TITLE\n政 M-TITLE\n协 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n任 B-ORG\n国 M-ORG\n家 M-ORG\n计 M-ORG\n委 M-ORG\n投 M-ORG\n资 M-ORG\n司 E-ORG\n司 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n工 M-ORG\n程 M-ORG\n咨 M-ORG\n询 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n工 M-ORG\n程 M-ORG\n咨 M-ORG\n询 M-ORG\n公 M-ORG\n司 E-ORG\n专 B-TITLE\n家 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n退 O\n休 O\n； O\n\n目 O\n前 O\n兼 O\n任 O\n国 B-ORG\n务 M-ORG\n院 M-ORG\n三 M-ORG\n峡 M-ORG\n建 M-ORG\n设 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n三 B-TITLE\n峡 M-TITLE\n枢 M-TITLE\n纽 M-TITLE\n工 M-TITLE\n程 M-TITLE\n稽 M-TITLE\n查 M-TITLE\n组 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n程 M-ORG\n咨 M-ORG\n询 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n企 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n能 M-ORG\n源 M-ORG\n网 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n顾 B-TITLE\n问 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n投 M-ORG\n资 M-ORG\n协 M-ORG\n会 E-ORG\n顾 B-TITLE\n问 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n工 M-ORG\n程 M-ORG\n咨 M-ORG\n询 M-ORG\n公 M-ORG\n司 E-ORG\n专 B-TITLE\n家 M-TITLE\n学 M-TITLE\n术 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n、 O\n达 B-ORG\n华 M-ORG\n工 M-ORG\n程 M-ORG\n管 M-ORG\n理 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n顾 B-TITLE\n问 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n大 M-ORG\n富 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n马 B-NAME\n西 M-NAME\n庆 E-NAME\n： O\n2 O\n0 O\n0 O\n2 O\n年 O\n9 O\n月 O\n， O\n潍 B-ORG\n坊 M-ORG\n长 M-ORG\n安 M-ORG\n铁 M-ORG\n塔 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n月 O\n2 O\n1 O\n日 O\n， O\n任 O\n梅 B-ORG\n花 M-ORG\n生 M-ORG\n物 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n任 B-NAME\n晓 M-NAME\n常 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n5 O\n出 O\n生 O\n， O\n籍 O\n贯 O\n： O\n四 B-LOC\n川 E-LOC\n， O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n1 O\n2 O\n月 O\n毕 O\n业 O\n于 O\n湖 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n汽 B-PRO\n车 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n任 O\n重 B-ORG\n庆 M-ORG\n汽 M-ORG\n车 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n任 O\n重 B-ORG\n庆 M-ORG\n汽 M-ORG\n车 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n、 O\n重 B-ORG\n庆 M-ORG\n重 M-ORG\n型 M-ORG\n汽 M-ORG\n车 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n重 B-ORG\n庆 M-ORG\n重 M-ORG\n庆 M-ORG\n汽 M-ORG\n车 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n、 O\n重 B-ORG\n庆 M-ORG\n重 M-ORG\n型 M-ORG\n汽 M-ORG\n车 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n成 B-ORG\n都 M-ORG\n银 M-ORG\n河 M-ORG\n动 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n广 M-NAME\n生 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n3 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n光 B-ORG\n明 M-ORG\n乳 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n政 M-ORG\n府 E-ORG\n经 B-TITLE\n济 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n流 M-ORG\n通 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n名 B-TITLE\n誉 M-TITLE\n所 M-TITLE\n长 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n浦 M-ORG\n东 M-ORG\n发 M-ORG\n展 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n罗 B-NAME\n筱 M-NAME\n溪 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n理 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n具 O\n有 O\n深 B-ORG\n交 M-ORG\n所 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n资 O\n格 O\n、 O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n资 O\n格 O\n、 O\n国 B-TITLE\n际 M-TITLE\n注 M-TITLE\n册 M-TITLE\n金 M-TITLE\n融 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n执 O\n业 O\n资 O\n格 O\n、 O\n证 B-TITLE\n券 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n从 O\n业 O\n资 O\n格 O\n， O\n曾 O\n任 O\n职 O\n深 B-ORG\n圳 M-ORG\n宏 M-ORG\n太 M-ORG\n健 M-ORG\n康 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n金 B-ORG\n盛 M-ORG\n人 M-ORG\n寿 M-ORG\n保 M-ORG\n险 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n华 M-ORG\n南 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n国 B-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n朗 M-ORG\n科 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n先 O\n后 O\n分 O\n别 O\n担 O\n任 O\n市 B-TITLE\n场 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n证 B-TITLE\n券 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n， O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n等 O\n职 O\n位 O\n。 O\n\n经 O\n2 O\n0 O\n1 O\n4 O\n年 O\n2 O\n月 O\n1 O\n1 O\n日 O\n公 O\n司 O\n第 O\n三 O\n届 O\n董 O\n事 O\n会 O\n第 O\n五 O\n次 O\n（ O\n临 O\n时 O\n） O\n会 O\n议 O\n审 O\n议 O\n通 O\n过 O\n， O\n聘 O\n任 O\n罗 B-NAME\n筱 M-NAME\n溪 E-NAME\n女 O\n士 O\n为 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n爱 M-ORG\n施 M-ORG\n德 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n张 B-NAME\n大 M-NAME\n钰 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n环 B-ORG\n保 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n山 M-ORG\n大 M-ORG\n华 M-ORG\n特 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 M-ORG\n环 M-ORG\n保 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n海 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n专 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n长 O\n期 O\n在 O\n任 O\n中 B-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n职 O\n， O\n现 O\n任 O\n中 B-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n奎 B-NAME\n伟 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n。 O\n\n毕 O\n业 O\n于 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n委 M-ORG\n党 M-ORG\n校 E-ORG\n。 O\n\n现 O\n任 O\n昆 B-ORG\n明 M-ORG\n市 M-ORG\n国 M-ORG\n资 M-ORG\n委 E-ORG\n第 B-TITLE\n六 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n三 B-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n股 M-TITLE\n东 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n昆 B-ORG\n明 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n工 O\n作 O\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n昆 B-ORG\n明 M-ORG\n云 M-ORG\n内 M-ORG\n动 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n四 B-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n股 M-TITLE\n东 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n魏 B-NAME\n立 M-NAME\n军 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n设 M-TITLE\n备 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n东 B-ORG\n营 M-ORG\n华 M-ORG\n泰 M-ORG\n纸 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n设 B-TITLE\n备 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n项 B-TITLE\n目 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n华 M-ORG\n泰 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n华 M-ORG\n泰 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n崔 B-NAME\n勇 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n生 O\n， O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n胜 M-ORG\n天 M-ORG\n成 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n高 B-PRO\n级 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n； O\n\n公 B-ORG\n司 E-ORG\n电 B-TITLE\n信 M-TITLE\n行 M-TITLE\n业 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n存 B-TITLE\n储 M-TITLE\n增 M-TITLE\n值 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n系 B-TITLE\n统 M-TITLE\n产 M-TITLE\n品 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n胜 M-ORG\n天 M-ORG\n成 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n系 B-TITLE\n统 M-TITLE\n信 M-TITLE\n息 M-TITLE\n产 M-TITLE\n品 M-TITLE\n一 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n江 M-NAME\n良 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n4 O\n1 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n统 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n原 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n企 M-ORG\n业 M-ORG\n调 M-ORG\n查 M-ORG\n队 E-ORG\n队 B-TITLE\n长 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n政 M-ORG\n府 M-ORG\n咨 M-ORG\n询 M-ORG\n团 E-ORG\n成 B-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n1 O\n8 O\n日 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n2 O\n2 O\n日 O\n参 O\n加 O\n由 O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n监 M-ORG\n会 E-ORG\n和 O\n上 B-ORG\n海 M-ORG\n国 M-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n共 O\n同 O\n举 O\n办 O\n的 O\n上 O\n市 O\n公 O\n司 O\n独 O\n立 O\n董 O\n事 O\n培 O\n训 O\n班 O\n（ O\n获 O\n证 O\n书 O\n） O\n。 O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n6 O\n0 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n漳 M-ORG\n州 M-ORG\n糖 M-ORG\n厂 M-ORG\n造 M-ORG\n纸 M-ORG\n分 M-ORG\n厂 E-ORG\n统 B-TITLE\n计 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n统 M-ORG\n计 M-ORG\n局 E-ORG\n科 B-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n1 O\n月 O\n， O\n下 O\n放 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n将 M-ORG\n乐 M-ORG\n县 E-ORG\n； O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n1 O\n月 O\n至 O\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n将 M-ORG\n乐 M-ORG\n机 M-ORG\n床 M-ORG\n厂 E-ORG\n计 B-TITLE\n统 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n2 O\n月 O\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n七 M-ORG\n五 M-ORG\n干 M-ORG\n校 E-ORG\n学 B-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n1 O\n9 O\n8 O\n4 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n永 M-ORG\n安 M-ORG\n轴 M-ORG\n承 M-ORG\n厂 E-ORG\n科 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n统 M-ORG\n计 M-ORG\n局 E-ORG\n工 B-TITLE\n交 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n工 M-ORG\n业 M-ORG\n普 M-ORG\n查 M-ORG\n办 M-ORG\n公 M-ORG\n室 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n1 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n企 M-ORG\n业 M-ORG\n调 M-ORG\n查 M-ORG\n队 E-ORG\n队 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n龙 M-ORG\n溪 M-ORG\n轴 M-ORG\n承 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n立 M-NAME\n鸿 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n美 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n美 B-ORG\n国 M-ORG\n托 M-ORG\n莱 M-ORG\n多 M-ORG\n大 M-ORG\n学 E-ORG\n机 B-PRO\n械 M-PRO\n工 M-PRO\n程 E-PRO\n学 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n， O\n分 O\n别 O\n在 O\n美 B-ORG\n国 M-ORG\nO M-ORG\nw M-ORG\ne M-ORG\nn M-ORG\ns M-ORG\n- M-ORG\nI M-ORG\nl M-ORG\nl M-ORG\ni M-ORG\nn M-ORG\no M-ORG\ni M-ORG\ns M-ORG\nC M-ORG\no M-ORG\nr M-ORG\np M-ORG\no M-ORG\nr M-ORG\na M-ORG\nt M-ORG\ni M-ORG\no M-ORG\nn M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n项 B-TITLE\n目 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\nS B-ORG\na M-ORG\ni M-ORG\nn M-ORG\nt M-ORG\nG M-ORG\no M-ORG\nb M-ORG\na M-ORG\ni M-ORG\nn M-ORG\nC M-ORG\no M-ORG\nr M-ORG\np M-ORG\no M-ORG\nr M-ORG\na M-ORG\nt M-ORG\ni M-ORG\no M-ORG\nn E-ORG\n任 O\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\nA B-ORG\ni M-ORG\nr M-ORG\nP M-ORG\nr M-ORG\no M-ORG\nd M-ORG\nu M-ORG\nc M-ORG\nt M-ORG\ns M-ORG\na M-ORG\nn M-ORG\nd M-ORG\nC M-ORG\nh M-ORG\ne M-ORG\nm M-ORG\ni M-ORG\nc M-ORG\na M-ORG\nl M-ORG\ns M-ORG\n， M-ORG\nI M-ORG\nn M-ORG\nc M-ORG\n. E-ORG\n任 O\n亚 B-TITLE\n洲 M-TITLE\n区 M-TITLE\n高 M-TITLE\n级 M-TITLE\n理 M-TITLE\n论 M-TITLE\n应 M-TITLE\n用 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n在 O\nA B-ORG\ni M-ORG\nr M-ORG\nP M-ORG\nr M-ORG\no M-ORG\nd M-ORG\nu M-ORG\nc M-ORG\nt M-ORG\ns M-ORG\na M-ORG\nn M-ORG\nd M-ORG\nC M-ORG\nh M-ORG\ne M-ORG\nm M-ORG\ni M-ORG\nc M-ORG\na M-ORG\nl M-ORG\ns M-ORG\n， M-ORG\nI M-ORG\nn M-ORG\nc M-ORG\n. M-ORG\n中 M-ORG\n国 M-ORG\n区 E-ORG\n任 O\n气 B-TITLE\n体 M-TITLE\n应 M-TITLE\n用 M-TITLE\n业 M-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n南 B-TITLE\n京 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n区 M-TITLE\n大 M-TITLE\n众 M-TITLE\n气 M-TITLE\n体 M-TITLE\n业 M-TITLE\n务 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n区 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n及 O\n区 B-TITLE\n域 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n在 O\nP B-ORG\no M-ORG\nl M-ORG\ny M-ORG\nm M-ORG\ne M-ORG\nr M-ORG\nG M-ORG\nr M-ORG\no M-ORG\nu M-ORG\np M-ORG\nI M-ORG\nn M-ORG\nc M-ORG\n. E-ORG\n任 O\n高 B-TITLE\n级 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n亚 B-TITLE\n洲 M-TITLE\n区 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n南 M-ORG\n大 M-ORG\n光 M-ORG\n电 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n黄 B-NAME\n永 M-NAME\n锡 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n最 O\n近 O\n五 O\n年 O\n先 O\n后 O\n任 O\n上 B-ORG\n海 M-ORG\n船 M-ORG\n舶 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n江 M-ORG\n南 M-ORG\n长 M-ORG\n兴 M-ORG\n造 M-ORG\n船 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n外 M-ORG\n高 M-ORG\n桥 M-ORG\n造 M-ORG\n船 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n江 B-ORG\n南 M-ORG\n造 M-ORG\n船 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n江 M-ORG\n南 M-ORG\n长 M-ORG\n兴 M-ORG\n重 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n工 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n彦 M-NAME\n亮 E-NAME\n， O\n男 O\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n， O\n研 B-TITLE\n究 M-TITLE\n员 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n水 B-ORG\n电 M-ORG\n部 E-ORG\n淮 B-TITLE\n委 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n力 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n通 M-ORG\n信 M-ORG\n所 E-ORG\n技 B-TITLE\n术 M-TITLE\n干 M-TITLE\n部 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n力 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n人 B-TITLE\n事 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n、 O\n院 B-TITLE\n党 M-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n兼 O\n人 B-TITLE\n事 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n院 B-TITLE\n党 M-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n院 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n人 B-TITLE\n事 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n院 B-TITLE\n党 M-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n国 B-ORG\n家 M-ORG\n电 M-ORG\n力 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n与 M-TITLE\n董 M-TITLE\n事 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n干 M-TITLE\n部 M-TITLE\n一 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n电 M-ORG\n网 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n董 M-TITLE\n事 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n电 M-ORG\n力 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n国 B-ORG\n网 M-ORG\n电 M-ORG\n力 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n南 M-ORG\n瑞 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n国 B-ORG\n网 M-ORG\n智 M-ORG\n能 M-ORG\n电 M-ORG\n网 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n潘 B-NAME\n玲 M-NAME\n曼 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n管 M-TITLE\n理 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n师 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n至 O\n1 O\n9 O\n7 O\n9 O\n年 O\n任 O\n职 O\n于 O\n武 B-ORG\n汉 M-ORG\n市 M-ORG\n硚 M-ORG\n口 M-ORG\n区 M-ORG\n工 M-ORG\n业 M-ORG\n局 E-ORG\n， O\n先 O\n后 O\n担 O\n任 O\n局 B-TITLE\n长 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n团 B-TITLE\n委 M-TITLE\n干 M-TITLE\n部 E-TITLE\n、 O\n理 B-TITLE\n论 M-TITLE\n教 M-TITLE\n育 M-TITLE\n干 M-TITLE\n部 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n至 O\n1 O\n9 O\n9 O\n0 O\n年 O\n5 O\n月 O\n先 O\n后 O\n任 O\n湖 B-ORG\n北 M-ORG\n印 M-ORG\n刷 M-ORG\n物 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n6 O\n月 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n5 O\n月 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n审 M-ORG\n计 M-ORG\n局 E-ORG\n主 B-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n宝 M-ORG\n安 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n永 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n任 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n达 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n天 B-TITLE\n华 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 M-TITLE\n事 M-TITLE\n务 M-TITLE\n所 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n公 M-ORG\n天 M-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n深 M-ORG\n圳 M-ORG\n分 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n任 O\n天 B-ORG\n职 M-ORG\n国 M-ORG\n际 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n深 M-ORG\n圳 M-ORG\n分 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n永 M-ORG\n达 M-ORG\n信 M-ORG\n工 M-ORG\n程 M-ORG\n造 M-ORG\n价 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n戴 B-NAME\n红 M-NAME\n兵 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n起 O\n任 O\n职 O\n于 O\n德 B-ORG\n威 M-ORG\n实 M-ORG\n业 E-ORG\n， O\n任 O\n德 B-ORG\n威 M-ORG\n新 M-ORG\n材 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n金 B-NAME\n立 M-NAME\n山 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n付 B-NAME\n汉 M-NAME\n江 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n一 B-TITLE\n级 M-TITLE\n建 M-TITLE\n造 M-TITLE\n师 E-TITLE\n， O\n正 B-TITLE\n高 M-TITLE\n职 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n0 O\n月 O\n任 O\n武 B-ORG\n汉 M-ORG\n东 M-ORG\n湖 M-ORG\n高 M-ORG\n新 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n0 O\n月 O\n任 O\n武 B-ORG\n汉 M-ORG\n东 M-ORG\n湖 M-ORG\n高 M-ORG\n新 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n历 O\n任 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n路 M-ORG\n桥 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n联 M-ORG\n合 M-ORG\n发 M-ORG\n展 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n恩 M-ORG\n施 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n姚 B-NAME\n方 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n7 O\n月 O\n生 O\n， O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 M-ORG\n世 M-ORG\n界 M-ORG\n经 M-ORG\n济 M-ORG\n系 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n文 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n实 M-ORG\n业 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n实 M-ORG\n管 M-ORG\n理 M-ORG\n( M-ORG\n上 M-ORG\n海 M-ORG\n) M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n万 M-ORG\n国 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 E-ORG\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n总 M-TITLE\n部 M-TITLE\n助 M-TITLE\n理 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n上 M-ORG\n实 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n戴 B-NAME\n佐 M-NAME\n军 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n湖 B-LOC\n南 M-LOC\n湘 M-LOC\n乡 M-LOC\n人 E-LOC\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n曾 O\n任 O\n华 B-ORG\n菱 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n庞 B-NAME\n伟 M-NAME\n民 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n杭 B-ORG\n州 M-ORG\n第 M-ORG\n二 M-ORG\n织 M-ORG\n布 M-ORG\n厂 E-ORG\n保 O\n卫 O\n科 O\n先 O\n后 O\n任 O\n干 B-TITLE\n事 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n； O\n\n杭 B-ORG\n州 M-ORG\n金 M-ORG\n都 M-ORG\n贸 M-ORG\n易 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n都 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n红 M-ORG\n楼 M-ORG\n旅 M-ORG\n游 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n杭 B-ORG\n州 M-ORG\n环 M-ORG\n北 M-ORG\n小 M-ORG\n商 M-ORG\n品 M-ORG\n市 M-ORG\n场 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n杭 B-ORG\n州 M-ORG\n环 M-ORG\n北 M-ORG\n丝 M-ORG\n绸 M-ORG\n服 M-ORG\n装 M-ORG\n城 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n兰 B-ORG\n州 M-ORG\n民 M-ORG\n百 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n吴 B-NAME\n力 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n吉 B-ORG\n林 M-ORG\n铁 M-ORG\n路 M-ORG\n局 E-ORG\n电 B-TITLE\n子 M-TITLE\n所 M-TITLE\n助 M-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n电 B-TITLE\n子 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n沈 B-ORG\n阳 M-ORG\n铁 M-ORG\n路 M-ORG\n局 E-ORG\n电 B-TITLE\n子 M-TITLE\n计 M-TITLE\n算 M-TITLE\n机 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n起 O\n任 O\n和 B-ORG\n光 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n裁 E-TITLE\n， O\n9 O\n2 O\n年 O\n被 O\n授 O\n予 O\n国 O\n务 O\n院 O\n电 O\n子 O\n信 O\n息 O\n系 O\n统 O\n先 O\n进 O\n工 O\n作 O\n者 O\n称 O\n号 O\n； O\n\n9 O\n7 O\n年 O\n被 O\n评 O\n为 O\n沈 O\n阳 O\n市 O\n优 O\n秀 O\n企 O\n业 O\n家 O\n、 O\n辽 B-TITLE\n宁 M-TITLE\n省 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n； O\n\n9 O\n9 O\n年 O\n被 O\n授 O\n予 O\n沈 O\n阳 O\n优 O\n秀 O\n企 O\n业 O\n家 O\n荣 O\n誉 O\n称 O\n号 O\n、 O\n被 O\n沈 O\n阳 O\n市 O\n科 O\n委 O\n授 O\n予 O\n先 O\n进 O\n个 O\n人 O\n奖 O\n； O\n\n现 O\n任 O\n和 B-ORG\n光 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n和 B-TITLE\n光 M-TITLE\n商 M-TITLE\n务 M-TITLE\n二 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n宋 B-NAME\n永 M-NAME\n红 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n高 B-PRO\n级 M-PRO\n管 M-PRO\n理 M-PRO\n人 M-PRO\n员 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n（ O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n） O\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n汝 B-ORG\n城 M-ORG\n县 M-ORG\n水 M-ORG\n电 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n湖 B-ORG\n南 M-ORG\n郴 M-ORG\n电 M-ORG\n国 M-ORG\n际 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n起 O\n兼 O\n任 O\n湖 B-ORG\n南 M-ORG\n郴 M-ORG\n电 M-ORG\n国 M-ORG\n际 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n兰 B-NAME\n正 M-NAME\n恩 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n4 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n特 M-TITLE\n许 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n亚 M-ORG\n太 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n瑞 M-ORG\n华 M-ORG\n恒 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n管 B-TITLE\n理 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n龙 M-ORG\n泉 M-ORG\n管 M-ORG\n道 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n上 M-ORG\n会 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n北 M-ORG\n京 M-ORG\n分 M-ORG\n所 E-ORG\n负 B-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n赵 B-NAME\n斌 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n中 B-ORG\n国 M-ORG\n矿 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n（ M-ORG\n北 M-ORG\n京 M-ORG\n） E-ORG\n博 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n国 M-ORG\n资 M-ORG\n委 E-ORG\n清 B-TITLE\n产 M-TITLE\n核 M-TITLE\n资 M-TITLE\n专 M-TITLE\n家 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n国 B-ORG\n务 M-ORG\n院 M-ORG\n国 M-ORG\n资 M-ORG\n委 E-ORG\n企 B-TITLE\n业 M-TITLE\n财 M-TITLE\n务 M-TITLE\n信 M-TITLE\n息 M-TITLE\n化 M-TITLE\n专 M-TITLE\n家 M-TITLE\n成 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n立 B-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n（ O\n特 O\n殊 O\n普 O\n通 O\n合 O\n伙 O\n） O\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n， O\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n香 O\n港 O\n联 O\n交 O\n所 O\n上 O\n市 O\n公 O\n司 O\n安 B-ORG\n徽 M-ORG\n天 M-ORG\n大 M-ORG\n石 M-ORG\n油 M-ORG\n管 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n股 O\n份 O\n代 O\n号 O\n8 O\n3 O\n9 O\n） O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n泰 M-ORG\n昂 M-ORG\n能 M-ORG\n源 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n周 B-ORG\n大 M-ORG\n生 M-ORG\n珠 M-ORG\n宝 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n起 O\n， O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n袁 B-NAME\n哲 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n航 M-ORG\n空 M-ORG\n工 M-ORG\n业 M-ORG\n第 M-ORG\n二 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n纪 B-TITLE\n检 M-TITLE\n监 M-TITLE\n察 M-TITLE\n审 M-TITLE\n计 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n航 M-ORG\n直 M-ORG\n升 M-ORG\n机 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n任 O\n国 B-ORG\n有 M-ORG\n企 M-ORG\n业 M-ORG\n监 M-ORG\n事 M-ORG\n会 M-ORG\n驻 M-ORG\n中 M-ORG\n航 M-ORG\n二 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n任 O\n航 B-ORG\n空 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n任 O\n成 B-ORG\n发 M-ORG\n集 M-ORG\n团 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n周 B-NAME\n舟 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n博 B-EDU\n士 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n长 B-ORG\n安 M-ORG\n汽 M-ORG\n车 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\nC M-ORG\nA M-ORG\nE M-ORG\n工 M-ORG\n程 M-ORG\n所 E-ORG\n发 B-TITLE\n动 M-TITLE\n机 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n所 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n分 M-ORG\n院 E-ORG\n院 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n美 B-ORG\n国 M-ORG\nA M-ORG\nl M-ORG\nt M-ORG\na M-ORG\ni M-ORG\nr M-ORG\n公 M-ORG\n司 M-ORG\n中 M-ORG\n国 M-ORG\n区 E-ORG\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n汽 M-ORG\n车 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n数 B-TITLE\n据 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n研 B-TITLE\n发 M-TITLE\n中 M-TITLE\n心 M-TITLE\n常 M-TITLE\n务 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n汽 M-ORG\n车 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n研 B-TITLE\n发 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n中 B-ORG\n国 M-ORG\n汽 M-ORG\n车 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n会 M-ORG\n产 M-ORG\n品 M-ORG\n分 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n力 M-ORG\n学 M-ORG\n学 M-ORG\n会 M-ORG\n产 M-ORG\n学 M-ORG\n研 M-ORG\n工 M-ORG\n作 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n机 M-ORG\n械 M-ORG\n工 M-ORG\n程 M-ORG\n工 M-ORG\n业 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n分 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n等 O\n。 O\n\n鲍 B-NAME\n臻 M-NAME\n湧 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n黄 B-ORG\n岩 M-ORG\n橡 M-ORG\n胶 M-ORG\n助 M-ORG\n剂 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n黄 B-ORG\n岩 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n联 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n联 B-ORG\n化 M-ORG\n科 M-ORG\n技 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n联 B-ORG\n化 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n孙 B-NAME\n有 M-NAME\n文 E-NAME\n先 O\n生 O\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n孙 S-NAME\n先 O\n生 O\n于 O\n一 O\n九 O\n八 O\n零 O\n年 O\n加 O\n入 O\n民 O\n航 O\n业 O\n， O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n飞 M-ORG\n行 M-ORG\n部 E-ORG\n中 B-TITLE\n队 M-TITLE\n长 E-TITLE\n、 O\n大 B-TITLE\n队 M-TITLE\n长 E-TITLE\n。 O\n\n二 O\n○ O\n○ O\n七 O\n年 O\n四 O\n月 O\n至 O\n二 O\n○ O\n○ O\n九 O\n年 O\n十 O\n一 O\n月 O\n任 O\n东 B-ORG\n航 M-ORG\n江 M-ORG\n苏 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n二 O\n○ O\n○ O\n九 O\n年 O\n十 O\n二 O\n月 O\n至 O\n二 O\n○ O\n一 O\n二 O\n年 O\n四 O\n月 O\n任 O\n上 B-ORG\n海 M-ORG\n飞 M-ORG\n行 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n二 O\n○ O\n一 O\n二 O\n年 O\n四 O\n月 O\n至 O\n二 O\n○ O\n一 O\n四 O\n年 O\n三 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n飞 M-TITLE\n行 M-TITLE\n师 E-TITLE\n， O\n兼 O\n任 O\n上 B-ORG\n海 M-ORG\n飞 M-ORG\n行 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n二 O\n○ O\n一 O\n四 O\n年 O\n三 O\n月 O\n至 O\n二 O\n○ O\n一 O\n四 O\n年 O\n七 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n飞 M-TITLE\n行 M-TITLE\n师 E-TITLE\n， O\n二 O\n○ O\n一 O\n四 O\n年 O\n七 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n孙 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n民 M-ORG\n用 M-ORG\n航 M-ORG\n空 M-ORG\n飞 M-ORG\n行 M-ORG\n学 M-ORG\n院 M-ORG\n驾 M-ORG\n驶 M-ORG\n系 E-ORG\n飞 B-PRO\n机 M-PRO\n驾 M-PRO\n驶 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n拥 O\n有 O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n高 B-PRO\n级 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n（ O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n） O\n学 O\n位 O\n。 O\n\n楚 B-NAME\n国 M-NAME\n志 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n4 O\n9 O\n年 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n民 O\n族 O\n： O\n汉 S-RACE\n。 O\n\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n通 B-ORG\n化 M-ORG\n纺 M-ORG\n织 M-ORG\n厂 E-ORG\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n通 B-ORG\n化 M-ORG\n地 M-ORG\n区 M-ORG\n轻 M-ORG\n工 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n通 B-ORG\n化 M-ORG\n市 M-ORG\n纺 M-ORG\n织 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n， O\n省 B-ORG\n纺 M-ORG\n织 M-ORG\n工 M-ORG\n业 M-ORG\n厅 E-ORG\n生 B-TITLE\n产 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n通 B-ORG\n化 M-ORG\n市 M-ORG\n政 M-ORG\n协 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n吉 B-ORG\n林 M-ORG\n化 M-ORG\n纤 M-ORG\n化 M-ORG\n纤 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n吉 B-ORG\n林 M-ORG\n化 M-ORG\n纤 M-ORG\n集 M-ORG\n团 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n吉 B-ORG\n林 M-ORG\n化 M-ORG\n纤 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n曹 B-NAME\n中 E-NAME\n先 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n上 B-ORG\n海 M-ORG\n立 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 M-ORG\n涉 M-ORG\n外 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n沪 B-ORG\n港 M-ORG\n财 M-ORG\n务 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n麻 B-NAME\n伯 M-NAME\n平 E-NAME\n先 O\n生 O\n： O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n毕 O\n业 O\n于 O\n武 B-ORG\n汉 M-ORG\n钢 M-ORG\n铁 M-ORG\n学 M-ORG\n院 E-ORG\n选 B-PRO\n矿 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n并 O\n在 O\n瑞 B-ORG\n典 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n( O\nI B-ORG\nF M-ORG\nC E-ORG\n) O\n进 O\n修 O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n， O\n曾 O\n任 O\n长 B-ORG\n春 M-ORG\n黄 M-ORG\n金 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n科 B-TITLE\n研 M-TITLE\n办 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n黄 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n科 B-TITLE\n技 M-TITLE\n处 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n黄 M-ORG\n金 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n中 B-ORG\n金 M-ORG\n黄 M-ORG\n金 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n筹 B-TITLE\n委 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n\n仝 B-NAME\n凤 M-NAME\n广 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n助 B-TITLE\n理 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n自 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n2 O\n8 O\n日 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n2 O\n月 O\n2 O\n7 O\n日 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n郑 B-NAME\n亿 M-NAME\n华 E-NAME\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n广 M-ORG\n州 M-ORG\n市 M-ORG\n环 M-ORG\n境 M-ORG\n保 M-ORG\n护 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n研 B-TITLE\n究 M-TITLE\n人 M-TITLE\n员 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n广 M-ORG\n州 M-ORG\n市 M-ORG\n华 M-ORG\n越 M-ORG\n企 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n广 M-ORG\n州 M-ORG\n市 M-ORG\n捷 M-ORG\n进 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n信 M-ORG\n六 M-ORG\n合 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n汤 B-NAME\n德 M-NAME\n平 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n生 B-PRO\n化 M-PRO\n药 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n执 B-TITLE\n业 M-TITLE\n药 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n医 M-ORG\n药 M-ORG\n工 M-ORG\n业 M-ORG\n销 M-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n中 M-ORG\n美 M-ORG\n施 M-ORG\n贵 M-ORG\n宝 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n医 M-ORG\n药 M-ORG\n集 M-ORG\n团 E-ORG\n原 B-TITLE\n料 M-TITLE\n药 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n医 M-ORG\n药 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n执 M-ORG\n业 M-ORG\n药 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n生 B-ORG\n产 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n采 B-TITLE\n购 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n专 M-TITLE\n家 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n崔 B-NAME\n建 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n任 O\n济 B-ORG\n南 M-ORG\n市 M-ORG\n冶 M-ORG\n金 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n所 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n任 O\n济 B-ORG\n南 M-ORG\n市 M-ORG\n冶 M-ORG\n金 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n所 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n通 B-ORG\n裕 M-ORG\n重 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n济 B-ORG\n南 M-ORG\n市 M-ORG\n冶 M-ORG\n金 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n熊 B-NAME\n澄 M-NAME\n宇 E-NAME\n： O\n男 O\n， O\n美 B-ORG\n国 M-ORG\n杨 M-ORG\n百 M-ORG\n翰 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-EDU\n士 E-EDU\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n新 M-ORG\n闻 M-ORG\n与 M-ORG\n传 M-ORG\n播 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n国 M-ORG\n家 M-ORG\n文 M-ORG\n化 M-ORG\n产 M-ORG\n业 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n新 B-ORG\n媒 M-ORG\n体 M-ORG\n传 M-ORG\n播 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n； O\n\n中 B-ORG\n南 M-ORG\n出 M-ORG\n版 M-ORG\n传 M-ORG\n媒 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n广 M-ORG\n电 M-ORG\n有 M-ORG\n线 M-ORG\n信 M-ORG\n息 M-ORG\n网 M-ORG\n络 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n湖 B-ORG\n南 M-ORG\n电 M-ORG\n广 M-ORG\n传 M-ORG\n媒 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n闫 B-NAME\n建 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n毕 O\n业 O\n于 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 E-ORG\n计 B-PRO\n划 M-PRO\n统 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n国 B-ORG\n旅 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n免 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n国 B-ORG\n旅 M-ORG\n总 M-ORG\n社 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n旅 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n国 B-ORG\n旅 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n孟 B-NAME\n庆 M-NAME\n山 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n4 O\n8 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n为 O\n梅 O\n花 O\n味 O\n精 O\n创 O\n始 O\n人 O\n之 O\n一 O\n， O\n孟 B-NAME\n庆 M-NAME\n山 E-NAME\n先 O\n生 O\n现 O\n任 O\n河 B-TITLE\n北 M-TITLE\n省 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n曾 O\n先 O\n后 O\n被 O\n评 O\n为 O\n河 O\n北 O\n省 O\n农 O\n业 O\n劳 O\n动 O\n模 O\n范 O\n、 O\n河 O\n北 O\n省 O\n“ O\n优 O\n秀 O\n中 O\n国 O\n特 O\n色 O\n社 O\n会 O\n主 O\n义 O\n事 O\n业 O\n建 O\n设 O\n者 O\n” O\n、 O\n霸 O\n州 O\n市 O\n“ O\n明 O\n星 O\n企 O\n业 O\n家 O\n” O\n， O\n并 O\n被 O\n聘 O\n为 O\n“ O\n市 O\n政 O\n府 O\n经 O\n济 O\n顾 O\n问 O\n” O\n。 O\n\n曾 O\n任 O\n梅 B-ORG\n花 M-ORG\n味 M-ORG\n精 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n原 O\n梅 B-ORG\n花 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n梅 B-ORG\n花 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n申 B-NAME\n万 M-NAME\n秋 E-NAME\n， O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n7 O\n0 O\n年 O\n4 O\n月 O\n， O\n毕 O\n业 O\n于 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n获 O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n入 O\n选 O\n清 B-TITLE\n华 M-TITLE\nM M-TITLE\nB M-TITLE\nA M-TITLE\n教 M-TITLE\n育 M-TITLE\n2 M-TITLE\n0 M-TITLE\n年 M-TITLE\n2 M-TITLE\n0 M-TITLE\n人 E-TITLE\n。 O\n\n曾 O\n工 O\n作 O\n于 O\n中 B-ORG\n国 M-ORG\n邮 M-ORG\n电 M-ORG\n工 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n与 M-ORG\n企 M-ORG\n业 M-ORG\n合 M-ORG\n作 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n。 O\n\n中 B-ORG\n关 M-ORG\n村 M-ORG\n科 M-ORG\n技 M-ORG\n园 M-ORG\n区 M-ORG\n海 M-ORG\n淀 M-ORG\n园 M-ORG\n企 M-ORG\n业 M-ORG\n家 M-ORG\n协 M-ORG\n会 M-ORG\n咨 M-ORG\n询 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n关 M-ORG\n村 M-ORG\n科 M-ORG\n技 M-ORG\n园 M-ORG\n区 E-ORG\n2 B-TITLE\n0 M-TITLE\n周 M-TITLE\n年 M-TITLE\n突 M-TITLE\n出 M-TITLE\n贡 M-TITLE\n献 M-TITLE\n奖 M-TITLE\n获 M-TITLE\n得 M-TITLE\n者 E-TITLE\n， O\n南 B-ORG\n通 M-ORG\n市 E-ORG\n科 B-TITLE\n技 M-TITLE\n兴 M-TITLE\n市 M-TITLE\n功 M-TITLE\n臣 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n2 O\n月 O\n创 O\n办 O\n北 B-ORG\n京 M-ORG\n海 M-ORG\n兰 M-ORG\n信 M-ORG\n数 M-ORG\n据 M-ORG\n记 M-ORG\n录 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n任 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n海 B-ORG\n兰 M-ORG\n船 M-ORG\n舶 E-ORG\n、 O\n香 B-ORG\n港 M-ORG\n海 M-ORG\n兰 M-ORG\n信 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n海 B-ORG\n兰 M-ORG\n天 M-ORG\n澄 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n海 M-ORG\n兰 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n三 B-ORG\n沙 M-ORG\n海 M-ORG\n兰 M-ORG\n信 E-ORG\n、 O\n江 B-ORG\n苏 M-ORG\n船 M-ORG\n舶 E-ORG\n、 O\n海 B-ORG\n兰 M-ORG\n劳 M-ORG\n雷 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n言 M-ORG\n盛 M-ORG\n执 M-ORG\n行 M-ORG\n事 M-ORG\n务 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n王 B-NAME\n洵 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n上 B-ORG\n海 M-ORG\n浦 M-ORG\n东 M-ORG\n新 M-ORG\n区 E-ORG\n政 B-TITLE\n协 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n大 B-ORG\n公 M-ORG\n国 M-ORG\n际 M-ORG\n资 M-ORG\n信 M-ORG\n评 M-ORG\n估 M-ORG\n公 M-ORG\n司 M-ORG\n上 M-ORG\n海 M-ORG\n总 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n同 M-ORG\n达 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 M-ORG\n深 M-ORG\n圳 M-ORG\n分 M-ORG\n行 E-ORG\n信 B-TITLE\n贷 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n投 M-ORG\n资 M-ORG\n咨 M-ORG\n询 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n同 M-ORG\n华 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n江 B-ORG\n苏 M-ORG\n南 M-ORG\n大 M-ORG\n光 M-ORG\n电 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n闵 B-NAME\n勇 E-NAME\n： O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n3 O\n年 O\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n机 M-ORG\n系 E-ORG\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n在 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n机 M-ORG\n系 E-ORG\n获 O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n机 M-ORG\n系 M-ORG\n柔 M-ORG\n性 M-ORG\n输 M-ORG\n配 M-ORG\n电 M-ORG\n系 M-ORG\n统 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n、 O\n电 B-ORG\n力 M-ORG\n系 M-ORG\n统 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n、 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n气 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n位 M-ORG\n分 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n席 E-TITLE\n、 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n电 M-ORG\n机 M-ORG\n系 E-ORG\n系 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n低 M-ORG\n碳 M-ORG\n能 M-ORG\n源 M-ORG\n实 M-ORG\n验 M-ORG\n室 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n电 B-ORG\n力 M-ORG\n系 M-ORG\n统 M-ORG\n及 M-ORG\n发 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n安 M-ORG\n全 M-ORG\n控 M-ORG\n制 M-ORG\n和 M-ORG\n仿 M-ORG\n真 M-ORG\n国 M-ORG\n家 M-ORG\n重 M-ORG\n点 M-ORG\n实 M-ORG\n验 M-ORG\n室 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n任 O\n广 B-ORG\n西 M-ORG\n桂 M-ORG\n冠 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n双 M-ORG\n杰 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n钊 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n月 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n兰 B-ORG\n州 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n程 E-PRO\n硕 B-EDU\n士 E-EDU\n； O\n\n高 B-TITLE\n级 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n策 M-TITLE\n划 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n今 O\n担 O\n任 O\n甘 B-ORG\n肃 M-ORG\n天 M-ORG\n行 M-ORG\n健 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n务 O\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n2 O\n月 O\n取 O\n得 O\n独 O\n立 O\n董 O\n事 O\n培 O\n训 O\n证 O\n书 O\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n海 B-ORG\n南 M-ORG\n亚 M-ORG\n太 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n唐 B-NAME\n泓 E-NAME\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n男 O\n， O\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 E-ORG\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n担 O\n任 O\n武 B-ORG\n汉 M-ORG\n市 M-ORG\n政 M-ORG\n府 E-ORG\n外 B-TITLE\n资 M-TITLE\n办 M-TITLE\n综 M-TITLE\n合 M-TITLE\n组 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n任 O\n职 O\n普 B-ORG\n华 M-ORG\n永 M-ORG\n道 E-ORG\n（ O\n伦 O\n敦 O\n- O\n香 O\n港 O\n- O\n上 O\n海 O\n） O\n， O\n先 O\n后 O\n担 O\n任 O\n经 B-TITLE\n理 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n今 O\n担 O\n任 O\nC B-ORG\nV M-ORG\nR M-ORG\nD M-ORG\nI M-ORG\nN M-ORG\nC M-ORG\nO M-ORG\n中 M-ORG\n国 M-ORG\n区 E-ORG\n商 B-TITLE\n务 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n至 O\n今 O\n同 O\n时 O\n担 O\n任 O\n加 B-ORG\n商 M-ORG\n英 M-ORG\n可 M-ORG\n金 M-ORG\n属 M-ORG\n（ M-ORG\n上 M-ORG\n海 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n胡 B-NAME\n曙 M-NAME\n光 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n8 O\n1 O\n年 O\n毕 O\n业 O\n于 O\n洪 B-ORG\n都 M-ORG\n机 M-ORG\n械 M-ORG\n厂 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n洪 B-ORG\n都 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n生 B-TITLE\n产 M-TITLE\n处 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n洪 B-ORG\n都 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n生 B-TITLE\n产 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n南 B-ORG\n昌 M-ORG\n飞 M-ORG\n机 M-ORG\n制 M-ORG\n造 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n洪 M-ORG\n都 M-ORG\n航 M-ORG\n空 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n9 O\n8 O\n年 O\n至 O\n今 O\n任 O\n江 B-ORG\n西 M-ORG\n洪 M-ORG\n都 M-ORG\n航 M-ORG\n空 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n有 O\n较 O\n丰 O\n富 O\n的 O\n大 O\n型 O\n企 O\n业 O\n生 O\n产 O\n组 O\n织 O\n管 O\n理 O\n经 O\n验 O\n。 O\n\n本 B-ORG\n公 M-ORG\n司 E-ORG\n一 B-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n卫 M-NAME\n红 E-NAME\n先 O\n生 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n7 O\n0 O\n年 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n今 O\n任 O\n职 O\n于 O\n湖 B-ORG\n南 M-ORG\n尔 M-ORG\n康 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n尔 M-ORG\n康 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n销 B-TITLE\n售 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n佗 B-NAME\n文 M-NAME\n汉 E-NAME\n先 O\n生 O\n： O\n中 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n原 M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n局 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n原 M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n局 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n原 M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n局 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n原 M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n金 M-NAME\n书 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n王 B-NAME\n金 M-NAME\n书 E-NAME\n先 O\n生 O\n自 O\n1 O\n9 O\n8 O\n9 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n福 B-ORG\n建 M-ORG\n南 M-ORG\n平 M-ORG\n太 M-ORG\n阳 M-ORG\n电 M-ORG\n缆 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n车 B-TITLE\n间 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n话 B-TITLE\n缆 M-TITLE\n车 M-TITLE\n间 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n裸 B-TITLE\n线 M-TITLE\n车 M-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n电 B-TITLE\n缆 M-TITLE\n车 M-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n制 M-TITLE\n造 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n企 B-TITLE\n管 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n公 B-ORG\n司 M-ORG\n营 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n南 M-ORG\n平 M-ORG\n太 M-ORG\n阳 M-ORG\n电 M-ORG\n缆 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n艾 B-NAME\n依 M-NAME\n热 M-NAME\n提 M-NAME\n· M-NAME\n麦 M-NAME\n麦 M-NAME\n提 M-NAME\n吐 M-NAME\n尔 M-NAME\n逊 E-NAME\n， O\n男 O\n， O\n维 B-RACE\n吾 M-RACE\n尔 M-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n至 O\n今 O\n在 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n毛 M-ORG\n纺 M-ORG\n织 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n； O\n\n历 O\n任 O\n天 B-ORG\n山 M-ORG\n毛 M-ORG\n纺 M-ORG\n厂 E-ORG\n分 O\n梳 O\n车 O\n间 O\n挡 O\n车 O\n工 O\n作 O\n、 O\n分 B-TITLE\n梳 M-TITLE\n运 M-TITLE\n转 M-TITLE\n班 M-TITLE\n班 M-TITLE\n长 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n供 B-TITLE\n应 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n供 B-TITLE\n应 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n库 M-ORG\n车 M-ORG\n天 M-ORG\n兹 M-ORG\n畜 M-ORG\n牧 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n绒 B-ORG\n毛 M-ORG\n厂 E-ORG\n原 B-TITLE\n料 M-TITLE\n室 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n天 B-ORG\n山 M-ORG\n纺 M-ORG\n织 M-ORG\n绒 M-ORG\n毛 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n毛 M-ORG\n纺 M-ORG\n织 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n寿 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n理 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n享 O\n受 O\n深 O\n圳 O\n市 O\n政 O\n府 O\n特 O\n别 O\n津 O\n贴 O\n， O\n深 O\n圳 O\n市 O\n地 O\n方 O\n级 O\n领 O\n军 O\n人 O\n才 O\n。 O\n\nI B-TITLE\nS M-TITLE\nO M-TITLE\n/ M-TITLE\nT M-TITLE\nC M-TITLE\n1 M-TITLE\n2 M-TITLE\n2 M-TITLE\n/ M-TITLE\nS M-TITLE\nC M-TITLE\n4 M-TITLE\n工 M-TITLE\n作 M-TITLE\n组 M-TITLE\n国 M-TITLE\n际 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n标 M-ORG\n准 M-ORG\n化 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n专 B-TITLE\n家 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n《 B-ORG\n塑 M-ORG\n料 M-ORG\n包 M-ORG\n装 M-ORG\n》 E-ORG\n编 B-TITLE\n委 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n科 M-ORG\n院 M-ORG\n化 M-ORG\n学 M-ORG\n所 M-ORG\n及 M-ORG\n华 M-ORG\n南 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n合 M-ORG\n作 M-ORG\n企 M-ORG\n业 E-ORG\n博 B-TITLE\n士 M-TITLE\n后 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n科 M-ORG\n院 M-ORG\n宁 M-ORG\n波 M-ORG\n材 M-ORG\n料 M-ORG\n所 E-ORG\n、 O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n学 E-ORG\n等 O\n客 B-TITLE\n座 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n中 B-ORG\n山 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n学 E-ORG\n等 O\n硕 B-TITLE\n士 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-TITLE\n士 M-TITLE\n指 M-TITLE\n导 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n印 M-ORG\n刷 M-ORG\n版 M-ORG\n再 M-ORG\n生 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n石 M-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n工 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n通 B-ORG\n产 M-ORG\n丽 M-ORG\n星 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n通 B-ORG\n产 M-ORG\n丽 M-ORG\n星 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n通 B-ORG\n产 M-ORG\n丽 M-ORG\n星 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n通 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n塑 M-ORG\n料 M-ORG\n加 M-ORG\n工 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n绿 M-ORG\n色 M-ORG\n印 M-ORG\n刷 M-ORG\n电 M-ORG\n子 M-ORG\n产 M-ORG\n业 M-ORG\n技 M-ORG\n术 M-ORG\n创 M-ORG\n新 M-ORG\n联 M-ORG\n盟 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n。 O\n\n李 B-NAME\n军 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n9 O\n年 O\n3 O\n月 O\n。 O\n\n自 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n进 O\n入 O\n汇 B-ORG\n金 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n曾 O\n任 O\n国 B-ORG\n际 M-ORG\n商 M-ORG\n业 M-ORG\n信 M-ORG\n贷 M-ORG\n银 M-ORG\n行 M-ORG\n北 M-ORG\n京 M-ORG\n代 M-ORG\n表 M-ORG\n处 E-ORG\n代 B-TITLE\n表 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n法 B-ORG\n国 M-ORG\n巴 M-ORG\n黎 M-ORG\n巴 M-ORG\n银 M-ORG\n行 M-ORG\n中 M-ORG\n国 M-ORG\n代 M-ORG\n表 M-ORG\n处 E-ORG\n副 B-TITLE\n代 M-TITLE\n表 E-TITLE\n、 O\n西 B-ORG\n班 M-ORG\n牙 M-ORG\n对 M-ORG\n外 M-ORG\n银 M-ORG\n行 E-ORG\n银 B-TITLE\n行 M-TITLE\n国 M-TITLE\n际 M-TITLE\n部 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n技 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n技 M-ORG\n证 M-ORG\n券 E-ORG\n研 B-TITLE\n究 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n金 B-TITLE\n融 M-TITLE\n系 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n目 O\n前 O\n还 O\n担 O\n任 O\n申 B-ORG\n银 M-ORG\n万 M-ORG\n国 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n毕 O\n业 O\n于 O\n西 B-ORG\n班 M-ORG\n牙 M-ORG\n马 M-ORG\n德 M-ORG\n里 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n获 O\n经 B-PRO\n济 M-PRO\n管 M-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n林 B-NAME\n江 M-NAME\n南 E-NAME\n女 O\n士 O\n， O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n理 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n至 O\n今 O\n在 O\n公 B-ORG\n司 E-ORG\n任 O\n职 O\n， O\n历 O\n任 O\n本 B-TITLE\n地 M-TITLE\n化 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n本 B-TITLE\n地 M-TITLE\n化 M-TITLE\n部 M-TITLE\n部 M-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n应 B-TITLE\n用 M-TITLE\n系 M-TITLE\n统 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n业 M-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n专 M-TITLE\n员 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n助 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n博 B-ORG\n彦 M-ORG\n科 M-ORG\n技 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n晔 E-NAME\n女 O\n士 O\n， O\n女 O\n， O\n安 B-LOC\n徽 M-LOC\n六 M-LOC\n安 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n毕 O\n业 O\n于 O\n安 B-ORG\n徽 M-ORG\n广 M-ORG\n播 M-ORG\n电 M-ORG\n视 M-ORG\n大 M-ORG\n学 E-ORG\n财 B-PRO\n税 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n国 B-PRO\n民 M-PRO\n经 M-PRO\n济 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n研 B-EDU\n究 M-EDU\n生 E-EDU\n结 O\n业 O\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n国 B-TITLE\n际 M-TITLE\n注 M-TITLE\n册 M-TITLE\n内 M-TITLE\n部 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n， O\n任 O\n海 B-ORG\n口 M-ORG\n市 M-ORG\n城 M-ORG\n建 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n， O\n任 O\n海 B-ORG\n南 M-ORG\n千 M-ORG\n博 M-ORG\n乐 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n， O\n任 O\n海 B-ORG\n南 M-ORG\n农 M-ORG\n垦 M-ORG\n中 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n海 B-ORG\n南 M-ORG\n橡 M-ORG\n胶 E-ORG\n审 B-TITLE\n计 M-TITLE\n风 M-TITLE\n险 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n6 O\n月 O\n任 O\n海 B-ORG\n南 M-ORG\n橡 M-ORG\n胶 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n梁 B-NAME\n中 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n3 O\n年 O\n8 O\n月 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n西 B-ORG\n泵 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n6 O\n月 O\n至 O\n1 O\n9 O\n8 O\n5 O\n年 O\n1 O\n1 O\n月 O\n在 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n西 M-ORG\n峡 M-ORG\n县 M-ORG\n五 M-ORG\n里 M-ORG\n桥 M-ORG\n乡 M-ORG\n燕 M-ORG\n岗 M-ORG\n中 M-ORG\n学 E-ORG\n任 B-TITLE\n教 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n1 O\n2 O\n月 O\n2 O\n0 O\n0 O\n0 O\n年 O\n7 O\n月 O\n在 O\n西 B-ORG\n峡 M-ORG\n汽 M-ORG\n车 M-ORG\n水 M-ORG\n泵 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n曾 O\n任 O\n人 B-TITLE\n事 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n西 M-ORG\n峡 M-ORG\n汽 M-ORG\n车 M-ORG\n水 M-ORG\n泵 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n检 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n月 O\n1 O\n日 O\n起 O\n任 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n西 M-ORG\n峡 M-ORG\n汽 M-ORG\n车 M-ORG\n水 M-ORG\n泵 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n被 O\n评 O\n为 O\n南 O\n阳 O\n市 O\n“ O\n五 O\n一 O\n劳 O\n动 O\n奖 O\n章 O\n” O\n。 O\n\n敖 B-NAME\n治 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n月 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n最 O\n近 O\n五 O\n年 O\n曾 O\n任 O\n泸 B-ORG\n州 M-ORG\n老 M-ORG\n窖 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n已 O\n于 O\n2 O\n0 O\n1 O\n5 O\n年 O\n3 O\n月 O\n4 O\n日 O\n辞 O\n去 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n职 O\n务 O\n。 O\n\n夏 B-NAME\n仲 M-NAME\n昊 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n筑 M-ORG\n第 M-ORG\n六 M-ORG\n工 M-ORG\n程 M-ORG\n局 M-ORG\n第 M-ORG\n四 M-ORG\n建 M-ORG\n筑 M-ORG\n工 M-ORG\n程 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n任 O\n保 B-ORG\n税 M-ORG\n区 M-ORG\n天 M-ORG\n津 M-ORG\n天 M-ORG\n正 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n招 M-ORG\n商 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n历 O\n任 O\n天 B-ORG\n保 M-ORG\n控 M-ORG\n股 E-ORG\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n副 B-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n起 O\n任 O\n天 B-ORG\n津 M-ORG\n天 M-ORG\n保 M-ORG\n基 M-ORG\n建 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n起 O\n兼 O\n任 O\n天 B-ORG\n津 M-ORG\n天 M-ORG\n保 M-ORG\n基 M-ORG\n建 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n天 M-ORG\n保 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n滨 M-ORG\n海 M-ORG\n开 M-ORG\n元 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n天 M-ORG\n保 M-ORG\n基 M-ORG\n建 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n天 M-ORG\n保 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n滨 M-ORG\n海 M-ORG\n开 M-ORG\n元 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n彭 B-NAME\n国 M-NAME\n泉 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n生 O\n于 O\n一 O\n九 O\n六 O\n六 O\n年 O\n十 O\n月 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n华 B-ORG\n电 M-ORG\n滕 M-ORG\n州 M-ORG\n新 M-ORG\n源 M-ORG\n热 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n华 B-ORG\n电 M-ORG\n莱 M-ORG\n州 M-ORG\n风 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n和 O\n华 B-ORG\n电 M-ORG\n内 M-ORG\n蒙 M-ORG\n古 M-ORG\n开 M-ORG\n鲁 M-ORG\n风 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n彭 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n华 B-ORG\n中 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n热 B-PRO\n能 M-PRO\n动 M-PRO\n力 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n在 O\n电 O\n力 O\n生 O\n产 O\n、 O\n管 O\n理 O\n等 O\n方 O\n面 O\n具 O\n有 O\n1 O\n9 O\n年 O\n的 O\n工 O\n作 O\n经 O\n验 O\n。 O\n\n加 O\n入 O\n本 O\n公 O\n司 O\n前 O\n， O\n彭 S-NAME\n先 O\n生 O\n先 O\n后 O\n于 O\n青 B-ORG\n山 M-ORG\n热 M-ORG\n电 M-ORG\n厂 E-ORG\n、 O\n武 B-ORG\n昌 M-ORG\n热 M-ORG\n电 M-ORG\n厂 E-ORG\n、 O\n安 B-ORG\n徽 M-ORG\n华 M-ORG\n电 M-ORG\n芜 M-ORG\n湖 M-ORG\n发 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n朱 B-NAME\n子 M-NAME\n君 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n建 M-ORG\n国 M-ORG\n际 M-ORG\n建 M-ORG\n设 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n企 B-TITLE\n划 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n管 B-TITLE\n理 M-TITLE\n者 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n筑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n海 B-TITLE\n外 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n管 B-TITLE\n理 M-TITLE\n者 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n筑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n业 M-TITLE\n策 M-TITLE\n划 M-TITLE\n与 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n； O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n筑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n业 M-TITLE\n策 M-TITLE\n划 M-TITLE\n与 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n建 M-ORG\n西 M-ORG\n部 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n李 B-NAME\n晓 M-NAME\n擎 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n河 B-ORG\n北 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n汽 B-PRO\n车 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n长 O\n期 O\n从 O\n事 O\n汽 O\n车 O\n整 O\n车 O\n产 O\n品 O\n设 O\n计 O\n、 O\n管 O\n理 O\n和 O\n铝 O\n车 O\n轮 O\n制 O\n造 O\n， O\n曾 O\n任 O\n戴 B-ORG\n卡 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n和 M-TITLE\n产 M-TITLE\n品 M-TITLE\n开 M-TITLE\n发 M-TITLE\n工 M-TITLE\n作 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n汽 M-ORG\n车 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 M-ORG\n车 M-ORG\n轮 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n汽 M-ORG\n车 M-ORG\n标 M-ORG\n准 M-ORG\n化 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 M-ORG\n车 M-ORG\n轮 M-ORG\n分 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n商 B-ORG\n务 M-ORG\n部 E-ORG\n出 B-TITLE\n口 M-TITLE\n援 M-TITLE\n助 M-TITLE\n物 M-TITLE\n资 M-TITLE\n招 M-TITLE\n标 M-TITLE\n评 M-TITLE\n审 M-TITLE\n专 M-TITLE\n家 E-TITLE\n等 O\n职 O\n。 O\n\n王 B-NAME\n文 M-NAME\n霞 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n至 O\n今 O\n先 O\n后 O\n工 O\n作 O\n于 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n博 M-ORG\n爱 M-ORG\n县 M-ORG\n开 M-ORG\n源 M-ORG\n精 M-ORG\n细 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n、 O\n博 B-ORG\n爱 M-ORG\n新 M-ORG\n开 M-ORG\n源 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n现 O\n任 O\n博 B-ORG\n爱 M-ORG\n新 M-ORG\n开 M-ORG\n源 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n发 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n当 O\n选 O\n为 O\n博 B-ORG\n爱 M-ORG\n新 M-ORG\n开 M-ORG\n源 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n振 M-NAME\n刚 E-NAME\n先 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n三 M-ORG\n峡 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n三 M-ORG\n峡 M-ORG\n保 M-ORG\n税 M-ORG\n库 M-ORG\n暨 M-ORG\n宜 M-ORG\n昌 M-ORG\n峡 M-ORG\n润 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n设 B-ORG\n备 M-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n三 B-ORG\n峡 M-ORG\n水 M-ORG\n力 M-ORG\n发 M-ORG\n电 M-ORG\n厂 E-ORG\n筹 B-TITLE\n建 M-TITLE\n处 M-TITLE\n综 M-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n三 B-ORG\n峡 M-ORG\n水 M-ORG\n力 M-ORG\n发 M-ORG\n电 M-ORG\n厂 E-ORG\n综 B-TITLE\n合 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n三 B-ORG\n峡 M-ORG\n水 M-ORG\n力 M-ORG\n发 M-ORG\n电 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n秦 B-NAME\n宏 M-NAME\n武 E-NAME\n先 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n毕 O\n业 O\n于 O\n北 B-ORG\n方 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n统 B-PRO\n计 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n毕 O\n业 O\n于 O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n。 O\n\n历 O\n任 O\n宁 B-ORG\n夏 M-ORG\n星 M-ORG\n日 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n计 B-TITLE\n划 M-TITLE\n企 M-TITLE\n管 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n董 B-TITLE\n秘 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n宁 B-ORG\n夏 M-ORG\n建 M-ORG\n材 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n（ O\n挂 O\n职 O\n） O\n， O\n中 B-ORG\n色 M-ORG\n（ M-ORG\n宁 M-ORG\n夏 M-ORG\n） M-ORG\n东 M-ORG\n方 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n指 M-TITLE\n挥 M-TITLE\n部 M-TITLE\n计 M-TITLE\n划 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n预 B-TITLE\n决 M-TITLE\n算 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n色 M-ORG\n（ M-ORG\n宁 M-ORG\n夏 M-ORG\n） M-ORG\n东 M-ORG\n方 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n宁 B-ORG\n夏 M-ORG\n东 M-ORG\n方 M-ORG\n钽 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n计 B-TITLE\n划 M-TITLE\n企 M-TITLE\n管 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n宁 B-ORG\n夏 M-ORG\n东 M-ORG\n方 M-ORG\n钽 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n杨 B-NAME\n旭 M-NAME\n东 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n业 M-ORG\n学 M-ORG\n校 E-ORG\n， O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n6 O\n月 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n省 M-ORG\n富 M-ORG\n拉 M-ORG\n尔 M-ORG\n基 M-ORG\n发 M-ORG\n电 M-ORG\n总 M-ORG\n厂 E-ORG\n任 O\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n南 B-ORG\n海 M-ORG\n发 M-ORG\n电 M-ORG\n一 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n至 O\n今 O\n在 O\n佛 B-ORG\n山 M-ORG\n电 M-ORG\n器 M-ORG\n照 M-ORG\n明 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n高 M-ORG\n明 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n。 O\n\n第 B-TITLE\n九 M-TITLE\n届 M-TITLE\n广 M-TITLE\n东 M-TITLE\n省 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n汤 B-NAME\n民 M-NAME\n强 E-NAME\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n月 O\n， O\n任 O\n杭 B-ORG\n钢 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n至 O\n今 O\n， O\n任 O\n杭 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n已 O\n离 O\n任 O\n。 O\n\n张 B-NAME\n孟 M-NAME\n青 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n年 O\n来 O\n先 O\n后 O\n主 O\n要 O\n担 O\n任 O\n安 B-ORG\n徽 M-ORG\n合 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n计 B-TITLE\n划 M-TITLE\n信 M-TITLE\n息 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n、 O\n信 B-TITLE\n息 M-TITLE\n化 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n合 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n兼 O\n信 B-TITLE\n息 M-TITLE\n化 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n安 B-ORG\n徽 M-ORG\n合 M-ORG\n力 M-ORG\n物 M-ORG\n流 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n程 B-NAME\n则 M-NAME\n虎 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n山 B-ORG\n东 M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n重 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n法 M-TITLE\n务 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n众 M-ORG\n友 M-ORG\n( M-ORG\n山 M-ORG\n重 M-ORG\n建 M-ORG\n机 M-ORG\n) M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n重 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n( O\n职 O\n工 O\n代 O\n表 O\n) O\n， O\n山 B-ORG\n东 M-ORG\n山 M-ORG\n推 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n山 B-ORG\n推 M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n林 B-NAME\n松 M-NAME\n生 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n4 O\n月 O\n生 O\n， O\n日 B-CONT\n本 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n雪 M-ORG\n人 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n8 O\n月 O\n- O\n1 O\n9 O\n9 O\n1 O\n年 O\n4 O\n月 O\n在 O\n福 B-ORG\n州 M-ORG\n精 M-ORG\n细 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n职 O\n； O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n4 O\n月 O\n- O\n1 O\n9 O\n9 O\n6 O\n年 O\n4 O\n月 O\n就 O\n职 O\n于 O\n日 B-ORG\n本 M-ORG\n特 M-ORG\n殊 M-ORG\n工 M-ORG\n业 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n4 O\n月 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n6 O\n月 O\n就 O\n职 O\n于 O\n山 B-ORG\n城 M-ORG\n工 M-ORG\n业 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n， O\n任 O\n八 B-ORG\n尾 M-ORG\n工 M-ORG\n厂 E-ORG\n工 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n6 O\n月 O\n- O\n2 O\n0 O\n0 O\n5 O\n年 O\n3 O\n月 O\n参 O\n加 O\n山 B-ORG\n城 M-ORG\n工 M-ORG\n业 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n投 O\n资 O\n成 O\n立 O\n的 O\n上 B-ORG\n海 M-ORG\n山 M-ORG\n城 M-ORG\n塑 M-ORG\n胶 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n筹 O\n建 O\n， O\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n- O\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n就 O\n职 O\n于 O\n昭 B-ORG\n和 M-ORG\n精 M-ORG\n机 M-ORG\n械 M-ORG\n工 M-ORG\n业 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n- O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n0 O\n月 O\n就 O\n职 O\n于 O\n黑 B-ORG\n田 M-ORG\n化 M-ORG\n学 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n， O\n派 O\n驻 O\n鹏 B-ORG\n映 M-ORG\n塑 M-ORG\n胶 M-ORG\n（ M-ORG\n深 M-ORG\n圳 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n黄 B-NAME\n金 M-NAME\n陵 E-NAME\n先 O\n生 O\n， O\n毕 O\n业 O\n于 O\n香 B-ORG\n港 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n( O\n原 O\n香 B-ORG\n港 M-ORG\n理 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n) O\n。 O\n\n黄 S-NAME\n先 O\n生 O\n为 O\n英 B-ORG\n国 M-ORG\n特 M-ORG\n许 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n公 M-ORG\n会 E-ORG\n资 B-TITLE\n深 M-TITLE\n会 M-TITLE\n员 E-TITLE\n、 O\n澳 B-ORG\n洲 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n公 M-ORG\n会 E-ORG\n资 B-TITLE\n深 M-TITLE\n会 M-TITLE\n员 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n公 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n以 O\n及 O\n英 B-ORG\n国 M-ORG\n特 M-ORG\n许 M-ORG\n公 M-ORG\n司 M-ORG\n秘 M-ORG\n书 M-ORG\n公 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n。 O\n\n黄 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n8 O\n7 O\n年 O\n至 O\n1 O\n9 O\n9 O\n1 O\n年 O\n期 O\n间 O\n先 O\n后 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n染 M-ORG\n厂 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n( O\n曾 O\n为 O\n香 O\n港 O\n上 O\n市 O\n公 O\n司 O\n) O\n的 O\n集 B-TITLE\n团 M-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n及 O\n凯 B-ORG\n威 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n( O\n曾 O\n为 O\n香 O\n港 O\n上 O\n市 O\n公 O\n司 O\n) O\n的 O\n集 B-TITLE\n团 M-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n于 O\n1 O\n9 O\n9 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n退 O\n休 O\n前 O\n， O\n黄 S-NAME\n先 O\n生 O\n在 O\n百 B-ORG\n富 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n( O\n为 O\n美 O\n国 O\n纳 O\n斯 O\n达 O\n克 O\n股 O\n票 O\n交 O\n易 O\n所 O\n上 O\n市 O\n公 O\n司 O\nB B-ORG\ne M-ORG\nl M-ORG\nF M-ORG\nu M-ORG\ns M-ORG\ne M-ORG\nI M-ORG\nn M-ORG\nc M-ORG\n. E-ORG\n的 O\n子 B-ORG\n公 M-ORG\n司 E-ORG\n) O\n担 O\n任 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n及 O\n顾 B-TITLE\n问 E-TITLE\n职 O\n务 O\n， O\n除 O\n财 O\n务 O\n监 O\n控 O\n工 O\n作 O\n外 O\n， O\n黄 O\n先 O\n生 O\n还 O\n负 O\n责 O\n建 O\n立 O\n公 O\n司 O\n管 O\n治 O\n系 O\n统 O\n及 O\n程 O\n序 O\n， O\n在 O\n财 O\n务 O\n管 O\n理 O\n、 O\n会 O\n计 O\n和 O\n公 O\n司 O\n管 O\n治 O\n方 O\n面 O\n积 O\n累 O\n了 O\n丰 O\n富 O\n的 O\n经 O\n验 O\n。 O\n\n黄 S-NAME\n先 O\n生 O\n自 O\n2 O\n0 O\n0 O\n5 O\n年 O\n6 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n并 O\n担 O\n任 O\n审 B-TITLE\n核 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n赵 B-NAME\n勇 M-NAME\n敏 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n5 B-EDU\n3 M-EDU\n岁 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n曾 O\n任 O\n丹 B-ORG\n东 M-ORG\n化 M-ORG\n学 M-ORG\n纤 M-ORG\n维 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n成 M-TITLE\n本 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n； O\n\n任 O\n丹 B-ORG\n东 M-ORG\n化 M-ORG\n学 M-ORG\n纤 M-ORG\n维 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n任 O\n吉 B-ORG\n林 M-ORG\n化 M-ORG\n纤 M-ORG\n公 M-ORG\n司 M-ORG\n子 M-ORG\n公 M-ORG\n司 M-ORG\n丹 M-ORG\n东 M-ORG\n吉 M-ORG\n丹 M-ORG\n化 M-ORG\n纤 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n拓 M-ORG\n普 M-ORG\n竹 M-ORG\n麻 M-ORG\n产 M-ORG\n业 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n财 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n1 O\n月 O\n起 O\n进 O\n入 O\n公 B-ORG\n司 E-ORG\n， O\n历 O\n任 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n其 O\n与 O\n持 O\n有 O\n公 O\n司 O\n5 O\n％ O\n以 O\n上 O\n股 O\n份 O\n的 O\n股 O\n东 O\n及 O\n实 O\n际 O\n控 O\n制 O\n人 O\n不 O\n存 O\n在 O\n关 O\n联 O\n关 O\n系 O\n。 O\n\n赵 B-NAME\n春 M-NAME\n年 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n未 O\n拥 O\n有 O\n永 O\n久 O\n国 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n， O\n曾 O\n任 O\n丹 B-ORG\n东 M-ORG\n电 M-ORG\n业 M-ORG\n局 E-ORG\n科 B-TITLE\n技 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n盘 B-ORG\n锦 M-ORG\n供 M-ORG\n电 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n沈 B-ORG\n阳 M-ORG\n供 M-ORG\n电 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n辽 B-ORG\n宁 M-ORG\n省 M-ORG\n电 M-ORG\n力 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n产 M-TITLE\n业 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n丹 B-ORG\n东 M-ORG\n欣 M-ORG\n泰 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n任 O\n职 O\n期 O\n限 O\n为 O\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n- O\n2 O\n0 O\n1 O\n6 O\n年 O\n7 O\n月 O\n。 O\n\n钱 B-NAME\n美 M-NAME\n芳 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n月 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n宜 B-ORG\n兴 M-ORG\n万 M-ORG\n昌 M-ORG\n食 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n德 M-ORG\n威 M-ORG\n节 M-ORG\n能 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 E-TITLE\n， O\n舟 B-ORG\n山 M-ORG\n万 M-ORG\n昌 M-ORG\n食 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n内 B-TITLE\n部 M-TITLE\n审 M-TITLE\n计 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n雅 M-ORG\n克 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n晓 M-NAME\n辉 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n中 B-ORG\n石 M-ORG\n化 M-ORG\n洞 M-ORG\n庭 M-ORG\n氮 M-ORG\n肥 M-ORG\n厂 E-ORG\n合 B-TITLE\n成 M-TITLE\n车 M-TITLE\n间 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n凯 M-ORG\n美 M-ORG\n特 M-ORG\n气 M-ORG\n体 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n石 M-ORG\n化 M-ORG\n壳 M-ORG\n牌 M-ORG\n煤 M-ORG\n气 M-ORG\n化 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n运 B-TITLE\n行 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n凯 M-ORG\n美 M-ORG\n特 M-ORG\n气 M-ORG\n体 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n被 O\n评 O\n为 O\n岳 B-ORG\n阳 M-ORG\n楼 M-ORG\n区 E-ORG\n劳 B-TITLE\n动 M-TITLE\n模 M-TITLE\n范 E-TITLE\n。 O\n\n参 O\n与 O\n了 O\n公 O\n司 O\n“ O\n二 O\n氧 O\n化 O\n碳 O\n动 O\n态 O\n减 O\n压 O\n提 O\n纯 O\n技 O\n术 O\n” O\n、 O\n“ O\n低 O\n温 O\n容 O\n器 O\n复 O\n合 O\n保 O\n冷 O\n工 O\n艺 O\n” O\n、 O\n“ O\n一 O\n种 O\n食 O\n品 O\n级 O\n二 O\n氧 O\n化 O\n碳 O\n产 O\n品 O\n的 O\n生 O\n产 O\n方 O\n法 O\n” O\n等 O\n专 O\n利 O\n及 O\n其 O\n他 O\n非 O\n专 O\n利 O\n核 O\n心 O\n技 O\n术 O\n的 O\n开 O\n发 O\n和 O\n研 O\n究 O\n。 O\n\n孟 B-NAME\n颖 M-NAME\n超 E-NAME\n女 O\n士 O\n： O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n烟 B-ORG\n台 M-ORG\n广 M-ORG\n源 M-ORG\n果 M-ORG\n蔬 E-ORG\n干 B-TITLE\n果 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n广 B-ORG\n源 M-ORG\n货 M-ORG\n运 E-ORG\n货 B-TITLE\n代 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n2 O\n0 O\n1 O\n4 O\n年 O\n9 O\n月 O\n任 O\n朗 B-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n干 B-TITLE\n果 M-TITLE\n外 M-TITLE\n贸 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n职 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n天 M-NAME\n倪 E-NAME\n先 O\n生 O\n： O\n现 O\n任 O\n重 B-ORG\n庆 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n薪 B-TITLE\n酬 M-TITLE\n与 M-TITLE\n考 M-TITLE\n核 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n审 B-TITLE\n核 M-TITLE\n（ M-TITLE\n审 M-TITLE\n计 M-TITLE\n） M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n皓 B-ORG\n天 M-ORG\n财 M-ORG\n经 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n创 B-TITLE\n办 M-TITLE\n人 E-TITLE\n及 O\n主 B-TITLE\n席 E-TITLE\n， O\n香 O\n港 O\n上 O\n市 O\n公 O\n司 O\n银 B-ORG\n建 M-ORG\n国 M-ORG\n际 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n及 O\n保 B-ORG\n弘 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n庆 B-ORG\n铃 M-ORG\n汽 M-ORG\n车 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n刘 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n理 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n刘 S-NAME\n先 O\n生 O\n对 O\n国 O\n际 O\n资 O\n本 O\n市 O\n场 O\n及 O\n上 O\n市 O\n后 O\n之 O\n企 O\n业 O\n融 O\n资 O\n、 O\n收 O\n购 O\n兼 O\n并 O\n及 O\n直 O\n接 O\n投 O\n资 O\n等 O\n方 O\n面 O\n拥 O\n有 O\n丰 O\n富 O\n实 O\n战 O\n经 O\n验 O\n。 O\n\n刘 S-NAME\n先 O\n生 O\n凭 O\n借 O\n其 O\n卓 O\n越 O\n的 O\n公 O\n司 O\n管 O\n理 O\n及 O\n出 O\n色 O\n的 O\n经 O\n营 O\n策 O\n略 O\n， O\n于 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n荣 O\n获 O\n《 O\n亚 O\n洲 O\n周 O\n刊 O\n》 O\n颁 O\n发 O\n之 O\n“ O\n世 O\n界 O\n杰 O\n出 O\n青 O\n年 O\n华 O\n商 O\n” O\n大 O\n奖 O\n。 O\n\n刘 S-NAME\n先 O\n生 O\n于 O\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n3 O\n1 O\n日 O\n重 B-ORG\n庆 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n2 O\n0 O\n1 O\n1 O\n年 O\n度 O\n股 O\n东 O\n周 O\n年 O\n大 O\n会 O\n获 O\n选 O\n连 O\n重 B-ORG\n庆 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n徐 B-NAME\n益 M-NAME\n民 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n南 B-ORG\n京 M-ORG\n高 M-ORG\n科 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n栖 M-ORG\n霞 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n南 B-ORG\n京 M-ORG\n栖 M-ORG\n霞 M-ORG\n建 M-ORG\n设 M-ORG\n仙 M-ORG\n林 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n鑫 B-ORG\n元 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n高 M-ORG\n科 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n肖 B-NAME\n松 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n德 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n获 O\n得 O\n多 B-ORG\n特 M-ORG\n蒙 M-ORG\n德 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n程 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\n西 B-ORG\n门 M-ORG\n子 M-ORG\n威 M-ORG\n迪 M-ORG\n欧 M-ORG\n汽 M-ORG\n车 M-ORG\n电 M-ORG\n子 E-ORG\n、 O\n德 B-ORG\n国 M-ORG\n大 M-ORG\n陆 M-ORG\n汽 M-ORG\n车 M-ORG\n亚 M-ORG\n洲 M-ORG\n总 M-ORG\n部 E-ORG\n亚 B-TITLE\n太 M-TITLE\n区 M-TITLE\n执 M-TITLE\n行 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n西 B-ORG\n门 M-ORG\n子 M-ORG\n中 M-ORG\n国 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n输 B-ORG\n配 M-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n西 B-ORG\n门 M-ORG\n子 M-ORG\n基 M-ORG\n础 M-ORG\n设 M-ORG\n施 M-ORG\n与 M-ORG\n城 M-ORG\n市 M-ORG\n业 M-ORG\n务 M-ORG\n领 M-ORG\n域 E-ORG\n亚 B-TITLE\n太 M-TITLE\n区 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n孙 B-NAME\n大 M-NAME\n伟 E-NAME\n先 O\n生 O\n： O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n北 B-ORG\n京 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n孙 S-NAME\n先 O\n生 O\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n- O\n1 O\n9 O\n9 O\n9 O\n年 O\n9 O\n月 O\n在 O\n北 B-ORG\n京 M-ORG\n粮 M-ORG\n食 M-ORG\n集 M-ORG\n团 E-ORG\n组 O\n织 O\n干 O\n部 O\n处 O\n任 O\n科 B-TITLE\n员 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n1 O\n月 O\n- O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n2 O\n月 O\n在 O\n联 B-ORG\n想 M-ORG\n集 M-ORG\n团 E-ORG\n企 O\n业 O\nI O\nT O\n群 O\n组 O\n任 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n2 O\n月 O\n- O\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n在 O\n方 B-ORG\n正 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 E-ORG\n人 O\n力 O\n资 O\n源 O\n部 O\n任 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n在 O\n东 B-ORG\n易 M-ORG\n有 M-ORG\n限 E-ORG\n任 O\n职 O\n， O\n担 O\n任 O\n人 B-TITLE\n力 M-TITLE\n行 M-TITLE\n政 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n现 O\n任 O\n东 B-ORG\n易 M-ORG\n日 M-ORG\n盛 M-ORG\n家 M-ORG\n居 M-ORG\n装 M-ORG\n饰 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n行 M-TITLE\n政 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n张 B-NAME\n焱 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n加 O\n入 O\n软 B-ORG\n控 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n先 O\n后 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n今 O\n， O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n同 O\n时 O\n兼 O\n任 O\n橡 B-ORG\n胶 M-ORG\n谷 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n， O\n青 B-ORG\n岛 M-ORG\n华 M-ORG\n控 M-ORG\n能 M-ORG\n源 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n青 B-ORG\n岛 M-ORG\n软 M-ORG\n控 M-ORG\n机 M-ORG\n电 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n大 B-ORG\n连 M-ORG\n天 M-ORG\n晟 M-ORG\n通 M-ORG\n用 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n蒋 B-NAME\n兴 M-NAME\n灿 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n2 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n金 B-ORG\n科 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n曾 O\n先 O\n后 O\n在 O\n四 B-ORG\n川 M-ORG\n石 M-ORG\n油 M-ORG\n局 M-ORG\n地 M-ORG\n质 M-ORG\n调 M-ORG\n查 M-ORG\n处 E-ORG\n、 O\n四 B-ORG\n川 M-ORG\n石 M-ORG\n油 M-ORG\n局 M-ORG\n仪 M-ORG\n器 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n重 B-ORG\n庆 M-ORG\n公 M-ORG\n共 M-ORG\n电 M-ORG\n车 M-ORG\n公 M-ORG\n司 E-ORG\n秘 B-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n期 O\n间 O\n历 O\n任 O\n重 B-ORG\n庆 M-ORG\n公 M-ORG\n用 M-ORG\n事 M-ORG\n业 M-ORG\n建 M-ORG\n设 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n支 B-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n法 B-TITLE\n定 M-TITLE\n代 M-TITLE\n表 M-TITLE\n人 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n任 O\n重 B-ORG\n庆 M-ORG\n水 M-ORG\n务 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n集 B-TITLE\n团 M-TITLE\n专 M-TITLE\n务 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n起 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n谢 B-NAME\n明 M-NAME\n允 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n大 B-EDU\n专 M-EDU\n毕 M-EDU\n业 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n广 B-ORG\n州 M-ORG\n带 M-ORG\n钢 M-ORG\n总 M-ORG\n厂 E-ORG\n机 B-TITLE\n修 M-TITLE\n车 M-TITLE\n间 M-TITLE\n工 M-TITLE\n人 E-TITLE\n、 O\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n香 B-ORG\n港 M-ORG\n越 M-ORG\n阜 M-ORG\n企 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n外 B-TITLE\n经 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n金 B-ORG\n钧 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n广 B-ORG\n钢 M-ORG\n集 M-ORG\n团 E-ORG\n进 B-TITLE\n出 M-TITLE\n口 M-TITLE\n贸 M-TITLE\n易 M-TITLE\n部 M-TITLE\n常 M-TITLE\n务 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n广 B-ORG\n州 M-ORG\n钢 M-ORG\n铁 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n金 M-ORG\n钧 M-ORG\n国 M-ORG\n际 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n广 B-ORG\n州 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n一 M-NAME\n巍 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n任 O\n职 O\n于 O\n在 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n华 M-ORG\n为 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n曾 O\n任 O\n华 B-ORG\n为 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n西 M-ORG\n班 M-ORG\n牙 M-ORG\n代 M-ORG\n表 M-ORG\n处 E-ORG\n及 O\n东 B-ORG\n欧 M-ORG\n地 M-ORG\n区 M-ORG\n部 E-ORG\n固 B-TITLE\n网 M-TITLE\n销 M-TITLE\n售 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n， O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n同 M-ORG\n创 M-ORG\n伟 M-ORG\n业 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n梁 B-NAME\n侠 E-NAME\n女 O\n士 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n女 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n9 O\n年 O\n9 O\n月 O\n2 O\n8 O\n日 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 E-EDU\n。 O\n\n该 O\n独 O\n立 O\n董 O\n事 O\n由 O\n公 O\n司 O\n董 O\n事 O\n会 O\n提 O\n名 O\n委 O\n员 O\n会 O\n提 O\n名 O\n， O\n经 O\n公 O\n司 O\n2 O\n0 O\n1 O\n2 O\n年 O\n第 O\n二 O\n次 O\n临 O\n时 O\n股 O\n东 O\n大 O\n会 O\n一 O\n致 O\n通 O\n过 O\n， O\n并 O\n经 O\n公 O\n司 O\n2 O\n0 O\n1 O\n2 O\n年 O\n年 O\n度 O\n股 O\n东 O\n大 O\n会 O\n一 O\n致 O\n通 O\n过 O\n， O\n任 O\n期 O\n自 O\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n到 O\n2 O\n0 O\n1 O\n6 O\n年 O\n5 O\n月 O\n。 O\n\n梁 B-NAME\n侠 E-NAME\n女 O\n士 O\n为 O\n公 B-ORG\n司 E-ORG\n现 O\n任 O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n外 O\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n职 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n深 M-ORG\n信 M-ORG\n泰 M-ORG\n丰 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n职 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n深 M-ORG\n信 M-ORG\n泰 M-ORG\n丰 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n委 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n袁 B-NAME\n志 M-NAME\n刚 E-NAME\n， O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n0 O\n月 O\n2 O\n0 O\n日 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n， O\n任 O\n东 B-ORG\n莞 M-ORG\n市 M-ORG\n君 M-ORG\n德 M-ORG\n富 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n3 O\n月 O\n， O\n任 O\n东 B-ORG\n莞 M-ORG\n市 M-ORG\n景 M-ORG\n瑞 M-ORG\n实 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n至 O\n今 O\n， O\n任 O\n广 B-ORG\n汇 M-ORG\n科 M-ORG\n技 M-ORG\n融 M-ORG\n资 M-ORG\n担 M-ORG\n保 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n担 O\n任 O\n广 B-ORG\n东 M-ORG\n银 M-ORG\n禧 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n力 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n北 B-ORG\n京 M-ORG\n邮 M-ORG\n电 M-ORG\n大 M-ORG\n学 E-ORG\n通 B-PRO\n信 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n美 B-ORG\n国 M-ORG\n福 M-ORG\n坦 M-ORG\n莫 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n光 M-ORG\n大 M-ORG\n国 M-ORG\n际 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 M-ORG\n国 M-ORG\n信 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n联 M-ORG\n通 M-ORG\n云 M-ORG\n南 M-ORG\n省 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n供 O\n职 O\n于 O\nI B-ORG\nT M-ORG\nE M-ORG\nL M-ORG\nI M-ORG\nW M-ORG\nE M-ORG\nB M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n中 O\n华 O\n区 O\n） O\n任 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n北 B-ORG\n京 M-ORG\n银 M-ORG\n科 M-ORG\n博 M-ORG\n星 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n佳 M-ORG\n讯 M-ORG\n飞 M-ORG\n鸿 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n黄 B-NAME\n颂 M-NAME\n恩 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n4 O\n3 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n副 B-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n毕 O\n业 O\n于 O\n成 B-ORG\n都 M-ORG\n电 M-ORG\n讯 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 M-ORG\n二 M-ORG\n系 E-ORG\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n工 M-ORG\n业 M-ORG\n学 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n部 E-ORG\n， O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n， O\n获 O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\n国 B-ORG\n防 M-ORG\n科 M-ORG\n工 M-ORG\n委 M-ORG\n第 M-ORG\n七 M-ORG\n○ M-ORG\n五 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n助 B-TITLE\n工 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n电 M-ORG\n子 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n助 B-TITLE\n研 E-TITLE\n、 O\n副 B-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n大 M-ORG\n通 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n工 M-ORG\n程 M-ORG\n咨 M-ORG\n询 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n马 B-ORG\n来 M-ORG\n西 M-ORG\n亚 M-ORG\nG M-ORG\nR M-ORG\nE M-ORG\nE M-ORG\nN M-ORG\nE M-ORG\nV M-ORG\nE M-ORG\nR M-ORG\n公 M-ORG\n司 E-ORG\n特 B-TITLE\n邀 M-TITLE\n工 M-TITLE\n作 M-TITLE\n专 M-TITLE\n家 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n业 M-ORG\n厅 E-ORG\n副 B-TITLE\n厅 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n厅 E-ORG\n助 B-TITLE\n理 M-TITLE\n巡 M-TITLE\n视 M-TITLE\n员 E-TITLE\n； O\n\n第 B-ORG\n八 M-ORG\n届 M-ORG\n福 M-ORG\n建 M-ORG\n省 M-ORG\n政 M-ORG\n协 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n第 B-ORG\n六 M-ORG\n届 M-ORG\n福 M-ORG\n建 M-ORG\n省 M-ORG\n科 M-ORG\n协 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n子 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n\" B-ORG\n数 M-ORG\n字 M-ORG\n福 M-ORG\n建 M-ORG\n\" M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n韩 B-NAME\n保 M-NAME\n新 E-NAME\n先 O\n生 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n1 O\n年 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n加 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n工 B-TITLE\n艺 M-TITLE\n员 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n设 B-TITLE\n备 M-TITLE\n管 M-TITLE\n理 M-TITLE\n员 E-TITLE\n、 O\n大 B-TITLE\n班 M-TITLE\n长 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n太 M-ORG\n阳 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n兖 B-ORG\n州 M-ORG\n市 M-ORG\n旭 M-ORG\n东 M-ORG\n浆 M-ORG\n纸 M-ORG\n销 M-ORG\n售 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n兖 B-ORG\n州 M-ORG\n天 M-ORG\n章 M-ORG\n纸 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n太 M-ORG\n阳 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n新 M-NAME\n胜 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n临 B-ORG\n沂 M-ORG\n江 M-ORG\n泰 M-ORG\n铝 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 O\n事 O\n科 O\n任 O\n劳 B-TITLE\n资 M-TITLE\n员 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n华 B-ORG\n盛 M-ORG\n江 M-ORG\n泉 M-ORG\n集 M-ORG\n团 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n江 M-ORG\n泉 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n乐 B-NAME\n嘉 M-NAME\n明 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n2 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n理 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n、 O\n美 B-ORG\n国 M-ORG\n罗 M-ORG\n特 M-ORG\n格 M-ORG\n斯 M-ORG\n州 M-ORG\n立 M-ORG\n大 M-ORG\n学 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n。 O\n\n曾 O\n先 O\n后 O\n担 O\n任 O\n摩 B-ORG\n托 M-ORG\n罗 M-ORG\n拉 E-ORG\n亚 B-TITLE\n太 M-TITLE\n区 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n摩 B-ORG\n托 M-ORG\n罗 M-ORG\n拉 M-ORG\n中 M-ORG\n国 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n东 B-TITLE\n区 M-TITLE\n销 M-TITLE\n售 M-TITLE\n与 M-TITLE\n市 M-TITLE\n场 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n诺 B-ORG\n基 M-ORG\n亚 M-ORG\n中 M-ORG\n国 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n东 B-TITLE\n区 M-TITLE\n客 M-TITLE\n户 M-TITLE\n及 M-TITLE\n市 M-TITLE\n场 M-TITLE\n运 M-TITLE\n营 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n三 B-ORG\n星 M-ORG\n中 M-ORG\n国 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n三 B-ORG\n星 M-ORG\n电 M-ORG\n子 M-ORG\n中 M-ORG\n国 M-ORG\n区 M-ORG\n移 M-ORG\n动 M-ORG\n通 M-ORG\n信 M-ORG\n事 M-ORG\n业 M-ORG\n部 E-ORG\n销 B-TITLE\n售 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\nA B-ORG\nM M-ORG\nD M-ORG\n中 M-ORG\n国 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\nA B-ORG\nM M-ORG\nD E-ORG\n大 B-TITLE\n中 M-TITLE\n华 M-TITLE\n区 M-TITLE\n销 M-TITLE\n售 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n至 O\n今 O\n担 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n爱 M-ORG\n施 M-ORG\n德 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n爱 M-ORG\n施 M-ORG\n德 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n张 B-NAME\n辉 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n国 M-TITLE\n际 M-TITLE\n财 M-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n师 E-TITLE\n（ O\nS B-TITLE\nI M-TITLE\nF M-TITLE\nM E-TITLE\n） O\n。 O\n\n现 O\n任 O\n宜 B-ORG\n宾 M-ORG\n五 M-ORG\n粮 M-ORG\n液 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n金 M-ORG\n发 M-ORG\n建 M-ORG\n设 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n曾 O\n任 O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n政 M-ORG\n府 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n（ O\n自 O\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n正 B-TITLE\n处 M-TITLE\n级 E-TITLE\n） O\n， O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n政 M-ORG\n府 M-ORG\n驻 M-ORG\n成 M-ORG\n都 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n兼 O\n任 O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n政 M-ORG\n府 E-ORG\n所 O\n属 O\n的 O\n成 B-ORG\n都 M-ORG\n五 M-ORG\n粮 M-ORG\n液 M-ORG\n大 M-ORG\n酒 M-ORG\n店 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n7 O\n月 O\n起 O\n任 O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n8 O\n月 O\n起 O\n任 O\n宜 B-ORG\n宾 M-ORG\n市 M-ORG\n金 M-ORG\n发 M-ORG\n建 M-ORG\n设 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n胡 B-NAME\n刚 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n任 O\n沙 B-ORG\n湾 M-ORG\n盖 M-ORG\n瑞 M-ORG\n乳 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n及 O\n沙 B-ORG\n湾 M-ORG\n天 M-ORG\n润 M-ORG\n生 M-ORG\n物 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n润 M-ORG\n生 M-ORG\n物 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n同 O\n时 O\n兼 O\n任 O\n上 B-ORG\n述 M-ORG\n两 M-ORG\n个 M-ORG\n子 M-ORG\n公 M-ORG\n司 E-ORG\n的 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n润 M-ORG\n乳 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n仁 M-NAME\n虎 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n毕 O\n业 O\n于 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n班 E-EDU\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n振 B-ORG\n东 M-ORG\n集 M-ORG\n团 E-ORG\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 S-NAME\n先 O\n生 O\n自 O\n1 O\n9 O\n9 O\n6 O\n年 O\n加 O\n入 O\n振 B-ORG\n东 M-ORG\n集 M-ORG\n团 E-ORG\n以 O\n来 O\n， O\n长 O\n期 O\n负 O\n责 O\n集 O\n团 O\n财 O\n务 O\n工 O\n作 O\n， O\n历 O\n任 O\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n， O\n拥 O\n有 O\n丰 O\n富 O\n的 O\n企 O\n业 O\n财 O\n务 O\n管 O\n理 O\n经 O\n验 O\n。 O\n\n邵 B-NAME\n淑 M-NAME\n婉 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n威 M-ORG\n奇 M-ORG\n材 M-ORG\n料 M-ORG\n电 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n任 O\n职 O\n广 B-ORG\n东 M-ORG\n威 M-ORG\n奇 M-ORG\n材 M-ORG\n料 M-ORG\n电 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n中 B-NAME\n山 M-NAME\n太 M-NAME\n郎 E-NAME\n（ O\nT B-NAME\nA M-NAME\nR M-NAME\nO M-NAME\nN M-NAME\nA M-NAME\nK M-NAME\nA M-NAME\nY M-NAME\nA M-NAME\nM M-NAME\nA E-NAME\n） O\n先 O\n生 O\n1 O\n9 O\n5 O\n5 O\n年 O\n9 O\n月 O\n1 O\n8 O\n日 O\n出 O\n生 O\n， O\n国 B-CONT\n籍 M-CONT\n： M-CONT\n日 M-CONT\n本 E-CONT\n。 O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n3 O\n毕 O\n业 O\n于 O\n早 B-ORG\n稻 M-ORG\n田 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n务 M-ORG\n部 E-ORG\n。 O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n4 O\n月 O\n， O\n任 O\n职 O\n日 B-ORG\n产 M-ORG\n汽 M-ORG\n车 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n7 O\n月 O\n， O\n日 B-ORG\n产 M-ORG\n汽 M-ORG\n车 E-ORG\n中 B-TITLE\n近 M-TITLE\n东 M-TITLE\n南 M-TITLE\n非 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n主 M-TITLE\n担 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n， O\n派 O\n驻 O\n南 B-ORG\n非 M-ORG\n日 M-ORG\n产 E-ORG\n任 O\n经 B-TITLE\n营 M-TITLE\n室 M-TITLE\n室 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n月 O\n产 B-ORG\n汽 M-ORG\n车 E-ORG\n企 B-TITLE\n划 M-TITLE\n室 M-TITLE\n主 M-TITLE\n担 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n4 O\n月 O\n， O\n日 B-ORG\n产 M-ORG\n汽 M-ORG\n车 E-ORG\n企 B-TITLE\n划 M-TITLE\n室 M-TITLE\n主 M-TITLE\n管 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n日 B-ORG\n产 M-ORG\n汽 M-ORG\n车 E-ORG\n中 B-TITLE\n国 M-TITLE\n事 M-TITLE\n业 M-TITLE\n室 M-TITLE\n主 M-TITLE\n管 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n7 O\n月 O\n， O\n派 O\n驻 O\n东 B-ORG\n风 M-ORG\n汽 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n经 B-TITLE\n营 M-TITLE\n规 M-TITLE\n划 M-TITLE\n总 M-TITLE\n部 M-TITLE\n总 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n韩 B-NAME\n豫 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n宁 B-ORG\n夏 M-ORG\n科 M-ORG\n技 M-ORG\n印 M-ORG\n刷 M-ORG\n厂 E-ORG\n会 B-TITLE\n计 E-TITLE\n； O\n\n宁 B-ORG\n夏 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n应 M-ORG\n用 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n开 B-TITLE\n发 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n宁 B-ORG\n夏 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n信 O\n托 O\n部 O\n、 O\n投 O\n资 O\n部 O\n、 O\n信 B-TITLE\n贷 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n宁 B-ORG\n夏 M-ORG\n伊 M-ORG\n斯 M-ORG\n兰 M-ORG\n国 M-ORG\n际 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n物 O\n业 O\n部 O\n、 O\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n伊 B-ORG\n斯 M-ORG\n兰 M-ORG\n国 M-ORG\n际 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n沈 B-NAME\n明 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n任 O\n成 B-ORG\n都 M-ORG\n华 M-ORG\n融 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n2 O\n9 O\n日 O\n任 O\n公 B-ORG\n司 E-ORG\n代 B-TITLE\n理 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n2 O\n9 O\n日 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n2 O\n4 O\n日 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n2 O\n9 O\n日 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n1 O\n3 O\n日 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n卢 B-NAME\n立 M-NAME\n新 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n6 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n博 B-EDU\n士 E-EDU\n， O\n大 B-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n任 O\n江 B-ORG\n西 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n师 E-TITLE\n、 O\n教 B-TITLE\n导 M-TITLE\n处 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n起 O\n先 O\n后 O\n在 O\n江 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n机 M-ORG\n械 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n任 O\n教 B-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n院 B-TITLE\n长 E-TITLE\n， O\n兼 O\n任 O\n国 B-ORG\n家 M-ORG\n轻 M-ORG\n工 M-ORG\n业 M-ORG\n包 M-ORG\n装 M-ORG\n制 M-ORG\n品 M-ORG\n质 M-ORG\n量 M-ORG\n监 M-ORG\n督 M-ORG\n检 M-ORG\n测 M-ORG\n中 M-ORG\n心 E-ORG\n和 O\n全 B-ORG\n国 M-ORG\n轻 M-ORG\n工 M-ORG\n业 M-ORG\n包 M-ORG\n装 M-ORG\n标 M-ORG\n准 M-ORG\n化 M-ORG\n中 M-ORG\n心 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n技 B-TITLE\n术 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n任 O\n无 B-ORG\n锡 M-ORG\n华 M-ORG\n东 M-ORG\n重 M-ORG\n型 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n朱 B-NAME\n兆 M-NAME\n麒 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n十 B-ORG\n四 M-ORG\n所 M-ORG\n研 M-ORG\n究 M-ORG\n室 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n国 B-ORG\n睿 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n南 B-ORG\n京 M-ORG\n国 M-ORG\n睿 M-ORG\n微 M-ORG\n波 M-ORG\n器 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n邵 B-NAME\n蓉 E-NAME\n： O\n女 O\n， O\n博 B-EDU\n士 E-EDU\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n执 B-TITLE\n业 M-TITLE\n律 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n大 M-ORG\n学 M-ORG\n国 M-ORG\n际 M-ORG\n医 M-ORG\n药 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n研 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n大 M-ORG\n学 M-ORG\n国 M-ORG\n际 M-ORG\n医 M-ORG\n药 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n， O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n药 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n药 M-ORG\n学 M-ORG\n会 M-ORG\n药 M-ORG\n事 M-ORG\n管 M-ORG\n理 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n药 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n药 M-ORG\n学 M-ORG\n会 M-ORG\n药 M-ORG\n事 M-ORG\n管 M-ORG\n理 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n等 O\n职 O\n。 O\n\n陈 B-NAME\n庇 M-NAME\n昌 E-NAME\n先 O\n生 O\n， O\n广 B-ORG\n东 M-ORG\n科 M-ORG\n龙 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\nM B-EDU\nB M-EDU\nA E-EDU\n， O\nF B-EDU\nC M-EDU\nC M-EDU\nA E-EDU\n， O\nF B-EDU\nH M-EDU\nK M-EDU\nS M-EDU\nA E-EDU\n， O\nA B-EDU\nC M-EDU\nI M-EDU\nS E-EDU\n， O\nH B-EDU\nK M-EDU\nI M-EDU\nC M-EDU\nS E-EDU\n， O\n拥 O\n有 O\n多 O\n年 O\n之 O\n财 O\n务 O\n管 O\n理 O\n、 O\n投 O\n资 O\n及 O\n企 O\n业 O\n融 O\n资 O\n经 O\n验 O\n， O\n曾 O\n任 O\n职 O\n商 B-ORG\n人 M-ORG\n银 M-ORG\n行 E-ORG\n融 B-TITLE\n资 M-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n负 O\n责 O\n企 O\n业 O\n改 O\n组 O\n、 O\n收 O\n购 O\n及 O\n资 O\n本 O\n市 O\n场 O\n运 O\n作 O\n。 O\n\n同 O\n时 O\n在 O\n一 O\n家 O\n国 B-ORG\n际 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n工 O\n作 O\n， O\n专 O\n门 O\n负 O\n责 O\n协 O\n助 O\n企 O\n业 O\n年 O\n审 O\n及 O\n财 O\n务 O\n管 O\n理 O\n工 O\n作 O\n。 O\n\n九 O\n十 O\n年 O\n代 O\n初 O\n， O\n陈 S-NAME\n先 O\n生 O\n在 O\n香 B-ORG\n港 M-ORG\n联 M-ORG\n合 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n担 O\n任 O\n上 B-TITLE\n市 M-TITLE\n科 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n专 O\n职 O\n负 O\n责 O\n审 O\n批 O\n公 O\n司 O\n上 O\n市 O\n安 O\n排 O\n及 O\n协 O\n调 O\n， O\n其 O\n中 O\n包 O\n括 O\n首 O\n次 O\n上 O\n市 O\n、 O\n衍 O\n生 O\n工 O\n具 O\n发 O\n行 O\n、 O\n股 O\n份 O\n回 O\n购 O\n等 O\n。 O\n\n陈 S-NAME\n先 O\n生 O\n为 O\n英 O\n国 B-ORG\n达 M-ORG\n勒 M-ORG\n姆 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n同 O\n时 O\n持 O\n有 O\n香 B-ORG\n港 M-ORG\n岭 M-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n荣 O\n誉 O\n文 O\n凭 O\n、 O\n英 B-ORG\n国 M-ORG\n公 M-ORG\n认 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n公 M-ORG\n会 E-ORG\n及 O\n公 B-ORG\n认 M-ORG\n香 M-ORG\n港 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n公 M-ORG\n会 E-ORG\n资 B-TITLE\n深 M-TITLE\n会 M-TITLE\n员 E-TITLE\n、 O\n英 B-ORG\n国 M-ORG\n及 M-ORG\n香 M-ORG\n港 M-ORG\n公 M-ORG\n司 M-ORG\n秘 M-ORG\n书 M-ORG\n行 M-ORG\n政 M-ORG\n人 M-ORG\n员 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n等 O\n专 O\n业 O\n资 O\n格 O\n。 O\n\n此 O\n外 O\n， O\n还 O\n拥 O\n有 O\n英 B-TITLE\n国 M-TITLE\n及 M-TITLE\n香 M-TITLE\n港 M-TITLE\n执 M-TITLE\n业 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n牌 O\n照 O\n。 O\n\n陈 S-NAME\n先 O\n生 O\n现 O\n为 O\n一 B-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n， O\n亦 O\n为 O\n另 O\n一 O\n香 O\n港 O\n主 O\n板 O\n上 O\n市 O\n公 O\n司 O\n御 B-ORG\n泰 M-ORG\n国 M-ORG\n际 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n万 M-NAME\n山 E-NAME\n先 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n吉 B-ORG\n林 M-ORG\n造 M-ORG\n纸 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n营 B-TITLE\n林 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n吉 B-ORG\n林 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n夏 B-NAME\n玉 M-NAME\n龙 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n8 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n0 O\n5 O\n年 O\n起 O\n， O\n任 O\n青 B-ORG\n松 M-ORG\n建 M-ORG\n化 M-ORG\n全 M-ORG\n资 M-ORG\n子 M-ORG\n公 M-ORG\n司 M-ORG\n库 M-ORG\n车 M-ORG\n青 M-ORG\n松 M-ORG\n水 M-ORG\n泥 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n青 B-ORG\n松 M-ORG\n建 M-ORG\n化 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n唐 B-NAME\n福 M-NAME\n生 E-NAME\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n天 B-ORG\n津 M-ORG\n城 M-ORG\n市 M-ORG\n建 M-ORG\n设 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n获 O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n就 O\n读 O\n于 O\n亚 B-ORG\n洲 M-ORG\n（ M-ORG\n澳 M-ORG\n门 M-ORG\n） M-ORG\n国 M-ORG\n际 M-ORG\n公 M-ORG\n开 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n专 O\n业 O\n， O\n获 O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n原 O\n任 O\n天 B-ORG\n津 M-ORG\n创 M-ORG\n业 M-ORG\n环 M-ORG\n保 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n唐 S-NAME\n先 O\n生 O\n因 O\n工 O\n作 O\n调 O\n动 O\n， O\n于 O\n2 O\n0 O\n1 O\n5 O\n年 O\n2 O\n月 O\n1 O\n6 O\n日 O\n申 O\n请 O\n辞 O\n去 O\n天 B-ORG\n津 M-ORG\n创 M-ORG\n业 M-ORG\n环 M-ORG\n保 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n徐 B-NAME\n尚 M-NAME\n林 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n山 B-LOC\n东 M-LOC\n济 M-LOC\n阳 M-LOC\n人 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n近 O\n五 O\n年 O\n曾 O\n任 O\n山 B-ORG\n东 M-ORG\n银 M-ORG\n座 M-ORG\n商 M-ORG\n城 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n物 B-TITLE\n业 M-TITLE\n本 M-TITLE\n部 M-TITLE\n副 M-TITLE\n本 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n7 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n已 O\n离 O\n任 O\n。 O\n\n翟 B-NAME\n大 M-NAME\n福 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n9 O\n月 O\n- O\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n， O\n\" O\n合 B-ORG\n肥 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n\" O\n管 O\n理 O\n工 O\n程 O\n系 O\n工 B-PRO\n业 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n取 O\n得 O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n同 O\n时 O\n取 O\n得 O\n计 B-PRO\n算 M-PRO\n机 M-PRO\n及 M-PRO\n其 M-PRO\n应 M-PRO\n用 M-PRO\n专 M-PRO\n业 E-PRO\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n资 O\n格 O\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n8 O\n月 O\n- O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n月 O\n， O\n财 B-ORG\n政 M-ORG\n部 M-ORG\n财 M-ORG\n政 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n， O\n会 B-PRO\n计 M-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n同 M-EDU\n等 M-EDU\n学 M-EDU\n力 E-EDU\n进 O\n修 O\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n- O\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n管 M-ORG\n学 M-ORG\n院 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n8 O\n月 O\n- O\n现 O\n在 O\n， O\n任 O\n职 O\n于 O\n华 B-ORG\n夏 M-ORG\n幸 M-ORG\n福 M-ORG\n基 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n董 B-TITLE\n事 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n6 O\n月 O\n- O\n2 O\n0 O\n0 O\n3 O\n年 O\n7 O\n月 O\n， O\n中 B-ORG\n信 M-ORG\n集 M-ORG\n团 M-ORG\n文 M-ORG\n化 M-ORG\n传 M-ORG\n媒 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n计 B-TITLE\n财 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n6 O\n月 O\n- O\n2 O\n0 O\n0 O\n2 O\n年 O\n6 O\n月 O\n， O\n青 B-ORG\n鸟 M-ORG\n寰 M-ORG\n宇 M-ORG\n消 M-ORG\n防 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n6 O\n月 O\n- O\n1 O\n9 O\n9 O\n9 O\n年 O\n6 O\n月 O\n， O\nS B-ORG\nc M-ORG\na M-ORG\nn M-ORG\nw M-ORG\ne M-ORG\nl M-ORG\nl M-ORG\n跨 M-ORG\n国 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n会 B-TITLE\n计 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n- O\n1 O\n9 O\n9 O\n8 O\n年 O\n6 O\n月 O\n， O\n中 B-ORG\n国 M-ORG\n航 M-ORG\n天 M-ORG\n机 M-ORG\n电 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n（ M-ORG\n2 M-ORG\n3 M-ORG\n9 M-ORG\n厂 M-ORG\n） E-ORG\n， O\n电 B-TITLE\n算 M-TITLE\n化 M-TITLE\n组 M-TITLE\n组 M-TITLE\n长 E-TITLE\n。 O\n\n吴 B-NAME\n国 M-NAME\n政 E-NAME\n先 O\n生 O\n， O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n洛 B-ORG\n阳 M-ORG\n亚 M-ORG\n宝 M-ORG\n贸 M-ORG\n易 M-ORG\n公 M-ORG\n司 E-ORG\n上 B-TITLE\n海 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n金 M-ORG\n力 M-ORG\n泰 M-ORG\n百 M-ORG\n货 M-ORG\n商 M-ORG\n行 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n金 B-ORG\n力 M-ORG\n泰 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n福 M-ORG\n田 M-ORG\n产 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n曾 B-NAME\n雪 M-NAME\n琴 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n5 O\n月 O\n1 O\n9 O\n日 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n乐 B-ORG\n山 M-ORG\n师 M-ORG\n范 M-ORG\n学 M-ORG\n院 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n1 O\n月 O\n起 O\n任 O\n热 B-ORG\n键 M-ORG\n科 M-ORG\n技 E-ORG\n生 B-TITLE\n产 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n雷 M-ORG\n柏 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n志 M-NAME\n军 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n毕 O\n业 O\n于 O\n山 B-ORG\n东 M-ORG\n大 M-ORG\n学 E-ORG\n财 B-PRO\n务 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n起 O\n就 O\n职 O\n于 O\n烟 B-ORG\n台 M-ORG\n东 M-ORG\n海 M-ORG\n驾 M-ORG\n驶 M-ORG\n培 M-ORG\n训 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n至 O\n今 O\n就 O\n职 O\n于 O\n公 B-ORG\n司 M-ORG\n报 M-ORG\n运 M-ORG\n物 M-ORG\n流 M-ORG\n部 E-ORG\n。 O\n\n烟 B-ORG\n台 M-ORG\n杰 M-ORG\n瑞 M-ORG\n石 M-ORG\n油 M-ORG\n服 M-ORG\n务 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n钟 M-NAME\n民 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n6 O\n月 O\n出 O\n生 O\n； O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n8 O\n2 O\n年 O\n7 O\n月 O\n就 O\n读 O\n于 O\n昆 B-ORG\n明 M-ORG\n市 M-ORG\n韶 M-ORG\n山 M-ORG\n小 M-ORG\n学 E-ORG\n； O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n8 O\n4 O\n年 O\n7 O\n月 O\n就 O\n读 O\n于 O\n昆 B-ORG\n明 M-ORG\n市 M-ORG\n第 M-ORG\n3 M-ORG\n2 M-ORG\n中 M-ORG\n学 E-ORG\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n就 O\n读 O\n于 O\n昆 B-ORG\n明 M-ORG\n市 M-ORG\n第 M-ORG\n8 M-ORG\n中 M-ORG\n学 E-ORG\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n7 O\n月 O\n就 O\n读 O\n于 O\n电 B-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n昆 M-ORG\n明 M-ORG\n分 M-ORG\n部 E-ORG\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n6 O\n月 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n0 O\n月 O\n在 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n机 M-ORG\n电 M-ORG\n技 M-ORG\n术 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n工 O\n地 O\n区 O\n性 O\n作 O\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n0 O\n月 O\n在 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n技 M-ORG\n术 M-ORG\n进 M-ORG\n步 M-ORG\n开 M-ORG\n发 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n在 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n省 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n汪 B-NAME\n群 M-NAME\n斌 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n7 O\n月 O\n获 O\n得 O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 E-ORG\n的 O\n理 B-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n上 B-ORG\n海 M-ORG\n复 M-ORG\n星 M-ORG\n医 M-ORG\n药 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n汪 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n月 O\n加 O\n入 O\n本 B-ORG\n集 M-ORG\n团 E-ORG\n， O\n自 O\n1 O\n9 O\n9 O\n5 O\n年 O\n5 O\n月 O\n3 O\n1 O\n日 O\n起 O\n获 O\n委 O\n任 O\n为 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n汪 S-NAME\n先 O\n生 O\n曾 O\n于 O\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n期 O\n间 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n之 O\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n并 O\n于 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n期 O\n间 O\n担 O\n任 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n汪 S-NAME\n先 O\n生 O\n现 O\n为 O\n联 O\n交 O\n所 O\n上 O\n市 O\n公 O\n司 O\n复 B-ORG\n星 M-ORG\n国 M-ORG\n际 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n股 O\n份 O\n代 O\n号 O\n： O\n0 O\n0 O\n6 O\n5 O\n6 O\n） O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n及 O\n总 B-TITLE\n裁 E-TITLE\n； O\n\n联 B-ORG\n交 M-ORG\n所 M-ORG\n上 M-ORG\n市 M-ORG\n公 M-ORG\n司 M-ORG\n国 M-ORG\n药 M-ORG\n控 M-ORG\n股 E-ORG\n（ O\n股 O\n份 O\n代 O\n号 O\n： O\n0 O\n1 O\n0 O\n9 O\n9 O\n） O\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n上 B-ORG\n证 M-ORG\n所 M-ORG\n上 M-ORG\n市 M-ORG\n公 M-ORG\n司 M-ORG\n羚 M-ORG\n锐 M-ORG\n制 M-ORG\n药 E-ORG\n（ O\n股 O\n份 O\n代 O\n号 O\n： O\n6 O\n0 O\n0 O\n2 O\n8 O\n5 O\n） O\n董 B-TITLE\n事 E-TITLE\n； O\n\n复 B-ORG\n地 M-ORG\n集 M-ORG\n团 E-ORG\n（ O\n于 O\n2 O\n0 O\n1 O\n1 O\n年 O\n5 O\n月 O\n自 O\n联 O\n交 O\n所 O\n摘 O\n牌 O\n） O\n董 B-TITLE\n事 E-TITLE\n； O\n\n南 B-ORG\n京 M-ORG\n南 M-ORG\n钢 M-ORG\n钢 M-ORG\n铁 M-ORG\n联 M-ORG\n合 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\nF B-ORG\ni M-ORG\nd M-ORG\ne M-ORG\nl M-ORG\ni M-ORG\nd M-ORG\na M-ORG\nd M-ORG\ne M-ORG\n- M-ORG\nC M-ORG\no M-ORG\nm M-ORG\np M-ORG\na M-ORG\nn M-ORG\nh M-ORG\ni M-ORG\na M-ORG\nd M-ORG\ne M-ORG\nS M-ORG\ne M-ORG\ng M-ORG\nu M-ORG\nr M-ORG\no M-ORG\ns M-ORG\n， M-ORG\nS M-ORG\n. M-ORG\nA M-ORG\n. E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\nM B-ORG\nu M-ORG\nl M-ORG\nt M-ORG\ni M-ORG\nc M-ORG\na M-ORG\nr M-ORG\ne M-ORG\n- M-ORG\nS M-ORG\ne M-ORG\ng M-ORG\nu M-ORG\nr M-ORG\no M-ORG\ns M-ORG\nd M-ORG\ne M-ORG\nS M-ORG\na M-ORG\nú M-ORG\nd M-ORG\ne M-ORG\n， M-ORG\nS M-ORG\n. M-ORG\nA M-ORG\n. E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\nC B-ORG\na M-ORG\nr M-ORG\ne M-ORG\ns M-ORG\n- M-ORG\nC M-ORG\no M-ORG\nm M-ORG\np M-ORG\na M-ORG\nn M-ORG\nh M-ORG\ni M-ORG\na M-ORG\nd M-ORG\ne M-ORG\nS M-ORG\ne M-ORG\ng M-ORG\nu M-ORG\nr M-ORG\no M-ORG\ns M-ORG\n， M-ORG\nS M-ORG\n. M-ORG\nA M-ORG\n. E-ORG\n董 B-TITLE\n事 E-TITLE\n及 O\nR B-ORG\nO M-ORG\nC M-ORG\nO M-ORG\ni M-ORG\nl M-ORG\nC M-ORG\no M-ORG\nm M-ORG\np M-ORG\na M-ORG\nn M-ORG\ny M-ORG\nL M-ORG\ni M-ORG\nm M-ORG\ni M-ORG\nt M-ORG\ne M-ORG\nd E-ORG\n董 B-TITLE\n事 E-TITLE\n以 O\n及 O\n鼎 B-ORG\n睿 M-ORG\n再 M-ORG\n保 M-ORG\n险 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n汪 S-NAME\n先 O\n生 O\n现 O\n为 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n生 M-ORG\n物 M-ORG\n医 M-ORG\n药 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n名 B-TITLE\n誉 M-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n商 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n及 O\n上 B-ORG\n海 M-ORG\n湖 M-ORG\n州 M-ORG\n商 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n。 O\n\n方 B-NAME\n兆 M-NAME\n本 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n获 O\n美 B-ORG\n国 M-ORG\n匹 M-ORG\n兹 M-ORG\n堡 M-ORG\n大 M-ORG\n学 E-ORG\n统 B-PRO\n计 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\n温 M-ORG\n哥 M-ORG\n华 M-ORG\nU M-ORG\nB M-ORG\nC M-ORG\n大 M-ORG\n学 E-ORG\n访 O\n问 O\n讲 O\n学 O\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n现 M-ORG\n场 M-ORG\n统 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n美 B-ORG\n国 M-ORG\n当 M-ORG\n代 M-ORG\n统 M-ORG\n计 M-ORG\n索 M-ORG\n引 M-ORG\nC M-ORG\nI M-ORG\nS E-ORG\n通 B-TITLE\n讯 M-TITLE\n编 M-TITLE\n辑 E-TITLE\n， O\n为 O\n美 B-ORG\n国 M-ORG\nA M-ORG\nS M-ORG\nA M-ORG\n、 M-ORG\nI M-ORG\nM M-ORG\nS E-ORG\n会 B-TITLE\n员 E-TITLE\n。 O\n\n程 B-NAME\n家 M-NAME\n安 E-NAME\n先 O\n生 O\n： O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n7 O\n8 O\n年 O\n1 O\n1 O\n月 O\n在 O\n浙 B-ORG\n江 M-ORG\n嘉 M-ORG\n兴 M-ORG\n地 M-ORG\n区 M-ORG\n农 M-ORG\n科 M-ORG\n所 E-ORG\n做 O\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n9 O\n月 O\n在 O\n浙 B-ORG\n江 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n历 O\n任 O\n讲 B-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n系 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n、 O\n校 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n9 O\n月 O\n至 O\n今 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 E-ORG\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n是 O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n稻 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n科 M-ORG\n院 M-ORG\n上 M-ORG\n海 M-ORG\n昆 M-ORG\n虫 M-ORG\n所 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n李 B-NAME\n华 M-NAME\n夏 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n6 O\n月 O\n2 O\n4 O\n日 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n重 B-ORG\n庆 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 M-ORG\n数 M-ORG\n学 M-ORG\n系 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n重 B-ORG\n庆 M-ORG\n大 M-ORG\n学 M-ORG\n贸 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n产 B-PRO\n业 M-PRO\n经 M-PRO\n济 E-PRO\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n今 O\n任 O\n化 B-ORG\n医 M-ORG\n集 M-ORG\n团 E-ORG\n运 B-TITLE\n行 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n重 B-ORG\n庆 M-ORG\n建 M-ORG\n峰 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n\n徐 B-NAME\n玉 M-NAME\n锁 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n毕 O\n业 O\n于 O\n西 B-ORG\n北 M-ORG\n电 M-ORG\n讯 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n雷 B-PRO\n达 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n、 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n月 O\n获 O\n得 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n高 B-PRO\n级 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n（ O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n） O\n。 O\n\n未 O\n拥 O\n有 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n创 O\n建 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n远 M-ORG\n望 M-ORG\n谷 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n1 O\n9 O\n9 O\n9 O\n至 O\n今 O\n任 O\n职 O\n于 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n杨 B-NAME\n掌 M-NAME\n怀 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n中 B-ORG\n原 M-ORG\n电 M-ORG\n测 M-ORG\n仪 M-ORG\n器 M-ORG\n厂 M-ORG\n5 M-ORG\n2 M-ORG\n分 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n技 B-TITLE\n术 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n航 M-ORG\n电 M-ORG\n测 M-ORG\n5 M-ORG\n2 M-ORG\n分 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n5 B-ORG\n8 M-ORG\n分 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n5 B-ORG\n7 M-ORG\n分 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n航 M-ORG\n电 M-ORG\n测 M-ORG\n仪 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n卢 B-NAME\n楚 M-NAME\n隆 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n中 B-ORG\n山 M-ORG\n大 M-ORG\n学 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n课 O\n程 O\n高 O\n级 O\n研 O\n修 O\n班 O\n、 O\n管 O\n理 O\n哲 O\n学 O\n与 O\n企 O\n业 O\n战 O\n略 O\n高 O\n研 O\n班 O\n结 O\n业 O\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n卢 B-NAME\n楚 M-NAME\n隆 E-NAME\n先 O\n生 O\n是 O\n中 O\n国 O\n人 O\n民 O\n政 O\n治 O\n协 O\n商 O\n会 O\n议 O\n第 O\n十 O\n三 O\n届 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n顺 M-ORG\n德 M-ORG\n区 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n获 O\n肇 O\n庆 O\n市 O\n“ O\n荣 O\n誉 O\n市 O\n民 O\n” O\n称 O\n号 O\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n获 O\n“ O\n台 O\n山 O\n市 O\n第 O\n五 O\n批 O\n荣 O\n誉 O\n市 O\n民 O\n” O\n称 O\n号 O\n。 O\n\n卢 B-NAME\n楚 M-NAME\n隆 E-NAME\n先 O\n生 O\n还 O\n担 O\n任 O\n广 B-ORG\n东 M-ORG\n万 M-ORG\n和 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n万 M-ORG\n和 M-ORG\n电 M-ORG\n气 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n万 M-ORG\n和 M-ORG\n新 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n鸿 M-ORG\n特 M-ORG\n精 M-ORG\n密 M-ORG\n技 M-ORG\n术 M-ORG\n（ M-ORG\n台 M-ORG\n山 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n经 B-TITLE\n理 E-TITLE\n； O\n\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n顺 M-ORG\n德 M-ORG\n区 M-ORG\n德 M-ORG\n和 M-ORG\n恒 M-ORG\n信 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n硕 M-ORG\n富 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n南 M-ORG\n方 M-ORG\n中 M-ORG\n宝 M-ORG\n电 M-ORG\n缆 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n南 M-ORG\n港 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n顺 M-ORG\n德 M-ORG\n区 M-ORG\n凯 M-ORG\n汇 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n梅 M-ORG\n赛 M-ORG\n思 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n家 M-ORG\n电 M-ORG\n商 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n顺 M-ORG\n德 M-ORG\n工 M-ORG\n商 M-ORG\n联 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n江 B-ORG\n门 M-ORG\n顺 M-ORG\n德 M-ORG\n商 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n王 B-NAME\n勇 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n现 O\n任 O\n大 B-ORG\n连 M-ORG\n獐 M-ORG\n子 M-ORG\n岛 M-ORG\n渔 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n兼 O\n任 O\n加 B-TITLE\n工 M-TITLE\n事 M-TITLE\n业 M-TITLE\n一 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n. O\n0 O\n3 O\n- O\n2 O\n0 O\n0 O\n7 O\n. O\n1 O\n2 O\n， O\n任 O\n大 B-ORG\n连 M-ORG\n獐 M-ORG\n子 M-ORG\n岛 M-ORG\n渔 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n国 B-TITLE\n际 M-TITLE\n贸 M-TITLE\n易 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n. O\n1 O\n2 O\n- O\n2 O\n0 O\n1 O\n0 O\n. O\n1 O\n2 O\n， O\n任 O\n大 B-ORG\n连 M-ORG\n獐 M-ORG\n子 M-ORG\n岛 M-ORG\n渔 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n加 B-TITLE\n工 M-TITLE\n事 M-TITLE\n业 M-TITLE\n一 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n. O\n1 O\n2 O\n至 O\n今 O\n， O\n任 O\n大 B-ORG\n连 M-ORG\n獐 M-ORG\n子 M-ORG\n岛 M-ORG\n渔 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n兼 O\n任 O\n加 B-TITLE\n工 M-TITLE\n事 M-TITLE\n业 M-TITLE\n一 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n启 M-NAME\n盛 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n土 B-RACE\n家 M-RACE\n族 E-RACE\n， O\n湖 B-LOC\n南 M-LOC\n慈 M-LOC\n利 M-LOC\n人 E-LOC\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n湖 B-ORG\n南 M-ORG\n金 M-ORG\n健 M-ORG\n粮 M-ORG\n油 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n， O\n任 O\n湖 B-ORG\n南 M-ORG\n金 M-ORG\n健 M-ORG\n米 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n任 O\n湖 B-ORG\n南 M-ORG\n金 M-ORG\n健 M-ORG\n粮 M-ORG\n油 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n至 O\n今 O\n， O\n任 O\n金 B-ORG\n健 M-ORG\n米 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n其 O\n中 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n兼 O\n任 O\n湖 B-ORG\n南 M-ORG\n金 M-ORG\n健 M-ORG\n粮 M-ORG\n油 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n王 B-NAME\n丽 M-NAME\n梅 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n曾 O\n就 O\n职 O\n于 O\n深 B-ORG\n圳 M-ORG\n天 M-ORG\n祥 M-ORG\n质 M-ORG\n量 M-ORG\n技 M-ORG\n术 M-ORG\n服 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n美 B-ORG\n国 M-ORG\n友 M-ORG\n邦 M-ORG\n保 M-ORG\n险 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n敦 B-ORG\n天 M-ORG\n礼 M-ORG\n品 M-ORG\n（ M-ORG\n深 M-ORG\n圳 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n上 B-ORG\n海 M-ORG\n汤 M-ORG\n臣 M-ORG\n集 M-ORG\n团 M-ORG\n金 M-ORG\n属 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n江 B-ORG\n苏 M-ORG\n索 M-ORG\n普 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n等 O\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n2 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n起 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n丽 M-NAME\n梅 E-NAME\n女 O\n士 O\n与 O\n本 O\n公 O\n司 O\n控 O\n股 O\n股 O\n东 O\n、 O\n实 O\n际 O\n控 O\n制 O\n人 O\n及 O\n持 O\n有 O\n公 O\n司 O\n5 O\n% O\n以 O\n上 O\n股 O\n份 O\n的 O\n股 O\n东 O\n不 O\n存 O\n在 O\n关 O\n联 O\n关 O\n系 O\n， O\n与 O\n其 O\n他 O\n董 O\n事 O\n、 O\n监 O\n事 O\n、 O\n高 O\n管 O\n不 O\n存 O\n在 O\n关 O\n联 O\n关 O\n系 O\n。 O\n\n除 O\n上 O\n述 O\n任 O\n职 O\n外 O\n， O\n最 O\n近 O\n五 O\n年 O\n未 O\n在 O\n其 O\n他 O\n机 O\n构 O\n担 O\n任 O\n董 O\n事 O\n、 O\n监 O\n事 O\n、 O\n高 O\n级 O\n管 O\n理 O\n人 O\n员 O\n。 O\n\n朱 B-NAME\n军 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n， O\n先 O\n后 O\n担 O\n任 O\n过 O\n江 B-TITLE\n西 M-TITLE\n省 M-TITLE\n宜 M-TITLE\n春 M-TITLE\n市 M-TITLE\n袁 M-TITLE\n州 M-TITLE\n区 M-TITLE\n人 M-TITLE\n大 M-TITLE\n常 M-TITLE\n委 E-TITLE\n、 O\n宜 B-ORG\n春 M-ORG\n市 M-ORG\n工 M-ORG\n商 M-ORG\n联 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n宜 B-ORG\n春 M-ORG\n市 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n， O\n现 O\n任 O\n江 B-TITLE\n西 M-TITLE\n省 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n、 O\n宜 B-TITLE\n春 M-TITLE\n市 M-TITLE\n人 M-TITLE\n大 M-TITLE\n常 M-TITLE\n委 E-TITLE\n、 O\n宜 B-ORG\n春 M-ORG\n市 M-ORG\n无 M-ORG\n党 M-ORG\n派 M-ORG\n高 M-ORG\n级 M-ORG\n知 M-ORG\n识 M-ORG\n分 M-ORG\n子 M-ORG\n联 M-ORG\n谊 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n宜 B-ORG\n春 M-ORG\n市 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n民 M-TITLE\n营 M-TITLE\n经 M-TITLE\n济 M-TITLE\n组 M-TITLE\n组 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n任 O\n江 B-ORG\n西 M-ORG\n特 M-ORG\n种 M-ORG\n电 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n江 B-ORG\n西 M-ORG\n江 M-ORG\n特 M-ORG\n电 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n宜 B-ORG\n春 M-ORG\n江 M-ORG\n特 M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n起 O\n兼 O\n任 O\n江 B-ORG\n西 M-ORG\n江 M-ORG\n特 M-ORG\n锂 M-ORG\n电 M-ORG\n池 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n起 O\n兼 O\n任 O\n江 B-ORG\n西 M-ORG\n江 M-ORG\n特 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n邓 B-NAME\n荔 M-NAME\n遐 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n先 O\n后 O\n任 O\n杭 B-ORG\n州 M-ORG\n巨 M-ORG\n星 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n销 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n6 O\n月 O\n至 O\n今 O\n， O\n任 O\n杭 B-ORG\n州 M-ORG\n巨 M-ORG\n星 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n米 B-NAME\n海 M-NAME\n祥 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n7 O\n月 O\n1 O\n2 O\n日 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n吉 B-ORG\n林 M-ORG\n吉 M-ORG\n恩 M-ORG\n镍 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n销 M-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n吉 B-ORG\n林 M-ORG\n吉 M-ORG\n恩 M-ORG\n镍 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n吉 B-ORG\n林 M-ORG\n吉 M-ORG\n恩 M-ORG\n镍 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n翼 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n0 O\n月 O\n份 O\n任 O\n广 B-ORG\n东 M-ORG\n君 M-ORG\n言 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n1 O\n月 O\n份 O\n至 O\n今 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n大 M-ORG\n成 M-ORG\n（ M-ORG\n深 M-ORG\n圳 M-ORG\n） M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n证 M-ORG\n券 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n网 B-TITLE\n站 M-TITLE\n专 M-TITLE\n栏 M-TITLE\n作 M-TITLE\n者 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n证 M-ORG\n券 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n证 B-TITLE\n券 M-TITLE\n教 M-TITLE\n室 M-TITLE\n丛 M-TITLE\n书 M-TITLE\n之 M-TITLE\n一 M-TITLE\n的 M-TITLE\n《 M-TITLE\n投 M-TITLE\n资 M-TITLE\n者 M-TITLE\n维 M-TITLE\n权 M-TITLE\n2 M-TITLE\n1 M-TITLE\n讲 M-TITLE\n》 M-TITLE\n的 M-TITLE\n作 M-TITLE\n者 E-TITLE\n。 O\n\n曾 O\n担 O\n任 O\n山 B-ORG\n西 M-ORG\n西 M-ORG\n山 M-ORG\n煤 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n0 O\n0 O\n0 O\n9 O\n8 O\n3 O\n） O\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n和 M-TITLE\n第 M-TITLE\n三 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n担 O\n任 O\n山 B-ORG\n西 M-ORG\n焦 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n6 O\n0 O\n0 O\n7 O\n4 O\n0 O\n） O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n中 M-ORG\n诺 M-ORG\n通 M-ORG\n讯 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n恒 M-ORG\n华 M-ORG\n发 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n凌 B-NAME\n伯 M-NAME\n辉 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n华 B-ORG\n南 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n科 M-ORG\n学 M-ORG\n系 E-ORG\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n广 B-ORG\n东 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n项 B-PRO\n目 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 E-EDU\n毕 O\n业 O\n， O\n现 O\n任 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n番 M-ORG\n禺 M-ORG\n通 M-ORG\n信 M-ORG\n管 M-ORG\n道 M-ORG\n建 M-ORG\n设 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n凌 S-NAME\n先 O\n生 O\n曾 O\n在 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 M-ORG\n番 M-ORG\n禺 M-ORG\n支 M-ORG\n行 E-ORG\n从 O\n事 O\n软 O\n件 O\n开 O\n发 O\n和 O\n硬 O\n件 O\n及 O\n网 O\n络 O\n维 O\n护 O\n工 O\n作 O\n， O\n曾 O\n任 O\n职 O\n于 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n番 M-ORG\n禺 M-ORG\n区 M-ORG\n信 M-ORG\n息 M-ORG\n化 M-ORG\n办 M-ORG\n公 M-ORG\n室 M-ORG\n（ M-ORG\n区 M-ORG\n信 M-ORG\n息 M-ORG\n中 M-ORG\n心 M-ORG\n） E-ORG\n， O\n先 O\n后 O\n就 O\n任 O\n广 B-ORG\n州 M-ORG\n星 M-ORG\n海 M-ORG\n传 M-ORG\n媒 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n起 O\n任 O\n佳 B-ORG\n都 M-ORG\n科 M-ORG\n技 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n桂 M-NAME\n霞 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n专 M-EDU\n毕 M-EDU\n业 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n- O\n1 O\n9 O\n9 O\n1 O\n年 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n朝 M-ORG\n付 M-ORG\n公 M-ORG\n司 M-ORG\n下 M-ORG\n属 M-ORG\n基 M-ORG\n层 M-ORG\n店 E-ORG\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n2 O\n- O\n1 O\n9 O\n9 O\n5 O\n年 O\n在 O\n北 B-ORG\n内 M-ORG\n集 M-ORG\n团 M-ORG\n三 M-ORG\n产 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n任 O\n北 B-ORG\n京 M-ORG\n京 M-ORG\n客 M-ORG\n隆 M-ORG\n集 M-ORG\n团 E-ORG\n下 B-TITLE\n属 M-TITLE\n财 M-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n/ O\n总 B-TITLE\n帐 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n加 O\n入 O\n公 B-ORG\n司 E-ORG\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n起 O\n至 O\n今 O\n任 O\n北 B-ORG\n京 M-ORG\n东 M-ORG\n方 M-ORG\n国 M-ORG\n信 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n赵 B-NAME\n小 M-NAME\n青 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n在 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n市 M-ORG\n第 M-ORG\n一 M-ORG\n建 M-ORG\n材 M-ORG\n厂 E-ORG\n、 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n专 M-ORG\n用 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n造 M-ORG\n厂 E-ORG\n工 O\n作 O\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n华 M-ORG\n神 M-ORG\n建 M-ORG\n材 M-ORG\n工 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n郭 B-NAME\n章 M-NAME\n鹏 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n3 O\n月 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n曾 O\n任 O\n中 B-ORG\n共 M-ORG\n北 M-ORG\n京 M-ORG\n市 M-ORG\n委 M-ORG\n办 M-ORG\n公 M-ORG\n厅 E-ORG\n会 B-TITLE\n议 M-TITLE\n处 M-TITLE\n主 M-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n共 M-ORG\n北 M-ORG\n京 M-ORG\n市 M-ORG\n委 M-ORG\n办 M-ORG\n公 M-ORG\n厅 E-ORG\n副 B-TITLE\n处 M-TITLE\n级 E-TITLE\n、 O\n正 B-TITLE\n处 M-TITLE\n级 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n中 B-ORG\n共 M-ORG\n北 M-ORG\n京 M-ORG\n市 M-ORG\n委 M-ORG\n宣 M-ORG\n传 M-ORG\n部 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n张 B-NAME\n元 M-NAME\n领 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n国 B-ORG\n投 M-ORG\n电 M-ORG\n力 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n程 B-NAME\n友 M-NAME\n海 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n青 B-ORG\n海 M-ORG\n省 M-ORG\n黄 M-ORG\n南 M-ORG\n州 M-ORG\n同 M-ORG\n仁 M-ORG\n县 M-ORG\n司 M-ORG\n法 M-ORG\n局 E-ORG\n科 B-TITLE\n员 E-TITLE\n， O\n青 B-ORG\n海 M-ORG\n汇 M-ORG\n元 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n任 O\n律 B-TITLE\n师 E-TITLE\n、 O\n青 B-ORG\n海 M-ORG\n昆 M-ORG\n宇 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n。 O\n\n现 O\n在 O\n青 B-ORG\n海 M-ORG\n夏 M-ORG\n都 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n担 O\n任 O\n律 B-TITLE\n师 E-TITLE\n、 O\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n任 O\n青 B-ORG\n海 M-ORG\n盐 M-ORG\n湖 M-ORG\n钾 M-ORG\n肥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n青 B-ORG\n海 M-ORG\n盐 M-ORG\n湖 M-ORG\n工 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n育 M-NAME\n红 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n律 B-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n在 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n中 M-ORG\n伦 M-ORG\n金 M-ORG\n通 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n执 O\n业 O\n， O\n现 O\n任 O\n牡 B-ORG\n丹 M-ORG\n江 M-ORG\n恒 M-ORG\n丰 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n殷 E-NAME\n： O\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n科 M-ORG\n仪 M-ORG\n系 E-ORG\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n、 O\n历 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n基 M-ORG\n础 M-ORG\n公 M-ORG\n司 E-ORG\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n铁 B-ORG\n道 M-ORG\n部 M-ORG\n大 M-ORG\n桥 M-ORG\n局 M-ORG\n机 M-ORG\n施 M-ORG\n公 M-ORG\n司 E-ORG\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n汕 B-ORG\n头 M-ORG\n东 M-ORG\n南 M-ORG\n科 M-ORG\n技 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n原 O\n任 O\n浙 B-ORG\n江 M-ORG\n浙 M-ORG\n大 M-ORG\n网 M-ORG\n新 M-ORG\n机 M-ORG\n电 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n王 B-NAME\n洋 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n省 M-ORG\n电 M-ORG\n力 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n辰 M-ORG\n能 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n华 M-ORG\n电 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n贝 B-NAME\n政 M-NAME\n新 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n大 B-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n苏 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 E-ORG\n讲 B-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n( O\n财 O\n务 O\n方 O\n向 O\n) O\n、 O\n学 B-ORG\n院 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n管 B-TITLE\n理 M-TITLE\n系 M-TITLE\n党 M-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 E-ORG\n金 B-TITLE\n融 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n苏 B-ORG\n福 M-ORG\n马 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n东 E-NAME\n先 O\n生 O\n： O\n2 O\n0 O\n0 O\n4 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n天 B-ORG\n津 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n自 B-PRO\n动 M-PRO\n化 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n任 O\n职 O\n于 O\n陕 B-ORG\n西 M-ORG\n法 M-ORG\n士 M-ORG\n特 M-ORG\n齿 M-ORG\n轮 M-ORG\n责 M-ORG\n任 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n任 O\n电 B-TITLE\n气 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n进 O\n入 O\n西 B-ORG\n安 M-ORG\n宝 M-ORG\n德 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n西 B-ORG\n安 M-ORG\n宝 M-ORG\n德 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n参 O\n与 O\n研 O\n发 O\n了 O\n包 O\n括 O\n国 O\n内 O\n首 O\n套 O\n9 O\n0 O\n0 O\n0 O\n米 O\n钻 O\n机 O\n交 O\n流 O\n变 O\n频 O\n电 O\n传 O\n动 O\n控 O\n制 O\n系 O\n统 O\n及 O\n世 O\n界 O\n首 O\n套 O\n1 O\n2 O\n0 O\n0 O\n0 O\n米 O\n陆 O\n地 O\n交 O\n流 O\n变 O\n频 O\n钻 O\n机 O\n电 O\n控 O\n系 O\n统 O\n在 O\n内 O\n的 O\n十 O\n多 O\n种 O\n项 O\n目 O\n产 O\n品 O\n。 O\n\n叶 B-NAME\n明 M-NAME\n星 E-NAME\n， O\n男 O\n， O\n高 B-EDU\n中 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n芳 B-ORG\n华 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n获 O\n浙 O\n江 O\n省 O\n办 O\n厂 O\n能 O\n人 O\n、 O\n省 O\n跨 O\n世 O\n纪 O\n改 O\n革 O\n家 O\n、 O\n省 O\n创 O\n业 O\n标 O\n兵 O\n称 O\n号 O\n。 O\n\n李 B-NAME\n世 M-NAME\n壮 E-NAME\n， O\n男 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n建 M-ORG\n筑 M-ORG\n机 M-ORG\n械 M-ORG\n动 M-ORG\n力 M-ORG\n公 M-ORG\n司 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n主 B-TITLE\n任 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n天 M-ORG\n地 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n南 B-TITLE\n湾 M-TITLE\n项 M-TITLE\n目 M-TITLE\n部 M-TITLE\n技 M-TITLE\n术 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n项 B-TITLE\n目 M-TITLE\n开 M-TITLE\n发 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n； O\n\n西 B-ORG\n安 M-ORG\n千 M-ORG\n禧 M-ORG\n国 M-ORG\n际 M-ORG\n置 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n天 M-ORG\n地 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n经 B-TITLE\n营 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n连 B-ORG\n云 M-ORG\n港 M-ORG\n天 M-ORG\n地 M-ORG\n经 M-ORG\n纬 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n西 B-ORG\n安 M-ORG\n千 M-ORG\n禧 M-ORG\n国 M-ORG\n际 M-ORG\n置 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n天 M-ORG\n地 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n小 B-NAME\n六 M-NAME\n修 M-NAME\n一 M-NAME\n郎 E-NAME\n： O\n男 O\n， O\n日 B-CONT\n本 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n1 O\n2 O\n月 O\n1 O\n5 O\n日 O\n生 O\n。 O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n3 O\n月 O\n于 O\n国 B-ORG\n立 M-ORG\n爱 M-ORG\n媛 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n科 M-PRO\n冶 M-PRO\n金 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n同 O\n年 O\n4 O\n月 O\n进 O\n入 O\n大 B-ORG\n阪 M-ORG\n金 M-ORG\n刚 M-ORG\n石 M-ORG\n工 M-ORG\n业 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n； O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n1 O\n月 O\n担 O\n任 O\n锯 B-TITLE\n片 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n技 M-TITLE\n术 M-TITLE\n科 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n月 O\n， O\n担 O\n任 O\n锯 B-TITLE\n片 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n技 M-TITLE\n术 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n月 O\n担 O\n任 O\n锯 B-TITLE\n片 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n兼 O\n静 B-TITLE\n冈 M-TITLE\n制 M-TITLE\n作 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n6 O\n月 O\n担 O\n任 O\n联 B-ORG\n合 M-ORG\n材 M-ORG\n料 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n理 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n0 O\n月 O\n担 O\n任 O\n联 B-ORG\n合 M-ORG\n金 M-ORG\n刚 M-ORG\n石 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n董 B-TITLE\n事 M-TITLE\n锯 M-TITLE\n片 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n月 O\n担 O\n任 O\n联 B-ORG\n合 M-ORG\n金 M-ORG\n刚 M-ORG\n石 M-ORG\n株 M-ORG\n式 M-ORG\n会 M-ORG\n社 E-ORG\n常 B-TITLE\n务 M-TITLE\n董 M-TITLE\n事 E-TITLE\n兼 O\n播 B-ORG\n磨 M-ORG\n制 M-ORG\n作 M-ORG\n所 E-ORG\n业 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n日 B-ORG\n本 M-ORG\n联 M-ORG\n合 M-ORG\n材 M-ORG\n料 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n今 O\n， O\n任 O\n河 B-ORG\n南 M-ORG\n黄 M-ORG\n河 M-ORG\n旋 M-ORG\n风 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n孙 B-NAME\n降 M-NAME\n龙 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n毕 O\n业 O\n于 O\n河 B-ORG\n南 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n能 B-PRO\n源 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n现 O\n任 O\n河 B-ORG\n南 M-ORG\n豫 M-ORG\n光 M-ORG\n金 M-ORG\n铅 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n河 B-ORG\n南 M-ORG\n豫 M-ORG\n光 M-ORG\n金 M-ORG\n铅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n方 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n马 B-ORG\n应 M-ORG\n龙 M-ORG\n药 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n曾 O\n任 O\n马 B-ORG\n应 M-ORG\n龙 M-ORG\n药 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n行 B-TITLE\n政 M-TITLE\n事 M-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n李 B-NAME\n秦 M-NAME\n生 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n4 O\n5 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n交 M-ORG\n通 M-ORG\n厅 M-ORG\n汽 M-ORG\n车 M-ORG\n修 M-ORG\n理 M-ORG\n厂 E-ORG\n生 B-TITLE\n产 M-TITLE\n调 M-TITLE\n度 M-TITLE\n员 E-TITLE\n、 O\n成 B-ORG\n都 M-ORG\n市 M-ORG\n第 M-ORG\n一 M-ORG\n技 M-ORG\n工 M-ORG\n学 M-ORG\n校 M-ORG\n实 M-ORG\n习 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n务 M-TITLE\n行 M-TITLE\n政 M-TITLE\n处 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n开 O\n始 O\n任 O\n四 B-ORG\n川 M-ORG\n国 M-ORG\n栋 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n三 M-TITLE\n、 M-TITLE\n第 M-TITLE\n四 M-TITLE\n、 M-TITLE\n第 M-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n起 O\n2 O\n0 O\n1 O\n4 O\n年 O\n4 O\n月 O\n任 O\n四 B-ORG\n川 M-ORG\n国 M-ORG\n栋 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n七 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n建 M-NAME\n防 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n未 O\n拥 O\n有 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n至 O\n今 O\n在 O\n新 B-ORG\n疆 M-ORG\n西 M-ORG\n部 M-ORG\n牧 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n现 O\n任 O\n新 B-ORG\n疆 M-ORG\n西 M-ORG\n部 M-ORG\n牧 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n建 M-NAME\n福 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n3 O\n年 O\n2 O\n月 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n8 O\n月 O\n起 O\n先 O\n后 O\n担 O\n任 O\n宏 B-ORG\n达 M-ORG\n高 M-ORG\n科 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n9 O\n月 O\n任 O\n宏 B-ORG\n达 M-ORG\n高 M-ORG\n科 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n起 O\n任 O\n宏 B-ORG\n达 M-ORG\n高 M-ORG\n科 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n现 O\n任 O\n宏 B-ORG\n达 M-ORG\n高 M-ORG\n科 E-ORG\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n振 M-NAME\n东 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n6 O\n年 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n聚 B-ORG\n龙 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n曾 O\n任 O\n鞍 B-ORG\n山 M-ORG\n一 M-ORG\n工 M-ORG\n技 M-ORG\n术 M-ORG\n中 M-ORG\n心 E-ORG\n传 B-TITLE\n动 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n聚 B-ORG\n龙 M-ORG\n有 M-ORG\n限 E-ORG\n捆 B-TITLE\n扎 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n综 B-TITLE\n合 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n裘 B-NAME\n伟 M-NAME\n强 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n毕 O\n业 O\n。 O\n\n曾 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n农 M-ORG\n学 M-ORG\n院 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n高 M-ORG\n科 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n中 B-ORG\n纺 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n大 M-ORG\n盛 M-ORG\n资 M-ORG\n产 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n彭 B-NAME\n少 M-NAME\n民 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n3 O\n8 O\n年 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n土 B-TITLE\n木 M-TITLE\n与 M-TITLE\n建 M-TITLE\n筑 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n国 B-TITLE\n家 M-TITLE\n一 M-TITLE\n级 M-TITLE\n结 M-TITLE\n构 M-TITLE\n注 M-TITLE\n册 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n市 M-ORG\n第 M-ORG\n八 M-ORG\n届 M-ORG\n政 M-ORG\n协 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n武 B-ORG\n汉 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n土 M-ORG\n木 M-ORG\n与 M-ORG\n建 M-ORG\n筑 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n土 M-ORG\n木 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n会 M-ORG\n纤 M-ORG\n维 M-ORG\n混 M-ORG\n凝 M-ORG\n土 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n全 B-ORG\n国 M-ORG\n高 M-ORG\n校 M-ORG\n土 M-ORG\n木 M-ORG\n工 M-ORG\n程 M-ORG\n专 M-ORG\n业 M-ORG\n指 M-ORG\n导 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n土 M-ORG\n建 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n， O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n工 M-ORG\n程 M-ORG\n建 M-ORG\n设 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n专 B-TITLE\n家 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n邱 B-NAME\n永 M-NAME\n宁 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n3 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n于 O\n南 B-ORG\n京 M-ORG\n航 M-ORG\n空 M-ORG\n航 M-ORG\n天 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n大 M-ORG\n学 M-ORG\n苏 M-ORG\n州 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n在 O\n读 O\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n正 B-ORG\n茂 M-ORG\n集 M-ORG\n团 M-ORG\n正 M-ORG\n茂 M-ORG\n特 M-ORG\n钢 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n正 B-ORG\n茂 M-ORG\n集 M-ORG\n团 E-ORG\n规 B-TITLE\n划 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n项 M-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n正 B-ORG\n茂 M-ORG\n集 M-ORG\n团 M-ORG\n正 M-ORG\n茂 M-ORG\n日 M-ORG\n立 M-ORG\n造 M-ORG\n船 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n华 B-ORG\n力 M-ORG\n电 M-ORG\n机 M-ORG\n（ M-ORG\n苏 M-ORG\n州 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n凯 B-ORG\n迩 M-ORG\n必 M-ORG\n液 M-ORG\n压 M-ORG\n工 M-ORG\n业 M-ORG\n（ M-ORG\n镇 M-ORG\n江 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n恒 M-ORG\n立 M-ORG\n高 M-ORG\n压 M-ORG\n油 M-ORG\n缸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n立 M-ORG\n新 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n恒 M-ORG\n立 M-ORG\n高 M-ORG\n压 M-ORG\n油 M-ORG\n缸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n恒 B-ORG\n立 M-ORG\n液 M-ORG\n压 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n闻 B-NAME\n连 M-NAME\n茹 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n1 O\n5 O\n日 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n王 B-NAME\n昕 E-NAME\n， O\n律 B-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n在 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n淄 M-ORG\n博 M-ORG\n市 M-ORG\n法 M-ORG\n律 M-ORG\n顾 M-ORG\n问 M-ORG\n处 E-ORG\n、 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n淄 M-ORG\n博 M-ORG\n市 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n山 B-ORG\n东 M-ORG\n致 M-ORG\n公 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n任 O\n律 B-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n同 O\n时 O\n兼 O\n任 O\n山 B-ORG\n东 M-ORG\n天 M-ORG\n矩 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n。 O\n\n张 B-NAME\n晓 M-NAME\n荣 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n上 M-ORG\n会 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n通 M-ORG\n达 M-ORG\n动 M-ORG\n力 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n志 M-NAME\n宇 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n加 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n技 B-TITLE\n术 M-TITLE\n支 M-TITLE\n持 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n开 B-TITLE\n发 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n度 O\n被 O\n评 O\n为 O\n优 O\n秀 O\n干 O\n部 O\n； O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n无 B-TITLE\n线 M-TITLE\n交 M-TITLE\n换 M-TITLE\n产 M-TITLE\n品 M-TITLE\n线 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n唐 B-NAME\n劲 M-NAME\n然 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n生 O\n， O\n历 O\n任 O\n广 B-ORG\n州 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n究 M-TITLE\n部 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n神 B-ORG\n州 M-ORG\n学 M-ORG\n人 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n升 M-ORG\n华 M-ORG\n拜 M-ORG\n克 M-ORG\n生 M-ORG\n物 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n升 M-ORG\n华 M-ORG\n拜 M-ORG\n克 M-ORG\n生 M-ORG\n物 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n壬 M-ORG\n思 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n方 B-NAME\n敏 M-NAME\n宗 E-NAME\n先 O\n生 O\n， O\n中 B-LOC\n国 M-LOC\n台 M-LOC\n湾 M-LOC\n省 M-LOC\n籍 E-LOC\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n任 O\n鼎 B-ORG\n强 M-ORG\n电 M-ORG\n子 M-ORG\n半 M-ORG\n导 M-ORG\n体 E-ORG\n事 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n任 O\n强 B-ORG\n茂 M-ORG\n电 M-ORG\n子 M-ORG\n（ M-ORG\n股 M-ORG\n份 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n台 B-ORG\n湾 M-ORG\n强 M-ORG\n茂 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n裁 E-TITLE\n， O\n台 B-ORG\n湾 M-ORG\n金 M-ORG\n茂 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n0 O\n月 O\n任 O\n宁 B-ORG\n波 M-ORG\n康 M-ORG\n强 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n胡 B-NAME\n颖 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n5 O\n月 O\n生 O\n， O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n、 O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n材 M-ORG\n料 M-ORG\n物 M-ORG\n理 M-ORG\n系 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n创 M-ORG\n格 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n二 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n三 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n国 M-ORG\n寿 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n林 B-NAME\n生 M-NAME\n策 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n审 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n现 O\n任 O\n海 B-ORG\n南 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n华 B-NAME\n伟 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n博 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n下 M-ORG\n关 M-ORG\n发 M-ORG\n电 M-ORG\n厂 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 M-ORG\n金 M-ORG\n融 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n副 B-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n华 B-ORG\n东 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 M-ORG\n东 M-ORG\n方 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n学 M-ORG\n院 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n华 B-ORG\n东 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n房 B-TITLE\n地 M-TITLE\n产 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n1 O\n5 O\n日 O\n起 O\n任 O\n西 B-ORG\n藏 M-ORG\n城 M-ORG\n市 M-ORG\n发 M-ORG\n展 M-ORG\n投 M-ORG\n资 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n2 O\n月 O\n8 O\n日 O\n起 O\n任 O\n武 B-ORG\n汉 M-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n建 M-NAME\n平 E-NAME\n先 O\n生 O\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n远 M-ORG\n洋 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n对 B-ORG\n外 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n大 M-ORG\n学 M-ORG\n国 M-ORG\n际 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n对 B-ORG\n外 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n大 M-ORG\n学 M-ORG\n资 M-ORG\n本 M-ORG\n市 M-ORG\n场 M-ORG\n与 M-ORG\n投 M-ORG\n融 M-ORG\n资 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n曾 O\n任 O\n对 B-ORG\n外 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n大 M-ORG\n学 M-ORG\n国 M-ORG\n际 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n研 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n系 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n等 O\n职 O\n， O\n目 O\n前 O\n兼 O\n任 O\n国 B-ORG\n投 M-ORG\n中 M-ORG\n鲁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n华 B-ORG\n峰 M-ORG\n氨 M-ORG\n纶 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n对 B-ORG\n外 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n大 M-ORG\n学 E-ORG\n跨 B-PRO\n国 M-PRO\n经 M-PRO\n营 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n欧 B-NAME\n炯 M-NAME\n实 E-NAME\n， O\n男 O\n、 O\n1 O\n9 O\n4 O\n7 O\n年 O\n1 O\n月 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n广 B-ORG\n州 M-ORG\n钢 M-ORG\n铁 M-ORG\n厂 E-ORG\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n广 B-ORG\n钢 M-ORG\n集 M-ORG\n团 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n郑 B-NAME\n强 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n于 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n会 B-PRO\n计 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\nA B-EDU\nC M-EDU\nC M-EDU\nA E-EDU\n在 O\n读 O\n， O\n会 B-TITLE\n计 M-TITLE\n中 M-TITLE\n级 E-TITLE\n职 O\n称 O\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n- O\n2 O\n0 O\n0 O\n4 O\n年 O\n任 O\n职 O\n于 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n燃 M-ORG\n料 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n担 O\n任 O\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n核 M-TITLE\n算 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n- O\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n任 O\n职 O\n上 B-ORG\n海 M-ORG\n斯 M-ORG\n米 M-ORG\n克 M-ORG\n建 M-ORG\n筑 M-ORG\n陶 M-ORG\n瓷 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n担 O\n任 O\n财 B-TITLE\n务 M-TITLE\n分 M-TITLE\n析 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n管 B-TITLE\n理 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n7 O\n月 O\n， O\n加 O\n入 O\n公 B-ORG\n司 E-ORG\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n- O\n2 O\n0 O\n1 O\n4 O\n年 O\n8 O\n月 O\n， O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n一 O\n职 O\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n8 O\n月 O\n至 O\n今 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n安 M-ORG\n诺 M-ORG\n其 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n一 O\n职 O\n， O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n8 O\n月 O\n起 O\n担 O\n任 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n干 B-NAME\n勇 E-NAME\n先 O\n生 O\n， O\n工 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n国 B-TITLE\n家 M-TITLE\n有 M-TITLE\n突 M-TITLE\n出 M-TITLE\n贡 M-TITLE\n献 M-TITLE\n中 M-TITLE\n青 M-TITLE\n年 M-TITLE\n专 M-TITLE\n家 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n工 M-TITLE\n程 M-TITLE\n院 M-TITLE\n院 M-TITLE\n士 E-TITLE\n。 O\n\n曾 O\n任 O\n吉 B-ORG\n林 M-ORG\n天 M-ORG\n宝 M-ORG\n矿 M-ORG\n机 M-ORG\n修 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n内 M-ORG\n江 M-ORG\n电 M-ORG\n力 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n， O\n钢 B-ORG\n铁 M-ORG\n研 M-ORG\n究 M-ORG\n总 M-ORG\n院 E-ORG\n冶 B-TITLE\n金 M-TITLE\n研 M-TITLE\n究 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n钢 B-ORG\n铁 M-ORG\n研 M-ORG\n究 M-ORG\n总 M-ORG\n院 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n北 B-ORG\n矿 M-ORG\n磁 M-ORG\n材 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n兼 O\n任 O\n钢 B-ORG\n铁 M-ORG\n研 M-ORG\n究 M-ORG\n总 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n安 B-ORG\n泰 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n新 B-ORG\n冶 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n连 B-ORG\n铸 M-ORG\n技 M-ORG\n术 M-ORG\n国 M-ORG\n家 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n刘 B-NAME\n韵 M-NAME\n洁 E-NAME\n， O\n男 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n物 M-ORG\n理 M-ORG\n系 E-ORG\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n1 O\n1 O\n月 O\n先 O\n后 O\n担 O\n任 O\n邮 B-ORG\n电 M-ORG\n部 M-ORG\n数 M-ORG\n据 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n所 B-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n1 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n8 O\n月 O\n任 O\n邮 B-ORG\n电 M-ORG\n部 M-ORG\n电 M-ORG\n信 M-ORG\n总 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n4 O\n月 O\n担 O\n任 O\n邮 B-ORG\n电 M-ORG\n部 M-ORG\n邮 M-ORG\n政 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n规 M-ORG\n划 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n2 O\n月 O\n先 O\n后 O\n担 O\n任 O\n联 B-ORG\n通 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n韵 M-NAME\n洁 E-NAME\n先 O\n生 O\n有 O\n3 O\n4 O\n年 O\n丰 O\n富 O\n的 O\n电 O\n信 O\n行 O\n业 O\n管 O\n理 O\n及 O\n运 O\n营 O\n经 O\n验 O\n， O\n在 O\n数 O\n据 O\n通 O\n信 O\n技 O\n术 O\n领 O\n域 O\n有 O\n很 O\n高 O\n的 O\n造 O\n诣 O\n。 O\n\n刘 S-NAME\n先 O\n生 O\n于 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n退 O\n休 O\n。 O\n\n卢 B-NAME\n建 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\nM B-EDU\nB M-EDU\nA M-EDU\n硕 M-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n加 O\n入 O\n韶 B-ORG\n钢 E-ORG\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n历 O\n任 O\n韶 B-ORG\n钢 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n至 O\n今 O\n兼 O\n任 O\n韶 B-ORG\n关 M-ORG\n钢 M-ORG\n铁 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n杨 B-NAME\n黎 M-NAME\n升 E-NAME\n先 O\n生 O\n： O\n铜 B-ORG\n陵 M-ORG\n有 M-ORG\n色 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n机 B-TITLE\n械 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n任 O\n铜 B-ORG\n陵 M-ORG\n有 M-ORG\n色 M-ORG\n公 M-ORG\n司 E-ORG\n机 B-TITLE\n动 M-TITLE\n能 M-TITLE\n源 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n任 O\n铜 B-ORG\n陵 M-ORG\n有 M-ORG\n色 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n机 M-TITLE\n动 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n7 O\n月 O\n任 O\n铜 B-ORG\n陵 M-ORG\n有 M-ORG\n色 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n生 B-TITLE\n产 M-TITLE\n机 M-TITLE\n动 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n铜 B-ORG\n陵 M-ORG\n有 M-ORG\n色 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n3 O\n月 O\n任 O\n铜 B-ORG\n陵 M-ORG\n有 M-ORG\n色 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n王 B-NAME\n跃 M-NAME\n堂 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n3 O\n年 O\n生 O\n， O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n具 O\n有 O\n独 O\n立 O\n董 O\n事 O\n资 O\n格 O\n， O\n自 O\n2 O\n0 O\n0 O\n9 O\n年 O\n3 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 S-NAME\n先 O\n生 O\n任 O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n会 B-TITLE\n计 M-TITLE\n专 M-TITLE\n业 M-TITLE\n硕 M-TITLE\n士 M-TITLE\n（ M-TITLE\nM M-TITLE\nP M-TITLE\nA M-TITLE\nc M-TITLE\nc M-TITLE\n） M-TITLE\n教 M-TITLE\n育 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n兼 O\n任 O\n， O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n审 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n实 M-ORG\n证 M-ORG\n会 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n。 O\n\n王 S-NAME\n先 O\n生 O\n曾 O\n在 O\n美 B-ORG\n国 M-ORG\n康 M-ORG\n奈 M-ORG\n尔 M-ORG\n大 M-ORG\n学 E-ORG\n等 O\n做 O\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n， O\n曾 O\n在 O\n国 O\n内 O\n外 O\n著 O\n名 O\n学 O\n术 O\n刊 O\n物 O\n发 O\n表 O\n论 O\n文 O\n4 O\n0 O\n余 O\n篇 O\n， O\n主 O\n持 O\n国 O\n家 O\n级 O\n课 O\n题 O\n如 O\n国 O\n家 O\n自 O\n然 O\n基 O\n金 O\n项 O\n目 O\n、 O\n教 O\n育 O\n部 O\n十 O\n五 O\n规 O\n划 O\n项 O\n目 O\n以 O\n及 O\n财 O\n政 O\n部 O\n重 O\n点 O\n会 O\n计 O\n课 O\n题 O\n等 O\n多 O\n项 O\n， O\n主 O\n持 O\n过 O\n多 O\n项 O\n企 O\n业 O\n财 O\n务 O\n管 O\n理 O\n和 O\n内 O\n部 O\n控 O\n制 O\n课 O\n题 O\n。 O\n\n王 S-NAME\n先 O\n生 O\n现 O\n兼 O\n任 O\n南 B-ORG\n京 M-ORG\n栖 M-ORG\n霞 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n宝 B-ORG\n胜 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n亿 B-ORG\n通 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n及 O\n泰 B-ORG\n尔 M-ORG\n重 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n隋 B-NAME\n玉 M-NAME\n民 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n毕 O\n业 O\n于 O\n长 B-ORG\n江 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n9 O\n月 O\n- O\n2 O\n0 O\n0 O\n4 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n材 M-ORG\n水 M-ORG\n泥 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n2 O\n月 O\n- O\n2 O\n0 O\n0 O\n4 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n材 M-ORG\n汉 M-ORG\n江 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n- O\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n0 O\n月 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n0 O\n月 O\n- O\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n材 M-ORG\n水 M-ORG\n泥 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n彭 B-NAME\n建 M-NAME\n波 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n6 O\n月 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n昆 B-ORG\n明 M-ORG\n盐 M-ORG\n矿 E-ORG\n采 B-TITLE\n卤 M-TITLE\n车 M-TITLE\n间 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n省 M-ORG\n盐 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n安 M-ORG\n宁 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n轻 M-ORG\n纺 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n省 M-ORG\n轻 M-ORG\n工 M-ORG\n业 M-ORG\n供 M-ORG\n销 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n盐 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n天 M-ORG\n塑 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n“ B-ORG\n双 M-ORG\n十 M-ORG\n” M-ORG\n项 M-ORG\n目 M-ORG\n建 M-ORG\n设 M-ORG\n指 M-ORG\n挥 M-ORG\n部 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n指 M-TITLE\n挥 M-TITLE\n长 E-TITLE\n， O\n昆 B-ORG\n明 M-ORG\n盐 M-ORG\n矿 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n盐 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n谭 B-NAME\n秋 M-NAME\n斌 E-NAME\n女 O\n士 O\n： O\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n张 B-ORG\n家 M-ORG\n港 M-ORG\n市 M-ORG\n对 M-ORG\n外 M-ORG\n贸 M-ORG\n易 M-ORG\n公 M-ORG\n司 E-ORG\n秘 B-TITLE\n书 E-TITLE\n、 O\n业 B-TITLE\n务 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n纺 M-ORG\n织 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n职 O\n于 O\n江 B-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n国 M-ORG\n贸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n江 B-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n国 M-ORG\n贸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n国 M-ORG\n贸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n国 M-ORG\n贸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n东 M-ORG\n江 M-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n和 O\n江 B-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n国 M-ORG\n贸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n参 O\n股 O\n公 O\n司 O\n江 B-ORG\n苏 M-ORG\n国 M-ORG\n泰 M-ORG\n国 M-ORG\n际 M-ORG\n集 M-ORG\n团 M-ORG\n华 M-ORG\n昇 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n戴 B-NAME\n波 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n大 B-EDU\n学 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n工 E-TITLE\n， O\n历 O\n任 O\n水 B-ORG\n电 M-ORG\n七 M-ORG\n局 M-ORG\n对 M-ORG\n外 M-ORG\n经 M-ORG\n营 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n计 B-ORG\n经 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n水 B-ORG\n电 M-ORG\n七 M-ORG\n局 M-ORG\n天 M-ORG\n生 M-ORG\n桥 M-ORG\n一 M-ORG\n级 M-ORG\n电 M-ORG\n站 E-ORG\n项 B-TITLE\n目 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n天 B-TITLE\n生 M-TITLE\n桥 M-TITLE\n工 M-TITLE\n程 M-TITLE\n项 M-TITLE\n目 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n水 B-ORG\n电 M-ORG\n七 M-ORG\n局 E-ORG\n局 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n计 B-ORG\n划 M-ORG\n经 M-ORG\n营 M-ORG\n管 M-ORG\n理 M-ORG\n处 E-ORG\n处 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n大 M-ORG\n唐 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n大 M-ORG\n唐 M-ORG\n广 M-ORG\n西 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n龙 B-ORG\n滩 M-ORG\n水 M-ORG\n电 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n广 B-ORG\n西 M-ORG\n桂 M-ORG\n冠 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n大 B-ORG\n唐 M-ORG\n岩 M-ORG\n滩 M-ORG\n水 M-ORG\n力 M-ORG\n发 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n大 B-ORG\n唐 M-ORG\n集 M-ORG\n团 M-ORG\n广 M-ORG\n西 M-ORG\n聚 M-ORG\n源 M-ORG\n电 M-ORG\n力 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n陶 B-NAME\n正 M-NAME\n利 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n浙 B-LOC\n江 M-LOC\n台 M-LOC\n州 M-LOC\n人 E-LOC\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n5 O\n- O\n1 O\n9 O\n9 O\n5 O\n， O\n海 B-ORG\n门 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n6 O\n- O\n1 O\n9 O\n9 O\n7 O\n， O\n海 B-ORG\n正 M-ORG\n药 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n- O\n2 O\n0 O\n0 O\n2 O\n. O\n7 O\n， O\n海 B-ORG\n正 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n. O\n7 O\n- O\n至 O\n今 O\n浙 B-ORG\n江 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n新 B-ORG\n昌 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n兼 O\n抗 B-ORG\n生 M-ORG\n素 M-ORG\n分 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n台 B-ORG\n州 M-ORG\n市 E-ORG\n拔 B-TITLE\n尖 M-TITLE\n人 M-TITLE\n才 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n浙 B-ORG\n江 M-ORG\n省 E-ORG\n劳 B-TITLE\n动 M-TITLE\n模 M-TITLE\n范 E-TITLE\n， O\n曾 O\n获 O\n国 O\n家 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n、 O\n三 O\n等 O\n奖 O\n； O\n\n各 O\n一 O\n次 O\n， O\n化 O\n工 O\n部 O\n科 O\n技 O\n进 O\n步 O\n一 O\n等 O\n奖 O\n一 O\n次 O\n， O\n中 O\n科 O\n院 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n、 O\n浙 O\n江 O\n省 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n各 O\n一 O\n次 O\n， O\n曾 O\n担 O\n当 O\n国 O\n家 O\n七 O\n五 O\n、 O\n八 O\n五 O\n、 O\n九 O\n五 O\n、 O\n十 O\n五 O\n重 O\n大 O\n科 O\n技 O\n攻 O\n关 O\n项 O\n目 O\n主 O\n持 O\n。 O\n\n张 B-NAME\n广 M-NAME\n智 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n曾 O\n就 O\n职 O\n于 O\n洛 B-ORG\n阳 M-ORG\n耐 M-ORG\n火 M-ORG\n材 M-ORG\n料 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n利 M-ORG\n尔 M-ORG\n耐 M-ORG\n火 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n利 M-ORG\n尔 M-ORG\n高 M-ORG\n温 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n石 B-NAME\n英 E-NAME\n女 O\n士 O\n： O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n1 O\n辽 B-ORG\n宁 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n律 M-ORG\n系 E-ORG\n学 B-TITLE\n生 E-TITLE\n1 O\n9 O\n8 O\n7 O\n中 B-ORG\n国 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n学 B-TITLE\n生 E-TITLE\n1 O\n9 O\n9 O\n0 O\n至 O\n今 O\n辽 B-ORG\n宁 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n律 M-ORG\n系 E-ORG\n讲 B-TITLE\n师 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n今 O\n沈 B-ORG\n阳 M-ORG\n机 M-ORG\n床 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n\n段 B-NAME\n连 M-NAME\n吉 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n四 B-ORG\n建 M-ORG\n基 M-ORG\n层 M-ORG\n施 M-ORG\n工 M-ORG\n队 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n四 B-ORG\n建 M-ORG\n黄 M-ORG\n河 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n四 B-ORG\n建 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n建 B-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n工 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n行 B-TITLE\n政 M-TITLE\n综 M-TITLE\n合 M-TITLE\n部 M-TITLE\n常 M-TITLE\n务 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n中 B-ORG\n建 M-ORG\n新 M-ORG\n疆 M-ORG\n建 M-ORG\n工 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n沈 B-NAME\n健 M-NAME\n斌 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n株 M-ORG\n洲 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n株 B-ORG\n洲 M-ORG\n市 M-ORG\n计 M-ORG\n划 M-ORG\n委 M-ORG\n员 M-ORG\n会 M-ORG\n经 M-ORG\n济 M-ORG\n信 M-ORG\n息 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n中 B-ORG\n共 M-ORG\n株 M-ORG\n洲 M-ORG\n市 M-ORG\n委 M-ORG\n组 M-ORG\n织 M-ORG\n部 E-ORG\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n株 B-ORG\n洲 M-ORG\n市 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n投 M-ORG\n资 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n没 O\n有 O\n持 O\n有 O\n本 O\n公 O\n司 O\n股 O\n份 O\n， O\n未 O\n受 O\n过 O\n中 O\n国 O\n证 O\n监 O\n会 O\n及 O\n其 O\n他 O\n有 O\n关 O\n部 O\n门 O\n的 O\n处 O\n罚 O\n和 O\n证 O\n券 O\n交 O\n易 O\n所 O\n的 O\n惩 O\n戒 O\n。 O\n\n盛 B-NAME\n毅 E-NAME\n： O\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n四 O\n川 O\n省 O\n有 O\n突 O\n出 O\n贡 O\n献 O\n专 O\n家 O\n， O\n四 O\n川 O\n省 O\n学 O\n术 O\n、 O\n技 O\n术 O\n带 O\n头 O\n人 O\n， O\n长 O\n期 O\n从 O\n事 O\n经 O\n济 O\n研 O\n究 O\n工 O\n作 O\n。 O\n\n历 O\n任 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n四 B-TITLE\n川 M-TITLE\n经 M-TITLE\n济 M-TITLE\n社 M-TITLE\n会 M-TITLE\n发 M-TITLE\n展 M-TITLE\n重 M-TITLE\n大 M-TITLE\n问 M-TITLE\n题 M-TITLE\n对 M-TITLE\n策 M-TITLE\n研 M-TITLE\n究 M-TITLE\n中 M-TITLE\n心 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n宏 M-ORG\n观 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n， O\n曾 O\n任 O\n四 B-ORG\n川 M-ORG\n全 M-ORG\n兴 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n决 M-ORG\n策 M-ORG\n咨 M-ORG\n询 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n路 M-ORG\n桥 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n迪 M-ORG\n康 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n双 M-ORG\n马 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n长 M-ORG\n城 M-ORG\n国 M-ORG\n际 M-ORG\n动 M-ORG\n漫 M-ORG\n游 M-ORG\n戏 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n舒 B-NAME\n适 M-NAME\n广 E-NAME\n女 O\n士 O\n： O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n长 B-ORG\n沙 M-ORG\n东 M-ORG\n塘 M-ORG\n百 M-ORG\n货 M-ORG\n大 M-ORG\n楼 E-ORG\n主 B-TITLE\n办 M-TITLE\n会 M-TITLE\n计 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n法 B-TITLE\n务 M-TITLE\n审 M-TITLE\n计 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n蕊 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n6 O\n月 O\n生 O\n， O\n二 O\n零 O\n零 O\n六 O\n年 O\n八 O\n月 O\n至 O\n二 O\n零 O\n一 O\n二 O\n年 O\n六 O\n月 O\n期 O\n间 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n为 O\n江 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n首 M-TITLE\n席 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n管 B-PRO\n理 M-PRO\n学 M-PRO\n（ M-PRO\n会 M-PRO\n计 M-PRO\n） E-PRO\n博 B-EDU\n士 E-EDU\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n； O\n\n享 O\n受 O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n特 O\n； O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n准 M-ORG\n则 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n咨 B-TITLE\n询 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n教 M-ORG\n授 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n江 B-ORG\n西 M-ORG\n省 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n江 B-ORG\n西 M-ORG\n省 M-ORG\n内 M-ORG\n部 M-ORG\n审 M-ORG\n计 M-ORG\n师 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n青 M-ORG\n年 M-ORG\n财 M-ORG\n务 M-ORG\n成 M-ORG\n本 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n。 O\n\n在 O\n会 O\n计 O\n理 O\n论 O\n和 O\n实 O\n务 O\n、 O\n审 O\n计 O\n理 O\n论 O\n和 O\n实 O\n务 O\n及 O\n业 O\n绩 O\n评 O\n价 O\n方 O\n面 O\n有 O\n较 O\n深 O\n的 O\n研 O\n究 O\n和 O\n丰 O\n富 O\n的 O\n经 O\n验 O\n。 O\n\n苏 B-NAME\n红 E-NAME\n女 O\n士 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n7 O\n9 O\n年 O\n7 O\n月 O\n， O\n金 B-PRO\n融 M-PRO\n投 M-PRO\n资 M-PRO\n与 M-PRO\n管 M-PRO\n理 E-PRO\n硕 O\n士 O\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n最 O\n近 O\n五 O\n年 O\n先 O\n后 O\n担 O\n任 O\n东 B-ORG\n方 M-ORG\n国 M-ORG\n际 M-ORG\n物 M-ORG\n流 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n法 B-TITLE\n律 M-TITLE\n审 M-TITLE\n计 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n东 B-ORG\n方 M-ORG\n国 M-ORG\n际 M-ORG\n物 M-ORG\n流 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n律 M-TITLE\n审 M-TITLE\n计 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n东 B-TITLE\n方 M-TITLE\n创 M-TITLE\n业 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n治 M-NAME\n海 E-NAME\n， O\n男 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n律 B-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n江 B-ORG\n苏 M-ORG\n盐 M-ORG\n城 M-ORG\n市 M-ORG\n政 M-ORG\n法 M-ORG\n干 M-ORG\n校 E-ORG\n干 B-TITLE\n部 E-TITLE\n、 O\n首 B-ORG\n都 M-ORG\n经 M-ORG\n贸 M-ORG\n大 M-ORG\n学 E-ORG\n讲 B-TITLE\n师 E-TITLE\n； O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n金 M-ORG\n诚 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n高 B-TITLE\n级 M-TITLE\n合 M-TITLE\n伙 M-TITLE\n人 E-TITLE\n、 O\n律 B-TITLE\n师 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n理 M-ORG\n工 M-ORG\n中 M-ORG\n兴 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n方 B-NAME\n慎 M-NAME\n非 E-NAME\n， O\n男 O\n， O\n广 B-ORG\n东 M-ORG\n南 M-ORG\n洋 M-ORG\n电 M-ORG\n缆 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n3 O\n月 O\n进 O\n入 O\n广 B-ORG\n东 M-ORG\n南 M-ORG\n洋 M-ORG\n电 M-ORG\n缆 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n主 O\n管 O\n产 O\n品 O\n研 O\n究 O\n开 O\n发 O\n、 O\n认 O\n证 O\n体 O\n系 O\n管 O\n理 O\n、 O\n技 O\n术 O\n谈 O\n判 O\n、 O\n售 O\n后 O\n服 O\n务 O\n等 O\n工 O\n作 O\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n7 O\n月 O\n任 O\n广 B-ORG\n东 M-ORG\n南 M-ORG\n洋 M-ORG\n电 M-ORG\n缆 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n张 B-NAME\n德 M-NAME\n仲 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n5 O\n月 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n国 M-TITLE\n际 M-TITLE\n商 M-TITLE\n务 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n辽 B-ORG\n宁 M-ORG\n成 M-ORG\n大 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n， O\n辽 B-ORG\n宁 M-ORG\n成 M-ORG\n大 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n唐 B-NAME\n根 M-NAME\n初 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n生 O\n， O\n博 B-EDU\n士 E-EDU\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n上 M-ORG\n海 M-ORG\n硅 M-ORG\n酸 M-ORG\n盐 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n材 B-PRO\n料 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n在 O\n材 O\n料 O\n学 O\n方 O\n面 O\n有 O\n较 O\n深 O\n的 O\n研 O\n究 O\n， O\n在 O\n国 O\n内 O\n外 O\n重 O\n要 O\n专 O\n业 O\n书 O\n刊 O\n发 O\n表 O\n论 O\n文 O\n多 O\n篇 O\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n今 O\n供 O\n职 O\n于 O\n公 B-ORG\n司 E-ORG\n， O\n历 O\n任 O\n深 B-ORG\n圳 M-ORG\n欧 M-ORG\n菲 M-ORG\n光 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n究 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n任 O\n深 B-ORG\n圳 M-ORG\n欧 M-ORG\n菲 M-ORG\n光 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n目 O\n前 O\n系 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n及 M-ORG\n深 M-ORG\n圳 M-ORG\n市 M-ORG\n科 M-ORG\n技 M-ORG\n专 M-ORG\n家 M-ORG\n库 E-ORG\n专 B-TITLE\n家 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n深 B-TITLE\n圳 M-TITLE\n市 M-TITLE\n政 M-TITLE\n府 M-TITLE\n特 M-TITLE\n殊 M-TITLE\n津 M-TITLE\n贴 M-TITLE\n技 M-TITLE\n术 M-TITLE\n专 M-TITLE\n家 E-TITLE\n。 O\n\n广 B-ORG\n东 M-ORG\n省 M-ORG\n精 M-ORG\n密 M-ORG\n光 M-ORG\n电 M-ORG\n薄 M-ORG\n膜 M-ORG\n工 M-ORG\n程 M-ORG\n中 M-ORG\n心 E-ORG\n及 O\n江 B-ORG\n西 M-ORG\n省 M-ORG\n精 M-ORG\n密 M-ORG\n镀 M-ORG\n膜 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n技 B-TITLE\n术 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n李 B-NAME\n令 M-NAME\n红 E-NAME\n先 O\n生 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n3 O\n年 O\n1 O\n1 O\n月 O\n， O\n浙 B-LOC\n江 M-LOC\n宁 M-LOC\n波 M-LOC\n人 E-LOC\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n1 O\n年 O\n5 O\n月 O\n任 O\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n江 M-ORG\n北 M-ORG\n区 M-ORG\n委 E-ORG\n副 B-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n政 B-TITLE\n法 M-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n5 O\n月 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n1 O\n月 O\n任 O\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n江 M-ORG\n北 M-ORG\n区 M-ORG\n委 E-ORG\n副 B-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n区 B-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n任 O\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n经 M-ORG\n济 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n工 M-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n任 O\n宁 B-ORG\n波 M-ORG\n港 M-ORG\n务 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n宁 B-ORG\n波 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n并 O\n任 O\n中 B-ORG\n共 M-ORG\n宁 M-ORG\n波 M-ORG\n市 M-ORG\n第 M-ORG\n十 M-ORG\n二 M-ORG\n届 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n港 M-ORG\n口 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n是 O\n第 B-TITLE\n十 M-TITLE\n一 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n十 M-TITLE\n二 M-TITLE\n届 M-TITLE\n全 M-TITLE\n国 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n杜 B-NAME\n新 M-NAME\n民 E-NAME\n， O\n男 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n东 B-ORG\n乡 M-ORG\n铜 M-ORG\n矿 M-ORG\n学 M-ORG\n校 E-ORG\n教 B-TITLE\n师 E-TITLE\n， O\n东 B-ORG\n乡 M-ORG\n铜 M-ORG\n矿 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n铜 M-ORG\n业 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n铜 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n现 O\n任 O\n宁 B-ORG\n波 M-ORG\n兴 M-ORG\n业 M-ORG\n铜 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n获 O\n得 O\n中 O\n国 O\n证 O\n监 O\n会 O\n\" O\n上 O\n市 O\n公 O\n司 O\n独 O\n立 O\n董 O\n事 O\n\" O\n资 O\n格 O\n证 O\n书 O\n。 O\n\n杨 B-NAME\n丽 M-NAME\n云 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n淮 M-ORG\n阴 M-ORG\n第 M-ORG\n一 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n、 O\n南 B-ORG\n宁 M-ORG\n第 M-ORG\n三 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n国 B-ORG\n宇 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n朱 B-NAME\n润 M-NAME\n资 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n海 B-ORG\n峡 M-ORG\n股 M-ORG\n份 E-ORG\n“ O\n椰 O\n香 O\n公 O\n主 O\n” O\n、 O\n“ O\n宝 O\n岛 O\n1 O\n2 O\n号 O\n” O\n等 O\n船 O\n舶 O\n的 O\n船 B-TITLE\n长 E-TITLE\n、 O\n海 B-ORG\n南 M-ORG\n港 M-ORG\n航 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n海 B-ORG\n峡 M-ORG\n股 M-ORG\n份 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n于 B-NAME\n广 M-NAME\n勇 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n9 O\n1 O\n年 O\n7 O\n月 O\n就 O\n读 O\n于 O\n锦 B-ORG\n州 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n。 O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n3 O\n月 O\n在 O\n沈 B-ORG\n阳 M-ORG\n百 M-ORG\n花 M-ORG\n电 M-ORG\n器 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n变 M-ORG\n频 M-ORG\n调 M-ORG\n速 M-ORG\n器 M-ORG\n厂 E-ORG\n从 O\n事 O\n生 O\n产 O\n检 O\n验 O\n及 O\n销 O\n售 O\n工 O\n作 O\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n4 O\n月 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n5 O\n月 O\n在 O\n沈 B-ORG\n阳 M-ORG\n市 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n科 O\n技 O\n处 O\n从 O\n事 O\n科 O\n技 O\n项 O\n目 O\n调 O\n查 O\n、 O\n汇 O\n总 O\n工 O\n作 O\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n在 O\n沈 B-ORG\n阳 M-ORG\n华 M-ORG\n岩 M-ORG\n电 M-ORG\n力 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n发 B-TITLE\n电 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n9 O\n月 O\n至 O\n今 O\n在 O\n蓝 B-ORG\n英 M-ORG\n装 M-ORG\n备 E-ORG\n（ O\n及 O\n前 O\n身 O\n） O\n任 O\n职 O\n， O\n曾 O\n任 O\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n职 O\n务 O\n。 O\n\n目 O\n前 O\n任 O\n蓝 B-ORG\n英 M-ORG\n装 M-ORG\n备 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n赵 B-NAME\n瑞 M-NAME\n航 E-NAME\n： O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n5 O\n7 O\n年 O\n， O\n大 B-EDU\n学 M-EDU\n普 M-EDU\n通 M-EDU\n班 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n1 O\n月 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n2 O\n月 O\n， O\n任 O\n北 B-ORG\n京 M-ORG\n四 M-ORG\n方 M-ORG\n同 M-ORG\n创 M-ORG\n保 M-ORG\n护 M-ORG\n与 M-ORG\n控 M-ORG\n制 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n营 B-TITLE\n销 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n营 B-TITLE\n销 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n兼 O\n任 O\n北 B-ORG\n京 M-ORG\n四 M-ORG\n方 M-ORG\n继 M-ORG\n保 M-ORG\n工 M-ORG\n程 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n， O\n任 O\n北 B-ORG\n京 M-ORG\n同 M-ORG\n兴 M-ORG\n时 M-ORG\n代 M-ORG\n物 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n任 O\n四 B-ORG\n方 M-ORG\n继 M-ORG\n保 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n营 B-TITLE\n销 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n行 B-TITLE\n政 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n公 B-TITLE\n共 M-TITLE\n及 M-TITLE\n国 M-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n， O\n任 O\n北 B-ORG\n京 M-ORG\n四 M-ORG\n方 M-ORG\n继 M-ORG\n保 M-ORG\n工 M-ORG\n程 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n四 M-ORG\n方 M-ORG\n继 M-ORG\n保 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n蔡 B-NAME\n炬 M-NAME\n怡 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n起 O\n在 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n光 M-ORG\n电 M-ORG\n器 M-ORG\n材 M-ORG\n厂 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n起 O\n在 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n光 M-ORG\n电 M-ORG\n器 M-ORG\n材 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n国 M-ORG\n星 M-ORG\n光 M-ORG\n电 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n前 O\n身 O\n） O\n工 O\n作 O\n， O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n杨 B-NAME\n莉 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n3 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n历 O\n任 O\n宁 B-ORG\n波 M-ORG\n凯 M-ORG\n建 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n宁 B-ORG\n波 M-ORG\n热 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n匡 B-NAME\n献 M-NAME\n平 E-NAME\n先 O\n生 O\n， O\n暨 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n金 B-PRO\n融 M-PRO\n学 E-PRO\n研 B-EDU\n究 M-EDU\n生 E-EDU\n课 O\n程 O\n班 O\n在 O\n读 O\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n湖 B-ORG\n南 M-ORG\n城 M-ORG\n市 M-ORG\n学 M-ORG\n院 M-ORG\n中 M-ORG\n文 M-ORG\n系 E-ORG\n， O\n先 O\n后 O\n被 O\n聘 O\n为 O\n新 B-ORG\n华 M-ORG\n社 M-ORG\n深 M-ORG\n圳 M-ORG\n新 M-ORG\n闻 M-ORG\n中 M-ORG\n心 M-ORG\n《 M-ORG\n名 M-ORG\n牌 M-ORG\n食 M-ORG\n品 M-ORG\n》 M-ORG\n杂 M-ORG\n志 E-ORG\n执 B-TITLE\n行 M-TITLE\n总 M-TITLE\n编 E-TITLE\n、 O\n新 B-ORG\n华 M-ORG\n社 M-ORG\n广 M-ORG\n东 M-ORG\n分 M-ORG\n社 M-ORG\n广 M-ORG\n东 M-ORG\n新 M-ORG\n闻 M-ORG\n发 M-ORG\n展 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n新 B-ORG\n华 M-ORG\n社 M-ORG\n《 M-ORG\n中 M-ORG\n国 M-ORG\n证 M-ORG\n券 M-ORG\n报 M-ORG\n》 M-ORG\n广 M-ORG\n东 M-ORG\n站 E-ORG\n投 B-TITLE\n资 M-TITLE\n策 M-TITLE\n划 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n盛 M-ORG\n世 M-ORG\n同 M-ORG\n盈 M-ORG\n投 M-ORG\n资 M-ORG\n( M-ORG\n推 M-ORG\n广 M-ORG\n) E-ORG\n顾 B-TITLE\n问 M-TITLE\n机 M-TITLE\n构 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n风 M-NAME\n东 E-NAME\n先 O\n生 O\n： O\n汉 B-RACE\n族 E-RACE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n新 B-ORG\n疆 M-ORG\n塔 M-ORG\n城 M-ORG\n地 M-ORG\n区 M-ORG\n纪 M-ORG\n检 M-ORG\n委 E-ORG\n秘 B-TITLE\n书 E-TITLE\n、 O\n塔 B-ORG\n城 M-ORG\n地 M-ORG\n区 M-ORG\n地 M-ORG\n直 M-ORG\n团 M-ORG\n委 E-ORG\n书 B-TITLE\n记 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n生 M-ORG\n产 M-ORG\n建 M-ORG\n设 M-ORG\n兵 M-ORG\n团 M-ORG\n农 M-ORG\n九 M-ORG\n师 M-ORG\n团 M-ORG\n委 E-ORG\n书 B-TITLE\n记 E-TITLE\n、 O\n农 B-ORG\n九 M-ORG\n师 E-ORG\n外 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n农 B-ORG\n九 M-ORG\n师 E-ORG\n外 B-TITLE\n经 M-TITLE\n贸 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n额 B-ORG\n敏 M-ORG\n农 M-ORG\n垦 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n新 B-ORG\n天 M-ORG\n国 M-ORG\n际 M-ORG\n经 M-ORG\n贸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n新 B-ORG\n天 M-ORG\n国 M-ORG\n际 M-ORG\n经 M-ORG\n济 M-ORG\n技 M-ORG\n术 M-ORG\n合 M-ORG\n作 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n罗 B-NAME\n会 M-NAME\n榕 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n毕 O\n业 O\n于 O\n南 B-ORG\n昌 M-ORG\n师 M-ORG\n范 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n先 O\n后 O\n担 O\n任 O\n奥 B-ORG\n康 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n品 B-TITLE\n牌 M-TITLE\n规 M-TITLE\n划 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n奥 B-ORG\n康 E-ORG\n事 B-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n奥 B-ORG\n康 M-ORG\n鞋 M-ORG\n业 M-ORG\n销 M-ORG\n售 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n奥 B-ORG\n康 M-ORG\n国 M-ORG\n际 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n无 O\n简 O\n历 O\n信 O\n息 O\n\n何 B-NAME\n腾 M-NAME\n国 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n新 M-ORG\n大 M-ORG\n新 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n百 M-ORG\n货 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n广 B-ORG\n州 M-ORG\n百 M-ORG\n货 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n李 B-NAME\n礼 M-NAME\n辉 E-NAME\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n行 B-TITLE\n长 E-TITLE\n自 O\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n起 O\n任 O\n本 B-ORG\n行 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n行 B-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n任 O\n海 B-ORG\n南 M-ORG\n省 E-ORG\n副 B-TITLE\n省 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n银 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n7 O\n月 O\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n银 M-ORG\n行 E-ORG\n多 O\n个 O\n职 O\n位 O\n， O\n包 O\n括 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n分 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n、 O\n驻 B-TITLE\n新 M-TITLE\n加 M-TITLE\n坡 M-TITLE\n首 M-TITLE\n席 M-TITLE\n代 M-TITLE\n表 E-TITLE\n、 O\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n李 S-NAME\n先 O\n生 O\n1 O\n9 O\n7 O\n7 O\n年 O\n毕 O\n业 O\n于 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n系 E-ORG\n金 B-ORG\n融 M-ORG\n专 M-ORG\n业 E-ORG\n， O\n拥 O\n有 O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 M-ORG\n光 M-ORG\n华 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n金 B-PRO\n融 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n的 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n自 O\n2 O\n0 O\n0 O\n5 O\n年 O\n6 O\n月 O\n起 O\n， O\n李 S-NAME\n先 O\n生 O\n兼 O\n任 O\n中 B-ORG\n银 M-ORG\n国 M-ORG\n际 M-ORG\n控 M-ORG\n股 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n2 O\n月 O\n起 O\n， O\n李 S-NAME\n先 O\n生 O\n兼 O\n任 O\n渤 B-ORG\n海 M-ORG\n产 M-ORG\n业 E-ORG\n\n刘 B-NAME\n义 M-NAME\n传 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n经 B-PRO\n济 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n职 O\n于 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n财 M-ORG\n政 M-ORG\n厅 E-ORG\n会 B-TITLE\n计 M-TITLE\n顾 M-TITLE\n问 M-TITLE\n处 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n华 M-ORG\n兴 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n( O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n) O\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n中 M-ORG\n福 M-ORG\n集 M-ORG\n团 E-ORG\n计 B-TITLE\n财 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n中 M-ORG\n福 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n运 M-ORG\n盛 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n任 O\n苏 B-ORG\n州 M-ORG\n市 M-ORG\n西 M-ORG\n江 M-ORG\n建 M-ORG\n设 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n◆ O\n董 B-TITLE\n事 E-TITLE\n郑 B-NAME\n扬 M-NAME\n宏 E-NAME\n男 O\n， O\n5 O\n1 O\n岁 O\n， O\n广 B-LOC\n东 M-LOC\n五 M-LOC\n华 M-LOC\n人 E-LOC\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n0 B-ORG\n0 M-ORG\n4 M-ORG\n2 M-ORG\n3 M-ORG\n部 M-ORG\n队 E-ORG\n组 B-TITLE\n织 M-TITLE\n宣 M-TITLE\n传 M-TITLE\n股 M-TITLE\n干 M-TITLE\n事 E-TITLE\n、 O\n0 B-ORG\n0 M-ORG\n4 M-ORG\n2 M-ORG\n9 M-ORG\n部 M-ORG\n队 E-ORG\n政 B-TITLE\n治 M-TITLE\n部 M-TITLE\n宣 M-TITLE\n传 M-TITLE\n干 M-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n月 O\n在 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n直 M-ORG\n属 M-ORG\n机 M-ORG\n关 M-ORG\n工 M-ORG\n委 E-ORG\n工 O\n作 O\n， O\n先 O\n后 O\n任 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n干 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n代 M-TITLE\n理 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n宣 B-TITLE\n传 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n部 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n8 O\n月 O\n在 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n旅 M-ORG\n游 M-ORG\n协 M-ORG\n会 E-ORG\n工 O\n作 O\n， O\n任 O\n协 B-ORG\n会 E-ORG\n第 B-TITLE\n三 M-TITLE\n、 M-TITLE\n四 M-TITLE\n届 M-TITLE\n常 M-TITLE\n务 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n8 O\n月 O\n至 O\n今 O\n在 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n宝 M-ORG\n恒 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n1 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n周 B-NAME\n和 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n会 B-PRO\n计 E-PRO\n本 B-EDU\n科 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n（ O\n非 O\n执 O\n业 O\n） O\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n加 O\n入 O\n公 B-ORG\n司 E-ORG\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n科 B-ORG\n达 M-ORG\n石 M-ORG\n材 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n科 B-ORG\n达 M-ORG\n香 M-ORG\n港 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n科 M-ORG\n达 M-ORG\n机 M-ORG\n电 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n信 B-ORG\n诚 M-ORG\n融 M-ORG\n资 M-ORG\n租 M-ORG\n赁 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n吕 B-NAME\n宏 E-NAME\n女 O\n士 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n山 B-ORG\n东 M-ORG\n储 M-ORG\n备 M-ORG\n物 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n主 B-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n储 M-ORG\n备 M-ORG\n物 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n。 O\n\n杨 B-NAME\n稔 M-NAME\n年 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n3 O\n1 O\n年 O\n出 O\n生 O\n， O\n辽 B-LOC\n宁 M-LOC\n沈 M-LOC\n阳 M-LOC\n人 E-LOC\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n北 B-ORG\n京 M-ORG\n中 M-ORG\n央 M-ORG\n税 M-ORG\n务 M-ORG\n学 M-ORG\n校 E-ORG\n毕 O\n业 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n至 O\n1 O\n9 O\n5 O\n6 O\n年 O\n财 B-ORG\n政 M-ORG\n部 M-ORG\n上 M-ORG\n海 M-ORG\n财 M-ORG\n校 E-ORG\n专 B-EDU\n修 M-EDU\n科 E-EDU\n进 O\n修 O\n。 O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n起 O\n在 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n税 M-ORG\n务 M-ORG\n局 E-ORG\n历 O\n任 O\n办 B-TITLE\n事 M-TITLE\n员 E-TITLE\n、 O\n科 B-TITLE\n员 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n税 M-ORG\n务 M-ORG\n咨 M-ORG\n询 M-ORG\n协 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n税 M-ORG\n务 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n地 M-ORG\n方 M-ORG\n税 M-ORG\n务 M-ORG\n咨 M-ORG\n询 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n省 B-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n省 B-ORG\n中 M-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n顾 B-TITLE\n问 E-TITLE\n。 O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n科 M-ORG\n苑 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n一 M-NAME\n欢 E-NAME\n： O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n至 O\n1 O\n9 O\n7 O\n5 O\n年 O\n在 O\n空 B-ORG\n军 M-ORG\n3 M-ORG\n4 M-ORG\n3 M-ORG\n部 M-ORG\n队 E-ORG\n服 O\n役 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n至 O\n1 O\n9 O\n8 O\n6 O\n年 O\n在 O\n北 B-ORG\n京 M-ORG\n第 M-ORG\n二 M-ORG\n机 M-ORG\n床 M-ORG\n厂 E-ORG\n任 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n至 O\n今 O\n在 O\n中 B-ORG\n国 M-ORG\n汽 M-ORG\n车 M-ORG\n工 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n俞 B-NAME\n立 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n博 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n信 M-ORG\n息 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n嵌 M-ORG\n入 M-ORG\n式 M-ORG\n系 M-ORG\n统 M-ORG\n联 M-ORG\n合 M-ORG\n重 M-ORG\n点 M-ORG\n实 M-ORG\n验 M-ORG\n室 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n学 M-ORG\n会 M-ORG\n控 M-ORG\n制 M-ORG\n理 M-ORG\n论 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n过 B-ORG\n程 M-ORG\n控 M-ORG\n制 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n教 B-ORG\n学 M-ORG\n部 M-ORG\n高 M-ORG\n等 M-ORG\n学 M-ORG\n校 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n类 M-ORG\n专 M-ORG\n业 M-ORG\n教 M-ORG\n学 M-ORG\n指 M-ORG\n导 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n第 M-ORG\n十 M-ORG\n一 M-ORG\n届 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n。 O\n\n现 O\n任 O\n银 B-ORG\n江 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n孙 B-NAME\n凯 M-NAME\n捷 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n3 O\n月 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n丹 B-ORG\n东 M-ORG\n化 M-ORG\n纤 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n无 O\n简 O\n历 O\n信 O\n息 O\n\n吴 B-NAME\n桥 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n- O\n1 O\n9 O\n7 O\n8 O\n年 O\n在 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n呼 M-ORG\n和 M-ORG\n浩 M-ORG\n特 M-ORG\n铁 M-ORG\n路 M-ORG\n局 M-ORG\n工 M-ORG\n人 M-ORG\n文 M-ORG\n化 M-ORG\n宫 E-ORG\n担 O\n任 O\n文 B-TITLE\n艺 M-TITLE\n辅 M-TITLE\n导 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n- O\n1 O\n9 O\n9 O\n4 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n铁 M-ORG\n路 M-ORG\n文 M-ORG\n工 M-ORG\n团 M-ORG\n歌 M-ORG\n舞 M-ORG\n团 E-ORG\n国 B-TITLE\n家 M-TITLE\n二 M-TITLE\n级 M-TITLE\n演 M-TITLE\n奏 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n- O\n2 O\n0 O\n0 O\n4 O\n年 O\n任 O\n北 B-ORG\n京 M-ORG\n中 M-ORG\n德 M-ORG\n行 M-ORG\n投 M-ORG\n资 M-ORG\n顾 M-ORG\n问 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n至 O\n今 O\n任 O\n星 B-ORG\n光 M-ORG\n浩 M-ORG\n华 M-ORG\n（ M-ORG\n北 M-ORG\n京 M-ORG\n） M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n北 B-ORG\n京 M-ORG\n万 M-ORG\n恒 M-ORG\n置 M-ORG\n业 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n占 B-NAME\n磊 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n律 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n今 O\n， O\n任 O\n新 B-ORG\n疆 M-ORG\n公 M-ORG\n论 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 E-TITLE\n； O\n\n先 O\n后 O\n担 O\n任 O\n多 O\n家 O\n单 O\n位 O\n的 O\n法 B-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n以 O\n及 O\n新 B-ORG\n疆 M-ORG\n城 M-ORG\n建 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n青 M-ORG\n松 M-ORG\n建 M-ORG\n材 M-ORG\n化 M-ORG\n工 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n西 M-ORG\n部 M-ORG\n建 M-ORG\n设 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n新 B-ORG\n疆 M-ORG\n中 M-ORG\n基 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n东 M-NAME\n友 E-NAME\n先 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n兴 B-ORG\n平 M-ORG\n化 M-ORG\n肥 M-ORG\n厂 E-ORG\n合 B-TITLE\n成 M-TITLE\n车 M-TITLE\n间 M-TITLE\n党 M-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n兴 B-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n兴 B-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n兴 B-ORG\n化 M-ORG\n股 M-ORG\n份 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n姚 B-NAME\n越 M-NAME\n灿 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n外 M-ORG\n国 M-ORG\n语 M-ORG\n大 M-ORG\n学 E-ORG\n英 B-PRO\n语 M-PRO\n专 M-PRO\n业 E-PRO\n、 O\n美 B-ORG\n国 M-ORG\n夏 M-ORG\n威 M-ORG\n夷 M-ORG\n旅 M-ORG\n游 M-ORG\n学 M-ORG\n院 E-ORG\n旅 B-PRO\n游 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n副 B-TITLE\n译 M-TITLE\n审 E-TITLE\n。 O\n\n曾 O\n任 O\n国 B-ORG\n旅 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n国 B-ORG\n旅 M-ORG\n总 M-ORG\n社 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n任 B-NAME\n兴 M-NAME\n洲 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n及 O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n于 O\n吉 B-ORG\n林 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n系 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n任 O\n国 B-ORG\n务 M-ORG\n院 M-ORG\n发 M-ORG\n展 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n市 B-TITLE\n场 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n至 O\n今 O\n兼 O\n任 O\n中 B-ORG\n外 M-ORG\n运 M-ORG\n空 M-ORG\n运 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n徐 B-NAME\n凤 M-NAME\n江 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n毕 O\n业 O\n于 O\n西 B-ORG\n安 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n会 B-PRO\n计 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\nM B-EDU\nP M-EDU\nA M-EDU\nC M-EDU\nC M-EDU\n学 M-EDU\n员 E-EDU\n。 O\n\n曾 O\n任 O\n西 B-ORG\n安 M-ORG\n荣 M-ORG\n和 M-ORG\n高 M-ORG\n级 M-ORG\n陶 M-ORG\n瓷 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n陕 B-ORG\n西 M-ORG\n富 M-ORG\n安 M-ORG\n果 M-ORG\n汁 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n陕 B-ORG\n西 M-ORG\n坚 M-ORG\n瑞 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n曾 O\n于 O\n2 O\n0 O\n1 O\n3 O\n年 O\n9 O\n月 O\n3 O\n日 O\n受 O\n到 O\n深 B-ORG\n圳 M-ORG\n证 M-ORG\n券 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n通 O\n报 O\n批 O\n评 O\n的 O\n处 O\n分 O\n。 O\n\n原 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n现 O\n任 O\n陕 B-ORG\n西 M-ORG\n坚 M-ORG\n瑞 M-ORG\n消 M-ORG\n防 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n于 B-NAME\n东 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n广 M-ORG\n电 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n仪 M-ORG\n电 M-ORG\n电 M-ORG\n子 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n战 B-TITLE\n略 M-TITLE\n投 M-TITLE\n资 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n仪 M-ORG\n电 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n任 B-NAME\n家 M-NAME\n国 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n住 O\n权 O\n， O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n历 O\n任 O\n江 B-ORG\n苏 M-ORG\n南 M-ORG\n方 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n南 B-ORG\n京 M-ORG\n百 M-ORG\n地 M-ORG\n年 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n管 B-NAME\n振 M-NAME\n毅 E-NAME\n先 O\n生 O\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n烟 M-ORG\n草 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n青 B-ORG\n浦 M-ORG\n、 M-ORG\n长 M-ORG\n宁 M-ORG\n烟 M-ORG\n草 M-ORG\n糖 M-ORG\n酒 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n海 B-ORG\n烟 M-ORG\n物 M-ORG\n流 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n铁 B-ORG\n路 M-ORG\n烟 M-ORG\n草 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n烟 M-ORG\n草 M-ORG\n上 M-ORG\n海 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n宝 B-ORG\n山 M-ORG\n、 M-ORG\n崇 M-ORG\n明 M-ORG\n、 M-ORG\n奉 M-ORG\n贤 M-ORG\n、 M-ORG\n虹 M-ORG\n口 M-ORG\n、 M-ORG\n黄 M-ORG\n浦 M-ORG\n、 M-ORG\n嘉 M-ORG\n定 M-ORG\n、 M-ORG\n金 M-ORG\n山 M-ORG\n、 M-ORG\n静 M-ORG\n安 M-ORG\n、 M-ORG\n卢 M-ORG\n湾 M-ORG\n、 M-ORG\n闵 M-ORG\n行 M-ORG\n、 M-ORG\n南 M-ORG\n汇 M-ORG\n、 M-ORG\n浦 M-ORG\n东 M-ORG\n、 M-ORG\n普 M-ORG\n陀 M-ORG\n、 M-ORG\n松 M-ORG\n江 M-ORG\n、 M-ORG\n徐 M-ORG\n汇 M-ORG\n、 M-ORG\n杨 M-ORG\n浦 M-ORG\n、 M-ORG\n闸 M-ORG\n北 M-ORG\n烟 M-ORG\n草 M-ORG\n糖 M-ORG\n酒 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n管 S-NAME\n先 O\n生 O\n2 O\n0 O\n0 O\n0 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n月 O\n在 O\n上 B-ORG\n海 M-ORG\n烟 M-ORG\n草 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 M-ORG\n三 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n部 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n主 B-TITLE\n任 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n海 B-ORG\n烟 M-ORG\n商 M-ORG\n厦 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n海 B-ORG\n烟 M-ORG\n商 M-ORG\n厦 E-ORG\n经 B-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n7 O\n月 O\n在 O\n上 B-ORG\n海 M-ORG\n烟 M-ORG\n草 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n财 B-ORG\n务 M-ORG\n物 M-ORG\n价 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n投 B-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n上 B-ORG\n海 M-ORG\n烟 M-ORG\n草 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n处 E-ORG\n处 B-TITLE\n长 E-TITLE\n。 O\n\n管 S-NAME\n先 O\n生 O\n2 O\n0 O\n0 O\n2 O\n年 O\n获 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n南 M-ORG\n京 M-ORG\n政 M-ORG\n治 M-ORG\n学 M-ORG\n院 M-ORG\n上 M-ORG\n海 M-ORG\n分 M-ORG\n院 E-ORG\n经 B-PRO\n济 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n刘 B-NAME\n万 M-NAME\n赋 E-NAME\n先 O\n生 O\n， O\n山 B-ORG\n东 M-ORG\n墨 M-ORG\n龙 M-ORG\n石 M-ORG\n油 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n生 O\n于 O\n1 O\n9 O\n3 O\n9 O\n年 O\n1 O\n月 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n刘 B-NAME\n万 M-NAME\n赋 E-NAME\n先 O\n生 O\n自 O\n2 O\n0 O\n0 O\n3 O\n年 O\n3 O\n月 O\n2 O\n9 O\n日 O\n起 O\n任 O\n山 B-ORG\n东 M-ORG\n墨 M-ORG\n龙 M-ORG\n石 M-ORG\n油 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n万 M-NAME\n赋 E-NAME\n先 O\n生 O\n拥 O\n有 O\n逾 O\n四 O\n十 O\n年 O\n石 O\n油 O\n行 O\n业 O\n的 O\n经 O\n验 O\n， O\n现 O\n为 O\n中 B-ORG\n石 M-ORG\n油 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n顾 B-TITLE\n问 E-TITLE\n。 O\n\n赵 B-NAME\n柏 M-NAME\n福 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n毕 O\n业 O\n于 O\n吉 B-ORG\n林 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n业 M-PRO\n企 M-PRO\n业 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n在 O\n中 B-ORG\n国 M-ORG\n软 M-ORG\n件 M-ORG\n与 M-ORG\n技 M-ORG\n术 M-ORG\n服 M-ORG\n务 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n任 O\n中 B-ORG\n国 M-ORG\n软 M-ORG\n件 M-ORG\n与 M-ORG\n技 M-ORG\n术 M-ORG\n服 M-ORG\n务 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n柴 B-NAME\n强 E-NAME\n： O\n男 O\n， O\n先 O\n后 O\n就 O\n读 O\n于 O\n武 B-ORG\n汉 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n管 B-PRO\n理 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n、 O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n技 B-PRO\n术 M-PRO\n经 M-PRO\n济 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n、 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n国 O\n务 O\n院 O\n批 O\n准 O\n享 O\n受 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n专 O\n家 O\n； O\n\n美 B-ORG\n国 M-ORG\n估 M-ORG\n价 M-ORG\n学 M-ORG\n会 E-ORG\n荣 B-TITLE\n誉 M-TITLE\n会 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n估 M-ORG\n价 M-ORG\n师 M-ORG\n与 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n经 M-ORG\n纪 M-ORG\n人 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n兼 O\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n， O\n住 B-ORG\n房 M-ORG\n和 M-ORG\n城 M-ORG\n乡 M-ORG\n建 M-ORG\n设 M-ORG\n部 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n地 M-ORG\n产 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n城 M-ORG\n乡 M-ORG\n建 M-ORG\n设 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n城 B-TITLE\n市 M-TITLE\n经 M-TITLE\n济 M-TITLE\n研 M-TITLE\n究 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n建 B-ORG\n设 M-ORG\n部 M-ORG\n政 M-ORG\n策 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n估 M-ORG\n价 M-ORG\n师 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n兼 O\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n方 B-NAME\n卫 M-NAME\n英 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n4 O\n年 O\n8 O\n月 O\n， O\n党 B-ORG\n校 E-ORG\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n编 M-TITLE\n辑 E-TITLE\n职 O\n称 O\n。 O\n\n2 O\n0 O\n0 O\n7 O\n\\ O\n1 O\n- O\n2 O\n0 O\n1 O\n0 O\n\\ O\n1 O\n1 O\n浙 B-ORG\n江 M-ORG\n日 M-ORG\n报 E-ORG\n服 B-TITLE\n务 M-TITLE\n专 M-TITLE\n刊 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n广 B-TITLE\n告 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n\\ O\n1 O\n2 O\n至 O\n今 O\n浙 B-ORG\n江 M-ORG\n日 M-ORG\n报 M-ORG\n新 M-ORG\n闻 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n广 B-TITLE\n告 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n\\ O\n9 O\n至 O\n今 O\n浙 B-ORG\n报 M-ORG\n传 M-ORG\n媒 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n包 B-NAME\n炜 M-NAME\n堂 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n5 O\n年 O\n8 O\n月 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n第 M-ORG\n三 M-ORG\n羊 M-ORG\n毛 M-ORG\n衫 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n股 M-TITLE\n帐 M-TITLE\n务 M-TITLE\n、 M-TITLE\n成 M-TITLE\n本 M-TITLE\n、 M-TITLE\n核 M-TITLE\n价 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n第 M-ORG\n五 M-ORG\n羊 M-ORG\n毛 M-ORG\n衫 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n副 M-TITLE\n股 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n第 M-ORG\n十 M-ORG\n五 M-ORG\n羊 M-ORG\n毛 M-ORG\n衫 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n第 M-ORG\n一 M-ORG\n毛 M-ORG\n衫 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n凤 M-ORG\n凰 M-ORG\n装 M-ORG\n饰 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n纺 M-ORG\n织 M-ORG\n控 M-ORG\n股 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n上 B-ORG\n海 M-ORG\n纺 M-ORG\n织 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n审 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n曹 B-NAME\n旭 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n针 M-ORG\n织 M-ORG\n品 M-ORG\n家 M-ORG\n用 M-ORG\n纺 M-ORG\n织 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n纺 M-ORG\n织 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n新 B-ORG\n华 M-ORG\n锦 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n山 B-ORG\n东 M-ORG\n新 M-ORG\n华 M-ORG\n锦 M-ORG\n国 M-ORG\n际 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n李 B-NAME\n建 M-NAME\n伟 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n1 O\n月 O\n担 O\n任 O\n金 B-ORG\n陵 M-ORG\n饭 M-ORG\n店 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n南 B-ORG\n京 M-ORG\n金 M-ORG\n陵 M-ORG\n饭 M-ORG\n店 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n曾 O\n作 O\n为 O\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n公 O\n派 O\n赴 O\n德 B-ORG\n国 M-ORG\n巴 M-ORG\n伐 M-ORG\n利 M-ORG\n亚 M-ORG\n旅 M-ORG\n游 M-ORG\n学 M-ORG\n院 E-ORG\n学 O\n习 O\n， O\n赴 O\n美 B-ORG\n国 M-ORG\n伊 M-ORG\n利 M-ORG\n诺 M-ORG\n伊 M-ORG\n斯 M-ORG\n大 M-ORG\n学 E-ORG\n研 O\n修 O\n。 O\n\n历 O\n任 O\n原 B-ORG\n南 M-ORG\n京 M-ORG\n金 M-ORG\n陵 M-ORG\n饭 M-ORG\n店 E-ORG\n西 B-TITLE\n餐 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n金 B-ORG\n陵 M-ORG\n饭 M-ORG\n店 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n金 M-ORG\n陵 M-ORG\n饭 M-ORG\n店 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n钟 B-NAME\n表 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n简 O\n历 O\n： O\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n湖 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n邵 M-ORG\n阳 M-ORG\n分 M-ORG\n校 E-ORG\n内 B-PRO\n燃 M-PRO\n机 M-PRO\n专 M-PRO\n业 E-PRO\n； O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n8 O\n9 O\n年 O\n6 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n第 M-ORG\n7 M-ORG\n3 M-ORG\n1 M-ORG\n9 M-ORG\n工 M-ORG\n厂 E-ORG\n见 B-TITLE\n习 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n1 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n第 M-ORG\n7 M-ORG\n3 M-ORG\n1 M-ORG\n9 M-ORG\n工 M-ORG\n厂 E-ORG\n二 B-TITLE\n车 M-TITLE\n间 M-TITLE\n调 M-TITLE\n度 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n1 O\n2 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n第 M-ORG\n7 M-ORG\n3 M-ORG\n1 M-ORG\n9 M-ORG\n工 M-ORG\n厂 E-ORG\n二 B-TITLE\n车 M-TITLE\n间 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n调 B-TITLE\n度 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n第 M-ORG\n7 M-ORG\n3 M-ORG\n1 M-ORG\n9 M-ORG\n工 M-ORG\n厂 M-ORG\n汽 M-ORG\n车 M-ORG\n修 M-ORG\n理 M-ORG\n分 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n长 M-ORG\n丰 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n造 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n9 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n长 M-ORG\n丰 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n造 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n任 O\n安 B-ORG\n徽 M-ORG\n长 M-ORG\n丰 M-ORG\n扬 M-ORG\n子 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n造 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n长 M-ORG\n丰 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n造 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n湖 B-ORG\n南 M-ORG\n长 M-ORG\n丰 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n造 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n傅 B-NAME\n祖 M-NAME\n平 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n起 O\n任 O\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n鹰 M-ORG\n股 M-ORG\n份 M-ORG\n伊 M-ORG\n犁 M-ORG\n亚 M-ORG\n麻 M-ORG\n制 M-ORG\n品 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n任 O\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n鹰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n肖 B-NAME\n红 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n3 O\n月 O\n2 O\n0 O\n日 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n7 O\n月 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n8 O\n月 O\n在 O\n桃 B-ORG\n源 M-ORG\n县 M-ORG\n粮 M-ORG\n食 M-ORG\n局 E-ORG\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n9 O\n月 O\n至 O\n今 O\n在 O\n湖 B-ORG\n南 M-ORG\n金 M-ORG\n健 M-ORG\n米 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n曾 O\n任 O\n粮 B-TITLE\n油 M-TITLE\n食 M-TITLE\n品 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n金 M-ORG\n健 M-ORG\n米 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n粮 B-TITLE\n油 M-TITLE\n食 M-TITLE\n品 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n精 B-ORG\n米 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n师 B-NAME\n志 M-NAME\n刚 E-NAME\n先 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n医 M-ORG\n用 M-ORG\n电 M-ORG\n子 M-ORG\n仪 M-ORG\n器 M-ORG\n厂 E-ORG\n行 B-TITLE\n政 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n医 M-ORG\n用 M-ORG\n超 M-ORG\n声 M-ORG\n仪 M-ORG\n器 M-ORG\n厂 E-ORG\n四 B-TITLE\n车 M-TITLE\n间 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n医 M-ORG\n用 M-ORG\n电 M-ORG\n子 M-ORG\n仪 M-ORG\n器 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n万 M-ORG\n东 M-ORG\n医 M-ORG\n疗 M-ORG\n装 M-ORG\n备 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n万 M-ORG\n东 M-ORG\n医 M-ORG\n疗 M-ORG\n装 M-ORG\n备 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n陈 B-NAME\n继 M-NAME\n勇 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n任 O\n武 B-ORG\n汉 M-ORG\n马 M-ORG\n应 M-ORG\n龙 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n担 O\n任 O\n九 B-ORG\n州 M-ORG\n通 M-ORG\n医 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n与 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n兼 O\n中 B-ORG\n国 M-ORG\n美 M-ORG\n国 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n世 M-ORG\n界 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n。 O\n\n蒋 B-NAME\n明 M-NAME\n刚 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n宁 B-ORG\n夏 M-ORG\n赛 M-ORG\n马 M-ORG\n水 M-ORG\n泥 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n宁 B-ORG\n夏 M-ORG\n赛 M-ORG\n马 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n丘 B-NAME\n炜 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n预 M-TITLE\n备 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n建 B-TITLE\n筑 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n西 B-ORG\n安 M-ORG\n市 M-ORG\n城 M-ORG\n建 M-ORG\n开 M-ORG\n发 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n建 B-TITLE\n筑 M-TITLE\n设 M-TITLE\n计 M-TITLE\n研 M-TITLE\n究 M-TITLE\n院 M-TITLE\n建 M-TITLE\n筑 M-TITLE\n师 E-TITLE\n， O\n西 B-ORG\n安 M-ORG\n高 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n产 M-ORG\n业 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n策 B-TITLE\n划 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n主 B-TITLE\n任 M-TITLE\n策 M-TITLE\n划 M-TITLE\n师 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n、 O\n天 B-ORG\n地 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n西 M-ORG\n安 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n地 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n发 B-TITLE\n展 M-TITLE\n规 M-TITLE\n划 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n天 B-ORG\n地 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n兆 M-NAME\n庆 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n5 M-ORG\n1 M-ORG\n3 M-ORG\n6 M-ORG\n3 M-ORG\n部 M-ORG\n队 E-ORG\n战 B-TITLE\n勤 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n后 B-TITLE\n勤 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n就 O\n职 O\n于 O\n中 B-ORG\n国 M-ORG\n华 M-ORG\n融 E-ORG\n， O\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n华 M-ORG\n融 M-ORG\n济 M-ORG\n南 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n审 B-TITLE\n计 M-TITLE\n评 M-TITLE\n估 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n债 B-TITLE\n权 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n创 B-TITLE\n新 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n新 B-TITLE\n北 M-TITLE\n洋 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n高 B-NAME\n利 M-NAME\n民 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n马 M-ORG\n桥 M-ORG\n砖 M-ORG\n瓦 M-ORG\n厂 E-ORG\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n马 M-ORG\n桥 M-ORG\n泡 M-ORG\n塑 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n马 M-ORG\n桥 M-ORG\n砖 M-ORG\n瓦 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n嘉 B-ORG\n兴 M-ORG\n海 M-ORG\n亮 M-ORG\n皮 M-ORG\n塑 M-ORG\n制 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n浙 B-ORG\n江 M-ORG\n海 M-ORG\n利 M-ORG\n得 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n嘉 B-TITLE\n兴 M-TITLE\n市 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n、 O\n2 O\n0 O\n0 O\n5 O\n年 O\n连 O\n续 O\n两 O\n年 O\n被 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n委 E-ORG\n、 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n评 O\n为 O\n“ O\n海 O\n宁 O\n市 O\n十 O\n佳 O\n企 O\n业 O\n家 O\n” O\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n- O\n2 O\n0 O\n0 O\n8 O\n年 O\n连 O\n续 O\n5 O\n年 O\n被 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n委 E-ORG\n、 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n评 O\n为 O\n“ O\n优 O\n秀 O\n企 O\n业 O\n家 O\n” O\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n被 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n委 E-ORG\n、 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n评 O\n为 O\n“ O\n非 O\n公 O\n有 O\n制 O\n经 O\n济 O\n人 O\n士 O\n优 O\n秀 O\n中 O\n国 O\n特 O\n色 O\n社 O\n会 O\n主 O\n义 O\n事 O\n业 O\n建 O\n设 O\n者 O\n” O\n。 O\n\n2 O\n0 O\n0 O\n7 O\n- O\n2 O\n0 O\n0 O\n8 O\n年 O\n度 O\n被 O\n中 B-ORG\n共 M-ORG\n嘉 M-ORG\n兴 M-ORG\n市 M-ORG\n委 E-ORG\n、 O\n嘉 B-ORG\n兴 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n评 O\n为 O\n嘉 O\n兴 O\n市 O\n优 O\n秀 O\n社 O\n会 O\n主 O\n义 O\n事 O\n业 O\n建 O\n设 O\n者 O\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n1 O\n4 O\n日 O\n中 B-ORG\n共 M-ORG\n海 M-ORG\n宁 M-ORG\n市 M-ORG\n委 E-ORG\n、 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n授 O\n予 O\n“ O\n海 O\n宁 O\n市 O\n杰 O\n出 O\n企 O\n业 O\n家 O\n称 O\n号 O\n” O\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n被 O\n嘉 B-ORG\n兴 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n授 O\n予 O\n“ O\n嘉 O\n兴 O\n市 O\n劳 O\n动 O\n模 O\n范 O\n称 O\n号 O\n” O\n。 O\n\n周 B-NAME\n程 M-NAME\n爱 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n历 O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n园 M-ORG\n艺 M-ORG\n所 E-ORG\n植 B-TITLE\n保 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n蔬 M-ORG\n菜 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n湘 M-ORG\n研 M-ORG\n种 M-ORG\n苗 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n湘 M-ORG\n研 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n兰 B-NAME\n庆 M-NAME\n民 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n在 O\n南 B-ORG\n宁 M-ORG\n糖 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n下 M-ORG\n属 M-ORG\n明 M-ORG\n阳 M-ORG\n糖 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n曾 O\n任 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n任 O\n南 B-ORG\n宁 M-ORG\n糖 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n下 M-ORG\n属 M-ORG\n东 M-ORG\n江 M-ORG\n糖 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n第 B-TITLE\n一 M-TITLE\n副 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n至 O\n今 O\n担 O\n任 O\n南 B-ORG\n宁 M-ORG\n糖 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n下 M-ORG\n属 M-ORG\n东 M-ORG\n江 M-ORG\n糖 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n1 O\n月 O\n起 O\n为 O\n南 B-ORG\n宁 M-ORG\n糖 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n昊 M-NAME\n维 E-NAME\n先 O\n生 O\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n职 M-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n生 O\n于 O\n1 O\n9 O\n7 O\n5 O\n年 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n毕 O\n业 O\n于 O\n辽 B-ORG\n宁 M-ORG\n大 M-ORG\n学 E-ORG\n通 B-PRO\n信 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n先 O\n后 O\n任 O\n职 O\n于 O\n沈 B-ORG\n阳 M-ORG\n金 M-ORG\n帝 M-ORG\n二 M-ORG\n建 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n北 M-ORG\n华 M-ORG\n兴 M-ORG\n通 M-ORG\n信 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n从 O\n事 O\n技 B-TITLE\n术 M-TITLE\n管 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n起 O\n就 O\n职 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n任 O\n职 O\n辽 B-ORG\n宁 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n应 B-TITLE\n用 M-TITLE\n技 M-TITLE\n术 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n辽 B-ORG\n宁 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n工 B-TITLE\n程 M-TITLE\n技 M-TITLE\n术 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n辽 B-ORG\n宁 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n辽 B-ORG\n宁 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n高 B-NAME\n锦 M-NAME\n芬 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n曾 O\n任 O\n职 O\n于 O\n韶 B-ORG\n关 M-ORG\n地 M-ORG\n区 M-ORG\n交 M-ORG\n通 M-ORG\n局 E-ORG\n， O\n韶 B-ORG\n关 M-ORG\n航 M-ORG\n运 M-ORG\n局 E-ORG\n， O\n前 B-ORG\n山 M-ORG\n港 M-ORG\n阜 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n） O\n， O\n珠 B-ORG\n海 M-ORG\n航 M-ORG\n运 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n） O\n， O\n珠 B-ORG\n海 M-ORG\n九 M-ORG\n州 M-ORG\n港 M-ORG\n务 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n） O\n， O\n珠 B-ORG\n海 M-ORG\n港 M-ORG\n务 M-ORG\n局 E-ORG\n（ O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n） O\n； O\n\n现 O\n任 O\n珠 B-ORG\n海 M-ORG\n市 M-ORG\n港 M-ORG\n口 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n富 B-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n局 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n宋 B-NAME\n深 M-NAME\n海 E-NAME\n先 O\n生 O\n： O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n二 B-TITLE\n级 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n任 O\n浙 B-ORG\n富 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n6 O\n月 O\n， O\n任 O\n职 O\n于 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n经 M-ORG\n济 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n7 O\n月 O\n至 O\n今 O\n， O\n在 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n浙 M-ORG\n经 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n从 O\n事 O\n律 B-TITLE\n师 E-TITLE\n工 O\n作 O\n， O\n任 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n宋 B-NAME\n深 M-NAME\n海 E-NAME\n先 O\n生 O\n还 O\n兼 O\n任 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n城 M-ORG\n市 M-ORG\n学 M-ORG\n院 E-ORG\n兼 B-TITLE\n职 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n杭 B-ORG\n州 M-ORG\n仲 M-ORG\n裁 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n仲 B-TITLE\n裁 M-TITLE\n员 E-TITLE\n。 O\n\n刘 B-NAME\n岚 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n毕 O\n业 O\n于 O\n四 B-ORG\n川 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n先 O\n后 O\n任 O\n西 B-ORG\n藏 M-ORG\n药 M-ORG\n业 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n内 B-TITLE\n控 M-TITLE\n审 M-TITLE\n计 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n现 O\n任 O\n西 B-ORG\n藏 M-ORG\n药 M-ORG\n业 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n吕 B-NAME\n学 M-NAME\n强 E-NAME\n先 O\n生 O\n， O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n公 M-CONT\n民 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n江 B-ORG\n苏 M-ORG\n金 M-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n信 B-ORG\n泰 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n兼 O\n稽 B-TITLE\n核 M-TITLE\n总 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n亚 M-ORG\n威 M-ORG\n机 M-ORG\n床 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n亚 M-ORG\n威 M-ORG\n机 M-ORG\n床 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n高 M-ORG\n鼎 M-ORG\n科 M-ORG\n技 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n高 M-ORG\n新 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n军 E-NAME\n先 O\n生 O\n， O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n地 B-PRO\n质 M-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n、 O\n硕 B-EDU\n士 E-EDU\n、 O\n芝 B-ORG\n加 M-ORG\n哥 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA E-EDU\n、 O\n斯 B-ORG\n坦 M-ORG\n福 M-ORG\n大 M-ORG\n学 E-ORG\n地 B-PRO\n质 M-PRO\n与 M-PRO\n环 M-PRO\n境 M-PRO\n科 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n、 O\n电 B-TITLE\n子 M-TITLE\n工 M-TITLE\n程 M-TITLE\n博 M-TITLE\n士 M-TITLE\n后 E-TITLE\n； O\n\n曾 O\n任 O\n美 B-ORG\n国 M-ORG\nA M-ORG\np M-ORG\np M-ORG\nl M-ORG\ni M-ORG\ne M-ORG\nd M-ORG\nM M-ORG\na M-ORG\nt M-ORG\ne M-ORG\nr M-ORG\ni M-ORG\na M-ORG\nl M-ORG\ns M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n智 M-ORG\n联 M-ORG\n通 M-ORG\n风 M-ORG\n险 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n深 M-TITLE\n投 M-TITLE\n资 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\nI B-ORG\nn M-ORG\nv M-ORG\ne M-ORG\ns M-ORG\nt M-ORG\no M-ORG\nr M-ORG\nG M-ORG\nr M-ORG\no M-ORG\nw M-ORG\nt M-ORG\nh M-ORG\nC M-ORG\na M-ORG\np M-ORG\ni M-ORG\nt M-ORG\na M-ORG\nl M-ORG\nA M-ORG\ns M-ORG\ni M-ORG\na E-ORG\n资 B-TITLE\n深 M-TITLE\n投 M-TITLE\n资 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n华 B-ORG\n润 M-ORG\n上 M-ORG\n华 M-ORG\n科 M-ORG\n技 M-ORG\n公 M-ORG\n司 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n战 M-TITLE\n略 M-TITLE\n官 E-TITLE\n、 O\n市 B-TITLE\n场 M-TITLE\n与 M-TITLE\n营 M-TITLE\n销 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n芝 B-ORG\n华 M-ORG\n财 M-ORG\n瑞 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n恒 B-ORG\n泰 M-ORG\n艾 M-ORG\n普 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n吴 B-NAME\n海 M-NAME\n波 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n8 O\n月 O\n生 O\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n最 O\n近 O\n五 O\n年 O\n担 O\n任 O\n武 B-ORG\n汉 M-ORG\n光 M-ORG\n迅 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n孙 B-NAME\n传 M-NAME\n尧 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n4 O\n4 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n程 M-ORG\n院 E-ORG\n院 B-TITLE\n士 E-TITLE\n、 O\n俄 B-ORG\n罗 M-ORG\n斯 M-ORG\n圣 M-ORG\n。 M-ORG\n\n彼 M-ORG\n得 M-ORG\n堡 M-ORG\n工 M-ORG\n程 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n士 E-TITLE\n。 O\n\n曾 O\n任 O\n新 B-ORG\n疆 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n公 M-ORG\n司 M-ORG\n可 M-ORG\n可 M-ORG\n托 M-ORG\n海 M-ORG\n矿 M-ORG\n务 M-ORG\n局 M-ORG\n选 M-ORG\n矿 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n矿 M-ORG\n冶 M-ORG\n研 M-ORG\n究 M-ORG\n总 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n； O\n\n北 B-ORG\n矿 M-ORG\n磁 M-ORG\n材 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n矿 B-ORG\n物 M-ORG\n加 M-ORG\n工 M-ORG\n科 M-ORG\n学 M-ORG\n与 M-ORG\n技 M-ORG\n术 M-ORG\n国 M-ORG\n家 M-ORG\n重 M-ORG\n点 M-ORG\n实 M-ORG\n验 M-ORG\n室 E-ORG\n主 B-TITLE\n任 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n矿 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n( O\n香 O\n港 O\n上 O\n市 O\n) O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n中 B-ORG\n铝 M-ORG\n国 M-ORG\n际 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n( O\n香 O\n港 O\n上 O\n市 O\n) O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n哈 B-ORG\n尔 M-ORG\n滨 M-ORG\n电 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n佳 M-ORG\n木 M-ORG\n斯 M-ORG\n电 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n朱 B-NAME\n平 M-NAME\n礼 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n通 M-ORG\n用 M-ORG\n汽 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n沈 B-ORG\n阳 M-ORG\n华 M-ORG\n晨 M-ORG\n汽 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n轿 B-ORG\n车 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n福 B-ORG\n耀 M-ORG\n集 M-ORG\n团 M-ORG\n（ M-ORG\n上 M-ORG\n海 M-ORG\n） M-ORG\n汽 M-ORG\n车 M-ORG\n玻 M-ORG\n璃 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n空 B-ORG\n调 M-ORG\n国 M-ORG\n际 M-ORG\n（ M-ORG\n上 M-ORG\n海 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n起 O\n任 O\n上 B-ORG\n海 M-ORG\n加 M-ORG\n冷 M-ORG\n松 M-ORG\n芝 M-ORG\n汽 M-ORG\n车 M-ORG\n空 M-ORG\n调 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n周 B-NAME\n云 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n烟 B-ORG\n台 M-ORG\n市 M-ORG\n医 M-ORG\n药 M-ORG\n公 M-ORG\n司 E-ORG\n组 B-TITLE\n织 M-TITLE\n科 M-TITLE\n干 M-TITLE\n事 E-TITLE\n至 O\n烟 B-ORG\n台 M-ORG\n市 M-ORG\n医 M-ORG\n药 M-ORG\n公 M-ORG\n司 E-ORG\n下 B-TITLE\n属 M-TITLE\n企 M-TITLE\n业 M-TITLE\n劳 M-TITLE\n资 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n瑞 M-ORG\n康 M-ORG\n药 M-ORG\n业 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n瑞 B-ORG\n康 M-ORG\n配 M-ORG\n送 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n中 M-TITLE\n心 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n监 E-TITLE\n， O\n瑞 B-TITLE\n康 M-TITLE\n配 M-TITLE\n送 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n瑞 M-ORG\n康 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n蔡 B-NAME\n锦 M-NAME\n波 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n0 O\n年 O\n生 O\n， O\n浙 B-LOC\n江 M-LOC\n杭 M-LOC\n州 M-LOC\n人 E-LOC\n， O\n汉 B-RACE\n族 E-RACE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n杭 B-ORG\n州 M-ORG\n汽 M-ORG\n车 M-ORG\n发 M-ORG\n动 M-ORG\n机 M-ORG\n厂 E-ORG\n机 B-TITLE\n械 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n海 B-ORG\n口 M-ORG\n三 M-ORG\n圣 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n德 B-ORG\n瑞 M-ORG\n投 M-ORG\n资 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n兼 O\n经 B-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n力 M-NAME\n生 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n成 B-ORG\n都 M-ORG\n人 M-ORG\n民 M-ORG\n商 M-ORG\n场 E-ORG\n针 B-TITLE\n织 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n， O\n北 B-TITLE\n站 M-TITLE\n分 M-TITLE\n场 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n成 B-ORG\n都 M-ORG\n人 M-ORG\n民 M-ORG\n商 M-ORG\n场 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n成 B-ORG\n都 M-ORG\n人 M-ORG\n民 M-ORG\n商 M-ORG\n场 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n成 B-ORG\n都 M-ORG\n人 M-ORG\n民 M-ORG\n商 M-ORG\n场 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n成 B-ORG\n都 M-ORG\n人 M-ORG\n民 M-ORG\n商 M-ORG\n场 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n孙 B-NAME\n永 M-NAME\n法 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n新 B-ORG\n大 M-ORG\n洲 M-ORG\n本 M-ORG\n田 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n电 B-TITLE\n器 M-TITLE\n设 M-TITLE\n计 M-TITLE\n室 M-TITLE\n主 M-TITLE\n管 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n现 M-ORG\n代 M-ORG\nM M-ORG\nO M-ORG\nB M-ORG\nI M-ORG\nS M-ORG\n汽 M-ORG\n车 M-ORG\n配 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n黄 B-ORG\n山 M-ORG\n金 M-ORG\n马 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n市 B-TITLE\n场 M-TITLE\n拓 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n职 M-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n黄 B-ORG\n山 M-ORG\n金 M-ORG\n马 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n杨 B-NAME\n启 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n出 O\n生 O\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n工 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n历 O\n任 O\n机 B-ORG\n械 M-ORG\n工 M-ORG\n业 M-ORG\n北 M-ORG\n京 M-ORG\n电 M-ORG\n工 M-ORG\n技 M-ORG\n术 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n至 O\n今 O\n， O\n任 O\n卧 B-ORG\n龙 M-ORG\n电 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n振 M-NAME\n宇 E-NAME\n先 O\n生 O\n， O\n中 B-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n司 O\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n行 M-TITLE\n政 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n杨 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n9 O\n7 O\n年 O\n加 O\n入 O\n中 B-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n并 O\n于 O\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n2 O\n月 O\n1 O\n6 O\n日 O\n获 O\n委 O\n任 O\n为 O\n中 B-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n杨 S-NAME\n先 O\n生 O\n曾 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n资 B-TITLE\n金 M-TITLE\n运 M-TITLE\n营 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n杨 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n9 O\n3 O\n年 O\n获 O\n得 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n公 M-ORG\n安 M-ORG\n大 M-ORG\n学 E-ORG\n法 B-PRO\n律 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n王 B-NAME\n成 M-NAME\n义 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n德 B-ORG\n国 M-ORG\n哥 M-ORG\n廷 M-ORG\n根 M-ORG\n大 M-ORG\n学 E-ORG\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n开 O\n始 O\n律 B-TITLE\n师 E-TITLE\n执 O\n业 O\n， O\n先 O\n后 O\n在 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n新 M-ORG\n世 M-ORG\n纪 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n广 B-ORG\n东 M-ORG\n鹏 M-ORG\n都 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n广 B-ORG\n东 M-ORG\n博 M-ORG\n合 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n东 B-ORG\n方 M-ORG\n昆 M-ORG\n仑 M-ORG\n（ M-ORG\n深 M-ORG\n圳 M-ORG\n） M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n执 O\n业 O\n， O\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n法 M-ORG\n制 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n（ O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n） O\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n人 M-ORG\n大 M-ORG\n常 M-ORG\n委 M-ORG\n会 E-ORG\n主 B-TITLE\n任 M-TITLE\n法 M-TITLE\n律 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n仲 M-ORG\n裁 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n仲 B-TITLE\n裁 M-TITLE\n员 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n英 M-ORG\n唐 M-ORG\n智 M-ORG\n能 M-ORG\n控 M-ORG\n制 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n邱 B-NAME\n九 M-NAME\n辉 E-NAME\n先 O\n生 O\n： O\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n金 B-ORG\n轮 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n历 O\n任 O\n南 B-ORG\n通 M-ORG\n合 M-ORG\n成 M-ORG\n纤 M-ORG\n维 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n技 M-TITLE\n术 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n和 O\n分 B-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n银 M-ORG\n凤 M-ORG\n化 M-ORG\n纤 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n原 O\n南 B-ORG\n通 M-ORG\n合 M-ORG\n成 M-ORG\n纤 M-ORG\n维 M-ORG\n厂 E-ORG\n） O\n生 B-TITLE\n产 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n经 B-TITLE\n营 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n金 B-ORG\n轮 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n行 B-TITLE\n政 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n兼 O\n总 B-TITLE\n裁 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n孟 B-NAME\n杰 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n籍 O\n贯 O\n河 B-LOC\n南 M-LOC\n周 M-LOC\n口 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n董 O\n秘 O\n资 O\n格 O\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n7 O\n月 O\n在 O\n湖 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n土 M-ORG\n木 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n学 O\n习 O\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n8 O\n月 O\n至 O\n今 O\n在 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n华 M-ORG\n建 M-ORG\n公 M-ORG\n路 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n股 B-TITLE\n权 M-TITLE\n管 M-TITLE\n理 M-TITLE\n一 M-TITLE\n部 M-TITLE\n项 M-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n部 B-TITLE\n门 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n部 B-TITLE\n门 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n部 B-TITLE\n门 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n首 B-TITLE\n席 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n， O\n兼 O\n任 O\n安 B-ORG\n徽 M-ORG\n皖 M-ORG\n通 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n河 B-ORG\n南 M-ORG\n中 M-ORG\n原 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n华 B-ORG\n北 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n（ O\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n7 O\n月 O\n在 O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 M-ORG\n光 M-ORG\n华 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n就 O\n读 O\n在 B-EDU\n职 M-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n） O\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n西 M-ORG\n五 M-ORG\n洲 M-ORG\n交 M-ORG\n通 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n、 M-TITLE\n七 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n范 B-NAME\n志 M-NAME\n伟 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n0 O\n年 O\n4 O\n月 O\n， O\n高 B-EDU\n中 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n技 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n云 B-ORG\n南 M-ORG\n白 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n生 M-ORG\n产 M-ORG\n制 M-ORG\n造 M-ORG\n中 M-ORG\n心 E-ORG\n胶 B-TITLE\n囊 M-TITLE\n生 M-TITLE\n产 M-TITLE\n线 M-TITLE\n设 M-TITLE\n备 M-TITLE\n维 M-TITLE\n护 M-TITLE\n员 E-TITLE\n。 O\n\n云 B-ORG\n南 M-ORG\n白 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n动 M-ORG\n力 M-ORG\n装 M-ORG\n备 M-ORG\n部 M-ORG\n技 M-ORG\n术 M-ORG\n中 M-ORG\n心 E-ORG\n“ O\n名 O\n匠 O\n工 O\n作 O\n室 O\n” O\n特 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n云 B-ORG\n南 M-ORG\n白 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n华 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n， O\n民 B-ORG\n进 M-ORG\n深 M-ORG\n圳 M-ORG\n市 M-ORG\n委 E-ORG\n副 B-TITLE\n主 M-TITLE\n委 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n7 O\n月 O\n- O\n1 O\n9 O\n9 O\n4 O\n年 O\n3 O\n月 O\n在 O\n深 B-ORG\n圳 M-ORG\n罗 M-ORG\n湖 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n3 O\n月 O\n- O\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n0 O\n月 O\n在 O\n招 B-ORG\n银 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n现 O\n招 B-ORG\n商 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n） O\n任 O\n发 B-TITLE\n行 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n1 O\n0 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n6 O\n月 O\n在 O\n国 B-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n投 B-TITLE\n资 M-TITLE\n银 M-TITLE\n行 M-TITLE\n部 M-TITLE\n执 M-TITLE\n行 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n6 O\n- O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n月 O\n在 O\n富 B-ORG\n港 M-ORG\n控 M-ORG\n股 M-ORG\n（ M-ORG\n香 M-ORG\n港 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n执 B-TITLE\n行 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n华 M-NAME\n明 E-NAME\n先 O\n生 O\n现 O\n兼 O\n任 O\n上 O\n市 O\n公 O\n司 O\n\" O\n陕 B-ORG\n西 M-ORG\n秦 M-ORG\n川 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n\" O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n综 B-ORG\n合 M-ORG\n开 M-ORG\n发 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n（ M-ORG\n中 M-ORG\n国 M-ORG\n。 M-ORG\n\n深 M-ORG\n圳 M-ORG\n） E-ORG\n特 B-TITLE\n邀 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n徐 B-NAME\n勇 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n最 O\n近 O\n五 O\n年 O\n担 O\n任 O\n武 B-ORG\n汉 M-ORG\n光 M-ORG\n迅 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n电 M-ORG\n信 M-ORG\n器 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n薛 B-NAME\n瑞 M-NAME\n勇 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n法 M-TITLE\n规 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n大 B-ORG\n成 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n审 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n大 B-ORG\n成 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n审 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n任 O\n山 B-ORG\n东 M-ORG\n大 M-ORG\n成 M-ORG\n农 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n法 M-TITLE\n规 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n刘 B-NAME\n方 M-NAME\n权 E-NAME\n先 O\n生 O\n： O\n现 O\n任 O\n威 B-ORG\n华 M-ORG\n股 M-ORG\n份 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n司 B-TITLE\n法 M-TITLE\n会 M-TITLE\n计 M-TITLE\n鉴 M-TITLE\n定 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n任 O\n瑞 B-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n佛 M-ORG\n山 M-ORG\n分 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n， O\n主 O\n持 O\n事 O\n务 O\n所 O\n全 O\n面 O\n工 O\n作 O\n； O\n\n同 O\n时 O\n兼 O\n任 O\n广 B-ORG\n东 M-ORG\n公 M-ORG\n信 M-ORG\n管 M-ORG\n理 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n省 M-ORG\n注 M-ORG\n册 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n及 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n注 M-ORG\n册 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n省 M-ORG\n国 M-ORG\n资 M-ORG\n委 M-ORG\n专 M-ORG\n家 M-ORG\n库 E-ORG\n及 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n管 M-ORG\n理 M-ORG\n咨 M-ORG\n询 M-ORG\n协 M-ORG\n会 M-ORG\n专 M-ORG\n家 M-ORG\n库 E-ORG\n财 B-TITLE\n务 M-TITLE\n专 M-TITLE\n家 E-TITLE\n； O\n\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n工 M-ORG\n商 M-ORG\n行 M-ORG\n政 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n行 B-TITLE\n政 M-TITLE\n廉 M-TITLE\n政 M-TITLE\n监 M-TITLE\n督 M-TITLE\n员 E-TITLE\n； O\n\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n以 O\n及 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n燃 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n蓝 M-ORG\n箭 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n和 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n天 M-ORG\n波 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n职 O\n务 O\n。 O\n\n长 O\n期 O\n从 O\n事 O\n会 O\n计 O\n审 O\n计 O\n、 O\n税 O\n务 O\n、 O\n评 O\n估 O\n、 O\n咨 O\n询 O\n、 O\n培 O\n训 O\n教 O\n育 O\n等 O\n工 O\n作 O\n， O\n并 O\n致 O\n力 O\n于 O\n企 O\n业 O\n财 O\n务 O\n运 O\n营 O\n与 O\n管 O\n理 O\n研 O\n究 O\n， O\n具 O\n有 O\n丰 O\n富 O\n的 O\n企 O\n业 O\n重 O\n组 O\n策 O\n划 O\n、 O\n企 O\n业 O\n管 O\n理 O\n咨 O\n询 O\n、 O\n投 O\n融 O\n资 O\n咨 O\n询 O\n、 O\n管 O\n理 O\n培 O\n训 O\n等 O\n方 O\n面 O\n的 O\n实 O\n践 O\n经 O\n验 O\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n冯 B-NAME\n淑 M-NAME\n华 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n1 O\n2 O\n月 O\n取 O\n得 O\n上 O\n市 O\n公 O\n司 O\n独 O\n立 O\n董 O\n事 O\n培 O\n训 O\n班 O\n结 O\n业 O\n证 O\n书 O\n。 O\n\n历 O\n任 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n经 M-ORG\n济 M-ORG\n体 M-ORG\n制 M-ORG\n改 M-ORG\n革 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n监 M-ORG\n会 M-ORG\n长 M-ORG\n春 M-ORG\n证 M-ORG\n券 M-ORG\n监 M-ORG\n管 M-ORG\n特 M-ORG\n派 M-ORG\n员 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n法 B-TITLE\n规 M-TITLE\n稽 M-TITLE\n查 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n现 O\n拟 O\n离 O\n休 O\n。 O\n\n董 B-TITLE\n事 E-TITLE\n刘 B-NAME\n振 M-NAME\n宇 E-NAME\n先 O\n生 O\n： O\n历 O\n任 O\n天 B-ORG\n津 M-ORG\n经 M-ORG\n济 M-ORG\n技 M-ORG\n术 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n工 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n泰 M-ORG\n达 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n项 M-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n泰 M-ORG\n达 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n兼 O\n任 O\n天 B-ORG\n津 M-ORG\n滨 M-ORG\n海 M-ORG\n能 M-ORG\n源 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n霍 B-NAME\n美 M-NAME\n英 E-NAME\n女 O\n士 O\n： O\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n先 O\n后 O\n任 O\n职 O\n东 B-ORG\n瑞 M-ORG\n制 M-ORG\n药 M-ORG\n（ M-ORG\n控 M-ORG\n股 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n地 B-TITLE\n区 M-TITLE\n销 M-TITLE\n售 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n麦 M-ORG\n邦 M-ORG\n生 M-ORG\n物 M-ORG\n工 M-ORG\n程 M-ORG\n技 M-ORG\n术 M-ORG\n公 M-ORG\n司 E-ORG\n糖 B-TITLE\n尿 M-TITLE\n病 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n入 O\n职 O\n江 B-ORG\n苏 M-ORG\n鱼 M-ORG\n跃 M-ORG\n医 M-ORG\n疗 M-ORG\n设 M-ORG\n备 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n兼 O\n血 B-TITLE\n糖 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n左 B-NAME\n爱 M-NAME\n军 E-NAME\n， O\n男 O\n， O\n白 B-RACE\n族 E-RACE\n， O\n中 B-ORG\n国 M-ORG\n共 M-ORG\n产 M-ORG\n党 E-ORG\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n云 B-ORG\n南 M-ORG\n沾 M-ORG\n益 M-ORG\n化 M-ORG\n肥 M-ORG\n厂 E-ORG\n团 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n书 B-TITLE\n记 E-TITLE\n、 O\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n兼 O\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n组 B-TITLE\n织 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n兼 O\n党 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n沾 M-ORG\n化 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n云 M-ORG\n维 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n友 M-NAME\n权 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n7 O\n月 O\n出 O\n生 O\n。 O\n\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n最 O\n近 O\n5 O\n年 O\n曾 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n已 O\n离 O\n任 O\n。 O\n\n熊 B-NAME\n必 M-NAME\n琳 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n中 B-ORG\n南 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n近 O\n五 O\n年 O\n来 O\n， O\n先 O\n后 O\n担 O\n任 O\n国 B-ORG\n家 M-ORG\n发 M-ORG\n展 M-ORG\n和 M-ORG\n改 M-ORG\n革 M-ORG\n委 M-ORG\n工 M-ORG\n业 M-ORG\n司 E-ORG\n副 B-TITLE\n司 M-TITLE\n长 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n发 M-ORG\n展 M-ORG\n和 M-ORG\n改 M-ORG\n革 M-ORG\n委 M-ORG\n产 M-ORG\n业 M-ORG\n协 M-ORG\n调 M-ORG\n司 E-ORG\n巡 B-TITLE\n视 M-TITLE\n员 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n食 M-ORG\n品 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n兼 O\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n国 B-ORG\n家 M-ORG\n食 M-ORG\n品 M-ORG\n安 M-ORG\n全 M-ORG\n风 M-ORG\n险 M-ORG\n评 M-ORG\n估 M-ORG\n中 M-ORG\n心 E-ORG\n理 B-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n工 M-ORG\n程 M-ORG\n咨 M-ORG\n询 M-ORG\n公 M-ORG\n司 E-ORG\n专 B-TITLE\n家 M-TITLE\n学 M-TITLE\n术 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n雷 B-NAME\n霞 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n任 O\n新 B-ORG\n疆 M-ORG\n化 M-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n员 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n、 O\n书 B-TITLE\n记 E-TITLE\n、 O\n法 B-TITLE\n人 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n任 O\n中 B-ORG\n泰 M-ORG\n化 M-ORG\n学 E-ORG\n物 B-TITLE\n资 M-TITLE\n装 M-TITLE\n备 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n7 O\n月 O\n任 O\n中 B-ORG\n泰 M-ORG\n化 M-ORG\n学 M-ORG\n供 M-ORG\n销 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n书 B-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n任 O\n中 B-ORG\n泰 M-ORG\n化 M-ORG\n学 E-ORG\n总 B-TITLE\n经 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n商 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n任 O\n中 B-ORG\n泰 M-ORG\n化 M-ORG\n学 E-ORG\n采 B-TITLE\n购 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n任 O\n中 B-ORG\n泰 M-ORG\n化 M-ORG\n学 E-ORG\n销 B-TITLE\n售 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n泰 M-ORG\n化 M-ORG\n学 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n新 B-ORG\n疆 M-ORG\n富 M-ORG\n丽 M-ORG\n达 M-ORG\n纤 M-ORG\n维 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n新 B-ORG\n疆 M-ORG\n富 M-ORG\n丽 M-ORG\n达 M-ORG\n纤 M-ORG\n维 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n吴 B-NAME\n仁 M-NAME\n铭 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n3 O\n8 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n工 E-TITLE\n。 O\n\n曾 O\n在 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n化 M-ORG\n学 M-ORG\n所 E-ORG\n、 O\n兰 B-ORG\n州 M-ORG\n地 M-ORG\n质 M-ORG\n所 E-ORG\n从 O\n事 O\n科 O\n研 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n起 O\n历 O\n任 O\n甘 B-ORG\n肃 M-ORG\n环 M-ORG\n境 M-ORG\n保 M-ORG\n护 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n、 O\n甘 B-ORG\n肃 M-ORG\n环 M-ORG\n境 M-ORG\n保 M-ORG\n护 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\nI M-ORG\nT M-ORG\nS M-ORG\n公 M-ORG\n司 E-ORG\n实 B-TITLE\n验 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n起 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n。 O\n\n在 O\n环 O\n境 O\n保 O\n护 O\n方 O\n面 O\n拥 O\n有 O\n较 O\n深 O\n的 O\n造 O\n诣 O\n， O\n在 O\n国 O\n内 O\n核 O\n心 O\n期 O\n刊 O\n上 O\n发 O\n表 O\n论 O\n文 O\n2 O\n0 O\n余 O\n篇 O\n， O\n国 O\n外 O\n期 O\n刊 O\n上 O\n发 O\n表 O\n论 O\n文 O\n3 O\n篇 O\n， O\n曾 O\n多 O\n次 O\n获 O\n得 O\n国 O\n家 O\n科 O\n学 O\n技 O\n术 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n、 O\n三 O\n等 O\n奖 O\n， O\n并 O\n被 O\n评 O\n为 O\n全 O\n国 O\n环 O\n境 O\n保 O\n护 O\n系 O\n统 O\n精 O\n神 O\n文 O\n明 O\n先 O\n进 O\n个 O\n人 O\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n为 O\n本 O\n公 O\n司 O\n核 O\n心 O\n技 O\n术 O\n人 O\n员 O\n。 O\n\n黄 B-NAME\n忠 M-NAME\n和 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n企 B-PRO\n业 M-PRO\n管 M-PRO\n理 M-PRO\n现 M-PRO\n代 M-PRO\n财 M-PRO\n务 M-PRO\n与 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n研 B-EDU\n究 M-EDU\n生 M-EDU\n进 M-EDU\n修 M-EDU\n班 E-EDU\n结 O\n业 O\n， O\n历 O\n任 O\n张 B-ORG\n家 M-ORG\n港 M-ORG\n鑫 M-ORG\n宏 M-ORG\n铝 M-ORG\n业 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n华 B-ORG\n夏 M-ORG\n（ M-ORG\n张 M-ORG\n家 M-ORG\n港 M-ORG\n） M-ORG\n电 M-ORG\n梯 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n长 B-ORG\n江 M-ORG\n润 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n现 O\n任 O\n长 B-ORG\n江 M-ORG\n润 M-ORG\n发 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n长 B-ORG\n江 M-ORG\n润 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n董 B-TITLE\n事 E-TITLE\n， O\n长 B-ORG\n江 M-ORG\n润 M-ORG\n发 M-ORG\n（ M-ORG\n张 M-ORG\n家 M-ORG\n港 M-ORG\n） M-ORG\n重 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n胡 B-NAME\n本 M-NAME\n源 E-NAME\n： O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n会 B-PRO\n计 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n硕 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n新 B-ORG\n疆 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n曾 O\n任 O\n新 B-ORG\n疆 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\nA B-TITLE\nC M-TITLE\nC M-TITLE\nA M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n主 O\n要 O\n从 O\n事 O\n内 O\n部 O\n控 O\n制 O\n与 O\n审 O\n计 O\n领 O\n域 O\n的 O\n研 O\n究 O\n， O\n主 O\n持 O\n并 O\n参 O\n与 O\n多 O\n项 O\n国 O\n家 O\n及 O\n省 O\n部 O\n级 O\n课 O\n题 O\n， O\n入 O\n选 O\n第 O\n四 O\n批 O\n全 O\n国 O\n会 O\n计 O\n学 O\n术 O\n类 O\n领 O\n军 O\n人 O\n才 O\n。 O\n\n孙 B-NAME\n建 M-NAME\n华 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n理 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n硕 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n刘 B-NAME\n凯 M-NAME\n风 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n普 M-EDU\n通 M-EDU\n班 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n因 O\n退 O\n休 O\n于 O\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n不 O\n再 O\n担 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n青 M-ORG\n山 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n及 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n职 O\n务 O\n。 O\n\n陈 B-NAME\n传 M-NAME\n贤 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n陈 B-NAME\n传 M-NAME\n贤 E-NAME\n先 O\n生 O\n长 O\n期 O\n从 O\n事 O\n营 O\n销 O\n管 O\n理 O\n， O\n主 O\n持 O\n开 O\n发 O\n了 O\n大 O\n量 O\n较 O\n有 O\n影 O\n响 O\n力 O\n的 O\n钢 O\n结 O\n构 O\n工 O\n程 O\n项 O\n目 O\n， O\n具 O\n有 O\n丰 O\n富 O\n的 O\n工 O\n程 O\n项 O\n目 O\n市 O\n场 O\n开 O\n发 O\n经 O\n验 O\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n获 O\n浙 O\n江 O\n省 O\n建 O\n材 O\n科 O\n技 O\n进 O\n步 O\n一 O\n等 O\n奖 O\n和 O\n浙 O\n江 O\n省 O\n科 O\n技 O\n进 O\n步 O\n优 O\n秀 O\n奖 O\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n东 M-ORG\n南 M-ORG\n网 M-ORG\n架 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n天 B-ORG\n津 M-ORG\n东 M-ORG\n南 M-ORG\n钢 M-ORG\n结 M-ORG\n构 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n蔡 B-NAME\n增 M-NAME\n正 E-NAME\n， O\n男 O\n， O\n博 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n今 O\n， O\n在 O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n院 E-ORG\n任 O\n经 B-TITLE\n济 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n兰 B-NAME\n国 M-NAME\n政 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n未 O\n有 O\n任 O\n何 O\n国 O\n家 O\n和 O\n地 O\n区 O\n的 O\n永 O\n久 O\n海 O\n外 O\n居 O\n留 O\n权 O\n； O\n\n现 O\n为 O\n福 B-ORG\n建 M-ORG\n物 M-ORG\n质 M-ORG\n结 M-ORG\n构 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n兼 O\n任 O\n所 B-TITLE\n工 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n生 M-ORG\n产 M-ORG\n力 M-ORG\n促 M-ORG\n进 M-ORG\n协 M-ORG\n会 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n理 M-TITLE\n事 M-TITLE\n会 M-TITLE\n常 M-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n高 M-ORG\n科 M-ORG\n技 M-ORG\n产 M-ORG\n业 M-ORG\n促 M-ORG\n进 M-ORG\n会 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n副 M-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n福 B-ORG\n州 M-ORG\n市 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n等 O\n职 O\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n起 O\n任 O\n福 B-ORG\n建 M-ORG\n福 M-ORG\n晶 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n黄 B-NAME\n仕 M-NAME\n群 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n地 M-ORG\n质 M-ORG\n大 M-ORG\n学 E-ORG\n。 O\n\n黄 S-NAME\n先 O\n生 O\n是 O\n广 B-ORG\n东 M-ORG\n群 M-ORG\n兴 M-ORG\n玩 M-ORG\n具 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n主 O\n要 O\n创 O\n立 O\n者 O\n之 O\n一 O\n、 O\n实 B-TITLE\n际 M-TITLE\n控 M-TITLE\n制 M-TITLE\n人 E-TITLE\n， O\n并 O\n长 O\n期 O\n主 O\n管 O\n公 B-ORG\n司 E-ORG\n采 O\n购 O\n、 O\n生 O\n产 O\n、 O\n财 O\n务 O\n等 O\n工 O\n作 O\n， O\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n群 M-ORG\n兴 M-ORG\n玩 M-ORG\n具 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n并 O\n担 O\n任 O\n群 B-ORG\n興 M-ORG\n玩 M-ORG\n具 M-ORG\n（ M-ORG\n香 M-ORG\n港 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n澄 B-ORG\n海 M-ORG\n工 M-ORG\n商 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n澄 B-ORG\n海 M-ORG\n青 M-ORG\n年 M-ORG\n企 M-ORG\n业 M-ORG\n家 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n名 B-TITLE\n誉 M-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n澄 M-ORG\n海 M-ORG\n区 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n等 O\n职 O\n。 O\n\n张 B-NAME\n惠 M-NAME\n强 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n生 O\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n材 M-ORG\n料 M-ORG\n学 M-ORG\n院 E-ORG\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n毕 O\n业 O\n。 O\n\n近 O\n5 O\n年 O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n申 M-ORG\n能 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n究 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n总 M-TITLE\n监 E-TITLE\n兼 O\n研 B-TITLE\n究 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n松 M-ORG\n江 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n程 B-NAME\n少 M-NAME\n博 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n博 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n十 M-ORG\n届 M-ORG\n政 M-ORG\n协 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n十 B-ORG\n一 M-ORG\n届 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n， O\n国 O\n家 O\n技 O\n术 O\n发 O\n明 O\n奖 O\n、 O\n国 O\n家 O\n科 O\n技 O\n进 O\n步 O\n奖 O\n获 O\n得 O\n者 O\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n龙 M-ORG\n力 M-ORG\n生 M-ORG\n物 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n享 O\n受 O\n国 O\n务 O\n院 O\n颁 O\n发 O\n特 O\n殊 O\n津 O\n贴 O\n。 O\n\n李 B-NAME\n国 M-NAME\n平 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n出 O\n生 O\n。 O\n\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n国 B-TITLE\n际 M-TITLE\n内 M-TITLE\n部 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n6 O\n月 O\n1 O\n日 O\n取 O\n得 O\n香 B-ORG\n港 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n高 B-PRO\n层 M-PRO\n管 M-PRO\n理 M-PRO\n人 M-PRO\n员 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n铁 M-ORG\n路 M-ORG\n局 M-ORG\n临 M-ORG\n汾 M-ORG\n铁 M-ORG\n路 M-ORG\n分 M-ORG\n局 E-ORG\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n敬 M-ORG\n业 M-ORG\n瑞 M-ORG\n之 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n项 M-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n首 B-ORG\n创 M-ORG\n置 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n裕 B-ORG\n田 M-ORG\n中 M-ORG\n国 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n加 O\n入 O\n阳 B-ORG\n光 M-ORG\n新 M-ORG\n业 M-ORG\n地 M-ORG\n产 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n现 O\n任 O\n阳 B-ORG\n光 M-ORG\n新 M-ORG\n业 M-ORG\n地 M-ORG\n产 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n白 B-NAME\n永 M-NAME\n强 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 M-EDU\n程 M-EDU\n度 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n西 B-ORG\n部 M-ORG\n矿 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n西 B-ORG\n部 M-ORG\n矿 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n， O\n青 B-ORG\n海 M-ORG\n省 M-ORG\n盐 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n自 O\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n任 O\n西 B-ORG\n部 M-ORG\n矿 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n冀 B-NAME\n树 M-NAME\n军 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n电 B-ORG\n解 M-ORG\n一 M-ORG\n分 M-ORG\n厂 E-ORG\n经 B-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n8 O\n～ O\n2 O\n0 O\n0 O\n0 O\n年 O\n任 O\n包 B-ORG\n铝 M-ORG\n集 M-ORG\n团 M-ORG\n电 M-ORG\n解 M-ORG\n一 M-ORG\n分 M-ORG\n厂 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n任 O\n包 B-ORG\n铝 M-ORG\n集 M-ORG\n团 M-ORG\n电 M-ORG\n解 M-ORG\n一 M-ORG\n分 M-ORG\n厂 E-ORG\n经 B-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 M-ORG\n电 M-ORG\n解 M-ORG\n一 M-ORG\n分 M-ORG\n厂 E-ORG\n经 B-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n小 M-NAME\n静 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n湖 B-ORG\n南 M-ORG\n苎 M-ORG\n麻 M-ORG\n技 M-ORG\n术 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n上 M-ORG\n海 M-ORG\n潇 M-ORG\n湘 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n发 B-TITLE\n展 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n杨 B-NAME\n铁 M-NAME\n强 E-NAME\n： O\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n在 O\n株 B-ORG\n洲 M-ORG\n车 M-ORG\n辆 M-ORG\n厂 E-ORG\n参 O\n加 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n调 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n商 B-TITLE\n场 M-TITLE\n部 M-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n庆 B-ORG\n云 M-ORG\n装 M-ORG\n饰 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n房 B-ORG\n地 M-ORG\n产 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n广 B-ORG\n告 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n、 M-TITLE\n七 M-TITLE\n、 M-TITLE\n八 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n现 O\n没 O\n有 O\n持 O\n有 O\n本 O\n公 O\n司 O\n股 O\n份 O\n， O\n未 O\n受 O\n过 O\n中 O\n国 O\n证 O\n监 O\n会 O\n及 O\n其 O\n他 O\n有 O\n关 O\n部 O\n门 O\n的 O\n处 O\n罚 O\n和 O\n证 O\n券 O\n交 O\n易 O\n所 O\n的 O\n惩 O\n戒 O\n。 O\n\n黄 B-NAME\n树 M-NAME\n喜 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n籍 O\n贯 O\n广 B-LOC\n东 E-LOC\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n8 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n5 O\n月 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n共 M-ORG\n产 M-ORG\n党 E-ORG\n， O\n在 B-EDU\n职 M-EDU\n硕 M-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n盐 M-ORG\n田 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n8 O\n2 O\n年 O\n8 O\n月 O\n为 O\n广 B-ORG\n东 M-ORG\n汕 M-ORG\n头 M-ORG\n农 M-ORG\n学 M-ORG\n院 E-ORG\n学 B-TITLE\n生 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n8 O\n6 O\n年 O\n8 O\n月 O\n历 O\n任 O\n广 B-ORG\n东 M-ORG\n陆 M-ORG\n丰 M-ORG\n县 M-ORG\n西 M-ORG\n南 M-ORG\n区 M-ORG\n委 E-ORG\n资 B-TITLE\n料 M-TITLE\n员 E-TITLE\n、 O\n科 B-TITLE\n协 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n8 O\n7 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n共 M-ORG\n广 M-ORG\n东 M-ORG\n揭 M-ORG\n阳 M-ORG\n县 M-ORG\n纪 M-ORG\n委 E-ORG\n科 B-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n8 O\n9 O\n年 O\n6 O\n月 O\n在 O\n职 O\n带 O\n薪 O\n在 O\n中 B-ORG\n山 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n律 M-ORG\n系 E-ORG\n进 O\n修 O\n大 B-EDU\n专 E-EDU\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n6 O\n月 O\n至 O\n1 O\n9 O\n9 O\n0 O\n年 O\n8 O\n月 O\n历 O\n任 O\n中 B-ORG\n共 M-ORG\n广 M-ORG\n东 M-ORG\n揭 M-ORG\n阳 M-ORG\n县 M-ORG\n纪 M-ORG\n委 E-ORG\n科 B-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n科 M-TITLE\n级 M-TITLE\n纪 M-TITLE\n检 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n8 O\n月 O\n历 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n盐 M-ORG\n田 M-ORG\n港 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n业 M-TITLE\n务 M-TITLE\n副 M-TITLE\n主 M-TITLE\n办 E-TITLE\n、 O\n主 B-TITLE\n办 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n5 O\n月 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n盐 M-ORG\n田 M-ORG\n港 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n其 O\n中 O\n： O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n0 O\n月 O\n在 O\n职 O\n攻 O\n读 O\n美 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n东 M-ORG\n西 M-ORG\n方 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n） O\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n， O\n任 O\n盐 B-ORG\n田 M-ORG\n港 M-ORG\n集 M-ORG\n团 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n， O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n至 O\n今 O\n， O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n今 O\n， O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n魏 B-NAME\n永 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n生 O\n于 O\n1 O\n9 O\n7 O\n6 O\n年 O\n1 O\n月 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n河 B-ORG\n北 M-ORG\n衡 M-ORG\n水 M-ORG\n老 M-ORG\n白 M-ORG\n干 M-ORG\n酒 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n礼 M-NAME\n璠 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n曾 O\n任 O\n同 B-ORG\n济 M-ORG\n大 M-ORG\n学 E-ORG\n汽 B-TITLE\n车 M-TITLE\n系 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n上 B-ORG\n汽 M-ORG\n- M-ORG\n同 M-ORG\n济 M-ORG\n汽 M-ORG\n车 M-ORG\n整 M-ORG\n车 M-ORG\n工 M-ORG\n程 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n同 B-ORG\n济 M-ORG\n大 M-ORG\n学 M-ORG\n中 M-ORG\n德 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n顾 B-TITLE\n问 E-TITLE\n， O\n汽 B-TITLE\n车 M-TITLE\n服 M-TITLE\n务 M-TITLE\n工 M-TITLE\n程 M-TITLE\n教 M-TITLE\n席 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n吴 B-NAME\n邦 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n、 O\n在 B-EDU\n职 M-EDU\n博 M-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n3 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n加 O\n入 O\n韶 B-ORG\n钢 E-ORG\n， O\n历 O\n任 O\n韶 B-ORG\n关 M-ORG\n钢 M-ORG\n铁 E-ORG\n总 B-TITLE\n监 E-TITLE\n、 O\n战 B-TITLE\n略 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n广 B-TITLE\n州 M-TITLE\n土 M-TITLE\n地 M-TITLE\n开 M-TITLE\n发 M-TITLE\n项 M-TITLE\n目 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n驻 B-ORG\n广 M-ORG\n州 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n南 M-ORG\n华 M-ORG\n置 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n韶 B-ORG\n钢 M-ORG\n松 M-ORG\n山 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n广 B-TITLE\n州 M-TITLE\n土 M-TITLE\n地 M-TITLE\n开 M-TITLE\n发 M-TITLE\n项 M-TITLE\n目 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n韶 M-ORG\n钢 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n多 B-TITLE\n元 M-TITLE\n产 M-TITLE\n业 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n魏 B-NAME\n玲 M-NAME\n丽 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n毕 O\n业 O\n于 O\n浙 B-ORG\n江 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n会 B-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n海 M-ORG\n正 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n富 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 M-ORG\n台 M-ORG\n州 M-ORG\n营 M-ORG\n业 M-ORG\n部 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n台 B-ORG\n州 M-ORG\n市 M-ORG\n椒 M-ORG\n江 M-ORG\n区 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n产 B-TITLE\n权 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n发 M-TITLE\n展 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n兼 O\n任 O\n海 B-ORG\n正 M-ORG\n药 M-ORG\n业 M-ORG\n南 M-ORG\n通 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n海 B-ORG\n旭 M-ORG\n生 M-ORG\n物 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n维 M-NAME\n维 E-NAME\n女 O\n士 O\n， O\n女 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n李 S-NAME\n女 O\n士 O\n自 O\n1 O\n9 O\n9 O\n1 O\n年 O\n起 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n自 O\n1 O\n9 O\n9 O\n9 O\n年 O\n起 O\n至 O\n今 O\n任 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n李 S-NAME\n女 O\n士 O\n曾 O\n于 O\n1 O\n9 O\n6 O\n3 O\n年 O\n至 O\n1 O\n9 O\n8 O\n9 O\n年 O\n在 O\n上 B-ORG\n海 M-ORG\n耀 M-ORG\n华 M-ORG\n玻 M-ORG\n璃 M-ORG\n厂 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n工 O\n作 O\n。 O\n\n刘 B-NAME\n蔚 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\n工 B-ORG\n商 M-ORG\n银 M-ORG\n行 M-ORG\n江 M-ORG\n西 M-ORG\n省 M-ORG\n上 M-ORG\n饶 M-ORG\n市 M-ORG\n分 M-ORG\n行 E-ORG\n信 B-TITLE\n用 M-TITLE\n卡 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n干 M-TITLE\n事 E-TITLE\n； O\n\n西 B-ORG\n子 M-ORG\n电 M-ORG\n梯 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n部 B-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n西 B-ORG\n子 M-ORG\n联 M-ORG\n合 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n金 B-TITLE\n融 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n李 B-NAME\n峰 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n8 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n福 B-ORG\n能 M-ORG\n集 M-ORG\n团 E-ORG\n审 B-TITLE\n计 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n曾 O\n任 O\n福 B-ORG\n建 M-ORG\n福 M-ORG\n能 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n曾 O\n兼 O\n任 O\n福 B-ORG\n建 M-ORG\n南 M-ORG\n平 M-ORG\n新 M-ORG\n南 M-ORG\n针 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n王 B-NAME\n全 M-NAME\n喜 E-NAME\n先 O\n生 O\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 M-ORG\n企 M-ORG\n业 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n社 B-ORG\n会 M-ORG\n兼 M-ORG\n职 M-ORG\n有 M-ORG\n国 M-ORG\n家 M-ORG\n税 M-ORG\n务 M-ORG\n总 M-ORG\n局 E-ORG\n特 B-TITLE\n约 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n会 E-ORG\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n主 O\n要 O\n研 O\n究 O\n领 O\n域 O\n为 O\n公 O\n司 O\n财 O\n务 O\n管 O\n理 O\n、 O\n会 O\n计 O\n学 O\n、 O\n税 O\n收 O\n、 O\n企 O\n业 O\n制 O\n度 O\n与 O\n公 O\n司 O\n治 O\n理 O\n。 O\n\n林 B-NAME\n海 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n在 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n湛 M-ORG\n江 M-ORG\n市 M-ORG\n中 M-ORG\n心 M-ORG\n支 M-ORG\n行 E-ORG\n工 O\n作 O\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n任 O\n湛 B-ORG\n江 M-ORG\n市 M-ORG\n万 M-ORG\n吉 M-ORG\n利 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n广 M-ORG\n州 M-ORG\n阳 M-ORG\n普 M-ORG\n医 M-ORG\n疗 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n任 O\n佛 B-ORG\n山 M-ORG\n华 M-ORG\n新 M-ORG\n包 M-ORG\n装 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n战 B-TITLE\n略 M-TITLE\n投 M-TITLE\n资 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n进 O\n入 O\n广 B-ORG\n州 M-ORG\n阳 M-ORG\n普 M-ORG\n医 M-ORG\n疗 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n计 O\n划 O\n财 O\n务 O\n部 O\n工 O\n作 O\n， O\n现 O\n任 O\n广 B-ORG\n州 M-ORG\n阳 M-ORG\n普 M-ORG\n医 M-ORG\n疗 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n曹 B-NAME\n海 M-NAME\n成 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n通 M-ORG\n产 M-ORG\n包 M-ORG\n装 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n运 B-TITLE\n营 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n通 M-ORG\n产 M-ORG\n丽 M-ORG\n星 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n兼 O\n任 O\n公 B-ORG\n司 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n东 M-ORG\n深 M-ORG\n圳 M-ORG\n市 M-ORG\n通 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n鹏 M-ORG\n达 M-ORG\n尔 M-ORG\n粉 M-ORG\n体 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n商 M-ORG\n控 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n长 B-ORG\n和 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n肇 B-ORG\n庆 M-ORG\n市 M-ORG\n通 M-ORG\n产 M-ORG\n玻 M-ORG\n璃 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n通 M-ORG\n产 M-ORG\n玻 M-ORG\n璃 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n华 M-ORG\n晶 M-ORG\n玻 M-ORG\n璃 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n黄 B-NAME\n锦 M-NAME\n波 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n于 O\n华 B-ORG\n南 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n。 O\n\n曾 O\n任 O\n职 O\n于 O\n东 B-ORG\n莞 M-ORG\n市 M-ORG\n果 M-ORG\n菜 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n加 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n勤 B-ORG\n上 M-ORG\n光 M-ORG\n电 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n产 B-TITLE\n品 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n耿 B-NAME\n加 M-NAME\n怀 E-NAME\n， O\n工 B-TITLE\n程 M-TITLE\n技 M-TITLE\n术 M-TITLE\n应 M-TITLE\n用 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n耿 S-NAME\n先 O\n生 O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n兖 B-ORG\n矿 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n（ M-ORG\n“ M-ORG\n母 M-ORG\n公 M-ORG\n司 M-ORG\n” M-ORG\n） E-ORG\n董 B-TITLE\n事 M-TITLE\n局 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n耿 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n8 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n间 O\n， O\n先 O\n后 O\n任 O\n淄 B-ORG\n博 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n安 B-TITLE\n监 M-TITLE\n局 M-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n淄 B-ORG\n博 E-ORG\n矿 B-TITLE\n务 M-TITLE\n局 M-TITLE\n局 M-TITLE\n长 E-TITLE\n。 O\n\n耿 S-NAME\n先 O\n生 O\n于 O\n2 O\n0 O\n0 O\n2 O\n年 O\n加 O\n入 O\n母 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n任 O\n母 B-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n局 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n任 O\n母 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n局 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n耿 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n山 B-ORG\n东 M-ORG\n矿 M-ORG\n业 M-ORG\n学 M-ORG\n院 E-ORG\n。 O\n\n杨 B-NAME\n慧 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n国 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n江 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n研 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\nM M-ORG\nB M-ORG\nA M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n2 O\n0 O\n0 O\n2 O\n年 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n任 O\n江 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\nM M-ORG\nB M-ORG\nA M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n任 O\n江 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-TITLE\n士 M-TITLE\n后 M-TITLE\n管 M-TITLE\n理 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n至 O\n今 O\n任 O\n江 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n国 M-ORG\n际 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n高 M-ORG\n校 M-ORG\n市 M-ORG\n场 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n江 B-ORG\n西 M-ORG\n省 M-ORG\n生 M-ORG\n产 M-ORG\n力 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n金 B-NAME\n月 M-NAME\n芳 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n江 B-LOC\n苏 M-LOC\n省 M-LOC\n吴 M-LOC\n江 M-LOC\n市 M-LOC\n人 E-LOC\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n吴 M-ORG\n江 M-ORG\n中 M-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n丝 M-ORG\n绸 M-ORG\n市 M-ORG\n场 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n月 O\n- O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n任 O\n吴 B-ORG\n江 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 M-ORG\n财 M-ORG\n政 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n盛 B-TITLE\n泽 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n参 O\n加 O\n由 O\n深 B-ORG\n圳 M-ORG\n证 M-ORG\n券 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n主 O\n办 O\n的 O\n第 O\n二 O\n十 O\n五 O\n期 O\n独 O\n立 O\n董 O\n事 O\n培 O\n训 O\n班 O\n， O\n获 O\n得 O\n独 O\n立 O\n董 O\n事 O\n资 O\n格 O\n证 O\n书 O\n。 O\n\n严 B-NAME\n昌 M-NAME\n来 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n湖 B-LOC\n北 M-LOC\n汉 M-LOC\n阳 M-LOC\n人 E-LOC\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n1 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n葛 O\n洲 B-ORG\n坝 M-ORG\n工 M-ORG\n程 M-ORG\n局 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n葛 B-ORG\n洲 M-ORG\n坝 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n生 M-TITLE\n活 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n葛 B-ORG\n洲 M-ORG\n坝 M-ORG\n集 M-ORG\n团 M-ORG\n第 M-ORG\n四 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n葛 M-ORG\n洲 M-ORG\n坝 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n邓 B-NAME\n涛 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n5 O\n月 O\n至 O\n今 O\n在 O\n武 B-ORG\n汉 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n任 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n资 M-TITLE\n产 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n唐 B-NAME\n宁 E-NAME\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n唐 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n9 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n共 M-ORG\n中 M-ORG\n央 M-ORG\n党 M-ORG\n校 E-ORG\n。 O\n\n唐 S-NAME\n先 O\n生 O\n自 O\n2 O\n0 O\n1 O\n4 O\n年 O\n8 O\n月 O\n起 O\n任 O\n中 B-ORG\n国 M-ORG\n神 M-ORG\n华 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 O\n三 O\n届 O\n监 O\n事 O\n会 O\n， O\n自 O\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n起 O\n任 O\n神 B-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n下 B-TITLE\n派 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n工 M-TITLE\n作 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n唐 S-NAME\n先 O\n生 O\n自 O\n2 O\n0 O\n1 O\n0 O\n年 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n神 M-ORG\n华 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n自 O\n2 O\n0 O\n1 O\n0 O\n年 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n任 O\n神 B-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n产 M-ORG\n权 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n自 O\n2 O\n0 O\n1 O\n1 O\n年 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n任 O\n神 B-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n下 B-TITLE\n派 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n工 M-TITLE\n作 M-TITLE\n一 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n此 O\n前 O\n， O\n唐 S-NAME\n先 O\n生 O\n曾 O\n任 O\n神 B-ORG\n华 M-ORG\n国 M-ORG\n际 M-ORG\n（ M-ORG\n香 M-ORG\n港 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n神 B-ORG\n华 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n厅 M-TITLE\n主 M-TITLE\n任 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n陈 B-NAME\n作 M-NAME\n习 E-NAME\n， O\n男 O\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n- O\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n， O\n任 O\n南 B-ORG\n方 M-ORG\n报 M-ORG\n业 M-ORG\n传 M-ORG\n媒 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n- O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n1 O\n月 O\n， O\n任 O\n南 B-ORG\n方 M-ORG\n报 M-ORG\n业 M-ORG\n传 M-ORG\n媒 M-ORG\n集 M-ORG\n团 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n， O\n经 O\n珠 O\n海 O\n市 O\n国 O\n资 O\n委 O\n委 O\n派 O\n， O\n任 O\n珠 B-ORG\n海 M-ORG\n港 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n， O\n兼 O\n任 O\n珠 B-ORG\n海 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n引 M-ORG\n导 M-ORG\n基 M-ORG\n金 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n开 O\n始 O\n任 O\n珠 B-ORG\n海 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n戴 B-NAME\n杨 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n数 B-ORG\n源 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n杭 B-ORG\n州 M-ORG\n易 M-ORG\n和 M-ORG\n网 M-ORG\n络 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n西 B-ORG\n湖 M-ORG\n电 M-ORG\n子 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n数 B-ORG\n源 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n杭 B-ORG\n州 M-ORG\n三 M-ORG\n花 M-ORG\n科 M-ORG\n特 M-ORG\n光 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n杭 B-ORG\n州 M-ORG\n数 M-ORG\n字 M-ORG\n电 M-ORG\n视 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n黄 B-NAME\n锦 M-NAME\n官 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n近 O\n五 O\n年 O\n曾 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n青 M-ORG\n山 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n设 B-TITLE\n备 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n技 B-TITLE\n改 M-TITLE\n副 M-TITLE\n总 M-TITLE\n指 M-TITLE\n挥 E-TITLE\n。 O\n\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n青 M-ORG\n山 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n顾 B-NAME\n敏 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n获 O\n得 O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n文 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n自 O\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n出 O\n任 O\n中 B-ORG\n国 M-ORG\n平 M-ORG\n安 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n至 O\n今 O\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n， O\n任 O\n平 B-ORG\n安 M-ORG\n银 M-ORG\n行 E-ORG\n（ O\n原 O\n深 B-ORG\n圳 M-ORG\n发 M-ORG\n展 M-ORG\n银 M-ORG\n行 E-ORG\n） O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n于 O\n2 O\n0 O\n0 O\n0 O\n年 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n平 M-ORG\n安 E-ORG\n， O\n历 O\n任 O\n平 B-ORG\n安 M-ORG\n电 M-ORG\n子 M-ORG\n商 M-ORG\n务 E-ORG\n高 B-TITLE\n级 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n客 B-TITLE\n户 M-TITLE\n资 M-TITLE\n源 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\nE B-TITLE\n服 M-TITLE\n务 M-TITLE\n行 M-TITLE\n销 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n及 O\n寿 B-TITLE\n险 M-TITLE\n运 M-TITLE\n营 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n集 B-TITLE\n团 M-TITLE\n发 M-TITLE\n展 M-TITLE\n改 M-TITLE\n革 M-TITLE\n中 M-TITLE\n心 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n， O\n先 O\n后 O\n在 O\n中 B-ORG\n国 M-ORG\n平 M-ORG\n安 M-ORG\n全 M-ORG\n国 M-ORG\n后 M-ORG\n援 M-ORG\n管 M-ORG\n理 M-ORG\n中 M-ORG\n心 E-ORG\n和 O\n集 B-ORG\n团 E-ORG\n运 O\n营 O\n管 O\n理 O\n中 O\n心 O\n担 O\n任 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n集 B-ORG\n团 E-ORG\n副 B-TITLE\n首 M-TITLE\n席 M-TITLE\n服 M-TITLE\n务 E-TITLE\n及 O\n运 O\n营 B-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n等 O\n职 O\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n与 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n， O\n分 O\n别 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n平 M-ORG\n安 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n和 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n， O\n担 O\n任 O\n平 B-ORG\n安 E-ORG\n渠 B-TITLE\n道 M-TITLE\n发 M-TITLE\n展 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\nC B-TITLE\nE M-TITLE\nO E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n月 O\n， O\n担 O\n任 O\n平 B-ORG\n安 E-ORG\n数 B-TITLE\n据 M-TITLE\n科 M-TITLE\n技 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n此 O\n前 O\n， O\n就 O\n职 O\n于 O\n麦 B-ORG\n肯 M-ORG\n锡 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n咨 B-TITLE\n询 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n。 O\n\n杨 B-NAME\n俊 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n生 O\n于 O\n1 O\n9 O\n7 O\n2 O\n年 O\n9 O\n月 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n博 B-TITLE\n士 M-TITLE\n后 E-TITLE\n。 O\n\n曾 O\n任 O\n重 B-ORG\n庆 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n与 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n重 B-ORG\n庆 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n与 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n（ O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n） O\n， O\n重 B-ORG\n庆 M-ORG\n涪 M-ORG\n陵 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n志 M-NAME\n新 E-NAME\n先 O\n生 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n4 O\n年 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n2 O\n月 O\n任 O\n浙 B-ORG\n江 M-ORG\n嘉 M-ORG\n兴 M-ORG\n丝 M-ORG\n绸 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n贸 M-ORG\n易 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n3 O\n月 O\n任 O\n浙 B-ORG\n江 M-ORG\n丝 M-ORG\n绸 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n东 M-ORG\n兴 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n职 O\n于 O\n浙 B-ORG\n江 M-ORG\n嘉 M-ORG\n欣 M-ORG\n丝 M-ORG\n绸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n嘉 M-ORG\n欣 M-ORG\n丝 M-ORG\n绸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n嘉 M-ORG\n欣 M-ORG\n丝 M-ORG\n绸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n盟 M-NAME\n飞 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n8 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n航 M-ORG\n天 M-ORG\n局 E-ORG\n审 B-TITLE\n计 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n航 M-ORG\n天 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n第 M-ORG\n八 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n审 B-TITLE\n计 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n航 M-ORG\n天 M-ORG\n汽 M-ORG\n车 M-ORG\n机 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n临 B-TITLE\n时 M-TITLE\n召 M-TITLE\n集 M-TITLE\n人 E-TITLE\n。 O\n\nJ B-NAME\ne M-NAME\nr M-NAME\nr M-NAME\ny M-NAME\nM M-NAME\na E-NAME\n( O\n马 B-NAME\n磊 E-NAME\n) O\n先 O\n生 O\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n新 B-CONT\n西 M-CONT\n兰 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n毕 O\n业 O\n于 O\n新 B-ORG\n西 M-ORG\n兰 M-ORG\n梅 M-ORG\n西 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n于 O\n挪 B-ORG\n威 M-ORG\n佛 M-ORG\n力 M-ORG\n士 M-ORG\n上 M-ORG\n海 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n、 O\n英 B-ORG\n国 M-ORG\n豪 M-ORG\n罗 M-ORG\n宾 M-ORG\n逊 M-ORG\n船 M-ORG\n务 M-ORG\n经 M-ORG\n纪 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n上 M-ORG\n海 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n任 O\n职 O\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n起 O\n服 O\n务 O\n于 O\n公 B-ORG\n司 E-ORG\n， O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n贸 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n一 O\n职 O\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n莹 M-NAME\n升 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n南 B-ORG\n充 M-ORG\n师 M-ORG\n范 M-ORG\n学 M-ORG\n院 M-ORG\n生 M-ORG\n物 M-ORG\n系 E-ORG\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n理 B-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n6 O\n月 O\n2 O\n0 O\n日 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n6 O\n月 O\n2 O\n0 O\n日 O\n， O\n在 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n江 M-ORG\n油 M-ORG\n师 M-ORG\n范 M-ORG\n学 M-ORG\n校 E-ORG\n任 O\n教 O\n； O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n6 O\n月 O\n2 O\n0 O\n日 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n8 O\n日 O\n， O\n先 O\n后 O\n任 O\n绵 B-ORG\n阳 M-ORG\n市 M-ORG\n汽 M-ORG\n车 M-ORG\n运 M-ORG\n输 M-ORG\n公 M-ORG\n司 E-ORG\n文 B-TITLE\n员 E-TITLE\n、 O\n绵 B-ORG\n阳 M-ORG\n市 M-ORG\n汽 M-ORG\n车 M-ORG\n运 M-ORG\n输 M-ORG\n公 M-ORG\n司 E-ORG\n汽 B-TITLE\n车 M-TITLE\n北 M-TITLE\n站 M-TITLE\n副 M-TITLE\n站 M-TITLE\n长 E-TITLE\n、 O\n绵 B-ORG\n阳 M-ORG\n市 M-ORG\n汽 M-ORG\n车 M-ORG\n运 M-ORG\n输 M-ORG\n公 M-ORG\n司 E-ORG\n汽 B-TITLE\n车 M-TITLE\n南 M-TITLE\n站 M-TITLE\n站 M-TITLE\n长 E-TITLE\n、 O\n绵 B-ORG\n阳 M-ORG\n市 M-ORG\n汽 M-ORG\n车 M-ORG\n运 M-ORG\n输 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n富 B-TITLE\n乐 M-TITLE\n车 M-TITLE\n站 M-TITLE\n站 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n8 O\n日 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n6 O\n月 O\n3 O\n0 O\n日 O\n， O\n在 O\n绵 B-ORG\n阳 M-ORG\n南 M-ORG\n湖 M-ORG\n车 M-ORG\n站 E-ORG\n任 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n站 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n6 O\n月 O\n3 O\n0 O\n日 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n3 O\n0 O\n日 O\n， O\n在 O\n四 B-ORG\n川 M-ORG\n富 M-ORG\n临 M-ORG\n运 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n射 M-ORG\n洪 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n站 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n8 O\n月 O\n3 O\n1 O\n日 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n2 O\n6 O\n日 O\n， O\n在 O\n四 B-ORG\n川 M-ORG\n富 M-ORG\n临 M-ORG\n运 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n2 O\n6 O\n日 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n3 O\n日 O\n， O\n在 O\n四 B-ORG\n川 M-ORG\n富 M-ORG\n临 M-ORG\n运 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n成 M-ORG\n都 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n城 M-ORG\n北 M-ORG\n客 M-ORG\n运 M-ORG\n中 M-ORG\n心 E-ORG\n任 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n5 O\n日 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n5 O\n月 O\n7 O\n日 O\n， O\n在 O\n成 B-ORG\n都 M-ORG\n国 M-ORG\n际 M-ORG\n商 M-ORG\n贸 M-ORG\n城 M-ORG\n运 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n7 O\n月 O\n3 O\n日 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n3 O\n日 O\n， O\n在 O\n四 B-ORG\n川 M-ORG\n富 M-ORG\n临 M-ORG\n运 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n成 M-ORG\n都 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n四 B-ORG\n川 M-ORG\n富 M-ORG\n临 M-ORG\n运 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n驾 M-ORG\n培 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n张 B-NAME\n雨 M-NAME\n歌 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n起 O\n先 O\n后 O\n在 O\n苏 B-ORG\n州 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n、 O\n苏 B-ORG\n州 M-ORG\n市 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n中 M-ORG\n心 E-ORG\n、 O\n苏 B-ORG\n州 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 M-ORG\n国 M-ORG\n资 M-ORG\n科 E-ORG\n等 O\n处 O\n任 O\n职 O\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n在 O\n苏 B-ORG\n州 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n担 O\n任 O\n所 B-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n在 O\n江 B-ORG\n苏 M-ORG\n仁 M-ORG\n和 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n担 O\n任 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n并 O\n担 O\n任 O\n政 B-ORG\n协 M-ORG\n江 M-ORG\n苏 M-ORG\n省 M-ORG\n省 M-ORG\n委 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n苏 B-ORG\n州 M-ORG\n市 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n， O\n省 B-ORG\n注 M-ORG\n协 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n李 B-NAME\n永 M-NAME\n胜 E-NAME\n先 O\n生 O\n， O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\n约 M-ORG\n克 M-ORG\n大 M-ORG\n学 E-ORG\n学 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n添 B-ORG\n利 M-ORG\n工 M-ORG\n业 M-ORG\n国 M-ORG\n际 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n腾 B-ORG\n达 M-ORG\n置 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n依 B-ORG\n顿 M-ORG\n（ M-ORG\n广 M-ORG\n东 M-ORG\n） M-ORG\n电 M-ORG\n子 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n营 B-TITLE\n运 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n马 B-NAME\n红 M-NAME\n星 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n初 B-EDU\n中 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n任 O\n吴 B-ORG\n江 M-ORG\n平 M-ORG\n望 M-ORG\n溪 M-ORG\n港 M-ORG\n塑 M-ORG\n料 M-ORG\n厂 E-ORG\n会 B-TITLE\n计 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n今 O\n任 O\n苏 B-ORG\n州 M-ORG\n星 M-ORG\n特 M-ORG\n堡 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n强 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n第 M-ORG\n二 M-ORG\n外 M-ORG\n国 M-ORG\n语 M-ORG\n学 M-ORG\n院 E-ORG\n英 B-PRO\n国 M-PRO\n文 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n得 O\n文 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n副 B-TITLE\n译 M-TITLE\n审 E-TITLE\n， O\n为 O\n北 B-TITLE\n京 M-TITLE\n市 M-TITLE\n海 M-TITLE\n淀 M-TITLE\n区 M-TITLE\n十 M-TITLE\n五 M-TITLE\n届 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n及 O\n海 B-ORG\n淀 M-ORG\n区 M-ORG\n十 M-ORG\n五 M-ORG\n届 M-ORG\n人 M-ORG\n大 M-ORG\n代 M-ORG\n表 M-ORG\n会 M-ORG\n议 M-ORG\n“ M-ORG\n国 M-ORG\n民 M-ORG\n经 M-ORG\n济 M-ORG\n、 M-ORG\n社 M-ORG\n会 M-ORG\n发 M-ORG\n展 M-ORG\n计 M-ORG\n划 M-ORG\n和 M-ORG\n财 M-ORG\n政 M-ORG\n预 M-ORG\n算 M-ORG\n审 M-ORG\n查 M-ORG\n委 M-ORG\n员 M-ORG\n会 M-ORG\n” E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n在 O\n北 B-ORG\n京 M-ORG\n对 M-ORG\n外 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n大 M-ORG\n学 E-ORG\n学 O\n习 O\n金 O\n融 O\n、 O\n财 O\n务 O\n和 O\n工 O\n商 O\n管 O\n理 O\n课 O\n程 O\n， O\n获 O\n得 O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n结 O\n业 O\n证 O\n书 O\n。 O\n\n在 O\n香 O\n港 O\n接 O\n受 O\n金 O\n融 O\n和 O\n财 O\n务 O\n培 O\n训 O\n， O\n在 O\n香 B-ORG\n港 M-ORG\n东 M-ORG\n方 M-ORG\n鑫 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 O\n务 O\n部 O\n工 O\n作 O\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n澳 M-ORG\n大 M-ORG\n利 M-ORG\n亚 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n铝 B-TITLE\n业 M-TITLE\n务 M-TITLE\n处 M-TITLE\n业 M-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n贸 M-ORG\n易 M-ORG\n集 M-ORG\n团 E-ORG\n和 O\n中 B-ORG\n国 M-ORG\n五 M-ORG\n金 M-ORG\n矿 M-ORG\n产 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n铝 B-TITLE\n行 M-TITLE\n业 M-TITLE\n市 M-TITLE\n场 M-TITLE\n高 M-TITLE\n级 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n铝 M-ORG\n国 M-ORG\n际 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n进 B-TITLE\n出 M-TITLE\n口 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n0 O\n月 O\n- O\n2 O\n0 O\n1 O\n3 O\n年 O\n5 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n铝 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n及 O\n公 B-ORG\n司 E-ORG\n秘 B-TITLE\n书 E-TITLE\n。 O\n\n现 O\n任 O\n紫 B-ORG\n金 M-ORG\n矿 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n王 B-NAME\n时 M-NAME\n中 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n生 O\n， O\n曾 O\n就 O\n读 O\n于 O\n杭 B-ORG\n州 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n、 O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 E-ORG\n。 O\n\n历 O\n任 O\n招 B-ORG\n商 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n行 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n第 B-ORG\n一 M-ORG\n创 M-ORG\n业 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n行 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n安 B-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n行 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n何 B-NAME\n祥 M-NAME\n兴 E-NAME\n先 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n先 O\n后 O\n在 O\n武 B-ORG\n穴 M-ORG\n市 M-ORG\n官 M-ORG\n桥 M-ORG\n公 M-ORG\n社 E-ORG\n、 O\n大 B-ORG\n治 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n自 O\n1 O\n9 O\n8 O\n5 O\n年 O\n起 O\n历 O\n任 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n广 M-ORG\n济 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n劳 B-TITLE\n资 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n及 O\n孟 B-ORG\n州 M-ORG\n市 M-ORG\n厚 M-ORG\n德 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n龚 B-NAME\n少 M-NAME\n晖 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n专 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n上 B-ORG\n海 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n系 E-ORG\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n- O\n2 O\n0 O\n1 O\n0 O\n年 O\n于 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n攻 O\n读 O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n。 O\n\n曾 O\n就 O\n职 O\n于 O\n福 B-ORG\n建 M-ORG\n电 M-ORG\n子 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n从 O\n事 O\n计 O\n算 O\n机 O\n技 O\n术 O\n和 O\n销 O\n售 O\n工 O\n作 O\n； O\n\n后 O\n创 O\n立 O\n厦 B-ORG\n门 M-ORG\n精 M-ORG\n通 M-ORG\n科 M-ORG\n技 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n厦 B-ORG\n门 M-ORG\n市 M-ORG\n二 M-ORG\n进 M-ORG\n制 M-ORG\n数 M-ORG\n码 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n厦 B-ORG\n门 M-ORG\n中 M-ORG\n网 M-ORG\n兴 M-ORG\n管 M-ORG\n理 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n并 O\n任 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n今 O\n， O\n任 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n兼 O\n任 O\n天 B-ORG\n津 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n青 B-ORG\n岛 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n苏 B-ORG\n州 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n天 B-ORG\n津 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n移 M-ORG\n动 M-ORG\n通 M-ORG\n讯 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n曲 B-ORG\n水 M-ORG\n中 M-ORG\n网 M-ORG\n兴 M-ORG\n管 M-ORG\n理 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n亿 M-ORG\n中 M-ORG\n邮 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n中 M-ORG\n亚 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n广 B-ORG\n州 M-ORG\n三 M-ORG\n五 M-ORG\n知 M-ORG\n微 M-ORG\n信 M-ORG\n息 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n天 B-ORG\n津 M-ORG\n爱 M-ORG\n蹭 M-ORG\n网 M-ORG\n络 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n徐 B-NAME\n炳 M-NAME\n祥 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n4 O\n8 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n宁 B-ORG\n波 M-ORG\n海 M-ORG\n运 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n海 M-ORG\n运 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n等 O\n职 O\n。 O\n\n于 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n因 O\n换 O\n届 O\n离 O\n任 O\n宁 B-ORG\n波 M-ORG\n海 M-ORG\n运 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n职 O\n务 O\n。 O\n\n佘 B-NAME\n建 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n专 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n进 O\n入 O\n湘 B-ORG\n潭 M-ORG\n电 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n保 B-TITLE\n卫 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n武 B-TITLE\n装 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n9 B-TITLE\n3 M-TITLE\n8 M-TITLE\n分 M-TITLE\n厂 M-TITLE\n党 M-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n湘 B-ORG\n潭 M-ORG\n电 M-ORG\n化 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n审 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n兼 O\n监 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n湘 B-ORG\n潭 M-ORG\n电 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n屈 B-NAME\n伟 M-NAME\n华 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n金 M-ORG\n黄 M-ORG\n金 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n河 B-ORG\n北 M-ORG\n峪 M-ORG\n耳 M-ORG\n崖 M-ORG\n黄 M-ORG\n金 M-ORG\n矿 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n河 B-ORG\n北 M-ORG\n宽 M-ORG\n城 M-ORG\n满 M-ORG\n族 M-ORG\n自 M-ORG\n治 M-ORG\n县 M-ORG\n东 M-ORG\n梁 M-ORG\n矿 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n胡 B-NAME\n波 E-NAME\n： O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n武 B-ORG\n汉 M-ORG\n服 M-ORG\n装 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n诚 M-ORG\n信 M-ORG\n证 M-ORG\n券 M-ORG\n评 M-ORG\n估 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n中 M-ORG\n南 M-ORG\n公 M-ORG\n司 E-ORG\n股 B-TITLE\n改 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n中 B-ORG\n企 M-ORG\n产 M-ORG\n权 M-ORG\n交 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n正 M-ORG\n信 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n武 B-ORG\n汉 M-ORG\n正 M-ORG\n信 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n战 B-TITLE\n略 M-TITLE\n统 M-TITLE\n筹 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n国 M-ORG\n际 M-ORG\n信 M-ORG\n托 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n潘 B-NAME\n兴 M-NAME\n祥 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n浙 B-LOC\n江 M-LOC\n省 M-LOC\n绍 M-LOC\n兴 M-LOC\n县 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n绍 B-ORG\n兴 M-ORG\n县 M-ORG\n中 M-ORG\n国 M-ORG\n轻 M-ORG\n纺 M-ORG\n城 M-ORG\n市 M-ORG\n场 M-ORG\n开 M-ORG\n发 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n绍 B-ORG\n兴 M-ORG\n县 M-ORG\n中 M-ORG\n国 M-ORG\n轻 M-ORG\n纺 M-ORG\n城 M-ORG\n建 M-ORG\n设 M-ORG\n管 M-ORG\n理 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n规 B-TITLE\n划 M-TITLE\n建 M-TITLE\n设 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n绍 B-ORG\n兴 M-ORG\n县 M-ORG\n中 M-ORG\n国 M-ORG\n轻 M-ORG\n纺 M-ORG\n城 M-ORG\n市 M-ORG\n场 M-ORG\n开 M-ORG\n发 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n国 M-ORG\n轻 M-ORG\n纺 M-ORG\n城 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n绍 B-ORG\n兴 M-ORG\n县 M-ORG\n中 M-ORG\n国 M-ORG\n轻 M-ORG\n纺 M-ORG\n城 M-ORG\n市 M-ORG\n场 M-ORG\n开 M-ORG\n发 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n任 B-NAME\n有 M-NAME\n法 E-NAME\n先 O\n生 O\n： O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n主 O\n要 O\n工 O\n作 O\n经 O\n历 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n0 O\n年 O\n在 O\n空 B-ORG\n军 M-ORG\n某 M-ORG\n部 E-ORG\n服 O\n役 O\n； O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n历 O\n任 O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n工 M-ORG\n商 M-ORG\n行 M-ORG\n政 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n市 B-TITLE\n场 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n工 B-TITLE\n商 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n止 O\n历 O\n任 O\n皮 B-TITLE\n管 M-TITLE\n委 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n至 O\n今 O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n海 B-ORG\n宁 M-ORG\n中 M-ORG\n国 M-ORG\n皮 M-ORG\n革 M-ORG\n城 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n曾 O\n任 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n并 O\n兼 O\n任 O\n海 B-ORG\n宁 M-ORG\n中 M-ORG\n国 M-ORG\n皮 M-ORG\n革 M-ORG\n城 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n同 O\n时 O\n也 O\n是 O\n中 B-ORG\n国 M-ORG\n皮 M-ORG\n革 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n市 M-ORG\n场 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n皮 M-ORG\n革 M-ORG\n协 M-ORG\n会 E-ORG\n理 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n海 B-ORG\n宁 M-ORG\n市 M-ORG\n电 M-ORG\n子 M-ORG\n商 M-ORG\n务 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n市 M-ORG\n场 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n高 B-TITLE\n级 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n度 O\n风 O\n云 O\n浙 O\n商 O\n， O\n福 O\n布 O\n斯 O\n2 O\n0 O\n1 O\n3 O\n中 O\n国 O\n上 O\n市 O\n公 O\n司 O\n最 O\n佳 O\nC O\nE O\nO O\n。 O\n\n杨 B-NAME\n威 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n万 B-ORG\n钧 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n执 B-TITLE\n业 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n允 M-ORG\n公 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n仲 M-ORG\n裁 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n仲 B-TITLE\n裁 M-TITLE\n员 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n律 M-ORG\n师 M-ORG\n协 M-ORG\n会 M-ORG\n民 M-ORG\n法 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n法 M-ORG\n学 M-ORG\n会 M-ORG\n民 M-ORG\n法 M-ORG\n分 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n今 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n河 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n5 O\n年 O\n， O\n现 O\n任 O\n金 B-ORG\n风 M-ORG\n科 M-ORG\n技 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n毕 O\n业 O\n于 O\n西 B-ORG\n北 M-ORG\n农 M-ORG\n林 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n于 O\n2 O\n0 O\n0 O\n1 O\n年 O\n加 O\n入 O\n金 B-ORG\n风 M-ORG\n科 M-ORG\n技 E-ORG\n， O\n历 O\n任 O\n技 B-TITLE\n术 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n质 B-TITLE\n量 M-TITLE\n技 M-TITLE\n术 M-TITLE\n保 M-TITLE\n证 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n质 B-TITLE\n量 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n及 O\n研 B-TITLE\n发 M-TITLE\n系 M-TITLE\n统 M-TITLE\n产 M-TITLE\n品 M-TITLE\n开 M-TITLE\n发 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n于 O\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n起 O\n担 O\n任 O\n金 B-ORG\n风 M-ORG\n科 M-ORG\n技 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n段 B-NAME\n继 M-NAME\n东 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n5 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n昆 B-ORG\n明 M-ORG\n制 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n华 M-ORG\n立 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n健 M-ORG\n民 M-ORG\n药 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n时 M-ORG\n代 M-ORG\n方 M-ORG\n略 M-ORG\n企 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n咨 M-ORG\n询 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n康 M-ORG\n恩 M-ORG\n贝 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n报 O\n告 O\n期 O\n内 O\n因 O\n董 O\n事 O\n会 O\n换 O\n届 O\n已 O\n不 O\n在 O\n浙 B-ORG\n江 M-ORG\n康 M-ORG\n恩 M-ORG\n贝 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n职 O\n。 O\n\n孙 B-NAME\n新 M-NAME\n虎 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n孙 B-NAME\n新 M-NAME\n虎 E-NAME\n先 O\n生 O\n自 O\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n起 O\n在 O\n青 B-ORG\n岛 M-ORG\n肯 M-ORG\n德 M-ORG\n基 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n驻 M-ORG\n外 M-ORG\n事 M-ORG\n务 M-ORG\n部 E-ORG\n参 O\n加 O\n工 O\n作 O\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n3 O\n月 O\n加 O\n入 O\n山 B-ORG\n东 M-ORG\n西 M-ORG\n王 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n近 O\n五 O\n年 O\n来 O\n， O\n孙 B-NAME\n新 M-NAME\n虎 E-NAME\n先 O\n生 O\n先 O\n后 O\n担 O\n任 O\n西 B-ORG\n王 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n等 O\n职 O\n， O\n现 O\n主 O\n要 O\n担 O\n任 O\n西 B-ORG\n王 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n西 B-ORG\n王 M-ORG\n臵 M-ORG\n业 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n西 B-ORG\n王 M-ORG\n特 M-ORG\n钢 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n西 M-ORG\n王 M-ORG\n糖 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n西 B-ORG\n王 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n西 B-ORG\n王 M-ORG\n淀 M-ORG\n粉 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n西 B-ORG\n王 M-ORG\n食 M-ORG\n品 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n杜 B-NAME\n少 M-NAME\n先 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n4 O\n1 O\n年 O\n1 O\n0 O\n月 O\n生 O\n。 O\n\n本 B-EDU\n科 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n现 O\n任 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n兼 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n社 M-ORG\n科 M-ORG\n联 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n东 B-ORG\n北 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n- O\n1 O\n9 O\n7 O\n6 O\n年 O\n长 B-ORG\n春 M-ORG\n市 M-ORG\n公 M-ORG\n安 M-ORG\n局 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n- O\n1 O\n9 O\n7 O\n9 O\n年 O\n长 B-ORG\n春 M-ORG\n市 M-ORG\n委 M-ORG\n研 M-ORG\n究 M-ORG\n室 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n- O\n1 O\n9 O\n8 O\n3 O\n年 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n- O\n1 O\n9 O\n8 O\n8 O\n年 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n省 M-ORG\n政 M-ORG\n府 M-ORG\n发 M-ORG\n展 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n城 B-TITLE\n市 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n- O\n1 O\n9 O\n9 O\n6 O\n年 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n政 M-ORG\n府 M-ORG\n调 M-ORG\n研 M-ORG\n室 E-ORG\n、 O\n省 B-ORG\n软 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n经 M-ORG\n团 M-ORG\n联 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n（ O\n正 O\n厅 O\n长 O\n级 O\n） O\n、 O\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n3 O\n月 O\n- O\n1 O\n2 O\n月 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n（ O\n社 B-ORG\n科 M-ORG\n联 E-ORG\n） O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n（ O\n正 O\n厅 O\n长 O\n级 O\n） O\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n兼 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n社 M-ORG\n科 M-ORG\n联 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n东 B-ORG\n北 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n林 B-NAME\n福 M-NAME\n臣 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 E-ORG\n稽 B-TITLE\n核 M-TITLE\n局 M-TITLE\n银 M-TITLE\n行 M-TITLE\n一 M-TITLE\n处 M-TITLE\n、 M-TITLE\n二 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n银 M-ORG\n行 E-ORG\n一 B-TITLE\n司 M-TITLE\n银 M-TITLE\n行 M-TITLE\n二 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n浦 M-ORG\n东 M-ORG\n发 M-ORG\n展 M-ORG\n银 M-ORG\n行 E-ORG\n稽 B-TITLE\n核 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n浦 M-ORG\n东 M-ORG\n发 M-ORG\n展 M-ORG\n银 M-ORG\n行 E-ORG\n首 B-TITLE\n席 M-TITLE\n审 M-TITLE\n计 M-TITLE\n官 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n吴 B-NAME\n友 M-NAME\n富 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n4 O\n月 O\n生 O\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n外 M-ORG\n国 M-ORG\n语 M-ORG\n大 M-ORG\n学 M-ORG\n英 M-ORG\n语 M-ORG\n系 E-ORG\n助 B-TITLE\n教 E-TITLE\n、 O\n讲 B-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n工 B-TITLE\n商 M-TITLE\n管 M-TITLE\n理 M-TITLE\n研 M-TITLE\n究 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n校 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n校 B-TITLE\n党 M-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n外 M-ORG\n国 M-ORG\n语 M-ORG\n大 M-ORG\n学 E-ORG\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n。 O\n\n赵 B-NAME\n霞 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n1 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n专 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n起 O\n任 O\n职 O\n于 O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n录 M-ORG\n百 M-ORG\n纳 M-ORG\n影 M-ORG\n视 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n华 M-ORG\n录 M-ORG\n百 M-ORG\n纳 M-ORG\n影 M-ORG\n视 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n黎 B-NAME\n晓 M-NAME\n宏 E-NAME\n先 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n玻 M-ORG\n璃 M-ORG\n二 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n玻 M-ORG\n璃 M-ORG\n总 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n玻 M-ORG\n璃 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n一 M-ORG\n轻 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n北 B-ORG\n京 M-ORG\n一 M-ORG\n轻 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n京 B-ORG\n泰 M-ORG\n实 M-ORG\n业 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n华 B-ORG\n夏 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n信 M-ORG\n建 M-ORG\n投 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n王 B-NAME\n学 M-NAME\n闻 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n中 B-ORG\n国 M-ORG\n纺 M-ORG\n织 M-ORG\n大 M-ORG\n学 E-ORG\n企 B-PRO\n业 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n专 B-EDU\n科 E-EDU\n。 O\n\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n4 O\n月 O\n至 O\n今 O\n担 O\n任 O\n该 O\n职 O\n务 O\n。 O\n\n现 O\n兼 O\n任 O\n浙 B-ORG\n江 M-ORG\n新 M-ORG\n和 M-ORG\n成 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n新 B-ORG\n昌 M-ORG\n新 M-ORG\n和 M-ORG\n成 M-ORG\n维 M-ORG\n生 M-ORG\n素 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n梁 B-NAME\n津 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n1 O\n1 O\n月 O\n生 O\n于 O\n天 B-LOC\n津 E-LOC\n， O\n汉 B-RACE\n族 E-RACE\n， O\n籍 B-LOC\n贯 M-LOC\n山 M-LOC\n西 M-LOC\n省 E-LOC\n。 O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n1 O\n2 O\n月 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n共 M-ORG\n产 M-ORG\n党 E-ORG\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n1 O\n2 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n北 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n， O\n法 B-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n； O\n\n兼 O\n任 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n法 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n法 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n行 M-ORG\n政 M-ORG\n法 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n共 M-ORG\n天 M-ORG\n津 M-ORG\n市 M-ORG\n委 M-ORG\n研 M-ORG\n究 M-ORG\n室 E-ORG\n特 B-TITLE\n约 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n人 M-ORG\n大 M-ORG\n常 M-ORG\n委 M-ORG\n会 E-ORG\n立 B-TITLE\n法 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 E-ORG\n法 B-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n检 M-ORG\n察 M-ORG\n院 E-ORG\n咨 B-TITLE\n询 M-TITLE\n专 M-TITLE\n家 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n高 M-ORG\n级 M-ORG\n人 M-ORG\n民 M-ORG\n法 M-ORG\n院 E-ORG\n咨 B-TITLE\n询 M-TITLE\n专 M-TITLE\n家 E-TITLE\n。 O\n\n顾 B-NAME\n斌 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n生 O\n， O\n江 B-LOC\n苏 M-LOC\n省 M-LOC\n无 M-LOC\n锡 M-LOC\n市 M-LOC\n人 E-LOC\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n曾 O\n担 O\n任 O\n太 B-ORG\n极 M-ORG\n实 M-ORG\n业 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n无 B-ORG\n锡 M-ORG\n产 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n太 B-ORG\n极 M-ORG\n实 M-ORG\n业 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n海 B-ORG\n太 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n/ O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n太 B-ORG\n极 M-ORG\n半 M-ORG\n导 M-ORG\n体 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n太 B-ORG\n极 M-ORG\n微 M-ORG\n电 M-ORG\n子 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n无 B-ORG\n锡 M-ORG\n德 M-ORG\n鑫 M-ORG\n太 M-ORG\n阳 M-ORG\n能 M-ORG\n电 M-ORG\n力 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n刘 B-NAME\n丹 M-NAME\n萍 E-NAME\n女 O\n士 O\n： O\n1 O\n9 O\n5 O\n7 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n首 B-ORG\n都 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n大 M-ORG\n学 E-ORG\n助 B-TITLE\n教 E-TITLE\n、 O\n讲 B-TITLE\n师 E-TITLE\n、 O\n经 B-TITLE\n济 M-TITLE\n学 M-TITLE\n副 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n海 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n宝 B-ORG\n胜 M-ORG\n科 M-ORG\n技 M-ORG\n创 M-ORG\n新 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n侯 B-NAME\n功 M-NAME\n海 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n山 B-LOC\n东 M-LOC\n济 M-LOC\n南 M-LOC\n人 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n近 O\n五 O\n年 O\n历 O\n任 O\n东 B-ORG\n营 M-ORG\n银 M-ORG\n座 M-ORG\n商 M-ORG\n城 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n银 M-ORG\n座 M-ORG\n商 M-ORG\n城 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n银 B-ORG\n座 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n银 B-ORG\n座 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n超 B-TITLE\n市 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n银 M-ORG\n座 M-ORG\n购 M-ORG\n物 M-ORG\n中 M-ORG\n心 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n银 M-ORG\n座 M-ORG\n购 M-ORG\n物 M-ORG\n中 M-ORG\n心 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n自 O\n2 O\n0 O\n1 O\n5 O\n年 O\n9 O\n月 O\n2 O\n5 O\n日 O\n起 O\n任 O\n银 B-ORG\n座 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n国 M-NAME\n庆 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n现 O\n任 O\n厦 B-ORG\n门 M-ORG\n象 M-ORG\n屿 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n象 M-ORG\n屿 M-ORG\n农 M-ORG\n业 M-ORG\n物 M-ORG\n产 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n并 M-TITLE\n购 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n曾 O\n任 O\n厦 B-ORG\n门 M-ORG\n象 M-ORG\n屿 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n资 B-TITLE\n本 M-TITLE\n运 M-TITLE\n营 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n红 M-NAME\n旗 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n研 B-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n至 O\n1 O\n9 O\n8 O\n4 O\n年 O\n牡 B-ORG\n丹 M-ORG\n江 M-ORG\n电 M-ORG\n子 M-ORG\n设 M-ORG\n备 M-ORG\n总 M-ORG\n厂 E-ORG\n工 B-TITLE\n人 E-TITLE\n1 O\n9 O\n8 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n牡 B-ORG\n丹 M-ORG\n江 M-ORG\n经 M-ORG\n济 M-ORG\n体 M-ORG\n制 M-ORG\n改 M-ORG\n革 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n科 B-TITLE\n长 E-TITLE\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n牡 B-ORG\n丹 M-ORG\n江 M-ORG\n造 M-ORG\n纸 M-ORG\n厂 M-ORG\n驻 M-ORG\n厦 M-ORG\n门 M-ORG\n经 M-ORG\n贸 M-ORG\n公 M-ORG\n司 E-ORG\n付 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n牡 B-ORG\n丹 M-ORG\n江 M-ORG\n兴 M-ORG\n林 M-ORG\n木 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n1 O\n9 O\n9 O\n7 O\n年 O\n至 O\n今 O\n牡 B-ORG\n丹 M-ORG\n江 M-ORG\n水 M-ORG\n泥 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n牡 B-ORG\n丹 M-ORG\n江 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n付 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n省 M-ORG\n牡 M-ORG\n丹 M-ORG\n江 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n付 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n\n陈 B-NAME\n信 M-NAME\n康 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n贸 B-TITLE\n易 M-TITLE\n经 M-TITLE\n济 M-TITLE\n系 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n市 B-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n国 M-ORG\n际 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n华 B-ORG\n联 M-ORG\n超 M-ORG\n市 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n江 B-NAME\n树 M-NAME\n邦 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n衡 M-ORG\n阳 M-ORG\n市 M-ORG\n供 M-ORG\n销 M-ORG\n合 M-ORG\n作 M-ORG\n社 E-ORG\n理 B-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n志 M-NAME\n鹏 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n于 O\n中 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n获 O\n得 O\n北 B-ORG\n京 M-ORG\n邮 M-ORG\n电 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n任 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n宜 M-ORG\n通 M-ORG\n世 M-ORG\n纪 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n公 O\n司 O\n前 O\n身 O\n） O\n工 B-TITLE\n程 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n北 B-ORG\n京 M-ORG\n宜 M-ORG\n通 M-ORG\n华 M-ORG\n瑞 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n2 O\n2 O\n日 O\n起 O\n任 O\n宜 B-ORG\n通 M-ORG\n世 M-ORG\n纪 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n任 O\n期 O\n三 O\n年 O\n。 O\n\n崔 B-NAME\n基 M-NAME\n道 E-NAME\n： O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n1 O\n年 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n毕 O\n业 O\n于 O\n浙 B-ORG\n江 M-ORG\n大 M-ORG\n学 M-ORG\n化 M-ORG\n工 M-ORG\n系 E-ORG\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n西 B-ORG\n南 M-ORG\n化 M-ORG\n工 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n专 B-TITLE\n题 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n气 B-TITLE\n体 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n院 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n至 O\n今 O\n任 O\n西 B-ORG\n南 M-ORG\n化 M-ORG\n工 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n任 O\n西 B-ORG\n南 M-ORG\n化 M-ORG\n工 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n任 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n9 O\n至 O\n今 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n高 B-NAME\n同 M-NAME\n国 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n安 B-LOC\n徽 M-LOC\n桐 M-LOC\n城 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n5 O\n月 O\n加 O\n入 O\n中 B-ORG\n国 M-ORG\n共 M-ORG\n产 M-ORG\n党 E-ORG\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n任 O\n合 B-ORG\n肥 M-ORG\n兴 M-ORG\n泰 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n， O\n期 O\n间 O\n兼 O\n任 O\n安 B-ORG\n徽 M-ORG\n兴 M-ORG\n泰 M-ORG\n融 M-ORG\n资 M-ORG\n租 M-ORG\n赁 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n合 B-ORG\n肥 M-ORG\n百 M-ORG\n货 M-ORG\n大 M-ORG\n楼 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n合 B-ORG\n肥 M-ORG\n市 M-ORG\n商 M-ORG\n业 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n华 B-ORG\n富 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n徽 B-ORG\n商 M-ORG\n银 M-ORG\n行 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n被 O\n安 B-ORG\n徽 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n院 E-ORG\n聘 O\n为 O\n\" B-TITLE\n金 M-TITLE\n融 M-TITLE\n硕 M-TITLE\n士 M-TITLE\n\" M-TITLE\n兼 M-TITLE\n职 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n5 O\n年 O\n3 O\n月 O\n任 O\n合 B-ORG\n肥 M-ORG\n市 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n合 B-ORG\n肥 M-ORG\n滨 M-ORG\n湖 M-ORG\n新 M-ORG\n区 M-ORG\n建 M-ORG\n设 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n孙 B-NAME\n利 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n泰 B-ORG\n伦 M-ORG\n特 M-ORG\n化 M-ORG\n学 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n都 M-ORG\n年 M-ORG\n装 M-ORG\n饰 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n岛 M-ORG\n津 M-ORG\n医 M-ORG\n疗 M-ORG\n器 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n龙 B-ORG\n基 M-ORG\n九 M-ORG\n天 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n同 M-ORG\n仁 M-ORG\n堂 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n青 B-ORG\n海 M-ORG\n晶 M-ORG\n珠 M-ORG\n藏 M-ORG\n药 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n海 B-ORG\n南 M-ORG\n中 M-ORG\n谊 M-ORG\n国 M-ORG\n际 M-ORG\n经 M-ORG\n济 M-ORG\n技 M-ORG\n术 M-ORG\n合 M-ORG\n作 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n吕 B-NAME\n先 M-NAME\n锫 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n不 O\n具 O\n有 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n， O\n完 O\n成 O\n课 O\n题 O\n、 O\n专 O\n著 O\n、 O\n论 O\n文 O\n、 O\n教 O\n材 O\n等 O\n科 O\n研 O\n成 O\n果 O\n6 O\n0 O\n多 O\n项 O\n， O\n获 O\n省 O\n部 O\n级 O\n等 O\n各 O\n项 O\n奖 O\n励 O\n2 O\n0 O\n多 O\n项 O\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n任 O\n西 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n历 O\n任 O\n西 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n审 B-TITLE\n计 M-TITLE\n教 M-TITLE\n研 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n西 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n兼 O\n任 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n审 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n注 M-ORG\n册 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n教 M-ORG\n育 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n同 O\n时 O\n兼 O\n职 O\n成 B-ORG\n都 M-ORG\n银 M-ORG\n河 M-ORG\n磁 M-ORG\n体 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n任 O\n期 O\n自 O\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n1 O\n日 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n1 O\n日 O\n。 O\n\n汤 B-NAME\n建 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n； O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n第 M-ORG\n一 M-ORG\n农 M-ORG\n药 M-ORG\n厂 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n红 B-ORG\n太 M-ORG\n阳 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n红 M-ORG\n太 M-ORG\n阳 M-ORG\n农 M-ORG\n资 M-ORG\n连 M-ORG\n锁 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n红 B-ORG\n太 M-ORG\n阳 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n红 M-ORG\n太 M-ORG\n阳 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n岳 B-NAME\n建 M-NAME\n水 E-NAME\n： O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n3 O\n年 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n河 B-ORG\n南 M-ORG\n平 M-ORG\n原 M-ORG\n光 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n大 M-ORG\n晨 M-ORG\n光 M-ORG\n电 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n北 B-ORG\n方 M-ORG\n光 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n龚 B-NAME\n建 M-NAME\n平 E-NAME\n： O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n二 M-ORG\n纺 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n任 O\n上 B-ORG\n海 M-ORG\n二 M-ORG\n纺 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n霍 B-NAME\n广 M-NAME\n华 E-NAME\n， O\n女 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n政 B-TITLE\n工 M-TITLE\n师 E-TITLE\n、 O\n助 B-TITLE\n理 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n北 M-ORG\n襄 M-ORG\n樊 M-ORG\n水 M-ORG\n泥 M-ORG\n厂 E-ORG\n政 B-TITLE\n工 M-TITLE\n干 M-TITLE\n事 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n市 M-ORG\n政 M-ORG\n工 M-ORG\n程 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n科 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n党 B-TITLE\n群 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n行 B-TITLE\n政 M-TITLE\n副 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n彰 M-NAME\n清 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n4 O\n5 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n长 B-ORG\n城 M-ORG\n电 M-ORG\n工 M-ORG\n合 M-ORG\n金 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n代 B-TITLE\n理 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n长 B-ORG\n城 M-ORG\n电 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n处 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n株 B-ORG\n洲 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n业 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n业 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n局 B-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n电 M-ORG\n子 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n厅 E-ORG\n厅 B-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n九 M-ORG\n届 M-ORG\n政 M-ORG\n协 E-ORG\n委 B-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n超 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n住 O\n权 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n7 O\n月 O\n安 B-ORG\n徽 M-ORG\n财 M-ORG\n贸 M-ORG\n学 M-ORG\n院 E-ORG\n会 B-PRO\n计 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n专 B-EDU\n科 E-EDU\n毕 O\n业 O\n。 O\n\n历 O\n任 O\n无 B-ORG\n锡 M-ORG\n小 M-ORG\n天 M-ORG\n鹅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n主 B-TITLE\n办 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n小 M-ORG\n天 M-ORG\n鹅 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n江 B-ORG\n苏 M-ORG\n鑫 M-ORG\n南 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n7 O\n月 O\n进 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n1 O\n0 O\n日 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n起 O\n同 O\n时 O\n担 O\n任 O\n江 B-ORG\n苏 M-ORG\n双 M-ORG\n象 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n梅 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n本 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n工 M-TITLE\n艺 M-TITLE\n员 E-TITLE\n、 O\n品 B-TITLE\n质 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n运 M-TITLE\n营 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n环 M-ORG\n球 M-ORG\n磁 M-ORG\n卡 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n王 B-NAME\n照 M-NAME\n生 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n生 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n毕 O\n业 O\n于 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n博 M-ORG\n润 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n， O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n建 M-ORG\n设 M-ORG\n投 M-ORG\n资 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n部 M-TITLE\n、 M-TITLE\n证 M-TITLE\n券 M-TITLE\n部 M-TITLE\n职 M-TITLE\n员 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n朱 B-NAME\n小 M-NAME\n雄 E-NAME\n先 O\n生 O\n： O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n。 O\n\n已 O\n参 O\n加 O\n深 B-ORG\n交 M-ORG\n所 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n培 O\n训 O\n， O\n并 O\n获 O\n取 O\n上 O\n市 O\n公 O\n司 O\n高 O\n级 O\n管 O\n理 O\n人 O\n员 O\n培 O\n训 O\n结 O\n业 O\n证 O\n书 O\n。 O\n\n曾 O\n任 O\n昆 B-ORG\n山 M-ORG\n经 M-ORG\n济 M-ORG\n技 M-ORG\n术 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n太 M-ORG\n光 M-ORG\n电 M-ORG\n信 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n太 M-ORG\n光 M-ORG\n电 M-ORG\n信 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n（ O\n代 O\n行 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n责 O\n） O\n。 O\n\n何 B-NAME\n维 M-NAME\n嘉 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n厦 B-ORG\n门 M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n厦 B-ORG\n门 M-ORG\n工 M-ORG\n程 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n才 M-NAME\n庆 E-NAME\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n厦 B-ORG\n门 M-ORG\n莹 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n加 O\n入 O\n厦 B-ORG\n门 M-ORG\n蒙 M-ORG\n发 M-ORG\n利 M-ORG\n科 M-ORG\n技 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n后 O\n， O\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n凯 M-ORG\n得 M-ORG\n克 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n厦 B-ORG\n门 M-ORG\n蒙 M-ORG\n发 M-ORG\n利 M-ORG\n科 M-ORG\n技 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n武 B-NAME\n佩 M-NAME\n雄 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n1 O\n2 O\n月 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n历 O\n任 O\n云 B-ORG\n南 M-ORG\n铝 M-ORG\n厂 E-ORG\n电 B-TITLE\n解 M-TITLE\n车 M-TITLE\n间 M-TITLE\n工 M-TITLE\n段 M-TITLE\n长 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n厂 S-ORG\n两 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n电 B-ORG\n解 M-ORG\n二 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n云 B-ORG\n南 M-ORG\n铝 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n冶 M-ORG\n金 M-ORG\n集 M-ORG\n团 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n党 B-ORG\n委 M-ORG\n组 M-ORG\n织 M-ORG\n部 E-ORG\n部 B-TITLE\n长 E-TITLE\n、 O\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n2 O\n月 O\n至 O\n今 O\n任 O\n云 B-ORG\n南 M-ORG\n驰 M-ORG\n宏 M-ORG\n锌 M-ORG\n锗 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n任 O\n云 B-ORG\n南 M-ORG\n驰 M-ORG\n宏 M-ORG\n锌 M-ORG\n锗 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n陆 B-NAME\n志 M-NAME\n强 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n1 O\n2 O\n月 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n1 O\n9 O\n8 O\n5 O\n年 O\n7 O\n月 O\n， O\n在 O\n苏 B-ORG\n州 M-ORG\n医 M-ORG\n学 M-ORG\n院 M-ORG\n学 M-ORG\n生 M-ORG\n办 M-ORG\n公 M-ORG\n室 E-ORG\n， O\n图 B-ORG\n书 M-ORG\n馆 M-ORG\n情 M-ORG\n报 M-ORG\n室 E-ORG\n工 O\n作 O\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n， O\n苏 B-ORG\n州 M-ORG\n医 M-ORG\n学 M-ORG\n院 E-ORG\n药 B-PRO\n理 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n就 O\n读 O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n3 O\n年 O\n7 O\n月 O\n， O\n苏 B-ORG\n州 M-ORG\n医 M-ORG\n学 M-ORG\n院 E-ORG\n药 B-TITLE\n理 M-TITLE\n教 M-TITLE\n研 M-TITLE\n室 M-TITLE\n讲 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n7 O\n月 O\n， O\n任 O\n苏 B-ORG\n州 M-ORG\n中 M-ORG\n化 M-ORG\n药 M-ORG\n品 M-ORG\n工 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n划 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n4 O\n月 O\n， O\n任 O\n苏 B-ORG\n州 M-ORG\n东 M-ORG\n瑞 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n月 O\n至 O\n今 O\n， O\n任 O\n江 B-ORG\n苏 M-ORG\n吴 M-ORG\n中 M-ORG\n医 M-ORG\n药 M-ORG\n销 M-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n吴 B-NAME\n明 M-NAME\n辉 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n5 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n农 B-TITLE\n业 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n江 B-ORG\n西 M-ORG\n省 M-ORG\n国 M-ORG\n资 M-ORG\n办 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n省 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n监 M-ORG\n督 M-ORG\n管 M-ORG\n理 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n省 M-ORG\n政 M-ORG\n协 E-ORG\n常 B-TITLE\n委 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n诚 M-ORG\n志 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n江 B-ORG\n西 M-ORG\n中 M-ORG\n江 M-ORG\n地 M-ORG\n产 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n已 O\n退 O\n休 O\n， O\n现 O\n任 O\n江 B-ORG\n西 M-ORG\n赣 M-ORG\n粤 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n崇 M-NAME\n滨 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n就 O\n职 O\n陕 B-ORG\n西 M-ORG\n省 M-ORG\n旅 M-ORG\n游 M-ORG\n局 E-ORG\n， O\nW B-ORG\ne M-ORG\ni M-ORG\nj M-ORG\ni M-ORG\na M-ORG\nn M-ORG\ng M-ORG\nP M-ORG\nl M-ORG\na M-ORG\ns M-ORG\nt M-ORG\ni M-ORG\nc M-ORG\ns M-ORG\nC M-ORG\no M-ORG\n. M-ORG\nL M-ORG\nt M-ORG\nd M-ORG\n. M-ORG\n西 M-ORG\n北 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n之 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n及 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n任 O\n职 O\n于 O\n美 B-ORG\n国 M-ORG\nP M-ORG\nh M-ORG\no M-ORG\ne M-ORG\nn M-ORG\ni M-ORG\nx M-ORG\nM M-ORG\ne M-ORG\nd M-ORG\ni M-ORG\nc M-ORG\na M-ORG\nl M-ORG\nE M-ORG\nq M-ORG\nu M-ORG\ni M-ORG\np M-ORG\nm M-ORG\ne M-ORG\nn M-ORG\nt M-ORG\nC M-ORG\no M-ORG\nm M-ORG\np M-ORG\na M-ORG\nn M-ORG\ny E-ORG\n， O\n重 B-ORG\n庆 M-ORG\n三 M-ORG\n峡 M-ORG\n轮 M-ORG\n船 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n现 O\n任 O\n中 B-ORG\n软 M-ORG\n国 M-ORG\n际 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n及 O\n首 B-TITLE\n席 M-TITLE\n人 M-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n官 E-TITLE\n， O\n曾 O\n于 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n5 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n荆 B-NAME\n林 M-NAME\n波 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n获 O\n得 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n财 M-ORG\n经 M-ORG\n战 M-ORG\n略 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n； O\n\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n财 M-ORG\n经 M-ORG\n战 M-ORG\n略 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n市 M-ORG\n场 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\nA B-ORG\nP M-ORG\nE M-ORG\nC M-ORG\n电 M-ORG\n子 M-ORG\n商 M-ORG\n务 M-ORG\n工 M-ORG\n商 M-ORG\n联 M-ORG\n盟 M-ORG\n专 M-ORG\n委 M-ORG\n会 E-ORG\n主 B-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n商 M-ORG\n业 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n物 M-ORG\n流 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n世 B-ORG\n烹 M-ORG\n联 M-ORG\n国 M-ORG\n际 M-ORG\n饮 M-ORG\n食 M-ORG\n文 M-ORG\n化 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n烹 M-ORG\n饪 M-ORG\n协 M-ORG\n会 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n商 M-ORG\n业 M-ORG\n政 M-ORG\n策 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n全 B-ORG\n国 M-ORG\n高 M-ORG\n等 M-ORG\n院 M-ORG\n校 M-ORG\n贸 M-ORG\n易 M-ORG\n经 M-ORG\n济 M-ORG\n教 M-ORG\n学 M-ORG\n理 M-ORG\n事 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n广 B-ORG\n州 M-ORG\n卡 M-ORG\n奴 M-ORG\n迪 M-ORG\n路 M-ORG\n服 M-ORG\n饰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n国 M-ORG\n小 M-ORG\n商 M-ORG\n品 M-ORG\n城 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n全 M-ORG\n聚 M-ORG\n德 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n姜 B-NAME\n雨 M-NAME\n松 E-NAME\n先 O\n生 O\n， O\nM B-EDU\nB M-EDU\nA M-EDU\n硕 M-EDU\n士 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n天 B-ORG\n津 M-ORG\n对 M-ORG\n外 M-ORG\n经 M-ORG\n贸 M-ORG\n学 M-ORG\n院 E-ORG\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n7 O\n月 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\nM B-PRO\nB M-PRO\nA E-PRO\n毕 O\n业 O\n； O\n\n曾 O\n工 O\n作 O\n于 O\n河 B-ORG\n北 M-ORG\n省 M-ORG\n针 M-ORG\n棉 M-ORG\n织 M-ORG\n品 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n河 B-ORG\n北 M-ORG\n圣 M-ORG\n仑 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n电 B-ORG\n信 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n战 M-ORG\n略 M-ORG\n投 M-ORG\n资 M-ORG\n部 E-ORG\n； O\n\n曾 O\n任 O\n电 B-ORG\n信 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n战 B-TITLE\n略 M-TITLE\n投 M-TITLE\n资 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n电 B-ORG\n信 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n战 B-TITLE\n略 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n张 B-NAME\n家 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n河 B-ORG\n南 M-ORG\n华 M-ORG\n英 M-ORG\n农 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n饲 M-ORG\n料 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n营 B-TITLE\n销 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n2 O\n6 O\n日 O\n至 O\n今 O\n， O\n任 O\n河 B-ORG\n南 M-ORG\n华 M-ORG\n英 M-ORG\n农 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n家 M-NAME\n明 E-NAME\n先 O\n生 O\n目 O\n前 O\n未 O\n持 O\n有 O\n本 O\n公 O\n司 O\n股 O\n份 O\n， O\n与 O\n其 O\n他 O\n持 O\n有 O\n公 O\n司 O\n百 O\n分 O\n之 O\n五 O\n以 O\n上 O\n股 O\n份 O\n的 O\n股 O\n东 O\n、 O\n实 O\n际 O\n控 O\n制 O\n人 O\n之 O\n间 O\n无 O\n关 O\n联 O\n关 O\n系 O\n， O\n未 O\n受 O\n过 O\n中 O\n国 O\n证 O\n监 O\n会 O\n及 O\n其 O\n他 O\n有 O\n关 O\n部 O\n门 O\n的 O\n处 O\n罚 O\n和 O\n证 O\n券 O\n交 O\n易 O\n所 O\n惩 O\n戒 O\n， O\n不 O\n存 O\n在 O\n《 O\n公 O\n司 O\n法 O\n》 O\n、 O\n《 O\n公 O\n司 O\n章 O\n程 O\n》 O\n中 O\n规 O\n定 O\n的 O\n不 O\n得 O\n担 O\n任 O\n公 O\n司 O\n高 O\n管 O\n的 O\n情 O\n形 O\n。 O\n\n张 B-NAME\n跃 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n天 B-ORG\n津 M-ORG\n邮 M-ORG\n电 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n市 B-TITLE\n场 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n移 M-ORG\n动 M-ORG\n通 M-ORG\n信 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n移 M-ORG\n动 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n信 M-ORG\n2 M-ORG\n1 M-ORG\n世 M-ORG\n纪 M-ORG\n通 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n兼 O\nC B-TITLE\nE M-TITLE\nO E-TITLE\n， O\n鸿 B-ORG\n联 M-ORG\n九 M-ORG\n五 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n等 O\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n宽 M-ORG\n广 M-ORG\n电 M-ORG\n信 M-ORG\n高 M-ORG\n技 M-ORG\n术 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n5 O\n月 O\n任 O\n拓 B-ORG\n维 M-ORG\n信 M-ORG\n息 M-ORG\n系 M-ORG\n统 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n5 O\n月 O\n起 O\n任 O\n拓 B-ORG\n维 M-ORG\n信 M-ORG\n息 M-ORG\n系 M-ORG\n统 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n伟 M-NAME\n夫 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n江 B-ORG\n苏 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n国 M-ORG\n轻 M-ORG\n纺 M-ORG\n城 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n中 M-ORG\n国 M-ORG\n轻 M-ORG\n纺 M-ORG\n城 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n邵 B-NAME\n瑞 M-NAME\n庆 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n生 O\n， O\n博 B-EDU\n士 E-EDU\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n2 O\n月 O\n， O\n先 O\n后 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n海 M-ORG\n事 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n务 M-ORG\n与 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n系 E-ORG\n主 B-TITLE\n任 E-TITLE\n、 O\n管 B-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n经 B-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n5 O\n年 O\n1 O\n月 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n立 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n具 O\n有 O\n独 O\n立 O\n董 O\n事 O\n资 O\n格 O\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n立 M-ORG\n信 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n（ O\n二 B-TITLE\n级 M-TITLE\n教 M-TITLE\n授 E-TITLE\n） O\n、 O\n上 B-ORG\n海 M-ORG\n海 M-ORG\n事 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n交 M-ORG\n通 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n审 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n兼 O\n学 B-TITLE\n术 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n交 B-ORG\n通 M-ORG\n运 M-ORG\n输 M-ORG\n部 M-ORG\n财 M-ORG\n会 M-ORG\n决 M-ORG\n策 M-ORG\n咨 M-ORG\n询 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n教 B-ORG\n育 M-ORG\n部 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n专 M-ORG\n业 M-ORG\n教 M-ORG\n学 M-ORG\n指 M-ORG\n导 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n等 O\n。 O\n\n曲 B-NAME\n锋 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n山 B-LOC\n东 M-LOC\n蓬 M-LOC\n莱 M-LOC\n人 E-LOC\n， O\n汉 B-RACE\n族 E-RACE\n， O\n东 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n土 M-ORG\n木 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n建 B-PRO\n设 M-PRO\n工 M-PRO\n程 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n项 M-TITLE\n目 M-TITLE\n管 M-TITLE\n理 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n. O\n3 O\n- O\n2 O\n0 O\n0 O\n9 O\n. O\n8 O\n任 O\n海 B-ORG\n口 M-ORG\n市 M-ORG\n创 M-ORG\n新 M-ORG\n产 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n. O\n8 O\n至 O\n今 O\n， O\n历 O\n任 O\n海 B-ORG\n口 M-ORG\n市 M-ORG\n创 M-ORG\n新 M-ORG\n产 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n海 B-ORG\n口 M-ORG\n市 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n海 B-ORG\n南 M-ORG\n椰 M-ORG\n岛 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n刘 B-NAME\n诚 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-LOC\n国 M-LOC\n香 M-LOC\n港 E-LOC\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n职 O\n于 O\n光 B-ORG\n大 M-ORG\n证 M-ORG\n券 E-ORG\n、 O\n招 B-ORG\n商 M-ORG\n证 M-ORG\n券 E-ORG\n的 O\n资 O\n产 O\n管 O\n理 O\n部 O\n门 O\n， O\n光 B-ORG\n大 M-ORG\n控 M-ORG\n股 E-ORG\n直 O\n接 O\n投 O\n资 O\n部 O\n门 O\n。 O\n\n现 O\n任 O\n贝 B-ORG\n因 M-ORG\n美 M-ORG\n婴 M-ORG\n童 M-ORG\n食 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n光 B-ORG\n远 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n投 M-TITLE\n资 M-TITLE\n官 E-TITLE\n， O\n远 B-ORG\n成 M-ORG\n物 M-ORG\n流 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n华 M-ORG\n大 M-ORG\n基 M-ORG\n因 M-ORG\n科 M-ORG\n技 M-ORG\n服 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n吕 B-NAME\n剑 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n国 B-TITLE\n家 M-TITLE\n注 M-TITLE\n册 M-TITLE\n一 M-TITLE\n级 M-TITLE\n建 M-TITLE\n造 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n今 O\n就 O\n职 O\n于 O\n中 B-ORG\n天 M-ORG\n发 M-ORG\n展 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n资 B-TITLE\n产 M-TITLE\n监 M-TITLE\n管 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n资 B-TITLE\n产 M-TITLE\n监 M-TITLE\n管 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n资 B-TITLE\n产 M-TITLE\n监 M-TITLE\n管 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n浙 B-ORG\n江 M-ORG\n新 M-ORG\n嘉 M-ORG\n联 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n雅 M-NAME\n生 E-NAME\n先 O\n生 O\n， O\n原 O\n为 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n三 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n现 O\n任 O\n蛇 B-ORG\n口 M-ORG\n工 M-ORG\n业 M-ORG\n区 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n物 M-ORG\n流 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n联 B-ORG\n合 M-ORG\n国 M-ORG\n人 M-ORG\n口 M-ORG\n中 M-ORG\n心 M-ORG\n（ M-ORG\n开 M-ORG\n罗 M-ORG\n） E-ORG\n硕 B-EDU\n士 E-EDU\n。 O\n\n历 O\n任 O\n四 B-ORG\n川 M-ORG\n大 M-ORG\n学 M-ORG\n人 M-ORG\n口 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n蛇 M-ORG\n口 M-ORG\n区 M-ORG\n计 M-ORG\n划 M-ORG\n统 M-ORG\n计 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n， O\n蛇 B-ORG\n口 M-ORG\n工 M-ORG\n业 M-ORG\n区 E-ORG\n计 B-TITLE\n划 M-TITLE\n统 M-TITLE\n计 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n经 B-TITLE\n济 M-TITLE\n发 M-TITLE\n展 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n招 B-ORG\n商 M-ORG\n石 M-ORG\n化 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n爽 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n光 B-ORG\n大 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n光 M-ORG\n大 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n光 M-ORG\n大 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n首 B-TITLE\n席 M-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n光 M-ORG\n大 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n诺 B-ORG\n亚 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n及 O\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n矿 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n陈 S-NAME\n先 O\n生 O\n现 O\n为 O\n香 B-ORG\n港 M-ORG\n金 M-ORG\n融 M-ORG\n发 M-ORG\n展 M-ORG\n局 E-ORG\n非 B-TITLE\n官 M-TITLE\n方 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n国 M-ORG\n金 M-ORG\n融 M-ORG\n协 M-ORG\n会 E-ORG\n主 B-TITLE\n席 E-TITLE\n及 O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n资 M-ORG\n证 M-ORG\n券 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n并 O\n担 O\n任 O\n华 B-ORG\n东 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n客 B-TITLE\n座 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n陈 S-NAME\n先 O\n生 O\n持 O\n有 O\n华 B-ORG\n东 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n衔 O\n及 O\n香 B-ORG\n港 M-ORG\n大 M-ORG\n学 M-ORG\n专 M-ORG\n业 M-ORG\n进 M-ORG\n修 M-ORG\n学 M-ORG\n院 E-ORG\n之 O\n法 B-PRO\n律 E-PRO\n文 O\n凭 O\n， O\n并 O\n具 O\n备 O\n中 B-TITLE\n华 M-TITLE\n人 M-TITLE\n民 M-TITLE\n共 M-TITLE\n和 M-TITLE\n国 M-TITLE\n律 M-TITLE\n师 E-TITLE\n资 O\n格 O\n及 O\n为 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n陈 S-NAME\n先 O\n生 O\n在 O\n加 O\n入 O\n光 B-ORG\n大 M-ORG\n集 M-ORG\n团 E-ORG\n前 O\n， O\n曾 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n行 E-ORG\n法 B-TITLE\n律 M-TITLE\n事 M-TITLE\n务 M-TITLE\n室 M-TITLE\n处 M-TITLE\n长 E-TITLE\n。 O\n\n李 B-NAME\n江 M-NAME\n鹏 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n博 B-EDU\n士 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n评 B-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n诚 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n审 B-TITLE\n计 M-TITLE\n员 E-TITLE\n、 O\n评 B-TITLE\n估 M-TITLE\n员 E-TITLE\n， O\n宏 B-ORG\n源 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n二 M-TITLE\n部 M-TITLE\n审 M-TITLE\n计 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n审 B-TITLE\n计 M-TITLE\n总 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n稽 B-TITLE\n核 M-TITLE\n审 M-TITLE\n计 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n组 M-TITLE\n织 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n宏 B-ORG\n源 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n、 O\n公 B-TITLE\n司 M-TITLE\n计 M-TITLE\n划 M-TITLE\n资 M-TITLE\n金 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n朱 B-NAME\n小 M-NAME\n军 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n丰 M-ORG\n东 M-ORG\n热 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n营 B-TITLE\n销 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n丰 M-ORG\n东 M-ORG\n热 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n旦 M-NAME\n生 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n， O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n北 M-ORG\n京 M-ORG\n卫 M-ORG\n戍 M-ORG\n区 E-ORG\n部 B-TITLE\n队 M-TITLE\n干 M-TITLE\n部 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n， O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n北 M-ORG\n京 M-ORG\n预 M-ORG\n备 M-ORG\n役 M-ORG\n高 M-ORG\n炮 M-ORG\n师 E-ORG\n干 B-TITLE\n部 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 M-ORG\n内 M-ORG\n蒙 M-ORG\n古 M-ORG\n军 M-ORG\n区 M-ORG\n阿 M-ORG\n拉 M-ORG\n善 M-ORG\n军 M-ORG\n分 M-ORG\n区 E-ORG\n司 B-TITLE\n令 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n取 O\n得 O\n上 O\n市 O\n公 O\n司 O\n独 O\n立 O\n董 O\n事 O\n任 O\n职 O\n资 O\n格 O\n。 O\n\n黄 B-NAME\n建 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\nM B-EDU\nB M-EDU\nA E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n最 O\n近 O\n5 O\n年 O\n的 O\n主 O\n要 O\n工 O\n作 O\n经 O\n历 O\n， O\n历 O\n任 O\n三 B-ORG\n湘 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n三 B-ORG\n湘 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n湘 M-ORG\n大 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n鲍 B-NAME\n涌 M-NAME\n波 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n一 B-TITLE\n级 M-TITLE\n人 M-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n廊 B-TITLE\n坊 M-TITLE\n发 M-TITLE\n展 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n历 O\n任 O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n地 M-ORG\n矿 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n国 M-ORG\n土 M-ORG\n资 M-ORG\n源 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n调 B-TITLE\n研 M-TITLE\n员 E-TITLE\n， O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n城 M-ORG\n改 M-ORG\n办 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n国 M-ORG\n土 M-ORG\n资 M-ORG\n源 M-ORG\n局 M-ORG\n广 M-ORG\n阳 M-ORG\n区 M-ORG\n分 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n， O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n国 M-ORG\n土 M-ORG\n资 M-ORG\n源 M-ORG\n局 M-ORG\n市 M-ORG\n区 M-ORG\n分 M-ORG\n局 E-ORG\n局 B-TITLE\n长 E-TITLE\n， O\n土 B-ORG\n地 M-ORG\n储 M-ORG\n备 M-ORG\n交 M-ORG\n易 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n国 M-ORG\n土 M-ORG\n土 M-ORG\n地 M-ORG\n开 M-ORG\n发 M-ORG\n建 M-ORG\n设 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n廊 B-ORG\n坊 M-ORG\n市 M-ORG\n国 M-ORG\n土 M-ORG\n土 M-ORG\n地 M-ORG\n开 M-ORG\n发 M-ORG\n建 M-ORG\n设 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n廊 B-ORG\n坊 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n敏 M-NAME\n康 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n出 M-ORG\n租 M-ORG\n汽 M-ORG\n车 M-ORG\n公 M-ORG\n司 E-ORG\n组 B-TITLE\n织 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n强 M-ORG\n生 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n王 B-NAME\n予 M-NAME\n省 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n； O\n\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n锐 M-ORG\n第 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n兼 O\n任 O\n公 B-ORG\n司 M-ORG\n控 M-ORG\n股 M-ORG\n子 M-ORG\n公 M-ORG\n司 M-ORG\n北 M-ORG\n京 M-ORG\n科 M-ORG\n锐 M-ORG\n屹 M-ORG\n拓 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n河 B-ORG\n南 M-ORG\n科 M-ORG\n锐 M-ORG\n电 M-ORG\n力 M-ORG\n设 M-ORG\n备 M-ORG\n运 M-ORG\n行 M-ORG\n维 M-ORG\n护 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 S-NAME\n先 O\n生 O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n王 S-NAME\n先 O\n生 O\n1 O\n9 O\n7 O\n0 O\n～ O\n1 O\n9 O\n7 O\n6 O\n年 O\n在 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 E-ORG\n服 O\n役 O\n； O\n\n1 O\n9 O\n7 O\n6 O\n～ O\n1 O\n9 O\n8 O\n9 O\n年 O\n在 O\n郑 B-ORG\n州 M-ORG\n市 M-ORG\n灯 M-ORG\n泡 M-ORG\n厂 E-ORG\n历 O\n任 O\n财 B-TITLE\n务 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n9 O\n～ O\n1 O\n9 O\n9 O\n8 O\n年 O\n在 O\n中 B-ORG\n国 M-ORG\n出 M-ORG\n国 M-ORG\n人 M-ORG\n员 M-ORG\n服 M-ORG\n务 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n河 M-ORG\n南 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n～ O\n2 O\n0 O\n1 O\n4 O\n年 O\n在 O\n公 B-ORG\n司 E-ORG\n及 O\n前 O\n身 O\n任 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n至 O\n今 O\n任 O\n北 B-ORG\n京 M-ORG\n科 M-ORG\n锐 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n丁 B-NAME\n昀 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n公 M-ORG\n路 M-ORG\n机 M-ORG\n械 M-ORG\n车 M-ORG\n辆 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n公 M-ORG\n路 M-ORG\n机 M-ORG\n械 M-ORG\n车 M-ORG\n辆 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n邹 B-NAME\n兰 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n出 O\n生 O\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n曾 O\n任 O\n华 B-ORG\n润 M-ORG\n纺 M-ORG\n织 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n润 M-ORG\n联 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n华 B-ORG\n润 M-ORG\n纺 M-ORG\n织 M-ORG\n集 M-ORG\n团 M-ORG\n上 M-ORG\n海 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n华 B-ORG\n润 M-ORG\n医 M-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n中 B-ORG\n国 M-ORG\n华 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n三 B-ORG\n九 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n华 B-ORG\n润 M-ORG\n金 M-ORG\n融 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n战 B-TITLE\n略 M-TITLE\n及 M-TITLE\n业 M-TITLE\n务 M-TITLE\n发 M-TITLE\n展 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n华 B-ORG\n润 M-ORG\n资 M-ORG\n产 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n华 B-ORG\n润 M-ORG\n医 M-ORG\n疗 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n陈 B-NAME\n振 M-NAME\n平 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n商 M-ORG\n品 M-ORG\n交 M-ORG\n易 M-ORG\n所 M-ORG\n研 M-ORG\n发 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n久 M-ORG\n联 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n久 M-ORG\n联 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n白 B-NAME\n维 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n现 O\n任 O\n竞 B-ORG\n天 M-ORG\n公 M-ORG\n诚 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n、 O\n律 B-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n太 M-ORG\n平 M-ORG\n洋 M-ORG\n保 M-ORG\n险 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n白 S-NAME\n先 O\n生 O\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n环 M-ORG\n球 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n， O\n美 B-ORG\n国 M-ORG\nS M-ORG\nu M-ORG\nl M-ORG\nl M-ORG\ni M-ORG\nv M-ORG\na M-ORG\nn M-ORG\n& M-ORG\nC M-ORG\nr M-ORG\no M-ORG\nm M-ORG\nw M-ORG\ne M-ORG\nl M-ORG\nl M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n。 O\n\n还 O\n担 O\n任 O\n于 O\n上 O\n证 O\n所 O\n上 O\n市 O\n的 O\n华 B-ORG\n泰 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n于 O\n深 O\n圳 O\n证 O\n券 O\n交 O\n易 O\n所 O\n上 O\n市 O\n的 O\n宁 B-ORG\n夏 M-ORG\n东 M-ORG\n方 M-ORG\n钽 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n白 S-NAME\n先 O\n生 O\n拥 O\n有 O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n并 O\n拥 O\n有 O\n中 B-ORG\n国 E-ORG\n与 O\n美 B-ORG\n国 M-ORG\n纽 M-ORG\n约 M-ORG\n州 E-ORG\n律 B-TITLE\n师 E-TITLE\n资 O\n格 O\n。 O\n\n王 B-NAME\n秋 M-NAME\n霜 E-NAME\n女 O\n士 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n执 B-TITLE\n业 M-TITLE\n药 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n同 M-ORG\n仁 M-ORG\n堂 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n厂 B-TITLE\n长 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n南 B-ORG\n京 M-ORG\n医 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n李 B-NAME\n佳 M-NAME\n铭 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n6 O\n- O\n2 O\n0 O\n0 O\n1 O\n年 O\n任 O\n上 B-ORG\n海 M-ORG\n专 M-ORG\n利 M-ORG\n商 M-ORG\n标 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n- O\n2 O\n0 O\n0 O\n4 O\n年 O\n任 O\n通 B-ORG\n用 M-ORG\n电 M-ORG\n气 M-ORG\n（ M-ORG\n中 M-ORG\n国 M-ORG\n） M-ORG\n研 M-ORG\n究 M-ORG\n开 M-ORG\n发 M-ORG\n中 M-ORG\n心 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n- O\n2 O\n0 O\n0 O\n7 O\n年 O\n任 O\n上 B-ORG\n海 M-ORG\n虹 M-ORG\n桥 M-ORG\n正 M-ORG\n瀚 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 M-TITLE\n律 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n翰 M-ORG\n鸿 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 M-TITLE\n律 M-TITLE\n师 E-TITLE\n。 O\n\n朱 B-NAME\n舫 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n8 O\n月 O\n- O\n1 O\n9 O\n8 O\n4 O\n年 O\n1 O\n2 O\n月 O\n， O\n在 O\n商 B-ORG\n业 M-ORG\n部 M-ORG\n经 M-ORG\n济 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n1 O\n月 O\n- O\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n， O\n在 O\n中 B-ORG\n国 M-ORG\n商 M-ORG\n报 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n记 B-TITLE\n者 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n主 B-TITLE\n任 E-TITLE\n， O\n主 B-TITLE\n编 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n副 B-TITLE\n总 M-TITLE\n编 E-TITLE\n等 O\n职 O\n务 O\n； O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n连 M-ORG\n锁 M-ORG\n经 M-ORG\n营 M-ORG\n协 M-ORG\n会 E-ORG\n首 B-TITLE\n席 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n好 B-ORG\n想 M-ORG\n你 M-ORG\n枣 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n新 B-ORG\n疆 M-ORG\n百 M-ORG\n富 M-ORG\n餐 M-ORG\n饮 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n兴 M-ORG\n— M-ORG\n沈 M-ORG\n阳 M-ORG\n商 M-ORG\n业 M-ORG\n大 M-ORG\n厦 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n薪 M-TITLE\n酬 M-TITLE\n与 M-TITLE\n考 M-TITLE\n核 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n兼 O\n任 O\n北 B-ORG\n京 M-ORG\n聚 M-ORG\n霖 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n中 M-ORG\n心 E-ORG\n代 B-TITLE\n表 E-TITLE\n。 O\n\n张 B-NAME\n国 M-NAME\n柱 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n3 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n毕 O\n业 O\n于 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n电 B-PRO\n企 M-PRO\n自 M-PRO\n动 M-PRO\n化 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n在 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n电 M-ORG\n缆 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n曾 O\n负 O\n责 O\n的 O\n交 O\n联 O\n电 O\n缆 O\n项 O\n目 O\n获 O\n得 O\n省 O\n级 O\n科 O\n学 O\n技 O\n术 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n扬 B-ORG\n州 M-ORG\n曙 M-ORG\n光 M-ORG\n电 M-ORG\n缆 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n任 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n在 O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n气 M-ORG\n内 M-ORG\n蒙 M-ORG\n古 M-ORG\n电 M-ORG\n缆 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n任 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n对 O\n高 O\n压 O\n电 O\n缆 O\n技 O\n术 O\n的 O\n研 O\n发 O\n和 O\n管 O\n理 O\n具 O\n有 O\n较 O\n丰 O\n富 O\n的 O\n经 O\n验 O\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n至 O\n今 O\n在 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n担 O\n任 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n兼 O\n设 B-TITLE\n备 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n6 O\n月 O\n1 O\n5 O\n日 O\n至 O\n今 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n薛 B-NAME\n广 M-NAME\n志 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n9 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n西 B-ORG\n宁 M-ORG\n钢 M-ORG\n厂 E-ORG\n热 B-TITLE\n管 M-TITLE\n车 M-TITLE\n间 M-TITLE\n工 M-TITLE\n段 M-TITLE\n长 E-TITLE\n、 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n西 B-ORG\n宁 M-ORG\n钢 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n组 M-TITLE\n织 M-TITLE\n处 M-TITLE\n副 M-TITLE\n科 M-TITLE\n级 M-TITLE\n组 M-TITLE\n织 M-TITLE\n员 E-TITLE\n、 O\n纪 B-ORG\n律 M-ORG\n检 M-ORG\n查 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n西 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n政 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n西 B-ORG\n钢 M-ORG\n机 M-ORG\n械 M-ORG\n动 M-ORG\n力 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n书 B-TITLE\n记 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n任 O\n西 B-ORG\n钢 M-ORG\n集 M-ORG\n团 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n西 B-ORG\n宁 M-ORG\n特 M-ORG\n殊 M-ORG\n钢 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n三 B-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n龚 B-NAME\n高 E-NAME\n： O\n男 O\n， O\n5 O\n8 O\n岁 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n旭 M-ORG\n飞 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n曾 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n成 M-ORG\n协 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n龚 B-NAME\n高 E-NAME\n先 O\n生 O\n是 O\n公 B-ORG\n司 E-ORG\n的 O\n关 B-TITLE\n联 M-TITLE\n人 E-TITLE\n。 O\n\n万 B-NAME\n毅 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n5 O\n年 O\n3 O\n月 O\n任 O\n武 B-ORG\n汉 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n黄 B-NAME\n旭 M-NAME\n晖 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n电 M-ORG\n子 M-ORG\n信 M-ORG\n息 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n福 B-ORG\n建 M-ORG\n星 M-ORG\n网 M-ORG\n锐 M-ORG\n捷 M-ORG\n通 M-ORG\n讯 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n华 B-ORG\n映 M-ORG\n科 M-ORG\n技 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n曾 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n电 M-ORG\n子 M-ORG\n信 M-ORG\n息 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n福 B-ORG\n日 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n日 B-ORG\n立 M-ORG\n数 M-ORG\n字 M-ORG\n映 M-ORG\n像 M-ORG\n（ M-ORG\n中 M-ORG\n国 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n内 B-TITLE\n部 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n张 B-NAME\n学 M-NAME\n军 E-NAME\n（ O\n离 O\n任 O\n） O\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n毕 O\n业 O\n于 O\n河 B-ORG\n北 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n电 B-PRO\n器 M-PRO\n专 M-PRO\n业 E-PRO\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n智 B-PRO\n能 M-PRO\n建 M-PRO\n筑 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n工 B-EDU\n程 M-EDU\n硕 M-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n至 O\n今 O\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n在 O\n读 O\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n， O\n历 O\n任 O\n华 B-ORG\n夏 M-ORG\n控 M-ORG\n股 M-ORG\n京 M-ORG\n御 M-ORG\n地 M-ORG\n产 E-ORG\n事 B-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n华 B-ORG\n夏 M-ORG\n幸 M-ORG\n福 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n京 B-ORG\n御 M-ORG\n地 M-ORG\n产 E-ORG\n事 B-TITLE\n业 M-TITLE\n部 M-TITLE\n常 M-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n， O\n任 O\n华 B-ORG\n夏 M-ORG\n幸 M-ORG\n福 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n分 O\n管 O\n大 O\n厂 O\n大 O\n区 O\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n任 O\n华 B-ORG\n夏 M-ORG\n幸 M-ORG\n福 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n华 B-ORG\n夏 M-ORG\n幸 M-ORG\n福 M-ORG\n基 M-ORG\n业 E-ORG\n产 B-TITLE\n业 M-TITLE\n发 M-TITLE\n展 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n梁 B-NAME\n仕 M-NAME\n念 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n山 B-ORG\n东 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n院 E-ORG\n会 B-PRO\n计 E-PRO\n本 B-EDU\n科 E-EDU\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n天 B-ORG\n津 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n研 B-EDU\n究 M-EDU\n生 M-EDU\n同 M-EDU\n等 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n华 M-TITLE\n人 M-TITLE\n民 M-TITLE\n共 M-TITLE\n和 M-TITLE\n国 M-TITLE\n律 M-TITLE\n师 E-TITLE\n资 O\n格 O\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n华 M-ORG\n联 M-ORG\n矿 M-ORG\n业 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n注 M-ORG\n册 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n监 B-TITLE\n管 M-TITLE\n部 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n8 O\n月 O\n2 O\n7 O\n日 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n伟 M-NAME\n强 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-ORG\n国 M-ORG\n民 M-ORG\n主 M-ORG\n建 M-ORG\n国 M-ORG\n会 E-ORG\n会 B-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n河 B-ORG\n南 M-ORG\n省 M-ORG\n开 M-ORG\n封 M-ORG\n第 M-ORG\n一 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n宝 M-ORG\n安 M-ORG\n律 M-ORG\n师 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n起 O\n任 O\n广 B-ORG\n东 M-ORG\n深 M-ORG\n天 M-ORG\n正 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n。 O\n\n王 B-NAME\n桂 M-NAME\n生 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n4 O\n月 O\n起 O\n任 O\n芜 B-ORG\n湖 M-ORG\n新 M-ORG\n兴 M-ORG\n铸 M-ORG\n管 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n4 O\n月 O\n- O\n2 O\n0 O\n1 O\n1 O\n年 O\n5 O\n月 O\n任 O\n芜 B-ORG\n湖 M-ORG\n新 M-ORG\n兴 M-ORG\n铸 M-ORG\n管 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n4 O\n月 O\n- O\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n任 O\n芜 B-ORG\n湖 M-ORG\n新 M-ORG\n兴 M-ORG\n铸 M-ORG\n管 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n- O\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n月 O\n任 O\n芜 B-ORG\n湖 M-ORG\n新 M-ORG\n兴 M-ORG\n铸 M-ORG\n管 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n2 O\n月 O\n- O\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n任 O\n芜 B-ORG\n湖 M-ORG\n新 M-ORG\n兴 M-ORG\n铸 M-ORG\n管 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n起 O\n任 O\n芜 B-ORG\n湖 M-ORG\n新 M-ORG\n兴 M-ORG\n铸 M-ORG\n管 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n法 B-TITLE\n定 M-TITLE\n代 M-TITLE\n表 M-TITLE\n人 E-TITLE\n。 O\n\n杨 B-NAME\n志 M-NAME\n友 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n专 E-EDU\n， O\n党 B-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n业 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n合 B-ORG\n肥 M-ORG\n百 M-ORG\n货 M-ORG\n大 M-ORG\n楼 M-ORG\n集 M-ORG\n团 M-ORG\n商 M-ORG\n业 M-ORG\n大 M-ORG\n厦 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n合 B-ORG\n肥 M-ORG\n百 M-ORG\n货 M-ORG\n大 M-ORG\n楼 M-ORG\n集 M-ORG\n团 M-ORG\n铜 M-ORG\n陵 M-ORG\n合 M-ORG\n百 M-ORG\n商 M-ORG\n厦 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n合 B-ORG\n肥 M-ORG\n百 M-ORG\n货 M-ORG\n大 M-ORG\n楼 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n玉 M-NAME\n霞 E-NAME\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n候 M-TITLE\n选 M-TITLE\n人 E-TITLE\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\nM B-EDU\nB M-EDU\nA M-EDU\n硕 M-EDU\n士 E-EDU\n在 O\n读 O\n（ O\n正 O\n在 O\n论 O\n文 O\n答 O\n辩 O\n中 O\n） O\n。 O\n\n现 O\n任 O\n巨 B-ORG\n田 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n8 O\n月 O\n- O\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n在 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n诚 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n（ O\n后 O\n改 O\n名 O\n同 B-ORG\n人 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n） O\n执 B-TITLE\n业 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n任 O\n职 O\n于 O\n巨 B-ORG\n田 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 O\n务 O\n部 O\n。 O\n\n李 B-NAME\n玉 M-NAME\n霞 E-NAME\n女 O\n士 O\n在 O\n本 B-ORG\n公 M-ORG\n司 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n东 M-ORG\n巨 M-ORG\n田 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n因 O\n此 O\n与 O\n本 O\n公 O\n司 O\n控 O\n股 O\n股 O\n东 O\n及 O\n实 O\n际 O\n控 O\n制 O\n人 O\n存 O\n在 O\n关 O\n联 O\n关 O\n系 O\n； O\n\n截 O\n止 O\n2 O\n0 O\n0 O\n7 O\n年 O\n5 O\n月 O\n2 O\n5 O\n日 O\n， O\n李 O\n玉 O\n霞 O\n女 O\n士 O\n持 O\n有 O\n中 O\n辽 O\n国 O\n际 O\n股 O\n票 O\n0 O\n股 O\n， O\n未 O\n受 O\n过 O\n中 O\n国 O\n证 O\n监 O\n会 O\n及 O\n其 O\n他 O\n有 O\n关 O\n部 O\n门 O\n的 O\n处 O\n罚 O\n和 O\n证 O\n券 O\n\n游 B-NAME\n善 M-NAME\n芬 E-NAME\n先 O\n生 O\n： O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n三 B-ORG\n明 M-ORG\n市 M-ORG\n天 M-ORG\n地 M-ORG\n环 M-ORG\n保 M-ORG\n技 M-ORG\n术 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n文 M-NAME\n杰 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n- O\n1 O\n9 O\n9 O\n0 O\n年 O\n6 O\n月 O\n在 O\n阳 B-ORG\n谷 M-ORG\n县 M-ORG\n油 M-ORG\n棉 M-ORG\n二 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n7 O\n月 O\n- O\n1 O\n9 O\n9 O\n1 O\n年 O\n8 O\n月 O\n在 O\n阳 B-ORG\n谷 M-ORG\n县 M-ORG\n油 M-ORG\n棉 M-ORG\n六 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n9 O\n月 O\n- O\n1 O\n9 O\n9 O\n4 O\n年 O\n8 O\n月 O\n任 O\n阳 B-ORG\n谷 M-ORG\n县 M-ORG\n交 M-ORG\n通 M-ORG\n环 M-ORG\n保 M-ORG\n设 M-ORG\n备 M-ORG\n厂 E-ORG\n经 B-TITLE\n营 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n9 O\n月 O\n- O\n2 O\n0 O\n0 O\n0 O\n年 O\n3 O\n月 O\n任 O\n山 B-ORG\n东 M-ORG\n阳 M-ORG\n谷 M-ORG\n华 M-ORG\n泰 M-ORG\n有 M-ORG\n机 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n3 O\n月 O\n- O\n2 B-ORG\n0 M-ORG\n0 M-ORG\n9 M-ORG\n年 M-ORG\n9 M-ORG\n月 E-ORG\n任 O\n山 B-ORG\n东 M-ORG\n阳 M-ORG\n谷 M-ORG\n华 M-ORG\n泰 M-ORG\n化 M-ORG\n工 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n起 O\n， O\n任 O\n山 B-ORG\n东 M-ORG\n阳 M-ORG\n谷 M-ORG\n华 M-ORG\n泰 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n1 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 M-ORG\n全 M-ORG\n资 M-ORG\n子 M-ORG\n公 M-ORG\n司 M-ORG\n山 M-ORG\n东 M-ORG\n戴 M-ORG\n瑞 M-ORG\n克 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n2 O\n7 O\n日 O\n辞 O\n去 O\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n孙 B-NAME\n喜 M-NAME\n田 E-NAME\n先 O\n生 O\n， O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n本 B-EDU\n科 E-EDU\n， O\n学 B-EDU\n士 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n3 O\n月 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n1 O\n月 O\n， O\n任 O\n重 B-ORG\n庆 M-ORG\n工 M-ORG\n业 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n仪 M-ORG\n表 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n6 O\n月 O\n， O\n任 O\n重 B-ORG\n庆 M-ORG\n工 M-ORG\n业 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n仪 M-ORG\n表 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n5 O\n月 O\n， O\n任 O\n重 B-ORG\n庆 M-ORG\n工 M-ORG\n业 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n仪 M-ORG\n表 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n7 O\n月 O\n， O\n任 O\n中 B-ORG\n国 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n控 M-ORG\n制 M-ORG\n系 M-ORG\n统 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n贸 M-ORG\n易 M-ORG\n促 M-ORG\n进 M-ORG\n委 M-ORG\n员 M-ORG\n会 M-ORG\n机 M-ORG\n械 M-ORG\n行 M-ORG\n业 M-ORG\n分 M-ORG\n会 E-ORG\n第 B-TITLE\n一 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n， O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n贸 M-ORG\n易 M-ORG\n促 M-ORG\n进 M-ORG\n委 M-ORG\n员 M-ORG\n会 M-ORG\n机 M-ORG\n械 M-ORG\n行 M-ORG\n业 M-ORG\n分 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n商 M-ORG\n会 M-ORG\n机 M-ORG\n械 M-ORG\n行 M-ORG\n业 M-ORG\n商 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n2 O\n月 O\n任 O\n山 B-ORG\n东 M-ORG\n威 M-ORG\n达 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n杨 B-NAME\n明 M-NAME\n才 E-NAME\n先 O\n生 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n7 O\n年 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n法 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n历 O\n任 O\n湖 B-ORG\n北 M-ORG\n凯 M-ORG\n乐 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n丁 B-NAME\n吉 E-NAME\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n具 O\n有 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n资 O\n格 O\n、 O\n律 B-TITLE\n师 E-TITLE\n资 O\n格 O\n。 O\n\n曾 O\n任 O\n玺 B-ORG\n萌 M-ORG\n资 M-ORG\n产 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n中 M-ORG\n心 E-ORG\n总 B-TITLE\n监 E-TITLE\n、 O\n玺 B-ORG\n萌 M-ORG\n嘉 M-ORG\n祥 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n格 B-ORG\n林 M-ORG\n期 M-ORG\n货 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n玺 B-ORG\n萌 M-ORG\n资 M-ORG\n产 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n玺 B-ORG\n萌 M-ORG\n融 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n中 M-ORG\n金 M-ORG\n小 M-ORG\n额 M-ORG\n贷 M-ORG\n款 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n凤 B-ORG\n山 M-ORG\n县 M-ORG\n宏 M-ORG\n益 M-ORG\n矿 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n大 B-ORG\n连 M-ORG\n华 M-ORG\n阳 M-ORG\n密 M-ORG\n封 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n袁 B-NAME\n宏 M-NAME\n林 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n于 O\n二 O\n零 O\n一 O\n三 O\n年 O\n十 O\n一 O\n月 O\n起 O\n担 O\n任 O\n我 O\n们 O\n的 O\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n及 O\n薪 B-TITLE\n酬 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n彼 O\n拥 O\n有 O\n二 O\n十 O\n多 O\n年 O\n从 O\n事 O\n银 O\n行 O\n业 O\n之 O\n经 O\n验 O\n。 O\n\n袁 S-NAME\n先 O\n生 O\n于 O\n一 O\n九 O\n九 O\n零 O\n年 O\n七 O\n月 O\n毕 O\n业 O\n于 O\n南 B-ORG\n京 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n获 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n二 O\n零 O\n零 O\n四 O\n年 O\n七 O\n月 O\n获 O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n一 O\n九 O\n九 O\n零 O\n年 O\n八 O\n月 O\n至 O\n二 O\n零 O\n零 O\n零 O\n年 O\n五 O\n月 O\n， O\n就 O\n职 O\n于 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 M-ORG\n南 M-ORG\n通 M-ORG\n分 M-ORG\n行 E-ORG\n， O\n先 O\n后 O\n任 O\n如 B-ORG\n东 M-ORG\n支 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n、 O\n分 B-TITLE\n行 M-TITLE\n信 M-TITLE\n贷 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n二 O\n零 O\n零 O\n零 O\n年 O\n六 O\n月 O\n至 O\n二 O\n零 O\n零 O\n七 O\n年 O\n八 O\n月 O\n， O\n就 O\n职 O\n于 O\n招 B-ORG\n商 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n上 M-ORG\n海 M-ORG\n分 M-ORG\n行 E-ORG\n， O\n先 O\n后 O\n任 O\n江 B-ORG\n湾 M-ORG\n支 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n、 O\n企 B-TITLE\n业 M-TITLE\n银 M-TITLE\n行 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n二 O\n零 O\n零 O\n七 O\n年 O\n九 O\n月 O\n至 O\n二 O\n零 O\n一 O\n二 O\n年 O\n九 O\n月 O\n， O\n就 O\n职 O\n于 O\n平 B-ORG\n安 M-ORG\n银 M-ORG\n行 E-ORG\n， O\n先 O\n后 O\n任 O\n上 B-ORG\n海 M-ORG\n分 M-ORG\n行 E-ORG\n行 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n及 O\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n（ O\n负 O\n责 O\n整 O\n体 O\n业 O\n务 O\n营 O\n运 O\n） O\n、 O\n企 B-TITLE\n业 M-TITLE\n银 M-TITLE\n行 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n负 O\n责 O\n中 O\n国 O\n北 O\n区 O\n业 O\n务 O\n； O\n\n二 O\n零 O\n一 O\n二 O\n年 O\n十 O\n月 O\n起 O\n至 O\n今 O\n， O\n任 O\n鸿 B-ORG\n商 M-ORG\n资 M-ORG\n本 M-ORG\n股 M-ORG\n权 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n洛 B-ORG\n阳 M-ORG\n钼 M-ORG\n业 M-ORG\n控 M-ORG\n股 M-ORG\n股 M-ORG\n东 M-ORG\n鸿 M-ORG\n商 M-ORG\n产 M-ORG\n业 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n的 O\n全 O\n资 O\n附 O\n属 O\n公 O\n司 O\n） O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n臧 B-NAME\n伟 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n4 O\n月 O\n在 O\n五 B-ORG\n院 E-ORG\n任 O\n国 B-TITLE\n际 M-TITLE\n经 M-TITLE\n贸 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n4 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n航 M-ORG\n天 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n历 O\n任 O\n经 B-TITLE\n贸 M-TITLE\n合 M-TITLE\n作 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n资 B-TITLE\n产 M-TITLE\n经 M-TITLE\n营 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n4 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n天 M-ORG\n地 M-ORG\n卫 M-ORG\n星 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n4 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n天 M-ORG\n地 M-ORG\n卫 M-ORG\n星 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n张 B-NAME\n铭 M-NAME\n杰 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n变 M-ORG\n压 M-ORG\n器 M-ORG\n厂 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n压 M-ORG\n调 M-ORG\n整 M-ORG\n器 M-ORG\n厂 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n代 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n华 M-ORG\n通 M-ORG\n开 M-ORG\n关 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n输 M-ORG\n配 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n电 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n产 B-TITLE\n业 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n机 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n常 B-NAME\n晓 M-NAME\n波 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n0 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n。 O\n\n陕 B-ORG\n西 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 E-ORG\n工 B-PRO\n业 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n（ O\n证 O\n券 O\n期 O\n货 O\n相 O\n关 O\n业 O\n务 O\n特 O\n许 O\n） O\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n8 O\n月 O\n， O\n任 O\n中 B-ORG\n国 M-ORG\n第 M-ORG\n十 M-ORG\n冶 M-ORG\n金 M-ORG\n建 M-ORG\n设 M-ORG\n公 M-ORG\n司 E-ORG\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n， O\n历 O\n任 O\n岳 B-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n陕 M-ORG\n西 M-ORG\n分 M-ORG\n所 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n主 B-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n， O\n任 O\n中 B-ORG\n瑞 M-ORG\n岳 M-ORG\n华 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n陕 M-ORG\n西 M-ORG\n分 M-ORG\n所 E-ORG\n主 B-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n至 O\n今 O\n为 O\n信 B-ORG\n永 M-ORG\n中 M-ORG\n和 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n兼 O\n任 O\n陕 B-ORG\n西 M-ORG\n省 M-ORG\n注 M-ORG\n册 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n陕 B-ORG\n西 M-ORG\n省 M-ORG\n总 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n（ M-ORG\n财 M-ORG\n务 M-ORG\n总 M-ORG\n监 M-ORG\n） M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n。 O\n\n曾 O\n任 O\n银 B-ORG\n龙 M-ORG\n股 M-ORG\n份 E-ORG\n（ O\n6 O\n0 O\n3 O\n9 O\n6 O\n9 O\n， O\n上 O\n海 O\n） O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n国 B-ORG\n际 M-ORG\n医 M-ORG\n学 E-ORG\n（ O\n0 O\n0 O\n0 O\n5 O\n1 O\n6 O\n， O\n深 O\n圳 O\n） O\n、 O\n森 B-ORG\n源 M-ORG\n电 M-ORG\n气 E-ORG\n（ O\n6 O\n0 O\n2 O\n3 O\n5 O\n8 O\n， O\n上 O\n海 O\n） O\n、 O\n瑞 B-ORG\n贝 M-ORG\n卡 E-ORG\n（ O\n6 O\n0 O\n0 O\n4 O\n3 O\n9 O\n， O\n上 O\n海 O\n） O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n西 B-ORG\n安 M-ORG\n宝 M-ORG\n德 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n曾 B-NAME\n燕 M-NAME\n云 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n4 O\n8 O\n年 O\n出 O\n生 O\n， O\n初 B-EDU\n中 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n就 O\n职 O\n于 O\n福 B-ORG\n州 M-ORG\n元 M-ORG\n钉 M-ORG\n厂 E-ORG\n担 O\n任 O\n仓 B-TITLE\n管 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n就 O\n职 O\n于 O\n福 B-ORG\n州 M-ORG\n中 M-ORG\n能 M-ORG\n电 M-ORG\n力 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n担 O\n任 O\n仓 B-TITLE\n管 M-TITLE\n员 E-TITLE\n、 O\n出 B-TITLE\n纳 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n至 O\n今 O\n就 O\n职 O\n于 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n中 B-ORG\n能 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n杜 B-NAME\n凡 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n宁 B-ORG\n波 M-ORG\n华 M-ORG\n翔 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n汽 B-PRO\n车 M-PRO\n专 M-PRO\n业 E-PRO\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n大 M-ORG\n众 M-ORG\n汽 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n上 B-ORG\n海 M-ORG\n通 M-ORG\n用 M-ORG\n汽 M-ORG\n车 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n岱 M-ORG\n美 M-ORG\n汽 M-ORG\n车 M-ORG\n内 M-ORG\n饰 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n玛 M-ORG\n克 M-ORG\n特 M-ORG\n汽 M-ORG\n车 M-ORG\n饰 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n郑 B-NAME\n杏 M-NAME\n建 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n新 B-ORG\n疆 M-ORG\n国 M-ORG\n统 M-ORG\n管 M-ORG\n道 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n最 O\n近 O\n5 O\n年 O\n一 O\n直 O\n就 O\n职 O\n于 O\n新 B-ORG\n疆 M-ORG\n国 M-ORG\n统 M-ORG\n管 M-ORG\n道 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n兼 O\n任 O\n茂 B-ORG\n名 M-ORG\n市 M-ORG\n恒 M-ORG\n威 M-ORG\n橡 M-ORG\n胶 M-ORG\n制 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n茂 M-ORG\n名 M-ORG\n市 M-ORG\n茂 M-ORG\n南 M-ORG\n区 M-ORG\n政 M-ORG\n协 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n全 B-ORG\n国 M-ORG\n橡 M-ORG\n胶 M-ORG\n制 M-ORG\n品 M-ORG\n标 M-ORG\n准 M-ORG\n化 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n泥 M-ORG\n制 M-ORG\n品 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n控 B-ORG\n股 M-ORG\n子 M-ORG\n公 M-ORG\n司 M-ORG\n广 M-ORG\n东 M-ORG\n海 M-ORG\n源 M-ORG\n管 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n曹 B-NAME\n洪 M-NAME\n权 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n外 B-ORG\n经 M-ORG\n贸 M-ORG\n部 M-ORG\n管 M-ORG\n理 M-ORG\n干 M-ORG\n部 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n国 B-TITLE\n际 M-TITLE\n商 M-TITLE\n务 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n储 M-ORG\n运 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n化 M-ORG\n( M-ORG\n深 M-ORG\n圳 M-ORG\n) M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n风 B-TITLE\n险 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n风 B-TITLE\n险 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n明 M-NAME\n山 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n7 O\n月 O\n， O\n曾 O\n先 O\n后 O\n担 O\n任 O\n焦 B-ORG\n作 M-ORG\n市 M-ORG\n化 M-ORG\n学 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n业 B-TITLE\n务 M-TITLE\n员 E-TITLE\n、 O\n供 B-TITLE\n应 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n销 B-TITLE\n售 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n7 O\n月 O\n任 O\n焦 B-ORG\n作 M-ORG\n市 M-ORG\n化 M-ORG\n学 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n采 B-TITLE\n购 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n佰 B-ORG\n利 M-ORG\n联 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n何 B-NAME\n曲 E-NAME\n： O\n女 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n曾 O\n任 O\n太 B-ORG\n极 M-ORG\n集 M-ORG\n团 M-ORG\n四 M-ORG\n川 M-ORG\n衡 M-ORG\n生 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n西 M-ORG\n部 M-ORG\n医 M-ORG\n药 M-ORG\n商 M-ORG\n城 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n重 B-ORG\n庆 M-ORG\n桐 M-ORG\n君 M-ORG\n阁 M-ORG\n大 M-ORG\n药 M-ORG\n房 M-ORG\n连 M-ORG\n锁 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n毛 B-NAME\n育 M-NAME\n铭 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n从 O\n集 B-ORG\n美 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 E-ORG\n毕 O\n业 O\n后 O\n曾 O\n在 O\n厦 B-ORG\n门 M-ORG\n市 M-ORG\n路 M-ORG\n桥 M-ORG\n建 M-ORG\n设 M-ORG\n投 M-ORG\n资 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 O\n务 O\n部 O\n工 O\n作 O\n， O\n现 O\n在 O\n厦 B-ORG\n门 M-ORG\n路 M-ORG\n桥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 O\n资 O\n管 O\n理 O\n部 O\n任 O\n职 O\n， O\n并 O\n担 O\n任 O\n厦 B-ORG\n门 M-ORG\n路 M-ORG\n桥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n职 O\n务 O\n。 O\n\n丁 B-NAME\n安 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n4 O\n月 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n香 B-LOC\n港 M-LOC\n特 M-LOC\n别 M-LOC\n行 M-LOC\n政 M-LOC\n区 E-LOC\n永 O\n久 O\n居 O\n民 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n毕 O\n业 O\n于 O\n长 B-ORG\n沙 M-ORG\n交 M-ORG\n通 M-ORG\n学 M-ORG\n院 E-ORG\n（ O\n现 O\n长 B-ORG\n沙 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n） O\n， O\n获 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n毕 O\n业 O\n于 O\n华 B-ORG\n南 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n获 O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n担 O\n任 O\n招 B-ORG\n商 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n任 O\n招 B-ORG\n商 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n经 M-TITLE\n济 M-TITLE\n学 M-TITLE\n家 E-TITLE\n。 O\n\n丁 S-NAME\n先 O\n生 O\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n兼 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n， O\n兼 O\n任 O\n招 B-ORG\n商 M-ORG\n轮 M-ORG\n船 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n， O\n兼 O\n任 O\n招 B-ORG\n商 M-ORG\n银 M-ORG\n行 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n， O\n任 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n集 M-ORG\n团 E-ORG\n战 B-TITLE\n略 M-TITLE\n研 M-TITLE\n究 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n， O\n历 O\n任 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n集 M-ORG\n团 E-ORG\n业 B-TITLE\n务 M-TITLE\n开 M-TITLE\n发 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n企 B-TITLE\n业 M-TITLE\n规 M-TITLE\n划 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n2 O\n月 O\n， O\n任 O\n职 O\n于 O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\n皇 M-ORG\n家 M-ORG\n银 M-ORG\n行 E-ORG\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n8 O\n月 O\n， O\n任 O\n美 B-ORG\n资 M-ORG\n企 M-ORG\n业 E-ORG\n高 B-TITLE\n级 M-TITLE\n管 M-TITLE\n理 M-TITLE\n人 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n集 M-ORG\n团 E-ORG\n研 B-TITLE\n究 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n华 B-ORG\n南 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n讲 B-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n8 O\n6 O\n年 O\n8 O\n月 O\n， O\n任 O\n人 B-ORG\n民 M-ORG\n交 M-ORG\n通 M-ORG\n出 M-ORG\n版 M-ORG\n社 E-ORG\n编 B-TITLE\n辑 E-TITLE\n。 O\n\n梁 B-NAME\n卓 M-NAME\n昭 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n8 O\n月 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n广 B-ORG\n钢 E-ORG\n生 B-TITLE\n活 M-TITLE\n福 M-TITLE\n利 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n综 B-ORG\n合 M-ORG\n饮 M-ORG\n食 M-ORG\n服 M-ORG\n务 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n广 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n广 B-ORG\n州 M-ORG\n气 M-ORG\n体 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n许 B-NAME\n红 M-NAME\n超 E-NAME\n： O\n1 O\n9 O\n7 O\n0 O\n年 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n任 O\n中 B-ORG\n国 M-ORG\n核 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n资 M-TITLE\n产 M-TITLE\n经 M-TITLE\n营 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n起 O\n任 O\n中 B-ORG\n国 M-ORG\n核 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n政 B-TITLE\n研 M-TITLE\n体 M-TITLE\n改 M-TITLE\n部 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n起 O\n任 O\n中 B-ORG\n国 M-ORG\n核 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n投 M-TITLE\n资 M-TITLE\n经 M-TITLE\n营 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n。 O\n\n任 O\n中 B-ORG\n核 M-ORG\n苏 M-ORG\n阀 M-ORG\n科 M-ORG\n技 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n郑 B-NAME\n志 M-NAME\n华 E-NAME\n男 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n山 B-ORG\n东 M-ORG\n菏 M-ORG\n泽 M-ORG\n供 M-ORG\n电 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n济 M-ORG\n南 M-ORG\n供 M-ORG\n电 M-ORG\n局 E-ORG\n代 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n电 M-ORG\n力 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 M-ORG\n调 M-ORG\n度 M-ORG\n所 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n农 B-ORG\n村 M-ORG\n电 M-ORG\n气 M-ORG\n化 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n地 B-TITLE\n电 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n电 M-ORG\n力 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n鲁 M-ORG\n能 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n英 M-ORG\n大 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n潘 B-NAME\n亚 M-NAME\n敏 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n浙 B-LOC\n江 M-LOC\n省 M-LOC\n绍 M-LOC\n兴 M-LOC\n市 M-LOC\n人 E-LOC\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n昌 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n集 B-ORG\n团 E-ORG\n营 B-TITLE\n销 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n2 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n昌 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n昌 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n昌 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n北 B-ORG\n京 M-ORG\n兴 M-ORG\n业 M-ORG\n玉 M-ORG\n海 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n3 O\n月 O\n至 O\n今 O\n， O\n任 O\n浙 B-ORG\n江 M-ORG\n金 M-ORG\n昌 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n裁 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n兴 M-ORG\n业 M-ORG\n玉 M-ORG\n海 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n龙 B-NAME\n云 M-NAME\n刚 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n毕 O\n业 O\n于 O\n中 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n会 B-PRO\n计 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n7 O\n月 O\n至 O\n今 O\n在 O\n亚 B-ORG\n太 M-ORG\n中 M-ORG\n汇 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n毛 B-NAME\n文 M-NAME\n群 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n恒 B-ORG\n立 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n控 M-ORG\n股 M-ORG\n子 M-ORG\n公 M-ORG\n司 M-ORG\n岳 M-ORG\n阳 M-ORG\n恒 M-ORG\n生 M-ORG\n汽 M-ORG\n车 M-ORG\n空 M-ORG\n调 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n恒 B-ORG\n立 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n营 B-TITLE\n销 M-TITLE\n部 M-TITLE\n片 M-TITLE\n区 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n湖 B-ORG\n北 M-ORG\n美 M-ORG\n标 M-ORG\n汽 M-ORG\n车 M-ORG\n制 M-ORG\n冷 M-ORG\n系 M-ORG\n统 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n发 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n现 O\n任 O\n恒 B-ORG\n立 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n李 B-NAME\n从 M-NAME\n容 E-NAME\n， O\n历 O\n任 O\n太 B-ORG\n原 M-ORG\n天 M-ORG\n龙 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n针 B-TITLE\n纺 M-TITLE\n商 M-TITLE\n场 M-TITLE\n合 M-TITLE\n同 M-TITLE\n物 M-TITLE\n价 M-TITLE\n员 E-TITLE\n、 O\n纺 B-TITLE\n织 M-TITLE\n商 M-TITLE\n场 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n购 B-TITLE\n物 M-TITLE\n广 M-TITLE\n场 M-TITLE\n女 M-TITLE\n装 M-TITLE\n商 M-TITLE\n场 M-TITLE\n商 M-TITLE\n品 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 E-TITLE\n。 O\n\n现 O\n任 O\n太 B-ORG\n原 M-ORG\n天 M-ORG\n龙 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n购 B-TITLE\n物 M-TITLE\n广 M-TITLE\n场 M-TITLE\n男 M-TITLE\n装 M-TITLE\n商 M-TITLE\n场 M-TITLE\n商 M-TITLE\n品 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n太 B-ORG\n原 M-ORG\n天 M-ORG\n龙 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n罗 B-NAME\n凌 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n职 M-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n南 B-ORG\n京 M-ORG\n中 M-ORG\n央 M-ORG\n商 M-ORG\n场 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n职 M-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n一 M-NAME\n宁 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n正 B-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n担 O\n任 O\n乐 B-ORG\n凯 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n无 O\n简 O\n历 O\n信 O\n息 O\n\n段 B-NAME\n威 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n法 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n三 M-ORG\n鸣 M-ORG\n博 M-ORG\n雅 M-ORG\n装 M-ORG\n饰 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n全 M-ORG\n创 M-ORG\n通 M-ORG\n讯 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n中 M-ORG\n教 M-ORG\n大 M-ORG\n通 M-ORG\n教 M-ORG\n育 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n等 O\n企 O\n业 O\n的 O\n法 B-TITLE\n务 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n、 O\n中 B-ORG\n央 M-ORG\n民 M-ORG\n族 M-ORG\n法 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n讲 B-TITLE\n师 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n永 M-ORG\n邦 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n兼 B-TITLE\n职 M-TITLE\n律 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n央 M-ORG\n民 M-ORG\n族 M-ORG\n大 M-ORG\n学 M-ORG\n法 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n卢 B-NAME\n明 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n子 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n长 M-ORG\n城 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n长 B-ORG\n城 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n长 M-ORG\n城 M-ORG\n开 M-ORG\n发 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n等 O\n。 O\n\n曾 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n6 O\n月 O\n首 O\n次 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n6 O\n月 O\n换 O\n届 O\n选 O\n举 O\n时 O\n再 O\n次 O\n连 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n1 O\n1 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n王 B-NAME\n伟 M-NAME\n东 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n月 O\n- O\n2 O\n0 O\n0 O\n9 O\n年 O\n7 O\n月 O\n， O\n任 O\n獐 B-ORG\n子 M-ORG\n岛 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n旅 M-ORG\n顺 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n7 O\n月 O\n- O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n獐 B-ORG\n子 M-ORG\n岛 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n五 B-TITLE\n合 M-TITLE\n一 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n- O\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n， O\n任 O\n獐 B-ORG\n子 M-ORG\n岛 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n养 B-TITLE\n殖 M-TITLE\n事 M-TITLE\n业 M-TITLE\n四 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n广 B-TITLE\n鹿 M-TITLE\n分 M-TITLE\n公 M-TITLE\n司 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n大 B-TITLE\n长 M-TITLE\n山 M-TITLE\n岛 M-TITLE\n分 M-TITLE\n公 M-TITLE\n司 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n- O\n2 O\n0 O\n1 O\n4 O\n年 O\n6 O\n月 O\n2 O\n2 O\n日 O\n， O\n任 O\n獐 B-ORG\n子 M-ORG\n岛 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n安 B-TITLE\n全 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n梁 B-NAME\n桂 M-NAME\n添 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n6 O\n年 O\n出 O\n生 O\n， O\nM B-EDU\nB M-EDU\nA E-EDU\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n梁 B-NAME\n桂 M-NAME\n添 E-NAME\n先 O\n生 O\n与 O\n梁 B-NAME\n桂 M-NAME\n秋 E-NAME\n先 O\n生 O\n一 O\n起 O\n创 O\n立 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n尚 M-ORG\n荣 M-ORG\n医 M-ORG\n疗 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n尚 M-ORG\n荣 M-ORG\n医 M-ORG\n疗 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n苏 B-ORG\n州 M-ORG\n吉 M-ORG\n美 M-ORG\n瑞 M-ORG\n医 M-ORG\n疗 M-ORG\n器 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n尚 M-ORG\n荣 M-ORG\n医 M-ORG\n院 M-ORG\n后 M-ORG\n勤 M-ORG\n物 M-ORG\n业 M-ORG\n服 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n荣 M-ORG\n昶 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n合 B-ORG\n肥 M-ORG\n普 M-ORG\n尔 M-ORG\n德 M-ORG\n医 M-ORG\n疗 M-ORG\n用 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n布 M-ORG\n兰 M-ORG\n登 M-ORG\n医 M-ORG\n疗 M-ORG\n科 M-ORG\n技 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n华 M-ORG\n荣 M-ORG\n健 M-ORG\n康 M-ORG\n医 M-ORG\n疗 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n和 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n尚 M-ORG\n云 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n高 B-NAME\n德 M-NAME\n柱 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n4 O\n0 O\n年 O\n1 O\n月 O\n1 O\n8 O\n日 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n毕 O\n业 O\n于 O\n抚 B-ORG\n顺 M-ORG\n师 M-ORG\n范 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n享 O\n受 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n的 O\n专 O\n家 O\n， O\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n行 E-ORG\n信 B-TITLE\n贷 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\nO O\n、 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n工 M-ORG\n业 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n铝 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n北 M-ORG\n矿 M-ORG\n磁 M-ORG\n材 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n安 B-ORG\n徽 M-ORG\n铜 M-ORG\n都 M-ORG\n铜 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n株 B-ORG\n洲 M-ORG\n冶 M-ORG\n炼 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n西 B-ORG\n部 M-ORG\n矿 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n洛 B-ORG\n阳 M-ORG\n钼 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n严 B-NAME\n志 M-NAME\n荣 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n在 O\n读 O\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n就 O\n职 O\n于 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n新 M-ORG\n天 M-ORG\n下 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n任 O\n亚 B-ORG\n洲 M-ORG\n铝 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n月 O\n， O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n兆 M-ORG\n驰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n5 O\n年 O\n4 O\n月 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n兆 M-ORG\n驰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n张 B-NAME\n嘉 M-NAME\n玲 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n青 M-ORG\n山 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n经 O\n福 B-ORG\n建 M-ORG\n东 M-ORG\n百 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 O\n七 O\n届 O\n董 O\n事 O\n会 O\n第 O\n十 O\n二 O\n次 O\n会 O\n议 O\n审 O\n议 O\n通 O\n过 O\n， O\n担 O\n任 O\n福 B-ORG\n建 M-ORG\n东 M-ORG\n百 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n职 O\n务 O\n。 O\n\n徐 B-NAME\n世 M-NAME\n森 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n青 B-ORG\n海 M-ORG\n钾 M-ORG\n肥 M-ORG\n厂 E-ORG\n人 B-TITLE\n事 M-TITLE\n处 M-TITLE\n工 M-TITLE\n资 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n青 B-ORG\n海 M-ORG\n盐 M-ORG\n湖 M-ORG\n科 M-ORG\n技 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n青 B-ORG\n海 M-ORG\n盐 M-ORG\n湖 M-ORG\n钾 M-ORG\n肥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n林 B-NAME\n少 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n- O\n2 O\n0 O\n0 O\n9 O\n年 O\n， O\n投 O\n资 O\n设 O\n立 O\n源 B-ORG\n茗 M-ORG\n祥 M-ORG\n茶 M-ORG\n叶 M-ORG\n商 M-ORG\n行 E-ORG\n从 O\n事 O\n茶 O\n叶 O\n批 O\n发 O\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n- O\n2 O\n0 O\n1 O\n0 O\n年 O\n， O\n任 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n澄 M-ORG\n海 M-ORG\n区 M-ORG\n源 M-ORG\n茗 M-ORG\n祥 M-ORG\n茶 M-ORG\n叶 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n、 M-TITLE\n第 M-TITLE\n二 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n范 B-NAME\n鸿 M-NAME\n贤 E-NAME\n， O\n男 O\n， O\n国 B-CONT\n籍 M-CONT\n马 M-CONT\n来 M-CONT\n西 M-CONT\n亚 E-CONT\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n毕 O\n业 O\n于 O\n马 B-ORG\n来 M-ORG\n西 M-ORG\n亚 M-ORG\n特 M-ORG\n许 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n成 O\n为 O\n马 B-ORG\n来 M-ORG\n西 M-ORG\n亚 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n学 M-ORG\n会 E-ORG\n专 B-TITLE\n业 M-TITLE\n会 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n升 O\n为 O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n至 O\n1 O\n9 O\n9 O\n1 O\n年 O\n任 O\n世 O\n界 O\n著 O\n名 O\nD B-ORG\ne M-ORG\nl M-ORG\no M-ORG\ni M-ORG\nt M-ORG\nt M-ORG\ne M-ORG\nT M-ORG\no M-ORG\nu M-ORG\nc M-ORG\nh M-ORG\ne M-ORG\nT M-ORG\no M-ORG\nh M-ORG\nm M-ORG\na M-ORG\nt M-ORG\ns M-ORG\nu M-ORG\nI M-ORG\nn M-ORG\nt M-ORG\n. E-ORG\n， O\n会 B-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n高 B-TITLE\n级 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n金 B-ORG\n狮 M-ORG\n集 M-ORG\n团 E-ORG\n摩 B-TITLE\n托 M-TITLE\n车 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n负 O\n责 O\n开 O\n拓 O\n经 O\n营 O\n在 O\n华 O\n摩 O\n托 O\n车 O\n及 O\n相 O\n关 O\n零 O\n部 O\n件 O\n事 O\n业 O\n， O\n同 O\n时 O\n担 O\n任 O\n浙 B-ORG\n江 M-ORG\n钱 M-ORG\n江 M-ORG\n摩 M-ORG\n托 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n丁 B-NAME\n凌 M-NAME\n烨 E-NAME\n： O\n女 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n至 O\n今 O\n在 O\n华 B-ORG\n盛 M-ORG\n达 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n企 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n部 E-ORG\n工 O\n作 O\n， O\n现 O\n任 O\n企 B-TITLE\n业 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n赵 B-NAME\n永 M-NAME\n宏 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n陕 B-LOC\n西 M-LOC\n礼 M-LOC\n泉 M-LOC\n县 M-LOC\n人 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n南 M-ORG\n财 M-ORG\n经 M-ORG\n政 M-ORG\n法 M-ORG\n大 M-ORG\n学 E-ORG\n财 B-TITLE\n政 M-TITLE\n专 M-TITLE\n业 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n月 O\n担 O\n任 O\n陕 B-ORG\n西 M-ORG\n秦 M-ORG\n丰 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n担 O\n任 O\n陕 B-ORG\n西 M-ORG\n秦 M-ORG\n丰 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n6 O\n月 O\n担 O\n任 O\n陕 B-ORG\n西 M-ORG\n秦 M-ORG\n丰 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n担 O\n任 O\n陕 B-ORG\n西 M-ORG\n秦 M-ORG\n丰 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n行 B-TITLE\n政 M-TITLE\n人 M-TITLE\n事 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n担 O\n任 O\n陕 B-ORG\n西 M-ORG\n秦 M-ORG\n丰 M-ORG\n农 M-ORG\n业 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n今 O\n担 O\n任 O\n陕 B-ORG\n西 M-ORG\n延 M-ORG\n长 M-ORG\n石 M-ORG\n油 M-ORG\n化 M-ORG\n建 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n张 B-NAME\n美 M-NAME\n文 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n出 O\n生 O\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n毕 O\n业 O\n于 O\n四 B-ORG\n川 M-ORG\n大 M-ORG\n学 M-ORG\n中 M-ORG\n文 M-ORG\n系 E-ORG\n汉 B-PRO\n语 M-PRO\n言 M-PRO\n文 M-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n历 O\n任 O\n福 B-ORG\n建 M-ORG\n电 M-ORG\n子 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n主 B-TITLE\n任 E-TITLE\n兼 O\n华 B-TITLE\n北 M-TITLE\n销 M-TITLE\n售 M-TITLE\n区 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n北 B-TITLE\n方 M-TITLE\n销 M-TITLE\n售 M-TITLE\n区 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n电 B-TITLE\n脑 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n福 B-ORG\n州 M-ORG\n飞 M-ORG\n奇 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n福 B-ORG\n建 M-ORG\n新 M-ORG\n大 M-ORG\n陆 M-ORG\n电 M-ORG\n脑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n行 B-TITLE\n政 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n市 B-TITLE\n场 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n， O\n就 O\n职 O\n于 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n5 O\n月 O\n， O\n任 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n， O\n任 O\n福 B-ORG\n建 M-ORG\n敏 M-ORG\n讯 M-ORG\n信 M-ORG\n息 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n5 O\n年 O\n3 O\n月 O\n任 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n马 B-NAME\n国 M-NAME\n鑫 E-NAME\n先 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n； O\n\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n杭 B-ORG\n州 M-ORG\n医 M-ORG\n疗 M-ORG\n器 M-ORG\n械 M-ORG\n厂 E-ORG\n( O\n后 O\n改 O\n为 O\n杭 B-ORG\n州 M-ORG\n电 M-ORG\n冰 M-ORG\n箱 M-ORG\n总 M-ORG\n厂 E-ORG\n、 O\n杭 B-ORG\n州 M-ORG\n西 M-ORG\n泠 M-ORG\n电 M-ORG\n器 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n) O\n公 B-TITLE\n司 M-TITLE\n( M-TITLE\n党 M-TITLE\n委 M-TITLE\n) M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n销 B-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n( O\n兼 O\n书 B-TITLE\n记 E-TITLE\n) O\n， O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n家 M-ORG\n电 M-ORG\n协 M-ORG\n会 E-ORG\n家 B-TITLE\n电 M-TITLE\n行 M-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n家 M-ORG\n电 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n杭 B-ORG\n州 M-ORG\n老 M-ORG\n板 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n丰 M-NAME\n年 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n国 B-ORG\n营 M-ORG\n第 M-ORG\n4 M-ORG\n3 M-ORG\n1 M-ORG\n0 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n西 B-ORG\n安 M-ORG\n西 M-ORG\n京 M-ORG\n电 M-ORG\n子 M-ORG\n元 M-ORG\n器 M-ORG\n件 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n子 M-ORG\n基 M-ORG\n础 M-ORG\n产 M-ORG\n品 M-ORG\n装 M-ORG\n备 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n子 M-ORG\n系 M-ORG\n统 M-ORG\n工 M-ORG\n程 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n子 M-ORG\n信 M-ORG\n息 M-ORG\n产 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n专 M-TITLE\n项 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n、 M-TITLE\n三 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n夏 B-ORG\n新 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n冯 B-NAME\n宝 M-NAME\n珊 E-NAME\n， O\n女 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n4 O\n月 O\n至 O\n今 O\n在 O\n机 B-ORG\n械 M-ORG\n工 M-ORG\n业 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n任 O\n规 B-TITLE\n划 M-TITLE\n与 M-TITLE\n市 M-TITLE\n场 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n2 O\n月 O\n4 O\n日 O\n续 O\n任 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n兼 O\n任 O\n安 B-ORG\n徽 M-ORG\n合 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n及 O\n三 B-ORG\n一 M-ORG\n重 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n许 B-NAME\n倩 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n硕 B-EDU\n士 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n浙 B-ORG\n江 M-ORG\n新 M-ORG\n和 M-ORG\n成 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n立 M-ORG\n信 M-ORG\n锐 M-ORG\n思 M-ORG\n信 M-ORG\n息 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n， O\n兼 O\n任 O\n杭 B-ORG\n州 M-ORG\n巨 M-ORG\n星 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n南 B-ORG\n方 M-ORG\n泵 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n吴 B-NAME\n胜 M-NAME\n军 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n0 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n国 M-TITLE\n际 M-TITLE\n财 M-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n上 B-ORG\n海 M-ORG\n新 M-ORG\n世 M-ORG\n界 M-ORG\n投 M-ORG\n资 M-ORG\n咨 M-ORG\n询 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n新 M-ORG\n世 M-ORG\n界 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n监 E-TITLE\n( O\n主 O\n持 O\n工 O\n作 O\n) O\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n新 M-ORG\n世 M-ORG\n界 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n龙 B-NAME\n凤 M-NAME\n鸣 E-NAME\n， O\n女 O\n， O\n汉 B-RACE\n族 M-RACE\n人 E-RACE\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n8 O\n月 O\n2 O\n2 O\n日 O\n出 O\n生 O\n， O\n经 B-PRO\n济 M-PRO\n管 M-PRO\n理 E-PRO\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n纳 M-TITLE\n税 M-TITLE\n筹 M-TITLE\n划 M-TITLE\n师 E-TITLE\n， O\n项 B-TITLE\n目 M-TITLE\n数 M-TITLE\n据 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n国 M-TITLE\n家 M-TITLE\n一 M-TITLE\n级 E-TITLE\n， O\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 M-TITLE\n国 M-TITLE\n际 M-TITLE\n最 M-TITLE\n高 M-TITLE\n级 E-TITLE\n， O\n剑 B-TITLE\n桥 M-TITLE\nC M-TITLE\nF M-TITLE\nO E-TITLE\n， O\n现 O\n任 O\n兰 B-ORG\n州 M-ORG\n市 M-ORG\n政 M-ORG\n府 M-ORG\n项 M-ORG\n目 M-ORG\n投 M-ORG\n资 M-ORG\n评 M-ORG\n审 M-ORG\n中 M-ORG\n心 E-ORG\n专 B-TITLE\n家 M-TITLE\n评 M-TITLE\n审 E-TITLE\n。 O\n\n经 O\n福 B-ORG\n建 M-ORG\n东 M-ORG\n百 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n2 O\n0 O\n1 O\n0 O\n年 O\n第 O\n二 O\n次 O\n临 O\n时 O\n股 O\n东 O\n大 O\n会 O\n会 O\n议 O\n审 O\n议 O\n通 O\n过 O\n， O\n开 O\n始 O\n担 O\n任 O\n福 B-ORG\n建 M-ORG\n东 M-ORG\n百 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n吴 B-NAME\n解 M-NAME\n萍 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n1 O\n1 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n宁 B-ORG\n夏 M-ORG\n天 M-ORG\n净 M-ORG\n贺 M-ORG\n兰 M-ORG\n山 M-ORG\n风 M-ORG\n力 M-ORG\n发 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n宁 B-ORG\n夏 M-ORG\n发 M-ORG\n电 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 M-ORG\n贺 M-ORG\n兰 M-ORG\n山 M-ORG\n风 M-ORG\n电 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n经 B-TITLE\n营 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n贺 B-ORG\n兰 M-ORG\n山 M-ORG\n风 M-ORG\n电 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n风 B-TITLE\n电 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n宁 B-ORG\n夏 M-ORG\n新 M-ORG\n能 M-ORG\n源 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n（ M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n） E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n银 B-ORG\n星 M-ORG\n能 M-ORG\n源 E-ORG\n第 B-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n铝 M-ORG\n宁 M-ORG\n夏 M-ORG\n能 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n原 O\n宁 B-ORG\n夏 M-ORG\n发 M-ORG\n电 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n） O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n新 B-TITLE\n能 M-TITLE\n源 M-TITLE\n发 M-TITLE\n电 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\nC B-TITLE\nD M-TITLE\nM M-TITLE\n项 M-TITLE\n目 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n宁 B-ORG\n夏 M-ORG\n意 M-ORG\n科 M-ORG\n太 M-ORG\n阳 M-ORG\n能 M-ORG\n发 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n卫 M-ORG\n宁 M-ORG\n电 M-ORG\n新 M-ORG\n能 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n银 B-ORG\n星 M-ORG\n能 M-ORG\n源 E-ORG\n第 B-TITLE\n六 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n秀 M-NAME\n生 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n1 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 M-ORG\n发 M-ORG\n展 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n3 O\n月 O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n武 B-ORG\n汉 M-ORG\n三 M-ORG\n特 M-ORG\n索 M-ORG\n道 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n吴 B-NAME\n国 M-NAME\n森 E-NAME\n先 O\n生 O\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n黄 B-TITLE\n冈 M-TITLE\n工 M-TITLE\n业 M-TITLE\n系 M-TITLE\n统 M-TITLE\n企 M-TITLE\n管 M-TITLE\n干 M-TITLE\n部 E-TITLE\n、 O\n永 B-ORG\n安 M-ORG\n有 M-ORG\n限 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n担 O\n任 O\n潜 B-ORG\n江 M-ORG\n永 M-ORG\n安 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n永 B-ORG\n安 M-ORG\n康 M-ORG\n健 M-ORG\n药 M-ORG\n业 M-ORG\n（ M-ORG\n武 M-ORG\n汉 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n宋 B-NAME\n学 M-NAME\n勇 E-NAME\n， O\n男 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n9 O\n月 O\n进 O\n入 O\n公 B-ORG\n司 E-ORG\n， O\n从 O\n事 O\n通 O\n信 O\n及 O\n硬 O\n件 O\n产 O\n品 O\n开 O\n发 O\n、 O\n系 O\n统 O\n集 O\n成 O\n、 O\n项 O\n目 O\n培 O\n训 O\n、 O\n工 O\n程 O\n及 O\n售 O\n后 O\n技 O\n术 O\n支 O\n持 O\n工 O\n作 O\n。 O\n\n现 O\n任 O\n四 B-ORG\n川 M-ORG\n川 M-ORG\n大 M-ORG\n智 M-ORG\n胜 M-ORG\n软 M-ORG\n件 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n赏 B-NAME\n冠 M-NAME\n军 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n富 M-ORG\n润 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n柳 B-NAME\n振 M-NAME\n江 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n自 O\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n0 O\n月 O\n起 O\n历 O\n任 O\n江 B-ORG\n苏 M-ORG\n通 M-ORG\n润 M-ORG\n装 M-ORG\n备 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n通 M-ORG\n润 M-ORG\n装 M-ORG\n备 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n兼 O\n任 O\n常 B-ORG\n熟 M-ORG\n市 M-ORG\n千 M-ORG\n斤 M-ORG\n顶 M-ORG\n厂 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n新 B-ORG\n余 M-ORG\n新 M-ORG\n观 M-ORG\n念 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n常 B-ORG\n熟 M-ORG\n市 M-ORG\n通 M-ORG\n用 M-ORG\n电 M-ORG\n器 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n常 B-ORG\n熟 M-ORG\n通 M-ORG\n润 M-ORG\n天 M-ORG\n狼 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n祥 M-NAME\n玉 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n山 B-ORG\n东 M-ORG\n三 M-ORG\n维 M-ORG\n石 M-ORG\n化 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n叔 M-NAME\n良 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n1 O\n年 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n毕 O\n业 O\n于 O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n本 B-EDU\n科 E-EDU\n、 O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n曾 O\n任 O\n航 B-ORG\n天 M-ORG\n部 M-ORG\n5 M-ORG\n0 M-ORG\n8 M-ORG\n所 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n科 B-TITLE\n技 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n航 B-ORG\n天 M-ORG\n工 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n审 M-ORG\n计 M-ORG\n局 E-ORG\n审 B-TITLE\n计 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n局 M-TITLE\n级 M-TITLE\n审 M-TITLE\n计 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n航 M-ORG\n天 M-ORG\n机 M-ORG\n电 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n清 B-TITLE\n理 M-TITLE\n整 M-TITLE\n顿 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n1 O\n月 O\n开 O\n始 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n获 O\n航 O\n天 O\n工 O\n业 O\n总 O\n公 O\n司 O\n一 O\n等 O\n功 O\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n获 O\n原 O\n国 O\n防 O\n科 O\n工 O\n委 O\n审 O\n计 O\n系 O\n统 O\n先 O\n进 O\n个 O\n人 O\n。 O\n\n祖 B-NAME\n国 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n绵 M-ORG\n世 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n绵 M-ORG\n世 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n邱 B-NAME\n惠 M-NAME\n清 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n5 O\n月 O\n起 O\n至 O\n今 O\n担 O\n任 O\n金 B-ORG\n陵 M-ORG\n饭 M-ORG\n店 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n江 B-ORG\n苏 M-ORG\n金 M-ORG\n陵 M-ORG\n旅 M-ORG\n游 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n历 O\n任 O\n甘 B-ORG\n肃 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n投 M-ORG\n资 M-ORG\n银 M-ORG\n行 M-ORG\n（ M-ORG\n深 M-ORG\n圳 M-ORG\n） M-ORG\n总 M-ORG\n部 E-ORG\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n星 M-ORG\n盛 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n信 B-ORG\n泰 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n银 M-TITLE\n行 M-TITLE\n部 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n金 B-ORG\n陵 M-ORG\n饭 M-ORG\n店 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n孙 B-NAME\n亚 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n高 B-PRO\n级 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n（ O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n） O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n山 B-ORG\n煤 M-ORG\n国 M-ORG\n际 M-ORG\n能 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n天 M-ORG\n津 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n山 B-ORG\n煤 M-ORG\n国 M-ORG\n际 M-ORG\n能 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n秦 M-ORG\n皇 M-ORG\n岛 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n支 M-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n太 B-ORG\n行 M-ORG\n海 M-ORG\n运 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n山 B-ORG\n煤 M-ORG\n国 M-ORG\n际 M-ORG\n能 M-ORG\n源 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n葛 B-NAME\n晓 M-NAME\n智 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n宝 B-ORG\n钢 M-ORG\n资 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n（ O\n资 O\n产 O\n管 O\n理 O\n） O\n， O\n现 O\n任 O\n宝 B-ORG\n钢 M-ORG\n资 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n郑 B-NAME\n世 M-NAME\n伟 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n生 O\n， O\n现 O\n为 O\n中 B-ORG\n国 M-ORG\n资 M-ORG\n本 M-ORG\n（ M-ORG\n控 M-ORG\n股 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n合 B-TITLE\n资 M-TITLE\n格 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n及 O\n公 B-TITLE\n司 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n中 B-ORG\n国 M-ORG\n资 M-ORG\n本 M-ORG\n（ M-ORG\n控 M-ORG\n股 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n为 O\n在 O\n香 B-ORG\n港 M-ORG\n联 M-ORG\n交 M-ORG\n所 E-ORG\n挂 O\n牌 O\n之 O\n香 O\n港 O\n上 O\n市 O\n公 O\n司 O\n。 O\n\n郑 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n文 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n主 O\n修 O\n会 B-PRO\n计 M-PRO\n财 M-PRO\n务 E-PRO\n， O\n曾 O\n先 O\n后 O\n在 O\n香 B-ORG\n港 E-ORG\n和 O\n加 B-ORG\n拿 M-ORG\n大 E-ORG\n担 O\n任 O\n审 B-TITLE\n计 E-TITLE\n工 O\n作 O\n， O\n拥 O\n有 O\n丰 O\n富 O\n相 O\n关 O\n经 O\n验 O\n。 O\n\n其 O\n后 O\n出 O\n任 O\n多 B-ORG\n家 M-ORG\n香 M-ORG\n港 M-ORG\n上 M-ORG\n市 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 E-TITLE\n要 O\n职 O\n。 O\n\n郑 S-NAME\n先 O\n生 O\n为 O\n香 B-ORG\n港 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n公 M-ORG\n会 E-ORG\n资 B-TITLE\n深 M-TITLE\n会 M-TITLE\n员 E-TITLE\n。 O\n\n在 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 E-TITLE\n、 O\n投 O\n资 O\n范 O\n畴 O\n及 O\n公 O\n司 O\n秘 O\n书 O\n服 O\n务 O\n等 O\n方 O\n面 O\n拥 O\n有 O\n丰 O\n富 O\n的 O\n管 O\n理 O\n经 O\n验 O\n。 O\n\n丁 B-NAME\n靖 M-NAME\n国 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n航 M-ORG\n地 M-ORG\n产 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n曾 O\n任 O\n西 B-ORG\n安 M-ORG\n飞 M-ORG\n机 M-ORG\n工 M-ORG\n业 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n秘 B-TITLE\n书 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n航 M-ORG\n地 M-ORG\n产 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n王 B-NAME\n北 M-NAME\n婴 E-NAME\n女 O\n士 O\n1 O\n9 O\n5 O\n7 O\n年 O\n出 O\n生 O\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n历 O\n任 O\n国 B-ORG\n家 M-ORG\n卫 M-ORG\n生 M-ORG\n部 M-ORG\n药 M-ORG\n政 M-ORG\n局 E-ORG\n中 B-TITLE\n药 M-TITLE\n处 M-TITLE\n主 M-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n、 O\n卫 O\n生 B-ORG\n总 M-ORG\n办 M-ORG\n公 M-ORG\n厅 E-ORG\n秘 B-TITLE\n书 M-TITLE\n处 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n药 M-ORG\n品 M-ORG\n审 M-ORG\n评 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n中 M-ORG\n医 M-ORG\n药 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n应 B-TITLE\n用 M-TITLE\n研 M-TITLE\n究 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n康 M-ORG\n莱 M-ORG\n特 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n中 M-ORG\n科 M-ORG\n合 M-ORG\n臣 M-ORG\n化 M-ORG\n学 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n中 M-ORG\n医 M-ORG\n药 M-ORG\n师 M-ORG\n管 M-ORG\n理 M-ORG\n局 M-ORG\n中 M-ORG\n医 M-ORG\n药 M-ORG\n师 M-ORG\n资 M-ORG\n格 M-ORG\n认 M-ORG\n证 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n吕 B-NAME\n厚 M-NAME\n军 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n迄 O\n今 O\n历 O\n任 O\n建 B-ORG\n设 M-ORG\n银 M-ORG\n行 M-ORG\n苏 M-ORG\n州 M-ORG\n分 M-ORG\n行 E-ORG\n行 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n分 M-ORG\n行 E-ORG\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n建 B-ORG\n设 M-ORG\n银 M-ORG\n行 M-ORG\n南 M-ORG\n京 M-ORG\n分 M-ORG\n行 E-ORG\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n海 B-ORG\n通 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n银 M-TITLE\n行 M-TITLE\n总 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n海 B-ORG\n通 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n海 B-ORG\n富 M-ORG\n产 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n朗 M-ORG\n光 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n新 B-ORG\n疆 M-ORG\n金 M-ORG\n风 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n戴 B-NAME\n智 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n机 M-ORG\n场 M-ORG\n管 M-ORG\n理 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n组 M-TITLE\n织 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n民 M-ORG\n航 M-ORG\n机 M-ORG\n场 M-ORG\n建 M-ORG\n设 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n白 B-ORG\n云 M-ORG\n机 M-ORG\n场 E-ORG\n董 B-TITLE\n事 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n机 M-ORG\n场 M-ORG\n管 M-ORG\n理 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n白 B-ORG\n云 M-ORG\n机 M-ORG\n场 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n谢 B-NAME\n东 M-NAME\n城 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n专 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n现 O\n任 O\n成 B-ORG\n都 M-ORG\n天 M-ORG\n府 M-ORG\n新 M-ORG\n城 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n绵 M-ORG\n世 M-ORG\n投 M-ORG\n资 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n雷 B-NAME\n自 M-NAME\n力 E-NAME\n： O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n男 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n航 M-ORG\n空 M-ORG\n救 M-ORG\n生 M-ORG\n研 M-ORG\n究 M-ORG\n所 M-ORG\n嘉 M-ORG\n利 M-ORG\n分 M-ORG\n厂 E-ORG\n企 B-TITLE\n划 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n分 B-ORG\n厂 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n中 M-ORG\n航 M-ORG\n精 M-ORG\n机 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n， O\n现 O\n任 O\n湖 B-ORG\n北 M-ORG\n中 M-ORG\n航 M-ORG\n精 M-ORG\n机 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n武 B-ORG\n汉 M-ORG\n中 M-ORG\n航 M-ORG\n精 M-ORG\n冲 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n苏 B-ORG\n州 M-ORG\n中 M-ORG\n航 M-ORG\n中 M-ORG\n振 M-ORG\n汽 M-ORG\n车 M-ORG\n饰 M-ORG\n件 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n航 M-ORG\n宇 M-ORG\n嘉 M-ORG\n泰 M-ORG\n飞 M-ORG\n机 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n魏 B-NAME\n永 M-NAME\n新 E-NAME\n， O\n男 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n武 B-ORG\n汉 M-ORG\n车 M-ORG\n站 M-ORG\n路 M-ORG\n商 M-ORG\n场 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n风 B-ORG\n险 M-ORG\n投 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n发 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n国 B-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n战 B-TITLE\n略 M-TITLE\n策 M-TITLE\n划 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n郭 B-NAME\n建 M-NAME\n堂 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n任 O\n浙 B-ORG\n富 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n电 M-ORG\n第 M-ORG\n四 M-ORG\n工 M-ORG\n程 M-ORG\n局 E-ORG\n处 B-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n电 M-ORG\n第 M-ORG\n九 M-ORG\n工 M-ORG\n程 M-ORG\n局 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n电 M-ORG\n第 M-ORG\n四 M-ORG\n工 M-ORG\n程 M-ORG\n局 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n电 B-ORG\n力 M-ORG\n部 E-ORG\n（ O\n国 B-ORG\n家 M-ORG\n电 M-ORG\n力 M-ORG\n公 M-ORG\n司 E-ORG\n） O\n机 B-TITLE\n关 M-TITLE\n党 M-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n政 B-TITLE\n工 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n中 B-ORG\n国 M-ORG\n水 M-ORG\n利 M-ORG\n水 M-ORG\n电 M-ORG\n工 M-ORG\n程 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n电 M-ORG\n建 M-ORG\n设 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n已 O\n退 O\n休 O\n， O\n受 O\n聘 O\n为 O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n电 M-ORG\n建 M-ORG\n设 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n顾 B-TITLE\n问 E-TITLE\n。 O\n\nS B-NAME\nt M-NAME\ne M-NAME\np M-NAME\nh M-NAME\ne M-NAME\nn M-NAME\nB M-NAME\ni M-NAME\nr M-NAME\nd E-NAME\n（ O\n中 O\n文 O\n名 O\n： O\n卓 B-NAME\n曦 M-NAME\n文 E-NAME\n） O\n， O\n男 O\n， O\n英 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\nM B-EDU\nB M-EDU\nA M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n任 O\nG B-ORG\nE M-ORG\n资 M-ORG\n本 E-ORG\n在 O\n英 O\n国 O\n的 O\n运 B-TITLE\n营 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n花 B-ORG\n旗 M-ORG\n亚 M-ORG\n太 M-ORG\n区 E-ORG\n运 B-TITLE\n营 M-TITLE\n和 M-TITLE\n技 M-TITLE\n术 M-TITLE\n部 M-TITLE\n门 M-TITLE\n的 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n花 B-ORG\n旗 M-ORG\n拉 M-ORG\n美 M-ORG\n地 M-ORG\n区 E-ORG\n运 B-TITLE\n营 M-TITLE\n和 M-TITLE\n技 M-TITLE\n术 M-TITLE\n部 M-TITLE\n门 M-TITLE\n的 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n； O\n\n花 B-ORG\n旗 M-ORG\n日 M-ORG\n本 E-ORG\n信 B-TITLE\n用 M-TITLE\n卡 M-TITLE\n和 M-TITLE\n消 M-TITLE\n费 M-TITLE\n金 M-TITLE\n融 M-TITLE\n业 M-TITLE\n务 M-TITLE\n的 M-TITLE\n首 M-TITLE\n席 M-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n； O\n\n花 B-ORG\n旗 M-ORG\n集 M-ORG\n团 E-ORG\n拉 B-TITLE\n美 M-TITLE\n运 M-TITLE\n营 M-TITLE\n和 M-TITLE\n技 M-TITLE\n术 M-TITLE\n部 M-TITLE\n门 M-TITLE\n的 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n， O\n花 B-ORG\n旗 M-ORG\n北 M-ORG\n亚 M-ORG\n地 M-ORG\n区 E-ORG\n首 B-TITLE\n席 M-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n、 O\n亚 B-TITLE\n太 M-TITLE\n区 M-TITLE\n消 M-TITLE\n费 M-TITLE\n金 M-TITLE\n融 M-TITLE\n业 M-TITLE\n务 M-TITLE\n和 M-TITLE\n银 M-TITLE\n行 M-TITLE\n卡 M-TITLE\n业 M-TITLE\n务 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n现 O\n任 O\n亚 B-TITLE\n太 M-TITLE\n区 M-TITLE\n首 M-TITLE\n席 M-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n， O\n是 O\n花 B-ORG\n旗 M-ORG\n高 M-ORG\n级 M-ORG\n领 M-ORG\n导 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n成 B-TITLE\n员 E-TITLE\n。 O\n\n张 B-NAME\n逢 M-NAME\n春 E-NAME\n先 O\n生 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n5 O\n年 O\n1 O\n月 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n拥 O\n有 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n管 B-PRO\n理 M-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n和 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 E-ORG\n财 B-PRO\n务 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n张 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n8 O\n7 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n国 B-ORG\n务 M-ORG\n院 M-ORG\n侨 M-ORG\n务 M-ORG\n办 M-ORG\n公 M-ORG\n室 M-ORG\n行 M-ORG\n政 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n港 B-ORG\n中 M-ORG\n投 E-ORG\n董 B-TITLE\n事 M-TITLE\n局 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n华 B-ORG\n贸 M-ORG\n有 M-ORG\n限 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n香 B-ORG\n港 M-ORG\n中 M-ORG\n旅 M-ORG\n金 M-ORG\n融 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n港 B-ORG\n中 M-ORG\n旅 M-ORG\n财 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n焦 B-ORG\n作 M-ORG\n市 M-ORG\n商 M-ORG\n业 M-ORG\n银 M-ORG\n行 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n港 B-ORG\n中 M-ORG\n旅 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n史 B-NAME\n晋 M-NAME\n京 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n出 O\n生 O\n， O\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n英 B-TITLE\n国 M-TITLE\n执 M-TITLE\n业 M-TITLE\n律 M-TITLE\n师 E-TITLE\n、 O\n香 B-TITLE\n港 M-TITLE\n执 M-TITLE\n业 M-TITLE\n律 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n司 B-ORG\n利 M-ORG\n达 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n， O\n荷 B-ORG\n兰 M-ORG\n银 M-ORG\n行 E-ORG\n董 B-TITLE\n事 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n史 S-NAME\n先 O\n生 O\n于 O\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n加 O\n入 O\n瑞 B-ORG\n德 M-ORG\n银 M-ORG\n行 E-ORG\n， O\n主 O\n要 O\n负 O\n责 O\n大 O\n中 O\n国 O\n区 O\n业 O\n务 O\n。 O\n\n马 B-NAME\n俊 M-NAME\n霞 E-NAME\n， O\n女 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n、 O\n在 B-EDU\n读 M-EDU\n硕 M-EDU\n士 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n曾 O\n任 O\n美 B-ORG\n的 M-ORG\n空 M-ORG\n调 M-ORG\n事 M-ORG\n业 M-ORG\n部 M-ORG\n海 M-ORG\n外 M-ORG\n营 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n制 B-ORG\n冷 M-ORG\n家 M-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n家 B-TITLE\n用 M-TITLE\n空 M-TITLE\n调 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n制 B-ORG\n冷 M-ORG\n家 M-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n中 B-TITLE\n央 M-TITLE\n空 M-TITLE\n调 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n等 O\n职 O\n。 O\n\n贾 B-NAME\n建 M-NAME\n军 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n新 M-ORG\n型 M-ORG\n建 M-ORG\n筑 M-ORG\n材 M-ORG\n料 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n玻 M-ORG\n纤 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n陈 B-NAME\n方 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n理 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n现 O\n任 O\n厦 B-ORG\n门 M-ORG\n象 M-ORG\n屿 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n厦 B-ORG\n门 M-ORG\n象 M-ORG\n屿 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n曹 B-NAME\n海 M-NAME\n燕 E-NAME\n女 O\n士 O\n： O\n1 O\n9 O\n7 O\n4 O\n年 O\n0 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n0 O\n2 O\n月 O\n至 O\n今 O\n任 O\n舒 B-ORG\n泰 M-ORG\n神 M-ORG\n( M-ORG\n北 M-ORG\n京 M-ORG\n) M-ORG\n生 M-ORG\n物 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n现 O\n任 O\n香 B-ORG\n塘 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n香 M-ORG\n塘 M-ORG\n担 M-ORG\n保 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n香 M-ORG\n塘 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n宿 B-ORG\n迁 M-ORG\n经 M-ORG\n济 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n香 M-ORG\n塘 M-ORG\n农 M-ORG\n村 M-ORG\n小 M-ORG\n额 M-ORG\n贷 M-ORG\n款 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n长 M-NAME\n俊 E-NAME\n， O\n历 O\n任 O\n东 B-ORG\n方 M-ORG\n锅 M-ORG\n炉 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n蛇 B-TITLE\n形 M-TITLE\n管 M-TITLE\n车 M-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n项 B-TITLE\n目 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n现 O\n任 O\n东 B-ORG\n方 M-ORG\n锅 M-ORG\n炉 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n王 B-NAME\n建 M-NAME\n华 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n未 O\n拥 O\n有 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n担 O\n任 O\n辽 B-ORG\n宁 M-ORG\n欣 M-ORG\n泰 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n今 O\n担 O\n任 O\n丹 B-ORG\n东 M-ORG\n欣 M-ORG\n泰 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n董 B-TITLE\n事 E-TITLE\n， O\n任 O\n职 O\n期 O\n限 O\n为 O\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n- O\n2 O\n0 O\n1 O\n6 O\n年 O\n7 O\n月 O\n。 O\n\n于 B-NAME\n建 M-NAME\n全 E-NAME\n先 O\n生 O\n， O\n历 O\n任 O\n吉 B-ORG\n林 M-ORG\n敖 M-ORG\n东 M-ORG\n药 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n延 B-ORG\n边 M-ORG\n石 M-ORG\n岘 M-ORG\n白 M-ORG\n麓 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n赵 B-NAME\n涛 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n出 O\n生 O\n。 O\n\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n至 O\n今 O\n工 O\n作 O\n于 O\n晨 B-ORG\n光 M-ORG\n生 M-ORG\n物 M-ORG\n科 M-ORG\n技 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n子 B-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n喻 B-NAME\n陆 E-NAME\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n博 B-TITLE\n士 M-TITLE\n后 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n三 M-ORG\n零 M-ORG\n五 M-ORG\n医 M-ORG\n院 E-ORG\n肾 B-TITLE\n脏 M-TITLE\n病 M-TITLE\n血 M-TITLE\n液 M-TITLE\n净 M-TITLE\n化 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n南 B-ORG\n方 M-ORG\n医 M-ORG\n科 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n为 O\n上 B-ORG\n海 M-ORG\n莱 M-ORG\n士 M-ORG\n血 M-ORG\n液 M-ORG\n制 M-ORG\n品 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n凤 M-NAME\n伟 E-NAME\n女 O\n士 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n罗 B-ORG\n庄 M-ORG\n镇 M-ORG\n白 M-ORG\n瓷 M-ORG\n厂 E-ORG\n质 B-TITLE\n量 M-TITLE\n检 M-TITLE\n查 M-TITLE\n员 E-TITLE\n、 O\n化 B-TITLE\n验 M-TITLE\n员 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n华 M-ORG\n盛 M-ORG\n集 M-ORG\n团 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n山 B-ORG\n东 M-ORG\n江 M-ORG\n泉 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n吴 B-NAME\n赞 E-NAME\n吴 B-NAME\n赞 M-NAME\n平 E-NAME\n先 O\n生 O\n： O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n一 O\n九 O\n九 O\n二 O\n年 O\n八 O\n月 O\n加 O\n入 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n吴 S-NAME\n先 O\n生 O\n曾 O\n先 O\n后 O\n担 O\n任 O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n高 M-ORG\n速 M-ORG\n公 M-ORG\n路 M-ORG\n建 M-ORG\n设 M-ORG\n指 M-ORG\n挥 M-ORG\n部 E-ORG\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n及 O\n科 B-TITLE\n长 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n程 M-TITLE\n技 M-TITLE\n术 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n及 O\n经 B-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n吴 O\n先 O\n生 O\n从 O\n事 O\n交 O\n通 O\n项 O\n目 O\n管 O\n理 O\n工 O\n作 O\n十 O\n多 O\n年 O\n。 O\n\n李 B-NAME\n波 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n2 O\n月 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n5 O\n年 O\n原 B-ORG\n昆 M-ORG\n明 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n地 B-PRO\n质 M-PRO\n系 M-PRO\n矿 M-PRO\n产 M-PRO\n普 M-PRO\n查 M-PRO\n与 M-PRO\n勘 M-PRO\n探 E-PRO\n本 B-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n获 O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n为 O\n昆 B-ORG\n明 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n地 B-TITLE\n球 M-TITLE\n科 M-TITLE\n学 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n主 O\n要 O\n从 O\n事 O\n地 O\n质 O\n专 O\n业 O\n的 O\n教 O\n学 O\n与 O\n科 O\n研 O\n活 O\n动 O\n， O\n曾 O\n获 O\n得 O\n原 O\n地 O\n质 O\n矿 O\n产 O\n部 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n和 O\n原 O\n中 O\n国 O\n有 O\n色 O\n金 O\n属 O\n总 O\n公 O\n司 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n。 O\n\n参 O\n与 O\n编 O\n制 O\n的 O\n公 O\n开 O\n出 O\n版 O\n物 O\n《 O\n云 O\n南 O\n省 O\n三 O\n江 O\n并 O\n流 O\n带 O\n旅 O\n游 O\n地 O\n质 O\n资 O\n源 O\n开 O\n发 O\n与 O\n环 O\n境 O\n保 O\n护 O\n策 O\n略 O\n》 O\n等 O\n。 O\n\n参 O\n与 O\n共 O\n同 O\n完 O\n成 O\n的 O\n地 O\n质 O\n找 O\n矿 O\n项 O\n目 O\n6 O\n项 O\n次 O\n， O\n社 O\n会 O\n地 O\n质 O\n服 O\n务 O\n项 O\n目 O\n1 O\n0 O\n余 O\n项 O\n。 O\n\n周 B-NAME\n新 M-NAME\n兵 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n， O\n历 O\n任 O\n北 B-ORG\n京 M-ORG\n博 M-ORG\n星 M-ORG\n投 M-ORG\n资 M-ORG\n顾 M-ORG\n问 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n银 M-TITLE\n行 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n川 M-ORG\n国 M-ORG\n际 M-ORG\n矿 M-ORG\n业 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n高 M-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n吉 B-ORG\n隆 M-ORG\n矿 M-ORG\n业 M-ORG\n证 M-ORG\n券 E-ORG\n法 B-TITLE\n律 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n赤 B-ORG\n峰 M-ORG\n黄 M-ORG\n金 M-ORG\n证 M-ORG\n券 E-ORG\n法 B-TITLE\n律 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n赤 B-ORG\n峰 M-ORG\n吉 M-ORG\n隆 M-ORG\n黄 M-ORG\n金 M-ORG\n矿 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n李 B-NAME\n新 M-NAME\n宇 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n1 O\n0 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n历 O\n任 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n工 M-ORG\n贸 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n升 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n肖 B-NAME\n寒 M-NAME\n梅 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n民 B-TITLE\n主 M-TITLE\n党 M-TITLE\n派 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n法 M-PRO\n专 M-PRO\n业 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n律 B-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n到 O\n1 O\n9 O\n9 O\n7 O\n年 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n金 M-ORG\n三 M-ORG\n元 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n律 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n到 O\n2 O\n0 O\n0 O\n2 O\n年 O\n任 O\n广 B-ORG\n东 M-ORG\n信 M-ORG\n通 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n、 O\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n到 O\n2 O\n0 O\n1 O\n2 O\n年 O\n任 O\n广 B-ORG\n东 M-ORG\n诚 M-ORG\n公 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n、 O\n合 B-TITLE\n伙 M-TITLE\n人 E-TITLE\n； O\n\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n诚 M-ORG\n公 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n律 B-TITLE\n师 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n； O\n\n西 B-ORG\n安 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n深 B-ORG\n圳 M-ORG\n仲 M-ORG\n裁 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n仲 B-TITLE\n裁 M-TITLE\n员 E-TITLE\n。 O\n\n为 O\n法 B-TITLE\n律 M-TITLE\n专 M-TITLE\n业 M-TITLE\n人 M-TITLE\n士 E-TITLE\n， O\n已 O\n取 O\n得 O\n深 O\n圳 O\n证 O\n券 O\n交 O\n易 O\n所 O\n颁 O\n发 O\n的 O\n独 O\n立 O\n董 O\n事 O\n资 O\n格 O\n证 O\n书 O\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n0 O\n6 O\n月 O\n0 O\n7 O\n日 O\n至 O\n今 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n同 M-ORG\n洲 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n彭 B-NAME\n纯 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n月 O\n生 O\n， O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n行 B-TITLE\n长 E-TITLE\n。 O\n\n彭 S-NAME\n先 O\n生 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n1 O\n月 O\n起 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n0 O\n月 O\n起 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n中 B-ORG\n央 M-ORG\n汇 M-ORG\n金 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n9 O\n月 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n行 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n6 O\n月 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 E-ORG\n行 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n历 O\n任 O\n交 B-ORG\n通 M-ORG\n银 M-ORG\n行 M-ORG\n乌 M-ORG\n鲁 M-ORG\n木 M-ORG\n齐 M-ORG\n分 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n、 O\n行 B-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n宁 M-ORG\n分 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n分 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n。 O\n\n彭 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n8 O\n6 O\n年 O\n获 O\n得 O\n人 B-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n部 E-ORG\n颁 O\n授 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n于 O\n2 O\n0 O\n0 O\n6 O\n年 O\n获 O\n得 O\n华 B-ORG\n东 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 E-ORG\n颁 O\n授 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n黄 B-NAME\n龙 M-NAME\n德 E-NAME\n教 B-TITLE\n授 E-TITLE\n， O\nB B-TITLE\n. M-TITLE\nB M-TITLE\n. M-TITLE\nS M-TITLE\n. E-TITLE\n， O\n太 B-TITLE\n平 M-TITLE\n绅 M-TITLE\n士 E-TITLE\n， O\n6 O\n6 O\n岁 O\n， O\n自 O\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n2 O\n8 O\n日 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n黄 B-NAME\n教 M-NAME\n授 E-NAME\n为 O\n香 B-TITLE\n港 M-TITLE\n执 M-TITLE\n业 M-TITLE\n资 M-TITLE\n深 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n特 B-TITLE\n许 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n及 O\n香 B-TITLE\n港 M-TITLE\n注 M-TITLE\n册 M-TITLE\n税 M-TITLE\n务 M-TITLE\n师 E-TITLE\n， O\n并 O\n为 O\n黄 B-ORG\n龙 M-ORG\n德 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n的 O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n他 O\n于 O\n会 O\n计 O\n行 O\n业 O\n拥 O\n有 O\n逾 O\n3 O\n0 O\n多 O\n年 O\n经 O\n验 O\n。 O\n\n黄 B-NAME\n教 M-NAME\n授 E-NAME\n取 O\n得 O\n商 B-PRO\n业 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n获 O\n英 B-TITLE\n女 M-TITLE\n皇 M-TITLE\n颁 M-TITLE\n授 M-TITLE\n荣 M-TITLE\n誉 M-TITLE\n奖 M-TITLE\n章 E-TITLE\n， O\n获 O\n香 O\n港 O\n特 O\n别 O\n行 O\n政 O\n区 O\n政 O\n府 O\n委 O\n任 O\n为 O\n太 O\n平 O\n绅 O\n士 O\n， O\n并 O\n获 O\n香 O\n港 O\n特 O\n别 O\n行 O\n政 O\n区 O\n政 O\n府 O\n颁 O\n授 O\n铜 O\n紫 O\n荆 O\n星 O\n章 O\n。 O\n\n黄 B-NAME\n教 M-NAME\n授 E-NAME\n亦 O\n于 O\n2 O\n0 O\n0 O\n2 O\n年 O\n起 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n出 O\n任 O\n香 B-ORG\n港 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n及 M-ORG\n金 M-ORG\n融 M-ORG\n学 M-ORG\n院 E-ORG\n兼 B-TITLE\n任 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n黄 B-NAME\n教 M-NAME\n授 E-NAME\n参 O\n与 O\n多 O\n项 O\n社 O\n区 O\n服 O\n务 O\n， O\n并 O\n于 O\n多 O\n个 O\n官 O\n方 O\n委 O\n员 O\n会 O\n及 O\n志 O\n愿 O\n机 O\n构 O\n担 O\n任 O\n职 O\n务 O\n。 O\n\n黄 B-NAME\n教 M-NAME\n授 E-NAME\n现 O\n为 O\n中 B-ORG\n国 M-ORG\n贵 M-ORG\n金 M-ORG\n属 M-ORG\n资 M-ORG\n源 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n渝 M-ORG\n置 M-ORG\n地 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n银 B-ORG\n河 M-ORG\n娱 M-ORG\n乐 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n奥 B-ORG\n思 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n瑞 B-ORG\n年 M-ORG\n国 M-ORG\n际 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n油 M-ORG\n气 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n国 B-ORG\n芸 M-ORG\n娱 M-ORG\n乐 M-ORG\n文 M-ORG\n化 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n盈 B-ORG\n利 M-ORG\n时 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n及 O\n怡 B-ORG\n益 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n的 O\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n以 O\n上 O\n公 O\n司 O\n均 O\n于 O\n联 O\n交 O\n所 O\n上 O\n市 O\n。 O\n\n吴 B-NAME\n建 M-NAME\n敏 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n会 B-PRO\n计 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n税 M-TITLE\n务 M-TITLE\n师 E-TITLE\n资 O\n格 O\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n、 O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n资 O\n格 O\n证 O\n书 O\n。 O\n\n曾 O\n在 O\n冶 B-ORG\n金 M-ORG\n工 M-ORG\n业 M-ORG\n出 M-ORG\n版 M-ORG\n社 E-ORG\n、 O\n审 B-ORG\n计 M-ORG\n署 M-ORG\n驻 M-ORG\n冶 M-ORG\n金 M-ORG\n部 M-ORG\n审 M-ORG\n计 M-ORG\n局 E-ORG\n工 O\n作 O\n， O\n曾 O\n任 O\n兴 B-ORG\n业 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n现 O\n任 O\n北 B-ORG\n京 M-ORG\n天 M-ORG\n健 M-ORG\n兴 M-ORG\n业 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n监 M-ORG\n会 E-ORG\n并 B-TITLE\n购 M-TITLE\n重 M-TITLE\n组 M-TITLE\n审 M-TITLE\n核 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n佘 B-NAME\n志 M-NAME\n莉 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n1 O\n2 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n华 B-ORG\n北 M-ORG\n制 M-ORG\n药 M-ORG\n厂 M-ORG\n财 M-ORG\n务 M-ORG\n处 E-ORG\n会 B-TITLE\n计 E-TITLE\n， O\n国 B-ORG\n医 M-ORG\n药 M-ORG\n工 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n农 M-ORG\n化 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n任 O\n中 B-ORG\n国 M-ORG\n化 M-ORG\n工 M-ORG\n农 M-ORG\n化 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n任 B-NAME\n随 M-NAME\n安 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n专 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n8 O\n2 O\n年 O\n7 O\n月 O\n在 O\n桂 B-ORG\n林 M-ORG\n航 M-ORG\n天 M-ORG\n工 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n校 E-ORG\n学 O\n习 O\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n9 O\n月 O\n任 O\n航 B-ORG\n天 M-ORG\n动 M-ORG\n力 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n航 B-ORG\n天 M-ORG\n动 M-ORG\n力 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n谭 B-NAME\n焕 M-NAME\n珠 E-NAME\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n3 O\n月 O\n生 O\n， O\n法 B-PRO\n律 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n具 O\n有 O\n律 O\n师 O\n、 O\n证 O\n券 O\n从 O\n业 O\n人 O\n员 O\n、 O\n独 O\n立 O\n董 O\n事 O\n任 O\n职 O\n资 O\n格 O\n。 O\n\n曾 O\n在 O\n北 B-ORG\n京 M-ORG\n市 M-ORG\n工 M-ORG\n商 M-ORG\n行 M-ORG\n政 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n监 M-ORG\n会 M-ORG\n发 M-ORG\n行 M-ORG\n监 M-ORG\n管 M-ORG\n处 E-ORG\n、 O\n山 B-ORG\n东 M-ORG\n证 M-ORG\n券 E-ORG\n（ O\n后 O\n更 O\n名 O\n天 B-ORG\n同 M-ORG\n证 M-ORG\n券 E-ORG\n） O\n投 B-ORG\n资 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n部 E-ORG\n、 O\n北 B-ORG\n京 M-ORG\n国 M-ORG\n方 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n、 O\n东 B-ORG\n吴 M-ORG\n证 M-ORG\n券 M-ORG\n投 M-ORG\n资 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n部 E-ORG\n、 O\n云 B-ORG\n南 M-ORG\n文 M-ORG\n山 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n天 B-ORG\n津 M-ORG\n诚 M-ORG\n远 M-ORG\n投 M-ORG\n资 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n北 M-ORG\n百 M-ORG\n科 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n天 B-ORG\n津 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n科 M-ORG\n英 M-ORG\n华 M-ORG\n高 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n红 M-ORG\n日 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n广 M-ORG\n安 M-ORG\n爱 M-ORG\n众 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n施 M-ORG\n可 M-ORG\n丰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n云 B-ORG\n南 M-ORG\n绿 M-ORG\n大 M-ORG\n地 M-ORG\n生 M-ORG\n物 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n许 B-ORG\n昌 M-ORG\n传 M-ORG\n动 M-ORG\n轴 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n濮 B-ORG\n阳 M-ORG\n蔚 M-ORG\n林 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n中 E-NAME\n先 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n甘 B-ORG\n肃 M-ORG\n省 M-ORG\n金 M-ORG\n塔 M-ORG\n县 M-ORG\n供 M-ORG\n销 M-ORG\n联 E-ORG\n社 B-TITLE\n财 M-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n金 B-ORG\n塔 M-ORG\n县 M-ORG\n棉 M-ORG\n花 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n甘 B-ORG\n肃 M-ORG\n省 M-ORG\n敦 M-ORG\n煌 M-ORG\n种 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n金 M-ORG\n塔 M-ORG\n县 M-ORG\n棉 M-ORG\n花 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n。 O\n\n李 B-NAME\n滔 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n程 M-TITLE\n序 M-TITLE\n员 E-TITLE\n已 O\n获 O\n得 O\n董 O\n秘 O\n资 O\n格 O\n证 O\n书 O\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n9 O\n月 O\n至 O\n今 O\n工 O\n作 O\n于 O\n恒 B-ORG\n立 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 O\n券 O\n部 O\n门 O\n， O\n曾 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n处 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n现 O\n任 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n徐 B-NAME\n开 M-NAME\n先 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n4 O\n4 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n沈 B-ORG\n阳 M-ORG\n仪 M-ORG\n器 M-ORG\n仪 M-ORG\n表 M-ORG\n工 M-ORG\n艺 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n所 B-TITLE\n长 E-TITLE\n， O\n沈 B-ORG\n阳 M-ORG\n仪 M-ORG\n表 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n等 O\n职 O\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n电 M-ORG\n器 M-ORG\n科 M-ORG\n学 M-ORG\n研 M-ORG\n究 M-ORG\n院 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n周 B-NAME\n益 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n盛 M-ORG\n华 M-ORG\n科 M-ORG\n源 M-ORG\n科 M-ORG\n技 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n广 B-ORG\n东 M-ORG\n金 M-ORG\n安 M-ORG\n沙 M-ORG\n汽 M-ORG\n车 M-ORG\n科 M-ORG\n技 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n明 M-ORG\n伦 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n付 B-NAME\n瑞 M-NAME\n军 E-NAME\n女 O\n士 O\n： O\n汉 B-RACE\n族 E-RACE\n， O\n助 B-TITLE\n理 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n毕 O\n业 O\n于 O\n西 B-ORG\n安 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n西 B-ORG\n安 M-ORG\n交 M-ORG\n大 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\nM B-EDU\nB M-EDU\nA M-EDU\n进 M-EDU\n修 M-EDU\n班 E-EDU\n毕 O\n业 O\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n1 O\n2 O\n月 O\n在 O\n西 B-ORG\n电 M-ORG\n公 M-ORG\n司 M-ORG\n微 M-ORG\n电 M-ORG\n机 M-ORG\n厂 E-ORG\n任 O\n供 B-TITLE\n应 M-TITLE\n科 M-TITLE\n统 M-TITLE\n计 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n3 O\n月 O\n至 O\n1 O\n9 O\n9 O\n6 O\n年 O\n3 O\n月 O\n在 O\n西 B-ORG\n安 M-ORG\n东 M-ORG\n森 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n销 B-TITLE\n售 M-TITLE\n部 M-TITLE\n副 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n4 O\n月 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n3 O\n月 O\n担 O\n任 O\n西 B-ORG\n安 M-ORG\n海 M-ORG\n星 M-ORG\n利 M-ORG\n达 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n3 O\n月 O\n至 O\n1 O\n9 O\n9 O\n9 O\n年 O\n1 O\n2 O\n月 O\n担 O\n任 O\n西 B-ORG\n安 M-ORG\n海 M-ORG\n星 M-ORG\n现 M-ORG\n代 M-ORG\n饮 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n元 O\n月 O\n至 O\n今 O\n担 O\n任 O\n海 B-ORG\n星 M-ORG\n科 M-ORG\n技 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n王 B-NAME\n之 M-NAME\n钧 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n7 O\n3 O\n年 O\n， O\n高 B-PRO\n级 M-PRO\n工 M-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n曾 O\n任 O\n天 B-ORG\n同 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 M-ORG\n北 M-ORG\n京 M-ORG\n投 M-ORG\n资 M-ORG\n银 M-ORG\n行 M-ORG\n部 E-ORG\n副 B-TITLE\n总 E-TITLE\n， O\n同 B-ORG\n人 M-ORG\n华 M-ORG\n塑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n同 B-ORG\n人 M-ORG\n华 M-ORG\n塑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n烘 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n会 B-PRO\n计 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n2 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n监 M-ORG\n会 M-ORG\n广 M-ORG\n东 M-ORG\n监 M-ORG\n管 M-ORG\n局 E-ORG\n科 B-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n任 O\n广 B-ORG\n东 M-ORG\n信 M-ORG\n宁 M-ORG\n工 M-ORG\n艺 M-ORG\n玩 M-ORG\n具 M-ORG\n厂 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n2 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n金 M-ORG\n融 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n入 O\n职 O\n公 B-ORG\n司 E-ORG\n。 O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n众 B-ORG\n业 M-ORG\n达 M-ORG\n电 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n郝 B-NAME\n彭 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 M-ORG\n经 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n1 O\n月 O\n先 O\n后 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n综 B-TITLE\n合 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n生 B-TITLE\n产 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n1 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n1 O\n0 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n郝 B-NAME\n彭 E-NAME\n先 O\n生 O\n无 O\n在 O\n股 O\n东 O\n单 O\n位 O\n和 O\n其 O\n他 O\n单 O\n位 O\n任 O\n职 O\n或 O\n兼 O\n职 O\n的 O\n情 O\n况 O\n。 O\n\n杨 B-NAME\n奇 M-NAME\n逊 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n3 O\n7 O\n年 O\n出 O\n生 O\n， O\n澳 B-ORG\n大 M-ORG\n利 M-ORG\n亚 M-ORG\n新 M-ORG\n南 M-ORG\n威 M-ORG\n尔 M-ORG\n士 M-ORG\n大 M-ORG\n学 E-ORG\n博 B-EDU\n士 E-EDU\n， O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n程 M-ORG\n院 E-ORG\n首 O\n届 O\n院 B-EDU\n士 E-EDU\n， O\n我 B-TITLE\n国 M-TITLE\n第 M-TITLE\n一 M-TITLE\n台 M-TITLE\n微 M-TITLE\n机 M-TITLE\n保 M-TITLE\n护 M-TITLE\n研 M-TITLE\n制 M-TITLE\n者 E-TITLE\n， O\n现 O\n任 O\n华 B-ORG\n北 M-ORG\n电 M-ORG\n力 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n国 B-ORG\n电 M-ORG\n南 M-ORG\n京 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n玉 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n7 O\n3 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n湖 B-ORG\n北 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 E-ORG\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n， O\n曾 O\n任 O\n职 O\n于 O\n中 B-ORG\n外 M-ORG\n运 M-ORG\n武 M-ORG\n汉 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n起 O\n进 O\n入 O\n武 B-ORG\n汉 M-ORG\n高 M-ORG\n德 M-ORG\n电 M-ORG\n气 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n起 O\n任 O\n公 B-ORG\n司 M-ORG\n（ M-ORG\n前 M-ORG\n身 M-ORG\n红 M-ORG\n外 M-ORG\n有 M-ORG\n限 M-ORG\n） E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n为 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n叶 B-NAME\n志 M-NAME\n超 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n4 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n4 O\n月 O\n起 O\n任 O\n广 B-ORG\n东 M-ORG\n肇 M-ORG\n庆 M-ORG\n星 M-ORG\n湖 M-ORG\n生 M-ORG\n物 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n宛 M-NAME\n山 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n出 O\n生 O\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n至 O\n1 O\n9 O\n8 O\n8 O\n年 O\n任 O\n东 B-ORG\n北 M-ORG\n工 M-ORG\n学 M-ORG\n院 M-ORG\n机 M-ORG\n械 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n教 B-TITLE\n授 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n起 O\n历 O\n任 O\n东 B-ORG\n北 M-ORG\n大 M-ORG\n学 E-ORG\n校 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n秘 B-TITLE\n书 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n东 B-ORG\n北 M-ORG\n大 M-ORG\n学 E-ORG\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n。 O\n\n王 B-NAME\n黄 M-NAME\n来 E-NAME\n先 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n（ O\nM B-EDU\nB M-EDU\nA E-EDU\n） O\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n国 B-ORG\n营 M-ORG\n九 M-ORG\n四 M-ORG\n二 M-ORG\n厂 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n市 M-ORG\n轻 M-ORG\n工 M-ORG\n总 M-ORG\n会 E-ORG\n会 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n起 O\n任 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n市 M-ORG\n山 M-ORG\n鹰 M-ORG\n造 M-ORG\n纸 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n山 M-ORG\n鹰 M-ORG\n纸 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n现 O\n任 O\n马 B-ORG\n鞍 M-ORG\n山 M-ORG\n山 M-ORG\n鹰 M-ORG\n纸 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n安 B-ORG\n徽 M-ORG\n山 M-ORG\n鹰 M-ORG\n纸 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n李 B-NAME\n耀 M-NAME\n基 E-NAME\n， O\n男 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n2 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n月 O\n任 O\n磷 B-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n企 B-TITLE\n管 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n任 O\n磷 B-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n1 O\n月 O\n任 O\n磷 B-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n1 O\n月 O\n于 O\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n任 O\n磷 B-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n磷 B-ORG\n化 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n申 B-NAME\n林 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n副 B-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n曾 O\n任 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n张 B-NAME\n佐 M-NAME\n刚 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n曾 O\n任 O\n辽 B-ORG\n宁 M-ORG\n工 M-ORG\n程 M-ORG\n技 M-ORG\n术 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n辽 B-ORG\n宁 M-ORG\n工 M-ORG\n程 M-ORG\n技 M-ORG\n术 M-ORG\n大 M-ORG\n学 E-ORG\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n。 O\n\n骆 B-NAME\n百 M-NAME\n能 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n5 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n营 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n3 O\n月 O\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 M-ORG\n黄 M-ORG\n冈 M-ORG\n市 M-ORG\n城 M-ORG\n区 M-ORG\n支 M-ORG\n行 E-ORG\n会 B-TITLE\n计 M-TITLE\n员 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n员 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n支 B-TITLE\n行 M-TITLE\n副 M-TITLE\n行 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 M-ORG\n黄 M-ORG\n冈 M-ORG\n市 M-ORG\n分 M-ORG\n行 E-ORG\n个 B-TITLE\n人 M-TITLE\n金 M-TITLE\n融 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n至 O\n今 O\n， O\n任 O\n潜 B-ORG\n江 M-ORG\n永 M-ORG\n安 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n翟 B-NAME\n凤 M-NAME\n银 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n编 B-TITLE\n审 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n历 O\n任 O\n济 B-ORG\n南 M-ORG\n军 M-ORG\n区 E-ORG\n排 B-TITLE\n长 E-TITLE\n、 O\n干 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n军 M-ORG\n区 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n正 B-TITLE\n团 M-TITLE\n职 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n秘 B-TITLE\n书 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n省 M-ORG\n委 M-ORG\n组 M-ORG\n织 M-ORG\n部 E-ORG\n副 B-TITLE\n处 M-TITLE\n级 M-TITLE\n巡 M-TITLE\n视 M-TITLE\n员 E-TITLE\n、 O\n机 B-TITLE\n关 M-TITLE\n党 M-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n人 B-TITLE\n事 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n调 B-TITLE\n研 M-TITLE\n员 E-TITLE\n、 O\n电 B-TITLE\n教 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n编 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n等 O\n职 O\n。 O\n\n蒋 B-NAME\n涵 M-NAME\n庭 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n3 O\n9 O\n年 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n农 M-ORG\n机 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n机 M-ORG\n械 M-ORG\n工 M-ORG\n业 M-ORG\n厅 E-ORG\n科 B-TITLE\n技 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n第 M-ORG\n二 M-ORG\n机 M-ORG\n床 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n机 M-ORG\n械 M-ORG\n工 M-ORG\n业 M-ORG\n厅 E-ORG\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n科 B-TITLE\n技 M-TITLE\n处 M-TITLE\n长 E-TITLE\n职 O\n务 O\n， O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n机 M-ORG\n电 M-ORG\n产 M-ORG\n品 M-ORG\n出 M-ORG\n口 M-ORG\n办 M-ORG\n公 M-ORG\n室 E-ORG\n专 B-TITLE\n职 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n计 M-ORG\n划 M-ORG\n经 M-ORG\n济 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n机 B-TITLE\n电 M-TITLE\n产 M-TITLE\n品 M-TITLE\n进 M-TITLE\n出 M-TITLE\n口 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n（ O\n副 O\n厅 O\n级 O\n） O\n， O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n9 O\n月 O\n在 O\n江 B-ORG\n苏 M-ORG\n省 M-ORG\n发 M-ORG\n展 M-ORG\n与 M-ORG\n改 M-ORG\n革 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n退 O\n休 O\n。 O\n\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n通 M-ORG\n润 M-ORG\n装 M-ORG\n备 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n贻 M-NAME\n贵 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n先 O\n后 O\n在 O\n龙 B-ORG\n坪 M-ORG\n供 M-ORG\n销 M-ORG\n社 E-ORG\n和 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n广 M-ORG\n济 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n工 O\n作 O\n， O\n曾 O\n任 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n广 M-ORG\n济 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n湖 B-ORG\n北 M-ORG\n广 M-ORG\n济 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n宏 M-NAME\n军 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n9 O\n月 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n9 O\n月 O\n在 O\n陕 B-ORG\n西 M-ORG\n咸 M-ORG\n阳 M-ORG\n西 M-ORG\n藏 M-ORG\n民 M-ORG\n族 M-ORG\n学 M-ORG\n院 E-ORG\n读 O\n书 O\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n9 O\n月 O\n至 O\n今 O\n在 O\n西 B-ORG\n藏 M-ORG\n矿 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n公 M-ORG\n司 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n现 O\n任 O\n西 B-ORG\n藏 M-ORG\n矿 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n薛 B-NAME\n玫 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n特 M-TITLE\n许 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n税 M-TITLE\n务 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n（ M-TITLE\n投 M-TITLE\n资 M-TITLE\n） M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n7 O\n月 O\n， O\n历 O\n任 O\n西 B-ORG\n安 M-ORG\n市 M-ORG\n海 M-ORG\n洋 M-ORG\n针 M-ORG\n织 M-ORG\n厂 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n中 B-ORG\n天 M-ORG\n银 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n陕 M-ORG\n西 M-ORG\n分 M-ORG\n所 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n部 B-TITLE\n门 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n等 O\n职 O\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n西 B-ORG\n安 M-ORG\n达 M-ORG\n刚 M-ORG\n路 M-ORG\n面 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n西 B-ORG\n安 M-ORG\n达 M-ORG\n刚 M-ORG\n路 M-ORG\n面 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n二 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n2 O\n月 O\n至 O\n今 O\n任 O\n西 B-ORG\n安 M-ORG\n达 M-ORG\n刚 M-ORG\n路 M-ORG\n面 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n平 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n6 O\n月 O\n出 O\n生 O\n； O\n\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n北 B-ORG\n京 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n； O\n\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n； O\n\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n7 O\n月 O\n~ O\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n1 O\n月 O\n， O\n在 O\n天 B-ORG\n津 M-ORG\n新 M-ORG\n河 M-ORG\n船 M-ORG\n厂 E-ORG\n任 O\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n1 O\n1 O\n月 O\n~ O\n1 O\n9 O\n9 O\n7 O\n年 O\n6 O\n月 O\n在 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n工 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n工 M-TITLE\n资 M-TITLE\n处 M-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n~ O\n1 O\n9 O\n9 O\n9 O\n年 O\n6 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n工 M-ORG\n业 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n工 M-TITLE\n资 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n7 O\n月 O\n~ O\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n2 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n劳 M-TITLE\n动 M-TITLE\n工 M-TITLE\n资 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n起 O\n任 O\n沪 B-ORG\n东 M-ORG\n重 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n王 B-NAME\n斌 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n6 O\n年 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n获 O\n上 B-ORG\n海 M-ORG\n海 M-ORG\n事 M-ORG\n大 M-ORG\n学 E-ORG\n财 B-PRO\n务 M-PRO\n与 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n获 O\n澳 B-ORG\n大 M-ORG\n利 M-ORG\n亚 M-ORG\n梅 M-ORG\n铎 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n最 O\n近 O\n5 O\n年 O\n以 O\n来 O\n， O\n曾 O\n任 O\n华 B-ORG\n孚 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n华 B-ORG\n孚 M-ORG\n色 M-ORG\n纺 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n( O\nS O\nZ O\n0 O\n0 O\n2 O\n0 O\n4 O\n2 O\n) O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n茂 B-ORG\n业 M-ORG\n国 M-ORG\n际 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n( O\nH O\nK O\n) O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n首 B-TITLE\n席 M-TITLE\n财 M-TITLE\n务 M-TITLE\n官 E-TITLE\n， O\n成 B-ORG\n商 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n茂 B-ORG\n业 M-ORG\n物 M-ORG\n流 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\nS O\nZ O\n0 O\n0 O\n0 O\n8 O\n8 O\n9 O\n） O\n董 B-TITLE\n事 E-TITLE\n， O\n沈 B-ORG\n阳 M-ORG\n商 M-ORG\n业 M-ORG\n城 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\nS O\nH O\n6 O\n0 O\n0 O\n3 O\n0 O\n6 O\n） O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n魏 B-NAME\n华 M-NAME\n德 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n出 O\n生 O\n， O\n拥 O\n有 O\n美 B-ORG\n国 M-ORG\n宾 M-ORG\n西 M-ORG\n法 M-ORG\n尼 M-ORG\n亚 M-ORG\n州 M-ORG\n立 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n程 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n和 O\n美 B-ORG\n国 M-ORG\n匹 M-ORG\n兹 M-ORG\n堡 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n近 O\n五 O\n年 O\n主 O\n要 O\n就 O\n任 O\n福 B-ORG\n特 M-ORG\n汽 M-ORG\n车 M-ORG\n（ M-ORG\n中 M-ORG\n国 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n自 O\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n周 B-NAME\n逸 M-NAME\n群 E-NAME\n先 O\n生 O\n， O\n董 B-TITLE\n事 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n在 O\n郑 B-ORG\n州 M-ORG\n畜 M-ORG\n牧 M-ORG\n工 M-ORG\n程 M-ORG\n高 M-ORG\n等 M-ORG\n专 M-ORG\n科 M-ORG\n学 M-ORG\n校 E-ORG\n校 O\n办 O\n产 O\n业 O\n处 O\n工 O\n作 O\n， O\n现 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n康 M-ORG\n畜 M-ORG\n牧 M-ORG\n生 M-ORG\n物 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n全 O\n资 O\n子 O\n公 O\n司 O\n河 B-ORG\n南 M-ORG\n宏 M-ORG\n展 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n覃 B-NAME\n丽 M-NAME\n芳 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n5 O\n月 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n统 B-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n3 O\n月 O\n到 O\n广 B-ORG\n西 M-ORG\n河 M-ORG\n池 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 O\n券 O\n部 O\n工 O\n作 O\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n担 O\n任 O\n广 B-ORG\n西 M-ORG\n河 M-ORG\n池 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n任 O\n广 B-ORG\n西 M-ORG\n河 M-ORG\n池 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n西 M-ORG\n河 M-ORG\n池 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n西 M-ORG\n河 M-ORG\n池 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n刘 B-NAME\n意 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\nM B-EDU\nB M-EDU\nA M-EDU\n硕 M-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n加 O\n入 O\n韶 B-ORG\n钢 E-ORG\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n7 O\n月 O\n任 O\n广 B-ORG\n东 M-ORG\n韶 M-ORG\n钢 M-ORG\n松 M-ORG\n山 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n6 O\n月 O\n任 O\n广 B-ORG\n东 M-ORG\n韶 M-ORG\n钢 M-ORG\n松 M-ORG\n山 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n东 M-ORG\n韶 M-ORG\n钢 M-ORG\n松 M-ORG\n山 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n至 O\n今 O\n兼 O\n任 O\n韶 B-ORG\n关 M-ORG\n钢 M-ORG\n铁 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n祝 B-NAME\n鹏 E-NAME\n女 O\n士 O\n： O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n4 M-ORG\n7 M-ORG\n1 M-ORG\n厂 E-ORG\n总 B-TITLE\n部 M-TITLE\n财 M-TITLE\n务 M-TITLE\n处 M-TITLE\n主 M-TITLE\n办 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n船 M-ORG\n舶 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n武 M-ORG\n汉 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 M-TITLE\n核 M-TITLE\n算 M-TITLE\n基 M-TITLE\n础 M-TITLE\n达 M-TITLE\n标 M-TITLE\n考 M-TITLE\n核 M-TITLE\n评 M-TITLE\n委 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n公 M-ORG\n诚 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n审 B-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n奥 M-ORG\n维 M-ORG\n迅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n历 O\n任 O\n迪 B-ORG\n威 M-ORG\n有 M-ORG\n限 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n经 O\n公 B-ORG\n司 E-ORG\n2 O\n0 O\n1 O\n4 O\n年 O\n5 O\n月 O\n3 O\n0 O\n日 O\n召 O\n开 O\n的 O\n第 O\n三 O\n届 O\n董 O\n事 O\n会 O\n第 O\n二 O\n次 O\n会 O\n议 O\n聘 O\n为 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n任 O\n期 O\n3 O\n年 O\n。 O\n\n彭 B-NAME\n珏 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n管 B-PRO\n理 M-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n曾 O\n任 O\n成 B-ORG\n都 M-ORG\n市 M-ORG\n煤 M-ORG\n炭 M-ORG\n工 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n供 B-TITLE\n销 M-TITLE\n处 M-TITLE\n主 M-TITLE\n办 M-TITLE\n会 M-TITLE\n计 E-TITLE\n， O\n重 B-ORG\n庆 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 M-ORG\n历 M-ORG\n史 M-ORG\n系 E-ORG\n助 B-TITLE\n教 E-TITLE\n， O\n西 B-ORG\n南 M-ORG\n农 M-ORG\n业 M-ORG\n大 M-ORG\n学 E-ORG\n( O\n西 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n) O\n讲 B-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n西 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 M-ORG\n系 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n获 O\n得 O\n者 O\n。 O\n\n李 B-NAME\n跃 M-NAME\n军 E-NAME\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n先 O\n后 O\n在 O\n乌 B-ORG\n溪 M-ORG\n江 M-ORG\n水 M-ORG\n电 M-ORG\n厂 E-ORG\n生 O\n产 O\n技 O\n术 O\n办 O\n公 O\n室 O\n、 O\n金 B-ORG\n华 M-ORG\n市 M-ORG\n水 M-ORG\n电 M-ORG\n局 E-ORG\n工 O\n程 O\n设 O\n计 O\n与 O\n管 O\n理 O\n部 O\n门 O\n工 O\n作 O\n， O\n曾 O\n担 O\n任 O\n金 B-ORG\n华 M-ORG\n三 M-ORG\n联 M-ORG\n水 M-ORG\n泥 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n金 B-ORG\n华 M-ORG\n科 M-ORG\n技 M-ORG\n园 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n金 B-ORG\n正 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n兰 B-ORG\n溪 M-ORG\n工 M-ORG\n业 M-ORG\n园 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n等 O\n职 O\n务 O\n， O\n现 O\n任 O\n通 B-ORG\n和 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n黄 B-NAME\n卫 M-NAME\n东 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n曾 O\n先 O\n后 O\n任 O\n自 B-ORG\n治 M-ORG\n区 M-ORG\n物 M-ORG\n资 M-ORG\n局 M-ORG\n南 M-ORG\n疆 M-ORG\n综 M-ORG\n合 M-ORG\n物 M-ORG\n资 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n计 M-TITLE\n划 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n经 B-TITLE\n营 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n机 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n新 B-ORG\n产 M-ORG\n品 M-ORG\n经 M-ORG\n营 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n机 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n机 M-ORG\n电 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n友 M-ORG\n好 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n新 B-ORG\n疆 M-ORG\n友 M-ORG\n好 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n潘 B-NAME\n峰 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n材 B-PRO\n料 M-PRO\n专 M-PRO\n业 E-PRO\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n7 O\n月 O\n至 O\n今 O\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n学 M-ORG\n与 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n历 O\n任 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n学 M-ORG\n与 M-ORG\n工 M-ORG\n程 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n先 B-ORG\n进 M-ORG\n材 M-ORG\n料 M-ORG\n教 M-ORG\n育 M-ORG\n部 M-ORG\n重 M-ORG\n点 M-ORG\n实 M-ORG\n验 M-ORG\n室 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n航 M-ORG\n空 M-ORG\n材 M-ORG\n料 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n北 B-ORG\n京 M-ORG\n航 M-ORG\n空 M-ORG\n永 M-ORG\n磁 M-ORG\n材 M-ORG\n料 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n入 O\n选 O\n教 B-TITLE\n育 M-TITLE\n部 M-TITLE\n跨 M-TITLE\n世 M-TITLE\n纪 M-TITLE\n人 M-TITLE\n才 M-TITLE\n计 M-TITLE\n划 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n获 O\n得 O\n国 O\n家 O\n杰 O\n出 O\n青 O\n年 O\n基 O\n金 O\n支 O\n持 O\n， O\n在 O\n金 O\n属 O\n功 O\n能 O\n材 O\n料 O\n等 O\n方 O\n面 O\n从 O\n事 O\n相 O\n关 O\n研 O\n究 O\n工 O\n作 O\n。 O\n\n发 O\n表 O\n论 O\n文 O\n百 O\n余 O\n篇 O\n， O\n4 O\n项 O\n已 O\n授 O\n权 O\n国 O\n家 O\n发 O\n明 O\n专 O\n利 O\n。 O\n\n获 O\n得 O\n包 O\n括 O\n国 O\n家 O\n技 O\n术 O\n发 O\n明 O\n二 O\n等 O\n奖 O\n、 O\n国 O\n家 O\n自 O\n然 O\n科 O\n学 O\n三 O\n等 O\n奖 O\n等 O\n7 O\n项 O\n科 O\n技 O\n成 O\n果 O\n奖 O\n励 O\n。 O\n\n李 B-NAME\n恩 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n辽 B-ORG\n宁 M-ORG\n省 M-ORG\n财 M-ORG\n政 M-ORG\n学 M-ORG\n校 E-ORG\n会 B-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n毕 O\n业 O\n， O\n历 O\n任 O\n锦 B-ORG\n州 M-ORG\n女 M-ORG\n儿 M-ORG\n河 M-ORG\n造 M-ORG\n纸 M-ORG\n厂 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n轻 B-ORG\n工 M-ORG\n供 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n干 B-TITLE\n部 E-TITLE\n、 O\n锦 B-ORG\n州 M-ORG\n宝 M-ORG\n地 M-ORG\n建 M-ORG\n设 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n现 O\n任 O\n宝 B-ORG\n地 M-ORG\n建 M-ORG\n设 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n宝 B-ORG\n地 M-ORG\n纸 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n锦 B-ORG\n州 M-ORG\n鑫 M-ORG\n天 M-ORG\n纸 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n金 B-ORG\n城 M-ORG\n股 M-ORG\n份 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n沈 B-NAME\n国 M-NAME\n泉 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n、 O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n阴 M-ORG\n虹 M-ORG\n桥 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n主 B-TITLE\n任 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n江 B-ORG\n南 M-ORG\n模 M-ORG\n塑 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n0 O\n月 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n孔 B-NAME\n祥 M-NAME\n征 E-NAME\n： O\n男 O\n， O\n历 O\n任 O\n河 B-ORG\n南 M-ORG\n豫 M-ORG\n光 M-ORG\n金 M-ORG\n铅 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n河 B-ORG\n南 M-ORG\n豫 M-ORG\n光 M-ORG\n金 M-ORG\n铅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n科 B-TITLE\n技 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n河 B-ORG\n南 M-ORG\n豫 M-ORG\n光 M-ORG\n金 M-ORG\n铅 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n河 B-ORG\n南 M-ORG\n豫 M-ORG\n光 M-ORG\n金 M-ORG\n铅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n跃 M-NAME\n昌 E-NAME\n， O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n5 O\n8 O\n年 O\n1 O\n月 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n乐 M-ORG\n凯 M-ORG\n胶 M-ORG\n片 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n进 B-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n外 B-TITLE\n事 M-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n乐 B-ORG\n凯 M-ORG\n胶 M-ORG\n片 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n乐 B-ORG\n凯 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n胡 B-NAME\n北 M-NAME\n忠 E-NAME\n： O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n1 O\n月 O\n7 O\n日 O\n， O\n中 B-TITLE\n国 M-TITLE\n致 M-TITLE\n公 M-TITLE\n党 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n贵 B-ORG\n州 M-ORG\n大 M-ORG\n学 E-ORG\n管 B-TITLE\n理 M-TITLE\n学 M-TITLE\n硕 M-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n贵 B-ORG\n州 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n硕 M-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\nM B-TITLE\nB M-TITLE\nA M-TITLE\n硕 M-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n贵 B-ORG\n州 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n专 B-TITLE\n职 M-TITLE\n教 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n天 M-ORG\n城 M-ORG\n投 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n赵 B-NAME\n洁 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n华 B-ORG\n北 M-ORG\n电 M-ORG\n力 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n设 B-TITLE\n总 E-TITLE\n、 O\n副 B-TITLE\n总 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n电 B-ORG\n力 M-ORG\n规 M-ORG\n划 M-ORG\n设 M-ORG\n计 M-ORG\n总 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n国 B-ORG\n电 M-ORG\n华 M-ORG\n北 M-ORG\n电 M-ORG\n力 M-ORG\n设 M-ORG\n计 M-ORG\n院 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n罗 B-NAME\n祝 M-NAME\n平 E-NAME\n先 O\n生 O\n， O\n报 O\n告 O\n期 O\n内 O\n任 O\n中 B-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n罗 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n9 O\n8 O\n年 O\n加 O\n入 O\n东 B-ORG\n航 E-ORG\n， O\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n航 M-ORG\n空 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n、 O\n股 B-TITLE\n份 M-TITLE\n制 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n一 O\n九 O\n九 O\n六 O\n年 O\n十 O\n二 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n十 O\n五 O\n年 O\n、 O\n一 O\n九 O\n九 O\n七 O\n年 O\n至 O\n二 O\n〇 O\n〇 O\n八 O\n年 O\n兼 O\n任 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n6 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n罗 S-NAME\n先 O\n生 O\n自 O\n一 O\n九 O\n九 O\n三 O\n年 O\n起 O\n一 O\n直 O\n负 O\n责 O\n企 O\n业 O\n境 O\n内 O\n外 O\n上 O\n市 O\n和 O\n资 O\n木 O\n运 O\n营 O\n的 O\n相 O\n关 O\n工 O\n作 O\n， O\n在 O\n企 O\n业 O\n改 O\n制 O\n、 O\n股 O\n票 O\n发 O\n行 O\n、 O\n公 O\n司 O\n治 O\n理 O\n、 O\n购 O\n并 O\n重 O\n组 O\n等 O\n提 O\n升 O\n企 O\n业 O\n价 O\n值 O\n的 O\n渚 O\n多 O\n方 O\n面 O\n有 O\n长 O\n时 O\n间 O\n的 O\n实 O\n践 O\n和 O\n积 O\n累 O\n。 O\n\n罗 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n安 B-ORG\n徽 M-ORG\n大 M-ORG\n学 E-ORG\n哲 B-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n和 O\n法 B-PRO\n学 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n并 O\n拥 O\n有 O\n华 B-ORG\n东 M-ORG\n师 M-ORG\n范 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n学 M-PRO\n世 M-PRO\n界 M-PRO\n经 M-PRO\n济 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n曾 O\n参 O\n加 O\n国 B-ORG\n家 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n与 O\n摩 B-ORG\n根 M-ORG\n士 M-ORG\n丹 M-ORG\n利 M-ORG\n公 M-ORG\n司 E-ORG\n在 O\n美 O\n国 O\n举 O\n办 O\n的 O\n国 O\n家 O\n大 O\n型 O\n企 O\n业 O\n高 O\n级 O\n管 O\n理 O\n人 O\n员 O\n培 O\n训 O\n班 O\n。 O\n\n许 B-NAME\n秋 M-NAME\n华 E-NAME\n， O\n女 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n0 O\n月 O\n1 O\n2 O\n日 O\n出 O\n生 O\n， O\n历 O\n任 O\n汕 B-ORG\n头 M-ORG\n经 M-ORG\n济 M-ORG\n特 M-ORG\n区 M-ORG\n顺 M-ORG\n兴 M-ORG\n发 M-ORG\n展 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n皮 M-ORG\n宝 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n现 O\n任 O\n广 B-ORG\n东 M-ORG\n太 M-ORG\n安 M-ORG\n堂 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n荣 M-NAME\n秋 E-NAME\n， O\n男 O\n， O\n6 O\n3 O\n岁 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n历 O\n任 O\n四 B-ORG\n川 M-ORG\n自 M-ORG\n贡 M-ORG\n东 M-ORG\n方 M-ORG\n锅 M-ORG\n炉 M-ORG\n厂 E-ORG\n员 B-TITLE\n工 E-TITLE\n， O\n华 B-ORG\n中 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n华 B-ORG\n中 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n陈 B-NAME\n荣 M-NAME\n秋 E-NAME\n先 O\n生 O\n受 O\n聘 O\n兼 O\n任 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n政 M-ORG\n府 E-ORG\n咨 B-TITLE\n询 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n市 M-ORG\n政 M-ORG\n府 E-ORG\n决 B-TITLE\n策 M-TITLE\n咨 M-TITLE\n询 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n张 B-NAME\n英 M-NAME\n惠 E-NAME\n： O\n女 O\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n( O\n非 O\n执 O\n业 O\n) O\n。 O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n毕 O\n业 O\n于 O\n辽 B-ORG\n宁 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 M-ORG\n计 M-ORG\n统 M-ORG\n系 E-ORG\n， O\n分 O\n配 O\n到 O\n辽 B-ORG\n宁 M-ORG\n省 M-ORG\n盘 M-ORG\n锦 M-ORG\n地 M-ORG\n区 M-ORG\n供 M-ORG\n销 M-ORG\n社 E-ORG\n从 O\n事 O\n计 O\n划 O\n、 O\n财 O\n务 O\n等 O\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n后 O\n任 O\n辽 B-PRO\n宁 M-PRO\n省 M-PRO\n丹 M-PRO\n东 M-PRO\n市 M-PRO\n物 M-PRO\n价 M-PRO\n局 E-PRO\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n局 B-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n1 O\n月 O\n任 O\n辽 B-TITLE\n宁 M-TITLE\n省 M-TITLE\n丹 M-TITLE\n东 M-TITLE\n市 M-TITLE\n副 M-TITLE\n市 M-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n7 O\n月 O\n任 O\n国 B-ORG\n家 M-ORG\n税 M-ORG\n务 M-ORG\n总 M-ORG\n局 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n国 B-ORG\n务 M-ORG\n院 M-ORG\n派 M-ORG\n驻 M-ORG\n国 M-ORG\n有 M-ORG\n重 M-ORG\n点 M-ORG\n大 M-ORG\n型 M-ORG\n企 M-ORG\n业 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n2 O\n月 O\n卸 O\n任 O\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n今 O\n， O\n任 O\n中 B-ORG\n国 M-ORG\n税 M-ORG\n务 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n4 O\n月 O\n， O\n任 O\n四 B-ORG\n川 M-ORG\n岷 M-ORG\n江 M-ORG\n水 M-ORG\n利 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n1 O\n2 O\n月 O\n， O\n任 O\n华 B-ORG\n联 M-ORG\n控 M-ORG\n股 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n曹 B-NAME\n润 M-NAME\n珊 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n毕 O\n业 O\n于 O\n四 B-ORG\n川 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n江 B-ORG\n南 M-ORG\n机 M-ORG\n器 M-ORG\n厂 E-ORG\n劳 B-TITLE\n资 M-TITLE\n综 M-TITLE\n合 M-TITLE\n管 M-TITLE\n理 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n兵 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n标 M-ORG\n准 M-ORG\n化 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n劳 B-TITLE\n动 M-TITLE\n标 M-TITLE\n准 M-TITLE\n研 M-TITLE\n究 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n兵 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n二 B-TITLE\n级 M-TITLE\n业 M-TITLE\n务 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n兵 M-ORG\n器 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n黄 B-NAME\n宁 M-NAME\n宅 E-NAME\n： O\n男 O\n， O\n生 O\n于 O\n1 O\n9 O\n6 O\n9 O\n年 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n兼 O\n任 O\n东 B-ORG\n信 M-ORG\n和 M-ORG\n平 M-ORG\n智 M-ORG\n能 M-ORG\n卡 M-ORG\n（ M-ORG\n新 M-ORG\n加 M-ORG\n坡 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n杭 B-ORG\n州 M-ORG\n东 M-ORG\n信 M-ORG\n百 M-ORG\n丰 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n曾 O\n任 O\n杭 B-ORG\n州 M-ORG\n通 M-ORG\n信 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n东 M-ORG\n信 M-ORG\n和 M-ORG\n平 M-ORG\n智 M-ORG\n能 M-ORG\n卡 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n艺 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n普 B-ORG\n天 M-ORG\n东 M-ORG\n方 M-ORG\n通 M-ORG\n信 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n东 B-ORG\n信 M-ORG\n和 M-ORG\n平 M-ORG\n智 M-ORG\n能 M-ORG\n卡 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n等 O\n职 O\n。 O\n\n张 B-NAME\n秋 M-NAME\n贵 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n1 O\n年 O\n生 O\n， O\n浙 B-LOC\n江 M-LOC\n兰 M-LOC\n溪 M-LOC\n人 E-LOC\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\nM B-EDU\nB M-EDU\nA E-EDU\n。 O\n\n历 O\n任 O\n浙 B-ORG\n江 M-ORG\n企 M-ORG\n成 M-ORG\n机 M-ORG\n电 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n企 M-ORG\n成 M-ORG\n机 M-ORG\n电 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 M-ORG\n齿 M-ORG\n轮 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n质 M-TITLE\n量 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n金 B-ORG\n华 M-ORG\n市 M-ORG\n清 M-ORG\n华 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n变 B-ORG\n速 M-ORG\n器 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n市 B-TITLE\n场 M-TITLE\n开 M-TITLE\n发 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n发 B-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n万 M-ORG\n里 M-ORG\n扬 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n发 B-TITLE\n展 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n销 B-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n万 M-ORG\n里 M-ORG\n扬 M-ORG\n变 M-ORG\n速 M-ORG\n器 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n销 B-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n万 M-ORG\n里 M-ORG\n扬 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n金 B-ORG\n华 M-ORG\n万 M-ORG\n里 M-ORG\n扬 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n陆 B-NAME\n治 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n4 O\n2 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n波 M-ORG\n轮 M-ORG\n船 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n上 M-ORG\n海 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n波 M-ORG\n兰 M-ORG\n高 M-ORG\n登 M-ORG\n尼 M-ORG\n亚 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n远 M-ORG\n洋 M-ORG\n运 M-ORG\n输 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n远 M-ORG\n（ M-ORG\n香 M-ORG\n港 M-ORG\n） M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n中 B-ORG\n远 M-ORG\n（ M-ORG\n新 M-ORG\n加 M-ORG\n坡 M-ORG\n） M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n( O\n新 O\n加 O\n坡 O\n上 O\n市 O\n公 O\n司 O\n) O\n， O\n中 B-ORG\n远 M-ORG\n太 M-ORG\n平 M-ORG\n洋 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n（ O\n香 O\n港 O\n上 O\n市 O\n代 O\n码 O\n1 O\n1 O\n9 O\n9 O\n） O\n， O\n中 B-ORG\n远 M-ORG\n国 M-ORG\n际 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n（ O\n香 O\n港 O\n上 O\n市 O\n代 O\n码 O\n5 O\n1 O\n7 O\n） O\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n兰 M-ORG\n生 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n6 O\n0 O\n0 O\n8 O\n2 O\n6 O\n） O\n、 O\n招 B-ORG\n商 M-ORG\n局 M-ORG\n能 M-ORG\n源 M-ORG\n运 M-ORG\n输 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n、 M-TITLE\n第 M-TITLE\n二 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n华 B-ORG\n鑫 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n谈 B-NAME\n锋 E-NAME\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n， O\n男 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n主 B-TITLE\n任 M-TITLE\n编 M-TITLE\n辑 E-TITLE\n， O\n曾 O\n任 O\n职 O\n于 O\n北 B-ORG\n京 M-ORG\n外 M-ORG\n文 M-ORG\n出 M-ORG\n版 M-ORG\n社 E-ORG\n、 O\n中 B-ORG\n共 M-ORG\n中 M-ORG\n央 M-ORG\n联 M-ORG\n络 M-ORG\n部 M-ORG\n亚 M-ORG\n洲 M-ORG\n局 E-ORG\n， O\n历 O\n任 O\n人 B-ORG\n民 M-ORG\n日 M-ORG\n报 E-ORG\n国 B-TITLE\n际 M-TITLE\n部 M-TITLE\n编 M-TITLE\n辑 E-TITLE\n、 O\n主 B-TITLE\n编 E-TITLE\n、 O\n四 B-ORG\n通 M-ORG\n集 M-ORG\n团 E-ORG\n总 B-TITLE\n裁 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n美 B-ORG\n国 M-ORG\n四 M-ORG\n通 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n、 O\n集 B-ORG\n团 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n集 B-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n等 O\n职 O\n。 O\n\n闻 B-NAME\n建 M-NAME\n中 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n上 B-ORG\n海 M-ORG\n科 M-ORG\n技 M-ORG\n五 M-ORG\n七 M-ORG\n干 M-ORG\n校 E-ORG\n教 B-TITLE\n员 E-TITLE\n、 O\n7 B-ORG\n1 M-ORG\n1 M-ORG\n所 E-ORG\n人 B-TITLE\n事 M-TITLE\n教 M-TITLE\n育 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n李 B-NAME\n宏 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n荣 O\n获 O\n2 O\n0 O\n0 O\n6 O\n年 O\n上 O\n海 O\n市 O\n节 O\n能 O\n先 O\n进 O\n个 O\n人 O\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n2 O\n月 O\n， O\n先 O\n后 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n普 M-ORG\n利 M-ORG\n特 M-ORG\n复 M-ORG\n合 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n质 B-TITLE\n量 M-TITLE\n保 M-TITLE\n证 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n生 B-TITLE\n产 M-TITLE\n制 M-TITLE\n造 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n等 O\n职 O\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n7 O\n月 O\n， O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n普 M-ORG\n利 M-ORG\n特 M-ORG\n复 M-ORG\n合 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n制 B-TITLE\n造 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n监 E-TITLE\n兼 O\n生 B-TITLE\n产 M-TITLE\n制 M-TITLE\n造 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n普 M-ORG\n利 M-ORG\n特 M-ORG\n复 M-ORG\n合 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n黎 B-NAME\n燕 M-NAME\n红 E-NAME\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n于 O\n1 O\n9 O\n9 O\n7 O\n年 O\n毕 O\n业 O\n于 O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n获 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n曾 O\n于 O\n深 B-ORG\n圳 M-ORG\n华 M-ORG\n润 M-ORG\n超 M-ORG\n级 M-ORG\n市 M-ORG\n场 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n办 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n华 M-ORG\n特 M-ORG\n容 M-ORG\n器 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n主 M-TITLE\n办 E-TITLE\n以 O\n及 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n华 M-ORG\n特 M-ORG\n容 M-ORG\n器 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n起 O\n加 O\n入 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n青 M-ORG\n宝 M-ORG\n互 M-ORG\n动 M-ORG\n网 M-ORG\n络 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n中 M-ORG\n青 M-ORG\n宝 M-ORG\n互 M-ORG\n动 M-ORG\n网 M-ORG\n络 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n郁 B-NAME\n武 M-NAME\n铮 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n籍 O\n贯 O\n浙 B-LOC\n江 M-LOC\n宁 M-LOC\n波 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n7 O\n月 O\n工 O\n作 O\n， O\n现 O\n任 O\n宁 B-ORG\n波 M-ORG\n建 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n建 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n第 M-ORG\n五 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n。 O\n\n工 O\n作 O\n经 O\n历 O\n， O\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n建 M-ORG\n筑 M-ORG\n安 M-ORG\n装 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n工 M-TITLE\n程 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n施 M-TITLE\n工 M-TITLE\n员 E-TITLE\n、 O\n主 B-TITLE\n施 M-TITLE\n工 E-TITLE\n； O\n\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n建 M-ORG\n筑 M-ORG\n安 M-ORG\n装 M-ORG\n集 M-ORG\n团 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n第 M-ORG\n一 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n宁 B-ORG\n波 M-ORG\n建 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n第 M-ORG\n一 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n宁 B-ORG\n波 M-ORG\n建 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n工 M-ORG\n程 M-ORG\n建 M-ORG\n设 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n第 M-ORG\n五 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n； O\n\n宁 B-ORG\n波 M-ORG\n建 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n第 B-ORG\n五 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n。 O\n\n宁 B-ORG\n波 M-ORG\n大 M-ORG\n学 M-ORG\n建 M-ORG\n筑 M-ORG\n工 M-ORG\n程 M-ORG\n与 M-ORG\n环 M-ORG\n境 M-ORG\n学 M-ORG\n院 E-ORG\n研 B-TITLE\n究 M-TITLE\n生 E-TITLE\n兼 O\n职 O\n导 B-TITLE\n师 E-TITLE\n。 O\n\n何 B-NAME\n三 M-NAME\n星 E-NAME\n先 O\n生 O\n， O\n董 B-TITLE\n事 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n就 O\n职 O\n于 O\n岳 B-ORG\n阳 M-ORG\n县 M-ORG\n卫 M-ORG\n生 M-ORG\n局 E-ORG\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n卫 M-ORG\n生 M-ORG\n厅 M-ORG\n卫 M-ORG\n生 M-ORG\n政 M-ORG\n策 M-ORG\n杂 M-ORG\n志 M-ORG\n社 E-ORG\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n医 M-ORG\n药 M-ORG\n开 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n曾 O\n任 O\n湖 B-ORG\n南 M-ORG\n汉 M-ORG\n森 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n湖 B-ORG\n南 M-ORG\n汉 M-ORG\n森 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n王 B-NAME\n贵 M-NAME\n生 E-NAME\n， O\n男 O\n， O\n汉 S-RACE\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n1 O\n月 O\n6 O\n日 O\n出 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n7 O\n7 O\n年 O\n9 O\n月 O\n在 O\n新 B-ORG\n疆 M-ORG\n库 M-ORG\n车 M-ORG\n县 M-ORG\n气 M-ORG\n象 M-ORG\n站 E-ORG\n工 O\n作 O\n， O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n8 O\n1 O\n年 O\n4 O\n月 O\n在 O\n阿 B-ORG\n里 M-ORG\n军 M-ORG\n分 M-ORG\n区 E-ORG\n服 O\n兵 O\n役 O\n， O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n1 O\n2 O\n月 O\n曾 O\n先 O\n后 O\n担 O\n任 O\n新 B-ORG\n疆 M-ORG\n水 M-ORG\n泥 M-ORG\n厂 E-ORG\n化 B-TITLE\n验 M-TITLE\n室 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n制 B-TITLE\n成 M-TITLE\n车 M-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n销 B-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n二 B-ORG\n分 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n4 O\n月 O\n先 O\n后 O\n担 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n销 M-ORG\n售 M-ORG\n公 M-ORG\n司 E-ORG\n经 B-TITLE\n理 E-TITLE\n， O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n5 O\n月 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n和 O\n静 O\n项 O\n目 O\n组 O\n任 O\n指 B-TITLE\n挥 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n大 O\n河 O\n沿 O\n项 O\n目 O\n组 O\n任 O\n指 B-TITLE\n挥 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n新 B-ORG\n疆 M-ORG\n天 M-ORG\n山 M-ORG\n水 M-ORG\n泥 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n冯 B-NAME\n莉 M-NAME\n莉 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n出 O\n生 O\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n在 O\n大 B-ORG\n连 M-ORG\n实 M-ORG\n德 E-ORG\n财 O\n务 O\n部 O\n、 O\n大 B-ORG\n元 M-ORG\n股 M-ORG\n份 E-ORG\n证 O\n券 O\n部 O\n、 O\n大 B-ORG\n连 M-ORG\n北 M-ORG\n部 E-ORG\n资 O\n产 O\n财 O\n务 O\n行 O\n政 O\n部 O\n工 O\n作 O\n， O\n曾 O\n任 O\n大 B-ORG\n连 M-ORG\n智 M-ORG\n云 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n装 M-ORG\n备 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n冯 B-NAME\n国 M-NAME\n泰 E-NAME\n： O\n男 O\n1 O\n9 O\n4 O\n9 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n学 B-EDU\n士 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n5 O\n月 O\n— O\n1 O\n9 O\n8 O\n0 O\n年 O\n4 O\n月 O\n生 O\n宝 B-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n发 M-TITLE\n部 M-TITLE\n电 M-TITLE\n视 M-TITLE\n设 M-TITLE\n计 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n组 B-TITLE\n长 E-TITLE\n、 O\n课 B-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n5 O\n月 O\n— O\n1 O\n9 O\n9 O\n4 O\n年 O\n8 O\n月 O\nA B-ORG\nO M-ORG\nC M-ORG\n艾 M-ORG\n德 M-ORG\n蒙 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n历 O\n任 O\n： O\n研 B-TITLE\n发 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n研 B-TITLE\n发 M-TITLE\n处 M-TITLE\n副 M-TITLE\n总 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n9 O\n月 O\n— O\n2 O\n0 O\n0 O\n2 O\n年 O\n2 O\n月 O\n饭 B-ORG\n山 M-ORG\n国 M-ORG\n际 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n至 O\n今 O\n宝 B-ORG\n成 M-ORG\n集 M-ORG\n团 M-ORG\n光 M-ORG\n威 M-ORG\n电 M-ORG\n脑 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n深 M-TITLE\n副 M-TITLE\n总 E-TITLE\n、 O\n威 B-TITLE\n成 M-TITLE\n电 M-TITLE\n子 E-TITLE\n； O\n\n资 B-TITLE\n深 M-TITLE\n副 M-TITLE\n总 E-TITLE\n、 O\n光 B-ORG\n威 M-ORG\n电 M-ORG\n脑 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n副 M-TITLE\n总 E-TITLE\n。 O\n\n张 B-NAME\n杰 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n河 B-LOC\n南 M-LOC\n舞 M-LOC\n阳 M-LOC\n人 E-LOC\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n2 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n法 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n律 B-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n银 M-ORG\n行 M-ORG\n武 M-ORG\n汉 M-ORG\n市 M-ORG\n分 M-ORG\n行 E-ORG\n监 B-TITLE\n察 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 M-TITLE\n科 M-TITLE\n员 E-TITLE\n、 O\n资 B-TITLE\n产 M-TITLE\n保 M-TITLE\n全 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n法 B-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n工 M-ORG\n商 M-ORG\n银 M-ORG\n行 M-ORG\n武 M-ORG\n汉 M-ORG\n市 M-ORG\n汉 M-ORG\n阳 M-ORG\n区 M-ORG\n支 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n。 O\n\n焦 B-NAME\n迎 M-NAME\n光 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n物 M-TITLE\n流 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n大 B-ORG\n连 M-ORG\n港 M-ORG\n杂 M-ORG\n货 M-ORG\n码 M-ORG\n头 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n大 B-ORG\n连 M-ORG\n港 M-ORG\n集 M-ORG\n团 M-ORG\n（ M-ORG\n锦 M-ORG\n州 M-ORG\n） M-ORG\n辽 M-ORG\n西 M-ORG\n港 M-ORG\n口 M-ORG\n投 M-ORG\n资 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n大 B-ORG\n连 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n大 B-ORG\n连 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n胡 B-NAME\n晓 M-NAME\n辉 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n加 B-CONT\n拿 M-CONT\n大 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n曾 O\n任 O\n加 B-ORG\n拿 M-ORG\n大 M-ORG\n格 M-ORG\n林 M-ORG\n柯 M-ORG\n尔 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n现 O\n任 O\n格 B-ORG\n林 M-ORG\n柯 M-ORG\n尔 M-ORG\n科 M-ORG\n技 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n首 B-TITLE\n席 M-TITLE\n执 M-TITLE\n行 M-TITLE\n官 E-TITLE\n。 O\n\n尤 B-NAME\n福 M-NAME\n永 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n律 B-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n起 O\n先 O\n后 O\n任 O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n学 E-ORG\n讲 B-TITLE\n师 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n华 M-ORG\n侨 M-ORG\n城 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n城 M-ORG\n建 M-ORG\n开 M-ORG\n发 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n城 B-ORG\n建 M-ORG\n物 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n美 B-ORG\n国 M-ORG\n联 M-ORG\n邦 M-ORG\n政 M-ORG\n府 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n金 M-ORG\n融 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n、 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n地 M-ORG\n铁 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n兼 O\n运 B-TITLE\n营 M-TITLE\n管 M-TITLE\n理 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n和 O\n地 B-ORG\n铁 M-ORG\n远 M-ORG\n为 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n0 O\n月 O\n起 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n高 B-NAME\n正 M-NAME\n平 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n金 B-TITLE\n融 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n享 O\n受 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n金 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n金 M-ORG\n融 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n金 M-ORG\n融 M-ORG\n出 M-ORG\n版 M-ORG\n社 E-ORG\n金 B-TITLE\n融 M-TITLE\n教 M-TITLE\n材 M-TITLE\n编 M-TITLE\n委 M-TITLE\n会 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n风 M-ORG\n险 M-ORG\n投 M-ORG\n资 M-ORG\n促 M-ORG\n进 M-ORG\n会 E-ORG\n专 B-TITLE\n家 M-TITLE\n组 M-TITLE\n专 M-TITLE\n家 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n— O\n1 O\n9 O\n7 O\n9 O\n年 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n建 M-ORG\n设 M-ORG\n兵 M-ORG\n团 E-ORG\n知 B-TITLE\n青 E-TITLE\n； O\n\n1 O\n9 O\n7 O\n9 O\n年 O\n— O\n1 O\n9 O\n8 O\n3 O\n年 O\n天 B-ORG\n津 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 M-ORG\n金 M-ORG\n融 M-ORG\n系 E-ORG\n金 B-PRO\n融 M-PRO\n专 M-PRO\n业 E-PRO\n本 B-EDU\n科 E-EDU\n； O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n— O\n今 O\n天 B-ORG\n津 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n工 O\n作 O\n。 O\n\n曹 B-NAME\n承 M-NAME\n鼎 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n行 E-ORG\n稽 B-TITLE\n核 M-TITLE\n司 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n行 E-ORG\n稽 B-TITLE\n核 M-TITLE\n监 M-TITLE\n督 M-TITLE\n局 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n司 M-TITLE\n局 M-TITLE\n级 M-TITLE\n助 M-TITLE\n理 M-TITLE\n巡 M-TITLE\n视 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n总 M-ORG\n行 E-ORG\n内 B-TITLE\n审 M-TITLE\n司 M-TITLE\n副 M-TITLE\n司 M-TITLE\n长 E-TITLE\n、 O\n正 B-TITLE\n司 M-TITLE\n局 M-TITLE\n级 M-TITLE\n巡 M-TITLE\n视 M-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 E-ORG\n融 B-TITLE\n资 M-TITLE\n中 M-TITLE\n心 M-TITLE\n清 M-TITLE\n理 M-TITLE\n小 M-TITLE\n组 M-TITLE\n组 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n已 O\n退 O\n休 O\n， O\n任 O\n本 B-ORG\n行 E-ORG\n外 B-TITLE\n部 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n郝 B-NAME\n敬 M-NAME\n开 E-NAME\n， O\n男 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n合 B-ORG\n肥 M-ORG\n物 M-ORG\n价 M-ORG\n学 M-ORG\n校 E-ORG\n讲 B-TITLE\n师 E-TITLE\n、 O\n合 B-ORG\n肥 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n（ O\n现 O\n华 B-ORG\n证 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n） O\n资 B-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n审 B-TITLE\n计 M-TITLE\n业 M-TITLE\n务 M-TITLE\n四 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n合 B-ORG\n肥 M-ORG\n兴 M-ORG\n泰 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n监 M-TITLE\n管 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n杨 B-NAME\n越 M-NAME\n山 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n7 O\n月 O\n3 O\n0 O\n日 O\n出 O\n生 O\n。 O\n\n南 B-ORG\n京 M-ORG\n金 M-ORG\n陵 M-ORG\n职 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n经 M-ORG\n系 E-ORG\n毕 O\n业 O\n。 O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n， O\n中 B-ORG\n山 M-ORG\n市 M-ORG\n雅 M-ORG\n居 M-ORG\n乐 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n销 B-TITLE\n售 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n， O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n花 M-ORG\n都 M-ORG\n雅 M-ORG\n居 M-ORG\n乐 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n， O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n花 M-ORG\n都 M-ORG\n区 M-ORG\n宏 M-ORG\n峰 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n珠 B-ORG\n海 M-ORG\n市 M-ORG\n斗 M-ORG\n门 M-ORG\n区 M-ORG\n世 M-ORG\n荣 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n市 B-TITLE\n场 M-TITLE\n营 M-TITLE\n销 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n张 B-NAME\n建 M-NAME\n民 E-NAME\n， O\n男 O\n， O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n河 B-ORG\n北 M-ORG\n工 M-ORG\n学 M-ORG\n院 M-ORG\n土 M-ORG\n建 M-ORG\n系 E-ORG\n教 B-TITLE\n师 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n天 M-ORG\n荣 M-ORG\n建 M-ORG\n筑 M-ORG\n板 M-ORG\n材 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n天 B-ORG\n津 M-ORG\n新 M-ORG\n技 M-ORG\n术 M-ORG\n产 M-ORG\n业 M-ORG\n园 M-ORG\n区 M-ORG\n天 M-ORG\n荣 M-ORG\n建 M-ORG\n筑 M-ORG\n工 M-ORG\n程 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n起 O\n任 O\n天 B-ORG\n津 M-ORG\n海 M-ORG\n泰 M-ORG\n科 M-ORG\n技 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n程 B-NAME\n凡 M-NAME\n贵 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n国 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n1 O\n年 O\n8 O\n月 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n任 O\n正 B-ORG\n邦 M-ORG\n集 M-ORG\n团 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n0 O\n月 O\n任 O\n正 B-ORG\n邦 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n江 B-ORG\n西 M-ORG\n永 M-ORG\n联 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n正 B-ORG\n邦 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n5 O\n年 O\n4 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n4 O\n月 O\n辞 O\n去 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n新 M-NAME\n泽 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n自 O\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n起 O\n任 O\n本 B-ORG\n行 E-ORG\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n5 O\n年 O\n5 O\n月 O\n至 O\n1 O\n9 O\n7 O\n8 O\n年 O\n1 O\n0 O\n月 O\n、 O\n1 O\n9 O\n8 O\n2 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n8 O\n月 O\n期 O\n间 O\n， O\n张 S-NAME\n先 O\n生 O\n就 O\n职 O\n于 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 E-ORG\n， O\n曾 O\n在 O\n调 B-ORG\n查 M-ORG\n统 M-ORG\n计 M-ORG\n司 E-ORG\n任 O\n副 B-TITLE\n司 M-TITLE\n长 E-TITLE\n、 O\n巡 B-TITLE\n视 M-TITLE\n员 E-TITLE\n， O\n在 O\n征 B-ORG\n信 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n任 O\n巡 B-TITLE\n视 M-TITLE\n员 E-TITLE\n及 O\n信 B-ORG\n贷 M-ORG\n征 M-ORG\n信 M-ORG\n服 M-ORG\n务 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n。 O\n\n张 S-NAME\n先 O\n生 O\n为 O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 M-ORG\n财 M-ORG\n政 M-ORG\n系 E-ORG\n财 B-PRO\n政 M-PRO\n金 M-PRO\n融 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n并 O\n获 O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n梁 B-NAME\n锦 M-NAME\n棋 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n毕 O\n业 O\n于 O\n广 B-ORG\n东 M-ORG\n商 M-ORG\n学 M-ORG\n院 E-ORG\n会 B-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n税 M-TITLE\n务 M-TITLE\n师 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n至 O\n今 O\n任 O\n佛 B-ORG\n山 M-ORG\n市 M-ORG\n南 M-ORG\n海 M-ORG\n骏 M-ORG\n朗 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n东 M-ORG\n伊 M-ORG\n立 M-ORG\n浦 M-ORG\n电 M-ORG\n器 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n瀚 B-ORG\n蓝 M-ORG\n环 M-ORG\n境 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n晓 M-NAME\n东 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n出 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n成 B-ORG\n都 M-ORG\n科 M-ORG\n技 M-ORG\n大 M-ORG\n学 E-ORG\n（ O\n现 O\n四 B-ORG\n川 M-ORG\n大 M-ORG\n学 E-ORG\n） O\n基 B-PRO\n本 M-PRO\n有 M-PRO\n机 M-PRO\n化 M-PRO\n工 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n西 B-ORG\n南 M-ORG\n化 M-ORG\n工 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n院 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n第 B-TITLE\n三 M-TITLE\n研 M-TITLE\n究 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n四 B-ORG\n川 M-ORG\n天 M-ORG\n一 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n现 O\n任 O\n西 B-ORG\n南 M-ORG\n化 M-ORG\n工 M-ORG\n研 M-ORG\n究 M-ORG\n设 M-ORG\n计 M-ORG\n院 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n傅 B-NAME\n伟 E-NAME\n女 O\n士 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n7 O\n年 O\n2 O\n月 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n自 O\n1 O\n9 O\n9 O\n7 O\n年 O\n以 O\n来 O\n一 O\n直 O\n任 O\n职 O\n于 O\n公 B-ORG\n司 E-ORG\n财 O\n务 O\n部 O\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n。 O\n\n马 B-NAME\n斌 M-NAME\n武 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n9 O\n月 O\n生 O\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n7 O\n月 O\n进 O\n入 O\n浙 B-ORG\n江 M-ORG\n方 M-ORG\n正 M-ORG\n电 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n就 O\n职 O\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n， O\n任 O\n职 O\n于 O\n浙 B-ORG\n江 M-ORG\n方 M-ORG\n正 M-ORG\n电 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n技 B-TITLE\n术 M-TITLE\n部 M-TITLE\n技 M-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n平 O\n缝 O\n事 O\n业 O\n部 O\n品 O\n质 O\n管 O\n理 O\n部 O\n等 O\n部 O\n门 O\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n， O\n担 O\n任 O\n公 B-ORG\n司 M-ORG\n全 M-ORG\n资 M-ORG\n子 M-ORG\n公 M-ORG\n司 E-ORG\n制 B-TITLE\n造 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n1 O\n2 O\n月 O\n， O\n担 O\n任 O\n浙 B-ORG\n江 M-ORG\n方 M-ORG\n正 M-ORG\n电 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n行 B-TITLE\n政 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n月 O\n至 O\n今 O\n， O\n担 O\n任 O\n浙 B-ORG\n江 M-ORG\n方 M-ORG\n正 M-ORG\n电 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n方 B-NAME\n夕 M-NAME\n刚 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n电 B-TITLE\n容 M-TITLE\n器 M-TITLE\n制 M-TITLE\n造 M-TITLE\n工 M-TITLE\n艺 M-TITLE\n员 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n质 M-TITLE\n量 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n质 B-TITLE\n量 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n质 B-TITLE\n量 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n技 B-TITLE\n术 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n铜 M-ORG\n峰 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n控 O\n股 O\n子 O\n公 O\n司 O\n安 B-ORG\n徽 M-ORG\n铜 M-ORG\n峰 M-ORG\n世 M-ORG\n贸 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n徐 B-NAME\n志 M-NAME\n翰 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n7 O\n月 O\n1 O\n4 O\n日 O\n生 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n上 B-LOC\n海 M-LOC\n市 M-LOC\n人 E-LOC\n， O\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n毕 O\n业 O\n于 O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 E-ORG\n企 B-PRO\n业 M-PRO\n管 M-PRO\n理 M-PRO\n（ M-PRO\n会 M-PRO\n计 M-PRO\n） M-PRO\n专 M-PRO\n业 E-PRO\n， O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n业 M-PRO\n经 M-PRO\n济 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n复 B-ORG\n旦 M-ORG\n大 M-ORG\n学 E-ORG\n经 B-PRO\n济 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n学 B-EDU\n士 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n副 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n上 B-ORG\n海 M-ORG\n复 M-ORG\n旦 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 M-ORG\n会 M-ORG\n计 M-ORG\n系 E-ORG\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n副 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n张 B-NAME\n泾 M-NAME\n生 E-NAME\n： O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n4 O\n5 O\n年 O\n生 O\n， O\n河 B-LOC\n南 M-LOC\n灵 M-LOC\n宝 M-LOC\n人 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n东 B-ORG\n北 M-ORG\n大 M-ORG\n学 E-ORG\n兼 B-TITLE\n职 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n武 B-ORG\n汉 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n兼 B-TITLE\n职 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n新 B-ORG\n建 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n公 M-ORG\n司 M-ORG\n可 M-ORG\n可 M-ORG\n托 M-ORG\n海 M-ORG\n矿 M-ORG\n务 M-ORG\n局 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n助 B-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n长 B-ORG\n沙 M-ORG\n矿 M-ORG\n冶 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n药 B-TITLE\n剂 M-TITLE\n室 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n选 B-TITLE\n矿 M-TITLE\n工 M-TITLE\n艺 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n长 B-ORG\n沙 M-ORG\n矿 M-ORG\n冶 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n院 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n院 B-TITLE\n长 E-TITLE\n， O\n金 B-ORG\n瑞 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n华 M-ORG\n菱 M-ORG\n管 M-ORG\n线 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n长 B-ORG\n沙 M-ORG\n矿 M-ORG\n冶 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n， O\n南 B-ORG\n方 M-ORG\n建 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n黄 B-NAME\n南 M-NAME\n山 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n曾 O\n任 O\n福 B-ORG\n建 M-ORG\n省 M-ORG\n华 M-ORG\n安 M-ORG\n水 M-ORG\n力 M-ORG\n发 M-ORG\n电 M-ORG\n厂 E-ORG\n检 B-TITLE\n修 M-TITLE\n管 M-TITLE\n理 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n福 B-ORG\n建 M-ORG\n龙 M-ORG\n岩 M-ORG\n万 M-ORG\n安 M-ORG\n溪 M-ORG\n水 M-ORG\n力 M-ORG\n发 M-ORG\n电 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n现 O\n任 O\n福 B-ORG\n建 M-ORG\n闽 M-ORG\n东 M-ORG\n水 M-ORG\n电 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n申 B-NAME\n萍 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n有 O\n新 O\n加 O\n坡 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n毕 O\n业 O\n于 O\n华 B-ORG\n西 M-ORG\n医 M-ORG\n科 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n职 O\n于 O\n四 B-ORG\n川 M-ORG\n抗 M-ORG\n菌 M-ORG\n素 M-ORG\n工 M-ORG\n业 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n职 O\n于 O\n成 B-ORG\n都 M-ORG\n康 M-ORG\n信 E-ORG\n， O\n现 O\n任 O\n西 B-ORG\n藏 M-ORG\n海 M-ORG\n思 M-ORG\n科 M-ORG\n药 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n方 B-NAME\n秀 M-NAME\n华 E-NAME\n： O\n女 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n曾 O\n荣 O\n获 O\n“ O\n安 B-TITLE\n徽 M-TITLE\n省 M-TITLE\n工 M-TITLE\n会 M-TITLE\n财 M-TITLE\n务 M-TITLE\n先 M-TITLE\n进 M-TITLE\n个 M-TITLE\n人 E-TITLE\n” O\n、 O\n“ O\n安 B-TITLE\n徽 M-TITLE\n省 M-TITLE\n先 M-TITLE\n进 M-TITLE\n女 M-TITLE\n职 M-TITLE\n工 M-TITLE\n标 M-TITLE\n兵 M-TITLE\n称 M-TITLE\n号 E-TITLE\n” O\n。 O\n\n曾 O\n任 O\n黄 B-ORG\n山 M-ORG\n永 M-ORG\n新 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n； O\n\n现 O\n任 O\n黄 B-ORG\n山 M-ORG\n永 M-ORG\n新 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n兼 O\n财 B-TITLE\n务 M-TITLE\n中 M-TITLE\n心 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n康 B-NAME\n玉 M-NAME\n星 E-NAME\n， O\n女 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n先 O\n后 O\n任 O\n新 B-ORG\n疆 M-ORG\n石 M-ORG\n油 M-ORG\n公 M-ORG\n司 E-ORG\n政 B-TITLE\n治 M-TITLE\n处 M-TITLE\n干 M-TITLE\n部 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n石 M-ORG\n油 M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n石 M-ORG\n油 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n兼 O\n团 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n石 M-ORG\n油 M-ORG\n总 M-ORG\n公 M-ORG\n司 M-ORG\n新 M-ORG\n欧 M-ORG\n亚 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n支 B-TITLE\n部 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n自 B-ORG\n治 M-ORG\n区 M-ORG\n糖 M-ORG\n酒 M-ORG\n副 M-ORG\n食 M-ORG\n品 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n新 B-ORG\n疆 M-ORG\n副 M-ORG\n食 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n乌 B-ORG\n鲁 M-ORG\n木 M-ORG\n齐 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n经 M-ORG\n营 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n由 B-NAME\n立 M-NAME\n明 E-NAME\n， O\n男 O\n， O\n4 O\n7 O\n岁 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n本 B-EDU\n科 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n电 M-ORG\n力 M-ORG\n局 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n； O\n\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n电 M-ORG\n力 M-ORG\n投 M-ORG\n资 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n营 M-TITLE\n部 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n能 M-ORG\n源 M-ORG\n交 M-ORG\n通 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n； O\n\n吉 B-ORG\n林 M-ORG\n省 M-ORG\n能 M-ORG\n源 M-ORG\n交 M-ORG\n通 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n吉 B-ORG\n林 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n吉 B-ORG\n林 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n马 B-NAME\n强 E-NAME\n先 O\n生 O\n， O\n5 O\n3 O\n岁 O\n， O\n现 O\n任 O\n本 B-ORG\n行 E-ORG\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n马 S-NAME\n先 O\n生 O\n自 O\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n社 B-TITLE\n保 M-TITLE\n基 M-TITLE\n金 M-TITLE\n理 M-TITLE\n事 M-TITLE\n会 M-TITLE\n# M-TITLE\nO M-TITLE\nR M-TITLE\nG M-TITLE\n* M-TITLE\n[ M-TITLE\n] M-TITLE\n股 M-TITLE\n权 M-TITLE\n资 M-TITLE\n产 M-TITLE\n部 M-TITLE\n（ M-TITLE\n实 M-TITLE\n业 M-TITLE\n投 M-TITLE\n资 M-TITLE\n部 M-TITLE\n） M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n自 O\n2 O\n0 O\n0 O\n1 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n2 O\n月 O\n历 O\n任 O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n（ O\n天 B-ORG\n津 M-ORG\n市 M-ORG\n地 M-ORG\n方 M-ORG\n税 M-ORG\n务 M-ORG\n局 E-ORG\n） O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n（ O\n正 O\n局 O\n级 O\n） O\n。 O\n\n马 S-NAME\n先 O\n生 O\n2 O\n0 O\n0 O\n4 O\n年 O\n毕 O\n业 O\n于 O\n湖 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n网 M-ORG\n络 M-ORG\n学 M-ORG\n院 E-ORG\n财 B-PRO\n政 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n马 S-NAME\n先 O\n生 O\n自 O\n2 O\n0 O\n1 O\n1 O\n年 O\n9 O\n月 O\n起 O\n任 O\n本 B-ORG\n行 E-ORG\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n吉 B-NAME\n兴 M-NAME\n军 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n兴 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n； O\n\n现 O\n任 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n兴 M-ORG\n业 M-ORG\n矿 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n兴 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n启 M-NAME\n銮 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n财 B-PRO\n务 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n系 E-ORG\n书 B-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n硕 M-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 M-ORG\n财 M-ORG\n务 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n书 B-TITLE\n记 E-TITLE\n、 O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n大 B-ORG\n连 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 M-ORG\n证 M-ORG\n券 M-ORG\n与 M-ORG\n期 M-ORG\n货 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n会 B-ORG\n计 M-ORG\n与 M-ORG\n财 M-ORG\n务 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n亚 M-ORG\n太 M-ORG\n华 M-ORG\n夏 M-ORG\n财 M-ORG\n务 M-ORG\n会 M-ORG\n计 M-ORG\n研 M-ORG\n究 M-ORG\n院 E-ORG\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n东 B-ORG\n北 M-ORG\n暨 M-ORG\n内 M-ORG\n蒙 M-ORG\n古 M-ORG\n高 M-ORG\n校 M-ORG\n财 M-ORG\n务 M-ORG\n会 M-ORG\n计 M-ORG\n教 M-ORG\n师 M-ORG\n联 M-ORG\n谊 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n， O\n大 B-ORG\n化 M-ORG\nB M-ORG\n股 E-ORG\n、 O\n大 B-ORG\n连 M-ORG\n友 M-ORG\n谊 E-ORG\n、 O\n大 B-ORG\n橡 M-ORG\n塑 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n徐 B-NAME\n智 M-NAME\n麟 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-ORG\n欧 M-ORG\n国 M-ORG\n际 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n（ B-PRO\n金 M-PRO\n融 M-PRO\n专 M-PRO\n业 M-PRO\n方 M-PRO\n向 M-PRO\n） M-PRO\nE M-PRO\nM M-PRO\nB M-PRO\nA E-PRO\n毕 O\n业 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n现 O\n在 O\n职 O\n就 O\n读 O\n英 B-ORG\n国 M-ORG\n杜 M-ORG\n伦 M-ORG\n大 M-ORG\n学 E-ORG\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\n国 B-ORG\n泰 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n交 B-TITLE\n易 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n国 B-ORG\n泰 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n研 M-TITLE\n究 M-TITLE\n联 M-TITLE\n席 M-TITLE\n会 M-TITLE\n议 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n新 B-TITLE\n产 M-TITLE\n品 M-TITLE\n开 M-TITLE\n发 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n等 O\n， O\n以 O\n及 O\n金 B-ORG\n泰 M-ORG\n基 M-ORG\n金 E-ORG\n的 O\n基 B-TITLE\n金 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n为 O\n广 B-ORG\n誉 M-ORG\n远 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n钧 M-ORG\n齐 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n广 B-ORG\n誉 M-ORG\n远 M-ORG\n（ M-ORG\n上 M-ORG\n海 M-ORG\n） M-ORG\n龟 M-ORG\n龄 M-ORG\n集 M-ORG\n酒 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n唐 B-NAME\n少 M-NAME\n文 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n； O\n\n历 O\n任 O\n铁 B-ORG\n道 M-ORG\n部 M-ORG\n南 M-ORG\n京 M-ORG\n浦 M-ORG\n镇 M-ORG\n车 M-ORG\n辆 M-ORG\n工 M-ORG\n厂 E-ORG\n技 B-TITLE\n术 M-TITLE\n员 E-TITLE\n、 O\n助 B-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n纺 M-ORG\n织 M-ORG\n机 M-ORG\n械 M-ORG\n厂 E-ORG\n助 B-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n设 M-ORG\n银 M-ORG\n行 M-ORG\n苏 M-ORG\n州 M-ORG\n分 M-ORG\n行 E-ORG\n投 B-TITLE\n资 M-TITLE\n信 M-TITLE\n贷 M-TITLE\n科 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n贷 B-TITLE\n款 M-TITLE\n项 M-TITLE\n目 M-TITLE\n评 M-TITLE\n估 M-TITLE\n员 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n工 M-ORG\n业 M-ORG\n园 M-ORG\n区 M-ORG\n支 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n、 O\n行 B-TITLE\n长 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n国 M-ORG\n际 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n现 O\n任 O\n苏 B-ORG\n州 M-ORG\n胜 M-ORG\n利 M-ORG\n精 M-ORG\n密 M-ORG\n制 M-ORG\n造 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n国 M-ORG\n发 M-ORG\n投 M-ORG\n资 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n苏 B-ORG\n州 M-ORG\n国 M-ORG\n发 M-ORG\n安 M-ORG\n农 M-ORG\n管 M-ORG\n理 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n亿 B-ORG\n文 M-ORG\n创 M-ORG\n投 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n东 M-ORG\n吴 M-ORG\n保 M-ORG\n险 M-ORG\n经 M-ORG\n纪 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n贡 B-NAME\n华 M-NAME\n章 E-NAME\n先 O\n生 O\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n审 B-TITLE\n计 M-TITLE\n委 M-TITLE\n员 M-TITLE\n会 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n同 O\n时 O\n任 O\n财 B-ORG\n政 M-ORG\n部 M-ORG\n评 M-ORG\n估 M-ORG\n准 M-ORG\n则 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n价 M-ORG\n格 M-ORG\n协 M-ORG\n会 E-ORG\n顾 B-TITLE\n问 E-TITLE\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n厦 B-ORG\n门 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n石 M-ORG\n油 M-ORG\n大 M-ORG\n学 M-ORG\n（ M-ORG\n北 M-ORG\n京 M-ORG\n） E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n石 M-ORG\n油 M-ORG\n大 M-ORG\n学 M-ORG\n（ M-ORG\n华 M-ORG\n东 M-ORG\n） E-ORG\n、 O\n上 B-ORG\n海 M-ORG\n国 M-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n、 O\n厦 B-ORG\n门 M-ORG\n国 M-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n兼 B-TITLE\n职 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n北 B-ORG\n京 M-ORG\n国 M-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n4 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n石 M-ORG\n油 M-ORG\n天 M-ORG\n然 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n、 O\n总 B-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n石 M-ORG\n油 M-ORG\n天 M-ORG\n然 M-ORG\n气 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n9 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n油 M-ORG\n财 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n任 O\n长 B-ORG\n江 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n2 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n南 M-ORG\n方 M-ORG\n航 M-ORG\n空 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n南 B-ORG\n洋 M-ORG\n商 M-ORG\n业 M-ORG\n银 M-ORG\n行 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n东 M-ORG\n方 M-ORG\n电 M-ORG\n气 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n神 M-ORG\n华 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n粮 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n外 B-TITLE\n部 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n俊 M-NAME\n峰 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n研 B-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n， O\n国 B-ORG\n家 M-ORG\n发 M-ORG\n改 M-ORG\n委 M-ORG\n能 M-ORG\n源 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n， O\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n4 O\n月 O\n， O\n株 B-ORG\n洲 M-ORG\n时 M-ORG\n代 M-ORG\n新 M-ORG\n材 M-ORG\n料 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n， O\n龙 B-ORG\n源 M-ORG\n电 M-ORG\n力 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n非 B-TITLE\n执 M-TITLE\n行 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n， O\n国 B-ORG\n家 M-ORG\n气 M-ORG\n候 M-ORG\n变 M-ORG\n化 M-ORG\n战 M-ORG\n略 M-ORG\n研 M-ORG\n究 M-ORG\n和 M-ORG\n国 M-ORG\n际 M-ORG\n合 M-ORG\n作 M-ORG\n中 M-ORG\n心 E-ORG\n， O\n主 B-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n至 O\n今 O\n， O\n日 B-ORG\n出 M-ORG\n东 M-ORG\n方 M-ORG\n太 M-ORG\n阳 M-ORG\n能 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n宗 M-NAME\n军 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n6 O\n月 O\n起 O\n任 O\n职 O\n于 O\n宁 B-ORG\n海 M-ORG\n县 M-ORG\n日 M-ORG\n升 M-ORG\n电 M-ORG\n器 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n质 B-TITLE\n检 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n至 O\n今 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n赵 B-NAME\n景 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n4 O\n2 O\n岁 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n， O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n山 B-ORG\n东 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n系 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n大 M-ORG\n学 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n院 B-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n7 O\n月 O\n1 O\n5 O\n日 O\n至 O\n2 O\n0 O\n0 O\n1 O\n年 O\n7 O\n月 O\n2 O\n0 O\n日 O\n参 O\n加 O\n了 O\n由 O\n中 B-ORG\n国 M-ORG\n证 M-ORG\n券 M-ORG\n监 M-ORG\n督 M-ORG\n管 M-ORG\n理 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n和 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n共 O\n同 O\n举 O\n办 O\n的 O\n上 O\n市 O\n公 O\n司 O\n独 O\n立 O\n董 O\n事 O\n培 O\n训 O\n班 O\n， O\n并 O\n取 O\n得 O\n了 O\n结 O\n业 O\n证 O\n书 O\n。 O\n\n现 O\n为 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n沈 B-NAME\n予 M-NAME\n方 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n百 B-ORG\n威 M-ORG\n（ M-ORG\n武 M-ORG\n汉 M-ORG\n） M-ORG\n啤 M-ORG\n酒 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n上 M-ORG\n海 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n百 B-ORG\n威 M-ORG\n英 M-ORG\n博 M-ORG\n啤 M-ORG\n酒 M-ORG\n（ M-ORG\n投 M-ORG\n资 M-ORG\n） M-ORG\n中 M-ORG\n国 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n监 E-TITLE\n， O\n冠 B-ORG\n生 M-ORG\n园 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n金 M-ORG\n枫 M-ORG\n酒 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n市 B-TITLE\n场 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n金 M-ORG\n枫 M-ORG\n酒 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n胡 B-NAME\n奎 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n7 O\n4 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n月 O\n1 O\n日 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n2 O\n5 O\n日 O\n， O\n任 O\n河 B-ORG\n南 M-ORG\n华 M-ORG\n英 M-ORG\n农 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n2 O\n6 O\n日 O\n至 O\n今 O\n， O\n任 O\n河 B-ORG\n南 M-ORG\n华 M-ORG\n英 M-ORG\n农 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n华 B-ORG\n英 M-ORG\n樱 M-ORG\n桃 M-ORG\n谷 M-ORG\n食 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n河 B-ORG\n南 M-ORG\n华 M-ORG\n英 M-ORG\n农 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n方 B-NAME\n培 M-NAME\n琦 E-NAME\n男 O\n1 O\n9 O\n6 O\n1 O\n年 O\n9 O\n月 O\n出 O\n生 O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n雷 M-ORG\n磁 M-ORG\n仪 M-ORG\n器 M-ORG\n总 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n上 B-ORG\n海 M-ORG\n惠 M-ORG\n普 M-ORG\n分 M-ORG\n析 M-ORG\n仪 M-ORG\n器 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n上 B-ORG\n海 M-ORG\n精 M-ORG\n密 M-ORG\n科 M-ORG\n学 M-ORG\n仪 M-ORG\n器 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n仪 M-ORG\n电 M-ORG\n控 M-ORG\n股 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n华 M-ORG\n虹 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n第 B-TITLE\n五 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n高 B-NAME\n德 M-NAME\n柱 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n4 O\n0 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n二 O\n零 O\n零 O\n九 O\n年 O\n六 O\n月 O\n起 O\n获 O\n委 O\n任 O\n为 O\n江 B-ORG\n西 M-ORG\n铜 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n非 M-TITLE\n执 M-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n银 M-ORG\n行 E-ORG\n副 B-TITLE\n行 M-TITLE\n长 E-TITLE\n、 O\n国 B-ORG\n家 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n工 M-ORG\n业 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n工 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n并 O\n担 O\n任 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n银 M-ORG\n行 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n、 O\n辽 B-ORG\n宁 M-ORG\n大 M-ORG\n学 E-ORG\n、 O\n中 B-ORG\n南 M-ORG\n大 M-ORG\n学 E-ORG\n和 O\n昆 B-ORG\n明 M-ORG\n理 M-ORG\n工 M-ORG\n大 M-ORG\n学 E-ORG\n兼 B-TITLE\n职 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n在 O\n金 O\n融 O\n、 O\n有 O\n色 O\n金 O\n属 O\n行 O\n业 O\n管 O\n理 O\n等 O\n方 O\n面 O\n有 O\n丰 O\n富 O\n经 O\n验 O\n。 O\n\n高 S-NAME\n先 O\n生 O\n已 O\n于 O\n2 O\n0 O\n1 O\n5 O\n年 O\n1 O\n月 O\n卸 O\n任 O\n独 O\n董 O\n一 O\n职 O\n。 O\n\n林 B-NAME\n乐 M-NAME\n清 E-NAME\n， O\n男 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n资 M-TITLE\n产 M-TITLE\n评 M-TITLE\n估 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n4 O\n月 O\n兼 O\n任 O\n山 B-ORG\n东 M-ORG\n高 M-ORG\n速 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n4 O\n月 O\n至 O\n本 O\n报 O\n告 O\n期 O\n末 O\n， O\n兼 O\n任 O\n山 B-ORG\n东 M-ORG\n高 M-ORG\n速 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n独 M-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n向 B-NAME\n左 M-NAME\n云 E-NAME\n先 O\n生 O\n： O\n监 B-TITLE\n事 E-TITLE\n， O\n南 B-ORG\n开 M-ORG\n大 M-ORG\n学 E-ORG\n生 B-PRO\n物 M-PRO\n化 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n、 O\n助 B-TITLE\n理 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n。 O\n\n向 O\n左 O\n云 O\n先 O\n生 O\n长 O\n期 O\n从 O\n事 O\n病 O\n毒 O\n学 O\n及 O\n生 O\n化 O\n药 O\n物 O\n纯 O\n化 O\n工 O\n艺 O\n研 O\n究 O\n， O\n在 O\n国 O\n内 O\n学 O\n术 O\n期 O\n刊 O\n发 O\n表 O\n学 O\n术 O\n论 O\n文 O\n十 O\n余 O\n篇 O\n， O\n并 O\n荣 O\n获 O\n2 O\n0 O\n0 O\n7 O\n年 O\n云 O\n南 O\n省 O\n科 O\n技 O\n进 O\n步 O\n二 O\n等 O\n奖 O\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n加 O\n盟 O\n云 B-ORG\n南 M-ORG\n沃 M-ORG\n森 M-ORG\n生 M-ORG\n物 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n历 O\n任 O\n公 B-ORG\n司 E-ORG\n研 B-TITLE\n究 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n部 B-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n云 B-ORG\n南 M-ORG\n沃 M-ORG\n森 M-ORG\n生 M-ORG\n物 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n研 B-TITLE\n发 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n乐 M-NAME\n鸣 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n医 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n， O\n主 B-TITLE\n任 M-TITLE\n医 M-TITLE\n师 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n。 O\n\n曾 O\n任 O\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n第 M-ORG\n二 M-ORG\n医 M-ORG\n院 E-ORG\n肿 B-TITLE\n瘤 M-TITLE\n科 M-TITLE\n科 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n第 M-ORG\n二 M-ORG\n医 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n宁 B-ORG\n波 M-ORG\n市 M-ORG\n第 M-ORG\n二 M-ORG\n医 M-ORG\n院 E-ORG\n院 B-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n马 B-NAME\n挺 M-NAME\n贵 E-NAME\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n男 O\n， O\n\n1 O\n9 O\n3 O\n9 O\n年 O\n1 O\n2 O\n月 O\n1 O\n2 O\n日 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n最 O\n近 O\n五 O\n年 O\n曾 O\n任 O\n江 B-ORG\n河 M-ORG\n创 M-ORG\n建 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n已 O\n离 O\n任 O\n不 O\n在 O\n公 B-ORG\n司 E-ORG\n任 O\n职 O\n。 O\n\n朱 B-NAME\n群 M-NAME\n芬 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n在 O\n常 B-ORG\n熟 M-ORG\n金 M-ORG\n刚 M-ORG\n箱 M-ORG\n包 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n外 O\n贸 O\n部 O\n任 O\n职 O\n； O\n\n1 O\n9 O\n9 O\n3 O\n年 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n在 O\n常 B-ORG\n熟 M-ORG\n市 M-ORG\n电 M-ORG\n解 M-ORG\n铜 M-ORG\n厂 E-ORG\n办 O\n公 O\n室 O\n任 O\n职 O\n； O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n至 O\n2 O\n0 O\n0 O\n0 O\n年 O\n4 O\n月 O\n在 O\n常 B-ORG\n熟 M-ORG\n鑫 M-ORG\n成 M-ORG\n铜 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n5 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n8 O\n月 O\n在 O\n常 B-ORG\n熟 M-ORG\n市 M-ORG\n铁 M-ORG\n塔 M-ORG\n厂 E-ORG\n、 O\n常 B-ORG\n熟 M-ORG\n市 M-ORG\n铁 M-ORG\n塔 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n任 O\n外 B-TITLE\n贸 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n常 B-ORG\n熟 M-ORG\n风 M-ORG\n范 M-ORG\n电 M-ORG\n力 M-ORG\n设 M-ORG\n备 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n国 B-TITLE\n际 M-TITLE\n业 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n高 B-NAME\n力 M-NAME\n生 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n4 O\n月 O\n生 O\n， O\n籍 B-LOC\n贯 M-LOC\n河 M-LOC\n北 M-LOC\n省 M-LOC\n大 M-LOC\n名 M-LOC\n县 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n至 O\n1 O\n9 O\n8 O\n1 O\n年 O\n在 O\n广 B-ORG\n西 M-ORG\n航 M-ORG\n运 M-ORG\n学 M-ORG\n校 E-ORG\n学 O\n习 O\n； O\n\n毕 O\n业 O\n分 O\n配 O\n南 B-ORG\n宁 M-ORG\n船 M-ORG\n厂 E-ORG\n工 O\n作 O\n； O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n至 O\n1 O\n9 O\n8 O\n6 O\n年 O\n在 O\n广 B-ORG\n西 M-ORG\n电 M-ORG\n大 E-ORG\n工 B-PRO\n业 M-PRO\n会 M-PRO\n计 M-PRO\n专 M-PRO\n业 E-PRO\n学 O\n习 O\n； O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n至 O\n2 O\n0 O\n0 O\n6 O\n年 O\n历 O\n任 O\n中 B-ORG\n国 M-ORG\n广 M-ORG\n西 M-ORG\n国 M-ORG\n际 M-ORG\n经 M-ORG\n济 M-ORG\n技 M-ORG\n术 M-ORG\n合 M-ORG\n作 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n三 B-TITLE\n总 M-TITLE\n师 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n（ O\n期 O\n间 O\n1 O\n9 O\n9 O\n1 O\n年 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n派 O\n往 O\n巴 B-ORG\n基 M-ORG\n斯 M-ORG\n坦 E-ORG\n工 O\n作 O\n， O\n任 O\n水 B-TITLE\n利 M-TITLE\n工 M-TITLE\n程 M-TITLE\n项 M-TITLE\n目 M-TITLE\n经 M-TITLE\n理 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 M-TITLE\n主 M-TITLE\n管 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n在 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n企 B-PRO\n业 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n班 E-EDU\n学 O\n习 O\n、 O\n结 O\n业 O\n） O\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n至 O\n今 O\n任 O\n广 B-ORG\n西 M-ORG\n国 M-ORG\n宏 M-ORG\n经 M-ORG\n济 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n西 M-ORG\n五 M-ORG\n洲 M-ORG\n交 M-ORG\n通 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n杨 B-NAME\n海 M-NAME\n江 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n出 O\n生 O\n， O\n中 B-ORG\n海 M-ORG\n油 M-ORG\n服 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n毕 O\n业 O\n于 O\n解 B-ORG\n放 M-ORG\n军 M-ORG\n国 M-ORG\n际 M-ORG\n关 M-ORG\n系 M-ORG\n学 M-ORG\n院 E-ORG\n英 B-ORG\n语 M-ORG\n专 M-ORG\n业 E-ORG\n， O\n获 O\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n并 O\n自 O\n2 O\n0 O\n0 O\n3 O\n年 O\n以 O\n来 O\n拥 O\n有 O\n中 B-TITLE\n国 M-TITLE\n律 M-TITLE\n师 M-TITLE\n资 M-TITLE\n格 E-TITLE\n。 O\n\n于 O\n2 O\n0 O\n0 O\n8 O\n年 O\n， O\n杨 S-NAME\n先 O\n生 O\n取 O\n得 O\n上 B-ORG\n海 M-ORG\n证 M-ORG\n券 M-ORG\n交 M-ORG\n易 M-ORG\n所 E-ORG\n颁 O\n发 O\n的 O\n公 B-TITLE\n司 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n资 M-TITLE\n格 E-TITLE\n。 O\n\n杨 S-NAME\n先 O\n生 O\n于 O\n1 O\n9 O\n9 O\n8 O\n年 O\n从 O\n中 B-ORG\n国 M-ORG\n人 M-ORG\n民 M-ORG\n解 M-ORG\n放 M-ORG\n军 E-ORG\n上 B-TITLE\n尉 M-TITLE\n军 M-TITLE\n衔 E-TITLE\n退 O\n役 O\n后 O\n加 O\n入 O\n中 B-ORG\n海 M-ORG\n油 M-ORG\n服 E-ORG\n， O\n自 O\n2 O\n0 O\n0 O\n3 O\n年 O\n5 O\n月 O\n起 O\n分 O\n别 O\n担 O\n任 O\n中 B-ORG\n海 M-ORG\n油 M-ORG\n服 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n及 M-TITLE\n法 M-TITLE\n律 M-TITLE\n事 M-TITLE\n务 M-TITLE\n部 M-TITLE\n法 M-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n治 B-TITLE\n理 M-TITLE\n与 M-TITLE\n证 M-TITLE\n券 M-TITLE\n业 M-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n事 M-TITLE\n务 M-TITLE\n代 M-TITLE\n表 E-TITLE\n， O\n负 O\n责 O\n处 O\n理 O\n本 O\n公 O\n司 O\n董 O\n事 O\n会 O\n、 O\n监 O\n事 O\n会 O\n及 O\n股 O\n东 O\n的 O\n法 O\n律 O\n事 O\n宜 O\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n4 O\n月 O\n， O\n杨 S-NAME\n先 O\n生 O\n获 O\n任 O\n为 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n姚 B-NAME\n桂 M-NAME\n清 E-NAME\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n同 O\n时 O\n任 O\n中 B-ORG\n铁 M-ORG\n工 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n中 B-ORG\n华 M-ORG\n全 M-ORG\n国 M-ORG\n总 M-ORG\n工 M-ORG\n会 E-ORG\n执 B-TITLE\n行 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n7 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n铁 M-ORG\n工 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n至 O\n今 O\n任 O\n中 B-ORG\n铁 M-ORG\n工 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n全 B-ORG\n国 M-ORG\n总 M-ORG\n工 M-ORG\n会 E-ORG\n执 B-TITLE\n行 M-TITLE\n委 M-TITLE\n员 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n， O\n兼 O\n任 O\n中 B-ORG\n铁 M-ORG\n九 M-ORG\n局 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n任 O\n中 B-ORG\n铁 M-ORG\n工 E-ORG\n职 B-TITLE\n工 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n6 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n任 O\n中 B-ORG\n铁 M-ORG\n工 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n8 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n国 M-ORG\n中 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n3 O\n月 O\n至 O\n今 O\n任 O\n中 B-ORG\n铁 M-ORG\n工 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n姚 S-NAME\n先 O\n生 O\n毕 O\n业 O\n于 O\n中 B-ORG\n央 M-ORG\n党 M-ORG\n校 E-ORG\n经 B-PRO\n济 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n并 O\n取 O\n得 O\n中 B-ORG\n央 M-ORG\n党 M-ORG\n校 E-ORG\n经 B-PRO\n济 M-PRO\n管 M-PRO\n理 M-PRO\n专 M-PRO\n业 E-PRO\n在 B-EDU\n职 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n孙 B-NAME\n华 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n1 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n毕 O\n业 O\n于 O\n澳 B-ORG\n大 M-ORG\n利 M-ORG\n亚 M-ORG\n新 M-ORG\n南 M-ORG\n威 M-ORG\n尔 M-ORG\n士 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n获 O\n得 O\n国 B-PRO\n际 M-PRO\n会 M-PRO\n计 M-PRO\n商 M-PRO\n学 E-PRO\n硕 B-EDU\n士 E-EDU\n。 O\n\n自 O\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n月 O\n起 O\n， O\n就 O\n职 O\n于 O\n北 B-ORG\n京 M-ORG\n嘉 M-ORG\n华 M-ORG\n筑 M-ORG\n业 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n任 O\n期 O\n已 O\n届 O\n满 O\n， O\n离 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n魏 B-NAME\n相 M-NAME\n永 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n起 O\n至 O\n今 O\n担 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n5 O\n月 O\n受 O\n聘 O\n担 O\n任 O\n包 B-ORG\n头 M-ORG\n华 M-ORG\n资 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n职 O\n务 O\n。 O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n5 O\n月 O\n不 O\n再 O\n担 O\n任 O\n包 B-ORG\n头 M-ORG\n华 M-ORG\n资 M-ORG\n实 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n王 B-NAME\n明 M-NAME\n中 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n— O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n月 O\n， O\n任 O\n中 B-ORG\n原 M-ORG\n环 M-ORG\n保 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n月 O\n至 O\n今 O\n， O\n任 O\n中 B-ORG\n原 M-ORG\n环 M-ORG\n保 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n刘 B-NAME\n志 M-NAME\n敏 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n职 O\n称 O\n。 O\n\n历 O\n任 O\n上 B-ORG\n海 M-ORG\n北 M-ORG\n方 M-ORG\n企 M-ORG\n业 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n闸 M-ORG\n北 M-ORG\n区 M-ORG\n国 M-ORG\n资 M-ORG\n委 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n主 B-TITLE\n任 E-TITLE\n等 O\n， O\n历 O\n任 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n北 M-ORG\n高 M-ORG\n新 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n北 M-ORG\n高 M-ORG\n新 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n于 B-NAME\n剑 M-NAME\n波 E-NAME\n， O\n男 O\n， O\n中 B-ORG\n国 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n院 E-ORG\n博 B-EDU\n士 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n1 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n， O\n就 O\n职 O\n于 O\n国 B-ORG\n家 M-ORG\n级 M-ORG\n当 M-ORG\n代 M-ORG\n中 M-ORG\n国 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n， O\n专 O\n门 O\n从 O\n事 O\n当 O\n代 O\n重 O\n大 O\n经 O\n济 O\n问 O\n题 O\n研 O\n究 O\n， O\n著 O\n有 O\n《 O\n国 O\n力 O\n论 O\n》 O\n等 O\n著 O\n作 O\n十 O\n余 O\n部 O\n， O\n并 O\n获 O\n得 O\n过 O\n国 O\n家 O\n级 O\n著 O\n作 O\n奖 O\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n， O\n任 O\n今 B-ORG\n日 M-ORG\n投 M-ORG\n资 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n执 B-TITLE\n行 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n欧 B-ORG\n倍 M-ORG\n德 E-ORG\n中 B-TITLE\n国 M-TITLE\n区 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n兼 O\n任 O\n山 B-ORG\n大 M-ORG\n华 M-ORG\n特 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n在 O\n北 B-ORG\n京 M-ORG\n物 M-ORG\n美 M-ORG\n商 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n任 O\n高 B-TITLE\n级 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n孙 B-NAME\n治 M-NAME\n成 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n（ O\n研 O\n究 O\n员 O\n级 O\n） O\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n政 O\n府 O\n特 O\n殊 O\n津 O\n贴 O\n专 O\n家 O\n。 O\n\n历 O\n任 O\n湖 B-ORG\n南 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n厂 E-ORG\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n计 M-ORG\n算 M-ORG\n机 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n意 B-ORG\n中 M-ORG\n希 M-ORG\n诺 M-ORG\n达 M-ORG\n国 M-ORG\n际 M-ORG\n商 M-ORG\n用 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n裁 E-TITLE\n， O\n有 O\n二 O\n十 O\n多 O\n年 O\n科 O\n研 O\n开 O\n发 O\n、 O\n技 O\n术 O\n管 O\n理 O\n、 O\n企 O\n业 O\n经 O\n营 O\n的 O\n经 O\n验 O\n。 O\n\n潘 B-NAME\n平 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n二 B-TITLE\n级 M-TITLE\n律 M-TITLE\n师 E-TITLE\n， O\n曾 O\n在 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n人 M-ORG\n民 M-ORG\n检 M-ORG\n察 M-ORG\n院 E-ORG\n、 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n经 M-ORG\n济 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n任 O\n职 O\n， O\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n安 B-ORG\n徽 M-ORG\n安 M-ORG\n泰 M-ORG\n达 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n合 M-TITLE\n伙 M-TITLE\n人 E-TITLE\n。 O\n\n葛 B-NAME\n均 M-NAME\n友 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n四 B-ORG\n川 M-ORG\n科 M-ORG\n伦 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n执 B-TITLE\n业 M-TITLE\n药 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n上 B-ORG\n海 M-ORG\n延 M-ORG\n安 M-ORG\n制 M-ORG\n药 M-ORG\n厂 E-ORG\n生 B-TITLE\n产 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n恒 M-ORG\n寿 M-ORG\n堂 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n技 M-TITLE\n术 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n勃 M-ORG\n林 M-ORG\n格 M-ORG\n殷 M-ORG\n格 M-ORG\n翰 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\nG B-TITLE\nM M-TITLE\nP M-TITLE\n监 M-TITLE\n督 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n海 M-ORG\n正 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n德 B-ORG\n国 M-ORG\nR M-ORG\nA M-ORG\nT M-ORG\nI M-ORG\nO M-ORG\nP M-ORG\nH M-ORG\nA M-ORG\nR M-ORG\nM M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n亚 B-TITLE\n太 M-TITLE\n区 M-TITLE\n质 M-TITLE\n量 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n为 O\n国 B-ORG\n家 M-ORG\n药 M-ORG\n监 M-ORG\n局 M-ORG\n高 M-ORG\n级 M-ORG\n研 M-ORG\n修 M-ORG\n学 M-ORG\n院 E-ORG\n特 B-TITLE\n聘 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n医 M-ORG\n药 M-ORG\n质 M-ORG\n量 M-ORG\n管 M-ORG\n理 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n， O\n成 B-ORG\n都 M-ORG\n药 M-ORG\n学 M-ORG\n会 M-ORG\n生 M-ORG\n产 M-ORG\n质 M-ORG\n量 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n主 B-TITLE\n任 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n6 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n质 B-TITLE\n量 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n6 O\n月 O\n起 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n负 O\n责 O\n质 O\n量 O\n管 O\n理 O\n。 O\n\n目 O\n前 O\n兼 O\n任 O\n成 B-ORG\n都 M-ORG\n青 M-ORG\n山 M-ORG\n利 M-ORG\n康 M-ORG\n药 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n四 B-ORG\n川 M-ORG\n科 M-ORG\n伦 M-ORG\n斗 M-ORG\n山 M-ORG\n生 M-ORG\n物 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n田 B-NAME\n承 M-NAME\n明 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n中 B-LOC\n国 M-LOC\n台 M-LOC\n湾 E-LOC\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n毕 O\n业 O\n于 O\n台 B-ORG\n湾 M-ORG\n中 M-ORG\n正 M-ORG\n理 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n电 B-PRO\n子 M-PRO\n电 M-PRO\n机 M-PRO\n专 M-PRO\n业 E-PRO\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n2 O\n月 O\n任 O\n数 B-ORG\n位 M-ORG\n联 M-ORG\n合 M-ORG\n电 M-ORG\n信 M-ORG\n（ M-ORG\n台 M-ORG\n湾 M-ORG\n地 M-ORG\n区 M-ORG\n） E-ORG\n事 B-TITLE\n业 M-TITLE\n群 M-TITLE\n协 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n2 O\n月 O\n任 O\n五 B-ORG\n色 M-ORG\n石 M-ORG\n数 M-ORG\n位 M-ORG\n行 M-ORG\n销 M-ORG\n（ M-ORG\n台 M-ORG\n湾 M-ORG\n地 M-ORG\n区 M-ORG\n） E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n0 O\n月 O\n任 O\n任 B-ORG\n我 M-ORG\n游 M-ORG\n科 M-ORG\n技 M-ORG\n行 M-ORG\n销 M-ORG\n（ M-ORG\n台 M-ORG\n湾 M-ORG\n地 M-ORG\n区 M-ORG\n） E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n1 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n任 O\n厦 B-ORG\n门 M-ORG\n华 M-ORG\n日 M-ORG\n通 M-ORG\n软 M-ORG\n件 E-ORG\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n五 M-ORG\n互 M-ORG\n联 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n朱 B-NAME\n学 M-NAME\n军 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n专 M-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n历 O\n任 O\n江 B-ORG\n西 M-ORG\n齿 M-ORG\n轮 M-ORG\n箱 M-ORG\n总 M-ORG\n厂 E-ORG\n主 B-TITLE\n办 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n计 M-TITLE\n划 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n外 M-ORG\n合 M-ORG\n作 M-ORG\n江 M-ORG\n西 M-ORG\n江 M-ORG\n凯 M-ORG\n齿 M-ORG\n轮 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n江 M-ORG\n铃 M-ORG\n齿 M-ORG\n轮 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n江 B-ORG\n西 M-ORG\n江 M-ORG\n铃 M-ORG\n齿 M-ORG\n轮 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n经 B-TITLE\n营 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n江 B-ORG\n铃 M-ORG\n汽 M-ORG\n车 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\nV B-TITLE\nM M-TITLE\n发 M-TITLE\n动 M-TITLE\n机 M-TITLE\n项 M-TITLE\n目 M-TITLE\n指 M-TITLE\n挥 M-TITLE\n部 M-TITLE\n财 M-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n江 B-ORG\n铃 M-ORG\n汽 M-ORG\n车 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n财 M-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n兼 O\n任 O\n江 B-ORG\n铃 M-ORG\n集 M-ORG\n团 M-ORG\n改 M-ORG\n装 M-ORG\n车 M-ORG\n总 M-ORG\n厂 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n江 B-ORG\n铃 M-ORG\n汽 M-ORG\n车 M-ORG\n集 M-ORG\n团 M-ORG\n财 M-ORG\n务 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n曹 B-NAME\n海 M-NAME\n峰 E-NAME\n先 O\n生 O\n： O\n天 B-ORG\n津 M-ORG\n财 M-ORG\n经 M-ORG\n学 M-ORG\n院 E-ORG\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n7 O\n月 O\n， O\n任 O\n中 B-ORG\n源 M-ORG\n协 M-ORG\n和 M-ORG\n细 M-ORG\n胞 M-ORG\n基 M-ORG\n因 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n管 B-NAME\n一 M-NAME\n民 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n0 O\n年 O\n4 O\n月 O\n， O\n本 B-EDU\n科 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n。 O\n\n曾 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 M-ORG\n成 M-ORG\n人 M-ORG\n教 M-ORG\n育 M-ORG\n学 M-ORG\n院 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n财 M-ORG\n经 M-ORG\n大 M-ORG\n学 E-ORG\n校 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n国 M-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n副 B-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n资 M-ORG\n产 M-ORG\n评 M-ORG\n估 M-ORG\n协 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n国 M-ORG\n家 M-ORG\n会 M-ORG\n计 M-ORG\n学 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n总 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n工 M-ORG\n作 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n以 O\n及 O\n多 B-ORG\n家 M-ORG\n上 M-ORG\n市 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n重 B-ORG\n庆 M-ORG\n博 M-ORG\n腾 M-ORG\n制 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n银 M-ORG\n行 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n上 B-ORG\n海 M-ORG\n国 M-ORG\n际 M-ORG\n港 M-ORG\n务 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n中 B-ORG\n海 M-ORG\n集 M-ORG\n装 M-ORG\n箱 M-ORG\n运 M-ORG\n输 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n以 O\n及 O\n天 B-ORG\n津 M-ORG\n创 M-ORG\n业 M-ORG\n环 M-ORG\n保 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n复 M-ORG\n星 M-ORG\n医 M-ORG\n药 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n付 B-NAME\n万 M-NAME\n君 E-NAME\n先 O\n生 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n5 O\n9 O\n年 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n洛 B-ORG\n阳 M-ORG\n轴 M-ORG\n承 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n会 B-TITLE\n计 M-TITLE\n员 E-TITLE\n、 O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n财 B-TITLE\n会 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n会 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n洛 B-ORG\n阳 M-ORG\n轴 M-ORG\n研 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n证 M-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n资 B-TITLE\n产 M-TITLE\n建 M-TITLE\n管 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n公 B-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n丁 B-NAME\n文 M-NAME\n艺 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n4 O\n年 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n1 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n射 M-ORG\n洪 M-ORG\n县 M-ORG\n太 M-ORG\n和 M-ORG\n一 M-ORG\n小 E-ORG\n教 B-TITLE\n导 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n射 B-ORG\n洪 M-ORG\n县 M-ORG\n教 M-ORG\n委 E-ORG\n语 B-TITLE\n文 M-TITLE\n教 M-TITLE\n研 M-TITLE\n员 E-TITLE\n、 O\n射 B-ORG\n洪 M-ORG\n县 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n行 B-TITLE\n政 M-TITLE\n办 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n党 B-TITLE\n办 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n射 B-ORG\n洪 M-ORG\n县 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n党 B-TITLE\n组 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n局 B-TITLE\n长 E-TITLE\n\n钟 B-NAME\n荣 M-NAME\n光 E-NAME\n， O\n男 O\n， O\n国 O\n籍 O\n新 B-CONT\n加 M-CONT\n坡 E-CONT\n， O\n\n1 O\n9 O\n8 O\n0 O\n年 O\n毕 O\n业 O\n于 O\n英 B-ORG\n国 M-ORG\n特 M-ORG\n许 M-ORG\n秘 M-ORG\n书 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n并 O\n拥 O\n有 O\n英 B-ORG\n国 M-ORG\nS M-ORG\nh M-ORG\ne M-ORG\nf M-ORG\nf M-ORG\ni M-ORG\ne M-ORG\nl M-ORG\nd M-ORG\nH M-ORG\na M-ORG\nl M-ORG\nl M-ORG\na M-ORG\nm M-ORG\n大 M-ORG\n学 E-ORG\n商 B-PRO\n业 M-PRO\n管 M-PRO\n理 E-PRO\n文 O\n凭 O\n。 O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n升 O\n为 O\n英 B-ORG\n国 M-ORG\n特 M-ORG\n许 M-ORG\n秘 M-ORG\n书 M-ORG\n学 M-ORG\n院 E-ORG\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n任 O\n新 B-ORG\n加 M-ORG\n坡 M-ORG\n金 M-ORG\n狮 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n金 B-ORG\n狮 M-ORG\n金 M-ORG\n属 M-ORG\n工 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n雅 O\n加 O\n达 O\n证 O\n交 O\n所 O\n上 O\n市 O\n公 O\n司 O\n） O\n、 O\n朱 B-ORG\n古 M-ORG\n力 M-ORG\n产 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n马 O\n来 O\n西 O\n亚 O\n证 O\n交 O\n所 O\n上 O\n市 O\n公 O\n司 O\n） O\n、 O\n新 B-ORG\n加 M-ORG\n坡 M-ORG\n金 M-ORG\n狮 M-ORG\n亚 M-ORG\n太 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n（ O\n新 O\n加 O\n坡 O\n证 O\n交 O\n所 O\n上 O\n市 O\n公 O\n司 O\n） O\n常 B-TITLE\n务 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n浙 B-ORG\n江 M-ORG\n钱 M-ORG\n江 M-ORG\n摩 M-ORG\n托 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n石 B-NAME\n红 M-NAME\n艳 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n红 B-ORG\n珠 M-ORG\n山 M-ORG\n宾 M-ORG\n馆 M-ORG\n分 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n1 O\n1 O\n月 O\n至 O\n今 O\n任 O\n峨 B-ORG\n眉 M-ORG\n山 M-ORG\n旅 M-ORG\n游 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n马 M-NAME\n克 E-NAME\n， O\n男 O\n， O\n澳 B-LOC\n洲 M-LOC\n国 M-LOC\n籍 E-LOC\n， O\n学 B-EDU\n士 E-EDU\n。 O\n\n历 O\n任 O\n香 B-ORG\n港 M-ORG\n五 M-ORG\n矿 M-ORG\n资 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n兼 O\n中 B-ORG\n国 M-ORG\n五 M-ORG\n矿 M-ORG\n有 M-ORG\n色 M-ORG\n集 M-ORG\n团 E-ORG\n业 B-TITLE\n务 M-TITLE\n发 M-TITLE\n展 M-TITLE\n资 M-TITLE\n深 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n澳 B-ORG\n洲 M-ORG\nM M-ORG\nM M-ORG\nG M-ORG\n金 M-ORG\n属 M-ORG\n矿 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n股 B-TITLE\n东 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n现 O\n任 O\n东 B-ORG\n方 M-ORG\n集 M-ORG\n团 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n东 B-ORG\n方 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n总 B-TITLE\n裁 E-TITLE\n。 O\n\n李 B-NAME\n云 M-NAME\n章 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n助 B-TITLE\n理 M-TITLE\n研 M-TITLE\n究 M-TITLE\n员 E-TITLE\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n浦 B-ORG\n东 M-ORG\n新 M-ORG\n区 M-ORG\n经 M-ORG\n济 M-ORG\n贸 M-ORG\n易 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n外 M-ORG\n高 M-ORG\n桥 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n现 O\n任 O\n上 B-ORG\n海 M-ORG\n外 M-ORG\n高 M-ORG\n桥 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n杨 B-NAME\n建 M-NAME\n萍 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n0 O\n月 O\n生 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n职 O\n称 O\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n任 O\n职 O\n于 O\nE B-ORG\nA M-ORG\nS M-ORG\nT M-ORG\nP M-ORG\nU M-ORG\nF M-ORG\nF M-ORG\nI M-ORG\nN M-ORG\n石 M-ORG\n油 M-ORG\n勘 M-ORG\n探 M-ORG\n公 M-ORG\n司 E-ORG\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n任 O\n职 O\n于 O\n中 B-ORG\n冶 M-ORG\n纸 M-ORG\n业 M-ORG\n集 M-ORG\n团 E-ORG\n担 O\n任 O\n贸 B-TITLE\n易 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n起 O\n加 O\n入 O\n深 B-ORG\n圳 M-ORG\n键 M-ORG\n桥 M-ORG\n通 M-ORG\n讯 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n现 O\n担 O\n任 O\n深 B-ORG\n圳 M-ORG\n键 M-ORG\n桥 M-ORG\n通 M-ORG\n讯 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n白 B-NAME\n有 M-NAME\n忠 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n4 O\n1 O\n年 O\n出 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n毕 O\n业 O\n于 O\n中 B-ORG\n央 M-ORG\n民 M-ORG\n族 M-ORG\n学 M-ORG\n院 M-ORG\n政 M-ORG\n法 M-ORG\n系 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n执 B-TITLE\n业 M-TITLE\n律 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n5 O\n月 O\n至 O\n今 O\n， O\n任 O\n广 B-ORG\n东 M-ORG\n逸 M-ORG\n生 M-ORG\n律 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n顾 B-TITLE\n问 E-TITLE\n、 O\n执 B-TITLE\n业 M-TITLE\n律 M-TITLE\n师 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n5 O\n月 O\n， O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n王 B-NAME\n苏 M-NAME\n生 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n3 O\n月 O\n9 O\n日 O\n出 O\n生 O\n， O\n法 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n、 O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n中 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n律 B-TITLE\n师 E-TITLE\n、 O\n美 B-TITLE\n国 M-TITLE\n注 M-TITLE\n册 M-TITLE\n金 M-TITLE\n融 M-TITLE\n分 M-TITLE\n析 M-TITLE\n师 E-TITLE\n（ O\nC O\nF O\nA O\n） O\n。 O\n\n历 O\n任 O\n深 B-ORG\n圳 M-ORG\n经 M-ORG\n济 M-ORG\n特 M-ORG\n区 M-ORG\n证 M-ORG\n券 M-ORG\n公 M-ORG\n司 M-ORG\n罗 M-ORG\n湖 M-ORG\n营 M-ORG\n业 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n蔚 B-ORG\n深 M-ORG\n证 M-ORG\n券 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 M-ORG\n武 M-ORG\n汉 M-ORG\n营 M-ORG\n业 M-ORG\n部 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n处 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n国 B-ORG\n家 M-ORG\n开 M-ORG\n发 M-ORG\n银 M-ORG\n行 M-ORG\n中 M-ORG\n瑞 M-ORG\n创 M-ORG\n业 M-ORG\n投 M-ORG\n资 M-ORG\n基 M-ORG\n金 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n至 O\n今 O\n任 O\n哈 B-ORG\n尔 M-ORG\n滨 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n深 M-ORG\n圳 M-ORG\n研 M-ORG\n究 M-ORG\n生 M-ORG\n院 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n雷 M-ORG\n柏 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n蒲 B-NAME\n承 M-NAME\n民 E-NAME\n： O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n先 O\n后 O\n任 O\n职 O\n于 O\n西 B-ORG\n安 M-ORG\n市 M-ORG\n财 M-ORG\n政 M-ORG\n局 E-ORG\n、 O\n税 B-ORG\n务 M-ORG\n局 E-ORG\n、 O\n财 B-ORG\n政 M-ORG\n部 M-ORG\n驻 M-ORG\n陕 M-ORG\n监 M-ORG\n察 M-ORG\n专 M-ORG\n员 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n， O\n并 O\n曾 O\n兼 O\n任 O\n西 B-ORG\n安 M-ORG\n市 M-ORG\n商 M-ORG\n业 M-ORG\n银 M-ORG\n行 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n监 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n西 B-ORG\n安 M-ORG\n市 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n。 O\n\n阿 B-NAME\n肖 M-NAME\n克 M-NAME\n· M-NAME\n阿 M-NAME\n格 M-NAME\n瓦 E-NAME\n先 O\n生 O\n， O\n印 B-LOC\n度 M-LOC\n人 E-LOC\n， O\n印 B-CONT\n度 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\nM B-EDU\nB M-EDU\nA E-EDU\n（ O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n） O\n。 O\n\n现 O\n在 O\n米 B-ORG\n塔 M-ORG\n尔 M-ORG\n钢 M-ORG\n铁 M-ORG\n特 M-ORG\n米 M-ORG\n它 M-ORG\n公 M-ORG\n司 M-ORG\n（ M-ORG\n哈 M-ORG\n萨 M-ORG\n克 M-ORG\n斯 M-ORG\n坦 M-ORG\n） E-ORG\n任 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n负 O\n责 O\n钢 O\n铁 O\n、 O\n煤 O\n炭 O\n、 O\n焦 O\n炭 O\n、 O\n铁 O\n矿 O\n石 O\n等 O\n部 O\n门 O\n的 O\nM O\nI O\nC O\n（ O\n管 O\n理 O\n信 O\n息 O\n系 O\n统 O\n） O\n、 O\n成 O\n本 O\n预 O\n算 O\n和 O\n成 O\n本 O\n控 O\n制 O\n工 O\n作 O\n。 O\n\n邹 B-NAME\n健 M-NAME\n中 E-NAME\n： O\n男 O\n， O\n中 B-LOC\n国 M-LOC\n台 M-LOC\n湾 M-LOC\n居 M-LOC\n民 E-LOC\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n出 O\n生 O\n， O\n毕 O\n业 O\n于 O\n台 B-ORG\n北 M-ORG\n东 M-ORG\n吴 M-ORG\n大 M-ORG\n学 M-ORG\n中 M-ORG\n文 M-ORG\n系 E-ORG\n。 O\n\n历 O\n任 O\n宁 B-ORG\n波 M-ORG\n艾 M-ORG\n迪 M-ORG\n西 M-ORG\n国 M-ORG\n际 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n， O\n艾 B-ORG\n迪 M-ORG\n西 M-ORG\n铜 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n汉 B-ORG\n禹 M-ORG\n卫 M-ORG\n浴 M-ORG\n用 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n台 B-ORG\n州 M-ORG\n艾 M-ORG\n迪 M-ORG\n西 M-ORG\n盛 M-ORG\n大 M-ORG\n软 M-ORG\n管 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n艾 M-ORG\n迪 M-ORG\n西 M-ORG\n流 M-ORG\n体 M-ORG\n控 M-ORG\n制 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n兼 O\n任 O\n宁 B-ORG\n波 M-ORG\n艾 M-ORG\n迪 M-ORG\n西 M-ORG\n国 M-ORG\n际 M-ORG\n贸 M-ORG\n易 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n邹 B-NAME\n健 M-NAME\n中 E-NAME\n从 O\n2 O\n0 O\n1 O\n4 O\n年 O\n8 O\n月 O\n1 O\n9 O\n日 O\n起 O\n不 O\n再 O\n担 O\n任 O\n浙 B-ORG\n江 M-ORG\n艾 M-ORG\n迪 M-ORG\n西 M-ORG\n流 M-ORG\n体 M-ORG\n控 M-ORG\n制 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n职 O\n务 O\n。 O\n\n韩 B-NAME\n雪 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n友 M-ORG\n信 M-ORG\n达 M-ORG\n通 M-ORG\n讯 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n广 M-ORG\n播 M-ORG\n电 M-ORG\n影 M-ORG\n电 M-ORG\n视 M-ORG\n集 M-ORG\n团 M-ORG\n深 M-ORG\n视 M-ORG\n传 M-ORG\n媒 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n上 O\n市 O\n公 O\n司 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n齐 M-ORG\n心 M-ORG\n文 M-ORG\n具 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n3 O\n年 O\n8 O\n月 O\n1 O\n5 O\n日 O\n起 O\n任 O\n北 B-ORG\n海 M-ORG\n国 M-ORG\n发 M-ORG\n海 M-ORG\n洋 M-ORG\n生 M-ORG\n物 M-ORG\n产 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n韩 B-NAME\n江 M-NAME\n龙 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 E-EDU\n毕 O\n业 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n毕 O\n业 O\n于 O\n江 B-ORG\n苏 M-ORG\n化 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n。 O\n\n1 O\n9 O\n8 O\n7 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n先 O\n后 O\n担 O\n任 O\n过 O\n连 B-ORG\n云 M-ORG\n港 M-ORG\n市 M-ORG\n电 M-ORG\n子 M-ORG\n器 M-ORG\n材 M-ORG\n厂 E-ORG\n副 B-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n厂 B-TITLE\n长 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n连 B-ORG\n云 M-ORG\n港 M-ORG\n华 M-ORG\n威 M-ORG\n电 M-ORG\n子 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n销 B-TITLE\n售 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n连 B-ORG\n云 M-ORG\n港 M-ORG\n中 M-ORG\n电 M-ORG\n华 M-ORG\n威 M-ORG\n电 M-ORG\n子 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n江 B-ORG\n苏 M-ORG\n长 M-ORG\n电 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n一 M-TITLE\n届 M-TITLE\n董 M-TITLE\n事 M-TITLE\n会 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n韩 B-NAME\n江 M-NAME\n龙 E-NAME\n先 O\n生 O\n1 O\n9 O\n9 O\n5 O\n年 O\n被 O\n连 B-ORG\n云 M-ORG\n港 M-ORG\n市 M-ORG\n政 M-ORG\n府 E-ORG\n评 O\n为 O\n″ O\n企 O\n业 O\n技 O\n术 O\n进 O\n步 O\n优 O\n秀 O\n工 O\n作 O\n者 O\n″ O\n， O\n其 O\n主 O\n持 O\n的 O\n″ O\nK O\nL O\n- O\n1 O\n0 O\n0 O\n0 O\nF O\n快 O\n速 O\n固 O\n化 O\n环 O\n氧 O\n模 O\n塑 O\n料 O\n″ O\n被 O\n江 O\n苏 O\n省 O\n科 O\n委 O\n授 O\n予 O\n科 O\n技 O\n进 O\n步 O\n三 O\n等 O\n奖 O\n。 O\n\n周 B-NAME\n耀 M-NAME\n良 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n出 O\n生 O\n， O\n文 O\n化 O\n程 O\n度 O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n。 O\n\n历 O\n任 O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n龙 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n软 B-TITLE\n件 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n罗 M-ORG\n湖 M-ORG\n工 M-ORG\n业 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n小 B-TITLE\n型 M-TITLE\n机 M-TITLE\n部 M-TITLE\n软 M-TITLE\n件 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n经 B-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n创 M-ORG\n思 M-ORG\n科 M-ORG\n技 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n大 M-ORG\n国 M-ORG\n飞 M-ORG\n集 M-ORG\n团 E-ORG\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n大 M-ORG\n顶 M-ORG\n峰 M-ORG\n科 M-ORG\n技 M-ORG\n创 M-ORG\n业 M-ORG\n经 M-ORG\n营 M-ORG\n管 M-ORG\n理 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n兰 M-ORG\n光 M-ORG\n电 M-ORG\n子 M-ORG\n集 M-ORG\n团 E-ORG\n技 B-TITLE\n术 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n周 B-NAME\n兆 M-NAME\n雪 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n德 M-ORG\n力 M-ORG\n玻 M-ORG\n璃 M-ORG\n器 M-ORG\n皿 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 E-TITLE\n。 O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n德 M-ORG\n力 M-ORG\n日 M-ORG\n用 M-ORG\n玻 M-ORG\n璃 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n安 B-ORG\n徽 M-ORG\n德 M-ORG\n力 M-ORG\n日 M-ORG\n用 M-ORG\n玻 M-ORG\n璃 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n温 B-NAME\n萍 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n助 B-TITLE\n理 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n7 O\n7 O\n年 O\n开 O\n始 O\n从 O\n事 O\n工 B-TITLE\n业 M-TITLE\n企 M-TITLE\n业 M-TITLE\n出 M-TITLE\n纳 E-TITLE\n、 O\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n等 O\n财 O\n务 O\n工 O\n作 O\n， O\n熟 O\n练 O\n掌 O\n握 O\n财 O\n务 O\n核 O\n算 O\n方 O\n法 O\n及 O\n业 O\n务 O\n知 O\n识 O\n， O\n曾 O\n任 O\n鞍 B-ORG\n重 M-ORG\n机 M-ORG\n器 M-ORG\n厂 E-ORG\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n鞍 B-TITLE\n山 M-TITLE\n市 M-TITLE\n立 M-TITLE\n山 M-TITLE\n区 M-TITLE\n政 M-TITLE\n协 M-TITLE\n委 M-TITLE\n员 E-TITLE\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n鞍 B-TITLE\n山 M-TITLE\n市 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n吴 B-NAME\n贵 M-NAME\n槐 E-NAME\n先 O\n生 O\n： O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n7 O\n月 O\n参 O\n加 O\n工 O\n作 O\n， O\n历 O\n任 O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n财 M-ORG\n政 M-ORG\n厅 E-ORG\n商 B-TITLE\n贸 M-TITLE\n财 M-TITLE\n务 M-TITLE\n处 M-TITLE\n办 M-TITLE\n事 M-TITLE\n员 E-TITLE\n、 O\n科 B-TITLE\n员 E-TITLE\n， O\n浙 B-ORG\n江 M-ORG\n省 M-ORG\n能 M-ORG\n源 M-ORG\n原 M-ORG\n材 M-ORG\n料 M-ORG\n开 M-ORG\n发 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n业 B-TITLE\n务 M-TITLE\n员 E-TITLE\n， O\n省 B-TITLE\n经 M-TITLE\n建 M-TITLE\n投 M-TITLE\n业 M-TITLE\n务 M-TITLE\n员 E-TITLE\n、 O\n项 B-TITLE\n目 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n资 B-TITLE\n产 M-TITLE\n管 M-TITLE\n理 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n省 B-ORG\n经 M-ORG\n建 M-ORG\n投 E-ORG\n干 B-TITLE\n部 E-TITLE\n。 O\n\n毛 B-NAME\n幼 M-NAME\n平 E-NAME\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n一 O\n。 O\n\n教 O\n育 O\n背 O\n景 O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n二 O\n。 O\n\n工 O\n作 O\n简 O\n历 O\n1 O\n9 O\n9 O\n2 O\n- O\n1 O\n9 O\n9 O\n7 O\n天 B-ORG\n津 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n部 B-TITLE\n长 E-TITLE\n1 O\n9 O\n9 O\n7 O\n- O\n1 O\n9 O\n9 O\n9 O\n天 B-ORG\n津 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n实 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n副 B-TITLE\n书 M-TITLE\n记 E-TITLE\n1 O\n9 O\n9 O\n9 O\n- O\n2 O\n0 O\n0 O\n4 O\n天 B-ORG\n津 M-ORG\n泰 M-ORG\n达 M-ORG\n建 M-ORG\n设 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n2 O\n0 O\n0 O\n4 O\n. O\n1 O\n2 O\n至 O\n今 O\n天 B-ORG\n津 M-ORG\n泰 M-ORG\n达 M-ORG\n建 M-ORG\n设 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n兼 O\n任 O\n天 B-ORG\n津 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n\n杨 B-NAME\n春 M-NAME\n山 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n甘 B-LOC\n肃 M-LOC\n省 M-LOC\n兰 M-LOC\n州 M-LOC\n市 M-LOC\n人 E-LOC\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n8 O\n月 O\n毕 O\n业 O\n于 O\n甘 B-ORG\n肃 M-ORG\n工 M-ORG\n业 M-ORG\n大 M-ORG\n学 M-ORG\n自 M-ORG\n动 M-ORG\n控 M-ORG\n制 M-ORG\n系 E-ORG\n工 B-PRO\n业 M-PRO\n电 M-PRO\n气 M-PRO\n自 M-PRO\n动 M-PRO\n化 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n工 B-PRO\n学 E-PRO\n学 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n0 O\n月 O\n毕 O\n业 O\n于 O\n西 B-ORG\n安 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n工 M-ORG\n商 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\nE B-PRO\nM M-PRO\nB M-PRO\nA M-PRO\n专 M-PRO\n业 E-PRO\n， O\n获 O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n电 B-ORG\n工 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n法 B-TITLE\n定 M-TITLE\n代 M-TITLE\n表 M-TITLE\n人 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n长 B-ORG\n城 M-ORG\n电 M-ORG\n工 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n1 O\n月 O\n至 O\n今 O\n任 O\n长 B-ORG\n城 M-ORG\n电 M-ORG\n工 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n3 O\n月 O\n至 O\n今 O\n兼 O\n任 O\n天 B-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n申 B-NAME\n小 M-NAME\n林 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n博 B-EDU\n士 E-EDU\n。 O\n\n现 O\n任 O\n天 B-ORG\n津 M-ORG\n泰 M-ORG\n达 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n； O\n\n兼 O\n任 O\n泰 B-ORG\n达 M-ORG\n股 M-ORG\n权 M-ORG\n投 M-ORG\n资 M-ORG\n基 M-ORG\n金 E-ORG\n、 O\n上 B-ORG\n海 M-ORG\n泰 M-ORG\n达 M-ORG\n投 M-ORG\n资 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n滨 B-ORG\n海 M-ORG\n电 M-ORG\n力 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n泰 B-ORG\n达 M-ORG\n国 M-ORG\n际 E-ORG\n、 O\n渤 B-ORG\n海 M-ORG\n银 M-ORG\n行 E-ORG\n、 O\n北 B-ORG\n方 M-ORG\n信 M-ORG\n托 E-ORG\n、 O\n长 B-ORG\n江 M-ORG\n证 M-ORG\n券 E-ORG\n、 O\n滨 B-ORG\n海 M-ORG\n投 M-ORG\n资 E-ORG\n董 B-TITLE\n事 E-TITLE\n； O\n\n兼 O\n任 O\n中 B-ORG\n国 M-ORG\n国 M-ORG\n际 M-ORG\n经 M-ORG\n济 M-ORG\n技 M-ORG\n术 M-ORG\n合 M-ORG\n作 M-ORG\n促 M-ORG\n进 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n技 M-ORG\n术 M-ORG\n经 M-ORG\n济 M-ORG\n学 M-ORG\n会 E-ORG\n理 B-TITLE\n事 E-TITLE\n， O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n校 M-ORG\n友 M-ORG\n总 M-ORG\n会 M-ORG\n房 M-ORG\n地 M-ORG\n产 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n金 B-ORG\n融 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n清 B-ORG\n华 M-ORG\n天 M-ORG\n津 E-ORG\n金 B-TITLE\n融 M-TITLE\n投 M-TITLE\n资 M-TITLE\n与 M-TITLE\n地 M-TITLE\n产 M-TITLE\n协 M-TITLE\n会 M-TITLE\n会 M-TITLE\n长 E-TITLE\n等 O\n社 O\n会 O\n学 O\n术 O\n职 O\n务 O\n； O\n\n曾 O\n任 O\n国 B-ORG\n家 M-ORG\n冶 M-ORG\n金 M-ORG\n工 M-ORG\n业 M-ORG\n部 M-ORG\n经 M-ORG\n济 M-ORG\n发 M-ORG\n展 M-ORG\n研 M-ORG\n究 M-ORG\n中 M-ORG\n心 E-ORG\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n首 B-ORG\n钢 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n计 B-TITLE\n划 M-TITLE\n与 M-TITLE\n财 M-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-ORG\n央 M-ORG\n企 M-ORG\n业 M-ORG\n工 M-ORG\n委 E-ORG\n/ O\n国 B-ORG\n务 M-ORG\n院 M-ORG\n国 M-ORG\n资 M-ORG\n委 M-ORG\n国 M-ORG\n有 M-ORG\n重 M-ORG\n点 M-ORG\n大 M-ORG\n型 M-ORG\n企 M-ORG\n业 M-ORG\n监 M-ORG\n事 M-ORG\n会 E-ORG\n专 B-TITLE\n职 M-TITLE\n监 M-TITLE\n事 E-TITLE\n， O\n泰 B-ORG\n达 M-ORG\n国 M-ORG\n际 M-ORG\n酒 M-ORG\n店 M-ORG\n集 M-ORG\n团 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n易 B-NAME\n武 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n2 O\n月 O\n生 O\n， O\n湖 B-LOC\n南 M-LOC\n醴 M-LOC\n陵 M-LOC\n人 E-LOC\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n8 O\n月 O\n至 O\n1 O\n9 O\n8 O\n5 O\n年 O\n1 O\n2 O\n月 O\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n地 M-ORG\n矿 M-ORG\n局 M-ORG\n4 M-ORG\n7 M-ORG\n3 M-ORG\n队 E-ORG\n计 B-TITLE\n财 M-TITLE\n科 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n1 O\n月 O\n至 O\n1 O\n9 O\n9 O\n2 O\n年 O\n7 O\n月 O\n， O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n遥 M-ORG\n感 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n2 O\n年 O\n7 O\n月 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n9 O\n月 O\n， O\n海 B-ORG\n南 M-ORG\n水 M-ORG\n文 M-ORG\n地 M-ORG\n质 M-ORG\n工 M-ORG\n程 M-ORG\n地 M-ORG\n质 M-ORG\n勘 M-ORG\n察 M-ORG\n院 E-ORG\n计 B-TITLE\n财 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n科 B-TITLE\n长 E-TITLE\n、 O\n院 B-TITLE\n总 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n9 O\n月 O\n至 O\n今 O\n在 O\n广 B-ORG\n州 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n国 M-ORG\n有 M-ORG\n资 M-ORG\n产 M-ORG\n监 M-ORG\n督 M-ORG\n管 M-ORG\n理 M-ORG\n办 M-ORG\n公 M-ORG\n室 E-ORG\n工 O\n作 O\n， O\n先 O\n后 O\n受 O\n派 O\n任 O\n广 B-ORG\n州 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n工 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n广 B-ORG\n州 M-ORG\n开 M-ORG\n发 M-ORG\n区 M-ORG\n建 M-ORG\n设 M-ORG\n发 M-ORG\n展 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n广 B-ORG\n州 M-ORG\n凯 M-ORG\n得 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n周 B-NAME\n桂 M-NAME\n泉 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n8 O\n月 O\n生 O\n， O\n宝 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n监 B-TITLE\n察 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n宝 B-ORG\n山 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n周 S-NAME\n先 O\n生 O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n周 S-NAME\n先 O\n生 O\n在 O\n人 O\n力 O\n资 O\n源 O\n管 O\n理 O\n、 O\n纪 O\n检 O\n监 O\n察 O\n管 O\n理 O\n方 O\n面 O\n具 O\n有 O\n较 O\n丰 O\n富 O\n的 O\n经 O\n验 O\n， O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n8 O\n月 O\n加 O\n入 O\n宝 B-ORG\n钢 E-ORG\n， O\n历 O\n任 O\n宝 B-ORG\n钢 E-ORG\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n宝 B-ORG\n山 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n察 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n宝 B-ORG\n钢 M-ORG\n热 M-ORG\n轧 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n宝 B-ORG\n山 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n三 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n宝 B-ORG\n钢 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n纪 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n监 B-TITLE\n察 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n4 O\n月 O\n起 O\n任 O\n宝 B-ORG\n山 M-ORG\n钢 M-ORG\n铁 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n第 B-TITLE\n四 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n曹 B-NAME\n国 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n4 O\n月 O\n2 O\n0 O\n日 O\n生 O\n， O\n江 B-LOC\n西 M-LOC\n九 M-LOC\n江 M-LOC\n市 M-LOC\n人 E-LOC\n。 O\n\n1 O\n9 O\n8 O\n3 O\n年 O\n7 O\n月 O\n毕 O\n业 O\n于 O\n中 B-ORG\n南 M-ORG\n大 M-ORG\n学 M-ORG\n化 M-ORG\n学 M-ORG\n系 E-ORG\n。 O\n\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n江 B-ORG\n西 M-ORG\n九 M-ORG\n江 M-ORG\n有 M-ORG\n色 M-ORG\n金 M-ORG\n属 M-ORG\n冶 M-ORG\n炼 M-ORG\n厂 E-ORG\n车 B-TITLE\n间 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n厂 B-TITLE\n办 M-TITLE\n副 M-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n有 B-ORG\n色 M-ORG\n昆 M-ORG\n明 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n调 M-TITLE\n研 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n投 B-TITLE\n资 M-TITLE\n经 M-TITLE\n营 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n云 B-ORG\n南 M-ORG\n铜 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n中 B-ORG\n国 M-ORG\n铜 M-ORG\n铅 M-ORG\n锌 M-ORG\n集 M-ORG\n团 E-ORG\n铜 B-TITLE\n镍 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n； O\n\n墨 B-ORG\n江 M-ORG\n生 M-ORG\n物 M-ORG\n镍 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n云 B-ORG\n锡 M-ORG\n元 M-ORG\n江 M-ORG\n镍 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n吴 B-NAME\n光 E-NAME\n， O\n男 O\n， O\n汉 B-RACE\n族 E-RACE\n， O\n\n1 O\n9 O\n5 O\n8 O\n年 O\n4 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n教 B-TITLE\n授 E-TITLE\n（ O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n） O\n。 O\n\n1 O\n9 O\n8 O\n2 O\n年 O\n毕 O\n业 O\n于 O\n西 B-ORG\n南 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n铁 M-ORG\n道 M-ORG\n工 M-ORG\n程 M-ORG\n系 E-ORG\n， O\n\n1 O\n9 O\n8 O\n4 O\n年 O\n获 O\n西 B-ORG\n南 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n航 M-ORG\n地 M-ORG\n系 E-ORG\n工 B-PRO\n学 E-PRO\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n获 O\n中 B-ORG\n国 M-ORG\n地 M-ORG\n质 M-ORG\n大 M-ORG\n学 M-ORG\n水 M-ORG\n土 M-ORG\n系 E-ORG\n工 B-PRO\n学 E-PRO\n博 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n赴 O\n英 B-ORG\n国 M-ORG\nH M-ORG\nU M-ORG\nL M-ORG\nL M-ORG\n大 M-ORG\n学 E-ORG\n研 O\n修 O\n环 B-PRO\n境 M-PRO\n管 M-PRO\n理 M-PRO\n学 E-PRO\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n4 O\n年 O\n5 O\n月 O\n在 O\n西 B-ORG\n南 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n任 O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n导 E-TITLE\n、 O\n教 B-TITLE\n务 M-TITLE\n处 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n软 B-TITLE\n件 M-TITLE\n学 M-TITLE\n院 M-TITLE\n院 M-TITLE\n长 E-TITLE\n、 O\n生 B-TITLE\n物 M-TITLE\n工 M-TITLE\n程 M-TITLE\n系 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n6 O\n月 O\n至 O\n2 O\n0 O\n0 O\n5 O\n年 O\n2 O\n月 O\n在 O\n西 B-ORG\n南 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n任 O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n导 E-TITLE\n、 O\n政 B-TITLE\n策 M-TITLE\n法 M-TITLE\n规 M-TITLE\n所 M-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n软 B-TITLE\n件 M-TITLE\n学 M-TITLE\n院 M-TITLE\n院 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n在 O\n成 B-ORG\n都 M-ORG\n大 M-ORG\n学 E-ORG\n任 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n校 B-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n至 O\n今 O\n在 O\n西 B-ORG\n南 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 E-ORG\n任 O\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n导 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n5 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n1 O\n0 O\n月 O\n在 O\n中 B-ORG\n铁 M-ORG\n二 M-ORG\n局 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n担 O\n任 O\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n徐 B-NAME\n焕 M-NAME\n俊 E-NAME\n， O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n7 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n。 O\n\n历 O\n任 O\n陆 B-ORG\n军 M-ORG\n第 M-ORG\n二 M-ORG\n十 M-ORG\n八 M-ORG\n军 M-ORG\n炮 M-ORG\n兵 M-ORG\n团 E-ORG\n营 B-TITLE\n长 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n军 M-ORG\n区 E-ORG\n舟 B-TITLE\n桥 M-TITLE\n旅 M-TITLE\n正 M-TITLE\n营 M-TITLE\n职 M-TITLE\n参 M-TITLE\n谋 E-TITLE\n， O\n南 B-ORG\n通 M-ORG\n港 M-ORG\n口 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n物 B-TITLE\n资 M-TITLE\n供 M-TITLE\n应 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n金 M-ORG\n通 M-ORG\n灵 M-ORG\n风 M-ORG\n机 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n兼 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n6 O\n月 O\n起 O\n任 O\n江 B-ORG\n苏 M-ORG\n金 M-ORG\n通 M-ORG\n灵 M-ORG\n流 M-ORG\n体 M-ORG\n机 M-ORG\n械 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n江 B-ORG\n苏 M-ORG\n金 M-ORG\n通 M-ORG\n灵 M-ORG\n流 M-ORG\n体 M-ORG\n机 M-ORG\n械 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n戴 B-NAME\n青 E-NAME\n先 O\n生 O\n： O\n董 B-TITLE\n事 E-TITLE\n， O\n\n1 O\n9 O\n6 O\n5 O\n年 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n。 O\n\n曾 O\n就 O\n职 O\n于 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n农 M-ORG\n机 M-ORG\n供 M-ORG\n销 M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n四 B-ORG\n川 M-ORG\n科 M-ORG\n贸 M-ORG\n农 M-ORG\n机 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n曾 O\n任 O\n成 B-ORG\n都 M-ORG\n通 M-ORG\n迪 M-ORG\n金 M-ORG\n属 M-ORG\n材 M-ORG\n料 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n四 B-ORG\n川 M-ORG\n省 M-ORG\n佳 M-ORG\n炜 M-ORG\n物 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n通 M-ORG\n光 M-ORG\n电 M-ORG\n子 M-ORG\n线 M-ORG\n缆 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n龙 B-NAME\n泉 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n电 M-ORG\n投 M-ORG\n远 M-ORG\n达 M-ORG\n环 M-ORG\n保 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n董 B-TITLE\n事 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n电 M-ORG\n投 M-ORG\n远 M-ORG\n达 M-ORG\n环 M-ORG\n保 M-ORG\n( M-ORG\n集 M-ORG\n团 M-ORG\n) M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n朱 B-NAME\n天 M-NAME\n培 E-NAME\n： O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n3 O\n7 O\n年 O\n， O\n曾 O\n在 O\n中 B-ORG\n国 M-ORG\n科 M-ORG\n学 M-ORG\n院 M-ORG\n长 M-ORG\n春 M-ORG\n应 M-ORG\n用 M-ORG\n化 M-ORG\n学 M-ORG\n所 E-ORG\n从 O\n事 O\n稀 O\n土 O\n化 O\n学 O\n及 O\n稀 O\n土 O\n在 O\n激 O\n光 O\n材 O\n料 O\n上 O\n的 O\n应 O\n用 O\n等 O\n研 O\n究 O\n工 O\n作 O\n和 O\n科 O\n研 O\n组 O\n织 O\n工 O\n作 O\n， O\n先 O\n后 O\n担 O\n任 O\n助 B-TITLE\n研 E-TITLE\n、 O\n副 B-TITLE\n研 E-TITLE\n、 O\n研 B-TITLE\n究 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n所 B-TITLE\n学 M-TITLE\n术 M-TITLE\n委 M-TITLE\n员 E-TITLE\n等 O\n职 O\n务 O\n； O\n\n赴 O\n美 B-ORG\n国 M-ORG\n休 M-ORG\n斯 M-ORG\n敦 M-ORG\n大 M-ORG\n学 E-ORG\n作 O\n访 B-TITLE\n问 M-TITLE\n学 M-TITLE\n者 E-TITLE\n； O\n\n曾 O\n历 O\n任 O\n深 B-ORG\n圳 M-ORG\n科 M-ORG\n技 M-ORG\n工 M-ORG\n业 M-ORG\n园 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n兼 O\n发 B-TITLE\n展 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n人 M-ORG\n民 M-ORG\n政 M-ORG\n府 M-ORG\n经 M-ORG\n济 M-ORG\n发 M-ORG\n展 M-ORG\n局 E-ORG\n总 B-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n， O\n美 B-ORG\n国 M-ORG\n纽 M-ORG\n约 M-ORG\nS M-ORG\nI M-ORG\nN M-ORG\nO M-ORG\n- M-ORG\nA M-ORG\nM M-ORG\nE M-ORG\nR M-ORG\nI M-ORG\nC M-ORG\nA M-ORG\nN M-ORG\nL M-ORG\nT M-ORG\nD M-ORG\n， M-ORG\nC M-ORG\nO M-ORG\n. M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n创 O\n办 O\n了 O\n深 O\n圳 O\n市 O\n第 O\n一 O\n家 O\n专 O\n职 O\n从 O\n事 O\n风 O\n险 O\n投 O\n资 O\n业 O\n务 O\n的 O\n公 O\n司 O\n， O\n历 O\n任 O\n中 B-ORG\n科 M-ORG\n融 M-ORG\n投 M-ORG\n资 M-ORG\n顾 M-ORG\n问 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n、 O\n高 B-TITLE\n级 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n， O\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n方 M-ORG\n天 M-ORG\n通 M-ORG\n实 M-ORG\n业 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\nS B-NAME\nt M-NAME\ne M-NAME\np M-NAME\nh M-NAME\ne M-NAME\nn M-NAME\nL M-NAME\no M-NAME\nn M-NAME\ng E-NAME\n（ O\n中 O\n文 O\n名 O\n： O\n龙 B-NAME\n肇 M-NAME\n辉 E-NAME\n） O\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n3 O\n年 O\n出 O\n生 O\n， O\n美 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n硕 B-EDU\n士 E-EDU\n。 O\n\n自 O\n1 O\n9 O\n6 O\n8 O\n年 O\n加 O\n入 O\n花 B-ORG\n旗 M-ORG\n银 M-ORG\n行 E-ORG\n， O\n曾 O\n任 O\n花 B-ORG\n旗 M-ORG\n集 M-ORG\n团 M-ORG\n亚 M-ORG\n太 M-ORG\n区 E-ORG\n企 B-TITLE\n业 M-TITLE\n及 M-TITLE\n投 M-TITLE\n资 M-TITLE\n银 M-TITLE\n行 M-TITLE\n行 M-TITLE\n政 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n现 O\n任 O\n花 B-ORG\n旗 M-ORG\n国 M-ORG\n际 E-ORG\n营 B-TITLE\n运 M-TITLE\n部 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n连 B-NAME\n维 M-NAME\n新 E-NAME\n同 O\n志 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n南 B-ORG\n京 M-ORG\n港 M-ORG\n务 M-ORG\n局 E-ORG\n政 B-TITLE\n治 M-TITLE\n处 M-TITLE\n干 M-TITLE\n事 E-TITLE\n、 O\n南 B-ORG\n京 M-ORG\n港 M-ORG\n务 M-ORG\n局 E-ORG\n局 B-TITLE\n长 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n外 M-TITLE\n事 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n南 B-ORG\n京 M-ORG\n港 M-ORG\n务 M-ORG\n局 E-ORG\n宣 B-TITLE\n传 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n南 B-ORG\n京 M-ORG\n港 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n王 B-NAME\n笃 M-NAME\n祥 E-NAME\n： O\n1 O\n9 O\n7 O\n3 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n男 O\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n9 O\n月 O\n开 O\n始 O\n在 O\n厦 B-ORG\n门 M-ORG\n三 M-ORG\n安 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n现 O\n任 O\n三 B-ORG\n安 M-ORG\n光 M-ORG\n电 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n高 B-NAME\n树 M-NAME\n林 E-NAME\n： O\n报 O\n告 O\n期 O\n曾 O\n任 O\n华 B-ORG\n能 M-ORG\n国 M-ORG\n际 E-ORG\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n华 B-ORG\n能 M-ORG\n国 M-ORG\n际 E-ORG\n计 B-TITLE\n划 M-TITLE\n发 M-TITLE\n展 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n毕 O\n业 O\n于 O\n清 B-ORG\n华 M-ORG\n大 M-ORG\n学 M-ORG\n经 M-ORG\n济 M-ORG\n管 M-ORG\n理 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n硕 B-EDU\n士 E-EDU\n（ O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n） O\n。 O\n\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n涂 B-NAME\n善 M-NAME\n忠 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n0 O\n年 O\n生 O\n， O\n中 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n园 B-TITLE\n林 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n中 B-ORG\n国 M-ORG\n风 M-ORG\n景 M-ORG\n园 M-ORG\n林 M-ORG\n学 M-ORG\n会 E-ORG\n常 B-TITLE\n务 M-TITLE\n理 M-TITLE\n事 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n风 M-ORG\n景 M-ORG\n园 M-ORG\n林 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n园 M-ORG\n林 M-ORG\n学 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n土 M-ORG\n木 M-ORG\n建 M-ORG\n筑 M-ORG\n学 M-ORG\n会 M-ORG\n环 M-ORG\n境 M-ORG\n艺 M-ORG\n术 M-ORG\n学 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n城 M-ORG\n市 M-ORG\n绿 M-ORG\n化 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n州 M-ORG\n青 M-ORG\n年 M-ORG\n企 M-ORG\n业 M-ORG\n家 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n， O\n获 O\n“ O\n广 O\n州 O\n市 O\n优 O\n秀 O\n中 O\n国 O\n特 O\n色 O\n社 O\n会 O\n主 O\n义 O\n事 O\n业 O\n建 O\n设 O\n者 O\n” O\n荣 O\n誉 O\n称 O\n号 O\n， O\n广 O\n东 O\n园 O\n林 O\n学 O\n会 O\n“ O\n突 O\n出 O\n贡 O\n献 O\n奖 O\n” O\n。 O\n\n历 O\n任 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n流 M-ORG\n花 M-ORG\n湖 M-ORG\n公 M-ORG\n园 E-ORG\n园 B-TITLE\n林 M-TITLE\n科 M-TITLE\n科 M-TITLE\n长 E-TITLE\n、 O\n广 B-ORG\n州 M-ORG\n市 M-ORG\n普 M-ORG\n邦 M-ORG\n园 M-ORG\n林 M-ORG\n配 M-ORG\n套 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 E-TITLE\n兼 O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n广 B-ORG\n州 M-ORG\n普 M-ORG\n邦 M-ORG\n园 M-ORG\n林 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n孙 B-NAME\n黎 M-NAME\n明 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n7 O\n7 O\n年 O\n5 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n。 O\n\n曾 O\n任 O\n浙 B-ORG\n江 M-ORG\n京 M-ORG\n东 M-ORG\n方 M-ORG\n显 M-ORG\n示 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n证 B-TITLE\n券 M-TITLE\n投 M-TITLE\n资 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n现 O\n任 O\n浙 B-ORG\n江 M-ORG\n亚 M-ORG\n太 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n宋 B-NAME\n君 M-NAME\n恩 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n南 B-ORG\n京 M-ORG\n航 M-ORG\n空 M-ORG\n航 M-ORG\n天 M-ORG\n大 M-ORG\n学 E-ORG\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n供 O\n职 O\n于 O\n华 B-ORG\n为 M-ORG\n电 M-ORG\n气 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n和 O\n艾 B-ORG\n默 M-ORG\n生 M-ORG\n网 M-ORG\n络 M-ORG\n能 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n汇 M-ORG\n川 M-ORG\n技 M-ORG\n术 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n陈 B-NAME\n良 M-NAME\n训 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n生 O\n， O\n硕 B-EDU\n士 E-EDU\n/ O\nE B-EDU\nM M-EDU\nB M-EDU\nA E-EDU\n。 O\n\n曾 O\n任 O\n华 B-ORG\n泰 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n事 M-TITLE\n务 M-TITLE\n部 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n至 O\n2 O\n0 O\n1 O\n3 O\n年 O\n1 O\n1 O\n月 O\n华 B-ORG\n泰 M-ORG\n证 M-ORG\n券 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n主 M-TITLE\n席 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n7 O\n月 O\n至 O\n今 O\n任 O\n稽 B-TITLE\n查 M-TITLE\n部 M-TITLE\n调 M-TITLE\n研 M-TITLE\n员 E-TITLE\n。 O\n\n宋 B-NAME\n权 M-NAME\n礼 E-NAME\n先 O\n生 O\n： O\n汉 B-RACE\n族 E-RACE\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n北 B-ORG\n京 M-ORG\n群 M-ORG\n龙 M-ORG\n商 M-ORG\n贸 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n农 B-ORG\n业 M-ORG\n部 M-ORG\n人 M-ORG\n劳 M-ORG\n司 M-ORG\n培 M-ORG\n训 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n， O\n农 B-ORG\n业 M-ORG\n部 M-ORG\n人 M-ORG\n劳 M-ORG\n司 M-ORG\n直 M-ORG\n属 M-ORG\n单 M-ORG\n位 M-ORG\n干 M-ORG\n部 M-ORG\n处 E-ORG\n副 B-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n处 B-TITLE\n长 E-TITLE\n， O\n华 B-ORG\n龙 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n产 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n产 M-ORG\n华 M-ORG\n农 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n产 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n总 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n高 B-NAME\n其 M-NAME\n品 E-NAME\n： O\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n5 O\n2 O\n年 O\n6 O\n月 O\n2 O\n2 O\n日 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n博 B-EDU\n士 E-EDU\n， O\n长 B-ORG\n春 M-ORG\n中 M-ORG\n医 M-ORG\n药 M-ORG\n大 M-ORG\n学 E-ORG\n教 B-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n、 O\n大 B-TITLE\n学 M-TITLE\n教 M-TITLE\n授 E-TITLE\n， O\n现 O\n任 O\n长 B-ORG\n春 M-ORG\n中 M-ORG\n医 M-ORG\n药 M-ORG\n大 M-ORG\n学 M-ORG\n研 M-ORG\n发 M-ORG\n中 M-ORG\n心 E-ORG\n主 B-TITLE\n任 E-TITLE\n。 O\n\n范 B-NAME\n震 M-NAME\n东 E-NAME\n： O\n男 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n济 B-ORG\n南 M-ORG\n铁 M-ORG\n路 M-ORG\n局 E-ORG\n助 B-TITLE\n理 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n市 M-ORG\n崇 M-ORG\n明 M-ORG\n县 M-ORG\n科 M-ORG\n学 M-ORG\n技 M-ORG\n术 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n市 M-ORG\n崇 M-ORG\n明 M-ORG\n县 M-ORG\n工 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n副 B-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n工 B-ORG\n业 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n局 B-TITLE\n长 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n市 M-ORG\n崇 M-ORG\n明 M-ORG\n县 M-ORG\n大 M-ORG\n同 M-ORG\n镇 E-ORG\n镇 B-TITLE\n长 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n康 M-ORG\n阔 M-ORG\n光 M-ORG\n通 M-ORG\n信 M-ORG\n技 M-ORG\n术 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n； O\n\n上 B-ORG\n海 M-ORG\n塑 M-ORG\n胶 M-ORG\n线 M-ORG\n厂 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n兼 O\n上 B-ORG\n海 M-ORG\n熊 M-ORG\n猫 M-ORG\n电 M-ORG\n线 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n法 B-TITLE\n定 M-TITLE\n代 M-TITLE\n表 M-TITLE\n人 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n起 O\n任 O\n上 B-ORG\n海 M-ORG\n熊 M-ORG\n猫 M-ORG\n线 M-ORG\n缆 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n0 O\n月 O\n1 O\n0 O\n日 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n7 O\n日 O\n任 O\n武 B-ORG\n汉 M-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n2 O\n月 O\n2 O\n9 O\n日 O\n起 O\n任 O\n武 B-ORG\n汉 M-ORG\n国 M-ORG\n药 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n董 B-NAME\n刚 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n任 O\n安 B-ORG\n徽 M-ORG\n安 M-ORG\n凯 M-ORG\n金 M-ORG\n达 M-ORG\n工 M-ORG\n贸 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n总 M-TITLE\n支 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n至 O\n2 O\n0 O\n0 O\n9 O\n年 O\n9 O\n月 O\n任 O\n安 B-ORG\n凯 M-ORG\n客 M-ORG\n车 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n安 B-ORG\n徽 M-ORG\n安 M-ORG\n凯 M-ORG\n金 M-ORG\n达 M-ORG\n工 M-ORG\n贸 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n安 B-ORG\n凯 M-ORG\n客 M-ORG\n车 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n蔡 B-NAME\n景 M-NAME\n章 E-NAME\n， O\n男 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n曾 O\n任 O\n江 B-ORG\n西 M-ORG\n景 M-ORG\n德 M-ORG\n镇 M-ORG\n市 M-ORG\n焦 M-ORG\n化 M-ORG\n煤 M-ORG\n气 M-ORG\n总 M-ORG\n厂 E-ORG\n办 B-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n副 B-TITLE\n厂 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n江 B-ORG\n西 M-ORG\n黑 M-ORG\n猫 M-ORG\n炭 M-ORG\n黑 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n景 B-ORG\n德 M-ORG\n镇 M-ORG\n市 M-ORG\n焦 M-ORG\n化 M-ORG\n工 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n王 B-NAME\n铁 M-NAME\n明 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n5 O\n6 O\n年 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n0 O\n8 O\n月 O\n至 O\n今 O\n贵 B-ORG\n航 M-ORG\n股 M-ORG\n份 M-ORG\n红 M-ORG\n阳 M-ORG\n密 M-ORG\n封 M-ORG\n件 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n樊 B-NAME\n燕 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n3 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 E-EDU\n， O\n注 B-TITLE\n册 M-TITLE\n化 M-TITLE\n工 M-TITLE\n师 E-TITLE\n， O\n教 B-TITLE\n授 M-TITLE\n级 M-TITLE\n高 M-TITLE\n级 M-TITLE\n工 M-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n享 O\n受 O\n国 O\n务 O\n院 O\n特 O\n殊 O\n津 O\n贴 O\n专 O\n家 O\n。 O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n8 O\n月 O\n至 O\n今 O\n担 O\n任 O\n岳 B-ORG\n阳 M-ORG\n林 M-ORG\n纸 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n曾 O\n任 O\n中 B-ORG\n国 M-ORG\n轻 M-ORG\n工 M-ORG\n业 M-ORG\n长 M-ORG\n沙 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n海 M-ORG\n诚 M-ORG\n工 M-ORG\n程 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n轻 M-ORG\n工 M-ORG\n业 M-ORG\n长 M-ORG\n沙 M-ORG\n工 M-ORG\n程 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n蒋 B-NAME\n敏 M-NAME\n玲 E-NAME\n女 O\n士 O\n： O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n女 O\n， O\n毕 O\n业 O\n于 O\n贵 B-ORG\n阳 M-ORG\n医 M-ORG\n学 M-ORG\n院 E-ORG\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n至 O\n1 O\n9 O\n9 O\n4 O\n年 O\n工 O\n作 O\n于 O\n安 B-ORG\n顺 M-ORG\n市 M-ORG\n西 M-ORG\n秀 M-ORG\n药 M-ORG\n厂 E-ORG\n， O\n曾 O\n任 O\n车 B-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n5 O\n年 O\n在 O\n贵 B-ORG\n州 M-ORG\n百 M-ORG\n灵 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n制 M-ORG\n药 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n历 O\n任 O\n片 B-TITLE\n剂 M-TITLE\n车 M-TITLE\n间 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n综 B-TITLE\n合 M-TITLE\n办 M-TITLE\n公 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n2 O\n月 O\n2 O\n5 O\n日 O\n至 O\n今 O\n担 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n李 B-NAME\n水 M-NAME\n荣 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n5 O\n6 O\n年 O\n出 O\n生 O\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n； O\n\n现 O\n任 O\n宁 B-ORG\n波 M-ORG\n联 M-ORG\n合 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n浙 B-ORG\n江 M-ORG\n荣 M-ORG\n盛 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n裁 E-TITLE\n， O\n荣 B-ORG\n盛 M-ORG\n石 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n宜 B-ORG\n宾 M-ORG\n天 M-ORG\n原 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n姚 B-NAME\n木 M-NAME\n成 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n4 O\n9 O\n年 O\n1 O\n1 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n经 B-TITLE\n济 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n韶 B-ORG\n钢 M-ORG\n集 M-ORG\n团 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n商 M-ORG\n业 M-ORG\n企 M-ORG\n业 M-ORG\n集 M-ORG\n团 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n粤 M-ORG\n海 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n航 M-ORG\n运 M-ORG\n集 M-ORG\n团 E-ORG\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n已 O\n办 O\n理 O\n退 O\n休 O\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n1 O\n2 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n政 M-ORG\n协 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n现 O\n兼 O\n任 O\n广 B-ORG\n东 M-ORG\n省 M-ORG\n商 M-ORG\n业 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n6 O\n月 O\n至 O\n今 O\n任 O\n广 B-ORG\n东 M-ORG\n韶 M-ORG\n钢 M-ORG\n松 M-ORG\n山 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n汪 B-NAME\n国 M-NAME\n春 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n出 O\n生 O\n， O\n上 B-ORG\n海 M-ORG\n交 M-ORG\n通 M-ORG\n大 M-ORG\n学 M-ORG\n机 M-ORG\n械 M-ORG\n与 M-ORG\n动 M-ORG\n力 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n物 B-PRO\n流 M-PRO\n工 M-PRO\n程 M-PRO\n专 M-PRO\n业 E-PRO\n硕 B-EDU\n士 E-EDU\n毕 O\n业 O\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n进 O\n入 O\n天 B-ORG\n奇 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n先 O\n后 O\n从 O\n事 O\n设 O\n计 O\n、 O\n行 O\n政 O\n管 O\n理 O\n、 O\n物 O\n资 O\n采 O\n购 O\n、 O\n对 O\n外 O\n投 O\n资 O\n等 O\n工 O\n作 O\n， O\n现 O\n任 O\n天 B-ORG\n奇 M-ORG\n自 M-ORG\n动 M-ORG\n化 M-ORG\n工 M-ORG\n程 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\nC B-NAME\na M-NAME\nr M-NAME\no M-NAME\nl M-NAME\nl M-NAME\ne M-NAME\ne M-NAME\nP M-NAME\ne M-NAME\nd M-NAME\ne M-NAME\nr M-NAME\ns M-NAME\ne M-NAME\nn E-NAME\n， O\n女 O\n， O\n美 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n1 O\n月 O\n生 O\n， O\n法 B-PRO\n学 E-PRO\n博 B-EDU\n士 E-EDU\n。 O\n\n曾 O\n任 O\nL B-ORG\ni M-ORG\nb M-ORG\ne M-ORG\nr M-ORG\nt M-ORG\ny M-ORG\nH M-ORG\na M-ORG\nr M-ORG\nd M-ORG\nw M-ORG\na M-ORG\nr M-ORG\ne M-ORG\nI M-ORG\nn M-ORG\nc M-ORG\n. E-ORG\n销 B-TITLE\n售 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n销 B-TITLE\n售 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n张 B-NAME\n振 M-NAME\n武 E-NAME\n先 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n； O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n， O\n曾 O\n任 O\n赤 B-ORG\n峰 M-ORG\n大 M-ORG\n兴 M-ORG\n公 M-ORG\n司 E-ORG\n法 B-TITLE\n定 M-TITLE\n代 M-TITLE\n表 M-TITLE\n人 E-TITLE\n、 O\n内 B-ORG\n蒙 M-ORG\n古 M-ORG\n平 M-ORG\n庄 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n张 B-NAME\n航 E-NAME\n女 O\n士 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n宁 B-ORG\n夏 M-ORG\n圣 M-ORG\n雪 M-ORG\n绒 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n。 O\n\n历 O\n任 O\n宁 B-ORG\n夏 M-ORG\n夏 M-ORG\n城 M-ORG\n进 M-ORG\n出 M-ORG\n口 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n乐 B-NAME\n湘 M-NAME\n安 E-NAME\n先 O\n生 O\n， O\n男 O\n， O\n硕 B-EDU\n士 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n现 O\n任 O\n无 B-ORG\n锡 M-ORG\n小 M-ORG\n天 M-ORG\n鹅 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n。 O\n\n曾 O\n任 O\n美 B-ORG\n的 M-ORG\n空 M-ORG\n调 M-ORG\n事 M-ORG\n业 M-ORG\n部 M-ORG\n国 M-ORG\n内 M-ORG\n营 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n财 B-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n小 B-TITLE\n家 M-TITLE\n电 M-TITLE\n事 M-TITLE\n业 M-TITLE\n部 M-TITLE\n销 M-TITLE\n售 M-TITLE\n财 M-TITLE\n务 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n美 B-ORG\n的 M-ORG\n集 M-ORG\n团 E-ORG\n审 B-TITLE\n计 M-TITLE\n监 M-TITLE\n察 M-TITLE\n部 M-TITLE\n审 M-TITLE\n计 M-TITLE\n经 M-TITLE\n理 E-TITLE\n和 O\n美 B-ORG\n的 M-ORG\n制 M-ORG\n冷 M-ORG\n家 M-ORG\n电 M-ORG\n集 M-ORG\n团 E-ORG\n审 B-TITLE\n计 M-TITLE\n监 M-TITLE\n察 M-TITLE\n部 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n监 E-TITLE\n、 O\n总 B-TITLE\n监 E-TITLE\n等 O\n职 O\n。 O\n\n孟 B-NAME\n建 M-NAME\n新 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n\n1 O\n9 O\n6 O\n8 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n信 B-TITLE\n用 M-TITLE\n管 M-TITLE\n理 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 M-ORG\n汨 M-ORG\n罗 M-ORG\n生 M-ORG\n产 M-ORG\n厂 E-ORG\n厂 B-TITLE\n长 E-TITLE\n、 O\n公 B-ORG\n司 E-ORG\n人 B-TITLE\n力 M-TITLE\n资 M-TITLE\n源 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n1 O\n月 O\n至 O\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n担 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n法 M-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n兼 O\n证 B-TITLE\n券 M-TITLE\n部 M-TITLE\n长 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n8 O\n年 O\n1 O\n月 O\n担 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n法 M-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n兼 O\n董 B-TITLE\n秘 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n担 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n法 M-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n4 O\n月 O\n至 O\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n任 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n南 M-ORG\n岭 M-ORG\n化 M-ORG\n工 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n法 M-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n9 O\n月 O\n至 O\n今 O\n任 O\n湖 B-ORG\n南 M-ORG\n南 M-ORG\n岭 M-ORG\n民 M-ORG\n用 M-ORG\n爆 M-ORG\n破 M-ORG\n器 M-ORG\n材 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n总 B-TITLE\n法 M-TITLE\n律 M-TITLE\n顾 M-TITLE\n问 E-TITLE\n兼 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n湖 B-ORG\n南 M-ORG\n新 M-ORG\n天 M-ORG\n地 M-ORG\n投 M-ORG\n资 M-ORG\n控 M-ORG\n股 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n委 M-TITLE\n员 E-TITLE\n。 O\n\n现 O\n为 O\n湖 B-ORG\n南 M-ORG\n省 M-ORG\n国 M-ORG\n资 M-ORG\n委 M-ORG\n青 M-ORG\n年 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n常 B-TITLE\n委 E-TITLE\n。 O\n\n陈 B-NAME\n雪 M-NAME\n凤 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n7 O\n8 O\n年 O\n8 O\n月 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n春 B-ORG\n兰 M-ORG\n公 M-ORG\n司 E-ORG\n项 B-TITLE\n目 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n知 B-TITLE\n识 M-TITLE\n产 M-TITLE\n权 M-TITLE\n管 M-TITLE\n理 E-TITLE\n及 O\n法 B-TITLE\n务 M-TITLE\n管 M-TITLE\n理 E-TITLE\n、 O\n湖 B-ORG\n南 M-ORG\n科 M-ORG\n力 M-ORG\n远 M-ORG\n新 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n职 B-TITLE\n工 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n夏 B-NAME\n朝 M-NAME\n怡 E-NAME\n： O\n女 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n6 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n文 M-EDU\n化 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n四 B-ORG\n川 M-ORG\n禾 M-ORG\n嘉 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n禾 B-ORG\n嘉 M-ORG\n集 M-ORG\n团 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n洪 M-NAME\n发 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n2 O\n月 O\n出 O\n生 O\n， O\n经 B-PRO\n济 M-PRO\n学 E-PRO\n学 B-EDU\n士 E-EDU\n、 O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n今 O\n历 O\n任 O\n吉 B-ORG\n林 M-ORG\n紫 M-ORG\n鑫 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n会 B-TITLE\n计 E-TITLE\n、 O\n主 B-TITLE\n管 M-TITLE\n会 M-TITLE\n计 E-TITLE\n、 O\n审 B-TITLE\n计 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n吉 B-ORG\n林 M-ORG\n紫 M-ORG\n鑫 M-ORG\n药 M-ORG\n业 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n绪 M-NAME\n芳 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n7 O\n6 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n毕 O\n业 O\n于 O\n深 B-ORG\n圳 M-ORG\n大 M-ORG\n学 M-ORG\n光 M-ORG\n电 M-ORG\n工 M-ORG\n程 M-ORG\n学 M-ORG\n院 E-ORG\n物 B-PRO\n理 M-PRO\n电 M-PRO\n子 M-PRO\n专 M-PRO\n业 E-PRO\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n曾 O\n任 O\n德 B-ORG\n昌 M-ORG\n电 M-ORG\n机 M-ORG\n（ M-ORG\n深 M-ORG\n圳 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n材 M-TITLE\n料 M-TITLE\n控 M-TITLE\n制 M-TITLE\n科 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n晶 B-ORG\n浩 M-ORG\n达 M-ORG\n电 M-ORG\n子 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n生 B-TITLE\n产 M-TITLE\n材 M-TITLE\n料 M-TITLE\n控 M-TITLE\n制 M-TITLE\n科 M-TITLE\n主 M-TITLE\n管 E-TITLE\n、 O\n东 B-ORG\n莞 M-ORG\n新 M-ORG\n科 M-ORG\n影 M-ORG\n音 M-ORG\n制 M-ORG\n品 M-ORG\n厂 E-ORG\n生 B-TITLE\n产 M-TITLE\n材 M-TITLE\n料 M-TITLE\n控 M-TITLE\n制 M-TITLE\n科 M-TITLE\n主 M-TITLE\n管 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n8 O\n年 O\n加 O\n入 O\n深 B-ORG\n圳 M-ORG\n丹 M-ORG\n邦 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n深 B-ORG\n圳 M-ORG\n丹 M-ORG\n邦 M-ORG\n科 M-ORG\n技 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n资 B-TITLE\n材 M-TITLE\n部 M-TITLE\n课 M-TITLE\n长 E-TITLE\n。 O\n\n荣 B-NAME\n幸 M-NAME\n华 E-NAME\n女 O\n士 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n审 M-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\n注 B-TITLE\n册 M-TITLE\n会 M-TITLE\n计 M-TITLE\n师 E-TITLE\n。 O\n\n历 O\n任 O\n常 B-ORG\n州 M-ORG\n市 M-ORG\n审 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n副 B-TITLE\n所 M-TITLE\n长 E-TITLE\n、 O\n所 B-TITLE\n长 E-TITLE\n， O\n现 O\n任 O\n常 B-ORG\n州 M-ORG\n常 M-ORG\n申 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n兼 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n苏 M-ORG\n亚 M-ORG\n金 M-ORG\n诚 M-ORG\n会 M-ORG\n计 M-ORG\n师 M-ORG\n事 M-ORG\n务 M-ORG\n所 E-ORG\n( O\n特 O\n殊 O\n普 O\n通 O\n合 O\n伙 O\n) O\n管 B-TITLE\n理 M-TITLE\n合 M-TITLE\n伙 M-TITLE\n人 E-TITLE\n、 O\n林 B-ORG\n海 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n江 B-ORG\n苏 M-ORG\n井 M-ORG\n神 M-ORG\n盐 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n常 B-ORG\n林 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n千 B-ORG\n红 M-ORG\n制 M-ORG\n药 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n江 B-ORG\n苏 M-ORG\n长 M-ORG\n海 M-ORG\n复 M-ORG\n合 M-ORG\n材 M-ORG\n料 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n邓 B-NAME\n勇 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n3 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n工 B-PRO\n商 M-PRO\n管 M-PRO\n理 E-PRO\n研 B-EDU\n究 M-EDU\n生 E-EDU\n， O\n工 B-TITLE\n程 M-TITLE\n师 E-TITLE\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n营 M-TITLE\n师 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n至 O\n今 O\n担 O\n任 O\n武 B-ORG\n汉 M-ORG\n三 M-ORG\n特 M-ORG\n索 M-ORG\n道 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n， O\n兼 O\n任 O\n华 B-ORG\n山 M-ORG\n宾 M-ORG\n馆 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n华 B-ORG\n山 M-ORG\n索 M-ORG\n道 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n景 B-ORG\n区 M-ORG\n营 M-ORG\n销 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n创 B-ORG\n时 M-ORG\n新 M-ORG\n一 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n陈 B-NAME\n俊 M-NAME\n孟 E-NAME\n男 O\n， O\n出 O\n生 O\n于 O\n1 O\n9 O\n6 O\n9 O\n年 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n1 O\n0 O\n月 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n1 O\n2 O\n月 O\n就 O\n职 O\n于 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n澳 M-ORG\n丽 M-ORG\n克 M-ORG\n电 M-ORG\n器 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n从 O\n事 O\n管 O\n理 O\n工 O\n作 O\n； O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n3 O\n月 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n1 O\n1 O\n月 O\n担 O\n任 O\n汕 B-ORG\n头 M-ORG\n市 M-ORG\n龙 M-ORG\n湖 M-ORG\n区 M-ORG\n永 M-ORG\n明 M-ORG\n墙 M-ORG\n纸 M-ORG\n商 M-ORG\n行 E-ORG\n负 O\n责 O\n人 O\n； O\n\n2 O\n0 O\n0 O\n3 O\n年 O\n2 O\n月 O\n加 O\n入 O\n本 B-TITLE\n公 M-TITLE\n司 E-TITLE\n， O\n从 O\n事 O\n销 O\n售 O\n管 O\n理 O\n工 O\n作 O\n， O\n区 B-TITLE\n域 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n。 O\n\n谭 B-NAME\n力 M-NAME\n文 E-NAME\n， O\n男 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n博 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 E-EDU\n， O\n企 B-TITLE\n业 M-TITLE\n管 M-TITLE\n理 M-TITLE\n专 M-TITLE\n业 M-TITLE\n教 M-TITLE\n授 E-TITLE\n、 O\n博 B-TITLE\n士 M-TITLE\n生 M-TITLE\n导 M-TITLE\n师 E-TITLE\n， O\n毕 O\n业 O\n于 O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 E-ORG\n， O\n自 O\n1 O\n9 O\n8 O\n2 O\n年 O\n起 O\n， O\n在 O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 E-ORG\n任 O\n教 O\n至 O\n今 O\n， O\n现 O\n任 O\n武 B-ORG\n汉 M-ORG\n大 M-ORG\n学 M-ORG\n企 M-ORG\n业 M-ORG\n战 M-ORG\n略 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n所 E-ORG\n所 B-TITLE\n长 E-TITLE\n。 O\n\n社 B-ORG\n会 M-ORG\n兼 M-ORG\n职 M-ORG\n有 M-ORG\n国 M-ORG\n家 M-ORG\n社 M-ORG\n会 M-ORG\n科 M-ORG\n学 M-ORG\n基 M-ORG\n金 M-ORG\n项 M-ORG\n目 M-ORG\n学 M-ORG\n科 M-ORG\n评 M-ORG\n审 M-ORG\n组 E-ORG\n专 B-TITLE\n家 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n经 M-ORG\n团 M-ORG\n联 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n企 M-ORG\n业 M-ORG\n管 M-ORG\n理 M-ORG\n研 M-ORG\n究 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n湖 B-ORG\n北 M-ORG\n省 M-ORG\n技 M-ORG\n术 M-ORG\n经 M-ORG\n济 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n3 O\n月 O\n起 O\n出 O\n任 O\n武 B-ORG\n汉 M-ORG\n中 M-ORG\n商 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n文 M-NAME\n斌 E-NAME\n先 O\n生 O\n： O\n1 O\n9 O\n6 O\n3 O\n年 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n。 O\n\n曾 O\n任 O\n包 B-ORG\n钢 M-ORG\n集 M-ORG\n团 E-ORG\n设 B-TITLE\n备 M-TITLE\n处 M-TITLE\n财 M-TITLE\n务 M-TITLE\n科 M-TITLE\n副 M-TITLE\n科 M-TITLE\n长 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n家 M-ORG\n电 M-ORG\n宝 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n成 B-TITLE\n本 M-TITLE\n控 M-TITLE\n制 M-TITLE\n室 M-TITLE\n成 M-TITLE\n本 M-TITLE\n主 M-TITLE\n管 E-TITLE\n， O\n芭 B-ORG\n田 M-ORG\n股 M-ORG\n份 E-ORG\n会 B-TITLE\n计 M-TITLE\n师 E-TITLE\n、 O\nE B-TITLE\nR M-TITLE\nP M-TITLE\n项 M-TITLE\n目 M-TITLE\n组 M-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n、 O\n部 B-TITLE\n长 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n负 M-TITLE\n责 M-TITLE\n人 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n7 O\n年 O\n1 O\n1 O\n月 O\n加 O\n入 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n尚 M-ORG\n荣 M-ORG\n医 M-ORG\n疗 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n担 O\n任 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n兼 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n现 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n尚 M-ORG\n荣 M-ORG\n医 M-ORG\n疗 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n华 M-ORG\n荣 M-ORG\n健 M-ORG\n康 M-ORG\n医 M-ORG\n疗 M-ORG\n设 M-ORG\n备 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n， O\n合 B-ORG\n肥 M-ORG\n普 M-ORG\n尔 M-ORG\n德 M-ORG\n医 M-ORG\n疗 M-ORG\n用 M-ORG\n品 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n张 B-ORG\n家 M-ORG\n港 M-ORG\n市 M-ORG\n锦 M-ORG\n洲 M-ORG\n医 M-ORG\n械 M-ORG\n制 M-ORG\n造 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n苏 B-ORG\n州 M-ORG\n吉 M-ORG\n美 M-ORG\n瑞 M-ORG\n医 M-ORG\n械 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n尚 M-ORG\n荣 M-ORG\n康 M-ORG\n源 M-ORG\n医 M-ORG\n疗 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n张 B-NAME\n彬 M-NAME\n贤 E-NAME\n： O\n男 O\n， O\n\n1 O\n9 O\n6 O\n1 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n永 O\n久 O\n境 O\n外 O\n居 O\n留 O\n权 O\n， O\n硕 B-EDU\n士 M-EDU\n研 M-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n中 B-ORG\n国 M-ORG\n包 M-ORG\n装 M-ORG\n联 M-ORG\n合 M-ORG\n会 E-ORG\n第 B-TITLE\n七 M-TITLE\n届 M-TITLE\n理 M-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n中 B-ORG\n国 M-ORG\n日 M-ORG\n用 M-ORG\n化 M-ORG\n工 M-ORG\n协 M-ORG\n会 M-ORG\n油 M-ORG\n墨 M-ORG\n分 M-ORG\n会 E-ORG\n第 B-TITLE\n七 M-TITLE\n届 M-TITLE\n理 M-TITLE\n事 M-TITLE\n会 M-TITLE\n副 M-TITLE\n理 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n广 B-ORG\n东 M-ORG\n包 M-ORG\n装 M-ORG\n技 M-ORG\n术 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n珠 B-TITLE\n海 M-TITLE\n市 M-TITLE\n第 M-TITLE\n七 M-TITLE\n届 M-TITLE\n人 M-TITLE\n大 M-TITLE\n代 M-TITLE\n表 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n8 O\n年 O\n进 O\n入 O\n珠 B-ORG\n海 M-ORG\n美 M-ORG\n光 M-ORG\n塑 M-ORG\n胶 M-ORG\n油 M-ORG\n墨 M-ORG\n制 M-ORG\n造 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 O\n作 O\n， O\n\n1 O\n9 O\n8 O\n9 O\n年 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n任 O\n该 B-ORG\n珠 M-ORG\n海 M-ORG\n市 M-ORG\n乐 M-ORG\n通 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n1 O\n9 O\n9 O\n6 O\n年 O\n至 O\n今 O\n任 O\n珠 B-ORG\n海 M-ORG\n市 M-ORG\n乐 M-ORG\n通 M-ORG\n化 M-ORG\n工 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n陈 B-NAME\n淑 M-NAME\n兰 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n4 O\n6 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n省 M-ORG\n医 M-ORG\n药 M-ORG\n专 M-ORG\n业 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n委 B-TITLE\n员 E-TITLE\n， O\n曾 O\n任 O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n省 M-ORG\n食 M-ORG\n品 M-ORG\n药 M-ORG\n品 M-ORG\n监 M-ORG\n督 M-ORG\n管 M-ORG\n理 M-ORG\n局 E-ORG\n副 B-TITLE\n局 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n组 M-TITLE\n成 M-TITLE\n员 E-TITLE\n， O\n哈 B-ORG\n药 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n独 B-TITLE\n立 M-TITLE\n董 M-TITLE\n事 E-TITLE\n， O\n黑 B-ORG\n龙 M-ORG\n江 M-ORG\n省 M-ORG\n医 M-ORG\n药 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n。 O\n\n孙 B-NAME\n忠 M-NAME\n义 E-NAME\n先 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n\n1 O\n9 O\n5 O\n4 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n专 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n自 O\n2 O\n0 O\n0 O\n0 O\n年 O\n起 O\n历 O\n任 O\n南 B-ORG\n宁 M-ORG\n饲 M-ORG\n料 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n广 B-ORG\n西 M-ORG\n南 M-ORG\n宁 M-ORG\n百 M-ORG\n洋 M-ORG\n饲 M-ORG\n料 M-ORG\n集 M-ORG\n团 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n执 B-TITLE\n行 M-TITLE\n董 M-TITLE\n事 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n等 O\n职 O\n务 O\n。 O\n\n2 O\n0 O\n1 O\n0 O\n年 O\n9 O\n月 O\n起 O\n任 O\n百 B-ORG\n洋 M-ORG\n水 M-ORG\n产 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n此 O\n外 O\n， O\n孙 S-NAME\n先 O\n生 O\n还 O\n兼 O\n任 O\n“ O\n中 B-ORG\n国 M-ORG\n水 M-ORG\n产 M-ORG\n流 M-ORG\n通 M-ORG\n与 M-ORG\n加 M-ORG\n工 M-ORG\n协 M-ORG\n会 M-ORG\n罗 M-ORG\n非 M-ORG\n鱼 M-ORG\n分 M-ORG\n会 E-ORG\n” O\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n、 O\n“ O\n广 B-ORG\n西 M-ORG\n水 M-ORG\n产 M-ORG\n畜 M-ORG\n牧 M-ORG\n业 M-ORG\n协 M-ORG\n会 M-ORG\n第 M-ORG\n二 M-ORG\n届 M-ORG\n理 M-ORG\n事 M-ORG\n会 E-ORG\n” O\n副 B-TITLE\n会 M-TITLE\n长 E-TITLE\n” O\n、 O\n“ O\n广 B-ORG\n西 M-ORG\n水 M-ORG\n产 M-ORG\n畜 M-ORG\n牧 M-ORG\n业 M-ORG\n协 M-ORG\n会 M-ORG\n罗 M-ORG\n非 M-ORG\n鱼 M-ORG\n分 M-ORG\n会 E-ORG\n” O\n会 B-TITLE\n长 E-TITLE\n。 O\n\n孙 S-NAME\n先 O\n生 O\n先 O\n后 O\n荣 O\n获 O\n南 O\n宁 O\n市 O\n人 O\n民 O\n政 O\n府 O\n“ O\n2 O\n0 O\n0 O\n8 O\n年 O\n度 O\n优 O\n秀 O\n企 O\n业 O\n家 O\n” O\n称 O\n号 O\n、 O\n中 O\n国 O\n水 O\n产 O\n流 O\n通 O\n与 O\n加 O\n工 O\n协 O\n会 O\n颁 O\n发 O\n的 O\n“ O\n2 O\n0 O\n0 O\n8 O\n年 O\n度 O\n全 O\n国 O\n十 O\n大 O\n罗 O\n非 O\n鱼 O\n人 O\n物 O\n” O\n称 O\n号 O\n、 O\n2 O\n0 O\n1 O\n0 O\n年 O\n获 O\n中 O\n国 O\n水 O\n产 O\n流 O\n通 O\n与 O\n加 O\n工 O\n协 O\n会 O\n“ O\n2 O\n0 O\n1 O\n0 O\n年 O\n度 O\n水 O\n产 O\n行 O\n业 O\n可 O\n持 O\n续 O\n发 O\n展 O\n突 O\n出 O\n贡 O\n献 O\n十 O\n大 O\n人 O\n物 O\n” O\n称 O\n号 O\n、 O\n2 O\n0 O\n1 O\n1 O\n年 O\n获 O\n广 O\n西 O\n区 O\n人 O\n民 O\n政 O\n府 O\n颁 O\n发 O\n“ O\n广 O\n西 O\n北 O\n部 O\n湾 O\n经 O\n济 O\n区 O\n优 O\n秀 O\n建 O\n设 O\n者 O\n” O\n称 O\n号 O\n、 O\n2 O\n0 O\n1 O\n2 O\n年 O\n获 O\n中 O\n国 O\n水 O\n产 O\n流 O\n通 O\n与 O\n加 O\n工 O\n协 O\n会 O\n颁 O\n发 O\n的 O\n“ O\n罗 O\n非 O\n鱼 O\n产 O\n业 O\n十 O\n年 O\n领 O\n军 O\n人 O\n物 O\n” O\n称 O\n号 O\n； O\n\n2 O\n0 O\n1 O\n4 O\n年 O\n被 O\n聘 O\n为 O\n广 B-ORG\n西 M-ORG\nE M-ORG\nM M-ORG\nB M-ORG\nA M-ORG\n智 M-ORG\n库 M-ORG\n专 M-ORG\n家 M-ORG\n委 M-ORG\n员 M-ORG\n会 E-ORG\n顾 B-TITLE\n问 E-TITLE\n； O\n\n2 O\n0 O\n1 O\n5 O\n年 O\n1 O\n月 O\n起 O\n任 O\n广 B-ORG\n西 M-ORG\n广 M-ORG\n联 M-ORG\n水 M-ORG\n产 M-ORG\n业 M-ORG\n商 M-ORG\n会 E-ORG\n会 B-TITLE\n长 E-TITLE\n。 O\n\n吴 B-NAME\n伟 M-NAME\n钢 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n6 O\n7 O\n年 O\n出 O\n生 O\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n无 O\n境 O\n外 O\n永 O\n久 O\n居 O\n留 O\n权 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n2 O\n0 O\n0 O\n1 O\n年 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n7 O\n月 O\n任 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n至 O\n2 O\n0 O\n1 O\n4 O\n年 O\n7 O\n月 O\n任 O\n力 B-TITLE\n源 M-TITLE\n应 M-TITLE\n用 M-TITLE\n服 M-TITLE\n务 M-TITLE\n董 M-TITLE\n事 E-TITLE\n。 O\n\n已 O\n于 O\n2 O\n0 O\n1 O\n4 O\n年 O\n7 O\n月 O\n1 O\n日 O\n正 O\n式 O\n辞 O\n去 O\n公 B-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n、 O\n财 B-TITLE\n务 M-TITLE\n总 M-TITLE\n监 E-TITLE\n， O\n力 B-TITLE\n源 M-TITLE\n应 M-TITLE\n用 M-TITLE\n服 M-TITLE\n务 M-TITLE\n董 M-TITLE\n事 E-TITLE\n职 O\n务 O\n。 O\n\n陈 B-NAME\n永 M-NAME\n愉 E-NAME\n， O\n\n1 O\n9 O\n7 O\n0 O\n年 O\n参 O\n加 O\n工 O\n作 O\n。 O\n\n任 O\n浙 B-ORG\n江 M-ORG\n东 M-ORG\n方 M-ORG\n集 M-ORG\n团 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n工 B-TITLE\n会 M-TITLE\n专 M-TITLE\n职 M-TITLE\n干 M-TITLE\n事 E-TITLE\n、 O\n职 B-TITLE\n工 M-TITLE\n代 M-TITLE\n表 E-TITLE\n、 O\n第 B-TITLE\n三 M-TITLE\n届 M-TITLE\n监 M-TITLE\n事 M-TITLE\n会 M-TITLE\n职 M-TITLE\n工 M-TITLE\n代 M-TITLE\n表 M-TITLE\n监 M-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n恩 M-NAME\n孝 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n0 O\n年 O\n1 O\n0 O\n月 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n专 M-EDU\n科 E-EDU\n毕 O\n业 O\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n1 O\n9 O\n6 O\n9 O\n年 O\n1 O\n月 O\n参 O\n军 O\n， O\n先 O\n后 O\n任 O\n副 B-TITLE\n班 M-TITLE\n长 E-TITLE\n、 O\n文 B-TITLE\n书 E-TITLE\n、 O\n团 B-ORG\n政 M-ORG\n治 M-ORG\n处 E-ORG\n和 O\n军 B-ORG\n政 M-ORG\n治 M-ORG\n部 E-ORG\n新 B-TITLE\n闻 M-TITLE\n干 M-TITLE\n事 E-TITLE\n、 O\n宣 B-TITLE\n传 M-TITLE\n干 M-TITLE\n事 E-TITLE\n、 O\n连 B-TITLE\n政 M-TITLE\n治 M-TITLE\n指 M-TITLE\n导 M-TITLE\n员 E-TITLE\n、 O\n营 B-TITLE\n政 M-TITLE\n治 M-TITLE\n教 M-TITLE\n导 M-TITLE\n员 E-TITLE\n、 O\n团 B-TITLE\n政 M-TITLE\n治 M-TITLE\n处 M-TITLE\n宣 M-TITLE\n传 M-TITLE\n股 M-TITLE\n长 E-TITLE\n、 O\n副 B-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n团 B-TITLE\n副 M-TITLE\n政 M-TITLE\n委 E-TITLE\n。 O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n2 O\n月 O\n转 O\n业 O\n到 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n炭 M-ORG\n气 M-ORG\n化 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n先 O\n后 O\n任 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n炭 M-ORG\n气 M-ORG\n化 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n宣 M-TITLE\n传 M-TITLE\n部 M-TITLE\n副 M-TITLE\n部 M-TITLE\n长 E-TITLE\n（ O\n主 O\n持 O\n工 O\n作 O\n） O\n、 O\n报 B-TITLE\n社 M-TITLE\n社 M-TITLE\n长 E-TITLE\n、 O\n电 B-TITLE\n视 M-TITLE\n台 M-TITLE\n台 M-TITLE\n长 E-TITLE\n、 O\n新 B-TITLE\n闻 M-TITLE\n中 M-TITLE\n心 M-TITLE\n主 M-TITLE\n任 E-TITLE\n， O\n运 B-TITLE\n销 M-TITLE\n处 M-TITLE\n副 M-TITLE\n处 M-TITLE\n长 E-TITLE\n、 O\n运 B-TITLE\n销 M-TITLE\n公 M-TITLE\n司 M-TITLE\n副 M-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n驻 B-ORG\n京 M-ORG\n办 M-ORG\n事 M-ORG\n处 E-ORG\n主 B-TITLE\n任 E-TITLE\n， O\n晋 B-ORG\n阳 M-ORG\n选 M-ORG\n煤 M-ORG\n厂 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n7 O\n月 O\n任 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n气 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n。 O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n5 O\n月 O\n起 O\n， O\n先 O\n后 O\n任 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n炭 M-ORG\n气 M-ORG\n化 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n政 B-TITLE\n策 M-TITLE\n研 M-TITLE\n究 M-TITLE\n室 M-TITLE\n主 M-TITLE\n任 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n处 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n、 O\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n0 O\n年 O\n9 O\n月 O\n任 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n气 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n2 O\n0 O\n0 O\n6 O\n年 O\n1 O\n0 O\n月 O\n任 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n气 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n8 O\n月 O\n3 O\n日 O\n辞 O\n去 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n气 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n会 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n职 O\n务 O\n。 O\n\n现 O\n任 O\n太 B-ORG\n原 M-ORG\n煤 M-ORG\n气 M-ORG\n化 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n同 O\n时 O\n兼 O\n任 O\n北 B-ORG\n京 M-ORG\n金 M-ORG\n奥 M-ORG\n维 M-ORG\n科 M-ORG\n技 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n。 O\n\n周 B-NAME\n润 M-NAME\n南 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n5 O\n7 O\n年 O\n出 O\n生 O\n， O\n大 B-EDU\n学 M-EDU\n本 M-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n。 O\n\n1 O\n9 O\n9 O\n4 O\n年 O\n至 O\n1 O\n9 O\n9 O\n5 O\n年 O\n和 O\n1 O\n9 O\n9 O\n6 O\n年 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n分 O\n别 O\n在 O\n国 B-ORG\n家 M-ORG\n经 M-ORG\n贸 M-ORG\n委 M-ORG\n企 M-ORG\n业 M-ORG\n司 E-ORG\n和 O\n上 B-ORG\n海 M-ORG\n市 M-ORG\n工 M-ORG\n业 M-ORG\n经 M-ORG\n济 M-ORG\n协 M-ORG\n会 E-ORG\n工 O\n作 O\n。 O\n\n1 O\n9 O\n9 O\n0 O\n年 O\n至 O\n1 O\n9 O\n9 O\n7 O\n年 O\n先 O\n后 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n工 M-ORG\n业 M-ORG\n机 M-ORG\n电 M-ORG\n学 M-ORG\n校 E-ORG\n副 B-TITLE\n校 M-TITLE\n长 E-TITLE\n， O\n中 B-ORG\n国 M-ORG\n纺 M-ORG\n织 M-ORG\n机 M-ORG\n械 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n企 B-TITLE\n业 M-TITLE\n发 M-TITLE\n展 M-TITLE\n研 M-TITLE\n究 M-TITLE\n所 M-TITLE\n副 M-TITLE\n所 M-TITLE\n长 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n洲 M-ORG\n际 M-ORG\n经 M-ORG\n贸 M-ORG\n研 M-ORG\n究 M-ORG\n开 M-ORG\n发 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n上 B-ORG\n海 M-ORG\n纺 M-ORG\n织 M-ORG\n机 M-ORG\n械 M-ORG\n器 M-ORG\n材 M-ORG\n行 M-ORG\n业 M-ORG\n协 M-ORG\n会 E-ORG\n副 B-TITLE\n秘 M-TITLE\n书 M-TITLE\n长 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n7 O\n年 O\n至 O\n1 O\n9 O\n9 O\n8 O\n年 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n华 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n投 B-TITLE\n资 M-TITLE\n部 M-TITLE\n副 M-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n1 O\n9 O\n9 O\n8 O\n年 O\n至 O\n2 O\n0 O\n0 O\n2 O\n年 O\n先 O\n后 O\n担 O\n任 O\n上 B-ORG\n海 M-ORG\n庆 M-ORG\n安 M-ORG\n科 M-ORG\n技 M-ORG\n发 M-ORG\n展 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n、 O\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n； O\n\n2 O\n0 O\n0 O\n2 O\n年 O\n8 O\n月 O\n至 O\n2 O\n0 O\n0 O\n3 O\n年 O\n5 O\n月 O\n担 O\n任 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n科 M-ORG\n苑 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n； O\n\n现 O\n任 O\n安 B-ORG\n徽 M-ORG\n省 M-ORG\n科 M-ORG\n苑 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n董 M-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n。 O\n\n杨 B-NAME\n媛 M-NAME\n媛 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n8 O\n6 O\n年 O\n8 O\n月 O\n出 O\n生 O\n， O\n本 B-EDU\n科 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n\n2 O\n0 O\n0 O\n9 O\n年 O\n任 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n东 M-ORG\n方 M-ORG\n金 M-ORG\n钰 M-ORG\n珠 M-ORG\n宝 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 M-TITLE\n秘 M-TITLE\n书 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n1 O\n年 O\n任 O\n东 B-ORG\n方 M-ORG\n金 M-ORG\n钰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n裁 M-TITLE\n助 M-TITLE\n理 E-TITLE\n兼 O\n深 B-ORG\n圳 M-ORG\n市 M-ORG\n东 M-ORG\n方 M-ORG\n金 M-ORG\n钰 M-ORG\n珠 M-ORG\n宝 M-ORG\n实 M-ORG\n业 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n1 O\n2 O\n年 O\n起 O\n任 O\n东 B-ORG\n方 M-ORG\n金 M-ORG\n钰 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n裁 E-TITLE\n。 O\n\n王 B-NAME\n建 M-NAME\n华 E-NAME\n， O\n男 O\n， O\n\n1 O\n9 O\n6 O\n2 O\n年 O\n1 O\n月 O\n出 O\n生 O\n， O\n南 B-ORG\n京 M-ORG\n工 M-ORG\n学 M-ORG\n院 E-ORG\n毕 O\n业 O\n。 O\n\n历 O\n任 O\n建 B-ORG\n行 M-ORG\n无 M-ORG\n锡 M-ORG\n市 M-ORG\n城 M-ORG\n南 M-ORG\n支 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n， O\n建 B-ORG\n行 M-ORG\n无 M-ORG\n锡 M-ORG\n投 M-ORG\n资 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n副 B-TITLE\n总 M-TITLE\n经 M-TITLE\n理 E-TITLE\n， O\n\n2 O\n0 O\n0 O\n4 O\n年 O\n4 O\n月 O\n5 O\n日 O\n起 O\n担 O\n任 O\n张 B-ORG\n家 M-ORG\n港 M-ORG\n东 M-ORG\n华 M-ORG\n优 M-ORG\n尼 M-ORG\n科 M-ORG\n能 M-ORG\n源 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n， O\n现 O\n任 O\n中 B-ORG\n国 M-ORG\n建 M-ORG\n设 M-ORG\n银 M-ORG\n行 M-ORG\n江 M-ORG\n阴 M-ORG\n支 M-ORG\n行 E-ORG\n行 B-TITLE\n长 E-TITLE\n， O\n张 B-ORG\n家 M-ORG\n港 M-ORG\n东 M-ORG\n华 M-ORG\n能 M-ORG\n源 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n刘 B-NAME\n瑞 M-NAME\n萍 E-NAME\n， O\n女 O\n， O\n\n1 O\n9 O\n5 O\n5 O\n年 O\n9 O\n月 O\n生 O\n， O\n中 B-TITLE\n共 M-TITLE\n党 M-TITLE\n员 E-TITLE\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n硕 B-EDU\n士 M-EDU\n学 M-EDU\n位 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n政 M-TITLE\n工 M-TITLE\n师 E-TITLE\n。 O\n\n曾 O\n任 O\n天 B-ORG\n津 M-ORG\n劝 M-ORG\n业 M-ORG\n场 E-ORG\n人 B-TITLE\n事 M-TITLE\n部 M-TITLE\n部 M-TITLE\n长 E-TITLE\n， O\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n纪 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n监 B-TITLE\n事 M-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n。 O\n\n李 B-NAME\n晓 M-NAME\n鹏 E-NAME\n， O\n中 B-CONT\n国 M-CONT\n国 M-CONT\n籍 E-CONT\n， O\n生 O\n于 O\n一 O\n九 O\n七 O\n三 O\n年 O\n三 O\n月 O\n， O\n硕 B-EDU\n士 E-EDU\n、 O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n现 O\n任 O\n华 B-ORG\n电 M-ORG\n国 M-ORG\n际 M-ORG\n电 M-ORG\n力 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n监 B-TITLE\n事 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n国 M-ORG\n际 M-ORG\n信 M-ORG\n托 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n总 B-TITLE\n经 M-TITLE\n理 M-TITLE\n助 M-TITLE\n理 E-TITLE\n、 O\n兼 O\n任 O\n山 B-ORG\n东 M-ORG\n百 M-ORG\n年 M-ORG\n电 M-ORG\n力 M-ORG\n发 M-ORG\n展 M-ORG\n股 M-ORG\n份 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n山 B-ORG\n西 M-ORG\n鲁 M-ORG\n晋 M-ORG\n王 M-ORG\n曲 M-ORG\n发 M-ORG\n电 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n、 O\n邯 B-ORG\n济 M-ORG\n铁 M-ORG\n路 M-ORG\n有 M-ORG\n限 M-ORG\n责 M-ORG\n任 M-ORG\n公 M-ORG\n司 E-ORG\n等 O\n公 B-ORG\n司 E-ORG\n董 B-TITLE\n事 E-TITLE\n。 O\n\n李 S-NAME\n先 O\n生 O\n一 O\n九 O\n九 O\n五 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n一 O\n直 O\n服 O\n务 O\n于 O\n山 B-ORG\n东 M-ORG\n省 M-ORG\n国 M-ORG\n际 M-ORG\n信 M-ORG\n托 M-ORG\n有 M-ORG\n限 M-ORG\n公 M-ORG\n司 E-ORG\n， O\n在 O\n基 O\n金 O\n、 O\n投 O\n融 O\n资 O\n、 O\n证 O\n券 O\n等 O\n方 O\n面 O\n具 O\n有 O\n多 O\n年 O\n的 O\n工 O\n作 O\n经 O\n验 O\n。 O\n\n耿 B-NAME\n佃 M-NAME\n杰 E-NAME\n先 O\n生 O\n， O\n\n1 O\n9 O\n5 O\n3 O\n年 O\n9 O\n月 O\n出 O\n生 O\n， O\n研 B-EDU\n究 M-EDU\n生 M-EDU\n学 M-EDU\n历 E-EDU\n， O\n高 B-TITLE\n级 M-TITLE\n经 M-TITLE\n济 M-TITLE\n师 E-TITLE\n， O\n\n1 O\n9 O\n7 O\n2 O\n年 O\n参 O\n加 O\n工 O\n作 O\n， O\n曾 O\n任 O\n海 B-ORG\n军 M-ORG\n航 M-ORG\n空 M-ORG\n兵 M-ORG\n1 M-ORG\n2 M-ORG\n师 E-ORG\n军 B-TITLE\n械 M-TITLE\n师 E-TITLE\n， O\n南 B-ORG\n京 M-ORG\n海 M-ORG\n军 M-ORG\n学 M-ORG\n院 M-ORG\n航 M-ORG\n空 M-ORG\n兵 M-ORG\n教 M-ORG\n研 M-ORG\n室 E-ORG\n正 B-TITLE\n连 M-TITLE\n职 M-TITLE\n教 M-TITLE\n官 E-TITLE\n、 O\n淄 B-ORG\n博 M-ORG\n市 M-ORG\n化 M-ORG\n工 M-ORG\n公 M-ORG\n司 E-ORG\n团 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n、 O\n山 B-ORG\n东 M-ORG\n张 M-ORG\n店 M-ORG\n化 M-ORG\n工 M-ORG\n厂 E-ORG\n工 B-TITLE\n会 M-TITLE\n主 M-TITLE\n席 E-TITLE\n、 O\n常 B-TITLE\n务 M-TITLE\n副 M-TITLE\n厂 M-TITLE\n长 E-TITLE\n， O\n山 B-ORG\n东 M-ORG\n东 M-ORG\n大 M-ORG\n化 M-ORG\n学 M-ORG\n工 M-ORG\n业 M-ORG\n（ M-ORG\n集 M-ORG\n团 M-ORG\n） M-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n总 B-TITLE\n经 M-TITLE\n理 E-TITLE\n兼 O\n党 B-TITLE\n委 M-TITLE\n副 M-TITLE\n书 M-TITLE\n记 E-TITLE\n， O\n淄 B-ORG\n博 M-ORG\n市 M-ORG\n电 M-ORG\n子 M-ORG\n工 M-ORG\n业 M-ORG\n公 M-ORG\n司 E-ORG\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n兼 O\n经 B-TITLE\n理 E-TITLE\n， O\n现 O\n任 O\n本 B-ORG\n公 M-ORG\n司 E-ORG\n董 B-TITLE\n事 M-TITLE\n长 E-TITLE\n、 O\n党 B-TITLE\n委 M-TITLE\n书 M-TITLE\n记 E-TITLE\n。 O\n\n"
  },
  {
    "path": "named_entity_recognition/data.py",
    "content": "from os.path import join\nfrom codecs import open\n\n\ndef build_corpus(split, make_vocab=True, data_dir=\"./ResumeNER\"):\n    \"\"\"读取数据\"\"\"\n    assert split in ['train', 'dev', 'test']\n\n    word_lists = []\n    tag_lists = []\n    with open(join(data_dir, split+\".char.bmes\"), 'r', encoding='utf-8') as f:\n        word_list = []\n        tag_list = []\n        for line in f:\n            if line != '\\n':\n                word, tag = line.strip('\\n').split()\n                word_list.append(word)\n                tag_list.append(tag)\n            else:\n                word_lists.append(word_list)\n                tag_lists.append(tag_list)\n                word_list = []\n                tag_list = []\n\n    # 如果make_vocab为True，还需要返回word2id和tag2id\n    if make_vocab:\n        word2id = build_map(word_lists)\n        tag2id = build_map(tag_lists)\n        return word_lists, tag_lists, word2id, tag2id\n    else:\n        return word_lists, tag_lists\n\n\ndef build_map(lists):\n    maps = {}\n    for list_ in lists:\n        for e in list_:\n            if e not in maps:\n                maps[e] = len(maps)\n\n    return maps\n"
  },
  {
    "path": "named_entity_recognition/evaluate.py",
    "content": "import time\nfrom collections import Counter\n\nfrom models.hmm import HMM\nfrom models.crf import CRFModel\nfrom models.bilstm_crf import BILSTM_Model\nfrom utils import save_model, flatten_lists\nfrom evaluating import Metrics\n\n\ndef hmm_train_eval(train_data, test_data, word2id, tag2id, remove_O=False):\n    \"\"\"训练并评估hmm模型\"\"\"\n    # 训练HMM模型\n    train_word_lists, train_tag_lists = train_data\n    test_word_lists, test_tag_lists = test_data\n\n    hmm_model = HMM(len(tag2id), len(word2id))\n    hmm_model.train(train_word_lists,\n                    train_tag_lists,\n                    word2id,\n                    tag2id)\n    save_model(hmm_model, \"./ckpts/hmm.pkl\")\n\n    # 评估hmm模型\n    pred_tag_lists = hmm_model.test(test_word_lists,\n                                    word2id,\n                                    tag2id)\n\n    metrics = Metrics(test_tag_lists, pred_tag_lists, remove_O=remove_O)\n    metrics.report_scores()\n    metrics.report_confusion_matrix()\n\n    return pred_tag_lists\n\n\ndef crf_train_eval(train_data, test_data, remove_O=False):\n\n    # 训练CRF模型\n    train_word_lists, train_tag_lists = train_data\n    test_word_lists, test_tag_lists = test_data\n\n    crf_model = CRFModel()\n    crf_model.train(train_word_lists, train_tag_lists)\n    save_model(crf_model, \"./ckpts/crf.pkl\")\n\n    pred_tag_lists = crf_model.test(test_word_lists)\n\n    metrics = Metrics(test_tag_lists, pred_tag_lists, remove_O=remove_O)\n    metrics.report_scores()\n    metrics.report_confusion_matrix()\n\n    return pred_tag_lists\n\n\ndef bilstm_train_and_eval(train_data, dev_data, test_data,\n                          word2id, tag2id, crf=True, remove_O=False):\n    train_word_lists, train_tag_lists = train_data\n    dev_word_lists, dev_tag_lists = dev_data\n    test_word_lists, test_tag_lists = test_data\n\n    start = time.time()\n    vocab_size = len(word2id)\n    out_size = len(tag2id)\n    bilstm_model = BILSTM_Model(vocab_size, out_size, crf=crf)\n    bilstm_model.train(train_word_lists, train_tag_lists,\n                       dev_word_lists, dev_tag_lists, word2id, tag2id)\n\n    model_name = \"bilstm_crf\" if crf else \"bilstm\"\n    save_model(bilstm_model, \"./ckpts/\"+model_name+\".pkl\")\n\n    print(\"训练完毕,共用时{}秒.\".format(int(time.time()-start)))\n    print(\"评估{}模型中...\".format(model_name))\n    pred_tag_lists, test_tag_lists = bilstm_model.test(\n        test_word_lists, test_tag_lists, word2id, tag2id)\n\n    metrics = Metrics(test_tag_lists, pred_tag_lists, remove_O=remove_O)\n    metrics.report_scores()\n    metrics.report_confusion_matrix()\n\n    return pred_tag_lists\n\n\ndef ensemble_evaluate(results, targets, remove_O=False):\n    \"\"\"ensemble多个模型\"\"\"\n    for i in range(len(results)):\n        results[i] = flatten_lists(results[i])\n\n    pred_tags = []\n    for result in zip(*results):\n        ensemble_tag = Counter(result).most_common(1)[0][0]\n        pred_tags.append(ensemble_tag)\n\n    targets = flatten_lists(targets)\n    assert len(pred_tags) == len(targets)\n\n    print(\"Ensemble 四个模型的结果如下：\")\n    metrics = Metrics(targets, pred_tags, remove_O=remove_O)\n    metrics.report_scores()\n    metrics.report_confusion_matrix()\n"
  },
  {
    "path": "named_entity_recognition/evaluating.py",
    "content": "from collections import Counter\n\nfrom utils import flatten_lists\n\n\nclass Metrics(object):\n    \"\"\"用于评价模型，计算每个标签的精确率，召回率，F1分数\"\"\"\n\n    def __init__(self, golden_tags, predict_tags, remove_O=False):\n\n        # [[t1, t2], [t3, t4]...] --> [t1, t2, t3, t4...]\n        self.golden_tags = flatten_lists(golden_tags)\n        self.predict_tags = flatten_lists(predict_tags)\n\n        if remove_O:  # 将O标记移除，只关心实体标记\n            self._remove_Otags()\n\n        # 辅助计算的变量\n        self.tagset = set(self.golden_tags)\n        self.correct_tags_number = self.count_correct_tags()\n        self.predict_tags_counter = Counter(self.predict_tags)\n        self.golden_tags_counter = Counter(self.golden_tags)\n\n        # 计算精确率\n        self.precision_scores = self.cal_precision()\n\n        # 计算召回率\n        self.recall_scores = self.cal_recall()\n\n        # 计算F1分数\n        self.f1_scores = self.cal_f1()\n\n    def cal_precision(self):\n\n        precision_scores = {}\n        for tag in self.tagset:\n            precision_scores[tag] = self.correct_tags_number.get(tag, 0) / \\\n                self.predict_tags_counter[tag]\n\n        return precision_scores\n\n    def cal_recall(self):\n\n        recall_scores = {}\n        for tag in self.tagset:\n            recall_scores[tag] = self.correct_tags_number.get(tag, 0) / \\\n                self.golden_tags_counter[tag]\n        return recall_scores\n\n    def cal_f1(self):\n        f1_scores = {}\n        for tag in self.tagset:\n            p, r = self.precision_scores[tag], self.recall_scores[tag]\n            f1_scores[tag] = 2*p*r / (p+r+1e-10)  # 加上一个特别小的数，防止分母为0\n        return f1_scores\n\n    def report_scores(self):\n        \"\"\"将结果用表格的形式打印出来，像这个样子：\n\n                      precision    recall  f1-score   support\n              B-LOC      0.775     0.757     0.766      1084\n              I-LOC      0.601     0.631     0.616       325\n             B-MISC      0.698     0.499     0.582       339\n             I-MISC      0.644     0.567     0.603       557\n              B-ORG      0.795     0.801     0.798      1400\n              I-ORG      0.831     0.773     0.801      1104\n              B-PER      0.812     0.876     0.843       735\n              I-PER      0.873     0.931     0.901       634\n\n          avg/total      0.779     0.764     0.770      6178\n        \"\"\"\n        # 打印表头\n        header_format = '{:>9s}  {:>9} {:>9} {:>9} {:>9}'\n        header = ['precision', 'recall', 'f1-score', 'support']\n        print(header_format.format('', *header))\n\n        row_format = '{:>9s}  {:>9.4f} {:>9.4f} {:>9.4f} {:>9}'\n        # 打印每个标签的 精确率、召回率、f1分数\n        for tag in self.tagset:\n            print(row_format.format(\n                tag,\n                self.precision_scores[tag],\n                self.recall_scores[tag],\n                self.f1_scores[tag],\n                self.golden_tags_counter[tag]\n            ))\n\n        # 计算并打印平均值\n        avg_metrics = self._cal_weighted_average()\n        print(row_format.format(\n            'avg/total',\n            avg_metrics['precision'],\n            avg_metrics['recall'],\n            avg_metrics['f1_score'],\n            len(self.golden_tags)\n        ))\n\n    def count_correct_tags(self):\n        \"\"\"计算每种标签预测正确的个数(对应精确率、召回率计算公式上的tp)，用于后面精确率以及召回率的计算\"\"\"\n        correct_dict = {}\n        for gold_tag, predict_tag in zip(self.golden_tags, self.predict_tags):\n            if gold_tag == predict_tag:\n                if gold_tag not in correct_dict:\n                    correct_dict[gold_tag] = 1\n                else:\n                    correct_dict[gold_tag] += 1\n\n        return correct_dict\n\n    def _cal_weighted_average(self):\n\n        weighted_average = {}\n        total = len(self.golden_tags)\n\n        # 计算weighted precisions:\n        weighted_average['precision'] = 0.\n        weighted_average['recall'] = 0.\n        weighted_average['f1_score'] = 0.\n        for tag in self.tagset:\n            size = self.golden_tags_counter[tag]\n            weighted_average['precision'] += self.precision_scores[tag] * size\n            weighted_average['recall'] += self.recall_scores[tag] * size\n            weighted_average['f1_score'] += self.f1_scores[tag] * size\n\n        for metric in weighted_average.keys():\n            weighted_average[metric] /= total\n\n        return weighted_average\n\n    def _remove_Otags(self):\n\n        length = len(self.golden_tags)\n        O_tag_indices = [i for i in range(length)\n                         if self.golden_tags[i] == 'O']\n\n        self.golden_tags = [tag for i, tag in enumerate(self.golden_tags)\n                            if i not in O_tag_indices]\n\n        self.predict_tags = [tag for i, tag in enumerate(self.predict_tags)\n                             if i not in O_tag_indices]\n        print(\"原总标记数为{}，移除了{}个O标记，占比{:.2f}%\".format(\n            length,\n            len(O_tag_indices),\n            len(O_tag_indices) / length * 100\n        ))\n\n    def report_confusion_matrix(self):\n        \"\"\"计算混淆矩阵\"\"\"\n\n        print(\"\\nConfusion Matrix:\")\n        tag_list = list(self.tagset)\n        # 初始化混淆矩阵 matrix[i][j]表示第i个tag被模型预测成第j个tag的次数\n        tags_size = len(tag_list)\n        matrix = []\n        for i in range(tags_size):\n            matrix.append([0] * tags_size)\n\n        # 遍历tags列表\n        for golden_tag, predict_tag in zip(self.golden_tags, self.predict_tags):\n            try:\n                row = tag_list.index(golden_tag)\n                col = tag_list.index(predict_tag)\n                matrix[row][col] += 1\n            except ValueError:  # 有极少数标记没有出现在golden_tags，但出现在predict_tags，跳过这些标记\n                continue\n\n        # 输出矩阵\n        row_format_ = '{:>7} ' * (tags_size+1)\n        print(row_format_.format(\"\", *tag_list))\n        for i, row in enumerate(matrix):\n            print(row_format_.format(tag_list[i], *row))\n"
  },
  {
    "path": "named_entity_recognition/main.py",
    "content": "\nfrom data import build_corpus\nfrom utils import extend_maps, prepocess_data_for_lstmcrf\nfrom evaluate import hmm_train_eval, crf_train_eval, \\\n    bilstm_train_and_eval, ensemble_evaluate\n\n\ndef main():\n    \"\"\"训练模型，评估结果\"\"\"\n\n    # 读取数据\n    print(\"读取数据...\")\n    train_word_lists, train_tag_lists, word2id, tag2id = \\\n        build_corpus(\"train\")\n    dev_word_lists, dev_tag_lists = build_corpus(\"dev\", make_vocab=False)\n    test_word_lists, test_tag_lists = build_corpus(\"test\", make_vocab=False)\n\n    # 训练评估ｈｍｍ模型\n    print(\"正在训练评估HMM模型...\")\n    hmm_pred = hmm_train_eval(\n        (train_word_lists, train_tag_lists),\n        (test_word_lists, test_tag_lists),\n        word2id,\n        tag2id\n    )\n\n    # 训练评估CRF模型\n    print(\"正在训练评估CRF模型...\")\n    crf_pred = crf_train_eval(\n        (train_word_lists, train_tag_lists),\n        (test_word_lists, test_tag_lists)\n    )\n\n    # 训练评估BI-LSTM模型\n    print(\"正在训练评估双向LSTM模型...\")\n    # LSTM模型训练的时候需要在word2id和tag2id加入PAD和UNK\n    bilstm_word2id, bilstm_tag2id = extend_maps(word2id, tag2id, for_crf=False)\n    lstm_pred = bilstm_train_and_eval(\n        (train_word_lists, train_tag_lists),\n        (dev_word_lists, dev_tag_lists),\n        (test_word_lists, test_tag_lists),\n        bilstm_word2id, bilstm_tag2id,\n        crf=False\n    )\n\n    print(\"正在训练评估Bi-LSTM+CRF模型...\")\n    # 如果是加了CRF的lstm还要加入<start>和<end> (解码的时候需要用到)\n    crf_word2id, crf_tag2id = extend_maps(word2id, tag2id, for_crf=True)\n    # 还需要额外的一些数据处理\n    train_word_lists, train_tag_lists = prepocess_data_for_lstmcrf(\n        train_word_lists, train_tag_lists\n    )\n    dev_word_lists, dev_tag_lists = prepocess_data_for_lstmcrf(\n        dev_word_lists, dev_tag_lists\n    )\n    test_word_lists, test_tag_lists = prepocess_data_for_lstmcrf(\n        test_word_lists, test_tag_lists, test=True\n    )\n    lstmcrf_pred = bilstm_train_and_eval(\n        (train_word_lists, train_tag_lists),\n        (dev_word_lists, dev_tag_lists),\n        (test_word_lists, test_tag_lists),\n        crf_word2id, crf_tag2id\n    )\n\n    ensemble_evaluate(\n        [hmm_pred, crf_pred, lstm_pred, lstmcrf_pred],\n        test_tag_lists\n    )\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "named_entity_recognition/models/__init__.py",
    "content": ""
  },
  {
    "path": "named_entity_recognition/models/bilstm.py",
    "content": "import torch\nimport torch.nn as nn\nfrom torch.nn.utils.rnn import pad_packed_sequence, pack_padded_sequence\n\n\nclass BiLSTM(nn.Module):\n    def __init__(self, vocab_size, emb_size, hidden_size, out_size):\n        \"\"\"初始化参数：\n            vocab_size:字典的大小\n            emb_size:词向量的维数\n            hidden_size：隐向量的维数\n            out_size:标注的种类\n        \"\"\"\n        super(BiLSTM, self).__init__()\n        self.embedding = nn.Embedding(vocab_size, emb_size)\n        self.bilstm = nn.LSTM(emb_size, hidden_size,\n                              batch_first=True,\n                              bidirectional=True)\n\n        self.lin = nn.Linear(2*hidden_size, out_size)\n\n    def forward(self, sents_tensor, lengths):\n        emb = self.embedding(sents_tensor)  # [B, L, emb_size]\n\n        packed = pack_padded_sequence(emb, lengths, batch_first=True)\n        rnn_out, _ = self.bilstm(packed)\n        # rnn_out:[B, L, hidden_size*2]\n        rnn_out, _ = pad_packed_sequence(rnn_out, batch_first=True)\n\n        scores = self.lin(rnn_out)  # [B, L, out_size]\n\n        return scores\n\n    def test(self, sents_tensor, lengths, _):\n        \"\"\"第三个参数不会用到，加它是为了与BiLSTM_CRF保持同样的接口\"\"\"\n        logits = self.forward(sents_tensor, lengths)  # [B, L, out_size]\n        _, batch_tagids = torch.max(logits, dim=2)\n\n        return batch_tagids\n"
  },
  {
    "path": "named_entity_recognition/models/bilstm_crf.py",
    "content": "from itertools import zip_longest\nfrom copy import deepcopy\n\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\n\nfrom .util import tensorized, sort_by_lengths, cal_loss, cal_lstm_crf_loss\nfrom .config import TrainingConfig, LSTMConfig\nfrom .bilstm import BiLSTM\n\n\nclass BILSTM_Model(object):\n    def __init__(self, vocab_size, out_size, crf=True):\n        \"\"\"功能：对LSTM的模型进行训练与测试\n           参数:\n            vocab_size:词典大小\n            out_size:标注种类\n            crf选择是否添加CRF层\"\"\"\n        self.device = torch.device(\n            \"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n        # 加载模型参数\n        self.emb_size = LSTMConfig.emb_size\n        self.hidden_size = LSTMConfig.hidden_size\n\n        self.crf = crf\n        # 根据是否添加crf初始化不同的模型 选择不一样的损失计算函数\n        if not crf:\n            self.model = BiLSTM(vocab_size, self.emb_size,\n                                self.hidden_size, out_size).to(self.device)\n            self.cal_loss_func = cal_loss\n        else:\n            self.model = BiLSTM_CRF(vocab_size, self.emb_size,\n                                    self.hidden_size, out_size).to(self.device)\n            self.cal_loss_func = cal_lstm_crf_loss\n\n        # 加载训练参数：\n        self.epoches = TrainingConfig.epoches\n        self.print_step = TrainingConfig.print_step\n        self.lr = TrainingConfig.lr\n        self.batch_size = TrainingConfig.batch_size\n\n        # 初始化优化器\n        self.optimizer = optim.Adam(self.model.parameters(), lr=self.lr)\n\n        # 初始化其他指标\n        self.step = 0\n        self._best_val_loss = 1e18\n        self.best_model = None\n\n    def train(self, word_lists, tag_lists,\n              dev_word_lists, dev_tag_lists,\n              word2id, tag2id):\n        # 对数据集按照长度进行排序\n        word_lists, tag_lists, _ = sort_by_lengths(word_lists, tag_lists)\n        dev_word_lists, dev_tag_lists, _ = sort_by_lengths(\n            dev_word_lists, dev_tag_lists)\n\n        B = self.batch_size\n        for e in range(1, self.epoches+1):\n            self.step = 0\n            losses = 0.\n            for ind in range(0, len(word_lists), B):\n                batch_sents = word_lists[ind:ind+B]\n                batch_tags = tag_lists[ind:ind+B]\n\n                losses += self.train_step(batch_sents,\n                                          batch_tags, word2id, tag2id)\n\n                if self.step % TrainingConfig.print_step == 0:\n                    total_step = (len(word_lists) // B + 1)\n                    print(\"Epoch {}, step/total_step: {}/{} {:.2f}% Loss:{:.4f}\".format(\n                        e, self.step, total_step,\n                        100. * self.step / total_step,\n                        losses / self.print_step\n                    ))\n                    losses = 0.\n\n            # 每轮结束测试在验证集上的性能，保存最好的一个\n            val_loss = self.validate(\n                dev_word_lists, dev_tag_lists, word2id, tag2id)\n            print(\"Epoch {}, Val Loss:{:.4f}\".format(e, val_loss))\n\n    def train_step(self, batch_sents, batch_tags, word2id, tag2id):\n        self.model.train()\n        self.step += 1\n        # 准备数据\n        tensorized_sents, lengths = tensorized(batch_sents, word2id)\n        tensorized_sents = tensorized_sents.to(self.device)\n        targets, lengths = tensorized(batch_tags, tag2id)\n        targets = targets.to(self.device)\n\n        # forward\n        scores = self.model(tensorized_sents, lengths)\n\n        # 计算损失 更新参数\n        self.optimizer.zero_grad()\n        loss = self.cal_loss_func(scores, targets, tag2id).to(self.device)\n        loss.backward()\n        self.optimizer.step()\n\n        return loss.item()\n\n    def validate(self, dev_word_lists, dev_tag_lists, word2id, tag2id):\n        self.model.eval()\n        with torch.no_grad():\n            val_losses = 0.\n            val_step = 0\n            for ind in range(0, len(dev_word_lists), self.batch_size):\n                val_step += 1\n                # 准备batch数据\n                batch_sents = dev_word_lists[ind:ind+self.batch_size]\n                batch_tags = dev_tag_lists[ind:ind+self.batch_size]\n                tensorized_sents, lengths = tensorized(\n                    batch_sents, word2id)\n                tensorized_sents = tensorized_sents.to(self.device)\n                targets, lengths = tensorized(batch_tags, tag2id)\n                targets = targets.to(self.device)\n\n                # forward\n                scores = self.model(tensorized_sents, lengths)\n\n                # 计算损失\n                loss = self.cal_loss_func(\n                    scores, targets, tag2id).to(self.device)\n                val_losses += loss.item()\n            val_loss = val_losses / val_step\n\n            if val_loss < self._best_val_loss:\n                print(\"保存模型...\")\n                self.best_model = deepcopy(self.model)\n                self._best_val_loss = val_loss\n\n            return val_loss\n\n    def test(self, word_lists, tag_lists, word2id, tag2id):\n        \"\"\"返回最佳模型在测试集上的预测结果\"\"\"\n        # 准备数据\n        word_lists, tag_lists, indices = sort_by_lengths(word_lists, tag_lists)\n        tensorized_sents, lengths = tensorized(word_lists, word2id)\n        tensorized_sents = tensorized_sents.to(self.device)\n\n        self.best_model.eval()\n        with torch.no_grad():\n            batch_tagids = self.best_model.test(\n                tensorized_sents, lengths, tag2id)\n\n        # 将id转化为标注\n        pred_tag_lists = []\n        id2tag = dict((id_, tag) for tag, id_ in tag2id.items())\n        for i, ids in enumerate(batch_tagids):\n            tag_list = []\n            if self.crf:\n                for j in range(lengths[i] - 1):  # crf解码过程中，end被舍弃\n                    tag_list.append(id2tag[ids[j].item()])\n            else:\n                for j in range(lengths[i]):\n                    tag_list.append(id2tag[ids[j].item()])\n            pred_tag_lists.append(tag_list)\n\n        # indices存有根据长度排序后的索引映射的信息\n        # 比如若indices = [1, 2, 0] 则说明原先索引为1的元素映射到的新的索引是0，\n        # 索引为2的元素映射到新的索引是1...\n        # 下面根据indices将pred_tag_lists和tag_lists转化为原来的顺序\n        ind_maps = sorted(list(enumerate(indices)), key=lambda e: e[1])\n        indices, _ = list(zip(*ind_maps))\n        pred_tag_lists = [pred_tag_lists[i] for i in indices]\n        tag_lists = [tag_lists[i] for i in indices]\n\n        return pred_tag_lists, tag_lists\n\n\nclass BiLSTM_CRF(nn.Module):\n    def __init__(self, vocab_size, emb_size, hidden_size, out_size):\n        \"\"\"初始化参数：\n            vocab_size:字典的大小\n            emb_size:词向量的维数\n            hidden_size：隐向量的维数\n            out_size:标注的种类\n        \"\"\"\n        super(BiLSTM_CRF, self).__init__()\n        self.bilstm = BiLSTM(vocab_size, emb_size, hidden_size, out_size)\n\n        # CRF实际上就是多学习一个转移矩阵 [out_size, out_size] 初始化为均匀分布\n        self.transition = nn.Parameter(\n            torch.ones(out_size, out_size) * 1/out_size)\n        # self.transition.data.zero_()\n\n    def forward(self, sents_tensor, lengths):\n        # [B, L, out_size]\n        emission = self.bilstm(sents_tensor, lengths)\n\n        # 计算CRF scores, 这个scores大小为[B, L, out_size, out_size]\n        # 也就是每个字对应对应一个 [out_size, out_size]的矩阵\n        # 这个矩阵第i行第j列的元素的含义是：上一时刻tag为i，这一时刻tag为j的分数\n        batch_size, max_len, out_size = emission.size()\n        crf_scores = emission.unsqueeze(\n            2).expand(-1, -1, out_size, -1) + self.transition.unsqueeze(0)\n\n        return crf_scores\n\n    def test(self, test_sents_tensor, lengths, tag2id):\n        \"\"\"使用维特比算法进行解码\"\"\"\n        start_id = tag2id['<start>']\n        end_id = tag2id['<end>']\n        pad = tag2id['<pad>']\n        tagset_size = len(tag2id)\n\n        crf_scores = self.forward(test_sents_tensor, lengths)\n        device = crf_scores.device\n        # B:batch_size, L:max_len, T:target set size\n        B, L, T, _ = crf_scores.size()\n        # viterbi[i, j, k]表示第i个句子，第j个字对应第k个标记的最大分数\n        viterbi = torch.zeros(B, L, T).to(device)\n        # backpointer[i, j, k]表示第i个句子，第j个字对应第k个标记时前一个标记的id，用于回溯\n        backpointer = (torch.zeros(B, L, T).long() * end_id).to(device)\n        lengths = torch.LongTensor(lengths).to(device)\n        # 向前递推\n        for step in range(L):\n            batch_size_t = (lengths > step).sum().item()\n            if step == 0:\n                # 第一个字它的前一个标记只能是start_id\n                viterbi[:batch_size_t, step,\n                        :] = crf_scores[: batch_size_t, step, start_id, :]\n                backpointer[: batch_size_t, step, :] = start_id\n            else:\n                max_scores, prev_tags = torch.max(\n                    viterbi[:batch_size_t, step-1, :].unsqueeze(2) +\n                    crf_scores[:batch_size_t, step, :, :],     # [B, T, T]\n                    dim=1\n                )\n                viterbi[:batch_size_t, step, :] = max_scores\n                backpointer[:batch_size_t, step, :] = prev_tags\n\n        # 在回溯的时候我们只需要用到backpointer矩阵\n        backpointer = backpointer.view(B, -1)  # [B, L * T]\n        tagids = []  # 存放结果\n        tags_t = None\n        for step in range(L-1, 0, -1):\n            batch_size_t = (lengths > step).sum().item()\n            if step == L-1:\n                index = torch.ones(batch_size_t).long() * (step * tagset_size)\n                index = index.to(device)\n                index += end_id\n            else:\n                prev_batch_size_t = len(tags_t)\n\n                new_in_batch = torch.LongTensor(\n                    [end_id] * (batch_size_t - prev_batch_size_t)).to(device)\n                offset = torch.cat(\n                    [tags_t, new_in_batch],\n                    dim=0\n                )  # 这个offset实际上就是前一时刻的\n                index = torch.ones(batch_size_t).long() * (step * tagset_size)\n                index = index.to(device)\n                index += offset.long()\n\n            try:\n                tags_t = backpointer[:batch_size_t].gather(\n                    dim=1, index=index.unsqueeze(1).long())\n            except RuntimeError:\n                import pdb\n                pdb.set_trace()\n            tags_t = tags_t.squeeze(1)\n            tagids.append(tags_t.tolist())\n\n        # tagids:[L-1]（L-1是因为扣去了end_token),大小的liebiao\n        # 其中列表内的元素是该batch在该时刻的标记\n        # 下面修正其顺序，并将维度转换为 [B, L]\n        tagids = list(zip_longest(*reversed(tagids), fillvalue=pad))\n        tagids = torch.Tensor(tagids).long()\n\n        # 返回解码的结果\n        return tagids\n"
  },
  {
    "path": "named_entity_recognition/models/config.py",
    "content": "# 设置lstm训练参数\nclass TrainingConfig(object):\n    batch_size = 64\n    # 学习速率\n    lr = 0.001\n    epoches = 30\n    print_step = 5\n\n\nclass LSTMConfig(object):\n    emb_size = 128  # 词向量的维数\n    hidden_size = 128  # lstm隐向量的维数\n"
  },
  {
    "path": "named_entity_recognition/models/crf.py",
    "content": "from sklearn_crfsuite import CRF\n\nfrom .util import sent2features\n\n\nclass CRFModel(object):\n    def __init__(self,\n                 algorithm='lbfgs',\n                 c1=0.1,\n                 c2=0.1,\n                 max_iterations=100,\n                 all_possible_transitions=False\n                 ):\n\n        self.model = CRF(algorithm=algorithm,\n                         c1=c1,\n                         c2=c2,\n                         max_iterations=max_iterations,\n                         all_possible_transitions=all_possible_transitions)\n\n    def train(self, sentences, tag_lists):\n        features = [sent2features(s) for s in sentences]\n        self.model.fit(features, tag_lists)\n\n    def test(self, sentences):\n        features = [sent2features(s) for s in sentences]\n        pred_tag_lists = self.model.predict(features)\n        return pred_tag_lists\n"
  },
  {
    "path": "named_entity_recognition/models/hmm.py",
    "content": "import torch\n\n\nclass HMM(object):\n    def __init__(self, N, M):\n        \"\"\"Args:\n            N: 状态数，这里对应存在的标注的种类\n            M: 观测数，这里对应有多少不同的字\n        \"\"\"\n        self.N = N\n        self.M = M\n\n        # 状态转移概率矩阵 A[i][j]表示从i状态转移到j状态的概率\n        self.A = torch.zeros(N, N)\n        # 观测概率矩阵, B[i][j]表示i状态下生成j观测的概率\n        self.B = torch.zeros(N, M)\n        # 初始状态概率  Pi[i]表示初始时刻为状态i的概率\n        self.Pi = torch.zeros(N)\n\n    def train(self, word_lists, tag_lists, word2id, tag2id):\n        \"\"\"HMM的训练，即根据训练语料对模型参数进行估计,\n           因为我们有观测序列以及其对应的状态序列，所以我们\n           可以使用极大似然估计的方法来估计隐马尔可夫模型的参数\n        参数:\n            word_lists: 列表，其中每个元素由字组成的列表，如 ['担','任','科','员']\n            tag_lists: 列表，其中每个元素是由对应的标注组成的列表，如 ['O','O','B-TITLE', 'E-TITLE']\n            word2id: 将字映射为ID\n            tag2id: 字典，将标注映射为ID\n        \"\"\"\n\n        assert len(tag_lists) == len(word_lists)\n\n        # 估计转移概率矩阵\n        for tag_list in tag_lists:\n            seq_len = len(tag_list)\n            for i in range(seq_len - 1):\n                current_tagid = tag2id[tag_list[i]]\n                next_tagid = tag2id[tag_list[i+1]]\n                self.A[current_tagid][next_tagid] += 1\n        # 问题：如果某元素没有出现过，该位置为0，这在后续的计算中是不允许的\n        # 解决方法：我们将等于0的概率加上很小的数\n        self.A[self.A == 0.] = 1e-10\n        self.A = self.A / self.A.sum(dim=1, keepdim=True)\n\n        # 估计观测概率矩阵\n        for tag_list, word_list in zip(tag_lists, word_lists):\n            assert len(tag_list) == len(word_list)\n            for tag, word in zip(tag_list, word_list):\n                tag_id = tag2id[tag]\n                word_id = word2id[word]\n                self.B[tag_id][word_id] += 1\n        self.B[self.B == 0.] = 1e-10\n        self.B = self.B / self.B.sum(dim=1, keepdim=True)\n\n        # 估计初始状态概率\n        for tag_list in tag_lists:\n            init_tagid = tag2id[tag_list[0]]\n            self.Pi[init_tagid] += 1\n        self.Pi[self.Pi == 0.] = 1e-10\n        self.Pi = self.Pi / self.Pi.sum()\n\n    def test(self, word_lists, word2id, tag2id):\n        pred_tag_lists = []\n        for word_list in word_lists:\n            pred_tag_list = self.decoding(word_list, word2id, tag2id)\n            pred_tag_lists.append(pred_tag_list)\n        return pred_tag_lists\n\n    def decoding(self, word_list, word2id, tag2id):\n        \"\"\"\n        使用维特比算法对给定观测序列求状态序列， 这里就是对字组成的序列,求其对应的标注。\n        维特比算法实际是用动态规划解隐马尔可夫模型预测问题，即用动态规划求概率最大路径（最优路径）\n        这时一条路径对应着一个状态序列\n        \"\"\"\n        # 问题:整条链很长的情况下，十分多的小概率相乘，最后可能造成下溢\n        # 解决办法：采用对数概率，这样源空间中的很小概率，就被映射到对数空间的大的负数\n        #  同时相乘操作也变成简单的相加操作\n        A = torch.log(self.A)\n        B = torch.log(self.B)\n        Pi = torch.log(self.Pi)\n\n        # 初始化 维比特矩阵viterbi 它的维度为[状态数, 序列长度]\n        # 其中viterbi[i, j]表示标注序列的第j个标注为i的所有单个序列(i_1, i_2, ..i_j)出现的概率最大值\n        seq_len = len(word_list)\n        viterbi = torch.zeros(self.N, seq_len)\n        # backpointer是跟viterbi一样大小的矩阵\n        # backpointer[i, j]存储的是 标注序列的第j个标注为i时，第j-1个标注的id\n        # 等解码的时候，我们用backpointer进行回溯，以求出最优路径\n        backpointer = torch.zeros(self.N, seq_len).long()\n\n        # self.Pi[i] 表示第一个字的标记为i的概率\n        # Bt[word_id]表示字为word_id的时候，对应各个标记的概率\n        # self.A.t()[tag_id]表示各个状态转移到tag_id对应的概率\n\n        # 所以第一步为\n        start_wordid = word2id.get(word_list[0], None)\n        Bt = B.t()\n        if start_wordid is None:\n            # 如果字不再字典里，则假设状态的概率分布是均匀的\n            bt = torch.log(torch.ones(self.N) / self.N)\n        else:\n            bt = Bt[start_wordid]\n        viterbi[:, 0] = Pi + bt\n        backpointer[:, 0] = -1\n\n        # 递推公式：\n        # viterbi[tag_id, step] = max(viterbi[:, step-1]* self.A.t()[tag_id] * Bt[word])\n        # 其中word是step时刻对应的字\n        # 由上述递推公式求后续各步\n        for step in range(1, seq_len):\n            wordid = word2id.get(word_list[step], None)\n            # 处理字不在字典中的情况\n            # bt是在t时刻字为wordid时，状态的概率分布\n            if wordid is None:\n                # 如果字不再字典里，则假设状态的概率分布是均匀的\n                bt = torch.log(torch.ones(self.N) / self.N)\n            else:\n                bt = Bt[wordid]  # 否则从观测概率矩阵中取bt\n            for tag_id in range(len(tag2id)):\n                max_prob, max_id = torch.max(\n                    viterbi[:, step-1] + A[:, tag_id],\n                    dim=0\n                )\n                viterbi[tag_id, step] = max_prob + bt[tag_id]\n                backpointer[tag_id, step] = max_id\n\n        # 终止， t=seq_len 即 viterbi[:, seq_len]中的最大概率，就是最优路径的概率\n        best_path_prob, best_path_pointer = torch.max(\n            viterbi[:, seq_len-1], dim=0\n        )\n\n        # 回溯，求最优路径\n        best_path_pointer = best_path_pointer.item()\n        best_path = [best_path_pointer]\n        for back_step in range(seq_len-1, 0, -1):\n            best_path_pointer = backpointer[best_path_pointer, back_step]\n            best_path_pointer = best_path_pointer.item()\n            best_path.append(best_path_pointer)\n\n        # 将tag_id组成的序列转化为tag\n        assert len(best_path) == len(word_list)\n        id2tag = dict((id_, tag) for tag, id_ in tag2id.items())\n        tag_list = [id2tag[id_] for id_ in reversed(best_path)]\n\n        return tag_list\n"
  },
  {
    "path": "named_entity_recognition/models/util.py",
    "content": "import torch\nimport torch.nn.functional as F\n\n# ******** CRF 工具函数*************\n\n\ndef word2features(sent, i):\n    \"\"\"抽取单个字的特征\"\"\"\n    word = sent[i]\n    prev_word = \"<s>\" if i == 0 else sent[i-1]\n    next_word = \"</s>\" if i == (len(sent)-1) else sent[i+1]\n    # 使用的特征：\n    # 前一个词，当前词，后一个词，\n    # 前一个词+当前词， 当前词+后一个词\n    features = {\n        'w': word,\n        'w-1': prev_word,\n        'w+1': next_word,\n        'w-1:w': prev_word+word,\n        'w:w+1': word+next_word,\n        'bias': 1\n    }\n    return features\n\n\ndef sent2features(sent):\n    \"\"\"抽取序列特征\"\"\"\n    return [word2features(sent, i) for i in range(len(sent))]\n\n\n# ******** LSTM模型 工具函数*************\n\ndef tensorized(batch, maps):\n    PAD = maps.get('<pad>')\n    UNK = maps.get('<unk>')\n\n    max_len = len(batch[0])\n    batch_size = len(batch)\n\n    batch_tensor = torch.ones(batch_size, max_len).long() * PAD\n    for i, l in enumerate(batch):\n        for j, e in enumerate(l):\n            batch_tensor[i][j] = maps.get(e, UNK)\n    # batch各个元素的长度\n    lengths = [len(l) for l in batch]\n\n    return batch_tensor, lengths\n\n\ndef sort_by_lengths(word_lists, tag_lists):\n    pairs = list(zip(word_lists, tag_lists))\n    indices = sorted(range(len(pairs)),\n                     key=lambda k: len(pairs[k][0]),\n                     reverse=True)\n    pairs = [pairs[i] for i in indices]\n    # pairs.sort(key=lambda pair: len(pair[0]), reverse=True)\n\n    word_lists, tag_lists = list(zip(*pairs))\n\n    return word_lists, tag_lists, indices\n\n\ndef cal_loss(logits, targets, tag2id):\n    \"\"\"计算损失\n    参数:\n        logits: [B, L, out_size]\n        targets: [B, L]\n        lengths: [B]\n    \"\"\"\n    PAD = tag2id.get('<pad>')\n    assert PAD is not None\n\n    mask = (targets != PAD)  # [B, L]\n    targets = targets[mask]\n    out_size = logits.size(2)\n    logits = logits.masked_select(\n        mask.unsqueeze(2).expand(-1, -1, out_size)\n    ).contiguous().view(-1, out_size)\n\n    assert logits.size(0) == targets.size(0)\n    loss = F.cross_entropy(logits, targets)\n\n    return loss\n\n# FOR BiLSTM-CRF\n\n\ndef cal_lstm_crf_loss(crf_scores, targets, tag2id):\n    \"\"\"计算双向LSTM-CRF模型的损失\n    该损失函数的计算可以参考:https://arxiv.org/pdf/1603.01360.pdf\n    \"\"\"\n    pad_id = tag2id.get('<pad>')\n    start_id = tag2id.get('<start>')\n    end_id = tag2id.get('<end>')\n\n    device = crf_scores.device\n\n    # targets:[B, L] crf_scores:[B, L, T, T]\n    batch_size, max_len = targets.size()\n    target_size = len(tag2id)\n\n    # mask = 1 - ((targets == pad_id) + (targets == end_id))  # [B, L]\n    mask = (targets != pad_id)\n    lengths = mask.sum(dim=1)\n    targets = indexed(targets, target_size, start_id)\n\n    # # 计算Golden scores方法１\n    # import pdb\n    # pdb.set_trace()\n    targets = targets.masked_select(mask)  # [real_L]\n\n    flatten_scores = crf_scores.masked_select(\n        mask.view(batch_size, max_len, 1, 1).expand_as(crf_scores)\n    ).view(-1, target_size*target_size).contiguous()\n\n    golden_scores = flatten_scores.gather(\n        dim=1, index=targets.unsqueeze(1)).sum()\n\n    # 计算golden_scores方法２：利用pack_padded_sequence函数\n    # targets[targets == end_id] = pad_id\n    # scores_at_targets = torch.gather(\n    #     crf_scores.view(batch_size, max_len, -1), 2, targets.unsqueeze(2)).squeeze(2)\n    # scores_at_targets, _ = pack_padded_sequence(\n    #     scores_at_targets, lengths-1, batch_first=True\n    # )\n    # golden_scores = scores_at_targets.sum()\n\n    # 计算all path scores\n    # scores_upto_t[i, j]表示第i个句子的第t个词被标注为j标记的所有t时刻事前的所有子路径的分数之和\n    scores_upto_t = torch.zeros(batch_size, target_size).to(device)\n    for t in range(max_len):\n        # 当前时刻 有效的batch_size（因为有些序列比较短)\n        batch_size_t = (lengths > t).sum().item()\n        if t == 0:\n            scores_upto_t[:batch_size_t] = crf_scores[:batch_size_t,\n                                                      t, start_id, :]\n        else:\n            # We add scores at current timestep to scores accumulated up to previous\n            # timestep, and log-sum-exp Remember, the cur_tag of the previous\n            # timestep is the prev_tag of this timestep\n            # So, broadcast prev. timestep's cur_tag scores\n            # along cur. timestep's cur_tag dimension\n            scores_upto_t[:batch_size_t] = torch.logsumexp(\n                crf_scores[:batch_size_t, t, :, :] +\n                scores_upto_t[:batch_size_t].unsqueeze(2),\n                dim=1\n            )\n    all_path_scores = scores_upto_t[:, end_id].sum()\n\n    # 训练大约两个epoch loss变成负数，从数学的角度上来说，loss = -logP\n    loss = (all_path_scores - golden_scores) / batch_size\n    return loss\n\n\ndef indexed(targets, tagset_size, start_id):\n    \"\"\"将targets中的数转化为在[T*T]大小序列中的索引,T是标注的种类\"\"\"\n    batch_size, max_len = targets.size()\n    for col in range(max_len-1, 0, -1):\n        targets[:, col] += (targets[:, col-1] * tagset_size)\n    targets[:, 0] += (start_id * tagset_size)\n    return targets\n"
  },
  {
    "path": "named_entity_recognition/output.txt",
    "content": "读取数据...\n加载并评估hmm模型...\n           precision    recall  f1-score   support\n    E-EDU     0.9167    0.9821    0.9483       112\n   B-RACE     1.0000    0.9286    0.9630        14\n  E-TITLE     0.9514    0.9637    0.9575       772\n   B-NAME     0.9800    0.8750    0.9245       112\n   M-NAME     0.9459    0.8537    0.8974        82\n   M-CONT     0.9815    1.0000    0.9907        53\n    M-ORG     0.9002    0.9327    0.9162      4325\n   B-CONT     0.9655    1.0000    0.9825        28\n    B-EDU     0.9000    0.9643    0.9310       112\n    B-LOC     0.3333    0.3333    0.3333         6\n    B-ORG     0.8422    0.8879    0.8644       553\n  B-TITLE     0.8811    0.8925    0.8867       772\n   E-CONT     0.9655    1.0000    0.9825        28\n    E-ORG     0.8262    0.8680    0.8466       553\n   E-NAME     0.9000    0.8036    0.8491       112\n  M-TITLE     0.9038    0.8751    0.8892      1922\n    E-LOC     0.5000    0.5000    0.5000         6\n    B-PRO     0.5581    0.7273    0.6316        33\n    M-LOC     0.5833    0.3333    0.4242        21\n        O     0.9568    0.9177    0.9369      5190\n    M-PRO     0.4490    0.6471    0.5301        68\n    M-EDU     0.9348    0.9609    0.9477       179\n    E-PRO     0.6512    0.8485    0.7368        33\n   E-RACE     1.0000    0.9286    0.9630        14\navg/total     0.9149    0.9122    0.9130     15100\n\nConfusion Matrix:\n          E-EDU  B-RACE E-TITLE  B-NAME  M-NAME  M-CONT   M-ORG  B-CONT   B-EDU   B-LOC   B-ORG B-TITLE  E-CONT   E-ORG  E-NAME M-TITLE   E-LOC   B-PRO   M-LOC       O   M-PRO   M-EDU   E-PRO  E-RACE \n  E-EDU     110       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       1       0 \n B-RACE       0      13       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       0 \nE-TITLE       1       0     744       0       0       0      15       0       0       0       4       0       0       0       0       2       0       0       0       6       0       0       0       0 \n B-NAME       0       0       0      98       0       0       2       0       0       0       1       0       0       0       0       0       0       0       0       8       0       0       0       0 \n M-NAME       0       0       0       0      70       0       3       0       0       0       0       0       0       0       6       0       0       0       0       3       0       0       0       0 \n M-CONT       0       0       0       0       0      53       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  M-ORG       3       0       4       1       2       1    4034       0       3       0      38      17       1      42       2      53       3      10       5      70      25       1       7       0 \n B-CONT       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-EDU       0       0       0       0       0       0       1       0     108       0       0       0       0       0       0       0       0       0       0       0       0       3       0       0 \n  B-LOC       0       0       0       0       0       0       0       0       0       2       3       0       0       0       0       0       0       0       0       1       0       0       0       0 \n  B-ORG       0       0       0       1       0       0      23       1       0       3     491       6       0       0       0       0       0       0       0      28       0       0       0       0 \nB-TITLE       0       0       1       0       0       0      23       0       2       0       6     689       0       1       0      28       0       2       0      20       0       0       0       0 \n E-CONT       0       0       0       0       0       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0 \n  E-ORG       0       0       1       0       0       0      30       0       1       0       0       9       0     480       0      18       0       1       0      10       3       0       0       0 \n E-NAME       0       0       0       0       2       0       0       0       0       0       0       0       0       3      90       0       0       0       0      16       0       0       0       0 \nM-TITLE       3       0       6       0       0       0     115       0       2       0       3      35       0      17       0    1682       0       1       0      44       7       4       3       0 \n  E-LOC       0       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       3       0       0       2       0       0       0       0 \n  B-PRO       0       0       0       0       0       0       5       0       1       0       0       0       0       0       0       0       0      24       0       0       3       0       0       0 \n  M-LOC       0       0       0       0       0       0       7       0       0       1       0       0       0       2       0       0       0       0       7       4       0       0       0       0 \n      O       2       0      26       0       0       0     204       0       1       0      37      26       0      30       2      78       0       3       0    4763      12       1       4       0 \n  M-PRO       0       0       0       0       0       0      18       0       1       0       0       0       0       3       0       0       0       1       0       0      44       1       0       0 \n  M-EDU       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       1       0       1       4     172       0       0 \n  E-PRO       1       0       0       0       0       0       0       0       1       0       0       0       0       2       0       0       0       0       0       0       0       1      28       0 \n E-RACE       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0      13 \n加载并评估crf模型...\n           precision    recall  f1-score   support\n    E-EDU     0.9910    0.9821    0.9865       112\n   B-RACE     1.0000    1.0000    1.0000        14\n  E-TITLE     0.9857    0.9819    0.9838       772\n   B-NAME     1.0000    0.9821    0.9910       112\n   M-NAME     1.0000    0.9756    0.9877        82\n   M-CONT     1.0000    1.0000    1.0000        53\n    M-ORG     0.9523    0.9563    0.9543      4325\n   B-CONT     1.0000    1.0000    1.0000        28\n    B-EDU     0.9820    0.9732    0.9776       112\n    B-LOC     1.0000    0.8333    0.9091         6\n    B-ORG     0.9636    0.9566    0.9601       553\n  B-TITLE     0.9376    0.9339    0.9358       772\n   E-CONT     1.0000    1.0000    1.0000        28\n    E-ORG     0.9199    0.9132    0.9165       553\n   E-NAME     1.0000    0.9821    0.9910       112\n  M-TITLE     0.9248    0.9022    0.9134      1922\n    E-LOC     1.0000    0.8333    0.9091         6\n    B-PRO     0.9091    0.9091    0.9091        33\n    M-LOC     1.0000    0.8095    0.8947        21\n        O     0.9630    0.9732    0.9681      5190\n    M-PRO     0.8354    0.9706    0.8980        68\n    M-EDU     0.9824    0.9330    0.9570       179\n    E-PRO     0.9091    0.9091    0.9091        33\n   E-RACE     1.0000    1.0000    1.0000        14\navg/total     0.9543    0.9543    0.9542     15100\n\nConfusion Matrix:\n          E-EDU  B-RACE E-TITLE  B-NAME  M-NAME  M-CONT   M-ORG  B-CONT   B-EDU   B-LOC   B-ORG B-TITLE  E-CONT   E-ORG  E-NAME M-TITLE   E-LOC   B-PRO   M-LOC       O   M-PRO   M-EDU   E-PRO  E-RACE \n  E-EDU     110       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0 \n B-RACE       0      14       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \nE-TITLE       1       0     758       0       0       0       2       0       0       0       0       0       0       1       0       1       0       0       0       9       0       0       0       0 \n B-NAME       0       0       0     110       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       2       0       0       0       0 \n M-NAME       0       0       0       0      80       0       0       0       0       0       0       0       0       0       0       0       0       0       0       2       0       0       0       0 \n M-CONT       0       0       0       0       0      53       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  M-ORG       0       0       2       0       0       0    4136       0       0       0       1      11       0      12       0      65       0       1       0      91       5       0       1       0 \n B-CONT       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-EDU       0       0       0       0       0       0       1       0     109       0       1       0       0       0       0       0       0       0       0       0       0       1       0       0 \n  B-LOC       0       0       0       0       0       0       0       0       0       5       1       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-ORG       0       0       0       0       0       0       1       0       0       0     529      12       0       0       0       0       0       0       0      11       0       0       0       0 \nB-TITLE       0       0       0       0       0       0      12       0       0       0       7     721       0       0       0      22       0       1       0       9       0       0       0       0 \n E-CONT       0       0       0       0       0       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0 \n  E-ORG       0       0       1       0       0       0      14       0       0       0       0       0       0     505       0      20       0       0       0      13       0       0       0       0 \n E-NAME       0       0       0       0       0       0       0       0       0       0       0       0       0       0     110       0       0       0       0       2       0       0       0       0 \nM-TITLE       0       0       3       0       0       0      89       0       1       0       1      19       0      17       0    1734       0       0       0      54       2       1       1       0 \n  E-LOC       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       5       0       0       0       0       0       0       0 \n  B-PRO       0       0       0       0       0       0       1       0       1       0       0       0       0       0       0       0       0      30       0       0       1       0       0       0 \n  M-LOC       0       0       0       0       0       0       4       0       0       0       0       0       0       0       0       0       0       0      17       0       0       0       0       0 \n      O       0       0       5       0       0       0      75       0       0       0       9       6       0      11       0      33       0       0       0    5051       0       0       0       0 \n  M-PRO       0       0       0       0       0       0       2       0       0       0       0       0       0       0       0       0       0       0       0       0      66       0       0       0 \n  M-EDU       0       0       0       0       0       0       5       0       0       0       0       0       0       1       0       0       0       1       0       1       4     167       0       0 \n  E-PRO       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       0       0       0       1       1      30       0 \n E-RACE       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0      14 \n加载并评估bilstm模型...\n           precision    recall  f1-score   support\n    E-EDU     0.9732    0.9732    0.9732       112\n   B-RACE     1.0000    0.9286    0.9630        14\n  E-TITLE     0.9754    0.9754    0.9754       772\n   B-NAME     1.0000    0.8929    0.9434       112\n   M-NAME     0.9186    0.9634    0.9405        82\n   M-CONT     0.9815    1.0000    0.9907        53\n    M-ORG     0.9631    0.9535    0.9583      4325\n   B-CONT     1.0000    1.0000    1.0000        28\n    B-EDU     0.9649    0.9821    0.9735       112\n    B-LOC     1.0000    0.8333    0.9091         6\n    B-ORG     0.9402    0.9675    0.9537       553\n  B-TITLE     0.9457    0.9249    0.9352       772\n   E-CONT     1.0000    1.0000    1.0000        28\n    E-ORG     0.9194    0.9078    0.9136       553\n   E-NAME     1.0000    0.9464    0.9725       112\n  M-TITLE     0.9409    0.8871    0.9132      1922\n    E-LOC     1.0000    1.0000    1.0000         6\n    B-PRO     0.8182    0.8182    0.8182        33\n    M-LOC     1.0000    1.0000    1.0000        21\n        O     0.9541    0.9819    0.9678      5190\n    M-PRO     0.7159    0.9265    0.8077        68\n    M-EDU     0.9716    0.9553    0.9634       179\n    E-PRO     0.8857    0.9394    0.9118        33\n   E-RACE     1.0000    1.0000    1.0000        14\navg/total     0.9537    0.9532    0.9532     15100\n\nConfusion Matrix:\n          E-EDU  B-RACE E-TITLE  B-NAME  M-NAME  M-CONT   M-ORG  B-CONT   B-EDU   B-LOC   B-ORG B-TITLE  E-CONT   E-ORG  E-NAME M-TITLE   E-LOC   B-PRO   M-LOC       O   M-PRO   M-EDU   E-PRO  E-RACE \n  E-EDU     109       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       1       1       0 \n B-RACE       0      13       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       0 \nE-TITLE       1       0     753       0       0       0       0       0       0       0       0       0       0       2       0       2       0       0       0      14       0       0       0       0 \n B-NAME       0       0       0     100       5       0       0       0       0       0       0       0       0       0       0       0       0       0       0       7       0       0       0       0 \n M-NAME       0       0       0       0      79       0       0       0       0       0       0       0       0       0       0       0       0       0       0       3       0       0       0       0 \n M-CONT       0       0       0       0       0      53       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  M-ORG       1       0       0       0       0       1    4124       0       0       0      21      11       0      16       0      46       0       2       0      94       8       0       1       0 \n B-CONT       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-EDU       0       0       0       0       0       0       1       0     110       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0 \n  B-LOC       0       0       0       0       0       0       0       0       0       5       0       1       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-ORG       0       0       0       0       0       0       3       0       1       0     535       4       0       0       0       0       0       0       0      10       0       0       0       0 \nB-TITLE       0       0       0       0       0       0      10       0       0       0       7     714       0       1       0      24       0       1       0      15       0       0       0       0 \n E-CONT       0       0       0       0       0       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0 \n  E-ORG       0       0       1       0       0       0      14       0       0       0       0       1       0     502       0      21       0       0       0      11       3       0       0       0 \n E-NAME       0       0       0       0       0       0       0       0       0       0       0       0       0       0     106       0       0       0       0       2       0       0       0       0 \nM-TITLE       1       0       6       0       2       0      81       0       1       0       0      17       0      16       0    1705       0       0       0      86       3       3       1       0 \n  E-LOC       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       6       0       0       0       0       0       0       0 \n  B-PRO       0       0       0       0       0       0       1       0       1       0       1       0       0       0       0       0       0      27       0       0       3       0       0       0 \n  M-LOC       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0      21       0       0       0       0       0 \n      O       0       0      12       0       0       0      44       0       0       0       5       7       0       7       0      13       0       2       0    5096       4       0       0       0 \n  M-PRO       0       0       0       0       0       0       4       0       0       0       0       0       0       1       0       0       0       0       0       0      63       0       0       0 \n  M-EDU       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       1       0       1       0       1       4     171       0       0 \n  E-PRO       0       0       0       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       0       0       0       1      31       0 \n E-RACE       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0      14 \n加载并评估bilstm+crf模型...\n           precision    recall  f1-score   support\n    E-EDU     0.9820    0.9732    0.9776       112\n   B-RACE     1.0000    0.9286    0.9630        14\n  E-TITLE     0.9921    0.9767    0.9843       772\n   B-NAME     1.0000    0.9196    0.9581       112\n   M-NAME     0.9753    0.9634    0.9693        82\n   M-CONT     1.0000    0.9623    0.9808        53\n    M-ORG     0.9525    0.9635    0.9579      4325\n   B-CONT     1.0000    0.9643    0.9818        28\n    B-EDU     0.9820    0.9732    0.9776       112\n    B-LOC     1.0000    0.8333    0.9091         6\n    B-ORG     0.9555    0.9711    0.9632       553\n  B-TITLE     0.9420    0.9262    0.9340       772\n   E-CONT     1.0000    0.9643    0.9818        28\n    E-ORG     0.9234    0.9150    0.9192       553\n   E-NAME     1.0000    0.9375    0.9677       112\n  M-TITLE     0.9528    0.8918    0.9213      1922\n    E-LOC     1.0000    0.8333    0.9091         6\n    B-PRO     0.9412    0.9697    0.9552        33\n    M-LOC     1.0000    0.8095    0.8947        21\n        O     0.9605    0.9827    0.9714      5190\n    M-PRO     0.8684    0.9706    0.9167        68\n    M-EDU     0.9767    0.9385    0.9573       179\n    E-PRO     0.9118    0.9394    0.9254        33\n   E-RACE     1.0000    1.0000    1.0000        14\navg/total     0.9574    0.9572    0.9570     15100\n\nConfusion Matrix:\n          E-EDU  B-RACE E-TITLE  B-NAME  M-NAME  M-CONT   M-ORG  B-CONT   B-EDU   B-LOC   B-ORG B-TITLE  E-CONT   E-ORG  E-NAME M-TITLE   E-LOC   B-PRO   M-LOC       O   M-PRO   M-EDU   E-PRO  E-RACE \n  E-EDU     109       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       1       1       0 \n B-RACE       0      13       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       0 \nE-TITLE       1       0     754       0       0       0       3       0       0       0       0       0       0       2       0       1       0       0       0      11       0       0       0       0 \n B-NAME       0       0       0     103       2       0       0       0       0       0       0       0       0       0       0       0       0       0       0       7       0       0       0       0 \n M-NAME       0       0       0       0      79       0       0       0       0       0       0       0       0       0       0       0       0       0       0       3       0       0       0       0 \n M-CONT       0       0       0       0       0      51       0       0       0       0       0       0       0       0       0       0       0       0       0       2       0       0       0       0 \n  M-ORG       0       0       0       0       0       0    4167       0       0       0       9      14       0      16       0      37       0       0       0      77       4       0       1       0 \n B-CONT       0       0       0       0       0       0       0      27       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       0 \n  B-EDU       0       0       0       0       0       0       2       0     109       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0 \n  B-LOC       0       0       0       0       0       0       0       0       0       5       1       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-ORG       0       0       0       0       0       0       1       0       0       0     537       5       0       0       0       0       0       0       0      10       0       0       0       0 \nB-TITLE       0       0       0       0       0       0      14       0       0       0       7     715       0       2       0      20       0       1       0      13       0       0       0       0 \n E-CONT       0       0       0       0       0       0       0       0       0       0       0       0      27       0       0       0       0       0       0       1       0       0       0       0 \n  E-ORG       0       0       0       0       0       0      20       0       0       0       0       0       0     506       0      17       0       1       0       9       0       0       0       0 \n E-NAME       0       0       0       0       0       0       0       0       0       0       0       0       0       0     105       0       0       0       0       6       0       0       0       0 \nM-TITLE       0       0       2       0       0       0     102       0       1       0       2      18       0      13       0    1714       0       0       0      66       2       1       1       0 \n  E-LOC       0       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       5       0       0       0       0       0       0       0 \n  B-PRO       0       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       0      32       0       0       0       0       0       0 \n  M-LOC       0       0       0       0       0       0       4       0       0       0       0       0       0       0       0       0       0       0      17       0       0       0       0       0 \n      O       0       0       4       0       0       0      57       0       0       0       5       7       0       7       0      10       0       0       0    5100       0       0       0       0 \n  M-PRO       0       0       0       0       0       0       1       0       0       0       0       0       0       1       0       0       0       0       0       0      66       0       0       0 \n  M-EDU       1       0       0       0       0       0       2       0       0       0       1       0       0       1       0       0       0       0       0       2       4     168       0       0 \n  E-PRO       0       0       0       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       0       0       0       1      31       0 \n E-RACE       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0      14 \nEnsemble 四个模型的结果如下：\n           precision    recall  f1-score   support\n    E-EDU     0.9910    0.9821    0.9865       112\n   B-RACE     1.0000    0.9286    0.9630        14\n  E-TITLE     0.9832    0.9832    0.9832       772\n   B-NAME     1.0000    0.9286    0.9630       112\n   M-NAME     0.9756    0.9756    0.9756        82\n   M-CONT     1.0000    1.0000    1.0000        53\n    M-ORG     0.9434    0.9667    0.9549      4325\n   B-CONT     1.0000    1.0000    1.0000        28\n    B-EDU     0.9735    0.9821    0.9778       112\n    B-LOC     1.0000    0.8333    0.9091         6\n    B-ORG     0.9747    0.9747    0.9747       553\n  B-TITLE     0.9426    0.9365    0.9396       772\n   E-CONT     1.0000    1.0000    1.0000        28\n    E-ORG     0.9305    0.9204    0.9255       553\n   E-NAME     1.0000    0.9464    0.9725       112\n  M-TITLE     0.9499    0.8975    0.9230      1922\n    E-LOC     1.0000    0.8333    0.9091         6\n    B-PRO     0.9000    0.8182    0.8571        33\n    M-LOC     1.0000    0.8095    0.8947        21\n        O     0.9679    0.9707    0.9693      5190\n    M-PRO     0.7586    0.9706    0.8516        68\n    M-EDU     0.9773    0.9609    0.9690       179\n    E-PRO     0.8857    0.9394    0.9118        33\n   E-RACE     1.0000    1.0000    1.0000        14\navg/total     0.9569    0.9565    0.9564     15100\n\nConfusion Matrix:\n          E-EDU  B-RACE E-TITLE  B-NAME  M-NAME  M-CONT   M-ORG  B-CONT   B-EDU   B-LOC   B-ORG B-TITLE  E-CONT   E-ORG  E-NAME M-TITLE   E-LOC   B-PRO   M-LOC       O   M-PRO   M-EDU   E-PRO  E-RACE \n  E-EDU     110       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       1       0 \n B-RACE       0      13       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       0 \nE-TITLE       1       0     759       0       0       0       2       0       0       0       0       0       0       1       0       1       0       0       0       8       0       0       0       0 \n B-NAME       0       0       0     104       2       0       0       0       0       0       0       0       0       0       0       0       0       0       0       6       0       0       0       0 \n M-NAME       0       0       0       0      80       0       0       0       0       0       0       0       0       0       0       0       0       0       0       2       0       0       0       0 \n M-CONT       0       0       0       0       0      53       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  M-ORG       0       0       1       0       0       0    4181       0       0       0       4      10       0      14       0      38       0       0       0      68       8       0       1       0 \n B-CONT       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-EDU       0       0       0       0       0       0       1       0     110       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0 \n  B-LOC       0       0       0       0       0       0       0       0       0       5       1       0       0       0       0       0       0       0       0       0       0       0       0       0 \n  B-ORG       0       0       0       0       0       0       0       0       0       0     539       5       0       0       0       0       0       0       0       9       0       0       0       0 \nB-TITLE       0       0       0       0       0       0      13       0       0       0       6     723       0       0       0      19       0       1       0      10       0       0       0       0 \n E-CONT       0       0       0       0       0       0       0       0       0       0       0       0      28       0       0       0       0       0       0       0       0       0       0       0 \n  E-ORG       0       0       1       0       0       0      15       0       0       0       0       1       0     509       0      15       0       1       0       9       2       0       0       0 \n E-NAME       0       0       0       0       0       0       0       0       0       0       0       0       0       0     106       0       0       0       0       5       0       0       0       0 \nM-TITLE       0       0       3       0       0       0     106       0       1       0       0      21       0      13       0    1725       0       0       0      48       3       1       1       0 \n  E-LOC       0       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       5       0       0       0       0       0       0       0 \n  B-PRO       0       0       0       0       0       0       2       0       1       0       0       0       0       0       0       0       0      27       0       0       3       0       0       0 \n  M-LOC       0       0       0       0       0       0       4       0       0       0       0       0       0       0       0       0       0       0      17       0       0       0       0       0 \n      O       0       0       8       0       0       0     106       0       0       0       3       7       0       8       0      18       0       0       0    5038       1       0       1       0 \n  M-PRO       0       0       0       0       0       0       1       0       0       0       0       0       0       1       0       0       0       0       0       0      66       0       0       0 \n  M-EDU       0       0       0       0       0       0       0       0       0       0       0       0       0       1       0       0       0       1       0       1       4     172       0       0 \n  E-PRO       0       0       0       0       0       0       0       0       1       0       0       0       0       0       0       0       0       0       0       0       0       1      31       0 \n E-RACE       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0       0      14 \n"
  },
  {
    "path": "named_entity_recognition/requirement.txt",
    "content": "numpy==1.16.2\npython-crfsuite==0.9.6\nsix==1.12.0\nsklearn-crfsuite==0.3.6\ntabulate==0.8.3\ntorch==1.0.1.post2\ntqdm==4.31.1\n"
  },
  {
    "path": "named_entity_recognition/test.py",
    "content": "from utils import load_model, extend_maps, prepocess_data_for_lstmcrf\nfrom data import build_corpus\nfrom evaluating import Metrics\nfrom evaluate import ensemble_evaluate\n\nHMM_MODEL_PATH = './ckpts/hmm.pkl'\nCRF_MODEL_PATH = './ckpts/crf.pkl'\nBiLSTM_MODEL_PATH = './ckpts/bilstm.pkl'\nBiLSTMCRF_MODEL_PATH = './ckpts/bilstm_crf.pkl'\n\nREMOVE_O = False  # 在评估的时候是否去除O标记\n\n\ndef main():\n    print(\"读取数据...\")\n    train_word_lists, train_tag_lists, word2id, tag2id = \\\n        build_corpus(\"train\")\n    dev_word_lists, dev_tag_lists = build_corpus(\"dev\", make_vocab=False)\n    test_word_lists, test_tag_lists = build_corpus(\"test\", make_vocab=False)\n\n    print(\"加载并评估hmm模型...\")\n    hmm_model = load_model(HMM_MODEL_PATH)\n    hmm_pred = hmm_model.test(test_word_lists,\n                              word2id,\n                              tag2id)\n    metrics = Metrics(test_tag_lists, hmm_pred, remove_O=REMOVE_O)\n    metrics.report_scores()  # 打印每个标记的精确度、召回率、f1分数\n    metrics.report_confusion_matrix()  # 打印混淆矩阵\n\n    # 加载并评估CRF模型\n    print(\"加载并评估crf模型...\")\n    crf_model = load_model(CRF_MODEL_PATH)\n    crf_pred = crf_model.test(test_word_lists)\n    metrics = Metrics(test_tag_lists, crf_pred, remove_O=REMOVE_O)\n    metrics.report_scores()\n    metrics.report_confusion_matrix()\n\n    # bilstm模型\n    print(\"加载并评估bilstm模型...\")\n    bilstm_word2id, bilstm_tag2id = extend_maps(word2id, tag2id, for_crf=False)\n    bilstm_model = load_model(BiLSTM_MODEL_PATH)\n    bilstm_model.model.bilstm.flatten_parameters()  # remove warning\n    lstm_pred, target_tag_list = bilstm_model.test(test_word_lists, test_tag_lists,\n                                                   bilstm_word2id, bilstm_tag2id)\n    metrics = Metrics(target_tag_list, lstm_pred, remove_O=REMOVE_O)\n    metrics.report_scores()\n    metrics.report_confusion_matrix()\n\n    print(\"加载并评估bilstm+crf模型...\")\n    crf_word2id, crf_tag2id = extend_maps(word2id, tag2id, for_crf=True)\n    bilstm_model = load_model(BiLSTMCRF_MODEL_PATH)\n    bilstm_model.model.bilstm.bilstm.flatten_parameters()  # remove warning\n    test_word_lists, test_tag_lists = prepocess_data_for_lstmcrf(\n        test_word_lists, test_tag_lists, test=True\n    )\n    lstmcrf_pred, target_tag_list = bilstm_model.test(test_word_lists, test_tag_lists,\n                                                      crf_word2id, crf_tag2id)\n    metrics = Metrics(target_tag_list, lstmcrf_pred, remove_O=REMOVE_O)\n    metrics.report_scores()\n    metrics.report_confusion_matrix()\n\n    ensemble_evaluate(\n        [hmm_pred, crf_pred, lstm_pred, lstmcrf_pred],\n        test_tag_lists\n    )\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "named_entity_recognition/utils.py",
    "content": "import pickle\n\n\ndef merge_maps(dict1, dict2):\n    \"\"\"用于合并两个word2id或者两个tag2id\"\"\"\n    for key in dict2.keys():\n        if key not in dict1:\n            dict1[key] = len(dict1)\n    return dict1\n\n\ndef save_model(model, file_name):\n    \"\"\"用于保存模型\"\"\"\n    with open(file_name, \"wb\") as f:\n        pickle.dump(model, f)\n\n\ndef load_model(file_name):\n    \"\"\"用于加载模型\"\"\"\n    with open(file_name, \"rb\") as f:\n        model = pickle.load(f)\n    return model\n\n\n# LSTM模型训练的时候需要在word2id和tag2id加入PAD和UNK\n# 如果是加了CRF的lstm还要加入<start>和<end> (解码的时候需要用到)\ndef extend_maps(word2id, tag2id, for_crf=True):\n    word2id['<unk>'] = len(word2id)\n    word2id['<pad>'] = len(word2id)\n    tag2id['<unk>'] = len(tag2id)\n    tag2id['<pad>'] = len(tag2id)\n    # 如果是加了CRF的bilstm  那么还要加入<start> 和 <end>token\n    if for_crf:\n        word2id['<start>'] = len(word2id)\n        word2id['<end>'] = len(word2id)\n        tag2id['<start>'] = len(tag2id)\n        tag2id['<end>'] = len(tag2id)\n\n    return word2id, tag2id\n\n\ndef prepocess_data_for_lstmcrf(word_lists, tag_lists, test=False):\n    assert len(word_lists) == len(tag_lists)\n    for i in range(len(word_lists)):\n        word_lists[i].append(\"<end>\")\n        if not test:  # 如果是测试数据，就不需要加end token了\n            tag_lists[i].append(\"<end>\")\n\n    return word_lists, tag_lists\n\n\ndef flatten_lists(lists):\n    flatten_list = []\n    for l in lists:\n        if type(l) == list:\n            flatten_list += l\n        else:\n            flatten_list.append(l)\n    return flatten_list\n"
  },
  {
    "path": "word2vector/fasttext/README.md",
    "content": "# Fasttext\n\nFasttext的简单实现。\n\n如果使用本书附带的[docker镜像](https://hub.docker.com/r/chatopera/qna-book/)，所有依赖已经安装好，不需要再次安装。使用docker镜像运行程序的方式详见[文档](https://github.com/l11x0m7/book-of-qna-code/blob/master/README.md)。\n\n\n## 依赖\n\n* python2.7\n\n```\npip install scipy\npip install numpy\n```\n\n### 运行\n\n```\n./run.sh\n```\n\n"
  },
  {
    "path": "word2vector/fasttext/fasttext.py",
    "content": "# -*- encoding:utf8 -*-\nfrom __future__ import print_function\nfrom __future__ import division\nimport numpy as np\nimport json\nimport pickle\nimport wget\nimport os\nimport zipfile\nimport heapq\nimport time\nimport itertools\nimport threading\nimport numpy.random as random\nimport sys\nimport scipy\nimport scipy.sparse\nimport math\nfrom multiprocessing.pool import ThreadPool\nfrom Queue import Queue\nfrom numpy import float32 as REAL\n\nimport logging\nlogging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO)\nlogger = logging.getLogger('fasttext')\n\nfrom utils import *\n\n\"\"\"\n# Introduction\n\nA simple code version for fasttext\n\n# Reference\n[1] https://github.com/RaRe-Technologies/gensim/blob/develop/gensim\n\"\"\"\n\n\n# ----- fasttext -----\n\n# gensim里用的cython版本。\n# 本来用cython版本的train_sentence会快很多，不过主要介绍原理，所以都用python介绍。\ndef train_sentence_sg(model, sentence, alpha, is_ft=False, work=None):\n    \"\"\"\n    skip-gram\n\n    `model` 训练的词向量模型\n    `sentence` 一个词列表，表示一个句子\n    `alpha` 学习率\n    `is_ft` 表示是否是fasttext模式\n    \"\"\"\n    total_loss = 0.\n    count = 1\n    # 遍历每个句子的词，该词`word`作为中心词\n    for pos, word in enumerate(sentence):\n        if word is None:\n            # 跳过OOV的词\n            continue\n        # 设定一个随机的窗口大小，最终真正的单侧窗口大小为window - reduced_window\n        reduced_window = model.random.randint(model.window)\n\n        if is_ft:\n            subwords_indices = [word.index]\n            word2_subwords = model.ngrams_word[model.id2word[word.index]]\n\n            for subword in word2_subwords:\n                subwords_indices.append(model.ngrams[subword])\n\n        # 遍历两侧词窗内的所有词，分别预测\n        start = max(0, pos - model.window + reduced_window)\n        for pos2, word2 in enumerate(sentence[start : pos + model.window + 1 - reduced_window], start):\n            if pos2 == pos or word2 is None:\n                # 跳过OOV的词以及中心词`word`\n                continue\n            if is_ft:\n                l1_vocab = model.syn0[subwords_indices[0]]\n                l1_ngrams = np.sum(model.syn0_ngrams[subwords_indices[1:]], axis=0)\n                if subwords_indices:\n                    l1 = np.sum([l1_vocab, l1_ngrams], axis=0) / len(subwords_indices)\n            else:\n                # 得到输入词向量v_w\n                # 此处本应该是`word`而不是`word2`，即求P(word2|word)的极大似然，\n                # 不过这样的话，输入的投影矩阵syn0在每个词窗下只能更新一个词多次，\n                # 因此此处改成求对称的P(word|word2)的极大似然，这样可以让输入的投影矩阵syn0在每个词窗下更新多个词\n                # 对应fasttext则仍为word，如果是word2vec则为word2\n                l1 = model.syn0[word2.index]\n\n            # 用来存储l1的更新梯度*学习率\n            neu1e = np.zeros(l1.shape, dtype=np.float32)\n               \n            if model.hs >= 1:\n                # `outer((1 - word.code - fa), l1)`为关于l2a的梯度\n                # `dot((1 - word.code - fa), l2a)`为关于l1的梯度\n\n                # `word.point`是一个array，表示抽取出所有的当前叶子结点的结点路径\n                # `l2a`是一个矩阵，shape为(codelen, layer1_size)\n                l2a = model.syn1[word.point]\n                # 隐层输出，`fa`的shape为(1, codelen)，每个值表示code预测为1（向树右侧走）的概率\n                fa = expit(np.dot(l1, l2a.T))\n                # shape为(1, codelen)\n                ga = (1 - word.code - fa) * alpha  # vector of error gradients multiplied by the learning rate\n                # 更新输出矩阵，shape为(codelen, layer1_size)\n                model.syn1[word.point] += np.outer(ga, l1)  # learn hidden -> output\n\n                # 更新输入矩阵\n                neu1e += np.dot(ga, l2a)\n\n                # 计算loss\n                sgn = (-1.0)**word.code  # ch function, 0-> 1, 1 -> -1\n                loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\n                total_loss += loss / len(word.code)\n                count += 1\n                model.running_training_loss += loss\n            else:\n                # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\n                # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\n\n                # 从构建的`cum_table`中找到`negative`个负样本\n                neg_indices = [word.index]\n                while len(neg_indices) < model.negative + 1:\n                    w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\n                    if w != word.index:\n                        neg_indices.append(w)\n                # `l2b`是一个矩阵，shape为(negative+1, layer1_size)\n                l2b = model.syn1neg[neg_indices]\n                # shape为(1, negative+1)\n                prod_term = np.dot(l1, l2b.T)\n                # shape为(1, negative+1)\n                fb = expit(prod_term)  # propagate hidden -> output\n                # shape为(1, negative+1)\n                gb = (model.neg_labels - fb) * alpha  # vector of error gradients multiplied by the learning rate\n                # 更新输出矩阵，shape为(negative+1, layer1_size)\n                model.syn1neg[neg_indices] += np.outer(gb, l1)  # learn hidden -> output\n\n                # 更新输入矩阵\n                neu1e += np.dot(gb, l2b)\n\n                # 计算loss\n                loss1 = -sum(np.log(expit(-1 * prod_term[1:]))) \n                loss2 = -np.log(expit(prod_term[0]))\n                total_loss += (loss1 + loss2) / len(prod_term)\n                count += 1\n                model.running_training_loss += loss1  # for the sampled words\n                model.running_training_loss += loss2  # for the output word\n\n            # 更新输入矩阵\n            if is_ft:\n                # 这里的梯度需要除以len(subwords_indices)么？\n                # 这块我提了issue，有人和我想的一样，是需要除的\n                # 但是gensim官方说不需要除\n                # 其实这个相当于是另一个学习率，对结果影响不大\n                # 参考链接：https://github.com/RaRe-Technologies/gensim/issues/697\n                model.syn0[subwords_indices[0]] += neu1e / len(subwords_indices)\n                for i in subwords_indices[1:]:\n                    model.syn0_ngrams[i] += neu1e / len(subwords_indices)\n            else:\n                l1 += neu1e  # save error\n\n    # 返回句子中的非OOV的词的个数\n    return len([word for word in sentence if word is not None]), 1.0 * total_loss / count\n\n\ndef train_sentence_cbow(model, sentence, alpha, is_ft=False, work=None, cbow_mean=True):\n    \"\"\"\n    cbow\n\n    `model` 训练的词向量模型\n    `sentence` 一个词列表，表示一个句子\n    `alpha` 学习率\n    \"\"\"\n    total_loss = 0.\n    count = 1\n    for pos, word in enumerate(sentence):\n        if word is None:\n            continue\n        reduced_window = model.random.randint(model.window)\n        start = max(0, pos - model.window + reduced_window)\n        window_pos = enumerate(sentence[start:(pos + model.window + 1 - reduced_window)], start)\n        word2_indices = [word2.index for pos2, word2 in window_pos if (word2 is not None and pos2 != pos)]\n\n        # 按fasttext方式\n        if is_ft:\n            word2_subwords = []\n            # 得到上下文词的索引\n            vocab_subwords_indices = []\n            # 得到上下文词的subword的索引\n            ngrams_subwords_indices = []\n\n            for index in word2_indices:\n                vocab_subwords_indices += [index]\n                word2_subwords += model.ngrams_word[model.id2word[index]]\n\n            for subword in word2_subwords:\n                ngrams_subwords_indices.append(model.ngrams[subword])\n            # 将每个上下文词的向量求和\n            l1_vocab = np.sum(model.syn0[vocab_subwords_indices], axis=0)  # 1 x vector_size\n            # 将每个上下文词的subword的向量求和\n            l1_ngrams = np.sum(model.syn0_ngrams[ngrams_subwords_indices], axis=0)  # 1 x vector_size\n            # 将两个向量相加，得到最终的上下文向量\n            l1 = np.sum([l1_vocab, l1_ngrams], axis=0)\n            subwords_indices = [vocab_subwords_indices] + [ngrams_subwords_indices]\n            if (subwords_indices[0] or subwords_indices[1]) and cbow_mean:\n                l1 /= (len(subwords_indices[0]) + len(subwords_indices[1]))\n        # 按word2vec方式\n        else:\n            # (1, layer1_size)\n            l1 = np.sum(model.syn0[word2_indices], axis=0)\n            if word2_indices and cbow_mean:\n                l1 /= len(word2_indices)\n\n        neu1e = np.zeros(l1.shape, dtype=np.float32)\n\n        if model.hs >= 1:\n            # `outer((1 - word.code - fa), l1)`为关于l2a的梯度\n            # `dot((1 - word.code - fa), l2a)`为关于l1的梯度\n\n            # shape为(codelen, layer1_size)\n            l2a = model.syn1[word.point]\n            # shape为(1, codelen)\n            fa = expit(np.dot(l1, l2a.T))\n            # shape为(1, codelen)\n            ga = (1 - word.code - fa) * alpha  # vector of error gradients multiplied by the learning rate\n            # 更新输出矩阵，shape为(codelen, layer1_size)\n            model.syn1[word.point] += np.outer(ga, l1)  # learn hidden -> output\n\n            # 更新输入矩阵\n            neu1e += np.dot(ga, l2a)\n\n            # 计算loss\n            sgn = (-1.0)**word.code  # ch function, 0-> 1, 1 -> -1\n            loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\n            total_loss += loss / len(word.code)\n            count += 1\n            model.running_training_loss += loss\n        else:\n            # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\n            # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\n\n            # 从构建的`cum_table`中找到`negative`个负样本\n            neg_indices = [word.index]\n            while len(neg_indices) < model.negative + 1:\n                w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\n                if w != word.index:\n                    neg_indices.append(w)\n            # `l2b`是一个矩阵，shape为(negative+1, layer1_size)\n            l2b = model.syn1neg[neg_indices]\n            # shape为(1, negative+1)\n            prod_term = np.dot(l1, l2b.T)\n            # shape为(1, negative+1)\n            fb = expit(prod_term)  # propagate hidden -> output\n            # shape为(1, negative+1)\n            gb = (model.neg_labels - fb) * alpha  # vector of error gradients multiplied by the learning rate\n            # 更新输出矩阵，shape为(negative+1, layer1_size)\n            model.syn1neg[neg_indices] += np.outer(gb, l1)  # learn hidden -> output\n\n            # 更新输入矩阵\n            neu1e += np.dot(gb, l2b)\n\n            # 计算loss\n            loss1 = -sum(np.log(expit(-1 * prod_term[1:])))\n            loss2 = -np.log(expit(prod_term[0]))\n            total_loss += (loss1 + loss2) / len(prod_term)\n            count += 1\n            model.running_training_loss += loss1  # for the sampled words\n            model.running_training_loss += loss2  # for the output word\n\n        # 更新输入矩阵\n        if is_ft:\n            if cbow_mean and subwords_indices:\n                neu1e /= (len(subwords_indices[0]) + len(subwords_indices[1]))\n            for i in subwords_indices[0]:\n                model.syn0[i] += (neu1e / len(subwords_indices[0]))\n            for i in subwords_indices[1]:\n                model.syn0_ngrams[i] += (neu1e / len(subwords_indices[1]))\n        else:\n            if cbow_mean and word2_indices:\n                neu1e /= len(word2_indices)\n            for i in word2_indices:\n                model.syn0[i] += neu1e\n\n    return len([word for word in sentence if word is not None]), 1.0 * total_loss / count\n\n\nclass Vocab(object):\n    \"\"\"\n        用来存储词汇，如果用hs，则可以看成一个树结点\n    \"\"\"\n    def __init__(self, **kwargs):\n        \"\"\"\n        `count` 词频\n        `index` 索引\n        `left` 如果用hs，则表示左孩子\n        `right` 如果用hs，则表示右孩子\n        `code` 叶子结点的编码路径（从根结点到叶子结点的huffman编码）\n        `point` 叶子结点的结点路径（从根结点到叶子结点经过的结点索引）\n        \"\"\"\n        self.count = 0\n        self.index = -1\n        self.left = None\n        self.right = None\n        self.code = []\n        self.point = []\n        self.__dict__.update(kwargs)\n\n    def __lt__(self, vocab):\n        return self.count < vocab.count\n\n    def __str__(self):\n        return '<' + ', '.join([ '{}:{}'.format(\n            (_, self.__dict__[_]) for _ in self.__dict__\n            if not self.__dict__[_].startswith('_'))]) + '>'\n\n\n# 由于在构建对象的时候直接训练模型，因此就不直接继承Word2Vec类了\nclass FastText(SaveAndLoad):\n    def __init__(self, sentences=None, size=100, alpha=0.025, \n                 window=5, min_count=5, seed=1, iters=5, \n                 workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \n                 sort_vocab=True, min_n=3, max_n=6, bucket=1e5):\n        \"\"\"\n        FastText模型，其中sentences可以不给定，表示不训练模型。\n        此时初始化的模型可以进行加载模型等操作\n\n        `sentences` 输入的用于训练的句子集合，可以是迭代器，也可以是一般的list等\n        `size` 词向量维度，也就是训练的时候隐变量的维度\n        `window` 一句话中的当前词与上下文词的最大距离，指单侧词窗\n        `alpha` 初始学习率，学习过程中随着呈线性下降趋势\n        `seed` 随机数种子\n        `iters` 迭代次数\n        `min_count` 用于过滤的最小词频\n        `workers` CPU多核的时候可以使用多线程来加快训练\n        `min_alpha` 最小学习率\n        `hs` 是否使用hierarchical softmax，当hs>=1时表示使用hs，否则为negative sampling\n        `sg` 是否使用skip-gram，如果sg>=1表示使用sg，否则为cbow\n        `negative` 表示负样本个数，用于hs<=0的情况\n        `sort_vocab` 表示是否对id2word按词频从高到低排序\n\n        以下是新加的参数\n        `min_n` 表示subword的ngram最小数\n        `max_n` 表示subword的ngram最大值\n        `bucket` 表示共存储的subword的ngram种类数\n\n        \"\"\"\n        self.window = int(window)\n        self.size = int(size)\n        self.min_count = int(min_count)\n        self.alpha = alpha\n        self.min_alpha = min_alpha\n        self.epochs = iters\n        self.seed = seed\n        self.random = random.RandomState(seed)\n        self.workers = int(workers)\n        self.hs = int(hs)\n        self.sg = int(sg)\n        self.negative = int(negative)\n        self.sort_vocab = sort_vocab\n        self.cum_table = None # negative sampling时才用到\n        self.vocab = {} # 词汇表,词->Vocab类\n        self.id2word = [] # id->词\n\n        # 新加的变量\n        self.min_n = int(min_n)\n        self.max_n = int(max_n)\n        self.bucket = int(bucket)\n        self.ngrams_word = {} # word->suword表\n        self.ngrams = {} # subword->id, 一个id可能对应多个subword（经过hash后）\n        self.num_ngram_vectors = 0 # 记录ngram总个数\n\n        self.syn0 = [] # 即所学的词向量\n        self.syn1 = [] # 用于hs\n        self.syn1neg = [] # 用于负采样\n\n        # 新加的变量\n        self.syn0_ngrams = [] # (bucket, size)，表示存储的subword向量\n\n        self.running_training_loss = 0.\n        self.layer1_size = self.size\n        if sentences is not None:\n            self.build_vocab(sentences)\n            if self.epochs is not None and self.epochs > 0:\n                sentences = RepeatCorpusNTimes(sentences, self.epochs)\n            self.train(sentences)\n\n    def get_latest_training_loss(self):\n        return self.running_training_loss\n\n    def __reset_vocab(self):\n        \"\"\"\n        重置词典和词表\n        \"\"\"\n        self.vocab = {}\n        self.word_list = []\n\n\n    def build_vocab(self, sentences):\n        \"\"\"\n        构建词典，筛除低频词，并给每个词赋予索引index\n        \"\"\"\n        # 统计词频\n        vocab = {}\n        for sentence in sentences:\n            for word in sentence:\n                vocab.setdefault(word, Vocab(count=0))\n                vocab[word].count += 1\n\n        # 重置词典\n        self.__reset_vocab()\n        # 构建词典\n        for word, v in vocab.iteritems():\n            if v.count >= self.min_count:\n                v.index = len(self.vocab)\n                self.vocab[word] = v\n                self.id2word.append(word)\n        if self.sort_vocab:\n            self.id2word = list(sorted(self.id2word, key=lambda x: self.vocab[x].count, reverse=True))\n            for i, word in enumerate(self.id2word):\n                self.vocab[word].index = i\n        if self.hs >= 1:\n            self.create_binary_tree()\n        else:\n            self.make_cum_table()\n        self.build_ngrams()\n        self.reset_weights()\n\n\n    def build_ngrams(self):\n        self.ngrams_word = {}\n        for w in self.vocab.iterkeys():\n            self.ngrams_word[w] = self.compute_ngrams(w, self.min_n, self.max_n)\n\n        self.ngrams = {}\n        all_ngrams = []\n        for w, ngrams in self.ngrams_word.iteritems():\n            all_ngrams += ngrams\n\n        all_ngrams = list(set(all_ngrams))\n        self.num_ngram_vectors = len(all_ngrams)\n        logger.info(\"Total number of ngrams is %d\", len(all_ngrams))\n\n        self.hash2index = {}\n        new_hash_count = 0\n        for i, ngram in enumerate(all_ngrams):\n            ngram_hash = self.ft_hash(ngram) % self.bucket\n            if ngram_hash in self.hash2index:\n                self.ngrams[ngram] = wv.hash2index[ngram_hash]\n            else:\n                self.hash2index[ngram_hash] = new_hash_count\n                self.ngrams[ngram] = self.hash2index[ngram_hash]\n                new_hash_count = new_hash_count + 1\n\n\n    def reset_weights(self):\n        \"\"\"\n        初始化（重置）两个投影矩阵。\n\n        syn0用于输入的词向量矩阵，\n        syn1在输出为hs的时候为tree中每个内部结点\n        （包括根结点共len(vocab)-1个）的向量矩阵。\n        \"\"\"\n        self.syn0 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n        self.syn0 += (self.random.rand(len(self.vocab), self.layer1_size) - 0.5) / self.layer1_size\n        self.syn0_ngrams = zeros_aligned((self.bucket, self.layer1_size), dtype=REAL)\n        self.syn0_ngrams += (self.random.rand(self.bucket, self.layer1_size) - 0.5) / self.layer1_size\n        if self.hs >= 1:\n            # syn1的索引对应的不是词，而是huffman树内部结点\n            # 因此syn0与syn1不能直接结合\n            self.syn1 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n        else:\n            # syn0与syn1neg的索引对应的词一致，可以直接结合（如相加求平均）\n            self.syn1neg = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n        self.syn0norm = None\n        self.syn0_ngrams_norm = None\n\n\n    def make_cum_table(self, power=0.75, domain=2**31 - 1):\n        \"\"\"\n        构建用于negative sampling的cumulative table\n\n        `power` 表示压缩值（论文中的值），可以有效防止负采样时候的长尾效应\n        `domain` 表示采样点的范围，如果归一化到概率，则是[0, 1]，用于轮盘采样\n        \"\"\"\n        vocab_size = len(self.id2word)\n        self.cum_table = np.zeros(vocab_size, dtype=np.uint32)\n        # compute sum of all power (Z in paper)\n        train_words_pow = 0.0\n        for word_index in xrange(vocab_size):\n            train_words_pow += self.vocab[self.id2word[word_index]].count ** power\n        cumulative = 0.0\n        for word_index in xrange(vocab_size):\n            cumulative += self.vocab[self.id2word[word_index]].count ** power\n            self.cum_table[word_index] = round(cumulative / train_words_pow * domain)\n        if len(self.cum_table) > 0:\n            assert self.cum_table[-1] == domain\n\n\n    def create_binary_tree(self):\n        \"\"\"\n            构建huffman树，用于hierarchical softmax\n            叶子结点表示词汇。\n            内部结点包含该路径下的词频和与索引（该索引对应矩阵syn1）\n            叶子结点包含对应词汇的词频与索引（该索引对应矩阵syn0）\n            高频词出现在较短的路径上。\n            叶子结点共`vocab_size`个，而内部结点（包含root结点）共`vocab_size-1`个\n        \"\"\"\n        heap = self.vocab.values()\n        heapq.heapify(heap)\n        # 构建huffman二叉树，每次取词频最高的结点构成新结点\n        for idx in xrange(len(self.vocab) - 1):\n            min1, min2 = heapq.heappop(heap), heapq.heappop(heap)\n            heapq.heappush(heap, Vocab(count=min1.count + min2.count, \n                      index=idx + len(self.vocab), left=min1, right=min2))\n        # 此时heap里只有一个结点，即根结点\n        if heap:\n            # max_depth记录树最大深度\n            # stack中三个元素分别代表：当前结点、当前结点的编码路径、当前结点的结点路径\n            max_depth, stack = 0, [(heap[0], [], [])]\n            # list可以当做stack用\n            while stack:\n                node, codes, points = stack.pop()\n                # 表示一个叶子结点\n                if node.index < len(self.vocab):\n                    node.code = codes\n                    node.point = points\n                    max_depth = max(len(codes), max_depth)\n                else:\n                    # 表示一个内部结点\n                    # 编码路径由于是二进制，可以用unit8节省内存\n                    # 这里讲内部结点的index减去一个vocab的大小，是为了保持内部结点的索引对应矩阵syn1的索引（从0开始）\n                    points = np.asarray(list(points) + [node.index - len(self.vocab)], dtype=np.uint32)\n                    stack.append((node.left, np.asarray(list(codes) + [0], dtype=np.uint8), points))\n                    stack.append((node.right, np.asarray(list(codes) + [1], dtype=np.uint8), points))\n        logger.info(\"built huffman tree with maximum node depth %i\" % max_depth)\n        self.max_depth = max_depth\n\n\n    def train(self, sentences, total_words=None, word_count=0, chunksize=100):\n        \"\"\"\n        Update the model's neural weights from a sequence of sentences (can be a once-only generator stream).\n        Each sentence must be a list of utf8 strings.\n        更新词向量权重\n        每输入一个句子，表示一次迭代更新。\n\n        `sentences` 输入的用于训练的句子集合\n        `total_words` 总词频和\n        `word_count` 词种类数\n        `chunksize` 多线程的时候，每个线程一次性处理或被分配到的句子数\n        \"\"\"\n        logger.info(\"training model with %i workers on %i vocabulary and %i features\" % (self.workers, len(self.vocab), self.layer1_size))\n\n        if not self.vocab:\n            raise RuntimeError(\"you must first build vocabulary before training the model\")\n\n        self.neg_labels = []\n        if self.negative >= 1:\n            # 负样本标签\n            self.neg_labels = np.zeros(self.negative + 1)\n            self.neg_labels[0] = 1.\n\n        # 用来记录时间的起始与打log的判定时间，\n        # `next_report`存到list是因为需要在多个线程内作为类对象被访问，`word_count`同理\n        start, next_report = time.time(), [1.0]\n        word_count, total_words = [word_count], total_words or sum(v.count for v in self.vocab.itervalues())\n        # 考虑缓冲区\n        jobs = Queue(maxsize=2 * self.workers)\n        # 因为有共享变量（如`word_count`），所以加锁\n        lock = threading.Lock()\n\n        def worker_train():\n            \"\"\"Train the model, lifting lists of sentences from the jobs queue.\"\"\"\n            # 多线程配给的memory\n            work = zeros_aligned(self.layer1_size, dtype=REAL)\n\n            while True:\n                # 一个job就是一个chunksize条句子的数据集\n                job = jobs.get()\n                if job is None:  # 数据读完，退出\n                    break\n                # 在开始训练之前先减小训练速率\n                alpha = max(self.min_alpha, self.alpha * (1 - 1.0 * word_count[0] / total_words / self.epochs))\n                # 训练参数；统计当前job训练的词数，OOV的词不算\n                if self.sg >= 1:\n                    func = train_sentence_sg\n                else:\n                    func = train_sentence_cbow\n                job_words, total_loss = np.sum([func(self, sentence, alpha, True, work) for sentence in job], axis=0)\n                total_loss /= len(job)\n                # 请求锁，用来更新`word_count`\n                with lock:\n                    word_count[0] += job_words\n                    elapsed = time.time() - start\n                    # 防止一直打log\n                    if elapsed >= next_report[0]:\n                        logger.info(\"PROGRESS: at %.2f%% words, alpha %.05f, %.0f words/s, loss %.08f\" %\n                            (100.0 * word_count[0] / total_words / self.epochs, alpha, word_count[0] / elapsed if elapsed else 0.0, total_loss))\n                        # 可以让log保持一秒及一秒以上打一次\n                        next_report[0] = elapsed + 1.0\n\n        workers = [threading.Thread(target=worker_train) for _ in xrange(self.workers)]\n        for thread in workers:\n            thread.daemon = True  # 可以更便捷的用ctrl+c中断程序\n            thread.start()\n\n        # 把输入的string变成Vocab类，对于OOV则用None表示，并把数据拆分成多个job，存到queue里\n        no_oov = ([self.vocab.get(word, None) for word in sentence] for sentence in sentences)\n        for job_no, job in enumerate(grouper(no_oov, chunksize)):\n            logger.debug(\"putting job #%i in the queue, qsize=%i\" % (job_no, jobs.qsize()))\n            jobs.put(job)\n        logger.info(\"reached the end of input; waiting to finish %i outstanding jobs\" % jobs.qsize())\n        # 再补充`self.workers`个jobs，用来告知线程数据读取完成\n        for _ in xrange(self.workers):\n            jobs.put(None)\n\n        for thread in workers:\n            thread.join()\n\n        elapsed = time.time() - start\n        logger.info(\"training on %i words took %.1fs, %.0f words/s\" %\n            (word_count[0], elapsed, word_count[0] / elapsed if elapsed else 0.0))\n\n        return word_count[0]\n\n    # ---辅助函数---\n    def __getitem__(self, word):\n        \"\"\"\n        返回word对应的词向量\n        Example::\n          >>> trained_model['woman']\n          array([ -1.40128313e-02, ...]\n        \"\"\"\n        return self.word_vec(word)\n\n    def __contains__(self, word):\n        return word in self.vocab\n\n\n    def similarity(self, w1, w2):\n        \"\"\"\n        计算词w1与w2的余弦相似度\n        Example::\n          >>> trained_model.similarity('woman', 'man')\n          0.73723527\n          >>> trained_model.similarity('woman', 'woman')\n          1.0\n        \"\"\"\n        return np.dot(self.word_vec(w1, True), self.word_vec(w2, True))\n\n\n    def init_sims(self):\n        if getattr(self, 'syn0norm', None) is None:\n            logger.info(\"precomputing L2-norms of word weight vectors\")\n            self.syn0norm = np.vstack(unitvec(vec) for vec in self.syn0).astype(REAL)\n        if getattr(self, 'syn0_ngrams_norm', None) is None:\n            logger.info(\"precomputing L2-norms of subword weight vectors\")\n            self.syn0_ngrams_norm = np.vstack(unitvec(vec) for vec in self.syn0_ngrams).astype(REAL)\n\n\n    def most_similar(self, positive=[], negative=[], topn=10):\n        \"\"\"\n        找到topn个最相似的词，即与postive最相似的且与negative最不相似的词\n        使用给定词的词向量余弦相似度的平均表示词类比\n\n        Example::\n          >>> model.most_similar(positive=['woman', 'king'], negative=['man'])\n          [('queen', 0.50882536), ...]\n          >>> model.most_similar('dog')\n        \"\"\"\n        self.init_sims()\n\n        if isinstance(positive, basestring) and not negative:\n            # allow calls like most_similar('dog'), as a shorthand for most_similar(['dog'])\n            positive = [positive]\n\n        # add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words\n        positive = [(word, 1.0) if isinstance(word, basestring) else word for word in positive]\n        negative = [(word, -1.0) if isinstance(word, basestring) else word for word in negative]\n\n        # compute the weighted average of all words\n        all_words, mean = set(), []\n        for word, weight in positive + negative:\n            mean.append(weight * self.word_vec(word, True))\n            if word in self.vocab:\n                all_words.add(self.vocab[word].index)\n        if not mean:\n            raise ValueError(\"cannot compute similarity with no input\")\n        mean = unitvec(np.asarray(mean).mean(axis=0)).astype(REAL)\n\n        dists = np.dot(self.syn0norm, mean)\n        if not topn:\n            return dists\n        best = np.argsort(dists)[::-1][:topn + len(all_words)]\n        # ignore (don't return) words from the input\n        result = [(self.id2word[sim], dists[sim]) for sim in best if sim not in all_words]\n        return result[:topn]\n\n    def word_vec(self, word, use_norm=False):\n        \"\"\"\n        给定一个词，返回该词的词向量\n        `use_norm` 如果为True，则返回正则化的词向量\n        \"\"\"\n        self.init_sims()\n        if word in self.vocab:\n            if use_norm:\n                result = self.syn0norm[self.vocab[word].index]\n            else:\n                result = self.syn0[self.vocab[word].index]\n            return result\n        else:\n            word_vec = np.zeros(self.syn0_ngrams.shape[1], dtype=np.float32)\n            ngrams = self.compute_ngrams(word, self.min_n, self.max_n)\n            ngrams = [ng for ng in ngrams if ng in self.ngrams]\n            if use_norm:\n                ngram_weights = self.syn0_ngrams_norm\n            else:\n                ngram_weights = self.syn0_ngrams\n            for ngram in ngrams:\n                word_vec += ngram_weights[self.ngrams[ngram]]\n            if word_vec.any():\n                return word_vec / len(ngrams)\n            else:  # No ngrams of the word are present in self.ngrams\n                raise KeyError('all ngrams for word %s absent from model' % word)\n\n    # 新加，直接从gensim上获取\n    def compute_ngrams(self, word, min_n, max_n):\n        \"\"\"Returns the list of all possible ngrams for a given word.\n        Parameters\n        ----------\n        word : str\n            The word whose ngrams need to be computed\n        min_n : int\n            minimum character length of the ngrams\n        max_n : int\n            maximum character length of the ngrams\n        Returns\n        -------\n        :obj:`list` of :obj:`str`\n            List of character ngrams\n        \"\"\"\n        BOW, EOW = ('<', '>')  # Used by FastText to attach to all words as prefix and suffix\n        extended_word = BOW + word + EOW\n        ngrams = []\n        for ngram_length in range(min_n, min(len(extended_word), max_n) + 1):\n            for i in range(0, len(extended_word) - ngram_length + 1):\n                ngrams.append(extended_word[i:i + ngram_length])\n        return ngrams\n\n    # 新加，直接从gensim上获取\n    def ft_hash(self, string):\n        \"\"\"Reproduces [hash method](https://github.com/facebookresearch/fastText/blob/master/src/dictionary.cc)\n        used in [1]_.\n        Parameter\n        ---------\n        string : str\n            The string whose hash needs to be calculated\n        Returns\n        -------\n        int\n            The hash of the string\n        \"\"\"\n        # Runtime warnings for integer overflow are raised, this is expected behaviour. These warnings are suppressed.\n        old_settings = np.seterr(all='ignore')\n        h = np.uint32(2166136261)\n        for c in string:\n            h = h ^ np.uint32(ord(c))\n            h = h * np.uint32(16777619)\n        np.seterr(**old_settings)\n        return h\n\n\nif __name__ == '__main__':\n    if not os.path.exists('../data'):\n        os.mkdir('../data')\n    # 训练语料\n    text8 = Text8Corpus('../data/text8.zip', sent_len=20, sent_num=200)\n    # 训练模型\n    logging.info(\"start training model\")\n\n    # skip-gram与negative sampling\n    # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n    #            window=3, min_count=5, seed=1, iters=1, \n    #            workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \n    #            sort_vocab=True)\n\n    # cbow与negative sampling\n    # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n    #            window=3, min_count=5, seed=1, iters=1, \n    #            workers=1, min_alpha=0.0001, hs=0, sg=1, negative=10, \n    #            sort_vocab=True)\n\n    # cbow与hierarchical softmax\n    # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n    #            window=3, min_count=5, seed=1, iters=1, \n    #            workers=1, min_alpha=0.0001, hs=1, sg=0, negative=10, \n    #            sort_vocab=True)\n\n    # skip-gram与hierarchical softmax\n    # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n    #            window=3, min_count=5, seed=1, iters=1, \n    #            workers=1, min_alpha=0.0001, hs=1, sg=1, negative=10, \n    #            sort_vocab=True)\n\n    logging.info(\"finished training model\")\n\n    # 简单例子测试\n    test_corpus = (\"\"\"human interface computer\nsurvey user computer system response time\neps user interface system\nsystem human system eps\nuser response time\ntrees\ngraph trees\ngraph minors trees\ngraph minors survey\nI like graph and stuff\nI like trees and stuff\nSometimes I build a graph\nSometimes I build trees\"\"\").split(\"\\n\")\n    start = time.time()\n    test_corpus = [_.split() for _ in test_corpus]\n\n    model = FastText(sentences=test_corpus, size=5, alpha=0.025, \n                 window=5, min_count=1, seed=1, iters=500, \n                 workers=2, min_alpha=0.0001, hs=1, sg=1, negative=10, \n                 sort_vocab=True, min_n=3, max_n=6, bucket=100000)\n    similar = model.most_similar('graph', topn=1)[0][0]\n    print(similar)\n    assert similar == 'trees'\n    similar = model.most_similar('tree', topn=1)[0][0]\n    print(similar)\n    assert similar == 'trees'\n    print('elapsed time:{}s'.format(time.time() - start))\n\n"
  },
  {
    "path": "word2vector/fasttext/run.sh",
    "content": "#! /bin/bash \n###########################################\n#\n###########################################\n\n# constants\nbaseDir=$(cd `dirname \"$0\"`;pwd)\n\n# functions\n\n# main \n[ -z \"${BASH_SOURCE[0]}\" -o \"${BASH_SOURCE[0]}\" = \"$0\" ] || return\necho \"active python2.7 environment\"\nsource ~/venv-py2/bin/activate # Use python2\ncd $baseDir\necho `python --version`\nset -x\npython fasttext.py\n\necho \"deactivate python2.7 environment ...\"\ndeactivate"
  },
  {
    "path": "word2vector/fasttext/utils.py",
    "content": "# -*- encoding:utf8 -*-\nfrom __future__ import print_function\nfrom __future__ import division\nimport numpy as np\nimport json\nimport pickle\nimport wget\nimport os\nimport zipfile\nimport heapq\nimport time\nimport itertools\nimport sys\nimport scipy\nimport scipy.sparse\nimport math\nfrom Queue import Queue\n\n\n# ----- utils工具 -----\n\ndef zeros_aligned(shape, dtype, order='C', align=128):\n    \"\"\"Like `numpy.zeros()`, but the array will be aligned at `align` byte boundary.\"\"\"\n    nbytes = np.prod(shape) * np.dtype(dtype).itemsize\n    buffer = np.zeros(nbytes + align, dtype=np.uint8)\n    start_index = -buffer.ctypes.data % align\n    return buffer[start_index : start_index + nbytes].view(dtype).reshape(shape, order=order)\n\n\ndef chunkize_serial(iterable, chunksize, as_numpy=False):\n    \"\"\"\n    Return elements from the iterable in `chunksize`-ed lists. The last returned\n    element may be smaller (if length of collection is not divisible by `chunksize`).\n    >>> print list(grouper(xrange(10), 3))\n    [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]]\n    \"\"\"\n    it = iter(iterable)\n    while True:\n        if as_numpy:\n            # convert each document to a 2d numpy array (~6x faster when transmitting\n            # chunk data over the wire, in Pyro)\n            wrapped_chunk = [[np.array(doc) for doc in itertools.islice(it, int(chunksize))]]\n        else:\n            wrapped_chunk = [list(itertools.islice(it, int(chunksize)))]\n        if not wrapped_chunk[0]:\n            break\n        # memory opt: wrap the chunk and then pop(), to avoid leaving behind a dangling reference\n        yield wrapped_chunk.pop()\n\ngrouper = chunkize_serial\n\n\ndef expit(x):\n    return 1.0 / (1.0 + np.exp(-x))\n\n\ndef unitvec(vec):\n    \"\"\"\n    Scale a vector to unit length. The only exception is the zero vector, which\n    is returned back unchanged.\n    Output will be in the same format as input (i.e., gensim vector=>gensim vector,\n    or numpy array=>numpy array, scipy.sparse=>scipy.sparse).\n    \"\"\"\n    if scipy.sparse.issparse(vec): # convert scipy.sparse to standard numpy array\n        vec = vec.tocsr()\n        veclen = np.sqrt(np.sum(vec.data ** 2))\n        if veclen > 0.0:\n            return vec / veclen\n        else:\n            return vec\n\n    if isinstance(vec, np.ndarray):\n        vec = np.asarray(vec, dtype=float)\n        veclen = np.sqrt(np.sum(vec ** 2))\n        if veclen > 0.0:\n            return vec / veclen\n        else:\n            return vec\n\n\ndef cossim(vec1, vec2):\n    vec1, vec2 = dict(vec1), dict(vec2)\n    if not vec1 or not vec2:\n        return 0.0\n    vec1len = 1.0 * math.sqrt(sum(val * val for val in vec1.itervalues()))\n    vec2len = 1.0 * math.sqrt(sum(val * val for val in vec2.itervalues()))\n    assert vec1len > 0.0 and vec2len > 0.0, \"sparse documents must not contain any explicit zero entries\"\n    if len(vec2) < len(vec1):\n        vec1, vec2 = vec2, vec1 # swap references so that we iterate over the shorter vector\n    result = sum(value * vec2.get(index, 0.0) for index, value in vec1.iteritems())\n    result /= vec1len * vec2len # rescale by vector lengths\n    return result\n\n\nclass RepeatCorpusNTimes(object):\n    \"\"\"Wrap a `corpus` and repeat it `n` times.\n    Examples\n    --------\n    >>> corpus = [[(1, 0.5)], []]\n    >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times\n    [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []]\n    \"\"\"\n\n    def __init__(self, corpus, n):\n        \"\"\"\n        Parameters\n        ----------\n        corpus : iterable of iterable of (int, int)\n            Input corpus.\n        n : int\n            Number of repeats for corpus.\n        \"\"\"\n        self.corpus = corpus\n        self.n = n\n\n    def __iter__(self):\n        for _ in xrange(self.n):\n            for document in self.corpus:\n                yield document\n\n\nclass SaveAndLoad(object):\n    \"\"\"\n        用于保存和读取python类对象的基类\n    \"\"\"\n    def __init__(self):\n        pass\n\n    def save(self, fname):\n        with open(fname, 'wb') as fw:\n            pickle.dump(self, fw, protocol=2)\n        logger.info('File saved in {}'.format(fname))\n\n    @classmethod\n    def load(cls, fname):\n        with open(fname, 'rb') as fr:\n            return pickle.load(fr)\n\n\n# ----- dataset -----\n\nclass Text8Corpus(object):\n    \"\"\"\n    Iterate over sentences from the \"text8\" corpus, \n    unzipped from http://mattmahoney.net/dc/text8.zip .\n    text8数据读取，用于训练 \n    \"\"\"\n    def __init__(self, fname, sent_num=None, sent_len=1000):\n        self.fname = fname\n        self.sent_num = sent_num\n        self.sent_len = sent_len\n        if not os.path.exists(self.fname):\n            wget.download('http://mattmahoney.net/dc/text8.zip', out=self.fname)\n            print('Downloaded zip file `text8.zip`!')\n\n    def __iter__(self):\n        # the entire corpus is one gigantic line -- there are no sentence marks at all\n        # so just split the sequence of tokens arbitrarily: 1 sentence = 1000 tokens\n        sentence, rest, max_sentence_length = [], '', self.sent_len\n        idx = 0\n        with zipfile.ZipFile(self.fname) as zip_text8:\n            with zip_text8.open(zip_text8.getinfo('text8')) as fin:\n                while True:\n                    if self.sent_num is not None and idx >= self.sent_num:\n                        break\n                    text = rest + fin.read(8192)  # avoid loading the entire file (=1 line) into RAM\n                    if text == rest:  # EOF\n                        sentence.extend(rest.split()) # return the last chunk of words, too (may be shorter/longer)\n                        if sentence:\n                            idx += 1\n                            yield sentence\n                        break\n                    last_token = text.rfind(' ')  # the last token may have been split in two... keep it for the next iteration\n                    words, rest = (text[:last_token].split(), text[last_token:].strip()) if last_token >= 0 else ([], text)\n                    sentence.extend(words)\n                    while len(sentence) >= max_sentence_length:\n                        idx += 1\n                        yield sentence[:max_sentence_length]\n                        if self.sent_num is not None and idx >= self.sent_num:\n                            break\n                        sentence = sentence[max_sentence_length:]\n"
  },
  {
    "path": "word2vector/fasttext/wget.py",
    "content": "#!/usr/bin/env python\n\"\"\"\nDownload utility as an easy way to get file from the net\n \n  python -m wget <URL>\n  python wget.py <URL>\n\nDownloads: http://pypi.python.org/pypi/wget/\nDevelopment: http://bitbucket.org/techtonik/python-wget/\n\nwget.py is not option compatible with Unix wget utility,\nto make command line interface intuitive for new people.\n\nPublic domain by anatoly techtonik <techtonik@gmail.com>\nAlso available under the terms of MIT license\nCopyright (c) 2010-2014 anatoly techtonik\n\"\"\"\n\n\nimport sys, shutil, os\nimport tempfile\nimport math\n\nPY3K = sys.version_info >= (3, 0)\nif PY3K:\n  import urllib.request as urllib\n  import urllib.parse as urlparse\nelse:\n  import urllib\n  import urlparse\n\n\n__version__ = \"2.3-beta1\"\n\n\ndef filename_from_url(url):\n    \"\"\":return: detected filename or None\"\"\"\n    fname = os.path.basename(urlparse.urlparse(url).path)\n    if len(fname.strip(\" \\n\\t.\")) == 0:\n        return None\n    return fname\n\ndef filename_from_headers(headers):\n    \"\"\"Detect filename from Content-Disposition headers if present.\n    http://greenbytes.de/tech/tc2231/\n\n    :param: headers as dict, list or string\n    :return: filename from content-disposition header or None\n    \"\"\"\n    if type(headers) == str:\n        headers = headers.splitlines()\n    if type(headers) == list:\n        headers = dict([x.split(':', 1) for x in headers])\n    cdisp = headers.get(\"Content-Disposition\")\n    if not cdisp:\n        return None\n    cdtype = cdisp.split(';')\n    if len(cdtype) == 1:\n        return None\n    if cdtype[0].strip().lower() not in ('inline', 'attachment'):\n        return None\n    # several filename params is illegal, but just in case\n    fnames = [x for x in cdtype[1:] if x.strip().startswith('filename=')]\n    if len(fnames) > 1:\n        return None\n    name = fnames[0].split('=')[1].strip(' \\t\"')\n    name = os.path.basename(name)\n    if not name:\n        return None\n    return name\n\ndef filename_fix_existing(filename):\n    \"\"\"Expands name portion of filename with numeric ' (x)' suffix to\n    return filename that doesn't exist already.\n    \"\"\"\n    dirname = '.' \n    name, ext = filename.rsplit('.', 1)\n    names = [x for x in os.listdir(dirname) if x.startswith(name)]\n    names = [x.rsplit('.', 1)[0] for x in names]\n    suffixes = [x.replace(name, '') for x in names]\n    # filter suffixes that match ' (x)' pattern\n    suffixes = [x[2:-1] for x in suffixes\n                   if x.startswith(' (') and x.endswith(')')]\n    indexes  = [int(x) for x in suffixes\n                   if set(x) <= set('0123456789')]\n    idx = 1\n    if indexes:\n        idx += sorted(indexes)[-1]\n    return '%s (%d).%s' % (name, idx, ext)\n\n\n# --- terminal/console output helpers ---\n\ndef get_console_width():\n    \"\"\"Return width of available window area. Autodetection works for\n       Windows and POSIX platforms. Returns 80 for others\n\n       Code from http://bitbucket.org/techtonik/python-pager\n    \"\"\"\n\n    if os.name == 'nt':\n        STD_INPUT_HANDLE  = -10\n        STD_OUTPUT_HANDLE = -11\n        STD_ERROR_HANDLE  = -12\n\n        # get console handle\n        from ctypes import windll, Structure, byref\n        try:\n            from ctypes.wintypes import SHORT, WORD, DWORD\n        except ImportError:\n            # workaround for missing types in Python 2.5\n            from ctypes import (\n                c_short as SHORT, c_ushort as WORD, c_ulong as DWORD)\n        console_handle = windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE)\n\n        # CONSOLE_SCREEN_BUFFER_INFO Structure\n        class COORD(Structure):\n            _fields_ = [(\"X\", SHORT), (\"Y\", SHORT)]\n\n        class SMALL_RECT(Structure):\n            _fields_ = [(\"Left\", SHORT), (\"Top\", SHORT),\n                        (\"Right\", SHORT), (\"Bottom\", SHORT)]\n\n        class CONSOLE_SCREEN_BUFFER_INFO(Structure):\n            _fields_ = [(\"dwSize\", COORD),\n                        (\"dwCursorPosition\", COORD),\n                        (\"wAttributes\", WORD),\n                        (\"srWindow\", SMALL_RECT),\n                        (\"dwMaximumWindowSize\", DWORD)]\n\n        sbi = CONSOLE_SCREEN_BUFFER_INFO()\n        ret = windll.kernel32.GetConsoleScreenBufferInfo(console_handle, byref(sbi))\n        if ret == 0:\n            return 0\n        return sbi.srWindow.Right+1\n\n    elif os.name == 'posix':\n        from fcntl import ioctl\n        from termios import TIOCGWINSZ\n        from array import array\n\n        winsize = array(\"H\", [0] * 4)\n        try:\n            ioctl(sys.stdout.fileno(), TIOCGWINSZ, winsize)\n        except IOError:\n            pass\n        return (winsize[1], winsize[0])[0]\n\n    return 80\n\n\ndef bar_thermometer(current, total, width=80):\n    \"\"\"Return thermometer style progress bar string. `total` argument\n    can not be zero. The minimum size of bar returned is 3. Example:\n\n        [..........            ]\n\n    Control and trailing symbols (\\r and spaces) are not included.\n    See `bar_adaptive` for more information.\n    \"\"\"\n    # number of dots on thermometer scale\n    avail_dots = width-2\n    shaded_dots = int(math.floor(float(current) / total * avail_dots))\n    return '[' + '.'*shaded_dots + ' '*(avail_dots-shaded_dots) + ']'\n\ndef bar_adaptive(current, total, width=80):\n    \"\"\"Return progress bar string for given values in one of three\n    styles depending on available width:\n\n        [..  ] downloaded / total\n        downloaded / total\n        [.. ]\n\n    if total value is unknown or <= 0, show bytes counter using two\n    adaptive styles:\n\n        %s / unknown\n        %s\n\n    if there is not enough space on the screen, do not display anything\n\n    returned string doesn't include control characters like \\r used to\n    place cursor at the beginning of the line to erase previous content.\n\n    this function leaves one free character at the end of string to\n    avoid automatic linefeed on Windows.\n    \"\"\"\n\n    # process special case when total size is unknown and return immediately\n    if not total or total < 0:\n        msg = \"%s / unknown\" % current\n        if len(msg) < width:    # leaves one character to avoid linefeed\n            return msg\n        if len(\"%s\" % current) < width:\n            return \"%s\" % current\n\n    # --- adaptive layout algorithm ---\n    #\n    # [x] describe the format of the progress bar\n    # [x] describe min width for each data field\n    # [x] set priorities for each element\n    # [x] select elements to be shown\n    #   [x] choose top priority element min_width < avail_width\n    #   [x] lessen avail_width by value if min_width\n    #   [x] exclude element from priority list and repeat\n    \n    #  10% [.. ]  10/100\n    # pppp bbbbb sssssss\n\n    min_width = {\n      'percent': 4,  # 100%\n      'bar': 3,      # [.]\n      'size': len(\"%s\" % total)*2 + 3, # 'xxxx / yyyy'\n    }\n    priority = ['percent', 'bar', 'size']\n\n    # select elements to show\n    selected = []\n    avail = width\n    for field in priority:\n      if min_width[field] < avail:\n        selected.append(field)\n        avail -= min_width[field]+1   # +1 is for separator or for reserved space at\n                                      # the end of line to avoid linefeed on Windows\n    # render\n    output = ''\n    for field in selected:\n\n      if field == 'percent':\n        # fixed size width for percentage\n        output += ('%s%%' % (100 * current // total)).rjust(min_width['percent'])\n      elif field == 'bar':  # [. ]\n        # bar takes its min width + all available space\n        output += bar_thermometer(current, total, min_width['bar']+avail)\n      elif field == 'size':\n        # size field has a constant width (min == max)\n        output += (\"%s / %s\" % (current, total)).rjust(min_width['size'])\n\n      selected = selected[1:]\n      if selected:\n        output += ' '  # add field separator\n\n    return output\n\n# --/ console helpers\n\n\n__current_size = 0  # global state variable, which exists solely as a\n                    # workaround against Python 3.3.0 regression\n                    # http://bugs.python.org/issue16409\n                    # fixed in Python 3.3.1\ndef callback_progress(blocks, block_size, total_size, bar_function):\n    \"\"\"callback function for urlretrieve that is called when connection is\n    created and when once for each block\n\n    draws adaptive progress bar in terminal/console\n\n    use sys.stdout.write() instead of \"print,\", because it allows one more\n    symbol at the line end without linefeed on Windows\n\n    :param blocks: number of blocks transferred so far\n    :param block_size: in bytes\n    :param total_size: in bytes, can be -1 if server doesn't return it\n    :param bar_function: another callback function to visualize progress\n    \"\"\"\n    global __current_size\n \n    width = min(100, get_console_width())\n\n    if sys.version_info[:3] == (3, 3, 0):  # regression workaround\n        if blocks == 0:  # first call\n            __current_size = 0\n        else:\n            __current_size += block_size\n        current_size = __current_size\n    else:\n        current_size = min(blocks*block_size, total_size)\n    progress = bar_function(current_size, total_size, width)\n    if progress:\n        sys.stdout.write(\"\\r\" + progress)\n\nclass ThrowOnErrorOpener(urllib.FancyURLopener):\n    def http_error_default(self, url, fp, errcode, errmsg, headers):\n        raise Exception(\"%s: %s\" % (errcode, errmsg))\n\ndef download(url, out=None, bar=bar_adaptive):\n    \"\"\"High level function, which downloads URL into tmp file in current\n    directory and then renames it to filename autodetected from either URL\n    or HTTP headers.\n\n    :param bar: function to track download progress (visualize etc.)\n    :param out: output filename or directory\n    :return:    filename where URL is downloaded to\n    \"\"\"\n    names = dict()\n    names[\"out\"] = out or ''\n    names[\"url\"] = filename_from_url(url)\n    # get filename for temp file in current directory\n    prefix = (names[\"url\"] or names[\"out\"] or \".\") + \".\"\n    (fd, tmpfile) = tempfile.mkstemp(\".tmp\", prefix=prefix, dir=\".\")\n    os.close(fd)\n    os.unlink(tmpfile)\n\n    # set progress monitoring callback\n    def callback_charged(blocks, block_size, total_size):\n        # 'closure' to set bar drawing function in callback\n        callback_progress(blocks, block_size, total_size, bar_function=bar)\n    if bar:\n        callback = callback_charged\n    else:\n        callback = None\n\n    (tmpfile, headers) = ThrowOnErrorOpener().retrieve(url, tmpfile, callback)\n    names[\"header\"] = filename_from_headers(headers)\n    if os.path.isdir(names[\"out\"]):\n        filename = names[\"header\"] or names[\"url\"]\n        filename = names[\"out\"] + \"/\" + filename\n    else:\n        filename = names[\"out\"] or names[\"header\"] or names[\"url\"]\n    # add numeric ' (x)' suffix if filename already exists\n    if os.path.exists(filename):\n        filename = filename_fix_existing(filename)\n    shutil.move(tmpfile, filename)\n\n    #print headers\n    return filename\n\n\nusage = \"\"\"\\\nusage: wget.py [options] URL\n\noptions:\n  -o --output FILE|DIR   output filename or directory\n  -h --help\n  --version\n\"\"\"\n\nif __name__ == \"__main__\":\n    if len(sys.argv) < 2 or \"-h\" in sys.argv or \"--help\" in sys.argv:\n        sys.exit(usage)\n    if \"--version\" in sys.argv:\n        sys.exit(\"wget.py \" + __version__)\n\n    from optparse import OptionParser\n    parser = OptionParser()\n    parser.add_option(\"-o\", \"--output\", dest=\"output\")\n    (options, args) = parser.parse_args()\n\n    url = sys.argv[1]\n    filename = download(args[0], out=options.output)\n\n    print(\"\")\n    print(\"Saved under %s\" % filename)\n\nr\"\"\"\nfeatures that require more tuits for urlretrieve API\nhttp://www.python.org/doc/2.6/library/urllib.html#urllib.urlretrieve\n\n[x] autodetect filename from URL\n[x] autodetect filename from headers - Content-Disposition\n    http://greenbytes.de/tech/tc2231/\n[ ] make HEAD request to detect temp filename from Content-Disposition\n[ ] process HTTP status codes (i.e. 404 error)\n    http://ftp.de.debian.org/debian/pool/iso-codes_3.24.2.orig.tar.bz2\n[ ] catch KeyboardInterrupt\n[ ] optionally preserve incomplete file\n[x] create temp file in current directory\n[ ] resume download (broken connection)\n[ ] resume download (incomplete file)\n[x] show progress indicator\n    http://mail.python.org/pipermail/tutor/2005-May/038797.html\n[x] do not overwrite downloaded file\n [x] rename file automatically if exists\n[x] optionally specify path for downloaded file\n\n[ ] options plan\n [x] -h, --help, --version (CHAOS speccy)\n[ ] clpbar progress bar style\n_ 30.0Mb at  3.0 Mbps  eta:   0:00:20   30% [=====         ]\n[ ] test \"bar \\r\" print with \\r at the end of line on Windows\n[ ] process Python 2.x urllib.ContentTooShortError exception gracefully\n    (ideally retry and continue download)\n\n    (tmpfile, headers) = urllib.urlretrieve(url, tmpfile, callback_progress)\n  File \"C:\\Python27\\lib\\urllib.py\", line 93, in urlretrieve\n    return _urlopener.retrieve(url, filename, reporthook, data)\n  File \"C:\\Python27\\lib\\urllib.py\", line 283, in retrieve\n    \"of %i bytes\" % (read, size), result)\nurllib.ContentTooShortError: retrieval incomplete: got only 15239952 out of 24807571 bytes\n\n[ ] find out if urlretrieve may return unicode headers\n[ ] test suite for unsafe filenames from url and from headers\n\n[ ] security checks\n  [ ] filename_from_url\n  [ ] filename_from_headers\n  [ ] MITM redirect from https URL\n  [ ] https certificate check\n  [ ] size+hash check helpers\n    [ ] fail if size is known and mismatch\n    [ ] fail if hash mismatch\n\"\"\"\n"
  },
  {
    "path": "word2vector/glove/README.md",
    "content": "# Glove\n\nGlove的简单实现。\n\n如果使用本书附带的[docker镜像](https://hub.docker.com/r/chatopera/qna-book/)，所有依赖已经安装好，不需要再次安装。使用docker镜像运行程序的方式详见[文档](https://github.com/l11x0m7/book-of-qna-code/blob/master/README.md)。\n\n\n## 依赖\n\n* python2.7\n\n```\npip install scipy\npip install numpy\n```\n\n### 运行\n\n```\n./run.sh\n```\n\n"
  },
  {
    "path": "word2vector/glove/glove.py",
    "content": "# -*- encoding:utf8 -*-\nfrom __future__ import print_function\nfrom __future__ import division\nimport numpy as np\nimport json\nimport pickle\nimport os\nimport zipfile\nimport heapq\nimport time\nimport itertools\nimport threading\nimport numpy.random as random\nimport sys\nimport scipy\nimport scipy.sparse as sparse\nimport math\nfrom multiprocessing.pool import ThreadPool\nfrom collections import Counter\nfrom Queue import Queue\nfrom numpy import float32 as REAL\n\nimport logging\nlogging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO)\nlogger = logging.getLogger('glove')\n\nfrom utils import SaveAndLoad\n\n\"\"\"\n# Introduction\n\nA simple code version for glove\n\n# Reference\n[1] https://github.com/stanfordnlp/GloVe\n[2] https://github.com/hans/glove.py/blob/master/glove.py\n\"\"\"\n\n\n\n\nclass Glove(SaveAndLoad):\n    def __init__(self, corpus=None, size=100, alpha=0.05, \n                 window=10, min_count=10, seed=1, iters=5, \n                 symmetric=True, sort_vocab=True, \n                 use_adagrad=True, merge_func='mean', tokenizer=None):\n        \"\"\"\n        glove模型，corpus表示训练语料，输入的可以是string或句子的list，也可以是list(list())\n        如`['I am happy.', 'I am unhappy.']`或`[['I', 'am', 'happy'], ['I', 'am', 'unhappy', '.']]`\n\n        `size` 词向量维度，也就是训练的时候隐变量的维度\n        `alpha` 初始学习率，学习过程中随着呈线性下降趋势\n        `window` 一句话中的当前词与上下文词的最大距离，指单侧词窗（与word2vec不同，此处指左侧）\n        `min_count` 用于过滤的最小词频\n        `seed` 随机数种子\n        `iters` 迭代次数\n        `sort_vocab` 表示是否对id2word按词频从高到低排序\n        `use_adagrad` 表示是否使用online adagrad更新参数，否则是sgd\n        `merge_func` 表示使用什么方式将中心词权重矩阵与上下文权重矩阵合并，方法有mean、sum、concat\n        `tokenizer` 表示传入一个tokenizer的function，默认按空格分词\n        ``\n\n        \"\"\"\n        self.size =size\n        self.alpha = alpha\n        self.window = window\n        self.min_count = min_count\n        self.seed = seed\n        self.random = random.RandomState(seed)\n        self.epochs = iters\n        self.symmetric = symmetric\n        self.use_adagrad = use_adagrad\n        self.merge_func = merge_func\n        self.vocab = {}\n        self.id2word = {}\n        self.cooccurrences = None\n        self.sort_vocab = sort_vocab\n        self.tokenizer = tokenizer\n        self.corpus = corpus\n        self.W = None\n        self.b = None\n        self.grad_square_W = None\n        self.grad_square_b = None\n        self.W_norm = None\n        self.vocab_size = 0\n        if self.tokenizer is None:\n            self.tokenizer = lambda sentence: sentence.strip().split()\n        if self.corpus is not None:\n            if len(self.corpus) < 1:\n                raise ValueError('The size of the corpus must not be empty, do you mean `None`?')\n            if isinstance(self.corpus[0], basestring):\n                self.corpus = [self.tokenizer(_) for _ in self.corpus]\n            elif isinstance(self.corpus, basestring):\n                self.corpus = [self.tokenizer(self.corpus)]\n            self.build_vocab(self.corpus)\n            self.build_cooccurance_matrix(self.corpus)\n            self.train()\n\n    def build_vocab(self, corpus):\n        \"\"\"\n        构建整个语料的词典\n        \"\"\"\n        self.vocab = Counter()\n        for sentence in corpus:\n            self.vocab.update(sentence)\n        vocab_list = self.vocab.iteritems()\n        if self.sort_vocab:\n            vocab_list = sorted(vocab_list, key=lambda k: -k[1])\n        self.vocab = {word:(i, freq) for (i, (word, freq)) in enumerate(vocab_list)}\n        self.id2word = {i:(word, freq) for (i, (word, freq)) in enumerate(vocab_list)}\n        self.vocab_size = len(self.vocab)\n\n\n    def build_cooccurance_matrix(self, corpus):\n        \"\"\"\n        构建整个语料的词共现矩阵\n        cooccurrences[i][j]表示词i与词j的共现值X_{ij}，此处用了距离加权（对应官方源码）\n        \"\"\"\n        vocab_size = len(self.vocab)\n        self.cooccurrences = sparse.lil_matrix((vocab_size, vocab_size),\n                                      dtype=np.float64)\n        for sentence in corpus:\n            tokens = [self.vocab[word][0] for word in sentence]\n            for center_idx, center_word in enumerate(tokens):\n                start = max(center_idx - self.window, 0)\n                context_tokens = tokens[start:center_idx]\n                for context_idx, context_word in enumerate(context_tokens, start):\n                    distance = center_idx - context_idx\n                    increment = 1. / distance\n                    self.cooccurrences[center_word, context_word] += increment\n                    if self.symmetric:\n                        self.cooccurrences[context_word, center_word] += increment\n\n\n    def iter_cooccurance_matrix(self):\n        \"\"\"\n        共现矩阵迭代器，用来迭代共现矩阵中的每个word pair\n        \"\"\"\n        # itertools.izip作用与zip一样，只是返回一个迭代器\n        for i, (row, value) in enumerate(itertools.izip(self.cooccurrences.rows, self.cooccurrences.data)):\n            if self.min_count > self.id2word[i][1]:\n                continue\n            for value_idx, j in enumerate(row):\n                if self.min_count > self.id2word[j][1]:\n                    continue\n                yield (i, j, value[value_idx])\n\n\n    def train(self, x_max=100, power=0.75):\n        \"\"\"\n        训练模型\n\n        `x_max` 论文中限定的X_{ij}的上限值\n        `power` 论文中的压缩比率\n        \"\"\"\n        # 读取一遍数据（此时的data为共现矩阵），训练一次\n        def train_once(data):\n            data = list(data)\n            self.random.shuffle(data)\n            total_cost = 0.\n            sample_num = len(data)\n            for sample in data:\n                # X_center_context 对应 X_{ij}\n                i, j, X_center_context = sample\n                W = self.W\n                b = self.b\n\n                # w_center 对应 w_i\n                # w_context 对应 \\tilde{w_j}\n                # b_center 对应 b_i\n                # b_context 对应 \\tilde{b_j}\n                w_center = W[i]\n                w_context = W[j+self.vocab_size]\n                b_center = b[i:i+1]\n                b_context = b[j+self.vocab_size:j+self.vocab_size+1]\n\n                # 使用adagrad迭代算法\n                if self.use_adagrad:\n                    # grad_square_W为W对应的累加的梯度平方\n                    # grad_square_b为b对应的累加的梯度平方\n                    grad_square_W = self.grad_square_W\n                    grad_square_b = self.grad_square_b\n                    # grad_square_w_center为w_i的梯度\n                    # grad_square_w_context为\\tilde{w_j}的梯度\n                    # grad_square_b_center为b_i的梯度\n                    # grad_square_b_context为\\tilde{b_j}的梯度\n                    grad_square_w_center = grad_square_W[i]\n                    grad_square_w_context = grad_square_W[j+self.vocab_size]\n                    grad_square_b_center = grad_square_b[i:i+1]\n                    grad_square_b_context = grad_square_b[j+self.vocab_size:j+self.vocab_size+1]\n\n                # J'=f(X_center_context)\n                # J' = w_i^Tw_j + b_i + b_j - log(X_{ij})\n                inner_cost = np.dot(w_center.T, w_context) + b_center + b_context - np.log(X_center_context)\n                # f(X_{ij})=min(1, (X_{ij}/x_max)^power)\n                weight = (1.0 * X_center_context / x_max) ** power if X_center_context < x_max else 1.\n                # J=f(X_{ij})*(J')^2\n                cost = weight * inner_cost ** 2\n                total_cost += 0.5 * cost[0]\n\n                # 计算梯度\n                grad_w_center = weight * inner_cost * w_context\n                grad_w_context = weight * inner_cost * w_center\n                grad_b_center = weight * inner_cost\n                grad_b_context = weight * inner_cost\n\n                # 更新梯度\n                if self.use_adagrad:\n                    w_center -= grad_w_center / np.sqrt(grad_square_w_center) * self.alpha\n                    w_context -= grad_w_context / np.sqrt(grad_square_w_context) * self.alpha\n                    b_center -= grad_b_center / np.sqrt(grad_square_b_center) * self.alpha\n                    b_context -= grad_b_context / np.sqrt(grad_square_b_context) * self.alpha\n                    # 累积梯度\n                    grad_square_w_center += np.square(grad_w_center)\n                    grad_square_w_context += np.square(grad_w_context)\n                    grad_square_b_center += np.square(grad_b_center)\n                    grad_square_b_context += np.square(grad_b_context)\n                else:\n                    w_center -= grad_w_center * self.alpha\n                    w_context -= grad_w_context * self.alpha\n                    b_center -= grad_b_center * self.alpha\n                    b_context -= grad_b_context * self.alpha\n            return 1.0 * total_cost /sample_num\n\n        self.reset_params()\n        logger.info('start training')\n        for epoch in xrange(self.epochs):\n            epoch_loss = train_once(self.iter_cooccurance_matrix())\n            logger.info('training epoch {}, loss {}'.format(epoch + 1, epoch_loss))\n\n        logger.info('finished training')\n\n\n    def reset_params(self):\n        \"\"\"\n        重置参数，包括学习的权重矩阵（包含中心词向量矩阵和上下文词向量矩阵）与bias向量\n        如果用adagrad迭代，还要保存累加的平方梯度\n        \"\"\"\n        self.W = (self.random.rand(self.vocab_size * 2, self.size) - 0.5) / (self.size + 1)\n        self.b = (self.random.rand(self.vocab_size * 2) - 0.5) / (self.size + 1)\n        if self.use_adagrad:\n            self.grad_square_W = np.ones((self.vocab_size * 2, self.size))\n            self.grad_square_b = np.ones((self.vocab_size * 2))\n\n\n    def most_similar(self, positive=[], negative=[], topn=10):\n        \"\"\"\n        找到topn个最相似的词，即与postive最相似的且与negative最不相似的词\n        使用给定词的词向量余弦相似度的平均表示词类比\n\n        Example::\n          >>> model.most_similar(positive=['woman', 'king'], negative=['man'])\n          >>> model.most_similar('dog')\n        \"\"\"\n        if isinstance(positive, basestring) and not negative:\n            # allow calls like most_similar('dog'), as a shorthand for most_similar(['dog'])\n            positive = [positive]\n\n        # add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words\n        positive = [(word, 1.0) if isinstance(word, basestring) else word for word in positive]\n        negative = [(word, -1.0) if isinstance(word, basestring) else word for word in negative]\n\n        # compute the weighted average of all words\n        W = self.get_embeddings()\n        all_words, mean = set(), []\n        for word, weight in positive + negative:\n            if word in self.vocab:\n                mean.append(weight * W[self.vocab[word][0]])\n                all_words.add(self.vocab[word][0])\n            else:\n                raise KeyError(\"word '%s' not in vocabulary\" % word)\n        if not mean:\n            raise ValueError(\"cannot compute similarity with no input\")\n        mean = np.asarray(mean).mean(axis=0)\n        mean = mean / np.linalg.norm(mean, axis=0)\n\n        dists = np.dot(W, mean)\n        if not topn:\n            return dists\n        best = np.argsort(dists)[::-1][:topn + len(all_words)]\n        # ignore (don't return) words from the input\n        result = [(self.id2word[sim][0], dists[sim]) for sim in best if sim not in all_words]\n        return result[:topn]\n\n\n    def get_vocab(self):\n        \"\"\"\n        获得词表字典\n        \"\"\"\n        return self.vocab\n\n\n    def get_embeddings(self):\n        \"\"\"\n        得到大小为`vocab_size`的词向量矩阵\n        \"\"\"\n        if self.W_norm is None:\n            if self.merge_func == 'concat':\n                self.W_norm = np.concatenate([self.W[:self.vocab_size], self.W[self.vocab_size:]], axis=1)\n            elif self.merge_func == 'sum':\n                self.W_norm = self.W[:self.vocab_size] + self.W[self.vocab_size:]\n            else:\n                self.W_norm = (self.W[:self.vocab_size] + self.W[self.vocab_size:]) / 2.\n            self.W_norm = self.W_norm / np.linalg.norm(self.W_norm, axis=1).reshape(-1, 1)\n\n        return self.W_norm\n\n\nif __name__ == '__main__':\n    test_corpus = (\"\"\"human interface computer\nsurvey user computer system response time\neps user interface system\nsystem human system eps\nuser response time\ntrees\ngraph trees\ngraph minors trees\ngraph minors survey\nI like graph and stuff\nI like trees and stuff\nSometimes I build a graph\nSometimes I build trees\"\"\").split(\"\\n\")\n\n    glove = Glove(corpus=test_corpus, size=10, alpha=0.025, \n                 window=10, min_count=0, seed=1, iters=500, \n                 symmetric=True, sort_vocab=True, \n                 use_adagrad=True, tokenizer=None)\n    similar = glove.most_similar('graph', topn=1)[0][0]\n    print(similar)\n    assert similar == 'trees'\n\n\n"
  },
  {
    "path": "word2vector/glove/run.sh",
    "content": "#! /bin/bash \n###########################################\n#\n###########################################\n\n# constants\nbaseDir=$(cd `dirname \"$0\"`;pwd)\n\n# functions\n\n# main \n[ -z \"${BASH_SOURCE[0]}\" -o \"${BASH_SOURCE[0]}\" = \"$0\" ] || return\necho \"active python2.7 environment\"\nsource ~/venv-py2/bin/activate # Use python2\ncd $baseDir\necho `python --version`\nset -x\npython glove.py\n\necho \"deactivate python2.7 environment ...\"\ndeactivate"
  },
  {
    "path": "word2vector/glove/utils.py",
    "content": "# -*- encoding:utf8 -*-\nfrom __future__ import print_function\nfrom __future__ import division\nimport numpy as np\nimport json\nimport pickle\nimport os\nimport wget\nimport zipfile\nimport heapq\nimport time\nimport itertools\nimport sys\nimport scipy\nimport scipy.sparse\nimport math\nfrom Queue import Queue\n\n\n# ----- utils工具 -----\n\ndef zeros_aligned(shape, dtype, order='C', align=128):\n    \"\"\"Like `numpy.zeros()`, but the array will be aligned at `align` byte boundary.\"\"\"\n    nbytes = np.prod(shape) * np.dtype(dtype).itemsize\n    buffer = np.zeros(nbytes + align, dtype=np.uint8)\n    start_index = -buffer.ctypes.data % align\n    return buffer[start_index : start_index + nbytes].view(dtype).reshape(shape, order=order)\n\n\ndef chunkize_serial(iterable, chunksize, as_numpy=False):\n    \"\"\"\n    Return elements from the iterable in `chunksize`-ed lists. The last returned\n    element may be smaller (if length of collection is not divisible by `chunksize`).\n    >>> print list(grouper(xrange(10), 3))\n    [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]]\n    \"\"\"\n    it = iter(iterable)\n    while True:\n        if as_numpy:\n            # convert each document to a 2d numpy array (~6x faster when transmitting\n            # chunk data over the wire, in Pyro)\n            wrapped_chunk = [[np.array(doc) for doc in itertools.islice(it, int(chunksize))]]\n        else:\n            wrapped_chunk = [list(itertools.islice(it, int(chunksize)))]\n        if not wrapped_chunk[0]:\n            break\n        # memory opt: wrap the chunk and then pop(), to avoid leaving behind a dangling reference\n        yield wrapped_chunk.pop()\n\ngrouper = chunkize_serial\n\n\ndef expit(x):\n    return 1.0 / (1.0 + np.exp(-x))\n\n\ndef unitvec(vec):\n    \"\"\"\n    Scale a vector to unit length. The only exception is the zero vector, which\n    is returned back unchanged.\n    Output will be in the same format as input (i.e., gensim vector=>gensim vector,\n    or numpy array=>numpy array, scipy.sparse=>scipy.sparse).\n    \"\"\"\n    if scipy.sparse.issparse(vec): # convert scipy.sparse to standard numpy array\n        vec = vec.tocsr()\n        veclen = np.sqrt(np.sum(vec.data ** 2))\n        if veclen > 0.0:\n            return vec / veclen\n        else:\n            return vec\n\n    if isinstance(vec, np.ndarray):\n        vec = np.asarray(vec, dtype=float)\n        veclen = np.sqrt(np.sum(vec ** 2))\n        if veclen > 0.0:\n            return vec / veclen\n        else:\n            return vec\n\n\ndef cossim(vec1, vec2):\n    vec1, vec2 = dict(vec1), dict(vec2)\n    if not vec1 or not vec2:\n        return 0.0\n    vec1len = 1.0 * math.sqrt(sum(val * val for val in vec1.itervalues()))\n    vec2len = 1.0 * math.sqrt(sum(val * val for val in vec2.itervalues()))\n    assert vec1len > 0.0 and vec2len > 0.0, \"sparse documents must not contain any explicit zero entries\"\n    if len(vec2) < len(vec1):\n        vec1, vec2 = vec2, vec1 # swap references so that we iterate over the shorter vector\n    result = sum(value * vec2.get(index, 0.0) for index, value in vec1.iteritems())\n    result /= vec1len * vec2len # rescale by vector lengths\n    return result\n\n\nclass RepeatCorpusNTimes(object):\n    \"\"\"Wrap a `corpus` and repeat it `n` times.\n    Examples\n    --------\n    >>> corpus = [[(1, 0.5)], []]\n    >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times\n    [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []]\n    \"\"\"\n\n    def __init__(self, corpus, n):\n        \"\"\"\n        Parameters\n        ----------\n        corpus : iterable of iterable of (int, int)\n            Input corpus.\n        n : int\n            Number of repeats for corpus.\n        \"\"\"\n        self.corpus = corpus\n        self.n = n\n\n    def __iter__(self):\n        for _ in xrange(self.n):\n            for document in self.corpus:\n                yield document\n\n\nclass SaveAndLoad(object):\n    \"\"\"\n        用于保存和读取python类对象的基类\n    \"\"\"\n    def __init__(self):\n        pass\n\n    def save(self, fname):\n        with open(fname, 'wb') as fw:\n            pickle.dump(self, fw, protocol=2)\n        logger.info('File saved in {}'.format(fname))\n\n    @classmethod\n    def load(cls, fname):\n        with open(fname, 'rb') as fr:\n            return pickle.load(fr)\n\n\n# ----- dataset -----\n\nclass Text8Corpus(object):\n    \"\"\"\n    Iterate over sentences from the \"text8\" corpus, \n    unzipped from http://mattmahoney.net/dc/text8.zip .\n    text8数据读取，用于训练 \n    \"\"\"\n    def __init__(self, fname, sent_num=None, sent_len=1000):\n        self.fname = fname\n        self.sent_num = sent_num\n        self.sent_len = sent_len\n        if not os.path.exists(self.fname):\n            wget.download('http://mattmahoney.net/dc/text8.zip', out=self.fname)\n            print('Downloaded zip file `text8.zip`!')\n\n    def __iter__(self):\n        # the entire corpus is one gigantic line -- there are no sentence marks at all\n        # so just split the sequence of tokens arbitrarily: 1 sentence = 1000 tokens\n        sentence, rest, max_sentence_length = [], '', self.sent_len\n        idx = 0\n        with zipfile.ZipFile(self.fname) as zip_text8:\n            with zip_text8.open(zip_text8.getinfo('text8')) as fin:\n                while True:\n                    if self.sent_num is not None and idx >= self.sent_num:\n                        break\n                    text = rest + fin.read(8192)  # avoid loading the entire file (=1 line) into RAM\n                    if text == rest:  # EOF\n                        sentence.extend(rest.split()) # return the last chunk of words, too (may be shorter/longer)\n                        if sentence:\n                            idx += 1\n                            yield sentence\n                        break\n                    last_token = text.rfind(' ')  # the last token may have been split in two... keep it for the next iteration\n                    words, rest = (text[:last_token].split(), text[last_token:].strip()) if last_token >= 0 else ([], text)\n                    sentence.extend(words)\n                    while len(sentence) >= max_sentence_length:\n                        idx += 1\n                        yield sentence[:max_sentence_length]\n                        if self.sent_num is not None and idx >= self.sent_num:\n                            break\n                        sentence = sentence[max_sentence_length:]\n"
  },
  {
    "path": "word2vector/glove/wget.py",
    "content": "#!/usr/bin/env python\n\"\"\"\nDownload utility as an easy way to get file from the net\n \n  python -m wget <URL>\n  python wget.py <URL>\n\nDownloads: http://pypi.python.org/pypi/wget/\nDevelopment: http://bitbucket.org/techtonik/python-wget/\n\nwget.py is not option compatible with Unix wget utility,\nto make command line interface intuitive for new people.\n\nPublic domain by anatoly techtonik <techtonik@gmail.com>\nAlso available under the terms of MIT license\nCopyright (c) 2010-2014 anatoly techtonik\n\"\"\"\n\n\nimport sys, shutil, os\nimport tempfile\nimport math\n\nPY3K = sys.version_info >= (3, 0)\nif PY3K:\n  import urllib.request as urllib\n  import urllib.parse as urlparse\nelse:\n  import urllib\n  import urlparse\n\n\n__version__ = \"2.3-beta1\"\n\n\ndef filename_from_url(url):\n    \"\"\":return: detected filename or None\"\"\"\n    fname = os.path.basename(urlparse.urlparse(url).path)\n    if len(fname.strip(\" \\n\\t.\")) == 0:\n        return None\n    return fname\n\ndef filename_from_headers(headers):\n    \"\"\"Detect filename from Content-Disposition headers if present.\n    http://greenbytes.de/tech/tc2231/\n\n    :param: headers as dict, list or string\n    :return: filename from content-disposition header or None\n    \"\"\"\n    if type(headers) == str:\n        headers = headers.splitlines()\n    if type(headers) == list:\n        headers = dict([x.split(':', 1) for x in headers])\n    cdisp = headers.get(\"Content-Disposition\")\n    if not cdisp:\n        return None\n    cdtype = cdisp.split(';')\n    if len(cdtype) == 1:\n        return None\n    if cdtype[0].strip().lower() not in ('inline', 'attachment'):\n        return None\n    # several filename params is illegal, but just in case\n    fnames = [x for x in cdtype[1:] if x.strip().startswith('filename=')]\n    if len(fnames) > 1:\n        return None\n    name = fnames[0].split('=')[1].strip(' \\t\"')\n    name = os.path.basename(name)\n    if not name:\n        return None\n    return name\n\ndef filename_fix_existing(filename):\n    \"\"\"Expands name portion of filename with numeric ' (x)' suffix to\n    return filename that doesn't exist already.\n    \"\"\"\n    dirname = '.' \n    name, ext = filename.rsplit('.', 1)\n    names = [x for x in os.listdir(dirname) if x.startswith(name)]\n    names = [x.rsplit('.', 1)[0] for x in names]\n    suffixes = [x.replace(name, '') for x in names]\n    # filter suffixes that match ' (x)' pattern\n    suffixes = [x[2:-1] for x in suffixes\n                   if x.startswith(' (') and x.endswith(')')]\n    indexes  = [int(x) for x in suffixes\n                   if set(x) <= set('0123456789')]\n    idx = 1\n    if indexes:\n        idx += sorted(indexes)[-1]\n    return '%s (%d).%s' % (name, idx, ext)\n\n\n# --- terminal/console output helpers ---\n\ndef get_console_width():\n    \"\"\"Return width of available window area. Autodetection works for\n       Windows and POSIX platforms. Returns 80 for others\n\n       Code from http://bitbucket.org/techtonik/python-pager\n    \"\"\"\n\n    if os.name == 'nt':\n        STD_INPUT_HANDLE  = -10\n        STD_OUTPUT_HANDLE = -11\n        STD_ERROR_HANDLE  = -12\n\n        # get console handle\n        from ctypes import windll, Structure, byref\n        try:\n            from ctypes.wintypes import SHORT, WORD, DWORD\n        except ImportError:\n            # workaround for missing types in Python 2.5\n            from ctypes import (\n                c_short as SHORT, c_ushort as WORD, c_ulong as DWORD)\n        console_handle = windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE)\n\n        # CONSOLE_SCREEN_BUFFER_INFO Structure\n        class COORD(Structure):\n            _fields_ = [(\"X\", SHORT), (\"Y\", SHORT)]\n\n        class SMALL_RECT(Structure):\n            _fields_ = [(\"Left\", SHORT), (\"Top\", SHORT),\n                        (\"Right\", SHORT), (\"Bottom\", SHORT)]\n\n        class CONSOLE_SCREEN_BUFFER_INFO(Structure):\n            _fields_ = [(\"dwSize\", COORD),\n                        (\"dwCursorPosition\", COORD),\n                        (\"wAttributes\", WORD),\n                        (\"srWindow\", SMALL_RECT),\n                        (\"dwMaximumWindowSize\", DWORD)]\n\n        sbi = CONSOLE_SCREEN_BUFFER_INFO()\n        ret = windll.kernel32.GetConsoleScreenBufferInfo(console_handle, byref(sbi))\n        if ret == 0:\n            return 0\n        return sbi.srWindow.Right+1\n\n    elif os.name == 'posix':\n        from fcntl import ioctl\n        from termios import TIOCGWINSZ\n        from array import array\n\n        winsize = array(\"H\", [0] * 4)\n        try:\n            ioctl(sys.stdout.fileno(), TIOCGWINSZ, winsize)\n        except IOError:\n            pass\n        return (winsize[1], winsize[0])[0]\n\n    return 80\n\n\ndef bar_thermometer(current, total, width=80):\n    \"\"\"Return thermometer style progress bar string. `total` argument\n    can not be zero. The minimum size of bar returned is 3. Example:\n\n        [..........            ]\n\n    Control and trailing symbols (\\r and spaces) are not included.\n    See `bar_adaptive` for more information.\n    \"\"\"\n    # number of dots on thermometer scale\n    avail_dots = width-2\n    shaded_dots = int(math.floor(float(current) / total * avail_dots))\n    return '[' + '.'*shaded_dots + ' '*(avail_dots-shaded_dots) + ']'\n\ndef bar_adaptive(current, total, width=80):\n    \"\"\"Return progress bar string for given values in one of three\n    styles depending on available width:\n\n        [..  ] downloaded / total\n        downloaded / total\n        [.. ]\n\n    if total value is unknown or <= 0, show bytes counter using two\n    adaptive styles:\n\n        %s / unknown\n        %s\n\n    if there is not enough space on the screen, do not display anything\n\n    returned string doesn't include control characters like \\r used to\n    place cursor at the beginning of the line to erase previous content.\n\n    this function leaves one free character at the end of string to\n    avoid automatic linefeed on Windows.\n    \"\"\"\n\n    # process special case when total size is unknown and return immediately\n    if not total or total < 0:\n        msg = \"%s / unknown\" % current\n        if len(msg) < width:    # leaves one character to avoid linefeed\n            return msg\n        if len(\"%s\" % current) < width:\n            return \"%s\" % current\n\n    # --- adaptive layout algorithm ---\n    #\n    # [x] describe the format of the progress bar\n    # [x] describe min width for each data field\n    # [x] set priorities for each element\n    # [x] select elements to be shown\n    #   [x] choose top priority element min_width < avail_width\n    #   [x] lessen avail_width by value if min_width\n    #   [x] exclude element from priority list and repeat\n    \n    #  10% [.. ]  10/100\n    # pppp bbbbb sssssss\n\n    min_width = {\n      'percent': 4,  # 100%\n      'bar': 3,      # [.]\n      'size': len(\"%s\" % total)*2 + 3, # 'xxxx / yyyy'\n    }\n    priority = ['percent', 'bar', 'size']\n\n    # select elements to show\n    selected = []\n    avail = width\n    for field in priority:\n      if min_width[field] < avail:\n        selected.append(field)\n        avail -= min_width[field]+1   # +1 is for separator or for reserved space at\n                                      # the end of line to avoid linefeed on Windows\n    # render\n    output = ''\n    for field in selected:\n\n      if field == 'percent':\n        # fixed size width for percentage\n        output += ('%s%%' % (100 * current // total)).rjust(min_width['percent'])\n      elif field == 'bar':  # [. ]\n        # bar takes its min width + all available space\n        output += bar_thermometer(current, total, min_width['bar']+avail)\n      elif field == 'size':\n        # size field has a constant width (min == max)\n        output += (\"%s / %s\" % (current, total)).rjust(min_width['size'])\n\n      selected = selected[1:]\n      if selected:\n        output += ' '  # add field separator\n\n    return output\n\n# --/ console helpers\n\n\n__current_size = 0  # global state variable, which exists solely as a\n                    # workaround against Python 3.3.0 regression\n                    # http://bugs.python.org/issue16409\n                    # fixed in Python 3.3.1\ndef callback_progress(blocks, block_size, total_size, bar_function):\n    \"\"\"callback function for urlretrieve that is called when connection is\n    created and when once for each block\n\n    draws adaptive progress bar in terminal/console\n\n    use sys.stdout.write() instead of \"print,\", because it allows one more\n    symbol at the line end without linefeed on Windows\n\n    :param blocks: number of blocks transferred so far\n    :param block_size: in bytes\n    :param total_size: in bytes, can be -1 if server doesn't return it\n    :param bar_function: another callback function to visualize progress\n    \"\"\"\n    global __current_size\n \n    width = min(100, get_console_width())\n\n    if sys.version_info[:3] == (3, 3, 0):  # regression workaround\n        if blocks == 0:  # first call\n            __current_size = 0\n        else:\n            __current_size += block_size\n        current_size = __current_size\n    else:\n        current_size = min(blocks*block_size, total_size)\n    progress = bar_function(current_size, total_size, width)\n    if progress:\n        sys.stdout.write(\"\\r\" + progress)\n\nclass ThrowOnErrorOpener(urllib.FancyURLopener):\n    def http_error_default(self, url, fp, errcode, errmsg, headers):\n        raise Exception(\"%s: %s\" % (errcode, errmsg))\n\ndef download(url, out=None, bar=bar_adaptive):\n    \"\"\"High level function, which downloads URL into tmp file in current\n    directory and then renames it to filename autodetected from either URL\n    or HTTP headers.\n\n    :param bar: function to track download progress (visualize etc.)\n    :param out: output filename or directory\n    :return:    filename where URL is downloaded to\n    \"\"\"\n    names = dict()\n    names[\"out\"] = out or ''\n    names[\"url\"] = filename_from_url(url)\n    # get filename for temp file in current directory\n    prefix = (names[\"url\"] or names[\"out\"] or \".\") + \".\"\n    (fd, tmpfile) = tempfile.mkstemp(\".tmp\", prefix=prefix, dir=\".\")\n    os.close(fd)\n    os.unlink(tmpfile)\n\n    # set progress monitoring callback\n    def callback_charged(blocks, block_size, total_size):\n        # 'closure' to set bar drawing function in callback\n        callback_progress(blocks, block_size, total_size, bar_function=bar)\n    if bar:\n        callback = callback_charged\n    else:\n        callback = None\n\n    (tmpfile, headers) = ThrowOnErrorOpener().retrieve(url, tmpfile, callback)\n    names[\"header\"] = filename_from_headers(headers)\n    if os.path.isdir(names[\"out\"]):\n        filename = names[\"header\"] or names[\"url\"]\n        filename = names[\"out\"] + \"/\" + filename\n    else:\n        filename = names[\"out\"] or names[\"header\"] or names[\"url\"]\n    # add numeric ' (x)' suffix if filename already exists\n    if os.path.exists(filename):\n        filename = filename_fix_existing(filename)\n    shutil.move(tmpfile, filename)\n\n    #print headers\n    return filename\n\n\nusage = \"\"\"\\\nusage: wget.py [options] URL\n\noptions:\n  -o --output FILE|DIR   output filename or directory\n  -h --help\n  --version\n\"\"\"\n\nif __name__ == \"__main__\":\n    if len(sys.argv) < 2 or \"-h\" in sys.argv or \"--help\" in sys.argv:\n        sys.exit(usage)\n    if \"--version\" in sys.argv:\n        sys.exit(\"wget.py \" + __version__)\n\n    from optparse import OptionParser\n    parser = OptionParser()\n    parser.add_option(\"-o\", \"--output\", dest=\"output\")\n    (options, args) = parser.parse_args()\n\n    url = sys.argv[1]\n    filename = download(args[0], out=options.output)\n\n    print(\"\")\n    print(\"Saved under %s\" % filename)\n\nr\"\"\"\nfeatures that require more tuits for urlretrieve API\nhttp://www.python.org/doc/2.6/library/urllib.html#urllib.urlretrieve\n\n[x] autodetect filename from URL\n[x] autodetect filename from headers - Content-Disposition\n    http://greenbytes.de/tech/tc2231/\n[ ] make HEAD request to detect temp filename from Content-Disposition\n[ ] process HTTP status codes (i.e. 404 error)\n    http://ftp.de.debian.org/debian/pool/iso-codes_3.24.2.orig.tar.bz2\n[ ] catch KeyboardInterrupt\n[ ] optionally preserve incomplete file\n[x] create temp file in current directory\n[ ] resume download (broken connection)\n[ ] resume download (incomplete file)\n[x] show progress indicator\n    http://mail.python.org/pipermail/tutor/2005-May/038797.html\n[x] do not overwrite downloaded file\n [x] rename file automatically if exists\n[x] optionally specify path for downloaded file\n\n[ ] options plan\n [x] -h, --help, --version (CHAOS speccy)\n[ ] clpbar progress bar style\n_ 30.0Mb at  3.0 Mbps  eta:   0:00:20   30% [=====         ]\n[ ] test \"bar \\r\" print with \\r at the end of line on Windows\n[ ] process Python 2.x urllib.ContentTooShortError exception gracefully\n    (ideally retry and continue download)\n\n    (tmpfile, headers) = urllib.urlretrieve(url, tmpfile, callback_progress)\n  File \"C:\\Python27\\lib\\urllib.py\", line 93, in urlretrieve\n    return _urlopener.retrieve(url, filename, reporthook, data)\n  File \"C:\\Python27\\lib\\urllib.py\", line 283, in retrieve\n    \"of %i bytes\" % (read, size), result)\nurllib.ContentTooShortError: retrieval incomplete: got only 15239952 out of 24807571 bytes\n\n[ ] find out if urlretrieve may return unicode headers\n[ ] test suite for unsafe filenames from url and from headers\n\n[ ] security checks\n  [ ] filename_from_url\n  [ ] filename_from_headers\n  [ ] MITM redirect from https URL\n  [ ] https certificate check\n  [ ] size+hash check helpers\n    [ ] fail if size is known and mismatch\n    [ ] fail if hash mismatch\n\"\"\"\n"
  },
  {
    "path": "word2vector/ngrams/README.md",
    "content": "# N元模型示例程序\n\n提示：得到源码后，先执行跟目录下的 admin/run.sh 进入docker容器服务。然后在容器内进行下述步骤。\n\n该演示项目基于开源项目[kenlm](https://github.com/kpu/kenlm)。\n\n## 生成模型文件\n```\n./gen_model.sh\n```\n\n数据文件 data/ngrams.train.tokens 是训练n-grams模型的输入数据。程序执行结束后，将得到 ngrams.arpa.gz文件。\n\n## 计算一个句子的出现概率\n```\npython lm.py Test.test_prob\n```\n\n## 计算一个句子的困惑度\n```\npython lm.py Test.test_perplexity\n```\n\n![](/assets/images/ngrams-lm.png)\n"
  },
  {
    "path": "word2vector/ngrams/gen_model.sh",
    "content": "#! /bin/bash \n###########################################\n#\n###########################################\n\n# constants\nbaseDir=$(cd `dirname \"$0\"`;pwd)\n# functions\n\n# main \n[ -z \"${BASH_SOURCE[0]}\" -o \"${BASH_SOURCE[0]}\" = \"$0\" ] || return\ncd $baseDir\nlmplz -o 3 <data/ngrams.train.tokens >ngrams.arpa\ngzip ngrams.arpa\n"
  },
  {
    "path": "word2vector/ngrams/lm.py",
    "content": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n#===============================================================================\n#\n# Copyright (c) 2017 <> All Rights Reserved\n#\n#\n# File: /Users/hain/ai/book-of-qna-code/tmp/lm.py\n# Author: Hai Liang Wang\n# Date: 2018-05-28:16:06:56\n#\n#===============================================================================\n\n\"\"\"\n   \n\"\"\"\nfrom __future__ import print_function\nfrom __future__ import division\n\n__copyright__ = \"Copyright (c) 2017 . All Rights Reserved\"\n__author__    = \"Hai Liang Wang\"\n__date__      = \"2018-05-28:16:06:56\"\n\n\nimport os\nimport sys\ncurdir = os.path.dirname(os.path.abspath(__file__))\nsys.path.append(curdir)\n\nif sys.version_info[0] < 3:\n    reload(sys)\n    sys.setdefaultencoding(\"utf-8\")\n    # raise \"Must be using Python 3\"\nelse:\n    unicode = str\n\n# Get ENV\nENVIRON = os.environ.copy()\n\nimport kenlm\nimport math\nimport unittest\n\n# run testcase: python /Users/hain/ai/book-of-qna-code/tmp/lm.py Test.testExample\nclass Test(unittest.TestCase):\n    '''\n    \n    '''\n    def setUp(self):\n        print(\"加载LM模型 ...\")\n        model_file = os.path.join(curdir, \"ngrams.arpa.gz\")\n        if not os.path.exists(model_file): raise BaseException(\"模型文件不存在!, 执行 gen_model.sh 生成模型文件。\")\n        self.model = kenlm.Model(model_file)\n\n    def tearDown(self):\n        pass\n\n    def test_prob(self):\n        print(\"kenlm: 句子出现的概率\")\n        print(\"保 险:\", math.pow(10, self.model.score('保 险', bos = True, eos = True)))\n\n    def test_perplexity(self):\n        print(\"kenlm: 句子的困惑度\")\n        print(\"保 险:\", math.pow(10, self.model.perplexity('保 险')))\n\ndef test():\n    unittest.main()\n\nif __name__ == '__main__':\n    test()\n"
  },
  {
    "path": "word2vector/requirements.txt",
    "content": "scipy==1.1.0\nnumpy==1.14.4\n"
  },
  {
    "path": "word2vector/word2vec/README.md",
    "content": "# Word2vec\n\nword2vec的简单实现。\n\n如果使用本书附带的[docker镜像](https://hub.docker.com/r/chatopera/qna-book/)，所有依赖已经安装好，不需要再次安装。使用docker镜像运行程序的方式详见[文档](https://github.com/l11x0m7/book-of-qna-code/blob/master/README.md)。\n\n\n\n## 依赖\n\n* python2.7\n\n```\npip install scipy\npip install numpy\n```\n\n### 运行\n\n```\n./run.sh\n```\n\n"
  },
  {
    "path": "word2vector/word2vec/debug.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# 测试\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import heapq\\n\",\n    \"import random\\n\",\n    \"random.seed(123)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[18, 17, 15, 19, 12, 13, 16, 11, 14, 10]\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"heap = list(range(10, 20))\\n\",\n    \"random.shuffle(heap)\\n\",\n    \"heap\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"heapq.heapify(heap)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"10\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"heapq.heappop(heap)   # 弹出栈顶元素（最小）\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"11\"\n      ]\n     },\n     \"execution_count\": 6,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"heapq.heappop(heap) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"heapq.heappush(heap, 23)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"12\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"heapq.heappop(heap) \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 57,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class Vocab(object):\\n\",\n    \"    \\\"\\\"\\\"用来存储词汇，如果用hs，则可以看成一个树结点\\\"\\\"\\\"\\n\",\n    \"    \\n\",\n    \"    def __init__(self, **kwargs):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        count 词频\\n\",\n    \"        index 索引\\n\",\n    \"        left  如果用hs，则表示左孩子\\n\",\n    \"        right 如果用hs，则表示右孩子\\n\",\n    \"        code  叶子结点的编码路径（从根结点到叶子结点的huffman编码）\\n\",\n    \"        point 叶子结点的结点路径（从根结点到叶子结点经过的结点索引）\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        self.count = 0\\n\",\n    \"        self.index = -1\\n\",\n    \"        self.left = None\\n\",\n    \"        self.right = None\\n\",\n    \"        self.code = []\\n\",\n    \"        self.point = []\\n\",\n    \"        self.__dict__.update(kwargs)\\n\",\n    \"        print(self.__dict__)\\n\",\n    \"        print(kwargs)\\n\",\n    \"\\n\",\n    \"    def __lt__(self, vocab):\\n\",\n    \"        return self.count < vocab.count\\n\",\n    \"\\n\",\n    \"    def __str__(self):\\n\",\n    \"        fmt = \\\"<{}>\\\"\\n\",\n    \"        s = \\\", \\\".join(['{}:{}'.format(k, v) for k, v in self.__dict__.items() \\\\\\n\",\n    \"                       if not k.startswith('__')])\\n\",\n    \"        return fmt.format(s)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 58,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"{'count': 2, 'index': 1, 'left': None, 'right': None, 'code': [], 'point': []}\\n\",\n      \"{'count': 2, 'index': 1, 'left': None, 'right': None}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"a = Vocab(count=2,index=1,left=None,right=None)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 59,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"{'count': 5, 'index': 0, 'left': None, 'right': None, 'code': [], 'point': []}\\n\",\n      \"{'count': 5, 'index': 0, 'left': None, 'right': None}\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"b = Vocab(count=5,index=0,left=None,right=None)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 60,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"{'count': 2, 'index': 1, 'left': None, 'right': None, 'code': [], 'point': []}\"\n      ]\n     },\n     \"execution_count\": 60,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"a.__dict__\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 61,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"mappingproxy({'__module__': '__main__',\\n\",\n       \"              '__doc__': '用来存储词汇，如果用hs，则可以看成一个树结点',\\n\",\n       \"              '__init__': <function __main__.Vocab.__init__(self, **kwargs)>,\\n\",\n       \"              '__lt__': <function __main__.Vocab.__lt__(self, vocab)>,\\n\",\n       \"              '__str__': <function __main__.Vocab.__str__(self)>,\\n\",\n       \"              '__dict__': <attribute '__dict__' of 'Vocab' objects>,\\n\",\n       \"              '__weakref__': <attribute '__weakref__' of 'Vocab' objects>})\"\n      ]\n     },\n     \"execution_count\": 61,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"Vocab.__dict__\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 54,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"<count:2, index:1, left:None, right:None, code:[], point:[]>\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"print(a)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 55,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"li = list(range(10))\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 56,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]\"\n      ]\n     },\n     \"execution_count\": 56,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"sorted(li, reverse=True)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "word2vector/word2vec/run.sh",
    "content": "#! /bin/bash \n###########################################\n#\n###########################################\n\n# constants\nBASEDIR=$(cd `dirname \"$0\"`;pwd)\n\n# functions\n\n# main \n[ -z \"${BASH_SOURCE[0]}\" -o \"${BASH_SOURCE[0]}\" = \"$0\" ] || return\necho \"active python2.7 environment\"\n#source ~/venv-py2/bin/activate # Use python2\ncd $BASEDIR\necho `python --version`\nset -x\npython word2vec.py\n\necho \"Done!\"\n#deactivate\n"
  },
  {
    "path": "word2vector/word2vec/utils.py",
    "content": "# -*- encoding:utf8 -*-\nfrom __future__ import print_function\nfrom __future__ import division\nimport numpy as np\nimport json\nimport pickle\nimport wget\nimport os\nimport zipfile\nimport heapq\nimport time\nimport itertools\nimport sys\nimport scipy\nimport scipy.sparse\nimport math\nfrom queue import Queue\n\n\n# ----- utils工具 -----\n\ndef zeros_aligned(shape, dtype, order='C', align=128):\n    \"\"\"Like `numpy.zeros()`, but the array will be aligned at `align` byte boundary.\"\"\"\n    nbytes = np.prod(shape) * np.dtype(dtype).itemsize\n    buffer = np.zeros(nbytes + align, dtype=np.uint8)\n    start_index = -buffer.ctypes.data % align\n    return buffer[start_index : start_index + nbytes].view(dtype).reshape(shape, order=order)\n\n\ndef chunkize_serial(iterable, chunksize, as_numpy=False):\n    \"\"\"\n    Return elements from the iterable in `chunksize`-ed lists. The last returned\n    element may be smaller (if length of collection is not divisible by `chunksize`).\n    >>> print list(grouper(range(10), 3))\n    [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]]\n    \"\"\"\n    it = iter(iterable)\n    while True:\n        if as_numpy:\n            # convert each document to a 2d numpy array (~6x faster when transmitting\n            # chunk data over the wire, in Pyro)\n            wrapped_chunk = [[np.array(doc) for doc in itertools.islice(it, int(chunksize))]]\n        else:\n            wrapped_chunk = [list(itertools.islice(it, int(chunksize)))]\n        if not wrapped_chunk[0]:\n            break\n        # memory opt: wrap the chunk and then pop(), to avoid leaving behind a dangling reference\n        yield wrapped_chunk.pop()\n\ngrouper = chunkize_serial\n\n\ndef expit(x):\n    return 1.0 / (1.0 + np.exp(-x))\n\n\ndef unitvec(vec):\n    \"\"\"\n    Scale a vector to unit length. The only exception is the zero vector, which\n    is returned back unchanged.\n    Output will be in the same format as input (i.e., gensim vector=>gensim vector,\n    or numpy array=>numpy array, scipy.sparse=>scipy.sparse).\n    \"\"\"\n    if scipy.sparse.issparse(vec): # convert scipy.sparse to standard numpy array\n        vec = vec.tocsr()\n        veclen = np.sqrt(np.sum(vec.data ** 2))\n        if veclen > 0.0:\n            return vec / veclen\n        else:\n            return vec\n\n    if isinstance(vec, np.ndarray):\n        vec = np.asarray(vec, dtype=float)\n        veclen = np.sqrt(np.sum(vec ** 2))\n        if veclen > 0.0:\n            return vec / veclen\n        else:\n            return vec\n\n\ndef cossim(vec1, vec2):\n    vec1, vec2 = dict(vec1), dict(vec2)\n    if not vec1 or not vec2:\n        return 0.0\n    vec1len = 1.0 * math.sqrt(sum(val * val for val in vec1.itervalues()))\n    vec2len = 1.0 * math.sqrt(sum(val * val for val in vec2.itervalues()))\n    assert vec1len > 0.0 and vec2len > 0.0, \"sparse documents must not contain any explicit zero entries\"\n    if len(vec2) < len(vec1):\n        vec1, vec2 = vec2, vec1 # swap references so that we iterate over the shorter vector\n    result = sum(value * vec2.get(index, 0.0) for index, value in vec1.iteritems())\n    result /= vec1len * vec2len # rescale by vector lengths\n    return result\n\n\nclass RepeatCorpusNTimes(object):\n    \"\"\"Wrap a `corpus` and repeat it `n` times.\n    Examples\n    --------\n    >>> corpus = [[(1, 0.5)], []]\n    >>> list(RepeatCorpusNTimes(corpus, 3)) # repeat 3 times\n    [[(1, 0.5)], [], [(1, 0.5)], [], [(1, 0.5)], []]\n    \"\"\"\n\n    def __init__(self, corpus, n):\n        \"\"\"\n        Parameters\n        ----------\n        corpus : iterable of iterable of (int, int)\n            Input corpus.\n        n : int\n            Number of repeats for corpus.\n        \"\"\"\n        self.corpus = corpus\n        self.n = n\n\n    def __iter__(self):\n        for _ in range(self.n):\n            for document in self.corpus:\n                yield document\n\n\nclass SaveAndLoad(object):\n    \"\"\"\n        用于保存和读取python类对象的基类\n    \"\"\"\n    def __init__(self):\n        pass\n\n    def save(self, fname):\n        with open(fname, 'wb') as fw:\n            pickle.dump(self, fw, protocol=2)\n        logger.info('File saved in {}'.format(fname))\n\n    @classmethod\n    def load(cls, fname):\n        with open(fname, 'rb') as fr:\n            return pickle.load(fr)\n\n\n# ----- dataset -----\n\nclass Text8Corpus(object):\n    \"\"\"\n    Iterate over sentences from the \"text8\" corpus, \n    unzipped from http://mattmahoney.net/dc/text8.zip .\n    text8数据读取，用于训练 \n    \"\"\"\n    def __init__(self, fname, sent_num=None, sent_len=1000):\n        self.fname = fname\n        self.sent_num = sent_num\n        self.sent_len = sent_len\n        if not os.path.exists(self.fname):\n            wget.download('http://mattmahoney.net/dc/text8.zip', out=self.fname)\n            print('Downloaded zip file `text8.zip`!')\n\n    def __iter__(self):\n        # the entire corpus is one gigantic line -- there are no sentence marks at all\n        # so just split the sequence of tokens arbitrarily: 1 sentence = 1000 tokens\n        sentence, rest, max_sentence_length = [], '', self.sent_len\n        idx = 0\n        with zipfile.ZipFile(self.fname) as zip_text8:\n            with zip_text8.open(zip_text8.getinfo('text8')) as fin:\n                while True:\n                    if self.sent_num is not None and idx >= self.sent_num:\n                        break\n                    text = rest + fin.read(8192)  # avoid loading the entire file (=1 line) into RAM\n                    if text == rest:  # EOF\n                        sentence.extend(rest.split()) # return the last chunk of words, too (may be shorter/longer)\n                        if sentence:\n                            idx += 1\n                            yield sentence\n                        break\n                    last_token = text.rfind(' ')  # the last token may have been split in two... keep it for the next iteration\n                    words, rest = (text[:last_token].split(), text[last_token:].strip()) if last_token >= 0 else ([], text)\n                    sentence.extend(words)\n                    while len(sentence) >= max_sentence_length:\n                        idx += 1\n                        yield sentence[:max_sentence_length]\n                        if self.sent_num is not None and idx >= self.sent_num:\n                            break\n                        sentence = sentence[max_sentence_length:]\n"
  },
  {
    "path": "word2vector/word2vec/wget.py",
    "content": "#!/usr/bin/env python\n\"\"\"\nDownload utility as an easy way to get file from the net\n \n  python -m wget <URL>\n  python wget.py <URL>\n\nDownloads: http://pypi.python.org/pypi/wget/\nDevelopment: http://bitbucket.org/techtonik/python-wget/\n\nwget.py is not option compatible with Unix wget utility,\nto make command line interface intuitive for new people.\n\nPublic domain by anatoly techtonik <techtonik@gmail.com>\nAlso available under the terms of MIT license\nCopyright (c) 2010-2014 anatoly techtonik\n\"\"\"\n\n\nimport sys, shutil, os\nimport tempfile\nimport math\n\nPY3K = sys.version_info >= (3, 0)\nif PY3K:\n  import urllib.request as urllib\n  import urllib.parse as urlparse\nelse:\n  import urllib\n  import urlparse\n\n\n__version__ = \"2.3-beta1\"\n\n\ndef filename_from_url(url):\n    \"\"\":return: detected filename or None\"\"\"\n    fname = os.path.basename(urlparse.urlparse(url).path)\n    if len(fname.strip(\" \\n\\t.\")) == 0:\n        return None\n    return fname\n\ndef filename_from_headers(headers):\n    \"\"\"Detect filename from Content-Disposition headers if present.\n    http://greenbytes.de/tech/tc2231/\n\n    :param: headers as dict, list or string\n    :return: filename from content-disposition header or None\n    \"\"\"\n    if type(headers) == str:\n        headers = headers.splitlines()\n    if type(headers) == list:\n        headers = dict([x.split(':', 1) for x in headers])\n    cdisp = headers.get(\"Content-Disposition\")\n    if not cdisp:\n        return None\n    cdtype = cdisp.split(';')\n    if len(cdtype) == 1:\n        return None\n    if cdtype[0].strip().lower() not in ('inline', 'attachment'):\n        return None\n    # several filename params is illegal, but just in case\n    fnames = [x for x in cdtype[1:] if x.strip().startswith('filename=')]\n    if len(fnames) > 1:\n        return None\n    name = fnames[0].split('=')[1].strip(' \\t\"')\n    name = os.path.basename(name)\n    if not name:\n        return None\n    return name\n\ndef filename_fix_existing(filename):\n    \"\"\"Expands name portion of filename with numeric ' (x)' suffix to\n    return filename that doesn't exist already.\n    \"\"\"\n    dirname = '.' \n    name, ext = filename.rsplit('.', 1)\n    names = [x for x in os.listdir(dirname) if x.startswith(name)]\n    names = [x.rsplit('.', 1)[0] for x in names]\n    suffixes = [x.replace(name, '') for x in names]\n    # filter suffixes that match ' (x)' pattern\n    suffixes = [x[2:-1] for x in suffixes\n                   if x.startswith(' (') and x.endswith(')')]\n    indexes  = [int(x) for x in suffixes\n                   if set(x) <= set('0123456789')]\n    idx = 1\n    if indexes:\n        idx += sorted(indexes)[-1]\n    return '%s (%d).%s' % (name, idx, ext)\n\n\n# --- terminal/console output helpers ---\n\ndef get_console_width():\n    \"\"\"Return width of available window area. Autodetection works for\n       Windows and POSIX platforms. Returns 80 for others\n\n       Code from http://bitbucket.org/techtonik/python-pager\n    \"\"\"\n\n    if os.name == 'nt':\n        STD_INPUT_HANDLE  = -10\n        STD_OUTPUT_HANDLE = -11\n        STD_ERROR_HANDLE  = -12\n\n        # get console handle\n        from ctypes import windll, Structure, byref\n        try:\n            from ctypes.wintypes import SHORT, WORD, DWORD\n        except ImportError:\n            # workaround for missing types in Python 2.5\n            from ctypes import (\n                c_short as SHORT, c_ushort as WORD, c_ulong as DWORD)\n        console_handle = windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE)\n\n        # CONSOLE_SCREEN_BUFFER_INFO Structure\n        class COORD(Structure):\n            _fields_ = [(\"X\", SHORT), (\"Y\", SHORT)]\n\n        class SMALL_RECT(Structure):\n            _fields_ = [(\"Left\", SHORT), (\"Top\", SHORT),\n                        (\"Right\", SHORT), (\"Bottom\", SHORT)]\n\n        class CONSOLE_SCREEN_BUFFER_INFO(Structure):\n            _fields_ = [(\"dwSize\", COORD),\n                        (\"dwCursorPosition\", COORD),\n                        (\"wAttributes\", WORD),\n                        (\"srWindow\", SMALL_RECT),\n                        (\"dwMaximumWindowSize\", DWORD)]\n\n        sbi = CONSOLE_SCREEN_BUFFER_INFO()\n        ret = windll.kernel32.GetConsoleScreenBufferInfo(console_handle, byref(sbi))\n        if ret == 0:\n            return 0\n        return sbi.srWindow.Right+1\n\n    elif os.name == 'posix':\n        from fcntl import ioctl\n        from termios import TIOCGWINSZ\n        from array import array\n\n        winsize = array(\"H\", [0] * 4)\n        try:\n            ioctl(sys.stdout.fileno(), TIOCGWINSZ, winsize)\n        except IOError:\n            pass\n        return (winsize[1], winsize[0])[0]\n\n    return 80\n\n\ndef bar_thermometer(current, total, width=80):\n    \"\"\"Return thermometer style progress bar string. `total` argument\n    can not be zero. The minimum size of bar returned is 3. Example:\n\n        [..........            ]\n\n    Control and trailing symbols (\\r and spaces) are not included.\n    See `bar_adaptive` for more information.\n    \"\"\"\n    # number of dots on thermometer scale\n    avail_dots = width-2\n    shaded_dots = int(math.floor(float(current) / total * avail_dots))\n    return '[' + '.'*shaded_dots + ' '*(avail_dots-shaded_dots) + ']'\n\ndef bar_adaptive(current, total, width=80):\n    \"\"\"Return progress bar string for given values in one of three\n    styles depending on available width:\n\n        [..  ] downloaded / total\n        downloaded / total\n        [.. ]\n\n    if total value is unknown or <= 0, show bytes counter using two\n    adaptive styles:\n\n        %s / unknown\n        %s\n\n    if there is not enough space on the screen, do not display anything\n\n    returned string doesn't include control characters like \\r used to\n    place cursor at the beginning of the line to erase previous content.\n\n    this function leaves one free character at the end of string to\n    avoid automatic linefeed on Windows.\n    \"\"\"\n\n    # process special case when total size is unknown and return immediately\n    if not total or total < 0:\n        msg = \"%s / unknown\" % current\n        if len(msg) < width:    # leaves one character to avoid linefeed\n            return msg\n        if len(\"%s\" % current) < width:\n            return \"%s\" % current\n\n    # --- adaptive layout algorithm ---\n    #\n    # [x] describe the format of the progress bar\n    # [x] describe min width for each data field\n    # [x] set priorities for each element\n    # [x] select elements to be shown\n    #   [x] choose top priority element min_width < avail_width\n    #   [x] lessen avail_width by value if min_width\n    #   [x] exclude element from priority list and repeat\n    \n    #  10% [.. ]  10/100\n    # pppp bbbbb sssssss\n\n    min_width = {\n      'percent': 4,  # 100%\n      'bar': 3,      # [.]\n      'size': len(\"%s\" % total)*2 + 3, # 'xxxx / yyyy'\n    }\n    priority = ['percent', 'bar', 'size']\n\n    # select elements to show\n    selected = []\n    avail = width\n    for field in priority:\n      if min_width[field] < avail:\n        selected.append(field)\n        avail -= min_width[field]+1   # +1 is for separator or for reserved space at\n                                      # the end of line to avoid linefeed on Windows\n    # render\n    output = ''\n    for field in selected:\n\n      if field == 'percent':\n        # fixed size width for percentage\n        output += ('%s%%' % (100 * current // total)).rjust(min_width['percent'])\n      elif field == 'bar':  # [. ]\n        # bar takes its min width + all available space\n        output += bar_thermometer(current, total, min_width['bar']+avail)\n      elif field == 'size':\n        # size field has a constant width (min == max)\n        output += (\"%s / %s\" % (current, total)).rjust(min_width['size'])\n\n      selected = selected[1:]\n      if selected:\n        output += ' '  # add field separator\n\n    return output\n\n# --/ console helpers\n\n\n__current_size = 0  # global state variable, which exists solely as a\n                    # workaround against Python 3.3.0 regression\n                    # http://bugs.python.org/issue16409\n                    # fixed in Python 3.3.1\ndef callback_progress(blocks, block_size, total_size, bar_function):\n    \"\"\"callback function for urlretrieve that is called when connection is\n    created and when once for each block\n\n    draws adaptive progress bar in terminal/console\n\n    use sys.stdout.write() instead of \"print,\", because it allows one more\n    symbol at the line end without linefeed on Windows\n\n    :param blocks: number of blocks transferred so far\n    :param block_size: in bytes\n    :param total_size: in bytes, can be -1 if server doesn't return it\n    :param bar_function: another callback function to visualize progress\n    \"\"\"\n    global __current_size\n \n    width = min(100, get_console_width())\n\n    if sys.version_info[:3] == (3, 3, 0):  # regression workaround\n        if blocks == 0:  # first call\n            __current_size = 0\n        else:\n            __current_size += block_size\n        current_size = __current_size\n    else:\n        current_size = min(blocks*block_size, total_size)\n    progress = bar_function(current_size, total_size, width)\n    if progress:\n        sys.stdout.write(\"\\r\" + progress)\n\nclass ThrowOnErrorOpener(urllib.FancyURLopener):\n    def http_error_default(self, url, fp, errcode, errmsg, headers):\n        raise Exception(\"%s: %s\" % (errcode, errmsg))\n\ndef download(url, out=None, bar=bar_adaptive):\n    \"\"\"High level function, which downloads URL into tmp file in current\n    directory and then renames it to filename autodetected from either URL\n    or HTTP headers.\n\n    :param bar: function to track download progress (visualize etc.)\n    :param out: output filename or directory\n    :return:    filename where URL is downloaded to\n    \"\"\"\n    names = dict()\n    names[\"out\"] = out or ''\n    names[\"url\"] = filename_from_url(url)\n    # get filename for temp file in current directory\n    prefix = (names[\"url\"] or names[\"out\"] or \".\") + \".\"\n    (fd, tmpfile) = tempfile.mkstemp(\".tmp\", prefix=prefix, dir=\".\")\n    os.close(fd)\n    os.unlink(tmpfile)\n\n    # set progress monitoring callback\n    def callback_charged(blocks, block_size, total_size):\n        # 'closure' to set bar drawing function in callback\n        callback_progress(blocks, block_size, total_size, bar_function=bar)\n    if bar:\n        callback = callback_charged\n    else:\n        callback = None\n\n    (tmpfile, headers) = ThrowOnErrorOpener().retrieve(url, tmpfile, callback)\n    names[\"header\"] = filename_from_headers(headers)\n    if os.path.isdir(names[\"out\"]):\n        filename = names[\"header\"] or names[\"url\"]\n        filename = names[\"out\"] + \"/\" + filename\n    else:\n        filename = names[\"out\"] or names[\"header\"] or names[\"url\"]\n    # add numeric ' (x)' suffix if filename already exists\n    if os.path.exists(filename):\n        filename = filename_fix_existing(filename)\n    shutil.move(tmpfile, filename)\n\n    #print headers\n    return filename\n\n\nusage = \"\"\"\\\nusage: wget.py [options] URL\n\noptions:\n  -o --output FILE|DIR   output filename or directory\n  -h --help\n  --version\n\"\"\"\n\nif __name__ == \"__main__\":\n    if len(sys.argv) < 2 or \"-h\" in sys.argv or \"--help\" in sys.argv:\n        sys.exit(usage)\n    if \"--version\" in sys.argv:\n        sys.exit(\"wget.py \" + __version__)\n\n    from optparse import OptionParser\n    parser = OptionParser()\n    parser.add_option(\"-o\", \"--output\", dest=\"output\")\n    (options, args) = parser.parse_args()\n\n    url = sys.argv[1]\n    filename = download(args[0], out=options.output)\n\n    print(\"\")\n    print(\"Saved under %s\" % filename)\n\nr\"\"\"\nfeatures that require more tuits for urlretrieve API\nhttp://www.python.org/doc/2.6/library/urllib.html#urllib.urlretrieve\n\n[x] autodetect filename from URL\n[x] autodetect filename from headers - Content-Disposition\n    http://greenbytes.de/tech/tc2231/\n[ ] make HEAD request to detect temp filename from Content-Disposition\n[ ] process HTTP status codes (i.e. 404 error)\n    http://ftp.de.debian.org/debian/pool/iso-codes_3.24.2.orig.tar.bz2\n[ ] catch KeyboardInterrupt\n[ ] optionally preserve incomplete file\n[x] create temp file in current directory\n[ ] resume download (broken connection)\n[ ] resume download (incomplete file)\n[x] show progress indicator\n    http://mail.python.org/pipermail/tutor/2005-May/038797.html\n[x] do not overwrite downloaded file\n [x] rename file automatically if exists\n[x] optionally specify path for downloaded file\n\n[ ] options plan\n [x] -h, --help, --version (CHAOS speccy)\n[ ] clpbar progress bar style\n_ 30.0Mb at  3.0 Mbps  eta:   0:00:20   30% [=====         ]\n[ ] test \"bar \\r\" print with \\r at the end of line on Windows\n[ ] process Python 2.x urllib.ContentTooShortError exception gracefully\n    (ideally retry and continue download)\n\n    (tmpfile, headers) = urllib.urlretrieve(url, tmpfile, callback_progress)\n  File \"C:\\Python27\\lib\\urllib.py\", line 93, in urlretrieve\n    return _urlopener.retrieve(url, filename, reporthook, data)\n  File \"C:\\Python27\\lib\\urllib.py\", line 283, in retrieve\n    \"of %i bytes\" % (read, size), result)\nurllib.ContentTooShortError: retrieval incomplete: got only 15239952 out of 24807571 bytes\n\n[ ] find out if urlretrieve may return unicode headers\n[ ] test suite for unsafe filenames from url and from headers\n\n[ ] security checks\n  [ ] filename_from_url\n  [ ] filename_from_headers\n  [ ] MITM redirect from https URL\n  [ ] https certificate check\n  [ ] size+hash check helpers\n    [ ] fail if size is known and mismatch\n    [ ] fail if hash mismatch\n\"\"\"\n"
  },
  {
    "path": "word2vector/word2vec/word2vec-python3.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"metadata\": {},\n   \"source\": [\n    \"# word2vec python3 实现\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# -*- encoding:utf8 -*-\\n\",\n    \"from __future__ import print_function\\n\",\n    \"from __future__ import division\\n\",\n    \"import numpy as np\\n\",\n    \"import json\\n\",\n    \"import pickle\\n\",\n    \"import wget\\n\",\n    \"import os\\n\",\n    \"import zipfile\\n\",\n    \"import heapq\\n\",\n    \"import time\\n\",\n    \"import itertools\\n\",\n    \"import threading\\n\",\n    \"import numpy.random as random\\n\",\n    \"import sys\\n\",\n    \"import scipy\\n\",\n    \"import scipy.sparse\\n\",\n    \"import math\\n\",\n    \"from multiprocessing.pool import ThreadPool\\n\",\n    \"from queue import Queue\\n\",\n    \"from numpy import float32 as REAL\\n\",\n    \"\\n\",\n    \"import logging\\n\",\n    \"logging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO)\\n\",\n    \"logger = logging.getLogger('word2vec')\\n\",\n    \"\\n\",\n    \"from utils import *\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"\\\"\\\"\\\"\\n\",\n    \"# Introduction\\n\",\n    \"\\n\",\n    \"A simple code version for word2vec\\n\",\n    \"\\n\",\n    \"# Reference\\n\",\n    \"[1] https://www.cnblogs.com/pinard/p/7243513.html\\n\",\n    \"[2] http://www.cnblogs.com/pinard/p/7249903.html\\n\",\n    \"[3] https://github.com/RaRe-Technologies/gensim/blob/develop/gensim/models/word2vec.py\\n\",\n    \"[4] https://github.com/klb3713/word2vec/blob/master/python/word2vec.py\\n\",\n    \"\\\"\\\"\\\"\\n\",\n    \"# ----- word2vec -----\\n\",\n    \"# gensim里用的cython版本。\\n\",\n    \"# 本来用cython版本的train_sentence会快很多，不过主要介绍原理，所以都用python介绍。\\n\",\n    \"# Word2Vec类中使用的多线程可以在一定程度上加快速度。\\n\",\n    \"def train_sentence_sg(model, sentence, alpha, work=None):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    skip-gram\\n\",\n    \"\\n\",\n    \"    `model` 训练的词向量模型\\n\",\n    \"    `sentence` 一个词列表，表示一个句子\\n\",\n    \"    `alpha` 学习率\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    total_loss = 0.\\n\",\n    \"    count = 1\\n\",\n    \"    # 遍历每个句子的词，该词`word`作为中心词\\n\",\n    \"    for pos, word in enumerate(sentence):\\n\",\n    \"        if word is None:\\n\",\n    \"            # 跳过OOV的词\\n\",\n    \"            continue\\n\",\n    \"        # 设定一个随机的窗口大小，最终真正的单侧窗口大小为window - reduced_window\\n\",\n    \"        reduced_window = model.random.randint(model.window)\\n\",\n    \"\\n\",\n    \"        # 遍历两侧词窗内的所有词，分别预测\\n\",\n    \"        start = max(0, pos - model.window + reduced_window)\\n\",\n    \"        for pos2, word2 in enumerate(sentence[start : pos + model.window + 1 - reduced_window], start):\\n\",\n    \"            if pos2 == pos or word2 is None:\\n\",\n    \"                # 跳过OOV的词以及中心词`word`\\n\",\n    \"                continue\\n\",\n    \"            # 得到输入词向量v_w\\n\",\n    \"            # 此处本应该是`word`而不是`word2`，即求P(word2|word)的极大似然，\\n\",\n    \"            # 不过这样的话，输入的投影矩阵syn0在每个词窗下只能更新一个词多次，\\n\",\n    \"            # 因此此处改成求对称的P(word|word2)的极大似然，这样可以让输入的投影矩阵syn0在每个词窗下更新多个词\\n\",\n    \"            l1 = model.syn0[word2.index]\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"            if model.hs >= 1:\\n\",\n    \"                # `outer((1 - word.code - fa), l1)`为关于l2a的梯度\\n\",\n    \"                # `dot((1 - word.code - fa), l2a)`为关于l1的梯度\\n\",\n    \"\\n\",\n    \"                # `word.point`是一个array，表示抽取出所有的当前叶子结点的结点路径\\n\",\n    \"                # `l2a`是一个矩阵，shape为(codelen, layer1_size)\\n\",\n    \"                l2a = model.syn1[word.point]\\n\",\n    \"                # 隐层输出，`fa`的shape为(1, codelen)，每个值表示code预测为1（向树右侧走）的概率\\n\",\n    \"                fa = expit(np.dot(l1, l2a.T))\\n\",\n    \"                # shape为(1, codelen)\\n\",\n    \"                ga = (1 - word.code - fa) * alpha  # vector of error gradients multiplied by the learning rate\\n\",\n    \"                # 更新输出矩阵，shape为(codelen, layer1_size)\\n\",\n    \"                model.syn1[word.point] += np.outer(ga, l1)  # learn hidden -> output\\n\",\n    \"\\n\",\n    \"                # 更新输入矩阵\\n\",\n    \"                l1 += np.dot(ga, l2a)\\n\",\n    \"\\n\",\n    \"                # 计算loss\\n\",\n    \"                sgn = (-1.0)**word.code  # ch function, 0-> 1, 1 -> -1\\n\",\n    \"                loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\\n\",\n    \"                total_loss += loss / len(word.code)\\n\",\n    \"                count += 1\\n\",\n    \"                model.running_training_loss += loss\\n\",\n    \"            else:\\n\",\n    \"                # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\\n\",\n    \"                # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\\n\",\n    \"\\n\",\n    \"                # 从构建的`cum_table`中找到`negative`个负样本\\n\",\n    \"                neg_indices = [word.index]\\n\",\n    \"                while len(neg_indices) < model.negative + 1:\\n\",\n    \"                    w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\\n\",\n    \"                    if w != word.index:\\n\",\n    \"                        neg_indices.append(w)\\n\",\n    \"                # `l2b`是一个矩阵，shape为(negative+1, layer1_size)\\n\",\n    \"                l2b = model.syn1neg[neg_indices]\\n\",\n    \"                # shape为(1, negative+1)\\n\",\n    \"                prod_term = np.dot(l1, l2b.T)\\n\",\n    \"                # shape为(1, negative+1)\\n\",\n    \"                fb = expit(prod_term)  # propagate hidden -> output\\n\",\n    \"                # shape为(1, negative+1)\\n\",\n    \"                gb = (model.neg_labels - fb) * alpha  # vector of error gradients multiplied by the learning rate\\n\",\n    \"                # 更新输出矩阵，shape为(negative+1, layer1_size)\\n\",\n    \"                model.syn1neg[neg_indices] += np.outer(gb, l1)  # learn hidden -> output\\n\",\n    \"\\n\",\n    \"                # 更新输入矩阵\\n\",\n    \"                l1 += np.dot(gb, l2b)  # save error\\n\",\n    \"\\n\",\n    \"                # 计算loss\\n\",\n    \"                loss1 = -sum(np.log(expit(-1 * prod_term[1:]))) \\n\",\n    \"                loss2 = -np.log(expit(prod_term[0]))\\n\",\n    \"                total_loss += (loss1 + loss2) / len(prod_term)\\n\",\n    \"                count += 1\\n\",\n    \"                model.running_training_loss += loss1  # for the sampled words\\n\",\n    \"                model.running_training_loss += loss2  # for the output word\\n\",\n    \"\\n\",\n    \"    # 返回句子中的非OOV的词的个数\\n\",\n    \"    return len([word for word in sentence if word is not None]), 1.0 * total_loss / count\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"def train_sentence_cbow(model, sentence, alpha, work=None, cbow_mean=True):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    cbow\\n\",\n    \"\\n\",\n    \"    `model` 训练的词向量模型\\n\",\n    \"    `sentence` 一个词列表，表示一个句子\\n\",\n    \"    `alpha` 学习率\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    total_loss = 0.\\n\",\n    \"    count = 1\\n\",\n    \"    for pos, word in enumerate(sentence):\\n\",\n    \"        if word is None:\\n\",\n    \"            continue\\n\",\n    \"        reduced_window = model.random.randint(model.window)\\n\",\n    \"        start = max(0, pos - model.window + reduced_window)\\n\",\n    \"        window_pos = enumerate(sentence[start:(pos + model.window + 1 - reduced_window)], start)\\n\",\n    \"        word2_indices = [word2.index for pos2, word2 in window_pos if (word2 is not None and pos2 != pos)]\\n\",\n    \"        # (1, layer1_size)\\n\",\n    \"        l1 = np.sum(model.syn0[word2_indices], axis=0)\\n\",\n    \"        if word2_indices and cbow_mean:\\n\",\n    \"            l1 /= len(word2_indices)\\n\",\n    \"\\n\",\n    \"        if model.hs >= 1:\\n\",\n    \"            # `outer((1 - word.code - fa), l1)`为关于l2a的梯度\\n\",\n    \"            # `dot((1 - word.code - fa), l2a)`为关于l1的梯度\\n\",\n    \"\\n\",\n    \"            # shape为(codelen, layer1_size)\\n\",\n    \"            l2a = model.syn1[word.point]\\n\",\n    \"            # shape为(1, codelen)\\n\",\n    \"            fa = expit(np.dot(l1, l2a.T))\\n\",\n    \"            # shape为(1, codelen)\\n\",\n    \"            ga = (1 - word.code - fa) * alpha  # vector of error gradients multiplied by the learning rate\\n\",\n    \"            # 更新输出矩阵，shape为(codelen, layer1_size)\\n\",\n    \"            model.syn1[word.point] += np.outer(ga, l1)  # learn hidden -> output\\n\",\n    \"\\n\",\n    \"            # 更新输入矩阵\\n\",\n    \"            if word2_indices and cbow_mean:\\n\",\n    \"                neu1e = np.dot(ga, l2a) / len(word2_indices)\\n\",\n    \"            else:\\n\",\n    \"                neu1e = np.dot(ga, l2a)\\n\",\n    \"            for i in word2_indices:\\n\",\n    \"                model.syn0[i] += neu1e\\n\",\n    \"\\n\",\n    \"            # 计算loss\\n\",\n    \"            sgn = (-1.0)**word.code  # ch function, 0-> 1, 1 -> -1\\n\",\n    \"            loss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\\n\",\n    \"            total_loss += loss / len(word.code)\\n\",\n    \"            count += 1\\n\",\n    \"            model.running_training_loss += loss\\n\",\n    \"        else:\\n\",\n    \"            # `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\\n\",\n    \"            # `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\\n\",\n    \"\\n\",\n    \"            # 从构建的`cum_table`中找到`negative`个负样本\\n\",\n    \"            neg_indices = [word.index]\\n\",\n    \"            while len(neg_indices) < model.negative + 1:\\n\",\n    \"                w = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\\n\",\n    \"                if w != word.index:\\n\",\n    \"                    neg_indices.append(w)\\n\",\n    \"            # `l2b`是一个矩阵，shape为(negative+1, layer1_size)\\n\",\n    \"            l2b = model.syn1neg[neg_indices]\\n\",\n    \"            # shape为(1, negative+1)\\n\",\n    \"            prod_term = np.dot(l1, l2b.T)\\n\",\n    \"            # shape为(1, negative+1)\\n\",\n    \"            fb = expit(prod_term)  # propagate hidden -> output\\n\",\n    \"            # shape为(1, negative+1)\\n\",\n    \"            gb = (model.neg_labels - fb) * alpha  # vector of error gradients multiplied by the learning rate\\n\",\n    \"            # 更新输出矩阵，shape为(negative+1, layer1_size)\\n\",\n    \"            model.syn1neg[neg_indices] += np.outer(gb, l1)  # learn hidden -> output\\n\",\n    \"\\n\",\n    \"            # 更新输入矩阵\\n\",\n    \"            if word2_indices and cbow_mean:\\n\",\n    \"                neu1e = np.dot(gb, l2b) / len(word2_indices)\\n\",\n    \"            else:\\n\",\n    \"                neu1e = np.dot(gb, l2b)\\n\",\n    \"            for i in word2_indices:\\n\",\n    \"                model.syn0[i] += neu1e\\n\",\n    \"\\n\",\n    \"            # 计算loss\\n\",\n    \"            loss1 = -sum(np.log(expit(-1 * prod_term[1:])))\\n\",\n    \"            loss2 = -np.log(expit(prod_term[0]))\\n\",\n    \"            total_loss += (loss1 + loss2) / len(prod_term)\\n\",\n    \"            count += 1\\n\",\n    \"            model.running_training_loss += loss1  # for the sampled words\\n\",\n    \"            model.running_training_loss += loss2  # for the output word\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    return len([word for word in sentence if word is not None]), 1.0 * total_loss / count\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class Vocab(object):\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"        用来存储词汇，如果用hs，则可以看成一个树结点\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    def __init__(self, **kwargs):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        `count` 词频\\n\",\n    \"        `index` 索引\\n\",\n    \"        `left` 如果用hs，则表示左孩子\\n\",\n    \"        `right` 如果用hs，则表示右孩子\\n\",\n    \"        `code` 叶子结点的编码路径（从根结点到叶子结点的huffman编码）\\n\",\n    \"        `point` 叶子结点的结点路径（从根结点到叶子结点经过的结点索引）\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        self.count = 0\\n\",\n    \"        self.index = -1\\n\",\n    \"        self.left = None\\n\",\n    \"        self.right = None\\n\",\n    \"        self.code = []\\n\",\n    \"        self.point = []\\n\",\n    \"        self.__dict__.update(kwargs)\\n\",\n    \"\\n\",\n    \"    def __lt__(self, vocab):\\n\",\n    \"        return self.count < vocab.count\\n\",\n    \"\\n\",\n    \"    def __str__(self):\\n\",\n    \"        return '<' + ', '.join([ '{}:{}'.format(\\n\",\n    \"            (_, self.__dict__[_]) for _ in self.__dict__\\n\",\n    \"            if not self.__dict__[_].startswith('_'))]) + '>'\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class Word2Vec(SaveAndLoad):\\n\",\n    \"    def __init__(self, sentences=None, size=100, alpha=0.025, \\n\",\n    \"                 window=5, min_count=5, seed=1, iters=5, \\n\",\n    \"                 workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \\n\",\n    \"                 sort_vocab=True):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        Word2Vec模型，其中sentences可以不给定，表示不训练模型。\\n\",\n    \"        此时初始化的模型可以进行加载模型等操作\\n\",\n    \"\\n\",\n    \"        `sentences` 输入的用于训练的句子集合，可以是迭代器，也可以是一般的list等\\n\",\n    \"        `size` 词向量维度，也就是训练的时候隐变量的维度\\n\",\n    \"        `window` 一句话中的当前词与上下文词的最大距离，指单侧词窗\\n\",\n    \"        `alpha` 初始学习率，学习过程中随着呈线性下降趋势\\n\",\n    \"        `seed` 随机数种子\\n\",\n    \"        `iters` 迭代次数\\n\",\n    \"        `min_count` 用于过滤的最小词频\\n\",\n    \"        `workers` CPU多核的时候可以使用多线程来加快训练\\n\",\n    \"        `min_alpha` 最小学习率\\n\",\n    \"        `hs` 是否使用hierarchical softmax，当hs>=1时表示使用hs，否则为negative sampling\\n\",\n    \"        `sg` 是否使用skip-gram，如果sg>=1表示使用sg，否则为cbow\\n\",\n    \"        `negative` 表示负样本个数，用于hs<=0的情况\\n\",\n    \"        `sort_vocab` 表示是否对id2word按词频从高到低排序\\n\",\n    \"\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        self.window = int(window)\\n\",\n    \"        self.size = int(size)\\n\",\n    \"        self.min_count = int(min_count)\\n\",\n    \"        self.alpha = alpha\\n\",\n    \"        self.min_alpha = min_alpha\\n\",\n    \"        self.epochs = iters\\n\",\n    \"        self.seed = seed\\n\",\n    \"        self.random = random.RandomState(seed)\\n\",\n    \"        self.workers = int(workers)\\n\",\n    \"        self.hs = int(hs)\\n\",\n    \"        self.sg = int(sg)\\n\",\n    \"        self.negative = int(negative)\\n\",\n    \"        self.sort_vocab = sort_vocab\\n\",\n    \"        self.cum_table = None # negative sampling时才用到\\n\",\n    \"        self.vocab = {}\\n\",\n    \"        self.id2word = []\\n\",\n    \"        self.syn0 = [] # 即所学的词向量\\n\",\n    \"        self.syn1 = [] # 用于hs\\n\",\n    \"        self.syn1neg = [] # 用于负采样\\n\",\n    \"        self.running_training_loss = 0.\\n\",\n    \"        self.layer1_size = self.size\\n\",\n    \"        if sentences is not None:\\n\",\n    \"            # 构建词表、包括构建哈夫曼树、设置参数\\n\",\n    \"            self.build_vocab(sentences)\\n\",\n    \"            if self.epochs is not None and self.epochs > 0:\\n\",\n    \"                # 重复n次corpus语料\\n\",\n    \"                sentences = RepeatCorpusNTimes(sentences, self.epochs)\\n\",\n    \"            self.train(sentences)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def get_latest_training_loss(self):\\n\",\n    \"        return self.running_training_loss\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def __reset_vocab(self):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        重置词典和词表\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        self.vocab = {}\\n\",\n    \"        self.word_list = []\\n\",\n    \"\\n\",\n    \"    def build_vocab(self, sentences):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        构建词典，筛除低频词，并给每个词赋予索引index\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        # 统计词频\\n\",\n    \"        vocab = {}\\n\",\n    \"        for sentence in sentences:\\n\",\n    \"            for word in sentence:\\n\",\n    \"                vocab.setdefault(word, Vocab(count=0))\\n\",\n    \"                vocab[word].count += 1\\n\",\n    \"\\n\",\n    \"        # 重置词典\\n\",\n    \"        self.__reset_vocab()\\n\",\n    \"        # 构建词典\\n\",\n    \"        for word, v in vocab.items():\\n\",\n    \"            if v.count >= self.min_count:\\n\",\n    \"                v.index = len(self.vocab)\\n\",\n    \"                self.vocab[word] = v\\n\",\n    \"                self.id2word.append(word)\\n\",\n    \"        if self.sort_vocab:\\n\",\n    \"            self.id2word = list(sorted(self.id2word, key=lambda x: self.vocab[x].count, reverse=True))\\n\",\n    \"            for i, word in enumerate(self.id2word):\\n\",\n    \"                self.vocab[word].index = i\\n\",\n    \"        if self.hs >= 1:\\n\",\n    \"            self.create_binary_tree()\\n\",\n    \"        else:\\n\",\n    \"            self.make_cum_table()\\n\",\n    \"        self.reset_weights()\\n\",\n    \"\\n\",\n    \"    def reset_weights(self):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        初始化（重置）两个投影矩阵。\\n\",\n    \"\\n\",\n    \"        syn0用于输入的词向量矩阵，\\n\",\n    \"        syn1在输出为hs的时候为tree中每个内部结点\\n\",\n    \"        （包括根结点共len(vocab)-1个）的向量矩阵。\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        self.syn0 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\\n\",\n    \"        self.syn0 += (self.random.rand(len(self.vocab), self.layer1_size) - 0.5) / self.layer1_size\\n\",\n    \"        if self.hs >= 1:\\n\",\n    \"            # syn1的索引对应的不是词，而是huffman树内部结点\\n\",\n    \"            # 因此syn0与syn1不能直接结合\\n\",\n    \"            self.syn1 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\\n\",\n    \"        else:\\n\",\n    \"            # syn0与syn1neg的索引对应的词一致，可以直接结合（如相加求平均）\\n\",\n    \"            self.syn1neg = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\\n\",\n    \"        self.syn0norm = None\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def make_cum_table(self, power=0.75, domain=2**31 - 1):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        构建用于negative sampling的cumulative table\\n\",\n    \"\\n\",\n    \"        `power` 表示压缩值（论文中的值），可以有效防止负采样时候的长尾效应\\n\",\n    \"        `domain` 表示采样点的范围，如果归一化到概率，则是[0, 1]，用于轮盘采样\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        vocab_size = len(self.id2word)\\n\",\n    \"        self.cum_table = np.zeros(vocab_size, dtype=np.uint32)\\n\",\n    \"        # compute sum of all power (Z in paper)\\n\",\n    \"        train_words_pow = 0.0\\n\",\n    \"        for word_index in range(vocab_size):\\n\",\n    \"            train_words_pow += self.vocab[self.id2word[word_index]].count ** power\\n\",\n    \"        cumulative = 0.0\\n\",\n    \"        for word_index in range(vocab_size):\\n\",\n    \"            cumulative += self.vocab[self.id2word[word_index]].count ** power\\n\",\n    \"            self.cum_table[word_index] = round(cumulative / train_words_pow * domain)\\n\",\n    \"        if len(self.cum_table) > 0:\\n\",\n    \"            assert self.cum_table[-1] == domain\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def create_binary_tree(self):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"            构建huffman树，用于hierarchical softmax\\n\",\n    \"            叶子结点表示词汇。\\n\",\n    \"            内部结点包含该路径下的词频和与索引（该索引对应矩阵syn1）\\n\",\n    \"            叶子结点包含对应词汇的词频与索引（该索引对应矩阵syn0）\\n\",\n    \"            高频词出现在较短的路径上。\\n\",\n    \"            叶子结点共`vocab_size`个，而内部结点（包含root结点）共`vocab_size-1`个\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        heap = list(self.vocab.values())\\n\",\n    \"        print(heap, type(heap))\\n\",\n    \"        heapq.heapify(heap)\\n\",\n    \"        # 构建huffman二叉树，每次取词频最高的结点构成新结点\\n\",\n    \"        for idx in range(len(self.vocab) - 1):\\n\",\n    \"            min1, min2 = heapq.heappop(heap), heapq.heappop(heap)\\n\",\n    \"            heapq.heappush(heap, Vocab(count=min1.count + min2.count, \\n\",\n    \"                      index=idx + len(self.vocab), left=min1, right=min2))\\n\",\n    \"        # 此时heap里只有一个结点，即根结点\\n\",\n    \"        if heap:\\n\",\n    \"            # max_depth记录树最大深度\\n\",\n    \"            # stack中三个元素分别代表：当前结点、当前结点的编码路径、当前结点的结点路径\\n\",\n    \"            max_depth, stack = 0, [(heap[0], [], [])]\\n\",\n    \"            # list可以当做stack用\\n\",\n    \"            while stack:\\n\",\n    \"                node, codes, points = stack.pop()\\n\",\n    \"                # 表示一个叶子结点\\n\",\n    \"                if node.index < len(self.vocab):\\n\",\n    \"                    node.code = codes\\n\",\n    \"                    node.point = points\\n\",\n    \"                    max_depth = max(len(codes), max_depth)\\n\",\n    \"                else:\\n\",\n    \"                    # 表示一个内部结点\\n\",\n    \"                    # 编码路径由于是二进制，可以用unit8节省内存\\n\",\n    \"                    # 这里讲内部结点的index减去一个vocab的大小，是为了保持内部结点的索引对应矩阵syn1的索引（从0开始）\\n\",\n    \"                    points = np.asarray(list(points) + [node.index - len(self.vocab)], dtype=np.uint32)\\n\",\n    \"                    stack.append((node.left, np.asarray(list(codes) + [0], dtype=np.uint8), points))\\n\",\n    \"                    stack.append((node.right, np.asarray(list(codes) + [1], dtype=np.uint8), points))\\n\",\n    \"        logger.info(\\\"built huffman tree with maximum node depth %i\\\" % max_depth)\\n\",\n    \"        self.max_depth = max_depth\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def train(self, sentences, total_words=None, word_count=0, chunksize=100):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        Update the model's neural weights from a sequence of sentences (can be a once-only generator stream).\\n\",\n    \"        Each sentence must be a list of utf8 strings.\\n\",\n    \"        更新词向量权重\\n\",\n    \"        每输入一个句子，表示一次迭代更新。\\n\",\n    \"\\n\",\n    \"        `sentences` 输入的用于训练的句子集合\\n\",\n    \"        `total_words` 总词频和\\n\",\n    \"        `word_count` 词种类数\\n\",\n    \"        `chunksize` 多线程的时候，每个线程一次性处理或被分配到的句子数\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        logger.info(\\\"training model with %i workers on %i vocabulary and %i features\\\" % (self.workers, len(self.vocab), self.layer1_size))\\n\",\n    \"\\n\",\n    \"        if not self.vocab:\\n\",\n    \"            raise RuntimeError(\\\"you must first build vocabulary before training the model\\\")\\n\",\n    \"\\n\",\n    \"        self.neg_labels = []\\n\",\n    \"        if self.negative >= 1:\\n\",\n    \"            # 负样本标签\\n\",\n    \"            self.neg_labels = np.zeros(self.negative + 1)\\n\",\n    \"            self.neg_labels[0] = 1.\\n\",\n    \"            print(\\\"self.neg_labels >>:\\\", self.neg_labels)\\n\",\n    \"\\n\",\n    \"        # 用来记录时间的起始与打log的判定时间，\\n\",\n    \"        # `next_report`存到list是因为需要在多个线程内作为类对象被访问，`word_count`同理\\n\",\n    \"        start, next_report = time.time(), [1.0]\\n\",\n    \"        word_count, total_words = [word_count], total_words or sum(v.count for v in self.vocab.values())\\n\",\n    \"        print(\\\"word_count:\\\", word_count)\\n\",\n    \"        print(\\\"total_words:\\\", total_words)\\n\",\n    \"        # 考虑缓冲区\\n\",\n    \"        jobs = Queue(maxsize=2 * self.workers)\\n\",\n    \"        # 因为有共享变量（如`word_count`），所以加锁\\n\",\n    \"        lock = threading.Lock()\\n\",\n    \"\\n\",\n    \"        def worker_train():\\n\",\n    \"            \\\"\\\"\\\"Train the model, lifting lists of sentences from the jobs queue.\\\"\\\"\\\"\\n\",\n    \"            # 多线程配给的memory\\n\",\n    \"            work = zeros_aligned(self.layer1_size, dtype=REAL)\\n\",\n    \"\\n\",\n    \"            while True:\\n\",\n    \"                # 一个job就是一个chunksize条句子的数据集\\n\",\n    \"                job = jobs.get()\\n\",\n    \"                if job is None:  # 数据读完，退出\\n\",\n    \"                    break\\n\",\n    \"                # 在开始训练之前先减小训练速率\\n\",\n    \"                alpha = max(self.min_alpha, self.alpha * (1 - 1.0 * word_count[0] / total_words / self.epochs))\\n\",\n    \"                # 训练参数；统计当前job训练的词数，OOV的词不算\\n\",\n    \"                if self.sg >= 1:\\n\",\n    \"                    func = train_sentence_sg\\n\",\n    \"                else:\\n\",\n    \"                    func = train_sentence_cbow\\n\",\n    \"                job_words, total_loss = np.sum([func(self, sentence, alpha, work) for sentence in job], axis=0)\\n\",\n    \"                total_loss /= len(job)\\n\",\n    \"                # 请求锁，用来更新`word_count`\\n\",\n    \"                with lock:\\n\",\n    \"                    word_count[0] += job_words\\n\",\n    \"                    elapsed = time.time() - start\\n\",\n    \"                    # 防止一直打log\\n\",\n    \"                    if elapsed >= next_report[0]:\\n\",\n    \"                        logger.info(\\\"PROGRESS: at %.2f%% words, alpha %.05f, %.0f words/s, loss %.08f\\\" %\\n\",\n    \"                            (100.0 * word_count[0] / total_words / self.epochs, alpha, word_count[0] / elapsed if elapsed else 0.0, total_loss))\\n\",\n    \"                        # 可以让log保持一秒及一秒以上打一次\\n\",\n    \"                        next_report[0] = elapsed + 1.0\\n\",\n    \"\\n\",\n    \"        workers = [threading.Thread(target=worker_train) for _ in range(self.workers)]\\n\",\n    \"        for thread in workers:\\n\",\n    \"            thread.daemon = True  # 可以更便捷的用ctrl+c中断程序\\n\",\n    \"            thread.start()\\n\",\n    \"\\n\",\n    \"        # 把输入的string变成Vocab类，对于OOV则用None表示，并把数据拆分成多个job，存到queue里\\n\",\n    \"        no_oov = ([self.vocab.get(word, None) for word in sentence] for sentence in sentences)\\n\",\n    \"        for job_no, job in enumerate(grouper(no_oov, chunksize)):\\n\",\n    \"            logger.debug(\\\"putting job #%i in the queue, qsize=%i\\\" % (job_no, jobs.qsize()))\\n\",\n    \"            jobs.put(job)\\n\",\n    \"        logger.info(\\\"reached the end of input; waiting to finish %i outstanding jobs\\\" % jobs.qsize())\\n\",\n    \"        # 再补充`self.workers`个jobs，用来告知线程数据读取完成\\n\",\n    \"        for _ in range(self.workers):\\n\",\n    \"            jobs.put(None)\\n\",\n    \"\\n\",\n    \"        for thread in workers:\\n\",\n    \"            thread.join()\\n\",\n    \"\\n\",\n    \"        elapsed = time.time() - start\\n\",\n    \"        logger.info(\\\"training on %i words took %.1fs, %.0f words/s\\\" %\\n\",\n    \"            (word_count[0], elapsed, word_count[0] / elapsed if elapsed else 0.0))\\n\",\n    \"\\n\",\n    \"        return word_count[0]\\n\",\n    \"\\n\",\n    \"    # ---辅助函数---\\n\",\n    \"    def __getitem__(self, word):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        返回word对应的词向量\\n\",\n    \"        Example::\\n\",\n    \"          >>> trained_model['woman']\\n\",\n    \"          array([ -1.40128313e-02, ...]\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        return self.syn0[self.vocab[word].index]\\n\",\n    \"\\n\",\n    \"    def __contains__(self, word):\\n\",\n    \"        return word in self.vocab\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def similarity(self, w1, w2):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        计算词w1与w2的余弦相似度\\n\",\n    \"        Example::\\n\",\n    \"          >>> trained_model.similarity('woman', 'man')\\n\",\n    \"          0.73723527\\n\",\n    \"          >>> trained_model.similarity('woman', 'woman')\\n\",\n    \"          1.0\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        return np.dot(unitvec(self.syn0[w1]), unitvec(self.syn0[w2]))\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def init_sims(self):\\n\",\n    \"        if getattr(self, 'syn0norm', None) is None:\\n\",\n    \"            logger.info(\\\"precomputing L2-norms of word weight vectors\\\")\\n\",\n    \"            self.syn0norm = np.vstack(unitvec(vec) for vec in self.syn0).astype(REAL)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def most_similar(self, positive=[], negative=[], topn=10):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        找到topn个最相似的词，即与postive最相似的且与negative最不相似的词\\n\",\n    \"        使用给定词的词向量余弦相似度的平均表示词类比\\n\",\n    \"\\n\",\n    \"        Example::\\n\",\n    \"          >>> model.most_similar(positive=['woman', 'king'], negative=['man'])\\n\",\n    \"          [('queen', 0.50882536), ...]\\n\",\n    \"          >>> model.most_similar('dog')\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        self.init_sims()\\n\",\n    \"        \\n\",\n    \"        if isinstance(positive, str) and not negative:\\n\",\n    \"            # allow calls like most_similar('dog'), as a shorthand for most_similar(['dog'])\\n\",\n    \"            positive = [positive]\\n\",\n    \"\\n\",\n    \"        # add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words\\n\",\n    \"        positive = [(word, 1.0) if isinstance(word, str) else word for word in positive]\\n\",\n    \"        negative = [(word, -1.0) if isinstance(word, str) else word for word in negative]\\n\",\n    \"\\n\",\n    \"        # compute the weighted average of all words\\n\",\n    \"        all_words, mean = set(), []\\n\",\n    \"        for word, weight in positive + negative:\\n\",\n    \"            if word in self.vocab:\\n\",\n    \"                mean.append(weight * unitvec(self.syn0[self.vocab[word].index]))\\n\",\n    \"                all_words.add(self.vocab[word].index)\\n\",\n    \"            else:\\n\",\n    \"                raise KeyError(\\\"word '%s' not in vocabulary\\\" % word)\\n\",\n    \"        if not mean:\\n\",\n    \"            raise ValueError(\\\"cannot compute similarity with no input\\\")\\n\",\n    \"        mean = unitvec(np.asarray(mean).mean(axis=0)).astype(REAL)\\n\",\n    \"\\n\",\n    \"        dists = np.dot(self.syn0norm, mean)\\n\",\n    \"        if not topn:\\n\",\n    \"            return dists\\n\",\n    \"        best = np.argsort(dists)[::-1][:topn + len(all_words)]\\n\",\n    \"        # ignore (don't return) words from the input\\n\",\n    \"        result = [(self.id2word[sim], dists[sim]) for sim in best if sim not in all_words]\\n\",\n    \"        return result[:topn]\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def accuracy(self, questions, restrict_vocab=30000):\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        用于计算模型的准确率(内部评价方法)\\n\",\n    \"\\n\",\n    \"        `questions` 表示一个文件名，可以用\\n\",\n    \"        https://code.google.com/p/word2vec/source/browse/trunk/questions-words.txt for an example.\\n\",\n    \"        的数据进行测试。该文件内每行包含四元组的词，文件包含多个section，每个section分开测试，最终合成结果。\\n\",\n    \"\\n\",\n    \"        `restrict_vocab`用来筛选vocab中词频最高的词。\\n\",\n    \"        \\\"\\\"\\\"\\n\",\n    \"        ok_vocab = dict(sorted(self.vocab.iteritems(), key=lambda item: -item[1].count)[:restrict_vocab])\\n\",\n    \"        ok_index = set(v.index for v in ok_vocab.values())\\n\",\n    \"\\n\",\n    \"        # 计算内部评价的准确率\\n\",\n    \"        def log_accuracy(section):\\n\",\n    \"            correct, incorrect = section['correct'], section['incorrect']\\n\",\n    \"            if correct + incorrect > 0:\\n\",\n    \"                logger.info(\\\"%s: %.1f%% (%i/%i)\\\" %\\n\",\n    \"                    (section['section'], 100.0 * correct / (correct + incorrect),\\n\",\n    \"                    correct, correct + incorrect))\\n\",\n    \"\\n\",\n    \"        sections, section = [], None\\n\",\n    \"        for line_no, line in enumerate(open(questions)):\\n\",\n    \"            if line.startswith(': '):\\n\",\n    \"                # 把上一个section存起来，并计算该section的accuracy\\n\",\n    \"                if section:\\n\",\n    \"                    sections.append(section)\\n\",\n    \"                    log_accuracy(section)\\n\",\n    \"                section = {'section': line.lstrip(': ').strip(), 'correct': 0, 'incorrect': 0}\\n\",\n    \"            else:\\n\",\n    \"                if not section:\\n\",\n    \"                    raise ValueError(\\\"missing section header before line #%i in %s\\\" % (line_no, questions))\\n\",\n    \"                try:\\n\",\n    \"                    # 得到4个词\\n\",\n    \"                    a, b, c, expected = [word.lower() for word in line.split()]\\n\",\n    \"                except:\\n\",\n    \"                    logger.info(\\\"skipping invalid line #%i in %s\\\" % (line_no, questions))\\n\",\n    \"                # 去掉(a, b, c, expected)中包含OOV的元组\\n\",\n    \"                if a not in ok_vocab or b not in ok_vocab or c not in ok_vocab or expected not in ok_vocab:\\n\",\n    \"                    logger.debug(\\\"skipping line #%i with OOV words: %s\\\" % (line_no, line))\\n\",\n    \"                    continue\\n\",\n    \"\\n\",\n    \"                ignore = set(self.vocab[v].index for v in [a, b, c])\\n\",\n    \"                predicted = None\\n\",\n    \"                # 找到positive为(b, c)且negative为a的最相似的词\\n\",\n    \"                # 如果该词为expected，则正确数累加一，否则错误数累加一\\n\",\n    \"                for index in np.argsort(self.most_similar(positive=[b, c], negative=[a], topn=False))[::-1]:\\n\",\n    \"                    if index in ok_index and index not in ignore:\\n\",\n    \"                        predicted = self.id2word[index]\\n\",\n    \"                        if predicted != expected:\\n\",\n    \"                            logger.debug(\\\"%s: expected %s, predicted %s\\\" % (line.strip(), expected, predicted))\\n\",\n    \"                        break\\n\",\n    \"                section['correct' if predicted == expected else 'incorrect'] += 1\\n\",\n    \"        if section:\\n\",\n    \"            # 保存最后一个section\\n\",\n    \"            sections.append(section)\\n\",\n    \"            log_accuracy(section)\\n\",\n    \"\\n\",\n    \"        total = {'section': 'total', 'correct': sum(s['correct'] for s in sections), 'incorrect': sum(s['incorrect'] for s in sections)}\\n\",\n    \"        log_accuracy(total)\\n\",\n    \"        sections.append(total)\\n\",\n    \"        return sections\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2021-01-29 19:53:07,421 : MainThread : INFO : finished training model\\n\",\n      \"2021-01-29 19:53:07,425 : MainThread : INFO : built huffman tree with maximum node depth 5\\n\",\n      \"2021-01-29 19:53:07,427 : MainThread : INFO : training model with 2 workers on 19 vocabulary and 5 features\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[['human', 'interface', 'computer'], ['survey', 'user', 'computer', 'system', 'response', 'time'], ['eps', 'user', 'interface', 'system'], ['system', 'human', 'system', 'eps'], ['user', 'response', 'time'], ['trees'], ['graph', 'trees'], ['graph', 'minors', 'trees'], ['graph', 'minors', 'survey'], ['I', 'like', 'graph', 'and', 'stuff'], ['I', 'like', 'trees', 'and', 'stuff'], ['Sometimes', 'I', 'build', 'a', 'graph'], ['Sometimes', 'I', 'build', 'trees']]\\n\",\n      \"------------------------------------------------------------\\n\",\n      \"[<__main__.Vocab object at 0x7fb1680839b0>, <__main__.Vocab object at 0x7fb168083978>, <__main__.Vocab object at 0x7fb168083860>, <__main__.Vocab object at 0x7fb1680838d0>, <__main__.Vocab object at 0x7fb168083908>, <__main__.Vocab object at 0x7fb168083898>, <__main__.Vocab object at 0x7fb1680837f0>, <__main__.Vocab object at 0x7fb1680834a8>, <__main__.Vocab object at 0x7fb1680834e0>, <__main__.Vocab object at 0x7fb168083518>, <__main__.Vocab object at 0x7fb168083438>, <__main__.Vocab object at 0x7fb1680839e8>, <__main__.Vocab object at 0x7fb168083a20>, <__main__.Vocab object at 0x7fb168083a90>, <__main__.Vocab object at 0x7fb168083a58>, <__main__.Vocab object at 0x7fb168083ac8>, <__main__.Vocab object at 0x7fb168083b00>, <__main__.Vocab object at 0x7fb168083ba8>, <__main__.Vocab object at 0x7fb168083b38>] <class 'list'>\\n\",\n      \"self.neg_labels >>: [1. 0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]\\n\",\n      \"word_count: [0]\\n\",\n      \"total_words: 48\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2021-01-29 19:53:08,461 : Thread-4 : INFO : PROGRESS: at 36.91% words, alpha 0.01654, 8575 words/s, loss 0.37933202\\n\",\n      \"2021-01-29 19:53:09,469 : Thread-4 : INFO : PROGRESS: at 73.85% words, alpha 0.00731, 8683 words/s, loss 0.37614270\\n\",\n      \"2021-01-29 19:53:09,962 : MainThread : INFO : reached the end of input; waiting to finish 4 outstanding jobs\\n\",\n      \"2021-01-29 19:53:10,170 : MainThread : INFO : training on 24000 words took 2.7s, 8752 words/s\\n\",\n      \"2021-01-29 19:53:10,170 : MainThread : INFO : precomputing L2-norms of word weight vectors\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"graph similar: trees\\n\",\n      \"elapsed time:2.7484989166259766s\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/usr/local/anaconda2/envs/pt-tf-env/lib/python3.6/site-packages/ipykernel_launcher.py:519: FutureWarning: arrays to stack must be passed as a \\\"sequence\\\" type such as list or tuple. Support for non-sequence iterables such as generators is deprecated as of NumPy 1.16 and will raise an error in the future.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"if __name__ == '__main__':\\n\",\n    \"#     if not os.path.exists('../data'):\\n\",\n    \"#         os.mkdir('../data')\\n\",\n    \"#     # 训练语料\\n\",\n    \"#     text8 = Text8Corpus('../data/text8.zip', sent_len=20, sent_num=200)\\n\",\n    \"#     # 训练模型\\n\",\n    \"#     logging.info(\\\"start training model\\\")\\n\",\n    \"\\n\",\n    \"    # skip-gram与negative sampling\\n\",\n    \"    # model = Word2Vec(sentences=text8, size=100, alpha=0.025,\\n\",\n    \"    #             window=3, min_count=5, seed=1, iters=1, \\n\",\n    \"    #             workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \\n\",\n    \"    #             sort_vocab=True)\\n\",\n    \"\\n\",\n    \"    # cbow与negative sampling\\n\",\n    \"    # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \\n\",\n    \"    # \\t\\t\\t window=3, min_count=5, seed=1, iters=1, \\n\",\n    \"    # \\t\\t\\t workers=1, min_alpha=0.0001, hs=0, sg=1, negative=10, \\n\",\n    \"    # \\t\\t\\t sort_vocab=True)\\n\",\n    \"\\n\",\n    \"    # cbow与hierarchical softmax\\n\",\n    \"    # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \\n\",\n    \"    # \\t\\t\\t window=3, min_count=5, seed=1, iters=1, \\n\",\n    \"    # \\t\\t\\t workers=1, min_alpha=0.0001, hs=1, sg=0, negative=10, \\n\",\n    \"    # \\t\\t\\t sort_vocab=True)\\n\",\n    \"\\n\",\n    \"    # skip-gram与hierarchical softmax\\n\",\n    \"    # model = Word2Vec(sentences=text8, size=100, alpha=0.025, \\n\",\n    \"    # \\t\\t\\t window=3, min_count=5, seed=1, iters=1, \\n\",\n    \"    # \\t\\t\\t workers=1, min_alpha=0.0001, hs=1, sg=1, negative=10, \\n\",\n    \"    # \\t\\t\\t sort_vocab=True)\\n\",\n    \"\\n\",\n    \"    logging.info(\\\"finished training model\\\")\\n\",\n    \"\\n\",\n    \"    # 简单例子测试\\n\",\n    \"    test_corpus = (\\\"\\\"\\\"human interface computer\\n\",\n    \"                    survey user computer system response time\\n\",\n    \"                    eps user interface system\\n\",\n    \"                    system human system eps\\n\",\n    \"                    user response time\\n\",\n    \"                    trees\\n\",\n    \"                    graph trees\\n\",\n    \"                    graph minors trees\\n\",\n    \"                    graph minors survey\\n\",\n    \"                    I like graph and stuff\\n\",\n    \"                    I like trees and stuff\\n\",\n    \"                    Sometimes I build a graph\\n\",\n    \"                    Sometimes I build trees\\\"\\\"\\\").split(\\\"\\\\n\\\")\\n\",\n    \"    start = time.time()\\n\",\n    \"    test_corpus = [_.split() for _ in test_corpus]\\n\",\n    \"    print(test_corpus)\\n\",\n    \"    print(\\\"---\\\"*20)\\n\",\n    \"    model = Word2Vec(sentences=test_corpus, size=5, alpha=0.025, \\n\",\n    \"                    window=5, min_count=1, seed=1, iters=500, \\n\",\n    \"                    workers=2, min_alpha=0.0001, hs=1, sg=1, negative=10, \\n\",\n    \"                    sort_vocab=True)\\n\",\n    \"    similar = model.most_similar('graph', topn=3)[0][0]\\n\",\n    \"    print(\\\"graph similar:\\\", similar)\\n\",\n    \"    print('elapsed time:{}s'.format(time.time() - start))\\n\",\n    \"    assert similar == 'trees'\\n\",\n    \"\\n\",\n    \"    # 测试模型，内部评价\\n\",\n    \"    # logging.info(\\\"start evaluate model\\\")\\n\",\n    \"    # model.accuracy('../data/questions-words.txt')\\n\",\n    \"    # logging.info(\\\"finished evaluate model\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.6.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 2\n}\n"
  },
  {
    "path": "word2vector/word2vec/word2vec.py",
    "content": "# -*- encoding:utf8 -*-\nfrom __future__ import print_function\nfrom __future__ import division\nimport numpy as np\nimport json\nimport pickle\nimport wget\nimport os\nimport zipfile\nimport heapq\nimport time\nimport itertools\nimport threading\nimport numpy.random as random\nimport sys\nimport scipy\nimport scipy.sparse\nimport math\nfrom multiprocessing.pool import ThreadPool\nfrom Queue import Queue\nfrom numpy import float32 as REAL\n\nimport logging\nlogging.basicConfig(format='%(asctime)s : %(threadName)s : %(levelname)s : %(message)s', level=logging.INFO)\nlogger = logging.getLogger('word2vec')\n\nfrom utils import *\n\n\"\"\"\n# Introduction\n\nA simple code version for word2vec\n\n# Reference\n[1] https://www.cnblogs.com/pinard/p/7243513.html\n[2] http://www.cnblogs.com/pinard/p/7249903.html\n[3] https://github.com/RaRe-Technologies/gensim/blob/develop/gensim/models/word2vec.py\n[4] https://github.com/klb3713/word2vec/blob/master/python/word2vec.py\n\"\"\"\n# ----- word2vec -----\n# gensim里用的cython版本。\n# 本来用cython版本的train_sentence会快很多，不过主要介绍原理，所以都用python介绍。\n# Word2Vec类中使用的多线程可以在一定程度上加快速度。\ndef train_sentence_sg(model, sentence, alpha, work=None):\n\t\"\"\"\n\tskip-gram\n\n\t`model` 训练的词向量模型\n\t`sentence` 一个词列表，表示一个句子\n\t`alpha` 学习率\n\t\"\"\"\n\ttotal_loss = 0.\n\tcount = 1\n\t# 遍历每个句子的词，该词`word`作为中心词\n\tfor pos, word in enumerate(sentence):\n\t\tif word is None:\n\t\t\t# 跳过OOV的词\n\t\t\tcontinue\n\t\t# 设定一个随机的窗口大小，最终真正的单侧窗口大小为window - reduced_window\n\t\treduced_window = model.random.randint(model.window)\n\n\t\t# 遍历两侧词窗内的所有词，分别预测\n\t\tstart = max(0, pos - model.window + reduced_window)\n\t\tfor pos2, word2 in enumerate(sentence[start : pos + model.window + 1 - reduced_window], start):\n\t\t\tif pos2 == pos or word2 is None:\n\t\t\t\t# 跳过OOV的词以及中心词`word`\n\t\t\t\tcontinue\n\t\t\t# 得到输入词向量v_w\n\t\t\t# 此处本应该是`word`而不是`word2`，即求P(word2|word)的极大似然，\n\t\t\t# 不过这样的话，输入的投影矩阵syn0在每个词窗下只能更新一个词多次，\n\t\t\t# 因此此处改成求对称的P(word|word2)的极大似然，这样可以让输入的投影矩阵syn0在每个词窗下更新多个词\n\t\t\tl1 = model.syn0[word2.index]\n\n\n\t\t\tif model.hs >= 1:\n\t\t\t\t# `outer((1 - word.code - fa), l1)`为关于l2a的梯度\n\t\t\t\t# `dot((1 - word.code - fa), l2a)`为关于l1的梯度\n\n\t\t\t\t# `word.point`是一个array，表示抽取出所有的当前叶子结点的结点路径\n\t\t\t\t# `l2a`是一个矩阵，shape为(codelen, layer1_size)\n\t\t\t\tl2a = model.syn1[word.point]\n\t\t\t\t# 隐层输出，`fa`的shape为(1, codelen)，每个值表示code预测为1（向树右侧走）的概率\n\t\t\t\tfa = expit(np.dot(l1, l2a.T))\n\t\t\t\t# shape为(1, codelen)\n\t\t\t\tga = (1 - word.code - fa) * alpha  # vector of error gradients multiplied by the learning rate\n\t\t\t\t# 更新输出矩阵，shape为(codelen, layer1_size)\n\t\t\t\tmodel.syn1[word.point] += np.outer(ga, l1)  # learn hidden -> output\n\n\t\t\t\t# 更新输入矩阵\n\t\t\t\tl1 += np.dot(ga, l2a)\n\n\t\t\t\t# 计算loss\n\t\t\t\tsgn = (-1.0)**word.code  # ch function, 0-> 1, 1 -> -1\n\t\t\t\tloss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\n\t\t\t\ttotal_loss += loss / len(word.code)\n\t\t\t\tcount += 1\n\t\t\t\tmodel.running_training_loss += loss\n\t\t\telse:\n\t\t\t\t# `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\n\t\t\t\t# `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\n\n\t\t\t\t# 从构建的`cum_table`中找到`negative`个负样本\n\t\t\t\tneg_indices = [word.index]\n\t\t\t\twhile len(neg_indices) < model.negative + 1:\n\t\t\t\t\tw = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\n\t\t\t\t\tif w != word.index:\n\t\t\t\t\t\tneg_indices.append(w)\n\t\t\t\t# `l2b`是一个矩阵，shape为(negative+1, layer1_size)\n\t\t\t\tl2b = model.syn1neg[neg_indices]\n\t\t\t\t# shape为(1, negative+1)\n\t\t\t\tprod_term = np.dot(l1, l2b.T)\n\t\t\t\t# shape为(1, negative+1)\n\t\t\t\tfb = expit(prod_term)  # propagate hidden -> output\n\t\t\t\t# shape为(1, negative+1)\n\t\t\t\tgb = (model.neg_labels - fb) * alpha  # vector of error gradients multiplied by the learning rate\n\t\t\t\t# 更新输出矩阵，shape为(negative+1, layer1_size)\n\t\t\t\tmodel.syn1neg[neg_indices] += np.outer(gb, l1)  # learn hidden -> output\n\n\t\t\t\t# 更新输入矩阵\n\t\t\t\tl1 += np.dot(gb, l2b)  # save error\n\n\t\t\t\t# 计算loss\n\t\t\t\tloss1 = -sum(np.log(expit(-1 * prod_term[1:]))) \n\t\t\t\tloss2 = -np.log(expit(prod_term[0]))\n\t\t\t\ttotal_loss += (loss1 + loss2) / len(prod_term)\n\t\t\t\tcount += 1\n\t\t\t\tmodel.running_training_loss += loss1  # for the sampled words\n\t\t\t\tmodel.running_training_loss += loss2  # for the output word\n\n\t# 返回句子中的非OOV的词的个数\n\treturn len([word for word in sentence if word is not None]), 1.0 * total_loss / count\n\n\ndef train_sentence_cbow(model, sentence, alpha, work=None, cbow_mean=True):\n\t\"\"\"\n\tcbow\n\n\t`model` 训练的词向量模型\n\t`sentence` 一个词列表，表示一个句子\n\t`alpha` 学习率\n\t\"\"\"\n\ttotal_loss = 0.\n\tcount = 1\n\tfor pos, word in enumerate(sentence):\n\t\tif word is None:\n\t\t\tcontinue\n\t\treduced_window = model.random.randint(model.window)\n\t\tstart = max(0, pos - model.window + reduced_window)\n\t\twindow_pos = enumerate(sentence[start:(pos + model.window + 1 - reduced_window)], start)\n\t\tword2_indices = [word2.index for pos2, word2 in window_pos if (word2 is not None and pos2 != pos)]\n\t\t# (1, layer1_size)\n\t\tl1 = np.sum(model.syn0[word2_indices], axis=0)\n\t\tif word2_indices and cbow_mean:\n\t\t\tl1 /= len(word2_indices)\n\n\t\tif model.hs >= 1:\n\t\t\t# `outer((1 - word.code - fa), l1)`为关于l2a的梯度\n\t\t\t# `dot((1 - word.code - fa), l2a)`为关于l1的梯度\n\n\t\t\t# shape为(codelen, layer1_size)\n\t\t\tl2a = model.syn1[word.point]\n\t\t\t# shape为(1, codelen)\n\t\t\tfa = expit(np.dot(l1, l2a.T))\n\t\t\t# shape为(1, codelen)\n\t\t\tga = (1 - word.code - fa) * alpha  # vector of error gradients multiplied by the learning rate\n\t\t\t# 更新输出矩阵，shape为(codelen, layer1_size)\n\t\t\tmodel.syn1[word.point] += np.outer(ga, l1)  # learn hidden -> output\n\n\t\t\t# 更新输入矩阵\n\t\t\tif word2_indices and cbow_mean:\n\t\t\t\tneu1e = np.dot(ga, l2a) / len(word2_indices)\n\t\t\telse:\n\t\t\t\tneu1e = np.dot(ga, l2a)\n\t\t\tfor i in word2_indices:\n\t\t\t\tmodel.syn0[i] += neu1e\n\n\t\t\t# 计算loss\n\t\t\tsgn = (-1.0)**word.code  # ch function, 0-> 1, 1 -> -1\n\t\t\tloss = sum(-np.log(expit(sgn * np.dot(l1, l2a.T))))\n\t\t\ttotal_loss += loss / len(word.code)\n\t\t\tcount += 1\n\t\t\tmodel.running_training_loss += loss\n\t\telse:\n\t\t\t# `outer((model.neg_labels - fb), l1)`为关于l2a的梯度\n\t\t\t# `dot((model.neg_labels - fb), l2a)`为关于l1的梯度\n\n\t\t\t# 从构建的`cum_table`中找到`negative`个负样本\n\t\t\tneg_indices = [word.index]\n\t\t\twhile len(neg_indices) < model.negative + 1:\n\t\t\t\tw = model.cum_table.searchsorted(model.random.randint(model.cum_table[-1]))\n\t\t\t\tif w != word.index:\n\t\t\t\t\tneg_indices.append(w)\n\t\t\t# `l2b`是一个矩阵，shape为(negative+1, layer1_size)\n\t\t\tl2b = model.syn1neg[neg_indices]\n\t\t\t# shape为(1, negative+1)\n\t\t\tprod_term = np.dot(l1, l2b.T)\n\t\t\t# shape为(1, negative+1)\n\t\t\tfb = expit(prod_term)  # propagate hidden -> output\n\t\t\t# shape为(1, negative+1)\n\t\t\tgb = (model.neg_labels - fb) * alpha  # vector of error gradients multiplied by the learning rate\n\t\t\t# 更新输出矩阵，shape为(negative+1, layer1_size)\n\t\t\tmodel.syn1neg[neg_indices] += np.outer(gb, l1)  # learn hidden -> output\n\n\t\t\t# 更新输入矩阵\n\t\t\tif word2_indices and cbow_mean:\n\t\t\t\tneu1e = np.dot(gb, l2b) / len(word2_indices)\n\t\t\telse:\n\t\t\t\tneu1e = np.dot(gb, l2b)\n\t\t\tfor i in word2_indices:\n\t\t\t\tmodel.syn0[i] += neu1e\n\n\t\t\t# 计算loss\n\t\t\tloss1 = -sum(np.log(expit(-1 * prod_term[1:])))\n\t\t\tloss2 = -np.log(expit(prod_term[0]))\n\t\t\ttotal_loss += (loss1 + loss2) / len(prod_term)\n\t\t\tcount += 1\n\t\t\tmodel.running_training_loss += loss1  # for the sampled words\n\t\t\tmodel.running_training_loss += loss2  # for the output word\n\n\n\treturn len([word for word in sentence if word is not None]), 1.0 * total_loss / count\n\n\nclass Vocab(object):\n\t\"\"\"\n\t\t用来存储词汇，如果用hs，则可以看成一个树结点\n\t\"\"\"\n\tdef __init__(self, **kwargs):\n\t\t\"\"\"\n\t\t`count` 词频\n\t\t`index` 索引\n\t\t`left` 如果用hs，则表示左孩子\n\t\t`right` 如果用hs，则表示右孩子\n\t\t`code` 叶子结点的编码路径（从根结点到叶子结点的huffman编码）\n\t\t`point` 叶子结点的结点路径（从根结点到叶子结点经过的结点索引）\n\t\t\"\"\"\n\t\tself.count = 0\n\t\tself.index = -1\n\t\tself.left = None\n\t\tself.right = None\n\t\tself.code = []\n\t\tself.point = []\n\t\tself.__dict__.update(kwargs)\n\n\tdef __lt__(self, vocab):\n\t\treturn self.count < vocab.count\n\n\tdef __str__(self):\n\t\treturn '<' + ', '.join([ '{}:{}'.format(\n\t\t\t(_, self.__dict__[_]) for _ in self.__dict__\n\t\t\tif not self.__dict__[_].startswith('_'))]) + '>'\n\n\nclass Word2Vec(SaveAndLoad):\n\tdef __init__(self, sentences=None, size=100, alpha=0.025, \n\t\t\t\t window=5, min_count=5, seed=1, iters=5, \n\t\t\t\t workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \n\t\t\t\t sort_vocab=True):\n\t\t\"\"\"\n\t\tWord2Vec模型，其中sentences可以不给定，表示不训练模型。\n\t\t此时初始化的模型可以进行加载模型等操作\n\n\t\t`sentences` 输入的用于训练的句子集合，可以是迭代器，也可以是一般的list等\n\t\t`size` 词向量维度，也就是训练的时候隐变量的维度\n\t\t`window` 一句话中的当前词与上下文词的最大距离，指单侧词窗\n\t\t`alpha` 初始学习率，学习过程中随着呈线性下降趋势\n\t\t`seed` 随机数种子\n\t\t`iters` 迭代次数\n\t\t`min_count` 用于过滤的最小词频\n\t\t`workers` CPU多核的时候可以使用多线程来加快训练\n\t\t`min_alpha` 最小学习率\n\t\t`hs` 是否使用hierarchical softmax，当hs>=1时表示使用hs，否则为negative sampling\n\t\t`sg` 是否使用skip-gram，如果sg>=1表示使用sg，否则为cbow\n\t\t`negative` 表示负样本个数，用于hs<=0的情况\n\t\t`sort_vocab` 表示是否对id2word按词频从高到低排序\n\n\t\t\"\"\"\n\t\tself.window = int(window)\n\t\tself.size = int(size)\n\t\tself.min_count = int(min_count)\n\t\tself.alpha = alpha\n\t\tself.min_alpha = min_alpha\n\t\tself.epochs = iters\n\t\tself.seed = seed\n\t\tself.random = random.RandomState(seed)\n\t\tself.workers = int(workers)\n\t\tself.hs = int(hs)\n\t\tself.sg = int(sg)\n\t\tself.negative = int(negative)\n\t\tself.sort_vocab = sort_vocab\n\t\tself.cum_table = None # negative sampling时才用到\n\t\tself.vocab = {}\n\t\tself.id2word = []\n\t\tself.syn0 = [] # 即所学的词向量\n\t\tself.syn1 = [] # 用于hs\n\t\tself.syn1neg = [] # 用于负采样\n\t\tself.running_training_loss = 0.\n\t\tself.layer1_size = self.size\n\t\tif sentences is not None:\n\t\t\tself.build_vocab(sentences)\n\t\t\tif self.epochs is not None and self.epochs > 0:\n\t\t\t\t# 重复n次corpus语料\n\t\t\t\tsentences = RepeatCorpusNTimes(sentences, self.epochs)\n\t\t\tself.train(sentences)\n\n\n\tdef get_latest_training_loss(self):\n\t\treturn self.running_training_loss\n\n\n\tdef __reset_vocab(self):\n\t\t\"\"\"\n\t\t重置词典和词表\n\t\t\"\"\"\n\t\tself.vocab = {}\n\t\tself.word_list = []\n\n\tdef build_vocab(self, sentences):\n\t\t\"\"\"\n\t\t构建词典，筛除低频词，并给每个词赋予索引index\n\t\t\"\"\"\n\t\t# 统计词频\n\t\tvocab = {}\n\t\tfor sentence in sentences:\n\t\t\tfor word in sentence:\n\t\t\t\tvocab.setdefault(word, Vocab(count=0))\n\t\t\t\tvocab[word].count += 1\n\n\t\t# 重置词典\n\t\tself.__reset_vocab()\n\t\t# 构建词典\n\t\tfor word, v in vocab.iteritems():\n\t\t\tif v.count >= self.min_count:\n\t\t\t\tv.index = len(self.vocab)\n\t\t\t\tself.vocab[word] = v\n\t\t\t\tself.id2word.append(word)\n\t\tif self.sort_vocab:\n\t\t\tself.id2word = list(sorted(self.id2word, key=lambda x: self.vocab[x].count, reverse=True))\n\t\t\tfor i, word in enumerate(self.id2word):\n\t\t\t\tself.vocab[word].index = i\n\t\tif self.hs >= 1:\n\t\t\tself.create_binary_tree()\n\t\telse:\n\t\t\tself.make_cum_table()\n\t\tself.reset_weights()\n\n\tdef reset_weights(self):\n\t\t\"\"\"\n\t\t初始化（重置）两个投影矩阵。\n\n\t\tsyn0用于输入的词向量矩阵，\n\t\tsyn1在输出为hs的时候为tree中每个内部结点\n\t\t（包括根结点共len(vocab)-1个）的向量矩阵。\n\t\t\"\"\"\n\t\tself.syn0 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n\t\tself.syn0 += (self.random.rand(len(self.vocab), self.layer1_size) - 0.5) / self.layer1_size\n\t\tif self.hs >= 1:\n\t\t\t# syn1的索引对应的不是词，而是huffman树内部结点\n\t\t\t# 因此syn0与syn1不能直接结合\n\t\t\tself.syn1 = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n\t\telse:\n\t\t\t# syn0与syn1neg的索引对应的词一致，可以直接结合（如相加求平均）\n\t\t\tself.syn1neg = zeros_aligned((len(self.vocab), self.layer1_size), dtype=REAL)\n\t\tself.syn0norm = None\n\n\n\tdef make_cum_table(self, power=0.75, domain=2**31 - 1):\n\t\t\"\"\"\n\t\t构建用于negative sampling的cumulative table\n\n\t\t`power` 表示压缩值（论文中的值），可以有效防止负采样时候的长尾效应\n\t\t`domain` 表示采样点的范围，如果归一化到概率，则是[0, 1]，用于轮盘采样\n\t\t\"\"\"\n\t\tvocab_size = len(self.id2word)\n\t\tself.cum_table = np.zeros(vocab_size, dtype=np.uint32)\n\t\t# compute sum of all power (Z in paper)\n\t\ttrain_words_pow = 0.0\n\t\tfor word_index in xrange(vocab_size):\n\t\t\ttrain_words_pow += self.vocab[self.id2word[word_index]].count ** power\n\t\tcumulative = 0.0\n\t\tfor word_index in xrange(vocab_size):\n\t\t\tcumulative += self.vocab[self.id2word[word_index]].count ** power\n\t\t\tself.cum_table[word_index] = round(cumulative / train_words_pow * domain)\n\t\tif len(self.cum_table) > 0:\n\t\t\tassert self.cum_table[-1] == domain\n\n\n\tdef create_binary_tree(self):\n\t\t\"\"\"\n\t\t\t构建huffman树，用于hierarchical softmax\n\t\t\t叶子结点表示词汇。\n\t\t\t内部结点包含该路径下的词频和与索引（该索引对应矩阵syn1）\n\t\t\t叶子结点包含对应词汇的词频与索引（该索引对应矩阵syn0）\n\t\t\t高频词出现在较短的路径上。\n\t\t\t叶子结点共`vocab_size`个，而内部结点（包含root结点）共`vocab_size-1`个\n\t\t\"\"\"\n\t\theap = self.vocab.values()\n\t\theapq.heapify(heap)\n\t\t# 构建huffman二叉树，每次取词频最高的结点构成新结点\n\t\tfor idx in xrange(len(self.vocab) - 1):\n\t\t\tmin1, min2 = heapq.heappop(heap), heapq.heappop(heap)\n\t\t\theapq.heappush(heap, Vocab(count=min1.count + min2.count, \n\t\t\t\t\t  index=idx + len(self.vocab), left=min1, right=min2))\n\t\t# 此时heap里只有一个结点，即根结点\n\t\tif heap:\n\t\t\t# max_depth记录树最大深度\n\t\t\t# stack中三个元素分别代表：当前结点、当前结点的编码路径、当前结点的结点路径\n\t\t\tmax_depth, stack = 0, [(heap[0], [], [])]\n\t\t\t# list可以当做stack用\n\t\t\twhile stack:\n\t\t\t\tnode, codes, points = stack.pop()\n\t\t\t\t# 表示一个叶子结点\n\t\t\t\tif node.index < len(self.vocab):\n\t\t\t\t\tnode.code = codes\n\t\t\t\t\tnode.point = points\n\t\t\t\t\tmax_depth = max(len(codes), max_depth)\n\t\t\t\telse:\n\t\t\t\t\t# 表示一个内部结点\n\t\t\t\t\t# 编码路径由于是二进制，可以用unit8节省内存\n\t\t\t\t\t# 这里讲内部结点的index减去一个vocab的大小，是为了保持内部结点的索引对应矩阵syn1的索引（从0开始）\n\t\t\t\t\tpoints = np.asarray(list(points) + [node.index - len(self.vocab)], dtype=np.uint32)\n\t\t\t\t\tstack.append((node.left, np.asarray(list(codes) + [0], dtype=np.uint8), points))\n\t\t\t\t\tstack.append((node.right, np.asarray(list(codes) + [1], dtype=np.uint8), points))\n\t\tlogger.info(\"built huffman tree with maximum node depth %i\" % max_depth)\n\t\tself.max_depth = max_depth\n\n\n\tdef train(self, sentences, total_words=None, word_count=0, chunksize=100):\n\t\t\"\"\"\n\t\tUpdate the model's neural weights from a sequence of sentences (can be a once-only generator stream).\n\t\tEach sentence must be a list of utf8 strings.\n\t\t更新词向量权重\n\t\t每输入一个句子，表示一次迭代更新。\n\n\t\t`sentences` 输入的用于训练的句子集合\n\t\t`total_words` 总词频和\n\t\t`word_count` 词种类数\n\t\t`chunksize` 多线程的时候，每个线程一次性处理或被分配到的句子数\n\t\t\"\"\"\n\t\tlogger.info(\"training model with %i workers on %i vocabulary and %i features\" % (self.workers, len(self.vocab), self.layer1_size))\n\n\t\tif not self.vocab:\n\t\t\traise RuntimeError(\"you must first build vocabulary before training the model\")\n\n\t\tself.neg_labels = []\n\t\tif self.negative >= 1:\n\t\t\t# 负样本标签\n\t\t\tself.neg_labels = np.zeros(self.negative + 1)\n\t\t\tself.neg_labels[0] = 1.\n\n\t\t# 用来记录时间的起始与打log的判定时间，\n\t\t# `next_report`存到list是因为需要在多个线程内作为类对象被访问，`word_count`同理\n\t\tstart, next_report = time.time(), [1.0]\n\t\tword_count, total_words = [word_count], total_words or sum(v.count for v in self.vocab.itervalues())\n\t\t# 考虑缓冲区\n\t\tjobs = Queue(maxsize=2 * self.workers)\n\t\t# 因为有共享变量（如`word_count`），所以加锁\n\t\tlock = threading.Lock()\n\n\t\tdef worker_train():\n\t\t\t\"\"\"Train the model, lifting lists of sentences from the jobs queue.\"\"\"\n\t\t\t# 多线程配给的memory\n\t\t\twork = zeros_aligned(self.layer1_size, dtype=REAL)\n\n\t\t\twhile True:\n\t\t\t\t# 一个job就是一个chunksize条句子的数据集\n\t\t\t\tjob = jobs.get()\n\t\t\t\tif job is None:  # 数据读完，退出\n\t\t\t\t\tbreak\n\t\t\t\t# 在开始训练之前先减小训练速率\n\t\t\t\talpha = max(self.min_alpha, self.alpha * (1 - 1.0 * word_count[0] / total_words / self.epochs))\n\t\t\t\t# 训练参数；统计当前job训练的词数，OOV的词不算\n\t\t\t\tif self.sg >= 1:\n\t\t\t\t\tfunc = train_sentence_sg\n\t\t\t\telse:\n\t\t\t\t\tfunc = train_sentence_cbow\n\t\t\t\tjob_words, total_loss = np.sum([func(self, sentence, alpha, work) for sentence in job], axis=0)\n\t\t\t\ttotal_loss /= len(job)\n\t\t\t\t# 请求锁，用来更新`word_count`\n\t\t\t\twith lock:\n\t\t\t\t\tword_count[0] += job_words\n\t\t\t\t\telapsed = time.time() - start\n\t\t\t\t\t# 防止一直打log\n\t\t\t\t\tif elapsed >= next_report[0]:\n\t\t\t\t\t\tlogger.info(\"PROGRESS: at %.2f%% words, alpha %.05f, %.0f words/s, loss %.08f\" %\n\t\t\t\t\t\t\t(100.0 * word_count[0] / total_words / self.epochs, alpha, word_count[0] / elapsed if elapsed else 0.0, total_loss))\n\t\t\t\t\t\t# 可以让log保持一秒及一秒以上打一次\n\t\t\t\t\t\tnext_report[0] = elapsed + 1.0\n\n\t\tworkers = [threading.Thread(target=worker_train) for _ in xrange(self.workers)]\n\t\tfor thread in workers:\n\t\t\tthread.daemon = True  # 可以更便捷的用ctrl+c中断程序\n\t\t\tthread.start()\n\n\t\t# 把输入的string变成Vocab类，对于OOV则用None表示，并把数据拆分成多个job，存到queue里\n\t\tno_oov = ([self.vocab.get(word, None) for word in sentence] for sentence in sentences)\n\t\tfor job_no, job in enumerate(grouper(no_oov, chunksize)):\n\t\t\tlogger.debug(\"putting job #%i in the queue, qsize=%i\" % (job_no, jobs.qsize()))\n\t\t\tjobs.put(job)\n\t\tlogger.info(\"reached the end of input; waiting to finish %i outstanding jobs\" % jobs.qsize())\n\t\t# 再补充`self.workers`个jobs，用来告知线程数据读取完成\n\t\tfor _ in xrange(self.workers):\n\t\t\tjobs.put(None)\n\n\t\tfor thread in workers:\n\t\t\tthread.join()\n\n\t\telapsed = time.time() - start\n\t\tlogger.info(\"training on %i words took %.1fs, %.0f words/s\" %\n\t\t\t(word_count[0], elapsed, word_count[0] / elapsed if elapsed else 0.0))\n\n\t\treturn word_count[0]\n\n\t# ---辅助函数---\n\tdef __getitem__(self, word):\n\t\t\"\"\"\n\t\t返回word对应的词向量\n\t\tExample::\n\t\t  >>> trained_model['woman']\n\t\t  array([ -1.40128313e-02, ...]\n\t\t\"\"\"\n\t\treturn self.syn0[self.vocab[word].index]\n\n\tdef __contains__(self, word):\n\t\treturn word in self.vocab\n\n\n\tdef similarity(self, w1, w2):\n\t\t\"\"\"\n\t\t计算词w1与w2的余弦相似度\n\t\tExample::\n\t\t  >>> trained_model.similarity('woman', 'man')\n\t\t  0.73723527\n\t\t  >>> trained_model.similarity('woman', 'woman')\n\t\t  1.0\n\t\t\"\"\"\n\t\treturn np.dot(unitvec(self.syn0[w1]), unitvec(self.syn0[w2]))\n\n\n\tdef init_sims(self):\n\t\tif getattr(self, 'syn0norm', None) is None:\n\t\t\tlogger.info(\"precomputing L2-norms of word weight vectors\")\n\t\t\tself.syn0norm = np.vstack(unitvec(vec) for vec in self.syn0).astype(REAL)\n\n\n\tdef most_similar(self, positive=[], negative=[], topn=10):\n\t\t\"\"\"\n\t\t找到topn个最相似的词，即与postive最相似的且与negative最不相似的词\n\t\t使用给定词的词向量余弦相似度的平均表示词类比\n\n\t\tExample::\n\t\t  >>> model.most_similar(positive=['woman', 'king'], negative=['man'])\n\t\t  [('queen', 0.50882536), ...]\n\t\t  >>> model.most_similar('dog')\n\t\t\"\"\"\n\t\tself.init_sims()\n\n\t\tif isinstance(positive, basestring) and not negative:\n\t\t\t# allow calls like most_similar('dog'), as a shorthand for most_similar(['dog'])\n\t\t\tpositive = [positive]\n\n\t\t# add weights for each word, if not already present; default to 1.0 for positive and -1.0 for negative words\n\t\tpositive = [(word, 1.0) if isinstance(word, basestring) else word for word in positive]\n\t\tnegative = [(word, -1.0) if isinstance(word, basestring) else word for word in negative]\n\n\t\t# compute the weighted average of all words\n\t\tall_words, mean = set(), []\n\t\tfor word, weight in positive + negative:\n\t\t\tif word in self.vocab:\n\t\t\t\tmean.append(weight * unitvec(self.syn0[self.vocab[word].index]))\n\t\t\t\tall_words.add(self.vocab[word].index)\n\t\t\telse:\n\t\t\t\traise KeyError(\"word '%s' not in vocabulary\" % word)\n\t\tif not mean:\n\t\t\traise ValueError(\"cannot compute similarity with no input\")\n\t\tmean = unitvec(np.asarray(mean).mean(axis=0)).astype(REAL)\n\n\t\tdists = np.dot(self.syn0norm, mean)\n\t\tif not topn:\n\t\t\treturn dists\n\t\tbest = np.argsort(dists)[::-1][:topn + len(all_words)]\n\t\t# ignore (don't return) words from the input\n\t\tresult = [(self.id2word[sim], dists[sim]) for sim in best if sim not in all_words]\n\t\treturn result[:topn]\n\n\n\tdef accuracy(self, questions, restrict_vocab=30000):\n\t\t\"\"\"\n\t\t用于计算模型的准确率(内部评价方法)\n\n\t\t`questions` 表示一个文件名，可以用\n\t\thttps://code.google.com/p/word2vec/source/browse/trunk/questions-words.txt for an example.\n\t\t的数据进行测试。该文件内每行包含四元组的词，文件包含多个section，每个section分开测试，最终合成结果。\n\n\t\t`restrict_vocab`用来筛选vocab中词频最高的词。\n\t\t\"\"\"\n\t\tok_vocab = dict(sorted(self.vocab.iteritems(), key=lambda item: -item[1].count)[:restrict_vocab])\n\t\tok_index = set(v.index for v in ok_vocab.itervalues())\n\n\t\t# 计算内部评价的准确率\n\t\tdef log_accuracy(section):\n\t\t\tcorrect, incorrect = section['correct'], section['incorrect']\n\t\t\tif correct + incorrect > 0:\n\t\t\t\tlogger.info(\"%s: %.1f%% (%i/%i)\" %\n\t\t\t\t\t(section['section'], 100.0 * correct / (correct + incorrect),\n\t\t\t\t\tcorrect, correct + incorrect))\n\n\t\tsections, section = [], None\n\t\tfor line_no, line in enumerate(open(questions)):\n\t\t\tif line.startswith(': '):\n\t\t\t\t# 把上一个section存起来，并计算该section的accuracy\n\t\t\t\tif section:\n\t\t\t\t\tsections.append(section)\n\t\t\t\t\tlog_accuracy(section)\n\t\t\t\tsection = {'section': line.lstrip(': ').strip(), 'correct': 0, 'incorrect': 0}\n\t\t\telse:\n\t\t\t\tif not section:\n\t\t\t\t\traise ValueError(\"missing section header before line #%i in %s\" % (line_no, questions))\n\t\t\t\ttry:\n\t\t\t\t\t# 得到4个词\n\t\t\t\t\ta, b, c, expected = [word.lower() for word in line.split()]\n\t\t\t\texcept:\n\t\t\t\t\tlogger.info(\"skipping invalid line #%i in %s\" % (line_no, questions))\n\t\t\t\t# 去掉(a, b, c, expected)中包含OOV的元组\n\t\t\t\tif a not in ok_vocab or b not in ok_vocab or c not in ok_vocab or expected not in ok_vocab:\n\t\t\t\t\tlogger.debug(\"skipping line #%i with OOV words: %s\" % (line_no, line))\n\t\t\t\t\tcontinue\n\n\t\t\t\tignore = set(self.vocab[v].index for v in [a, b, c])\n\t\t\t\tpredicted = None\n\t\t\t\t# 找到positive为(b, c)且negative为a的最相似的词\n\t\t\t\t# 如果该词为expected，则正确数累加一，否则错误数累加一\n\t\t\t\tfor index in np.argsort(self.most_similar(positive=[b, c], negative=[a], topn=False))[::-1]:\n\t\t\t\t\tif index in ok_index and index not in ignore:\n\t\t\t\t\t\tpredicted = self.id2word[index]\n\t\t\t\t\t\tif predicted != expected:\n\t\t\t\t\t\t\tlogger.debug(\"%s: expected %s, predicted %s\" % (line.strip(), expected, predicted))\n\t\t\t\t\t\tbreak\n\t\t\t\tsection['correct' if predicted == expected else 'incorrect'] += 1\n\t\tif section:\n\t\t\t# 保存最后一个section\n\t\t\tsections.append(section)\n\t\t\tlog_accuracy(section)\n\n\t\ttotal = {'section': 'total', 'correct': sum(s['correct'] for s in sections), 'incorrect': sum(s['incorrect'] for s in sections)}\n\t\tlog_accuracy(total)\n\t\tsections.append(total)\n\t\treturn sections\n\n\nif __name__ == '__main__':\n    if not os.path.exists('../data'):\n        os.mkdir('../data')\n    # 训练语料\n    text8 = Text8Corpus('../data/text8.zip', sent_len=20, sent_num=200)\n    # 训练模型\n    logging.info(\"start training model\")\n\n    # skip-gram与negative sampling\n    # model = Word2Vec(sentences=text8, size=100, alpha=0.025,\n    #             window=3, min_count=5, seed=1, iters=1, \n    #             workers=1, min_alpha=0.0001, hs=0, sg=0, negative=10, \n    #             sort_vocab=True)\n\n\t# cbow与negative sampling\n\t# model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n\t# \t\t\t window=3, min_count=5, seed=1, iters=1, \n\t# \t\t\t workers=1, min_alpha=0.0001, hs=0, sg=1, negative=10, \n\t# \t\t\t sort_vocab=True)\n\n\t# cbow与hierarchical softmax\n\t# model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n\t# \t\t\t window=3, min_count=5, seed=1, iters=1, \n\t# \t\t\t workers=1, min_alpha=0.0001, hs=1, sg=0, negative=10, \n\t# \t\t\t sort_vocab=True)\n\n\t# skip-gram与hierarchical softmax\n\t# model = Word2Vec(sentences=text8, size=100, alpha=0.025, \n\t# \t\t\t window=3, min_count=5, seed=1, iters=1, \n\t# \t\t\t workers=1, min_alpha=0.0001, hs=1, sg=1, negative=10, \n\t# \t\t\t sort_vocab=True)\n\n    logging.info(\"finished training model\")\n\n\t# 简单例子测试\n    test_corpus = (\"\"\"human interface computer\n                    survey user computer system response time\n                    eps user interface system\n                    system human system eps\n                    user response time\n                    trees\n                    graph trees\n                    graph minors trees\n                    graph minors survey\n                    I like graph and stuff\n                    I like trees and stuff\n                    Sometimes I build a graph\n                    Sometimes I build trees\"\"\").split(\"\\n\")\n    start = time.time()\n    test_corpus = [_.split() for _ in test_corpus]\n\n    model = Word2Vec(sentences=test_corpus, size=5, alpha=0.025, \n                    window=5, min_count=1, seed=1, iters=500, \n                    workers=2, min_alpha=0.0001, hs=1, sg=1, negative=10, \n                    sort_vocab=True)\n    similar = model.most_similar('graph', topn=1)[0][0]\n    print(\"graph similar:\", similar)\n    print('elapsed time:{}s'.format(time.time() - start))\n    assert similar == 'trees'\n\n\t# 测试模型，内部评价\n    # logging.info(\"start evaluate model\")\n    # model.accuracy('../data/questions-words.txt')\n    # logging.info(\"finished evaluate model\")\n"
  }
]